CaveConverter_src/0000755000000000000000000000000013036510056013170 5ustar rootrootCaveConverter_src/src/0000755000000000000000000000000013036510056013757 5ustar rootrootCaveConverter_src/src/image/0000755000000000000000000000000013036467352015053 5ustar rootrootCaveConverter_src/src/image/exit.png0000644000000000000000000000155412560646324016536 0ustar rootrootPNG  IHDRa3IDAT8m_L[`RBKmˈs,721LpaJF4Abq^M6$ȦƘm:-0aȟB7HKmm)9NDxJkygy!ycfw*=k@zÝO_}gv~# 'o7ffy_c?إl+c-"7f.[?]_0G=3pB{ $B<^xIRs1,'N9e,'H M À@]Ef;EOkg_=<ټ̐zSs +%Ȥ!fU Zi1b*JKzS-"  b#Ɲ T._|^~ ri6ҜrlLv %2ʛA D= CdsTC*"5ɄbE hkFx)I9Pwo誂MQ m;@^/1sф6fn.l١AW(} ܭ54Qx%:53eADx_1*eI_1r9I!Cۥ璻NU4g5 ŪcӺ 柯cuTƠtHwWF-aC YN(q51n- 8>?D&_;fn;4`55fIf˯m=|`/7(9q*{.{p4ߍf3?Z`p]IENDB`CaveConverter_src/src/footleg/0000755000000000000000000000000013036467352015430 5ustar rootrootCaveConverter_src/src/footleg/cavesurvey/0000755000000000000000000000000013036504774017624 5ustar rootrootCaveConverter_src/src/footleg/cavesurvey/data/0000755000000000000000000000000013036467352020535 5ustar rootrootCaveConverter_src/src/footleg/cavesurvey/data/model/0000755000000000000000000000000013036467352021635 5ustar rootrootCaveConverter_src/src/footleg/cavesurvey/data/model/CaveSurvey.java0000644000000000000000000001757213036416434024603 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.model; import java.util.ArrayList; import java.util.EventListener; import java.util.Iterator; import java.util.List; import java.util.ListIterator; import javax.swing.event.EventListenerList; import javax.swing.event.TreeModelEvent; import javax.swing.event.TreeModelListener; import javax.swing.tree.TreeModel; import javax.swing.tree.TreePath; import footleg.cavesurvey.converter.Logger; /** * Class representing a complete cave survey data model. This can consist of * one or more cave surveys. * * @author Footleg * @version 2017.01.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class CaveSurvey implements TreeModel { private String surveyName; private List survey; private EventListenerList listenerList = new EventListenerList(); private Logger logger; /** * Class constructor * @param logger Logging class to output information, warning and error messages to */ public CaveSurvey( Logger logger ) { super(); this.logger = logger; //Create new list of survey series to hold data survey = new ArrayList(); } public int size() { return survey.size(); } public String getSurveyName() { return surveyName; } public void setSurveyName(String surveyName) { this.surveyName = surveyName; } public boolean isEmpty() { return survey.isEmpty(); } public boolean contains(Object o) { return survey.contains(o); } public Iterator iterator() { return survey.listIterator(); } public boolean add(SurveySeries e) { boolean result = survey.add(e); fireTreeStructureChanged( this ); return result; } public boolean remove(SurveySeries o) { return survey.remove(o); } public void clear() { survey.clear(); } public SurveySeries get(int index) { return survey.get(index); } public SurveySeries set(int index, SurveySeries element) { return survey.set(index, element); } public void add(int index, SurveySeries element) { survey.add(index, element); } public SurveySeries remove(int index) { return survey.remove(index); } public ListIterator listIterator() { return survey.listIterator(); } public ListIterator listIterator(int index) { return survey.listIterator(index); } /** * Generates LRUD data from splays for all legs in all series */ public void generateLRUDfromSplays() { //Loop through all series ListIterator seriesIterator = survey.listIterator(); while ( seriesIterator.hasNext() ) { SurveySeries series = seriesIterator.next(); //Process series and then recursively call inner series processLRUDfromSplays( series ); } } /** * Process the legs in this series to generate LRUD data from splays, * then loop through all inner series recursively to process them too. * @param series The survey series to process */ private void processLRUDfromSplays( SurveySeries series ) { //Process series and then recursively call inner series series.generateLRUDFromSplays( logger ); //TODO Fix the way the option to remove splays used for LRUD is triggered, and don't do it by default. //series.removeSplaysUsedForLRUD(); //Loop through all inner series ListIterator seriesIterator = series.getInnerSeriesList().listIterator(); while ( seriesIterator.hasNext() ) { SurveySeries innerSeries = seriesIterator.next(); processLRUDfromSplays( innerSeries ); } } /* * TreeModel interface methods */ /* * (non-Javadoc) * @see javax.swing.tree.TreeModel#getRoot() */ @Override public Object getRoot() { //Root is the cave survey class itself return this; } @Override public Object getChild(Object parent, int index) { //Return inner series at the index specified of the parent series passed in if ( parent instanceof CaveSurvey ) { return survey.get(index); } else if ( parent instanceof SurveySeries ) { SurveySeries series = (SurveySeries)parent; //Determine whether this index points to an inner series or a leg if ( index < series.innerSeriesCount() ) { //Return an inner series return series.getInnerSeries(index); } else { //Return a survey leg int legIdx = index - series.innerSeriesCount(); return series.getLegRaw( legIdx ); } } else { return null; } } @Override public int getChildCount(Object parent) { //Return count of inner series plus surveyed legs for the parent series passed in if ( parent instanceof CaveSurvey ) { return size(); } else if ( parent instanceof SurveySeries ) { SurveySeries series = (SurveySeries)parent; return series.getInnerSeriesList().size() + series.legCount(); } else { return 0; } } @Override public boolean isLeaf(Object node) { //Return true if node is a survey leg boolean leaf = false; if ( node instanceof SurveyLeg ) { leaf = true; } return leaf; } @Override public void valueForPathChanged(TreePath path, Object newValue) { // TODO Auto-generated method stub Object[] p = path.getPath(); Object[] pp = p; Object node; int index; if ( p.length == 1 ) { //Editing root node setSurveyName( (String)newValue ); node = this; index = -1; } else { //Editing a Survey series or leg inside a series node = p[p.length - 1]; SurveySeries parent = (SurveySeries)p[p.length - 2]; index = parent.getIndexOfChild( node ); //EDIT HERE if ( node instanceof SurveySeries ) { ((SurveySeries) node).setSeriesName( (String)newValue ); } } // int[] ci = new int[] { index }; // Object[] cc = new Object[] { node }; // fireTreeNodesChanged(); } @Override public int getIndexOfChild(Object parent, Object child) { //Look up index of the specified child class instance in the specified parent instance if ( parent instanceof SurveySeries ) { return ((SurveySeries)parent).getIndexOfChild( child ); } else { return -1; } } @Override public void addTreeModelListener(TreeModelListener l) { listenerList.add(TreeModelListener.class, l); } @Override public void removeTreeModelListener(TreeModelListener l) { listenerList.remove(TreeModelListener.class, l); } protected void fireTreeStructureChanged(Object oldRoot) { TreeModelEvent event = new TreeModelEvent(this, new Object[] { oldRoot }); EventListener[] listeners = listenerList.getListeners(TreeModelListener.class); for (int i = 0; i < listeners.length; i++) ((TreeModelListener) listeners[i]).treeStructureChanged(event); } /** * Provides a string representation of a cave survey to display in a tree view of the data model * @return String representation of Cave Survey class */ public String toString() { String text = getSurveyName(); if ( ( text == null ) || ( text.equals("") ) ) { text = "Cave Survey"; } return text; } } CaveConverter_src/src/footleg/cavesurvey/data/model/SurveySeries.java0000644000000000000000000011740013036417060025142 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.model; import java.util.ArrayList; import java.util.Date; import java.util.List; import java.util.ListIterator; import footleg.cavesurvey.converter.CaveConverter.BearingUnit; import footleg.cavesurvey.converter.CaveConverter.GradientUnit; import footleg.cavesurvey.converter.CaveConverter.LengthUnit; import footleg.cavesurvey.converter.Logger; import footleg.cavesurvey.tools.UtilityFunctions; /** * This class represents a series of cave survey legs joined together by * sharing stations in common. Branches are allowed, but all legs in a series * are required to have the same instrument calibration values and have the * same date. A series can also contain other series, and details of how they * are linked together. * * A survey series contains the survey legs in the series, the date, * calibrations for instruments (these default to zero if not set) * and magnetic declination (defaults to zero if not set). * A series name is required. Optionally a series can also indicate that stations * used in legs in the series are equivalent (i.e. Represent the same point in * the cave). The series can also contain other series, and details of links * between them. * Data is stored and calculations done in metric units (metres and degrees), but * conversion to other units on input/output is supported. * * @author Footleg * @version 2017.01.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) * * @to.do * TODO Add support for calibration comments fields * TODO Add support for team fields * TODO Add support for instrument fields */ public class SurveySeries { /** * Private data class to represent the LRUD data for the toStn of a leg. * Used for stations which are not used as 'from' stations in any legs. * This class enables both the LRUD dimensions and the vector normal to the plane * of the LRUD dimensions to be stored. * * @author Footleg * */ public class ToStnLRUD { private SurveyStation fromStn; //LRUD applies to fromStn private double left = 0.0; private double right = 0.0; private double up = 0.0; private double down = 0.0; //Getters and Setters public SurveyStation getFromStn() { return fromStn; } public void setFromStn(SurveyStation fromStn) { this.fromStn = fromStn; } public double getLeft() { return left; } public void setLeft(double left) { this.left = left; } public double getRight() { return right; } public void setRight(double right) { this.right = right; } public double getUp() { return up; } public void setUp(double up) { this.up = up; } public double getDown() { return down; } public void setDown(double down) { this.down = down; } } private String seriesName; private List legs; private List toStnLRUDs; private List links; private List innerSeries; private int stnRenumberSequence; private List stnRenameCache; private double declination = 0; private double tapeCalibration = 0; private double compassCalibration = 0; private double clinoCalibration = 0; private double clinoCalScaleFactor = 1; private Date surveyDate; private String comment = ""; private static double LRUD_SPECIAL_FLAG = -999; private LengthUnit lengthUnit = LengthUnit.Metres; private LengthUnit depthUnit = LengthUnit.Metres; private BearingUnit bearingUnit = BearingUnit.Degrees; private GradientUnit gradientUnit = GradientUnit.Degrees; private List dataOrder; private List dataOrder2; /** * Create a Survey Series with the name given * @param name Name of the series */ public SurveySeries( String name ) { super(); init(); this.seriesName = name; } private void init() { legs = new ArrayList(); toStnLRUDs = new ArrayList(); links = new ArrayList(); innerSeries = new ArrayList(); stnRenameCache = new ArrayList(); stnRenumberSequence = 0; } public LengthUnit getLengthUnit() { return lengthUnit; } public void setLengthUnit(LengthUnit lengthUnit) { this.lengthUnit = lengthUnit; } public LengthUnit getDepthUnit() { return depthUnit; } public void setDepthUnit(LengthUnit depthUnit) { this.depthUnit = depthUnit; } public BearingUnit getBearingUnit() { return bearingUnit; } public void setBearingUnit(BearingUnit bearingUnit) { this.bearingUnit = bearingUnit; } public GradientUnit getGradientUnit() { return gradientUnit; } public void setGradientUnit(GradientUnit gradientUnit) { this.gradientUnit = gradientUnit; } public void addLeg(SurveyLeg leg) { //Create duplicate of leg to break reference this.legs.add(leg.clone()); } public void addLeg(SurveyLeg leg, int position) { //Create duplicate of leg to break reference this.legs.add( position, leg.clone() ); } public int legCount() { return legs.size(); } public List getToStnLRUDs() { return toStnLRUDs; } /** * Assigns a survey station a unique Id for the station name. The survey * station name is mapped to an integer which is assigned as the station id. * This can be used for file formats which do not support text station names. * If the name is a string which represents * a positive integer number already then that number is returned. * For non-numeric station names the name is assigned * a unique negative integer number. Negative numbers are used so they will * not clash with any positive number station names in the series. The negative * station ids also indicate which stations have names which are not numeric. * A map of names to numbers already added to the series is used so that the * same name is not translated into different numbers if passed in more than * once. When all legs have been added to a series, the negative numbered * stations could be assigned new positive number IDs which are not already * used by other stations in the series. * * @param stn The survey station with a name property to be assigned an id */ public void setStationIdFromName( SurveyStation stn ) { int stnId = stnNameToNumber( stn.getName() ); stn.setId( stnId ); } /** * @param stnName * @return a station number linked to the text name for this series */ private int stnNameToNumber( String stnName ) { int stn; try { stn = Integer.parseInt( stnName ); } catch (NumberFormatException nfe) { //Stn name not an integer, so translate name to a negative number stn = this.getNumberToRepresentStnName( stnName ); } return stn; } /** * Returns a negative integer number for a station name string. * * The number will be unique to this series for this station name. * This enables station names to be converted to numbers for file formats * which do not support strings. The name is mapped to a number in this * series by looking up the name in a cache for the series. If the name * is not found in the cache then a new negative number is returned, and * the new name and number mapping is added to the cache for the series. * * @param stnName Name of the survey station to map to a number. * @return Number which can be used to represent this station. */ public int getNumberToRepresentStnName(String stnName) { int mappedStnNum = 0; //Look for station name in cache ListIterator stnCacheIterator = stnRenameCache.listIterator(); int stnIdx = 0; while ( ( mappedStnNum == 0 ) && ( stnCacheIterator.hasNext() ) ) { String cachedName = stnCacheIterator.next(); stnIdx--; if ( stnName.compareToIgnoreCase(cachedName) == 0 ) { //Found matching stn in cache, so get number from index mappedStnNum = stnIdx; } } if ( mappedStnNum == 0 ) { //No match found in cache, so create a new mapping and cache it stnRenumberSequence--; mappedStnNum = stnRenumberSequence; /** * As the mapped stns are added to the cache, the index in the * cache will correspond to the mapped number of the stn: * idx 0 = map -1 * idx 1 = map -2 * etc. */ stnRenameCache.add(stnName); } return mappedStnNum; } public String getMappedStnName(int stn) { //If number is negative then lookup name in map, //otherwise just return station number as the name if ( stn < 0 ) { return stnRenameCache.get( Math.abs(stn) - 1 ); } else { return "" + stn; } } //Apply instrument calibration corrections to all measurements in returned leg public SurveyLeg getLegCorrected(int index) { SurveyLeg originalLeg = legs.get(index); SurveyLeg correctedLeg = originalLeg.clone(); //Over-ride leg length,compass and clino with calibration corrected values correctedLeg.setLength( originalLeg.getLength(LengthUnit.Metres) - tapeCalibration, LengthUnit.Metres ); double compass = originalLeg.getCompass(BearingUnit.Degrees); if ( compass >= 0 && compass <= 360 ) { //Apply calibration only to valid bearings compass -= (compassCalibration + declination); } correctedLeg.setCompass( compass, BearingUnit.Degrees ); double clino = originalLeg.getClino(GradientUnit.Degrees); if ( clino >= -90 && clino <= 180 ) { //Apply calibration only to valid clino clino = (clino - clinoCalibration) * clinoCalScaleFactor; } correctedLeg.setClino( clino, GradientUnit.Degrees ); //Don't correct LRUD using tape calibration as these are assumed to be estimated by eye return correctedLeg; } public SurveyLeg getLegRaw(int index) { return legs.get(index); } public void addSeries(SurveySeries series) { this.innerSeries.add(series); } public int innerSeriesCount() { return innerSeries.size(); } public SurveySeries getInnerSeries(int index) { return innerSeries.get(index); } public List getInnerSeriesList() { return innerSeries; } public SurveySeries findInnerSeriesByName(String name) { SurveySeries match = null; //Look in inner series ListIterator innerIterator = innerSeries.listIterator(); while ( innerIterator.hasNext() ) { SurveySeries innerSeries = innerIterator.next(); if ( innerSeries.getSeriesName().equalsIgnoreCase( name ) ) { //Found series, so return this match = innerSeries; break; } } return match; } /** * Look up the child object specified in the series, and return the index of the object * @param child The child object to get the index of * @return The index of the object in this series */ public int getIndexOfChild(Object child) { int matchIndex = -1; //Look for child in inner series ListIterator innerIterator = innerSeries.listIterator(); int idx = -1; while ( innerIterator.hasNext() ) { SurveySeries innerSeries = innerIterator.next(); idx++; if ( innerSeries.equals( child ) ) { //Found series, so return this matchIndex = idx; break; } } return matchIndex; } public void addLink(String series1Path, SurveyStation stn1, String series2Path, SurveyStation stn2 ) { //Add link to array SeriesLink link = new SeriesLink(series1Path, stn1, series2Path, stn2 ); links.add(link); } public List getLinks() { return links; } public String getSeriesName() { return seriesName; } public void setSeriesName(String seriesName) { this.seriesName = seriesName; } public List getDataOrder() { //Make a copy to return, as we don't want a pointer to the existing list or parsers //can change it List tmpList = new ArrayList(); if (dataOrder != null ) { tmpList.addAll(dataOrder); } return tmpList; } public List getDataOrder2() { //Make a copy to return, as we don't want a pointer to the existing list or parsers //can change it List tmpList = new ArrayList(); if (dataOrder2 != null ) { tmpList.addAll(dataOrder2); } return tmpList; } /** * Indicates if series has a data order defined. Method provided to avoid copying data order * list just to check this from outside the series, as getter clones the list to protect it * from being edited via a pointer. * @return True if series has a field data order defined. */ public boolean hasDataOrder() { boolean hasIt = false; if ( dataOrder != null ) { hasIt = (dataOrder.size() > 0); } return hasIt; } /** * Specifies the order of data items used in the file which was read to generate the series. * Parsers use this to track the active data ordering (i.e. from to length, bearing, gradient) * through nested series in files. * @param dataOrder Field data order for the series */ public void setDataOrder(List dataOrder) { //Make a copy to store, as we don't want a pointer to an existing list List tmpList = new ArrayList(); tmpList.addAll(dataOrder); this.dataOrder = tmpList; } /** * Secondary order of data items used in the series. This is used when a series contains a mix * of normal and diving data to hold the data order for both formats of data. * @param dataOrder Field data order for the series for alternate data format (e.g. For mixed diving/normal data in series) */ public void setDataOrder2(List dataOrder) { //Make a copy to store, as we don't want a pointer to an existing list List tmpList = new ArrayList(); tmpList.addAll(dataOrder); this.dataOrder2 = tmpList; } /** * Provides a string representation of a cave survey series to display in a tree view of the data model * @return String representation of survey series class */ public String toString() { String text = getSeriesName(); if ( ( text == null ) || ( text.equals("") ) ) { text = "Survey Series"; } return text; } public double getTapeCalibration(LengthUnit units) { return UtilityFunctions.lengthFromMetres( tapeCalibration, units ); } public void setTapeCalibration(double tapeCalibration, LengthUnit units) { this.tapeCalibration = UtilityFunctions.lengthToMetres(tapeCalibration, units); } public double getDeclination() { return declination; } public void setDeclination(double declination) { this.declination = declination; } public double getCompassCalibration(BearingUnit units) { return UtilityFunctions.bearingFromDegrees(compassCalibration, units) ; } public void setCompassCalibration(double compassCalibration, BearingUnit units) { this.compassCalibration = UtilityFunctions.bearingToDegrees(compassCalibration, units) ; } public double getClinoCalibration(GradientUnit units) { return UtilityFunctions.gradientFromDegrees(clinoCalibration, units) ; } public double getClinoScaleFactor() { return clinoCalScaleFactor; } public void setClinoCalibration(double clinoCalibration, GradientUnit units) { this.clinoCalibration = UtilityFunctions.gradientToDegrees(clinoCalibration, units); this.clinoCalScaleFactor = 1; } public void setClinoCalibration(double clinoCalibration, GradientUnit units, double clinoCalScaleFactor) { this.clinoCalibration = UtilityFunctions.gradientToDegrees(clinoCalibration, units);; this.clinoCalScaleFactor = clinoCalScaleFactor; } public Date getSurveyDate() { return surveyDate; } public void setSurveyDate(Date surveyDate) { this.surveyDate = surveyDate; } public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } public void setCalibrationFromAnotherSeries(SurveySeries series) { setDeclination( series.getDeclination() ); setTapeCalibration( series.getTapeCalibration( LengthUnit.Metres ), LengthUnit.Metres ); setCompassCalibration( series.getCompassCalibration( BearingUnit.Degrees ), BearingUnit.Degrees ); setClinoCalibration( series.getClinoCalibration( GradientUnit.Degrees ), GradientUnit.Degrees, series.getClinoScaleFactor() ); } public SurveyLeg removeLeg(int index){ return legs.remove(index); } public void removeSplaysUsedForLRUD() { int i = legs.size() - 1; while ( i >= 0 ) { SurveyLeg leg = legs.get(i); if ( leg.isSplay() && leg.getDown( LengthUnit.Metres ) == LRUD_SPECIAL_FLAG ) { //Splay leg used for LRUD generation removeLeg(i); } else { i--; } } } /** * Examines all splay shots from the start station for each leg and generates LRUD data * from them for each leg. The algorithm examines all legs which meet at the station, and * splays which are close to equivalent to any of the legs are not used (to prevent back shots and * splays up side passages which were then surveyed being used to calculate passage dimensions). * Up and down dimensions are calculated from the splay with the greatest vertical length * up or down as appropriate. Splays which are less than 20 degrees from horizontal are * ignored when determining up and down dimensions. Splays with an angle steeper than 70 degrees * from horizontal are excluded from the splays used to determine horizontal passage dimensions. * The passage dimension directions for left and right are calculated along the horizontal * vector bisecting the angle between the forward survey leg, and the most in-line previous * leg arriving at the station. The best matching splay is selected from the suitable * splays by determining which splay gives the greatest distance along the left or right * dimension vector. * @param logger Logging class to output information, warning and error messages to */ public void generateLRUDFromSplays( Logger logger ) { List caveLegs = new ArrayList(); List> splayLegGroups = new ArrayList>(); List> previousLegGroups = new ArrayList>(); //Loop through all legs in series to build arrays of splays and non-splay underground legs ListIterator legsIterator = legs.listIterator(); while ( legsIterator.hasNext() ) { SurveyLeg leg = legsIterator.next(); //Put all non-surface legs into either the cave legs (non-splays) or splay groups lists if ( leg.isSurface() == false ) { if ( leg.isSplay() ) { //Add to splays group identified by station name String stnName = leg.getFromStn().getName(); //Look for a group matching this station int groupIdx = -1; for ( int i = 0; groupIdx < 0 && i < splayLegGroups.size(); i++ ) { if ( splayLegGroups.get(i).get(0).getFromStn().getName().compareTo(stnName) == 0 ) { //Found group, so get index groupIdx = i; } } if ( groupIdx >= 0 ) { //Add to this group splayLegGroups.get(groupIdx).add(leg); } else { //Create new group and add leg to this List splays = new ArrayList(); splays.add(leg); splayLegGroups.add(splays); } } else { //Add to legs array to be processed caveLegs.add(leg); } } } //Loop through all legs non-splay legs to build arrays of legs radiating from the station of each leg for ( int caveLegIdx = 0; caveLegIdx < caveLegs.size(); caveLegIdx++ ) { SurveyLeg leg = caveLegs.get(caveLegIdx); String legStartStn = leg.getFromStn().getName(); //Create list to hold legs radiating out from this leg fromStn List legGrp = new ArrayList(); //Find all other legs which radiate out from the fromStn of this leg for ( int otherLegIdx = 0; otherLegIdx < caveLegs.size(); otherLegIdx++ ) { //Ignore ourself if ( otherLegIdx != caveLegIdx ) { SurveyLeg chkLeg = caveLegs.get(otherLegIdx); if ( legStartStn.compareToIgnoreCase( chkLeg.getToStn().getName() ) == 0 ) { //Add leg to group legGrp.add(chkLeg); } else if ( legStartStn.compareToIgnoreCase( chkLeg.getFromStn().getName() ) == 0 ) { //Reverse leg so it leads to this station and add leg to group SurveyLeg revLeg = chkLeg.clone(); revLeg.reverseDirection(); legGrp.add( revLeg ); } } } //Add group to list for this leg previousLegGroups.add( legGrp ); } //Loop through splay groups and process all the legs with a from stn matching the from stn of the splays in each group ListIterator> spGroupsIter = splayLegGroups.listIterator(); List stnsUsed = new ArrayList(); while ( spGroupsIter.hasNext() ) { List splaysGroup = spGroupsIter.next(); String stnName = splaysGroup.get(0).getFromStn().getName(); ListIterator legsIter = caveLegs.listIterator(); int caveLegIdx = -1; while ( legsIter.hasNext() ) { SurveyLeg leg = legsIter.next(); caveLegIdx++; if ( leg.getFromStn().getName().compareTo(stnName) == 0 ) { //Generate LRUD data for leg, using the splays starting from that leg from station generateLRUDForLeg( leg, splaysGroup, previousLegGroups.get(caveLegIdx), logger ); //Store station name of splays group that was used stnsUsed.add(stnName); //Remove leg from list now it has been processed legsIter.remove(); //Remove corresponding previous legs group so lists remain in sync previousLegGroups.remove(caveLegIdx); caveLegIdx--; } } } //Build list of splays groups which were not used, as these will be for terminal //stations in branches of the series. These splays will only be from the toStn of a leg. ListIterator> spGroupsIter2 = splayLegGroups.listIterator(); List> unusedSplayGroups = new ArrayList>(); while ( spGroupsIter2.hasNext() ) { List splaysGroup = spGroupsIter2.next(); String stnName = splaysGroup.get(0).getFromStn().getName(); //Check for this group in the used stations list boolean foundMatch = false; ListIterator stnsUsedIter = stnsUsed.listIterator(); while ( stnsUsedIter.hasNext() ) { String grpName = stnsUsedIter.next(); if ( stnName.compareTo( grpName ) == 0 ) { //Set flag to indicate group was used foundMatch = true; break; } } if ( foundMatch == false ) { //Add group to unused groups list unusedSplayGroups.add( splaysGroup ); } } //Loop through unused splays groups and find the leg where the toStn for these //splays occur. Then add the LRUD data for the toStn to the toStnLrud cache. ListIterator> spGroupsIter3 = unusedSplayGroups.listIterator(); while ( spGroupsIter3.hasNext() ) { List splaysGroup = spGroupsIter3.next(); String stnName = splaysGroup.get(0).getFromStn().getName(); //Find leg with a matching toStn for these splays for ( int legsIdx = 0; legsIdx < legs.size(); legsIdx++ ) { SurveyLeg leg = legs.get( legsIdx ); if ( ( leg.isSplay() == false ) && ( leg.getToStn() != null ) && ( leg.getToStn().getName().compareTo(stnName) == 0 ) ) { //Create a temporary leg to hold the LRUD for this toStn SurveyLeg tempLrudLeg = new SurveyLeg(); tempLrudLeg.setFromStn( leg.getToStn() ); tempLrudLeg.setLength( -1, LengthUnit.Metres ); tempLrudLeg.setCompass( leg.getCompass(BearingUnit.Degrees), BearingUnit.Degrees ); tempLrudLeg.setClino( leg.getClino(GradientUnit.Degrees), GradientUnit.Degrees ); //Check for any other legs terminating at this station, as if there are any then //their bearings should be used to average with the bearing for the leg we are creating here. List otherLegs = new ArrayList(); /* Find any other legs which terminate at this station. There may be more than * one leg terminating at a station which is not a 'from' station in any leg * e.g. In a leap-frog survey. So we need to hold the LRUD for the station which * only appears as a 'to' station, but in more than one leg. If there were 3 legs all * pointing 'to' a station then the first one in the series will be the one the LRUD data * is associated with really, but this is not recorded. */ for ( int legsIdx2 = legsIdx + 1; legsIdx2 < legs.size(); legsIdx2++ ) { SurveyLeg chkLeg = legs.get( legsIdx2 ); if ( ( chkLeg.isSplay() == false ) && ( chkLeg.getToStn() != null ) && ( chkLeg.getToStn().getName().compareTo(stnName) == 0 ) ) { //Found another leg to this station, we need to reverse it as //LRUD function takes group of legs from the station SurveyLeg revLeg = chkLeg.clone(); revLeg.reverseDirection(); otherLegs.add(revLeg); } } //Generate LRUD data for leg, using the splays starting from that leg from station generateLRUDForLeg( tempLrudLeg, splaysGroup, otherLegs, logger ); //Create an LRUD object to hold the LRUD data and copy data into it ToStnLRUD newLrud = new ToStnLRUD(); newLrud.setFromStn( tempLrudLeg.getFromStn() ); newLrud.setLeft( tempLrudLeg.getLeft(LengthUnit.Metres) ); newLrud.setRight( tempLrudLeg.getRight(LengthUnit.Metres) ); newLrud.setUp( tempLrudLeg.getUp(LengthUnit.Metres) ); newLrud.setDown( tempLrudLeg.getDown(LengthUnit.Metres) ); //Add the new LRUD leg in the series toStnLRUDs.add(newLrud); //Stop checking series once LRUD data has been accounted for or LRUD data will get //duplicated in cases where the station is the toStn in more than one leg (e.g. In //a leap-frog survey) legsIdx = legs.size(); } } } } /** * Generates a Left, Right, Up and Down dimension at the from station for a survey leg * using the splays recorded at that station, and stores them in the leg. * @param leg The survey leg to generate LRUD data for (at the From station) * @param splaysGroup A list of splay legs measured from the From station of the leg * @param otherLegs A list of survey legs arriving at the same station as the From station of the leg */ private void generateLRUDForLeg( SurveyLeg masterLeg, List splayShots, List otherLegs, Logger logger ) { int bearingTolerance = 3; List leftShots = new ArrayList(); List rightShots = new ArrayList(); List upShots = new ArrayList(); List downShots = new ArrayList(); //Determine best previous leg (use leg with closest bearing to onward leg) double bestPrevBearing = 360.0; int bestPrevLegIdx = -1; for ( int i = 0; i < otherLegs.size(); i++ ) { //Looking for bearing closest to master leg bearing double testBearing = UtilityFunctions.bearingDifferenceDegrees( otherLegs.get(i).getCompass(BearingUnit.Degrees), masterLeg.getCompass(BearingUnit.Degrees) ); if ( testBearing < bestPrevBearing ) { //Found better match, so store value and index bestPrevBearing = testBearing; bestPrevLegIdx = i; } } //If a previous leg was found then calculate average bearing between previous and onward legs double bearing = masterLeg.getCompass(BearingUnit.Degrees); if ( bestPrevLegIdx >= 0 ) { double[] bearings = new double[2]; bearings[0] = masterLeg.getCompass(BearingUnit.Degrees); bearings[1] = otherLegs.get(bestPrevLegIdx).getCompass(BearingUnit.Degrees); bearing = UtilityFunctions.averageCompassBearings(bearings); } //Loop through all the splays and categorise each shot into groups of L,R,U,D for ( int i = 0; i < splayShots.size(); i++ ) { SurveyLeg splayLeg = splayShots.get(i); //Ignore any splays which are along the path of any legs to/from this station //This will remove backshots and splays fired up side passages which were then surveyed //as side passage splays are not going to represent passage dimensions. boolean backShot = false; for ( int olegsIdx = -1; olegsIdx < otherLegs.size(); olegsIdx++ ) { //First check against main leg SurveyLeg testLeg = masterLeg; if (olegsIdx > -1) { //Then loop through other legs reversed (as we need bearing from this station, not to it) testLeg = otherLegs.get(olegsIdx).clone(); testLeg.reverseDirection(); } //Check if splay is equivalent to leg shot double bearingDiff = UtilityFunctions.bearingDifferenceDegrees( testLeg.getCompass(BearingUnit.Degrees), splayLeg.getCompass(BearingUnit.Degrees) ); if ( bearingDiff < bearingTolerance ) { //Within 3 degrees of leg, so check clino double clinoDiff = UtilityFunctions.bearingDifferenceDegrees( testLeg.getClino(GradientUnit.Degrees), splayLeg.getClino(GradientUnit.Degrees) ); if ( clinoDiff < bearingTolerance ) { //Within 3 degrees of leg, so check length double lengthDiff = Math.abs( testLeg.getLength( LengthUnit.Metres ) - splayLeg.getLength( LengthUnit.Metres ) ); if ( lengthDiff < 0.2 ) { //Under 20cm difference in length, assume a back shot for a leg backShot = true; logger.logMessage("Ignoring splay from " + getSeriesName() + "." + splayLeg.getFromStn().getName() + " with length of " + splayLeg.getLength( LengthUnit.Metres ) + " as splay too closely matching a leg and so assumed to be a back-shot."); } } } } if ( backShot == false ) { double splayClino = splayLeg.getClino(GradientUnit.Degrees); if ( splayClino > 20 ) { //Up shot upShots.add(splayLeg); } else if ( splayClino < -20 ) { //Down shot downShots.add(splayLeg); } //As well as up or down, some splays may also be the best Left or Right if ( ( splayClino < 70 ) && ( splayClino > -70 ) ) { //Left or right shots (not steeper than 70 deg.) //Determine whether left or right shot double masterBearing = masterLeg.getCompass(BearingUnit.Degrees); //Normalise bearings to reference of zero degrees for onward leg double splayCorrected = splayLeg.getCompass(BearingUnit.Degrees) - masterBearing; if ( splayCorrected < 0 ) { splayCorrected += 360; } if ( bestPrevLegIdx >= 0 ) { //Two legs to consider double prevLegBearing = otherLegs.get(bestPrevLegIdx).getCompass(BearingUnit.Degrees); //Convert previous leg bearing to bearing from the station for the splay adjusted with respect to onward leg bearing double prevLegBackBearingCorrected = UtilityFunctions.adjustBearingWithinDegreesRange( 180 + prevLegBearing - masterBearing, 0, 360 ); /* We now have three bearings. The onward leg is adjusted to zero deg. * The back bearing for the previous leg is adjusted relative to the zero bearing of the onward leg. * The splay is also adjusted relative to the zero bearing of the onward leg. * Splays which are aligned with any leg from the station should already have been discarded. * So now we just need to determine if this splay as a left or right splay. */ if ( splayCorrected < prevLegBackBearingCorrected ) { //Right rightShots.add(splayLeg); } else { //Left leftShots.add(splayLeg); } } else { //Only the one leg to consider as first or last leg of chain of legs in series //Angle between splay and leg bearings is now in the range 0-360 deg. if ( ( splayCorrected > bearingTolerance ) || ( splayCorrected > (360 - bearingTolerance) ) ) { if ( splayCorrected < ( 180 - bearingTolerance) ) { //Right rightShots.add(splayLeg); } else if ( splayCorrected > ( 180 + bearingTolerance) ) { //Left leftShots.add(splayLeg); } else { //Splay is within tolerance of back bearing for leg, so too shallow an angle to use for LRUD calc. logger.logMessage("Ignoring splay from " + getSeriesName() + "." + splayLeg.getFromStn().getName() + " with bearing of " + splayLeg.getCompass(BearingUnit.Degrees) + " as bearing is < " + bearingTolerance + " degrees off back bearing of leg."); } } else { //Splay is within tolerance of bearing for leg, so too shallow an angle to use for LRUD calc. logger.logMessage("Ignoring splay from " + getSeriesName() + "." + splayLeg.getFromStn().getName() + " with bearing of " + splayLeg.getCompass(BearingUnit.Degrees) + " as bearing is < " + bearingTolerance + " degrees off bearing of leg."); } } } } } //Set flag for this station to say whether all splays should be output boolean keepAllSplays = false; if (( upShots.size() > 1 ) || ( downShots.size() > 1 ) || ( leftShots.size() > 1 ) || ( rightShots.size() > 1 )) { keepAllSplays = true; } //Find best up shot double bestValue = 0.0; int bestIdx = -1; for ( int i = 0; i < upShots.size(); i++ ) { //Looking for highest clino reading if ( upShots.get(i).getClino(GradientUnit.Degrees) > bestValue ) { //Found better match, so store value and index bestValue = upShots.get(i).getClino(GradientUnit.Degrees); bestIdx = i; } } //Add up shot if found if ( bestIdx >= 0 ) { //Found best up shot masterLeg.setUp( upShots.get(bestIdx).getVerticalLength(), LengthUnit.Metres ); //Flag splay as used for Up if ( keepAllSplays == false ) { upShots.get(bestIdx).setDown( LRUD_SPECIAL_FLAG, LengthUnit.Metres ); } } //Find best down shot bestValue = 0.0; bestIdx = -1; for ( int i = 0; i < downShots.size(); i++ ) { //Looking for lowest clino reading if ( downShots.get(i).getClino(GradientUnit.Degrees) < bestValue ) { //Found better match, so store value and index bestValue = downShots.get(i).getClino(GradientUnit.Degrees); bestIdx = i; } } //Add down shot if found if ( bestIdx >= 0 ) { //Found best down shot masterLeg.setDown( downShots.get(bestIdx).getVerticalLength(), LengthUnit.Metres ); //Flag splay as used for Down if ( keepAllSplays == false ) { downShots.get(bestIdx).setDown( LRUD_SPECIAL_FLAG, LengthUnit.Metres ); } } //Find best left shot bestIdx = findBestSplayForHorizontalDimension(leftShots, bearing, true); //Add left shot if found if ( bestIdx >= 0 ) { //Found best left shot double horizontalLength = leftShots.get(bestIdx).getHorizontalLength(); double leftOrthoganal = bearing - 90; if ( leftOrthoganal < 0 ) { leftOrthoganal += 360; } masterLeg.setLeft( extentAlongBearing( leftOrthoganal, horizontalLength, leftShots.get(bestIdx).getCompass(BearingUnit.Degrees) ), LengthUnit.Metres ); //Flag splay as used for Left if ( keepAllSplays == false ) { leftShots.get(bestIdx).setDown( LRUD_SPECIAL_FLAG, LengthUnit.Metres ); } } //Find best right shot bestIdx = findBestSplayForHorizontalDimension(rightShots, bearing, false); //Add right shot if found if ( bestIdx >= 0 ) { //Found best right shot double horizontalLength = rightShots.get(bestIdx).getHorizontalLength(); double rightOrthoganal = bearing + 90; if ( rightOrthoganal >= 360 ) { rightOrthoganal -= 360; } masterLeg.setRight( extentAlongBearing( rightOrthoganal, horizontalLength, rightShots.get(bestIdx).getCompass(BearingUnit.Degrees) ), LengthUnit.Metres ); //Flag splay as used for Right if ( keepAllSplays == false ) { rightShots.get(bestIdx).setDown( LRUD_SPECIAL_FLAG, LengthUnit.Metres ); } } } /** * Determines which of the splays is the best one to use to calculate the horizontal dimension for the * cave passage at this station * * @param splays Array of splay shots to pick the best shot from * @param forwardBearing Bearing from the station to represent the passage direction * @param left Flag to indicate if we want to find the best left shot or best right shot * @return Index of the best matching splay shot from the input array of splays */ private int findBestSplayForHorizontalDimension(List splays, double forwardBearing, boolean left) { //Find best shot (greatest horizontal extent along vector orthogonal to leg bearing) double bestValue = 0.0; int bestIdx = -1; for ( int i = 0; i < splays.size(); i++ ) { //Calculate corrected compass bearing for splay, normalised to a passage trending due North (zero degrees) double shotCorrected = splays.get(i).getCompass(BearingUnit.Degrees) - forwardBearing; if ( shotCorrected < 0 ) { shotCorrected += 360; } //Calculate horizontal extent of leg in direction orthogonal to corrected bearing (left or right) double orthogonal; if ( left ) { orthogonal = 270.0; } else { orthogonal = 90.0; } double horizontalLength = splays.get(i).getHorizontalLength(); double orthogonalExtent = extentAlongBearing( orthogonal, horizontalLength, shotCorrected); if ( orthogonalExtent > bestValue ) { //Found better match, so store value and index bestValue = orthogonalExtent; bestIdx = i; } } return bestIdx; } /** * Calculates the distance a vector extends along a bearing. Used to work out the distance of the cave wall * for a left or right passage dimension in a given direction from a station for a horizontal length measured * along another bearing * @param bearing The direction we need the distance to the wall for * @param vectorLength The length of the horizontal measurement we have * @param vectorBearing The direction of the horizontal measurement we have * @return The calculated distance to the wall from the station in the direction of the bearing */ private double extentAlongBearing( double bearing, double vectorLength, double vectorBearing) { double bearingDifference = UtilityFunctions.bearingDifferenceDegrees(bearing, vectorBearing); double distance = vectorLength * Math.cos(Math.PI * bearingDifference / 180); return distance; } /** * Reverses the order of all legs in the series, so in a linear chain of stations the last * station is placed first, and the first station is placed last. * Was written to Toporobot export, but then was not needed. Leaving the code here but * commented out as not currently used. public void reverseSeries() { //Loop through all legs, moving each one to the start of the series for (int idx = 0; idx < legs.size(); idx++) { SurveyLeg leg = legs.remove(idx); //Reverse leg direction SurveyStation stn = leg.getFromStn(); leg.setFromStn( leg.getToStn() ); leg.setToStn( stn ); double compass = leg.getCompass(); if ( compass > 180 ) { compass -= 180; } else { compass += 180; } leg.setCompass( compass ); leg.setClino( -leg.getClino() ); //Put leg at start of series legs.add(0, leg); } } */ } CaveConverter_src/src/footleg/cavesurvey/data/model/SurveyStation.java0000644000000000000000000000744612621447114025343 0ustar rootroot/** * Copyright (C) 2009-2015 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.model; /** * Represents a survey station in a cave survey. A station is a specific location in * the cave which might be marked, or a natural feature which can be described in a * comment, or it might be a temporary point which is not marked but was just used * to join two legs during the survey. * * @author Footleg * @version 2015.08.31 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) * */ public class SurveyStation { /** * Create station directly specifying an id number * @param id ID number of the station */ public SurveyStation(int id) { super(); this.id = id; } private int id = -1; private String name = ""; private String comment = ""; //FIXED POSITION private FixType fixType = FixType.NONE; private double easting; private double northing; private double altitude; private boolean entrance = false; public enum FixType { NONE (0), GPS (1), OTHER (2); FixType( int type ) { } } public boolean isEntrance() { return ( entrance ); } public void setEntrance(boolean entrance) { this.entrance = entrance; } public boolean isFixed() { return ( fixType != FixType.NONE ); } public FixType getFixType() { return fixType; } public double getEasting() { return easting; } public double getNorthing() { return northing; } public double getAltitude() { return altitude; } /** * Sets a fixed position for the station. * * @param fixType The type of fix (GPS, other) * @param easting Grid position (in metres) of the fix position * @param northing Grid position (in metres) of the fix position * @param altitude Elevation (in metres) of the fix position */ public void setFixed(FixType fixType, double easting, double northing, double altitude) { this.fixType = fixType; this.easting = easting; this.northing = northing; this.altitude = altitude; } public void clearFixedStn() { this.fixType = FixType.NONE; this.easting = 0; this.northing = 0; this.altitude = 0; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { String stnName = this.name; //Return number as name if no name set if (stnName.length() == 0) { stnName = "" + this.id; } return stnName; } public void setName(String name) { this.name = name; } public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } public SurveyStation clone() { SurveyStation clone = new SurveyStation( this.id ); clone.name = this.name; clone.comment = this.comment; clone.entrance = this.entrance; clone.fixType = this.fixType; clone.easting = this.easting; clone.northing = this.northing; clone.altitude = this.altitude; return clone; } } CaveConverter_src/src/footleg/cavesurvey/data/model/Equate.java0000644000000000000000000000602512621447114023720 0ustar rootroot/** * Copyright (C) 2009-2015 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.model; /** * Class to represent an equate between two survey stations in different series * * @author Footleg * @version 2015.08.31 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) * */ public class Equate { private String series1; private String stn1; private String series2; private String stn2; /** * Create an equate defining the link between two stations in two series * * @param seriesPrefix1 Full path to the first series * @param stnName1 Name of the station in the first series joining to the second series * @param seriesPrefix2 Full path to the second series * @param stnName2 Name of the station in the second series joining to the first series */ public Equate(String seriesPrefix1, String stnName1, String seriesPrefix2, String stnName2) { //Need to combine series prefix with station name and then split off //the station name from full series name String[] resplitStnRef1 = combineAndResplitFullStnRef( seriesPrefix1, stnName1 ); String[] resplitStnRef2 = combineAndResplitFullStnRef( seriesPrefix2, stnName2 ); this.series1 = resplitStnRef1[0]; this.stn1 = resplitStnRef1[1]; this.series2 = resplitStnRef2[0]; this.stn2 = resplitStnRef2[1]; } public String getSeries1() { return series1; } public String getStn1() { return stn1; } public String getSeries2() { return series2; } public String getStn2() { return stn2; } private String[] combineAndResplitFullStnRef( String seriesPrefix, String stnName ) { String[] results = new String[2]; //Combine prefix and station name into fully qualified station reference String fullStnRef = seriesPrefix + "." + stnName; //Split series name from station name int pos = fullStnRef.lastIndexOf('.'); if ( pos > 0 ) { //Split at this position results[0] = fullStnRef.substring( 0, pos ); results[1] = fullStnRef.substring( pos + 1 ); } else { //No '.' separator in equate, so throw error throw new RuntimeException( "Equate does not contain a series name and station." ); } return results; } } CaveConverter_src/src/footleg/cavesurvey/data/model/SurveyLeg.java0000644000000000000000000002547513034706132024430 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.model; import footleg.cavesurvey.converter.CaveConverter.BearingUnit; import footleg.cavesurvey.converter.CaveConverter.GradientUnit; import footleg.cavesurvey.converter.CaveConverter.LengthUnit; import footleg.cavesurvey.tools.UtilityFunctions; /** * Represents a leg in a cave survey. A leg is a set of measurements which define the * location of a point in the cave relative to another point (a survey station). The * second point defined by the leg can be another survey station or may just be a point * in the cave on the wall or used to measure the position of a significant feature. * Legs can be normal (defined in terms of length, bearing and inclination), or diving. * Diving legs are defined in terms of a length, bearing and change in depth. The change * in depth can be defined explicitly using the depths of both the from and to stations, * or in terms of just a change in depth. If the leg is defined as a 'depth change' leg * then this is stored in the toDepth property (the fromDepth property is set to a * value of 999999m). * Data is stored and calculations done in metric units (metres and degrees), but * conversion to other units on input/output is supported. * * @author Footleg * @version 2017.01.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) * * @to.do * TODO Add method to convert diving leg into conventional measurements (length,bearing,gradient) */ public class SurveyLeg implements Comparable { private static final int nullDepth = 999999; private SurveyStation fromStn; private SurveyStation toStn; private double length = -1; private double fromDepth = nullDepth; private double toDepth = nullDepth; private double compass = -1; private double clino = -99; private String comment = ""; //LRUD applies to fromStn private double left = 0.0; private double right = 0.0; private double up = 0.0; private double down = 0.0; //Leg flags private boolean splay = false; private boolean duplicate = false; private boolean surface = false; private boolean diving = false; private boolean nosurvey = false; /** * Support sorting by from station name, then to station name */ public int compareTo(SurveyLeg anotherLeg) { SurveyLeg leg = (SurveyLeg)anotherLeg; int fromTest = this.fromStn.getId() - leg.getFromStn().getId(); if ( fromTest == 0 ) { //Same from station, so use toStn to sort return this.toStn.getId() - leg.getToStn().getId(); } else { return fromTest; } } /** * Provides a string representation of a cave survey leg to display in a tree view of the data model * @return String representation of survey leg class */ public String toString() { String text = getFromStn().getName(); if ( (toStn != null) && ( toStn.getName() != null ) ) { text += " - " + getToStn().getName(); } return text; } /** * @return A copy of the survey leg */ public SurveyLeg clone() { SurveyLeg clone = new SurveyLeg(); if (fromStn != null){ clone.fromStn = fromStn.clone(); } if (toStn != null){ clone.toStn = toStn.clone(); } clone.length = length; clone.compass = compass; clone.clino = clino; clone.fromDepth = fromDepth; clone.toDepth = toDepth; clone.comment = comment; clone.left = left; clone.right = right; clone.up = up; clone.down = down; clone.splay = splay; clone.duplicate = duplicate; clone.surface = surface; clone.diving = diving; clone.nosurvey = nosurvey; return clone; } /** * Reverses the direction of a survey leg */ public void reverseDirection() { //Reverse leg direction SurveyStation stn = getFromStn(); setFromStn( getToStn() ); setToStn( stn ); double compass = getCompass(BearingUnit.Degrees); if ( compass > 180 ) { compass -= 180; } else { compass += 180; } setCompass( compass, BearingUnit.Degrees ); if ( isDiving() ) { if ( isDepthChangeLeg() ) { //Depth change, so change sign on toDepth to reverse depth change toDepth = -toDepth; } else { //Specific depths, so swap them double tmpDepth = fromDepth; fromDepth = toDepth; toDepth = tmpDepth; } //Swap clino value avoiding setter so isDiving flag is not unset, just in case it had a value this.clino = -getClino(GradientUnit.Degrees); } else { setClino( -getClino(GradientUnit.Degrees), GradientUnit.Degrees ); //Reset depths to null depth in case they had values this.fromDepth = nullDepth; this.toDepth = nullDepth; } } /** * Calculates the horizontal length of the leg * @return calculated horizontal length */ public double getHorizontalLength() { double hLength = Math.abs( length * Math.cos( Math.toRadians( clino ) ) ); return hLength; } /** * Calculates the vertical height of the leg * @return calculated vertical height */ public double getVerticalLength() { double vLength = Math.abs( length * Math.sin( Math.toRadians( clino ) ) ); return vLength; } //Getters and Setters public SurveyStation getFromStn() { return fromStn; } public void setFromStn(SurveyStation fromStn) { this.fromStn = fromStn; } public SurveyStation getToStn() { return toStn; } public void setToStn(SurveyStation toStn) { this.toStn = toStn; } public double getLength(LengthUnit units) { return UtilityFunctions.lengthFromMetres( length, units ); } public void setLength(double length, LengthUnit units) { this.length = UtilityFunctions.lengthToMetres(length, units); } public double getCompass(BearingUnit units) { return UtilityFunctions.bearingFromDegrees(compass, units); } public void setCompass(double compass, BearingUnit units) { this.compass = UtilityFunctions.bearingToDegrees(compass, units); } /** * TODO Calculate angle for diving legs * @param units Units to return the value in * @return Gradient of leg in the specified units */ public double getClino(GradientUnit units) { return UtilityFunctions.gradientFromDegrees(clino, units); } /** * Setting this sets the leg to a non-diving (normal) type leg. * @param clino Gradient value to set for the leg, in the units specified * @param units Units of the specified value */ public void setClino(double clino, GradientUnit units) { this.clino = UtilityFunctions.gradientToDegrees(clino, units); diving = false; } public double getLeft(LengthUnit units) { return UtilityFunctions.lengthFromMetres( left, units ); } public void setLeft(double left, LengthUnit units) { this.left = UtilityFunctions.lengthToMetres(left, units); } public double getRight(LengthUnit units) { return UtilityFunctions.lengthFromMetres( right, units ); } public void setRight(double right, LengthUnit units) { this.right = UtilityFunctions.lengthToMetres(right, units); } public double getUp(LengthUnit units) { return UtilityFunctions.lengthFromMetres( up, units ); } public void setUp(double up, LengthUnit units) { this.up = UtilityFunctions.lengthToMetres(up, units); } public double getDown(LengthUnit units) { return UtilityFunctions.lengthFromMetres( down, units ); } public void setDown(double down, LengthUnit units) { this.down = UtilityFunctions.lengthToMetres(down, units); } public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } public boolean isSplay() { return splay; } public void setSplay(boolean splay) { this.splay = splay; if ( splay == true ) { this.nosurvey = false; } } public boolean isDuplicate() { return duplicate; } public void setDuplicate(boolean duplicate) { this.duplicate = duplicate; } public boolean isSurface() { return surface; } public void setSurface(boolean surface) { this.surface = surface; } /** * @param units Length units to return the value in * @return The depth change for the diving leg */ public double getDepthChange(LengthUnit units) { if ( isDepthChangeLeg() ) { return UtilityFunctions.lengthFromMetres( toDepth, units ); } else { return UtilityFunctions.lengthFromMetres( toDepth - fromDepth, units ); } } /** * Setting this sets the leg to a diving type leg. * @param depthChange The depth change to set * @param units Units of the specified depth change */ public void setDepthChange(double depthChange, LengthUnit units) { this.fromDepth = nullDepth; this.toDepth = UtilityFunctions.lengthToMetres(depthChange, units); this.diving = true; this.nosurvey = false; } /** * @param units Length units to return the value in * @return The from Depth for a diving leg */ public double getFromDepth(LengthUnit units) { return UtilityFunctions.lengthFromMetres( fromDepth, units ); } /** * @param units Length units to return the value in * @return The to Depth for a diving leg */ public double getToDepth(LengthUnit units) { return UtilityFunctions.lengthFromMetres( toDepth, units ); } /** * Setting this sets the leg to a diving type leg. * @param fromDepth the depth of the from station * @param toDepth the depth of the to station * @param units Units of the specified depth measurements */ public void setDepths(double fromDepth, double toDepth, LengthUnit units) { this.fromDepth = UtilityFunctions.lengthToMetres(fromDepth, units); this.toDepth = UtilityFunctions.lengthToMetres(toDepth, units); this.diving = true; this.nosurvey = false; } public boolean isDiving() { return diving; } public boolean isDepthChangeLeg() { return ( diving && fromDepth == nullDepth ); } public boolean isNosurvey() { return nosurvey; } public void setNosurvey(boolean nosurvey) { this.nosurvey = nosurvey; if ( nosurvey == true) { this.splay = false; } } } CaveConverter_src/src/footleg/cavesurvey/data/model/SeriesLink.java0000644000000000000000000000367512621447114024554 0ustar rootroot/** * Copyright (C) 2009-2013 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.model; /** * Represents a link or join between two survey series. The link specifies a series and * station for each of the two series being joined which are the same point in the cave. * The series link lives in a series which both the linked series are inside (or the * same as). * * @author Footleg * @version 2013.01.20 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) * */ public class SeriesLink { private String series1; private String series2; private SurveyStation stn2; private SurveyStation stn1; public SeriesLink(String series1, SurveyStation stn1, String series2, SurveyStation stn2) { this.series1 = series1; this.series2 = series2; this.stn1 = stn1; this.stn2 = stn2; } public String getSeries1() { return series1; } public String getSeries2() { return series2; } public SurveyStation getStn2() { return stn2; } public SurveyStation getStn1() { return stn1; } public void setSeries2(String series2) { this.series2 = series2; } } CaveConverter_src/src/footleg/cavesurvey/data/writer/0000755000000000000000000000000013036467352022051 5ustar rootrootCaveConverter_src/src/footleg/cavesurvey/data/writer/CompassWriter.java0000644000000000000000000002627713034707276025534 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.writer; import java.util.ArrayList; import java.util.List; import footleg.cavesurvey.converter.CaveConverter; import footleg.cavesurvey.converter.Logger; import footleg.cavesurvey.converter.CaveConverter.BearingUnit; import footleg.cavesurvey.converter.CaveConverter.GradientUnit; import footleg.cavesurvey.converter.CaveConverter.LengthUnit; import footleg.cavesurvey.data.model.CaveSurvey; import footleg.cavesurvey.data.model.SurveyLeg; import footleg.cavesurvey.data.model.SurveySeries; /** * Writer for Compass file format text data. * * @author Footleg * @version 2017.01.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class CompassWriter { private List shortNames = new ArrayList(); private Logger logger; public CompassWriter( Logger logger ) { super(); this.logger = logger; } /** * Generates Compass format data from a cave survey * * THIS CLASS IS NOT FULLY IMPLEMENTED YET AND WILL NOT GENERATE VALID DATA * * @param surveyData The cave survey model to generate Compass data for * @return Text lines of Compass format data */ public List generateCompassData( CaveSurvey surveyData ) { List outputData = new ArrayList(); String caveName = "cave"; //See if we can determine cave name from series name of first series SurveySeries series1 = surveyData.get(0); if ( series1.getSeriesName().length() > 0 ) { //Check for dot separator int pos = series1.getSeriesName().indexOf('.'); if ( pos > 0) { //Take name before first separator caveName = series1.getSeriesName().substring(0, pos); } else { //Work backwards until first non-numeric character found for ( int nameIdx = series1.getSeriesName().length() - 1; nameIdx > -1; nameIdx-- ) { //Check for non-numerical character int charCode = series1.getSeriesName().charAt(nameIdx); if ( charCode < 48 || charCode > 57 ) { //Take name prior to this point caveName = series1.getSeriesName().substring(0, nameIdx + 1); nameIdx = 0; } } } } //Generate short names for all series for ( int seriesIdx = 0; seriesIdx < surveyData.size(); seriesIdx++ ) { String seriesName = surveyData.get(seriesIdx).getSeriesName(); String reducedName = ""; /* //Remove cave name prefix if found if ( seriesName.substring(0, caveName.length() + 1 ).compareTo( caveName + "." ) == 0 ) { seriesName = seriesName.substring(caveName.length() + 1); } */ //Look for last part of multi-part names String nameLastPart = seriesName; int lstIdx = seriesName.lastIndexOf('.'); if ( lstIdx > -1 && lstIdx < (seriesName.length() - 1) ) { //Take just last part of name nameLastPart = seriesName.substring(lstIdx + 1); } //Remove illegal characters for ( int idx = 0; reducedName.length() < 4 && idx < nameLastPart.length(); idx ++ ) { if ( nameLastPart.charAt(idx) != '.' ) { reducedName += nameLastPart.charAt(idx); } } int trys = 0; while ( trys < 110 ) { trys++; String testName = " "; switch (trys) { case 1: //Try using first 4 chars of name padded with leading spaces testName = reducedName; break; case 2: //Try removing vowels reducedName = ""; for ( int idx = 0; reducedName.length() < 4 && idx < nameLastPart.length(); idx ++ ) { if ( nameLastPart.charAt(idx) != '.' && nameLastPart.charAt(idx) != 'a' && nameLastPart.charAt(idx) != 'e' && nameLastPart.charAt(idx) != 'i' && nameLastPart.charAt(idx) != 'o' && nameLastPart.charAt(idx) != 'u' && nameLastPart.charAt(idx) != 'A' && nameLastPart.charAt(idx) != 'E' && nameLastPart.charAt(idx) != 'I' && nameLastPart.charAt(idx) != 'O' && nameLastPart.charAt(idx) != 'U' ) { reducedName += nameLastPart.charAt(idx); } } testName += reducedName; break; case 3: case 4: case 5: case 6: case 7: case 8: case 9: case 10: case 11: //Try adding increment number to end of 3 char name testName += reducedName.substring(0,3) + ( trys - 2 ); break; default : //Try adding increment number to end of 2 char name testName += reducedName.substring(0,2) + ( trys - 11 ); } //Trim to 4 chars testName = testName.substring( testName.length() - 4 ); //Check if name already used if ( nameAlreadyUsed( testName ) == false ) { //Use this name shortNames.add( testName ); trys = 999; } } //Check name was added if (trys != 999) { RuntimeException ex = new RuntimeException("Failed to generate unique short name for series name: " + seriesName ); throw ex; } } //Loop through all series for ( int seriesIdx = 0; seriesIdx < surveyData.size(); seriesIdx++ ) { SurveySeries series = surveyData.get(seriesIdx); List legsData = new ArrayList(); List fixedStnsData = new ArrayList(); List passageData = new ArrayList(); //Write header lines for series outputData.add( caveName ); outputData.add( "SURVEY NAME: " + series.getSeriesName() ); outputData.add( "SURVEY DATE: " + series.getSurveyDate() ); outputData.add( "SURVEY TEAM: "); outputData.add( " "); outputData.add( "DECLINATION: " + series.getCompassCalibration(BearingUnit.Degrees) + " FORMAT: DMMDLRUDLADN CORRECTIONS: 0.00 0.00 0.00"); outputData.add( " "); outputData.add( "FROM TO LENGTH BEARING INC LEFT UP DOWN RIGHT FLAGS COMMENTS"); /* //Add equates to output for ( int linkIdx = 0; linkIdx < series.getLinks().size(); linkIdx++ ) { SeriesLink link = series.getLinks().get(linkIdx); String equate = "*EQUATE "; if ( link.getLinkedSeries() == -1 ) { //Link to series not in current data file, so create 'false' equate placeholder in file equate = ";" + equate + series.getSeriesName() + "." + link.getLocalStation().getName() + " " + "CAVE" + "." + link.getLocalStation(); } else { equate += series.getSeriesName() + "." + link.getLocalStation().getName() + " " + surveyData.get( link.getLinkedSeries() ).getSeriesName() + "." + link.getLinkedStation().getName(); } outputData.add( equate ); } outputData.add( ""); */ //Start series block outputData.add( "*BEGIN " + series.getSeriesName() ); //TODO Write date if present // if ( series.getSurveyDate().length() > 0 ) { // compassData.add( ";Date " + series.getSurveyDate() ); // } //Write calibration lines if ( series.getTapeCalibration(LengthUnit.Metres) != 0 ) { outputData.add( "*CALIBRATE tape " + series.getTapeCalibration(LengthUnit.Feet) ); } if ( series.getCompassCalibration(BearingUnit.Degrees) != 0 ) { outputData.add( "*CALIBRATE declination " + series.getCompassCalibration(BearingUnit.Degrees) ); } if ( series.getClinoCalibration(GradientUnit.Degrees) != 0 ) { outputData.add( "*CALIBRATE clino " + series.getClinoCalibration(GradientUnit.Degrees) ); } outputData.add( ""); //Loop through the series legs writing details of each leg found for ( int legIdx = 0; legIdx < series.legCount(); legIdx++ ) { SurveyLeg leg = series.getLegRaw(legIdx); //Check for valid leg String fromStn = leg.getFromStn().getName(); String toStn = leg.getToStn().getName(); if ( leg.getLength( LengthUnit.Metres ) > 0 ) { //Write leg data legsData.add( fromStn + "\t" + toStn + "\t" + CaveConverter.padNumber( leg.getLength(LengthUnit.Feet), 2, 5 ) + "\t" + CaveConverter.padNumber( leg.getCompass(BearingUnit.Degrees), 2, 6 ) + "\t" + CaveConverter.padNumber( leg.getClino(GradientUnit.Degrees), 2, 6 ) + "\t"); } else { //Zero length leg //Get to stn name if there is one if ( leg.isSplay() == false ) { //Valid leg, so write as equate legsData.add( "*EQUATE " + fromStn + "\t" + toStn ); } } //Add FIXed points to fixed stns block for series // if (leg.hasFixedStn() == true) { // String fixedStnLine = "*FIX "; // if ( leg.isFromStnFixed() == true ) { // fixedStnLine += fromStn; // } // else { // fixedStnLine += getActualStationName( series, leg.getToStn() ); // } // fixedStnLine += "\t" + leg.getEasting() + "\t" + leg.getNorthing() + "\t" + // leg.getAltitude(); // fixedStnsData.add( fixedStnLine ); // } //Add LRUD to passages block for series if ( leg.getLeft(LengthUnit.Metres) + leg.getRight(LengthUnit.Metres) + leg.getUp(LengthUnit.Metres) + leg.getDown(LengthUnit.Metres) > 0.0 ) { passageData.add( fromStn + "\t" + leg.getLeft(LengthUnit.Feet) + "\t" + leg.getRight(LengthUnit.Feet) + "\t" + leg.getUp(LengthUnit.Feet) + "\t" + leg.getDown(LengthUnit.Feet) + "\t" ); } } //Write fixes data block if ( fixedStnsData.size() > 0 ) { outputData.addAll( fixedStnsData ); } //Write legs data block outputData.addAll( legsData ); //Write passage data block if ( passageData.size() > 0 ) { outputData.add( ""); outputData.add( "*data passage station left right up down"); outputData.addAll( passageData ); } //Close the series outputData.add( "*END " + series.getSeriesName() + "\n"); } //Close the cave name outputData.add( "*END " + caveName ); return outputData; } /** * Looks up short series name for series from array of names created previously * @param seriesIdx * @return short (4 character) name for series */ private String getShortSeriesName( int seriesIdx ) { return shortNames.get(seriesIdx); } /** * Looks for short series name in array of names used * @param name * @return true if name has already been used for another series */ private boolean nameAlreadyUsed( String name ) { boolean found = false; for ( int i = 0; i < shortNames.size(); i++ ) { if ( shortNames.get(i).compareToIgnoreCase( name ) == 0 ) { found = true; i = shortNames.size(); } } return found; } } CaveConverter_src/src/footleg/cavesurvey/data/writer/TopoRobotWriter.java0000644000000000000000000005222313034772722026042 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.writer; import java.util.ArrayList; import java.util.Date; import java.util.List; import java.util.ListIterator; import footleg.cavesurvey.converter.CaveConverter; import footleg.cavesurvey.converter.Logger; import footleg.cavesurvey.converter.CaveConverter.BearingUnit; import footleg.cavesurvey.converter.CaveConverter.GradientUnit; import footleg.cavesurvey.converter.CaveConverter.LengthUnit; import footleg.cavesurvey.data.model.CaveSurvey; import footleg.cavesurvey.data.model.SeriesLink; import footleg.cavesurvey.data.model.SurveyLeg; import footleg.cavesurvey.data.model.SurveySeries; import footleg.cavesurvey.data.model.SurveySeries.ToStnLRUD; import footleg.cavesurvey.tools.UtilityFunctions; /** * Writer for TopoRobot file format text data. * * @author Footleg * @version 2017.01.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class TopoRobotWriter { private List terminalLRUDCache; private Logger logger; public TopoRobotWriter( Logger logger ) { super(); this.logger = logger; } /** * Generates TopoRobot format data from a cave survey * * @param surveyData The cave survey model to generate TopoRobot data for * @param defaultDate The date to put in the data header * @param outputSplays Flag to switch on/off whether splay legs are included in the output * @return Text lines of TopoRobot format data */ public List generateToporobotData( CaveSurvey surveyData, Date defaultDate, boolean outputSplays ) { List outputData = new ArrayList(); terminalLRUDCache = new ArrayList(); /** * Pre-process series data to make it suitable for toporobot export. Toporobot only supports * numeric station names, and linear chains of survey legs (i.e. No branching in a survey * series). To convert the data to a suitable structure from a hierarchical nested set of * potentially branched survey series the following processes are applied to the data. * 1) Create a new list of survey series where no series contains any inner series. All * series are named using the fully expanded original hierarchical name for the series. * All links between series are stored in one of the series involved in the link rather * than at a higher level outside the series. * 2) All branches in the resulting series are removed by spliting each series containing * a branch at the junction. * 3) Merge series which are joined end to end into a single series to minimise the number * of linear series in the survey. * 4) Split series which are not linked by their start stations at the linking station so * that all series links use only the first station to link to another series. * * The result of this is that the naming of series will no longer reflect the original * naming of series form the input survey, and stations will be renumbered. * * TODO This writer has some issues. Some surveys with multiple loops can get split into * two parts which are not linked to each other. Some links have comments indicating the * stations are id -1 and some series report they are not linked to any others. */ logger.logMessage("Generating Toporobot format data..."); //Convert all series including nested series into one big series with full qualified names in links cache SurveySeries rawData = convertToSingleSeries(surveyData, outputSplays); //Convert this to linear series SurveySeries processedSurveyData = UtilityFunctions.convertToLinearSeries( rawData, logger ); List preferredLinkSeriesCache = new ArrayList(); //Generate formatted date and time strings for headers String dateFormat = "yy/MM/dd HH:mm:ss"; String dateTime = UtilityFunctions.dateToString(defaultDate, dateFormat); String todaysDate = dateTime.substring(6, 8) + '/' + dateTime.substring(3, 5) + '/' + dateTime.substring(0, 2); //Create file header outputData.add( " -6 1 1 1 1 Cave Name"); outputData.add( " -5 1 1 1 1 0.00 0.00 0.00 1 0"); outputData.add( " -4 1 1 1 1 " + dateTime + " CaveConverter"); outputData.add( " -3 1 1 1 1"); outputData.add( " -2 1 1 1 1 " + todaysDate + " Converted Data 0 0.00 0 1"); outputData.add( " -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00"); //Generate data lines from survey data List links = processedSurveyData.getLinks(); ListIterator seriesItr = processedSurveyData.getInnerSeriesList().listIterator(); int seriesNo = 0; //1 based index of stations, for writing directly into file while ( seriesItr.hasNext() ) { SurveySeries series = seriesItr.next(); seriesNo++; //Generate series header outputData.add( CaveConverter.padNumber(seriesNo,6) + " -2 1 1 1 Series " + series.getSeriesName() ); //Initialise links data line String linkLine = CaveConverter.padNumber(seriesNo,6) + " -1 1 1 1"; //Initialise link from ourself to ourself, as that is how toborobot represents unlinked series int linkSeries1 = seriesNo; int linkStn1 = 0; int linkSeries2 = seriesNo; int linkStn2 = series.legCount(); boolean foundFirstLink = false; //Now find the links to any series this one starts or ends at a connection with //Loop through links looking for links to start stn or end stn of this series for (int i = 0; i < links.size(); i++ ) { //Check whether this link is to this series if ( series.getSeriesName() == links.get(i).getSeries1() ) { //Found link to our series, check if it is to start or end of this series int linkType = 0; //0=not to this series, 1=to start of this series, 2=to end of this series if ( series.getLegRaw(0).getFromStn().getId() == links.get(i).getStn1().getId() ) { linkType = 1; } else if ( series.getLegRaw( series.legCount() - 1 ).getToStn().getId() == links.get(i).getStn1().getId() ) { linkType = 2; } if ( linkType > 0 ) { //Found a link to this series, so determine the index of the linked series int linkSeriesIdx = -1; int j = 0; String series2Name = links.get(i).getSeries2(); while ( linkSeriesIdx < 0 && j < processedSurveyData.getInnerSeriesList().size() ) { if ( processedSurveyData.getInnerSeriesList().get(j).getSeriesName() == series2Name ) { linkSeriesIdx = j; } j++; } if ( linkSeriesIdx >= 0 ) { //Found the index of the parent series, now need to find the index of the link station //Stn number should be 1 based index of station in series, //not the actual value stored in that series int idx = 0; int linkStnIdx = -1; int linkStnId = links.get(i).getStn2().getId(); /* * Cache series index as preferred for this stn number if not already found. * This is so that where multiple series all branch off from the same point, * all the links are to the same one of these series. Otherwise we can end * up with multiple sets of series linked to the others in the group, but * the groups not connected to each other. This preferred series cache * ensures that the first series found is used for all other links to * series starting at this station. */ int preferredLinkSeries = 0 ; //Look for this stn num in cache for ( int k = 0; k < preferredLinkSeriesCache.size(); k++ ) { if ( preferredLinkSeriesCache.get(k)[0] == linkStnId ) { //Found, so get preferred series from cache preferredLinkSeries = preferredLinkSeriesCache.get(k)[1]; k = preferredLinkSeriesCache.size(); } } //If not found in cache then cache this series as the preferred one if ( preferredLinkSeries == 0 ) { int[] rec = new int[2]; rec[0] = linkStnId; rec[1] = linkSeriesIdx; preferredLinkSeriesCache.add(rec); } //Get link series SurveySeries linkSeries; if ( ( preferredLinkSeries > 0 ) && ( preferredLinkSeries != seriesNo ) ) { //Use preferred series instead of the given link linkSeries = processedSurveyData.getInnerSeries(preferredLinkSeries); linkSeriesIdx = preferredLinkSeries; } else { linkSeries = processedSurveyData.getInnerSeries(linkSeriesIdx); } while ( linkStnIdx == -1) { //Check if stn name matches our link name if ( idx >= linkSeries.legCount() ) { //Check if link is to final stn if ( linkSeries.getLegRaw(idx-1).getToStn().getId() == linkStnId ) { //Found match linkStnIdx = idx; } else { //No matches, set value to cause loop to exit linkStnIdx = -2; } } else if ( linkSeries.getLegRaw(idx).getFromStn().getId() == linkStnId ) { //Found match linkStnIdx = idx; } else { //Keep looking idx++; } } //We have now identified the series number and station number for the link int linkSeriesNum = linkSeriesIdx + 1; //Set link to start or end station if ( linkType == 1 ) { linkSeries1 = linkSeriesNum; linkStn1 = linkStnIdx; if ( foundFirstLink == false ) { //This is first link for this series, so set flag foundFirstLink = true; } else { //This is 2nd link to this series, so stop looking for more break; } } else { linkSeries2 = linkSeriesNum; linkStn2 = linkStnIdx; if ( foundFirstLink == false ) { //This is first link for this series, so set flag foundFirstLink = true; } else { //This is 2nd link to this series, so stop looking for more break; } } } } } } //Add link details to data line: linked series no, linked station index, this series number, first station (0) linkLine += CaveConverter.padNumber(linkSeries1,8) + CaveConverter.padNumber(linkStn1,8); linkLine += CaveConverter.padNumber(linkSeries2,8) + CaveConverter.padNumber(linkStn2,8); //Finish line linkLine += CaveConverter.padNumber(series.legCount(),8) + " 3 0"; outputData.add( linkLine ); //First line is LRUD for first station String blankLRUD = " 0.00 0.00 0.00 0.00"; String lrud = blankLRUD; if ( series.legCount() > 0 ) { lrud = lrudForLeg( series.getLegCorrected( 0 ) ); } outputData.add( CaveConverter.padNumber(seriesNo,6) + CaveConverter.padNumber(0,6) + " 1 1 1" + " 0.00 0.00 0.00" + lrud); //Loop through legs in series to write out remaining stations for (int legIdx = 0; legIdx < series.legCount(); legIdx++ ) { SurveyLeg leg = series.getLegCorrected(legIdx); //Use lrud from next leg as toporobot puts lrud on 'to' station of each leg lrud = blankLRUD; if ( series.legCount() > legIdx + 1 ) { lrud = lrudForLeg( series.getLegCorrected( legIdx + 1 ) ); } else if ( series.legCount() == legIdx + 1 ) { //Last leg in chain, so check for cached LRUD data for toStn ListIterator legIter = terminalLRUDCache.listIterator(); while (legIter.hasNext() ) { ToStnLRUD toStnLrudData = legIter.next(); if ( toStnLrudData.getFromStn().getName().compareTo( leg.getToStn().getName() ) == 0 ) { //Copy terminal station LRUD data to temp leg to convert to data string SurveyLeg tempLeg = new SurveyLeg(); tempLeg.setLeft( toStnLrudData.getLeft(), LengthUnit.Metres ); tempLeg.setRight( toStnLrudData.getRight(), LengthUnit.Metres ); tempLeg.setUp( toStnLrudData.getUp(), LengthUnit.Metres ); tempLeg.setDown( toStnLrudData.getDown(), LengthUnit.Metres ); lrud = lrudForLeg( tempLeg ); //Remove from iterator and exit loop legIter.remove(); break; } } } String dataLine = CaveConverter.padNumber(seriesNo,6) + CaveConverter.padNumber( legIdx+1, 6 ) + " 1 1 1" + CaveConverter.padNumber( leg.getLength(LengthUnit.Metres), 2, 8 ) + CaveConverter.padNumber( leg.getCompass(BearingUnit.Degrees), 2, 8 ) + CaveConverter.padNumber( leg.getClino(GradientUnit.Degrees), 2, 8 ) + lrud; outputData.add( dataLine ); } } return outputData; } /** * Generate string representation of LRUD data for a survey leg * @param leg Input leg * @return String representation of LRUD data */ private String lrudForLeg(SurveyLeg leg) { double down = leg.getDown(LengthUnit.Metres); if ( down < 0 ) { down = 0.0; } return CaveConverter.padNumber(leg.getLeft(LengthUnit.Metres),2,8) + CaveConverter.padNumber(leg.getRight(LengthUnit.Metres),2,8) + CaveConverter.padNumber(leg.getUp(LengthUnit.Metres),2,8) + CaveConverter.padNumber(down,2,8); } private void addLegsToMasterSeries( SurveySeries series, SurveySeries rawData, String parentSeriesPrefix, List> linkCache, boolean outputSplays ) { //Copy legs from this series into master series, translating using links cache when matching for ( int j = 0; j < series.legCount(); j++ ) { SurveyLeg leg = series.getLegCorrected(j); //Ignore splay legs if output splays option is set to false if ( ( ( outputSplays == false ) && leg.isSplay() ) == false ) { //Get fully expanded station names for leg String fromStn = parentSeriesPrefix + "." + series.getSeriesName() + "." + leg.getFromStn().getName(); String toStn = parentSeriesPrefix + "." + series.getSeriesName() + "." + leg.getToStn().getName(); /* * Check for these stn names in links cache and if found, use name of first equivalent station * so no links are required because all stations will be linked via a common named station */ for ( int k = 0; k < linkCache.size(); k++ ) { List rec = linkCache.get(k); for ( int m = 1; m < rec.size(); m++ ) { if ( rec.get(m).compareToIgnoreCase( fromStn ) == 0 ) { fromStn = rec.get(0); } else if ( rec.get(m).compareToIgnoreCase( toStn ) == 0 ) { toStn = rec.get(0); } } } //Clone leg and create new stn numbers from stn full names SurveyLeg newLeg = leg.clone(); newLeg.setFromStn( UtilityFunctions.createStationFromNameForSeries(fromStn, rawData) ); newLeg.setToStn(UtilityFunctions.createStationFromNameForSeries(toStn, rawData) ); //Add to master raw survey series rawData.addLeg(newLeg); } } //Cache LRUD data from final stations in a series for ( int j = 0; j < series.getToStnLRUDs().size(); j++ ) { ToStnLRUD toStnLrudData = series.getToStnLRUDs().get(j); //Get fully expanded station name for from stn and set as stn name in cache String fromStn = parentSeriesPrefix + "." + series.getSeriesName() + "." + toStnLrudData.getFromStn().getName(); toStnLrudData.getFromStn().setName(fromStn); terminalLRUDCache.add(toStnLrudData); } } private void addLinksToCache(SurveySeries series, String parentSeriesPrefix, List> linkCache ){ String seriesFullName = parentSeriesPrefix + "." + series.getSeriesName(); List links = series.getLinks(); for ( int j = 0; j < links.size(); j++ ) { //Get fully expanded linked station pair String linkSeries1 = ""; if ( links.get(j).getSeries1().length() > 0 ) { linkSeries1 = "." + links.get(j).getSeries1(); } String stn1 = seriesFullName + linkSeries1 + "." + links.get(j).getStn1().getName(); String linkSeries2 = ""; if ( links.get(j).getSeries2().length() > 0 ) { linkSeries2 = "." + links.get(j).getSeries2(); } String stn2 = seriesFullName + linkSeries2 + "." + links.get(j).getStn2().getName(); /** * Need one station name to always take precedence in all links * so check if either of these stations is already in the cache, * and if so add other station to the existing entry */ boolean newRec = true; for ( int k = 0; k < linkCache.size(); k++ ) { List rec = linkCache.get(k); for ( int m = 0; m < rec.size(); m++ ) { if ( rec.get(m).equalsIgnoreCase( stn1 ) ) { newRec = false; //Add other stn to this list rec.add( stn2 ); m = rec.size(); } else if ( rec.get(m).equalsIgnoreCase( stn2 ) ) { newRec = false; //Add other stn to this list rec.add( stn1 ); m = rec.size(); } } } if ( newRec ) { //Cache this link as a new record List rec = new ArrayList(); rec.add(stn1); rec.add(stn2); linkCache.add(rec); } } } private void processSeriesLinks(SurveySeries series, String masterSeriesNamePrefix, List> linkCache){ //Process links for this series logger.logMessage("Processing links from series: " + series.getSeriesName() ); addLinksToCache( series, masterSeriesNamePrefix, linkCache ); //Process any inner series String seriesNamePrefix = masterSeriesNamePrefix + "." + series.getSeriesName(); ListIterator iterator = series.getInnerSeriesList().listIterator(); while (iterator.hasNext() ) { SurveySeries innerSeries = iterator.next(); //Process any inner series processSeriesLinks(innerSeries, seriesNamePrefix, linkCache); } } private void processSeriesLegs(SurveySeries series, SurveySeries masterSeries, String masterSeriesNamePrefix, List> linkCache, boolean outputSplays ){ //Process legs from this series logger.logMessage("Processing legs from series: " + series.getSeriesName() ); addLegsToMasterSeries( series, masterSeries, masterSeriesNamePrefix, linkCache, outputSplays ); //Process any inner series String seriesNamePrefix = masterSeriesNamePrefix + "." + series.getSeriesName(); ListIterator iterator = series.getInnerSeriesList().listIterator(); while (iterator.hasNext() ) { SurveySeries innerSeries = iterator.next(); //Process any inner series processSeriesLegs(innerSeries, masterSeries, seriesNamePrefix, linkCache, outputSplays); } } /** * Creates one master survey series from a cave survey * @param surveyData The cave survey model to convert to a single series * @param outputSplays Indicates whether to include splay legs in the file or not * @return The single survey series representing the cave survey */ public SurveySeries convertToSingleSeries( CaveSurvey surveyData, boolean outputSplays ) { logger.logMessage("Flattening survey series heirarchy..."); SurveySeries rawData = new SurveySeries("root"); List> linkCache = new ArrayList>(); String seriesNamePrefix = rawData.getSeriesName(); //Create cache of links from all series ListIterator iterator = surveyData.listIterator(); while (iterator.hasNext() ) { SurveySeries series = iterator.next(); //Process links from this series processSeriesLinks(series, seriesNamePrefix, linkCache); } //Process legs from all series once all series links have been handled ListIterator iterator2 = surveyData.listIterator(); while (iterator2.hasNext() ) { SurveySeries series = iterator2.next(); //Process legs from this series processSeriesLegs(series, rawData, seriesNamePrefix, linkCache, outputSplays); } /* * At this stage the legs are all in one master series, and the station names have been set so * that any links are implicit due to having mapped all equivalent stations to the same station names. */ //Debug dump links cache for ( int k = 0; k < linkCache.size(); k++ ) { List rec = linkCache.get(k); String msg = "Linked"; for ( int m = 0; m < rec.size(); m++ ) { msg += ":" + rec.get(m); } logger.logMessage(msg); } return rawData; } } CaveConverter_src/src/footleg/cavesurvey/data/writer/SurvexWriter.java0000644000000000000000000011177313035166172025412 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.writer; import java.util.ArrayList; import java.util.List; import java.util.ListIterator; import footleg.cavesurvey.converter.CaveConverter; import footleg.cavesurvey.converter.Logger; import footleg.cavesurvey.converter.CaveConverter.BearingUnit; import footleg.cavesurvey.converter.CaveConverter.GradientUnit; import footleg.cavesurvey.converter.CaveConverter.LengthUnit; import footleg.cavesurvey.data.model.CaveSurvey; import footleg.cavesurvey.data.model.SeriesLink; import footleg.cavesurvey.data.model.SurveyLeg; import footleg.cavesurvey.data.model.SurveySeries; import footleg.cavesurvey.data.model.SurveySeries.ToStnLRUD; import footleg.cavesurvey.data.model.SurveyStation; import footleg.cavesurvey.tools.UtilityFunctions; /** * Writer for Survex file format text data. * * @author Footleg * @version 2017.01.10 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) * * @to.do * TODO Handle nosurvey legs (currently they are converted to equates in error) * TODO Output entrance flags * TODO Output fix flags * TODO Output calibration comments fields * TODO Output team fields * TODO Output instrument fields * TODO Output units * TODO Indent block contents including nested blocks * TODO Support option to output multiple files using includes and equates in master file and one series per file in child files */ public class SurvexWriter { private Logger logger; public SurvexWriter( Logger logger ) { super(); this.logger = logger; } /** * Supported splay formats for output */ public static enum SplayFormats { None, Flagged, Anonymous } /** * Generates Survex format data from a cave survey * * @param surveyData The cave survey model to generate Survex data for * @param splaysOutput Indicate format of splay legs included in the output. * @return Text lines of Survex format data */ public List generateSurvexData( CaveSurvey surveyData, SplayFormats splaysOutput ) { List outputData = new ArrayList(); logger.logMessage("Generating Survex format data..."); //Create dummy parent series to pass in neutral calibration settings for top level series SurveySeries parentSeries = new SurveySeries("parent"); //Loop through all series ListIterator seriesIterator = surveyData.listIterator(); while ( seriesIterator.hasNext() ) { SurveySeries series = seriesIterator.next(); outputData.addAll( generateSurvexDataSeries( series, parentSeries, splaysOutput ) ); } return outputData; } /** * Generates Survex format data for a survey series * * @param series Survey series to generate Survex format data from * @param parentSeries Survey series which is the parent of the series being passed in (used for calibrations) * @return Text lines for a Survex format series data block */ private List generateSurvexDataSeries( SurveySeries series, SurveySeries parentSeries, SplayFormats splaysOutput ) { List outputData = new ArrayList(); List legsData = new ArrayList(); List fixedStnsData = new ArrayList(); //List of passage data blocks. Each block is a child list of the station name and the LRUD data line. List> passageData = new ArrayList>(); boolean duplicateFlagOn = false; boolean surfaceFlagOn = false; boolean splayFlagOn = false; boolean nosurveyFlagOn = false; int splayNameSequence = 0; //Start series block outputData.add( "*BEGIN " + substIllegalNameChars( series.getSeriesName() ) ); //Write comment if present if ( series.getComment().length() > 0 ) { String[] dataItems = UtilityFunctions.parseTripComment( series.getComment() ); for (String line : dataItems) { outputData.add( ";" + line ); } outputData.add( "" ); } //Write date if present if ( series.getSurveyDate() != null ) { outputData.add( "*DATE " + UtilityFunctions.dateToString( series.getSurveyDate(), UtilityFunctions.SURVEXDATE_FORMAT) ); } //Write calibration lines if different to parent series //TODO Output Units for series and calibrations in these units (at same time as measurements in series units) if ( series.getDeclination() != parentSeries.getDeclination() ) { outputData.add( "*CALIBRATE declination " + series.getDeclination() ); } if ( series.getTapeCalibration(LengthUnit.Metres) != parentSeries.getTapeCalibration(LengthUnit.Metres) ) { outputData.add( "*CALIBRATE tape " + CaveConverter.padNumber( series.getTapeCalibration(LengthUnit.Metres), 2, 0 ) ); } if ( series.getCompassCalibration(BearingUnit.Degrees) != parentSeries.getCompassCalibration(BearingUnit.Degrees) ) { outputData.add( "*CALIBRATE compass " + series.getCompassCalibration(BearingUnit.Degrees) ); } if ( series.getClinoCalibration(GradientUnit.Degrees) != parentSeries.getClinoCalibration(GradientUnit.Degrees) ) { outputData.add( "*CALIBRATE clino " + series.getClinoCalibration(GradientUnit.Degrees) ); } outputData.add( "" ); //Alias - for stations if splays output format is anonymous if ( splaysOutput == SplayFormats.Anonymous ) { outputData.add( "*alias station - .." ); outputData.add( "" ); } //Add equates to output ListIterator linksIterator = series.getLinks().listIterator(); while ( linksIterator.hasNext() ) { SeriesLink link = linksIterator.next(); String equate = "*EQUATE "; String series1Prefix = ""; String series2Prefix = ""; if ( link.getSeries1().length() > 0 ) { series1Prefix = substIllegalNameChars( link.getSeries1() ) + "."; } if ( link.getSeries2().length() > 0 ) { series2Prefix = substIllegalNameChars( link.getSeries2() ) + "."; } equate += series1Prefix + substIllegalNameChars( link.getStn1().getName() ) + " " + series2Prefix + substIllegalNameChars( link.getStn2().getName() ); outputData.add( equate ); } outputData.add( ""); //Write data format block if present and different to parent series boolean skipDataOrderLine = false; if ( series.hasDataOrder() ) { if ( parentSeries.hasDataOrder() ) { if ( UtilityFunctions.compareStringLists( series.getDataOrder(), parentSeries.getDataOrder() ) ) { if ( series.getDataOrder2().size() == 0 && parentSeries.getDataOrder2().size() == 0 ) { //Identical to parent and neither is a mix of data formats, so skip redeclaring data order in this series skipDataOrderLine = true; } } } } //Add data order header here if no legs in series, so it can apply to child series. //(Series with legs will have data order headers written as needed in the leg processing loop later) if ( ( skipDataOrderLine == false ) && ( series.legCount() == 0 ) && ( series.hasDataOrder() ) ) { outputData.add( "*" + UtilityFunctions.dataFormatLineForSeries( series, false ) ); } //Loop through the series legs and LRUD data writing details of each leg found int psuedoLegCount = series.legCount() + series.getToStnLRUDs().size(); boolean lastLegWasDiving = false; for ( int psuedoLegIdx = 0; psuedoLegIdx < psuedoLegCount; psuedoLegIdx++ ) { //Determine if real leg of psuedo leg representing LRUD data on a toStn SurveyLeg leg; if ( psuedoLegIdx < series.legCount() ) { //Real leg leg = series.getLegRaw(psuedoLegIdx); //If no data order in series, then skip data order headers unless diving data if ( ( series.hasDataOrder() == false ) && ( leg.isDiving() == false ) ) { //No data order in series, so skip it skipDataOrderLine = true; } } else { //Need to generate a psudeo leg to hold the LRUD data for this toStn leg = new SurveyLeg(); ToStnLRUD lrud = series.getToStnLRUDs().get( psuedoLegIdx - series.legCount() ); leg.setFromStn( lrud.getFromStn() ); leg.setLeft( lrud.getLeft(), LengthUnit.Metres ); leg.setRight( lrud.getRight(), LengthUnit.Metres ); leg.setUp( lrud.getUp(), LengthUnit.Metres ); leg.setDown( lrud.getDown(), LengthUnit.Metres ); } String fromStn = leg.getFromStn().getName(); String fromStnVal = substIllegalNameChars( fromStn ); /* Check for valid leg. We do not want to write output for psuedo legs in a series which * contain only a 'from station' with LRUD data on it, * so only write leg data if a 'to station' exists or leg is a splay */ if ( ( leg.isSplay() ) || ( leg.getToStn() != null ) ) { String toStn; if ( leg.getToStn() == null ) { //Splay leg without a 'to' station. Create a station name from the leg from station toStn = leg.getFromStn().getName() + "-" + splayNameSequence++; } else { toStn = leg.getToStn().getName(); } String toStnVal = substIllegalNameChars( toStn ); if ( leg.isNosurvey() || leg.getLength( LengthUnit.Metres ) > 0 ) { //Determine whether to write data type header if ( ( leg.isNosurvey() ) && nosurveyFlagOn == false ) { legsData.add( "*data nosurvey from to"); nosurveyFlagOn = true; } else if ( ( leg.isNosurvey() == false ) && nosurveyFlagOn ) { legsData.add( "*" + UtilityFunctions.dataFormatLineForSeries( series, leg.isDiving() ) ); nosurveyFlagOn = false; } //Determine if any flags need setting String flagsSetting = ""; //Determine whether to set or clear duplicate flag if ( ( leg.isDuplicate() ) && duplicateFlagOn == false ) { flagsSetting += " DUPLICATE"; duplicateFlagOn = true; } else if ( ( leg.isDuplicate() == false ) && duplicateFlagOn ) { flagsSetting += " NOT DUPLICATE"; duplicateFlagOn = false; } //Determine whether to set or clear surface flag if ( ( leg.isSurface() ) && surfaceFlagOn == false ) { flagsSetting += " SURFACE"; surfaceFlagOn = true; } else if ( ( leg.isSurface() == false ) && surfaceFlagOn ) { flagsSetting += " NOT SURFACE"; surfaceFlagOn = false; } if ( splaysOutput == SplayFormats.Flagged ) { //Determine whether to set or clear splays flag if ( ( leg.isSplay() ) && splayFlagOn == false ) { flagsSetting += " SPLAY"; splayFlagOn = true; } else if ( ( leg.isSplay() == false ) && splayFlagOn ) { flagsSetting += " NOT SPLAY"; splayFlagOn = false; } } //Write flags line if any flags changed if ( flagsSetting.length() > 0 ) { legsData.add( "*FLAGS" + flagsSetting); } if ( ( ( splaysOutput == SplayFormats.None ) && leg.isSplay() ) == false ) { //Leg or a splay to be written //Write data order line if first leg, or different format to last leg when secondary data order boolean needDataOrderHeader = false; if ( psuedoLegIdx == 0 ) { //First leg, so write data order line regardless, and set flag for type if ( skipDataOrderLine == false ) { needDataOrderHeader = true; } } else { //Only write data order line if leg type has changed since last leg if ( series.getDataOrder2().size() > 0 ) { if ( lastLegWasDiving != leg.isDiving() ) { needDataOrderHeader = true; } } } //Set flag ready for next leg lastLegWasDiving = leg.isDiving(); //Output data order header line if needed before this leg if ( needDataOrderHeader ) { legsData.add( "*" + UtilityFunctions.dataFormatLineForSeries( series, leg.isDiving() ) ); } //Determine data order to write out List dataOrder = series.getDataOrder(); if ( dataOrder.size() == 0 ) { //No data order specified, so use Survex default order dataOrder.add( CaveConverter.DATA_ORDER_CAT_FROMSTN ); dataOrder.add( CaveConverter.DATA_ORDER_CAT_TOSTN ); dataOrder.add( CaveConverter.DATA_ORDER_CAT_LENGTH ); dataOrder.add( CaveConverter.DATA_ORDER_CAT_BEARING ); dataOrder.add( CaveConverter.DATA_ORDER_CAT_CLINO ); } else { List dataOrder2 = series.getDataOrder2(); //Determine if correct data order item for normal or diving in case of mixed data series if ( dataOrder2.size() > 0 ) { if ( UtilityFunctions.dataOrderIsDiving( dataOrder ) != leg.isDiving() ) { //Primary data order does not match required type, so use secondary order dataOrder = dataOrder2; } } } String legLine = ""; //Write data in data order for ( int i = 0; i < dataOrder.size(); i++ ) { String item = dataOrder.get(i); if ( item.compareTo( CaveConverter.DATA_ORDER_CAT_FROMSTN ) == 0 ) { legLine += fromStnVal + "\t"; } else if ( item.compareTo( CaveConverter.DATA_ORDER_CAT_TOSTN ) == 0 ) { if ( ( splaysOutput == SplayFormats.Anonymous ) && leg.isSplay() ) { //Anonymous splay, so no name for toStn legLine += "-\t"; } else { legLine += toStnVal + "\t"; } } else if ( nosurveyFlagOn == false ) { if ( item.compareTo( CaveConverter.DATA_ORDER_CAT_LENGTH ) == 0 ) { legLine += CaveConverter.padNumber( leg.getLength(LengthUnit.Metres), 2, 5 ) + "\t"; } else if ( item.compareTo( CaveConverter.DATA_ORDER_CAT_BEARING ) == 0 ) { legLine += CaveConverter.padNumber( leg.getCompass(BearingUnit.Degrees), 2, 6 ) + "\t"; } else if ( item.compareTo( CaveConverter.DATA_ORDER_CAT_CLINO ) == 0 ) { legLine += CaveConverter.padNumber( leg.getClino(GradientUnit.Degrees), 2, 6 ) + "\t"; } else if ( item.compareTo( CaveConverter.DATA_ORDER_CAT_FROMDEPTH ) == 0 ) { legLine += CaveConverter.padNumber( leg.getFromDepth(LengthUnit.Metres), 2, 5 ) + "\t"; } else if ( item.compareTo( CaveConverter.DATA_ORDER_CAT_TODEPTH ) == 0 ) { legLine += CaveConverter.padNumber( leg.getToDepth(LengthUnit.Metres), 2, 5 ) + "\t"; } else if ( item.compareTo( CaveConverter.DATA_ORDER_CAT_DEPTHCHANGE ) == 0 ) { legLine += CaveConverter.padNumber( leg.getDepthChange(LengthUnit.Metres), 2, 5 ) + "\t"; } else if ( item.compareTo( CaveConverter.DATA_ORDER_CAT_IGNOREALL ) == 0 ) { } } } //Add comment to end of line if ( leg.getComment().length() > 0 ) { if ( dataOrder.get( dataOrder.size() - 1 ).compareTo( CaveConverter.DATA_ORDER_CAT_IGNOREALL ) != 0 ) { //Use comment separator legLine += ";"; } legLine += leg.getComment(); } else { //Trim whitespace off end of line legLine = legLine.trim(); } legsData.add( legLine ); } } else { //Zero length leg if ( leg.isSplay() == false ) { //Valid leg, so write as equate legsData.add( "*EQUATE " + fromStnVal + "\t" + toStnVal ); } } //Add FIXed points to fixed stns block for series SurveyStation stn = leg.getFromStn(); for (int i=0; i < 2; i++) { //Loop twice, to process from and to stations if ( stn.isFixed() == true ) { String fixedStnLine = "*FIX " + substIllegalNameChars( stn.getName() ); fixedStnLine += "\t" + stn.getEasting() + "\t" + stn.getNorthing() + "\t" + stn.getAltitude(); fixedStnsData.add( fixedStnLine ); } //After first pass using FromStn, get toStn if there is one for second pass if ( leg.getToStn() == null ) { break; } stn = leg.getToStn(); } } //Process LRUD data for non-splay, non-surface legs, including legs with no LRUD data. if ( ( leg.isSplay() == false ) && ( leg.isSurface() == false ) ) { //Start new passage data block if leg does not connect the fromStn containing the LRUD data //to the start or end of another passage data block in the file boolean newBlock = false; int activeBlockIdx = passageData.size() - 1; //Initialise to last block in list boolean addAtFront = false; if ( passageData.size() == 0 ) { //Create first block for first lrud station in series newBlock = true; } else { //Check if station linked to a station at either end of an existing block // We are looking for the toStn at either end of an existing block boolean foundExistingBlock = false; for (int idx = 0; idx < passageData.size(); idx++ ) { List block = passageData.get(idx); if ( leg.getToStn() != null ) { //Check if this block starts with the toStn for the leg if ( ( block.size() == 1 ) && ( block.get(0)[0].equals( leg.getToStn().getName() ) ) ) { //Leg toStn matches only station in block, so leg could go before or after this LRUD //We need to know which direction the leg for the existing LRUD measurements was in if ( block.get(0)[2].equals( leg.getFromStn().getName() ) ) { //This leg follows the one previously added to this block, so add at end activeBlockIdx = idx; addAtFront = false; foundExistingBlock = true; } else { //This leg does NOT follow the one which started this block, so it must go before it activeBlockIdx = idx; addAtFront = true; foundExistingBlock = true; } } else if ( block.get(block.size() - 1)[0].equals( leg.getToStn().getName() ) ) { //Matching toStn at end, so add LRUD to end of this block activeBlockIdx = idx; addAtFront = false; foundExistingBlock = true; } else if ( block.get(0)[0].equals( leg.getToStn().getName() ) ) { //Matching toStn at start, so add LRUD to start of this block activeBlockIdx = idx; addAtFront = true; foundExistingBlock = true; } } if ( foundExistingBlock == false ) { //Need to find another leg which has a toStn matching the fromStn of this leg for (int idx2 = 0; idx2 < series.legCount(); idx2++ ) { SurveyLeg chkLeg = series.getLegRaw(idx2); if ( ( chkLeg.getToStn() != null ) && ( chkLeg.getToStn().getName().equals(leg.getFromStn().getName() ) ) ) { //Found a leg which precedes the leg we are adding LRUD data from. //Check if the fromStn of this preceding leg is the last stn in the block if ( block.get(block.size() - 1)[0].equals( chkLeg.getFromStn().getName() ) ) { //Matching fromStn for previous leg at end of block, so add LRUD to end of this block activeBlockIdx = idx; addAtFront = false; foundExistingBlock = true; } // This last case turns out not to be needed as it is generally better to start a new passage data block in this case. // else { // //Check if the preceding leg starts this block // //(but is not already covered going down this block) // int blockIdx2 = 1; // if ( block.size() == 1 ) { // blockIdx2 = 0; // } // if ( ( block.get(0)[0].equals( chkLeg.getFromStn().getName() ) ) // && ( block.get(blockIdx2)[0].equals( chkLeg.getToStn().getName() ) == false ) ) { // //Matching toStn at start, so add LRUD to start of this block // activeBlockIdx = idx; // addAtFront = true; // foundExistingBlock = true; // logger.logMessage("Stn " + leg.getFromStn().getName() + " fromStn for leg matched toStn of leg " + // chkLeg.getFromStn().getName() + "-" + chkLeg.getToStn().getName() + // " where fromStn was at start of PD block but leg is not covered in this block"); // } // } if ( foundExistingBlock ) { break; } } } } if ( foundExistingBlock ) { break; } } if ( foundExistingBlock == false ) { //Create new block for station as it is not connected to any other existing block newBlock = true; } } if (newBlock) { passageData.add( new ArrayList() ); activeBlockIdx = passageData.size() - 1; } String[] lrudLine = createLrudLine( leg ); if ( addAtFront ) { passageData.get(activeBlockIdx).add(0, lrudLine); } else { passageData.get(activeBlockIdx).add( lrudLine ); } } } //Add missing toStns from legs which close loops addMissingPassageDataAtLoopClosureStations( series, passageData ); //Replace LRUD values with those from the actual legs matching the pairs of stations //for the current and next line in each block and remove single station blocks reprocessPassageDataBlocks( series, passageData ); //Merge passage data blocks where one block ends with the same station as another starts combinePassageDataBlocks( passageData ); //Write fixes data block if ( fixedStnsData.size() > 0 ) { outputData.addAll( fixedStnsData ); } //Write legs data block outputData.addAll( legsData ); //Turn off splays flag if on if ( splayFlagOn ) { outputData.add( "*FLAGS NOT SPLAY"); splayFlagOn = false; } //Write passage data block if ( passageData.size() > 0 ) { outputData.add( ""); //outputData.addAll( passageData ); ListIterator> blocksIter = passageData.listIterator(); while ( blocksIter.hasNext() ) { List block = blocksIter.next(); outputData.add("*data passage station left right up down"); ListIterator blockIter = block.listIterator(); while ( blockIter.hasNext() ) { String[] line = blockIter.next(); //line[0] is fromStn name, and needs illegal characters substituting //line[1] is the LRUD numbers, line[2] is the toStn name and is not output outputData.add( substIllegalNameChars( line[0] ) + "\t" + line[1] ); } } } //Loop through inner series ListIterator seriesIterator = series.getInnerSeriesList().listIterator(); while ( seriesIterator.hasNext() ) { SurveySeries innerSeries = seriesIterator.next(); outputData.addAll( generateSurvexDataSeries( innerSeries, series, splaysOutput ) ); } //Close the series outputData.add( "*END " + substIllegalNameChars( series.getSeriesName() ) ); outputData.add( "" ); return outputData; } /* Replace illegal characters in station or series names with Survex allowed name characters. * This method should store previous conversions in case ambiguous cases might arise, and * use a different character to prevent converted stations becoming ambiguous. * e.g. CF+ and CF' do not want to both be changed to CF_ or CF-, but all occurrences of * CF+ would want to be converted to the same name. We could also check the series for * occurrences of the same name as an existing legal station (so if CF_1 already existed, * we would not want to convert CF+ to CF_1). * */ private String substIllegalNameChars( String stnName ) { String result = ""; for (int i=0; i < stnName.length(); i++){ char c = stnName.charAt(i); String sub = String.valueOf(c); if ( c < 48 ) { //Check for characters with ascii values below '0' switch (c) { case 33: // 33 ! sub = "_ex"; break; case 34: // 34 " sub = "_dq"; break; case 35: // 35 # sub = "_hs"; break; case 36: // 36 $ sub = "_dl"; break; case 37: // 37 % sub = "_pc"; break; case 38: // 38 & sub = "_am"; break; case 39: // 39 ' sub = "_sq"; break; case 40: // 40 ( sub = "_ob"; break; case 41: // 41 ) sub = "_cb"; break; case 42: // 42 * sub = "_as"; break; case 43: // 43 + sub = "_pl"; break; case 44: // 44 , sub = "_cm"; break; case 47: // 47 / sub = "_fs"; break; } } else if ( c > 57 ) { if ( c < 65 ) { //Check for characters with ascii values between '9' and 'A' switch (c) { case 58: // 58 : sub = "_co"; break; case 59: // 59 ; sub = "_sc"; break; case 60: // 60 < sub = "_lt"; break; case 61: // 61 = sub = "_eq"; break; case 62: // 62 > sub = "_gt"; break; case 63: // 63 ? sub = "_qm"; break; case 64: // 64 @ sub = "_at"; break; } } else if ( c > 90 ) { if ( c < 97 ) { //Check for characters with ascii values between 'Z' and 'a' switch (c) { case 91: // 91 [ sub = "_os"; break; case 92: // 92 \ sub = "_bs"; break; case 93: // 93 ] sub = "_cs"; break; case 94: // 94 ^ sub = "_ht"; break; case 95: // 95 _ //Allowed character //sub = "_"; break; case 96: // 96 ` sub = "_gr"; break; } } else if ( c > 122 ) { //Check for characters with ascii values between 'z' and '....' switch (c) { case 123: // 123 { sub = "_oc"; break; case 124: // 124 | sub = "_pi"; break; case 125: // 125 } sub = "_cc"; break; case 126: // 126 ~ sub = "_ti"; break; default: //All extended ascii characters, replace with ascii code int code = 0 + c; sub = "_asc" + code; } } } } //TODO More illegal character mapping required result += sub; } return result; } /* Replace LRUD values with those from actual leg represented by current and next station in block * and remove single station blocks. Sometimes at junctions the initial LRUD data put into the block * is from a leg which is not the correct leg for the next station added to the block. So where a * leg can be matched to both the station on the data line, and the next station in the block then * we can update the LRUD data to be from that leg. */ private void reprocessPassageDataBlocks( SurveySeries series, List> passageData ) { //Process all blocks ListIterator> blocksIter = passageData.listIterator(); while ( blocksIter.hasNext() ) { List block = blocksIter.next(); //Remove block if only contains a single station as these are obsolete if ( block.size() < 2 ) { blocksIter.remove(); } else { //Update LRUD data for lines in block boolean noLrudDataInBlock = true; //Loop through each pair of stations in the block for ( int blockIdx = 0; blockIdx < ( block.size() - 1 ); blockIdx++ ) { String[] line1 = block.get(blockIdx); String[] line2 = block.get(blockIdx + 1); //Look for a leg representing this line1 boolean legMatchesPassageData = false; for ( int legIdx = 0; legIdx < series.legCount(); legIdx++ ) { SurveyLeg leg = series.getLegRaw(legIdx); if ( ( leg.isSplay() == false ) && ( leg.getToStn() != null ) && ( leg.getLeft(LengthUnit.Metres) + leg.getRight(LengthUnit.Metres) + leg.getUp(LengthUnit.Metres) + leg.getDown(LengthUnit.Metres) > 0.0 ) ) { //Leg is a real leg with LRUD data, check for match both ways if ( ( line1[0].equals( leg.getFromStn().getName() ) ) && ( line2[0].equals( leg.getToStn().getName() ) ) ) { legMatchesPassageData = true; } //Do not look for reverse leg match because LRUD will be on opposite end of leg to the passage data line we are updating // else if ( ( line2[0].equals( leg.getFromStn().getName() ) ) // && ( line1[0].equals( leg.getToStn().getName() ) ) ) { // legMatchesPassageData = true; // } } //If a matching leg was found then regenerate LRUD data for this line using the leg if ( legMatchesPassageData ) { //Replace LRUD data for this line with data from this leg String[] newLine = createLrudLine(leg); if ( line1[1].equals( newLine[1] ) == false ) { block.remove(blockIdx); block.add(blockIdx, newLine); } break; //Exit legs for loop } } //Check if the line has any LRUD data if this block has not had any so far if ( ( noLrudDataInBlock ) && ( ( line1[1].equals( " 0.00\t 0.00\t 0.00\t 0.00" ) == false ) || ( line2[1].equals( " 0.00\t 0.00\t 0.00\t 0.00" ) == false ) ) ) { noLrudDataInBlock = false; } } //Remove block if no LRUD data on any station if ( noLrudDataInBlock ) { blocksIter.remove(); } } } } /* Combine any passage data blocks which start with the same station as another block ends with. */ private void combinePassageDataBlocks( List> passageData ) { //Process all blocks int outerIdx = 0; while ( outerIdx < passageData.size() ) { List block = passageData.get( outerIdx ); String lastStn = block.get( block.size() - 1 )[0]; //Iterate through all blocks to see if any start with the last station in this block for ( int innerIdx1 = 0; innerIdx1 < passageData.size(); innerIdx1++ ) { List innerBlock = passageData.get( innerIdx1 ); if ( innerBlock.equals( block ) == false ) { String innerStartStn = innerBlock.get( 0 )[0]; if ( innerStartStn.equals( lastStn ) ) { boolean removeInner = true; //Append this inner block to the end of the main iterator block for ( int innerIdx2 = 0; innerIdx2 < innerBlock.size(); innerIdx2++ ) { if ( innerIdx2 == 0 ) { //Don't copy first station, but check it matches LRUD of last item in block we are appending to if ( block.get( block.size() - 1 )[1].equals( innerBlock.get( 0 )[1] ) == false ) { logger.logMessage("Unable to merge passage data blocks due to LRUD data mismatch: " + "Block ending " + block.get( block.size() - 1 )[0] + "=" + block.get( block.size() - 1 )[1] + ", " + "Block starting " + innerBlock.get( 0 )[0] + "=" + innerBlock.get( 0 )[1]); removeInner = false; break; } } else { block.add( innerBlock.get( innerIdx2 ) ); } } if ( removeInner ) { //Remove the inner block now it has been copied passageData.remove( innerIdx1 ); outerIdx--; //Update last station to new end station lastStn = block.get( block.size() - 1 )[0]; } } } } outerIdx++; } } /* When a leg closes a loop, we need to add the LRUD for the toStn of the loop closure by finding that station * with the LRUD data in another leg. In Stomps, the leg 31-25 has LRUD on 31. But there is no terminal stn25. * Perhaps there should be? Or easier to analyse all passage data blocks here, consolidate blocks which are adjoined * and then look for any legs where the toStn is not represented and add them by copying data from another leg. */ private void addMissingPassageDataAtLoopClosureStations( SurveySeries series, List> passageData ) { //Check for legs with LRUD data on the toStn which are not represented in blocks for ( int legIdx = 0; legIdx < series.legCount(); legIdx++ ) { SurveyLeg leg = series.getLegRaw(legIdx); if ( ( leg.isSplay() == false ) && ( leg.getLeft(LengthUnit.Metres) + leg.getRight(LengthUnit.Metres) + leg.getUp(LengthUnit.Metres) + leg.getDown(LengthUnit.Metres) > 0.0 ) ) { //Check for a leg which has LRUD data on the toStn of this leg for ( int legIdx2 = 0; legIdx2 < series.legCount(); legIdx2++ ) { SurveyLeg leg2 = series.getLegRaw(legIdx2); if ( ( leg.isSplay() == false ) && ( leg.getToStn() != null ) && ( leg.getLeft(LengthUnit.Metres) + leg.getRight(LengthUnit.Metres) + leg.getUp(LengthUnit.Metres) + leg.getDown(LengthUnit.Metres) > 0.0 ) && ( leg.getToStn().getName().equals( leg2.getFromStn().getName() ) ) ) { //Check if the leg is represented in a passage data block boolean foundLegInPassData = false; ListIterator> blocksIter = passageData.listIterator(); while ( blocksIter.hasNext() ) { List block = blocksIter.next(); //Look for pair of lines in this block which represent this leg for ( int blockIdx = 0; blockIdx < ( block.size() - 1 ); blockIdx++ ) { String[] line1 = block.get(blockIdx); String[] line2 = block.get(blockIdx + 1); if ( ( line1[0].equals( leg.getFromStn().getName() ) ) && ( line2[0].equals( leg.getToStn().getName() ) ) ) { foundLegInPassData = true; break; //Exit block for loop } else if ( ( line2[0].equals( leg.getFromStn().getName() ) ) && ( line1[0].equals( leg.getToStn().getName() ) ) ) { foundLegInPassData = true; break; //Exit block for loop } } if ( foundLegInPassData ) { break; //Exit passage data blocks loop } } if ( foundLegInPassData == false ) { //Leg with toStn LRUD is missing from passage data. //Check if any passage data block starts or ends with one of the stns from the leg //so we can add it ListIterator> blocksIter2 = passageData.listIterator(); while ( blocksIter2.hasNext() ) { List blockForAdd = blocksIter2.next(); int insertPoint = 0; //0=not found, 1=start, 2=end if ( blockForAdd.get(blockForAdd.size() - 1)[0].equals( leg.getFromStn().getName() ) ) { //Leg from station found at end of block insertPoint = 2; } else if ( blockForAdd.get(0)[0].equals( leg.getFromStn().getName() ) ) { //Leg from station found at start of block insertPoint = 1; } if ( insertPoint > 0 ) { //Loop through all passage data block lines looking for one which matches the toStn ListIterator> blocksIter3 = passageData.listIterator(); while ( blocksIter3.hasNext() ) { List blockToCopyFrom = blocksIter3.next(); boolean lineAdded = false; ListIterator blockIter = blockToCopyFrom.listIterator(); while ( blockIter.hasNext() ) { String[] line = blockIter.next(); if ( line[0].equals( leg.getToStn().getName() ) ) { //Insert suitable LRUD line here if ( insertPoint == 1) { //Insert at start blockForAdd.add(0, line); } else { //Insert at end blockForAdd.add(line); } lineAdded = true; break; //Exit loop through block looking for line to add } } if ( lineAdded ) { break; //Exit loop looking for passage data block to add line from } } break; //Exit passage data blocks2 loop } } } break; //Exit loop leg2 as leg has been processed } } } } } private String[] createLrudLine( SurveyLeg bestLeg ) { String[] lrudLine = new String[3]; lrudLine[0] = bestLeg.getFromStn().getName(); lrudLine[1] = CaveConverter.padNumber(bestLeg.getLeft(LengthUnit.Metres),2,5) + "\t" + CaveConverter.padNumber(bestLeg.getRight(LengthUnit.Metres),2,5) + "\t" + CaveConverter.padNumber(bestLeg.getUp(LengthUnit.Metres),2,5) + "\t" + CaveConverter.padNumber(bestLeg.getDown(LengthUnit.Metres),2,5); if ( bestLeg.getToStn() != null ) { lrudLine[2] = bestLeg.getToStn().getName(); } return lrudLine; } } CaveConverter_src/src/footleg/cavesurvey/data/reader/0000755000000000000000000000000013036467352021777 5ustar rootrootCaveConverter_src/src/footleg/cavesurvey/data/reader/DxfParser.java0000644000000000000000000012601013036417264024535 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.reader; import java.util.ArrayList; import java.util.Date; import java.util.List; import footleg.cavesurvey.converter.Logger; import footleg.cavesurvey.converter.CaveConverter.BearingUnit; import footleg.cavesurvey.converter.CaveConverter.GradientUnit; import footleg.cavesurvey.converter.CaveConverter.LengthUnit; import footleg.cavesurvey.data.model.CaveSurvey; import footleg.cavesurvey.data.model.SurveyLeg; import footleg.cavesurvey.data.model.SurveySeries; import footleg.cavesurvey.data.model.SurveyStation; import footleg.cavesurvey.data.model.SurveyStation.FixType; import footleg.cavesurvey.tools.UtilityFunctions; /** * Parser for DXF format text data files. * * @author Footleg * @version 2017.01.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class DxfParser { private Date seriesDate; private Logger logger; /** * Class constructor * @param logger Logging class to output information, warning and error messages to */ public DxfParser( Logger logger ) { super(); this.logger = logger; } /** * Parse Autocad DXF file into the cave data model. * * Converts polylines into series with fixed point at start. * * @param surveyFileData ListArray of data lines from a DXF file * @param parseMode An enumeration to indicate whether to parse file for contour polylines, spot heights or survey legs * @return Cave Survey object * * @to.do * TODO Add option to round to nearest 10cm or 0.5 deg. */ public CaveSurvey parseFile( List surveyFileData, int parseMode ) { int legCount = 0; int iPolylineCount = 0; int iVertexCount = 0; int iPlainlineCount = 0; //Create new list of survey series to hold data CaveSurvey surveyData = new CaveSurvey(logger); SurveySeries outerSeries = null; //Create arrays to data while processing lines List> allChains = new ArrayList>(); List allChainLabels = new ArrayList(); List arSurveyChain = new ArrayList(); List arLines = new ArrayList(); List arLabelPoints = new ArrayList(); List arLabels = new ArrayList(); boolean mappedLabelsFound = false; //Define read state values final int stateParsingHeader = 0; final int stateFindPolyline = 1; final int stateFindVertex = 2; final int parseModeSurveyLegs = 0; final int parseModeSurfaceContours = 1; final int parseModeSpotHeights = 2; //Initialise read state int state = stateParsingHeader; //Local vars int iPointCount = 0; String sLineName = ""; double dEastValue = 0; double dNorthValue = 0; double dElevValue = 0; double dLastEastValue = 0; double dLastNorthValue = 0; double dLastElevValue = 0; //Range bounds //TODO Promote these to parameters which can be specified as options int iNorthEdge = 999999999; int iSouthEdge = -999999999; int iEastEdge = 999999999; int iWestEdge = -999999999; int iMinElev = -999999999; //Write output file header logger.logMessage("Generating survey data from lines and polylines in DXF data file"); outerSeries = new SurveySeries( "SurveyFromDXF" ); //Loop through all data lines for ( int i=0; i < surveyFileData.size(); i++ ) { String dataLine = surveyFileData.get(i); //Proceed based on state switch( state ) { case stateParsingHeader : //First look for line: // ENTITIES //This signifies start of data after header stuff which we ignore. if ( dataLine.trim().compareToIgnoreCase("ENTITIES") == 0 ) { //Found end of header section, so change state to searching for new polyline state = stateFindPolyline; } break; case stateFindPolyline: if ( dataLine.trim().compareToIgnoreCase("POLYLINE") == 0 ) { //Found polyline, indicated with header line: // POLYLINE //and ending with: // SEQEND //Check next 15 lines looking for AcDbEntity start int iSkipLoop = 1; do { dataLine = surveyFileData.get(++i); } while ( ( dataLine.trim().compareToIgnoreCase("AcDbEntity") != 0 ) || ( iSkipLoop > 15 ) ); //If found it then process if ( dataLine.trim().compareToIgnoreCase("AcDbEntity") == 0 ) { //(skip 1 line) dataLine = surveyFileData.get(++i); //Read entity type from next line: dataLine = surveyFileData.get(++i); //if Strings.Left(Trim(dataLine), 4) = "1100" { //Found a contour line entity (they are all 1100x) //Increment line counter iPolylineCount += 1; //Start new section heading, removing spaces from station names sLineName = dataLine.replace(" ", "_"); if ( parseMode == parseModeSurfaceContours ) { sLineName = sLineName + iPolylineCount; } //Set state to finding vertices state = stateFindVertex; //Reset point counter iPointCount = 0; //} } } //loop through all lines, each indicated with header line: // LINE //and ending after a fixed number of lines else if ( dataLine.trim().compareToIgnoreCase("LINE") == 0 ) { //Found line iPlainlineCount++; //Check next 4 lines looking for AcDbEntity start int iSkipLoop = 0; do { dataLine = surveyFileData.get(++i); iSkipLoop++; } while ( (dataLine.trim().compareToIgnoreCase("AcDbEntity") != 0 && dataLine.trim().compareToIgnoreCase("CentreLine") != 0 ) && ( iSkipLoop < 4 ) ); //Allow anything if 4 lines read boolean allowAnyLineName = false; if ( iSkipLoop == 4 ) { allowAnyLineName = true; } //If found it then process if ( dataLine.trim().compareToIgnoreCase("AcDbEntity") == 0 || dataLine.trim().compareToIgnoreCase("CentreLine") == 0 || allowAnyLineName == true ) { if ( dataLine.trim().compareToIgnoreCase("CentreLine") != 0 && allowAnyLineName == false ) { //Check next 15 lines looking for AcDbLine start iSkipLoop = 1; do { dataLine = surveyFileData.get(++i); } while ( ( dataLine.trim().compareToIgnoreCase("AcDbLine") != 0 ) || ( iSkipLoop > 15 ) ); } //If found it then process if ( dataLine.trim().compareToIgnoreCase("AcDbLine") == 0 || ( dataLine.trim().compareToIgnoreCase("CentreLine") == 0 ) || allowAnyLineName ) { //Check for next line: //10: dataLine = surveyFileData.get(++i); if ( dataLine.trim().compareToIgnoreCase("10") == 0 ) { //Read Easting dataLine = surveyFileData.get(++i); dEastValue = roundedDataValue(dataLine); //Check for next line: //20: dataLine = surveyFileData.get(++i); if ( dataLine.trim().compareToIgnoreCase("20") == 0 ) { //Read Northing dataLine = surveyFileData.get(++i); dNorthValue = roundedDataValue(dataLine); //Check for next line: //30: dataLine = surveyFileData.get(++i); if ( dataLine.trim().compareToIgnoreCase("30") == 0 ) { //Read Elevation dataLine = surveyFileData.get(++i); dElevValue = roundedDataValue(dataLine); //Check for next line: //11: dataLine = surveyFileData.get(++i); if ( dataLine.trim().compareToIgnoreCase("11") == 0 ) { //Read Easting dataLine = surveyFileData.get(++i); dLastEastValue = roundedDataValue(dataLine); //Check for next line: //21: dataLine = surveyFileData.get(++i); if ( dataLine.trim().compareToIgnoreCase("21") == 0 ) { //Read Northing dataLine = surveyFileData.get(++i); dLastNorthValue = roundedDataValue(dataLine); //Check for next line: //31: dataLine = surveyFileData.get(++i); if ( dataLine.trim().compareToIgnoreCase("31") == 0 ) { //Read Elevation dataLine = surveyFileData.get(++i); dLastElevValue = roundedDataValue(dataLine); //Now generate data to output if ( ( dEastValue >= iWestEdge ) && ( dEastValue <= iEastEdge ) && ( dNorthValue <= iNorthEdge ) && ( dNorthValue >= iSouthEdge ) && ( dElevValue >= iMinElev ) && ( dLastEastValue >= iWestEdge ) && ( dLastEastValue <= iEastEdge ) && ( dLastNorthValue <= iNorthEdge ) && ( dLastNorthValue >= iSouthEdge ) && ( dLastElevValue >= iMinElev )) { //Increment point counter iPointCount += 1; if ( parseMode == parseModeSurveyLegs ) { //Add points to line array double[] point = new double[6]; point[0] = dEastValue; point[1] = dNorthValue; point[2] = dElevValue; point[3] = dLastEastValue; point[4] = dLastNorthValue; point[5] = dLastElevValue; arLines.add(point); } } else { //Record outside specified area dEastValue = dNorthValue; } } } } } } } } } } //loop through all text items, each indicated with header line: // TEXT //and ending after a fixed number of lines else if ( dataLine.trim().compareToIgnoreCase("TEXT") == 0 ) { //Found TEXT item iPlainlineCount++; //Skip next line then check for Label start dataLine = surveyFileData.get(++i); dataLine = surveyFileData.get(++i); if (dataLine.trim().compareToIgnoreCase("Labels") == 0 ) { //Found label, so read position and name from following lines //Check for next line: //10: dataLine = surveyFileData.get(++i); if ( dataLine.trim().compareToIgnoreCase("10") == 0 ) { //Read Easting dataLine = surveyFileData.get(++i); dEastValue = roundedDataValue(dataLine); //Check for next line: //20: dataLine = surveyFileData.get(++i); if ( dataLine.trim().compareToIgnoreCase("20") == 0 ) { //Read Northing dataLine = surveyFileData.get(++i); dNorthValue = roundedDataValue(dataLine); //Check for next line: //30: dataLine = surveyFileData.get(++i); if ( dataLine.trim().compareToIgnoreCase("30") == 0 ) { //Read Elevation dataLine = surveyFileData.get(++i); dElevValue = roundedDataValue(dataLine); //Skip 3 lines for (int iskip = 0; iskip < 3; iskip++) { dataLine = surveyFileData.get(++i); } //Next line should be station name String possibleStnName = surveyFileData.get(++i); //skip a line dataLine = surveyFileData.get(++i); //Check for next line: //POINT: dataLine = surveyFileData.get(++i); if ( dataLine.trim().compareToIgnoreCase("POINT") == 0 ) { //skip a line dataLine = surveyFileData.get(++i); //Check for next line: //Stations: dataLine = surveyFileData.get(++i); if ( dataLine.trim().compareToIgnoreCase("Stations") == 0 ) { //Check for next line: //10: dataLine = surveyFileData.get(++i); if ( dataLine.trim().compareToIgnoreCase("10") == 0 ) { //Read Easting dataLine = surveyFileData.get(++i); dLastEastValue = roundedDataValue(dataLine); //Check for next line: //20: dataLine = surveyFileData.get(++i); if ( dataLine.trim().compareToIgnoreCase("20") == 0 ) { //Read Northing dataLine = surveyFileData.get(++i); dLastNorthValue = roundedDataValue(dataLine); //Check for next line: //30: dataLine = surveyFileData.get(++i); if ( dataLine.trim().compareToIgnoreCase("30") == 0 ) { //Read Elevation dataLine = surveyFileData.get(++i); dLastElevValue = roundedDataValue(dataLine); //Now generate data to output if ( ( dEastValue >= iWestEdge ) && ( dEastValue <= iEastEdge ) && ( dNorthValue <= iNorthEdge ) && ( dNorthValue >= iSouthEdge ) && ( dElevValue >= iMinElev ) && ( dLastEastValue >= iWestEdge ) && ( dLastEastValue <= iEastEdge ) && ( dLastNorthValue <= iNorthEdge ) && ( dLastNorthValue >= iSouthEdge ) && ( dLastElevValue >= iMinElev )) { //Check station point and label point matched if ( ( dEastValue == dLastEastValue ) && ( dNorthValue == dLastNorthValue ) && ( dElevValue == dLastElevValue )) { //Station label identified if ( parseMode == parseModeSurveyLegs ) { //Add label and point to lists double[] point = new double[3]; point[0] = dEastValue; point[1] = dNorthValue; point[2] = dElevValue; arLabels.add( possibleStnName ); arLabelPoints.add( point ); } } } else { //Record outside specified area dEastValue = dNorthValue; } } } } } } } } } } } break; case stateFindVertex: //Within each polyline, look for vertices indicated by lines: // VERTEX if ( dataLine.trim().compareToIgnoreCase("VERTEX") == 0 ) { //Reset flag boolean bValidRecord = false; //Increment count iVertexCount += 1; //Check next 15 lines looking for AcDbEntity start int iSkipLoop = 1; do { dataLine = surveyFileData.get(++i); } while ( ( dataLine.trim().compareToIgnoreCase("AcDbEntity") != 0 ) || ( iSkipLoop > 15 ) ); if ( dataLine.trim().compareToIgnoreCase("AcDbEntity") == 0 ) { //Check next 15 lines looking for AcDbVertex start iSkipLoop = 1; do { dataLine = surveyFileData.get(++i); } while ( ( dataLine.trim().compareToIgnoreCase("AcDbVertex") != 0 ) || ( iSkipLoop > 15 ) ); if ( dataLine.trim().compareToIgnoreCase("AcDbVertex") == 0 ) { //Check next 15 lines looking for AcDb3dPolylineVertex start iSkipLoop = 1; do { dataLine = surveyFileData.get(++i); } while ( ( dataLine.trim().compareToIgnoreCase("AcDb3dPolylineVertex") != 0 ) || ( iSkipLoop > 15 ) ); if ( dataLine.trim().compareToIgnoreCase("AcDb3dPolylineVertex") == 0 ) { //Check for next line: //10: dataLine = surveyFileData.get(++i); if ( dataLine.trim().compareToIgnoreCase("10") == 0 ) { //Read Easting dataLine = surveyFileData.get(++i); dEastValue = roundedDataValue(dataLine); //Check for next line: //20: dataLine = surveyFileData.get(++i); if ( dataLine.trim().compareToIgnoreCase("20") == 0 ) { //Read Northing dataLine = surveyFileData.get(++i); dNorthValue = roundedDataValue(dataLine); //Check for next line: //30: dataLine = surveyFileData.get(++i); if ( dataLine.trim().compareToIgnoreCase("30") == 0 ) { //Read Elevation dataLine = surveyFileData.get(++i); dElevValue = roundedDataValue(dataLine); //Now generate data to output if ( ( dEastValue >= iWestEdge ) && ( dEastValue <= iEastEdge ) && ( dNorthValue <= iNorthEdge ) && ( dNorthValue >= iSouthEdge ) && ( dElevValue >= iMinElev ) ) { //Increment point counter iPointCount += 1; if ( parseMode == parseModeSurveyLegs ) { //Add point to chain double[] point = new double[3]; point[0] = dEastValue; point[1] = dNorthValue; point[2] = dElevValue; arSurveyChain.add(point); } else { //Generate station name String sStnName = "S" + iPolylineCount + "P" + iPointCount; //Reset station position string String sPointPosition = ""; if ( iPointCount == 1 ) { //First point, so fix it sPointPosition = "*fix " + sStnName + " " + dEastValue + " " + dNorthValue + " " + dElevValue; if ( parseMode == parseModeSurfaceContours ) { //Write line header logger.logMessage("*begin " + sLineName); } else { //} point, so write differences for leg sPointPosition = " " + (dEastValue - dLastEastValue) + " " + (dNorthValue - dLastNorthValue) + " " + (dElevValue - dLastElevValue); } } if ( parseMode == parseModeSpotHeights ) { logger.logMessage( String.valueOf(Math.round(dEastValue) - iEastEdge) ); logger.logMessage( String.valueOf( (iNorthEdge - iSouthEdge) - ( Math.round(dNorthValue) - iSouthEdge) ) ); logger.logMessage( String.valueOf(dElevValue) ); } else { //Write position and station number logger.logMessage(sPointPosition); logger.logMessage(sStnName); } } //Update last positions dLastEastValue = dEastValue; dLastNorthValue = dNorthValue; dLastElevValue = dElevValue; } else { //Record outside specified area dEastValue = dNorthValue; } bValidRecord = true; } } } } } } //Check for invalid records if ( bValidRecord == false ) { //Invalid record logger.logMessage("Bad Line"); //Set state back to searching for next vertex state = stateFindPolyline; } } //Find either next VERTEX or SEQEND else if ( dataLine.trim().compareToIgnoreCase("SEQEND") == 0 ) { //End of polyline //Write final station name if any points were written if ( parseMode == parseModeSurveyLegs ) { //Check that line name is unique String sUniqueName = sLineName; int k = 1; boolean bUnique = false; while ( bUnique == false ) { //Search existing chains for matching name bUnique = true; for ( int j = 0; j < outerSeries.innerSeriesCount(); j++ ) { //Check for matching series if ( outerSeries.getInnerSeries(j).getSeriesName().compareTo( sUniqueName ) == 0 ) { //Not unique, so add number to end sUniqueName = sLineName + k; k++; bUnique = false; //Exit loop j = outerSeries.innerSeriesCount(); } } } //If no label points, then pass the unique name from the line in via the labels array if ( arLabelPoints.size() == 0 ) { arLabels.add( 0, sUniqueName ); } //Map points in chain to labels String[] stnLabels = mapLabelsToChainPoints(arSurveyChain, arLabelPoints, arLabels); //Add new series to list for this polyline outerSeries.addSeries( makeSeriesFromPolyline( arSurveyChain, sUniqueName, stnLabels ) ); legCount += (arSurveyChain.size() - 1); //Store chain and labels for this chain for linking to other chains later allChains.add(arSurveyChain); allChainLabels.add(stnLabels); //Reset flag if station labels are null if ( stnLabels[0] != null ) { mappedLabelsFound = true; } //Reset series data array arSurveyChain = new ArrayList(); } else if ( parseMode == parseModeSurfaceContours ) { //End section if any points were in target area if ( iPointCount > 0 ) { logger.logMessage("*end " + sLineName); } } //Set state back to searching for next vertex state = stateFindPolyline; } break; default: } } //Attempt to join up lines into connected polylines int newlines = 0; while ( arLines.size() > 0 ) { //Get first line out double[] line = arLines.remove(0); //Start new polyline arSurveyChain = new ArrayList(); //Add points to chain double[] firstPoint = new double[3]; firstPoint[0] = line[0]; firstPoint[1] = line[1]; firstPoint[2] = line[2]; arSurveyChain.add(firstPoint); double[] lastPoint = new double[3]; lastPoint[0] = line[3]; lastPoint[1] = line[4]; lastPoint[2] = line[5]; arSurveyChain.add(lastPoint); //Search for adjoining lines boolean added = true; while ( added == true ) { added = false; for ( int linesIdx = 0; linesIdx < arLines.size(); linesIdx++ ) { boolean match = false; line = arLines.get(linesIdx); if ( firstPoint[0] == line[0] && firstPoint[1] == line[1] && firstPoint[2] == line[2] ) { //Add new first point to start of polyline firstPoint = new double[3]; firstPoint[0] = line[3]; firstPoint[1] = line[4]; firstPoint[2] = line[5]; arSurveyChain.add(0, firstPoint); match = true; } else if ( firstPoint[0] == line[3] && firstPoint[1] == line[4] && firstPoint[2] == line[5] ) { //Add new first point to start of polyline firstPoint = new double[3]; firstPoint[0] = line[0]; firstPoint[1] = line[1]; firstPoint[2] = line[2]; arSurveyChain.add(0, firstPoint); match = true; } else if ( lastPoint[0] == line[0] && lastPoint[1] == line[1] && lastPoint[2] == line[2] ) { //Add new last point to end of polyline lastPoint = new double[3]; lastPoint[0] = line[3]; lastPoint[1] = line[4]; lastPoint[2] = line[5]; arSurveyChain.add(lastPoint); match = true; } else if ( lastPoint[0] == line[3] && lastPoint[1] == line[4] && lastPoint[2] == line[5] ) { //Add new last point to end of polyline lastPoint = new double[3]; lastPoint[0] = line[0]; lastPoint[1] = line[1]; lastPoint[2] = line[2]; arSurveyChain.add(lastPoint); match = true; } if ( match == true ) { //Remove line and decrement index so next item is picked up arLines.remove(linesIdx); linesIdx--; added = true; } } } //Map points in chain to labels String[] stnLabels = mapLabelsToChainPoints(arSurveyChain, arLabelPoints, arLabels); if ( arLabels.size() > 0 ) { mappedLabelsFound = true; } //Add chain to array and create series newlines++; String sSeriesName = "SeriesFromLines" + newlines; SurveySeries newSeries = makeSeriesFromPolyline( arSurveyChain, sSeriesName, stnLabels ); //Add series if it contains any legs (polylines where all points share the same location do not generate any legs) if ( newSeries.legCount() > 0 ) { allChains.add(arSurveyChain); allChainLabels.add(stnLabels); outerSeries.addSeries( newSeries ); legCount += (arSurveyChain.size() - 1); } } if ( mappedLabelsFound ) { //DXF has mapped labels for all chains. Rebuild series based on full station names. SurveySeries rebuiltOuterSeries = new SurveySeries("SurveyFromDXFExportedFrom3D"); for ( int seriesIdx = 0; seriesIdx < outerSeries.innerSeriesCount(); seriesIdx++ ) { //Get chain corresponding to this series List srcChain = allChains.get(seriesIdx); //Search through all legs in the series and put each into a new series matching the station name prefix SurveySeries inputSeries = outerSeries.getInnerSeries( seriesIdx ); for ( int legIdx = 0; legIdx < inputSeries.legCount(); legIdx++ ) { SurveyLeg inputLeg = inputSeries.getLegRaw( legIdx ); //Find series for from stn in this leg String fromStnName = inputLeg.getFromStn().getName(); int matchingFromSeries = findMatchingSeriesForStnName( rebuiltOuterSeries, fromStnName ); if ( matchingFromSeries > -1 ) { String toStnName = inputLeg.getToStn().getName(); int matchingToSeries = findMatchingSeriesForStnName( rebuiltOuterSeries, toStnName ); int legNewSeries = matchingFromSeries; if ( matchingToSeries != matchingFromSeries ) { //fromStn series does not match toStn series, so we need to determine which series this leg belongs to boolean stnNameSwapped = false; //Check if toStn has more than one matching point in the all points array List matchingToPoints = getListOfMatchingPoints( srcChain.get( legIdx + 1 ), arLabelPoints ); if ( matchingToPoints.size() > 1 ) { //Look for matching point label which does match the from station series String fromStnPrefix = getNamePrefix( fromStnName ); if ( fromStnPrefix.length() > 0 ) { String toStnPrefix = getNamePrefix( toStnName ); if ( toStnPrefix.length() > 0 ) { for ( int matchingPointsIdx = 0; matchingPointsIdx < matchingToPoints.size(); matchingPointsIdx++ ) { String testLabel = arLabels.get( matchingToPoints.get(matchingPointsIdx) ); String testLabelPrefix = getNamePrefix( testLabel ); if ( testLabelPrefix.equals(fromStnPrefix) ) { //Replace the toStnName with the matching point which does match the from station prefix inputLeg.getToStn().setName( testLabel ); //Add an equate for the alternate names being swapped for this stn SurveyStation linkStn1 = new SurveyStation(0); linkStn1.setName( getShortenedName( testLabel ) ); SurveyStation linkStn2 = new SurveyStation(0); linkStn2.setName( getShortenedName( toStnName ) ); //TODO Only add link if not already present rebuiltOuterSeries.addLink(rebuiltOuterSeries.getInnerSeries(matchingFromSeries).getSeriesName(),linkStn1, rebuiltOuterSeries.getInnerSeries(matchingToSeries).getSeriesName(), linkStn2); stnNameSwapped = true; break; } } } } } if ( stnNameSwapped == false ) { //No matching point for toStn was in the same series as the fromStn, so we need to find //a matching label for the fromStn which is in the toStn series //Check if fromStn has more than one matching point in the all points array List matchingFromPoints = getListOfMatchingPoints( srcChain.get( legIdx ), arLabelPoints ); if ( matchingFromPoints.size() > 1 ) { //Look for matching point label which does match the from station series String fromStnPrefix = getNamePrefix( fromStnName ); if ( fromStnPrefix.length() > 0 ) { String toStnPrefix = getNamePrefix( toStnName ); if ( toStnPrefix.length() > 0 ) { for ( int matchingPointsIdx = 0; matchingPointsIdx < matchingFromPoints.size(); matchingPointsIdx++ ) { String testLabel = arLabels.get( matchingFromPoints.get(matchingPointsIdx) ); String testLabelPrefix = getNamePrefix( testLabel ); if ( testLabelPrefix.equals(toStnPrefix) ) { //Replace the fromStnName with the matching point which does match the to station prefix inputLeg.getFromStn().setName( testLabel ); //Add an equate for the alternate names being swapped for this stn SurveyStation linkStn1 = new SurveyStation(0); linkStn1.setName( getShortenedName( fromStnName ) ); SurveyStation linkStn2 = new SurveyStation(0); linkStn2.setName( getShortenedName( testLabel ) ); //TODO Only add link if not already present rebuiltOuterSeries.addLink(rebuiltOuterSeries.getInnerSeries(matchingFromSeries).getSeriesName(),linkStn1, rebuiltOuterSeries.getInnerSeries(matchingToSeries).getSeriesName(), linkStn2); legNewSeries = matchingToSeries; break; } } } } } } } //Remove the prefixes from both stations in each leg String shortenedFromName = getShortenedName( inputLeg.getFromStn().getName() ); String shortenedToName = getShortenedName( inputLeg.getToStn().getName() ) ; inputLeg.getFromStn().setName( shortenedFromName ); inputLeg.getToStn().setName( shortenedToName ); //Put leg into matching series in rebuilt survey after all changes to the station names rebuiltOuterSeries.getInnerSeries( legNewSeries ).addLeg( inputLeg ); } } } //Replace original with rebuilt series set outerSeries = rebuiltOuterSeries; } else { //Search for connected stations for any station in each polyline for ( int seriesIdx = 0; seriesIdx < outerSeries.innerSeriesCount(); seriesIdx++ ) { //Get chain corresponding to this series List srcChain = allChains.get(seriesIdx); String[] srcChainLabels = allChainLabels.get(seriesIdx); for ( int point1Idx = 0; point1Idx < srcChain.size(); point1Idx++ ) { //Get fixed position for this station in chain double fixX = srcChain.get(point1Idx)[0]; double fixY = srcChain.get(point1Idx)[1]; double fixZ = srcChain.get(point1Idx)[2]; //Check all chains except self for a matching point for ( int chainIdx = 0; chainIdx < allChains.size(); chainIdx++ ) { List chain = allChains.get(chainIdx); String[] chainLabels = allChainLabels.get(chainIdx); for ( int pointIdx = 0; pointIdx < chain.size(); pointIdx++ ) { if ( ( fixX == chain.get(pointIdx)[0] ) && ( fixY == chain.get(pointIdx)[1] ) && ( fixZ == chain.get(pointIdx)[2] ) ) { //Found matching point boolean addEquate = true; if (chainIdx == seriesIdx ) { //Matching point is in same series, so only add equate //when matching station occurs after test station to avoid adding //equate twice or equating stations onto themselves if ( pointIdx <= point1Idx) { addEquate = false; } } if ( addEquate == true ) { //Replace fixed point in leg with equate SurveyStation linkStn1 = new SurveyStation(point1Idx); if ( srcChainLabels[point1Idx] != null ) { linkStn1.setName( srcChainLabels[point1Idx] ); } SurveyStation linkStn2 = new SurveyStation(pointIdx); if ( chainLabels[pointIdx] != null ) { linkStn2.setName( chainLabels[pointIdx] ); } outerSeries.addLink(outerSeries.getInnerSeries(seriesIdx).getSeriesName(), linkStn1, outerSeries.getInnerSeries(chainIdx).getSeriesName(), linkStn2); } //Clear fixed points apart from first one in first series if ( seriesIdx > 0 ) { SurveyStation stn = outerSeries.getInnerSeries(seriesIdx).getLegRaw(0).getFromStn(); // double easting = stn.getEasting(); // double northing = stn.getNorthing(); // double altitude = stn.getAltitude(); // stn.setFixed(FixType.NONE, easting, northing, altitude); stn.clearFixedStn(); } } } } } } } //Put generated data series into survey surveyData.add( outerSeries ); //Debug dump UtilityFunctions.logSurveyDebugData(surveyData, logger); //Completed file parsing logger.logMessage("Processed " + legCount + " survey legs in " + outerSeries.innerSeriesCount() + " series."); logger.logMessage("Found:"); logger.logMessage("Polylines: " + iPolylineCount + " containing " + iVertexCount + " line segments."); logger.logMessage("Lines: " + iPlainlineCount); logger.logMessage("Total line segments: " + (iPlainlineCount + iVertexCount)); return surveyData; } /** * Search for an inner series matching the name prefix on this station, and return it. If * not found then create it and return it. * * @param series Series containing an inner series to match by name to the stn name * @param stnName Stn name to match * @return Matching inner series index */ private int findMatchingSeriesForStnName( SurveySeries series, String stnName ) { int matchingIdx = -1; //Determine prefix from station name String stnPrefix = getNamePrefix( stnName ); if ( stnPrefix.length() > 0 ) { for (int i = 0; i < series.innerSeriesCount(); i++ ) { String seriesName = series.getInnerSeries( i ).getSeriesName(); if ( stnPrefix.equalsIgnoreCase( seriesName ) ) { matchingIdx = i; break; } } //If not match found then create a new series for this name if ( matchingIdx == -1 ) { SurveySeries newSeries = new SurveySeries( stnPrefix ); series.addSeries( newSeries ); matchingIdx = series.innerSeriesCount() - 1; } } return matchingIdx; } /** * Takes a survey chain array, label points array and station labels array, and generates an array * of labels for all the points in the chain. The index of any point in the chain will be the same * a the index of the corresponding label in the output array. * @param arSurveyChain Chain of points representing a survey chain (linear chain of legs) * @param arLabelPoints Array of points which correspond the labels in the labels array * @param stnLabels Array of labels corresponding to the points in the label points array * @return Array of labels corresponding to the points in the survey chain */ private String[] mapLabelsToChainPoints( List arSurveyChain, List arLabelPoints, List stnLabels ) { //Create an array of labels and set them to the matching points String[] labels = new String[arSurveyChain.size()]; for ( int i = 0; i < arSurveyChain.size(); i++ ) { double[] chainPoint = arSurveyChain.get(i); for ( int j = 0; j < arLabelPoints.size(); j++ ) { //Check if point matches chain point if ( ( chainPoint[0] == arLabelPoints.get(j)[0] ) && ( chainPoint[1] == arLabelPoints.get(j)[1] ) && ( chainPoint[2] == arLabelPoints.get(j)[2] ) ) { labels[i] = stnLabels.get(j); break; } } } return labels; } /** * Converts a series of points in a polyline with absolute coordinates into a series * of connected survey legs,calculating tape, compass and clino data. * @param List List of all points in polyline as x,y,z coordinates * @return SurveySeries of all the legs represented by the polyline. Fixed by position of first stn. */ private SurveySeries makeSeriesFromPolyline( List arSurveyChain, String seriesName, String[] labels ) { //Create new series from this chain SurveySeries series = new SurveySeries( seriesName ); //Set date series.setSurveyDate( seriesDate ); //Loop through all points in chain for ( int i = 1; i < arSurveyChain.size(); i++ ) { SurveyLeg leg = new SurveyLeg(); SurveyStation fromStn = new SurveyStation( i - 1 ); SurveyStation toStn = new SurveyStation( i ); double[] startPoint = arSurveyChain.get( i - 1 ); double[] endPoint = arSurveyChain.get(i); if ( i == 1 ) { //First leg, so fix first station fromStn.setFixed(FixType.OTHER, startPoint[0], startPoint[1], startPoint[2]); } //Calculate leg data double x = endPoint[0] - startPoint[0]; double y = endPoint[1] - startPoint[1]; double z = endPoint[2] - startPoint[2]; //Only add point if in a different position to previous point in polyline (or series is only two points forming an equate) if ( x != 0 || y != 0 || z != 0 || arSurveyChain.size() == 2 ) { double hori = Math.pow( Math.pow( x, 2 ) + Math.pow( y, 2 ), 0.5 ); double tape = Math.pow( Math.pow( hori, 2 ) + Math.pow( z, 2 ), 0.5 ); double compass = bearing(x, y); double clino = bearing(z, hori); if ( clino > 90 ) { clino = clino - 360; } //Set stn names from labels array if we have them if (labels[i-1] != null) { fromStn.setName( labels[i-1] ); } if (labels[i] != null) { toStn.setName( labels[i] ); } leg.setFromStn( fromStn ); leg.setToStn( toStn ); leg.setLength( tape, LengthUnit.Metres ); leg.setCompass( compass, BearingUnit.Degrees ); leg.setClino( clino, GradientUnit.Degrees ); series.addLeg(leg); } } // CleanSeries(series); return series; } /** * bearing * * Returns bearing for angle described by x and y lengths */ private double bearing(double x, double y) { double res = 0; if ( x == 0 ) { if ( y < 0 ) { res = 180; } else { res = 0; } } else if ( x < 0 ) { if ( y == 0 ) { res = 270; } else if ( y < 0 ) { //180-270 res = 180 + (Math.atan(x / y) * 180 / Math.PI); } else { //270-360 res = 360 + (Math.atan(x / y) * 180 / Math.PI); } } else { if ( y == 0 ) { res = 90; } else if ( y < 0 ) { //90-180 res = 180 + (Math.atan(x / y) * 180 / Math.PI); } else { //0-90 res = (Math.atan(x / y) * 180 / Math.PI); } } return res; } private double roundedDataValue( String dataLine ) { double roundedVal = ( (double)Math.round( Double.valueOf(dataLine) * 10000 ) ) / 10000; return roundedVal; } /** * Clean up names in the survey series * @param series */ private void CleanSeries( SurveySeries series ) { //Count occurrences of each unique prefix on station names List stnNamePrefixes = new ArrayList(); List stnNamePrefixCounts = new ArrayList(); for ( int i = 0; i < series.legCount(); i++ ) { SurveyLeg leg = series.getLegRaw( i ); String name = leg.getFromStn().getName(); if ( name.contains(".") ) { String prefix = name.substring( 0, name.lastIndexOf('.') ); boolean found = false; for ( int j = 0; j < stnNamePrefixes.size(); j++ ) { if ( prefix.equals( stnNamePrefixes.get(j) ) ) { found = true; int count = stnNamePrefixCounts.get(j); count++; stnNamePrefixCounts.set(j, count); break; } } if ( found == false ) { stnNamePrefixes.add( prefix ); stnNamePrefixCounts.add(1); } } name = leg.getToStn().getName(); if ( name.contains(".") ) { String prefix = name.substring( 0, name.lastIndexOf('.') ); boolean found = false; for ( int j = 0; j < stnNamePrefixes.size(); j++ ) { if ( prefix.equals( stnNamePrefixes.get(j) ) ) { found = true; int count = stnNamePrefixCounts.get(j); count++; stnNamePrefixCounts.set(j, count); break; } } if ( found == false ) { stnNamePrefixes.add( prefix ); stnNamePrefixCounts.add(1); } } } if ( stnNamePrefixes.size() > 0 ) { //Find most common prefix then remove it from all station names and use as series name int mostCommonPrefixIdx = 0; int highestOccurence = 0; for ( int j = 0; j < stnNamePrefixCounts.size(); j++ ) { if ( stnNamePrefixCounts.get(j) > highestOccurence ) { mostCommonPrefixIdx = j; highestOccurence = stnNamePrefixCounts.get(j); } } //Rename series using most common prefix series.setSeriesName( stnNamePrefixes.get( mostCommonPrefixIdx ) ); } } /** * Determines the prefix for a station name (all the string up to the last dot separator) * @param name Station name to examine * @return Prefix from the name, or an empty string if no dit separator in name. */ private String getNamePrefix( String name ) { int lastDotPos = name.lastIndexOf('.'); String prefix = ""; if ( lastDotPos > -1 ) { prefix = name.substring( 0, lastDotPos ); } return prefix; } /** * Determines the station name after the prefix (all the string after the last dot separator) * @param name Station name to examine * @return Shortened station name */ private String getShortenedName( String name ) { int lastDotPos = name.lastIndexOf('.'); String shortName = name; if ( lastDotPos > -1 ) { shortName = name.substring( lastDotPos + 1 ); } return shortName; } /** * Returns a list of the indices in the label points array of all points matching the position of a given point * @param matchingPoint The point to match * @param labelPoints Array of points to search for matching points in * @return ArrayList of the indices of all points at the same coordinates as the specified point */ private List getListOfMatchingPoints(double[] matchingPoint, List labelPoints) { List matchingPoints = new ArrayList(); for ( int allPointsIdx = 0; allPointsIdx < labelPoints.size(); allPointsIdx++ ) { double[] testPoint = labelPoints.get( allPointsIdx ); if ( ( matchingPoint[0] == testPoint[0]) && ( matchingPoint[1] == testPoint[1]) && ( matchingPoint[2] == testPoint[2]) ) { //Add index of matching point to matches array matchingPoints.add( allPointsIdx ); } } return matchingPoints; } } CaveConverter_src/src/footleg/cavesurvey/data/reader/SurvexParser.java0000644000000000000000000010454413036474244025321 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.reader; import java.text.ParseException; import java.util.ArrayList; import java.util.Date; import java.util.Iterator; import java.util.List; import footleg.cavesurvey.converter.CaveConverter; import footleg.cavesurvey.converter.Logger; import footleg.cavesurvey.converter.CaveConverter.BearingUnit; import footleg.cavesurvey.converter.CaveConverter.GradientUnit; import footleg.cavesurvey.converter.CaveConverter.LengthUnit; import footleg.cavesurvey.data.model.CaveSurvey; import footleg.cavesurvey.data.model.Equate; import footleg.cavesurvey.data.model.SurveyLeg; import footleg.cavesurvey.data.model.SurveySeries; import footleg.cavesurvey.tools.UtilityFunctions; /** * Parser for Survex format text data files. * * @author Footleg * @version 2017.01.12 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) * * @to.do * TODO Parse entrance flags * TODO Parse fix flags * TODO Parse calibration comments fields * TODO Parse team fields * TODO Parse instrument fields */ public class SurvexParser { private Logger logger; /** * Class constructor * @param logger Logging class to output information, warning and error messages to */ public SurvexParser( Logger logger ) { super(); this.logger = logger; } private class DataBlockProperties { public DataBlockProperties(boolean duplicateFlag, boolean splayFlag, boolean surfaceFlag, boolean noSurvey) { super(); this.duplicateFlag = duplicateFlag; this.splayFlag = splayFlag; this.surfaceFlag = surfaceFlag; this.noSurvey = noSurvey; } public DataBlockProperties(DataBlockProperties parentBlock) { super(); this.duplicateFlag = parentBlock.duplicateFlag; this.splayFlag = parentBlock.splayFlag; this.surfaceFlag = parentBlock.surfaceFlag; this.noSurvey = parentBlock.noSurvey; this.parentBlock = parentBlock; } private boolean duplicateFlag = false; private boolean splayFlag = false; private boolean surfaceFlag = false; private boolean noSurvey = false; private DataBlockProperties parentBlock; } /** * Parse survex format data into the cave data model * * @param surveyFileData ListArray of data lines from a survex file * @param multifileRefs ArrayList of strings indicating the original file and line number for each data line in the * surveyFileData ArrayList passed in. Used to report errors in logger for original survey data files when parsing multi-file Survex projects. * @return Cave Survey object * @throws ParseException Exception raised when information in a survey data file is not supported or valid for the format */ public CaveSurvey parseFile( List surveyFileData, List multifileRefs ) throws ParseException { /** * Read state codes: * 0=starting new file * 1=inside begin/end block * 2=LRUD block */ int state = 0; //Create cave survey object to hold data CaveSurvey allSeries = new CaveSurvey(logger); //Create stack to hold open series while processing data lines List seriesStack = new ArrayList(); //Create stack to hold open series names while processing data lines List nameStack = new ArrayList(); //Create list for equates List equates = new ArrayList(); //Create a series instance to use as a pointer to the active series data is being read from SurveySeries liveSeries = null; //Create list to hold data order for active data block List dataOrder = new ArrayList(); //Variable to hold values for parent block when inside an anonymous block DataBlockProperties blockProps = new DataBlockProperties( false, false, false, false ); //Loop through all data lines for ( int fileDataIdx=0; fileDataIdx < surveyFileData.size(); fileDataIdx++ ) { //Get data line, file line number and line reference for the next data line from the survey data array list int lineNo = fileDataIdx + 1; String dataLine = surveyFileData.get(fileDataIdx); String lineRef = "" + lineNo; if ( multifileRefs != null ) { lineRef = multifileRefs.get( fileDataIdx ); } //Discard text after comment character //TODO Keep comments and add into data model for legs, series and file heading int commentPos = dataLine.indexOf(';'); if ( commentPos > -1 ) { dataLine = dataLine.substring(0, commentPos); } //Trim whitespace off line ends dataLine = dataLine.trim(); //Skip blank lines if ( dataLine.length() > 0 ) { //Check line for commands if ( dataLine.charAt(0) == '*' ) { //Process line into individual items trimming off initial '*' String[] data = UtilityFunctions.cleanAndSplitDataLine( dataLine.substring(1) ); //Get command keyword String cmd = data[0]; //Check for expected commands if ( cmd.compareToIgnoreCase("BEGIN") == 0 ) { //Start of new block state = 1; if (data.length == 2) { //Create series liveSeries = new SurveySeries(data[1]); //Add name to stack nameStack.add(data[1]); //Get calibrations from last series and apply to new child series (if present) double tapeCal = 0.0; double compassCal = 0.0; double clinoCal = 0.0; double declinationCal = 0.0; //Check if a parent series exists if (seriesStack.size() > 0) { SurveySeries series = seriesStack.get( seriesStack.size() - 1 ); tapeCal = series.getTapeCalibration(LengthUnit.Metres); compassCal = series.getCompassCalibration(BearingUnit.Degrees); clinoCal = series.getClinoCalibration(GradientUnit.Degrees); declinationCal = series.getDeclination(); dataOrder = series.getDataOrder(); } //Put new series onto stack seriesStack.add(liveSeries); //Apply calibrations from parent series. //These will get overwritten if this series has it's own calibrations. liveSeries.setTapeCalibration(tapeCal, LengthUnit.Metres); liveSeries.setCompassCalibration(compassCal, BearingUnit.Degrees); liveSeries.setClinoCalibration(clinoCal, GradientUnit.Degrees); liveSeries.setDeclination(declinationCal); liveSeries.setDataOrder(dataOrder); //Copy flag settings into new child series and store parent settings to retrieve at series end DataBlockProperties newBlock = new DataBlockProperties( blockProps ); //Make new properties block the current one blockProps = newBlock; } else if (data.length < 2) { //Anonymous block begin. Put properties from last block into new block as parent DataBlockProperties newBlock = new DataBlockProperties( blockProps ); //then swap new block to current blockProps = newBlock; // throw new ParseException( UtilityFunctions.formatFileParserMsg("BEGIN/END blocks without names are not supported.", lineRef ), lineNo ); } else { //Do not support begin/end blocks names with white space throw new ParseException( UtilityFunctions.formatFileParserMsg("BEGIN/END blocks names containing spaces are not supported.", lineRef ), lineNo ); } } else if ( cmd.compareToIgnoreCase("END") == 0 ) { //End block if ( data.length == 1 ) { //Anonymous block ended, so just restore parent block flags blockProps = blockProps.parentBlock; } else { //Named block ended String blockEndName = data[1]; //Check end matches end of section name String currentBlockName = nameStack.get( nameStack.size() - 1 ); if ( currentBlockName.compareToIgnoreCase(blockEndName) == 0 ) { //Found matching end block, so close series //Remove live series from stack, as it is closed SurveySeries endedSeries = seriesStack.remove( seriesStack.size() - 1 ); nameStack.remove( nameStack.size() - 1 ); //Restore block properties from parent series block blockProps = blockProps.parentBlock; if ( seriesStack.size() > 0) { //Series is inside another, so make that live and add finished series to it liveSeries = seriesStack.get( seriesStack.size() - 1 ); liveSeries.addSeries( endedSeries ); //Return state to 1 state = 1; } else { //No other series on stack, so add to main cave survey allSeries.add( endedSeries ); //Clear reference to live series liveSeries = null; //Return state to 0 state = 0; } } else { //Names of begin end blocks do not match throw new ParseException( UtilityFunctions.formatFileParserMsg("Names of begin end blocks do not match. Begin=" + currentBlockName + " End=" + blockEndName + ".", lineRef ), lineNo ); } } } else if ( cmd.compareToIgnoreCase("EQUATE") == 0 ) { //Get two parts of the equate, expanding to full nested series names String fullSeriesPrefix = fullNestedSeriesName(nameStack); Equate equate = new Equate( fullSeriesPrefix, data[1], fullSeriesPrefix, data[2] ); //Add to cache equates.add(equate); } else if ( cmd.compareToIgnoreCase("DATA") == 0 ) { //Reset nosurvey flag blockProps.noSurvey = false; //Check data command type if ( data[1].compareToIgnoreCase("PASSAGE") == 0 ) { //LRUD data block state = 2; } else if ( data[1].compareToIgnoreCase("NORMAL") == 0 ) { state = 1; //Check data order //TODO Add support for backcompass and backclino in normal data logger.logMessage( "Found normal data header at line " + lineNo + ". Checking format." ); //Build array of expected categories here, and then loop through items picking off those that match until done. //We will then know if all were found and the format is valid. dataOrder.clear(); List allOrderKeys = new ArrayList(); allOrderKeys.add( CaveConverter.DATA_ORDER_CAT_FROMSTN ); allOrderKeys.add( CaveConverter.DATA_ORDER_CAT_TOSTN ); allOrderKeys.add( CaveConverter.DATA_ORDER_CAT_LENGTH ); allOrderKeys.add( CaveConverter.DATA_ORDER_CAT_BEARING ); allOrderKeys.add( CaveConverter.DATA_ORDER_CAT_CLINO ); allOrderKeys.add( CaveConverter.DATA_ORDER_CAT_IGNOREALL ); for (int dataIdx = 2; dataIdx < data.length; dataIdx++) { //Get next item (including translating alternative terms) String item = data[dataIdx].toUpperCase(); if ( item.compareTo("TAPE") == 0 ) { item = CaveConverter.DATA_ORDER_CAT_LENGTH; } else if ( item.compareTo("COMPASS") == 0 ) { item = CaveConverter.DATA_ORDER_CAT_BEARING; } else if ( item.compareTo("CLINO") == 0 ) { item = CaveConverter.DATA_ORDER_CAT_CLINO; } //Look for item in remaining unused keys list int foundIdx = allOrderKeys.indexOf( item ); if ( foundIdx > -1 ) { //Add this item to dataOrder list, and remove from unused keys list dataOrder.add( item ); allOrderKeys.remove( foundIdx ); } else { //Item not found, so unsupported data normal block throw new ParseException( UtilityFunctions.formatFileParserMsg("Unsupported survex normal data order. Term '" + item + "' is not supported.", lineRef ), lineNo ); } } //Add to live series, as primary unless that is already set to diving, //in which case set as secondary List checkDataOrder = liveSeries.getDataOrder(); if ( checkDataOrder.size() > 0 && ( UtilityFunctions.dataOrderIsDiving( checkDataOrder ) ) ) { liveSeries.setDataOrder2(dataOrder); } else { liveSeries.setDataOrder(dataOrder); } } else if ( data[1].compareToIgnoreCase("DIVING") == 0 ) { state = 1; //Check data order //TODO Add support for backcompass and backclino in diving data logger.logMessage( "Found diving data header at line " + lineNo + ". Checking format." ); //Build array of expected categories here, and then loop through items picking off those that match until done. //We will then know if all were found and the format is valid. dataOrder.clear(); List allOrderKeys = new ArrayList(); allOrderKeys.add( CaveConverter.DATA_ORDER_CAT_FROMSTN ); allOrderKeys.add( CaveConverter.DATA_ORDER_CAT_TOSTN ); allOrderKeys.add( CaveConverter.DATA_ORDER_CAT_LENGTH ); allOrderKeys.add( CaveConverter.DATA_ORDER_CAT_BEARING ); allOrderKeys.add( CaveConverter.DATA_ORDER_CAT_FROMDEPTH ); allOrderKeys.add( CaveConverter.DATA_ORDER_CAT_TODEPTH ); allOrderKeys.add( CaveConverter.DATA_ORDER_CAT_DEPTHCHANGE ); allOrderKeys.add( CaveConverter.DATA_ORDER_CAT_IGNOREALL ); for (int dataIdx = 2; dataIdx < data.length; dataIdx++) { //Get next item (including translating alternative terms) String item = data[dataIdx].toUpperCase(); if ( item.compareTo("TAPE") == 0 ) { item = CaveConverter.DATA_ORDER_CAT_LENGTH; } else if ( item.compareTo("COMPASS") == 0 ) { item = CaveConverter.DATA_ORDER_CAT_BEARING; } //Look for item in remaining unused keys list int foundIdx = allOrderKeys.indexOf( item ); if ( foundIdx > -1 ) { //Add this item to dataOrder list, and remove from unused keys list dataOrder.add( item ); allOrderKeys.remove( foundIdx ); //If a diving depth term, then remove alternative form if ( item.compareTo(CaveConverter.DATA_ORDER_CAT_DEPTHCHANGE) == 0 ) { //Remove from and to depth items from list of remaining valid terms int altIdx = allOrderKeys.indexOf( CaveConverter.DATA_ORDER_CAT_FROMDEPTH ); if ( altIdx > -1 ) { allOrderKeys.remove( altIdx ); } altIdx = allOrderKeys.indexOf( CaveConverter.DATA_ORDER_CAT_TODEPTH ); if ( altIdx > -1 ) { allOrderKeys.remove( altIdx ); } } else if ( item.compareTo(CaveConverter.DATA_ORDER_CAT_FROMDEPTH) == 0 ) { //Remove depth change item from list of remaining valid terms int altIdx = allOrderKeys.indexOf( CaveConverter.DATA_ORDER_CAT_DEPTHCHANGE ); if ( altIdx > -1 ) { allOrderKeys.remove( altIdx ); } //Check toDepth comes after fromDepth as parser only supports this ordering of depths in diving data altIdx = allOrderKeys.indexOf( CaveConverter.DATA_ORDER_CAT_TODEPTH ); if ( altIdx == -1 ) { throw new ParseException( UtilityFunctions.formatFileParserMsg("Unsupported survex diving data order. todepth before fromdepth is not supported.", lineRef ), lineNo ); } } } else { //Item not found, so unsupported data normal block throw new ParseException( UtilityFunctions.formatFileParserMsg("Unsupported survex diving data order. Term '" + item + "' is not supported.", lineRef ), lineNo ); } } //Add to live series, as primary unless that is already normal, //in which case set as secondary List checkDataOrder = liveSeries.getDataOrder(); if ( checkDataOrder.size() > 0 && ( UtilityFunctions.dataOrderIsDiving( checkDataOrder ) == false ) ) { liveSeries.setDataOrder2(dataOrder); } else { liveSeries.setDataOrder(dataOrder); } } else if ( data[1].compareToIgnoreCase("NOSURVEY") == 0 ) { state = 1; //Check data order //TODO Add support for nosurvey station format logger.logMessage( "Found nosurvey data header at line " + lineNo + ". Checking format." ); //Build array of expected categories here, and then loop through items picking off those that match until done. //We will then know if all were found and the format is valid. dataOrder.clear(); List allOrderKeys = new ArrayList(); allOrderKeys.add( CaveConverter.DATA_ORDER_CAT_FROMSTN ); allOrderKeys.add( CaveConverter.DATA_ORDER_CAT_TOSTN ); for (int dataIdx = 2; dataIdx < data.length; dataIdx++) { //Get next item String item = data[dataIdx].toUpperCase(); //Look for item in remaining unused keys list int foundIdx = allOrderKeys.indexOf( item ); if ( foundIdx > -1 ) { //Add this item to dataOrder list, and remove from unused keys list dataOrder.add( item ); allOrderKeys.remove( foundIdx ); } else { //Item not found, so unsupported data normal block throw new ParseException( UtilityFunctions.formatFileParserMsg("Unsupported survex nosurvey data order. Term '" + item + "' is not supported.", lineRef ), lineNo ); } } //Set nosurvey flag blockProps.noSurvey = true; } else { //Other data settings not currently supported (assumes file use default order) throw new ParseException( UtilityFunctions.formatFileParserMsg("Unsupported survex data command: " + data[1], lineRef ), lineNo ); } } else if ( cmd.compareToIgnoreCase("CALIBRATE") == 0 ) { //Process calibration command if (data.length == 3) { String type = data[1]; double value = Double.parseDouble( data[2] ); if ( type.compareToIgnoreCase("tape") == 0 ) { //Set tape calibration in active series liveSeries.setTapeCalibration(value, liveSeries.getLengthUnit() ); } else if ( type.compareToIgnoreCase("declination") == 0 ) { //Set declination calibration in active series liveSeries.setDeclination(value); } else if ( type.compareToIgnoreCase("compass") == 0 ) { //Set compass calibration in active series liveSeries.setCompassCalibration(value, liveSeries.getBearingUnit() ); } else if ( type.compareToIgnoreCase("clino") == 0 ) { //Set compass calibration in active series liveSeries.setClinoCalibration(value, liveSeries.getGradientUnit() ); } //TODO Add support for calibration scale factors } else { //Invalid calibration lie throw new ParseException( UtilityFunctions.formatFileParserMsg("CALIBRATE command did not contain a single instrument type plus value.", lineRef ), lineNo ); } } else if ( cmd.compareToIgnoreCase("DATE") == 0 ) { //Process date if (data.length > 1) { Date value = UtilityFunctions.stringToDate(data[1], "yyyy.MM.dd"); liveSeries.setSurveyDate(value); } else { logger.logMessage( "DATE command without further data skipped for line: " + dataLine); } } else if ( cmd.compareToIgnoreCase("UNITS") == 0 ) { //Determine unit being set if ( data.length > 2 ) { //Find unit in line int unitIdx = 0; for (int i = 2; i < data.length; i++) { if ( ( data[i].compareToIgnoreCase("METRES") == 0 ) || ( data[i].compareToIgnoreCase("METERS") == 0 ) || ( data[i].compareToIgnoreCase("METRIC") == 0 ) || ( data[i].compareToIgnoreCase("YARDS") == 0 ) || ( data[i].compareToIgnoreCase("FEET") == 0 ) || ( data[i].compareToIgnoreCase("DEGS") == 0 ) || ( data[i].compareToIgnoreCase("DEGREES") == 0 ) || ( data[i].compareToIgnoreCase("GRADS") == 0 ) || ( data[i].compareToIgnoreCase("MILS") == 0 ) || ( data[i].compareToIgnoreCase("MINUTES") == 0 ) || ( data[i].compareToIgnoreCase("PERCENT") == 0 ) || ( data[i].compareToIgnoreCase("PERCENTAGE") == 0 ) ) { //Found unit, store index and then look back through items to set for this unit unitIdx = i; break; } } if (unitIdx > 0) { for (int i = 1; i < unitIdx; i++) { if ( data[i].compareToIgnoreCase("TAPE") == 0 || data[i].compareToIgnoreCase("LENGTH") == 0 ) { //TAPE/LENGTH, BACKTAPE/BACKLENGTH, COUNTER/COUNT, DEPTH, DX/EASTING, DY/NORTHING, DZ/ALTITUDE in YARDS|FEET|METRIC|METRES|METERS (default: METRES) if ( data[unitIdx].compareToIgnoreCase("METRES") == 0 || data[unitIdx].compareToIgnoreCase("METERS") == 0 || data[unitIdx].compareToIgnoreCase("METRIC") == 0 ) { liveSeries.setLengthUnit( LengthUnit.Metres ); } else if ( data[unitIdx].compareToIgnoreCase("FEET") == 0 ) { liveSeries.setLengthUnit( LengthUnit.Feet ); } else if ( data[unitIdx].compareToIgnoreCase("YARDS") == 0 ) { liveSeries.setLengthUnit( LengthUnit.Yards ); } else { throw new ParseException( UtilityFunctions.formatFileParserMsg("Unsupported length unit '" + data[unitIdx] + "'.", lineRef ), lineNo ); } } else if ( data[i].compareToIgnoreCase("DEPTH") == 0 ) { //TAPE/LENGTH, BACKTAPE/BACKLENGTH, COUNTER/COUNT, DEPTH, DX/EASTING, DY/NORTHING, DZ/ALTITUDE in YARDS|FEET|METRIC|METRES|METERS (default: METRES) if ( data[unitIdx].compareToIgnoreCase("METRES") == 0 || data[unitIdx].compareToIgnoreCase("METERS") == 0 || data[unitIdx].compareToIgnoreCase("METRIC") == 0 ) { liveSeries.setDepthUnit( LengthUnit.Metres ); } else if ( data[unitIdx].compareToIgnoreCase("FEET") == 0 ) { liveSeries.setDepthUnit( LengthUnit.Feet ); } else if ( data[unitIdx].compareToIgnoreCase("YARDS") == 0 ) { liveSeries.setDepthUnit( LengthUnit.Yards ); } else { throw new ParseException( UtilityFunctions.formatFileParserMsg("Unsupported depth unit '" + data[unitIdx] + "'.", lineRef ), lineNo ); } } else if ( data[i].compareToIgnoreCase("COMPASS") == 0 || data[i].compareToIgnoreCase("BEARING") == 0 ) { //COMPASS/BEARING, BACKCOMPASS/BACKBEARING, DECLINATION in DEG|DEGREES|GRADS|MILS|MINUTES (default: DEGREES) if ( data[unitIdx].compareToIgnoreCase("DEGS") == 0 || data[unitIdx].compareToIgnoreCase("DEGREES") == 0 ) { liveSeries.setBearingUnit( BearingUnit.Degrees ); } else if ( data[unitIdx].compareToIgnoreCase("GRADS") == 0 || data[unitIdx].compareToIgnoreCase("MILS") == 0 ) { liveSeries.setBearingUnit( BearingUnit.Grads ); } else if ( data[unitIdx].compareToIgnoreCase("MINUTES") == 0 ) { liveSeries.setBearingUnit( BearingUnit.Minutes ); } else { throw new ParseException( UtilityFunctions.formatFileParserMsg("Unsupported bearing unit '" + data[unitIdx] + "'.", lineRef ), lineNo ); } } else if ( data[i].compareToIgnoreCase("CLINO") == 0 || data[i].compareToIgnoreCase("GRADIENT") == 0 ) { //CLINO/GRADIENT, BACKCLINO/BACKGRADIENT in DEG|DEGREES|GRADS|MILS|PERCENT|PERCENTAGE (default: DEGREES) if ( data[unitIdx].compareToIgnoreCase("DEGS") == 0 || data[unitIdx].compareToIgnoreCase("DEGREES") == 0 ) { liveSeries.setGradientUnit( GradientUnit.Degrees ); } else if ( data[unitIdx].compareToIgnoreCase("GRADS") == 0 || data[unitIdx].compareToIgnoreCase("MILS") == 0 ) { liveSeries.setGradientUnit( GradientUnit.Grads ); } else if ( data[unitIdx].compareToIgnoreCase("PERCENT") == 0 || data[unitIdx].compareToIgnoreCase("PERCENTAGE") == 0 ) { liveSeries.setGradientUnit( GradientUnit.Percent ); } else if ( data[unitIdx].compareToIgnoreCase("MINUTES") == 0 ) { liveSeries.setGradientUnit( GradientUnit.Minutes ); } else { throw new ParseException( UtilityFunctions.formatFileParserMsg("Unsupported gradient unit '" + data[unitIdx] + "'.", lineRef ), lineNo ); } } else { throw new ParseException( UtilityFunctions.formatFileParserMsg("Unsupported unit type '" + data[i] + "'.", lineRef ), lineNo ); } } } else { throw new ParseException( UtilityFunctions.formatFileParserMsg("UNITS command did not contain a category of measurement plus value.", lineRef ), lineNo ); } } } else if ( cmd.compareToIgnoreCase("FLAGS") == 0 ) { //Process flags boolean notPrefixed = false; for (int iFlags = 1; iFlags < data.length; iFlags++) { //Read all flags settings to determine what is being turned on or off if (data[iFlags].compareToIgnoreCase("NOT") == 0 ) { notPrefixed = true; } else if (data[iFlags].compareToIgnoreCase("DUPLICATE") == 0 ) { blockProps.duplicateFlag = (notPrefixed == false); notPrefixed = false; } else if (data[iFlags].compareToIgnoreCase("SPLAY") == 0 ) { blockProps.splayFlag = (notPrefixed == false); notPrefixed = false; } else if (data[iFlags].compareToIgnoreCase("SURFACE") == 0 ) { blockProps.surfaceFlag = (notPrefixed == false); notPrefixed = false; } else { //Reset notPrefixed flag if any other value notPrefixed = false; } } } else { //Ignore other commands inside begin end block //TODO Add support for FIX stations //TODO Add support for ENTRANCE stations //TODO Add support for topofil clino calibration scale factor logger.logMessage("Unsupported Survex command ignored: " + cmd); } } else { //Data line //logger.logMessage("Data line " + CaveConverter.padNumber(lineNo, 4) + ": " + dataLine); if ( liveSeries != null ) { //Process line into individual items String[] data = UtilityFunctions.cleanAndSplitDataLine(dataLine); switch (state) { case 1: //Create new survey leg SurveyLeg leg = new SurveyLeg(); double fromDepth = 0; //Create record from the items int index = 0; while ( index < data.length ) { String item = data[index]; //Check for end of line if ( item.charAt(0) == ';' ) { //Comments, so ignore rest of line //TODO Add support for leg comments index = data.length; } else { //Check data order was determined if ( dataOrder.size() == 0 ) { //No data order specified, so set to default dataOrder.add( CaveConverter.DATA_ORDER_CAT_FROMSTN ); dataOrder.add( CaveConverter.DATA_ORDER_CAT_TOSTN ); dataOrder.add( CaveConverter.DATA_ORDER_CAT_LENGTH ); dataOrder.add( CaveConverter.DATA_ORDER_CAT_BEARING ); dataOrder.add( CaveConverter.DATA_ORDER_CAT_CLINO ); } else if ( blockProps.noSurvey == false && dataOrder.size() <5 ) { throw new ParseException( UtilityFunctions.formatFileParserMsg("Last data order command did not contain enough items for a survey leg.", lineRef ), lineNo ); } else if ( ( dataOrder.size() < index + 1 ) && ( dataOrder.get( dataOrder.size() - 1 ).equals( CaveConverter.DATA_ORDER_CAT_IGNOREALL ) ) == false ) { throw new ParseException( UtilityFunctions.formatFileParserMsg("Last data order command did not contain enough items for data line.", lineRef ), lineNo ); } //Put item into appropriate value String itemCat = CaveConverter.DATA_ORDER_CAT_IGNOREALL; if ( index < dataOrder.size() ) { itemCat = dataOrder.get( index ); } if ( itemCat.equals( CaveConverter.DATA_ORDER_CAT_FROMSTN ) ) { //TODO Add support for retaining station name when not a number leg.setFromStn( UtilityFunctions.createStationFromNameForSeries( data[index], liveSeries ) ); //Set nosurvey legs flag for nosurvey leg when setting fromStn if ( blockProps.noSurvey ) { leg.setNosurvey( true ); } } else if ( itemCat.equals( CaveConverter.DATA_ORDER_CAT_TOSTN ) ) { //TODO Add support for retaining station name when not a number leg.setToStn( UtilityFunctions.createStationFromNameForSeries( data[index], liveSeries ) ); } else if ( itemCat.equals( CaveConverter.DATA_ORDER_CAT_LENGTH ) ) { double length = Double.parseDouble( data[index] ); if ( length < 0 ) { logger.logMessage("Warning: Negative leg length (" + data[index] + ") read from Survex file at line " + lineNo + "."); } leg.setLength( length, liveSeries.getLengthUnit() ); } else if ( itemCat.equals( CaveConverter.DATA_ORDER_CAT_BEARING ) ) { if ( data[index].compareTo("-") == 0 ) { leg.setCompass( 0, BearingUnit.Degrees ); } else { leg.setCompass( Double.valueOf( data[index] ), liveSeries.getBearingUnit() ); } } else if ( itemCat.equals( CaveConverter.DATA_ORDER_CAT_CLINO ) ) { //Trim data item after ';' if present String val = data[index]; int commentCharPos = val.indexOf(';'); if ( commentCharPos > 0 ) { val = val.substring(0, commentCharPos); } double straightDown = -90; double straightUp = 90; double level = 0; if ( val.compareToIgnoreCase("-V") == 0 ) { leg.setClino( straightDown, GradientUnit.Degrees ); } else if ( val.compareToIgnoreCase("down") == 0 ) { leg.setClino( straightDown, GradientUnit.Degrees ); } else if ( val.compareToIgnoreCase("d") == 0 ) { leg.setClino( straightDown, GradientUnit.Degrees ); } else if ( val.compareToIgnoreCase("+V") == 0 ) { leg.setClino( straightUp, GradientUnit.Degrees ); } else if ( val.compareToIgnoreCase("up") == 0 ) { leg.setClino( straightUp, GradientUnit.Degrees ); } else if ( val.compareToIgnoreCase("u") == 0 ) { leg.setClino( straightUp, GradientUnit.Degrees ); } else if ( val.compareToIgnoreCase("-") == 0 ) { leg.setClino( level, GradientUnit.Degrees ); } else if ( val.compareToIgnoreCase("level") == 0 ) { leg.setClino( level, GradientUnit.Degrees ); } else { leg.setClino( Double.valueOf( val ), liveSeries.getGradientUnit() ); } } else if ( itemCat.equals( CaveConverter.DATA_ORDER_CAT_FROMDEPTH ) ) { //Store fromDepth, it will be added to leg when toDepth is read (parser only supports fromDepth before toDepth in data ordering) fromDepth = Double.parseDouble( data[index] ); } else if ( itemCat.equals( CaveConverter.DATA_ORDER_CAT_TODEPTH ) ) { double toDepth = Double.parseDouble( data[index] ); leg.setDepths( fromDepth, toDepth, liveSeries.getDepthUnit() ); } else if ( itemCat.equals( CaveConverter.DATA_ORDER_CAT_DEPTHCHANGE ) ) { double depthChange = Double.parseDouble( data[index] ); leg.setDepthChange( depthChange, liveSeries.getDepthUnit() ); } else if ( itemCat.equals( CaveConverter.DATA_ORDER_CAT_IGNOREALL ) ) { //TODO Comment on line end? } } index++; } //Check leg was found if ( blockProps.noSurvey || leg.getLength( LengthUnit.Metres ) > -1 ) { //Set flags for leg leg.setDuplicate(blockProps.duplicateFlag); leg.setSplay(blockProps.splayFlag); leg.setSurface(blockProps.surfaceFlag); //Add leg to series liveSeries.addLeg(leg); } break; case 2: //Add data to LRUD cache /** * TODO Need to store all the LRUD lines in groups to match with * the legs once the series is complete. Need to match legs to lrud * from two consecutive lines to be sure the LRUD is for that leg, and * not another leg from the same station. Create the LRUD group in * the command parsing switch, as that is where we know a new LRUD group has * been started. */ break; } } else { //Data line outside of series throw new ParseException( UtilityFunctions.formatFileParserMsg("Data line found outside of any begin/end block.", lineRef ), lineNo ); } } } } //Process equates UtilityFunctions.processEquates(equates, allSeries); //Debug dump UtilityFunctions.logSurveyDebugData(allSeries, logger); //Completed file parsing return allSeries; } //Get series names in stack to generate full series name private String fullNestedSeriesName(List stack) { String name = ""; Iterator stackIterator = stack.listIterator(); while ( stackIterator.hasNext() ) { name += "." + stackIterator.next(); } //Remove initial dot return name.substring(1); } } CaveConverter_src/src/footleg/cavesurvey/data/reader/PocketTopoParser.java0000644000000000000000000006534213036417264026115 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.reader; import java.text.ParseException; import java.util.ArrayList; import java.util.Date; import java.util.List; import footleg.cavesurvey.converter.Logger; import footleg.cavesurvey.converter.CaveConverter.BearingUnit; import footleg.cavesurvey.converter.CaveConverter.GradientUnit; import footleg.cavesurvey.converter.CaveConverter.LengthUnit; import footleg.cavesurvey.data.model.CaveSurvey; import footleg.cavesurvey.data.model.Equate; import footleg.cavesurvey.data.model.SurveyLeg; import footleg.cavesurvey.data.model.SurveySeries; import footleg.cavesurvey.data.model.SurveyStation; import footleg.cavesurvey.tools.UtilityFunctions; /** * Parser for PocketTopo Text export files. * * @author Footleg * @version 2017.01.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class PocketTopoParser { private Logger logger; //Constants used to indicate what type of data is encoded on a data line in the file being parsed private final int LINE_TYPE_LEG = 1; private final int LINE_TYPE_SPLAY = 2; private final int LINE_TYPE_EQUATE = 3; private final int LINE_TYPE_COMMENT = 4; /** * Class constructor * @param logger Logging class to output information, warning and error messages to */ public PocketTopoParser( Logger logger ) { super(); this.logger = logger; } /** * Class to hold data parsed from a line in a PocketTopo exported text data file */ private class TopoDataLine { // start stepping through the array from the beginning private String fromStn = ""; private String toStn = ""; private double tape = 0; private double compass = 0; private double clino = 0; private String trip = ""; private String comment = ""; private int lineType = -1; public String getFromStn() { return fromStn; } public void setFromStn(String fromStn) { this.fromStn = fromStn; } public String getToStn() { return toStn; } public void setToStn(String toStn) { this.toStn = toStn; } public double getTape() { return tape; } public void setTape(double tape) { this.tape = tape; } public double getCompass() { return compass; } public void setCompass(double compass) { this.compass = compass; } public double getClino() { return clino; } public void setClino(double clino) { this.clino = clino; } public String getTrip() { return trip; } public void setTrip(String trip) { this.trip = trip; } public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } public int getLineType() { return lineType; } public void setLineType(int lineType) { this.lineType = lineType; } } /** * Parse PocketTopo exported text data file into the cave data model * * @param surveyFileData ListArray of data lines from a PocketTopo text file * @return Cave Survey object * @throws ParseException Exception raised when information in a survey data file is not supported or valid for the format */ public CaveSurvey parseFile( List surveyFileData ) throws ParseException { //Create new list of survey series to hold data CaveSurvey surveyData = new CaveSurvey(logger); SurveySeries outerSeries = null; String caveName = ""; //Create cache for trip settings (contains list of arrays each //containing 3 strings for the id, date and magnetic declination) List trips = new ArrayList(); //Create list for equates List equates = new ArrayList(); //Initialise read state int state = 0; //Create arrays to cache shots while processing each leg List legShots = new ArrayList(); List splayShots = new ArrayList(); //Cache vars for last leg processed String lastShotStart = ""; int lastToStn = -1; int lastSeriesNo = -1; String lastTripCode = ""; boolean newLeg = false; //Gets set to true when a new leg is started //Create vars for active series refs SurveySeries series = null; int activeSeries = -1; //Loop through all data lines for ( int lineIdx = 0; lineIdx <= surveyFileData.size(); lineIdx++ ) { int lineNo = lineIdx + 1; //Need to allow final pass through loop after all lines processed String dataLine = null; if ( lineIdx < surveyFileData.size() ) { dataLine = surveyFileData.get(lineIdx); } //Skip blank lines but not null line as this indicates end of file //and data cached from previous lines needs to be output if ( ( dataLine == null ) || ( dataLine.length() > 0 ) ) { //Process data switch (state) { case 0: //Header line //My Cave (m, 360) //Check for triple space separator with bracket int pos = dataLine.indexOf(" ("); if ( pos > 0 ) { String part1 = dataLine.substring(0, pos); String part2 = dataLine.substring(pos + 3); if ( part2.compareTo("(m, 360)") != 0 ) { //Not a valid header ParseException ex = new ParseException("Invalid file header. Unsupported units: " + part2, lineNo); throw ex; } else { //Take cave name from header, and create a new series for the cave caveName = part1.replace(' ', '_'); outerSeries = new SurveySeries( caveName ); surveyData.add( outerSeries ); logger.logMessage("Cave name: " + caveName); } } state = 1; break; case 1: //Trip settings in Header if ( dataLine.substring(0, 1).compareTo("[") == 0 ){ //Trip settings List tripData = UtilityFunctions.parseDataStringIntoDataItems(dataLine); //Copy into string array as rest of code uses a simple string array to store trip details String[] trip = new String[tripData.size()]; if ( tripData.size() >= 3 ) { if ( tripData.size() <= 4 ) { //Write first 3 items into trip data record for (int i = 0; i < tripData.size(); i++) { trip[i] = tripData.get(i); } } else { //Invalid trip line (more than 4 items) ParseException ex = new ParseException("Invalid file header. Trip data contain more than 4 items in line: " + dataLine, lineNo ); throw ex; } } else { //Invalid trip line (less than 3 items) ParseException ex = new ParseException("Invalid file header. Trip data does not contain at least 3 items in line: " + dataLine, lineNo ); throw ex; } //Remove colon from trip code if ( trip[0].charAt( trip[0].length() - 1 ) == ':' ) { trip[0] = trip[0].substring( 0, trip[0].length() - 1 ); } else { //Invalid trip code ParseException ex = new ParseException("Invalid file header. Unexpected trip code: " + trip[0] + " in line: " + dataLine, lineNo ); throw ex; } trips.add(trip); logger.logMessage("Trip settings: " + trip[0] + " " + trip[1] + " " + trip[2]); break; } else { //Start of legs, so don't break, just update state state = 2; } case 2: //Data lines //Create temporary survey leg to parse the data line into SurveyLeg shot = new SurveyLeg(); int seriesNo = -1; String trip = ""; TopoDataLine data = null; //Process data line if not at end of file if ( dataLine != null ) { // logger.logMessage("Data line " + CaveConverter.padNumber(lineNo, 4) + ": " + dataLine); //Parse items into Topoline object data = parseDataLine( UtilityFunctions.parseDataStringIntoDataItems( dataLine ) ); //Skip blank or all whitespace lines if ( data.getLineType() > 0 ) { //Add fields in common to all types of data line int[] seriesStn = splitSeriesFromStn( data.getFromStn() ); seriesNo = seriesStn[0]; shot.setFromStn( new SurveyStation( seriesStn[1] ) ); shot.setLength( data.getTape(), LengthUnit.Metres ); shot.setCompass( data.getCompass(), BearingUnit.Degrees ); shot.setClino( data.getClino(), GradientUnit.Degrees ); shot.setComment( data.getComment() ); trip = data.getTrip(); if ( ( data.getLineType() == LINE_TYPE_LEG ) || ( data.getLineType() == LINE_TYPE_EQUATE ) ) { //Survey Leg or equate also have a To Stn int[] seriesStn2 = splitSeriesFromStn( data.getToStn() ); shot.setToStn( new SurveyStation( seriesStn2[1] ) ); //Check whether both stations are in same series if ( seriesNo != seriesStn2[0] ) { if ( data.getLineType() != LINE_TYPE_EQUATE ) { //Leg changes series. Only allowed for equates. ParseException ex = new ParseException("Legs linking different series must be zero length.", lineNo ); throw ex; } else { //Series equate Equate equate = new Equate( outerSeries.getSeriesName() + "." + seriesNo, shot.getFromStn().getName(), outerSeries.getSeriesName() + "." + seriesStn2[0], shot.getToStn().getName() ); //Add to cache equates.add(equate); } } else if ( data.getLineType() == LINE_TYPE_EQUATE ) { //Equate within series Equate equate = new Equate( outerSeries.getSeriesName() + "." + seriesNo, shot.getFromStn().getName(), outerSeries.getSeriesName() + "." + seriesStn2[0], shot.getToStn().getName() ); //Add to cache equates.add(equate); } } else { //Splays do not have a to station, but the code relies on their being //a dummy station, so create one with id = -1 shot.setToStn( new SurveyStation( -1 ) ); } } } else { //No more data, so just cached data to output from previous lines //Initialise leg to dummy data so conditions below enable cached data to be processed data = parseDataLine( UtilityFunctions.parseDataStringIntoDataItems( "DUMMY DUMMY 42.0 0.0 0.0 [1]" ) ); shot.setLength( data.getTape(), LengthUnit.Metres ); //Set dummy value so cached legs get processed } //Process shot if not an equate if ( shot.getLength(LengthUnit.Metres) > 0 ) { /** * Check if this data is part of same leg already being processed. * If the start station is different to the last one, or there is * a to station which is different to the last to station then it * is a new leg. */ if ( lastShotStart.length() == 0 ) { //First shot in file, so store start station lastShotStart = data.getFromStn(); } else if ( data.getFromStn().compareTo( lastShotStart ) != 0 ) { //Start of new leg (start stn is different to last data line) newLeg = true; } else if ( ( shot.getToStn().getId() != -1 ) && ( ( lastToStn != -1 ) ) && ( shot.getToStn().getId() != lastToStn ) ) { //Start of new leg (end stn is different to to stn on last data line where last data line had a to stn) newLeg = true; } else if ( ( lastToStn != -1 ) && ( shot.getToStn().getId() == -1 ) ) { //New leg (no to stn on current data line, but last line had one) newLeg = true; } if ( newLeg ) { //Starting new leg, so process data for last one before //storing this data //Create new leg to store store processed data SurveyLeg masterLeg = new SurveyLeg(); if ( legShots.size() > 0 ) { //Set stations using first leg masterLeg.setFromStn( legShots.get(0).getFromStn() ); masterLeg.setToStn( legShots.get(0).getToStn() ); //Calculate averages for leg shots double tape = 0.0; double clino = 0.0; String comments = ""; //Use utility function to average bearings so values either side of north average correctly double[] bearings = new double[legShots.size()]; for ( int i = 0; i < legShots.size(); i++ ) { tape += legShots.get(i).getLength(LengthUnit.Metres); bearings[i] = legShots.get(i).getCompass(BearingUnit.Degrees); clino += legShots.get(i).getClino(GradientUnit.Degrees); //Append comments from multiple shots into one comment if ( legShots.get(i).getComment().length() > 0 ) { if ( comments.length() > 0 ) { comments += "; " + legShots.get(i).getComment(); } else { comments = legShots.get(i).getComment(); } } } double aveCompass = UtilityFunctions.averageCompassBearings(bearings); //Update master leg masterLeg.setLength( tape / legShots.size(), LengthUnit.Metres ); masterLeg.setCompass( aveCompass, BearingUnit.Degrees ); masterLeg.setClino( clino / legShots.size(), GradientUnit.Degrees ); masterLeg.setComment( comments ); } //Determine if this leg belongs to the active series if ( activeSeries != lastSeriesNo ) { //Different series, see if this series already exists boolean gotSeries = false; for ( int j = 0; j < outerSeries.innerSeriesCount(); j++ ) { //Check for matching series if ( outerSeries.getInnerSeries(j).getSeriesName().compareTo( "" + lastSeriesNo ) == 0 ) { //Found match, so get reference to this one series = outerSeries.getInnerSeries(j); gotSeries = true; //Exit loop j = outerSeries.innerSeriesCount(); } } if ( gotSeries == false ) { //No series found, so need to create one series = new SurveySeries( "" + lastSeriesNo ); //Find compass calibration for this new series for ( int j = 0; j < trips.size(); j++ ) { if ( lastTripCode.compareTo( trips.get(j)[0] ) == 0 ) { //Use calibration for this trip series.setDeclination( Double.valueOf( trips.get(j)[2] ) ); //Set date for trip (will be string of format yyyy/mm/dd) String tripDateString = trips.get(j)[1]; Date tripDate = UtilityFunctions.stringToDate(tripDateString, "yyyy/MM/dd"); series.setSurveyDate( tripDate ); //Add comment to series if a trip comment exists if ( trips.get(j).length == 4 ) { series.setComment(trips.get(j)[3]); } } } //Add new series to list outerSeries.addSeries( series ); } //Set active series number to match new active series activeSeries = lastSeriesNo; } //Process Splays for this leg int stnSplayCount = 0; String lastSplayFromStn = ""; for ( int i = 0; i < splayShots.size(); i++ ) { //Need to increment splay count for number of splays already added to series from this station //unless we already know this due to last splay being from the same station if ( ( i == 0 ) || ( lastSplayFromStn.equals( splayShots.get(i).getFromStn().getName() ) == false ) ) { //Count previous splays matching this fromStn in series stnSplayCount = 0; for ( int legIdx = 0; legIdx < series.legCount(); legIdx++ ) { SurveyLeg chkLeg = series.getLegRaw( legIdx ); if ( ( chkLeg.isSplay() ) && ( chkLeg.getFromStn().getName().equals( splayShots.get(i).getFromStn().getName() ) ) ) { stnSplayCount++; } } } //Add shot as a splay stnSplayCount++; addSplayShot(series, splayShots.get(i), stnSplayCount); } //Add master leg to series unless a dummy leg (will have negative length) if ( masterLeg.getLength(LengthUnit.Metres) >= 0 ) { series.addLeg( masterLeg ); } //Clear caches legShots = new ArrayList(); splayShots = new ArrayList(); //Update stn names for this new leg lastShotStart = data.getFromStn(); //Reset flags newLeg = false; } //Process current leg unless a dummy end of file line if ( dataLine != null ) { //Determine whether a splay shot or a leg shot if ( shot.getToStn().getId() == -1 ) { //Passage dimension shot splayShots.add(shot); } else { //Survey Leg, add to list legShots.add(shot); } //Cache series no for this leg to be used next loop lastSeriesNo = seriesNo; lastTripCode = trip; //Store to stn for comparison on next pass lastToStn = shot.getToStn().getId(); } } break; default: } } } //Process equates UtilityFunctions.processEquates(equates, surveyData); //Debug dump UtilityFunctions.logSurveyDebugData(surveyData, logger); //Completed file parsing // logger.logMessage("Processed " + legCount + " survey legs in " + // surveyData.size() + " series."); return surveyData; } /** * Splits a series.station name string into the component integers * * @param dataIn String consisting of a numeric series name and numeric station name separated with a dot * @return An array of two integers, the series number and the station number */ private int[] splitSeriesFromStn( String dataIn ) { //Split a series.station into the component integers int[] result = new int[2]; int pos = dataIn.indexOf('.'); if ( pos > 0 ) { result[0] = Integer.valueOf( dataIn.substring( 0, pos ) ); result[1] = Integer.valueOf( dataIn.substring( pos + 1 ) ); } else { //Invalid series+station name RuntimeException ex = new RuntimeException("Invalid dot separated series and station name : " + dataIn); throw ex; } return result; } /** * Determines what type of data a line of the file is representing */ private TopoDataLine parseDataLine( List dataItems ) { //Equate lines do not always have trip numbers ( [1] ) //Lines may be and equate with an optional trip and optional comment //e.g. 1.0 1.1 0.000 0.00 0.00 //e.g. 1.10 3.0 0.000 0.00 0.00 [1] //e.g. 1.0 1.1 0.000 0.00 0.00 "Equate with a comment." //e.g. 1.10 3.0 0.000 0.00 0.00 [1] "Equate with a comment." //Lines can define a station with no other data, or just a comment //e.g. 1.0 0.00 0.00 0.00 //e.g. 1.0 0.000 0.00 0.00 "Just a comment." //Lines can represent legs, with or without comments //e.g. 1.1 1.2 2.050 260.84 -56.40 [1] //e.g. 1.0 1.2 5.234 3.18 -5.07 [1] "1.2=rawl plug on rear wall of blockhouse " //Lines can represent splay shots, with or without comments //e.g. 1.1 0.670 344.92 4.15 [1] //e.g. 1.1 0.670 344.92 4.15 [1] "Splay with a comment." TopoDataLine result = new TopoDataLine(); //Check line is valid (has at least 4 items) if ( dataItems.size() > 4 ) { //There will be either 4 or 5 data items in any line, followed by optional trip and comment items int tripIdx = -1; int commentIdx = -1; String lastItem = dataItems.get( dataItems.size() - 1 ); String lastButOneItem = dataItems.get( dataItems.size() - 2 ); //Check if last item is a trip if ( itemIsTrip( lastItem ) ) { //Last item is trip tripIdx = dataItems.size() - 1; } else if ( itemIsTrip( lastButOneItem ) ) { //Last item is trip tripIdx = dataItems.size() - 2; //Last item in line has to be a comment commentIdx = dataItems.size() - 1; } else { //No trip, but is last item a comment? if ( dataItems.size() > 5 ) { //Last item in line has to be a comment commentIdx = dataItems.size() - 1; } else if ( dataItems.size() == 5 ) { //Last item in line is either a comment or a zero value if ( itemIsZeroValue( lastItem ) == false ) { //Last item in line has to be a comment commentIdx = dataItems.size() - 1; } } } //All items have a from station result.setFromStn( dataItems.get(0) ); if ( ( tripIdx == 4 ) || ( commentIdx == 4 ) ) { //If trip or comment idx=4 then line is a splay leg result.setTape( Double.valueOf( dataItems.get(1) ) ); result.setCompass( Double.valueOf( dataItems.get(2) ) ); result.setClino( Double.valueOf( dataItems.get(3) ) ); //Check whether line is really a splay, null data, or just a comment if ( ( result.getTape() == 0.0 ) && ( result.getCompass() == 0.0 ) && ( result.getClino() == 0.0 ) ) { if ( commentIdx > 0 ) { result.setLineType( LINE_TYPE_COMMENT ); } else { //No data on line apart from from stn. Null line. result.setLineType( 0 ); } } else { result.setLineType( LINE_TYPE_SPLAY ); } } else if ( ( tripIdx == 5 ) || ( commentIdx == 5 ) || ( ( tripIdx == -1 ) && ( commentIdx == -1 ) ) ) { //If trip or comment idx=5, or there is neither a trip or comment then line is a survey leg result.setToStn( dataItems.get(1) ); result.setTape( Double.valueOf( dataItems.get(2) ) ); result.setCompass( Double.valueOf( dataItems.get(3) ) ); result.setClino( Double.valueOf( dataItems.get(4) ) ); //Check whether line is an equate or a leg if ( ( result.getTape() == 0.0 ) && ( result.getCompass() == 0.0 ) && ( result.getClino() == 0.0 ) ) { result.setLineType( LINE_TYPE_EQUATE ); } else { result.setLineType( LINE_TYPE_LEG ); } } //Add trip and comment if present if ( tripIdx > 0 ) { result.setTrip( dataItems.get( tripIdx ) ); } if ( commentIdx > 0 ) { result.setComment( dataItems.get( commentIdx ) ); } } return result; } private boolean itemIsTrip( String dataItem ) { boolean isTrip = false; if ( ( dataItem.length() > 2 ) && ( dataItem.length() < 4 ) && ( dataItem.charAt( 0 ) == '[' ) && ( dataItem.charAt( dataItem.length() - 1 ) == ']' ) ) { //Found trip item isTrip = true; } return isTrip; } private boolean itemIsZeroValue( String dataItem ) { boolean isZero = false; //Check items starts with '0.0' if ( dataItem.length() > 2 ) { if ( ( dataItem.charAt(0) == '0' ) && ( dataItem.charAt(1) == '.' ) && ( dataItem.charAt(2) == '0' ) ) { //Potentially a zero value string isZero = true; //Loop through remaining characters checking they are all zeros for (int i = 3; i < dataItem.length(); i++) { if ( dataItem.charAt(i) != '0' ) { //Item is not a zero value isZero = false; i = dataItem.length(); } } } } else { //Allow '0' and '00' //Potentially a zero value string isZero = true; //Loop through remaining characters checking they are all zeros for (int i = 0; i < dataItem.length(); i++) { if ( dataItem.charAt(i) != '0' ) { //Item is not a zero value isZero = false; i = dataItem.length(); } } } return isZero; } /* * processSplaysArray * * Processes an array of splay shots. Will return an LRUD dimension or private double processSplaysArray( SurveyLeg splays[], int bestIdx, SurveySeries series ) { for ( int i = 0; i < upShots.size(); i++ ) { if ( i == bestIdx ) { //Found best up shot masterLeg.setUp( upShots.get(i).getLength() ); } else { //Other shots, add as splay SurveyLeg splayShot = new SurveyLeg(); splayShot.setFromStn( upShots.get(i).getFromStn() ); String toStn = upShots.get(i).getFromStn() + new Character( (char)stnLetterCode++ ).toString(); splayShot.setToStn( CaveConverter.stnNameToNumber( toStn, series ) ); splayShot.setLength( upShots.get(i).getLength() ); splayShot.setCompass( upShots.get(i).getCompass() ); splayShot.setClino( upShots.get(i).getClino() ); splayShot.setSplay( true ); series.addLeg( splayShot ); legCount++; } } } */ private void addSplayShot( SurveySeries series, SurveyLeg shot, int splayCount ){ //Generate station name suffix for splay (97 = letter 'a') int increment = splayCount - 1; //Zero based int stnLetterCode = 97; //97 = letter 'a' String stnSuffix = ""; if ( splayCount < 27 ) { stnSuffix = new Character( (char)(stnLetterCode + increment) ).toString(); } else { int primaryCount = (increment - 26) / 26; int secondaryCount = (increment % 26); stnSuffix = new Character( (char)(stnLetterCode + primaryCount) ).toString(); stnSuffix += new Character( (char)(stnLetterCode + secondaryCount) ).toString(); } //Add shot as a splay //TODO Stns names should be screened against legal character list, wherever it is that they are set SurveyLeg splayShot = shot.clone(); String toStn = shot.getFromStn().getName() + stnSuffix; splayShot.setToStn( UtilityFunctions.createStationFromNameForSeries( toStn, series ) ); splayShot.setLength( shot.getLength(LengthUnit.Metres), LengthUnit.Metres ); splayShot.setCompass( shot.getCompass(BearingUnit.Degrees), BearingUnit.Degrees ); splayShot.setClino( shot.getClino(GradientUnit.Degrees), GradientUnit.Degrees ); splayShot.setSplay( true ); series.addLeg( splayShot ); } } CaveConverter_src/src/footleg/cavesurvey/data/reader/CompassParser.java0000644000000000000000000005053313036417266025431 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.reader; import java.text.ParseException; import java.util.ArrayList; import java.util.Date; import java.util.List; import footleg.cavesurvey.converter.CaveConverter.BearingUnit; import footleg.cavesurvey.converter.CaveConverter.GradientUnit; import footleg.cavesurvey.converter.CaveConverter.LengthUnit; import footleg.cavesurvey.converter.Logger; import footleg.cavesurvey.data.model.CaveSurvey; import footleg.cavesurvey.data.model.Equate; import footleg.cavesurvey.data.model.SurveyLeg; import footleg.cavesurvey.data.model.SurveySeries; import footleg.cavesurvey.tools.UtilityFunctions; /** * Parser for Compass format text data files. * * @author Footleg * @version 2017.01.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) * */ public class CompassParser { private Logger logger; /** * Class constructor * @param logger Logging class to output information, warning and error messages to */ public CompassParser( Logger logger ) { super(); this.logger = logger; } /** * Parse Compass format data into the cave data model * * @param surveyFileData ListArray of data lines from a Compass file * @return Cave Survey object * @throws ParseException Exception raised when information in a survey data file is not supported or valid for the format */ public CaveSurvey parseFile( List surveyFileData ) throws ParseException { /** * Read state codes: * 0=starting new file * 1=header lines * 2=calibration data * 3=data line header * 4=data lines */ int state = 0; //Create cave survey object to hold data CaveSurvey allSeries = new CaveSurvey(logger); //Create a series instance to use as a pointer to the active series data is being read from SurveySeries liveSeries = null; //Declare flags to store status of legs being read boolean duplicateFlag = false; boolean ignoreLeg = false; boolean splayFlag = false; boolean surfaceFlag = false; boolean backBearings = false; //Loop through all data lines for ( int i=0; i < surveyFileData.size(); i++ ) { int lineNo = i + 1; String dataLine = surveyFileData.get(i); //Trim whitespace off line ends (unless a single form feed character) if (dataLine.equalsIgnoreCase("\f") == false ) { dataLine = dataLine.trim(); } //Skip blank lines if ( dataLine.length() > 0 ) { switch (state) { case 0: //First line of series should be cave name String caveName = dataLine.replace(' ', '_'); //Create series for cave name liveSeries = new SurveySeries( caveName ); //Add to cave survey allSeries.add( liveSeries ); state++; break; case 1: //Header lines caveName = dataLine.replace(' ', '_'); if ( caveName.compareTo( allSeries.get(0).getSeriesName() ) == 0 ) { //Repeat of cave name, which we can ignore } else if ( dataLine.substring(0, 12).compareTo( "SURVEY NAME:" ) == 0 ) { //Create series for this survey name String seriesName = dataLine.substring(12).trim(); liveSeries = new SurveySeries( seriesName ); //Next line: Data and Comment i++; lineNo = i + 1; String surveyDataComment = surveyFileData.get(i).trim(); int commentPos = surveyDataComment.indexOf("COMMENT:"); if ( surveyDataComment.substring(0, 12).compareTo( "SURVEY DATE:" ) == 0 ) { //Check if comment was present on line int dateEnd = commentPos; if ( commentPos == -1 ) { //No comment, so set commentPos to end of line commentPos = surveyDataComment.length(); dateEnd = commentPos; } else { //Set comment start position to after COMMENT: commentPos = commentPos + 8; } if ( commentPos > 18 ) { //Separate date and comment String dateString = surveyDataComment.substring(12,dateEnd).trim(); String comment = surveyDataComment.substring( commentPos ).trim(); //Parse date Date value = UtilityFunctions.stringToDate(dateString, "M d yy"); //Store date and comment in series liveSeries.setSurveyDate(value); liveSeries.setComment(comment); //Survey team on next pair of lines i++; lineNo = i + 1; String surveyTeam1 = surveyFileData.get(i).trim(); if ( surveyTeam1.substring(0, 12).compareTo( "SURVEY TEAM:" ) == 0 ) { i++; lineNo = i + 1; String surveyTeam2 = surveyFileData.get(i).trim(); //TODO Store team details in survey series //Header section done state++; } else { throw new ParseException( UtilityFunctions.formatFileParserMsg("Did not find expected 'SURVEY TEAM:' at start of line.", lineNo ), lineNo ); } } else { throw new ParseException( UtilityFunctions.formatFileParserMsg("Did not find expected 'COMMENT:' or valid length date string on line.", lineNo ), lineNo ); } } else { throw new ParseException( UtilityFunctions.formatFileParserMsg("Did not find expected 'SURVEY DATE:' at start of line.", lineNo ), lineNo ); } } else { throw new ParseException( UtilityFunctions.formatFileParserMsg("Did not find expected 'SURVEY NAME:' line.", lineNo ), lineNo ); } break; case 2: //calibration data if ( dataLine.substring(0, 12).compareTo( "DECLINATION:" ) == 0 ) { int formatPos = dataLine.indexOf("FORMAT:"); int formatEndPos = dataLine.length(); int corrections1Pos = dataLine.indexOf("CORRECTIONS:"); int corrections1EndPos = dataLine.length(); int corrections2Pos = dataLine.indexOf("CORRECTIONS2:"); int corrections2EndPos = dataLine.length(); int declinationEndPos = dataLine.length(); //Determine end positions of data items if ( corrections2Pos > 12 ) { corrections1EndPos = corrections2Pos; if ( corrections1Pos > 12 ) { formatEndPos = corrections1Pos; } else { formatEndPos = corrections2Pos; } } else { if ( corrections1Pos > 12 ) { formatEndPos = corrections1Pos; } } //Process optional file format code if ( formatPos > 12 ) { declinationEndPos = formatPos; String formatCode = dataLine.substring(formatPos+7,formatEndPos).trim(); //TODO Set series default units (once supported in series class) //TODO Set default data order for series (once supported in series class) //TODO Handle LRUD on toStns (currently assumes they are for fromStns) } //Process declination String declination = dataLine.substring(12,declinationEndPos).trim(); liveSeries.setDeclination( - Double.parseDouble( declination ) ); //Process optional corrections if ( corrections1Pos > 12 ) { String corrections = dataLine.substring(corrections1Pos+12,corrections1EndPos).trim(); String[] data = UtilityFunctions.cleanAndSplitDataLine(corrections); liveSeries.setCompassCalibration( - Double.parseDouble( data[0] ), BearingUnit.Degrees ); liveSeries.setClinoCalibration( - Double.parseDouble( data[1] ), GradientUnit.Degrees ); liveSeries.setTapeCalibration( - Double.parseDouble( data[2] ), LengthUnit.Feet ); } //Process optional corrections2 if ( corrections2Pos > 12 ) { String corrections2 = dataLine.substring(corrections2Pos+13,corrections2EndPos).trim(); String[] data = UtilityFunctions.cleanAndSplitDataLine(corrections2); //TODO Handle corrections for second set of instruments used for back bearings } //Declination line done state++; } else { throw new ParseException( UtilityFunctions.formatFileParserMsg("Did not find expected 'DECLINATION:' line.", lineNo ), lineNo ); } break; case 3: //data line header //"FROM TO LENGTH BEARING INC LEFT UP DOWN RIGHT FLAGS COMMENTS" //"FROM TO LENGTH BEARING DIP LEFT UP DOWN RIGHT AZM2 INC2 FLAGS COMMENTS" //TODO Support different ordering of LRUD fields in Compass files String[] headerData = UtilityFunctions.cleanAndSplitDataLine(dataLine); if ( ( headerData[0].compareTo("FROM") == 0 ) && ( headerData[1].compareTo("TO") == 0 ) && ( headerData[2].compareTo("LENGTH") == 0 ) && ( headerData[3].compareTo("BEARING") == 0 ) && ( ( headerData[4].compareTo("INC") == 0 ) || ( headerData[4].compareTo("DIP") == 0 ) ) ) { if ( ( headerData[9].compareTo("AZM2") == 0 ) && ( headerData[11].compareTo("FLAGS") == 0 ) && ( headerData[12].compareTo("COMMENTS") == 0 ) ) { //Header for data with back bearings backBearings = true; //Ready to read data lines state++; } else if ( ( headerData[9].compareTo("FLAGS") == 0 ) && ( headerData[10].compareTo("COMMENTS") == 0 ) ) { //Header for data without back bearings backBearings = false; //Ready to read data lines state++; } if ( ( headerData[5].compareTo("LEFT") == 0 ) && ( headerData[6].compareTo("UP") == 0 ) && ( headerData[7].compareTo("DOWN") == 0 ) && ( headerData[8].compareTo("RIGHT") == 0 ) ) { //Header for data with back bearings } else { throw new ParseException( UtilityFunctions.formatFileParserMsg( "LRUD data heading indicates unsupported order. Currently only LEFT UP DOWN RIGHT field order is supported.", lineNo ), lineNo ); } } else { throw new ParseException( UtilityFunctions.formatFileParserMsg("Did not find expected data heading line.", lineNo ), lineNo ); } break; case 4: //data lines //" 1 2 85.00 45.00 0.00 10.00 3.00 0.00 10.00 #|L#" //" 7 8 17.00 201.00 0.00 0.00 5.00 0.00 4.00 tributary enters here on left " //Check for end of series (form feed character) if (dataLine.equalsIgnoreCase("\f") ) { //Close series to cave name series and start searching for next one allSeries.get(0).addSeries( liveSeries ); state = 1; } else { //Process data line String[] data = UtilityFunctions.cleanAndSplitDataLine(dataLine); SurveyLeg leg = new SurveyLeg(); //Create record from the items int index = 0; while ( index < data.length ) { String item = data[index]; //Put item into appropriate value switch ( index ) { case 0: //TODO Add support for retaining station name when not a number leg.setFromStn( UtilityFunctions.createStationFromNameForSeries( item, liveSeries ) ); break; case 1: //TODO Add support for retaining station name when not a number leg.setToStn( UtilityFunctions.createStationFromNameForSeries( item, liveSeries ) ); break; case 2: leg.setLength( Double.parseDouble( item ), LengthUnit.Feet ); break; case 3: if ( item.compareTo("-") == 0 ) { leg.setCompass( 0, BearingUnit.Degrees ); } else { leg.setCompass( Double.valueOf( item ), BearingUnit.Degrees ); } break; case 4: String val = item; //TODO Does compass support all these Survex like clino values? double straightDown = -90; double straightUp = 90; double level = 0; if ( val.compareToIgnoreCase("-V") == 0 ) { leg.setClino( straightDown, GradientUnit.Degrees ); } else if ( val.compareToIgnoreCase("down") == 0 ) { leg.setClino( straightDown, GradientUnit.Degrees ); } else if ( val.compareToIgnoreCase("d") == 0 ) { leg.setClino( straightDown, GradientUnit.Degrees ); } else if ( val.compareToIgnoreCase("+V") == 0 ) { leg.setClino( straightUp, GradientUnit.Degrees ); } else if ( val.compareToIgnoreCase("up") == 0 ) { leg.setClino( straightUp, GradientUnit.Degrees ); } else if ( val.compareToIgnoreCase("u") == 0 ) { leg.setClino( straightUp, GradientUnit.Degrees ); } else if ( val.compareToIgnoreCase("-") == 0 ) { leg.setClino( level, GradientUnit.Degrees ); } else if ( val.compareToIgnoreCase("level") == 0 ) { leg.setClino( level, GradientUnit.Degrees ); } else { leg.setClino( Double.valueOf(val), GradientUnit.Degrees ); } break; case 5: case 6: case 7: case 8: //"FROM TO LENGTH BEARING INC LEFT UP DOWN RIGHT FLAGS COMMENTS" //Ignore LRUD values which are -9999.00 if ( ( item.equals("-9999.00") == false ) && ( item.equals("-9.90") == false ) ) { if (index == 5) { leg.setLeft( Double.parseDouble( item ), LengthUnit.Feet ); } else if (index == 6) { leg.setUp( Double.parseDouble( item ), LengthUnit.Feet ); } else if (index == 7) { leg.setDown( Double.parseDouble( item ), LengthUnit.Feet ); } else if (index == 8) { leg.setRight( Double.parseDouble( item ), LengthUnit.Feet ); } } break; case 9: if ( backBearings ) { //TODO Support for back bearings compass reading String backBearing = item; } break; case 10: if ( backBearings ) { //TODO Support for back bearings clino reading String backClino = item; } break; } index++; } //Process flags and comments off end of string from fixed position //(as comment will have been split into multiple data array items) String commentFlagsData = ""; //Reinitialise all flags for each leg duplicateFlag = false; ignoreLeg = false; splayFlag = false; surfaceFlag = false; //Determine if any flags or comments data exists on this line int dataEndPos = surveyFileData.get(i).length(); if ( backBearings ) { if ( data.length > 11 ) { String firstItem = data[11]; dataEndPos = surveyFileData.get(i).indexOf(firstItem); } } else { if ( data.length > 9 ) { String firstItem = data[9]; dataEndPos = surveyFileData.get(i).indexOf(firstItem); } } if ( surveyFileData.get(i).length() > dataEndPos ) { commentFlagsData = surveyFileData.get(i).substring( dataEndPos ); } //Initialise comment to entire flags/comments data item String comment = commentFlagsData; int commentStartPos = 0; if ( commentFlagsData.startsWith("#|") ) { commentStartPos = commentFlagsData.indexOf("#", 2) + 1; } if ( commentStartPos > 3 ) { //Process flags String flags = commentFlagsData.substring(2, commentStartPos - 1); //Handle 'L' which indicates duplicate if ( flags.indexOf("L") > -1 ) { duplicateFlag = true; } //Handle 'X' which indicates duplicate if ( flags.indexOf("X") > -1 ) { ignoreLeg = true; } //TODO Store flags 'P' and 'C' which mean do not plot, and do not apply loop closure //Set comment to the text after the flags end character comment = commentFlagsData.substring(commentStartPos).trim(); } //Set leg comment leg.setComment(comment); //Check leg was found if ( leg.getLength(LengthUnit.Metres) > -1 ) { //Set flags for leg leg.setDuplicate(duplicateFlag); leg.setSplay(splayFlag); leg.setSurface(surfaceFlag); //Check if ignore leg flag was set if ( ignoreLeg == false ) { //Add leg to series liveSeries.addLeg(leg); } } } break; } } } //Generate equates by matching station names List equates = new ArrayList(); //Loop through all series for ( int idx1 = 0; idx1 < allSeries.get(0).getInnerSeriesList().size(); idx1++ ) { SurveySeries series = allSeries.get(0).getInnerSeries(idx1); logger.logMessage("Searching for equivalent stations in series " + (idx1 + 1) + " of " + allSeries.get(0).getInnerSeriesList().size() + "..."); //Loop through all station names in series for ( int idxLeg = 0; idxLeg < series.legCount(); idxLeg++ ) { for ( int idxStn = 0; idxStn < 2; idxStn++ ) { String stn1Name = ""; if ( idxStn == 0 ) { stn1Name = series.getLegRaw(idxLeg).getFromStn().getName(); } else { stn1Name = series.getLegRaw(idxLeg).getToStn().getName(); } //Check for matching station name in all following series for ( int idx2 = idx1 + 1; idx2 < allSeries.get(0).getInnerSeriesList().size(); idx2++ ) { SurveySeries series2 = allSeries.get(0).getInnerSeries(idx2); //Loop through all station names in series for ( int idxLeg2 = 0; idxLeg2 < series2.legCount(); idxLeg2++ ) { for ( int idxStn2 = 0; idxStn2 < 2; idxStn2++ ) { String stn2Name = ""; if ( idxStn2 == 0 ) { stn2Name = series2.getLegRaw(idxLeg2).getFromStn().getName(); } else { stn2Name = series2.getLegRaw(idxLeg2).getToStn().getName(); } //Check for matching station name in all following series if ( stn1Name.compareTo(stn2Name) == 0 ) { //Matching stations found String series1Name = allSeries.get(0).getSeriesName() + "." + series.getSeriesName(); String series2Name = allSeries.get(0).getSeriesName() + "." + series2.getSeriesName(); //Check if equate already added boolean foundNewEquate = true; for ( int idxEquates = 0; idxEquates < equates.size(); idxEquates++ ) { Equate testEquate = equates.get(idxEquates); if ( ( series1Name.compareTo(testEquate.getSeries1()) == 0 ) && ( series2Name.compareTo(testEquate.getSeries2()) == 0 ) && ( stn1Name.compareTo(testEquate.getStn1()) == 0 ) && ( stn2Name.compareTo(testEquate.getStn2()) == 0 ) ) { foundNewEquate = false; } else if ( ( series1Name.compareTo(testEquate.getSeries2()) == 0 ) && ( series2Name.compareTo(testEquate.getSeries1()) == 0 ) && ( stn1Name.compareTo(testEquate.getStn2()) == 0 ) && ( stn2Name.compareTo(testEquate.getStn1()) == 0 ) ) { foundNewEquate = false; } } if ( foundNewEquate ) { //Create and add equate Equate newEquate = new Equate( series1Name, stn1Name, series2Name, stn2Name); equates.add(newEquate); } } } } } } } } //Process equates UtilityFunctions.processEquates(equates, allSeries); //Debug dump UtilityFunctions.logSurveyDebugData(allSeries, logger); //Completed file parsing return allSeries; } } CaveConverter_src/src/footleg/cavesurvey/gui/0000755000000000000000000000000013036467352020410 5ustar rootrootCaveConverter_src/src/footleg/cavesurvey/gui/app.properties0000644000000000000000000000027313035163056023301 0ustar rootroot# build properties application.vendor = Footleg application.title = Cave Converter build.version = dev-debug character.set=UTF8 font.typeface=courier font.size=12 application.skin=System CaveConverter_src/src/footleg/cavesurvey/gui/swing/0000755000000000000000000000000013036467352021537 5ustar rootrootCaveConverter_src/src/footleg/cavesurvey/gui/swing/CaveModelVisualiser.java0000644000000000000000000002652613034712616026315 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.gui.swing; import java.awt.Dimension; import java.awt.Font; import java.util.Calendar; import java.util.Date; import java.util.List; import java.util.TimeZone; import javax.swing.JScrollPane; import javax.swing.JSplitPane; import javax.swing.JTextArea; import javax.swing.JTree; import javax.swing.ScrollPaneConstants; import javax.swing.event.TreeSelectionEvent; import javax.swing.event.TreeSelectionListener; import footleg.cavesurvey.converter.CaveConverter; import footleg.cavesurvey.converter.CaveConverter.BearingUnit; import footleg.cavesurvey.converter.CaveConverter.GradientUnit; import footleg.cavesurvey.converter.CaveConverter.LengthUnit; import footleg.cavesurvey.converter.CaveConverter.SurveyDataOutputFormats; import footleg.cavesurvey.converter.Logger; import footleg.cavesurvey.data.model.CaveSurvey; import footleg.cavesurvey.data.model.SurveyLeg; import footleg.cavesurvey.data.model.SurveySeries; import footleg.cavesurvey.data.writer.SurvexWriter; import footleg.cavesurvey.data.writer.TopoRobotWriter; import footleg.cavesurvey.tools.SurveyProcessing; /** * Component to display the cave data model * * @author Footleg * @version 2017.01.09 (ISO 8601 YYYY.MM.DD) * @since 1.7 (The Java version used) * * @to.do * TODO Add proper visualisation of data model */ @SuppressWarnings("serial") public class CaveModelVisualiser extends JSplitPane { public class SelectionListener implements TreeSelectionListener { public void valueChanged(TreeSelectionEvent se) { JTree jTree = (JTree) se.getSource(); Object selectedNode = (Object) jTree.getLastSelectedPathComponent(); boolean enableSeriesProcessing = false; if (selectedNode instanceof CaveSurvey) { enableSeriesProcessing = false; CaveSurvey survey = (CaveSurvey) selectedNode; taCaveLog.append( ReportCaveSurveyStats( survey ) ); } else if (selectedNode instanceof SurveySeries ) { enableSeriesProcessing = true; SurveySeries selectedSeries = (SurveySeries) selectedNode; taCaveLog.setText( ReportSeriesStats(selectedSeries) ); } else if (selectedNode instanceof SurveyLeg) { SurveyLeg selectedLeg = (SurveyLeg) selectedNode; taCaveLog.setText( ReportLegStats(selectedLeg) ); } //Enable or disable survey series actions parent.setSurveySeriesActionsEnabled( enableSeriesProcessing ); } } private MainForm parent; private JTextArea taCaveLog; private CaveSurvey caveModel; private JTree tree; private Logger logger; /** * Create TextArea scrollable tab instance and display model summary. This is a very basic start for a * full visualiser for the cave data model. * @param parentForm Object reference to the parent form owning this item (so actions can be accessed) * @param model The cave survey model to build a visualisation of * @param font The font to use in the text area pane */ public CaveModelVisualiser(MainForm parentForm, CaveSurvey model, Font font) { super(); caveModel = model; parent = parentForm; logger = parentForm.getLogger(); //Create scrollable text area for right pane taCaveLog = new JTextArea(); taCaveLog.setFont( font ); JScrollPane spCaveLog = new JScrollPane (taCaveLog, ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS); spCaveLog.setViewportView(taCaveLog); //Create tree for left pane, using the CaveSurvey class as the TreeModel tree = new JTree( caveModel ); tree.addTreeSelectionListener( new SelectionListener() ); JScrollPane spSurveyTree = new JScrollPane (tree, ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS); //Configure split pane spCaveLog.setPreferredSize(new Dimension(250, 400)); spSurveyTree.setPreferredSize(new Dimension(250, 400)); this.setTopComponent( spSurveyTree ); this.setBottomComponent( spCaveLog ); renderCaveModel(); } public CaveSurvey getCaveModel() { return caveModel; } /** * To pass a new cave model to an existing visualiser tab * @param caveModel The cave survey model to build a visualisation of */ public void setCaveModel(CaveSurvey caveModel) { this.caveModel = caveModel; //Pass the new model to the jTree tree.setModel( getCaveModel() ); renderCaveModel(); } /** * @return the split pane */ public JSplitPane getTabPaneComponent() { return this; } /** * Generates a visualisation of the cave data (currently a bare bones text summary, but intended to be developed). */ private void renderCaveModel() { taCaveLog.setText("This is a bare bones implementation of the visualisation of the cave model." + CaveConverter.newline + "Currently it just reports some stats to let you know your data was loaded successfully." + CaveConverter.newline + "This visualisation will improve with later releases to enable you to view your cave model" + CaveConverter.newline + "more effectively." + CaveConverter.newline + "-----" + CaveConverter.newline + CaveConverter.newline ); taCaveLog.append( ReportCaveSurveyStats( caveModel ) ); } /** * Generates LRUD data for stations from splay legs in each series */ public void generateLRUDFromSplays() { //Generate LRUD if model contains data if ( ( caveModel != null ) && ( caveModel.isEmpty() == false ) ) { caveModel.generateLRUDfromSplays(); taCaveLog.append( "LRUD data generated from splays in cave model." + CaveConverter.newline); } else { taCaveLog.append( "No data in cave model, so no LRUD generation is possible." + CaveConverter.newline); } } /** * Generates new survey series from the names of the stations in the selected series */ public void generateSeriesFromFullPathStationNames() { //Generate LRUD if model contains data if ( ( caveModel != null ) && ( caveModel.isEmpty() == false ) ) { //Get selected series SurveySeries selectedSeries = getSelectedSeries(); //Process series if ( SurveyProcessing.generateSeriesFromFullPathStationNames(selectedSeries) ) {; //Reload model CaveSurvey model = caveModel; setCaveModel( model ); } else { taCaveLog.append( "No changes were made to the series." + CaveConverter.newline); } } else { taCaveLog.append( "No data in cave model, so no processing is possible." + CaveConverter.newline); } } /** * Returns data file content for a specified survey format for the current cave model * @param outputFormat The format to export * @return Data file content for the model in the specified format */ public List exportModel( CaveConverter.SurveyDataOutputFormats outputFormat ) { List outputData = null; if ( outputFormat == SurveyDataOutputFormats.Survex ) { //Set options flag for splays (default to true) SurvexWriter.SplayFormats outputSplays = SurvexWriter.SplayFormats.Flagged; //Generate Survex format data SurvexWriter writer = new SurvexWriter(logger); outputData = writer.generateSurvexData( caveModel, outputSplays ); } else if ( outputFormat == SurveyDataOutputFormats.Toporobot ) { //Set options flag for splays (default to false) boolean outputSplays = false; //Set date to todays datetime Calendar cal = Calendar.getInstance(TimeZone.getDefault()); Date today = cal.getTime(); //Generate Toporobot format data TopoRobotWriter writer = new TopoRobotWriter(logger); outputData = writer.generateToporobotData( caveModel, today, outputSplays ); } return outputData; } /** * Generates a summary report for the survey * @param survey * @return Report text */ private String ReportCaveSurveyStats(CaveSurvey survey) { String report = "Cave Survey: "; if ( survey == null ) { report = "No Survey set!"; } else { report += survey.getSurveyName() + CaveConverter.newline; if ( caveModel.size() == 0 ) { report += "No data was loaded into the cave model!" + CaveConverter.newline; } else { report += "Cave model contains " + caveModel.size() + " top level series." + CaveConverter.newline; for (int i = 0; i < caveModel.size(); i++ ) { report += ReportSeriesStats( caveModel.get(i) ); } } } return report; } /** * Generates a summary report for the survey series * @param series * @return Report text */ private String ReportSeriesStats(SurveySeries series) { String report = "Series: " + series.getSeriesName() + CaveConverter.newline; report += "Date: " + series.getSurveyDate() + CaveConverter.newline; report += "Tape units: " + series.getLengthUnit() + CaveConverter.newline; report += "Declination: " + series.getDeclination() + CaveConverter.newline; if ( series.getTapeCalibration(LengthUnit.Metres) != 0 ) { report += "Tape calibration: " + series.getTapeCalibration( series.getLengthUnit() ) + CaveConverter.newline; } if ( series.getCompassCalibration(BearingUnit.Degrees) != 0 ) { report += "Compass calibration: " + series.getCompassCalibration( series.getBearingUnit() ) + CaveConverter.newline; } if ( series.getClinoCalibration(GradientUnit.Degrees) != 0 ) { report += "Clino calibration: " + series.getClinoCalibration( series.getGradientUnit() ) + CaveConverter.newline; } if ( series.legCount() > 0 ) { report += "Contains " + series.legCount() + " legs. "; } if ( series.innerSeriesCount() > 0 ) { report += "(Contains " + series.innerSeriesCount() + " child series)."; } report += CaveConverter.newline; //Recursively log details of inner series for (int i = 0; i < series.innerSeriesCount(); i++ ) { report += ReportSeriesStats( series.getInnerSeries(i) ); } return report; } /** * Generates a summary report for the survey leg * @param leg * @return Report text */ private String ReportLegStats(SurveyLeg leg) { String report = leg.toString(); return report; } /** * Gets the selected series in the tree (if multiple nodes are selected then it gets * the first one which was selected) * @return The selected series, or null if selected node is not a SurveySeries */ private SurveySeries getSelectedSeries() { SurveySeries selectedSeries = null; Object selectedNode = tree.getSelectionPath().getLastPathComponent(); if (selectedNode instanceof SurveySeries ) { selectedSeries = (SurveySeries) selectedNode; } return selectedSeries; } } CaveConverter_src/src/footleg/cavesurvey/gui/swing/MainForm.java0000644000000000000000000011150213036425356024110 0ustar rootroot/** * Copyright (C) 2015-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.gui.swing; import java.awt.BorderLayout; import java.awt.Dimension; import java.awt.EventQueue; import java.awt.Font; import java.awt.Point; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyEvent; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import java.beans.PropertyChangeEvent; import java.beans.PropertyChangeListener; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.net.URL; import java.net.URLClassLoader; import java.text.ParseException; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import java.util.Locale; import java.util.ResourceBundle; import javax.swing.AbstractAction; import javax.swing.Action; import javax.swing.Icon; import javax.swing.ImageIcon; import javax.swing.JButton; import javax.swing.JFileChooser; import javax.swing.JFrame; import javax.swing.JMenu; import javax.swing.JMenuBar; import javax.swing.JMenuItem; import javax.swing.JOptionPane; import javax.swing.JScrollPane; import javax.swing.JSplitPane; import javax.swing.JTabbedPane; import javax.swing.JToolBar; import javax.swing.UIManager; import javax.swing.UnsupportedLookAndFeelException; import javax.swing.event.ChangeEvent; import javax.swing.event.ChangeListener; import javax.swing.filechooser.FileNameExtensionFilter; import javax.swing.plaf.metal.DefaultMetalTheme; import javax.swing.plaf.metal.MetalLookAndFeel; import javax.swing.plaf.metal.OceanTheme; import footleg.cavesurvey.converter.CaveConverter; import footleg.cavesurvey.converter.CaveConverter.SurveyDataOutputFormats; import footleg.cavesurvey.converter.DialogMsgLogger; import footleg.cavesurvey.data.model.CaveSurvey; import footleg.cavesurvey.data.reader.CompassParser; import footleg.cavesurvey.data.reader.DxfParser; import footleg.cavesurvey.data.reader.PocketTopoParser; import footleg.cavesurvey.data.reader.SurvexParser; /** * GUI application built on top of CaveConverter library. * * @author Footleg * @version 2017.01.10 (ISO 8601 YYYY.MM.DD) * @since 1.7 (The Java version used) * * @to.do * TODO Add option to output anonymous splay stations * TODO Add selection of file character set encoding to preferences * TODO In case of unknown file format on reading, ask user to select the survey format of the file * TODO Prevent window position from preferences being beyond screen size when screen resolution is changed * TODO Add selection of font in preferences * TODO Add selection of look and feel in preferences */ @SuppressWarnings("serial") public class MainForm extends JFrame { /** * Private class to manage loading, saving and to hold user preferences * @author Footleg */ private class AppPrefs { private static final String HEIGHT_PROPERTY = "window.height"; private static final String WIDTH_PROPERTY = "window.width"; private static final String SCREENPOSX_PROPERTY = "window.posx"; private static final String SCREENPOSY_PROPERTY = "window.posy"; private static final String FONT_PROPERTY = "font.typeface"; private static final String FONTSIZE_PROPERTY = "font.size"; private static final String CHARSET_PROPERTY = "character.set"; private static final String LOOKANDFEEL = "application.skin"; private Point position; private Dimension size; private String charset; private String fontTypeface; private int fontSize; private String lookAndFeel; /** * Initialise preferences data to defaults and attempt to load user preferences from properties file */ public AppPrefs() { //Set defaults in case app preferences cannot be read from file position = new Point(-1,-1); size = new Dimension(600,400); charset = "UTF8"; fontTypeface = "courier"; fontSize = 12; lookAndFeel = "System"; //Read user preferences from file (if properties file exists) try { File file = new File("."); URL[] urls = {file.toURI().toURL()}; ClassLoader loader = new URLClassLoader(urls); ResourceBundle userPrefs = ResourceBundle.getBundle("app", Locale.getDefault(), loader); //Set prefs from properties read from file position.setLocation( Integer.parseInt( userPrefs.getString( SCREENPOSX_PROPERTY ) ), Integer.parseInt( userPrefs.getString( SCREENPOSY_PROPERTY ) )); size.setSize( Integer.parseInt( userPrefs.getString( WIDTH_PROPERTY ) ), Integer.parseInt( userPrefs.getString( HEIGHT_PROPERTY ) )); charset = userPrefs.getString( CHARSET_PROPERTY ); fontTypeface = userPrefs.getString( FONT_PROPERTY ); fontSize = Integer.valueOf( userPrefs.getString( FONTSIZE_PROPERTY ) ); lookAndFeel = userPrefs.getString( LOOKANDFEEL ); } catch (Exception e) { //Ignore errors in reading prefs // JOptionPane.showMessageDialog(null, "Error reading prefs: " + e.getMessage(), // "Error", JOptionPane.ERROR_MESSAGE); } } public Point getPosition() { return position; } public void setPosition(Point position) { this.position = position; } public Dimension getSize() { return size; } public void setSize(int width, int height) { size.setSize(width, height); } public String getCharset() { return charset; } public void setCharset(String charset) { this.charset = charset; } public String getFontTypeface() { return fontTypeface; } public void setFontTypeface(String fontTypeface) { this.fontTypeface = fontTypeface; } public int getFontSize() { return fontSize; } public void setFontSize(int fontSize) { this.fontSize = fontSize; } public String getLookAndFeel() { return lookAndFeel; } public void setLookAndFeel(String lookAndFeel) { this.lookAndFeel = lookAndFeel; } /** * Write application preference data to a properties file */ public void writePrefsToFile() { //Create prefs file text String prefsData = ""; prefsData += SCREENPOSX_PROPERTY + "=" + (int)position.getX() + CaveConverter.newline; prefsData += SCREENPOSY_PROPERTY + "=" + (int)position.getY() + CaveConverter.newline; prefsData += HEIGHT_PROPERTY + "=" + (int)size.getHeight() + CaveConverter.newline; prefsData += WIDTH_PROPERTY + "=" + (int)size.getWidth() + CaveConverter.newline; prefsData += CHARSET_PROPERTY + "=" + getCharset() + CaveConverter.newline; prefsData += FONT_PROPERTY + "=" + getFontTypeface() + CaveConverter.newline; prefsData += FONTSIZE_PROPERTY + "=" + getFontSize() + CaveConverter.newline; prefsData += LOOKANDFEEL + "=" + getLookAndFeel() + CaveConverter.newline; //Save File FileWriter textWriter = null; try { textWriter = new FileWriter("./app.properties"); textWriter.write( prefsData ); } catch (Exception e) { JOptionPane.showMessageDialog(null, "Error writing user preferences file: " + e.getMessage(), "Error", JOptionPane.ERROR_MESSAGE); } finally { if ( textWriter != null ) { try { textWriter.close(); } catch (IOException ex) { JOptionPane.showMessageDialog(null, "Error closing user preferences file: " + ex.getMessage(), "Error", JOptionPane.ERROR_MESSAGE); } } } } } /** * Private action class to handle file open operations * @author Footleg */ private class OpenFileAction extends AbstractAction { private JFileChooser fileOpenDialog; public OpenFileAction(String name, Icon icon) { super(name, icon); //Initialise file open dialog fileOpenDialog = new JFileChooser("."); fileOpenDialog.setFileSelectionMode( JFileChooser.FILES_ONLY ); fileOpenDialog.addChoosableFileFilter( new FileNameExtensionFilter("Compass Data Files","dat") ); fileOpenDialog.addChoosableFileFilter( new FileNameExtensionFilter("DXF Files","dxf") ); fileOpenDialog.addChoosableFileFilter( new FileNameExtensionFilter("PocketTopo Text Files","txt") ); fileOpenDialog.addChoosableFileFilter( new FileNameExtensionFilter("Survex Files","svx") ); } @Override public void actionPerformed(ActionEvent evnt) { //Show file open dialog for user to pick input file fileOpenDialog.showOpenDialog( getMainFrame() ); if (fileOpenDialog.getSelectedFile() != null) { //Check if this is the first data file to be opened if (inputData.getFormat() == null ) { //Add tab to tab pane inputData.title = "Survey Input Data"; tabPane.addTab ( inputData.title, inputData.getTabPaneComponent() ); } //Open file in inputData tab boolean res = inputData.openFile( fileOpenDialog.getSelectedFile(), appPrefs.getCharset() ); //If data was loaded successfully if ( res ) { //Enable actions which can act on input data saveFileAction.setEnabled( true ); saveAsFileAction.setEnabled( true ); parseInputDataAction.setEnabled( true ); //Automatically process the data buildCaveModelFromInputData(); } } } } /** * Private action class to handle file save operations * @author Footleg */ private class SaveFileAction extends AbstractAction { public SaveFileAction(String name, Icon icon) { super(name, icon); //Disabled by default (enables when data is loaded) enabled = false; } @Override public void actionPerformed(ActionEvent evnt) { //Get selected tab SurveyDatafileTabPane fileContentTab = getActiveSurveyDataTabPane(); if ( fileContentTab != null ) { boolean saveAs = false; //Determine action to perform if ( evnt.getActionCommand().equals( saveAsActionCmd ) ) { saveAs = true; } //Show file save dialog for user to specify file path fileContentTab.saveData( saveAs, appPrefs.getCharset() ); } else { JOptionPane.showMessageDialog( getMainFrame(), "No data to save. Select a survey data file tab before selecting save.", "Error", JOptionPane.ERROR_MESSAGE); } } } /** * Private action class to read input survey data to generate a cave model in the visualiser * @author Footleg */ private class ParseInputDataAction extends AbstractAction { public ParseInputDataAction(String name, Icon icon) { super(name, icon); //Disabled by default (enables when data is loaded) enabled = false; } @Override public void actionPerformed(ActionEvent evnt) { //Process the data in the input data tab and generate a model buildCaveModelFromInputData(); } } /** * Private action class to generate LRUD data in cave model from splays * @author Footleg */ private class GenerateLRUDAction extends AbstractAction { public GenerateLRUDAction(String name, Icon icon) { super(name, icon); //Disabled by default (enables when data is loaded) enabled = false; } @Override public void actionPerformed(ActionEvent evnt) { //Process the data in the input data tab and generate a model if ( visualiser != null ) { visualiser.generateLRUDFromSplays(); } } } /** * Private action class to generate new nested series in cave model from stations named using full paths * @author Footleg */ private class GenerateSeriesFromStnNamesAction extends AbstractAction { public GenerateSeriesFromStnNamesAction(String name, Icon icon) { super(name, icon); //Disabled by default (enables when data is loaded) enabled = false; } @Override public void actionPerformed(ActionEvent evnt) { //Process selected series if ( visualiser != null ) { visualiser.generateSeriesFromFullPathStationNames(); } } } /** * Private action class to handle Survex export operation * @author Footleg */ private class ExportSurvexDataAction extends AbstractAction { public ExportSurvexDataAction(String name, Icon icon) { super(name, icon); //Disabled by default (enables when data is loaded) enabled = false; } @Override public void actionPerformed(ActionEvent evnt) { //Process the data in the input data tab and generate a model generateOutputData( SurveyDataOutputFormats.Survex ); } } /** * Private action class to handle Toporobot export operation * @author Footleg */ private class ExportToporobotDataAction extends AbstractAction { public ExportToporobotDataAction(String name, Icon icon) { super(name, icon); //Disabled by default (enables when data is loaded) enabled = false; } @Override public void actionPerformed(ActionEvent evnt) { //Process the data in the input data tab and generate a model generateOutputData( SurveyDataOutputFormats.Toporobot ); } } // /** // * Private action class to handle operations // * @author Footleg // */ // private class NewAction extends AbstractAction { // public NewAction(String name, Icon icon) { // super(name, icon); // //Disabled by default (enables when data is loaded) // enabled = false; // } // // @Override // public void actionPerformed(ActionEvent evnt) { // // } // } /** * Private listener for SurveyDatafileTabPane modified events to indicate modified state in tab title */ private PropertyChangeListener dataModified = new PropertyChangeListener() { @Override public void propertyChange(PropertyChangeEvent evt) { SurveyDatafileTabPane source = (SurveyDatafileTabPane)evt.getSource(); //Indicate modified state in tab title int idx = getTabIndexForObject(source); if ( idx >= 0 ) { if ( (Boolean)evt.getNewValue() ) { tabPane.setTitleAt( idx, source.title + "(*)" ); } else { tabPane.setTitleAt( idx, source.title ); } } } }; //Themes private static final String[][] THEMES = { {"Metal","javax.swing.plaf.metal.MetalLookAndFeel"}, {"Ocean","javax.swing.plaf.metal.MetalLookAndFeel"}, {"Motif","com.sun.java.swing.plaf.motif.MotifLookAndFeel"}, {"System", UIManager.getSystemLookAndFeelClassName()}, {"CrossPlafrom", UIManager.getCrossPlatformLookAndFeelClassName() }, {"GTK","com.sun.java.swing.plaf.gtk.GTKLookAndFeel"} }; //Action name constants private static final String saveActionCmd = "Save"; private static final String saveAsActionCmd = "SaveAs"; //UI Elements private JTabbedPane tabPane; private Font font; private OpenFileAction openFileAction; private SaveFileAction saveFileAction; private SaveFileAction saveAsFileAction; private ParseInputDataAction parseInputDataAction; private GenerateLRUDAction generateLRUDAction; private GenerateSeriesFromStnNamesAction genSeriesFromStnNamesAction; private ExportSurvexDataAction exportSurvexDataAction; private ExportToporobotDataAction exportToporobotDataAction; //Data Objects private AppPrefs appPrefs; private SourceDataComponent inputData; private CaveModelVisualiser visualiser; private DialogMsgLogger dialogLogger; /** * Create main application window */ public MainForm() { //Create application preferences manager first, as initialisation of UI depends on preference values appPrefs = new AppPrefs(); //Set look and feel initLookAndFeel( appPrefs.getLookAndFeel() ); //Create dialog logger dialogLogger = new DialogMsgLogger(this); //Set up properties from prefs font = new Font( appPrefs.getFontTypeface(), Font.PLAIN, appPrefs.getFontSize() ); //Create action class instances here after look and feel is configured, or UI elements (JFileChoosers) //do not pick up look and feel openFileAction = new OpenFileAction("Open", createImageIcon("images/fileopen.png") ); saveFileAction = new SaveFileAction("Save", createImageIcon("images/filesave.png") ); saveAsFileAction = new SaveFileAction("Save As", createImageIcon("images/filesave.png") ); parseInputDataAction = new ParseInputDataAction("Build Cave Model", createImageIcon("images/process_data.png") ); generateLRUDAction = new GenerateLRUDAction("Generate LRUD", createImageIcon("images/lrud.png") ); genSeriesFromStnNamesAction = new GenerateSeriesFromStnNamesAction("Generate Series From Station Names", createImageIcon("images/expand-series.png") ); exportSurvexDataAction = new ExportSurvexDataAction("Export to Survex", createImageIcon("images/export_survex_data.png") ); exportToporobotDataAction = new ExportToporobotDataAction("Export to Toporobot", createImageIcon("images/export_toporobot_data.png") ); //Create application UI initializeUI(); } /** * Getter for the main frame reference, for use in sub classes where 'this' cannot be used * @return Returns the main frame reference from any within any sub class context */ public MainForm getMainFrame() { return this; } public DialogMsgLogger getLogger() { return dialogLogger; } /** * Getter for selected survey data tab if one is active. * @return The active tab pane if it is a Survey data file tab, otherwise returns null */ public SurveyDatafileTabPane getActiveSurveyDataTabPane() { //Get selected tab SurveyDatafileTabPane fileContentTab = null; if ( tabPane.getTabCount() > 0 ) { try { JScrollPane selectedTab = (JScrollPane) tabPane.getComponentAt( tabPane.getSelectedIndex() ); fileContentTab = (SurveyDatafileTabPane) selectedTab.getViewport().getView(); } catch (ClassCastException e) { fileContentTab = null; } } return fileContentTab; } /** * Determines the index in the tabPane of the tab holding the specified object * @param matchObj Object to match in the tabs * @return The index of the tab pane matching the object, or -1 if there is no matching tab */ public int getTabIndexForObject( SurveyDatafileTabPane matchObj ) { int idx = -1; for (int i = 0; i < tabPane.getTabCount(); i++) { if ( tabPane.getComponentAt(i) == matchObj.getTabPaneComponent() ) { idx = i; break; } } return idx; } /** * Create UI elements */ private void initializeUI() { //Pick up version number and display in title bar ResourceBundle resourceString = ResourceBundle.getBundle("footleg.cavesurvey.gui.app"); String version = resourceString.getString("build.version"); setTitle( "Footleg's Cave Converter - " + version ); //Set window size and position from preferences setSize( appPrefs.getSize() ); if (appPrefs.getPosition().getX() < 0) { setLocationRelativeTo(null); } else { setLocation( appPrefs.getPosition() ); } setDefaultCloseOperation(DO_NOTHING_ON_CLOSE); addWindowListener( new WindowAdapter(){ @Override public void windowClosing(WindowEvent windowEvent) { boolean close = true; //Prompt to save changes for any modified tab panes for (int i = 0; i < tabPane.getTabCount(); i++) { if ( tabPane.getComponentAt(i) instanceof JScrollPane ) { JScrollPane pane = (JScrollPane) tabPane.getComponentAt(i); if ( pane.getViewport().getView() instanceof SurveyDatafileTabPane ) { //Make this pane the selected one tabPane.setSelectedComponent( pane ); //Call method to prompt to save changes if modified SurveyDatafileTabPane filePane = (SurveyDatafileTabPane) pane.getViewport().getView(); int res = filePane.promptToSaveChanges( appPrefs.getCharset() ); if ( res == JFileChooser.CANCEL_OPTION ) { //User cancelled, so abort closing of application close = false; break; } } } } if ( close ) { //Update preferences with window size and position Point pos = windowEvent.getWindow().getLocationOnScreen(); appPrefs.setSize( windowEvent.getWindow().getWidth(), windowEvent.getWindow().getHeight() ); appPrefs.setPosition( pos ); appPrefs.writePrefsToFile(); //Close window to exit application dispose(); } else { //Ensure window is made visible setVisible( true ); } } } ); createMenuBar(); //Set up tab pane tabPane = new JTabbedPane(JTabbedPane.TOP, JTabbedPane.SCROLL_TAB_LAYOUT); add(tabPane,BorderLayout.CENTER); tabPane.addChangeListener(new ChangeListener() { @Override public void stateChanged(ChangeEvent e) { //Enable actions appropriate to selected tab type if (e.getSource() instanceof JTabbedPane) { JTabbedPane tp = (JTabbedPane) e.getSource(); int selIdx = tp.getSelectedIndex(); if ( tp.getComponentAt( selIdx ) instanceof JScrollPane) { JScrollPane pane = (JScrollPane) tp.getComponentAt( selIdx ); if ( pane.getViewport().getView() instanceof SurveyDatafileTabPane ) { saveFileAction.setEnabled( true ); saveAsFileAction.setEnabled( true ); } else { saveFileAction.setEnabled( false ); saveAsFileAction.setEnabled( false ); } } else if ( tp.getComponentAt( selIdx ) instanceof JSplitPane ) { JSplitPane pane = (JSplitPane) tp.getComponentAt( selIdx ); if ( pane instanceof CaveModelVisualiser ) { //Nothing to save directly from cave model pane saveFileAction.setEnabled( false ); saveAsFileAction.setEnabled( false ); } else { //No other pane types yet, so disable save for when there are saveFileAction.setEnabled( false ); saveAsFileAction.setEnabled( false ); } } } } }); //Create input data tab pane (but do not add to tab pane here, that is done when a file is opened inputData = new SourceDataComponent( font, this.getLogger() ); //Add modified listener to tab pane inputData.addPropertyChangeListener("modified", dataModified); } // JOptionPane.showMessageDialog(getMainFrame(), "Modified property changed to: " + inputData.isModified(), // "Debug", JOptionPane.OK_OPTION); /** * Create the main form menus and toolbar */ private void createMenuBar() { JMenuBar menubar = new JMenuBar(); JToolBar toolbar = new JToolBar(); //File Menu JMenu fileMenu = new JMenu("File"); fileMenu.setMnemonic(KeyEvent.VK_F); menubar.add( fileMenu ); //Define Open item createMenuItemAndToolbarBtn( fileMenu, toolbar, openFileAction, KeyEvent.VK_O, "Open file", "" ); //Define Save item createMenuItemAndToolbarBtn( fileMenu, toolbar, saveFileAction, KeyEvent.VK_S, "Save file", saveActionCmd ); saveFileAction.setEnabled( false ); //Define Save As item createMenuItem( fileMenu, saveAsFileAction, KeyEvent.VK_A, "Save file with a new name", saveAsActionCmd ); //Define Exit item JMenuItem eMenuItem = new JMenuItem("Exit", createImageIcon("images/exit.png") ); eMenuItem.setMnemonic(KeyEvent.VK_X); eMenuItem.setToolTipText("Exit application"); eMenuItem.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent event) { //Trigger closing of application closeApp(); } }); //Add to File menu fileMenu.add(eMenuItem); //Data Menu JMenu dataMenu = new JMenu("Data"); dataMenu.setMnemonic(KeyEvent.VK_D); menubar.add( dataMenu ); //Define Process Data item createMenuItemAndToolbarBtn( dataMenu, toolbar, parseInputDataAction, KeyEvent.VK_P, "Process Survey Data", "" ); //Define LRUD item createMenuItemAndToolbarBtn( dataMenu, toolbar, generateLRUDAction, KeyEvent.VK_L, "Generate LRUD data from splays", "" ); //Define Generate Series from Stn Names item createMenuItemAndToolbarBtn( dataMenu, toolbar, genSeriesFromStnNamesAction, KeyEvent.VK_G, "Generate new series using station names", "" ); //Define ConvertToSurvex item createMenuItemAndToolbarBtn( dataMenu, toolbar, exportSurvexDataAction, KeyEvent.VK_U, "Export data model to Survex format", "" ); //Define ConvertToToporobot item createMenuItemAndToolbarBtn( dataMenu, toolbar, exportToporobotDataAction, KeyEvent.VK_T, "Export data model to Toporobot format", "" ); //Add menu bar and toolbar to frame setJMenuBar( menubar ); add( toolbar, BorderLayout.NORTH ); } /** * Sets the look and feel from one of the supported styles * @param lookAndFeel * @param theme */ private static void initLookAndFeel( String lookAndFeel ) { String themeClass = ""; //Look up this LookAndFeel name in the themes array to get class name and theme for (int i = 0; i < THEMES.length; i++) { if ( lookAndFeel.compareTo( THEMES[i][0]) == 0) { //Use this look and feel item themeClass = THEMES[i][1]; break; } } //If look and feel class name was not found then use system default if ( themeClass.equals("") ) { themeClass = UIManager.getSystemLookAndFeelClassName(); } //Set look and feel ; try { //Set the theme for the themed Default Metal look and feels if ( lookAndFeel.equals( "Metal" ) ) { MetalLookAndFeel.setCurrentTheme(new DefaultMetalTheme()); } else if ( lookAndFeel.equals( "Ocean" ) ) { MetalLookAndFeel.setCurrentTheme(new OceanTheme()); } UIManager.setLookAndFeel( themeClass ); //Make sure we have nice window decorations. JFrame.setDefaultLookAndFeelDecorated(true); } catch (ClassNotFoundException e) { System.err.println("Couldn't find class for specified look and feel:" + lookAndFeel); System.err.println("Did you include the L&F library in the class path?"); System.err.println("Using the default look and feel."); } catch (UnsupportedLookAndFeelException e) { System.err.println("Can't use the specified look and feel (" + lookAndFeel + ") on this platform."); System.err.println("Using the default look and feel."); } catch (Exception e) { System.err.println("Couldn't get specified look and feel (" + lookAndFeel + "), for some reason."); System.err.println("Using the default look and feel."); e.printStackTrace(); } } /** * Helper method to add menu item and toolbar button for an action to the UI * @param parentMenu Menu to create the new menu item under * @param toolbar Toolbar to create the new button on * @param action Action to associate with new menu item and toolbar button * @param shortcutKey Keyboard shortcut to associate with the menu * @param toolTipText Tooltop text to associate with the new menu item and toolbar button */ private void createMenuItemAndToolbarBtn( JMenu parentMenu, JToolBar toolbar, Action action, int shortcutKey, String toolTipText, String actionCommand ) { createMenuItem ( parentMenu, action, shortcutKey, toolTipText, actionCommand ); JButton btn = toolbar.add( action ); btn.setToolTipText( toolTipText ); btn.setActionCommand( actionCommand ); } /** * Helper method to add menu item for an action to the UI * @param parentMenu Menu to create the new menu item under * @param action Action to associate with new menu item * @param shortcutKey Keyboard shortcut to associate with the menu * @param toolTipText Tooltop text to associate with the new menu item */ private void createMenuItem( JMenu parentMenu, Action action, int shortcutKey, String toolTipText, String actionCommand ) { JMenuItem menuItem = parentMenu.add ( action ); menuItem.setMnemonic( shortcutKey); menuItem.setToolTipText( toolTipText ); menuItem.setActionCommand( actionCommand ); } /** * Close application in a controlled manner, allowing preferences and data to be saved */ private void closeApp() { this.dispatchEvent(new WindowEvent(this, WindowEvent.WINDOW_CLOSING)); } /** * Generate survey data from the cave data model in the specified output format */ private void generateOutputData( CaveConverter.SurveyDataOutputFormats format) { if ( visualiser != null ) { List outputData = visualiser.exportModel( format ); //Create tabPane for this output data SurveyDatafileTabPane exportTab = new ExportDataComponent( font, this.getLogger(), format ); if ( format == SurveyDataOutputFormats.Survex ) { exportTab.title = "Survex Export Data"; } else if ( format == SurveyDataOutputFormats.Toporobot ) { exportTab.title = "Toporobot Export Data"; } tabPane.addTab ( exportTab.title, exportTab.getTabPaneComponent() ); exportTab.addPropertyChangeListener("modified", dataModified); //Write strings from list to the file exportTab.setText(""); Iterator iterator = outputData.listIterator(); while ( iterator.hasNext() ) { String line = iterator.next(); if ( iterator.hasNext() ) { exportTab.append( line + System.getProperty("line.separator") ); } else { exportTab.append( line ); } } //Bring to front tabPane.setSelectedComponent( exportTab.getTabPaneComponent() ); } } /** * Process the data in the input data tab and generate a model */ private void buildCaveModelFromInputData() { CaveSurvey dataModel = processInputData(); //Create or update model tab if data was loaded if ( ( dataModel != null ) && ( dataModel.isEmpty() == false ) ) { //Reuse tab if already exists if ( visualiser == null ) { visualiser = new CaveModelVisualiser(this, dataModel, font ); tabPane.addTab ( "Survey Data Model", visualiser.getTabPaneComponent() ); } else { //Update cave model in visualiser visualiser.setCaveModel( dataModel ); } //Bring to front tabPane.setSelectedComponent( visualiser.getTabPaneComponent() ); //Enable actions which can act on cave model generateLRUDAction.setEnabled( true ); exportSurvexDataAction.setEnabled( true ); exportToporobotDataAction.setEnabled( true ); } } /** * Sets the enabled state of all actions which require a survey series * @param enabled State to set the enabled status to */ public void setSurveySeriesActionsEnabled( boolean enabled ) { genSeriesFromStnNamesAction.setEnabled( enabled ); } /** * Parse the cave survey data in an input data tab into a cave data model * @return Cave data model generated from parsed data file */ private CaveSurvey processInputData() { CaveSurvey surveyData = null; //Get text data from input tab List surveyDataLines = getSurveyDataFromText( inputData.getText() ); //Determine data type from input tab if ( inputData.getFormat() == null ) { //TODO In case of unknown format, ask user to select the format JOptionPane.showMessageDialog(this, "Format of data unknown. Currently this is determined by the file extension. The option to let you specify the format is not written yet.", "Unknown Survey Data Format", JOptionPane.OK_OPTION); } if ( inputData.getFormat() != null ) { //Parse the data into the cave data model switch ( inputData.getFormat() ) { case Compass: //Parse Compass data CompassParser cParser = new CompassParser(dialogLogger); try { surveyData = cParser.parseFile( surveyDataLines ); } catch (ParseException e) { //Display error message JOptionPane.showMessageDialog(this, "Error processing Compass file data: " + e.getMessage(), "Error", JOptionPane.ERROR_MESSAGE); } catch (Exception e) { JOptionPane.showMessageDialog(this, "Unexpected error processing Compass file data: " + e.getMessage(), "Error", JOptionPane.ERROR_MESSAGE); e.printStackTrace(); } break; case DXF: //Parse DXF data DxfParser dParser = new DxfParser(dialogLogger); try { surveyData = dParser.parseFile( surveyDataLines, 0 ); } catch (Exception e) { JOptionPane.showMessageDialog(this, "Unexpected error processing DXF file data: " + e.getMessage(), "Error", JOptionPane.ERROR_MESSAGE); e.printStackTrace(); } break; case PocketTopo: //Parse PocketTopo data PocketTopoParser pParser = new PocketTopoParser(dialogLogger); try { surveyData = pParser.parseFile( surveyDataLines ); //Generate LRUD from splays by default for PocketTopo // CaveConverter.logMessage("Generating LRUD data from splays..."); surveyData.generateLRUDfromSplays(); } catch (ParseException e) { //Display error message JOptionPane.showMessageDialog(this, "Error processing PocketTopo file data: " + e.getMessage(), "Error", JOptionPane.ERROR_MESSAGE); } catch (Exception e) { JOptionPane.showMessageDialog(this, "Unexpected error processing PocketTopo file data: " + e.getMessage(), "Error", JOptionPane.ERROR_MESSAGE); e.printStackTrace(); } break; case Survex: //Parse Survex data SurvexParser sParser = new SurvexParser(dialogLogger); try { surveyData = sParser.parseFile( surveyDataLines, null ); } catch (ParseException e) { //Display error message JOptionPane.showMessageDialog(this, "Error processing Survex file data: " + e.getMessage(), "Error", JOptionPane.ERROR_MESSAGE); } catch (Exception e) { JOptionPane.showMessageDialog(this, "Unexpected error processing Survex file data: " + e.getMessage(), "Error", JOptionPane.ERROR_MESSAGE); e.printStackTrace(); } break; } } return surveyData; } /** * Returns an ImageIcon, or null if the path was invalid * @param path Path to the icon image relative to this class * @return ImageIcon using the image at the path specified */ protected static ImageIcon createImageIcon(String path) { java.net.URL imgURL = MainForm.class.getResource(path); if (imgURL != null) { return new ImageIcon(imgURL); } else { System.err.println("Failed to find icon file: " + path); return null; } } /** * @param args Command line arguments (ignored) */ public static void main(String[] args) { EventQueue.invokeLater(new Runnable() { @Override public void run() { MainForm mainWindow = new MainForm(); mainWindow.setVisible(true); } }); } private List getSurveyDataFromText(String text) { List dataLines = new ArrayList(); String[] parts = text.split("\n"); for (int i = 0; i < parts.length; i++) { dataLines.add( parts[i] ); } return dataLines; } } CaveConverter_src/src/footleg/cavesurvey/gui/swing/SurveyDatafileTabPane.java0000644000000000000000000002076213036425356026571 0ustar rootroot/** * Copyright (C) 2015-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.gui.swing; import java.awt.Font; import java.io.BufferedWriter; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStreamWriter; import java.io.Writer; import javax.swing.JFileChooser; import javax.swing.JOptionPane; import javax.swing.JScrollPane; import javax.swing.JTextArea; import javax.swing.ScrollPaneConstants; import javax.swing.event.DocumentEvent; import javax.swing.event.DocumentListener; import javax.swing.filechooser.FileNameExtensionFilter; import footleg.cavesurvey.converter.Logger; /** * Component to display and hold cave survey data. * * @author Footleg * @version 2017.01.10 (ISO 8601 YYYY.MM.DD) * @since 1.7 (The Java version used) * * @to.do * TODO The tab should indicate it's role (as the source data) by colour or other visual indicator. */ @SuppressWarnings("serial") public class SurveyDatafileTabPane extends JTextArea { private JScrollPane scrollPane; protected JFileChooser fileSaveDialog; protected FileNameExtensionFilter compassFileFilter = new FileNameExtensionFilter("Compass Data Files","dat"); protected FileNameExtensionFilter dxfFileFilter = new FileNameExtensionFilter("DXF Files","dxf"); protected FileNameExtensionFilter pocketTopoFileFilter = new FileNameExtensionFilter("PocketTopo Text Files","txt"); protected FileNameExtensionFilter survexFileFilter = new FileNameExtensionFilter("Survex Files","svx"); protected FileNameExtensionFilter toporobotFileFilter = new FileNameExtensionFilter("Toporobot Data Files","text"); private boolean modified; protected String title = ""; protected File loadedFile; protected Logger logger; public boolean isModified() { return modified; } protected void setModified(boolean modified) { boolean oldModified = this.modified; this.modified = modified; firePropertyChange( "modified", oldModified, modified ); } /** * Create TextArea scrollable tab instance with specified font * @param font The font to use to display survey data file contents * @param logger Logging class to output information, warning and error messages to */ public SurveyDatafileTabPane(Font font, Logger logger) { super(); this.setFont(font); this.logger = logger; modified = false; scrollPane = new JScrollPane (this, ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS); scrollPane.setViewportView(this); //Add listener for document change events this.getDocument().addDocumentListener(new DocumentListener() { @Override public void removeUpdate(DocumentEvent e) { //Update modified state setModified(true); } @Override public void insertUpdate(DocumentEvent e) { //Update modified state setModified(true); } @Override public void changedUpdate(DocumentEvent e) { //Update modified state setModified(true); } }); //Initialise file save dialog fileSaveDialog = new JFileChooser("."); fileSaveDialog.setFileSelectionMode( JFileChooser.FILES_ONLY ); fileSaveDialog.addChoosableFileFilter( compassFileFilter ); fileSaveDialog.addChoosableFileFilter( dxfFileFilter ); fileSaveDialog.addChoosableFileFilter( pocketTopoFileFilter ); fileSaveDialog.addChoosableFileFilter( survexFileFilter ); fileSaveDialog.addChoosableFileFilter( toporobotFileFilter ); } /** * @return the scrollPane */ public JScrollPane getTabPaneComponent() { return scrollPane; } /** * Prompts user to save changes if data has been modified. Returns a JFileChooser option value. * @param characterSetEncoding The character set encoding to use for the file being written (e.g. UTF8, Cp1252 (for ANSI) ) * @return APPROVE_OPTION if saved, ERROR_OPTION if failed, CANCEL_OPTION if user aborted save */ public int promptToSaveChanges(String characterSetEncoding) { int action = JOptionPane.NO_OPTION; int saveRes = JFileChooser.APPROVE_OPTION; //Check whether currently loaded data has been modified if ( isModified() ) { //Ask whether to save before loading new data action = JOptionPane.showConfirmDialog( this.getParent(), "Save changes to survey data file " + title + "?", "Save changes?", JOptionPane.YES_NO_CANCEL_OPTION); if ( action == JOptionPane.YES_OPTION ) { //Save file before proceeding saveRes = saveData( false, characterSetEncoding ); } else if ( action == JOptionPane.CANCEL_OPTION ) { //Change result to Cancel if user cancelled save saveRes = JFileChooser.CANCEL_OPTION; } } return saveRes; } /** * Save survey data to file. Returns JFileChooser Option responses (APPROVE_OPTION, ERROR_OPTION, CANCEL_OPTION) * @param saveAs If true then show file chooser even if a filename is already set * @param characterSetEncoding The character set encoding to use for the file being written (e.g. UTF8, Cp1252 (for ANSI) ) * @return Returns JFileChooser Option responses: APPROVE_OPTION if saved, ERROR_OPTION if failed, CANCEL_OPTION if user aborted save */ public int saveData( boolean saveAs, String characterSetEncoding ) { int action = JFileChooser.APPROVE_OPTION; File saveFile = loadedFile; if ( saveAs || loadedFile == null ) { //Set file chooser to current filename fileSaveDialog.setSelectedFile( loadedFile ); //Enable new filename to be specified boolean overwriteCheckDone = false; while ( overwriteCheckDone == false ) { //Show file save dialog for user to specify file path action = fileSaveDialog.showSaveDialog( this ); if ( action == JFileChooser.APPROVE_OPTION ) { //Check whether specified file already exists and warn of overwrite int overwriteConfirm = JOptionPane.YES_OPTION; if ( fileSaveDialog.getSelectedFile().exists() ) { overwriteConfirm = JOptionPane.showConfirmDialog( this.getParent(), "File " + fileSaveDialog.getSelectedFile().getPath() + " already exists. Do you want to replace this file?", "Overwrite file?", JOptionPane.YES_NO_OPTION); } if ( overwriteConfirm == JOptionPane.YES_OPTION ) { saveFile = fileSaveDialog.getSelectedFile(); overwriteCheckDone = true; } } else { overwriteCheckDone = true; } } } if ( action == JFileChooser.APPROVE_OPTION ) { //Save File BufferedWriter textWriter = null; try { FileOutputStream fos = new FileOutputStream( saveFile ); Writer out = new OutputStreamWriter(fos, characterSetEncoding); textWriter = new BufferedWriter(out); textWriter.write( this.getText() ); //Update file reference for new saved file loadedFile = saveFile; //Reset modified status setModified( false ); } catch (Exception e) { JOptionPane.showMessageDialog( this, "Error writing file: " + e.getMessage(), "Error", JOptionPane.ERROR_MESSAGE); action = JFileChooser.ERROR_OPTION; } finally { if ( textWriter != null ) { try { textWriter.close(); } catch (IOException ex) { JOptionPane.showMessageDialog( this, "Error closing file.", "Error", JOptionPane.ERROR_MESSAGE); action = JFileChooser.ERROR_OPTION; } } } } return action; } } CaveConverter_src/src/footleg/cavesurvey/gui/swing/SourceDataComponent.java0000644000000000000000000001073213036425356026320 0ustar rootroot/** * Copyright (C) 2015-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.gui.swing; import java.awt.Font; import java.io.File; import java.util.ArrayList; import java.util.List; import java.util.ListIterator; import javax.swing.JFileChooser; import footleg.cavesurvey.converter.CaveConverter; import footleg.cavesurvey.converter.Logger; import footleg.cavesurvey.converter.CaveConverter.SurveyDataInputFormats; import footleg.cavesurvey.tools.UtilityFunctions; /** * Component to display and hold cave survey source data for conversions and editing. * * @author Footleg * @version 2017.01.10 (ISO 8601 YYYY.MM.DD) * @since 1.7 (The Java version used) * * @to.do * TODO Add highlighting of lines in file which parser could not interpret */ @SuppressWarnings("serial") public class SourceDataComponent extends SurveyDatafileTabPane { private CaveConverter.SurveyDataInputFormats format; private List multifileLineRefs; /** * Create TextArea scrollable tab instance with specified font * @param font The font to use to display survey data file contents * @param logger Logging class to output information, warning and error messages to */ public SourceDataComponent(Font font, Logger logger) { super( font, logger ); } /** * @return the format */ public CaveConverter.SurveyDataInputFormats getFormat() { return format; } /** * Opens a new survey data input file and loads the contents into a source data tab pane * @param dataFile The file to open * @param characterSetEncoding The character set encoding to use for the file being read (e.g. UTF8, Cp1252 (for ANSI) ) * @return Returns true if file was opened successfully */ public boolean openFile(File dataFile, String characterSetEncoding ) { boolean res = false; //Check whether currently loaded data has been modified int action = promptToSaveChanges( characterSetEncoding ); //Load new data if prompt check passed if ( action == JFileChooser.APPROVE_OPTION ) { //Reset fields before attempting to load new data setText(""); format = null; //Determine file type from file extension boolean multiFile = false; String fileName = dataFile.getName(); int extnStart = fileName.lastIndexOf('.') + 1; String fileExtn = ""; if ( extnStart > 0 ) { fileExtn = fileName.substring( extnStart ); } format = CaveConverter.inputFormatFromFileExtn( fileExtn ); //Set file filter appropriate to file format (this instance of the file //save dialog is specific to this class instance, so this can be set here) if ( format == SurveyDataInputFormats.Compass ) { fileSaveDialog.setFileFilter( compassFileFilter ); } else if ( format == SurveyDataInputFormats.DXF ) { fileSaveDialog.setFileFilter( dxfFileFilter ); } else if ( format == SurveyDataInputFormats.PocketTopo ) { fileSaveDialog.setFileFilter( pocketTopoFileFilter ); } else if ( format == SurveyDataInputFormats.Survex ) { fileSaveDialog.setFileFilter( survexFileFilter ); multiFile = true; multifileLineRefs = new ArrayList(); } //Read data from file List fileData = UtilityFunctions.readTextFile(dataFile, characterSetEncoding, multiFile, multifileLineRefs, logger); //Put data into tab ListIterator dataIter = fileData.listIterator(); while ( dataIter.hasNext() ) { append(dataIter.next() + "\n"); } //Store filename in class property loadedFile = dataFile; //Reset modified flag now file loading is complete setModified( false ); res = true; } return res; } } CaveConverter_src/src/footleg/cavesurvey/gui/swing/images/0000755000000000000000000000000013036467352023004 5ustar rootrootCaveConverter_src/src/footleg/cavesurvey/gui/swing/images/export_toporobot_data.png0000644000000000000000000000163512621447114030131 0ustar rootrootPNG  IHDRa,tEXtCreation TimeThu 20 Aug 2015 11:50:31 -0000џ$tIME 5 !- pHYs B4gAMA aIDATxmS]HTAfj{vS-6M C2L Hꡠ"7P#-,0JZR+EPj]uwﶫwޙfJtw3yNFs?Q3Vj[E!ߑ9xo3(LÚ yp:!a@"[9dr۶*+=uLنQLj͛6 9Gl:gjC dVH!  BX'~&+SԓfKk G(a̅3s"x]:[EJ2pU^jfNt[Li1Oح#H)"@{G{"+w .WC8dq)d(pί?oTS酢J!_zr1凢Rk!l}̇{9#>0Q'=1~$(+CÞ&v"[[+ן.LOeLʥ8ݷ0X^^^Fg a}br"I$ ko\=犨IENDB`CaveConverter_src/src/footleg/cavesurvey/gui/swing/images/expand-series.png0000644000000000000000000000714110513513600026245 0ustar rootrootPNG  IHDRa pHYs   OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3-gAMA|Q cHRMz%u0`:o_F|IDATxt]L[eH!-Mj9,.[b,ja:z"8o^hilqDDc69Xa::+===|^ٍ>7ݓ!RR,.R1+AXq;:?>J m,rbřѽ԰bf6J_OcJ>{8WFF,45 PBjHP4 S+I-ɐY`IvF=:rQb_˨ W.@q.?5z"O0|Ļok{#mޗY~otC@\AAWU|sVOn _[׀)n,\|=69\Vv~Pis>QmLߊ=YrI \+7=BYV˽3 ;JV2wV cPlQ_ qo~XliX$kVgT{D!W}٤`J7qgImN:w /ehNѵڥo6}uml>e~4Gnms)~_J lGi% 'w6ЇD{;wL"|hJ+R;BJXzPUR*0RNBR, z4'ejkи%09\cn"9SpYj2}s=I)z A10_3_\=H &TPE̯ nZX~Ӎf& b nv0X`CG? |CDӊ1sa,XdjX@! gha1"IENDB`CaveConverter_src/src/footleg/cavesurvey/gui/swing/images/export_survex_data.png0000644000000000000000000000161112621447114027430 0ustar rootrootPNG  IHDRatIME 4*0 pHYs B4gAMA aIDATxm_lUsgnwJ"6I--1 !`bĘ`B}6h|P!mZ)X O7ĭn;3wݶxInnd2YXS\A4Zd/c5+_ )d^4*R/M3g鄳aRjg!*g?FQL$[Ef[[{~}fg0gż}vk._², `#$8{?* w=m{^kI8N˩GiH3m3LEX-iRz;7R=2:g`?2%-)rA$7\Ů QU LwG)clщWTE̹3RvoVm Ll{F@}S= 5(6~7v+⹯UetI, ?i嫽L?\3P⁦a3fHFg3;~ib؍2E^L[o  H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3-gAMA|Q cHRMz%u0`:o_FIDATx\OoEލ"P(r(="%OS$|g-ꩢpH&JK!mfٙy9[ e4O<`gg_^^6pwwz^D4Dyr< juuy/IڒfY8K O!u~ p~~~{eefVV/ onԙ{ k-q  "Z.ψό~# ;Ե?)ax Ba868""( 4!<9>0wZ!+[Bܵ1{?6! !i?CM;ш#MNNѻx!+ y Wwܩ}$I0l-%ez|xbe˲l[qLxqS/^RjLKx7TEThȌAD0 hQ @D@8UAZPJFkZrL2;C{:݌o2N;exOD([A!n9?^5\*6mJ*_GGnټeYT3Mn#ԃǿNޝ۝<ORx_'V$Iez:Ȳj>[']WO}32 IENDB`CaveConverter_src/src/footleg/cavesurvey/gui/swing/images/process_data.png0000644000000000000000000000624412621447114026160 0ustar rootrootPNG  IHDRa pHYs   OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3-gAMA|Q cHRMz%u0`:o_FIDATxڜMkQ;ck]PpBBF$ K& ?JT$ ع:-s9S(pGjZ"r`<+q"NBiBw~:(Xx̏͆ibIp(2) |m|f8d2L&jKJ)\.p8<@;4fjE:Lyt:; NFmY~!5hLKPJr0Su=WɗIENDB`CaveConverter_src/src/footleg/cavesurvey/gui/swing/images/exit.png0000644000000000000000000000155412621447114024461 0ustar rootrootPNG  IHDRa3IDAT8m_L[`RBKmˈs,721LpaJF4Abq^M6$ȦƘm:-0aȟB7HKmm)9NDxJkygy!ycfw*=k@zÝO_}gv~# 'o7ffy_c?إl+c-"7f.[?]_0G=3pB{ $B<^xIRs1,'N9e,'H M À@]Ef;EOkg_=<ټ̐zSs +%Ȥ!fU Zi1b*JKzS-"  b#Ɲ T._|^~ ri6ҜrlLv %2ʛA D= CdsTC*"5ɄbE hkFx)I9Pwo誂MQ m;@^/1sф6fn.l١AW(} ܭ54Qx%:53eADx_1*eI_1r9I!Cۥ璻NU4g5 ŪcӺ 柯cuTƠtHwWF-aC YN(q51n- 8>?D&_;fn;4`55fIf˯m=|`/7(9q*{.{p4ߍf3?Z`p]IENDB`CaveConverter_src/src/footleg/cavesurvey/gui/swing/images/export_data.png0000644000000000000000000000674012621447114026024 0ustar rootrootPNG  IHDRa pHYs   OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3-gAMA|Q cHRMz%u0`:o_FIDATxl[h\U}Ξ9gN8j2iM+"QԂH(}M"Aȓ"H@UjB)C ܆tj29}hfz[_K~uݬ)dx=\/ܐr&S18:e(BJ9!,\:Jy+ 8&Mi!APo*yeoygL: # aюQJQoԙ\‰Km'ӕ!s( aREy!0QS&dK5?fF]ǎ֚Pl.8'VurQ*lOn}zC@V&^MbG,I"EH_vFu1M Y/R&_X2-Z̗g̿p۶kO/=ty0)\=FƆ*X`^}-5_xX}:zWF3ڠ,1wѷiBk}o5YwqLx3QłNZ$ci \\1r9̲-QN|77B(+"6H *ub?y1ƾQ\faYVEK,\ N>}s 5VFw4ɣ3>կC(^N<* J)Fٳ51!(u==;tj47F;CLiZwv~ H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3-gAMA|Q cHRMz%u0`:o_FIDATxڜNTQ}9ssP;|+Mh#Mx; ڂ'0M$bBBbeHHx"Ü^k/j/e^,S䜩|scj/Tu!IR_Y+ IYJQ܉fF&3`*>U; P34(t0T ʣ UC!PB*)@0Cp4 ^ (UYahwifC*_G,(IOh%Sa@zlo#Iq?S}ȑaYZDh)iZ90 !373}m5h711_i< c i=,.c="_Y{E"QEUF챷{gFUVz,ģB1# Wף{g 0j(YifqLN^aeeK*N,q9 .5!Snd=PUݽaIENDB`CaveConverter_src/src/footleg/cavesurvey/gui/swing/images/lrud.png0000644000000000000000000000550212621447114024453 0ustar rootrootPNG  IHDRa pHYs  d_ OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3-gAMA|Q cHRMz%u0`:o_F]IDATxڬR[ 0kJeǺ Qc;ZLѼLKK 'Ĩ@J&c k 4ZO"NTPhxu$c!}#AuIENDB`CaveConverter_src/src/footleg/cavesurvey/gui/swing/ExportDataComponent.java0000644000000000000000000000413313035162652026333 0ustar rootroot/** * Copyright (C) 2015-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.gui.swing; import java.awt.Font; import footleg.cavesurvey.converter.CaveConverter; import footleg.cavesurvey.converter.Logger; import footleg.cavesurvey.converter.CaveConverter.SurveyDataOutputFormats; /** * Component to display and hold cave survey data exported from the cave data model. * * @author Footleg * @version 2017.01.10 (ISO 8601 YYYY.MM.DD) * @since 1.7 (The Java version used) * * @to.do * TODO Allow data to be reused as input data to build a new cave model. */ @SuppressWarnings("serial") public class ExportDataComponent extends SurveyDatafileTabPane { private CaveConverter.SurveyDataOutputFormats format; public ExportDataComponent(Font font, Logger logger, SurveyDataOutputFormats dataFormat) { super(font, logger); format = dataFormat; //Set file filter appropriate to file format if ( format == SurveyDataOutputFormats.Survex ) { fileSaveDialog.setFileFilter( survexFileFilter ); } else if ( format == SurveyDataOutputFormats.Toporobot ) { fileSaveDialog.setFileFilter( toporobotFileFilter ); } } /** * @return the format */ public CaveConverter.SurveyDataOutputFormats getFormat() { return format; } } CaveConverter_src/src/footleg/cavesurvey/converter/0000755000000000000000000000000013036467352021633 5ustar rootrootCaveConverter_src/src/footleg/cavesurvey/converter/CaveConverter.java0000644000000000000000000003774513036417266025263 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.converter; import java.io.File; import java.text.DecimalFormat; import java.text.ParseException; import java.util.ArrayList; import java.util.Calendar; import java.util.Date; import java.util.List; import java.util.TimeZone; import footleg.cavesurvey.data.model.CaveSurvey; import footleg.cavesurvey.data.reader.CompassParser; import footleg.cavesurvey.data.reader.DxfParser; import footleg.cavesurvey.data.reader.PocketTopoParser; import footleg.cavesurvey.data.reader.SurvexParser; import footleg.cavesurvey.data.writer.SurvexWriter; import footleg.cavesurvey.data.writer.TopoRobotWriter; import footleg.cavesurvey.tools.UtilityFunctions; /** * Command line application for converting cave survey data from one file format to another. * Currently it can read some survex files, text export files from PocketTopo and DXF format * data. It can write toporobot and survex files. * * @author Footleg * @version 2017.01.12 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) * * @to.do * TODO Write Therion reader and writer */ public class CaveConverter { private static final String filePath = "./"; private static Date today; public static String newline = System.getProperty("line.separator"); public static final String DATA_ORDER_CAT_FROMSTN = "FROM"; public static final String DATA_ORDER_CAT_TOSTN = "TO"; public static final String DATA_ORDER_CAT_LENGTH = "LENGTH"; public static final String DATA_ORDER_CAT_BEARING = "BEARING"; public static final String DATA_ORDER_CAT_CLINO = "GRADIENT"; public static final String DATA_ORDER_CAT_IGNOREALL = "IGNOREALL"; public static final String DATA_ORDER_CAT_FROMDEPTH = "FROMDEPTH"; public static final String DATA_ORDER_CAT_TODEPTH = "TODEPTH"; public static final String DATA_ORDER_CAT_DEPTHCHANGE = "DEPTHCHANGE"; /** * Command line options for True, False or 'Use Default' */ public static enum CmdlineOpt { T, F, D } /** * Command line options for splays output */ public static enum CmdlineSplaysOpt { Named, None, Default, Anon } /** * Supported cave survey data formats for input (these are the formats the application can read) */ public static enum SurveyDataInputFormats { Compass, DXF, PocketTopo, Survex } /** * Supported cave survey data formats for output (these are the formats the application can write) */ public static enum SurveyDataOutputFormats { Survex, Toporobot } private static String dataFormats[][] = {{"Compass","dat"},{"DXF","dxf"},{"PocketTopo","txt"},{"Survex","svx"},{"Toporobot","text"}}; /** * Units for length measurements */ public static enum LengthUnit { Metres, Feet, Yards } /** * Units for bearing measurements */ public static enum BearingUnit { Degrees, Grads, Minutes } /** * Units for gradient measurements */ public static enum GradientUnit { Degrees, Grads, Minutes, Percent } /** * Supplies the display name for survey data input formats * @param format The data format enum value * @return Display name for this data format */ public static String getFormatName(SurveyDataInputFormats format) { String formatName = ""; switch (format) { case Compass: formatName = dataFormats[0][0]; break; case DXF: formatName = dataFormats[1][0]; break; case PocketTopo: formatName = dataFormats[2][0]; break; case Survex: formatName = dataFormats[3][0]; break; } return formatName; } /** * Supplies the display name for survey data output formats * @param format The data format enum value * @return Display name for this data format */ public static String getFormatName(SurveyDataOutputFormats format) { String formatName = ""; switch (format) { case Survex: formatName = dataFormats[3][0]; break; case Toporobot: formatName = dataFormats[4][0]; break; } return formatName; } /** * Returns the file format for a specified file name extension * @param fileExtn The filename extension * @return The survey data input format matching the file extn (or null if no match) */ public static SurveyDataInputFormats inputFormatFromFileExtn( String fileExtn ) { SurveyDataInputFormats format = null; if ( fileExtn.equalsIgnoreCase( dataFormats[0][1] ) ) { format = SurveyDataInputFormats.Compass; } else if ( fileExtn.equalsIgnoreCase( dataFormats[1][1] ) ) { format = SurveyDataInputFormats.DXF; } else if ( fileExtn.equalsIgnoreCase( dataFormats[2][1] ) ) { format = SurveyDataInputFormats.PocketTopo; } else if ( fileExtn.equalsIgnoreCase( dataFormats[3][1] ) ) { format = SurveyDataInputFormats.Survex; } return format; } /** * @param args Command line arguments */ public static void main( String[] args ) { //Default input and output filenames String inputFilename = "input.svx"; String outputFilename = "output.text"; SurveyDataInputFormats inputFormat = null; SurveyDataOutputFormats outputFormat = null; CmdLineLogger logger = new CmdLineLogger(); //Set date if not already set if ( today == null ) { //Set date to todays datetime Calendar cal = Calendar.getInstance(TimeZone.getDefault()); today = cal.getTime(); } //Check for arguments if (args.length > 0) { //Set input filename from 1st argument inputFilename = args[0]; if (args.length > 1) { //Set output filename from 2nd argument outputFilename = args[1]; if (args.length > 2) { //Set input format from 3rd argument try { inputFormat = UtilityFunctions.inputDataFormatFromLetterCode( parseSingleCharacterArgument( args[2] ) ); if (args.length > 3) { //Set output format from 4th argument outputFormat = UtilityFunctions.outputDataFormatFromLetterCode( parseSingleCharacterArgument( args[3] ) ); //Set options flags from 5th argument onwards CmdlineSplaysOpt splaysOpt = CmdlineSplaysOpt.Default; boolean anonSplaysOpt = false; CmdlineOpt genLRUDOpt = CmdlineOpt.F; String charSetEncoding = "UTF8"; for (int iOpts = 4; iOpts < args.length; iOpts++ ) { if ( args[iOpts].compareToIgnoreCase("nosplays") == 0 ) { splaysOpt = CmdlineSplaysOpt.None; } else if ( args[iOpts].compareToIgnoreCase("splays") == 0 ) { splaysOpt = CmdlineSplaysOpt.Named; } if ( args[iOpts].compareToIgnoreCase("anonsplays") == 0 ) { anonSplaysOpt = true; } if ( args[iOpts].compareToIgnoreCase("lrud") == 0 ) { genLRUDOpt = CmdlineOpt.T; } if ( args[iOpts].compareToIgnoreCase("charset") == 0 ) { if ( iOpts + 1 < args.length ) { charSetEncoding = args[iOpts + 1]; } } } //Set splays to anonymous if option was set and splays are being output if ( ( splaysOpt != CmdlineSplaysOpt.None ) && ( anonSplaysOpt == true ) ) { splaysOpt = CmdlineSplaysOpt.Anon; } //Call file convert method convertFile(inputFilename, outputFilename, inputFormat, outputFormat, splaysOpt, genLRUDOpt, charSetEncoding, logger ); //Write log file logger.writeLogToFile( filePath + "CaveConverter.log", charSetEncoding ); } } catch (ParseException e) { //Log error e.printStackTrace(); } } } } } public static void setToday(Date date) { CaveConverter.today = date; } /** * Parses a string argument into a single character. * * @param argument String to be converting into a single character * @return The char which was contained in the string argument * @throws ParseException If the argument is not a single character length string */ private static char parseSingleCharacterArgument( String argument ) throws ParseException { char[] chars = argument.toCharArray(); char argChar = 'x'; if ( chars.length == 1 ) { argChar = chars[0]; } else { ParseException e = new ParseException("Failed to parse argument to single character. " + "Argument was '" + argument + "'.", 1); throw e; } return argChar; } /** * Reads in a survey data file and converts it to another format which is written out to a file. * * @param inputFilename Name and location of file to be converted * @param outputFilename Name and location of file to be output * @param inputFormat Format of input file * @param outputFormat Format of file to be generated * @param splaysOpt Indicates if a splays output option was set to True, False or to use default for writer (T,F,D) * @param generateLRUDOpt Indicates whether to generate LRUD data from splays before writing out data * @param charSetEncoding Character set encoding to be used when reading and writing files * @param logger Logging class to output information, warning and error messages to * @throws ParseException Exception raised when information in a survey data file is not supported or valid for the format */ public static void convertFile( String inputFilename, String outputFilename, SurveyDataInputFormats inputFormat, SurveyDataOutputFormats outputFormat, CmdlineSplaysOpt splaysOpt, CmdlineOpt generateLRUDOpt, String charSetEncoding, Logger logger ) throws ParseException { //Declare structure to hold survey data CaveSurvey surveyData = null; List multiFileRefs = null; boolean multifile = false; //Prepare log message String msg = "Reading data file '" + inputFilename + "' with format " + getFormatName( inputFormat ) + ". Splays option: "; switch ( splaysOpt ) { case None: msg += "None"; break; case Anon: msg += "Anonymous"; break; case Default: msg += "Default"; break; case Named: msg += "Named to Stations"; break; } if ( inputFormat == SurveyDataInputFormats.Survex ) { multifile = true; multiFileRefs = new ArrayList(); } //Read input data file logger.logMessage( msg ); List fileData = UtilityFunctions.readTextFile( new File( inputFilename ), charSetEncoding, multifile, multiFileRefs, logger ); //Parse file data if ( inputFormat == SurveyDataInputFormats.Survex ) { //Parse Survex data SurvexParser parser = new SurvexParser(logger); surveyData = parser.parseFile( fileData, multiFileRefs ); } else if ( inputFormat == SurveyDataInputFormats.PocketTopo ) { //Parse PocketTopo data PocketTopoParser parser = new PocketTopoParser(logger); surveyData = parser.parseFile( fileData ); } else if ( inputFormat == SurveyDataInputFormats.DXF ) { //Parse Autocad DXF data polylines into survey series DxfParser parser = new DxfParser(logger); surveyData = parser.parseFile(fileData, 0); } else if ( inputFormat == SurveyDataInputFormats.Compass ) { //Parse Compass data file CompassParser parser = new CompassParser(logger); surveyData = parser.parseFile(fileData); } else { //Unsupported input format argument logger.logMessage("Unsupported input format argument: " + inputFormat + " is not a valid input format."); } //Set options flag for generating LRUD data boolean generateLRUD = false; if (generateLRUDOpt == CmdlineOpt.T) { generateLRUD = true; } //Generate LRUD data if required if ( generateLRUD ) { logger.logMessage("Generating LRUD data from splays..."); surveyData.generateLRUDfromSplays(); } //Convert data to output format List outputData = null; if ( surveyData != null ) { if ( outputFormat == SurveyDataOutputFormats.Survex ) { //Set options flag for splays (default to true) SurvexWriter.SplayFormats outputSplays = SurvexWriter.SplayFormats.Flagged; if ( splaysOpt == CmdlineSplaysOpt.None ) { outputSplays = SurvexWriter.SplayFormats.None; } else if ( splaysOpt == CmdlineSplaysOpt.Anon ) { outputSplays = SurvexWriter.SplayFormats.Anonymous; } //Generate Survex format data SurvexWriter writer = new SurvexWriter(logger); outputData = writer.generateSurvexData( surveyData, outputSplays ); } else if ( outputFormat == SurveyDataOutputFormats.Toporobot ) { //Set options flag for splays (default to false) boolean outputSplays = false; if ( ( splaysOpt == CmdlineSplaysOpt.Named ) || ( splaysOpt == CmdlineSplaysOpt.Anon ) ) { outputSplays = true; } //Generate Toporobot format data TopoRobotWriter writer = new TopoRobotWriter(logger); outputData = writer.generateToporobotData( surveyData, today, outputSplays ); } // else if ( outputFormat == SurveyDataOutputFormats.Compass ) { // //Generate Compass format data // CompassWriter writer = new CompassWriter(); // outputData = writer.generateCompassData( surveyData ); // } else { //Unsupported output format argument logger.logMessage("Unsupported output format argument: " + outputFormat + " is not a valid output format."); } } //Write output file if ( outputData.size() > 0 ) { String outputFilePath = filePath + outputFilename; logger.logMessage( "Writing output file: " + outputFilePath ); String error = UtilityFunctions.writeTextFile( outputData, outputFilePath, charSetEncoding ); if ( error.length() > 0 ) { logger.logMessage( error ); } } } public static String padNumber(int num, int padWidth) { String numStr = "" + num; return padString(numStr,padWidth); } /** * Generates a string from a number with specified number of decimal places and padded with spaces * to a specified length string * @param num Number to convert to string * @param decPlaces Number of decimal places to represent the number to * @param padWidth Minimum length of string to return * @return Formatted string representation of number */ public static String padNumber(double num, int decPlaces, int padWidth) { String formatStr = "0."; for (int i = 0; i < decPlaces; i++) { formatStr += '0'; } DecimalFormat formatter = new DecimalFormat(formatStr); return padString(formatter.format(num), padWidth); } /** * Prefixes a string with space characters to make the string a minimum length if * the string is shorter than the specified minimum length * * @param data The string to pad with spaces * @param padWidth The minimum length the string should have * @return The string padded with space characters to make it at least the specified length */ public static String padString(String data, int padWidth) { String padded; //Pad number with spaces if not already as wide as pad width if ( data.length() < padWidth ) { //Pad with lots of spaces padded = " " + data; //then trim to padded width padded = padded.substring(padded.length() - padWidth); } else { //Already wide enough, so just return as is padded = data; } return padded; } } CaveConverter_src/src/footleg/cavesurvey/converter/DialogMsgLogger.java0000644000000000000000000000355613035154764025514 0ustar rootroot/** * Copyright (C) 2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.converter; import javax.swing.JFrame; import javax.swing.JOptionPane; /** * Logging class for Swing GUI application. Displays error messages in dialog boxes. * * @author Footleg * @version 2017.01.10 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) * */ public class DialogMsgLogger extends Logger { JFrame parent; /** * * @param parentFrame Parent JFrame to display to error message over */ public DialogMsgLogger( JFrame parentFrame ) { super(); parent = parentFrame; } /** * Display error in dialog box over parent frame * @param message The message to append to the log */ @Override public void logError(String message) { JOptionPane.showMessageDialog(parent, message, "Error", JOptionPane.ERROR_MESSAGE); } @Override public void logMessage(String message) { //JOptionPane.showMessageDialog(parent, message, "Info", JOptionPane.INFORMATION_MESSAGE); System.out.println(message); } } CaveConverter_src/src/footleg/cavesurvey/converter/Logger.java0000644000000000000000000000246013035001710023674 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.converter; /** * Interface for logging classes. Enables different logging to be used to output message * when using tool as command line application or GUI application. * * @author Footleg * @version 2017.01.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) * */ public class Logger { public void logMessage(String message){}; public void logError(String message){}; } CaveConverter_src/src/footleg/cavesurvey/converter/CmdLineLogger.java0000644000000000000000000000470413035001710025133 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.converter; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar; import java.util.List; import java.util.TimeZone; import footleg.cavesurvey.tools.UtilityFunctions; /** * Logging class for command line application. * * @author Footleg * @version 2017.01.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) * */ public class CmdLineLogger extends Logger { private static List log = new ArrayList(); /** * Logs as message * @param message The message to append to the log */ @Override public void logError(String message) { logMessage(message); } /** * Formats message with date time stamp, then outputs to console and log * @param message The message to append to the log */ @Override public void logMessage(String message) { String logLine; Calendar cal = Calendar.getInstance(TimeZone.getDefault()); String DATE_FORMAT = "yyyy-MM-dd HH:mm:ss"; SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT); sdf.setTimeZone(TimeZone.getDefault()); logLine = sdf.format(cal.getTime()) + ": " + message; log.add( logLine ); System.out.println(logLine); } /** * Writes the contents of the log to a file * @param fileName Full path to the file to write * @param characterSetEncoding Characterset encoding to use in writing the file */ public void writeLogToFile(String fileName, String characterSetEncoding) { UtilityFunctions.writeTextFile( log, fileName, characterSetEncoding ); } } CaveConverter_src/src/footleg/cavesurvey/tools/0000755000000000000000000000000013036467352020764 5ustar rootrootCaveConverter_src/src/footleg/cavesurvey/tools/SurveyProcessing.java0000644000000000000000000001005312620126006025142 0ustar rootroot/** * Copyright (C) 2015-2015 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.tools; import footleg.cavesurvey.data.model.SurveyLeg; import footleg.cavesurvey.data.model.SurveySeries; /** * Data processing class for functions which process survey data. * * @author Footleg * @version 2015.11.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public final class SurveyProcessing { /** * Check the series for station names containing a dot separator, and if found then reorganise * the series into a set of nested series using the full path name of the series to define the * child series which the stations belong to. Only process series containing legs. * @param series The survey series to rearrange * @return True if series was rearranged */ public static boolean generateSeriesFromFullPathStationNames( SurveySeries series ) { boolean rearranged = false; if ( series.innerSeriesCount() == 0 ) { int matchingChildSeriesIdx = -1; //Loop through all legs in the series for (int legIdx = 0; legIdx < series.legCount(); legIdx++) { SurveyLeg leg = series.getLegRaw( legIdx ); //Check fromStn name and check for dot separator String fromStnName = leg.getFromStn().getName(); int sepPos = fromStnName.indexOf('.'); if ( sepPos > 0 ) { String prefix = fromStnName.substring(0, sepPos); //Check for child series matching the name of the prefix if ( series.innerSeriesCount() > 0 ) { if ( series.getInnerSeries( matchingChildSeriesIdx ).getSeriesName().equals( prefix ) == false ) { //Need to search all inner series for match matchingChildSeriesIdx = -1; for ( int j = 0; j < series.innerSeriesCount(); j++ ) { if ( series.getInnerSeries( j ).getSeriesName().equals( prefix ) ) { //Store matching index matchingChildSeriesIdx = j; break; } } } } //Create new child series if matching series not found if ( matchingChildSeriesIdx == -1 ) { SurveySeries newSeries = new SurveySeries( prefix ); series.addSeries(newSeries ); matchingChildSeriesIdx = series.innerSeriesCount() - 1; } //Remove prefix from fromStn name String newFromName = fromStnName.substring( sepPos + 1 ); leg.getFromStn().setName(newFromName); //If to station shares the same prefix, then remove prefix from that String toStnName = leg.getToStn().getName(); int sepToPos = toStnName.indexOf('.'); if ( sepToPos > 0 ) { if ( toStnName.substring(0, sepToPos).equals( prefix ) ) { String newToName = toStnName.substring( sepToPos + 1 ); leg.getToStn().setName(newToName); } } else { //Otherwise, we need an equate from the toStn to the equivalent station in the series it matches } //Put leg into child series series.getInnerSeries( matchingChildSeriesIdx ).addLeg (leg ); } } //Loop through all legs and remove them from the series for (int legIdx = series.legCount() - 1; legIdx >= 0; legIdx--) { series.removeLeg( legIdx ); } rearranged = true; } return rearranged; } } CaveConverter_src/src/footleg/cavesurvey/tools/UtilityFunctions.java0000644000000000000000000014074013036426166025167 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.tools; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.io.Writer; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Arrays; import java.util.Calendar; import java.util.Date; import java.util.Iterator; import java.util.List; import java.util.ListIterator; import java.util.TimeZone; import footleg.cavesurvey.converter.CaveConverter.BearingUnit; import footleg.cavesurvey.converter.CaveConverter.GradientUnit; import footleg.cavesurvey.converter.CaveConverter.LengthUnit; import footleg.cavesurvey.converter.CaveConverter.SurveyDataInputFormats; import footleg.cavesurvey.converter.CaveConverter.SurveyDataOutputFormats; import footleg.cavesurvey.converter.Logger; import footleg.cavesurvey.data.model.CaveSurvey; import footleg.cavesurvey.data.model.Equate; import footleg.cavesurvey.data.model.SurveyLeg; import footleg.cavesurvey.data.model.SurveySeries; import footleg.cavesurvey.data.model.SurveyStation; /** * Utility class for functions shared with other code in application. * * @author Footleg * @version 2017.01.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public final class UtilityFunctions { private static final double feetPerMetre = 3.280839895; private static final char compassFormat = 'c'; private static final char dxfFormat = 'd'; private static final char pocketTopoFormat = 'p'; private static final char survexFormat = 's'; private static final char toporobotFormat = 't'; public static final String POCKETTOPO_DATE_FORMAT = "yyyy/MM/dd"; public static final String SURVEXDATE_FORMAT = "yyyy.MM.dd"; /** * Convert cave survey data input format codes to enum values * * @param letterCode Single character indicating a cave survey data format * @return Survey format value which the given letter code represents * @throws ParseException raised if the letter code character does not match a supported survey input format */ public static SurveyDataInputFormats inputDataFormatFromLetterCode( char letterCode ) throws ParseException { SurveyDataInputFormats format = null; switch (letterCode) { case compassFormat: format = SurveyDataInputFormats.Compass; break; case dxfFormat: format = SurveyDataInputFormats.DXF; break; case pocketTopoFormat: format = SurveyDataInputFormats.PocketTopo; break; case survexFormat: format = SurveyDataInputFormats.Survex; break; default: //Error: Unknown format code ParseException e = new ParseException("Unknown data format letter code: " + letterCode + "'.", 1); throw e; } return format; } /** * Convert cave survey data output format codes to enum values * * @param letterCode Single character indicating a cave survey data format * @return Survey format value which the given letter code represents * @throws ParseException raised if the letter code character does not match a supported survey output format */ public static SurveyDataOutputFormats outputDataFormatFromLetterCode( char letterCode ) throws ParseException { SurveyDataOutputFormats format = null; switch (letterCode) { case survexFormat: format = SurveyDataOutputFormats.Survex; break; case toporobotFormat: format = SurveyDataOutputFormats.Toporobot; break; default: //Error: Unknown format code ParseException e = new ParseException("Unknown data format letter code: " + letterCode + "'.", 1); throw e; } return format; } /** * Math function to calculate the average compass bearing from a set * of compass readings. The calculation used determines the sum of the * vectors. This is the equivalent of converting the bearings from unit * vectors each with a polar coordinate to x and y components, averaging * the x and y components to produce a resulting vector, and then taking * the polar coordinate bearing of that vector as the result. For a pair * of compass readings this average represents the mean direction of the * two survey legs. For a set of two or more readings it represents to * mean direction of all the bearings giving them equal weight. This is * different to the numerical average of several repeated readings of an * instrument (like 3 DistoX shots from PocketTopo), but the results are * the same (at a precision of two decimal places) for either averaging * method for sets of bearings with no more than 2 degrees variation * between the readings. * * @param bearings Array of compass bearings to calculate average from * @return Mean compass bearing in range 0-360 degrees */ public static double averageCompassBearings( double[] bearings ) { double meanBearing = 0.0; double accumulatorCos = 0.0; double accumulatorSin = 0.0; //Loop through all bearings for ( int bearingIdx = 0; bearingIdx < bearings.length; bearingIdx++ ) { //Convert bearing to radians Double bearing = Math.toRadians( bearings[bearingIdx] ); //Accumulate sum of sin and cos of bearings accumulatorCos += Math.cos(bearing); accumulatorSin += Math.sin(bearing); } double average_angle_atan2 = Math.atan2(accumulatorSin, accumulatorCos); meanBearing = Math.toDegrees(average_angle_atan2); //Adjust bearing to within range of 0-360 degrees return adjustBearingWithinDegreesRange( meanBearing, 0, 360 ); } /** * Adjusts a bearing in degrees to a value within the range given * @param bearing The bearing to adjust * @param min The minimum value to allow * @param max The lowest value to adjust down (adjusted bearing must be less than this value) * @return Bearing adjusted to within range given */ public static double adjustBearingWithinDegreesRange(double bearing, double min, double max) { double adjustedBearing = bearing; while ( adjustedBearing < min ) { adjustedBearing += 360; } while ( adjustedBearing >= max ) { adjustedBearing -= 360; } return adjustedBearing; } /** * Math function to calculate the difference between two compass bearings * @param angle1 First compass bearing * @param angle2 Second compass bearing * @return difference in degrees between the two bearings */ public static double bearingDifferenceDegrees( double angle1, double angle2) { double dif = Math.abs( angle1 - angle2 ) % 360; if (dif > 180) dif = 360 - dif; return dif; } /** * Creates a new survey station for a series using a given name for the station. * * The name is mapped to a numerical station id using the series, and the station * is created with that id. If the name is already in use then the id will be the * same id as that used for the matching station in the series. * * @param stnName The name to give the new survey station * @param series The survey series which this station is going to be added to * @return New survey station object with an id mapped to the name for this series */ public static SurveyStation createStationFromNameForSeries( String stnName, SurveySeries series ) { SurveyStation stn = new SurveyStation( 0 ); stn.setName( stnName ); series.setStationIdFromName(stn); return stn; } /** * Date string parsing function to return a date type from a text representation of the date. * * @param dateString Text representation of a date * @param dateFormat Defines the format for the text representation of the date * @throws ParseException if the string is not a valid date * @return The date parsed from the string parameter */ public static Date stringToDate( String dateString, String dateFormat ) throws ParseException { Date dateVal; SimpleDateFormat sdf = new SimpleDateFormat(dateFormat); sdf.setTimeZone(TimeZone.getDefault()); dateVal = sdf.parse(dateString); return dateVal; } /** * Method which generates a string representing a given date. * * @param date The date to be converted to text * @param dateFormat Defines the format for the text representation of the date * @return Text representation of the date in the format requested */ public static String dateToString( Date date, String dateFormat ) { SimpleDateFormat sdf = new SimpleDateFormat(dateFormat); sdf.setTimeZone(TimeZone.getDefault()); return sdf.format( date ); } /** * Generates a string representing the date on the day the method * is called. * * @param dateFormat Defines the format for the text representation of the date * @return Text representation of today's date in the format requested */ public static String todaysDateAsString( String dateFormat ) { Calendar cal = Calendar.getInstance(TimeZone.getDefault()); Date dateTimeNow = cal.getTime(); return dateToString( dateTimeNow, dateFormat ); } /** * Converts a string list into a string of items from the list * separated with a given string * * @param list String list of items to convert to a string * @param separator String to separate items with in the output * @return Dot separated string of the items from the input list */ public static String stringListToDotSeparatedString( List list, String separator) { String items = ""; ListIterator primaryIterator = list.listIterator(); if ( primaryIterator.hasNext() ) { //First item items += primaryIterator.next(); } while ( primaryIterator.hasNext() ) { items += separator + primaryIterator.next(); } return items; } /** * Splits a string of data items separated by whitespace into an array of * individual data items. Tab and space characters are treated as * separators unless enclosed in quotes. * * @param dataString String of data items separated by white space * @return Array of data items extracted from the input data string */ public static List parseDataStringIntoDataItems( String dataString ) { List dataItems = new ArrayList(); String currItem = ""; boolean insideQuotes = false; //Parse input string character by character for (int i = 0; i < dataString.length(); i++) { //Check if inside quotes if ( insideQuotes ) { //Check for ending quotes if ( dataString.charAt(i) == '\"' ) { //End of item, so update array with data for this item dataItems.add( currItem ); //Reset for next item currItem = ""; insideQuotes = false; } else { //Non-quote, and non-whitespace character, so add to end of current item currItem += dataString.charAt(i); } } else if ( dataString.charAt(i) == '\"' ) { //Found start of new quoted data item insideQuotes = true; } else if ( dataString.charAt(i) == ' ' || dataString.charAt(i) == '\t' ) { //Found whitespace, check if this is the end of a data item if ( currItem.length() > 0 ) { //End of item, so update array with data for this item dataItems.add( currItem ); //Reset for next item currItem = ""; } } else { //Non-quote, and non-whitespace character, so add to end of current item currItem += dataString.charAt(i); } } //End of data, check if the last item was added if ( currItem.length() > 0 ) { //Last item, so update array with data for this item dataItems.add( currItem ); } return dataItems; } /** * Splits a comment string into comment lines, splitting at line separator * characters and removing enclosing quotes. * * @param comment Comment string to be parsed * @return Array of comment line from the input comment string */ public static String[] parseTripComment( String comment ) { String dataString = comment.replace("\\r", "\r"); String[] dataItems = dataString.split("\r"); return dataItems; } /** * Converts a list of equates gathered during file parsing into series links in the survey. * * A helper function shared by some of the data readers, which generate a list * of equate classes from equivalent stations in the input files. This method * matches these equates to series in the survey, and creates a series link in the * appropriate series to link the series to another series in the survey. * * @param equates ArrayList of equates to be processed * @param allSeries The cave survey to add the series links into */ public static void processEquates( List equates, CaveSurvey allSeries ) { //Process each of the equates in turn Iterator equateIterator = equates.listIterator(); while ( equateIterator.hasNext() ) { Equate equate = equateIterator.next(); //Find the series path in common between the equates and determine which is the inner series if nested String innerSeries; String outerSeries; String innerSeriesStn; String outerSeriesStn; if ( equate.getSeries1().length() > equate.getSeries2().length() ) { //First series is inner series to second series outerSeries = equate.getSeries2(); outerSeriesStn = equate.getStn2(); innerSeries = equate.getSeries1(); innerSeriesStn = equate.getStn1(); } else { //First series is same as or outer series to second series outerSeries = equate.getSeries1(); outerSeriesStn = equate.getStn1(); innerSeries = equate.getSeries2(); innerSeriesStn = equate.getStn2(); } //Find parent series, and remove path to it from the two series paths List outerHierarchy = new ArrayList(Arrays.asList(outerSeries.split("[.]"))); List innerHierarchy = new ArrayList(Arrays.asList(innerSeries.split("[.]"))); List parentHierarchy = new ArrayList(); boolean matching = true; while ( matching && (outerHierarchy.size() > 0 ) ) { if (outerHierarchy.get(0).equalsIgnoreCase( innerHierarchy.get(0) ) ) { //Common series name to both series in equate, so move to parent parentHierarchy.add( outerHierarchy.remove(0) ); innerHierarchy.remove(0); } else { matching = false; } } //Find innermost series which is a parent of the equates series SurveySeries liveSeries = null; // boolean dealtWithUnmatchedSeries = false; if ( parentHierarchy.size() > 0 ) { //Iterate over series names in parent path looking for matching inner most series ListIterator pathIterator = parentHierarchy.listIterator(); String liveName = pathIterator.next(); //First find the outer series for the outer path name ListIterator primaryIterator = allSeries.listIterator(); while ( primaryIterator.hasNext() ) { SurveySeries outermostSeries = primaryIterator.next(); if ( outermostSeries.getSeriesName().equalsIgnoreCase( liveName ) ) { //Go to next level in path liveSeries = outermostSeries; break; } else { //Not found, so keep looking matching = false; //Just here to allow breakpoint debugging } } //Did we find outer series? if ( liveSeries != null ) { //Now iterate over path looking for matching inner series for each level if ( pathIterator.hasNext() ) { liveSeries = findInnerSeriesByName( liveSeries, pathIterator); } //If we got here without any exceptions being thrown then we should have the correct parent series matching = true; //Just here to allow breakpoint debugging } else { //Failed to find matching outer series throw new RuntimeException( "Equate series outer name '" + liveName + "' did not match any cave name." ); } } else { //No parent in common which indicates that the link is invalid as one of //the series is not in the cave survey at all. //TODO Fix this for pockettopo imports where only part of a cave is present. Need a dummy link in this case. //This is no longer where the PocketTopo files raise an error. throw new RuntimeException( "Series in equate did not match any series name. Series1: '" + equate.getSeries1() + "'. Series2: '" + equate.getSeries2() + "'." ); //Check that at least one of the series matches a series name // int series1Idx = lookupSeriesIndexFromSeriesName( equate.getSeries1(), allSeries ); // if ( series1Idx >= 0 ) { // //Add link to series 1 // SurveyStation stn = createStationFromNameForSeries( equate.getStn1(), allSeries.get( series1Idx ) ); // SurveyStation fake = new SurveyStation( 0 ); // fake.setName( equate.getStn2() ); // allSeries.get( series1Idx ).addLink( equate.getSeries1(), stn, equate.getSeries2(), fake ); // dealtWithUnmatchedSeries = true; // } // else { // int series2Idx = lookupSeriesIndexFromSeriesName( equate.getSeries2(), allSeries ); // if ( series2Idx >= 0 ) { // //Add link to series 2 // SurveyStation stn = createStationFromNameForSeries( equate.getStn2(), allSeries.get( series2Idx ) ); // SurveyStation fake = new SurveyStation( 0 ); // fake.setName( equate.getStn1() ); // allSeries.get( series2Idx ).addLink( equate.getSeries1(), fake, equate.getSeries2(), stn ); // dealtWithUnmatchedSeries = true; // } // } } //By here, live series is the parent series for both equates. //The outer and inner hierarchies indicate the paths to the inner series from this point if ( liveSeries != null ) { String equatePart1; SurveySeries part1Series; SurveyStation stn1 = null; if ( outerHierarchy.isEmpty() ) { equatePart1 = ""; part1Series = liveSeries; stn1 = createStationFromNameForSeries( outerSeriesStn, part1Series ); } else { equatePart1 = stringListToDotSeparatedString( outerHierarchy, "."); try { part1Series = findInnerSeriesByName( liveSeries, outerHierarchy.listIterator() ); stn1 = createStationFromNameForSeries( outerSeriesStn, part1Series ); } catch (RuntimeException ex) { //PocketTopo files often have equates to stations in series not in the file stn1 = new SurveyStation( 0 ); stn1.setName( equate.getStn1() ); } } String equatePart2; SurveySeries part2Series; SurveyStation stn2 = null; if ( innerHierarchy.isEmpty() ) { equatePart2 = ""; part2Series = liveSeries; stn2 = createStationFromNameForSeries( innerSeriesStn, part2Series ); } else { equatePart2 = stringListToDotSeparatedString( innerHierarchy, "."); try { part2Series = findInnerSeriesByName( liveSeries, innerHierarchy.listIterator() ); stn2 = createStationFromNameForSeries( innerSeriesStn, part2Series ); } catch (RuntimeException ex) { //PocketTopo files often have equates to stations in series not in the file stn2 = new SurveyStation( 0 ); stn2.setName( equate.getStn2() ); } } //Put link into the parent series of the two linked series liveSeries.addLink(equatePart1, stn1, equatePart2, stn2); } else { //No parent series found for this equate throw new RuntimeException( "Equate series are not inside same series. Series1: '" + equate.getSeries1() + "'. Series2: '" + equate.getSeries2() + "'." ); } } } /** * * @param outerSeries * @param pathIterator * @return */ private static SurveySeries findInnerSeriesByName( SurveySeries outerSeries, ListIterator pathIterator) { SurveySeries liveSeries = outerSeries; //Now iterate over path looking for matching inner series for each level while ( pathIterator.hasNext() ) { String liveName = pathIterator.next(); liveSeries = liveSeries.findInnerSeriesByName( liveName ); if (liveSeries == null ) { //Failed to match a series at this level throw new RuntimeException( "Equate series name '" + liveName + "' did not match any inner series name." ); } } return liveSeries; } public static void logSurveyDebugData( CaveSurvey allSeries, Logger logger ) { //Debug dump logger.logMessage("============================ Cave Survey Data Summary ============================"); logger.logMessage("Survey contains " + allSeries.size() + " top level series."); for (int i = 0; i < allSeries.size(); i++ ) { logSurveySeriesSummary( allSeries.get(i), "", logger ); } } private static void logSurveySeriesSummary( SurveySeries series, String seriesParent, Logger logger ) { String fullSeriesPath = seriesParent + series.getSeriesName(); String message = "Series: " + fullSeriesPath; if ( series.legCount() > 0 ) { message += " (" + series.legCount() + " legs)"; } if ( series.innerSeriesCount() > 0 ) { message += " (contains " + series.innerSeriesCount() + " child series)"; } logger.logMessage( message ); //Recursively log details of inner series for (int i = 0; i < series.innerSeriesCount(); i++ ) { logSurveySeriesSummary( series.getInnerSeries(i), fullSeriesPath + "/", logger ); } } /** * Reads a text file and builds an ArrayList of strings, one for each line * of the file. If the multi-file option is set then file lines will be checked * for include statements referencing other files, and if found these files contents * will be inserted into the output in place of the include statement lines. * * @param inputFile File to be read * @param characterSetEncoding Character set encoding to use when reading the text file * @param multiFile If set to true then file lines are checked for includes for other files to be inserted * @param multifileLineRefs Used to output an ArrayList of strings indicating the original file and line * number for each data line in the output data. Requires an empty list to be passed in. * @param logger Logging class to output information, warning and error messages to * @return ArrayList of strings, one for each line of the input filename */ public static List readTextFile( File inputFile, String characterSetEncoding, boolean multiFile, List multifileLineRefs, Logger logger ) { List dataLines = new ArrayList(); BufferedReader bufferedReader = null; try { FileInputStream fis = new FileInputStream( inputFile ); InputStreamReader isr = new InputStreamReader( fis, characterSetEncoding ); bufferedReader = new BufferedReader ( isr ); String text; int lineNo = 0; while ( ( text = bufferedReader.readLine() ) != null) { lineNo++; boolean addLine = true; if ( multiFile ) { //Check line for include statement String line = text.trim(); if ( line.toLowerCase().startsWith( "*include" ) ) { //Extract path to include file String pathAddn = ""; for ( int i = 8; i < line.length(); i++ ) { //Take all characters after *include up to comment char or line end if ( line.charAt(i) == ';' ) { break; } else { pathAddn += line.charAt(i); } } pathAddn = pathAddn.trim(); //Check for quotes around pathAddn and remove them if found if ( pathAddn.charAt(0) == '"' && pathAddn.charAt( pathAddn.length() - 1 ) == '"' ) { pathAddn = pathAddn.substring(1, pathAddn.length() - 1 ); } boolean extPresent = (pathAddn.lastIndexOf('.') >= 0) && pathAddn.substring( pathAddn.lastIndexOf('.') ).toLowerCase().equals(".svx"); String nextFilePath = folderFromFile( inputFile ); File nextFile = new File( nextFilePath + File.separatorChar + pathAddn ); if ( extPresent == false && nextFile.exists() == false ) { //Include statement potentially needs file extension adding, try lower case first nextFile = new File( nextFilePath + File.separatorChar + pathAddn + ".svx" ); if ( nextFile.exists() == false ) { //Still not found, try upper case first nextFile = new File( nextFilePath + File.separatorChar + pathAddn + ".SVX" ); } } logger.logMessage( "Including file: " + nextFile.getPath() ); List fileData = UtilityFunctions.readTextFile( nextFile, characterSetEncoding, multiFile, multifileLineRefs, logger ); dataLines.addAll(fileData); addLine = false; } else { //Not an include line in a multifile read, so store line ref multifileLineRefs.add( inputFile.getPath() + ":" + lineNo ); } } if ( addLine ) { dataLines.add( text ); } } } catch (FileNotFoundException ex) { logger.logError( ex.getMessage() ); } catch (IOException ex) { logger.logError( ex.getMessage() ); } finally { if ( bufferedReader != null ) { try { bufferedReader.close(); } catch (IOException ex) { logger.logError( ex.getMessage() ); } } } return dataLines; } /** * Write a text file from the data in an ArrayList of strings, one line * in the file per string in the List. * * @param fileContents ArrayList of strings, one for each line of the input filename * @param fileName Full path and name of file to be written * @param characterSetEncoding Character set encoding to use when writing the text file * @return Error message if write failed, or empty string if success */ public static String writeTextFile (List fileContents, String fileName, String characterSetEncoding ) { String error = ""; BufferedWriter textWriter = null; try { //Create file writer FileOutputStream fos = new FileOutputStream( fileName ); Writer out = new OutputStreamWriter(fos, characterSetEncoding); textWriter = new BufferedWriter(out); //Write strings from list to the file Iterator iterator = fileContents.listIterator(); while ( iterator.hasNext() ) { String line = iterator.next(); if ( iterator.hasNext() ) { textWriter.write( line + System.getProperty("line.separator") ); } else { textWriter.write( line ); } } } catch (IOException ex) { error = "Error writing file: " + ex.getLocalizedMessage(); } finally { if ( textWriter != null ) { try { textWriter.close(); } catch (IOException ex) { error = "Error closing file: " + ex.getLocalizedMessage(); } } } return error; } /** * Checks for station in the series being built. If found then adding this leg would mean the * series looped back onto itself, which we cannot do in Toporobot format. * @param iter Iterator for the list of stations already added to the series * @param checkStn The station to check for in the series being built up * @return True if station is found in the list cache */ private static boolean checkForLoopback( ListIterator iter, SurveyStation checkStn ) { boolean loopDetected = false; while ( iter.hasNext() ) { if ( checkStn.getId() == iter.next().getId() ) { loopDetected = true; break; } } return loopDetected; } /** * Checks for a station in all the series so far, to avoid series crossing other series in * the middle of each other, as TopoRobot format cannot support links of this sort. * @param caveSoFar * @param checkStn * @return */ private static boolean checkForCrossover( SurveySeries caveSoFar, SurveyStation checkStn ) { boolean crossingDetected = false; ListIterator seriesIter = caveSoFar.getInnerSeriesList().listIterator(); while ( seriesIter.hasNext() ) { //Check for station in all legs bar the final one in this series SurveySeries series = seriesIter.next(); for ( int i=0; i < series.legCount() - 1; i++ ) { SurveyLeg leg = series.getLegRaw(i); //Check leg to station as from station in first leg starts series //so not a crossover, and all other from stations are also to stations if ( checkStn.getId() == leg.getToStn().getId() ) { crossingDetected = true; i = series.legCount(); } } if ( crossingDetected == true ) { break; } } return crossingDetected; } /** * Splits a single survey series into a list of series without branches or loops. * The input series must not contain any nested series. The output series will * contain one or more inner series and the links between them, but no legs itself. * This method requires that any survey station can be identified by it's ID alone, * so stations with different names but the same ID are assumed to be the same station. * * TODO Somewhere in here is a bug which allows series to be linked together in unconnected * groups. It happens when two series are linked to each other via the same station. The * link is in effect duplicated, rather than one of the series being linked to another part of * the cave. There is also an issue that both ends of the series do not get linked to the * rest of the cave. Sometimes both the start and end stations are linked to another series * but only one of these links is created in the toporobot file. * * @param seriesIn A survey series which contains branches * @param logger Logging class to output information, warning and error messages to * @return A series containing one or more inner series, all linked by their first * stations to one of the other series. All series will be linear chains. */ public static SurveySeries convertToLinearSeries( SurveySeries seriesIn, Logger logger ) { SurveySeries outputSeries = new SurveySeries( seriesIn.getSeriesName() ); //Check the input series contain no inner series if ( seriesIn.innerSeriesCount() > 0 ) { throw new RuntimeException( "Nested series cannot be converted to linear chains." ); } //Loop through all the legs creating inner series of linear chains until all legs are //handled or remaining legs cannot be linked to any other legs. boolean legsRemain = true; while (legsRemain) { //Create a new series to start building a new linear chain SurveySeries series = new SurveySeries( seriesIn.getSeriesName() ); series.setCalibrationFromAnotherSeries( seriesIn ); //Create cache of all stations used to check for loops back onto stations already used List seriesStns = new ArrayList(); //Initialise last station flag to invalid id int lastStnId = -999; //Loop through all remaining legs and add connected legs to new series int addedLegsCount = 0; boolean legsAdded = true; //Initialise true to get into first pass of loops //Keep looping over all remaining legs until no more are being added to this series while ( legsAdded ) { legsAdded = false; //Reset int i = 0; while ( i < seriesIn.legCount() ) { int initialInnerAddedLegCount = addedLegsCount; SurveyLeg curLeg = seriesIn.getLegRaw(i); //Check if first leg for new series (always add), or leg follows last leg added if ( ( series.legCount() == 0 ) || ( lastStnId == curLeg.getFromStn().getId() ) ) { //Check that 'to' station has not already been used in the series boolean loopDetected = checkForLoopback( seriesStns.listIterator(), curLeg.getToStn() ); if (loopDetected == false) { boolean crossDetected = false; if ( series.legCount() > 0 ) { //Only check for cross over if not first station in a new series crossDetected = checkForCrossover( outputSeries, curLeg.getFromStn() ); } if (crossDetected == false) { //Add leg to end of series series.addLeg(curLeg); //Update last stn lastStnId = curLeg.getToStn().getId(); //Increment added legs count addedLegsCount++; //Add new station from this leg into stations cache seriesStns.add( curLeg.getToStn() ); } } } else if ( curLeg.getToStn().getId() == series.getLegRaw(0).getFromStn().getId() ) { //Leg fits on start of series, so insert at beginning if not looping back onto series //Check that 'from' station has not already been used in the series boolean loopDetected = checkForLoopback( seriesStns.listIterator(), curLeg.getFromStn() ); if (loopDetected == false) { boolean crossDetected = checkForCrossover( outputSeries, curLeg.getToStn() ); if (crossDetected == false) { series.addLeg(curLeg, 0); //Increment added legs count addedLegsCount++; //Add new station from this leg into stations cache seriesStns.add( curLeg.getFromStn() ); } } } if (initialInnerAddedLegCount < addedLegsCount ) { //Leg was added, so remove from input series seriesIn.removeLeg(i); //Update flag to indicate a leg has been added legsAdded = true; } else { //Leg was not used, so increment index to test next leg i++; } } } //Check whether any legs were added to this series (if not then exit) if ( series.legCount() > 0 ) { /* * New series created, set name from to station of first leg (fromStn name has often been changed by equating) * up to the last dot, and add the series index to ensure series name is unique */ String originalSeriesStn2Name = seriesIn.getMappedStnName( series.getLegRaw(0).getToStn().getId() ); //Base new series name on parent series and station name String originalSeriesName = seriesIn.getSeriesName() + "-" + originalSeriesStn2Name; int dotPos = originalSeriesStn2Name.lastIndexOf("."); if ( dotPos > 0 ) { //Station name has a series name prefix, so use this in preference to parent series name originalSeriesName = originalSeriesStn2Name.substring(0, dotPos ); } series.setSeriesName( (outputSeries.innerSeriesCount() + 1) + "-" + originalSeriesName ); //Add to list outputSeries.addSeries(series); } else { //No legs were processed on last pass, so exit the loop legsRemain = false; } } //Check that all legs were moved into output series if ( seriesIn.legCount() > 0 ) { throw new RuntimeException( "Some legs could not be linked to other legs in the series." ); } //Now loop through all the series and for each one match the start //station to a station in another series logger.logMessage( "Linking series:" ); for ( int searchIdx = 0; searchIdx < outputSeries.innerSeriesCount(); searchIdx++ ) { SurveySeries seriesToLink = outputSeries.getInnerSeries(searchIdx); //Get first and last stns SurveyStation firstStn = seriesToLink.getLegRaw(0).getFromStn(); SurveyStation endStn = seriesToLink.getLegRaw( seriesToLink.legCount() - 1 ).getToStn(); //Check all the other series for station matching the start station for this series int matchingIdx = findStationMatchingIdInInnerSeries(firstStn.getId(), searchIdx, outputSeries); if ( matchingIdx > -1 ){ logger.logMessage( "Series: " + outputSeries.getInnerSeries(searchIdx).getSeriesName() + " start stn linked to " + outputSeries.getInnerSeries(matchingIdx).getSeriesName() ); //Found match, so add link to parent series outputSeries.addLink(outputSeries.getInnerSeries(searchIdx).getSeriesName(), firstStn, outputSeries.getInnerSeries(matchingIdx).getSeriesName(), firstStn); } // else { /* * Need to check for end stn matches even if a start station link was found or loops are never closed * and sets of series can be created which are not connected to other sets. * TODO The commented out else block fixes the links not being set, but now a series which * starts where another series ends is linked twice, once in each direction. We should add a method * to the series class to check if a link already exists, and only add these links if not already defined * in the reverse direction. */ //No links to start of this series, so check if end station matches matchingIdx = findStationMatchingIdInInnerSeries(endStn.getId(), searchIdx, outputSeries); if ( matchingIdx > -1 ){ logger.logMessage( "Series: " + outputSeries.getInnerSeries(searchIdx).getSeriesName() + " end stn linked to " + outputSeries.getInnerSeries(matchingIdx).getSeriesName() ); //Found match, so need to reverse this series and add a link for it //No need to reverse as we now support end links outputSeries.getInnerSeries(searchIdx).reverseSeries(); outputSeries.addLink(outputSeries.getInnerSeries(searchIdx).getSeriesName(), endStn, outputSeries.getInnerSeries(matchingIdx).getSeriesName(), endStn); } // } } return outputSeries; } /** * Looks for an inner series with a station which matches the id given, and if found * then returns the index of that inner series. An index of an inner series to * exclude can be provided, to prevent a series being matched to itself. */ private static int findStationMatchingIdInInnerSeries(int id, int excludeSeriesIdx, SurveySeries series){ int matchingIdx = -1; ListIterator innerItr = series.getInnerSeriesList().listIterator(); int checkIdx = -1; while ( matchingIdx == -1 && innerItr.hasNext() ) { SurveySeries check = innerItr.next(); checkIdx++; //Do not check against the same series as ourself if ( excludeSeriesIdx != checkIdx ) { //Loop through legs in check series for ( int legIdx = 0; legIdx < check.legCount(); legIdx++ ) { SurveyLeg leg = check.getLegRaw(legIdx); //Looking for matching stations if ( id == leg.getFromStn().getId() ) { //Found match to a from station matchingIdx = checkIdx; break; } else if ( id == leg.getToStn().getId() ) { //Found match to a to stn matchingIdx = checkIdx; break; } } } } return matchingIdx; } /** * Removes whitespace and splits a line into items separated by whitespace * Returns and array of items from the input data line * * @param dataIn Data string to convert into data items * @return Array of data strings split at white space from the input data line */ public static String[] cleanAndSplitDataLine( String dataIn ) { //Process all white space down to single space chars String dataLine = dataIn.replace('\t', ' ').trim(); while ( dataLine.contains(" ") ) { dataLine = dataLine.replaceAll(" ", " "); } return dataLine.split(" "); } /** * Formats a message including the line number for file parsing messages * * @param message Message to append line number to * @param lineNo Line number to append to message text * @return Message text with line number appended */ public static String formatFileParserMsg( String message, int lineNo ) { String msg = message; msg += " (Line: " + lineNo + ")"; return msg; } /** * Formats a message including a string line reference for file parsing messages * * @param message Message to append line number to * @param lineRef Line reference to append to message text * @return Message text with line number appended */ public static String formatFileParserMsg( String message, String lineRef ) { String msg = message; msg += " (Line ref: " + lineRef + ")"; return msg; } /** * Generates a data format line suitable for Survex and Therion format files * * @param series Survey series to generate the data format line for * @param legIsDiving Flag to indicate whether the leg following this format header is a diving leg * @return Data format line without prefix character (i.e. no * needed for Survex) */ public static String dataFormatLineForSeries( SurveySeries series, boolean legIsDiving ) { List dataOrder = series.getDataOrder(); List dataOrder2 = series.getDataOrder2(); //Determine if correct data order item for normal or diving in case of mixed data series if ( dataOrder2.size() > 0 ) { if ( dataOrderIsDiving( dataOrder ) != legIsDiving ) { //Primary data order does not match required type, so use secondary order dataOrder = dataOrder2; } } String dataOrderLine = ""; boolean diving = false; //Check for diving for (int i = 0; i < dataOrder.size(); i++) { String item = dataOrder.get(i); dataOrderLine += " " + item.toLowerCase(); if ( item.contains("DEPTH") ) { diving = true; } } if ( diving == true ) { dataOrderLine = "diving" + dataOrderLine; } else { dataOrderLine = "normal" + dataOrderLine; } //Prefix with data keyword, or return empty string if there was no data order specified in the series if ( dataOrderLine.length() > 7 ) { dataOrderLine = "data " + dataOrderLine; } else { dataOrderLine = ""; } return dataOrderLine; } /** * Compares the strings in two string lists, and returns true if they are all identical * @param list1 One of the pair of string lists to compare * @param list2 One of the pair of string lists to compare * @return True if string lists are identical, otherwise false */ public static boolean compareStringLists( List list1, List list2 ) { boolean match = true; if ( list1.size() == list2.size() ) { for ( int i = 0; i < list1.size(); i++ ) { if ( list1.get(i).compareTo( list2.get(i) ) != 0 ) { match = false; break; } } } else { match = false; } return match; } /** * Converts a length measurement to a length in metres. * * @param length Length measurement to be converted * @param units Units of the length measurement as provided * @return Length in units of metres */ public static double lengthToMetres(double length, LengthUnit units) { double metreLength = 0; switch (units) { case Metres : metreLength = length; break; case Feet : metreLength = length / feetPerMetre; break; case Yards : metreLength = length * 3 / feetPerMetre; break; default: //In case other units are added to enum, but not coded yet; return zero break; } return metreLength; } /** * Converts the length measurement to a specified unit from specified value in metres. * * @param metrelength Length measurement in metres to convert to different units * @param units Units to convert length to * @return Length in units specified */ public static double lengthFromMetres(double metrelength, LengthUnit units) { double convertedLength = 0; switch (units) { case Metres : convertedLength = metrelength; break; case Feet : convertedLength = metrelength * feetPerMetre; break; case Yards : convertedLength = metrelength * feetPerMetre / 3; break; default: //In case other units are added to enum, but not coded yet; return zero break; } return convertedLength; } /** * Converts a bearing measurement to a bearing in degrees. * @param bearing Bearing measurement to be converted * @param units Units of the bearing measurement as provided * @return Bearing in units of degrees */ public static double bearingToDegrees(double bearing, BearingUnit units) { double degrees = -999; switch (units) { case Degrees : degrees = bearing; break; case Grads : degrees = gradsToDegrees( bearing ); break; case Minutes : degrees = bearing / 60; break; default: //In case other units are added to enum, but not coded yet; return -999 break; } return degrees; } /** * Converts the bearing measurement to a specified unit from specified value in degrees. * * @param bearingDegrees Bearing measurement in degrees to convert to different units * @param units Units to convert bearing to * @return Bearing in units specified */ public static double bearingFromDegrees(double bearingDegrees, BearingUnit units) { double convertedBearing = -999; switch (units) { case Degrees : convertedBearing = bearingDegrees; break; case Grads : convertedBearing = degreesToGrads( bearingDegrees ); break; case Minutes : convertedBearing = bearingDegrees * 60; break; default: //In case other units are added to enum, but not coded yet; return -999 break; } return convertedBearing; } /** * Converts a gradient (inclination) measurement to an angle in degrees. * @param gradient Inclination measurement to be converted * @param units Units of the inclination measurement as provided * @return Inclination in units of degrees */ public static double gradientToDegrees(double gradient, GradientUnit units) { double degrees = -999; switch (units) { case Degrees : degrees = bearingToDegrees( gradient, BearingUnit.Degrees ); break; case Grads : degrees = bearingToDegrees( gradient, BearingUnit.Grads ); break; case Minutes : degrees = bearingToDegrees( gradient, BearingUnit.Minutes ); break; case Percent : degrees = 180 * ( Math.atan( gradient / 100 ) ) / Math.PI; break; default: //In case other units are added to enum, but not coded yet; return -999 break; } return degrees; } /** * Converts the bearing measurement to a specified unit from specified value in degrees. * * @param gradientDegrees Inclination measurement in degrees to convert to different units * @param units Units to convert bearing to * @return Bearing in units specified */ public static double gradientFromDegrees(double gradientDegrees, GradientUnit units) { double convertedGradient = -999; switch (units) { case Degrees : convertedGradient = bearingFromDegrees( gradientDegrees, BearingUnit.Degrees ); break; case Grads : convertedGradient = bearingFromDegrees( gradientDegrees, BearingUnit.Grads ); break; case Minutes : convertedGradient = bearingFromDegrees( gradientDegrees, BearingUnit.Minutes ); break; case Percent : convertedGradient = 100.0 * Math.tan(Math.PI * gradientDegrees / 180.0); break; default: //In case other units are added to enum, but not coded yet; return -999 break; } return convertedGradient; } /** * Determines if a data order list is for diving data or normal * @param checkDataOrder Data order list from a SurveySeries * @return True if the data order list is for diving data, other wise false for normal data */ public static boolean dataOrderIsDiving(List checkDataOrder) { boolean isDiving = false; if ( checkDataOrder != null && ( checkDataOrder.contains("DEPTHCHANGE") || checkDataOrder.contains("FROMDEPTH") ) ) { isDiving = true; } return isDiving; } private static double gradsToDegrees(double grads) { double tmp = 360.0 * grads / 400.0; return tmp; } private static double degreesToGrads(double degrees) { return 400.0 * degrees / 360.0; } /** * Returns the folder location of a file * @param file File to get the folder path from * @return Path to the folder containing the file */ private static String folderFromFile( File file ) { String path = file.getPath(); String folderPath = "."; String folderSep = File.separator; int splitPos = path.lastIndexOf( folderSep ); if ( splitPos >= 0 ) { folderPath = path.substring( 0, splitPos ); } return folderPath; } } CaveConverter_src/test/0000755000000000000000000000000013036510056014147 5ustar rootrootCaveConverter_src/test/data/0000755000000000000000000000000013036510056015060 5ustar rootrootCaveConverter_src/test/data/regression/0000755000000000000000000000000013036510056017240 5ustar rootrootCaveConverter_src/test/data/regression/3334_Roadworks_in.svx0000644000000000000000000000256012560565224023132 0ustar rootroot*BEGIN 3334_Roadworks ;Surveyors: Phil Papard Pete Smith *Date 2010.12.26 ; Matienzo position is 43.315936, -3.584633. Declination can be found at ; www.ngdc.noaa.gov/geomagmodels/struts/calcDeclination *CALIBRATE declination 2.08 ;declination is 2 41' (2.68) for 2004 changing by 8'E per year ;declination is 2.28 for 2007 ;declination is 2.15 for 2008 ; Recalculated as 2 5' for 2009 changing by 7'E per year ;declination is 2.08 for 2009 *FIX 8 454397 4798612 245 *ENTRANCE 8 0 0a 5.29 343.42 6.03 *FLAGS SPLAY 0 0b 4.19 324.08 2.91 *FLAGS NOT SPLAY 0 1 2.19 352.68 29.32 1 2 2.62 21.69 1.71 *FLAGS SPLAY 2 2a 1.36 73.92 23.87 2 2b 2.06 83.37 23.14 2 2c 1.94 115.57 18.83 *FLAGS NOT SPLAY 2 3 2.39 99.28 33.60 3 4 12.65 40.42 84.11 4 4a 13.83 57.47 -56.48 *FLAGS SPLAY 4 4b 13.13 46.59 -63.14 4 4c 3.81 37.18 -3.57 *FLAGS NOT SPLAY 4 4d 7.72 57.44 0.96 *FLAGS SPLAY 4 4e 3.78 76.87 -7.99 4 4f 1.48 99.85 7.07 *FLAGS NOT SPLAY 4 5 18.78 56.70 83.75 6 5 2.10 55.71 -71.56 7 6 2.11 140.78 -30.64 7 8 1.32 138.68 74.79 *data passage station left right up down 0 0.352 0.214 11.213 0.609 1 0.305 0.309 2.941 1.012 2 0.866 0.546 9.954 0.401 3 0.837 0.271 7.357 0.658 4 0.298 0.467 11.565 13.092 6 0.731 0.515 1.135 1.092 7 0.0 0.316 0.978 1.231 *END 3334_Roadworks CaveConverter_src/test/data/regression/SwilEnt_ss_cmdsl_testgen.svx0000644000000000000000000012575212604502120025014 0ustar rootroot*BEGIN Swildons *EQUATE Ent EntranceZigZags.3 *EQUATE surfacegps.4 EntranceZigZags.3 *EQUATE LongDryWay.0 EntranceZigZags.5 *EQUATE LongDryWay.5 EntranceZigZags.21 *EQUATE LongDryWay.5 ShortDryWay.pt1.0 *EQUATE LongDryWay.39 NewGrottoes.0 *EQUATE LongDryWay.62 OldGrotto2WC.4 *EQUATE LongDryWay.59 OldGrotto2WC.0 *EQUATE LongDryWay.59 ShortDryWay.pt2.3 *EQUATE WaterRift.0 OldGrotto2WC.11 *EQUATE WaterRift.4 FortyRoute.0 *EQUATE WaterRift.12 FortyRoute.11 *EQUATE 10.0 LongDryWay.8 *EQUATE 10.20 LongDryWay.2 *EQUATE 10.13 20.20 *EQUATE 10.18 20.27 *EQUATE 20.0 EntranceZigZags.5 *EQUATE 20.23 ShortDryWay.pt1.3 *EQUATE 20.19 EntranceZigZags.5 *BEGIN surfacegps *DATE 2013.06.30 *CALIBRATE declination 1.58 *FLAGS SURFACE 0 1 9.84 94.37 -5.88 1 2 7.84 97.65 -8.05 2 3 11.76 94.27 -17.67 3 4 4.38 7.38 -23.29 3 5 5.45 262.93 13.06 5 6 8.80 174.95 11.61 6 7 13.78 168.31 12.55 *END surfacegps *BEGIN EntranceZigZags *DATE 2012.09.09 *CALIBRATE declination 1.7 *FLAGS SURFACE 0 1 2.98 10.26 -2.01 0 2 5.24 3.23 -5.04 *FLAGS SPLAY 2 2a 5.24 182.16 5.06 2 2b 1.89 187.97 3.09 2 2c 1.91 168.82 1.18 2 2d 1.38 218.59 -0.17 2 2e 0.64 248.05 1.54 2 2f 0.68 105.32 -3.30 2 2g 1.56 140.40 -2.98 2 2h 1.84 176.52 -47.48 2 2i 1.82 167.81 -47.93 2 2j 1.54 189.90 -63.97 2 2k 1.61 132.31 -59.62 *FLAGS NOT SPLAY 2 3 2.64 166.70 -60.11 *FLAGS NOT SURFACE SPLAY 3 3a 0.22 345.81 60.30 3 3b 2.63 347.89 60.51 3 3c 0.94 9.90 76.67 3 3d 0.31 232.08 12.34 3 3e 0.35 31.05 10.29 3 3f 0.47 8.50 -70.77 *FLAGS NOT SPLAY 3 4 3.10 330.76 -25.13 *FLAGS SPLAY 4 4a 3.12 152.39 25.35 4 4b 0.56 208.59 -0.68 4 4c 0.59 140.67 80.22 4 4d 1.32 189.06 -86.08 4 4e 1.50 43.79 87.42 *FLAGS NOT SPLAY 4 5 4.51 275.80 -12.10 *FLAGS SPLAY 5 5a 4.51 94.74 12.12 5 5b 3.45 123.81 5.64 5 5c 3.51 134.15 0.14 5 5d 6.66 129.46 11.11 5 5e 2.32 149.61 -6.69 5 5f 1.64 153.47 -11.17 5 5g 0.79 252.58 -12.22 5 5h 1.22 296.10 -7.82 5 5i 2.96 296.71 -23.02 5 5j 1.51 42.54 10.51 5 5k 4.24 72.82 11.85 5 5l 0.70 333.90 81.49 5 5m 0.55 114.68 -67.13 *FLAGS NOT SPLAY 5 6 2.41 50.67 -22.33 *FLAGS SPLAY 6 6a 2.38 230.76 22.40 6 6b 0.35 2.58 81.25 6 6c 0.30 220.39 -79.38 6 6d 0.51 299.09 -0.90 6 6e 0.21 108.28 1.25 *FLAGS NOT SPLAY 6 7 1.08 37.30 11.53 *FLAGS SPLAY 7 7a 1.09 217.24 -12.21 7 7b 0.80 327.16 66.53 7 7c 4.12 176.11 -83.10 7 7d 0.72 287.69 -77.51 7 7e 0.60 292.40 -18.76 7 7f 2.02 100.10 16.73 *FLAGS NOT SPLAY 7 8 2.00 6.10 11.51 *FLAGS SPLAY 8 8a 2.00 184.82 -11.17 8 8b 1.47 98.32 -7.52 8 8c 0.19 105.24 52.84 8 8d 1.24 102.22 -61.02 8 8e 0.88 109.39 0.40 *FLAGS NOT SPLAY 8 9 1.01 56.60 0.18 *FLAGS SPLAY 9 9a 1.02 236.71 -0.46 9 9b 0.48 12.78 64.51 9 9c 0.60 279.77 -8.53 9 9d 0.47 275.64 -73.34 *FLAGS NOT SPLAY 9 10 3.07 336.52 5.81 *FLAGS SPLAY 10 10a 3.08 156.19 -6.26 10 10b 0.58 232.61 -1.43 10 10c 1.31 64.76 -58.36 10 10d 1.43 101.23 -11.90 10 10e 1.14 78.33 -36.92 *FLAGS NOT SPLAY 9 11 2.42 64.64 5.29 *FLAGS SPLAY 11 11a 2.42 245.35 -5.41 11 11b 0.44 233.11 24.20 11 11c 0.20 42.71 -21.97 11 11d 0.45 239.67 46.05 11 11e 0.49 178.37 -53.68 11 11f 3.30 118.39 17.88 *FLAGS NOT SPLAY 11 12 4.50 106.56 19.29 *FLAGS SPLAY 12 12a 0.25 297.10 84.93 12 12b 0.26 127.16 -84.07 12 12c 0.60 197.87 18.66 12 12d 1.17 327.17 -9.65 12 12e 1.63 13.18 -2.28 12 12f 1.86 96.76 12.16 10 10f 3.76 209.97 51.34 *FLAGS NOT SPLAY 10 13 0.94 80.55 -45.63 *FLAGS SPLAY 13 13a 0.94 259.78 45.32 13 13b 0.84 97.15 56.57 13 13c 1.16 144.82 14.01 13 13d 0.48 130.78 -25.41 13 13e 0.58 324.87 25.54 *FLAGS NOT SPLAY 13 14 5.31 65.16 19.50 *FLAGS SPLAY 14 14a 5.82 246.22 -19.66 14 14b 0.64 206.92 -10.28 14 14c 0.54 185.33 -53.51 14 14d 0.21 279.32 69.67 14 14e 2.09 161.86 8.15 14 14f 0.85 285.98 -13.42 *FLAGS NOT SPLAY 10 15 3.27 329.15 -18.16 *FLAGS SPLAY 15 15a 3.25 149.02 17.88 15 15b 0.77 63.28 -13.22 15 15c 0.70 243.58 79.61 15 15d 0.80 97.26 -82.81 15 15e 2.37 233.98 -23.81 15 15f 0.94 168.26 10.56 *FLAGS NOT SPLAY 15 16 3.57 334.08 -6.33 *FLAGS SPLAY 16 16a 3.58 154.40 6.43 16 16b 0.29 52.63 -10.96 16 16c 0.70 63.17 -62.51 16 16d 0.73 221.54 2.28 16 16e 1.82 250.10 55.64 16 16f 0.86 237.55 47.64 16 16g 0.86 195.09 5.98 *FLAGS NOT SPLAY 16 17 2.41 207.98 -9.43 *FLAGS SPLAY 17 17a 2.40 28.72 9.44 17 17b 1.55 24.59 -70.16 17 17c 1.33 336.78 -9.34 17 17d 0.48 26.59 -33.63 17 17e 0.66 83.59 13.58 17 17f 1.67 193.75 -23.62 *FLAGS NOT SPLAY 17 18 4.05 308.01 -19.25 *FLAGS SPLAY 18 18a 4.05 128.34 19.12 18 18b 1.54 155.56 12.30 18 18c 0.60 300.02 2.80 18 18d 0.28 261.46 65.07 18 18e 0.68 182.87 -85.38 *FLAGS NOT SPLAY 18 19 2.06 211.48 -16.06 *FLAGS SPLAY 19 19a 2.04 31.72 16.13 19 19b 0.55 320.99 71.97 19 19c 1.54 308.22 -85.39 19 19d 0.46 306.67 -13.63 *FLAGS NOT SPLAY 19 20 2.94 233.55 -35.84 *FLAGS SPLAY 20 20a 2.95 53.57 35.69 20 20b 0.98 64.26 12.43 20 20c 0.93 44.01 13.78 20 20d 1.56 84.07 80.29 20 20e 1.62 301.40 -84.42 *FLAGS NOT SPLAY 20 21 2.04 14.57 -39.09 *FLAGS SPLAY 21 21a 2.04 195.35 38.69 21 21b 1.80 235.96 12.16 21 21c 0.21 339.46 -76.92 21 21d 0.34 53.17 3.81 21 21e 3.17 230.10 64.31 *FLAGS NOT SPLAY *data passage station left right up down 3 0.30 0.38 0.91 0.44 4 0.56 0.00 1.50 1.32 5 1.98 4.15 0.69 0.51 6 0.49 0.19 0.35 0.29 7 0.57 1.89 0.73 4.09 8 0.00 1.34 0.15 1.08 9 0.37 0.00 0.43 0.45 11 0.13 1.70 0.32 0.39 12 1.63 0.57 0.25 0.26 *data passage station left right up down 9 0.59 0.00 0.43 0.45 10 0.54 2.34 2.94 1.12 13 0.50 1.07 0.70 0.21 14 0.54 2.05 0.20 0.43 *data passage station left right up down 10 1.97 1.10 2.94 1.12 15 2.15 0.75 0.69 0.79 16 0.83 0.18 1.50 0.62 17 1.38 1.29 0.00 1.46 18 1.46 0.39 0.25 0.68 19 0.00 0.44 0.52 1.54 20 0.00 0.89 1.54 1.61 21 1.16 0.21 2.86 0.20 *END EntranceZigZags *BEGIN LongDryWay *DATE 2013.02.23 *CALIBRATE declination 1.63 *EQUATE 44 46 *FLAGS SPLAY 0 0a 0.57 190.50 0.73 0 0b 0.67 258.82 80.80 0 0c 1.35 2.03 3.08 0 0d 0.56 96.94 -85.13 0 0e 4.05 271.96 -24.99 0 0f 4.25 271.79 -25.07 *FLAGS NOT SPLAY 0 1 4.08 270.72 -25.50 *FLAGS SPLAY 1 1a 1.99 51.56 -3.25 1 1b 0.46 105.97 80.16 1 1c 1.51 94.64 -80.82 1 1d 4.22 97.98 -2.77 1 1e 3.40 122.23 -12.40 1 1f 3.13 150.51 -15.80 1 1g 6.66 142.47 -10.55 *FLAGS NOT SPLAY 1 2 3.77 354.35 -29.81 *FLAGS SPLAY 2 2a 0.66 241.86 -8.20 2 2b 1.94 85.48 -81.67 2 2c 0.59 61.84 0.46 2 2d 0.74 236.38 81.47 2 2e 1.67 66.88 -56.31 2 2f 1.30 149.63 -32.25 *FLAGS NOT SPLAY 2 3 4.33 336.10 -24.79 *FLAGS SPLAY 3 3a 1.20 273.33 77.00 3 3b 0.46 54.65 1.29 3 3c 0.19 248.98 6.64 3 3d 0.49 67.19 -81.38 3 3e 0.44 244.00 2.33 *FLAGS NOT SPLAY 3 4 2.77 337.70 -4.41 *FLAGS SPLAY 4 4a 1.44 45.43 -70.35 4 4b 0.50 246.88 -7.75 4 4c 2.23 271.73 60.68 *FLAGS NOT SPLAY 4 5 3.14 343.71 -25.59 *FLAGS SPLAY 5 5a 0.31 68.00 4.55 5 5b 0.23 200.44 -82.34 5 5c 3.01 212.74 65.59 5 5d 1.83 228.77 1.96 5 5e 2.24 149.67 -4.84 5 5f 1.07 119.80 -19.64 *FLAGS NOT SPLAY 5 6 1.87 332.43 6.50 *FLAGS SPLAY 6 6a 0.33 85.05 2.16 6 6b 0.81 234.74 4.03 6 6c 0.46 76.22 -85.16 6 6d 1.31 224.58 20.79 6 6e 2.65 233.44 69.74 *FLAGS NOT SPLAY 6 7 2.26 343.32 -5.29 *FLAGS SPLAY 7 7a 0.51 89.65 -82.84 7 7b 0.44 225.38 -8.27 7 7c 1.81 226.26 51.07 *FLAGS NOT SPLAY 7 8 1.72 258.62 12.28 *FLAGS SPLAY 8 8a 0.79 122.45 -3.92 8 8b 0.82 125.25 -80.01 8 8c 1.02 113.36 59.45 *FLAGS NOT SPLAY 7 9 1.10 310.47 4.46 *FLAGS SPLAY 9 9a 0.57 99.03 -87.47 9 9b 0.90 250.68 3.72 9 9c 0.88 233.37 70.96 9 9d 0.60 60.03 -19.66 *FLAGS NOT SPLAY 9 10 2.37 334.59 4.19 *FLAGS SPLAY 10 10a 0.26 51.75 0.96 10 10b 0.43 43.34 -88.13 10 10c 0.44 235.87 0.68 10 10d 2.30 241.44 71.10 *FLAGS NOT SPLAY 10 11 1.12 263.77 46.91 *FLAGS SPLAY 11 11a 0.64 52.79 1.87 11 11b 1.45 190.34 76.03 11 11c 0.98 0.32 -83.36 *FLAGS NOT SPLAY 11 12 3.53 351.74 -3.89 *FLAGS SPLAY 12 12a 0.83 261.49 10.43 12 12b 1.01 249.00 60.34 *FLAGS NOT SPLAY 12 13 1.97 312.50 39.30 *FLAGS SPLAY 13 13a 0.91 98.78 -1.21 13 13b 0.46 59.54 83.75 13 13c 1.07 62.56 -71.75 *FLAGS NOT SPLAY 13 14 2.39 28.12 3.33 *FLAGS SPLAY 14 14a 1.53 267.21 -13.19 14 14b 0.59 261.25 -82.95 14 14c 0.50 137.83 73.72 *FLAGS NOT SPLAY 14 15 0.86 306.09 -13.02 *FLAGS SPLAY 15 15a 0.46 78.21 4.93 15 15b 0.65 248.76 6.64 15 15c 0.41 265.85 -88.54 15 15d 0.40 124.70 82.35 15 15e 0.47 23.47 0.91 *FLAGS NOT SPLAY 15 16 4.55 48.38 7.37 *FLAGS SPLAY 16 16a 2.92 223.69 -3.46 16 16b 3.00 236.59 2.01 16 16c 1.64 276.31 -3.03 16 16d 0.90 237.99 72.78 16 16e 1.59 109.59 -71.63 16 16f 2.40 204.15 -9.08 16 16g 1.26 254.43 2.93 *FLAGS NOT SPLAY 16 17 2.34 328.01 -9.83 *FLAGS SPLAY 17 17a 1.50 103.75 -2.42 17 17b 1.22 173.37 80.16 *FLAGS NOT SPLAY 17 18 2.65 86.23 -7.24 *FLAGS SPLAY 18 18a 2.10 185.84 6.37 18 18b 0.40 223.80 82.63 18 18c 0.51 10.73 10.61 18 18d 0.52 174.98 -79.44 *FLAGS NOT SPLAY 18 19 0.84 146.67 18.49 *FLAGS SPLAY 19 19a 1.39 43.52 3.89 19 19b 0.51 159.85 17.51 19 19c 0.40 97.95 87.19 *FLAGS NOT SPLAY 19 20 1.81 87.93 13.23 *FLAGS SPLAY 20 20a 0.60 43.10 4.22 20 20b 1.64 208.49 63.28 20 20c 0.87 209.39 -0.95 *FLAGS NOT SPLAY 20 21 1.73 164.45 7.33 *FLAGS SPLAY 21 21a 0.68 33.20 4.40 21 21b 1.20 234.09 82.95 21 21c 0.25 41.06 -84.36 *FLAGS NOT SPLAY 21 22 2.91 113.95 7.56 *FLAGS SPLAY 22 22a 1.33 255.18 77.95 22 22b 0.88 220.17 0.04 22 22c 0.40 136.32 -85.39 22 22d 2.39 358.28 2.05 22 22e 4.28 320.27 -8.84 *FLAGS NOT SPLAY 22 23 1.51 181.21 30.14 *FLAGS SPLAY 23 23a 0.20 214.51 -9.54 23 23b 1.26 55.54 -74.20 23 23c 0.38 35.19 9.16 23 23d 0.40 243.28 88.13 23 23e 1.79 34.58 -40.94 *FLAGS NOT SPLAY 23 24 4.59 108.18 -8.18 *FLAGS SPLAY 24 24a 2.12 27.47 19.01 24 24b 1.44 265.31 83.06 24 24c 2.74 209.33 20.17 24 24d 3.06 204.37 31.06 24 24e 2.70 172.96 38.49 24 24f 2.76 119.14 44.68 24 24g 4.29 105.49 35.63 24 24h 3.31 94.03 37.41 24 24i 3.41 321.99 7.71 *FLAGS NOT SPLAY 24 25 3.22 188.75 35.45 *FLAGS SPLAY 25 25a 1.17 228.03 4.30 25 25b 2.44 342.35 79.94 25 25c 0.87 172.80 80.92 25 25d 0.37 33.36 9.50 25 25e 4.18 97.27 36.04 *FLAGS NOT SPLAY 25 26 4.13 139.60 16.69 *FLAGS SPLAY 26 26a 0.48 231.41 -0.43 26 26b 0.56 131.73 89.68 26 26c 1.15 13.53 28.43 26 26d 0.53 146.88 -77.01 26 26e 3.06 118.05 16.64 *FLAGS NOT SPLAY 25 27 4.94 97.33 39.05 *FLAGS SPLAY 27 27a 0.53 73.50 39.91 27 27b 2.86 145.99 24.42 27 27c 2.08 181.17 14.96 27 27d 3.64 159.34 16.76 *FLAGS NOT SPLAY 24 28 2.78 323.60 -24.94 *FLAGS SPLAY 28 28a 2.01 240.61 79.48 28 28b 1.17 150.81 -80.16 28 28c 0.42 153.56 -10.07 *FLAGS NOT SPLAY 28 29 0.89 90.00 -48.92 *FLAGS SPLAY 29 29a 0.66 345.81 68.52 29 29b 0.74 153.15 1.62 29 29c 0.65 303.35 1.69 29 29d 1.17 85.81 -77.61 29 29e 1.26 23.75 -19.21 *FLAGS NOT SPLAY 29 30 6.28 324.60 -29.83 *FLAGS SPLAY 30 30a 1.95 224.71 72.46 30 30b 1.49 213.57 5.25 30 30c 0.32 52.79 6.31 30 30d 0.43 224.41 -83.42 *FLAGS NOT SPLAY 30 31 1.55 264.23 41.75 *FLAGS SPLAY 31 31a 1.18 36.18 2.86 31 31b 1.41 7.15 4.71 31 31c 0.98 76.71 80.67 31 31d 0.43 206.64 4.65 31 31e 1.50 164.76 -87.26 *FLAGS NOT SPLAY 31 32 2.26 15.83 12.57 *FLAGS SPLAY 32 32a 0.88 258.32 -39.46 32 32b 0.41 254.53 -1.76 32 32c 0.62 258.09 37.38 32 32d 0.76 1.51 -83.57 *FLAGS NOT SPLAY 32 35 6.03 323.45 -41.61 31 34 5.13 314.22 -30.46 *FLAGS SPLAY 34 34a 1.81 117.94 6.32 34 34b 1.67 169.45 73.19 34 34c 0.78 104.73 -65.15 *FLAGS NOT SPLAY 34 35 2.76 19.79 -19.74 *FLAGS SPLAY 35 35a 3.60 249.79 75.43 35 35b 0.58 4.89 17.88 35 35c 1.23 222.29 3.93 *FLAGS NOT SPLAY 35 36 4.45 91.00 26.23 *FLAGS SPLAY 36 36a 2.37 172.41 2.46 36 36b 2.48 280.23 82.99 36 36c 1.17 0.68 7.77 36 36d 0.38 351.51 -81.72 36 36e 4.81 16.95 43.97 *FLAGS NOT SPLAY 36 37 6.61 112.79 18.69 *FLAGS SPLAY 37 37a 2.77 143.57 88.42 37 37b 1.24 47.17 8.65 37 37c 2.20 237.64 2.14 37 37d 0.52 23.20 -72.57 *FLAGS NOT SPLAY 37 38 3.92 158.52 22.40 *FLAGS SPLAY 38 38a 2.57 265.36 79.77 38 38b 1.77 258.21 76.02 38 38c 0.83 188.45 -87.34 38 38d 1.09 247.04 2.21 38 38e 1.13 47.31 -9.21 *FLAGS NOT SPLAY 38 39 5.06 158.54 15.55 *FLAGS SPLAY 39 39a 0.81 95.41 80.83 39 39b 0.36 243.34 -2.19 39 39c 1.36 68.36 1.57 39 39d 0.31 143.52 -87.32 39 39e 2.22 37.38 14.64 39 39f 1.24 124.14 29.01 39 39g 1.52 169.90 20.43 39 39h 3.17 184.03 6.76 *FLAGS NOT SPLAY 39 40 3.30 137.29 35.75 *FLAGS SPLAY 40 40a 0.41 330.85 80.32 40 40b 0.72 24.63 16.27 40 40c 0.43 242.41 10.73 *FLAGS NOT SPLAY 40 41 1.54 156.92 21.03 *FLAGS SPLAY 41 41a 1.17 313.23 86.69 41 41b 0.76 273.70 17.56 41 41c 1.15 52.78 9.22 *FLAGS NOT SPLAY 41 42 1.23 188.42 54.13 *FLAGS SPLAY 42 42a 0.31 20.21 65.90 42 42b 0.56 64.53 1.80 42 42c 0.25 246.58 30.01 42 42d 1.21 119.22 24.03 *FLAGS NOT SPLAY 35 43 7.82 271.86 -10.72 *FLAGS SPLAY 43 43a 2.96 340.05 72.39 43 43b 0.62 18.69 7.95 43 43c 0.66 202.11 10.96 43 43d 1.72 172.80 -79.05 *FLAGS NOT SPLAY 43 44 1.58 132.75 -54.76 43 45 4.22 283.16 -3.82 *FLAGS SPLAY 45 45a 0.26 5.45 2.81 45 45b 0.92 147.26 -80.05 45 45c 2.17 187.63 77.31 45 45d 1.42 144.48 74.70 45 45e 1.03 171.63 2.41 46 46a 1.17 359.83 20.74 46 46b 1.04 279.77 44.73 *FLAGS NOT SPLAY 46 47 4.08 278.14 -22.89 *FLAGS SPLAY 47 47a 1.17 175.15 69.16 47 47b 0.66 146.16 -60.94 47 47c 0.96 181.60 1.29 *FLAGS NOT SPLAY 47 48 1.62 127.59 7.41 *FLAGS SPLAY 48 48a 0.32 222.85 -13.13 48 48b 0.43 203.78 77.03 48 48c 0.71 106.46 -84.42 48 48d 6.38 143.21 1.27 48 48e 9.20 143.56 0.28 *FLAGS NOT SPLAY 45 49 2.40 265.00 1.41 *FLAGS SPLAY 49 49a 2.28 354.04 78.68 49 49b 0.52 198.25 -1.65 49 49c 0.89 19.99 9.05 49 49d 0.71 358.32 -81.38 49 49e 3.78 142.08 -59.73 *FLAGS NOT SPLAY 49 50 2.06 297.62 28.08 *FLAGS SPLAY 50 50a 0.69 36.66 83.53 50 50b 0.46 191.30 6.20 50 50c 0.76 186.66 -84.09 *FLAGS NOT SPLAY 50 51 2.38 317.24 16.74 *FLAGS SPLAY 51 51a 0.35 91.28 79.27 51 51b 0.67 44.19 5.41 51 51c 1.90 251.77 -12.45 51 51d 4.01 13.33 -82.25 *FLAGS NOT SPLAY 51 52 2.80 335.01 -5.36 *FLAGS SPLAY 52 52a 2.10 212.50 -9.20 52 52b 0.66 156.09 88.10 52 52c 1.10 206.43 -87.82 52 52d 0.70 140.09 -4.62 *FLAGS NOT SPLAY 52 53 8.00 77.58 15.81 52 54 2.99 251.79 -11.14 *FLAGS SPLAY 54 54a 1.50 7.07 14.17 54 54b 4.94 156.76 -77.22 54 54c 1.38 326.54 73.27 *FLAGS NOT SPLAY 54 55 2.75 287.69 -14.31 *FLAGS SPLAY 55 55a 0.48 212.28 8.16 55 55b 1.78 2.22 0.72 55 55c 1.25 356.97 51.33 55 55d 4.84 0.83 -70.83 55 55e 2.30 347.76 56.75 *FLAGS NOT SPLAY 55 56 6.04 280.29 -11.16 *FLAGS SPLAY 56 56a 2.58 173.80 -9.68 56 56b 0.91 210.62 72.78 56 56c 5.52 258.49 -78.70 56 56d 1.22 355.76 -2.47 *FLAGS NOT SPLAY 56 57 4.72 167.79 -69.81 *FLAGS SPLAY 57 57a 5.53 35.74 84.02 57 57b 1.48 358.49 5.81 57 57c 0.71 175.94 -0.18 57 57d 0.76 90.98 -86.28 *FLAGS NOT SPLAY 57 58 6.26 266.27 3.98 *FLAGS SPLAY 58 58a 0.91 320.07 6.44 58 58b 2.54 289.66 73.92 58 58c 2.05 155.98 1.05 58 58d 0.77 137.62 -73.53 58 58e 4.37 86.04 -33.48 *FLAGS NOT SPLAY 58 59 5.34 221.34 -28.43 *FLAGS SPLAY 59 59a 5.41 309.94 9.33 59 59b 1.86 144.63 3.09 59 59c 3.04 302.62 79.62 59 59d 0.68 132.99 -79.35 59 59e 4.71 353.28 -42.52 59 59f 2.89 67.97 28.72 59 59g 2.49 85.86 13.93 59 59h 2.95 112.78 22.54 59 59i 1.83 207.67 8.62 59 59j 5.28 237.30 -3.61 59 59k 5.32 272.91 -3.40 59 59l 3.22 8.05 23.97 *FLAGS NOT SPLAY 59 60 3.64 249.87 -18.27 *FLAGS SPLAY 60 60a 2.91 98.61 33.34 60 60b 4.04 127.08 30.32 60 60c 3.55 153.59 27.64 60 60d 5.46 181.97 11.17 60 60e 2.54 10.68 -16.02 60 60f 3.08 23.70 -10.67 60 60g 4.51 196.88 -31.47 *FLAGS NOT SPLAY 60 61 6.14 188.00 -36.35 *FLAGS SPLAY 61 61a 0.93 109.00 -3.73 61 61b 4.46 154.64 72.91 61 61c 3.27 191.41 -82.47 *FLAGS NOT SPLAY 61 62 1.04 31.64 -42.73 *data passage station left right up down 0 0.56 1.35 0.66 0.56 1 1.13 1.96 0.45 1.49 2 0.64 0.92 0.73 1.92 3 0.44 0.45 1.17 0.48 4 1.02 0.00 1.94 1.36 5 1.73 0.62 2.74 0.23 6 1.12 0.32 2.49 0.46 7 1.12 0.00 1.41 0.51 9 0.85 0.56 0.83 0.57 10 0.39 0.24 2.18 0.43 11 0.00 0.62 1.41 0.97 12 0.77 0.00 0.88 0.00 13 0.00 0.86 0.46 1.02 14 1.47 0.00 0.48 0.59 15 0.61 0.45 0.40 0.41 16 2.24 0.00 0.86 1.51 17 0.00 1.46 1.20 0.00 18 0.48 1.95 0.40 0.51 19 1.33 0.33 0.40 0.00 20 0.59 0.86 1.46 0.00 21 0.65 0.00 1.19 0.25 22 1.22 0.84 1.30 0.40 23 1.27 0.19 0.40 1.21 24 3.04 1.76 1.43 0.00 25 3.11 1.05 0.86 0.00 26 1.08 0.48 0.56 0.52 *data passage station left right up down 7 1.10 0.00 1.41 0.51 8 0.55 0.00 0.88 0.81 *data passage station left right up down 25 2.42 1.16 0.86 0.00 27 0.16 3.08 0.34 0.00 *data passage station left right up down 24 1.76 3.04 1.43 0.00 28 0.00 0.00 1.98 1.15 29 0.65 0.60 0.61 1.14 30 1.46 0.28 1.86 0.43 31 0.39 1.14 0.97 1.50 32 0.68 0.00 0.38 0.76 35 0.55 0.93 3.48 0.00 36 3.45 2.23 2.46 0.38 37 1.23 2.15 2.77 0.50 38 1.04 1.09 2.53 0.83 39 2.01 1.86 0.80 0.31 40 0.58 0.42 0.40 0.00 41 0.98 0.71 1.17 0.00 42 1.03 0.18 0.28 0.00 *data passage station left right up down 31 0.43 1.37 0.97 1.50 34 0.00 1.36 1.60 0.71 35 0.93 0.55 3.48 0.00 43 0.63 0.60 2.82 1.69 45 1.00 0.26 2.12 0.91 49 1.24 0.87 2.24 0.70 50 0.41 0.00 0.69 0.76 51 1.79 0.65 0.34 3.97 52 1.39 0.00 0.66 1.10 54 0.00 1.44 1.32 4.82 55 0.45 1.74 1.92 4.57 56 0.00 0.91 0.87 5.41 57 0.47 0.00 5.50 0.76 58 2.05 0.88 2.44 0.74 59 2.29 5.14 2.99 0.67 60 3.49 1.16 1.60 2.35 61 0.00 0.00 4.26 3.24 *data passage station left right up down 46 0.00 1.08 0.73 0.00 47 0.00 0.00 1.09 0.58 48 0.00 2.53 0.42 0.71 *END LongDryWay *BEGIN ShortDryWay *EQUATE pt1.13 pt2.0 *BEGIN pt1 *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 1.43 131.61 -13.25 *FLAGS SPLAY 1 1a 1.42 311.07 12.80 1 1b 0.58 327.33 -0.57 1 1c 0.94 171.13 -6.41 1 1d 0.50 258.56 -34.18 *FLAGS NOT SPLAY 1 2 3.89 73.29 -51.63 *FLAGS SPLAY 2 2a 3.91 252.77 52.00 2 2b 0.91 252.72 -4.04 2 2c 0.80 250.31 -35.24 2 2d 2.44 239.99 47.81 *FLAGS NOT SPLAY 2 3 4.50 170.72 19.68 *FLAGS SPLAY 3 3a 4.46 350.50 -20.39 3 3b 0.46 71.39 -4.30 3 3c 0.39 251.63 -13.19 3 3d 1.54 358.12 82.08 3 3e 0.94 170.44 -79.46 3 3f 0.45 220.38 -6.59 *FLAGS NOT SPLAY 3 4 1.11 246.49 -14.16 *FLAGS SPLAY 4 4a 0.68 212.13 -85.64 4 4b 0.28 4.71 4.35 4 4c 0.60 345.93 65.79 4 4d 2.84 294.88 -9.50 *FLAGS NOT SPLAY 2 5 4.91 323.66 2.34 *FLAGS SPLAY 5 5a 4.91 143.73 -2.57 5 5b 0.74 236.15 -6.85 5 5c 0.87 46.77 -82.61 5 5d 1.68 227.27 67.16 5 5e 1.03 103.39 -8.81 5 5f 2.18 148.83 -2.53 *FLAGS NOT SPLAY 5 6 5.05 279.35 -25.23 *FLAGS SPLAY 6 6a 5.05 99.27 25.32 6 6b 0.58 34.79 1.49 6 6c 1.16 111.26 -85.03 6 6d 2.83 16.27 74.62 6 6e 2.60 99.05 2.63 6 6f 2.79 105.09 4.91 *FLAGS NOT SPLAY 6 7 5.02 336.36 -13.85 *FLAGS SPLAY 7 7a 5.00 156.87 13.29 7 7b 0.41 231.77 -3.06 7 7c 3.73 254.43 80.33 7 7d 0.54 182.41 -84.02 7 7e 2.55 328.39 -82.67 *FLAGS NOT SPLAY 7 8 3.19 303.08 -33.11 *FLAGS SPLAY 8 8a 3.21 123.01 33.05 8 8b 0.53 23.07 -5.56 8 8c 4.46 353.35 80.60 8 8d 1.45 224.40 -78.95 8 8e 1.87 72.08 1.35 *FLAGS NOT SPLAY 8 9 6.71 295.69 -12.15 *FLAGS SPLAY 9 9a 6.72 115.55 11.83 9 9b 0.56 196.48 2.10 9 9c 1.16 244.84 81.25 9 9d 1.09 201.63 -76.54 9 9e 3.56 117.58 -4.92 *FLAGS NOT SPLAY 9 10 1.11 265.93 2.35 *FLAGS SPLAY 10 10a 1.10 86.87 -3.67 10 10b 0.45 26.25 1.63 10 10c 1.16 88.18 -83.85 10 10d 0.84 103.85 84.38 *FLAGS NOT SPLAY 10 11 4.30 323.22 3.80 *FLAGS SPLAY 11 11a 4.28 143.46 -4.52 11 11b 0.57 212.81 2.62 11 11c 2.07 237.99 81.23 11 11d 1.72 204.15 -67.89 *FLAGS NOT SPLAY 11 12 3.28 275.99 -17.30 *FLAGS SPLAY 12 12a 3.28 96.34 17.39 12 12b 0.52 17.73 -1.02 12 12c 0.81 128.05 -86.09 12 12d 1.79 345.81 78.34 *FLAGS NOT SPLAY 12 13 4.68 298.00 -3.29 *FLAGS SPLAY 13 13a 4.68 118.39 3.00 13 13b 0.57 34.60 -3.75 13 13c 0.38 17.11 84.09 13 13d 0.72 158.62 -86.15 13 13e 2.72 321.69 70.91 *FLAGS NOT SPLAY *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 0.41 0.87 0.00 0.28 2 0.00 1.63 1.81 0.46 3 0.31 0.26 1.53 0.92 4 0.00 2.09 0.55 0.68 *data passage station left right up down 2 1.63 0.00 1.81 0.46 5 1.00 0.32 1.55 0.86 6 0.00 1.25 2.73 1.16 7 0.41 0.00 3.68 0.54 8 0.00 1.37 4.40 1.42 9 1.02 0.00 1.15 1.06 10 0.00 0.45 0.84 1.15 11 0.64 0.00 2.05 1.59 12 0.00 0.52 1.75 0.81 13 0.00 0.57 0.38 0.72 *END pt1 *BEGIN pt2 *DATE 2013.02.24 *CALIBRATE declination 1.63 *FLAGS SPLAY 0 0a 0.57 34.03 -0.51 0 0b 0.76 110.14 -85.72 0 0c 2.74 327.08 86.41 *FLAGS NOT SPLAY 0 1 3.20 316.66 0.98 *FLAGS SPLAY 1 1a 3.22 136.76 -1.39 1 1b 0.57 38.38 3.06 1 1c 1.47 103.34 -84.18 1 1d 2.40 260.62 87.93 *FLAGS NOT SPLAY 1 2 7.10 308.84 -15.08 *FLAGS SPLAY 2 2a 7.10 128.55 14.54 2 2b 0.66 194.88 1.13 2 2c 2.89 349.78 82.91 2 2d 0.88 179.54 -65.42 *FLAGS NOT SPLAY 2 3 4.24 278.91 -12.53 *FLAGS SPLAY 3 3a 4.21 98.44 12.28 3 3b 3.16 81.24 88.43 3 3c 0.77 354.83 -84.93 *FLAGS NOT SPLAY *data passage station left right up down 0 0.00 0.56 2.73 0.76 1 0.00 0.57 2.40 1.46 2 0.65 0.00 2.87 0.80 3 0.00 0.00 3.16 0.77 *END pt2 *END ShortDryWay *BEGIN NewGrottoes *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 1.56 49.36 7.27 *FLAGS SPLAY 1 1a 0.50 331.16 9.17 1 1b 0.40 271.22 77.61 1 1c 0.73 254.64 -87.94 1 1d 0.61 352.02 40.11 1 1e 0.56 43.52 51.47 *FLAGS NOT SPLAY 1 2 1.75 10.53 51.20 *FLAGS SPLAY 2 2a 1.76 189.76 -51.66 2 2b 0.29 258.50 0.35 2 2c 0.88 338.65 -79.23 2 2d 0.70 150.96 76.26 *FLAGS NOT SPLAY 2 3 4.07 347.52 12.12 *FLAGS SPLAY 3 3a 4.11 169.15 -12.51 3 3b 4.10 169.13 -12.74 3 3c 1.83 347.89 14.57 3 3d 0.96 250.24 -6.20 3 3e 0.41 84.04 87.54 3 3f 0.44 216.05 -86.92 3 3g 0.82 148.72 -10.96 3 3h 1.22 190.30 -16.89 *FLAGS NOT SPLAY 3 4 3.62 50.60 25.22 *FLAGS SPLAY 4 4a 3.63 230.43 -25.57 4 4b 0.43 348.10 4.44 4 4c 1.63 170.52 -5.86 4 4d 0.89 61.11 -81.94 4 4e 2.11 344.82 -7.61 *FLAGS NOT SPLAY 4 5 3.25 67.67 12.62 *FLAGS SPLAY 5 5a 3.28 247.14 -13.26 5 5b 0.25 323.66 84.61 5 5c 0.95 170.46 5.78 5 5d 2.13 330.90 -6.07 5 5e 0.77 222.68 -84.36 *FLAGS NOT SPLAY 5 6 3.45 56.57 19.52 *FLAGS SPLAY 6 6a 3.49 237.94 -19.53 6 6b 1.42 154.07 -15.19 6 6c 0.56 71.63 -87.16 6 6d 0.62 341.85 -3.41 6 6e 2.15 233.89 -20.79 6 6f 4.02 168.54 2.89 6 6g 2.44 124.70 10.45 6 6h 1.87 106.22 14.43 6 6i 2.75 182.55 1.05 *FLAGS NOT SPLAY 6 7 1.42 151.95 -12.13 *FLAGS SPLAY 7 7a 1.42 329.66 11.34 7 7b 1.55 42.07 39.53 7 7c 3.00 180.55 4.65 7 7d 0.89 354.61 85.36 7 7e 0.44 28.33 -87.65 *FLAGS NOT SPLAY 7 8 6.30 84.91 26.43 *FLAGS SPLAY 8 8a 0.81 355.74 6.08 8 8b 0.32 173.04 9.98 8 8c 0.19 349.50 82.00 8 8d 0.36 157.86 -75.31 *FLAGS NOT SPLAY *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 0.42 0.08 0.39 0.73 2 0.29 0.00 0.68 0.86 3 0.92 0.62 0.41 0.44 4 2.01 1.51 0.00 0.88 5 2.12 0.90 0.25 0.77 6 0.52 3.62 0.00 0.56 7 1.16 2.64 0.89 0.44 8 0.81 0.31 0.19 0.35 *END NewGrottoes *BEGIN OldGrotto2WC *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 3.32 25.03 -14.33 *FLAGS SPLAY 1 1a 3.26 206.41 14.30 1 1b 0.98 315.03 -8.83 1 1c 0.76 174.77 -0.38 1 1d 2.49 219.51 -12.94 1 1e 1.90 280.22 -27.03 *FLAGS NOT SPLAY 1 2 5.70 255.27 -30.20 *FLAGS SPLAY 2 2a 5.71 74.10 29.84 2 2b 1.06 162.52 -1.36 2 2c 1.22 220.20 80.94 2 2d 0.39 332.89 1.22 2 2e 1.14 198.72 -82.80 *FLAGS NOT SPLAY 2 3 3.09 201.53 -10.26 *FLAGS SPLAY 3 3a 3.10 20.12 10.18 3 3b 1.30 263.57 -6.52 3 3c 0.93 284.07 -86.47 3 3d 0.93 75.35 -2.53 3 3e 0.32 234.48 85.69 *FLAGS NOT SPLAY 3 4 4.55 164.72 -15.92 *FLAGS SPLAY 4 4a 4.52 344.84 15.77 4 4b 0.61 258.46 -2.19 4 4c 0.63 86.33 -2.22 4 4d 5.53 284.88 86.05 4 4e 2.47 181.69 -82.25 *FLAGS NOT SPLAY 4 5 2.38 199.29 -26.79 *FLAGS SPLAY 5 5a 2.37 18.11 26.15 5 5b 0.82 318.06 0.68 5 5c 0.73 143.34 2.75 5 5d 5.25 191.96 83.34 5 5e 1.53 247.03 -88.07 *FLAGS NOT SPLAY 5 6 6.29 239.56 -9.79 *FLAGS SPLAY 6 6a 6.26 58.58 9.67 6 6b 1.26 349.18 -5.78 6 6c 1.45 42.58 -84.89 6 6d 0.23 174.05 2.52 6 6e 4.36 340.22 65.14 *FLAGS NOT SPLAY 6 7 7.66 284.16 -7.14 *FLAGS SPLAY 7 7a 7.65 104.12 6.94 7 7b 1.11 184.42 -3.02 7 7c 1.22 315.42 -87.56 7 7d 5.90 284.36 87.68 *FLAGS NOT SPLAY 7 8 2.58 224.20 -8.54 *FLAGS SPLAY 8 8a 2.58 43.16 8.82 8 8b 1.49 307.59 -0.90 8 8c 5.16 259.48 81.94 8 8d 1.06 108.65 -87.34 *FLAGS NOT SPLAY 8 9 6.80 205.89 -6.51 *FLAGS SPLAY 9 9a 6.77 24.81 6.09 9 9b 1.40 71.99 -5.17 9 9c 3.44 82.58 71.46 9 9d 1.27 18.89 -83.92 *FLAGS NOT SPLAY 9 10 2.09 108.56 -5.31 *FLAGS SPLAY 10 10a 2.12 289.79 4.09 10 10b 1.18 243.19 -9.20 10 10c 1.15 300.27 -85.48 10 10d 5.46 281.63 67.93 *FLAGS NOT SPLAY 10 11 7.85 204.84 6.96 *FLAGS SPLAY 11 11a 7.85 23.37 -7.47 11 11b 4.04 20.69 -17.03 11 11c 4.08 31.33 -11.00 11 11d 3.58 122.93 1.76 11 11e 5.02 146.17 5.40 11 11f 3.82 258.28 -10.90 11 11g 3.95 291.06 -0.53 11 11h 5.88 341.35 -3.35 11 11i 6.54 332.39 -2.75 11 11j 3.22 124.37 87.58 11 11k 1.02 81.55 -78.82 *FLAGS NOT SPLAY *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 2.39 0.00 0.00 0.86 2 0.97 0.38 1.20 1.13 3 0.88 1.27 0.32 0.93 4 0.63 0.59 5.52 2.45 5 0.71 0.81 5.21 1.53 6 0.23 1.80 3.96 1.44 7 1.04 0.00 5.90 1.22 8 0.00 1.49 5.11 1.06 9 1.39 0.00 3.26 1.26 10 0.00 1.68 5.06 1.15 11 4.27 5.18 3.22 1.00 *END OldGrotto2WC *BEGIN FortyRoute *DATE 2013.06.29 *CALIBRATE declination 1.58 *FLAGS SPLAY 0 0a 1.22 222.85 -1.27 0 0b 1.46 156.87 -86.76 0 0c 1.04 248.22 75.18 *FLAGS NOT SPLAY 0 1 2.76 327.91 18.03 *FLAGS SPLAY 1 1a 2.78 146.77 -18.73 1 1b 0.75 233.19 -9.76 1 1c 3.76 236.60 -61.01 1 1d 5.96 283.50 83.29 *FLAGS NOT SPLAY 1 2 5.35 306.91 5.35 *FLAGS SPLAY 2 2a 5.34 127.04 -5.34 2 2b 0.93 37.11 -9.90 2 2c 0.20 232.85 8.71 2 2d 0.77 47.20 -45.75 2 2e 5.18 303.14 -81.62 2 2f 2.15 89.72 81.91 *FLAGS NOT SPLAY 2 3 3.55 321.41 38.17 *FLAGS SPLAY 3 3a 3.53 140.66 -38.25 3 3b 0.25 241.41 3.91 3 3c 0.79 64.43 3.52 3 3d 2.35 116.75 81.52 3 3e 0.76 47.06 -63.29 3 3f 3.35 110.73 -74.59 3 3g 7.46 126.02 -72.97 *FLAGS NOT SPLAY 3 4 1.12 7.71 3.63 *FLAGS SPLAY 4 4a 1.10 186.02 -4.47 4 4b 0.67 231.66 -2.98 4 4c 2.21 239.56 80.82 4 4d 0.66 261.89 -73.67 *FLAGS NOT SPLAY 4 5 1.06 263.40 33.43 *FLAGS SPLAY 5 5a 1.05 82.92 -33.40 5 5b 0.57 40.65 -2.91 5 5c 1.16 37.56 -82.40 5 5d 1.63 42.68 77.79 *FLAGS NOT SPLAY 5 6 2.53 351.94 5.11 *FLAGS SPLAY 6 6a 2.52 171.57 -5.45 6 6b 0.49 251.10 -0.42 6 6c 1.24 242.62 -65.46 6 6d 1.46 223.45 74.25 *FLAGS NOT SPLAY 6 7 2.96 317.31 -3.31 *FLAGS SPLAY 7 7a 2.94 137.40 3.36 7 7b 0.49 69.22 2.25 7 7c 1.67 337.77 83.13 7 7d 1.64 62.33 -86.14 *FLAGS NOT SPLAY 7 8 5.25 326.28 -29.19 *FLAGS SPLAY 8 8a 5.24 144.41 28.59 8 8b 0.86 189.62 -3.22 8 8c 0.38 17.72 -13.79 8 8d 1.17 125.13 -68.29 8 8e 1.74 198.87 87.16 8 8f 1.48 138.91 36.33 8 8g 1.35 154.31 37.64 8 8h 1.31 145.24 3.36 8 8i 1.68 357.07 -42.58 8 8j 0.97 289.48 -24.64 *FLAGS NOT SPLAY 8 9 1.45 273.15 -22.26 *FLAGS SPLAY 9 9a 1.43 93.33 24.76 9 9b 0.34 20.18 -0.69 9 9c 1.39 262.30 -4.33 9 9d 0.77 190.18 -1.47 9 9e 4.31 268.96 75.35 9 9f 0.52 82.52 -53.29 9 9g 2.71 169.49 -81.00 *FLAGS NOT SPLAY 9 10 7.65 252.29 -71.60 *FLAGS SPLAY 10 10a 7.66 71.90 71.88 10 10b 2.79 105.38 2.13 10 10c 1.94 102.39 -80.10 10 10d 2.30 52.40 -8.53 *FLAGS NOT SPLAY 10 11 2.32 146.39 -8.38 *FLAGS SPLAY 11 11a 2.33 327.27 7.87 11 11b 2.32 327.44 7.88 11 11c 1.58 246.33 79.18 11 11d 1.73 335.02 -87.87 11 11e 0.62 102.51 -8.28 11 11f 0.98 265.19 1.62 *FLAGS NOT SPLAY *data passage station left right up down 0 1.18 0.00 1.01 1.46 1 1.80 0.00 5.92 3.29 2 0.20 0.91 2.13 5.12 3 0.24 0.78 2.32 3.23 4 0.67 0.00 2.18 0.63 5 0.00 0.57 1.59 1.15 6 0.51 0.00 1.41 1.13 7 0.00 0.47 1.66 1.64 8 0.81 1.04 1.74 1.09 9 0.73 0.30 4.17 2.68 10 2.78 0.00 0.00 1.91 11 0.43 0.86 1.55 1.73 *END FortyRoute *BEGIN WaterRift *DATE 2013.06.29 *CALIBRATE declination 1.58 *FLAGS SPLAY 0 0a 5.35 17.95 22.62 0 0b 4.13 22.58 -15.64 0 0c 8.42 335.52 5.44 0 0d 8.89 333.03 6.81 0 0e 5.30 346.43 8.54 0 0f 5.13 294.43 17.44 0 0g 7.66 281.52 0.94 0 0h 6.92 262.96 5.04 0 0i 6.86 253.61 5.31 0 0j 5.23 247.20 7.41 0 0k 3.51 202.89 21.45 0 0l 5.06 195.97 22.67 0 0m 6.28 160.68 22.30 0 0n 8.67 132.59 16.67 0 0o 6.28 121.89 11.57 0 0p 3.27 114.10 12.54 *FLAGS NOT SPLAY 0 1 5.77 334.28 -11.88 *FLAGS SPLAY 1 1a 5.76 154.47 11.49 1 1b 1.98 166.16 -38.83 1 1c 3.75 244.92 84.64 1 1d 1.82 180.79 -73.82 *FLAGS NOT SPLAY 1 2 4.33 195.52 -26.62 *FLAGS SPLAY 2 2a 4.32 13.06 26.42 2 2b 0.76 316.99 -3.19 2 2c 0.28 114.54 1.61 2 2d 1.02 123.59 -85.18 2 2e 0.70 2.62 84.20 2 2f 4.92 233.56 80.23 *FLAGS NOT SPLAY 2 3 6.36 270.39 -36.08 *FLAGS SPLAY 3 3a 6.38 90.74 35.86 3 3b 7.22 164.95 87.99 3 3c 1.50 350.89 -85.48 3 3d 0.60 17.37 -5.81 3 3e 4.37 94.08 26.89 3 3f 2.04 96.97 2.01 *FLAGS NOT SPLAY 3 4 1.54 305.04 -17.83 *FLAGS SPLAY 4 4a 1.56 124.70 18.36 4 4b 1.18 214.55 -3.95 4 4c 1.80 281.84 -85.97 4 4d 0.92 184.19 78.11 4 4e 5.88 261.80 85.59 *FLAGS NOT SPLAY 4 5 4.45 302.01 -20.17 *FLAGS SPLAY 5 5a 4.45 122.05 20.68 5 5b 0.66 42.61 -0.43 5 5c 0.79 295.82 80.77 5 5d 3.44 40.04 71.75 5 5e 1.19 159.77 -84.25 *FLAGS NOT SPLAY 5 6 2.13 320.38 -11.71 *FLAGS SPLAY 6 6a 2.12 139.96 12.80 6 6b 0.40 65.25 1.27 6 6c 1.37 29.54 74.80 6 6d 0.97 226.69 -87.04 6 6e 1.93 9.54 -74.91 *FLAGS NOT SPLAY 6 7 5.02 333.92 -11.98 *FLAGS SPLAY 7 7a 5.07 155.07 11.54 7 7b 0.32 233.46 -2.11 7 7c 3.09 147.72 83.95 7 7d 1.42 334.08 -84.41 *FLAGS NOT SPLAY 7 8 1.63 323.46 -34.24 *FLAGS SPLAY 8 8a 1.65 141.45 35.60 8 8b 0.74 242.86 -4.71 8 8c 2.20 121.85 85.11 8 8d 0.57 265.91 -86.27 *FLAGS NOT SPLAY 8 9 6.72 325.55 -5.61 *FLAGS SPLAY 9 9a 6.71 148.04 5.85 9 9b 0.67 85.11 -3.81 9 9c 1.21 68.18 77.77 9 9d 0.38 45.26 -87.04 *FLAGS NOT SPLAY 9 10 2.39 1.38 10.24 *FLAGS SPLAY 10 10a 2.40 179.07 -10.67 10 10b 0.87 224.61 -18.06 10 10c 2.55 202.57 79.97 10 10d 1.00 211.64 -85.65 10 10e 1.28 263.59 -11.49 10 10f 1.20 324.42 7.72 *FLAGS NOT SPLAY 10 11 3.73 245.25 -24.06 *FLAGS SPLAY 11 11a 3.72 63.01 24.03 11 11b 1.16 6.02 4.03 11 11c 0.49 155.26 4.00 11 11d 2.42 200.28 -80.22 11 11e 10.92 339.54 83.66 *FLAGS NOT SPLAY 11 12 1.75 211.67 -24.54 *FLAGS SPLAY 12 12a 1.74 34.17 24.31 12 12b 0.94 259.38 1.16 12 12c 0.59 89.49 -3.42 12 12d 1.75 155.02 -82.92 12 12e 1.64 258.51 84.25 *FLAGS NOT SPLAY 12 13 8.34 181.38 -8.14 *FLAGS SPLAY 13 13a 8.39 2.63 8.00 13 13b 0.85 281.78 -0.49 13 13c 3.43 284.92 82.46 13 13d 0.81 114.24 -89.45 13 13e 0.20 95.00 3.81 *FLAGS NOT SPLAY 13 14 4.39 179.79 -2.78 *FLAGS SPLAY 14 14a 4.39 357.83 2.72 14 14b 1.53 261.41 0.73 14 14c 3.11 221.34 84.26 14 14d 0.84 76.55 -85.25 *FLAGS NOT SPLAY 14 15 7.89 176.25 -1.64 *FLAGS SPLAY 15 15a 7.89 354.31 1.68 15 15b 0.39 271.84 -0.76 15 15c 0.43 81.78 2.27 15 15d 0.98 17.06 -84.71 15 15e 3.06 326.61 82.70 *FLAGS NOT SPLAY 15 16 4.52 194.00 -4.00 *FLAGS SPLAY 16 16a 4.55 11.12 3.98 16 16b 1.39 8.20 -1.40 16 16c 1.31 314.18 0.17 16 16d 2.88 210.72 3.57 16 16e 2.19 158.12 24.87 16 16f 3.69 159.38 30.12 16 16g 1.68 80.18 14.09 16 16h 1.36 3.78 83.92 16 16i 0.91 118.43 -86.27 *FLAGS NOT SPLAY *data passage station left right up down 0 6.74 3.41 1.95 0.00 1 1.52 0.00 3.73 1.75 2 0.25 0.75 0.70 1.02 3 0.00 0.60 7.22 1.50 4 1.18 0.00 5.86 1.80 5 0.00 0.66 0.78 1.18 6 0.00 0.40 1.32 0.97 7 0.32 0.00 3.07 1.41 8 0.73 0.00 2.19 0.57 9 0.00 0.65 1.18 0.38 10 0.81 0.43 2.51 1.00 11 0.47 0.78 10.85 2.38 12 0.56 0.84 1.63 1.74 13 0.20 0.83 3.40 0.81 14 0.00 1.52 3.09 0.84 15 0.42 0.39 3.04 0.98 16 1.81 1.13 1.35 0.91 *END WaterRift *BEGIN 10 *DATE 2013.06.30 *CALIBRATE declination 1.58 *FLAGS SPLAY 0 0a 0.79 122.45 -3.92 0 0b 0.82 125.25 -80.01 0 0c 1.02 113.36 59.45 *FLAGS NOT SPLAY 0 1 2.19 193.96 16.02 *FLAGS SPLAY 1 1a 0.60 276.70 12.05 1 1b 1.13 263.53 84.69 1 1c 0.86 340.30 -87.68 1 1d 0.22 130.33 11.67 *FLAGS NOT SPLAY 1 2 1.14 228.14 32.64 *FLAGS SPLAY 2 2a 0.70 84.60 -2.91 2 2b 0.51 245.48 7.63 2 2c 0.88 181.29 75.58 2 2d 1.15 205.42 -86.76 *FLAGS NOT SPLAY 2 3 3.27 163.30 -22.86 *FLAGS SPLAY 3 3a 0.64 68.81 -0.15 3 3b 1.80 103.28 -83.45 3 3c 1.69 279.44 83.39 3 3d 1.80 104.43 -50.09 3 3e 0.90 125.15 -23.23 3 3f 0.84 162.44 -25.10 3 3g 0.53 177.50 -0.32 *FLAGS NOT SPLAY 3 4 6.91 267.13 3.53 *FLAGS SPLAY 4 4a 0.55 178.10 2.86 4 4b 0.33 358.62 9.99 4 4c 0.38 76.20 84.09 4 4d 0.44 211.43 -83.57 *FLAGS NOT SPLAY 3 5 2.54 190.56 -63.18 *FLAGS SPLAY 5 5a 0.60 308.44 -0.68 5 5b 0.72 295.04 -61.80 *FLAGS NOT SPLAY 5 6 4.59 251.07 -25.44 *FLAGS SPLAY 6 6a 1.06 89.99 22.23 6 6b 0.26 275.62 12.96 6 6c 0.49 129.38 84.49 6 6d 1.44 31.18 16.46 *FLAGS NOT SPLAY 6 7 2.94 167.27 7.15 *FLAGS SPLAY 7 7a 1.29 326.65 -21.82 7 7b 0.99 316.84 -22.29 7 7c 0.76 256.67 -44.96 7 7d 0.98 216.45 -34.57 7 7e 0.19 302.09 85.19 7 7f 1.57 162.77 -85.97 *FLAGS NOT SPLAY 7 8 3.72 165.59 -0.44 *FLAGS SPLAY 8 8a 0.75 39.89 9.56 8 8b 0.42 37.36 78.00 8 8c 1.07 126.50 -89.16 *FLAGS NOT SPLAY 8 9 2.10 111.50 19.76 *FLAGS SPLAY 9 9a 0.90 221.02 0.31 9 9b 1.10 120.62 -83.53 9 9c 0.21 316.09 84.80 9 9d 0.25 17.06 -3.95 9 9e 1.74 167.67 -7.64 9 9f 1.77 152.97 -6.07 9 9g 3.17 165.43 5.99 9 9h 2.88 146.54 8.77 9 9i 2.84 106.66 13.82 9 9j 1.24 97.33 -8.06 *FLAGS NOT SPLAY 9 10 7.71 161.72 1.86 *FLAGS SPLAY 10 10a 0.46 262.62 2.57 10 10b 0.36 13.53 -1.36 10 10c 0.65 315.92 77.50 10 10d 0.63 99.67 -84.98 *FLAGS NOT SPLAY 10 11 2.16 102.08 5.76 9 12 8.35 93.72 17.83 *FLAGS SPLAY 12 12a 1.67 330.14 -0.55 12 12b 0.52 155.45 -0.04 12 12c 0.44 246.87 82.62 12 12d 0.44 67.03 -84.94 *FLAGS NOT SPLAY 12 13 4.34 9.47 9.01 *FLAGS SPLAY 13 13a 0.79 243.90 -9.22 13 13b 0.90 67.62 -18.81 13 13c 0.65 256.16 -85.98 *FLAGS NOT SPLAY 13 14 2.15 152.81 2.05 *FLAGS SPLAY 14 14a 3.84 296.58 51.55 14 14b 4.81 296.42 51.44 14 14c 3.83 296.46 51.33 *FLAGS NOT SPLAY 13 15 3.68 88.63 11.54 *FLAGS SPLAY 15 15a 1.22 317.35 3.30 15 15b 0.85 119.43 28.64 15 15c 0.50 294.64 80.22 15 15d 0.30 71.24 -88.13 15 15e 0.53 327.66 -14.96 15 15f 0.25 257.11 80.01 *FLAGS NOT SPLAY 15 16 5.88 47.35 18.38 *FLAGS SPLAY 16 16a 0.54 335.23 0.80 16 16b 1.45 160.46 6.63 16 16c 0.27 280.29 80.80 *FLAGS NOT SPLAY 16 17 5.34 79.73 18.79 *FLAGS SPLAY 17 17a 1.70 8.32 14.34 17 17b 2.11 303.47 88.21 17 17c 0.65 314.37 -88.24 17 17d 0.83 195.12 7.12 17 17e 2.82 295.58 -11.71 17 17f 2.08 255.83 -15.91 17 17g 1.17 134.29 25.92 17 17h 2.06 89.62 30.46 17 17i 1.20 51.23 52.50 17 17j 3.76 32.80 57.89 17 17k 0.98 313.51 23.51 3 3x 0.37 221.12 0.55 *FLAGS NOT SPLAY 3 18 1.80 104.97 -49.81 *FLAGS SPLAY 18 18a 0.78 175.26 4.50 18 18b 0.26 37.36 24.21 18 18c 0.31 183.81 49.92 *FLAGS NOT SPLAY 14 20 3.88 295.15 51.22 *data passage station left right up down 0 0.75 0.00 0.88 0.81 1 0.21 0.53 1.13 0.86 2 0.65 0.39 0.85 1.15 3 0.65 0.26 1.68 1.79 5 0.00 0.60 0.00 0.63 6 0.86 0.23 0.49 0.00 7 0.00 0.62 0.19 1.57 8 0.73 0.00 0.41 1.07 9 1.38 1.52 0.21 1.09 10 0.32 0.35 0.63 0.63 *data passage station left right up down 3 0.70 0.29 1.68 1.79 4 0.55 0.32 0.38 0.44 *data passage station left right up down 9 0.25 2.80 0.21 1.09 12 1.65 0.50 0.44 0.44 13 0.20 0.00 0.00 0.65 15 1.14 0.58 0.49 0.30 16 0.54 1.43 0.27 0.00 17 1.62 0.86 2.11 0.65 *data passage station left right up down 13 0.00 0.43 0.00 0.65 14 0.00 2.86 3.76 0.00 *data passage station left right up down 3 0.29 0.70 1.68 1.79 18 0.22 0.73 0.24 0.00 *END 10 *BEGIN 20 *DATE 2013.06.30 *CALIBRATE declination 1.58 0 1 3.87 261.79 -26.31 1 2 2.55 125.69 -19.31 *FLAGS SPLAY 2 2a 0.91 250.27 7.92 2 2b 0.77 171.08 -87.61 2 2c 0.81 255.66 49.75 2 2d 0.24 67.33 -0.18 2 2e 3.81 229.59 62.45 *FLAGS NOT SPLAY 2 3 5.29 150.86 -7.60 *FLAGS SPLAY 3 3a 0.98 5.09 -20.60 3 3b 0.45 330.90 23.74 3 3c 1.15 347.72 -26.49 *FLAGS NOT SPLAY 3 4 1.83 63.94 -43.21 *FLAGS SPLAY 4 4a 0.88 254.64 -4.95 4 4b 0.31 92.19 22.06 4 4c 0.77 180.62 67.03 4 4d 0.57 170.18 -74.58 *FLAGS NOT SPLAY 4 5 3.13 176.57 -12.17 *FLAGS SPLAY 5 5a 0.89 62.62 28.28 5 5b 0.61 237.44 -20.17 5 5c 0.89 293.48 79.22 5 5d 0.56 337.49 -44.42 *FLAGS NOT SPLAY 5 6 1.40 257.65 -52.47 *FLAGS SPLAY 6 6a 0.52 318.37 75.96 6 6b 0.35 16.99 1.82 6 6c 0.19 324.08 -71.45 *FLAGS NOT SPLAY 6 7 2.40 284.49 -13.04 *FLAGS SPLAY 7 7a 0.40 195.25 -1.25 7 7b 0.32 213.01 45.13 7 7c 0.42 157.49 -56.01 *FLAGS NOT SPLAY 3 8 2.58 64.30 1.85 *FLAGS SPLAY 8 8a 0.98 338.09 -7.20 8 8b 1.33 152.73 8.89 8 8c 0.38 331.75 81.25 8 8d 1.90 340.12 -69.71 8 8e 0.89 274.97 -54.79 8 8f 1.08 232.73 0.66 *FLAGS NOT SPLAY 8 9 2.80 61.94 1.42 *FLAGS SPLAY 9 9a 2.81 191.74 9.89 9 9b 2.16 134.18 25.75 9 9c 2.16 50.11 -6.32 9 9d 1.26 6.31 -16.99 9 9e 1.13 289.11 75.43 9 9f 2.72 79.01 66.64 9 9g 0.85 267.86 -82.70 *FLAGS NOT SPLAY 9 10 5.67 274.30 -29.92 *FLAGS SPLAY 10 10a 0.67 2.50 88.13 10 10b 0.23 135.92 -83.36 10 10c 1.22 201.08 3.08 10 10d 3.64 11.56 12.96 10 10e 1.92 335.12 9.74 10 10f 2.38 307.32 -7.29 *FLAGS NOT SPLAY 10 11 4.21 315.24 -5.18 *FLAGS SPLAY 11 11a 0.55 90.17 -18.10 11 11b 0.85 207.55 -12.11 11 11c 0.48 85.91 -82.18 11 11d 1.30 348.21 -63.09 *FLAGS NOT SPLAY 11 12 0.46 277.24 -49.35 *FLAGS SPLAY 12 12a 0.21 238.72 1.25 *FLAGS NOT SPLAY 12 13 2.99 11.93 3.89 *FLAGS SPLAY 13 13a 1.42 174.80 78.06 13 13b 0.30 315.88 -80.15 13 13c 2.31 246.88 74.77 13 13d 1.56 189.37 17.65 13 13e 3.02 211.37 -11.39 13 13f 3.15 248.27 -16.57 13 13g 1.77 297.77 -6.34 13 13h 3.86 328.15 -4.42 13 13i 4.28 343.90 -3.07 13 13j 3.09 19.95 6.70 13 13k 4.26 37.78 13.46 13 13l 3.80 64.26 16.75 13 13m 4.72 82.28 18.14 13 13n 1.83 98.00 23.43 *FLAGS NOT SPLAY 13 14 1.51 326.89 1.17 *FLAGS SPLAY 13 13a 1.80 134.62 18.89 *FLAGS NOT SPLAY 13 15 4.27 118.28 31.59 *FLAGS SPLAY 15 15a 2.10 311.12 -18.89 15 15b 0.29 304.38 72.17 15 15c 0.86 355.38 -83.90 15 15d 1.91 225.82 -10.33 *FLAGS NOT SPLAY 15 16 2.48 36.12 13.37 *FLAGS SPLAY 16 16a 0.50 296.88 -8.43 16 16b 1.10 323.19 -84.96 16 16c 1.15 357.90 17.17 16 16d 1.74 355.61 -47.54 16 16e 3.34 281.30 -47.10 *FLAGS NOT SPLAY 16 17 3.13 327.92 82.94 *FLAGS SPLAY 17 17a 0.72 273.55 72.14 17 17b 0.51 284.99 -34.65 *FLAGS NOT SPLAY 17 18 1.35 214.32 -12.67 18 19 2.43 231.25 22.63 13 20 2.14 331.93 -1.84 *FLAGS SPLAY 20 20a 1.14 42.18 -54.87 20 20b 1.18 122.45 -68.05 20 20c 0.36 67.41 74.28 20 20d 1.30 38.86 -71.88 20 20e 1.14 43.52 -52.40 *FLAGS NOT SPLAY 20 21 2.84 49.23 -61.41 *FLAGS SPLAY 21 21a 0.38 306.70 3.51 21 21b 0.58 42.06 -16.72 21 21c 0.36 346.21 52.74 *FLAGS NOT SPLAY 21 22 1.87 345.57 -9.57 *FLAGS SPLAY 22 22a 1.17 258.11 42.02 22 22b 0.37 242.14 -55.73 22 22c 0.36 39.38 -52.79 *FLAGS NOT SPLAY 22 23 1.63 311.27 20.13 *FLAGS SPLAY 23 23a 0.42 64.58 4.20 23 23b 0.32 213.47 -9.32 23 23c 0.99 86.07 -87.31 23 23d 0.25 94.22 48.88 *FLAGS NOT SPLAY 23 24 1.57 250.05 -33.27 *FLAGS SPLAY 24 24a 0.24 7.88 -0.38 24 24b 1.15 13.91 67.66 *FLAGS NOT SPLAY 24 25 2.11 302.88 3.36 *FLAGS SPLAY 25 25a 0.59 203.43 -39.91 25 25b 0.73 124.92 74.91 25 25c 0.46 19.39 -52.00 *FLAGS NOT SPLAY 25 26 2.60 267.02 31.57 *FLAGS SPLAY 26 26a 0.45 275.41 -83.91 26 26b 0.45 328.61 -88.28 26 26c 0.40 220.39 -21.96 26 26d 0.39 207.53 -25.01 26 26e 0.45 27.25 6.50 *FLAGS NOT SPLAY 27 26 1.86 143.63 -4.35 *FLAGS SPLAY 26 26a 0.44 24.90 6.93 27 27a 0.78 175.30 4.50 27 27b 0.26 37.40 24.20 27 27c 0.31 183.80 49.90 *FLAGS NOT SPLAY *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 0.00 0.00 0.00 0.00 2 0.23 1.76 3.38 0.77 3 0.90 0.00 0.18 0.51 4 0.14 0.26 0.71 0.55 5 0.34 0.35 0.87 0.39 6 0.00 0.34 0.50 0.18 7 0.40 0.00 0.23 0.35 *data passage station left right up down 3 0.90 0.00 0.18 0.51 8 0.97 1.31 0.38 1.78 9 0.00 1.90 1.09 0.84 10 1.22 3.45 0.67 0.23 11 0.83 0.46 0.00 0.48 12 0.21 0.00 0.00 0.00 13 4.13 2.90 1.39 0.30 15 1.61 0.98 0.28 0.86 16 2.24 0.00 0.00 1.10 17 0.00 0.10 0.69 0.29 18 0.00 0.00 0.00 0.00 *data passage station left right up down 13 2.88 4.11 1.39 0.30 20 0.00 0.41 0.35 1.24 21 0.36 0.23 0.29 0.00 22 0.82 0.21 0.78 0.31 23 0.29 0.25 0.19 0.99 24 0.00 0.43 1.06 0.00 25 0.45 0.28 0.70 0.36 26 0.36 0.45 0.00 0.45 *data passage station left right up down 27 0.23 0.41 0.24 0.00 26 0.36 0.45 0.00 0.45 *END 20 *END Swildons CaveConverter_src/test/data/regression/nosurvey_ss_ref.svx0000644000000000000000000000040713033005152023227 0ustar rootroot*BEGIN nosurveyleg *data normal from to length bearing gradient 1 2 5.75 338.00 -15.00 2 3 3.03 274.00 -8.00 *data nosurvey from to 3 5 *data normal from to length bearing gradient 3 4 8.12 280.00 12.00 4 5 9.89 345.00 -4.00 *END nosurveyleg CaveConverter_src/test/data/regression/T_LRUD_ps_ref.svx0000644000000000000000000000572413030252172022375 0ustar rootroot*BEGIN T *BEGIN 1 *DATE 2004.11.06 *FLAGS SPLAY 0 0a 2.22 155.07 -6.40 0 0b 1.84 133.24 -87.58 0 0c 8.97 68.59 -7.44 0 0d 6.07 262.41 7.25 *FLAGS NOT SPLAY 1 0 3.75 38.83 16.00 *FLAGS SPLAY 1 1a 0.66 132.46 -9.51 1 1b 1.35 120.54 81.60 1 1c 0.62 321.23 5.67 *FLAGS NOT SPLAY 2 1 2.85 359.77 -44.11 *FLAGS SPLAY 2 2a 3.73 262.13 3.55 2 2b 1.87 298.42 4.42 2 2c 1.40 3.96 7.32 2 2d 1.31 98.59 10.72 2 2e 0.70 19.12 79.66 2 2f 0.57 207.27 -82.52 *FLAGS NOT SPLAY 3 2 3.21 356.28 -10.33 *FLAGS SPLAY 3 3a 0.40 16.10 55.83 3 3b 0.97 228.49 32.14 3 3c 13.32 292.75 53.20 3 3d 0.67 121.73 88.40 3 3e 1.59 41.18 2.58 *FLAGS NOT SPLAY 4 3 3.14 296.29 4.60 *FLAGS SPLAY 4 4a 0.49 325.93 86.36 4 4b 0.99 45.65 8.48 4 4c 1.04 216.58 8.20 *FLAGS NOT SPLAY 5 4 2.04 315.42 14.57 *FLAGS SPLAY 5 5a 1.00 303.58 78.66 5 5b 1.08 132.05 9.66 5 5c 1.05 12.79 14.14 5 5d 0.93 257.40 8.73 *FLAGS NOT SPLAY 6 5 4.43 247.02 6.24 *FLAGS SPLAY 6 6a 1.13 291.01 83.64 6 6b 0.55 343.52 0.66 6 6c 0.38 169.34 1.97 *FLAGS NOT SPLAY 7 6 4.30 270.59 -2.57 *FLAGS SPLAY 7 7a 0.46 338.63 5.07 7 7b 0.31 257.49 86.93 7 7c 0.52 32.05 -88.23 *FLAGS NOT SPLAY 8 7 2.54 232.91 16.90 *FLAGS SPLAY 8 8a 0.91 135.16 86.15 8 8b 0.28 70.02 7.81 8 8c 0.32 289.59 3.66 *FLAGS NOT SPLAY 9 8 2.44 161.69 1.32 *FLAGS SPLAY 9 9a 0.28 50.74 -0.39 9 9b 0.82 141.52 82.58 9 9c 0.52 232.22 4.93 9 9d 2.24 331.35 37.29 *FLAGS NOT SPLAY 10 9 1.30 83.75 4.89 *FLAGS SPLAY 10 10a 0.28 144.57 81.81 10 10b 0.42 206.99 -3.70 10 10c 0.22 17.73 11.54 10 10d 0.51 309.96 -84.07 10 10e 0.86 132.99 -0.15 *FLAGS NOT SPLAY 11 10 1.49 113.13 8.65 *FLAGS SPLAY 11 11a 0.35 91.22 81.36 11 11b 1.54 55.43 73.20 11 11c 0.22 14.46 0.99 11 11d 0.71 293.51 -84.27 11 11e 2.28 294.59 -29.60 *FLAGS NOT SPLAY 12 5 3.52 19.55 -12.66 *FLAGS SPLAY 12 12a 1.08 313.28 85.16 12 12b 0.31 223.51 1.01 12 12c 0.93 80.12 6.52 12 12d 0.59 125.92 -83.93 *FLAGS NOT SPLAY 13 12 4.50 319.93 -1.59 *FLAGS SPLAY 13 13a 0.84 13.20 79.99 13 13b 0.15 68.57 6.43 13 13c 0.61 248.49 12.06 *FLAGS NOT SPLAY 14 13 2.95 10.30 -15.72 *FLAGS SPLAY 14 14a 0.77 55.88 0.37 14 14b 0.58 331.51 80.78 14 14c 0.55 135.86 -86.18 14 14d 0.13 239.04 4.24 *FLAGS NOT SPLAY 14 15 2.81 146.44 -9.17 *data passage station left right up down 11 0.22 0.00 0.35 0.71 10 0.21 0.49 0.28 0.51 9 0.85 0.49 0.81 0.00 8 0.22 0.32 0.91 0.00 7 0.00 0.46 0.31 0.52 6 0.38 0.55 1.12 0.00 5 0.92 0.62 0.98 0.00 4 1.03 0.96 0.49 0.00 3 4.41 1.53 0.67 0.00 2 3.70 1.27 0.69 0.57 1 0.52 0.60 1.34 0.00 0 4.15 4.41 0.00 1.84 *data passage station left right up down 14 0.12 0.71 0.57 0.55 13 0.59 0.15 0.83 0.00 12 0.25 0.92 1.08 0.59 5 0.92 0.62 0.98 0.00 *END 1 *END T CaveConverter_src/test/data/regression/2366_Torno_ss_ref7.svx0000644000000000000000000006214312560565200023223 0ustar rootroot*BEGIN 2366_Torno *EQUATE 2366_06_01.20 2366_06_02.0 *EQUATE 2366_06_02.46 2366_06_03.0 *EQUATE 2366_06_03.4 2366_06_04.48 *EQUATE 2366_06_02.9 2366_06_05.0 *EQUATE 2366_06_02.10 2366_06_06.16 *EQUATE 2366_06_03.2 2366_06_07.0 *EQUATE 2366_06_02.28 2366_06_08.8 *EQUATE 2366_06_03.4 2366_06_09.11 *EQUATE 2366_06_07.8 2366_06_10.K *EQUATE 2366_06_03.14 2366_06_11.b *EQUATE 2366_06_11.21 2366_06_12.40 *EQUATE 2366_06_12.35 2366_06_13.1 *EQUATE 2366_06_11.a 2366_06_14.btc3.16 *EQUATE 2366_06_13.3 2366_06_14.btc2.9 *EQUATE 2366_06_12.35 2366_06_15.0 *EQUATE 2366_06_15.9 2366_06_17.9 *EQUATE 2366_06_12.33 2366_06_16.24 *EQUATE 2366_06_15.21 2366_06_18.3 *EQUATE 2366_06_18.6 2366_06_19.1 *EQUATE 2366_06_19.0 2366_06_20.4 *EQUATE 2366_07_01.0 2366_06_19.10 *EQUATE 2366_07_01.25 2366_06_02.39 *EQUATE 2366_07_02.4 2366_06_02.15 *EQUATE 2366_07_02.3 2366_06_19.14 *EQUATE 2366_07_03.0 2366_06_15.5 *EQUATE 2366_08_01.6 2366_07_01.24 *EQUATE 2366_08_02.61 2366_06_02.1 *EQUATE 2366_08_04.0 2366_06_14.btc1.7 *EQUATE 2366_08_02.2 2366_08_03.43 *EQUATE 2366_08_05.9 2366_08_03.17 *EQUATE 2366_08_06.0 2366_08_03.20 *EQUATE 2366_08_07.0 2366_08_03.5 *EQUATE 2366_08_08.0 2366_08_03.11 *EQUATE 2366_08_08.22 2366_08_09.20 *EQUATE 2366_08_09.19 2366_08_10.1 *EQUATE 2366_08_04.8 2366_08_11.21 *EQUATE 2366_08_04.20 2366_08_12.A *EQUATE 2366_08_04.44 2366_08_13.44 *BEGIN 2366_06_01 *CALIBRATE declination 2.42 0 1 5.60 166.00 -7.00 1 2 4.40 152.00 1.00 2 3 5.60 101.00 -2.00 3 4 4.30 91.00 0.00 4 5 3.40 50.00 18.00 5 6 4.60 96.00 5.00 6 7 4.70 74.00 2.00 7 8 3.60 8.00 0.00 6 9 4.00 345.00 -3.00 9 10 4.60 358.00 -8.00 10 11 7.40 234.00 2.00 11 3a 7.80 218.00 -3.00 10 12 3.10 356.00 11.00 12 13 2.30 0.00 23.00 13 14 3.50 36.00 15.00 20 21 6.20 340.00 1.00 21 22 7.00 355.00 2.00 22 23 7.40 25.00 5.00 23 24 8.50 342.00 4.00 24 25 7.70 21.00 15.00 25 26 9.40 351.00 3.00 26 27 3.00 0.00 90.00 27 6 4.10 105.00 21.00 *END 2366_06_01 *BEGIN 2366_06_02 *CALIBRATE declination 2.42 0 1 3.00 0.00 90.00 1 2 4.50 184.00 -5.00 2 3 5.60 144.00 -3.00 3 4 2.70 163.00 -4.00 4 5 5.40 138.00 -9.00 5 6 1.80 66.00 -14.00 6 7 7.60 140.00 -2.00 7 8 1.00 166.00 -8.00 8 9 5.40 132.00 -1.00 9 10 5.50 55.00 0.00 10 11 8.90 101.00 -3.00 11 12 2.00 146.00 -16.00 12 13 9.00 75.00 8.00 12 14 8.30 239.00 -8.00 14 15 6.70 222.00 6.00 15 16 7.80 119.00 -7.00 16 17 15.00 177.00 -4.00 17 18 5.20 168.00 -9.00 18 19 6.40 230.00 1.00 19 20 5.70 183.00 -4.00 19 21 2.30 0.00 90.00 21 22 3.90 182.00 -3.00 22 23 5.40 195.00 -5.00 23 24 2.30 244.00 -10.00 24 25 1.80 253.00 -5.00 25 26 2.00 0.00 -90.00 26 27 1.30 210.00 -7.00 27 28 2.40 0.00 -90.00 28 29 6.00 265.00 -7.00 29 30 4.60 354.00 -22.00 30 31 3.00 292.00 32.00 31 32 3.50 277.00 20.00 32 33 3.50 238.00 -10.00 33 34 10.50 193.00 -5.00 34 35 5.50 251.00 -1.00 35 36 8.80 181.00 -8.00 36 37 8.10 214.00 -3.00 37 38 7.30 228.00 -5.00 38 39 9.70 227.00 -8.00 39 40 2.40 303.00 -3.00 40 41 5.90 240.00 -9.00 41 42 8.10 208.00 -8.00 42 43 4.20 235.00 -15.00 43 44 8.90 224.00 -8.00 44 45 6.40 171.00 -2.00 45 46 4.00 238.00 -7.00 *END 2366_06_02 *BEGIN 2366_06_03 *CALIBRATE declination 2.42 0 1 9.60 298.00 -24.00 1 2 6.70 201.00 -33.00 2 3 6.50 320.00 4.00 3 4 6.80 270.00 -15.00 4 5 18.60 218.00 -5.00 5 6 17.50 291.00 -4.00 6 7 8.20 310.00 -3.00 7 8 4.00 299.00 7.00 8 9 10.80 288.00 -6.00 9 10 6.40 261.00 -3.00 10 11 26.05 242.00 -2.00 11 12 4.30 295.00 -4.00 12 13 3.50 279.00 -2.00 13 14 16.30 259.00 -5.00 *END 2366_06_03 *BEGIN 2366_06_04 *CALIBRATE declination 2.42 1 0 4.10 352.00 0.00 2 1 6.40 347.00 3.00 3 2 9.70 71.00 4.00 4 3 3.25 16.00 15.00 4 5 1.40 0.00 -90.00 6 5 2.60 76.00 1.00 7 6 2.70 347.00 5.00 6 8 3.40 340.00 29.00 8 9 7.00 10.00 5.00 9 3 6.75 150.00 -5.00 10 7 3.00 345.00 -38.00 11 10 5.60 330.00 -6.00 12 7 4.00 8.00 2.00 13 12 2.80 80.00 5.00 14 13 4.20 132.00 0.00 15 14 5.30 130.00 2.00 16 15 16.25 142.00 4.00 17 16 3.40 163.00 5.00 18 17 1.05 50.00 0.00 19 18 2.95 354.00 2.00 20 19 2.70 34.00 -3.00 21 20 2.50 158.00 -3.00 22 21 3.00 40.00 -2.00 22 23 3.45 173.00 6.00 23 24 7.90 143.00 3.00 25 24 3.70 342.00 -2.00 26 22 4.30 149.00 -6.00 27 26 2.00 170.00 9.00 28 27 2.70 67.00 7.00 29 28 6.30 136.00 1.00 30 29 10.50 10.00 -1.00 30 31 32.00 150.00 2.00 32 30 8.50 153.00 6.00 33 32 5.20 168.00 1.00 34 33 17.10 144.00 4.00 35 34 7.50 110.00 10.00 36 35 16.85 47.00 0.00 37 36 3.55 99.00 -10.00 38 37 12.10 52.00 11.00 39 38 6.10 46.00 1.00 40 39 11.00 83.00 -2.00 41 40 8.90 59.00 4.00 42 41 5.30 100.00 4.00 43 42 4.60 0.00 0.00 44 43 8.40 59.00 3.00 45 44 10.50 50.00 2.00 46 45 5.00 23.00 -5.00 47 46 3.40 44.00 10.00 48 47 4.70 12.00 -8.00 *END 2366_06_04 *BEGIN 2366_06_05 *CALIBRATE declination 2.42 0 1 2.30 200.00 -6.00 1 2 2.70 156.00 10.00 2 3 5.30 135.00 -25.00 3 4 4.20 224.00 10.00 4 5 2.80 187.00 10.00 5 6 5.10 235.00 -2.00 6 7 3.20 231.00 -9.00 7 8 3.00 172.00 -12.00 8 9 1.60 141.00 -4.00 9 10 1.60 180.00 8.00 10 11 1.50 244.00 -10.00 11 12 4.30 203.00 -5.00 12 13 4.10 299.00 0.00 7 14 4.20 311.00 -2.00 14 15 7.20 318.00 5.00 *END 2366_06_05 *BEGIN 2366_06_06 *CALIBRATE declination 2.42 16 17 3.20 347.00 24.00 17 18 3.30 58.00 13.00 18 19 3.20 73.00 5.00 19 20 4.40 93.00 8.00 *END 2366_06_06 *BEGIN 2366_06_07 *CALIBRATE declination 2.42 0 1 6.60 122.00 8.00 1 2 4.70 137.00 1.00 2 3 6.40 146.00 11.00 3 4 7.20 80.00 13.00 4 5 5.60 106.00 13.00 5 6 14.60 80.00 10.00 6 7 2.60 177.00 50.00 7 8 4.10 47.00 38.00 *END 2366_06_07 *BEGIN 2366_06_08 *CALIBRATE declination 2.42 1 0 8.60 229.00 -6.00 2 1 4.50 226.00 0.00 3 2 3.70 285.00 -13.00 4 3 3.50 303.00 -9.00 5 4 4.10 261.00 -17.00 4 6 2.80 315.00 -22.00 6 7 4.40 0.00 -90.00 7 8 1.30 260.00 0.00 *END 2366_06_08 *BEGIN 2366_06_09 *CALIBRATE declination 2.42 *CALIBRATE tape 1.00 11 10 15.50 218.00 -5.00 1 0 4.60 251.00 1.00 1 2 8.80 250.00 -6.00 2 3 7.70 340.00 -5.00 3 4 6.90 310.00 -5.00 4 5 9.70 265.00 -15.00 5 6 7.10 270.00 -15.00 6 7 7.30 240.00 -5.00 7 8 17.90 310.00 -3.00 8 9 8.80 334.00 -20.00 9 10 4.40 330.00 -40.00 *END 2366_06_09 *BEGIN 2366_06_10 *CALIBRATE declination 2.42 K 1 16.30 54.00 31.00 B A 5.92 285.00 25.00 B C 1.30 158.00 0.00 C D 8.50 241.00 20.00 E C 13.20 238.00 -18.00 F E 3.30 319.00 -3.00 G F 11.10 252.00 -9.00 H G 4.70 227.00 -17.00 H I 1.80 0.00 -90.00 I J 5.50 122.00 -30.00 K J 2.40 24.00 22.00 *END 2366_06_10 *BEGIN 2366_06_11 *CALIBRATE declination 2.42 *CALIBRATE tape -0.90 2 1 9.90 0.00 -18.00 2 3 7.60 263.00 3.00 4 3 6.90 42.00 1.00 4 5 6.90 199.00 -31.00 5 6 8.90 266.00 -31.00 5 7 15.80 94.00 35.00 8 7 13.30 77.00 21.00 8 9 14.10 152.00 28.00 10 9 15.30 311.00 -2.00 10 11 12.80 43.00 3.00 12 11 6.70 298.00 -18.00 12 13 13.30 149.00 5.00 13 14 4.10 102.00 -5.00 14 15 6.30 340.00 -1.00 15 16 7.70 338.00 -1.00 16 17 3.20 342.00 -2.00 17 18 3.20 311.00 5.00 18 19 6.20 37.00 6.00 19 20 4.00 2.00 3.00 20 21 4.70 36.00 4.00 12 a 7.00 0.00 -5.00 a b 6.00 79.00 0.00 *END 2366_06_11 *BEGIN 2366_06_12 *CALIBRATE declination 2.42 0 1 9.68 25.50 -5.50 1 2 8.47 331.00 -1.00 2 3 9.14 9.00 2.00 3 4 8.20 108.00 5.00 3 5 12.68 47.00 0.00 5 6 12.59 44.00 -7.00 6 7 2.63 19.00 39.00 7 8 7.46 9.00 -18.00 8 9 13.24 92.00 5.50 9 10 9.67 197.00 2.00 10 11 9.47 70.00 1.00 11 12 11.39 115.00 3.00 12 13 7.32 87.00 4.00 13 14 16.11 58.00 2.00 14 15 4.40 9.00 0.00 15 16 5.85 313.00 4.00 16 17 12.81 44.00 2.00 17 18 9.04 16.00 3.00 18 19 19.55 58.00 2.00 19 20 3.65 76.00 -1.00 20 21 4.90 31.00 6.00 21 22 4.31 88.00 3.00 22 24 6.67 47.00 6.00 24 25 6.41 61.00 1.00 25 26 7.29 25.00 3.00 8 27 3.66 352.00 -14.00 27 28 10.98 27.00 1.00 28 29 2.41 310.00 1.00 29 30 15.55 291.00 5.00 30 31 46.75 308.50 -3.50 31 32 12.55 343.00 -8.00 32 33 22.75 296.00 4.00 33 34 6.30 354.00 -13.00 34 35 26.56 342.00 -2.00 33 36 5.28 107.00 -23.00 36 37 10.97 315.00 -47.00 37 38 4.60 6.00 -19.00 38 39 10.68 331.00 1.00 39 40 1.78 294.00 -13.00 *END 2366_06_12 *BEGIN 2366_06_13 *CALIBRATE declination 2.42 *CALIBRATE tape 1.00 1 2 5.50 0.00 10.00 2 3 5.60 75.00 3.00 3 4 10.90 115.00 0.00 4 5 15.60 130.00 1.00 5 6 6.20 175.00 1.00 6 7 10.90 122.00 1.00 7 8 7.40 160.00 0.00 8 9 12.20 128.00 3.00 9 10 6.30 98.00 0.00 10 11 24.90 124.00 2.00 11 12 12.40 112.00 2.00 *END 2366_06_13 *BEGIN 2366_06_14 *CALIBRATE declination 2.42 *EQUATE btc1.9 btc2.11 *EQUATE btc1.7 btc3.1 *BEGIN btc1 2 1 6.00 232.00 -5.00 2 3 18.25 97.00 0.00 3 4 6.80 60.00 5.00 4 5 23.10 123.00 1.00 5 6 29.90 130.00 -3.00 6 7 17.55 122.00 0.00 7 8 11.55 107.00 11.00 8 9 16.95 125.00 -9.00 *END btc1 *BEGIN btc2 *FLAGS DUPLICATE 9 10 4.25 239.00 7.00 10 11 9.55 234.00 -19.00 11 12 16.95 305.00 9.00 *END btc2 *BEGIN btc3 1 2 2.90 276.00 12.00 2 3 4.50 0.00 -90.00 3 4 5.15 338.00 -13.00 4 5 4.30 196.00 -9.00 5 6 7.20 123.00 -6.00 6 7 5.95 127.00 -11.00 7 8 2.70 0.00 -90.00 8 9 3.30 70.00 -1.00 9 10 6.05 173.00 3.00 10 11 5.95 212.00 -5.00 11 12 1.40 0.00 -90.00 12 13 3.35 196.00 -36.00 13 14 4.30 192.00 -10.00 14 15 14.05 135.00 11.00 15 16 12.15 116.00 -10.00 *END btc3 *END 2366_06_14 *BEGIN 2366_06_15 *CALIBRATE declination 2.42 0 1 5.40 345.00 0.00 1 2 1.80 317.00 30.00 2 3 7.00 10.00 6.00 3 4 5.70 22.00 -1.00 4 5 3.90 332.00 7.00 5 6 10.50 21.00 17.00 6 7 10.10 116.00 -9.00 7 8 4.70 55.00 24.00 8 9 13.20 33.00 1.00 9 10 8.50 92.00 4.00 10 11 5.80 115.00 8.00 11 12 3.40 71.00 11.00 12 13 11.40 29.00 2.00 13 14 6.20 322.00 5.00 14 15 5.40 292.00 18.00 15 16 5.20 290.00 -12.00 15 17 3.50 24.00 23.00 17 18 5.60 129.00 4.00 18 19 3.80 130.00 5.00 19 20 2.80 38.00 6.00 20 21 4.20 120.00 15.00 21 22 5.90 133.00 25.00 19 23 6.60 134.00 -2.00 23 24 2.60 224.00 3.00 24 25 3.60 298.00 -3.00 *END 2366_06_15 *BEGIN 2366_06_16 *CALIBRATE declination 2.42 1 2 7.40 210.00 36.00 2 3 6.10 110.00 -2.00 3 4 11.40 243.00 -2.00 4 5 4.75 205.00 -6.00 5 6 5.70 110.00 -1.00 6 7 2.55 164.00 -4.00 7 8 3.85 89.00 1.00 8 9 7.40 118.00 6.00 9 10 3.70 157.00 16.00 10 11 7.75 184.00 12.00 12 13 5.50 222.00 -31.00 13 14 6.00 228.00 -46.00 14 15 6.30 223.00 -11.00 15 16 5.10 247.00 -27.00 9 16 2.60 315.00 -5.00 8 17 10.35 208.00 -1.00 17 18 3.70 0.00 -90.00 18 19 2.70 0.00 -90.00 19 20 7.00 32.00 -8.00 20 21 3.60 355.00 -8.00 21 22 6.50 56.00 -4.00 22 23 3.60 104.00 -5.00 23 24 3.70 62.00 -45.00 *END 2366_06_16 *BEGIN 2366_06_17 *CALIBRATE declination 2.42 1 2 5.80 297.00 -8.00 2 3 2.10 250.00 -13.00 3 4 10.65 304.00 -6.00 4 5 9.60 313.00 -5.00 5 6 2.80 279.00 -5.00 6 7 9.50 290.00 -8.00 9 8 5.75 202.00 -1.00 7 8 1.35 0.00 -90.00 *END 2366_06_17 *BEGIN 2366_06_18 *CALIBRATE declination 2.42 *CALIBRATE tape 0.20 1 2 11.20 136.00 -16.00 3 2 5.75 26.00 1.00 *FLAGS DUPLICATE 4 3 6.40 311.00 -28.00 *FLAGS NOT DUPLICATE 4 5 17.15 132.00 -3.00 5 6 4.97 31.00 2.00 6 7 8.98 109.00 -2.00 7 8 12.10 119.00 0.00 8 9 7.24 136.00 2.00 9 10 7.35 23.00 -4.00 10 11 10.80 117.00 3.00 11 12 12.60 138.00 -2.00 13 14 6.07 38.00 -9.00 14 15 5.29 81.00 3.00 15 16 4.80 23.00 -5.00 7 16 1.70 0.00 -90.00 *END 2366_06_18 *BEGIN 2366_06_19 *CALIBRATE declination 2.42 *EQUATE 39 1 0 1 12.30 232.00 -31.00 0 2 6.80 103.00 -4.00 2 3 11.30 58.00 10.00 3 4 9.40 31.00 -3.00 4 5 20.40 125.00 -1.00 5 6 9.90 127.00 -5.00 6 7 13.70 134.00 1.00 7 8 12.20 105.00 -2.00 8 9 5.10 124.00 5.00 9 10 6.20 45.00 -30.00 10 11 21.10 42.00 0.00 11 12 10.60 43.00 8.00 12 13 8.30 16.00 2.00 13 14 8.20 8.00 -5.00 14 15 4.80 110.00 -6.00 16 9 2.20 346.00 33.00 17 16 2.80 348.00 15.00 18 17 6.40 309.00 40.00 19 18 5.60 51.00 25.00 19a 18 2.20 284.00 15.00 20 9 4.10 93.00 20.00 21 20 7.40 23.00 -19.00 22 21 11.20 313.00 0.00 23 21 5.70 61.00 -12.00 24 23 8.70 331.00 3.00 25 24 4.50 72.00 11.00 26 25 5.70 86.00 -2.00 27 26 5.30 55.00 -27.00 28 25 7.00 11.00 7.00 29 10 6.50 294.00 15.00 30 6 6.90 58.00 -26.00 30 31 6.20 286.00 1.00 31 32 4.00 216.00 0.00 32 33 5.40 276.00 -3.00 33 34 4.80 233.00 -6.00 34 35 10.20 282.00 -1.00 35 36 6.90 223.00 -5.00 37 36 8.00 97.00 3.00 37 38 13.80 316.00 -40.00 38 39 1.80 0.00 -90.00 14 1a 5.10 121.00 -5.00 1a 2a 8.80 8.00 21.00 1a 3a 5.50 123.00 -19.00 *END 2366_06_19 *BEGIN 2366_06_20 *CALIBRATE declination 2.42 *CALIBRATE tape 0.20 1 2 9.25 69.00 6.00 2 3 6.56 104.00 -4.00 3 4 7.41 107.00 -27.00 *END 2366_06_20 *BEGIN 2366_07_01 *CALIBRATE declination 2.28 1 0 4.00 310.00 15.00 2 1 2.80 290.00 5.00 3 2 2.20 48.00 4.00 4 3 2.00 4.00 3.00 5 4 9.20 310.00 22.00 6 5 3.30 330.00 10.00 7 6 2.60 299.00 10.00 8 7 4.60 247.00 -7.00 9 8 3.30 217.00 -9.00 10 9 3.50 228.00 6.00 11 10 1.80 325.00 18.00 12 11 1.70 339.00 21.00 13 12 5.20 230.00 -16.00 14 13 2.70 196.00 3.00 15 14 1.70 236.00 -2.00 16 15 4.20 182.00 0.00 17 16 2.70 226.00 -8.00 18 5 4.55 125.00 22.00 19 18 4.20 101.00 27.00 20 19 4.70 29.00 20.00 21 20 2.10 0.00 2.00 22 21 4.30 100.00 3.00 23 22 1.30 353.00 5.00 24 23 9.66 117.00 1.00 25 24 6.20 49.00 4.00 *END 2366_07_01 *BEGIN 2366_07_02 *CALIBRATE declination 2.28 0 4 16.00 0.00 -90.00 1 2 12.00 0.00 -90.00 3 2 2.00 108.00 0.00 *END 2366_07_02 *BEGIN 2366_07_03 *CALIBRATE declination 2.28 *FLAGS DUPLICATE 0 1 6.30 21.00 2.00 1 2 7.30 72.00 11.00 2 3 6.20 112.00 4.00 *FLAGS NOT DUPLICATE 3 4 6.50 3.20 51.00 4 5 3.60 0.00 82.00 5 6 1.80 274.00 53.00 6 7 1.30 145.00 62.00 7 8 6.50 198.00 2.00 8 9 20.50 209.00 3.00 9 10 4.80 287.00 -3.00 10 11 5.40 126.00 52.00 11 12 2.80 315.00 49.00 12 13 2.20 287.00 1.00 13 14 7.60 204.00 1.00 14 15 3.50 207.00 -3.00 15 16 3.00 238.00 11.00 16 17 6.20 204.00 0.00 17 18 3.00 272.00 24.00 18 19 6.70 240.00 -7.00 8 1A 3.90 0.00 90.00 1A 2A 11.00 22.00 9.00 2A 3A 2.30 31.00 6.00 3A 4A 4.20 75.00 9.00 4A 5A 9.00 65.00 4.00 5A 6A 4.40 345.00 3.00 6A 7A 3.20 63.00 1.00 7A 8A 3.40 340.00 2.00 *END 2366_07_03 *BEGIN 2366_08_01 *CALIBRATE declination 2.15 1 0 4.74 325.00 6.00 1 2 16.95 135.00 2.00 2 3 1.18 210.00 0.00 3 4 5.11 114.00 0.00 4 5 4.80 150.00 5.00 *FLAGS DUPLICATE 5 6 2.43 138.00 22.00 *END 2366_08_01 *BEGIN 2366_08_02 *CALIBRATE declination 2.15 1 0 2.02 199.00 -7.00 1 2 2.04 125.00 -22.00 2 3 2.65 50.00 -3.00 3 4 2.95 41.00 26.00 3 5 6.85 142.00 3.00 5 6 8.08 152.00 -4.00 6 7 5.12 144.00 -5.00 7 8 2.78 171.00 -4.00 8 9 1.40 229.00 -4.00 9 10 3.18 301.00 1.00 10 11 4.14 196.00 -6.00 12 7 1.12 175.00 4.00 12 13 4.69 97.00 0.00 13 14 4.16 352.00 12.00 14 15 3.25 33.00 0.00 15 16 0.80 95.00 4.00 16 17 3.44 16.00 1.00 17 18 4.17 142.00 0.00 18 19 5.81 22.00 -1.00 13 20 6.04 131.00 1.00 20 21 5.51 15.00 7.00 21 22 2.65 322.00 10.00 21 23 5.17 153.00 0.00 21 24 9.94 14.00 6.00 24 25 2.65 319.00 8.00 24 30 5.68 145.00 -7.00 25 26 3.29 358.00 6.00 26 27 3.48 334.00 6.00 20 31 5.72 134.00 0.00 31 32 9.29 130.00 -1.00 32 33 8.62 128.00 0.00 32 34 6.79 355.00 1.00 34 35 4.17 15.00 2.00 35 36 7.19 316.00 9.00 35 37 3.80 122.00 0.00 35 38 7.56 16.00 4.00 38 39 5.08 141.00 -1.00 39 40 3.56 150.00 1.00 40 41 14.62 131.00 -1.00 40 42 3.39 23.00 -5.00 38 43 2.82 312.00 17.00 43 44 5.78 316.00 -1.00 43 45 5.38 16.00 11.00 45 46 3.66 2.00 9.00 46 47 3.45 18.00 -4.00 47 48 1.36 12.00 -33.00 48 49 4.85 32.00 0.00 50 49 2.56 190.00 -59.00 50 51 2.48 24.00 -2.00 51 52 6.30 33.00 3.00 52 53 3.99 143.00 0.00 53 54 4.64 359.00 8.00 54 55 8.38 31.00 0.00 55 56 2.44 32.00 3.00 55 57 4.83 330.00 0.00 56 58 2.30 356.00 6.00 58 59 3.37 63.00 -65.00 59 60 1.71 154.00 9.00 60 61 2.14 165.00 -26.00 *END 2366_08_02 *BEGIN 2366_08_03 *CALIBRATE declination 2.15 1 0 4.50 250.00 -2.00 1 2 3.23 79.00 -1.00 2 3 7.60 22.00 2.00 3 4 5.71 36.00 2.00 4 5 3.33 128.00 -1.00 5 6 1.02 92.00 -30.00 6 7 3.89 84.00 -1.00 7 8 5.17 149.00 1.00 8 9 4.78 42.00 0.00 9 10 2.45 101.00 2.00 10 11 3.64 58.00 7.00 11 12 15.39 146.00 0.00 12 13 10.64 115.00 1.00 13 14 9.86 183.00 -1.00 14 15 6.69 142.00 2.00 15 16 6.88 166.00 -1.00 16 17 4.83 117.00 0.00 17 18 10.04 90.00 0.00 18 19 5.99 139.00 4.00 19 20 3.69 68.00 -6.00 15 21 5.85 31.00 12.00 21 22 4.74 348.00 1.00 22 23 7.12 29.00 3.00 23 24 9.55 15.00 0.00 24 25 10.91 124.00 2.00 25 26 9.64 91.00 -3.00 26 27 7.45 146.00 -1.00 27 28 6.23 129.00 2.00 28 29 6.41 60.00 2.00 29 30 3.12 317.00 2.00 30 31 7.41 63.00 1.00 31 32 3.16 53.00 2.00 32 33 3.69 138.00 11.00 33 34 1.12 168.00 -24.00 34 35 4.23 60.00 7.00 35 36 1.13 166.00 -16.00 36 37 8.00 125.00 1.00 37 38 0.38 0.00 -90.00 38 39 1.12 67.00 2.00 39 40 3.36 4.00 8.00 40 41 0.67 0.00 -90.00 41 42 2.94 55.00 -4.00 42 43 0.92 36.00 36.00 21 a1 4.95 80.00 -2.00 a1 a2 4.40 352.00 8.00 a2 a3 6.40 36.00 3.00 a3 a4 6.74 54.00 0.00 b0 b1 12.30 151.00 -1.00 b1 b2 4.45 56.00 -1.00 b2 b3 4.20 156.00 0.00 b3 b4 3.15 61.00 0.00 b4 b5 5.50 143.00 -1.00 b5 b6 8.20 174.00 -1.00 b6 23 1.12 270.00 -8.00 c1 c2 8.95 314.00 0.00 c1 36 4.10 139.00 -16.00 c2 c3 9.90 233.00 -8.00 d1 d2 8.38 313.00 0.00 34 d2 2.36 155.00 1.00 *END 2366_08_03 *BEGIN 2366_08_04 *CALIBRATE declination 2.15 1 2 1.76 276.00 -13.00 2 3 1.48 245.00 12.00 3 4 5.50 229.00 -11.00 4 5 1.60 207.00 -17.00 5 6 3.59 239.00 14.00 6 7 3.90 126.00 14.00 7 8 3.20 242.00 11.00 8 9 4.20 195.00 9.00 9 10 3.79 200.00 6.00 10 11 4.50 224.00 -23.00 11 12 8.37 225.00 9.00 12 13 4.90 293.00 3.00 13 14 18.70 214.00 -3.00 14 15 8.40 293.00 -2.00 15 16 4.37 221.00 -16.00 16 17 9.81 258.00 -3.00 17 18 12.57 183.00 1.00 18 19 20.25 245.00 0.00 19 20 11.62 156.00 -4.00 20 21 0.60 167.00 2.00 21 22 16.97 226.00 -1.00 22 23 5.60 249.00 0.00 23 24 4.50 201.00 2.00 24 25 3.00 244.00 16.00 25 26 6.20 331.00 -2.00 26 27 6.50 240.00 -2.00 27 28 2.40 181.00 0.00 28 29 4.00 236.00 -2.00 29 30 4.10 212.00 0.00 30 31 1.00 263.00 0.00 31 32 4.28 205.00 58.00 32 33 3.80 240.00 26.00 33 34 2.50 199.00 -24.00 34 35 3.20 245.00 -28.00 35 36 3.90 293.00 -43.00 36 37 5.30 216.00 -11.00 37 38 10.90 207.00 -18.00 38 39 20.50 194.00 0.00 39 40 5.60 219.00 8.00 40 41 17.80 201.00 -1.00 41 42 7.00 109.00 7.00 42 43 7.40 145.00 -19.00 43 44 11.60 228.00 18.00 *FLAGS DUPLICATE 0 1A 28.15 300.00 -1.00 1A 2A 19.45 318.00 0.00 2A 3A 13.41 313.00 -3.00 3A 4A 19.30 278.00 -5.00 4A 5A 4.92 251.00 -2.00 5A 1 8.20 283.00 -3.00 *END 2366_08_04 *BEGIN 2366_08_05 *CALIBRATE declination 2.15 0 1 2.47 310.00 10.00 1 2 1.67 19.00 12.00 2 3 5.07 44.00 0.00 3 4 2.92 6.00 3.00 4 5 3.42 127.00 0.00 5 6 3.05 123.00 5.00 7 6 2.23 333.00 6.00 4 8 2.29 39.00 6.00 8 9 1.25 301.00 -17.00 *END 2366_08_05 *BEGIN 2366_08_06 *CALIBRATE declination 2.15 0 1 4.42 139.00 0.00 1 2 6.28 79.00 0.00 2 3 4.71 48.00 4.00 3 4 19.39 136.00 -1.00 4 5 3.97 123.00 -3.00 1 6 14.72 130.00 -1.00 6 7 4.37 141.00 -9.00 7 8 2.82 131.00 0.00 8 9 2.69 150.00 -5.00 9 10 5.86 131.00 0.00 10 11 4.87 132.00 0.00 11 12 3.04 132.00 4.00 12 13 3.15 125.00 -15.00 13 14 1.49 155.00 31.00 14 15 1.94 106.00 -13.00 *END 2366_08_06 *BEGIN 2366_08_07 *CALIBRATE declination 2.15 0 1 3.77 15.00 10.00 1 2 2.82 56.00 0.00 2 3 2.84 50.00 7.00 *END 2366_08_07 *BEGIN 2366_08_08 *CALIBRATE declination 2.15 0 1 2.98 346.00 28.00 1 2 12.98 348.00 1.00 2 3 5.80 254.00 -7.00 3 4 4.28 214.00 -6.00 4 5 6.81 299.00 -2.00 5 6 1.20 0.00 -9.00 6 7 0.42 0.00 90.00 7 8 6.39 317.00 -1.00 8 9 4.43 205.00 -4.00 9 10 4.37 224.00 -3.00 10 11 0.72 154.00 -5.00 11 12 3.72 259.00 -6.00 12 13 3.54 334.00 3.00 13 14 2.76 20.00 -2.00 14 15 2.19 265.00 -1.00 15 16 2.55 321.00 6.00 16 17 1.44 327.00 3.00 17 18 2.07 206.00 -2.00 18 19 2.61 262.00 -11.00 19 20 0.94 322.00 0.00 20 21 2.17 18.00 -5.00 21 22 3.11 309.00 0.00 *END 2366_08_08 *BEGIN 2366_08_09 *CALIBRATE declination 2.15 0 1 9.09 213.00 -5.00 1 2 5.01 250.00 27.00 2 3 2.78 222.00 -40.00 3 4 2.60 246.00 -20.00 4 5 3.77 195.00 18.00 5 6 3.00 297.00 0.00 6 7 7.46 254.00 -9.00 7 8 3.08 234.00 -5.00 8 9 4.22 266.00 1.00 9 10 3.74 256.00 -9.00 10 11 8.54 207.00 -9.00 11 12 2.37 238.00 -8.00 12 13 3.89 248.00 -9.00 13 14 1.92 259.00 -49.00 14 15 5.14 243.00 -12.00 15 16 5.10 224.00 1.00 16 17 3.38 134.00 9.00 17 18 2.04 153.00 -46.00 18 19 5.14 76.00 12.00 19 20 5.46 77.00 19.00 8 21 1.71 312.00 -72.00 21 22 7.14 230.00 -1.00 22 23 4.85 238.00 -9.00 23 24 2.55 155.00 0.00 24 25 6.66 206.00 -3.00 25 26 5.12 208.00 4.00 26 20 1.44 314.00 -7.00 28 29 13.79 299.00 -3.00 29 30 26.09 248.00 -6.00 30 20 8.12 269.00 -15.00 17 a1 4.81 209.00 17.00 a1 a2 4.59 211.00 4.00 a2 a3 6.29 230.00 3.00 *END 2366_08_09 *BEGIN 2366_08_10 *DATE 2008.03.27 *CALIBRATE declination 2.15 1 2 5.42 187.00 0.00 2 3 3.85 231.00 -1.00 3 4 10.33 201.00 -2.00 4 5 2.16 258.00 3.00 5 6 3.51 266.00 -5.00 6 7 2.43 331.00 -2.00 7 8 2.16 254.00 -1.00 8 9 2.25 233.00 -7.00 9 10 1.70 228.00 -8.00 10 11 2.94 216.00 -5.00 11 12 14.57 204.00 -2.00 12 13 2.34 254.00 -2.00 13 14 4.42 225.00 0.00 14 15 8.87 205.00 -3.00 15 16 1.25 313.00 79.00 17 16 5.53 27.00 12.00 18 19 4.03 282.00 -1.00 19 20 8.45 281.00 -3.00 20 21 6.16 284.00 -2.00 21 22 3.76 347.00 -14.00 22 23 2.68 231.00 -3.00 23 24 2.26 263.00 -15.00 24 25 6.63 207.00 0.00 25 26 6.02 199.00 -2.00 26 27 2.97 200.00 -5.00 24 28 1.37 292.00 -25.00 15 28 2.06 59.00 -44.00 18 29 10.00 39.00 0.00 *END 2366_08_10 *BEGIN 2366_08_11 *DATE 2008.03.28 *CALIBRATE declination 2.15 1 2 3.24 326.00 -5.00 2 3 1.90 318.00 3.00 3 4 5.59 211.00 -4.00 4 5 2.53 228.00 -1.00 5 6 4.18 302.00 -6.00 6 7 3.00 59.00 -72.00 7 8 7.36 310.00 8.00 8 9 7.15 301.00 -11.00 9 10 9.68 333.00 -8.00 10 11 21.83 308.00 -3.00 11 12 10.10 320.00 5.00 12 13 5.82 324.00 -1.00 13 14 4.38 347.00 -6.00 14 15 4.70 313.00 -6.00 15 16 4.03 324.00 -9.00 16 17 10.24 308.00 -3.00 17 18 8.01 324.00 -10.00 18 19 1.79 10.00 -4.00 19 20 2.42 287.00 -15.00 20 21 2.38 221.00 10.00 *END 2366_08_11 *BEGIN 2366_08_12 *DATE 2008.03.28 *CALIBRATE declination 2.15 A 1 4.90 142.00 68.00 1 2 6.20 38.00 -4.00 2 3 5.50 43.00 4.00 3 4 3.40 4.00 -1.00 4 5 2.30 62.00 1.00 5 6 7.00 351.00 -3.00 6 7 3.90 330.00 3.00 7 8 8.26 9.00 0.00 8 9 2.50 27.00 5.00 9 10 4.60 310.00 3.00 10 11 3.40 60.00 14.00 11 12 4.70 56.00 26.00 12 13 4.10 54.00 7.00 13 14 4.60 95.00 -42.00 *END 2366_08_12 *BEGIN 2366_08_13 *DATE 2008.03.28 *CALIBRATE declination 2.15 44 45 8.50 211.00 34.00 45 46 12.00 219.00 -9.00 46 47 3.40 185.00 24.00 47 48 2.30 56.00 -57.00 48 49 4.50 151.00 -41.00 49 50 8.30 0.00 -90.00 50 51 5.13 262.00 10.00 51 52 12.00 237.00 -2.00 52 53 2.07 172.00 -3.00 53 54 3.00 293.00 -41.00 54 55 3.50 218.00 -46.00 55 56 4.10 209.00 -2.00 56 57 1.60 242.00 0.00 57 58 9.70 212.00 -4.00 58 59 4.10 161.00 -3.00 59 60 6.70 191.00 4.00 60 61 4.00 0.00 90.00 61 62 7.69 202.00 -2.00 62 63 3.00 0.00 -90.00 63 64 3.00 171.00 -14.00 64 65 3.80 84.00 -3.00 65 66 3.00 119.00 0.00 66 67 3.80 147.00 1.00 b0 b1 10.00 13.00 0.00 b1 b2 5.80 321.00 -3.00 b2 b3 7.50 321.00 6.00 b2 b4 2.50 285.00 -1.00 b4 b5 4.00 282.00 -48.00 b5 67 2.10 220.00 -36.00 52 c1 2.45 0.00 90.00 c1 c2 5.50 231.00 23.00 c2 c3 9.10 193.00 20.00 c3 c4 6.90 174.00 0.00 67 d0 15.00 189.00 -1.00 *END 2366_08_13 *END 2366_Torno CaveConverter_src/test/data/regression/2108_ss_ref.svx0000644000000000000000000000066012560565176021755 0ustar rootroot*BEGIN 2108 *CALIBRATE declination 2.42 *EQUATE 3 15 1 2 2.61 108.00 -40.00 2 3 3.09 60.00 -36.00 3 4 2.55 263.00 -12.00 4 5 2.05 235.00 -69.00 5 6 4.87 247.00 18.00 6 7 1.90 290.00 0.00 4 8 2.50 342.00 23.00 8 9 5.95 116.00 -12.00 9 10 4.12 174.00 27.00 10 11 5.15 149.00 19.00 11 12 4.30 303.00 14.00 12 13 5.70 66.00 -18.00 13 14 3.78 268.00 -12.00 14 15 4.86 323.00 -15.00 *END 2108 CaveConverter_src/test/data/regression/CalTest_in.dat0000644000000000000000000000330613030252172021755 0ustar rootrootFootlegCalTest SURVEY NAME: Footleg1 SURVEY DATE: 2 13 2014 COMMENT: SURVEY TEAM: DECLINATION: 30.00 FORMAT: DMMDLRUDLADNF CORRECTIONS: 0.00 0.00 0.00 CORRECTIONS2: 0.00 0.00 FROM TO LENGTH BEARING INC LEFT UP DOWN RIGHT FLAGS COMMENTS 1 2 26.25 15.00 0.00 1.00 2.00 4.00 3.00 2 2a 32.80 285.00 0.00 4.00 3.00 1.00 2.00 FootlegCalTest SURVEY NAME: Footleg2 SURVEY DATE: 2 14 2014 COMMENT: SURVEY TEAM: DECLINATION: 45.00 FORMAT: DMMDLRUDLADNF CORRECTIONS: -10.00 0.00 -1.64 CORRECTIONS2: -10.00 0.00 FROM TO LENGTH BEARING INC LEFT UP DOWN RIGHT FLAGS COMMENTS 2 3 34.45 100.00 36.87 1.00 2.00 4.00 3.00 3 3a 32.80 010.00 0.00 4.00 3.00 1.00 2.00 FootlegCalTest SURVEY NAME: Footleg3 SURVEY DATE: 2 14 2014 COMMENT: SURVEY TEAM: DECLINATION: -10.00 FORMAT: DMMDLRUDLADNF CORRECTIONS: -25.00 -8.00 6.56 CORRECTIONS2: -25.00 -8.00 FROM TO LENGTH BEARING INC LEFT UP DOWN RIGHT FLAGS COMMENTS 3 4 26.25 260.00 -28.87 1.00 2.00 4.00 3.00 FootlegCalTest SURVEY NAME: Footleg4 SURVEY DATE: 3 31 2014 COMMENT: SURVEY TEAM: DECLINATION: -15.00 FORMAT: DMMDLRUDLADNF CORRECTIONS: 7.00 10.00 -13.12 CORRECTIONS2: 7.00 10.00 FROM TO LENGTH BEARING INC LEFT UP DOWN RIGHT FLAGS COMMENTS 4 5 45.93 143.00 -46.87 1.00 2.00 4.00 3.00 CaveConverter_src/test/data/regression/anonymous_blocks_ss_spl_ref.svx0000644000000000000000000000060213033267052025606 0ustar rootroot*BEGIN anonymous_blocks 1 2 9.08 189.31 -7.43 *FLAGS SPLAY 2 2a 7.47 208.36 -11.11 *FLAGS NOT SPLAY 2 3 18.55 116.98 -0.10 *FLAGS SURFACE 3 4 3.94 109.34 5.39 *FLAGS SPLAY 4 4a 1.72 13.50 -2.13 *FLAGS NOT SPLAY 4 5 14.13 96.76 -0.61 *FLAGS DUPLICATE 5 6 14.76 107.42 10.11 *FLAGS NOT DUPLICATE NOT SURFACE 6 7 9.56 79.43 -2.48 *END anonymous_blocks CaveConverter_src/test/data/regression/Swil20120909_ps_ref7.svx0000644000000000000000000001352713030252172023200 0ustar rootroot*BEGIN Swil20120909 *BEGIN 1 *DATE 2012.09.09 0 1 2.98 10.26 -2.01 ;1.1 has magnetic problems. So surveyed to it from knot on tree opposite door=1.0\rThen from knot to rear wall of blockhouse 1.0-1.2 0 2 5.24 3.23 -5.04 ;1.2=rawl plug on rear wall of blockhouse *FLAGS SPLAY 2 2a 5.24 182.16 5.06 2 2b 1.89 187.97 3.09 2 2c 1.91 168.82 1.18 2 2d 1.38 218.59 -0.17 2 2e 0.64 248.05 1.54 2 2f 0.68 105.32 -3.30 2 2g 1.56 140.40 -2.98 2 2h 1.84 176.52 -47.48 2 2i 1.82 167.81 -47.93 2 2j 1.54 189.90 -63.97 2 2k 1.61 132.31 -59.62 *FLAGS NOT SPLAY 2 3 2.64 166.70 -60.11 ;1.3=Top left corner of stream culvert when looking out of cave *FLAGS SPLAY 3 3a 0.22 345.81 60.30 3 3b 2.63 347.89 60.51 3 3c 0.94 9.90 76.67 3 3d 0.31 232.08 12.34 3 3e 0.35 31.05 10.29 3 3f 0.47 8.50 -70.77 *FLAGS NOT SPLAY 3 4 3.10 330.76 -25.13 *FLAGS SPLAY 4 4a 3.12 152.39 25.35 4 4b 0.56 208.59 -0.68 4 4c 0.59 140.67 80.22 4 4d 1.32 189.06 -86.08 4 4e 1.50 43.79 87.42 *FLAGS NOT SPLAY 4 5 4.51 275.80 -12.10 ;1.5=polished tip of pointy boulder by top of drop into lower level of chamber. Boulder is dark grey with white flecks and fossils. *FLAGS SPLAY 5 5a 4.51 94.74 12.12 5 5b 3.45 123.81 5.64 5 5c 3.51 134.15 0.14 5 5d 6.66 129.46 11.11 5 5e 2.32 149.61 -6.69 5 5f 1.64 153.47 -11.17 5 5g 0.79 252.58 -12.22 5 5h 1.22 296.10 -7.82 5 5i 2.96 296.71 -23.02 5 5j 1.51 42.54 10.51 5 5k 4.24 72.82 11.85 5 5l 0.70 333.90 81.49 5 5m 0.55 114.68 -67.13 *FLAGS NOT SPLAY 5 6 2.41 50.67 -22.33 *FLAGS SPLAY 6 6a 2.38 230.76 22.40 6 6b 0.35 2.58 81.25 6 6c 0.30 220.39 -79.38 6 6d 0.51 299.09 -0.90 6 6e 0.21 108.28 1.25 *FLAGS NOT SPLAY 6 7 1.08 37.30 11.53 *FLAGS SPLAY 7 7a 1.09 217.24 -12.21 7 7b 0.80 327.16 66.53 7 7c 4.12 176.11 -83.10 7 7d 0.72 287.69 -77.51 7 7e 0.60 292.40 -18.76 7 7f 2.02 100.10 16.73 *FLAGS NOT SPLAY 7 8 2.00 6.10 11.51 *FLAGS SPLAY 8 8a 2.00 184.82 -11.17 8 8b 1.47 98.32 -7.52 8 8c 0.19 105.24 52.84 8 8d 1.24 102.22 -61.02 8 8e 0.88 109.39 0.40 *FLAGS NOT SPLAY 8 9 1.01 56.60 0.18 ;1.9=bottom point of sharp vertical edge of boulder forming ceiling *FLAGS SPLAY 9 9a 1.02 236.71 -0.46 9 9b 0.48 12.78 64.51 9 9c 0.60 279.77 -8.53 9 9d 0.47 275.64 -73.34 9 9e 3.54 74.99 6.08 *FLAGS NOT SPLAY 9 10 3.07 336.52 5.81 ;1.10=bottom of cream calcite rib running down RH wall *FLAGS SPLAY 10 10a 3.08 156.19 -6.26 10 10b 0.58 232.61 -1.43 10 10c 1.31 64.76 -58.36 10 10d 1.43 101.23 -11.90 10 10e 1.14 78.33 -36.92 *FLAGS NOT SPLAY 9 11 2.42 64.64 5.29 *FLAGS SPLAY 11 11a 2.42 245.35 -5.41 11 11b 0.44 233.11 24.20 11 11c 0.20 42.71 -21.97 11 11d 0.45 239.67 46.05 11 11e 0.49 178.37 -53.68 11 11f 3.30 118.39 17.88 *FLAGS NOT SPLAY 11 12 4.50 106.56 19.29 *FLAGS SPLAY 12 12a 0.25 297.10 84.93 12 12b 0.26 127.16 -84.07 12 12c 0.60 197.87 18.66 12 12d 1.17 327.17 -9.65 12 12e 1.63 13.18 -2.28 12 12f 1.86 96.76 12.16 10 10f 3.76 209.97 51.34 *FLAGS NOT SPLAY 10 13 0.94 80.55 -45.63 *FLAGS SPLAY 13 13a 0.94 259.78 45.32 13 13b 0.84 97.15 56.57 13 13c 1.16 144.82 14.01 13 13d 0.48 130.78 -25.41 13 13e 0.58 324.87 25.54 *FLAGS NOT SPLAY 13 14 5.31 65.16 19.50 *FLAGS SPLAY 14 14a 5.82 246.22 -19.66 14 14b 0.64 206.92 -10.28 14 14c 0.54 185.33 -53.51 14 14d 0.21 279.32 69.67 14 14e 2.09 161.86 8.15 14 14f 0.85 285.98 -13.42 *FLAGS NOT SPLAY 10 15 3.27 329.15 -18.16 *FLAGS SPLAY 15 15a 3.25 149.02 17.88 15 15b 0.77 63.28 -13.22 15 15c 0.70 243.58 79.61 15 15d 0.80 97.26 -82.81 15 15e 2.37 233.98 -23.81 15 15f 0.94 168.26 10.56 *FLAGS NOT SPLAY 15 16 3.57 334.08 -6.33 *FLAGS SPLAY 16 16a 3.58 154.40 6.43 16 16b 0.29 52.63 -10.96 16 16c 0.70 63.17 -62.51 16 16d 0.73 221.54 2.28 16 16e 1.82 250.10 55.64 16 16f 0.86 237.55 47.64 16 16g 0.86 195.09 5.98 *FLAGS NOT SPLAY 16 17 2.41 207.98 -9.43 *FLAGS SPLAY 17 17a 2.40 28.72 9.44 17 17b 1.55 24.59 -70.16 17 17c 1.33 336.78 -9.34 17 17d 0.48 26.59 -33.63 17 17e 0.66 83.59 13.58 17 17f 1.67 193.75 -23.62 *FLAGS NOT SPLAY 17 18 4.05 308.01 -19.25 *FLAGS SPLAY 18 18a 4.05 128.34 19.12 18 18b 1.54 155.56 12.30 18 18c 0.60 300.02 2.80 18 18d 0.28 261.46 65.07 18 18e 0.68 182.87 -85.38 *FLAGS NOT SPLAY 18 19 2.06 211.48 -16.06 *FLAGS SPLAY 19 19a 2.04 31.72 16.13 19 19b 0.55 320.99 71.97 19 19c 1.54 308.22 -85.39 19 19d 0.46 306.67 -13.63 *FLAGS NOT SPLAY 19 20 2.94 233.55 -35.84 *FLAGS SPLAY 20 20a 2.95 53.57 35.69 20 20b 0.98 64.26 12.43 20 20c 0.93 44.01 13.78 20 20d 1.56 84.07 80.29 20 20e 1.62 301.40 -84.42 *FLAGS NOT SPLAY 20 21 2.04 14.57 -39.09 ;1.21=25cm tall stumpy stalagmite on floor to left of top of Jacob's Ladder. Stn is centre of flat ring on top. *FLAGS SPLAY 21 21a 2.04 195.35 38.69 21 21b 1.80 235.96 12.16 21 21c 0.21 339.46 -76.92 21 21d 0.34 53.17 3.81 21 21e 3.17 230.10 64.31 *FLAGS NOT SPLAY *data passage station left right up down 0 0.00 0.00 0.00 0.00 2 0.00 1.90 0.00 1.38 3 0.09 0.11 0.91 0.44 4 0.56 0.00 1.49 1.31 5 1.98 4.15 0.69 0.50 6 0.49 0.19 0.35 0.29 7 0.57 1.90 0.73 4.09 8 0.00 1.34 0.15 1.09 9 0.38 0.87 0.43 0.45 11 0.13 1.70 0.33 0.40 12 1.63 0.57 0.25 0.26 *data passage station left right up down 9 0.59 3.00 0.43 0.45 10 0.54 2.34 2.93 1.11 13 0.50 1.07 0.70 0.21 14 0.54 2.05 0.20 0.44 *data passage station left right up down 10 1.97 1.09 2.93 1.11 15 2.15 0.75 0.68 0.80 16 0.83 0.18 1.51 0.62 17 1.38 1.29 0.00 1.46 18 1.46 0.38 0.25 0.68 19 0.00 0.45 0.53 1.54 20 0.00 0.89 1.53 1.62 21 1.16 0.21 2.86 0.21 *END 1 *END Swil20120909 CaveConverter_src/test/data/regression/0122_Suviejo_in.svx0000644000000000000000000000664412560565166022607 0ustar rootroot*BEGIN 0122_Suviejo ;Created from Survey file on Wed,10 Apr 1996.21:35:04 ;Dates surveyed : 78/8&960410 ;Surveyors : ND+PeteS+ ;No of stations : 126 ;Plan length : 1268.36131m ;Traverse length: 1378.92m *FIX 0 454865 4800110 0183 *ENTRANCE 0 0 1 19.90 42.28 -13 ;* 1 2 15.40 75.28 -10 ;* 2 3 3.50 55.28 0 ;* 3 4 19.30 - -V ;* 4 5 14.80 211.28 -27 ;* 5 6 39.70 217.28 -15 ;* 6 7 15.20 206.28 -17 ;* 7 8 5.20 - -V ;* 8 9 11.10 208.28 -6 ;* 4 10 18.00 43.28 20 ;* 10 11 9.00 13.28 -27 ;* 11 12 4.50 137.28 -65 ;* 12 13 8.00 31.28 -36 ;* 13 14 22.00 64.28 -45 ;* 14 15 19.50 40.28 25 ;* 15 16 16.00 28.28 -10 ;* 15 17 7.50 302.28 -21 ;* 17 18 7.00 220.28 -5 ;* 18 19 23.00 229.28 0 ;* 19 20 12.00 197.28 0 ;* 20 21 10.50 202.28 11 ;* 21 22 10.00 219.28 -18 ;* 22 23 8.00 213.28 0 ;* 23 24 8.00 192.28 0 ;* 24 25 13.00 219.28 0 ;* 25 26 12.00 211.28 0 ;* 26 27 8.50 220.28 0 ;* 27 28 14.00 228.28 0 ;* 28 29 5.00 212.28 -12 ;* 29 30 4.30 - -V ;* 30 31 11.00 210.28 -38 ;* 31 32 30.00 224.28 0 ;* 32 33 30.00 231.28 10 ;* 33 34 10.00 203.28 -25 ;* 34 35 8.00 203.28 -29 ;* 31 36 1.50 330.28 -17 ;* 36 37 14.20 39.28 -40 ;* 37 38 10.00 351.28 -7 ;* 38 39 11.80 35.28 3 ;* 39 40 30.30 29.78 0 ;* 40 41 5.20 255.28 3 ;* 41 42 12.40 340.28 0 ;* 42 43 4.50 306.28 0 ;* 40 44 8.10 22.28 -4 ;* 44 45 16.70 346.28 -2 ;* 45 46 12.30 20.28 -1 ;* 46 47 11.10 16.28 1 ;* 47 48 11.00 326.28 4 ;* 48 49 26.30 335.28 -47 ;* 49 50 2.50 64.28 -9 ;* 50 51 4.40 286.28 -48 ;* 51 52 1.90 284.28 -10 ;* 52 53 5.10 - -V ;* 53 54 11.70 124.28 -61 ;* 54 55 3.10 179.28 -9 ;* 55 56 2.50 106.28 -28 ;* 56 57 3.60 46.28 -35 ;* 49 58 5.40 39.78 0 ;* 58 59 7.10 20.28 5 ;* 59 60 2.30 248.28 -40 ;* 60 61 6.60 222.28 0 ;* 60 62 4.40 359.28 9 ;* 62 63 11.60 222.28 1 ;* 63 64 15.40 208.78 0 ;* 64 65 5.30 235.28 -1 ;* 65 66 17.00 209.78 -2 ;* 66 67 20.80 221.28 4 ;* 62 68 5.00 28.28 9 ;* 68 69 9.00 33.28 -20 ;* 37 70 25.30 220.28 0 ;* 70 71 13.20 204.28 6 ;* 71 72 8.70 217.28 -3 ;* 72 73 10.00 130.28 0 ;* 73 74 5.20 70.28 0 ;* 74 75 11.60 115.28 4 ;* 75 76 5.70 50.28 3 ;* 76 77 9.00 166.28 0 ;* 77 78 3.80 203.28 3 ;* 78 79 5.00 169.28 4 ;* 79 80 8.20 221.28 -8 ;* 80 81 8.60 18.28 0 ;* 80 82 12.80 201.78 -1 ;* 82 83 4.30 214.28 -37 ;* 83 84 4.60 220.28 0 ;* 84 85 3.60 141.78 -1 ;* 85 86 5.60 231.28 16 ;* 86 87 7.10 186.28 3 ;* 87 88 3.10 245.28 4 ;* 88 89 14.30 186.78 -1 ;* 89 90 10.00 84.28 4 ;* 90 91 11.70 97.28 -1 ;* 91 92 7.40 143.28 0 ;* 92 93 9.90 193.28 -7 ;* 93 94 8.50 194.28 -3 ;* 94 95 5.00 165.28 0 ;* 0 96 21.00 45.40 -15 ;* 96 97 12.10 70.40 -12 ;* 97 98 17.80 54.40 -45 ;below 1st p 98 99 30.00 210.40 -27 ;stn 20 99 100 30.00 220.40 -8 ;stn 19 below cl up 100 101 10.90 164.40 30 ;stn 18 101 102 15.60 206.40 -21 ;start of rift stn 17 102 103 4.60 213.40 -7 ;top 2nd p 103 104 2.80 - -V ;rebelay 104 105 18.90 211.40 -51 ;near bottom of p; stn 14 105 106 15.20 201.40 -4 ;* 106 107 6.60 313.40 0 ;* 107 108 30.00 305.40 -3 ;stn 11; middle of camp site 108 109 20.30 41.40 -5 ;stn 10; top 3rd p 109 110 3.50 - -V ;* 110 111 14.90 29.40 -33 ;stn 8; junction marked with triangle 111 112 4.95 306.40 -5 ;* 112 113 19.70 30.40 0 ;* 113 114 22.20 26.40 0 ;* 114 115 12.40 39.40 -2 ;stn 4 115 116 3.20 333.40 -1 ;* 116 117 24.85 358.40 -3 ;stn 2 117 118 9.37 29.40 2 ;* 118 119 12.85 338.40 -7 ;pool p marked on left *EQUATE 39 109 *EQUATE 48 119 *END 0122_Suviejo CaveConverter_src/test/data/regression/SwilEnt_ss_cmdsl_ref.svx0000644000000000000000000012575213030252172024122 0ustar rootroot*BEGIN Swildons *EQUATE Ent EntranceZigZags.3 *EQUATE surfacegps.4 EntranceZigZags.3 *EQUATE LongDryWay.0 EntranceZigZags.5 *EQUATE LongDryWay.5 EntranceZigZags.21 *EQUATE LongDryWay.5 ShortDryWay.pt1.0 *EQUATE LongDryWay.39 NewGrottoes.0 *EQUATE LongDryWay.62 OldGrotto2WC.4 *EQUATE LongDryWay.59 OldGrotto2WC.0 *EQUATE LongDryWay.59 ShortDryWay.pt2.3 *EQUATE WaterRift.0 OldGrotto2WC.11 *EQUATE WaterRift.4 FortyRoute.0 *EQUATE WaterRift.12 FortyRoute.11 *EQUATE 10.0 LongDryWay.8 *EQUATE 10.20 LongDryWay.2 *EQUATE 10.13 20.20 *EQUATE 10.18 20.27 *EQUATE 20.0 EntranceZigZags.5 *EQUATE 20.23 ShortDryWay.pt1.3 *EQUATE 20.19 EntranceZigZags.5 *BEGIN surfacegps *DATE 2013.06.30 *CALIBRATE declination 1.58 *FLAGS SURFACE 0 1 9.84 94.37 -5.88 1 2 7.84 97.65 -8.05 2 3 11.76 94.27 -17.67 3 4 4.38 7.38 -23.29 3 5 5.45 262.93 13.06 5 6 8.80 174.95 11.61 6 7 13.78 168.31 12.55 *END surfacegps *BEGIN EntranceZigZags *DATE 2012.09.09 *CALIBRATE declination 1.7 *FLAGS SURFACE 0 1 2.98 10.26 -2.01 0 2 5.24 3.23 -5.04 *FLAGS SPLAY 2 2a 5.24 182.16 5.06 2 2b 1.89 187.97 3.09 2 2c 1.91 168.82 1.18 2 2d 1.38 218.59 -0.17 2 2e 0.64 248.05 1.54 2 2f 0.68 105.32 -3.30 2 2g 1.56 140.40 -2.98 2 2h 1.84 176.52 -47.48 2 2i 1.82 167.81 -47.93 2 2j 1.54 189.90 -63.97 2 2k 1.61 132.31 -59.62 *FLAGS NOT SPLAY 2 3 2.64 166.70 -60.11 *FLAGS NOT SURFACE SPLAY 3 3a 0.22 345.81 60.30 3 3b 2.63 347.89 60.51 3 3c 0.94 9.90 76.67 3 3d 0.31 232.08 12.34 3 3e 0.35 31.05 10.29 3 3f 0.47 8.50 -70.77 *FLAGS NOT SPLAY 3 4 3.10 330.76 -25.13 *FLAGS SPLAY 4 4a 3.12 152.39 25.35 4 4b 0.56 208.59 -0.68 4 4c 0.59 140.67 80.22 4 4d 1.32 189.06 -86.08 4 4e 1.50 43.79 87.42 *FLAGS NOT SPLAY 4 5 4.51 275.80 -12.10 *FLAGS SPLAY 5 5a 4.51 94.74 12.12 5 5b 3.45 123.81 5.64 5 5c 3.51 134.15 0.14 5 5d 6.66 129.46 11.11 5 5e 2.32 149.61 -6.69 5 5f 1.64 153.47 -11.17 5 5g 0.79 252.58 -12.22 5 5h 1.22 296.10 -7.82 5 5i 2.96 296.71 -23.02 5 5j 1.51 42.54 10.51 5 5k 4.24 72.82 11.85 5 5l 0.70 333.90 81.49 5 5m 0.55 114.68 -67.13 *FLAGS NOT SPLAY 5 6 2.41 50.67 -22.33 *FLAGS SPLAY 6 6a 2.38 230.76 22.40 6 6b 0.35 2.58 81.25 6 6c 0.30 220.39 -79.38 6 6d 0.51 299.09 -0.90 6 6e 0.21 108.28 1.25 *FLAGS NOT SPLAY 6 7 1.08 37.30 11.53 *FLAGS SPLAY 7 7a 1.09 217.24 -12.21 7 7b 0.80 327.16 66.53 7 7c 4.12 176.11 -83.10 7 7d 0.72 287.69 -77.51 7 7e 0.60 292.40 -18.76 7 7f 2.02 100.10 16.73 *FLAGS NOT SPLAY 7 8 2.00 6.10 11.51 *FLAGS SPLAY 8 8a 2.00 184.82 -11.17 8 8b 1.47 98.32 -7.52 8 8c 0.19 105.24 52.84 8 8d 1.24 102.22 -61.02 8 8e 0.88 109.39 0.40 *FLAGS NOT SPLAY 8 9 1.01 56.60 0.18 *FLAGS SPLAY 9 9a 1.02 236.71 -0.46 9 9b 0.48 12.78 64.51 9 9c 0.60 279.77 -8.53 9 9d 0.47 275.64 -73.34 *FLAGS NOT SPLAY 9 10 3.07 336.52 5.81 *FLAGS SPLAY 10 10a 3.08 156.19 -6.26 10 10b 0.58 232.61 -1.43 10 10c 1.31 64.76 -58.36 10 10d 1.43 101.23 -11.90 10 10e 1.14 78.33 -36.92 *FLAGS NOT SPLAY 9 11 2.42 64.64 5.29 *FLAGS SPLAY 11 11a 2.42 245.35 -5.41 11 11b 0.44 233.11 24.20 11 11c 0.20 42.71 -21.97 11 11d 0.45 239.67 46.05 11 11e 0.49 178.37 -53.68 11 11f 3.30 118.39 17.88 *FLAGS NOT SPLAY 11 12 4.50 106.56 19.29 *FLAGS SPLAY 12 12a 0.25 297.10 84.93 12 12b 0.26 127.16 -84.07 12 12c 0.60 197.87 18.66 12 12d 1.17 327.17 -9.65 12 12e 1.63 13.18 -2.28 12 12f 1.86 96.76 12.16 10 10f 3.76 209.97 51.34 *FLAGS NOT SPLAY 10 13 0.94 80.55 -45.63 *FLAGS SPLAY 13 13a 0.94 259.78 45.32 13 13b 0.84 97.15 56.57 13 13c 1.16 144.82 14.01 13 13d 0.48 130.78 -25.41 13 13e 0.58 324.87 25.54 *FLAGS NOT SPLAY 13 14 5.31 65.16 19.50 *FLAGS SPLAY 14 14a 5.82 246.22 -19.66 14 14b 0.64 206.92 -10.28 14 14c 0.54 185.33 -53.51 14 14d 0.21 279.32 69.67 14 14e 2.09 161.86 8.15 14 14f 0.85 285.98 -13.42 *FLAGS NOT SPLAY 10 15 3.27 329.15 -18.16 *FLAGS SPLAY 15 15a 3.25 149.02 17.88 15 15b 0.77 63.28 -13.22 15 15c 0.70 243.58 79.61 15 15d 0.80 97.26 -82.81 15 15e 2.37 233.98 -23.81 15 15f 0.94 168.26 10.56 *FLAGS NOT SPLAY 15 16 3.57 334.08 -6.33 *FLAGS SPLAY 16 16a 3.58 154.40 6.43 16 16b 0.29 52.63 -10.96 16 16c 0.70 63.17 -62.51 16 16d 0.73 221.54 2.28 16 16e 1.82 250.10 55.64 16 16f 0.86 237.55 47.64 16 16g 0.86 195.09 5.98 *FLAGS NOT SPLAY 16 17 2.41 207.98 -9.43 *FLAGS SPLAY 17 17a 2.40 28.72 9.44 17 17b 1.55 24.59 -70.16 17 17c 1.33 336.78 -9.34 17 17d 0.48 26.59 -33.63 17 17e 0.66 83.59 13.58 17 17f 1.67 193.75 -23.62 *FLAGS NOT SPLAY 17 18 4.05 308.01 -19.25 *FLAGS SPLAY 18 18a 4.05 128.34 19.12 18 18b 1.54 155.56 12.30 18 18c 0.60 300.02 2.80 18 18d 0.28 261.46 65.07 18 18e 0.68 182.87 -85.38 *FLAGS NOT SPLAY 18 19 2.06 211.48 -16.06 *FLAGS SPLAY 19 19a 2.04 31.72 16.13 19 19b 0.55 320.99 71.97 19 19c 1.54 308.22 -85.39 19 19d 0.46 306.67 -13.63 *FLAGS NOT SPLAY 19 20 2.94 233.55 -35.84 *FLAGS SPLAY 20 20a 2.95 53.57 35.69 20 20b 0.98 64.26 12.43 20 20c 0.93 44.01 13.78 20 20d 1.56 84.07 80.29 20 20e 1.62 301.40 -84.42 *FLAGS NOT SPLAY 20 21 2.04 14.57 -39.09 *FLAGS SPLAY 21 21a 2.04 195.35 38.69 21 21b 1.80 235.96 12.16 21 21c 0.21 339.46 -76.92 21 21d 0.34 53.17 3.81 21 21e 3.17 230.10 64.31 *FLAGS NOT SPLAY *data passage station left right up down 3 0.30 0.38 0.91 0.44 4 0.56 0.00 1.50 1.32 5 1.98 4.15 0.69 0.51 6 0.49 0.19 0.35 0.29 7 0.57 1.89 0.73 4.09 8 0.00 1.34 0.15 1.08 9 0.37 0.00 0.43 0.45 11 0.13 1.70 0.32 0.39 12 1.63 0.57 0.25 0.26 *data passage station left right up down 9 0.59 0.00 0.43 0.45 10 0.54 2.34 2.94 1.12 13 0.50 1.07 0.70 0.21 14 0.54 2.05 0.20 0.43 *data passage station left right up down 10 1.97 1.10 2.94 1.12 15 2.15 0.75 0.69 0.79 16 0.83 0.18 1.50 0.62 17 1.38 1.29 0.00 1.46 18 1.46 0.39 0.25 0.68 19 0.00 0.44 0.52 1.54 20 0.00 0.89 1.54 1.61 21 1.16 0.21 2.86 0.20 *END EntranceZigZags *BEGIN LongDryWay *DATE 2013.02.23 *CALIBRATE declination 1.63 *EQUATE 44 46 *FLAGS SPLAY 0 0a 0.57 190.50 0.73 0 0b 0.67 258.82 80.80 0 0c 1.35 2.03 3.08 0 0d 0.56 96.94 -85.13 0 0e 4.05 271.96 -24.99 0 0f 4.25 271.79 -25.07 *FLAGS NOT SPLAY 0 1 4.08 270.72 -25.50 *FLAGS SPLAY 1 1a 1.99 51.56 -3.25 1 1b 0.46 105.97 80.16 1 1c 1.51 94.64 -80.82 1 1d 4.22 97.98 -2.77 1 1e 3.40 122.23 -12.40 1 1f 3.13 150.51 -15.80 1 1g 6.66 142.47 -10.55 *FLAGS NOT SPLAY 1 2 3.77 354.35 -29.81 *FLAGS SPLAY 2 2a 0.66 241.86 -8.20 2 2b 1.94 85.48 -81.67 2 2c 0.59 61.84 0.46 2 2d 0.74 236.38 81.47 2 2e 1.67 66.88 -56.31 2 2f 1.30 149.63 -32.25 *FLAGS NOT SPLAY 2 3 4.33 336.10 -24.79 *FLAGS SPLAY 3 3a 1.20 273.33 77.00 3 3b 0.46 54.65 1.29 3 3c 0.19 248.98 6.64 3 3d 0.49 67.19 -81.38 3 3e 0.44 244.00 2.33 *FLAGS NOT SPLAY 3 4 2.77 337.70 -4.41 *FLAGS SPLAY 4 4a 1.44 45.43 -70.35 4 4b 0.50 246.88 -7.75 4 4c 2.23 271.73 60.68 *FLAGS NOT SPLAY 4 5 3.14 343.71 -25.59 *FLAGS SPLAY 5 5a 0.31 68.00 4.55 5 5b 0.23 200.44 -82.34 5 5c 3.01 212.74 65.59 5 5d 1.83 228.77 1.96 5 5e 2.24 149.67 -4.84 5 5f 1.07 119.80 -19.64 *FLAGS NOT SPLAY 5 6 1.87 332.43 6.50 *FLAGS SPLAY 6 6a 0.33 85.05 2.16 6 6b 0.81 234.74 4.03 6 6c 0.46 76.22 -85.16 6 6d 1.31 224.58 20.79 6 6e 2.65 233.44 69.74 *FLAGS NOT SPLAY 6 7 2.26 343.32 -5.29 *FLAGS SPLAY 7 7a 0.51 89.65 -82.84 7 7b 0.44 225.38 -8.27 7 7c 1.81 226.26 51.07 *FLAGS NOT SPLAY 7 8 1.72 258.62 12.28 *FLAGS SPLAY 8 8a 0.79 122.45 -3.92 8 8b 0.82 125.25 -80.01 8 8c 1.02 113.36 59.45 *FLAGS NOT SPLAY 7 9 1.10 310.47 4.46 *FLAGS SPLAY 9 9a 0.57 99.03 -87.47 9 9b 0.90 250.68 3.72 9 9c 0.88 233.37 70.96 9 9d 0.60 60.03 -19.66 *FLAGS NOT SPLAY 9 10 2.37 334.59 4.19 *FLAGS SPLAY 10 10a 0.26 51.75 0.96 10 10b 0.43 43.34 -88.13 10 10c 0.44 235.87 0.68 10 10d 2.30 241.44 71.10 *FLAGS NOT SPLAY 10 11 1.12 263.77 46.91 *FLAGS SPLAY 11 11a 0.64 52.79 1.87 11 11b 1.45 190.34 76.03 11 11c 0.98 0.32 -83.36 *FLAGS NOT SPLAY 11 12 3.53 351.74 -3.89 *FLAGS SPLAY 12 12a 0.83 261.49 10.43 12 12b 1.01 249.00 60.34 *FLAGS NOT SPLAY 12 13 1.97 312.50 39.30 *FLAGS SPLAY 13 13a 0.91 98.78 -1.21 13 13b 0.46 59.54 83.75 13 13c 1.07 62.56 -71.75 *FLAGS NOT SPLAY 13 14 2.39 28.12 3.33 *FLAGS SPLAY 14 14a 1.53 267.21 -13.19 14 14b 0.59 261.25 -82.95 14 14c 0.50 137.83 73.72 *FLAGS NOT SPLAY 14 15 0.86 306.09 -13.02 *FLAGS SPLAY 15 15a 0.46 78.21 4.93 15 15b 0.65 248.76 6.64 15 15c 0.41 265.85 -88.54 15 15d 0.40 124.70 82.35 15 15e 0.47 23.47 0.91 *FLAGS NOT SPLAY 15 16 4.55 48.38 7.37 *FLAGS SPLAY 16 16a 2.92 223.69 -3.46 16 16b 3.00 236.59 2.01 16 16c 1.64 276.31 -3.03 16 16d 0.90 237.99 72.78 16 16e 1.59 109.59 -71.63 16 16f 2.40 204.15 -9.08 16 16g 1.26 254.43 2.93 *FLAGS NOT SPLAY 16 17 2.34 328.01 -9.83 *FLAGS SPLAY 17 17a 1.50 103.75 -2.42 17 17b 1.22 173.37 80.16 *FLAGS NOT SPLAY 17 18 2.65 86.23 -7.24 *FLAGS SPLAY 18 18a 2.10 185.84 6.37 18 18b 0.40 223.80 82.63 18 18c 0.51 10.73 10.61 18 18d 0.52 174.98 -79.44 *FLAGS NOT SPLAY 18 19 0.84 146.67 18.49 *FLAGS SPLAY 19 19a 1.39 43.52 3.89 19 19b 0.51 159.85 17.51 19 19c 0.40 97.95 87.19 *FLAGS NOT SPLAY 19 20 1.81 87.93 13.23 *FLAGS SPLAY 20 20a 0.60 43.10 4.22 20 20b 1.64 208.49 63.28 20 20c 0.87 209.39 -0.95 *FLAGS NOT SPLAY 20 21 1.73 164.45 7.33 *FLAGS SPLAY 21 21a 0.68 33.20 4.40 21 21b 1.20 234.09 82.95 21 21c 0.25 41.06 -84.36 *FLAGS NOT SPLAY 21 22 2.91 113.95 7.56 *FLAGS SPLAY 22 22a 1.33 255.18 77.95 22 22b 0.88 220.17 0.04 22 22c 0.40 136.32 -85.39 22 22d 2.39 358.28 2.05 22 22e 4.28 320.27 -8.84 *FLAGS NOT SPLAY 22 23 1.51 181.21 30.14 *FLAGS SPLAY 23 23a 0.20 214.51 -9.54 23 23b 1.26 55.54 -74.20 23 23c 0.38 35.19 9.16 23 23d 0.40 243.28 88.13 23 23e 1.79 34.58 -40.94 *FLAGS NOT SPLAY 23 24 4.59 108.18 -8.18 *FLAGS SPLAY 24 24a 2.12 27.47 19.01 24 24b 1.44 265.31 83.06 24 24c 2.74 209.33 20.17 24 24d 3.06 204.37 31.06 24 24e 2.70 172.96 38.49 24 24f 2.76 119.14 44.68 24 24g 4.29 105.49 35.63 24 24h 3.31 94.03 37.41 24 24i 3.41 321.99 7.71 *FLAGS NOT SPLAY 24 25 3.22 188.75 35.45 *FLAGS SPLAY 25 25a 1.17 228.03 4.30 25 25b 2.44 342.35 79.94 25 25c 0.87 172.80 80.92 25 25d 0.37 33.36 9.50 25 25e 4.18 97.27 36.04 *FLAGS NOT SPLAY 25 26 4.13 139.60 16.69 *FLAGS SPLAY 26 26a 0.48 231.41 -0.43 26 26b 0.56 131.73 89.68 26 26c 1.15 13.53 28.43 26 26d 0.53 146.88 -77.01 26 26e 3.06 118.05 16.64 *FLAGS NOT SPLAY 25 27 4.94 97.33 39.05 *FLAGS SPLAY 27 27a 0.53 73.50 39.91 27 27b 2.86 145.99 24.42 27 27c 2.08 181.17 14.96 27 27d 3.64 159.34 16.76 *FLAGS NOT SPLAY 24 28 2.78 323.60 -24.94 *FLAGS SPLAY 28 28a 2.01 240.61 79.48 28 28b 1.17 150.81 -80.16 28 28c 0.42 153.56 -10.07 *FLAGS NOT SPLAY 28 29 0.89 90.00 -48.92 *FLAGS SPLAY 29 29a 0.66 345.81 68.52 29 29b 0.74 153.15 1.62 29 29c 0.65 303.35 1.69 29 29d 1.17 85.81 -77.61 29 29e 1.26 23.75 -19.21 *FLAGS NOT SPLAY 29 30 6.28 324.60 -29.83 *FLAGS SPLAY 30 30a 1.95 224.71 72.46 30 30b 1.49 213.57 5.25 30 30c 0.32 52.79 6.31 30 30d 0.43 224.41 -83.42 *FLAGS NOT SPLAY 30 31 1.55 264.23 41.75 *FLAGS SPLAY 31 31a 1.18 36.18 2.86 31 31b 1.41 7.15 4.71 31 31c 0.98 76.71 80.67 31 31d 0.43 206.64 4.65 31 31e 1.50 164.76 -87.26 *FLAGS NOT SPLAY 31 32 2.26 15.83 12.57 *FLAGS SPLAY 32 32a 0.88 258.32 -39.46 32 32b 0.41 254.53 -1.76 32 32c 0.62 258.09 37.38 32 32d 0.76 1.51 -83.57 *FLAGS NOT SPLAY 32 35 6.03 323.45 -41.61 31 34 5.13 314.22 -30.46 *FLAGS SPLAY 34 34a 1.81 117.94 6.32 34 34b 1.67 169.45 73.19 34 34c 0.78 104.73 -65.15 *FLAGS NOT SPLAY 34 35 2.76 19.79 -19.74 *FLAGS SPLAY 35 35a 3.60 249.79 75.43 35 35b 0.58 4.89 17.88 35 35c 1.23 222.29 3.93 *FLAGS NOT SPLAY 35 36 4.45 91.00 26.23 *FLAGS SPLAY 36 36a 2.37 172.41 2.46 36 36b 2.48 280.23 82.99 36 36c 1.17 0.68 7.77 36 36d 0.38 351.51 -81.72 36 36e 4.81 16.95 43.97 *FLAGS NOT SPLAY 36 37 6.61 112.79 18.69 *FLAGS SPLAY 37 37a 2.77 143.57 88.42 37 37b 1.24 47.17 8.65 37 37c 2.20 237.64 2.14 37 37d 0.52 23.20 -72.57 *FLAGS NOT SPLAY 37 38 3.92 158.52 22.40 *FLAGS SPLAY 38 38a 2.57 265.36 79.77 38 38b 1.77 258.21 76.02 38 38c 0.83 188.45 -87.34 38 38d 1.09 247.04 2.21 38 38e 1.13 47.31 -9.21 *FLAGS NOT SPLAY 38 39 5.06 158.54 15.55 *FLAGS SPLAY 39 39a 0.81 95.41 80.83 39 39b 0.36 243.34 -2.19 39 39c 1.36 68.36 1.57 39 39d 0.31 143.52 -87.32 39 39e 2.22 37.38 14.64 39 39f 1.24 124.14 29.01 39 39g 1.52 169.90 20.43 39 39h 3.17 184.03 6.76 *FLAGS NOT SPLAY 39 40 3.30 137.29 35.75 *FLAGS SPLAY 40 40a 0.41 330.85 80.32 40 40b 0.72 24.63 16.27 40 40c 0.43 242.41 10.73 *FLAGS NOT SPLAY 40 41 1.54 156.92 21.03 *FLAGS SPLAY 41 41a 1.17 313.23 86.69 41 41b 0.76 273.70 17.56 41 41c 1.15 52.78 9.22 *FLAGS NOT SPLAY 41 42 1.23 188.42 54.13 *FLAGS SPLAY 42 42a 0.31 20.21 65.90 42 42b 0.56 64.53 1.80 42 42c 0.25 246.58 30.01 42 42d 1.21 119.22 24.03 *FLAGS NOT SPLAY 35 43 7.82 271.86 -10.72 *FLAGS SPLAY 43 43a 2.96 340.05 72.39 43 43b 0.62 18.69 7.95 43 43c 0.66 202.11 10.96 43 43d 1.72 172.80 -79.05 *FLAGS NOT SPLAY 43 44 1.58 132.75 -54.76 43 45 4.22 283.16 -3.82 *FLAGS SPLAY 45 45a 0.26 5.45 2.81 45 45b 0.92 147.26 -80.05 45 45c 2.17 187.63 77.31 45 45d 1.42 144.48 74.70 45 45e 1.03 171.63 2.41 46 46a 1.17 359.83 20.74 46 46b 1.04 279.77 44.73 *FLAGS NOT SPLAY 46 47 4.08 278.14 -22.89 *FLAGS SPLAY 47 47a 1.17 175.15 69.16 47 47b 0.66 146.16 -60.94 47 47c 0.96 181.60 1.29 *FLAGS NOT SPLAY 47 48 1.62 127.59 7.41 *FLAGS SPLAY 48 48a 0.32 222.85 -13.13 48 48b 0.43 203.78 77.03 48 48c 0.71 106.46 -84.42 48 48d 6.38 143.21 1.27 48 48e 9.20 143.56 0.28 *FLAGS NOT SPLAY 45 49 2.40 265.00 1.41 *FLAGS SPLAY 49 49a 2.28 354.04 78.68 49 49b 0.52 198.25 -1.65 49 49c 0.89 19.99 9.05 49 49d 0.71 358.32 -81.38 49 49e 3.78 142.08 -59.73 *FLAGS NOT SPLAY 49 50 2.06 297.62 28.08 *FLAGS SPLAY 50 50a 0.69 36.66 83.53 50 50b 0.46 191.30 6.20 50 50c 0.76 186.66 -84.09 *FLAGS NOT SPLAY 50 51 2.38 317.24 16.74 *FLAGS SPLAY 51 51a 0.35 91.28 79.27 51 51b 0.67 44.19 5.41 51 51c 1.90 251.77 -12.45 51 51d 4.01 13.33 -82.25 *FLAGS NOT SPLAY 51 52 2.80 335.01 -5.36 *FLAGS SPLAY 52 52a 2.10 212.50 -9.20 52 52b 0.66 156.09 88.10 52 52c 1.10 206.43 -87.82 52 52d 0.70 140.09 -4.62 *FLAGS NOT SPLAY 52 53 8.00 77.58 15.81 52 54 2.99 251.79 -11.14 *FLAGS SPLAY 54 54a 1.50 7.07 14.17 54 54b 4.94 156.76 -77.22 54 54c 1.38 326.54 73.27 *FLAGS NOT SPLAY 54 55 2.75 287.69 -14.31 *FLAGS SPLAY 55 55a 0.48 212.28 8.16 55 55b 1.78 2.22 0.72 55 55c 1.25 356.97 51.33 55 55d 4.84 0.83 -70.83 55 55e 2.30 347.76 56.75 *FLAGS NOT SPLAY 55 56 6.04 280.29 -11.16 *FLAGS SPLAY 56 56a 2.58 173.80 -9.68 56 56b 0.91 210.62 72.78 56 56c 5.52 258.49 -78.70 56 56d 1.22 355.76 -2.47 *FLAGS NOT SPLAY 56 57 4.72 167.79 -69.81 *FLAGS SPLAY 57 57a 5.53 35.74 84.02 57 57b 1.48 358.49 5.81 57 57c 0.71 175.94 -0.18 57 57d 0.76 90.98 -86.28 *FLAGS NOT SPLAY 57 58 6.26 266.27 3.98 *FLAGS SPLAY 58 58a 0.91 320.07 6.44 58 58b 2.54 289.66 73.92 58 58c 2.05 155.98 1.05 58 58d 0.77 137.62 -73.53 58 58e 4.37 86.04 -33.48 *FLAGS NOT SPLAY 58 59 5.34 221.34 -28.43 *FLAGS SPLAY 59 59a 5.41 309.94 9.33 59 59b 1.86 144.63 3.09 59 59c 3.04 302.62 79.62 59 59d 0.68 132.99 -79.35 59 59e 4.71 353.28 -42.52 59 59f 2.89 67.97 28.72 59 59g 2.49 85.86 13.93 59 59h 2.95 112.78 22.54 59 59i 1.83 207.67 8.62 59 59j 5.28 237.30 -3.61 59 59k 5.32 272.91 -3.40 59 59l 3.22 8.05 23.97 *FLAGS NOT SPLAY 59 60 3.64 249.87 -18.27 *FLAGS SPLAY 60 60a 2.91 98.61 33.34 60 60b 4.04 127.08 30.32 60 60c 3.55 153.59 27.64 60 60d 5.46 181.97 11.17 60 60e 2.54 10.68 -16.02 60 60f 3.08 23.70 -10.67 60 60g 4.51 196.88 -31.47 *FLAGS NOT SPLAY 60 61 6.14 188.00 -36.35 *FLAGS SPLAY 61 61a 0.93 109.00 -3.73 61 61b 4.46 154.64 72.91 61 61c 3.27 191.41 -82.47 *FLAGS NOT SPLAY 61 62 1.04 31.64 -42.73 *data passage station left right up down 0 0.56 1.35 0.66 0.56 1 1.13 1.96 0.45 1.49 2 0.64 0.92 0.73 1.92 3 0.44 0.45 1.17 0.48 4 1.02 0.00 1.94 1.36 5 1.73 0.62 2.74 0.23 6 1.12 0.32 2.49 0.46 7 1.12 0.00 1.41 0.51 9 0.85 0.56 0.83 0.57 10 0.39 0.24 2.18 0.43 11 0.00 0.62 1.41 0.97 12 0.77 0.00 0.88 0.00 13 0.00 0.86 0.46 1.02 14 1.47 0.00 0.48 0.59 15 0.61 0.45 0.40 0.41 16 2.24 0.00 0.86 1.51 17 0.00 1.46 1.20 0.00 18 0.48 1.95 0.40 0.51 19 1.33 0.33 0.40 0.00 20 0.59 0.86 1.46 0.00 21 0.65 0.00 1.19 0.25 22 1.22 0.84 1.30 0.40 23 1.27 0.19 0.40 1.21 24 3.04 1.76 1.43 0.00 25 3.11 1.05 0.86 0.00 26 1.08 0.48 0.56 0.52 *data passage station left right up down 7 1.10 0.00 1.41 0.51 8 0.55 0.00 0.88 0.81 *data passage station left right up down 25 2.42 1.16 0.86 0.00 27 0.16 3.08 0.34 0.00 *data passage station left right up down 24 1.76 3.04 1.43 0.00 28 0.00 0.00 1.98 1.15 29 0.65 0.60 0.61 1.14 30 1.46 0.28 1.86 0.43 31 0.39 1.14 0.97 1.50 32 0.68 0.00 0.38 0.76 35 0.55 0.93 3.48 0.00 36 3.45 2.23 2.46 0.38 37 1.23 2.15 2.77 0.50 38 1.04 1.09 2.53 0.83 39 2.01 1.86 0.80 0.31 40 0.58 0.42 0.40 0.00 41 0.98 0.71 1.17 0.00 42 1.03 0.18 0.28 0.00 *data passage station left right up down 31 0.43 1.37 0.97 1.50 34 0.00 1.36 1.60 0.71 35 0.93 0.55 3.48 0.00 43 0.63 0.60 2.82 1.69 45 1.00 0.26 2.12 0.91 49 1.24 0.87 2.24 0.70 50 0.41 0.00 0.69 0.76 51 1.79 0.65 0.34 3.97 52 1.39 0.00 0.66 1.10 54 0.00 1.44 1.32 4.82 55 0.45 1.74 1.92 4.57 56 0.00 0.91 0.87 5.41 57 0.47 0.00 5.50 0.76 58 2.05 0.88 2.44 0.74 59 2.29 5.14 2.99 0.67 60 3.49 1.16 1.60 2.35 61 0.00 0.00 4.26 3.24 *data passage station left right up down 46 0.00 1.08 0.73 0.00 47 0.00 0.00 1.09 0.58 48 0.00 2.53 0.42 0.71 *END LongDryWay *BEGIN ShortDryWay *EQUATE pt1.13 pt2.0 *BEGIN pt1 *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 1.43 131.61 -13.25 *FLAGS SPLAY 1 1a 1.42 311.07 12.80 1 1b 0.58 327.33 -0.57 1 1c 0.94 171.13 -6.41 1 1d 0.50 258.56 -34.18 *FLAGS NOT SPLAY 1 2 3.89 73.29 -51.63 *FLAGS SPLAY 2 2a 3.91 252.77 52.00 2 2b 0.91 252.72 -4.04 2 2c 0.80 250.31 -35.24 2 2d 2.44 239.99 47.81 *FLAGS NOT SPLAY 2 3 4.50 170.72 19.68 *FLAGS SPLAY 3 3a 4.46 350.50 -20.39 3 3b 0.46 71.39 -4.30 3 3c 0.39 251.63 -13.19 3 3d 1.54 358.12 82.08 3 3e 0.94 170.44 -79.46 3 3f 0.45 220.38 -6.59 *FLAGS NOT SPLAY 3 4 1.11 246.49 -14.16 *FLAGS SPLAY 4 4a 0.68 212.13 -85.64 4 4b 0.28 4.71 4.35 4 4c 0.60 345.93 65.79 4 4d 2.84 294.88 -9.50 *FLAGS NOT SPLAY 2 5 4.91 323.66 2.34 *FLAGS SPLAY 5 5a 4.91 143.73 -2.57 5 5b 0.74 236.15 -6.85 5 5c 0.87 46.77 -82.61 5 5d 1.68 227.27 67.16 5 5e 1.03 103.39 -8.81 5 5f 2.18 148.83 -2.53 *FLAGS NOT SPLAY 5 6 5.05 279.35 -25.23 *FLAGS SPLAY 6 6a 5.05 99.27 25.32 6 6b 0.58 34.79 1.49 6 6c 1.16 111.26 -85.03 6 6d 2.83 16.27 74.62 6 6e 2.60 99.05 2.63 6 6f 2.79 105.09 4.91 *FLAGS NOT SPLAY 6 7 5.02 336.36 -13.85 *FLAGS SPLAY 7 7a 5.00 156.87 13.29 7 7b 0.41 231.77 -3.06 7 7c 3.73 254.43 80.33 7 7d 0.54 182.41 -84.02 7 7e 2.55 328.39 -82.67 *FLAGS NOT SPLAY 7 8 3.19 303.08 -33.11 *FLAGS SPLAY 8 8a 3.21 123.01 33.05 8 8b 0.53 23.07 -5.56 8 8c 4.46 353.35 80.60 8 8d 1.45 224.40 -78.95 8 8e 1.87 72.08 1.35 *FLAGS NOT SPLAY 8 9 6.71 295.69 -12.15 *FLAGS SPLAY 9 9a 6.72 115.55 11.83 9 9b 0.56 196.48 2.10 9 9c 1.16 244.84 81.25 9 9d 1.09 201.63 -76.54 9 9e 3.56 117.58 -4.92 *FLAGS NOT SPLAY 9 10 1.11 265.93 2.35 *FLAGS SPLAY 10 10a 1.10 86.87 -3.67 10 10b 0.45 26.25 1.63 10 10c 1.16 88.18 -83.85 10 10d 0.84 103.85 84.38 *FLAGS NOT SPLAY 10 11 4.30 323.22 3.80 *FLAGS SPLAY 11 11a 4.28 143.46 -4.52 11 11b 0.57 212.81 2.62 11 11c 2.07 237.99 81.23 11 11d 1.72 204.15 -67.89 *FLAGS NOT SPLAY 11 12 3.28 275.99 -17.30 *FLAGS SPLAY 12 12a 3.28 96.34 17.39 12 12b 0.52 17.73 -1.02 12 12c 0.81 128.05 -86.09 12 12d 1.79 345.81 78.34 *FLAGS NOT SPLAY 12 13 4.68 298.00 -3.29 *FLAGS SPLAY 13 13a 4.68 118.39 3.00 13 13b 0.57 34.60 -3.75 13 13c 0.38 17.11 84.09 13 13d 0.72 158.62 -86.15 13 13e 2.72 321.69 70.91 *FLAGS NOT SPLAY *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 0.41 0.87 0.00 0.28 2 0.00 1.63 1.81 0.46 3 0.31 0.26 1.53 0.92 4 0.00 2.09 0.55 0.68 *data passage station left right up down 2 1.63 0.00 1.81 0.46 5 1.00 0.32 1.55 0.86 6 0.00 1.25 2.73 1.16 7 0.41 0.00 3.68 0.54 8 0.00 1.37 4.40 1.42 9 1.02 0.00 1.15 1.06 10 0.00 0.45 0.84 1.15 11 0.64 0.00 2.05 1.59 12 0.00 0.52 1.75 0.81 13 0.00 0.57 0.38 0.72 *END pt1 *BEGIN pt2 *DATE 2013.02.24 *CALIBRATE declination 1.63 *FLAGS SPLAY 0 0a 0.57 34.03 -0.51 0 0b 0.76 110.14 -85.72 0 0c 2.74 327.08 86.41 *FLAGS NOT SPLAY 0 1 3.20 316.66 0.98 *FLAGS SPLAY 1 1a 3.22 136.76 -1.39 1 1b 0.57 38.38 3.06 1 1c 1.47 103.34 -84.18 1 1d 2.40 260.62 87.93 *FLAGS NOT SPLAY 1 2 7.10 308.84 -15.08 *FLAGS SPLAY 2 2a 7.10 128.55 14.54 2 2b 0.66 194.88 1.13 2 2c 2.89 349.78 82.91 2 2d 0.88 179.54 -65.42 *FLAGS NOT SPLAY 2 3 4.24 278.91 -12.53 *FLAGS SPLAY 3 3a 4.21 98.44 12.28 3 3b 3.16 81.24 88.43 3 3c 0.77 354.83 -84.93 *FLAGS NOT SPLAY *data passage station left right up down 0 0.00 0.56 2.73 0.76 1 0.00 0.57 2.40 1.46 2 0.65 0.00 2.87 0.80 3 0.00 0.00 3.16 0.77 *END pt2 *END ShortDryWay *BEGIN NewGrottoes *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 1.56 49.36 7.27 *FLAGS SPLAY 1 1a 0.50 331.16 9.17 1 1b 0.40 271.22 77.61 1 1c 0.73 254.64 -87.94 1 1d 0.61 352.02 40.11 1 1e 0.56 43.52 51.47 *FLAGS NOT SPLAY 1 2 1.75 10.53 51.20 *FLAGS SPLAY 2 2a 1.76 189.76 -51.66 2 2b 0.29 258.50 0.35 2 2c 0.88 338.65 -79.23 2 2d 0.70 150.96 76.26 *FLAGS NOT SPLAY 2 3 4.07 347.52 12.12 *FLAGS SPLAY 3 3a 4.11 169.15 -12.51 3 3b 4.10 169.13 -12.74 3 3c 1.83 347.89 14.57 3 3d 0.96 250.24 -6.20 3 3e 0.41 84.04 87.54 3 3f 0.44 216.05 -86.92 3 3g 0.82 148.72 -10.96 3 3h 1.22 190.30 -16.89 *FLAGS NOT SPLAY 3 4 3.62 50.60 25.22 *FLAGS SPLAY 4 4a 3.63 230.43 -25.57 4 4b 0.43 348.10 4.44 4 4c 1.63 170.52 -5.86 4 4d 0.89 61.11 -81.94 4 4e 2.11 344.82 -7.61 *FLAGS NOT SPLAY 4 5 3.25 67.67 12.62 *FLAGS SPLAY 5 5a 3.28 247.14 -13.26 5 5b 0.25 323.66 84.61 5 5c 0.95 170.46 5.78 5 5d 2.13 330.90 -6.07 5 5e 0.77 222.68 -84.36 *FLAGS NOT SPLAY 5 6 3.45 56.57 19.52 *FLAGS SPLAY 6 6a 3.49 237.94 -19.53 6 6b 1.42 154.07 -15.19 6 6c 0.56 71.63 -87.16 6 6d 0.62 341.85 -3.41 6 6e 2.15 233.89 -20.79 6 6f 4.02 168.54 2.89 6 6g 2.44 124.70 10.45 6 6h 1.87 106.22 14.43 6 6i 2.75 182.55 1.05 *FLAGS NOT SPLAY 6 7 1.42 151.95 -12.13 *FLAGS SPLAY 7 7a 1.42 329.66 11.34 7 7b 1.55 42.07 39.53 7 7c 3.00 180.55 4.65 7 7d 0.89 354.61 85.36 7 7e 0.44 28.33 -87.65 *FLAGS NOT SPLAY 7 8 6.30 84.91 26.43 *FLAGS SPLAY 8 8a 0.81 355.74 6.08 8 8b 0.32 173.04 9.98 8 8c 0.19 349.50 82.00 8 8d 0.36 157.86 -75.31 *FLAGS NOT SPLAY *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 0.42 0.08 0.39 0.73 2 0.29 0.00 0.68 0.86 3 0.92 0.62 0.41 0.44 4 2.01 1.51 0.00 0.88 5 2.12 0.90 0.25 0.77 6 0.52 3.62 0.00 0.56 7 1.16 2.64 0.89 0.44 8 0.81 0.31 0.19 0.35 *END NewGrottoes *BEGIN OldGrotto2WC *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 3.32 25.03 -14.33 *FLAGS SPLAY 1 1a 3.26 206.41 14.30 1 1b 0.98 315.03 -8.83 1 1c 0.76 174.77 -0.38 1 1d 2.49 219.51 -12.94 1 1e 1.90 280.22 -27.03 *FLAGS NOT SPLAY 1 2 5.70 255.27 -30.20 *FLAGS SPLAY 2 2a 5.71 74.10 29.84 2 2b 1.06 162.52 -1.36 2 2c 1.22 220.20 80.94 2 2d 0.39 332.89 1.22 2 2e 1.14 198.72 -82.80 *FLAGS NOT SPLAY 2 3 3.09 201.53 -10.26 *FLAGS SPLAY 3 3a 3.10 20.12 10.18 3 3b 1.30 263.57 -6.52 3 3c 0.93 284.07 -86.47 3 3d 0.93 75.35 -2.53 3 3e 0.32 234.48 85.69 *FLAGS NOT SPLAY 3 4 4.55 164.72 -15.92 *FLAGS SPLAY 4 4a 4.52 344.84 15.77 4 4b 0.61 258.46 -2.19 4 4c 0.63 86.33 -2.22 4 4d 5.53 284.88 86.05 4 4e 2.47 181.69 -82.25 *FLAGS NOT SPLAY 4 5 2.38 199.29 -26.79 *FLAGS SPLAY 5 5a 2.37 18.11 26.15 5 5b 0.82 318.06 0.68 5 5c 0.73 143.34 2.75 5 5d 5.25 191.96 83.34 5 5e 1.53 247.03 -88.07 *FLAGS NOT SPLAY 5 6 6.29 239.56 -9.79 *FLAGS SPLAY 6 6a 6.26 58.58 9.67 6 6b 1.26 349.18 -5.78 6 6c 1.45 42.58 -84.89 6 6d 0.23 174.05 2.52 6 6e 4.36 340.22 65.14 *FLAGS NOT SPLAY 6 7 7.66 284.16 -7.14 *FLAGS SPLAY 7 7a 7.65 104.12 6.94 7 7b 1.11 184.42 -3.02 7 7c 1.22 315.42 -87.56 7 7d 5.90 284.36 87.68 *FLAGS NOT SPLAY 7 8 2.58 224.20 -8.54 *FLAGS SPLAY 8 8a 2.58 43.16 8.82 8 8b 1.49 307.59 -0.90 8 8c 5.16 259.48 81.94 8 8d 1.06 108.65 -87.34 *FLAGS NOT SPLAY 8 9 6.80 205.89 -6.51 *FLAGS SPLAY 9 9a 6.77 24.81 6.09 9 9b 1.40 71.99 -5.17 9 9c 3.44 82.58 71.46 9 9d 1.27 18.89 -83.92 *FLAGS NOT SPLAY 9 10 2.09 108.56 -5.31 *FLAGS SPLAY 10 10a 2.12 289.79 4.09 10 10b 1.18 243.19 -9.20 10 10c 1.15 300.27 -85.48 10 10d 5.46 281.63 67.93 *FLAGS NOT SPLAY 10 11 7.85 204.84 6.96 *FLAGS SPLAY 11 11a 7.85 23.37 -7.47 11 11b 4.04 20.69 -17.03 11 11c 4.08 31.33 -11.00 11 11d 3.58 122.93 1.76 11 11e 5.02 146.17 5.40 11 11f 3.82 258.28 -10.90 11 11g 3.95 291.06 -0.53 11 11h 5.88 341.35 -3.35 11 11i 6.54 332.39 -2.75 11 11j 3.22 124.37 87.58 11 11k 1.02 81.55 -78.82 *FLAGS NOT SPLAY *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 2.39 0.00 0.00 0.86 2 0.97 0.38 1.20 1.13 3 0.88 1.27 0.32 0.93 4 0.63 0.59 5.52 2.45 5 0.71 0.81 5.21 1.53 6 0.23 1.80 3.96 1.44 7 1.04 0.00 5.90 1.22 8 0.00 1.49 5.11 1.06 9 1.39 0.00 3.26 1.26 10 0.00 1.68 5.06 1.15 11 4.27 5.18 3.22 1.00 *END OldGrotto2WC *BEGIN FortyRoute *DATE 2013.06.29 *CALIBRATE declination 1.58 *FLAGS SPLAY 0 0a 1.22 222.85 -1.27 0 0b 1.46 156.87 -86.76 0 0c 1.04 248.22 75.18 *FLAGS NOT SPLAY 0 1 2.76 327.91 18.03 *FLAGS SPLAY 1 1a 2.78 146.77 -18.73 1 1b 0.75 233.19 -9.76 1 1c 3.76 236.60 -61.01 1 1d 5.96 283.50 83.29 *FLAGS NOT SPLAY 1 2 5.35 306.91 5.35 *FLAGS SPLAY 2 2a 5.34 127.04 -5.34 2 2b 0.93 37.11 -9.90 2 2c 0.20 232.85 8.71 2 2d 0.77 47.20 -45.75 2 2e 5.18 303.14 -81.62 2 2f 2.15 89.72 81.91 *FLAGS NOT SPLAY 2 3 3.55 321.41 38.17 *FLAGS SPLAY 3 3a 3.53 140.66 -38.25 3 3b 0.25 241.41 3.91 3 3c 0.79 64.43 3.52 3 3d 2.35 116.75 81.52 3 3e 0.76 47.06 -63.29 3 3f 3.35 110.73 -74.59 3 3g 7.46 126.02 -72.97 *FLAGS NOT SPLAY 3 4 1.12 7.71 3.63 *FLAGS SPLAY 4 4a 1.10 186.02 -4.47 4 4b 0.67 231.66 -2.98 4 4c 2.21 239.56 80.82 4 4d 0.66 261.89 -73.67 *FLAGS NOT SPLAY 4 5 1.06 263.40 33.43 *FLAGS SPLAY 5 5a 1.05 82.92 -33.40 5 5b 0.57 40.65 -2.91 5 5c 1.16 37.56 -82.40 5 5d 1.63 42.68 77.79 *FLAGS NOT SPLAY 5 6 2.53 351.94 5.11 *FLAGS SPLAY 6 6a 2.52 171.57 -5.45 6 6b 0.49 251.10 -0.42 6 6c 1.24 242.62 -65.46 6 6d 1.46 223.45 74.25 *FLAGS NOT SPLAY 6 7 2.96 317.31 -3.31 *FLAGS SPLAY 7 7a 2.94 137.40 3.36 7 7b 0.49 69.22 2.25 7 7c 1.67 337.77 83.13 7 7d 1.64 62.33 -86.14 *FLAGS NOT SPLAY 7 8 5.25 326.28 -29.19 *FLAGS SPLAY 8 8a 5.24 144.41 28.59 8 8b 0.86 189.62 -3.22 8 8c 0.38 17.72 -13.79 8 8d 1.17 125.13 -68.29 8 8e 1.74 198.87 87.16 8 8f 1.48 138.91 36.33 8 8g 1.35 154.31 37.64 8 8h 1.31 145.24 3.36 8 8i 1.68 357.07 -42.58 8 8j 0.97 289.48 -24.64 *FLAGS NOT SPLAY 8 9 1.45 273.15 -22.26 *FLAGS SPLAY 9 9a 1.43 93.33 24.76 9 9b 0.34 20.18 -0.69 9 9c 1.39 262.30 -4.33 9 9d 0.77 190.18 -1.47 9 9e 4.31 268.96 75.35 9 9f 0.52 82.52 -53.29 9 9g 2.71 169.49 -81.00 *FLAGS NOT SPLAY 9 10 7.65 252.29 -71.60 *FLAGS SPLAY 10 10a 7.66 71.90 71.88 10 10b 2.79 105.38 2.13 10 10c 1.94 102.39 -80.10 10 10d 2.30 52.40 -8.53 *FLAGS NOT SPLAY 10 11 2.32 146.39 -8.38 *FLAGS SPLAY 11 11a 2.33 327.27 7.87 11 11b 2.32 327.44 7.88 11 11c 1.58 246.33 79.18 11 11d 1.73 335.02 -87.87 11 11e 0.62 102.51 -8.28 11 11f 0.98 265.19 1.62 *FLAGS NOT SPLAY *data passage station left right up down 0 1.18 0.00 1.01 1.46 1 1.80 0.00 5.92 3.29 2 0.20 0.91 2.13 5.12 3 0.24 0.78 2.32 3.23 4 0.67 0.00 2.18 0.63 5 0.00 0.57 1.59 1.15 6 0.51 0.00 1.41 1.13 7 0.00 0.47 1.66 1.64 8 0.81 1.04 1.74 1.09 9 0.73 0.30 4.17 2.68 10 2.78 0.00 0.00 1.91 11 0.43 0.86 1.55 1.73 *END FortyRoute *BEGIN WaterRift *DATE 2013.06.29 *CALIBRATE declination 1.58 *FLAGS SPLAY 0 0a 5.35 17.95 22.62 0 0b 4.13 22.58 -15.64 0 0c 8.42 335.52 5.44 0 0d 8.89 333.03 6.81 0 0e 5.30 346.43 8.54 0 0f 5.13 294.43 17.44 0 0g 7.66 281.52 0.94 0 0h 6.92 262.96 5.04 0 0i 6.86 253.61 5.31 0 0j 5.23 247.20 7.41 0 0k 3.51 202.89 21.45 0 0l 5.06 195.97 22.67 0 0m 6.28 160.68 22.30 0 0n 8.67 132.59 16.67 0 0o 6.28 121.89 11.57 0 0p 3.27 114.10 12.54 *FLAGS NOT SPLAY 0 1 5.77 334.28 -11.88 *FLAGS SPLAY 1 1a 5.76 154.47 11.49 1 1b 1.98 166.16 -38.83 1 1c 3.75 244.92 84.64 1 1d 1.82 180.79 -73.82 *FLAGS NOT SPLAY 1 2 4.33 195.52 -26.62 *FLAGS SPLAY 2 2a 4.32 13.06 26.42 2 2b 0.76 316.99 -3.19 2 2c 0.28 114.54 1.61 2 2d 1.02 123.59 -85.18 2 2e 0.70 2.62 84.20 2 2f 4.92 233.56 80.23 *FLAGS NOT SPLAY 2 3 6.36 270.39 -36.08 *FLAGS SPLAY 3 3a 6.38 90.74 35.86 3 3b 7.22 164.95 87.99 3 3c 1.50 350.89 -85.48 3 3d 0.60 17.37 -5.81 3 3e 4.37 94.08 26.89 3 3f 2.04 96.97 2.01 *FLAGS NOT SPLAY 3 4 1.54 305.04 -17.83 *FLAGS SPLAY 4 4a 1.56 124.70 18.36 4 4b 1.18 214.55 -3.95 4 4c 1.80 281.84 -85.97 4 4d 0.92 184.19 78.11 4 4e 5.88 261.80 85.59 *FLAGS NOT SPLAY 4 5 4.45 302.01 -20.17 *FLAGS SPLAY 5 5a 4.45 122.05 20.68 5 5b 0.66 42.61 -0.43 5 5c 0.79 295.82 80.77 5 5d 3.44 40.04 71.75 5 5e 1.19 159.77 -84.25 *FLAGS NOT SPLAY 5 6 2.13 320.38 -11.71 *FLAGS SPLAY 6 6a 2.12 139.96 12.80 6 6b 0.40 65.25 1.27 6 6c 1.37 29.54 74.80 6 6d 0.97 226.69 -87.04 6 6e 1.93 9.54 -74.91 *FLAGS NOT SPLAY 6 7 5.02 333.92 -11.98 *FLAGS SPLAY 7 7a 5.07 155.07 11.54 7 7b 0.32 233.46 -2.11 7 7c 3.09 147.72 83.95 7 7d 1.42 334.08 -84.41 *FLAGS NOT SPLAY 7 8 1.63 323.46 -34.24 *FLAGS SPLAY 8 8a 1.65 141.45 35.60 8 8b 0.74 242.86 -4.71 8 8c 2.20 121.85 85.11 8 8d 0.57 265.91 -86.27 *FLAGS NOT SPLAY 8 9 6.72 325.55 -5.61 *FLAGS SPLAY 9 9a 6.71 148.04 5.85 9 9b 0.67 85.11 -3.81 9 9c 1.21 68.18 77.77 9 9d 0.38 45.26 -87.04 *FLAGS NOT SPLAY 9 10 2.39 1.38 10.24 *FLAGS SPLAY 10 10a 2.40 179.07 -10.67 10 10b 0.87 224.61 -18.06 10 10c 2.55 202.57 79.97 10 10d 1.00 211.64 -85.65 10 10e 1.28 263.59 -11.49 10 10f 1.20 324.42 7.72 *FLAGS NOT SPLAY 10 11 3.73 245.25 -24.06 *FLAGS SPLAY 11 11a 3.72 63.01 24.03 11 11b 1.16 6.02 4.03 11 11c 0.49 155.26 4.00 11 11d 2.42 200.28 -80.22 11 11e 10.92 339.54 83.66 *FLAGS NOT SPLAY 11 12 1.75 211.67 -24.54 *FLAGS SPLAY 12 12a 1.74 34.17 24.31 12 12b 0.94 259.38 1.16 12 12c 0.59 89.49 -3.42 12 12d 1.75 155.02 -82.92 12 12e 1.64 258.51 84.25 *FLAGS NOT SPLAY 12 13 8.34 181.38 -8.14 *FLAGS SPLAY 13 13a 8.39 2.63 8.00 13 13b 0.85 281.78 -0.49 13 13c 3.43 284.92 82.46 13 13d 0.81 114.24 -89.45 13 13e 0.20 95.00 3.81 *FLAGS NOT SPLAY 13 14 4.39 179.79 -2.78 *FLAGS SPLAY 14 14a 4.39 357.83 2.72 14 14b 1.53 261.41 0.73 14 14c 3.11 221.34 84.26 14 14d 0.84 76.55 -85.25 *FLAGS NOT SPLAY 14 15 7.89 176.25 -1.64 *FLAGS SPLAY 15 15a 7.89 354.31 1.68 15 15b 0.39 271.84 -0.76 15 15c 0.43 81.78 2.27 15 15d 0.98 17.06 -84.71 15 15e 3.06 326.61 82.70 *FLAGS NOT SPLAY 15 16 4.52 194.00 -4.00 *FLAGS SPLAY 16 16a 4.55 11.12 3.98 16 16b 1.39 8.20 -1.40 16 16c 1.31 314.18 0.17 16 16d 2.88 210.72 3.57 16 16e 2.19 158.12 24.87 16 16f 3.69 159.38 30.12 16 16g 1.68 80.18 14.09 16 16h 1.36 3.78 83.92 16 16i 0.91 118.43 -86.27 *FLAGS NOT SPLAY *data passage station left right up down 0 6.74 3.41 1.95 0.00 1 1.52 0.00 3.73 1.75 2 0.25 0.75 0.70 1.02 3 0.00 0.60 7.22 1.50 4 1.18 0.00 5.86 1.80 5 0.00 0.66 0.78 1.18 6 0.00 0.40 1.32 0.97 7 0.32 0.00 3.07 1.41 8 0.73 0.00 2.19 0.57 9 0.00 0.65 1.18 0.38 10 0.81 0.43 2.51 1.00 11 0.47 0.78 10.85 2.38 12 0.56 0.84 1.63 1.74 13 0.20 0.83 3.40 0.81 14 0.00 1.52 3.09 0.84 15 0.42 0.39 3.04 0.98 16 1.81 1.13 1.35 0.91 *END WaterRift *BEGIN 10 *DATE 2013.06.30 *CALIBRATE declination 1.58 *FLAGS SPLAY 0 0a 0.79 122.45 -3.92 0 0b 0.82 125.25 -80.01 0 0c 1.02 113.36 59.45 *FLAGS NOT SPLAY 0 1 2.19 193.96 16.02 *FLAGS SPLAY 1 1a 0.60 276.70 12.05 1 1b 1.13 263.53 84.69 1 1c 0.86 340.30 -87.68 1 1d 0.22 130.33 11.67 *FLAGS NOT SPLAY 1 2 1.14 228.14 32.64 *FLAGS SPLAY 2 2a 0.70 84.60 -2.91 2 2b 0.51 245.48 7.63 2 2c 0.88 181.29 75.58 2 2d 1.15 205.42 -86.76 *FLAGS NOT SPLAY 2 3 3.27 163.30 -22.86 *FLAGS SPLAY 3 3a 0.64 68.81 -0.15 3 3b 1.80 103.28 -83.45 3 3c 1.69 279.44 83.39 3 3d 1.80 104.43 -50.09 3 3e 0.90 125.15 -23.23 3 3f 0.84 162.44 -25.10 3 3g 0.53 177.50 -0.32 *FLAGS NOT SPLAY 3 4 6.91 267.13 3.53 *FLAGS SPLAY 4 4a 0.55 178.10 2.86 4 4b 0.33 358.62 9.99 4 4c 0.38 76.20 84.09 4 4d 0.44 211.43 -83.57 *FLAGS NOT SPLAY 3 5 2.54 190.56 -63.18 *FLAGS SPLAY 5 5a 0.60 308.44 -0.68 5 5b 0.72 295.04 -61.80 *FLAGS NOT SPLAY 5 6 4.59 251.07 -25.44 *FLAGS SPLAY 6 6a 1.06 89.99 22.23 6 6b 0.26 275.62 12.96 6 6c 0.49 129.38 84.49 6 6d 1.44 31.18 16.46 *FLAGS NOT SPLAY 6 7 2.94 167.27 7.15 *FLAGS SPLAY 7 7a 1.29 326.65 -21.82 7 7b 0.99 316.84 -22.29 7 7c 0.76 256.67 -44.96 7 7d 0.98 216.45 -34.57 7 7e 0.19 302.09 85.19 7 7f 1.57 162.77 -85.97 *FLAGS NOT SPLAY 7 8 3.72 165.59 -0.44 *FLAGS SPLAY 8 8a 0.75 39.89 9.56 8 8b 0.42 37.36 78.00 8 8c 1.07 126.50 -89.16 *FLAGS NOT SPLAY 8 9 2.10 111.50 19.76 *FLAGS SPLAY 9 9a 0.90 221.02 0.31 9 9b 1.10 120.62 -83.53 9 9c 0.21 316.09 84.80 9 9d 0.25 17.06 -3.95 9 9e 1.74 167.67 -7.64 9 9f 1.77 152.97 -6.07 9 9g 3.17 165.43 5.99 9 9h 2.88 146.54 8.77 9 9i 2.84 106.66 13.82 9 9j 1.24 97.33 -8.06 *FLAGS NOT SPLAY 9 10 7.71 161.72 1.86 *FLAGS SPLAY 10 10a 0.46 262.62 2.57 10 10b 0.36 13.53 -1.36 10 10c 0.65 315.92 77.50 10 10d 0.63 99.67 -84.98 *FLAGS NOT SPLAY 10 11 2.16 102.08 5.76 9 12 8.35 93.72 17.83 *FLAGS SPLAY 12 12a 1.67 330.14 -0.55 12 12b 0.52 155.45 -0.04 12 12c 0.44 246.87 82.62 12 12d 0.44 67.03 -84.94 *FLAGS NOT SPLAY 12 13 4.34 9.47 9.01 *FLAGS SPLAY 13 13a 0.79 243.90 -9.22 13 13b 0.90 67.62 -18.81 13 13c 0.65 256.16 -85.98 *FLAGS NOT SPLAY 13 14 2.15 152.81 2.05 *FLAGS SPLAY 14 14a 3.84 296.58 51.55 14 14b 4.81 296.42 51.44 14 14c 3.83 296.46 51.33 *FLAGS NOT SPLAY 13 15 3.68 88.63 11.54 *FLAGS SPLAY 15 15a 1.22 317.35 3.30 15 15b 0.85 119.43 28.64 15 15c 0.50 294.64 80.22 15 15d 0.30 71.24 -88.13 15 15e 0.53 327.66 -14.96 15 15f 0.25 257.11 80.01 *FLAGS NOT SPLAY 15 16 5.88 47.35 18.38 *FLAGS SPLAY 16 16a 0.54 335.23 0.80 16 16b 1.45 160.46 6.63 16 16c 0.27 280.29 80.80 *FLAGS NOT SPLAY 16 17 5.34 79.73 18.79 *FLAGS SPLAY 17 17a 1.70 8.32 14.34 17 17b 2.11 303.47 88.21 17 17c 0.65 314.37 -88.24 17 17d 0.83 195.12 7.12 17 17e 2.82 295.58 -11.71 17 17f 2.08 255.83 -15.91 17 17g 1.17 134.29 25.92 17 17h 2.06 89.62 30.46 17 17i 1.20 51.23 52.50 17 17j 3.76 32.80 57.89 17 17k 0.98 313.51 23.51 3 3x 0.37 221.12 0.55 *FLAGS NOT SPLAY 3 18 1.80 104.97 -49.81 *FLAGS SPLAY 18 18a 0.78 175.26 4.50 18 18b 0.26 37.36 24.21 18 18c 0.31 183.81 49.92 *FLAGS NOT SPLAY 14 20 3.88 295.15 51.22 *data passage station left right up down 0 0.75 0.00 0.88 0.81 1 0.21 0.53 1.13 0.86 2 0.65 0.39 0.85 1.15 3 0.65 0.26 1.68 1.79 5 0.00 0.60 0.00 0.63 6 0.86 0.23 0.49 0.00 7 0.00 0.62 0.19 1.57 8 0.73 0.00 0.41 1.07 9 1.38 1.52 0.21 1.09 10 0.32 0.35 0.63 0.63 *data passage station left right up down 3 0.70 0.29 1.68 1.79 4 0.55 0.32 0.38 0.44 *data passage station left right up down 9 0.25 2.80 0.21 1.09 12 1.65 0.50 0.44 0.44 13 0.20 0.00 0.00 0.65 15 1.14 0.58 0.49 0.30 16 0.54 1.43 0.27 0.00 17 1.62 0.86 2.11 0.65 *data passage station left right up down 13 0.00 0.43 0.00 0.65 14 0.00 2.86 3.76 0.00 *data passage station left right up down 3 0.29 0.70 1.68 1.79 18 0.22 0.73 0.24 0.00 *END 10 *BEGIN 20 *DATE 2013.06.30 *CALIBRATE declination 1.58 0 1 3.87 261.79 -26.31 1 2 2.55 125.69 -19.31 *FLAGS SPLAY 2 2a 0.91 250.27 7.92 2 2b 0.77 171.08 -87.61 2 2c 0.81 255.66 49.75 2 2d 0.24 67.33 -0.18 2 2e 3.81 229.59 62.45 *FLAGS NOT SPLAY 2 3 5.29 150.86 -7.60 *FLAGS SPLAY 3 3a 0.98 5.09 -20.60 3 3b 0.45 330.90 23.74 3 3c 1.15 347.72 -26.49 *FLAGS NOT SPLAY 3 4 1.83 63.94 -43.21 *FLAGS SPLAY 4 4a 0.88 254.64 -4.95 4 4b 0.31 92.19 22.06 4 4c 0.77 180.62 67.03 4 4d 0.57 170.18 -74.58 *FLAGS NOT SPLAY 4 5 3.13 176.57 -12.17 *FLAGS SPLAY 5 5a 0.89 62.62 28.28 5 5b 0.61 237.44 -20.17 5 5c 0.89 293.48 79.22 5 5d 0.56 337.49 -44.42 *FLAGS NOT SPLAY 5 6 1.40 257.65 -52.47 *FLAGS SPLAY 6 6a 0.52 318.37 75.96 6 6b 0.35 16.99 1.82 6 6c 0.19 324.08 -71.45 *FLAGS NOT SPLAY 6 7 2.40 284.49 -13.04 *FLAGS SPLAY 7 7a 0.40 195.25 -1.25 7 7b 0.32 213.01 45.13 7 7c 0.42 157.49 -56.01 *FLAGS NOT SPLAY 3 8 2.58 64.30 1.85 *FLAGS SPLAY 8 8a 0.98 338.09 -7.20 8 8b 1.33 152.73 8.89 8 8c 0.38 331.75 81.25 8 8d 1.90 340.12 -69.71 8 8e 0.89 274.97 -54.79 8 8f 1.08 232.73 0.66 *FLAGS NOT SPLAY 8 9 2.80 61.94 1.42 *FLAGS SPLAY 9 9a 2.81 191.74 9.89 9 9b 2.16 134.18 25.75 9 9c 2.16 50.11 -6.32 9 9d 1.26 6.31 -16.99 9 9e 1.13 289.11 75.43 9 9f 2.72 79.01 66.64 9 9g 0.85 267.86 -82.70 *FLAGS NOT SPLAY 9 10 5.67 274.30 -29.92 *FLAGS SPLAY 10 10a 0.67 2.50 88.13 10 10b 0.23 135.92 -83.36 10 10c 1.22 201.08 3.08 10 10d 3.64 11.56 12.96 10 10e 1.92 335.12 9.74 10 10f 2.38 307.32 -7.29 *FLAGS NOT SPLAY 10 11 4.21 315.24 -5.18 *FLAGS SPLAY 11 11a 0.55 90.17 -18.10 11 11b 0.85 207.55 -12.11 11 11c 0.48 85.91 -82.18 11 11d 1.30 348.21 -63.09 *FLAGS NOT SPLAY 11 12 0.46 277.24 -49.35 *FLAGS SPLAY 12 12a 0.21 238.72 1.25 *FLAGS NOT SPLAY 12 13 2.99 11.93 3.89 *FLAGS SPLAY 13 13a 1.42 174.80 78.06 13 13b 0.30 315.88 -80.15 13 13c 2.31 246.88 74.77 13 13d 1.56 189.37 17.65 13 13e 3.02 211.37 -11.39 13 13f 3.15 248.27 -16.57 13 13g 1.77 297.77 -6.34 13 13h 3.86 328.15 -4.42 13 13i 4.28 343.90 -3.07 13 13j 3.09 19.95 6.70 13 13k 4.26 37.78 13.46 13 13l 3.80 64.26 16.75 13 13m 4.72 82.28 18.14 13 13n 1.83 98.00 23.43 *FLAGS NOT SPLAY 13 14 1.51 326.89 1.17 *FLAGS SPLAY 13 13a 1.80 134.62 18.89 *FLAGS NOT SPLAY 13 15 4.27 118.28 31.59 *FLAGS SPLAY 15 15a 2.10 311.12 -18.89 15 15b 0.29 304.38 72.17 15 15c 0.86 355.38 -83.90 15 15d 1.91 225.82 -10.33 *FLAGS NOT SPLAY 15 16 2.48 36.12 13.37 *FLAGS SPLAY 16 16a 0.50 296.88 -8.43 16 16b 1.10 323.19 -84.96 16 16c 1.15 357.90 17.17 16 16d 1.74 355.61 -47.54 16 16e 3.34 281.30 -47.10 *FLAGS NOT SPLAY 16 17 3.13 327.92 82.94 *FLAGS SPLAY 17 17a 0.72 273.55 72.14 17 17b 0.51 284.99 -34.65 *FLAGS NOT SPLAY 17 18 1.35 214.32 -12.67 18 19 2.43 231.25 22.63 13 20 2.14 331.93 -1.84 *FLAGS SPLAY 20 20a 1.14 42.18 -54.87 20 20b 1.18 122.45 -68.05 20 20c 0.36 67.41 74.28 20 20d 1.30 38.86 -71.88 20 20e 1.14 43.52 -52.40 *FLAGS NOT SPLAY 20 21 2.84 49.23 -61.41 *FLAGS SPLAY 21 21a 0.38 306.70 3.51 21 21b 0.58 42.06 -16.72 21 21c 0.36 346.21 52.74 *FLAGS NOT SPLAY 21 22 1.87 345.57 -9.57 *FLAGS SPLAY 22 22a 1.17 258.11 42.02 22 22b 0.37 242.14 -55.73 22 22c 0.36 39.38 -52.79 *FLAGS NOT SPLAY 22 23 1.63 311.27 20.13 *FLAGS SPLAY 23 23a 0.42 64.58 4.20 23 23b 0.32 213.47 -9.32 23 23c 0.99 86.07 -87.31 23 23d 0.25 94.22 48.88 *FLAGS NOT SPLAY 23 24 1.57 250.05 -33.27 *FLAGS SPLAY 24 24a 0.24 7.88 -0.38 24 24b 1.15 13.91 67.66 *FLAGS NOT SPLAY 24 25 2.11 302.88 3.36 *FLAGS SPLAY 25 25a 0.59 203.43 -39.91 25 25b 0.73 124.92 74.91 25 25c 0.46 19.39 -52.00 *FLAGS NOT SPLAY 25 26 2.60 267.02 31.57 *FLAGS SPLAY 26 26a 0.45 275.41 -83.91 26 26b 0.45 328.61 -88.28 26 26c 0.40 220.39 -21.96 26 26d 0.39 207.53 -25.01 26 26e 0.45 27.25 6.50 *FLAGS NOT SPLAY 27 26 1.86 143.63 -4.35 *FLAGS SPLAY 26 26a 0.44 24.90 6.93 27 27a 0.78 175.30 4.50 27 27b 0.26 37.40 24.20 27 27c 0.31 183.80 49.90 *FLAGS NOT SPLAY *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 0.00 0.00 0.00 0.00 2 0.23 1.76 3.38 0.77 3 0.90 0.00 0.18 0.51 4 0.14 0.26 0.71 0.55 5 0.34 0.35 0.87 0.39 6 0.00 0.34 0.50 0.18 7 0.40 0.00 0.23 0.35 *data passage station left right up down 3 0.90 0.00 0.18 0.51 8 0.97 1.31 0.38 1.78 9 0.00 1.90 1.09 0.84 10 1.22 3.45 0.67 0.23 11 0.83 0.46 0.00 0.48 12 0.21 0.00 0.00 0.00 13 4.13 2.90 1.39 0.30 15 1.61 0.98 0.28 0.86 16 2.24 0.00 0.00 1.10 17 0.00 0.10 0.69 0.29 18 0.00 0.00 0.00 0.00 *data passage station left right up down 13 2.88 4.11 1.39 0.30 20 0.00 0.41 0.35 1.24 21 0.36 0.23 0.29 0.00 22 0.82 0.21 0.78 0.31 23 0.29 0.25 0.19 0.99 24 0.00 0.43 1.06 0.00 25 0.45 0.28 0.70 0.36 26 0.36 0.45 0.00 0.45 *data passage station left right up down 27 0.23 0.41 0.24 0.00 26 0.36 0.45 0.00 0.45 *END 20 *END Swildons CaveConverter_src/test/data/regression/CaseInsensitive_in.svx0000644000000000000000000000073113030252172023561 0ustar rootroot*BEGIN CaseInsensitiveTest *equate Entrance.819 DownStream.755 *BEGIN Entrance 814 815 1.50 63.80 -2 ;* 815 816 3.00 - down ;* 816 817 8.50 19.80 7 ;* 817 818 15.70 85.80 -2 ;* 818 819 2.10 355.80 -10 ;* *END Entrance *BEGIN Downstream 750 751 9.70 117.65 4 ;* 751 752 8.60 106.65 -2 ;* 752 753 6.90 209.65 5 ;* 753 754 9.60 108.65 0 ;* 754 755 20.00 110.65 2 ;Stn 755=20 Junction with Entrance inlet *END Downstream *END CaseInsensitiveTest CaveConverter_src/test/data/regression/Sloppy2ZigZags_ps_ref7.svx0000644000000000000000000003325713030252172024304 0ustar rootroot*BEGIN uzu110810sloppypt2 *EQUATE 158.12 161.0 *EQUATE 161.4 165.1 *BEGIN 161 *DATE 2009.01.07 *FLAGS SPLAY 0 0a 1.29 125.73 0.46 0 0b 1.61 306.94 3.61 0 0c 8.58 203.24 85.39 0 0d 1.79 169.15 -88.07 0 0e 2.53 190.96 4.20 0 0f 2.31 237.87 9.54 0 0g 2.83 253.54 9.73 0 0h 2.16 277.70 11.01 0 0i 1.31 43.80 6.31 *FLAGS NOT SPLAY 0 1 8.84 224.95 74.29 *FLAGS SPLAY 1 1a 0.77 135.02 -4.75 1 1b 1.85 55.20 85.87 1 1c 0.68 190.60 -87.21 *FLAGS NOT SPLAY 1 2 1.29 177.76 16.14 *FLAGS SPLAY 2 2a 0.72 31.98 -4.09 2 2b 2.25 349.48 77.56 2 2c 0.82 175.67 -88.21 *FLAGS NOT SPLAY 2 3 9.45 62.80 8.45 *FLAGS SPLAY 3 3a 0.76 207.08 2.14 3 3b 4.88 114.75 84.07 3 3c 1.07 299.88 -83.79 3 3d 1.45 243.11 1.63 3 3e 2.05 261.73 3.02 *FLAGS NOT SPLAY 3 4 3.09 174.44 77.16 *FLAGS SPLAY 4 4a 0.79 15.24 0.85 4 4b 4.21 52.64 86.09 4 4c 1.25 226.64 -88.43 *FLAGS NOT SPLAY 4 5 3.04 80.70 -0.77 *FLAGS SPLAY 5 5a 0.49 313.79 -1.74 5 5b 4.40 124.69 83.71 5 5c 0.97 67.93 -87.52 *FLAGS NOT SPLAY 5 6 7.44 29.62 5.20 *FLAGS SPLAY 6 6a 0.77 127.34 17.64 6 6b 4.97 41.63 85.19 6 6c 0.73 257.84 -82.51 *FLAGS NOT SPLAY 6 7 5.85 35.05 1.09 *FLAGS SPLAY 7 7a 0.58 282.01 8.71 7 7b 8.62 351.28 81.03 7 7c 0.55 153.97 -74.30 7 7d 3.17 349.34 3.84 7 7e 3.04 20.21 3.70 *FLAGS NOT SPLAY 7 8 9.45 7.85 51.31 *FLAGS SPLAY 8 8a 0.69 134.64 -0.49 8 8b 4.51 93.69 78.99 8 8c 1.88 52.36 -82.29 *FLAGS NOT SPLAY 8 9 2.60 65.73 -6.30 *FLAGS SPLAY 9 9a 0.62 298.10 5.15 9 9b 4.36 19.40 82.85 9 9c 1.08 191.79 -82.85 *FLAGS NOT SPLAY 9 10 4.48 6.77 7.25 *FLAGS SPLAY 10 10a 0.67 115.96 -1.72 10 10b 4.30 115.63 80.16 10 10c 0.74 273.75 -86.19 *FLAGS NOT SPLAY 10 11 3.86 56.51 1.91 *FLAGS SPLAY 11 11a 0.67 323.14 -8.75 11 11b 4.24 25.54 78.35 11 11c 0.56 60.57 -78.89 11 11d 2.62 20.06 7.07 *FLAGS NOT SPLAY 11 12 7.66 28.32 10.32 *FLAGS SPLAY 12 12a 0.47 241.61 -4.41 12 12b 3.69 68.94 85.50 12 12c 0.82 238.09 -83.13 *FLAGS NOT SPLAY 12 13 1.09 289.21 11.36 *FLAGS SPLAY 13 13a 0.63 170.24 -3.66 13 13b 3.37 228.42 84.55 13 13c 0.97 278.10 -82.95 *FLAGS NOT SPLAY 13 14 3.87 230.95 3.41 *FLAGS SPLAY 14 14a 0.70 333.35 5.84 14 14b 3.42 255.12 80.83 14 14c 0.94 291.68 -80.13 *FLAGS NOT SPLAY 14 15 4.60 249.81 2.49 *FLAGS SPLAY 15 15a 0.76 354.29 2.52 15 15b 3.44 282.49 80.49 15 15c 0.84 294.69 -76.37 *FLAGS NOT SPLAY 15 16 4.46 260.87 6.91 *FLAGS SPLAY 16 16a 0.60 149.22 -7.74 16 16b 2.28 213.07 85.82 16 16c 0.94 293.42 -82.12 *FLAGS NOT SPLAY 16 17 7.41 236.86 0.94 *FLAGS SPLAY 17 17a 1.14 336.21 12.30 17 17b 7.30 273.47 83.19 17 17c 0.82 344.65 -74.47 *FLAGS NOT SPLAY 17 18 1.79 282.80 9.24 *FLAGS SPLAY 18 18a 1.40 148.94 -7.89 18 18b 6.31 248.22 83.95 18 18c 1.08 124.24 -85.92 *FLAGS NOT SPLAY 18 19 14.75 240.76 9.56 *FLAGS SPLAY 19 19a 0.59 2.64 1.55 19 19b 1.25 157.25 -8.40 19 19c 48.31 69.00 85.56 19 19d 1.91 72.56 -82.37 19 19e 4.57 16.43 28.14 19 19f 7.14 49.84 15.92 19 19g 7.11 72.91 15.16 *FLAGS NOT SPLAY *data passage station left right up down 0 1.41 1.69 8.55 1.79 1 0.71 0.00 1.85 0.67 2 0.72 0.00 2.20 0.82 3 0.00 0.76 4.85 1.06 4 0.73 0.00 4.20 1.25 5 0.48 0.00 4.37 0.97 6 0.00 0.73 4.95 0.72 7 1.68 0.00 8.51 0.53 8 0.00 0.68 4.43 1.86 9 0.61 0.00 4.33 1.07 10 0.00 0.67 4.23 0.74 11 0.99 0.00 4.15 0.55 12 0.46 0.00 3.68 0.81 13 0.63 0.00 3.35 0.96 14 0.00 0.70 3.37 0.93 15 0.00 0.75 3.39 0.82 16 0.59 0.00 2.27 0.93 17 0.00 1.09 7.25 0.79 18 1.28 0.00 6.28 1.08 19 1.44 2.82 48.16 1.89 *END 161 *BEGIN 165 *DATE 2012.04.10 *CALIBRATE declination 2.0 *FLAGS SPLAY 1 1a 0.57 195.52 4.07 1 1b 0.49 9.16 1.22 1 1c 3.84 348.92 79.39 1 1d 1.62 119.01 -75.94 *FLAGS NOT SPLAY 1 2 3.48 281.26 27.52 *FLAGS SPLAY 2 2a 0.97 136.15 5.76 2 2b 1.76 127.66 70.72 2 2c 1.46 148.72 -73.46 *FLAGS NOT SPLAY 2 3 2.13 191.02 1.42 *FLAGS SPLAY 3 3a 0.52 307.04 3.20 3 3b 1.70 163.78 88.49 3 3c 1.49 307.66 -88.82 *FLAGS NOT SPLAY 3 4 7.43 222.22 -1.21 *FLAGS SPLAY 4 4a 0.42 135.38 -2.58 4 4b 1.50 120.01 74.02 4 4c 1.52 141.14 -83.93 *FLAGS NOT SPLAY 4 5 2.23 224.28 -4.17 *FLAGS SPLAY 5 5a 0.43 123.66 -2.22 5 5b 1.49 167.01 79.72 5 5c 1.39 129.13 -67.70 *FLAGS NOT SPLAY 5 6 3.41 205.94 2.50 *FLAGS SPLAY 6 6a 0.60 306.67 2.25 6 6b 1.44 286.64 87.04 6 6c 1.42 254.09 -86.11 *FLAGS NOT SPLAY 6 7 3.12 212.10 -3.17 *FLAGS SPLAY 7 7a 0.46 300.23 3.93 7 7b 1.64 295.43 79.84 7 7c 1.29 330.51 -77.32 *FLAGS NOT SPLAY 7 8 3.01 223.50 -0.83 8 9 1.53 227.01 0.71 *FLAGS SPLAY 9 9a 0.50 135.95 1.21 9 9b 1.60 213.07 84.96 9 9c 1.28 103.24 -86.61 *FLAGS NOT SPLAY 9 10 4.13 230.74 -1.52 *FLAGS SPLAY 10 10a 0.52 325.70 -0.62 10 10b 1.63 297.20 82.81 10 10c 1.23 73.64 -86.45 *FLAGS NOT SPLAY 10 11 3.15 233.34 3.49 *FLAGS SPLAY 11 11a 0.59 131.07 4.86 11 11b 1.56 120.17 77.10 11 11c 1.27 116.04 -80.16 *FLAGS NOT SPLAY 11 12 7.29 213.25 -3.92 *FLAGS SPLAY 12 12a 1.69 146.32 87.47 12 12b 0.42 126.70 -0.32 12 12c 1.28 252.88 -86.19 *FLAGS NOT SPLAY 12 13 6.48 212.26 -46.98 *FLAGS SPLAY 13 13a 4.12 42.62 77.87 13 13b 1.06 314.62 6.76 13 13c 0.20 124.55 9.65 13 13d 1.60 286.44 -72.64 *FLAGS NOT SPLAY 13 14 2.54 235.48 -15.60 *FLAGS SPLAY 14 14a 0.63 107.29 -5.03 14 14b 1.50 136.97 79.16 14 14c 1.64 119.00 -83.97 *FLAGS NOT SPLAY 14 15 1.92 202.22 -38.76 *FLAGS SPLAY 15 15a 0.89 53.89 -6.97 15 15b 2.58 44.23 83.91 15 15c 1.54 98.15 -88.39 *FLAGS NOT SPLAY 15 16 3.08 81.63 -16.60 *FLAGS SPLAY 16 16a 0.44 352.06 0.95 16 16b 1.29 359.99 78.22 16 16c 1.03 228.83 -82.68 *FLAGS NOT SPLAY 16 17 2.89 92.67 -62.02 *FLAGS SPLAY 17 17a 0.75 321.88 -5.34 17 17b 3.74 21.79 78.45 17 17c 1.45 2.70 -78.49 *FLAGS NOT SPLAY 17 18 4.26 53.58 -27.46 *FLAGS SPLAY 18 18a 0.32 136.32 6.59 18 18b 8.45 197.33 81.96 18 18c 0.89 342.97 -73.79 *FLAGS NOT SPLAY 18 19 4.32 46.44 -3.26 *FLAGS SPLAY 19 19a 0.42 306.43 -0.14 19 19b 1.11 259.87 88.38 19 19c 0.19 125.54 0.08 19 19d 0.58 205.77 -87.87 *FLAGS NOT SPLAY 19 20 1.58 52.71 -1.32 *FLAGS SPLAY 20 20a 0.45 166.31 -2.61 20 20b 1.01 159.34 77.94 20 20c 0.52 232.63 -86.75 20 20d 0.94 312.95 2.07 20 20e 2.52 351.69 -10.78 *FLAGS NOT SPLAY 20 21 2.13 80.12 -0.95 *FLAGS SPLAY 21 21a 0.41 332.70 -0.54 21 21b 0.43 132.90 6.63 21 21c 0.94 342.23 -80.06 *FLAGS NOT SPLAY 21 22 1.40 48.91 -4.57 *FLAGS SPLAY 22 22a 1.00 290.40 -3.78 22 22b 0.37 99.12 -88.04 22 22c 1.32 324.20 59.29 *FLAGS NOT SPLAY 22 23 3.09 6.26 -4.89 *FLAGS SPLAY 23 23a 0.43 256.35 2.38 23 23b 1.00 238.69 83.28 23 23c 0.22 190.83 -84.72 *FLAGS NOT SPLAY 23 24 3.19 42.15 4.79 *FLAGS SPLAY 24 24a 0.78 125.57 -5.13 24 24b 0.80 142.71 55.91 24 24c 0.48 280.12 -86.86 *FLAGS NOT SPLAY 24 25 3.04 29.71 -4.19 *FLAGS SPLAY 25 25a 0.34 112.86 -4.40 25 25b 1.46 127.38 85.25 25 25c 0.44 170.35 -87.52 *FLAGS NOT SPLAY 25 26 5.16 27.70 -2.06 *FLAGS SPLAY 26 26a 0.77 171.11 -0.62 26 26b 1.71 170.49 74.14 26 26c 0.78 178.54 -63.02 *FLAGS NOT SPLAY 26 27 0.89 133.24 21.14 *FLAGS SPLAY 27 27a 0.44 357.20 -2.32 27 27b 1.20 355.05 86.80 27 27c 1.00 115.85 -87.48 *FLAGS NOT SPLAY 27 28 3.49 84.55 -0.49 *FLAGS SPLAY 28 28a 0.37 344.06 -1.58 28 28b 1.23 19.15 79.45 28 28c 1.10 354.08 -82.52 *FLAGS NOT SPLAY 28 29 4.49 57.41 0.19 *FLAGS SPLAY 29 29a 0.54 322.47 -0.38 29 29b 0.87 358.54 75.77 29 29c 1.23 333.67 -79.23 *FLAGS NOT SPLAY 29 30 4.20 52.71 -1.95 *FLAGS SPLAY 30 30a 0.56 140.60 -1.62 30 30b 1.11 146.54 80.67 30 30c 1.19 240.45 -85.53 *FLAGS NOT SPLAY 30 31 3.19 70.91 1.33 *FLAGS SPLAY 31 31a 0.35 314.08 -0.84 31 31b 1.00 0.39 80.18 31 31c 1.46 312.34 -75.60 *FLAGS NOT SPLAY 31 32 1.95 41.99 -0.84 *FLAGS SPLAY 32 32a 0.39 186.52 -0.46 32 32b 1.14 178.57 73.45 32 32c 1.44 169.78 -83.20 *FLAGS NOT SPLAY 32 33 1.18 108.78 -27.67 *FLAGS SPLAY 33 33a 0.59 334.23 -1.87 33 33b 0.24 158.16 0.40 33 33c 0.82 320.62 -85.87 33 33d 1.84 7.88 79.12 *FLAGS NOT SPLAY 33 34 2.03 41.06 -1.30 *FLAGS SPLAY 34 34a 0.53 325.09 5.51 34 34b 1.80 189.89 84.38 34 34c 0.82 37.21 -83.66 *FLAGS NOT SPLAY 34 35 4.68 61.76 1.03 *FLAGS SPLAY 35 35a 0.44 143.45 -4.62 35 35b 1.38 128.03 79.97 35 35c 0.98 108.51 -80.68 *FLAGS NOT SPLAY 35 36 3.57 48.05 1.36 *FLAGS SPLAY 36 36a 0.49 160.34 -9.61 36 36b 0.76 117.65 78.72 36 36c 1.26 168.57 -78.98 *FLAGS NOT SPLAY 36 37 2.13 86.68 -1.42 *FLAGS SPLAY 37 37a 0.51 323.59 5.31 37 37b 0.84 327.69 77.28 37 37c 1.07 336.30 -83.29 *FLAGS NOT SPLAY 37 38 2.37 49.91 -8.73 *FLAGS SPLAY 38 38a 0.48 142.08 14.04 38 38b 1.35 145.26 78.67 38 38c 0.80 318.62 -84.61 *FLAGS NOT SPLAY 38 39 3.65 63.15 4.37 *FLAGS SPLAY 39 39a 0.44 300.17 0.71 39 39b 1.04 328.75 82.92 39 39c 1.05 30.60 -77.32 *FLAGS NOT SPLAY 39 40 2.65 25.59 -2.53 *FLAGS SPLAY 40 40a 0.41 141.83 0.73 40 40b 1.02 117.47 80.38 40 40c 0.96 102.40 -69.23 *FLAGS NOT SPLAY 40 41 7.85 65.58 1.85 *FLAGS SPLAY 41 41a 0.83 225.24 7.58 41 41b 0.87 171.67 86.94 41 41c 1.53 219.66 -55.51 *FLAGS NOT SPLAY 41 42 3.98 215.85 -4.71 *FLAGS SPLAY 42 42a 0.48 316.97 -2.80 42 42b 1.06 300.08 80.57 42 42c 0.99 285.35 -78.94 *FLAGS NOT SPLAY 42 43 2.22 233.70 0.55 *FLAGS SPLAY 43 43a 0.49 125.18 -0.62 43 43b 1.25 162.06 78.16 43 43c 1.04 121.55 -82.42 *FLAGS NOT SPLAY 43 44 4.04 203.86 -0.25 *FLAGS SPLAY 44 44a 0.43 299.26 1.05 44 44b 1.07 200.85 78.05 44 44c 1.17 304.96 -85.05 *FLAGS NOT SPLAY 44 45 5.66 233.77 0.58 ;Disto batteries changed and disto recalibrated before this leg. *FLAGS SPLAY 45 45a 0.46 114.52 -12.27 45 45b 0.96 123.34 64.03 45 45c 1.36 146.04 -73.97 *FLAGS NOT SPLAY 45 46 2.15 186.79 -5.67 *FLAGS SPLAY 46 46a 0.34 284.71 6.20 46 46b 1.03 303.37 79.18 46 46c 1.23 216.15 -83.25 *FLAGS NOT SPLAY 46 47 2.69 210.08 -0.93 *FLAGS SPLAY 47 47a 0.42 132.35 2.41 47 47b 0.94 148.66 82.13 47 47c 1.03 152.70 -87.23 *FLAGS NOT SPLAY 47 48 1.42 230.57 -1.37 *FLAGS SPLAY 48 48a 0.42 143.81 -1.72 48 48b 1.21 164.82 72.39 48 48c 1.17 178.23 -82.45 *FLAGS NOT SPLAY 48 49 2.10 240.59 0.28 *FLAGS SPLAY 49 49a 0.34 144.54 -2.81 49 49b 1.07 140.06 72.28 49 49c 1.14 148.33 -84.52 *FLAGS NOT SPLAY 49 50 3.47 237.36 -2.97 *FLAGS SPLAY 50 50a 0.39 342.06 4.00 50 50b 1.00 213.59 85.36 50 50c 1.12 355.33 -83.46 *FLAGS NOT SPLAY 50 51 2.90 256.53 4.59 *FLAGS SPLAY 51 51a 0.34 148.28 -8.51 51 51b 0.88 141.02 77.66 51 51c 1.43 132.19 -87.31 *FLAGS NOT SPLAY 51 52 3.17 240.12 -3.07 *FLAGS SPLAY 52 52a 0.42 319.87 -2.28 52 52b 0.87 109.67 87.31 52 52c 1.36 303.04 -83.50 *FLAGS NOT SPLAY 52 53 2.60 232.18 -0.80 *FLAGS SPLAY 53 53a 0.35 305.99 3.07 53 53b 1.01 139.41 87.41 53 53c 1.66 309.66 -77.10 *FLAGS NOT SPLAY 53 54 4.54 221.12 -21.78 *FLAGS SPLAY 54 54a 0.56 125.43 -3.35 54 54b 2.11 135.69 69.41 54 54c 1.13 232.20 -85.00 *FLAGS NOT SPLAY 54 55 1.20 181.22 -8.12 *FLAGS SPLAY 55 55a 0.62 284.76 -5.11 55 55b 2.02 219.37 82.06 55 55c 3.36 237.83 -84.61 *FLAGS NOT SPLAY 55 56 1.94 154.16 -70.71 *FLAGS SPLAY 56 56a 1.45 280.79 0.23 56 56b 3.92 286.08 82.18 56 56c 1.94 266.28 -63.29 *FLAGS NOT SPLAY 56 57 5.60 228.25 -6.94 *FLAGS SPLAY 57 57a 0.66 140.56 -17.36 57 57b 0.66 148.24 53.81 57 57c 1.18 95.03 -74.03 *FLAGS NOT SPLAY 57 58 6.32 217.05 -41.16 *FLAGS SPLAY 58 58a 1.04 141.20 -11.06 58 58b 1.98 317.32 -13.13 58 58c 2.96 289.31 83.86 58 58d 0.38 164.39 -87.86 58 58e 4.16 41.63 18.73 *FLAGS NOT SPLAY *data passage station left right up down 1 0.57 0.49 3.78 1.58 2 0.95 0.00 1.66 1.40 3 0.00 0.51 1.70 1.49 4 0.42 0.00 1.44 1.51 5 0.53 0.00 1.47 1.29 6 0.00 0.59 1.44 1.42 7 0.00 0.46 1.61 1.26 8 0.00 0.00 0.00 0.00 9 0.49 0.00 1.59 1.28 10 0.00 0.52 1.61 1.23 11 0.59 0.00 1.52 1.25 12 0.42 0.00 1.69 1.28 13 0.20 1.05 4.03 1.53 14 0.58 0.00 1.47 1.63 15 0.89 0.00 2.57 1.54 16 0.44 0.00 1.27 1.02 17 0.70 0.00 3.66 1.42 18 0.00 0.32 8.36 0.85 19 0.41 0.18 1.11 0.58 20 2.39 0.45 0.98 0.52 21 0.41 0.40 0.00 0.92 22 0.99 0.00 1.14 0.37 23 0.34 0.00 1.00 0.22 24 0.00 0.78 0.66 0.48 25 0.00 0.34 1.46 0.44 26 0.00 0.77 1.64 0.69 27 0.41 0.00 1.19 1.00 28 0.37 0.00 1.21 1.09 29 0.54 0.00 0.84 1.20 30 0.00 0.55 1.10 1.19 31 0.34 0.00 0.98 1.42 32 0.00 0.36 1.09 1.43 33 0.58 0.24 1.81 0.82 34 0.53 0.00 1.79 0.81 35 0.00 0.44 1.35 0.97 36 0.00 0.48 0.75 1.24 37 0.49 0.00 0.81 1.06 38 0.00 0.46 1.32 0.80 39 0.43 0.00 1.03 1.02 40 0.00 0.41 1.00 0.89 41 0.00 0.85 0.87 1.26 42 0.00 0.48 1.04 0.97 43 0.49 0.00 1.23 1.04 44 0.00 0.42 1.05 1.16 45 0.45 0.00 0.86 1.31 46 0.00 0.34 1.01 1.22 47 0.42 0.00 0.93 1.03 48 0.41 0.00 1.15 1.16 49 0.34 0.00 1.02 1.13 50 0.00 0.38 1.00 1.12 51 0.34 0.00 0.86 1.43 52 0.00 0.42 0.87 1.35 53 0.00 0.35 1.00 1.62 54 0.68 0.00 1.98 1.12 55 0.00 0.55 2.00 3.34 56 0.00 1.45 3.88 1.73 57 0.63 0.00 0.53 1.13 58 0.99 1.90 2.95 0.37 *END 165 *END uzu110810sloppypt2 CaveConverter_src/test/data/regression/2649_Mares_from3d_ds_ref.svx0000644000000000000000000000341713030252172024332 0ustar rootroot*BEGIN SurveyFromDXFExportedFrom3D *EQUATE 2649_mareserection.mares070701.25 2649_mareserection.mares0904085.0 *EQUATE 2649_mareserection.mares0904085.0 2649_mareserection.mares070701.25 *BEGIN 2649_mareserection.mares070701 *FIX 1 452220.0 4800904.0 274.0 *FIX 7 452228.77 4800904.34 267.23 *FIX 11 452236.72 4800904.33 267.61 *FIX 26 452282.26 4800932.36 263.02 1 2 1.72 142.64 -47.12 2 3 2.90 350.59 -49.12 3 4 4.22 0.00 -90.00 4 5 4.96 100.66 11.05 5 6 2.17 69.61 39.87 6 7 2.50 97.85 -35.10 7 8 6.89 219.66 -10.95 7 9 2.98 65.71 18.98 9 10 3.00 107.65 -1.91 10 11 2.58 95.89 -10.95 11 12 4.80 0.00 -90.00 11 13 4.40 45.66 -11.00 13 14 2.30 17.68 -43.07 14 15 7.35 47.76 -3.98 15 16 7.35 32.74 -5.07 16 17 4.10 22.63 14.12 17 18 5.90 70.73 -5.05 18 19 7.40 29.69 -2.94 19 20 5.64 46.73 -3.05 20 21 3.91 107.78 -3.96 21 22 4.02 82.72 1.99 22 23 3.00 35.76 -3.06 23 24 3.30 147.73 -11.00 24 25 6.57 96.74 0.00 25 26 1.81 179.68 3.16 26 27 1.90 25.75 6.95 26 28 2.50 199.59 19.84 *END 2649_mareserection.mares070701 *BEGIN 2649_mareserection.mares0904085 *FIX 0 452282.25 4800934.17 262.92 *FIX 4 452286.35 4800942.63 263.46 *FIX 6 452288.03 4800943.53 263.26 *FIX 12 452304.84 4800943.23 262.81 0 1 3.00 88.85 6.70 1 2 2.91 18.25 3.54 2 3 4.11 17.73 -2.23 3 4 2.03 328.99 4.81 4 5 2.42 26.97 -37.65 4 6 1.92 61.82 -5.99 6 7 3.34 30.26 -4.29 6 8 8.17 102.88 -1.40 8 9 1.78 137.05 4.83 9 10 2.69 98.76 0.21 10 11 4.73 54.32 -3.76 11 12 1.25 67.34 -4.59 12 13 2.94 110.53 -3.90 12 14 3.96 134.08 3.91 14 15 1.44 67.21 -26.37 15 16 2.30 129.81 -17.99 *END 2649_mareserection.mares0904085 *END SurveyFromDXFExportedFrom3D CaveConverter_src/test/data/regression/HSC_in.txt0000644000000000000000000004757513030252172021122 0ustar rootrootnew090417 (m, 360) [1]: 2009/04/17 2.08 1.20 0.00 0.00 0.00 1.20 118.0 0.000 0.00 0.00 [1] 118.0 0.960 22.53 -1.72 [1] 118.0 0.230 209.86 13.47 [1] 118.0 4.620 344.93 83.50 [1] 118.0 1.330 234.49 -86.05 [1] 118.0 118.1 4.410 85.64 56.42 [1] 118.0 118.1 4.410 85.56 56.46 [1] 118.0 118.1 4.410 85.69 56.48 [1] 118.1 5.210 286.13 -1.99 [1] 118.1 1.250 97.37 3.15 [1] 118.1 1.560 321.06 80.51 [1] 118.1 4.370 145.94 -88.53 [1] 118.1 118.2 2.570 17.55 8.88 [1] 118.1 118.2 2.570 17.34 8.88 [1] 118.1 118.2 2.570 17.44 8.88 [1] 118.2 1.220 287.61 0.03 [1] 118.2 0.400 105.36 4.08 [1] 118.2 0.310 293.53 87.17 [1] 118.2 0.380 21.24 -85.59 [1] 118.2 118.3 6.090 17.22 -0.31 [1] 118.2 118.3 6.090 17.21 -0.37 [1] 118.2 118.3 6.090 17.25 -0.40 [1] 118.3 1.340 209.51 15.20 [1] 118.3 0.200 26.53 2.06 [1] 118.3 0.330 19.33 83.86 [1] 118.3 0.440 187.04 -85.42 [1] 118.3 118.4 6.260 288.72 0.88 [1] 118.3 118.4 6.260 288.72 0.88 [1] 118.3 118.4 6.260 288.73 0.90 [1] 118.4 0.480 196.35 -3.11 [1] 118.4 0.440 12.77 10.01 [1] 118.4 0.340 324.14 88.50 [1] 118.4 0.370 218.56 -87.98 [1] 118.3 118.5 2.080 143.40 1.35 [1] 118.3 118.5 2.080 143.34 1.25 [1] 118.3 118.5 2.080 143.01 1.28 [1] 118.5 0.820 10.33 3.35 [1] 118.5 0.210 95.58 86.04 [1] 118.5 0.190 205.48 -87.92 [1] 118.5 118.6 2.630 92.97 -6.52 [1] 118.5 118.6 2.630 92.97 -6.52 [1] 118.5 118.6 2.630 93.04 -6.54 [1] 118.6 0.360 355.91 0.44 [1] 118.6 0.310 168.00 6.41 [1] 118.6 0.210 76.60 85.20 [1] 118.6 1.940 132.41 -84.27 [1] 118.1 118.7 1.920 171.13 38.90 [1] 118.1 118.7 1.920 171.28 38.89 [1] 118.1 118.7 1.920 171.33 38.97 [1] 118.7 0.990 23.62 1.01 [1] 118.7 0.960 219.73 0.84 [1] 118.7 2.060 276.93 84.38 [1] 118.7 0.480 160.02 -83.30 [1] 118.7 118.8 4.090 118.90 8.05 [1] 118.7 118.8 4.090 118.83 8.06 [1] 118.7 118.8 4.090 118.70 8.10 [1] 118.8 0.590 14.54 -1.30 [1] 118.8 1.160 64.30 86.33 [1] 118.8 0.810 4.19 -88.04 [1] 118.8 118.9 6.840 102.67 6.76 [1] 118.8 118.9 6.840 102.68 6.77 [1] 118.8 118.9 6.840 102.91 6.66 [1] 118.9 0.640 9.27 -0.28 [1] 118.9 0.400 186.72 9.03 [1] 118.9 0.220 28.87 85.75 [1] 118.9 0.220 217.52 -85.24 [1] 118.7 118.10 3.610 220.76 21.45 [1] 118.7 118.10 3.610 220.79 21.43 [1] 118.7 118.10 3.610 220.82 21.40 [1] 118.10 1.230 116.25 2.68 [1] 118.10 0.760 285.24 7.71 [1] 118.10 0.740 109.40 86.98 [1] 118.10 0.220 100.33 -89.49 [1] 118.10 118.11 1.780 180.55 16.59 [1] 118.10 118.11 1.780 180.34 16.48 [1] 118.10 118.11 1.780 180.29 16.42 [1] 118.11 0.310 103.13 -2.29 [1] 118.11 1.000 282.91 1.18 [1] 118.11 0.240 314.51 86.50 [1] 118.11 0.200 162.79 -79.23 [1] 118.11 118.12 15.040 195.43 0.34 [1] 118.11 118.12 15.030 195.25 0.34 [1] 118.11 118.12 15.030 195.19 0.29 [1] 118.12 6.010 17.32 2.01 [1] 118.12 3.080 347.79 3.07 [1] 118.12 2.200 320.84 4.71 [1] 118.12 3.830 49.89 -0.50 [1] 118.12 0.740 110.79 8.92 [1] 118.12 0.690 198.64 10.54 [1] 118.12 118.13 7.300 264.14 2.58 [1] 118.12 118.13 7.300 264.14 2.61 [1] 118.12 118.13 7.300 263.98 2.51 [1] 118.13 0.700 182.13 3.06 [1] 118.13 0.210 11.63 19.31 [1] 118.13 0.230 184.92 77.90 [1] 118.13 118.14 3.710 279.79 4.71 [1] 118.13 118.14 3.710 279.83 4.76 [1] 118.13 118.14 3.710 279.83 4.85 [1] 118.14 0.430 188.00 1.46 [1] 118.14 0.850 13.90 -0.77 [1] 118.14 0.340 176.03 -80.18 [1] 118.14 118.15 6.700 266.27 -26.49 [1] 118.14 118.15 6.690 266.33 -26.46 [1] 118.14 118.15 6.690 266.19 -26.38 [1] 118.15 0.980 170.84 8.55 [1] 118.15 2.490 64.23 11.72 [1] 118.15 2.610 244.87 21.84 [1] 118.15 3.370 292.48 11.33 [1] 118.15 2.000 342.97 10.72 [1] 118.15 118.16 2.920 52.58 0.51 [1] 118.15 118.16 2.920 52.58 0.48 [1] 118.15 118.16 2.920 52.56 0.50 [1] 118.16 1.130 335.93 -3.42 [1] 118.16 0.310 152.53 2.42 [1] 118.16 0.620 333.07 87.23 [1] 118.16 0.380 146.54 -87.21 [1] 118.16 118.17 7.380 58.27 0.42 [1] 118.16 118.17 7.380 58.26 0.39 [1] 118.16 118.17 7.360 58.21 0.35 [1] 118.17 0.980 324.42 3.22 [1] 118.17 0.310 144.32 3.31 [1] 118.17 0.280 300.73 87.16 [1] 118.17 0.050 126.22 -81.67 [1] 118.17 118.18 3.300 34.03 -4.62 [1] 118.17 118.18 3.300 34.00 -4.56 [1] 118.17 118.18 3.300 34.15 -4.51 [1] 118.18 2.980 85.15 -2.52 [1] 118.18 2.970 124.59 0.62 [1] 118.18 7.760 126.15 1.14 [1] 118.18 6.420 141.39 0.59 [1] 118.18 3.290 164.25 2.96 [1] 118.18 2.760 240.68 7.36 [1] 118.18 0.870 282.27 12.06 [1] 118.18 118.19 4.750 270.77 2.03 [1] 118.18 118.19 4.750 270.83 2.05 [1] 118.18 118.19 4.750 270.77 2.03 [1] 118.19 0.200 182.59 2.55 [1] 118.19 1.540 11.61 -0.79 [1] 118.19 0.630 297.61 84.85 [1] 118.19 0.400 87.62 -85.16 [1] 118.19 118.20 5.160 306.50 4.35 [1] 118.19 118.20 5.160 306.55 4.31 [1] 118.19 118.20 5.160 306.47 4.28 [1] 118.20 1.600 212.01 -0.93 [1] 118.20 0.260 50.02 -84.91 [1] 118.20 118.21 2.770 223.52 -6.64 [1] 118.20 118.21 2.770 223.48 -6.69 [1] 118.20 118.21 2.760 223.30 -6.92 [1] 118.21 1.600 180.63 6.26 [1] 118.21 0.600 338.00 1.74 [1] 118.21 0.760 212.74 88.20 [1] 118.21 118.22 4.110 249.40 5.40 [1] 118.21 118.22 4.110 249.44 5.40 [1] 118.21 118.22 4.110 249.46 5.42 [1] 118.22 0.390 162.23 -0.01 [1] 118.22 0.580 347.00 0.42 [1] 118.22 0.460 271.51 75.36 [1] 118.22 0.260 90.53 -87.49 [1] 118.22 118.23 4.040 274.31 6.81 [1] 118.22 118.23 4.040 274.37 6.82 [1] 118.22 118.23 4.040 274.26 6.66 [1] 118.21 118.24 2.040 127.75 8.54 [1] 118.21 118.24 2.040 127.78 8.50 [1] 118.21 118.24 2.040 127.49 8.43 [1] 118.24 1.050 1.79 1.44 [1] 118.24 0.230 100.12 86.02 [1] 118.24 0.270 278.61 -83.60 [1] 118.24 118.25 4.170 85.35 -5.62 [1] 118.24 118.25 4.170 86.27 -6.31 [1] 118.24 118.25 4.170 86.18 -6.30 [1] 118.15 118.26 4.820 275.39 11.74 [1] 118.15 118.26 4.820 275.33 11.67 [1] 118.15 118.26 4.820 275.29 11.63 [1] 118.26 0.670 193.39 11.97 [1] 118.26 0.450 359.40 1.02 [1] 118.26 0.320 29.04 -85.64 [1] 118.26 118.27 9.450 283.85 -1.76 [1] 118.26 118.27 9.420 283.97 -1.82 [1] 118.26 118.27 9.460 283.97 -1.83 [1] 118.27 0.330 200.74 4.08 [1] 118.27 0.290 18.18 10.78 [1] 118.27 0.350 6.27 85.39 [1] 118.27 0.240 165.10 -87.87 [1] 118.15 118.28 5.320 258.06 15.01 [1] 118.15 118.28 5.330 258.06 15.07 [1] 118.15 118.28 5.340 258.10 15.08 [1] 118.28 0.600 161.13 4.17 [1] 118.28 0.850 353.50 8.71 [1] 118.28 2.120 50.09 81.34 [1] 118.28 118.29 2.160 242.45 48.11 [1] 118.28 118.29 2.130 242.44 47.99 [1] 118.28 118.29 2.170 242.14 47.93 [1] 118.29 2.970 33.03 0.82 [1] 118.29 2.220 320.50 -0.21 [1] 118.29 2.010 217.71 7.64 [1] 118.29 1.670 157.78 9.94 [1] 118.29 1.400 89.26 -9.57 [1] 118.29 118.30 4.360 106.07 -31.28 [1] 118.29 118.30 4.360 106.03 -31.34 [1] 118.29 118.30 4.360 105.92 -31.27 [1] 118.30 0.300 9.95 1.38 [1] 118.30 0.480 199.82 0.95 [1] 118.30 0.460 287.87 78.94 [1] 118.29 118.31 2.090 225.75 5.70 [1] 118.29 118.31 2.090 225.75 5.76 [1] 118.29 118.31 2.090 225.96 5.62 [1] 118.31 0.240 157.70 0.95 [1] 118.31 1.250 331.67 1.19 [1] 118.31 0.200 175.76 86.96 [1] 118.31 0.360 317.54 -83.62 [1] 118.31 118.32 4.450 242.35 0.44 [1] 118.31 118.32 4.450 242.36 0.53 [1] 118.31 118.32 4.450 242.30 0.46 [1] 118.32 0.520 203.42 5.06 [1] 118.32 3.190 303.43 6.37 [1] 118.32 4.630 339.31 2.41 [1] 118.32 3.020 0.72 5.70 [1] 118.32 3.100 30.34 2.17 [1] 118.32 3.630 67.71 3.17 [1] 118.32 3.210 100.79 -1.01 [1] 118.32 118.33 3.290 101.72 1.30 [1] 118.32 118.33 3.280 101.62 1.38 [1] 118.32 118.33 3.280 101.71 1.32 [1] 118.33 0.950 34.52 0.59 [1] 118.33 0.340 214.65 16.64 [1] 118.33 0.290 122.89 84.71 [1] 118.33 0.190 292.02 -83.48 [1] 118.33 118.34 4.790 105.85 -13.74 [1] 118.33 118.34 4.790 105.76 -13.67 [1] 118.33 118.34 4.790 105.87 -13.74 [1] 118.34 0.290 207.59 -3.35 [1] 118.34 0.200 173.84 86.48 [1] 118.34 1.470 178.88 -87.03 [1] 118.34 118.35 2.380 121.18 -61.01 [1] 118.34 118.35 2.370 121.51 -61.00 [1] 118.34 118.35 2.370 121.13 -60.99 [1] 118.35 1.020 20.04 -5.91 [1] 118.35 0.720 201.68 6.82 [1] 118.35 1.170 125.10 82.70 [1] 118.35 1.640 292.70 -81.73 [1] 118.35 118.36 2.970 70.89 10.56 [1] 118.35 118.36 2.980 70.94 10.56 [1] 118.35 118.36 2.970 70.85 10.56 [1] 118.36 0.790 325.76 2.66 [1] 118.36 0.420 139.95 3.69 [1] 118.36 0.850 34.54 84.25 [1] 118.36 118.37 2.400 81.45 2.72 [1] 118.36 118.37 2.400 81.50 2.73 [1] 118.36 118.37 2.400 81.35 2.80 [1] 118.37 0.520 358.49 2.72 [1] 118.37 0.500 166.22 5.62 [1] 118.37 0.490 352.29 88.26 [1] 118.36 118.38 3.440 199.71 3.19 [1] 118.36 118.38 3.440 199.73 3.18 [1] 118.36 118.38 3.440 199.76 3.20 [1] 118.38 0.240 135.39 -2.25 [1] 118.38 0.310 318.27 11.13 [1] 118.38 0.410 119.61 80.85 [1] 118.38 0.190 318.28 -81.47 [1] 118.36 118.39 3.240 245.58 -25.97 [1] 118.36 118.39 3.240 245.67 -25.96 [1] 118.36 118.39 3.240 245.69 -25.88 [1] 118.39 0.430 25.03 1.52 [1] 118.39 0.560 7.33 84.71 [1] 118.39 1.470 236.88 -81.55 [1] 118.39 118.40 3.120 126.41 -36.37 [1] 118.39 118.40 3.120 126.40 -36.48 [1] 118.39 118.40 3.130 126.54 -36.50 [1] 118.39 118.41 2.460 288.61 -19.76 [1] 118.39 118.41 2.460 288.56 -19.55 [1] 118.39 118.41 2.460 288.44 -19.58 [1] 118.41 0.360 200.49 1.35 [1] 118.41 0.280 23.85 4.36 [1] 118.41 0.550 300.08 85.86 [1] 118.41 118.42 2.830 298.00 28.00 [1] 118.41 118.42 2.830 297.81 27.90 [1] 118.41 118.42 2.820 297.89 27.98 [1] 118.42 0.740 181.72 3.85 [1] 118.42 0.480 340.78 0.38 [1] 118.42 2.690 269.10 86.13 [1] 118.42 0.520 115.64 -84.70 [1] 118.42 118.43 1.840 310.40 50.45 [1] 118.42 118.43 1.830 310.63 50.50 [1] 118.42 118.43 1.840 310.27 50.38 [1] 118.43 118.44 7.340 226.88 12.40 [1] 118.43 118.44 7.350 226.93 12.40 [1] 118.43 118.44 7.350 226.88 12.35 [1] 118.44 0.560 328.97 6.99 [1] 118.44 1.050 212.94 78.82 [1] 118.44 0.350 301.67 -85.91 [1] 118.44 118.45 1.080 265.81 18.44 [1] 118.44 118.45 1.070 265.91 18.37 [1] 118.44 118.45 1.070 265.75 18.33 [1] 118.45 0.510 15.60 4.39 [1] 118.45 0.570 194.98 0.17 [1] 118.45 0.540 180.85 83.08 [1] 118.45 0.500 224.46 -88.24 [1] 118.45 118.46 2.400 112.22 14.39 [1] 118.45 118.46 2.410 112.29 14.33 [1] 118.45 118.46 2.400 112.18 14.40 [1] 118.46 0.790 17.98 6.40 [1] 118.46 0.530 207.16 5.75 [1] 118.46 0.500 243.62 84.24 [1] 118.46 0.910 125.65 -81.45 [1] 118.46 118.47 2.520 132.69 26.59 [1] 118.46 118.47 2.520 132.64 26.35 [1] 118.46 118.47 2.520 132.73 26.38 [1] 118.47 3.850 1.01 2.48 [1] 118.47 5.830 317.39 2.51 [1] 118.47 10.340 296.43 3.28 [1] 118.47 10.790 286.75 3.18 [1] 118.47 2.680 266.70 5.84 [1] 118.47 0.500 172.45 13.22 [1] 118.47 118.48 2.500 63.02 0.34 [1] 118.47 118.48 2.500 63.12 0.28 [1] 118.47 118.48 2.500 63.13 0.37 [1] 118.48 2.010 358.17 2.41 [1] 118.48 0.550 162.50 4.70 [1] 118.48 0.360 41.60 84.49 [1] 118.48 2.610 87.26 -2.01 [1] 118.48 118.49 4.480 87.05 -2.02 [1] 118.48 118.49 4.480 87.07 -2.03 [1] 118.48 118.49 4.480 87.31 -1.97 [1] 118.49 2.830 350.35 0.10 [1] 118.49 1.180 152.31 4.71 [1] 118.49 0.400 118.05 77.67 [1] 118.49 118.50 3.820 87.56 -4.58 [1] 118.49 118.50 3.820 87.49 -4.55 [1] 118.49 118.50 3.820 87.45 -4.44 [1] 118.50 3.980 347.14 2.28 [1] 118.50 0.340 177.04 4.50 [1] 118.50 0.560 350.94 87.59 [1] 118.50 0.670 224.41 -87.87 [1] 118.43 118.51 1.800 310.28 50.29 [1] 118.43 118.51 1.810 310.53 50.38 [1] 118.43 118.51 1.800 310.56 50.32 [1] 118.51 0.830 211.09 -1.29 [1] 118.51 0.350 27.20 5.53 [1] 118.51 1.200 241.74 87.79 [1] 118.51 0.380 131.38 -84.70 [1] 118.51 118.52 8.860 287.98 -2.52 [1] 118.51 118.52 8.850 288.01 -2.39 [1] 118.51 118.52 8.850 287.94 -2.46 [1] CaveConverter_src/test/data/regression/2649_Mareserection_in.svx0000644000000000000000000000507313030252172023755 0ustar rootroot*begin 2649_Mareserection *EQUATE Mares070701.25 Mares0904085.0 *begin Mares070701 *EXPORT 25 ;surveyors: Dave Garman, Paul Dold, Chris Agnew, Tony Radmall (Badger) ;name: Mareserection ;date 2007-07-01 *CALIBRATE declination 2.28 ;declination is 2 41' (2.68) for 2004 changing by 8'E per year. ; 2.55 used for 2005 ; 2.42 used for 2006 ; 2.28 used for 2007 ; 2.15 used for 2008 *fix 1 452220 4800904 274 ;Altitude fixed using surface mesh *entrance 1 1 2 1.72 145 -47; .2 .3 .1 .4 2 3 2.90 353 -49; .7 .1 1 1 3 4 4.22 - -V; .2 .2 .1 4 5 4.95 103 11; 1 .8 4 .2 5 6 2.17 72 40; .5 .3 2 1 6 7 2.51 100 -35; .2 .4 1.5 .6 7 8 6.9 222 -11 7 9 2.98 68 19; .3 .3 .5 1.6 9 10 3.00 110 -2; .1 .3 1 3 10 11 2.58 98 -11; .5 0 1.5 3 11 12 4.8 - -V; 4.1 5.6 1.3 11 13 4.4 48 -11 13 14 2.3 20 -43; 0 .5 .6 1.7 14 15 7.35 50 -4; .1 .6 1.8 .4 15 16 7.35 35 -5; 1 .1 2 1 16 17 4.1 25 14; 1 0 2 1 17 18 5.9 73 -5; 0 .7 1.4 1.6 18 19 7.4 32 -3; 1.2 0 1.4 1.5 19 20 5.63 49 -3; 1 .1 1.5 .93 20 21 3.91 110 -4; 0 1.2 1.4 1 21 22 4.02 85 2; 1 0 1 1.3 22 23 3.00 38 -3; .8 .3 .5 1.4 23 24 3.3 150 -11; 0 1.3 .7 1.7 24 25 6.57 99 0; 2 .2 1.3 1.4 25 26 1.82 182 3; 1.5 1.3 1 0 26 27 1.91 28 7 26 28 2.5 202 20 *data passage station left right up down 1 .2 .3 .1 .4 2 .7 .1 1 1 3 .2 .2 .1 2 4 1 .8 2 .2 5 .5 .3 2 1 6 .2 .4 1.5 .6 7 .3 .3 .5 1.6 9 .1 .3 1 3 10 .5 0 1.5 3 11 4.1 5.6 1.3 4.8 13 0 .5 .6 1.7 14 .1 .6 1.8 .4 15 1 .1 2 1 16 1 0 2 1 17 0 .7 1.4 1.6 18 1.2 0 1.4 1.5 19 1 .1 1.5 .93 20 0 1.2 1.4 1 21 1 0 1 1.3 22 .8 .3 .5 1.4 23 0 1.3 .7 1.7 24 2 .2 1.3 1.4 25 1.5 1.3 1 0 *END Mares070701 *BEGIN Mares0904085 *EXPORT 0 ;surveyors: Footleg, Alister Smith, Steve Woolvern ;Date 2009/04/08 *CALIBRATE declination 2.08 0 1 3.00 91.06 6.73 1 2 2.91 20.29 3.57 2 3 4.11 19.88 -2.27 3 4 2.03 331.14 4.87 4 5 2.43 28.98 -37.75 4 6 1.91 63.99 -6.15 6 7 3.35 32.37 -4.35 6 8 8.17 104.93 -1.38 8 9 1.78 139.35 4.60 9 10 2.70 100.81 0.36 10 11 4.72 56.33 -3.82 11 12 1.25 69.40 -4.66 12 13 2.95 112.51 -3.77 12 14 3.97 136.09 3.99 14 15 1.44 68.87 -26.54 15 16 2.30 131.94 -17.98 *data passage station left right up down 0 0.86 1.02 1.4 1.06 1 0.38 0.0 0.29 0.38 2 0.67 0.57 0.43 1.36 3 1.26 0.27 0.26 0.37 4 0.65 1.4 0.0 0.79 6 1.44 1.38 0.0 0.53 8 0.28 2.13 0.22 0.19 9 0.7 0.0 0.0 0.37 10 0.34 0.0 0.0 0.58 11 0.57 1.05 0.51 0.28 12 0.7 1.0 0.47 0.23 14 0.5 0.0 0.26 0.4 15 0.0 0.52 0.48 0.66 *END Mares0904085 *end 2649_MareserectionCaveConverter_src/test/data/regression/units_test_in.svx0000644000000000000000000000705613036507530022704 0ustar rootroot*begin units *EQUATE tapefeet.5 lengthyards.5 *EQUATE lengthyards.10 compclinodeg.10 *EQUATE compclinodeg.15 compgrads.15 *EQUATE compgrads.20 clinpercentage.20 *EQUATE clinpercentage.25 compminclinperc.25 *EQUATE compminclinperc.30 compdeg.30 *EQUATE compdeg.35 clindeg.35 *EQUATE clindeg.40 compmilsclimmintapem.40 *EQUATE compmilsclimmintapem.45 tapemetcompclindeg.45 *EQUATE tapemetcompclindeg.50 lenmcompclinmils.50 *EQUATE lenmcompclinmils.55 lenybeardeggradgrads.55 *EQUATE lenybeardeggradgrads.60 lenmcompclindegs.60 *EQUATE lenmcompclindegs.65 tapeYcompDegGradMils.65 *begin tapefeet *units tape feet 1 2 3.64 54.96 -0.43 2 3 5.51 118.65 3.60 3 4 4.92 124.12 0.26 4 5 7.41 75.30 -0.34 *end tapefeet *begin lengthyards *units length yards 5 6 7.12 126.62 -0.65 6 7 9.23 70.15 1.17 7 8 4.74 110.68 -2.15 8 9 3.72 161.27 -2.79 9 10 2.91 154.27 1.80 *end lengthyards *begin compclinodeg *units compass gradient degrees 10 11 4.42 247.67 1.30 11 12 7.75 174.50 1.95 12 13 6.87 205.58 -1.32 13 14 2.80 93.80 1.73 14 15 4.88 189.66 -0.48 *end compclinodeg *begin compgrads *units compass grads 15 16 8.98 155.44 -0.29 16 17 2.42 250.17 -3.33 16 18 7.14 225.20 -2.03 18 19 5.34 249.23 -6.95 19 20 6.80 229.51 -0.03 *end compgrads *begin clinpercentage *units clino percentage 20 21 8.87 323.99 50.05 21 22 6.17 262.88 23.76 22 23 8.38 77.91 4.11 23 24 5.17 129.84 36.43 24 25 4.71 106.94 4.50 *end clinpercentage *begin compminclinperc *units compass minutes *units clino percent 25 26 3.05 31.79 67.38 26 27 2.59 312.75 40.83 27 28 5.56 67.52 17.08 28 29 4.90 28.80 73.06 29 30 7.64 64.75 41.19 *end compminclinperc *begin compdeg *units compass degREEs 30 31 5.73 357.61 5.39 31 32 6.85 321.98 -0.03 32 33 1.47 359.42 15.89 33 34 5.44 112.14 2.87 34 35 3.81 112.46 4.11 *end compdeg *begin clindeg *units clino degRees 35 36 0.82 116.06 36.00 35 37 4.26 170.83 28.04 37 38 1.96 213.05 33.22 38 39 0.61 281.22 51.89 39 40 16.80 242.61 10.51 *end clindeg *begin compmilsclimmintapem *units compass mils *units clino minutes *units tape meters 40 41 1.54 156.92 21.03 41 42 1.23 188.42 54.13 42 43 7.82 271.86 -10.72 43 44 1.58 135.83 -54.76 44 45 4.22 283.16 -3.82 *end compmilsclimmintapem *begin tapemetcompclindeg *units tape metric *units compass DegRees *units clino DEGS 45 47 4.08 278.14 -22.89 47 48 1.62 127.59 7.41 48 49 2.40 265.00 1.41 49 50 2.06 297.62 28.08 *end tapemetcompclindeg *begin lenmcompclinmils *units length metres *units bearing clino Mils 50 51 2.38 317.24 16.74 51 52 2.80 335.01 -5.36 52 53 8.00 77.58 95.81 53 54 2.99 251.79 -11.14 54 55 2.75 287.69 -14.31 *end lenmcompclinmils *begin lenybeardeggradgrads *units length mETric *units bearing DEGs *units gradient GRADS 55 56 6.04 280.29 -11.16 56 57 4.72 167.79 -69.81 57 58 6.26 266.27 3.98 58 59 5.34 221.34 -28.43 59 60 3.64 249.87 -18.27 *end lenybeardeggradgrads *begin lenmcompclindegs *units length MeTErS *units bearing gradient DeGs 60 61 3.32 25.03 -14.33 61 62 5.70 255.27 -30.20 62 63 3.09 201.53 -10.26 63 64 4.55 164.72 -15.91 64 65 2.38 199.29 -26.79 *end lenmcompclindegs *begin tapeYcompDegGradMils *units tape YaRdS *units compass DeGs *units gradient MiLs 65 66 6.29 239.56 -9.79 66 67 7.66 284.16 -7.14 67 68 2.58 224.20 -8.54 68 69 6.80 205.89 -6.51 69 70 2.09 108.56 -5.31 *end tapeYcompDegGradMils *end units CaveConverter_src/test/data/regression/SwilEnt_ss_cmd_ref.svx0000644000000000000000000002756412217271672023601 0ustar rootroot*BEGIN Swildons *EQUATE Ent EntranceZigZags.3 *EQUATE surfacegps.4 EntranceZigZags.3 *EQUATE LongDryWay.0 EntranceZigZags.5 *EQUATE LongDryWay.5 EntranceZigZags.21 *EQUATE LongDryWay.5 ShortDryWay.pt1.0 *EQUATE LongDryWay.39 NewGrottoes.0 *EQUATE LongDryWay.62 OldGrotto2WC.4 *EQUATE LongDryWay.59 OldGrotto2WC.0 *EQUATE LongDryWay.59 ShortDryWay.pt2.3 *EQUATE WaterRift.0 OldGrotto2WC.11 *EQUATE WaterRift.4 FortyRoute.0 *EQUATE WaterRift.12 FortyRoute.11 *EQUATE 10.0 LongDryWay.8 *EQUATE 10.20 LongDryWay.2 *EQUATE 10.13 20.20 *EQUATE 10.18 20.27 *EQUATE 20.0 EntranceZigZags.5 *EQUATE 20.23 ShortDryWay.pt1.3 *EQUATE 20.19 EntranceZigZags.5 *BEGIN surfacegps *DATE 2013.06.30 *CALIBRATE declination 1.58 *FLAGS SURFACE 0 1 9.84 94.37 -5.88 1 2 7.84 97.65 -8.05 2 3 11.76 94.27 -17.67 3 4 4.38 7.38 -23.29 3 5 5.45 262.93 13.06 5 6 8.80 174.95 11.61 6 7 13.78 168.31 12.55 *END surfacegps *BEGIN EntranceZigZags *DATE 2012.09.09 *CALIBRATE declination 1.7 *FLAGS SURFACE 0 1 2.98 10.26 -2.01 0 2 5.24 3.23 -5.04 2 3 2.64 166.70 -60.11 *FLAGS NOT SURFACE 3 4 3.10 330.76 -25.13 4 5 4.51 275.80 -12.10 5 6 2.41 50.67 -22.33 6 7 1.08 37.30 11.53 7 8 2.00 6.10 11.51 8 9 1.01 56.60 0.18 9 10 3.07 336.52 5.81 9 11 2.42 64.64 5.29 11 12 4.50 106.56 19.29 10 13 0.94 80.55 -45.63 13 14 5.31 65.16 19.50 10 15 3.27 329.15 -18.16 15 16 3.57 334.08 -6.33 16 17 2.41 207.98 -9.43 17 18 4.05 308.01 -19.25 18 19 2.06 211.48 -16.06 19 20 2.94 233.55 -35.84 20 21 2.04 14.57 -39.09 *data passage station left right up down 3 0.30 0.38 0.91 0.44 4 0.56 0.00 1.50 1.32 5 1.98 4.15 0.69 0.51 6 0.49 0.19 0.35 0.29 7 0.57 1.89 0.73 4.09 8 0.00 1.34 0.15 1.08 9 0.59 3.00 0.43 0.45 10 0.57 1.10 0.00 1.12 *data passage station left right up down 9 0.37 0.87 0.43 0.45 11 0.13 1.70 0.32 0.39 12 1.63 0.57 0.25 0.26 *data passage station left right up down 10 0.54 0.51 0.00 1.12 13 0.50 1.07 0.70 0.21 14 0.54 2.05 0.20 0.43 *data passage station left right up down 10 0.57 1.10 0.00 1.12 15 2.15 0.75 0.69 0.79 16 0.83 0.18 1.50 0.62 17 1.38 1.29 0.00 1.46 18 1.46 0.39 0.25 0.68 19 0.00 0.44 0.52 1.54 20 0.00 0.89 1.54 1.61 21 1.16 0.21 2.86 0.20 *END EntranceZigZags *BEGIN LongDryWay *DATE 2013.02.23 *CALIBRATE declination 1.63 *EQUATE 33 35 *EQUATE 44 46 0 1 4.08 270.72 -25.50 1 2 3.77 354.35 -29.81 2 3 4.33 336.10 -24.79 3 4 2.77 337.70 -4.41 4 5 3.14 343.71 -25.59 5 6 1.87 332.43 6.50 6 7 2.26 343.32 -5.29 7 8 1.72 258.62 12.28 7 9 1.10 310.47 4.46 9 10 2.37 334.59 4.19 10 11 1.12 263.77 46.91 11 12 3.53 351.74 -3.89 12 13 1.97 312.50 39.30 13 14 2.39 28.12 3.33 14 15 0.86 306.09 -13.02 15 16 4.55 48.38 7.37 16 17 2.34 328.01 -9.83 17 18 2.65 86.23 -7.24 18 19 0.84 146.67 18.49 19 20 1.81 87.93 13.23 20 21 1.73 164.45 7.33 21 22 2.91 113.95 7.56 22 23 1.51 181.21 30.14 23 24 4.59 108.18 -8.18 24 25 3.22 188.75 35.45 25 26 4.13 139.60 16.69 25 27 4.94 97.33 39.05 24 28 2.78 323.60 -24.94 28 29 0.89 90.00 -48.92 29 30 6.28 324.60 -29.83 30 31 1.55 264.23 41.75 31 32 2.26 15.83 12.57 32 33 6.03 323.45 -41.61 31 34 5.13 314.22 -30.46 34 35 2.76 19.79 -19.74 35 36 4.45 91.00 26.23 36 37 6.61 112.79 18.69 37 38 3.92 158.52 22.40 38 39 5.06 158.54 15.55 39 40 3.30 137.29 35.75 40 41 1.54 156.92 21.03 41 42 1.23 188.42 54.13 35 43 7.82 271.86 -10.72 43 44 1.58 132.75 -54.76 43 45 4.22 283.16 -3.82 46 47 4.08 278.14 -22.89 47 48 1.62 127.59 7.41 45 49 2.40 265.00 1.41 49 50 2.06 297.62 28.08 50 51 2.38 317.24 16.74 51 52 2.80 335.01 -5.36 52 53 8.00 77.58 15.81 52 54 2.99 251.79 -11.14 54 55 2.75 287.69 -14.31 55 56 6.04 280.29 -11.16 56 57 4.72 167.79 -69.81 57 58 6.26 266.27 3.98 58 59 5.34 221.34 -28.43 59 60 3.64 249.87 -18.27 60 61 6.14 188.00 -36.35 61 62 1.04 31.64 -42.73 *data passage station left right up down 0 0.56 1.35 0.66 0.56 1 1.13 1.96 0.45 1.49 2 0.64 0.92 0.73 1.92 3 0.44 0.45 1.17 0.48 5 1.73 0.62 2.74 0.23 6 1.12 0.32 2.49 0.46 *data passage station left right up down 15 0.61 0.45 0.40 0.41 16 2.24 0.00 0.86 1.51 22 1.22 0.84 1.30 0.40 23 1.27 0.19 0.40 1.21 24 3.04 1.76 1.43 0.00 25 3.11 1.05 0.86 0.00 26 1.08 0.48 0.56 0.52 *data passage station left right up down 25 2.42 1.16 0.86 0.00 27 0.16 3.08 0.34 0.00 *data passage station left right up down 24 1.76 3.04 1.43 0.00 29 0.65 0.60 0.61 1.14 31 0.39 1.14 0.97 1.50 32 0.68 0.00 0.38 0.76 *data passage station left right up down 31 0.43 1.37 0.97 1.50 36 3.45 2.23 2.46 0.38 38 1.04 1.09 2.53 0.83 39 2.01 1.86 0.80 0.31 42 1.03 0.18 0.28 0.00 45 1.00 0.26 2.12 0.91 *data passage station left right up down 46 0.00 1.08 0.73 0.00 48 0.00 2.53 0.42 0.71 *data passage station left right up down 45 1.00 0.26 2.12 0.91 49 1.24 0.87 2.24 0.70 52 0.00 1.39 0.66 1.10 *data passage station left right up down 52 1.39 0.00 0.66 1.10 55 0.45 1.74 1.92 4.57 58 2.05 0.88 2.44 0.74 59 2.29 5.14 2.99 0.67 60 3.49 1.16 1.60 2.35 *END LongDryWay *BEGIN ShortDryWay *EQUATE pt1.13 pt2.0 *BEGIN pt1 *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 1.43 131.61 -13.25 1 2 3.89 73.29 -51.63 2 3 4.50 170.72 19.68 3 4 1.11 246.49 -14.16 2 5 4.91 323.66 2.34 5 6 5.05 279.35 -25.23 6 7 5.02 336.36 -13.85 7 8 3.19 303.08 -33.11 8 9 6.71 295.69 -12.15 9 10 1.11 265.93 2.35 10 11 4.30 323.22 3.80 11 12 3.28 275.99 -17.30 12 13 4.68 298.00 -3.29 *data passage station left right up down 1 0.41 0.87 0.00 0.28 2 0.00 1.63 1.81 0.46 3 0.31 0.26 1.53 0.92 4 0.00 2.09 0.55 0.68 *data passage station left right up down 2 1.63 0.00 1.81 0.46 5 1.00 0.32 1.55 0.86 6 0.00 1.25 2.73 1.16 7 0.41 0.00 3.68 0.54 8 0.00 1.37 4.40 1.42 9 1.02 0.00 1.15 1.06 10 0.00 0.45 0.84 1.15 11 0.64 0.00 2.05 1.59 12 0.00 0.52 1.75 0.81 13 0.00 0.57 0.38 0.72 *END pt1 *BEGIN pt2 *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 3.20 316.66 0.98 1 2 7.10 308.84 -15.08 2 3 4.24 278.91 -12.53 *data passage station left right up down 2 0.65 0.00 2.87 0.80 *END pt2 *END ShortDryWay *BEGIN NewGrottoes *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 1.56 49.36 7.27 1 2 1.75 10.53 51.20 2 3 4.07 347.52 12.12 3 4 3.62 50.60 25.22 4 5 3.25 67.67 12.62 5 6 3.45 56.57 19.52 6 7 1.42 151.95 -12.13 7 8 6.30 84.91 26.43 *data passage station left right up down 1 0.42 0.08 0.39 0.73 2 0.29 0.00 0.68 0.86 3 0.92 0.62 0.41 0.44 4 2.01 1.51 0.00 0.88 5 2.12 0.90 0.25 0.77 6 0.52 3.62 0.00 0.56 7 1.16 2.64 0.89 0.44 *END NewGrottoes *BEGIN OldGrotto2WC *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 3.32 25.03 -14.33 1 2 5.70 255.27 -30.20 2 3 3.09 201.53 -10.26 3 4 4.55 164.72 -15.92 4 5 2.38 199.29 -26.79 5 6 6.29 239.56 -9.79 6 7 7.66 284.16 -7.14 7 8 2.58 224.20 -8.54 8 9 6.80 205.89 -6.51 9 10 2.09 108.56 -5.31 10 11 7.85 204.84 6.96 *data passage station left right up down 1 2.39 0.00 0.00 0.86 2 0.97 0.38 1.20 1.13 3 0.88 1.27 0.32 0.93 4 0.63 0.59 5.52 2.45 5 0.71 0.81 5.21 1.53 6 0.23 1.80 3.96 1.44 7 1.04 0.00 5.90 1.22 9 1.39 0.00 3.26 1.26 10 0.00 1.68 5.06 1.15 11 4.27 5.18 3.22 1.00 *END OldGrotto2WC *BEGIN WaterRift *DATE 2013.06.29 *CALIBRATE declination 1.58 0 1 5.77 334.28 -11.88 1 2 4.33 195.52 -26.62 2 3 6.36 270.39 -36.08 3 4 1.54 305.04 -17.83 4 5 4.45 302.01 -20.17 5 6 2.13 320.38 -11.71 6 7 5.02 333.92 -11.98 7 8 1.63 323.46 -34.24 8 9 6.72 325.55 -5.61 9 10 2.39 1.38 10.24 10 11 3.73 245.25 -24.06 11 12 1.75 211.67 -24.54 12 13 8.34 181.38 -8.14 13 14 4.39 179.79 -2.78 14 15 7.89 176.25 -1.64 15 16 4.52 194.00 -4.00 *data passage station left right up down 0 6.74 3.41 1.95 0.00 1 1.52 0.00 3.73 1.75 2 0.25 0.75 0.70 1.02 3 0.00 0.60 7.22 1.50 4 1.18 0.00 5.86 1.80 5 0.00 0.66 0.78 1.18 6 0.00 0.40 1.32 0.97 7 0.32 0.00 3.07 1.41 9 0.00 0.65 1.18 0.38 10 0.81 0.43 2.51 1.00 11 0.47 0.78 10.85 2.38 12 0.56 0.84 1.63 1.74 13 0.20 0.83 3.40 0.81 15 0.42 0.39 3.04 0.98 16 1.81 1.13 1.35 0.91 *END WaterRift *BEGIN FortyRoute *DATE 2013.06.29 *CALIBRATE declination 1.58 0 1 2.76 327.91 18.03 1 2 5.35 306.91 5.35 2 3 3.55 321.41 38.17 3 4 1.12 7.71 3.63 4 5 1.06 263.40 33.43 5 6 2.53 351.94 5.11 6 7 2.96 317.31 -3.31 7 8 5.25 326.28 -29.19 8 9 1.45 273.15 -22.26 9 10 7.65 252.29 -71.60 10 11 2.32 146.39 -8.38 *data passage station left right up down 1 1.80 0.00 5.92 3.29 2 0.20 0.91 2.13 5.12 3 0.24 0.78 2.32 3.23 4 0.67 0.00 2.18 0.63 5 0.00 0.57 1.59 1.15 6 0.51 0.00 1.41 1.13 7 0.00 0.47 1.66 1.64 8 0.81 1.04 1.74 1.09 9 0.73 0.30 4.17 2.68 10 2.78 0.00 0.00 1.91 11 0.43 0.86 1.55 1.73 *END FortyRoute *BEGIN 10 *DATE 2013.06.30 *CALIBRATE declination 1.58 0 1 2.19 193.96 16.02 1 2 1.14 228.14 32.64 2 3 3.27 163.30 -22.86 3 4 6.91 267.13 3.53 3 5 2.54 190.56 -63.18 5 6 4.59 251.07 -25.44 6 7 2.94 167.27 7.15 7 8 3.72 165.59 -0.44 8 9 2.10 111.50 19.76 9 10 7.71 161.72 1.86 10 11 2.16 102.08 5.76 9 12 8.35 93.72 17.83 12 13 4.34 9.47 9.01 13 14 2.15 152.81 2.05 13 15 3.68 88.63 11.54 15 16 5.88 47.35 18.38 16 17 5.34 79.73 18.79 3 18 1.80 104.97 -49.81 14 20 3.88 295.15 51.22 *data passage station left right up down 3 0.70 0.29 1.68 1.79 *data passage station left right up down 3 0.65 0.00 1.68 1.79 6 0.86 0.23 0.49 0.00 7 0.00 0.62 0.19 1.57 9 1.38 1.52 0.21 1.09 *data passage station left right up down 9 0.25 2.80 0.21 1.09 *data passage station left right up down 15 1.14 0.58 0.49 0.30 17 1.62 0.86 2.11 0.65 *data passage station left right up down 3 0.29 0.70 1.68 1.79 *data passage station left right up down 14 0.00 2.86 3.76 0.00 *END 10 *BEGIN 20 *DATE 2013.06.30 *CALIBRATE declination 1.58 0 1 3.87 261.79 -26.31 1 2 2.55 125.69 -19.31 2 3 5.29 150.86 -7.60 3 4 1.83 63.94 -43.21 4 5 3.13 176.57 -12.17 5 6 1.40 257.65 -52.47 6 7 2.40 284.49 -13.04 3 8 2.58 64.30 1.85 8 9 2.80 61.94 1.42 9 10 5.67 274.30 -29.92 10 11 4.21 315.24 -5.18 11 12 0.46 277.24 -49.35 12 13 2.99 11.93 3.89 13 14 1.51 326.89 1.17 13 15 4.27 118.28 31.59 15 16 2.48 36.12 13.37 16 17 3.13 327.92 82.94 17 18 1.35 214.32 -12.67 18 19 2.43 231.25 22.63 13 20 2.14 331.93 -1.84 20 21 2.84 49.23 -61.41 21 22 1.87 345.57 -9.57 22 23 1.63 311.27 20.13 23 24 1.57 250.05 -33.27 24 25 2.11 302.88 3.36 25 26 2.60 267.02 31.57 27 26 1.86 143.63 -4.35 *data passage station left right up down 2 0.23 1.76 3.38 0.77 3 0.90 0.00 0.18 0.51 5 0.34 0.35 0.87 0.39 *data passage station left right up down 3 0.90 0.00 0.18 0.51 8 0.97 1.31 0.38 1.78 9 0.00 1.90 1.09 0.84 10 1.22 3.45 0.67 0.23 11 0.83 0.46 0.00 0.48 13 2.90 4.13 1.39 0.30 *data passage station left right up down 13 4.13 2.90 1.39 0.30 15 1.61 0.98 0.28 0.86 16 2.24 0.00 0.00 1.10 *data passage station left right up down 13 2.88 4.11 1.39 0.30 20 0.00 0.41 0.35 1.24 22 0.82 0.21 0.78 0.31 26 0.30 0.39 0.00 0.45 *END 20 *END Swildons CaveConverter_src/test/data/regression/T_LRUD_ps_ref7.svx0000644000000000000000000000572413030252172022464 0ustar rootroot*BEGIN T *BEGIN 1 *DATE 2004.11.06 *FLAGS SPLAY 0 0a 2.22 155.07 -6.40 0 0b 1.84 133.24 -87.58 0 0c 8.97 68.59 -7.44 0 0d 6.07 262.41 7.25 *FLAGS NOT SPLAY 1 0 3.75 38.83 16.00 *FLAGS SPLAY 1 1a 0.66 132.46 -9.51 1 1b 1.35 120.54 81.60 1 1c 0.62 321.23 5.67 *FLAGS NOT SPLAY 2 1 2.85 359.77 -44.11 *FLAGS SPLAY 2 2a 3.73 262.13 3.55 2 2b 1.87 298.42 4.42 2 2c 1.40 3.96 7.32 2 2d 1.31 98.59 10.72 2 2e 0.70 19.12 79.66 2 2f 0.57 207.27 -82.52 *FLAGS NOT SPLAY 3 2 3.21 356.28 -10.33 *FLAGS SPLAY 3 3a 0.40 16.10 55.83 3 3b 0.97 228.49 32.14 3 3c 13.32 292.75 53.20 3 3d 0.67 121.73 88.40 3 3e 1.59 41.18 2.58 *FLAGS NOT SPLAY 4 3 3.14 296.29 4.60 *FLAGS SPLAY 4 4a 0.49 325.93 86.36 4 4b 0.99 45.65 8.48 4 4c 1.04 216.58 8.20 *FLAGS NOT SPLAY 5 4 2.04 315.42 14.57 *FLAGS SPLAY 5 5a 1.00 303.58 78.66 5 5b 1.08 132.05 9.66 5 5c 1.05 12.79 14.14 5 5d 0.93 257.40 8.73 *FLAGS NOT SPLAY 6 5 4.43 247.02 6.24 *FLAGS SPLAY 6 6a 1.13 291.01 83.64 6 6b 0.55 343.52 0.66 6 6c 0.38 169.34 1.97 *FLAGS NOT SPLAY 7 6 4.30 270.59 -2.57 *FLAGS SPLAY 7 7a 0.46 338.63 5.07 7 7b 0.31 257.49 86.93 7 7c 0.52 32.05 -88.23 *FLAGS NOT SPLAY 8 7 2.54 232.91 16.90 *FLAGS SPLAY 8 8a 0.91 135.16 86.15 8 8b 0.28 70.02 7.81 8 8c 0.32 289.59 3.66 *FLAGS NOT SPLAY 9 8 2.44 161.69 1.32 *FLAGS SPLAY 9 9a 0.28 50.74 -0.39 9 9b 0.82 141.52 82.58 9 9c 0.52 232.22 4.93 9 9d 2.24 331.35 37.29 *FLAGS NOT SPLAY 10 9 1.30 83.75 4.89 *FLAGS SPLAY 10 10a 0.28 144.57 81.81 10 10b 0.42 206.99 -3.70 10 10c 0.22 17.73 11.54 10 10d 0.51 309.96 -84.07 10 10e 0.86 132.99 -0.15 *FLAGS NOT SPLAY 11 10 1.49 113.13 8.65 *FLAGS SPLAY 11 11a 0.35 91.22 81.36 11 11b 1.54 55.43 73.20 11 11c 0.22 14.46 0.99 11 11d 0.71 293.51 -84.27 11 11e 2.28 294.59 -29.60 *FLAGS NOT SPLAY 12 5 3.52 19.55 -12.66 *FLAGS SPLAY 12 12a 1.08 313.28 85.16 12 12b 0.31 223.51 1.01 12 12c 0.93 80.12 6.52 12 12d 0.59 125.92 -83.93 *FLAGS NOT SPLAY 13 12 4.50 319.93 -1.59 *FLAGS SPLAY 13 13a 0.84 13.20 79.99 13 13b 0.15 68.57 6.43 13 13c 0.61 248.49 12.06 *FLAGS NOT SPLAY 14 13 2.95 10.30 -15.72 *FLAGS SPLAY 14 14a 0.77 55.88 0.37 14 14b 0.58 331.51 80.78 14 14c 0.55 135.86 -86.18 14 14d 0.13 239.04 4.24 *FLAGS NOT SPLAY 14 15 2.82 146.44 -9.17 *data passage station left right up down 11 0.22 0.00 0.35 0.71 10 0.21 0.49 0.28 0.51 9 0.85 0.49 0.81 0.00 8 0.22 0.32 0.91 0.00 7 0.00 0.46 0.31 0.52 6 0.38 0.55 1.12 0.00 5 0.92 0.62 0.98 0.00 4 1.03 0.96 0.49 0.00 3 4.41 1.53 0.67 0.00 2 3.70 1.27 0.69 0.57 1 0.52 0.60 1.34 0.00 0 4.15 4.41 0.00 1.84 *data passage station left right up down 14 0.12 0.71 0.57 0.55 13 0.59 0.15 0.83 0.00 12 0.25 0.92 1.08 0.59 5 0.92 0.62 0.98 0.00 *END 1 *END T CaveConverter_src/test/data/regression/AwkwardChars_in.dat0000644000000000000000000001061012560565226023011 0ustar rootrootAWKWARDCHARS SURVEY NAME: ABC! SURVEY DATE: 1 23 1980 COMMENT:My Survey SURVEY TEAM: Dr Footleg DECLINATION: 3.00 FORMAT: DDDDUDLRLADNF CORRECTIONS: 0.00 0.00 0.00 CORRECTIONS2: 0.00 0.00 FROM TO LENGTH BEARING INC LEFT UP DOWN RIGHT FLAGS COMMENTS ABC01! ABC02" 12.00 135.00 4.00 0.00 1.00 0.50 2.00 ABC02" ABC03# 15.00 130.00 3.00 2.00 2.00 0.00 5.00 ABC03# ABC04$ 19.00 165.00 2.00 3.00 1.40 0.00 4.00 ABC04$ ABC05% 22.00 155.00 1.00 6.00 1.10 0.00 0.00 ABC05% ABC06& 14.00 140.00 0.00 4.00 0.50 0.00 3.00 ABC06& ABC07& 14.00 120.00 -5.00 3.00 0.50 2.20 2.00 AWKWARDCHARS SURVEY NAME: DEF+ SURVEY DATE: 1 24 1980 SURVEY TEAM: Dr Footleg DECLINATION: 3.00 FORMAT: DDDDUDLRLADN FROM TO LENGTH BEARING DIP LEFT UP DOWN RIGHT FLAGS COMMENTS ABC06& DEF01' 10.00 50.00 0.00 -9999.00 -9999.00 -9999.00 -9999.00 DEF01' DEF02( 12.00 55.00 4.00 0.00 1.00 0.50 2.00 DEF02( DEF03) 15.00 50.00 3.00 2.00 2.00 0.00 5.00 DEF03) DEF04* 19.00 85.00 2.00 3.00 1.40 0.00 4.00 DEF04* DEF05+ 22.00 75.00 1.00 6.00 1.10 0.00 0.00 DEF05+ DEF06, 14.00 60.00 0.00 4.00 0.50 0.00 3.00 DEF06, DEF07/ 14.00 40.00 4.00 0.00 0.60 0.20 2.00 DEF07/ DEF08/ 14.00 50.00 -5.00 3.00 0.50 2.20 2.00 AWKWARDCHARS SURVEY NAME: GHI< SURVEY DATE: 1 25 1980 SURVEY TEAM: Dr Footleg DECLINATION: 3.00 FORMAT: DDDDUDLRLADN FROM TO LENGTH BEARING DIP LEFT UP DOWN RIGHT FLAGS COMMENTS DEF07/ GHI01: 10.00 20.00 0.00 -9999.00 -9999.00 -9999.00 -9999.00 GHI01: GHI02; 12.00 28.00 4.00 0.00 1.00 0.50 2.00 GHI02; GHI03< 15.00 12.00 3.00 2.00 2.00 0.00 5.00 GHI03< GHI04= 19.00 18.00 2.00 3.00 1.40 0.00 4.00 GHI04= GHI05> 22.00 29.00 1.00 6.00 1.10 0.00 0.00 GHI05> GHI06? 14.00 11.00 0.00 4.00 0.50 0.00 3.00 GHI06? GHI07@ 16.00 8.00 0.50 0.00 0.60 0.20 2.00 GHI07@ GHI08@ 10.00 14.00 -5.00 3.00 0.50 2.20 2.00 AWKWARDCHARS SURVEY NAME: JKL- SURVEY DATE: 1 26 1980 SURVEY TEAM: Dr Footleg DECLINATION: 3.00 FORMAT: DDDDUDLRLADN FROM TO LENGTH BEARING DIP LEFT UP DOWN RIGHT FLAGS COMMENTS GHI07@ JKL01[ 10.00 320.00 0.00 -9999.00 -9999.00 -9999.00 -9999.00 JKL01[ JKL02\ 12.00 328.00 4.00 0.00 1.00 0.50 2.00 JKL02\ JKL03] 15.00 312.00 3.00 2.00 2.00 0.00 5.00 JKL03] JKL04^ 19.00 318.00 2.00 3.00 1.40 0.00 4.00 JKL04^ JKL05_ 22.00 329.00 1.00 6.00 1.10 0.00 0.00 JKL05_ JKL06` 16.00 322.00 0.50 0.00 0.60 0.20 2.00 JKL06` JKL07- 14.00 311.00 0.00 4.00 0.50 0.00 3.00 JKL07- JKL08- 10.00 314.00 -5.00 3.00 0.50 2.20 2.00 AWKWARDCHARS SURVEY NAME: MNO£ SURVEY DATE: 1 27 1980 SURVEY TEAM: Dr Footleg DECLINATION: 3.00 FORMAT: DDDDUDLRLADN FROM TO LENGTH BEARING DIP LEFT UP DOWN RIGHT FLAGS COMMENTS JKL07- MNO01{ 10.00 270.00 0.00 -9999.00 -9999.00 -9999.00 -9999.00 MNO01{ MNO02| 12.00 278.00 4.00 0.00 1.00 0.50 2.00 MNO02| MNO03} 15.00 262.00 3.00 2.00 2.00 0.00 5.00 MNO03} MNO04~ 19.00 268.00 2.00 3.00 1.40 0.00 4.00 MNO04~ MNO05¬ 22.00 279.00 1.00 6.00 1.10 0.00 0.00 MNO05¬ MNO06£ 14.00 272.00 0.50 0.00 0.60 0.20 2.00 MNO06£ MNO07ô 14.00 261.00 0.00 4.00 0.50 0.00 3.00 MNO07ô MNO08é 10.00 264.00 -5.00 3.00 0.50 2.20 2.00 CaveConverter_src/test/data/regression/Stomps_pt_ref.text0000644000000000000000000001114013030252172022763 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.Stomps2010.156 1 -1 1 1 1 1 0 2 0 30 3 0 1 0 1 1 1 0.00 0.00 0.00 0.79 8.89 3.11 0.74 1 1 1 1 1 9.08 187.39 -7.43 7.12 6.02 4.36 1.24 1 2 1 1 1 18.55 115.06 -0.10 1.82 8.64 3.64 1.64 1 3 1 1 1 3.94 107.42 5.39 1.71 5.64 3.59 1.77 1 4 1 1 1 14.13 94.84 -0.61 0.86 10.19 3.34 1.68 1 5 1 1 1 14.76 105.50 10.11 2.73 6.16 1.19 2.01 1 6 1 1 1 9.56 77.51 -2.48 0.00 11.90 1.67 1.71 1 7 1 1 1 12.97 126.63 -9.80 4.63 10.62 4.99 1.50 1 8 1 1 1 5.84 87.44 1.83 4.55 13.02 4.41 0.00 1 9 1 1 1 11.81 115.74 18.69 5.13 14.63 2.38 3.41 1 10 1 1 1 17.53 166.53 -7.51 9.10 4.01 4.40 2.04 1 11 1 1 1 16.73 146.94 -11.30 9.95 2.97 5.13 2.24 1 12 1 1 1 15.14 116.86 -5.89 1.83 7.76 6.87 0.44 1 13 1 1 1 12.56 156.16 3.43 3.81 3.04 5.52 1.62 1 14 1 1 1 20.99 140.30 1.02 3.34 6.72 7.30 1.78 1 15 1 1 1 14.28 157.77 1.84 6.61 5.60 6.70 2.15 1 16 1 1 1 10.37 161.06 2.49 11.08 3.78 7.06 1.67 1 17 1 1 1 7.85 124.71 -11.48 8.94 12.34 5.73 1.18 1 18 1 1 1 23.70 155.43 -4.37 7.65 10.37 1.16 0.00 1 19 1 1 1 13.16 100.01 26.51 7.33 15.73 1.88 0.00 1 20 1 1 1 14.46 143.40 8.27 12.73 10.63 1.48 0.84 1 21 1 1 1 11.00 138.49 13.34 11.75 11.68 0.00 8.06 1 22 1 1 1 19.39 45.15 -3.39 3.55 7.89 0.00 2.65 1 23 1 1 1 12.26 180.65 0.88 1.87 0.00 1.15 0.92 1 24 1 1 1 9.37 135.07 -31.89 1.83 1.14 3.68 0.33 1 25 1 1 1 16.12 64.36 8.82 0.00 4.07 1.48 0.60 1 26 1 1 1 20.53 206.33 -0.25 0.00 1.96 3.65 1.82 1 27 1 1 1 23.08 215.55 -11.66 1.49 15.96 8.28 0.00 1 28 1 1 1 9.44 335.64 -7.14 2.81 8.55 0.83 1.75 1 29 1 1 1 11.12 24.72 -1.45 10.36 4.83 0.00 0.00 1 30 1 1 1 7.38 57.21 18.23 0.00 0.00 0.00 0.00 2 -2 1 1 1 Series 2-root.Stomps2010.156 2 -1 1 1 1 2 0 1 24 1 3 0 2 0 1 1 1 0.00 0.00 0.00 6.00 2.38 1.65 0.81 2 1 1 1 1 7.67 7.48 10.35 0.00 0.00 0.00 0.00 3 -2 1 1 1 Series 3-root.Stomps2010.156 3 -1 1 1 1 1 27 3 14 14 3 0 3 0 1 1 1 0.00 0.00 0.00 2.81 6.13 7.69 1.64 3 1 1 1 1 26.57 217.53 -1.21 3.32 5.49 5.20 3.05 3 2 1 1 1 30.49 224.85 -3.52 8.27 5.09 9.56 1.34 3 3 1 1 1 24.02 123.82 -0.07 2.66 2.70 0.73 1.57 3 4 1 1 1 4.42 102.73 6.02 2.11 9.00 5.81 1.88 3 5 1 1 1 10.68 162.10 12.16 3.76 5.77 6.02 4.21 3 6 1 1 1 12.55 151.10 -2.14 2.70 10.23 6.28 4.20 3 7 1 1 1 26.21 112.92 -7.27 3.37 19.77 9.71 3.62 3 8 1 1 1 26.69 164.00 -1.74 8.30 14.94 10.74 2.28 3 9 1 1 1 29.35 155.72 4.26 18.01 9.64 7.73 5.34 3 10 1 1 1 25.13 121.70 -2.35 4.11 20.87 9.34 4.88 3 11 1 1 1 24.15 166.99 -8.72 8.06 13.42 12.49 1.95 3 12 1 1 1 13.32 166.43 10.48 4.68 17.79 9.98 4.91 3 13 1 1 1 28.90 187.39 16.45 8.70 9.57 3.41 3.98 3 14 1 1 1 22.48 192.12 5.14 12.46 5.44 1.65 2.50CaveConverter_src/test/data/regression/2649_Mares_fromaven_ref.svx0000644000000000000000000000431512115122656024273 0ustar rootroot*BEGIN SurveyFromDXF *EQUATE SeriesFromLines1.6 SeriesFromLines2.0 *EQUATE SeriesFromLines2.0 SeriesFromLines1.6 *EQUATE SeriesFromLines2.3 SeriesFromLines3.0 *EQUATE SeriesFromLines3.0 SeriesFromLines2.3 *EQUATE SeriesFromLines3.13 SeriesFromLines5.0 *EQUATE SeriesFromLines3.14 SeriesFromLines4.0 *EQUATE SeriesFromLines4.0 SeriesFromLines3.14 *EQUATE SeriesFromLines5.0 SeriesFromLines3.13 *EQUATE SeriesFromLines5.4 SeriesFromLines6.0 *EQUATE SeriesFromLines6.0 SeriesFromLines5.4 *EQUATE SeriesFromLines6.1 SeriesFromLines7.0 *EQUATE SeriesFromLines7.0 SeriesFromLines6.1 *EQUATE SeriesFromLines7.5 SeriesFromLines8.0 *EQUATE SeriesFromLines8.0 SeriesFromLines7.5 *BEGIN SeriesFromLines1 *FIX 0 -45.28 -18.77 6.13 0 1 1.71 142.64 -46.89 1 2 2.90 350.59 -49.12 2 3 4.23 0.00 -90.00 3 4 4.96 100.66 11.05 4 5 2.17 69.61 40.07 5 6 2.50 97.85 -35.10 6 7 6.89 219.66 -10.95 *END SeriesFromLines1 *BEGIN SeriesFromLines2 0 1 2.99 65.79 18.75 1 2 2.99 107.71 -1.72 2 3 2.58 95.89 -10.95 3 4 4.81 0.00 -90.00 *END SeriesFromLines2 *BEGIN SeriesFromLines3 0 1 4.40 45.66 -11.13 1 2 2.30 17.68 -43.07 2 3 7.35 47.76 -3.98 3 4 7.35 32.74 -4.99 4 5 4.10 22.63 14.12 5 6 5.90 70.73 -5.15 6 7 7.40 29.69 -2.94 7 8 5.64 46.73 -3.05 8 9 3.91 107.78 -3.96 9 10 4.02 82.72 1.99 10 11 3.00 35.76 -2.87 11 12 3.30 147.73 -11.00 12 13 6.57 96.74 0.00 13 14 1.81 179.68 2.85 14 15 1.90 25.75 6.95 *END SeriesFromLines3 *BEGIN SeriesFromLines4 0 1 2.50 199.59 19.84 *END SeriesFromLines4 *BEGIN SeriesFromLines5 0 1 3.00 88.85 6.51 1 2 2.91 18.25 3.54 2 3 4.11 17.73 -2.09 3 4 2.02 328.99 4.53 4 5 2.42 26.97 -37.46 *END SeriesFromLines5 *BEGIN SeriesFromLines6 0 1 1.93 61.96 -5.96 1 2 3.34 30.11 -4.29 *END SeriesFromLines6 *BEGIN SeriesFromLines7 0 1 8.16 102.89 -1.40 1 2 1.78 137.05 4.83 2 3 2.69 98.76 0.43 3 4 4.73 54.32 -3.76 4 5 1.26 67.52 -5.01 5 6 2.94 110.53 -3.70 *END SeriesFromLines7 *BEGIN SeriesFromLines8 0 1 3.96 134.18 3.91 1 2 1.44 67.21 -26.37 2 3 2.30 129.81 -17.75 *END SeriesFromLines8 *END SurveyFromDXF CaveConverter_src/test/data/regression/0122_Suviejo_ref.svx0000644000000000000000000000635412114041276022735 0ustar rootroot*BEGIN 0122_Suviejo *EQUATE 39 109 *EQUATE 48 119 0 1 19.90 42.28 -13.00 1 2 15.40 75.28 -10.00 2 3 3.50 55.28 0.00 3 4 19.30 0.00 -90.00 4 5 14.80 211.28 -27.00 5 6 39.70 217.28 -15.00 6 7 15.20 206.28 -17.00 7 8 5.20 0.00 -90.00 8 9 11.10 208.28 -6.00 4 10 18.00 43.28 20.00 10 11 9.00 13.28 -27.00 11 12 4.50 137.28 -65.00 12 13 8.00 31.28 -36.00 13 14 22.00 64.28 -45.00 14 15 19.50 40.28 25.00 15 16 16.00 28.28 -10.00 15 17 7.50 302.28 -21.00 17 18 7.00 220.28 -5.00 18 19 23.00 229.28 0.00 19 20 12.00 197.28 0.00 20 21 10.50 202.28 11.00 21 22 10.00 219.28 -18.00 22 23 8.00 213.28 0.00 23 24 8.00 192.28 0.00 24 25 13.00 219.28 0.00 25 26 12.00 211.28 0.00 26 27 8.50 220.28 0.00 27 28 14.00 228.28 0.00 28 29 5.00 212.28 -12.00 29 30 4.30 0.00 -90.00 30 31 11.00 210.28 -38.00 31 32 30.00 224.28 0.00 32 33 30.00 231.28 10.00 33 34 10.00 203.28 -25.00 34 35 8.00 203.28 -29.00 31 36 1.50 330.28 -17.00 36 37 14.20 39.28 -40.00 37 38 10.00 351.28 -7.00 38 39 11.80 35.28 3.00 39 40 30.30 29.78 0.00 40 41 5.20 255.28 3.00 41 42 12.40 340.28 0.00 42 43 4.50 306.28 0.00 40 44 8.10 22.28 -4.00 44 45 16.70 346.28 -2.00 45 46 12.30 20.28 -1.00 46 47 11.10 16.28 1.00 47 48 11.00 326.28 4.00 48 49 26.30 335.28 -47.00 49 50 2.50 64.28 -9.00 50 51 4.40 286.28 -48.00 51 52 1.90 284.28 -10.00 52 53 5.10 0.00 -90.00 53 54 11.70 124.28 -61.00 54 55 3.10 179.28 -9.00 55 56 2.50 106.28 -28.00 56 57 3.60 46.28 -35.00 49 58 5.40 39.78 0.00 58 59 7.10 20.28 5.00 59 60 2.30 248.28 -40.00 60 61 6.60 222.28 0.00 60 62 4.40 359.28 9.00 62 63 11.60 222.28 1.00 63 64 15.40 208.78 0.00 64 65 5.30 235.28 -1.00 65 66 17.00 209.78 -2.00 66 67 20.80 221.28 4.00 62 68 5.00 28.28 9.00 68 69 9.00 33.28 -20.00 37 70 25.30 220.28 0.00 70 71 13.20 204.28 6.00 71 72 8.70 217.28 -3.00 72 73 10.00 130.28 0.00 73 74 5.20 70.28 0.00 74 75 11.60 115.28 4.00 75 76 5.70 50.28 3.00 76 77 9.00 166.28 0.00 77 78 3.80 203.28 3.00 78 79 5.00 169.28 4.00 79 80 8.20 221.28 -8.00 80 81 8.60 18.28 0.00 80 82 12.80 201.78 -1.00 82 83 4.30 214.28 -37.00 83 84 4.60 220.28 0.00 84 85 3.60 141.78 -1.00 85 86 5.60 231.28 16.00 86 87 7.10 186.28 3.00 87 88 3.10 245.28 4.00 88 89 14.30 186.78 -1.00 89 90 10.00 84.28 4.00 90 91 11.70 97.28 -1.00 91 92 7.40 143.28 0.00 92 93 9.90 193.28 -7.00 93 94 8.50 194.28 -3.00 94 95 5.00 165.28 0.00 0 96 21.00 45.40 -15.00 96 97 12.10 70.40 -12.00 97 98 17.80 54.40 -45.00 98 99 30.00 210.40 -27.00 99 100 30.00 220.40 -8.00 100 101 10.90 164.40 30.00 101 102 15.60 206.40 -21.00 102 103 4.60 213.40 -7.00 103 104 2.80 0.00 -90.00 104 105 18.90 211.40 -51.00 105 106 15.20 201.40 -4.00 106 107 6.60 313.40 0.00 107 108 30.00 305.40 -3.00 108 109 20.30 41.40 -5.00 109 110 3.50 0.00 -90.00 110 111 14.90 29.40 -33.00 111 112 4.95 306.40 -5.00 112 113 19.70 30.40 0.00 113 114 22.20 26.40 0.00 114 115 12.40 39.40 -2.00 115 116 3.20 333.40 -1.00 116 117 24.85 358.40 -3.00 117 118 9.37 29.40 2.00 118 119 12.85 338.40 -7.00 *END 0122_Suviejo CaveConverter_src/test/data/regression/2366_Torno_in.svx0000644000000000000000000011461312560565176022275 0ustar rootroot*begin 2366_Torno ;declination is 2 41' (2.68) for 2004 changing by 8'E per year. ; 2.55 used for 2005 ; 2.42 used for 2006 ; 2.28 used for 2007 ; 2.15 used for 2008 *equate 2366_06_01.20 2366_06_02.0 *equate 2366_06_02.46 2366_06_03.0 *equate 2366_06_03.4 2366_06_04.48 *equate 2366_06_02.9 2366_06_05.0 *equate 2366_06_02.10 2366_06_06.16 *equate 2366_06_03.2 2366_06_07.0 *equate 2366_06_02.28 2366_06_08.8 *equate 2366_06_03.4 2366_06_09.11 *equate 2366_06_07.8 2366_06_10.K *equate 2366_06_03.14 2366_06_11.b *equate 2366_06_11.21 2366_06_12.40 *equate 2366_06_12.35 2366_06_13.1 *equate 2366_06_14.btc3.16 2366_06_11.a *equate 2366_06_13.3 2366_06_14.btc2.9 *equate 2366_06_12.35 2366_06_15.0 *equate 2366_06_15.9 2366_06_17.9 *equate 2366_06_12.33 2366_06_16.24 *equate 2366_06_15.21 2366_06_18.3 *equate 2366_06_18.6 2366_06_19.1 *equate 2366_06_19.0 2366_06_20.4 *equate 2366_07_01.0 2366_06_19.10 *equate 2366_07_01.25 2366_06_02.39 *equate 2366_07_02.4 2366_06_02.15 *equate 2366_07_02.3 2366_06_19.14 *equate 2366_07_03.0 2366_06_15.5 *equate 2366_08_01.6 2366_07_01.24 *equate 2366_08_02.61 2366_06_02.1 *equate 2366_08_04.0 2366_06_14.btc1.7 *equate 2366_08_02.2 2366_08_03.43 *equate 2366_08_05.9 2366_08_03.17 *equate 2366_08_06.0 2366_08_03.20 *equate 2366_08_07.0 2366_08_03.5 *equate 2366_08_08.0 2366_08_03.11 *equate 2366_08_08.22 2366_08_09.20 *equate 2366_08_09.19 2366_08_10.1 *equate 2366_08_04.8 2366_08_11.21 *equate 2366_08_04.20 2366_08_12.A *equate 2366_08_04.44 2366_08_13.44 ;========== Easter 2006 ========== *begin 2366_06_01 *EXPORT 20 ;surveyors: Steve M, Carmen Haskell, Pete Smith ;name: El Torno ;date 9/4/06 *CALIBRATE declination 2.42 *FIX 14 452783 4801431 0207 *entrance 14 0 1 5.6 166 -7 1 2 4.4 152 1 2 3 5.6 101 -2 3 4 4.3 91 0 4 5 3.4 50 18 5 6 4.6 96 5 6 7 4.7 74 2 7 8 3.6 8 0 6 9 4 345 -3 9 10 4.6 358 -8 10 11 7.4 234 2 11 3a 7.8 218 -3 10 12 3.1 356 11 12 13 2.3 0 23 13 14 3.5 36 15 20 21 6.2 340 1 21 22 7 355 2 22 23 7.4 25 5 23 24 8.5 342 4 24 25 7.7 21 15 25 26 9.4 351 3 26 27 3 - +V 27 6 4.1 105 21 *end 2366_06_01 *begin 2366_06_02 *EXPORT 0 1 9 10 15 28 39 46 ;surveyors: Steve M, Carmen Haskell, Pete Smith, Pete Egan, Andy pringle ;name: El Torno ;date 13/4/06 *CALIBRATE declination 2.42 0 1 3 - +V 1 2 4.5 184 -5 2 3 5.6 144 -3 3 4 2.7 163 -4 4 5 5.4 138 -9 5 6 1.8 66 -14 6 7 7.6 140 -2 7 8 1 166 -8 8 9 5.4 132 -1 9 10 5.5 55 0 10 11 8.9 101 -3 11 12 2 146 -16 12 13 9 75 8 12 14 8.3 239 -8 14 15 6.7 222 6 15 16 7.8 119 -7 16 17 15 177 -4 17 18 5.2 168 -9 18 19 6.4 230 1 19 20 5.7 183 -4 19 21 2.3 - +V 21 22 3.9 182 -3 22 23 5.4 195 -5 23 24 2.3 244 -10 24 25 1.8 253 -5 25 26 2 - -V 26 27 1.3 210 -7 27 28 2.4 - -V 28 29 6 265 -7 29 30 4.6 354 -22 30 31 3 292 32 31 32 3.5 277 20 32 33 3.5 238 -10 33 34 10.5 193 -5 34 35 5.5 251 -1 35 36 8.8 181 -8 36 37 8.1 214 -3 37 38 7.3 228 -5 38 39 9.7 227 -8 39 40 2.4 303 -3 40 41 5.9 240 -9 41 42 8.1 208 -8 42 43 4.2 235 -15 43 44 8.9 224 -8 44 45 6.4 171 -2 45 46 4 238 -7 *end 2366_06_02 *begin 2366_06_03 *EXPORT 0 2 4 14 ;surveyors: Pete Smith, Andy Pringle, Steve Martin ;name: El Torno ;date 13/4/06 *CALIBRATE declination 2.42 0 1 9.6 298 -24 1 2 6.7 201 -33 2 3 6.5 320 4 3 4 6.8 270 -15 4 5 18.6 218 -5 5 6 17.5 291 -4 6 7 8.2 310 -3 7 8 4 299 7 8 9 10.8 288 -6 9 10 6.4 261 -3 10 11 26.05 242 -2 11 12 4.3 295 -4 12 13 3.5 279 -2 13 14 16.3 259 -5 *end 2366_06_03 *begin 2366_06_04 *EXPORT 48 ;surveyors: Sam Lieberman, Pete Smith, Carmen Haskell ;name: El Torno ;date 15/4/06 *CALIBRATE declination 2.42 1 0 4.1 352 0 2 1 6.4 347 3 3 2 9.7 71 4 4 3 3.25 16 15 4 5 1.4 - -V 6 5 2.6 76 1 7 6 2.7 347 5 6 8 3.4 340 29 8 9 7 10 5 9 3 6.75 150 -5 10 7 3 345 -38 11 10 5.6 330 -6 12 7 4 8 2 13 12 2.8 80 5 14 13 4.2 132 0 15 14 5.3 130 2 16 15 16.25 142 4 17 16 3.4 163 5 18 17 1.05 50 0 19 18 2.95 354 2 20 19 2.7 34 -3 21 20 2.5 158 -3 22 21 3 40 -2 22 23 3.45 173 6 23 24 7.9 143 3 25 24 3.7 342 -2 26 22 4.3 149 -6 27 26 2.0 170 9 28 27 2.7 67 7 29 28 6.3 136 1 30 29 10.5 10 -1 30 31 32 150 2 32 30 8.5 153 6 33 32 5.2 168 1 34 33 17.1 144 4 35 34 7.5 110 10 36 35 16.85 47 0 37 36 3.55 99 -10 38 37 12.1 52 11 39 38 6.1 46 1 40 39 11 83 -2 41 40 8.9 59 4 42 41 5.3 100 4 43 42 4.6 0 0 44 43 8.4 59 3 45 44 10.5 50 2 46 45 5 23 -5 47 46 3.4 44 10 48 47 4.7 12 -8 *end 2366_06_04 *begin 2366_06_05 *EXPORT 0 ;surveyors: Ali Neill, Pete Egan ;name: El Torno Tigger Series ;date 15/4/06 *CALIBRATE declination 2.42 0 1 2.3 200 -6; .5 .5 .5 .5 1 2 2.7 156 10; .5 .5 .5 .5 2 3 5.3 135 -25; 2 3 1.5 .5 3 4 4.2 224 10; 1 0 1.5 .5 4 5 2.8 187 10; 0 .5 .5 1 5 6 5.1 235 -2; 0 1 .3 1 6 7 3.2 231 -9; 1 0 .3 .3 7 8 3 172 -12 8 9 1.6 141 -4; .5 .5 .2 .2 9 10 1.6 180 8; .5 .5 .2 .2 10 11 1.5 244 -10; .5 .5 .2 .2 11 12 4.3 203 -5; 0 1 .3 .5 12 13 4.1 299 0; 0 1 .3 .5; 299 altered from 399 7 14 4.2 311 -2; .8 .8 .8 1 14 15 7.2 318 5; .4 .4 .4 .4 *data passage station left right up down 0 0.5 0.5 0.5 0.5 1 0.5 0.5 0.5 0.5 2 2 3 1.5 0.5 3 1 0 1.5 0.5 4 0 0.5 0.5 1 5 0 1 0.3 1 6 1 0 0.3 0.3 *data passage station left right up down 8 0.5 0.5 0.2 0.2 9 0.5 0.5 0.2 0.2 10 0.5 0.5 0.2 0.2 11 0 1 0.3 0.5 12 0 1 0.3 .5 7 0.8 0.8 0.8 1 14 0.4 0.4 0.4 0.4 *end 2366_06_05 *begin 2366_06_06 *EXPORT 16 ;surveyors: Ali Neill, Pete Egan, Paul Dold ;name: El Torno ;date 15/4/06 *CALIBRATE declination 2.42 16 17 3.2 347 24; 0 1.5 1.5 1.5 17 18 3.3 58 13; 0 1.5 1 1.5 18 19 3.2 73 5; 1.5 0 1.5 1.5 19 20 4.4 93 8; 1.5 0 .5 1.5 *data passage station left right up down 16 0 1.5 1.5 1.5 17 0 1.5 1 1.5 18 1.5 0 1.5 1.5 19 1.5 0 0.5 1.5 *end 2366_06_06 *begin 2366_06_07 *EXPORT 0 8 ;surveyors: Ali Neill, Pete Egan, Paul Dold ;name: El Torno: Axe Wars Inlet ;date 15/4/06 *CALIBRATE declination 2.42 0 1 6.6 122 8; 3 2 1.5 1.5 1 2 4.7 137 1; 1 1 .5 1 2 3 6.4 146 11; 4 3 1 .5 3 4 7.2 80 13; 2 2 .5 2 4 5 5.6 106 13; 4 2 4 .5 5 6 14.6 80 10; 4 2 4 4 6 7 2.6 177 50; 5 0 3 2 7 8 4.1 47 38; 2 5 6 1 *data passage station left right up down 0 3 2 1.5 1.5 1 1 1 0.5 1 2 4 3 1 0.5 3 2 2 0.5 2 4 4 2 4 0.5 5 4 2 4 4 6 5 0 3 2 7 2 5 6 1 *end 2366_06_07 *begin 2366_06_08 *EXPORT 8 ;surveyors: Pete Egan, Paul Dold ;name: El Torno: ;date 15/4/06 *CALIBRATE declination 2.42 1 0 8.6 229 -6 2 1 4.5 226 0 3 2 3.7 285 -13 4 3 3.5 303 -9 5 4 4.1 261 -17 4 6 2.8 315 -22 6 7 4.4 - -V 7 8 1.3 260 0 *end 2366_06_08 *begin 2366_06_09 *EXPORT 11 ;surveyors: Bill Sherrington, Paul Dold, Andy Pringle ;name: El Torno: Where Are the Numbers? ;date 15/4/06 *CALIBRATE declination 2.42 11 10 15.5 218 -5 *CALIBRATE tape +1 1 0 4.6 251 1 1 2 8.8 250 -6 2 3 7.7 340 -5 3 4 6.9 310 -5 4 5 9.7 265 -15 5 6 7.1 270 -15 6 7 7.3 240 -5 7 8 17.9 310 -3 8 9 8.8 334 -20 9 10 4.4 330 -40 *end 2366_06_09 *begin 2366_06_10 *EXPORT K ;surveyors: Sam Lieberman, Pete Smith, Carmen Haskell ;name: El Torno: Axe continued ;date 15/4/06 *CALIBRATE declination 2.42 K 1 16.3 54 31 B A 5.92 285 25 B C 1.3 158 0 C D 8.5 241 20 E C 13.2 238 -18 F E 3.3 319 -3 G F 11.1 252 -9 H G 4.7 227 -17 H I 1.8 - -V I J 5.5 122 -30 K J 2.4 24 22 *end 2366_06_10 *begin 2366_06_11 *EXPORT a b 21 ;surveyors: Dave Bell, Paul Dold, Bill Sherrington ;name: Broken Tour Guide ;date 15/4/06 *CALIBRATE declination 2.42 *CALIBRATE tape -.9 2 1 9.9 0 -18 2 3 7.6 263 3 4 3 6.9 42 1 4 5 6.9 199 -31 5 6 8.9 266 -31 5 7 15.8 94 35 8 7 13.3 77 21 8 9 14.1 152 28 10 9 15.3 311 -2 10 11 12.8 43 3 12 11 6.7 298 -18; stn12 cairn 12 13 13.3 149 5 13 14 4.1 102 -5 14 15 6.3 340 -1 15 16 7.7 338 -1 16 17 3.2 342 -2 17 18 3.2 311 5 18 19 6.2 37 6 19 20 4 2 3 20 21 4.7 36 4; stn 21 inlet goes for 300m with questions; cairn 12 a 7 0 -5 a b 6 79 0 ;12-a-b is grade 2 *end 2366_06_11 *begin 2366_06_12 *EXPORT 33 35 40 ;surveyors: Jim Davis, Paul Dold, Paul Windle, Andy Pringle, Bill Sherrington, An Vandeplank, Torben Redder, Kristine Korsgaard ;name: Rampant Rabbit ;date 18/4/06 ; Lengths from Disto *CALIBRATE declination 2.42 ; STATIONS IN CAVE PREFIXED WITH JD 0 1 9.68 25.5 -5.5; .5 .5 3 0 1 2 8.47 331 -1; 2 .5 0 4 2 3 9.14 9 2; 0 2 3 2 3 4 8.2 108 5; .2 .6 .2 .6 3 5 12.68 47 0; 2 1 0 4 5 6 12.59 44 -7; 2 2 1.5 1 6 7 2.63 19 39; 1 2 1.5 0 7 8 7.46 9 -18; 3 2 1.5 3 8 9 13.24 92 5.5; .3 1 1.5 1 9 10 9.67 197 2; 0 .8 1 1 10 11 9.47 70 1; .2 .3 2 3 11 12 11.39 115 3; .4 .2 1 3 12 13 7.32 87 4; .1 .4 1.5 1.5 13 14 16.11 58 2; .2 .2 2 1 14 15 4.4 9 0; .2 1 1 3 15 16 5.85 313 4; .2 .2 2 2 16 17 12.81 44 2; .2 .4 1.5 1.5 17 18 9.04 16 3; .2 .2 .2 1 18 19 19.55 58 2; .5 .5 1 1 19 20 3.65 76 -1; 1 2 3 1.5 20 21 4.9 31 6; 1 .3 .8 .8 21 22 4.31 88 3; 1 1 1 1 22 24 6.67 47 6; 1 1 1 1 24 25 6.41 61 1; .6 .6 1 0 25 26 7.29 25 3; 1.5 .5 1 0 8 27 3.66 352 -14; .6 1 1 0 27 28 10.98 27 1; 2 2 1 0 28 29 2.41 310 1; 1 2 1 3 29 30 15.55 291 5; 1 6 3 3 30 31 46.75 308.5 -3.5; 4 5 1 1 31 32 12.55 343 -8; 5 5 3 1 32 33 22.75 296 4; 2 11 1 5 33 34 6.30 354 -13; 8 12 1 3 34 35 26.56 342 -2; 3 3 3 2 33 36 5.28 107 -23; 6 8 1 0 36 37 10.97 315 -47; 9 1 1 1 37 38 4.6 6 -19; 1.5 .3 1.5 .5 38 39 10.68 331 1 39 40 1.78 294 -13; last survey station 21 from batch 11 *data passage station left right up down 3 0 2 3 2 4 0.2 0.6 0.2 0.6 *data passage station left right up down 0 0.5 0.5 3 0 ;Data copied from 1 1 0.5 0.5 3 0 2 2 0.5 0 4 3 2 1 0 4 5 2 2 1.5 1 6 1 2 1.5 0 7 3 2 1.5 3 8 0.3 1 1.5 1 9 0 0.8 1 1 10 0.2 0.3 2 3 11 0.4 0.2 1 3 12 0.1 0.4 1.5 1.5 13 0.2 0.2 2 1 14 0.2 1 1 3 15 0.2 0.2 2 2 16 0.2 0.4 1.5 1.5 17 0.2 0.2 0.2 1 18 0.5 0.5 1 1 19 1 2 3 1.5 20 1 0.3 0.8 0.8 21 1 1 1 1 22 1 1 1 1 24 0.6 0.6 1 0 25 1.5 0.5 1 0 26 1.5 0.5 1 0 ;Data copied from 25 *data passage station left right up down 8 0.6 1 1 0 27 2 2 1 0 28 1 2 1 3 29 1 6 3 3 30 4 5 1 1 31 5 5 3 1 32 2 11 1 5 33 8 12 1 3 34 3 3 3 2 35 3 3 3 2 ;Data copied from 35 *data passage station left right up down 33 6 8 1 0 36 9 1 1 1 37 1.5 0.3 1.5 0.5 *end 2366_06_12 *begin 2366_06_13 *EXPORT 1 3 ;surveyors: Paul Dold, Paul Windle ;name: ;date 18/4/06 *CALIBRATE declination 2.42 *CALIBRATE tape +1 1 2 5.5 0 10 2 3 5.6 75 3 3 4 10.9 115 0; .5 .5 4 1 4 5 15.6 130 1; .5 .5 5 1 5 6 6.2 175 1; .5 .5 4 1 6 7 10.9 122 1; .5 .5 4 1 7 8 7.4 160 0; .5 .5 4 1 8 9 12.2 128 3; .5 .5 4 1 9 10 6.3 98 0; 0 1.5 3 1 10 11 24.9 124 2; .5 .5 12 1; 12m aven 11 12 12.4 112 2; 2.5 0 2 1 *data passage station left right up down 3 0.5 0.5 4 1 4 0.5 0.5 5 1 5 0.5 0.5 4 1 6 0.5 0.5 4 1 7 0.5 0.5 4 1 8 0.5 0.5 4 1 9 0 1.5 3 1 10 0.5 0.5 12 1 11 2.5 0 2 1 12 2.5 0 2 1 ;copied from stn 11 *end 2366_06_13 ;========== Summer 2006 ========== *begin 2366_06_14 *EXPORT btc1.7 btc2.9 btc3.16 ;surveyors: Patrick Warren, Carmen Haskell ;name: ;date 29/7/06 *CALIBRATE declination 2.42 ;*CALIBRATE tape +1 ; Torno - beyond Torno Chamber - 29 July 2006 ; Carmen (instruments) + Patrick (sketch), Instruments = Carmen's duo + tape *data normal from to tape compass clino ; 'downstream' main canyon, starting from boulder choke ; LRUD estimated, in direction of increasing station count ; 1 = not measured (station in crawl under boulders) ; 2 = 0.0 1.0 0.5 0.3 (start of crawl under boulders) ; 3 = 2.0 0.0 0.2 0.5 ; 4 = 1.0 2.0 5.0 1.5 ; 5 = 1.0 2.0 4.0 2.0 (unexplored small pass to L behind long boulder) ; 6 = 0.0 2.5 4.0 0.0 (unsure about down) ; 7 = 2.0 3.0 4.0 0.5 (down not include floor trench, station marked) ; 8 = 1.0 4.0 3.0 0.5 (top of a bouldery pile) ; 9 = not measured (complex junction area, station marked) *begin btc1 *EXPORT 7 9 2 1 6.00 232 -5 ; reading taken by PBW 2 3 18.25 097 0 3 4 6.80 060 +5 4 5 23.10 123 +1 5 6 29.90 130 -3 6 7 17.55 122 0 7 8 11.55 107 +11 8 9 16.95 125 -9 *data passage station left right up down 1 0.0 1.0 0.5 0.3 ;(in crawl under boulders) 2 0.0 1.0 0.5 0.3 ;(start of crawl under boulders) 3 2.0 0.0 0.2 0.5 4 1.0 2.0 5.0 1.5 5 1.0 2.0 4.0 2.0 ;(unexplored small pass to L behind long boulder) 6 0.0 2.5 4.0 0.0 ;(unsure about down) 7 2.0 3.0 4.0 0.5 ;(down not include floor trench, station marked) 8 1.0 4.0 3.0 0.5 ;(top of a bouldery pile) *end btc1 ; 'upstream' lesser canyon, starting from easter 06 survey point ; LRUD estimated, in direction of increasing station count ; 1 = not measured (previously marked 18-4-06 PW+PD 10-11) ; 2 = 1.0 0.0 2.0 2.0 ; 3 = 0.0 0.5 2.0 2.0 ; 4 = 0.5 0.0 3.0 2.0 (high level pass enters on L at +3m, unexplored, prob an oxbow) ; 5 = 0.7 0.0 3.0 2.0 ; 6 = 0.0 0.7 3.0 2.0 ; 7 = 0.7 0.0 3.0 2.0 ; 8 = 0.7 0.0 3.0 2.0 ; 9 = 0.7 0.0 1.0 2.0 ; 10 = 2.0 2.0 0.0 3.0 (on top of a large pointed boulder) ; 11 = not measured (same as station 9 in 'btc1') *begin btc2 *EXPORT 9 11 *FLAGS DUPLICATE ;1 2 25.20 301 -3 ;2 3 6.00 281 -4 ;3 4 9.55 310 -3 ;4 5 4.80 343 -4 ;5 6 10.45 308 -6 ;6 7 5.10 355 -3 ;7 8 18.75 312 -4 ;8 9 6.70 292 -6 9 10 4.25 239 +7 10 11 9.55 234 -19 11 12 16.95 305 +9 ;Reverse of leg from btc1 to put LRUD data onto *FLAGS NOT DUPLICATE *data passage station left right up down ;2 1.0 0.0 2.0 2.0 ;3 0.0 0.5 2.0 2.0 ;4 0.5 0.0 3.0 2.0 ;(high level pass enters on L at +3m, unexplored, prob an oxbow) ;5 0.7 0.0 3.0 2.0 ;6 0.0 0.7 3.0 2.0 ;7 0.7 0.0 3.0 2.0 ;8 0.7 0.0 3.0 2.0 9 0.7 0.0 1.0 2.0 10 2.0 2.0 0.0 3.0 ;(on top of a large pointed boulder) 11 4.0 1.0 3.0 0.5 ;data copied from btc1.8 12 4.0 1.0 3.0 0.5 ;same as btc1.8 *end btc2 ; connecting passage back to Torno chamber, starting from station 7 in 'btc1' ; LRUD estimated, in direction of increasing station count ; 1 = not measured (same as station 7 in traverse 'btc1') ; 2 = not measured (point above floor trench) ; 3 = 0.0 0.5 0.0 1.5 (down in floor trench) ; 4 = not measured (back wall of 2.5m diam chamber) ; 5 = 0.0 0.5 1.0 2.0 ; 6 = 0.5 0.0 0.5 2.0 ; 7 = 0.5 0.0 2.0 2.0 (top of a 3m climb) ; 8 = not measured (bottom of 3m climb in 3m diam chamber) ; 9 = not measured (side of 3m diam chamber) ; 10 = 0.3 1.0 3.0 0.0 ; 11 = 0.7 0.0 3.0 0.0 (top of a 2.5m climb) ; 12 = not measured (bottom of 2.5m climb) ; 13 = 0.3 0.3 0.0 0.5 (start of crawly bit) ; 14 = not measured (end of crawl and top of 6m climb out of Torno chamber) ; 15 = not measured (top of a debris pile in Torno chamber) ; 16 = not measured (small cairn at point of entry into Torno chamber, assumed to be known) *begin btc3 *EXPORT 1 16 1 2 2.90 276 +12 2 3 4.50 - DOWN 3 4 5.15 338 -13 4 5 4.30 196 -9 5 6 7.20 123 -6 6 7 5.95 127 -11 7 8 2.70 - DOWN 8 9 3.30 070 -1 9 10 6.05 173 +3 10 11 5.95 212 -5 11 12 1.40 - DOWN 12 13 3.35 196 -36 13 14 4.30 192 -10 14 15 14.05 135 +11 ; across Torno chamber 15 16 12.15 116 -10 ; across Torno chamber *data passage station left right up down 5 0.0 0.5 1.0 2.0 6 0.5 0.0 0.5 2.0 7 0.5 0.0 2.0 2.0 ;(top of a 3m climb) *data passage station left right up down 10 0.3 1.0 3.0 0.0 11 0.7 0.0 3.0 0.0 ;(top of a 2.5m climb) *end btc3 ; linkages *equate btc1.9 btc2.11 *equate btc1.7 btc3.1 *end 2366_06_14 *begin 2366_06_15 *EXPORT 0 5 9 21 ;surveyors: Ali Neill, Andy Pringle, Pete Eagan ;name: ;date 29/7/06 *CALIBRATE declination 2.42 0 1 5.4 345 0; 3 1 2 0 1 2 1.8 317 30; 1 1 1 1 2 3 7 10 6; 1 1 1 1 3 4 5.7 22 -1; 1 1 .5 1 4 5 3.9 332 7; 2 3 6 2 ;junction marked stn 5 5 6 10.5 21 17; 2 5 3 4 6 7 10.1 116 -9; 2 4 6 1 7 8 4.7 55 24; 2 3 8 2 8 9 13.2 33 1; 0 3 6 2 9 10 8.5 92 4; 2 1 5 .5 10 11 5.8 115 8; 2 1 3 2 11 12 3.4 71 11; 3 0 2 5 12 13 11.4 29 2; 1 1 0 6 13 14 6.2 322 5; 1 1 2 5 14 15 5.4 292 18; 0 2 2 4 15 16 5.2 290 -12; 1 1 1 1 ;stal choke 15 17 3.5 24 23; 0 1 1 .5 17 18 5.6 129 4; .3 .3 1.5 1 18 19 3.8 130 5; .3 .3 1.5 1.5 19 20 2.8 38 6; .6 .6 1 1 20 21 4.2 120 15; .3 4 21 22 5.9 133 25; 4 1 2 5 19 23 6.6 134 -2; 0 1 1.5 1.5 23 24 2.6 224 3; 0 1 2 2 24 25 3.6 298 -3; overlooks station 13 *data passage station left right up down 0 3 1 2 0 1 1 1 1 1 2 1 1 1 1 3 1 1 0.5 1 4 2 3 6 2 ;junction marked stn 5 5 2 5 3 4 6 2 4 6 1 7 2 3 8 2 8 0 3 6 2 9 2 1 5 0.5 10 2 1 3 2 11 3 0 2 5 12 1 1 0 6 13 1 1 2 5 14 0 2 2 4 15 1 1 1 1 ;stal choke *data passage station left right up down 15 0 1 1 0.5 17 0 1 1 0.5 18 0.3 0.3 1.5 1 19 0.3 0.3 1.5 1.5 20 0.6 0.6 1 1 21 4 0.3 3 .4 22 4 1 2 5 *data passage station left right up down 19 0 1 1.5 1.5 23 0 1 2 2 *end 2366_06_15 *begin 2366_06_16 *EXPORT 24 ;date 29/7/06 *CALIBRATE declination 2.42 ; 1/8/06 PBW+CH High Level Inlet in RR Torno ; PBW recording, CH instruments = CH tandem + tape 1 2 7.40 210 +36 2 3 6.10 110 -2 3 4 11.40 243 -2 4 5 4.75 205 -6 5 6 5.70 110 -1 6 7 2.55 164 -4 7 8 3.85 089 +1 8 9 7.40 118 +6 9 10 3.70 157 +16 10 11 7.75 184 +12 12 13 5.50 222 -31 13 14 6.00 228 -46 14 15 6.30 223 -11 15 16 5.10 247 -27 9 16 2.60 315 -5 8 17 10.35 208 -1 17 18 3.70 - down 18 19 2.70 - down 19 20 7.00 032 -8 20 21 3.60 355 -8 21 22 6.50 056 -4 22 23 3.60 104 -5 23 24 3.70 062 -45 *end 2366_06_16 *begin 2366_06_17 *EXPORT 9 *CALIBRATE declination 2.42 ; 1/8/06 PBW+CH High Level Inlet in RR Torno ; PBW recording, CH instruments = CH tandem + tape 1 2 5.80 297 -8 2 3 2.10 250 -13 3 4 10.65 304 -6 4 5 9.60 313 -5 5 6 2.80 279 -5 6 7 9.50 290 -8 9 8 5.75 202 -1 7 8 1.35 - down *end 2366_06_17 *begin 2366_06_18 *EXPORT 3 6 *CALIBRATE declination 2.42 ; 3/8/06 PBW + Footleg + Caroline, Granny's slippers and beyond, Torno ; patrick = recording, footleg = instruments, caroline = tape ; instruments = CH tandem + expo tape measuring from 20cm *calibrate tape +0.20 1 2 11.20 136 -16 3 2 5.75 026 +1 ; the following leg duplicates one of Ali's the previous day so should not be counted in the length *FLAGS DUPLICATE 4 3 6.40 311 -28 *FLAGS NOT DUPLICATE 4 5 17.15 132 -3 5 6 4.97 031 +2 6 7 8.98 109 -2 ; station 6 is the cairn in the chamber below the climb up 7 8 12.10 119 0 8 9 7.24 136 +2 9 10 7.35 023 -4 10 11 10.80 117 +3 11 12 12.60 138 -2 13 14 6.07 038 -9 14 15 5.29 081 +3 15 16 4.80 023 -5 7 16 1.70 - down ;Estimated LRUD data from memory and photos of passage (Footleg) *data passage station left right up down 1 0 5 2 1 2 0 5.5 4 1 3 4 0.3 3 .4 4 4 1 2 5 ;Down to bottom of pit 5 6 .5 3 1.7 6 2 5 3 2 ; data from 2366_06_19.1 *end 2366_06_18 *begin 2366_06_19 *EXPORT 0 1 10 14 *CALIBRATE declination 2.42 ; 3/8/06 Ali + Pete + Andy, Posture of Progression, Torno ; Ali = recording, pete = instruments, andy = tape 0 1 12.30 232 -31 ; 2 5 3 2 ; station 1 is cairn 0 2 6.80 103 -4 ; 4 3 4 2 2 3 11.30 058 +10 ; 5 0 0 4 3 4 9.40 031 -3 ; 4 6 2 2 4 5 20.40 125 -1 ; 4 5 1.5 2 5 6 9.90 127 -5 ; 4 4 3 2 ; junction, marked 6 6 7 13.70 134 +1 ; 5 4 1.5 3 7 8 12.20 105 -2 ; 2 5 1.5 3 8 9 5.10 124 +5 ; 2 2 5 2 ; marked 9 9 10 6.20 045 -30 ; 3 2 6 2 10 11 21.10 042 0 ; 5 4 5 1.5 ; marked 11 11 12 10.60 043 +8 ; 0.5 3 4 2 12 13 8.30 016 +2 ; 1.5 1.5 4 2 13 14 8.20 008 -5 ; 2 4 0.5 1 ; skull near 14 14 15 4.80 110 -6 16 9 2.20 346 +33 17 16 2.80 348 +15 ; 0.5 0.5 2 2 18 17 6.40 309 +40 ; 0 2 5 0.5 19 18 5.60 051 +25 ; 0.5 0.5 1 1 19a 18 2.20 284 +15 20 9 4.10 093 +20 21 20 7.40 023 -19 ; 5 4 2 2 22 21 11.20 313 0 ; 3 3 0.5 0.5 23 21 5.70 061 -12 ; 4 1 1 1 24 23 8.70 331 +3 ; 1 4 2 2 25 24 4.50 072 +11 ; 2 3 3 2 ; station 25 marked with a triangle 26 25 5.70 086 -2 ; 4 2 3 3 ; station 26 marked with a triangle 27 26 5.30 055 -27 ; 2 1 1 1 28 25 7.00 011 +7 ; obvious spike in T-junction 29 10 6.50 294 +15 ; continues as grade 1 survey by Pete ; hysteria passage 30 6 6.90 058 -26 ; 2 1.5 1.5 0 30 31 6.20 286 +1 ; 2 0.5 0.5 0.5 31 32 4.00 216 0 32 33 5.40 276 -3 ; 1.5 1.5 0.5 0.5 ; corrected 076 to 276 to fudge 33 34 4.80 233 -6 ; 1 1 0.2 0.3 34 35 10.20 282 -1 ; 1.5 1.5 0.2 0.3 35 36 6.90 223 -5 ; 0 2 0.2 0.2 37 36 8.00 097 +3 ; ; The next two legs are recorded in patrick's notes, since he was in the cairn chamber. 37 38 13.80 316 -40 ; head height above cairn 38 39 1.80 - down ; leg to drop down to floor level where the cairn is *equate 39 1 ; close the loop, stations 1 and 39 are both the cairn in the chamber before the climb up ;Ali on 5th August; legs after the skull 14 1a 5.1 121 -5; 3 3 .5 .5 1a 2a 8.8 8 21; .5 .5 2 4 1a 3a 5.5 123 -19; 1.5 1.5 .5 1.5 *data passage station left right up down 1 2 5 3 2 ; station 1 is cairn 0 2 2 3 3 ;Estimated LRUD at top of climb/pitch 2 4 3 4 2 3 5 0 0 4 4 4 6 2 2 5 4 5 1.5 2 6 4 4 3 2 ; junction, marked 6 7 5 4 1.5 3 8 2 5 1.5 3 9 2 2 5 2 ; marked 9 10 3 2 6 2 11 5 4 5 1.5 ; marked 11 12 0.5 3 4 2 13 1.5 1.5 4 2 14 2 4 0.5 1 ; skull near 14 *data passage station left right up down 16 0.5 0.5 2 2 17 0 2 5 0.5 18 0.5 0.5 1 1 *data passage station left right up down 20 5 4 1.5 1 ;Data estimated from 8 + 21 21 5 4 2 2 22 3 3 0.5 0.5 *data passage station left right up down 21 5 4 2 2 23 4 1 1 1 24 1 4 2 2 25 2 3 3 2 ; station 25 marked with a triangle 26 4 2 3 3 ; station 26 marked with a triangle 27 2 1 1 1 *data passage station left right up down 30 2 1.5 1.5 0 31 2 0.5 0.5 0.5 32 1.5 1.5 0.5 0.5 ; 33 1 1 0.2 0.3 34 1.5 1.5 0.2 0.3 35 0 2 0.2 0.2 *end 2366_06_19 *begin 2366_06_20 *EXPORT 4 *CALIBRATE declination 2.42 ; 3/8/06 PBW + Footleg + Caroline, Granny's slippers, Torno ; PBW = recording, footleg = instruments, caroline = tape ; instruments = CH tandem, expo tape measuring from 20cm *calibrate tape +0.20 ; short passage that goes to view back down into the pit. 1 2 9.25 069 +6 2 3 6.56 104 -4 3 4 7.41 107 -27 *end 2366_06_20 ;========== Easter 2007 ========== *begin 2366_07_01 *EXPORT 0 24 25 *CALIBRATE declination 2.28 ;declination is 2 41' (2.68) for 2004 changing by 8'E per year. ; 2.55 used for 2005 ; 2.42 used for 2006 ; 2.28 used for 2007 ; 2.15 used for 2008 ;Paul Stacey and Pete Eagan ;date 070403 ;0 is "Ali 10" 06_19.10 1 0 4 310 15; 1 .1 1 .8 2 1 2.8 290 5; 0 .5 .5 1 3 2 2.2 48 4; .5 0 .5 .5 4 3 2 4 3; .5 0 .4 .5 5 4 9.2 310 22; 1.5 1.5 15 .6 6 5 3.3 330 10; 0 .6 15 1.5 7 6 2.6 299 10; .5 .2 5 1.1 8 7 4.6 247 -7; 1.5 1.2 4 0 9 8 3.3 217 -9; 1.2 0 3 .5 10 9 3.5 228 6; .2 .3 2 .1 11 10 1.8 325 18; .2 .2 .2 .5 12 11 1.7 339 21; .3 .3 1.5 2 13 12 5.2 230 -16; 0 .5 .1 .2 14 13 2.7 196 3; .2 .6 .2 1 15 14 1.7 236 -2; 1 1 .2 .1 16 15 4.2 182 0; 0 .6 .3 1.2 17 16 2.7 226 -8; .3 .3 .5 1.5 18 5 4.55 125 22; 1 0 1 1.5 19 18 4.2 101 27; .6 0 .5 1.5 20 19 4.7 29 20; 21 20 2.1 0 2; .5 .2 1.0 .8 22 21 4.3 100 3; 1.5 1.0 1.5 1.5 23 22 1.3 353 5; 0 1 .5 1 24 23 9.66 117 1; 25 24 6.2 49 4; *data passage station left right up down 0 1 0.1 1 0.8 1 0 0.5 0.5 1 2 0.5 0 0.5 0.5 3 0.5 0 0.4 0.5 4 1.5 1.5 15 0.6 5 0 0.6 15 1.5 6 0.5 0.2 5 1.1 7 1.5 1.2 4 0 8 1.2 0 3 0.5 9 0.2 0.3 2 0.1 10 0.2 0.2 0.2 0.5 11 0.3 0.3 1.5 2 12 0 0.5 0.1 0.2 13 0.2 0.6 0.2 1 14 1 1 0.2 0.1 15 0 0.6 0.3 1.2 16 0.3 0.3 0.5 1.5 *data passage station left right up down 18 1 0 1 1.5 19 0.6 0 0.5 1.5 20 0.5 0.2 1 0.8 21 1.5 1 1.5 1.5 22 0 1 0.5 1 *end 2366_07_01 *begin 2366_07_02 *EXPORT 3 4 *CALIBRATE declination 2.28 ;molephone / GPS ;*FIX 0 452809 4801334 211; Above Tigger start; boulder in main passage ;*FIX 1 452796 4801315 215; almost above the skull ;0 4 16 - -V;stn 4 is on rock near to start of Tigger Series ;1 2 12 - -V; stn2 is molephone aerial ;3 2 2 108 0; stn3 is stn 14 on corner ;to make the vertical true when the loops are solved, the cave stations are fixed rather than the surface stations ;this method seems to provide true verticals to the surface *FIX 4 452809 4801334 195; Tigger start; boulder in main passage *FIX 2 452796 4801315 203; near the skull 0 4 16 - -V;stn 4 is on rock near to start of Tigger Series 1 2 12 - -V; stn2 is molephone aerial 3 2 2 108 0; stn3 is stn 14 on corner *end 2366_07_02 *begin 2366_07_03 *EXPORT 0 *CALIBRATE declination 2.28 ;from near Granny's Slippers ;Dan Hibberts Jim Lister Bob Toogood Dave Gledhill Martin Barnicott *FLAGS duplicate 0 1 6.3 21 2; .6 1 3.2 1.6 1 2 7.3 72 11; 1.2 1.1 3.8 .5 2 3 6.2 112 4; 1.9 0 3.6 .6 *FLAGS not duplicate 3 4 6.5 3.2 51; 1 .9 4.8 2.8 4 5 3.6 0 82; .5 .5 .5 .5 5 6 1.8 274 53; .5 .5 1 0 6 7 1.3 145 62; .2 .3 3 .2 7 8 6.5 198 2; 0 .4 2 .4 8 9 20.5 209 3; 2.5 0 2.5 0.5 9 10 4.8 287 -3; 5.2 4.8 2 1.4 10 11 5.4 126 52; 3.5 1 2.5 4.4 11 12 2.8 315 49; 1.5 2 .5 1 12 13 2.2 287 1; 0.5 .5 .1 .5 13 14 7.6 204 1; .5 0 0.3 1 14 15 3.5 207 -3; .5 .5 .9 .2 15 16 3 238 11; .5 .5 1 .5 16 17 6.2 204 0; 1 1.5 1 .6 17 18 3 272 24; 1.5 1.5 1.5 0 18 19 6.7 240 -7; .5 .5 .5 0 8 1A 3.9 - +V; .5 .5 1 1A 2A 11 22 9; .5 .5 1.5 1.5 2A 3A 2.3 31 6; .5 .8 1.5 1 3A 4A 4.2 75 9; .5 .5 .5 1.5 4A 5A 9 65 4; .5 .5 .5 .3 5A 6A 4.4 345 3; .5 .3 .3 .4 6A 7A 3.2 63 1; .5 .2 .4 .3 7A 8A 3.4 340 2; .3 .3 .2 .3 *data passage station left right up down 0 0.6 1 3.2 1.6 1 1.2 1.1 3.8 0.5 2 1.9 0 3.6 0.6 3 1 0.9 4.8 2.8 4 0.5 0.5 0.5 0.5 5 0.5 0.5 1 0 6 0.2 0.3 3 0.2 7 0 0.4 2 0.4 8 2.5 0 2.5 0.5 9 5.2 4.8 2 1.4 10 3.5 1 2.5 4.4 11 1.5 2 0.5 1 12 0.5 0.5 0.1 0.5 13 0.5 0 0.3 1 14 0.5 0.5 0.9 0.2 15 0.5 0.5 1 0.5 16 1 1.5 1 0.6 17 1.5 1.5 1.5 0 18 0.5 0.5 0.5 0 *data passage station left right up down 1A 0.5 0.5 1 - 2A 0.5 0.5 1.5 1.5 3A 0.5 0.8 1.5 1 4A 0.5 0.5 0.5 1.5 5A 0.5 0.5 0.5 0.3 6A 0.5 0.3 0.3 0.4 7A 0.5 0.2 0.4 0.3 8A 0.3 0.3 0.2 0.3 *END 2366_07_03 ;========== Easter 2008 ========== *begin 2366_08_01 *EXPORT 6 *CALIBRATE declination 2.15 ;passage opposite Andy's BP ;Bob Toogood Dave Gledhill Martin Barnicott ;surveyed from end back to arrow on way into ABP 1 0 4.74 325 6 1 2 16.95 135 2 2 3 1.18 210 0 3 4 5.11 114 0 4 5 4.8 150 5 *FLAGS duplicate 5 6 2.43 138 22 *FLAGS NOT duplicate *data passage station left right up down ;stn left right up down 0 0 0 0 0 1 .52 .67 .1 .35 2 .52 .67 .1 .35 3 0 .74 .32 .56 4 .97 0 .35 .56 5 0 .39 .34 .41 6 .58 0 .7 .1 *END 2366_08_01 *begin 2366_08_02 *EXPORT 2 61 *calibrate declination 2.15 ;surveyors Carmen Smith Sarah Payne Tom Chapman 1 0 2.020 199 -7 1 2 2.038 125 -22 2 3 2.654 050 -3 3 4 2.950 041 +26 3 5 6.854 142 3 5 6 8.077 152 -4 6 7 5.119 144 -5 7 8 2.778 171 -4 8 9 1.403 229 -4 9 10 3.183 301 1 10 11 4.145 196 -6 12 7 1.120 175 4 12 13 4.693 097 0 13 14 4.157 352 12 14 15 3.253 033 0 15 16 0.803 095 4 16 17 3.437 016 1 17 18 4.170 142 0 18 19 5.806 22 -1 13 20 6.035 131 1 20 21 5.510 15 7 21 22 2.647 322 10 21 23 5.173 153 0 21 24 9.936 014 6 24 25 2.647 319 8 24 30 5.675 145 -7 25 26 3.287 358 6 26 27 3.483 334 6 20 31 5.721 134 0 31 32 9.293 130 -1 32 33 8.620 128 0 32 34 6.789 355 1 34 35 4.169 015 2 35 36 7.194 316 9 35 37 3.795 122 0 35 38 7.555 016 4 38 39 5.077 141 -1 39 40 3.557 150 1 40 41 14.619 131 -1 40 42 3.392 023 -5 38 43 2.819 312 17 43 44 5.775 316 -1 43 45 5.380 016 11 45 46 3.663 002 9 46 47 3.446 018 -4 47 48 1.360 012 -33 48 49 4.852 032 0 50 49 2.563 190 -59 50 51 2.475 024 -2 51 52 6.295 033 3 52 53 3.986 143 0 53 54 4.642 359 8 54 55 8.384 031 0 55 56 2.445 032 3 55 57 4.831 330 0 56 58 2.305 356 6 58 59 3.370 063 -65 59 60 1.707 154 9 60 61 2.145 165 -26 *end 2366_08_02 *begin 2366_08_03 *EXPORT 5 11 17 20 43 *calibrate declination 2.15 ;surveyors Carmen Smith Dave Cooke 1 0 4.5 250 -2 1 2 3.23 079 -1 2 3 7.6 022 2 3 4 5.71 036 2 4 5 3.33 128 -1 5 6 1.02 092 -30 6 7 3.89 084 -1 7 8 5.17 149 1 8 9 4.78 042 0 9 10 2.45 101 2 10 11 3.64 058 7 11 12 15.39 146 0 12 13 10.64 115 1 13 14 9.86 183 -1 14 15 6.69 142 2 15 16 6.88 166 -1 16 17 4.83 117 0 17 18 10.04 090 0 18 19 5.99 139 4 19 20 3.69 068 -6 15 21 5.85 031 12 21 22 4.74 348 1 22 23 7.12 029 3 23 24 9.55 015 0 24 25 10.91 124 2 25 26 9.64 091 -3 26 27 7.45 146 -1 27 28 6.23 129 2 28 29 6.41 060 2 29 30 3.12 317 2 30 31 7.41 063 1 31 32 3.16 053 2 32 33 3.69 138 11 33 34 1.12 168 -24 34 35 4.23 060 7 35 36 1.13 166 -16 36 37 8 125 1 37 38 0.38 0 -90 38 39 1.12 067 2 39 40 3.36 004 8 40 41 0.67 0 -90 41 42 2.94 055 -4 42 43 0.92 036 36 ;extra 080327 21 a1 4.95 80 -2 a1 a2 4.4 352 8 a2 a3 6.4 36 3 a3 a4 6.74 54 0 b0 b1 12.3 151 -1 b1 b2 4.45 56 -1 b2 b3 4.2 156 0 b3 b4 3.15 61 0 b4 b5 5.5 143 -1 b5 b6 8.2 174 -1 b6 23 1.12 270 -8 c1 c2 8.95 314 0 c1 36 4.1 139 -16 c2 c3 9.9 233 -8 ; extra 2 legs 080327, added into this file by patrick from becka's notes 080328 d1 d2 8.38 313 0 34 d2 2.36 155 +1 *data passage station left right up down 0 2.9 1.1 0.3 0.2 1 0.93 0.88 0.33 0.2 2 1.3 0 0.25 0.55 3 0 1.1 0.2 0.7 4 0.7 0.3 0.5 0.6 5 0.2 0.9 1 0.2 6 0.2 0.7 1 0.1 7 0.9 0.3 1 0.2 8 0.7 0.9 1.1 0.1 9 2 0.5 1.1 0.2 10 0.6 1.9 1.4 0.3 11 2 1 1.9 0.3 12 0.7 1.9 0.4 0.5 13 2 0.9 1.6 0.2 14 0.9 1.8 1.7 0.5 15 2.2 0.3 1.4 0.2 16 1.2 0.8 0.7 0.2 17 0.3 1.5 0.9 0.2 18 1 0.8 0.6 0.3 19 1 0.8 0.7 0.3 20 1 0.8 0.7 0.3 *data passage station left right up down 15 0.8 1.3 0.3 0.8 21 0.7 0.5 0.5 0.8 22 1.1 0.2 0.2 0.7 23 0 2.3 0.6 0.4 24 0 1.7 0.9 1.4 25 0 1.3 2.2 0.8 26 1.3 0.4 1.3 0.6 27 1.5 0.2 0.8 0.7 28 0.3 0.4 1.2 0 29 0.3 0.3 1 0 30 1.1 0.5 1.4 0.1 31 0 0.7 1.7 0.2 32 0 0.5 0.7 0.8 33 0 0.6 1 0.4 34 0 1 0.7 0.8 35 0.5 0.6 0.8 0.5 36 0 0.8 0.3 0.4 37 0.4 0.5 0.4 0 38 0.3 0 0.4 0.3 39 0.3 0 0.2 0.6 40 0.5 0.3 0.8 0 41 0.3 0.6 1.5 0 42 0.3 0.6 1.5 0 43 0.3 0.6 1.5 0 *END 2366_08_03 *begin 2366_08_04 *EXPORT 0 8 20 44 *calibrate declination 2.15 ;surveyors Dan Hibberts Johnny Dingle Bill Sherrington Bob Toogood 1 2 1.76 276 -13 2 3 1.48 245 12 3 4 5.5 229 -11 4 5 1.6 207 -17 5 6 3.59 239 14 6 7 3.9 126 14 7 8 3.2 242 11 8 9 4.2 195 9 9 10 3.79 200 6 10 11 4.5 224 -23 11 12 8.37 225 9 12 13 4.9 293 3 13 14 18.7 214 -3 14 15 8.4 293 -2 15 16 4.37 221 -16 16 17 9.81 258 -3 17 18 12.57 183 1 18 19 20.25 245 0 19 20 11.62 156 -4 20 21 .6 167 2 21 22 16.97 226 -1 22 23 5.6 249 0 23 24 4.5 201 2 24 25 3 244 16 25 26 6.2 331 -2 26 27 6.5 240 -2 27 28 2.4 181 0 28 29 4 236 -2 29 30 4.1 212 0 30 31 1 263 0 31 32 4.28 205 58 32 33 3.8 240 26 33 34 2.5 199 -24 34 35 3.2 245 -28 35 36 3.9 293 -43 36 37 5.3 216 -11 37 38 10.9 207 -18 38 39 20.5 194 0 39 40 5.6 219 8 40 41 17.8 201 -1 41 42 7 109 7 42 43 7.4 145 -19 43 44 11.6 228 18 *FLAGS DUPLICATE 0 1A 28.15 300 -1 1A 2A 19.45 318 0 2A 3A 13.41 313 -3 3A 4A 19.3 278 -5 4A 5A 4.92 251 -2 5A 1 8.2 283 -3 *FLAGS NOT DUPLICATE *END 2366_08_04 *begin 2366_08_05 *EXPORT 9 *calibrate declination 2.15 ;Pete Smith Dave Cooke Paul Stacey 0 1 2.47 310 +10 1 2 1.67 019 +12 2 3 5.07 044 0 3 4 2.92 006 +3 4 5 3.42 127 0 5 6 3.05 123 +5 7 6 2.23 333 +6 4 8 2.29 039 +6 8 9 1.25 301 -17 *end 2366_08_05 *begin 2366_08_06 *EXPORT 0 *calibrate declination 2.15 ;Pete Smith Dave Cooke Paul Stacey 0 1 4.42 139 0 1 2 6.28 079 0 2 3 4.71 048 +4 3 4 19.39 136 -1 4 5 3.97 123 -3 1 6 14.72 130 -1 6 7 4.37 141 -9 7 8 2.82 131 0 8 9 2.69 150 -5 9 10 5.86 131 0 10 11 4.87 132 0 11 12 3.04 132 4 12 13 3.15 125 -15 13 14 1.49 155 +31 14 15 1.94 106 -13 *end 2366_08_06 *begin 2366_08_07 *EXPORT 0 *calibrate declination 2.15 ;Pete Smith Dave Cooke Paul Stacey 0 1 3.77 015 +10 1 2 2.82 056 0 2 3 2.84 050 +7 *end 2366_08_07 *begin 2366_08_08 *EXPORT 0 22 *calibrate declination 2.15 ;Pete Smith Dave Cooke Paul Stacey 0 1 2.98 346 +28 1 2 12.98 348 +1 2 3 5.80 254 -7 3 4 4.28 214 -6 4 5 6.81 299 -2 5 6 1.20 000 -9 6 7 0.42 - up 7 8 6.39 317 -1 8 9 4.43 205 -4 9 10 4.37 224 -3 10 11 0.72 154 -5 11 12 3.72 259 -6 12 13 3.54 334 +3 13 14 2.76 020 -2 14 15 2.19 265 -1 15 16 2.55 321 +6 16 17 1.44 327 +3 17 18 2.07 206 -2 18 19 2.61 262 -11 19 20 0.94 322 0 20 21 2.17 018 -5 21 22 3.11 309 0 *end 2366_08_08 *begin 2366_08_09 *EXPORT 19 20 *calibrate declination 2.15 ;Pete Smith Dave Cooke Paul Stacey 0 1 9.09 213 -5 1 2 5.01 250 +27 2 3 2.78 222 -40 3 4 2.60 246 -20 4 5 3.77 195 +18 5 6 3.00 297 0 6 7 7.46 254 -9 7 8 3.08 234 -5 8 9 4.22 266 +1 9 10 3.74 256 -9 10 11 8.54 207 -9 11 12 2.37 238 -8 12 13 3.89 248 -9 13 14 1.92 259 -49 14 15 5.14 243 -12 15 16 5.10 224 +1 16 17 3.38 134 +9 17 18 2.04 153 -46 18 19 5.14 076 +12 19 20 5.46 077 +19 8 21 1.71 312 -72 21 22 7.14 230 -1 22 23 4.85 238 -9 23 24 2.55 155 0 24 25 6.66 206 -3 25 26 5.12 208 +4 26 20 1.44 314 -7 28 29 13.79 299 -3 29 30 26.09 248 -6 30 20 8.12 269 -15 ; extra 080327 17 a1 4.81 209 17 a1 a2 4.59 211 4 a2 a3 6.29 230 3 *end 2366_08_09 *begin 2366_08_10 *EXPORT 1 *title "Torno - Endgame" *team "Patrick Warren" SAP (comp & clino) and tape *team "Becka Lawson" notes *date 2008.03.27 *calibrate tape 0.0 ; +ve if tape was too short, -ve if too long *calibrate compass 0.0 *calibrate clino 0.0 *CALIBRATE declination 2.15 ;comp/clino = Becka's pony, tape = Carmen's Leica disto 1 2 5.42 187 0 2 3 3.85 231 -1 3 4 10.33 201 -2 4 5 2.16 258 +3 5 6 3.51 266 -5 6 7 2.43 331 -2 7 8 2.16 254 -1 8 9 2.25 233 -7 9 10 1.70 228 -8 10 11 2.94 216 -5 11 12 14.57 204 -2 12 13 2.34 254 -2 13 14 4.42 225 0 14 15 8.87 205 -3 15 16 1.25 313 +79 17 16 5.53 027 +12 ;written as 16 to 17 in notes 18 19 4.03 282 -1 19 20 8.45 281 -3 20 21 6.16 284 -2 21 22 3.76 347 -14 22 23 2.68 231 -3 23 24 2.26 263 -15 24 25 6.63 207 0 25 26 6.02 199 -2 26 27 2.97 200 -5 24 28 1.37 292 -25 15 28 2.06 059 -44 18 29 10.00 039 0 ;drafting dig - station 29 not accessed, all by pony & disto ;station details - station l r u d description *data passage station left right up down 1 - - 1.8 0.6 ; stone cairn 2 0.3 0.9 3.8 0.4 ; red paint (RP) L wall 3 0.8 0.2 3.0 0.3 ; RP R wall 4 0.3 0.5 1.3 0.1 ; RP floor rock 5 1.5 0.5 1.2 0.1 ; RP stone on floor 6 0.1 1.2 0.1 0.2 ; RP L wall 7 2.0 0.3 0.1 0.1 ; RP R wall / ceiling 8 0.0 0.6 0.5 0.1 ; RP L wall / ceiling 9 0.2 1.0 1.0 0.1 ; RP L wall 10 1.0 0.7 0.3 0.1 ; RP L wall 11 - - - - ; RP R wall / ceiling 12 0.0 1.0 0.2 0.3 ; RP stone L wall 13 0.2 1.0 0.4 0.1 ; RP L wall 14 0.3 0.3 0.1 0.3 ; RP roof 15 0.5 4.0 1.5 1.5 ; RP pile of rocks in a chamber ; connexion point 16 1.2 4.0 0.0 3.0 ; RP roof 17 0.8 1.5 0.5 0.5 ; RP stal *data passage station left right up down 15 0.5 4.0 1.5 1.5 ; RP pile of rocks in a chamber ; connexion point 24 1.0 - 1.0 1.0 ; RP above stream 23 0.1 0.3 0.2 0.8 ; RP L wall before stream 22 1.2 0.0 1.0 1.2 ; RP R wall 21 1.5 0.4 0.5 1.0 ; korner R wall 20 1.5 2.5 1.3 0.9 ; RP stal 19 2.5 0.3 0.4 0.3 ; RP rock and paper 18 1.5 0.5 0.5 0.3 ; cairn by draughting 6" crawl 29 .5 .5 .2 .2 ;Estimated down draughting dig *data passage station left right up down 24 1.0 - 1.0 1.0 ; RP above stream 25 - 1.0 1.5 0.0 ; RP on R roof 26 2.5 1.0 0.5 1.5 ; RP floor boulder 27 1.0 1.0 1.0 1.5 ; RP over stream and paper ;28 - - - - ; rock base of waterfall inlet *end 2366_08_10 *begin 2366_08_11 *EXPORT 21 *team Martin Barnicott Bob Toogood *date 2008.03.28 *calibrate tape 0.0 ; +ve if tape was too short, -ve if too long *calibrate compass 0.0 *calibrate clino 0.0 *CALIBRATE declination 2.15 1 2 3.24 326 -5;unsurveyed rift at 240deg 2 3 1.9 318 3 3 4 5.59 211 -4 4 5 2.53 228 -1 5 6 4.18 302 -6; unsurveyed passage on 90deg 6 7 3 59 -72 7 8 7.36 310 8 8 9 7.15 301 -11 9 10 9.68 333 -8 10 11 21.83 308 -3 11 12 10.1 320 5 12 13 5.82 324 -1 13 14 4.38 347 -6 14 15 4.7 313 -6 15 16 4.03 324 -9 16 17 10.24 308 -3 17 18 8.01 324 -10 18 19 1.79 10 -4 19 20 2.42 287 -15 20 21 2.38 221 10; 21 is station 08_04.8 *data passage station left right up down 1 .1 2.6 2.23 3.26 2 .66 .57 .67 .98 3 .55 .25 .28 .4 4 .34 .34 .43 .79 5 0 .20 2.65 .92 6 .48 .6 .87 3.7 7 .29 0 3.8 .82 8 .05 .71 .79 1.14 9 .3 .78 2.72 1.5 10 .59 .55 1.33 .3 11 .34 .72 1 .55 12 .52 .76 .99 .79 13 .32 .84 .71 .52 14 .44 .65 1.25 1.32 15 .43 .54 1.31 1.41 16 .51 .65 1.57 1.57 17 .49 .69 1.80 1.53 18 .58 .76 2.65 .91 19 .79 0 1.9 .41 *end 2366_08_11 *begin 2366_08_12 *EXPORT A *team Mike Salt Dan Hibberts Bob Toogood *date 2008.03.28 *calibrate tape 0.0 ; +ve if tape was too short, -ve if too long *calibrate compass 0.0 *calibrate clino 0.0 *CALIBRATE declination 2.15 A 1 4.9 142 68 1 2 6.2 38 -4 2 3 5.5 43 4 3 4 3.4 4 -1 4 5 2.3 62 1 5 6 7 351 -3 6 7 3.9 330 3 7 8 8.26 9 0 8 9 2.5 27 5 9 10 4.6 310 3 10 11 3.4 60 14 11 12 4.7 56 26 12 13 4.1 54 7 13 14 4.6 95 -42 *data passage station up down left right 1 6.0 5.6 0 1.2 2 6 5.6 0 1.2 3 6.1 .6 1 0 4 5.9 .9 1 0 5 5.7 1 0 1.2 6 4.3 1.3 1 0 7 4.2 1.5 1.0 0 8 4.9 1.6 1 0 9 5 1.5 1 0 10 4.7 2 1.2 0 11 4.2 2 2 0 12 3.2 2.6 1 .2 13 2.2 .5 .5 .7 14 1.5 2.7 0 1 *end 2366_08_12 *begin 2366_08_13 *EXPORT 44 *team Mike Salt Dan Hibberts *date 2008.03.28 *calibrate tape 0.0 ; +ve if tape was too short, -ve if too long *calibrate compass 0.0 *calibrate clino 0.0 *CALIBRATE declination 2.15 44 45 8.5 211 34 45 46 12 219 -9 46 47 3.4 185 24 47 48 2.3 56 -57 48 49 4.5 151 -41 49 50 8.3 - down 50 51 5.13 262 10 51 52 12 237 -2 52 53 2.07 172 -3 53 54 3 293 -41 54 55 3.5 218 -46 55 56 4.1 209 -2 56 57 1.6 242 0 57 58 9.7 212 -4 58 59 4.1 161 -3 59 60 6.7 191 4 60 61 4 - up 61 62 7.69 202 -2 62 63 3 - down 63 64 3 171 -14 64 65 3.8 84 -3 65 66 3 119 0 66 67 3.8 147 1 b0 b1 10 13 0 b1 b2 5.8 321 -3 b2 b3 7.5 321 6 b2 b4 2.5 285 -1 b4 b5 4 282 -48 b5 67 2.1 220 -36 52 c1 2.45 - up c1 c2 5.5 231 23 c2 c3 9.1 193 20 c3 c4 6.9 174 0 67 d0 15 189 -1 *data passage station up down left right 45 0 2 3.8 1.42 46 7.6 1 2.4 0 47 5.1 1.5 2.38 5.78 48 7.27 0 2 4 49 2.1 6.2 3.5 7.5 50 8.2 0 2.1 3.5 51 0 .8 3.2 1 52 4 0 1 1.34 53 .7 2.2 .5 .8 54 1.8 .5 .8 2 55 .2 .3 1.0 1 56 1.3 .2 1 .2 57 .8 .7 .8 0 58 .4 .6 .8 .3 59 3.8 .7 0 1 60 2 2 0 1 61 .5 0 1.2 .7 62 1 2 1.2 .7 63 0 1 1 1 64 1.3 .7 1 0 65 .6 .6 0 1 66 7 1.1 2.8 2.9 b0 1.3 0 1 1 b1 3 .2 2.1 .2 b2 5.0 .5 2 .9 b2 5 .5 2 .9 b4 2.9 .5 1.1 0 b5 4.3 3.0 1 0 c1 1.37 0 1.28 4.12 c2 3.9 1 3 2.3 c3 2.8 1.9 4 4 d0 3.5 0 .5 .8 *end 2366_08_13 *end 2366_Torno CaveConverter_src/test/data/regression/2649_Mareserection_ss_ref.svx0000644000000000000000000000253013030252172024623 0ustar rootroot*BEGIN 2649_Mareserection *EQUATE Mares070701.25 Mares0904085.0 *BEGIN Mares070701 *CALIBRATE declination 2.28 1 2 1.72 145.00 -47.00 2 3 2.90 353.00 -49.00 3 4 4.22 0.00 -90.00 4 5 4.95 103.00 11.00 5 6 2.17 72.00 40.00 6 7 2.51 100.00 -35.00 7 8 6.90 222.00 -11.00 7 9 2.98 68.00 19.00 9 10 3.00 110.00 -2.00 10 11 2.58 98.00 -11.00 11 12 4.80 0.00 -90.00 11 13 4.40 48.00 -11.00 13 14 2.30 20.00 -43.00 14 15 7.35 50.00 -4.00 15 16 7.35 35.00 -5.00 16 17 4.10 25.00 14.00 17 18 5.90 73.00 -5.00 18 19 7.40 32.00 -3.00 19 20 5.63 49.00 -3.00 20 21 3.91 110.00 -4.00 21 22 4.02 85.00 2.00 22 23 3.00 38.00 -3.00 23 24 3.30 150.00 -11.00 24 25 6.57 99.00 0.00 25 26 1.82 182.00 3.00 26 27 1.91 28.00 7.00 26 28 2.50 202.00 20.00 *END Mares070701 *BEGIN Mares0904085 *CALIBRATE declination 2.08 0 1 3.00 91.06 6.73 1 2 2.91 20.29 3.57 2 3 4.11 19.88 -2.27 3 4 2.03 331.14 4.87 4 5 2.43 28.98 -37.75 4 6 1.91 63.99 -6.15 6 7 3.35 32.37 -4.35 6 8 8.17 104.93 -1.38 8 9 1.78 139.35 4.60 9 10 2.70 100.81 0.36 10 11 4.72 56.33 -3.82 11 12 1.25 69.40 -4.66 12 13 2.95 112.51 -3.77 12 14 3.97 136.09 3.99 14 15 1.44 68.87 -26.54 15 16 2.30 131.94 -17.98 *END Mares0904085 *END 2649_Mareserection CaveConverter_src/test/data/regression/Bagshawe_acad_ds_ref.svx0000644000000000000000000006011612560565230024026 0ustar rootroot*BEGIN SurveyFromDXF *EQUATE S_L_JB_MAIN.1 S_L_JB_MAIN47.0 *EQUATE S_L_JB_MAIN1.0 S_L_JB_MAIN12.0 *EQUATE S_L_JB_MAIN1.8 S_L_JB_MAIN19.0 *EQUATE S_L_JB_MAIN1.9 S_L_JB_MAIN2.0 *EQUATE S_L_JB_MAIN2.0 S_L_JB_MAIN1.9 *EQUATE S_L_JB_MAIN2.1 S_L_JB_MAIN16.11 *EQUATE S_L_JB_MAIN2.5 S_L_JB_MAIN21.0 *EQUATE S_L_JB_MAIN2.10 S_L_JB_MAIN21.9 *EQUATE S_L_JB_MAIN2.13 S_L_JB_MAIN20.0 *EQUATE S_L_JB_MAIN2.20 S_L_JB_MAIN20.11 *EQUATE S_L_JB_MAIN2.22 S_L_JB_MAIN3.0 *EQUATE S_L_JB_MAIN3.0 S_L_JB_MAIN2.22 *EQUATE S_L_JB_MAIN3.1 S_L_JB_MAIN22.0 *EQUATE S_L_JB_MAIN3.9 S_L_JB_MAIN6.0 *EQUATE S_L_JB_MAIN3.13 S_L_JB_MAIN5.0 *EQUATE S_L_JB_MAIN3.16 S_L_JB_MAIN4.0 *EQUATE S_L_JB_MAIN4.0 S_L_JB_MAIN3.16 *EQUATE S_L_JB_MAIN5.0 S_L_JB_MAIN3.13 *EQUATE S_L_JB_MAIN6.0 S_L_JB_MAIN3.9 *EQUATE S_L_JB_MAIN7.1 S_L_JB_MAIN9.9 *EQUATE S_L_JB_MAIN7.10 S_L_JB_MAIN8.0 *EQUATE S_L_JB_MAIN8.0 S_L_JB_MAIN7.10 *EQUATE S_L_JB_MAIN9.6 S_L_JB_MAIN11.0 *EQUATE S_L_JB_MAIN9.7 S_L_JB_MAIN10.0 *EQUATE S_L_JB_MAIN9.9 S_L_JB_MAIN7.1 *EQUATE S_L_JB_MAIN10.0 S_L_JB_MAIN9.7 *EQUATE S_L_JB_MAIN11.0 S_L_JB_MAIN9.6 *EQUATE S_L_JB_MAIN12.0 S_L_JB_MAIN1.0 *EQUATE S_L_JB_MAIN12.4 S_L_JB_MAIN13.0 *EQUATE S_L_JB_MAIN12.4 S_L_JB_MAIN13.8 *EQUATE S_L_JB_MAIN12.8 S_L_JB_MAIN14.5 *EQUATE S_L_JB_MAIN13.0 S_L_JB_MAIN12.4 *EQUATE S_L_JB_MAIN13.0 S_L_JB_MAIN13.8 *EQUATE S_L_JB_MAIN13.1 S_L_JB_MAIN14.0 *EQUATE S_L_JB_MAIN13.8 S_L_JB_MAIN12.4 *EQUATE S_L_JB_MAIN14.0 S_L_JB_MAIN13.1 *EQUATE S_L_JB_MAIN14.5 S_L_JB_MAIN12.8 *EQUATE S_L_JB_MAIN15.1 S_L_JB_MAIN17.3 *EQUATE S_L_JB_MAIN16.2 S_L_JB_MAIN17.0 *EQUATE S_L_JB_MAIN16.3 S_L_JB_MAIN37.0 *EQUATE S_L_JB_MAIN16.5 S_L_JB_MAIN38.0 *EQUATE S_L_JB_MAIN16.5 S_L_JB_MAIN38.1 *EQUATE S_L_JB_MAIN16.11 S_L_JB_MAIN2.1 *EQUATE S_L_JB_MAIN17.0 S_L_JB_MAIN16.2 *EQUATE S_L_JB_MAIN17.1 S_L_JB_MAIN18.0 *EQUATE S_L_JB_MAIN17.2 S_L_JB_MAIN38.7 *EQUATE S_L_JB_MAIN17.3 S_L_JB_MAIN15.1 *EQUATE S_L_JB_MAIN18.0 S_L_JB_MAIN17.1 *EQUATE S_L_JB_MAIN19.0 S_L_JB_MAIN1.8 *EQUATE S_L_JB_MAIN20.0 S_L_JB_MAIN2.13 *EQUATE S_L_JB_MAIN20.11 S_L_JB_MAIN2.20 *EQUATE S_L_JB_MAIN21.0 S_L_JB_MAIN2.5 *EQUATE S_L_JB_MAIN21.9 S_L_JB_MAIN2.10 *EQUATE S_L_JB_MAIN22.0 S_L_JB_MAIN3.1 *EQUATE S_L_JB_MAIN22.6 S_L_JB_MAIN23.0 *EQUATE S_L_JB_MAIN22.6 S_L_JB_MAIN24.0 *EQUATE S_L_JB_MAIN22.6 S_L_JB_MAIN46.0 *EQUATE S_L_JB_MAIN22.10 S_L_JB_MAIN22.11 *EQUATE S_L_JB_MAIN23.0 S_L_JB_MAIN22.6 *EQUATE S_L_JB_MAIN23.0 S_L_JB_MAIN24.0 *EQUATE S_L_JB_MAIN23.0 S_L_JB_MAIN46.0 *EQUATE S_L_JB_MAIN24.0 S_L_JB_MAIN22.6 *EQUATE S_L_JB_MAIN24.0 S_L_JB_MAIN23.0 *EQUATE S_L_JB_MAIN24.0 S_L_JB_MAIN46.0 *EQUATE S_L_JB_MAIN24.7 S_L_JB_MAIN25.0 *EQUATE S_L_JB_MAIN25.0 S_L_JB_MAIN24.7 *EQUATE S_L_JB_MAIN25.6 S_L_JB_MAIN26.0 *EQUATE S_L_JB_MAIN26.0 S_L_JB_MAIN25.6 *EQUATE S_L_JB_MAIN28.17 S_L_JB_MAIN31.0 *EQUATE S_L_JB_MAIN28.19 S_L_JB_MAIN29.0 *EQUATE S_L_JB_MAIN28.20 S_L_JB_MAIN30.0 *EQUATE S_L_JB_MAIN28.32 S_L_JB_MAIN36.0 *EQUATE S_L_JB_MAIN29.0 S_L_JB_MAIN28.19 *EQUATE S_L_JB_MAIN30.0 S_L_JB_MAIN28.20 *EQUATE S_L_JB_MAIN31.0 S_L_JB_MAIN28.17 *EQUATE S_L_JB_MAIN31.4 S_L_JB_MAIN32.0 *EQUATE S_L_JB_MAIN31.10 S_L_full_moon.0 *EQUATE S_L_JB_MAIN32.0 S_L_JB_MAIN31.4 *EQUATE S_L_JB_MAIN32.1 S_L_JB_MAIN34.0 *EQUATE S_L_JB_MAIN32.1 S_L_JB_MAIN42.0 *EQUATE S_L_JB_MAIN32.2 S_L_JB_MAIN33.0 *EQUATE S_L_JB_MAIN33.0 S_L_JB_MAIN32.2 *EQUATE S_L_JB_MAIN34.0 S_L_JB_MAIN32.1 *EQUATE S_L_JB_MAIN34.0 S_L_JB_MAIN42.0 *EQUATE S_L_JB_MAIN34.2 S_L_JB_MAIN35.0 *EQUATE S_L_JB_MAIN35.0 S_L_JB_MAIN34.2 *EQUATE S_L_JB_MAIN36.0 S_L_JB_MAIN28.32 *EQUATE S_L_JB_MAIN37.0 S_L_JB_MAIN16.3 *EQUATE S_L_JB_MAIN37.2 S_L_JB_MAIN37.3 *EQUATE S_L_JB_MAIN38.0 S_L_JB_MAIN16.5 *EQUATE S_L_JB_MAIN38.0 S_L_JB_MAIN38.1 *EQUATE S_L_JB_MAIN38.1 S_L_JB_MAIN16.5 *EQUATE S_L_JB_MAIN38.7 S_L_JB_MAIN17.2 *EQUATE S_L_JB_MAIN39.6 S_L_JB_MAIN53.0 *EQUATE S_L_JB_MAIN40.0 S_L_JB_MAIN41.0 *EQUATE S_L_JB_MAIN40.0 S_L_JB_MAIN52.0 *EQUATE S_L_JB_MAIN40.0 S_L_JB_MAIN52.1 *EQUATE S_L_JB_MAIN40.0 S_L_JB_MAIN61.17 *EQUATE S_L_JB_MAIN41.0 S_L_JB_MAIN40.0 *EQUATE S_L_JB_MAIN41.0 S_L_JB_MAIN52.0 *EQUATE S_L_JB_MAIN41.0 S_L_JB_MAIN52.1 *EQUATE S_L_JB_MAIN41.0 S_L_JB_MAIN61.17 *EQUATE S_L_JB_MAIN42.0 S_L_JB_MAIN32.1 *EQUATE S_L_JB_MAIN42.0 S_L_JB_MAIN34.0 *EQUATE S_L_JB_MAIN42.14 S_L_JB_MAIN44.0 *EQUATE S_L_JB_MAIN44.0 S_L_JB_MAIN42.14 *EQUATE S_L_JB_MAIN46.0 S_L_JB_MAIN22.6 *EQUATE S_L_JB_MAIN46.0 S_L_JB_MAIN23.0 *EQUATE S_L_JB_MAIN46.0 S_L_JB_MAIN24.0 *EQUATE S_L_JB_MAIN46.7 S_L_JB_MAIN48.0 *EQUATE S_L_JB_MAIN46.17 S_L_JB_MAIN51.0 *EQUATE S_L_JB_MAIN46.19 S_L_JB_MAIN50.0 *EQUATE S_L_JB_MAIN47.0 S_L_JB_MAIN.1 *EQUATE S_L_JB_MAIN48.0 S_L_JB_MAIN46.7 *EQUATE S_L_JB_MAIN48.3 S_L_JB_MAIN49.0 *EQUATE S_L_JB_MAIN49.0 S_L_JB_MAIN48.3 *EQUATE S_L_JB_MAIN50.0 S_L_JB_MAIN46.19 *EQUATE S_L_JB_MAIN51.0 S_L_JB_MAIN46.17 *EQUATE S_L_full_moon.0 S_L_JB_MAIN31.10 *EQUATE S_L_full_moon.8 S_L_full_moon1.0 *EQUATE S_L_full_moon.10 S_L_full_moon3.0 *EQUATE S_L_full_moon1.0 S_L_full_moon.8 *EQUATE S_L_full_moon1.8 S_L_full_moon2.0 *EQUATE S_L_full_moon2.0 S_L_full_moon1.8 *EQUATE S_L_full_moon3.0 S_L_full_moon.10 *EQUATE S_L_JB_MAIN52.0 S_L_JB_MAIN40.0 *EQUATE S_L_JB_MAIN52.0 S_L_JB_MAIN41.0 *EQUATE S_L_JB_MAIN52.0 S_L_JB_MAIN52.1 *EQUATE S_L_JB_MAIN52.0 S_L_JB_MAIN61.17 *EQUATE S_L_JB_MAIN52.1 S_L_JB_MAIN40.0 *EQUATE S_L_JB_MAIN52.1 S_L_JB_MAIN41.0 *EQUATE S_L_JB_MAIN52.1 S_L_JB_MAIN61.17 *EQUATE S_L_JB_MAIN53.0 S_L_JB_MAIN39.6 *EQUATE S_L_JB_MAIN53.16 S_L_JB_MAIN54.0 *EQUATE S_L_JB_MAIN53.16 S_L_JB_MAIN56.0 *EQUATE S_L_JB_MAIN53.16 S_L_JB_MAIN57.0 *EQUATE S_L_JB_MAIN53.16 S_L_JB_MAIN58.0 *EQUATE S_L_JB_MAIN53.16 S_L_JB_MAIN59.0 *EQUATE S_L_JB_MAIN53.27 S_L_JB_MAIN61.0 *EQUATE S_L_JB_MAIN53.29 S_L_JB_MAIN60.0 *EQUATE S_L_JB_MAIN54.0 S_L_JB_MAIN53.16 *EQUATE S_L_JB_MAIN54.0 S_L_JB_MAIN56.0 *EQUATE S_L_JB_MAIN54.0 S_L_JB_MAIN57.0 *EQUATE S_L_JB_MAIN54.0 S_L_JB_MAIN58.0 *EQUATE S_L_JB_MAIN54.0 S_L_JB_MAIN59.0 *EQUATE S_L_JB_MAIN54.1 S_L_JB_MAIN55.0 *EQUATE S_L_JB_MAIN55.0 S_L_JB_MAIN54.1 *EQUATE S_L_JB_MAIN56.0 S_L_JB_MAIN53.16 *EQUATE S_L_JB_MAIN56.0 S_L_JB_MAIN54.0 *EQUATE S_L_JB_MAIN56.0 S_L_JB_MAIN57.0 *EQUATE S_L_JB_MAIN56.0 S_L_JB_MAIN58.0 *EQUATE S_L_JB_MAIN56.0 S_L_JB_MAIN59.0 *EQUATE S_L_JB_MAIN56.1 S_L_JB_MAIN57.1 *EQUATE S_L_JB_MAIN57.0 S_L_JB_MAIN53.16 *EQUATE S_L_JB_MAIN57.0 S_L_JB_MAIN54.0 *EQUATE S_L_JB_MAIN57.0 S_L_JB_MAIN56.0 *EQUATE S_L_JB_MAIN57.0 S_L_JB_MAIN58.0 *EQUATE S_L_JB_MAIN57.0 S_L_JB_MAIN59.0 *EQUATE S_L_JB_MAIN57.1 S_L_JB_MAIN56.1 *EQUATE S_L_JB_MAIN58.0 S_L_JB_MAIN53.16 *EQUATE S_L_JB_MAIN58.0 S_L_JB_MAIN54.0 *EQUATE S_L_JB_MAIN58.0 S_L_JB_MAIN56.0 *EQUATE S_L_JB_MAIN58.0 S_L_JB_MAIN57.0 *EQUATE S_L_JB_MAIN58.0 S_L_JB_MAIN59.0 *EQUATE S_L_JB_MAIN59.0 S_L_JB_MAIN53.16 *EQUATE S_L_JB_MAIN59.0 S_L_JB_MAIN54.0 *EQUATE S_L_JB_MAIN59.0 S_L_JB_MAIN56.0 *EQUATE S_L_JB_MAIN59.0 S_L_JB_MAIN57.0 *EQUATE S_L_JB_MAIN59.0 S_L_JB_MAIN58.0 *EQUATE S_L_JB_MAIN60.0 S_L_JB_MAIN53.29 *EQUATE S_L_JB_MAIN61.0 S_L_JB_MAIN53.27 *EQUATE S_L_JB_MAIN61.17 S_L_JB_MAIN40.0 *EQUATE S_L_JB_MAIN61.17 S_L_JB_MAIN41.0 *EQUATE S_L_JB_MAIN61.17 S_L_JB_MAIN52.0 *EQUATE S_L_JB_MAIN61.17 S_L_JB_MAIN52.1 *BEGIN S_L_JB_MAIN *FIX 0 17139.84 80873.35 237.02 0 1 16.46 64.71 -15.91 1 2 6.61 336.67 -13.84 2 3 3.23 258.44 -13.25 *END S_L_JB_MAIN *BEGIN S_L_JB_MAIN1 0 1 4.21 45.10 2.04 1 2 7.31 60.39 -48.18 2 3 4.43 215.79 -20.34 3 4 19.77 183.16 -2.20 4 5 3.73 116.20 17.49 5 6 9.06 100.69 28.98 6 7 9.45 30.41 5.59 7 8 10.76 30.50 0.11 8 9 15.81 28.20 3.55 *END S_L_JB_MAIN1 *BEGIN S_L_JB_MAIN2 0 1 9.63 55.07 2.56 1 2 4.53 82.77 2.28 2 3 12.23 42.75 1.50 3 4 8.39 54.32 1.03 4 5 2.63 17.07 24.96 5 6 8.45 55.30 -10.50 6 7 6.93 359.42 -5.46 7 8 10.06 41.17 -1.99 8 9 8.56 83.42 -1.00 9 10 7.28 128.59 1.02 10 11 11.83 41.42 4.51 11 12 10.65 57.98 3.01 12 13 6.33 50.58 -0.54 13 14 10.61 70.11 -4.00 14 15 10.72 76.56 -2.51 15 16 12.09 65.18 -4.51 16 17 13.78 37.92 -2.50 17 18 12.06 63.20 -3.23 18 19 12.62 37.91 -2.00 19 20 9.36 31.40 -7.00 20 21 10.52 29.43 -5.02 21 22 13.16 71.80 -1.26 *END S_L_JB_MAIN2 *BEGIN S_L_JB_MAIN3 0 1 11.19 43.15 -1.74 1 2 4.51 29.71 -7.00 2 3 6.06 121.86 0.00 3 4 10.19 58.49 -6.48 4 5 8.25 18.08 0.00 5 6 11.57 46.89 -0.50 6 7 7.74 72.81 -4.96 7 8 9.20 50.16 1.99 8 9 7.75 52.98 13.28 9 10 13.30 64.38 -4.74 10 11 14.80 55.69 -1.51 11 12 12.58 29.47 -4.51 12 13 18.45 48.95 -8.01 13 14 7.24 114.08 -3.48 14 15 7.57 57.19 1.97 15 16 10.15 59.11 -8.73 16 17 2.57 124.00 -5.58 17 18 0.23 0.00 -90.00 18 19 6.10 208.81 -6.50 19 20 19.79 220.79 4.00 20 21 29.35 228.71 4.01 21 22 3.50 154.83 6.07 22 23 5.40 218.76 2.55 23 24 6.20 146.88 -7.50 24 25 12.35 121.45 -5.99 25 26 5.75 99.10 -1.00 26 27 7.15 103.09 -9.01 27 28 5.50 57.32 -0.52 28 29 3.35 17.24 4.96 29 30 10.50 95.10 -4.48 30 31 5.00 74.57 0.00 *END S_L_JB_MAIN3 *BEGIN S_L_JB_MAIN4 0 1 5.50 36.34 -11.00 1 2 3.00 65.24 -5.93 *END S_L_JB_MAIN4 *BEGIN S_L_JB_MAIN5 0 1 5.66 41.01 -18.02 1 2 7.12 38.44 -7.50 *END S_L_JB_MAIN5 *BEGIN S_L_JB_MAIN6 0 1 1.80 152.42 -9.93 1 2 19.15 236.20 34.01 *END S_L_JB_MAIN6 *BEGIN S_L_JB_MAIN7 0 1 1.00 47.84 0.00 1 2 10.44 132.37 -7.82 2 3 23.88 114.04 -10.01 3 4 15.95 149.39 -10.00 4 5 8.80 140.24 -5.87 5 6 6.24 144.07 -2.48 6 7 8.47 160.56 -0.47 7 8 1.95 83.22 42.51 8 9 8.52 108.65 3.50 9 10 16.71 76.33 -8.98 10 11 11.12 204.40 -2.01 11 12 12.44 202.44 -3.00 12 13 13.24 213.41 1.51 13 14 8.58 203.94 0.00 14 15 7.80 204.79 0.00 15 16 12.10 220.75 0.00 16 17 12.10 219.77 0.00 17 18 11.80 213.77 0.00 18 19 5.10 242.68 0.00 19 20 6.00 162.74 0.00 *END S_L_JB_MAIN7 *BEGIN S_L_JB_MAIN8 0 1 16.45 68.39 -4.50 1 2 15.30 67.88 -8.49 2 3 6.85 77.83 -4.52 3 4 6.43 71.40 -1.52 4 5 5.50 72.33 -5.95 *END S_L_JB_MAIN8 *BEGIN S_L_JB_MAIN9 0 1 23.32 253.41 -0.20 1 2 9.43 268.58 10.33 2 3 7.13 265.66 24.88 3 4 6.70 257.13 3.42 4 5 3.28 261.51 -27.25 5 6 16.65 258.95 4.58 6 7 7.22 239.17 1.75 7 8 11.80 173.96 -14.68 8 9 20.19 188.40 -0.17 *END S_L_JB_MAIN9 *BEGIN S_L_JB_MAIN10 0 1 0.23 221.42 -10.01 1 2 11.35 280.48 -43.01 2 3 1.84 249.93 -15.41 3 4 7.16 266.61 26.02 4 5 5.33 260.65 14.01 5 6 6.98 263.64 -5.01 6 7 3.14 359.81 13.06 7 8 5.05 282.54 -32.04 8 9 6.39 290.49 -20.05 9 10 1.56 0.00 90.00 10 11 9.83 278.01 21.98 11 12 5.69 347.12 6.96 12 13 8.15 306.08 5.00 13 14 11.64 329.39 8.00 14 15 7.25 352.24 7.53 15 16 1.04 320.12 -8.83 16 17 13.30 320.80 -58.99 *END S_L_JB_MAIN10 *BEGIN S_L_JB_MAIN11 0 1 6.70 298.44 11.98 1 2 7.07 264.43 7.97 2 3 9.47 263.44 3.99 3 4 6.42 268.45 10.96 *END S_L_JB_MAIN11 *BEGIN S_L_JB_MAIN12 0 1 19.76 221.12 1.97 1 2 28.51 218.31 -0.02 2 3 18.98 201.61 -0.60 3 4 15.17 207.81 0.64 4 5 8.92 264.28 8.32 5 6 12.51 173.94 -1.65 6 7 8.80 206.18 -6.52 7 8 14.00 205.98 1.15 *END S_L_JB_MAIN12 *BEGIN S_L_JB_MAIN13 0 1 3.87 210.63 6.08 1 2 5.06 329.04 89.34 2 3 3.45 34.67 10.03 3 4 8.95 23.41 -3.01 4 5 1.99 40.86 9.86 5 6 7.05 20.85 -0.08 6 7 5.93 320.19 -89.25 7 8 17.43 204.51 0.00 *END S_L_JB_MAIN13 *BEGIN S_L_JB_MAIN14 0 1 14.53 192.12 -4.62 1 2 4.07 217.52 1.27 2 3 4.79 347.47 19.28 3 4 11.30 209.58 -0.15 4 5 8.38 204.11 -4.59 *END S_L_JB_MAIN14 *BEGIN S_L_JB_MAIN15 0 1 2.07 0.00 90.00 1 2 4.60 260.62 -1.99 2 3 5.93 217.88 26.53 3 4 3.05 242.07 22.55 4 5 7.35 249.43 5.47 5 6 4.29 234.25 17.50 6 7 2.62 250.11 0.00 7 8 1.07 286.24 0.00 8 9 4.32 220.88 51.98 9 10 4.15 265.57 -2.49 10 11 4.64 253.83 -24.04 11 12 5.30 249.44 0.00 *END S_L_JB_MAIN15 *BEGIN S_L_JB_MAIN16 0 1 6.18 49.04 12.81 1 2 4.90 52.56 -9.05 2 3 5.48 98.09 -1.88 3 4 6.28 74.19 1.19 4 5 12.88 38.12 3.20 5 6 6.91 109.35 -1.91 6 7 10.09 142.95 -3.30 7 8 1.51 124.27 -24.74 8 9 2.93 340.77 -62.19 9 10 3.94 230.57 -11.72 10 11 3.76 273.37 -4.43 *END S_L_JB_MAIN16 *BEGIN S_L_JB_MAIN17 0 1 7.07 33.01 4.06 1 2 6.38 317.34 11.94 2 3 3.74 236.45 23.96 *END S_L_JB_MAIN17 *BEGIN S_L_JB_MAIN18 0 1 4.61 80.83 6.85 *END S_L_JB_MAIN18 *BEGIN S_L_JB_MAIN19 0 1 9.63 210.93 1.78 1 2 7.02 202.43 42.03 2 3 5.10 202.97 24.46 3 4 1.63 158.11 44.92 4 5 1.69 0.00 90.00 5 6 7.69 211.47 38.53 6 7 6.37 225.39 35.96 *END S_L_JB_MAIN19 *BEGIN S_L_JB_MAIN20 0 1 10.44 40.57 -10.71 1 2 4.77 49.45 -6.14 2 3 4.18 75.30 -0.82 3 4 8.56 44.05 -4.69 4 5 3.08 18.38 -1.68 5 6 1.41 23.26 20.79 6 7 1.56 90.00 89.63 7 8 15.02 45.05 -6.23 8 9 24.31 65.12 -6.16 9 10 0.57 180.00 88.99 10 11 9.19 74.74 -0.69 *END S_L_JB_MAIN20 *BEGIN S_L_JB_MAIN21 0 1 6.37 58.51 34.21 1 2 2.69 118.85 -1.06 2 3 3.01 59.69 2.09 3 4 6.27 117.46 -1.46 4 5 7.55 54.06 -0.99 5 6 6.61 42.12 -17.06 6 7 4.36 21.24 -29.10 7 8 3.03 24.12 -14.14 8 9 1.20 299.58 -69.20 *END S_L_JB_MAIN21 *BEGIN S_L_JB_MAIN22 0 1 9.35 13.90 -4.48 1 2 5.70 338.01 6.95 2 3 11.20 1.79 2.00 3 4 15.65 7.31 -0.99 4 5 15.80 19.44 0.00 5 6 25.40 25.98 -2.01 6 7 7.31 57.42 -2.98 7 8 14.00 69.88 -8.00 8 9 17.47 73.81 -4.99 9 10 10.25 98.21 -4.03 11 12 6.13 66.41 -1.96 12 13 9.24 65.43 -0.50 13 14 6.37 26.00 -1.98 14 15 12.82 83.29 -5.51 15 16 5.82 85.37 -2.46 16 17 7.77 164.07 -5.98 *END S_L_JB_MAIN22 *BEGIN S_L_JB_MAIN23 0 1 3.53 295.04 5.03 1 2 3.91 252.89 -11.05 2 3 6.13 244.54 10.53 3 4 2.75 257.72 44.04 4 5 3.19 120.13 5.95 5 6 2.67 54.94 -4.08 6 7 10.11 62.44 -4.99 7 8 11.11 64.95 -9.48 8 9 7.46 90.77 -6.00 9 10 12.97 69.39 -6.02 10 11 6.75 77.31 -7.49 *END S_L_JB_MAIN23 *BEGIN S_L_JB_MAIN24 0 1 14.57 64.75 -6.90 1 2 3.75 79.68 -37.99 2 3 2.51 247.43 -4.12 3 4 1.22 334.08 -11.87 4 5 12.76 315.57 3.01 5 6 3.46 229.45 0.00 6 7 6.54 270.26 -1.49 7 8 5.36 276.26 -6.96 8 9 13.32 256.36 -1.98 9 10 10.28 257.34 2.01 10 11 5.33 286.23 0.54 11 12 6.47 263.35 0.00 12 13 7.32 272.27 0.00 13 14 9.06 258.34 -1.01 14 15 20.57 256.36 0.00 *END S_L_JB_MAIN24 *BEGIN S_L_JB_MAIN25 0 1 3.96 245.70 0.00 1 2 3.66 225.78 8.96 2 3 4.88 224.75 5.06 3 4 7.62 239.73 2.03 4 5 1.52 198.79 1.88 5 6 3.05 239.65 0.94 6 7 4.88 180.71 -3.99 7 8 5.49 225.74 0.00 8 9 3.05 158.65 0.00 9 10 2.44 254.70 6.12 *END S_L_JB_MAIN25 *BEGIN S_L_JB_MAIN26 0 1 6.10 240.77 6.03 *END S_L_JB_MAIN26 *BEGIN S_L_JB_MAIN27 0 1 4.60 265.06 10.02 1 2 7.50 0.00 -90.00 *END S_L_JB_MAIN27 *BEGIN S_L_JB_MAIN28 0 1 9.29 290.37 3.02 1 2 4.30 265.60 1.07 2 3 2.01 266.58 1.14 3 4 3.16 243.52 8.93 4 5 7.56 289.61 4.02 5 6 5.20 277.39 9.51 6 7 5.31 357.94 4.00 7 8 4.20 9.89 3.00 8 9 7.28 5.29 2.99 9 10 3.10 350.90 1.48 10 11 8.10 4.51 8.52 11 12 4.36 6.06 1.05 12 13 3.03 40.94 22.90 13 14 7.24 1.28 8.02 14 15 8.81 18.89 5.02 15 16 10.70 2.28 8.98 16 17 5.69 350.69 1.01 17 18 8.79 5.55 8.51 18 19 11.49 29.22 -2.99 19 20 5.00 9.92 -8.98 20 21 2.51 25.75 0.00 21 22 2.32 73.68 2.97 22 23 2.74 18.57 -12.67 23 24 2.18 1.84 0.00 24 25 6.04 341.66 0.00 25 26 9.37 356.76 0.00 26 27 4.97 34.49 4.03 27 28 9.62 27.23 -23.02 28 29 3.57 336.11 -23.98 29 30 3.37 2.56 -2.04 30 31 9.37 2.32 2.02 31 32 7.02 29.48 12.00 32 33 5.37 88.67 -15.56 33 34 7.57 19.18 -16.03 34 35 3.72 37.71 -8.96 35 36 3.12 27.55 2.94 36 37 12.42 42.00 1.01 37 38 11.77 338.57 3.99 38 39 6.77 347.44 2.96 39 40 11.27 35.98 0.00 40 41 7.97 69.19 -12.02 41 42 3.67 30.48 0.94 42 43 4.87 37.52 11.01 43 44 3.47 74.40 3.97 *END S_L_JB_MAIN28 *BEGIN S_L_JB_MAIN29 0 1 4.32 91.20 3.98 1 2 5.64 69.90 0.00 2 3 2.92 58.60 2.55 3 4 2.82 55.58 -3.05 *END S_L_JB_MAIN29 *BEGIN S_L_JB_MAIN30 0 1 7.12 248.45 2.98 1 2 4.84 248.75 4.03 2 3 2.72 236.43 -5.48 3 4 2.09 232.69 9.09 *END S_L_JB_MAIN30 *BEGIN S_L_JB_MAIN31 0 1 9.75 272.14 -8.02 1 2 0.28 0.00 90.00 2 3 11.60 273.57 4.00 3 4 9.38 276.01 9.02 4 5 18.05 228.39 -1.49 5 6 7.90 232.30 -1.23 6 7 30.35 218.94 1.00 7 8 15.45 235.25 6.99 8 9 12.76 212.95 5.49 9 10 15.01 244.16 8.00 10 11 4.32 166.09 -10.93 11 12 6.05 211.48 10.00 *END S_L_JB_MAIN31 *BEGIN S_L_JB_MAIN32 0 1 6.29 38.55 1.00 1 2 7.17 62.93 2.00 2 3 7.55 29.52 32.99 *END S_L_JB_MAIN32 *BEGIN S_L_JB_MAIN33 0 1 3.20 318.95 -50.00 1 2 3.40 27.53 -44.98 *END S_L_JB_MAIN33 *BEGIN S_L_JB_MAIN34 0 1 2.74 281.52 -14.58 1 2 2.89 0.00 -90.00 2 3 3.78 55.42 -31.95 *END S_L_JB_MAIN34 *BEGIN S_L_JB_MAIN35 0 1 2.94 254.76 10.00 1 2 4.95 251.77 -27.02 2 3 0.40 328.30 0.00 3 4 8.20 338.39 -86.01 4 5 8.67 68.24 -11.51 5 6 5.32 56.80 23.50 6 7 2.99 68.27 5.57 7 8 8.57 68.24 -10.01 *END S_L_JB_MAIN35 *BEGIN S_L_JB_MAIN36 0 1 4.85 252.31 4.02 1 2 4.10 266.71 -26.96 2 3 6.48 254.78 11.03 3 4 5.20 297.72 9.98 4 5 8.42 290.77 6.00 5 6 5.90 267.75 7.01 6 7 2.70 344.73 0.00 7 8 8.22 300.76 5.02 8 9 5.20 287.70 6.96 9 10 3.80 306.81 6.95 10 11 3.10 326.67 7.04 11 12 3.40 277.74 11.01 12 13 3.82 292.78 6.46 13 14 8.33 337.25 6.48 14 15 4.00 269.71 7.04 15 16 3.97 280.28 8.55 16 17 5.86 324.74 1.96 17 18 5.03 309.75 2.96 18 19 5.00 304.78 5.05 19 20 4.00 34.72 0.00 *END S_L_JB_MAIN36 *BEGIN S_L_JB_MAIN37 0 1 7.46 151.99 -2.00 1 2 6.80 171.12 0.00 *END S_L_JB_MAIN37 *BEGIN S_L_JB_MAIN38 1 2 6.22 29.41 2.58 2 3 4.50 356.80 6.12 3 4 0.52 124.00 -1.10 4 5 1.22 315.00 89.34 5 6 14.08 242.40 -1.87 6 7 11.16 250.95 -1.85 *END S_L_JB_MAIN38 *BEGIN S_L_JB_MAIN39 0 1 1.05 100.95 -53.06 1 2 3.97 191.41 29.94 2 3 7.40 36.46 46.98 3 4 2.19 86.08 48.08 4 5 5.30 0.00 90.00 5 6 1.50 108.43 -13.90 6 7 0.77 0.00 90.00 *END S_L_JB_MAIN39 *BEGIN S_L_JB_MAIN40 0 1 2.67 252.75 -13.85 1 2 13.13 277.64 -53.02 *END S_L_JB_MAIN40 *BEGIN S_L_JB_MAIN41 0 1 2.26 300.55 19.68 *END S_L_JB_MAIN41 *BEGIN S_L_JB_MAIN42 0 1 4.70 52.66 7.09 1 2 9.10 57.70 30.01 2 3 1.94 51.75 47.00 3 4 1.20 0.00 90.00 4 5 0.79 76.61 34.79 5 6 0.68 42.71 39.01 6 7 3.12 0.00 90.00 7 8 0.58 275.19 40.70 8 9 2.42 0.00 90.00 9 10 4.53 146.75 56.01 10 11 1.08 0.00 90.00 11 12 9.64 48.83 55.98 12 13 7.94 45.75 47.01 13 14 0.45 119.43 3.83 14 15 1.98 146.98 -15.80 15 16 4.34 77.60 -3.96 16 17 3.74 67.80 -8.14 17 18 6.58 51.74 -1.92 18 19 9.60 15.72 0.00 19 20 5.86 28.75 -1.07 *END S_L_JB_MAIN42 *BEGIN S_L_JB_MAIN43 0 1 7.31 231.73 13.12 1 2 5.41 210.75 -19.99 *END S_L_JB_MAIN43 *BEGIN S_L_JB_MAIN44 0 1 5.50 51.75 56.06 *END S_L_JB_MAIN44 *BEGIN S_L_JB_MAIN45 0 1 0.18 270.00 86.82 *END S_L_JB_MAIN45 *BEGIN S_L_JB_MAIN46 0 1 3.20 290.73 8.98 1 2 4.20 258.64 8.07 2 3 8.46 251.61 8.50 3 4 2.93 265.29 -3.92 4 5 3.78 286.71 12.99 5 6 10.55 255.59 5.99 6 7 8.05 257.18 4.99 7 8 3.30 194.21 -15.82 8 9 3.50 205.18 1.80 9 10 7.99 225.15 3.01 10 11 0.84 287.30 40.20 11 12 4.36 261.10 5.93 12 13 4.32 287.19 12.01 13 14 5.58 290.22 0.00 14 15 1.84 260.48 -18.00 15 16 3.80 264.08 6.04 16 17 3.30 257.19 -3.13 17 18 3.23 192.73 31.10 18 19 3.58 205.19 7.86 19 20 4.68 253.11 0.00 20 21 3.52 259.27 7.02 21 22 1.86 268.04 38.21 22 23 6.43 261.72 11.02 23 24 5.47 257.10 45.92 *END S_L_JB_MAIN46 *BEGIN S_L_JB_MAIN47 0 1 22.91 52.15 -10.97 *END S_L_JB_MAIN47 *BEGIN S_L_JB_MAIN48 0 1 2.52 246.71 5.93 1 2 4.75 276.17 1.09 2 3 1.76 341.57 13.82 3 4 4.85 313.54 31.05 *END S_L_JB_MAIN48 *BEGIN S_L_JB_MAIN49 0 1 6.55 65.74 32.01 *END S_L_JB_MAIN49 *BEGIN S_L_JB_MAIN50 0 1 12.50 92.23 10.00 1 2 2.55 92.92 -2.02 2 3 7.00 77.76 14.05 *END S_L_JB_MAIN50 *BEGIN S_L_JB_MAIN51 0 1 6.90 254.01 18.77 *END S_L_JB_MAIN51 *BEGIN S_L_full_moon 0 1 4.18 225.30 -12.44 1 2 1.87 284.85 0.00 2 3 7.94 225.71 1.01 3 4 11.50 219.76 4.99 4 5 11.30 258.76 2.99 5 6 18.30 215.75 1.00 6 7 7.60 217.70 19.06 7 8 7.21 233.75 1.99 8 9 15.00 238.75 -5.01 9 10 12.91 253.76 1.02 10 11 3.40 298.76 -4.05 11 12 8.30 227.79 -2.00 *END S_L_full_moon *BEGIN S_L_full_moon1 0 1 4.30 112.71 -35.03 1 2 4.20 111.86 -30.97 2 3 3.60 105.66 -24.99 3 4 4.50 54.71 -4.97 4 5 20.81 75.76 -5.02 5 6 7.00 96.28 -6.97 6 7 10.29 119.77 -5.02 7 8 6.01 61.81 -4.01 8 9 5.50 94.75 -9.00 *END S_L_full_moon1 *BEGIN S_L_full_moon2 0 1 7.90 73.73 3.05 *END S_L_full_moon2 *BEGIN S_L_full_moon3 0 1 6.10 117.75 -17.55 1 2 10.39 158.73 -15.01 2 3 11.89 175.75 -1.98 3 4 6.18 192.75 11.00 4 5 4.49 195.69 -26.05 5 6 6.83 170.79 -9.01 6 7 16.34 171.75 -4.00 7 8 14.92 169.23 -4.00 8 9 18.29 165.76 -5.49 9 10 8.96 170.82 0.00 *END S_L_full_moon3 *BEGIN S_L_JB_MAIN52 1 2 10.13 211.71 -1.98 2 3 24.48 121.67 -10.00 3 4 9.65 170.64 2.02 4 5 14.73 136.64 -14.03 5 6 4.12 132.78 -12.49 6 7 3.63 118.69 3.00 7 8 5.47 165.61 0.00 8 9 6.16 175.20 -17.96 9 10 2.26 282.44 -15.14 10 11 4.38 209.57 -20.99 11 12 12.92 201.67 -3.99 12 13 22.73 221.16 0.98 13 14 9.41 210.69 -3.96 14 15 4.26 215.11 -5.12 15 16 9.32 236.67 4.00 16 17 3.47 286.73 11.13 17 18 5.64 232.64 -3.05 18 19 13.64 211.66 -0.50 19 20 9.31 246.18 11.02 20 21 14.01 237.63 0.49 21 22 10.91 214.70 1.52 22 23 23.18 238.17 5.00 *END S_L_JB_MAIN52 *BEGIN S_L_JB_MAIN53 0 1 4.10 79.54 -5.88 1 2 5.50 70.69 -9.85 2 3 5.24 68.74 -11.78 3 4 5.20 83.46 -15.74 4 5 9.34 111.93 -13.74 5 6 9.75 90.24 -14.73 6 7 0.51 90.00 88.88 7 8 0.45 0.00 -88.73 8 9 7.47 103.11 -14.73 9 10 2.00 166.26 -21.77 10 11 8.42 212.48 0.00 11 12 3.17 219.74 5.24 12 13 3.94 234.94 4.07 13 14 5.55 250.12 14.18 14 15 1.64 200.31 34.48 15 16 6.63 163.01 35.90 16 17 15.88 181.15 32.05 17 18 1.61 219.38 31.49 18 19 0.50 90.00 -88.85 19 20 4.77 298.86 20.35 20 21 13.31 257.51 17.30 21 22 2.29 246.14 18.31 22 23 2.27 217.69 11.19 23 24 5.98 125.92 -14.83 24 25 4.88 106.20 -18.76 25 26 10.85 207.77 3.17 26 27 6.98 208.70 1.89 27 28 7.63 87.59 2.93 28 29 9.94 103.35 15.70 *END S_L_JB_MAIN53 *BEGIN S_L_JB_MAIN54 0 1 11.93 144.76 -22.01 1 2 8.20 95.81 19.96 *END S_L_JB_MAIN54 *BEGIN S_L_JB_MAIN55 0 1 11.01 126.74 -35.99 *END S_L_JB_MAIN55 *BEGIN S_L_JB_MAIN56 0 1 12.79 176.77 -17.00 1 2 6.40 147.80 -10.98 *END S_L_JB_MAIN56 *BEGIN S_L_JB_MAIN57 0 1 12.79 176.77 -17.00 *END S_L_JB_MAIN57 *BEGIN S_L_JB_MAIN58 0 1 8.40 174.77 -24.03 1 2 19.06 312.77 35.00 *END S_L_JB_MAIN58 *BEGIN S_L_JB_MAIN59 0 1 8.73 277.80 13.99 *END S_L_JB_MAIN59 *BEGIN S_L_JB_MAIN60 0 1 9.02 101.69 -7.96 1 2 17.07 79.65 -4.00 2 3 14.85 73.67 -5.02 3 4 6.76 34.62 -11.00 4 5 3.75 4.74 -0.92 5 6 6.75 59.68 0.00 6 7 19.50 59.17 -3.00 7 8 22.25 31.15 0.00 8 9 25.41 9.15 3.99 9 10 18.20 40.68 0.00 10 11 23.67 65.15 0.51 11 12 6.19 119.63 0.00 12 13 6.23 94.61 2.95 *END S_L_JB_MAIN60 *BEGIN S_L_JB_MAIN61 0 1 2.88 208.35 -5.98 1 2 2.72 274.22 -1.48 2 3 19.13 205.83 -4.98 3 4 6.54 208.26 -5.97 4 5 10.80 191.83 -3.50 5 6 24.00 205.35 -3.99 6 7 8.86 197.38 -7.98 7 8 8.81 202.89 -4.03 8 9 9.03 200.85 -1.97 9 10 7.88 225.57 1.96 10 11 13.05 150.68 -14.46 11 12 2.83 221.83 -18.54 12 13 2.90 213.63 -7.93 13 14 2.83 253.38 38.95 14 15 25.00 223.63 4.43 15 16 7.18 224.60 3.91 16 17 13.30 255.35 6.78 *END S_L_JB_MAIN61 *END SurveyFromDXF CaveConverter_src/test/data/regression/GourAven_pt_ref.text0000644000000000000000000000606013030252172023231 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.GourAven2010.154 1 -1 1 1 1 1 0 1 31 31 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 2.24 138.03 28.32 0.00 0.00 0.00 0.00 1 2 1 1 1 5.91 68.94 27.68 4.68 5.81 1.03 1.09 1 3 1 1 1 5.08 325.55 56.76 0.99 0.00 1.03 3.60 1 4 1 1 1 4.92 67.91 23.86 5.52 9.34 2.80 1.75 1 5 1 1 1 2.00 335.66 33.09 1.32 1.35 1.84 0.75 1 6 1 1 1 11.33 254.92 -5.02 0.98 2.71 0.90 1.13 1 7 1 1 1 4.83 313.49 34.36 4.27 4.00 5.17 1.33 1 8 1 1 1 10.95 53.79 35.32 0.00 2.18 3.27 1.36 1 9 1 1 1 9.78 63.92 3.27 1.68 0.83 1.69 0.61 1 10 1 1 1 4.02 63.11 22.07 0.27 0.24 0.52 0.36 1 11 1 1 1 2.66 122.85 6.23 1.47 1.13 0.98 0.26 1 12 1 1 1 4.68 26.31 41.16 2.09 5.63 6.53 2.98 1 13 1 1 1 4.74 255.91 20.70 0.31 0.00 0.60 0.83 1 14 1 1 1 3.65 236.22 -5.06 0.27 0.36 8.22 0.28 1 15 1 1 1 1.18 302.23 22.54 0.29 0.00 4.58 0.80 1 16 1 1 1 3.01 252.40 20.56 0.28 0.32 0.76 0.93 1 17 1 1 1 2.80 260.36 32.10 0.77 0.00 1.87 1.01 1 18 1 1 1 2.51 128.54 27.56 1.71 0.28 1.80 0.48 1 19 1 1 1 1.60 80.91 -6.44 0.00 0.63 1.34 0.48 1 20 1 1 1 2.62 204.21 -3.57 0.00 0.70 3.65 0.47 1 21 1 1 1 2.74 271.25 46.82 0.25 1.41 9.90 0.00 1 22 1 1 1 5.18 24.86 41.32 3.03 2.57 11.68 0.84 1 23 1 1 1 6.09 67.51 35.08 0.00 0.58 1.94 1.37 1 24 1 1 1 2.80 328.47 -45.49 0.00 0.84 0.83 0.81 1 25 1 1 1 3.96 22.72 -39.81 0.88 0.66 0.00 0.69 1 26 1 1 1 2.56 115.80 -45.71 1.17 0.00 1.02 0.39 1 27 1 1 1 2.20 84.02 -7.90 0.92 0.19 0.00 0.38 1 28 1 1 1 1.36 70.41 62.56 0.31 1.45 0.00 0.59 1 29 1 1 1 1.39 120.04 -18.84 1.58 0.00 1.80 6.23 1 30 1 1 1 0.86 108.40 6.35 0.00 0.00 0.00 0.00 1 31 1 1 1 8.52 166.76 -79.71 0.00 0.00 0.00 0.00CaveConverter_src/test/data/regression/2596_Petirrojo_in.svx0000644000000000000000000000100112560565206023132 0ustar rootroot*begin 2596_Petirrojo ;complete known cave ;surveyors: Chris Agnew, Dave Garman ;date 070401 *CALIBRATE declination 2.28 *ENTRANCE 5 *FIX 5 452178 4800356 0239 ;declination is 2 41' (2.68) for 2004 changing by 8'E per year. ; 2.55 used for 2005 ; 2.42 used for 2006 ; 2.28 used for 2007 ; 2.15 used for 2008 ;From To Tape Compass Clino L R U D 2 1 6.20 - -V;2 .2 .2 3.5 6.2 3 2 2.04 41 -7;3 2 0 4.5 1.6 4 3 4.59 340 -26;4 0 1.3 4 1.3 5 4 6.81 022 -56;5 .4 .4 .4 0 *end 2596_Petirrojo CaveConverter_src/test/data/regression/CaseInsensitive_st_nsp_ref.text0000644000000000000000000000315513030252172025464 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.CaseInsensitiveTest.Entrance 1 -1 1 1 1 1 0 2 5 5 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 1.50 63.80 -2.00 0.00 0.00 0.00 0.00 1 2 1 1 1 3.00 0.00 -90.00 0.00 0.00 0.00 0.00 1 3 1 1 1 8.50 19.80 7.00 0.00 0.00 0.00 0.00 1 4 1 1 1 15.70 85.80 -2.00 0.00 0.00 0.00 0.00 1 5 1 1 1 2.10 355.80 -10.00 0.00 0.00 0.00 0.00 2 -2 1 1 1 Series 2-root.CaseInsensitiveTest.Downstream 2 -1 1 1 1 2 0 2 5 5 3 0 2 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 1 1 1 1 9.70 117.65 4.00 0.00 0.00 0.00 0.00 2 2 1 1 1 8.60 106.65 -2.00 0.00 0.00 0.00 0.00 2 3 1 1 1 6.90 209.65 5.00 0.00 0.00 0.00 0.00 2 4 1 1 1 9.60 108.65 0.00 0.00 0.00 0.00 0.00 2 5 1 1 1 20.00 110.65 2.00 0.00 0.00 0.00 0.00CaveConverter_src/test/data/regression/0081_Carcavuezo_ss_ref.svx0000644000000000000000000005773312560565154024146 0ustar rootroot*BEGIN 0081_Carcavuezo 0 1 5.00 0.00 0.00 1 2 13.30 81.25 -8.00 2 3 5.10 101.31 0.00 3 4 4.12 165.96 0.00 4 5 2.23 116.56 0.00 5 6 4.00 180.00 0.00 6 7 9.00 90.00 0.00 7 8 38.47 81.02 0.00 8 9 2.00 180.00 0.00 9 10 8.60 262.87 -20.00 10 11 16.76 252.64 0.00 11 12 5.00 143.13 0.00 12 13 5.38 248.19 0.00 5 14 32.25 82.87 0.00 14 15 6.32 18.43 0.00 15 16 22.45 84.29 -26.00 16 17 12.37 15.94 -53.00 17 18 20.10 264.29 0.00 17 19 35.86 59.85 -1.00 19 20 132.19 50.52 -1.00 20 21 24.59 63.43 0.00 16 22 6.05 79.45 13.00 22 23 2.40 55.95 45.00 23 24 5.15 0.00 90.00 24 25 6.90 23.95 42.00 25 26 17.55 263.45 11.00 26 27 6.18 291.95 16.00 27 28 8.16 15.95 -24.00 28 29 17.45 90.45 -6.00 29 30 13.70 79.45 5.00 30 31 22.60 89.95 -10.00 31 32 13.00 190.95 32.00 32 33 8.29 213.95 5.00 33 34 23.25 263.95 -11.00 34 35 4.70 353.95 -29.00 34 36 30.45 345.95 -10.00 19 37 8.43 98.15 5.00 37 38 6.30 133.95 38.00 38 39 5.90 174.95 0.00 39 40 5.40 82.95 8.00 40 41 2.00 65.95 -30.00 41 42 3.50 179.95 -42.00 42 43 9.60 153.95 4.00 43 44 9.60 153.95 4.00 44 45 5.30 175.95 26.00 45 46 6.40 213.95 -8.00 46 47 4.40 223.95 30.00 47 48 3.00 0.00 -90.00 48 49 2.40 183.95 0.00 49 50 6.00 114.95 34.00 50 51 1.70 93.95 0.00 51 52 1.90 163.95 10.00 52 53 1.40 83.95 0.00 53 54 3.80 143.95 35.00 54 55 3.30 140.95 -12.00 55 56 2.00 0.00 -90.00 56 57 4.50 94.95 -18.00 57 58 3.70 83.95 0.00 58 59 2.20 0.00 -90.00 59 60 2.70 23.95 0.00 60 61 3.60 45.95 0.00 61 62 3.70 350.95 20.00 62 63 0.90 8.95 0.00 63 64 0.90 0.00 90.00 64 65 0.40 8.95 0.00 65 66 11.90 70.95 0.00 66 67 2.70 73.95 30.00 67 68 6.20 93.95 35.00 68 69 2.30 84.95 0.00 69 70 10.90 79.95 -2.00 70 71 27.50 289.95 0.00 71 72 2.60 313.95 38.00 70 73 23.20 89.95 2.00 73 74 29.60 73.95 -3.00 74 75 30.00 73.45 0.00 75 76 30.00 74.95 2.00 76 77 12.50 85.95 5.00 77 78 7.70 53.95 5.00 78 79 9.50 48.95 -3.00 77 80 21.80 112.95 -4.00 80 81 30.00 90.95 -2.00 81 82 21.10 117.95 4.00 82 83 18.10 73.45 -4.00 83 84 16.20 86.95 1.00 84 85 30.00 97.95 0.00 85 86 30.00 95.45 1.00 86 87 30.00 102.95 0.00 87 88 18.30 61.45 -3.00 88 89 24.60 105.45 1.00 82 90 15.00 172.95 1.00 90 91 20.20 236.45 -1.00 91 92 30.00 235.95 2.00 92 93 30.00 233.45 3.00 93 94 18.60 196.45 6.00 94 95 8.40 161.95 -1.00 95 96 4.20 116.45 -10.00 96 97 5.00 113.95 0.00 97 98 6.00 88.95 0.00 98 99 10.00 263.95 -2.00 93 100 7.80 321.45 2.00 100 101 6.80 314.95 -2.00 101 102 10.20 273.95 6.00 102 103 11.00 262.95 1.00 103 104 24.10 253.95 4.00 104 105 7.00 268.95 -3.00 93 106 7.70 180.95 10.00 106 107 8.20 114.95 2.00 89 108 15.40 35.95 3.00 108 109 9.00 321.95 10.00 109 110 11.20 313.95 -31.00 110 111 14.50 30.95 -9.00 111 112 6.60 69.95 -35.00 112 113 5.30 36.95 -8.00 113 114 7.60 19.95 25.00 114 115 19.20 50.95 -4.00 115 116 12.40 83.95 -1.00 116 117 2.80 64.95 -34.00 117 118 6.70 69.95 -1.00 118 119 4.20 47.95 15.00 119 120 20.00 71.95 -1.00 120 121 20.00 71.95 -4.00 121 122 8.90 27.95 -5.00 122 123 5.70 338.95 0.00 123 124 8.40 309.95 32.00 124 125 12.30 275.95 0.00 125 126 7.40 336.95 -17.00 126 127 7.10 328.95 4.00 127 128 9.80 68.95 6.00 128 129 7.30 40.95 -6.00 129 130 6.70 341.95 -5.00 130 131 7.50 26.95 5.00 131 132 6.20 56.95 -11.00 132 133 5.90 31.95 0.00 133 134 2.20 341.95 -2.00 134 135 20.00 34.95 -3.00 135 136 14.50 4.95 -4.00 136 137 11.10 33.95 -2.00 137 138 7.80 54.95 0.00 138 139 2.10 118.95 8.00 139 140 20.00 47.96 -2.00 140 141 6.70 25.95 2.00 141 142 6.90 3.95 -3.00 142 143 6.90 63.95 5.00 143 144 6.00 359.95 -7.00 144 145 10.40 21.95 -5.00 145 146 5.40 7.95 -4.00 146 147 12.30 341.95 -5.00 147 148 2.90 8.95 8.00 148 149 5.30 62.95 0.00 149 150 2.10 324.95 31.00 150 151 4.10 0.00 90.00 151 152 11.10 74.95 5.00 140 153 2.00 308.95 12.00 153 154 12.00 229.45 1.00 154 155 13.10 11.95 -1.00 155 156 22.00 31.95 -4.00 156 157 7.40 1.95 0.00 157 158 7.80 38.95 2.00 158 159 5.30 3.45 -5.00 159 160 13.70 355.95 1.00 160 161 2.80 322.95 7.00 161 162 3.40 266.95 -5.00 162 163 3.70 206.95 4.00 163 164 2.60 236.95 -1.00 164 165 2.20 234.95 -7.00 165 166 2.80 1.45 8.00 166 167 3.90 316.95 -7.00 167 168 5.30 236.45 4.00 168 169 7.20 331.95 -9.00 169 170 4.40 232.95 8.00 170 171 1.20 159.95 14.00 171 172 6.10 248.95 -3.00 172 173 4.50 322.95 -14.00 173 174 6.70 220.95 5.00 174 175 7.20 138.95 -3.00 175 176 5.00 229.95 5.00 176 177 6.20 309.95 2.00 177 178 3.30 331.95 4.00 178 179 8.10 238.95 1.00 179 180 7.10 333.95 6.00 180 181 1.90 236.45 25.00 181 182 6.50 250.95 -15.00 182 183 3.20 183.95 -50.00 183 184 6.20 216.95 0.00 184 185 13.80 238.95 2.00 185 186 10.90 212.95 -2.00 186 187 16.50 277.95 0.00 187 188 11.20 99.11 2.00 188 189 7.10 197.11 2.00 189 190 6.20 274.11 0.00 190 191 8.60 230.11 0.00 *EQUATE 191 192 *EQUATE 192 193 *EQUATE 193 194 *EQUATE 194 195 89 196 14.50 113.92 11.00 196 197 20.00 76.95 3.00 197 198 10.50 72.95 12.00 198 199 10.80 102.95 2.00 199 200 18.80 83.95 -4.00 200 201 17.30 157.95 -4.00 201 202 10.40 145.95 10.00 202 203 20.00 85.95 -2.00 203 204 9.80 140.95 12.00 204 205 20.00 90.95 2.00 205 206 10.10 71.95 2.00 206 207 20.00 92.95 1.00 207 208 30.00 79.95 -1.00 208 209 30.00 80.95 1.00 209 210 30.00 94.95 2.00 210 211 1.00 0.00 -90.00 211 212 30.00 82.95 0.00 212 213 30.00 76.95 0.00 213 214 10.80 57.95 -1.00 214 215 12.40 64.95 -9.00 215 216 8.60 59.95 -2.00 216 217 8.10 45.95 -3.00 217 218 14.80 59.95 2.00 218 219 7.30 105.95 -13.00 219 220 13.40 60.95 -2.00 220 221 13.20 9.95 10.00 221 222 6.40 22.95 3.00 222 223 15.50 82.95 3.00 223 224 4.70 327.95 0.00 224 225 3.40 65.95 -2.00 225 226 6.70 332.95 -11.00 226 227 7.50 17.95 -2.00 227 228 1.40 21.95 -26.00 228 229 4.10 358.95 -6.00 229 230 15.70 16.95 -2.00 230 231 5.50 48.95 -2.00 231 232 13.30 40.95 1.00 232 233 8.70 66.95 -1.00 233 234 3.00 163.95 22.00 234 235 10.80 58.95 -3.00 235 236 8.40 41.95 20.00 236 237 16.40 81.95 -1.00 237 238 6.40 55.95 -25.00 238 239 5.90 63.95 0.00 239 240 7.60 158.95 -9.00 240 241 5.80 47.95 -6.00 241 242 10.20 62.95 2.00 242 243 4.30 100.95 4.00 243 244 8.30 57.95 -3.00 244 245 1.00 0.00 90.00 245 246 2.00 145.95 27.00 246 247 7.90 58.95 -18.00 247 248 7.40 77.95 -8.00 248 249 5.60 20.95 -2.00 249 250 4.40 45.95 -7.00 250 251 2.80 104.95 15.00 251 252 6.10 29.95 -7.00 252 253 10.00 28.95 -2.00 186 254 4.90 272.93 -3.00 254 255 7.50 199.95 0.00 255 256 6.40 277.95 0.00 256 257 9.30 226.95 1.00 257 258 8.20 327.95 -3.00 258 259 9.70 262.95 -3.00 259 260 6.90 217.95 3.00 260 261 17.00 252.95 2.00 261 262 16.70 306.95 -5.00 262 263 20.90 232.95 2.00 263 264 19.30 252.95 1.00 264 265 13.50 268.95 0.00 265 266 3.20 258.95 27.00 266 267 2.50 304.95 38.00 267 268 4.70 337.95 36.00 268 269 9.20 277.95 3.00 269 270 5.70 208.95 -16.00 270 271 17.40 263.95 -14.00 271 272 5.60 95.95 -3.00 272 273 14.30 202.95 7.00 273 274 5.00 231.95 39.00 274 275 15.20 174.95 -2.00 113 276 7.90 21.95 19.00 276 277 15.20 38.95 -4.00 277 278 12.00 351.95 28.00 278 279 18.50 273.95 -2.00 279 280 16.00 2.95 1.00 280 281 23.20 310.95 5.00 281 282 21.80 275.95 0.00 76 283 15.99 274.94 0.00 283 284 13.00 261.95 1.00 284 285 11.80 268.95 2.00 285 286 7.30 282.95 8.00 286 287 5.20 344.95 7.00 287 288 3.50 6.95 45.00 288 289 20.70 257.95 4.00 289 290 3.40 261.95 -24.00 290 291 1.80 290.95 -20.00 291 292 9.00 265.95 7.00 292 293 3.80 276.95 21.00 293 294 4.50 271.95 -29.00 294 295 1.30 225.95 -45.00 295 296 2.90 266.95 0.00 296 297 11.90 272.95 19.00 297 298 5.70 239.95 -9.00 298 299 7.30 269.95 38.00 299 300 5.70 275.95 12.00 289 301 3.00 63.95 7.00 301 302 4.10 328.95 -25.00 302 303 1.60 68.95 0.00 303 304 5.20 83.95 -1.00 304 305 1.30 33.95 0.00 305 306 6.50 66.95 5.00 306 307 8.60 73.95 -9.00 79 308 8.23 340.04 -1.00 308 309 1.00 0.00 90.00 309 310 2.24 330.03 0.00 310 311 3.91 267.03 -20.00 311 312 3.33 272.03 0.00 312 313 3.55 249.03 -2.00 313 314 5.62 284.03 0.00 314 315 1.83 160.03 43.00 315 316 2.56 267.03 50.00 316 317 2.74 219.03 50.00 317 318 20.20 93.03 0.00 317 319 5.86 248.03 -15.00 319 320 20.18 290.03 -5.00 320 321 18.20 74.03 10.00 320 322 14.82 255.03 27.00 320 323 11.46 355.03 0.00 323 324 7.85 283.03 9.00 323 325 4.90 74.03 4.00 325 326 22.60 100.03 0.00 115 327 3.89 0.00 90.00 327 328 10.70 223.03 3.00 328 329 5.00 274.03 -18.00 329 330 3.20 327.03 -12.00 330 331 4.30 279.03 -5.00 331 332 4.90 57.03 -6.00 332 333 3.20 43.03 9.00 333 334 3.20 280.03 -17.00 334 335 4.20 331.03 -1.00 335 336 10.80 50.03 -2.00 336 337 20.60 21.03 -5.00 337 338 9.40 65.03 33.00 338 339 12.20 288.03 1.00 338 340 5.30 42.03 -10.00 340 341 7.20 76.03 -23.00 341 342 4.60 147.03 -17.00 342 343 16.90 92.03 0.00 343 344 7.00 94.03 22.00 344 345 8.10 46.03 -8.00 327 346 6.70 106.03 3.00 346 347 5.00 125.03 3.00 347 348 15.00 44.03 -3.00 348 349 8.50 354.03 -13.00 349 350 9.40 108.03 -15.00 187 351 2.20 211.99 10.00 351 352 4.00 0.00 90.00 352 353 3.40 291.03 25.00 353 354 10.80 258.03 -1.00 354 355 6.20 292.03 -8.00 355 356 7.20 277.03 13.00 356 357 6.40 261.03 -41.00 357 358 14.90 254.03 -3.00 358 359 7.30 235.03 5.00 359 360 6.90 187.03 3.00 360 361 14.00 266.03 -4.00 361 362 10.70 231.03 4.00 362 363 7.60 302.03 0.00 363 364 5.40 250.03 0.00 364 365 5.70 292.03 -5.00 365 366 8.05 234.03 -2.00 366 367 6.85 153.03 3.00 367 368 8.45 278.03 -14.00 368 369 6.00 219.03 4.00 369 370 3.00 139.03 24.00 370 371 2.30 246.03 7.00 371 372 2.80 177.03 13.00 372 373 11.20 236.03 4.00 373 374 3.90 197.03 5.00 374 375 5.10 269.03 1.00 375 376 4.30 262.03 3.00 376 377 5.90 307.03 -10.00 377 378 4.60 341.03 -1.00 378 379 13.40 39.03 -5.00 379 380 10.50 13.03 1.00 380 381 6.30 11.03 1.00 381 382 7.40 254.03 -2.00 382 383 20.30 257.03 -12.00 383 384 18.20 202.03 17.00 384 385 8.60 208.03 14.00 385 386 9.90 191.03 0.00 386 387 15.38 132.38 1.00 387 388 12.60 19.11 -15.00 388 389 6.45 355.11 -13.00 389 390 5.60 359.11 0.00 390 391 22.00 67.11 10.00 391 392 7.10 127.11 3.00 392 393 2.50 169.11 -20.00 393 394 4.10 85.11 -20.00 394 395 2.10 26.11 -4.00 395 396 5.20 38.11 -36.00 396 397 12.50 78.11 4.00 397 398 30.00 84.11 1.00 398 399 13.40 136.11 4.00 399 400 3.10 229.11 -4.00 400 401 5.40 115.11 5.00 401 402 6.40 131.11 6.00 402 403 3.70 106.11 1.00 403 404 8.20 50.11 -5.00 404 405 7.50 49.11 -2.00 405 406 2.60 85.11 -9.00 406 407 1.70 194.11 7.00 407 408 6.60 124.11 -1.00 408 409 14.60 50.11 0.00 409 410 1.70 334.11 3.00 410 411 4.10 54.11 4.00 411 412 5.20 304.11 -13.00 412 413 9.10 55.11 3.00 413 414 2.70 109.11 3.00 414 415 5.35 22.11 -4.00 415 416 6.35 52.11 0.00 416 417 9.40 40.11 -1.00 417 418 6.80 94.11 2.00 418 419 7.10 23.11 -4.00 419 420 5.20 67.11 1.00 420 421 11.00 31.11 2.00 406 422 5.20 37.11 0.00 422 423 2.00 98.11 -6.00 423 424 2.40 100.11 2.00 424 425 4.80 73.11 1.00 425 426 1.60 96.11 5.00 426 427 2.50 71.11 -5.00 423 428 3.80 325.11 -2.00 428 429 5.45 240.11 6.00 429 430 5.30 250.11 3.00 430 431 3.75 159.11 8.00 431 432 7.60 231.11 1.00 432 433 4.40 316.11 0.00 433 434 4.60 275.11 0.00 434 435 8.80 334.11 -1.00 435 436 5.20 309.11 -6.00 429 437 3.80 337.11 -8.00 437 438 3.15 4.11 3.00 438 439 7.10 345.11 -5.00 439 440 10.60 317.11 -4.00 440 441 8.45 219.11 8.00 441 442 8.40 153.11 1.00 442 443 2.80 155.11 5.00 443 444 3.10 101.11 0.00 444 445 3.30 115.11 2.00 445 446 3.80 68.11 -3.00 386 447 15.59 132.66 1.00 447 448 12.60 304.11 12.00 448 449 8.00 280.11 -23.00 449 450 2.00 0.00 -90.00 450 451 15.60 283.11 -4.00 451 452 16.40 299.11 -4.00 452 453 30.00 272.11 -3.00 453 454 2.00 0.00 -90.00 454 455 30.00 282.11 0.00 77 456 12.10 45.11 1.00 456 457 4.80 305.11 18.00 457 458 3.20 10.11 78.00 458 459 3.10 349.11 -5.00 459 460 18.00 268.11 -4.00 460 461 20.00 287.11 -5.00 461 462 9.60 358.11 5.00 462 463 14.10 276.11 1.00 463 464 5.70 288.11 -35.00 464 465 8.00 256.11 -2.00 465 466 0.60 0.00 90.00 466 467 10.40 258.11 9.00 467 468 3.20 260.11 -33.00 468 469 4.30 286.11 -10.00 469 470 17.80 278.11 1.00 470 471 9.00 273.11 3.00 471 472 9.20 254.11 0.00 472 473 17.10 275.11 1.00 473 474 0.50 0.00 90.00 474 475 18.70 254.11 -2.00 475 476 9.40 251.11 2.00 476 477 20.00 252.11 1.00 477 478 20.00 253.11 2.00 478 479 6.00 264.11 2.00 479 480 7.80 263.11 -18.00 480 481 15.20 270.11 18.00 481 482 13.10 10.11 3.00 482 483 19.10 278.11 3.00 483 484 4.00 274.11 -44.00 484 485 20.00 279.11 0.00 485 486 20.00 276.11 -1.00 486 487 20.00 271.11 6.00 487 488 20.00 276.11 3.00 488 489 20.00 288.11 6.00 489 490 4.90 270.11 17.00 490 491 5.00 255.11 3.00 491 492 20.00 275.11 0.00 492 493 3.40 349.11 20.00 493 494 20.00 263.11 -7.00 494 495 20.00 277.11 0.00 495 496 20.00 255.11 1.00 496 497 20.00 253.11 0.00 497 498 20.00 268.11 1.00 498 499 20.00 258.11 0.00 499 500 20.00 265.11 0.00 500 501 12.30 280.11 17.00 501 502 19.50 259.11 -9.00 502 503 17.20 353.11 -4.00 503 504 20.00 339.11 3.00 504 505 20.00 295.11 -10.00 478 506 11.10 106.11 0.00 506 507 12.40 70.11 1.00 507 508 20.00 69.11 -1.00 508 509 20.00 79.11 0.00 509 510 20.00 73.11 -1.00 474 511 11.70 267.11 -3.00 511 512 18.40 269.11 0.00 512 513 5.20 274.11 1.00 513 514 10.60 267.11 -6.00 514 515 10.00 88.11 -25.00 515 516 12.70 99.11 -23.00 516 517 10.30 219.11 -3.00 517 518 18.30 234.11 2.00 518 519 14.70 229.11 3.00 519 520 10.40 128.11 3.00 520 521 1.90 224.11 78.00 461 522 13.70 256.11 26.00 522 523 6.00 254.11 14.00 523 524 5.00 4.11 35.00 502 525 8.95 209.11 25.00 525 526 18.35 286.11 4.00 526 527 22.00 292.11 -5.00 527 528 8.65 242.61 -8.00 528 529 13.20 250.11 -3.00 529 530 18.35 212.61 4.00 530 531 13.15 229.11 15.00 531 532 13.30 215.61 -15.00 532 533 30.00 231.11 -2.00 533 534 15.50 242.11 7.00 534 535 15.50 299.61 2.00 535 536 2.00 175.11 -2.00 536 537 7.30 270.11 -6.00 537 538 6.30 240.11 8.00 538 539 7.50 272.11 7.00 539 540 2.30 0.00 90.00 540 541 18.20 283.11 -2.00 541 542 14.50 277.11 0.00 534 543 30.70 53.11 -4.00 543 544 9.30 111.11 1.00 544 545 28.70 56.61 -2.00 545 546 22.10 64.61 0.00 546 547 11.10 48.61 -1.00 547 548 25.90 84.11 0.00 548 549 12.20 89.61 -3.00 549 550 2.40 0.00 -90.00 505 551 19.00 58.12 3.00 551 552 30.00 49.11 4.00 552 553 25.00 14.11 2.00 553 554 10.60 267.11 5.00 554 555 10.00 275.11 -8.00 555 556 30.00 266.11 0.00 556 557 30.00 271.11 0.00 557 558 13.90 281.11 0.00 558 559 30.00 271.11 1.00 559 560 30.00 264.11 9.00 560 561 21.50 261.11 -3.00 561 562 13.50 251.61 -16.00 562 563 11.00 245.11 -4.00 563 564 15.50 229.11 1.00 564 565 19.00 239.11 -1.00 565 566 30.00 248.11 0.00 566 567 30.00 267.11 0.00 567 568 19.50 224.11 0.00 568 569 9.60 263.11 19.00 569 570 10.20 233.11 -19.00 570 571 13.80 232.11 12.00 571 572 18.90 248.11 -6.00 572 573 18.70 278.11 -1.00 573 574 30.00 278.11 0.00 574 575 12.00 301.11 -3.00 575 576 18.70 279.11 2.00 576 577 13.70 299.11 5.00 577 578 30.00 279.11 -2.00 578 579 5.00 218.11 3.00 579 580 7.30 246.11 5.00 554 581 8.50 46.11 -5.00 581 582 5.30 354.11 10.00 582 583 12.50 273.11 -8.00 583 584 9.40 298.11 6.00 584 585 8.60 276.11 2.00 585 586 7.50 298.11 -17.00 586 587 29.00 306.11 2.00 587 588 1.80 0.00 -90.00 588 589 6.10 316.11 -8.00 589 590 1.80 0.00 90.00 590 591 4.80 12.11 32.00 591 592 4.40 272.11 48.00 592 593 20.00 261.11 -1.00 593 594 1.00 0.00 -90.00 594 595 6.60 323.11 -24.00 595 596 14.00 277.11 1.00 596 597 2.40 289.11 -20.00 597 598 2.60 358.11 40.00 598 599 2.60 259.11 8.00 599 600 10.50 278.11 12.00 572 601 15.20 162.11 1.00 601 602 14.40 103.11 5.00 602 603 5.00 203.11 5.00 603 604 9.10 89.11 3.00 604 605 16.70 175.11 12.00 605 606 22.40 95.11 5.00 603 607 1.40 0.00 90.00 607 608 6.10 185.11 4.00 608 609 3.60 120.11 6.00 609 610 5.30 153.11 4.00 610 611 1.90 278.11 -28.00 611 612 5.10 229.11 21.00 612 613 1.90 222.11 -19.00 613 614 1.20 319.11 -37.00 614 615 4.50 263.11 0.00 615 616 4.70 153.61 5.00 616 617 3.30 256.11 5.00 617 618 7.80 246.11 -4.00 618 619 6.30 266.11 9.00 619 620 3.80 240.11 12.00 620 621 3.70 251.11 -7.00 621 622 3.20 314.11 -25.00 622 623 2.70 254.11 0.00 600 624 1.00 0.00 90.00 624 625 6.10 249.11 -15.00 625 626 7.70 273.11 33.00 626 627 4.20 273.11 -23.00 627 628 4.60 231.11 -49.00 628 629 3.20 310.11 -12.00 629 630 2.40 266.11 12.00 630 631 1.80 277.11 5.00 631 632 3.40 291.11 3.00 632 633 3.00 256.11 20.00 633 634 3.60 274.11 -4.00 634 635 6.50 6.11 0.00 635 636 15.00 287.11 3.00 636 637 2.00 278.11 -10.00 637 638 11.00 275.11 -1.00 638 639 1.90 338.11 19.00 639 640 1.40 277.11 20.00 640 641 6.10 292.11 3.00 641 642 4.60 281.11 -1.00 0 643 4.84 342.11 -62.00 643 644 2.85 50.11 -15.00 644 645 5.20 68.61 -19.00 645 646 11.50 83.11 -25.00 646 647 2.60 165.11 9.00 647 648 6.80 102.11 9.00 648 649 27.10 80.11 -4.00 649 650 8.70 41.11 6.00 650 651 18.20 83.61 4.00 651 652 2.90 307.11 2.00 652 653 7.90 89.11 -34.00 653 654 4.60 319.11 -49.00 654 655 4.50 44.11 -38.00 655 656 4.70 0.00 -90.00 656 657 1.45 109.11 -28.00 657 658 2.75 2.11 -6.00 658 659 1.10 0.00 -90.00 659 660 3.50 347.11 0.00 660 661 3.10 53.11 12.00 661 662 3.30 69.11 23.00 662 663 7.25 53.61 5.00 663 664 1.35 0.00 90.00 664 665 27.50 79.61 -4.00 665 666 2.80 0.00 -90.00 666 667 11.00 308.61 -4.00 667 668 13.95 46.11 0.00 668 669 11.20 0.00 90.00 669 670 23.20 270.61 0.00 668 671 19.65 51.61 -3.00 671 672 27.80 55.61 2.00 672 673 24.35 39.61 0.00 673 674 11.30 47.11 26.00 674 675 12.45 83.61 -23.00 675 676 4.60 17.11 17.00 676 677 9.45 84.11 7.00 677 678 12.30 19.61 -7.00 678 679 30.00 82.11 -4.00 0 680 3.44 355.11 -35.00 680 681 2.40 0.00 -90.00 681 682 2.40 59.11 -5.00 682 683 5.30 80.11 -7.00 683 684 3.70 50.11 -23.00 684 685 7.80 98.11 -33.00 685 686 3.30 142.11 12.00 686 687 4.80 97.11 8.00 550 688 4.00 187.16 6.00 688 689 8.50 183.11 -1.00 689 690 5.50 242.11 -2.00 690 691 4.00 268.11 1.00 691 692 6.80 240.11 0.00 692 693 4.80 273.11 0.00 693 694 6.20 259.11 0.00 694 695 5.90 221.11 -2.00 695 696 9.00 90.11 0.00 696 697 8.10 83.11 0.00 697 698 2.60 173.11 -4.00 698 699 10.50 93.11 1.00 699 700 24.40 93.11 -2.00 700 701 2.40 276.11 -9.00 701 702 4.00 96.11 0.00 702 703 2.40 233.11 -8.00 703 704 3.10 99.11 -6.00 704 705 6.40 238.11 -4.00 705 706 5.50 108.11 1.00 706 707 4.90 96.11 -6.00 707 708 6.50 99.11 -2.00 708 709 6.00 92.11 -4.00 709 710 5.80 145.11 -10.00 710 711 5.50 132.11 3.00 711 712 4.50 187.11 8.00 712 713 6.80 287.11 -33.00 713 714 4.00 241.11 4.00 714 715 15.50 275.11 -3.00 715 716 16.60 260.11 3.00 716 717 7.90 17.11 4.00 717 718 12.50 263.11 3.00 718 719 12.80 267.11 5.00 713 720 9.10 110.11 -14.00 720 721 3.00 182.11 0.00 721 722 10.90 90.11 -1.00 534 723 5.99 164.15 -31.00 723 724 4.00 118.11 -18.00 724 725 1.00 184.11 0.00 725 726 3.90 158.11 -25.00 726 727 12.90 66.11 -14.00 727 728 19.90 104.11 3.00 482 729 15.50 189.11 -5.00 729 730 9.30 102.11 23.00 730 731 15.70 143.11 1.00 731 732 15.50 292.11 2.00 482 733 9.20 67.12 -9.00 733 734 1.60 0.00 -90.00 734 735 7.90 0.00 -90.00 735 736 30.00 84.11 0.00 736 737 1.90 167.11 0.00 737 738 12.80 77.11 12.00 738 739 10.00 82.11 -31.00 739 740 7.20 189.11 -12.00 735 741 7.00 264.11 0.00 734 742 2.00 180.11 0.00 742 743 20.00 95.11 0.00 742 744 1.00 180.11 0.00 744 745 5.00 100.11 0.00 744 746 4.00 180.11 0.00 746 747 30.00 91.11 0.00 734 748 6.70 344.11 12.00 748 749 7.10 55.11 19.00 749 750 6.00 91.11 34.00 750 751 5.70 74.11 20.00 750 752 5.80 269.11 20.00 748 753 7.10 8.11 12.00 753 754 11.80 271.11 -2.00 747 755 1.30 8.11 12.00 357 756 5.40 12.11 19.00 357 757 5.29 252.16 -1.00 757 758 3.70 252.11 -2.00 758 759 2.50 252.11 -2.00 759 760 5.10 252.11 -2.00 760 761 3.40 239.11 3.00 761 762 10.20 196.11 8.00 762 763 2.30 196.11 8.00 763 764 4.10 267.11 0.00 764 765 5.50 267.11 0.00 765 766 3.70 267.11 0.00 766 767 5.00 232.11 13.00 767 768 3.60 255.11 6.00 768 769 1.40 315.11 -6.00 769 770 4.70 315.11 -6.00 770 771 5.70 275.11 0.00 771 772 2.00 275.11 0.00 772 773 3.80 314.11 -5.00 773 774 7.00 267.11 7.00 774 775 8.20 232.11 2.00 775 776 7.60 245.11 -2.00 776 777 1.50 210.11 9.00 777 778 6.70 273.11 0.00 778 779 3.70 197.11 0.00 779 780 5.30 0.00 -90.00 761 781 4.10 293.11 15.00 781 782 4.70 23.11 6.00 782 783 3.00 98.11 -5.00 783 784 5.10 66.11 -1.00 784 785 3.60 101.11 -5.00 785 786 1.90 15.11 7.00 786 787 2.50 97.11 3.00 761 788 7.70 158.11 7.00 788 789 1.80 127.11 9.00 762 790 3.40 292.11 -3.00 790 791 11.10 327.11 3.00 791 792 1.10 0.11 0.00 792 793 4.90 314.11 4.00 793 794 10.00 228.11 -5.00 794 795 6.00 284.11 0.00 795 796 1.00 0.00 90.00 764 797 4.50 149.11 12.00 797 798 2.80 197.11 6.00 798 799 1.60 131.11 27.00 799 800 4.90 283.11 -6.00 800 801 5.30 273.11 -1.00 767 802 2.60 299.11 15.00 802 803 3.00 359.11 0.00 803 804 2.50 312.11 0.00 804 805 4.00 282.11 -10.00 771 806 5.00 196.11 8.00 806 807 5.60 149.11 11.00 807 808 2.10 122.11 4.00 808 809 5.10 95.11 2.00 776 810 4.00 321.11 0.00 787 811 3.70 162.11 -5.00 785 812 2.90 168.11 9.00 784 813 5.10 154.11 -6.00 783 814 4.10 159.11 -11.00 789 815 6.90 254.11 -9.00 800 816 6.70 329.11 -12.00 801 817 5.70 344.11 -9.00 801 818 5.70 292.11 0.00 809 819 6.10 9.11 -6.00 806 820 9.50 90.11 -3.00 802 821 2.50 254.11 -14.00 805 822 2.50 165.11 19.00 796 823 18.40 246.11 3.00 641 824 3.49 346.90 -7.00 824 825 6.70 296.35 12.00 825 826 4.00 278.35 -11.00 826 827 5.50 296.35 26.00 827 828 4.50 2.35 -3.00 828 829 6.90 97.35 17.00 829 830 3.30 82.35 24.00 830 831 4.20 71.35 20.00 831 832 3.60 54.35 50.00 832 833 2.40 48.35 -10.00 833 834 2.20 63.35 43.00 834 835 1.70 16.35 40.00 835 836 1.20 292.35 3.00 836 837 1.90 0.00 90.00 837 838 6.20 62.35 22.00 838 839 5.00 101.35 2.00 839 840 4.10 67.35 -36.00 69 841 4.48 19.35 19.00 841 842 20.83 293.35 -1.00 842 843 1.00 0.00 90.00 843 844 6.65 289.35 0.00 844 845 1.40 0.00 -90.00 845 846 6.73 301.35 -5.00 846 847 4.58 286.35 40.00 847 848 3.46 101.35 20.00 848 849 4.65 28.35 4.00 849 850 2.54 59.35 -38.00 850 851 7.50 326.35 -16.00 851 852 6.10 264.35 -1.00 852 853 9.70 255.35 -5.00 851 854 14.93 75.35 -11.00 *END 0081_Carcavuezo CaveConverter_src/test/data/regression/2418_Trackside_ss_ref.svx0000644000000000000000000000100512560565202023732 0ustar rootroot*BEGIN 2418_Trackside *CALIBRATE declination 2.42 1 0 4.56 255.00 11.00 1 2 2.58 88.00 14.00 2 3 8.65 65.00 -3.00 4 3 4.83 104.00 14.00 5 3 6.65 265.00 4.00 5 6 11.45 82.00 -2.00 7 6 3.05 182.00 12.00 7 8 1.52 78.00 22.00 9 8 2.52 258.00 4.00 10 3 4.65 238.00 6.00 10 11 5.55 78.00 -12.00 12 11 3.60 216.00 -2.00 12 13 6.65 16.00 -3.00 13 14 1.00 30.00 0.00 15 14 9.10 0.00 90.00 15 16 7.68 100.00 -40.00 17 16 1.65 0.00 90.00 *END 2418_Trackside CaveConverter_src/test/data/regression/3334_Roadworks_ss_ref.svx0000644000000000000000000000130512560565224024001 0ustar rootroot*BEGIN 3334_Roadworks *DATE 2010.12.26 *CALIBRATE declination 2.08 0 0a 5.29 343.42 6.03 *FLAGS SPLAY 0 0b 4.19 324.08 2.91 *FLAGS NOT SPLAY 0 1 2.19 352.68 29.32 1 2 2.62 21.69 1.71 *FLAGS SPLAY 2 2a 1.36 73.92 23.87 2 2b 2.06 83.37 23.14 2 2c 1.94 115.57 18.83 *FLAGS NOT SPLAY 2 3 2.39 99.28 33.60 3 4 12.65 40.42 84.11 4 4a 13.83 57.47 -56.48 *FLAGS SPLAY 4 4b 13.13 46.59 -63.14 4 4c 3.81 37.18 -3.57 *FLAGS NOT SPLAY 4 4d 7.72 57.44 0.96 *FLAGS SPLAY 4 4e 3.78 76.87 -7.99 4 4f 1.48 99.85 7.07 *FLAGS NOT SPLAY 4 5 18.78 56.70 83.75 6 5 2.10 55.71 -71.56 7 6 2.11 140.78 -30.64 7 8 1.32 138.68 74.79 *END 3334_Roadworks CaveConverter_src/test/data/regression/0081_Carcavuezo_ref.svx0000644000000000000000000005773312114041272023422 0ustar rootroot*BEGIN 0081_Carcavuezo 0 1 5.00 0.00 0.00 1 2 13.30 81.25 -8.00 2 3 5.10 101.31 0.00 3 4 4.12 165.96 0.00 4 5 2.23 116.56 0.00 5 6 4.00 180.00 0.00 6 7 9.00 90.00 0.00 7 8 38.47 81.02 0.00 8 9 2.00 180.00 0.00 9 10 8.60 262.87 -20.00 10 11 16.76 252.64 0.00 11 12 5.00 143.13 0.00 12 13 5.38 248.19 0.00 5 14 32.25 82.87 0.00 14 15 6.32 18.43 0.00 15 16 22.45 84.29 -26.00 16 17 12.37 15.94 -53.00 17 18 20.10 264.29 0.00 17 19 35.86 59.85 -1.00 19 20 132.19 50.52 -1.00 20 21 24.59 63.43 0.00 16 22 6.05 79.45 13.00 22 23 2.40 55.95 45.00 23 24 5.15 0.00 90.00 24 25 6.90 23.95 42.00 25 26 17.55 263.45 11.00 26 27 6.18 291.95 16.00 27 28 8.16 15.95 -24.00 28 29 17.45 90.45 -6.00 29 30 13.70 79.45 5.00 30 31 22.60 89.95 -10.00 31 32 13.00 190.95 32.00 32 33 8.29 213.95 5.00 33 34 23.25 263.95 -11.00 34 35 4.70 353.95 -29.00 34 36 30.45 345.95 -10.00 19 37 8.43 98.15 5.00 37 38 6.30 133.95 38.00 38 39 5.90 174.95 0.00 39 40 5.40 82.95 8.00 40 41 2.00 65.95 -30.00 41 42 3.50 179.95 -42.00 42 43 9.60 153.95 4.00 43 44 9.60 153.95 4.00 44 45 5.30 175.95 26.00 45 46 6.40 213.95 -8.00 46 47 4.40 223.95 30.00 47 48 3.00 0.00 -90.00 48 49 2.40 183.95 0.00 49 50 6.00 114.95 34.00 50 51 1.70 93.95 0.00 51 52 1.90 163.95 10.00 52 53 1.40 83.95 0.00 53 54 3.80 143.95 35.00 54 55 3.30 140.95 -12.00 55 56 2.00 0.00 -90.00 56 57 4.50 94.95 -18.00 57 58 3.70 83.95 0.00 58 59 2.20 0.00 -90.00 59 60 2.70 23.95 0.00 60 61 3.60 45.95 0.00 61 62 3.70 350.95 20.00 62 63 0.90 8.95 0.00 63 64 0.90 0.00 90.00 64 65 0.40 8.95 0.00 65 66 11.90 70.95 0.00 66 67 2.70 73.95 30.00 67 68 6.20 93.95 35.00 68 69 2.30 84.95 0.00 69 70 10.90 79.95 -2.00 70 71 27.50 289.95 0.00 71 72 2.60 313.95 38.00 70 73 23.20 89.95 2.00 73 74 29.60 73.95 -3.00 74 75 30.00 73.45 0.00 75 76 30.00 74.95 2.00 76 77 12.50 85.95 5.00 77 78 7.70 53.95 5.00 78 79 9.50 48.95 -3.00 77 80 21.80 112.95 -4.00 80 81 30.00 90.95 -2.00 81 82 21.10 117.95 4.00 82 83 18.10 73.45 -4.00 83 84 16.20 86.95 1.00 84 85 30.00 97.95 0.00 85 86 30.00 95.45 1.00 86 87 30.00 102.95 0.00 87 88 18.30 61.45 -3.00 88 89 24.60 105.45 1.00 82 90 15.00 172.95 1.00 90 91 20.20 236.45 -1.00 91 92 30.00 235.95 2.00 92 93 30.00 233.45 3.00 93 94 18.60 196.45 6.00 94 95 8.40 161.95 -1.00 95 96 4.20 116.45 -10.00 96 97 5.00 113.95 0.00 97 98 6.00 88.95 0.00 98 99 10.00 263.95 -2.00 93 100 7.80 321.45 2.00 100 101 6.80 314.95 -2.00 101 102 10.20 273.95 6.00 102 103 11.00 262.95 1.00 103 104 24.10 253.95 4.00 104 105 7.00 268.95 -3.00 93 106 7.70 180.95 10.00 106 107 8.20 114.95 2.00 89 108 15.40 35.95 3.00 108 109 9.00 321.95 10.00 109 110 11.20 313.95 -31.00 110 111 14.50 30.95 -9.00 111 112 6.60 69.95 -35.00 112 113 5.30 36.95 -8.00 113 114 7.60 19.95 25.00 114 115 19.20 50.95 -4.00 115 116 12.40 83.95 -1.00 116 117 2.80 64.95 -34.00 117 118 6.70 69.95 -1.00 118 119 4.20 47.95 15.00 119 120 20.00 71.95 -1.00 120 121 20.00 71.95 -4.00 121 122 8.90 27.95 -5.00 122 123 5.70 338.95 0.00 123 124 8.40 309.95 32.00 124 125 12.30 275.95 0.00 125 126 7.40 336.95 -17.00 126 127 7.10 328.95 4.00 127 128 9.80 68.95 6.00 128 129 7.30 40.95 -6.00 129 130 6.70 341.95 -5.00 130 131 7.50 26.95 5.00 131 132 6.20 56.95 -11.00 132 133 5.90 31.95 0.00 133 134 2.20 341.95 -2.00 134 135 20.00 34.95 -3.00 135 136 14.50 4.95 -4.00 136 137 11.10 33.95 -2.00 137 138 7.80 54.95 0.00 138 139 2.10 118.95 8.00 139 140 20.00 47.96 -2.00 140 141 6.70 25.95 2.00 141 142 6.90 3.95 -3.00 142 143 6.90 63.95 5.00 143 144 6.00 359.95 -7.00 144 145 10.40 21.95 -5.00 145 146 5.40 7.95 -4.00 146 147 12.30 341.95 -5.00 147 148 2.90 8.95 8.00 148 149 5.30 62.95 0.00 149 150 2.10 324.95 31.00 150 151 4.10 0.00 90.00 151 152 11.10 74.95 5.00 140 153 2.00 308.95 12.00 153 154 12.00 229.45 1.00 154 155 13.10 11.95 -1.00 155 156 22.00 31.95 -4.00 156 157 7.40 1.95 0.00 157 158 7.80 38.95 2.00 158 159 5.30 3.45 -5.00 159 160 13.70 355.95 1.00 160 161 2.80 322.95 7.00 161 162 3.40 266.95 -5.00 162 163 3.70 206.95 4.00 163 164 2.60 236.95 -1.00 164 165 2.20 234.95 -7.00 165 166 2.80 1.45 8.00 166 167 3.90 316.95 -7.00 167 168 5.30 236.45 4.00 168 169 7.20 331.95 -9.00 169 170 4.40 232.95 8.00 170 171 1.20 159.95 14.00 171 172 6.10 248.95 -3.00 172 173 4.50 322.95 -14.00 173 174 6.70 220.95 5.00 174 175 7.20 138.95 -3.00 175 176 5.00 229.95 5.00 176 177 6.20 309.95 2.00 177 178 3.30 331.95 4.00 178 179 8.10 238.95 1.00 179 180 7.10 333.95 6.00 180 181 1.90 236.45 25.00 181 182 6.50 250.95 -15.00 182 183 3.20 183.95 -50.00 183 184 6.20 216.95 0.00 184 185 13.80 238.95 2.00 185 186 10.90 212.95 -2.00 186 187 16.50 277.95 0.00 187 188 11.20 99.11 2.00 188 189 7.10 197.11 2.00 189 190 6.20 274.11 0.00 190 191 8.60 230.11 0.00 *EQUATE 191 192 *EQUATE 192 193 *EQUATE 193 194 *EQUATE 194 195 89 196 14.50 113.92 11.00 196 197 20.00 76.95 3.00 197 198 10.50 72.95 12.00 198 199 10.80 102.95 2.00 199 200 18.80 83.95 -4.00 200 201 17.30 157.95 -4.00 201 202 10.40 145.95 10.00 202 203 20.00 85.95 -2.00 203 204 9.80 140.95 12.00 204 205 20.00 90.95 2.00 205 206 10.10 71.95 2.00 206 207 20.00 92.95 1.00 207 208 30.00 79.95 -1.00 208 209 30.00 80.95 1.00 209 210 30.00 94.95 2.00 210 211 1.00 0.00 -90.00 211 212 30.00 82.95 0.00 212 213 30.00 76.95 0.00 213 214 10.80 57.95 -1.00 214 215 12.40 64.95 -9.00 215 216 8.60 59.95 -2.00 216 217 8.10 45.95 -3.00 217 218 14.80 59.95 2.00 218 219 7.30 105.95 -13.00 219 220 13.40 60.95 -2.00 220 221 13.20 9.95 10.00 221 222 6.40 22.95 3.00 222 223 15.50 82.95 3.00 223 224 4.70 327.95 0.00 224 225 3.40 65.95 -2.00 225 226 6.70 332.95 -11.00 226 227 7.50 17.95 -2.00 227 228 1.40 21.95 -26.00 228 229 4.10 358.95 -6.00 229 230 15.70 16.95 -2.00 230 231 5.50 48.95 -2.00 231 232 13.30 40.95 1.00 232 233 8.70 66.95 -1.00 233 234 3.00 163.95 22.00 234 235 10.80 58.95 -3.00 235 236 8.40 41.95 20.00 236 237 16.40 81.95 -1.00 237 238 6.40 55.95 -25.00 238 239 5.90 63.95 0.00 239 240 7.60 158.95 -9.00 240 241 5.80 47.95 -6.00 241 242 10.20 62.95 2.00 242 243 4.30 100.95 4.00 243 244 8.30 57.95 -3.00 244 245 1.00 0.00 90.00 245 246 2.00 145.95 27.00 246 247 7.90 58.95 -18.00 247 248 7.40 77.95 -8.00 248 249 5.60 20.95 -2.00 249 250 4.40 45.95 -7.00 250 251 2.80 104.95 15.00 251 252 6.10 29.95 -7.00 252 253 10.00 28.95 -2.00 186 254 4.90 272.93 -3.00 254 255 7.50 199.95 0.00 255 256 6.40 277.95 0.00 256 257 9.30 226.95 1.00 257 258 8.20 327.95 -3.00 258 259 9.70 262.95 -3.00 259 260 6.90 217.95 3.00 260 261 17.00 252.95 2.00 261 262 16.70 306.95 -5.00 262 263 20.90 232.95 2.00 263 264 19.30 252.95 1.00 264 265 13.50 268.95 0.00 265 266 3.20 258.95 27.00 266 267 2.50 304.95 38.00 267 268 4.70 337.95 36.00 268 269 9.20 277.95 3.00 269 270 5.70 208.95 -16.00 270 271 17.40 263.95 -14.00 271 272 5.60 95.95 -3.00 272 273 14.30 202.95 7.00 273 274 5.00 231.95 39.00 274 275 15.20 174.95 -2.00 113 276 7.90 21.95 19.00 276 277 15.20 38.95 -4.00 277 278 12.00 351.95 28.00 278 279 18.50 273.95 -2.00 279 280 16.00 2.95 1.00 280 281 23.20 310.95 5.00 281 282 21.80 275.95 0.00 76 283 15.99 274.94 0.00 283 284 13.00 261.95 1.00 284 285 11.80 268.95 2.00 285 286 7.30 282.95 8.00 286 287 5.20 344.95 7.00 287 288 3.50 6.95 45.00 288 289 20.70 257.95 4.00 289 290 3.40 261.95 -24.00 290 291 1.80 290.95 -20.00 291 292 9.00 265.95 7.00 292 293 3.80 276.95 21.00 293 294 4.50 271.95 -29.00 294 295 1.30 225.95 -45.00 295 296 2.90 266.95 0.00 296 297 11.90 272.95 19.00 297 298 5.70 239.95 -9.00 298 299 7.30 269.95 38.00 299 300 5.70 275.95 12.00 289 301 3.00 63.95 7.00 301 302 4.10 328.95 -25.00 302 303 1.60 68.95 0.00 303 304 5.20 83.95 -1.00 304 305 1.30 33.95 0.00 305 306 6.50 66.95 5.00 306 307 8.60 73.95 -9.00 79 308 8.23 340.04 -1.00 308 309 1.00 0.00 90.00 309 310 2.24 330.03 0.00 310 311 3.91 267.03 -20.00 311 312 3.33 272.03 0.00 312 313 3.55 249.03 -2.00 313 314 5.62 284.03 0.00 314 315 1.83 160.03 43.00 315 316 2.56 267.03 50.00 316 317 2.74 219.03 50.00 317 318 20.20 93.03 0.00 317 319 5.86 248.03 -15.00 319 320 20.18 290.03 -5.00 320 321 18.20 74.03 10.00 320 322 14.82 255.03 27.00 320 323 11.46 355.03 0.00 323 324 7.85 283.03 9.00 323 325 4.90 74.03 4.00 325 326 22.60 100.03 0.00 115 327 3.89 0.00 90.00 327 328 10.70 223.03 3.00 328 329 5.00 274.03 -18.00 329 330 3.20 327.03 -12.00 330 331 4.30 279.03 -5.00 331 332 4.90 57.03 -6.00 332 333 3.20 43.03 9.00 333 334 3.20 280.03 -17.00 334 335 4.20 331.03 -1.00 335 336 10.80 50.03 -2.00 336 337 20.60 21.03 -5.00 337 338 9.40 65.03 33.00 338 339 12.20 288.03 1.00 338 340 5.30 42.03 -10.00 340 341 7.20 76.03 -23.00 341 342 4.60 147.03 -17.00 342 343 16.90 92.03 0.00 343 344 7.00 94.03 22.00 344 345 8.10 46.03 -8.00 327 346 6.70 106.03 3.00 346 347 5.00 125.03 3.00 347 348 15.00 44.03 -3.00 348 349 8.50 354.03 -13.00 349 350 9.40 108.03 -15.00 187 351 2.20 211.99 10.00 351 352 4.00 0.00 90.00 352 353 3.40 291.03 25.00 353 354 10.80 258.03 -1.00 354 355 6.20 292.03 -8.00 355 356 7.20 277.03 13.00 356 357 6.40 261.03 -41.00 357 358 14.90 254.03 -3.00 358 359 7.30 235.03 5.00 359 360 6.90 187.03 3.00 360 361 14.00 266.03 -4.00 361 362 10.70 231.03 4.00 362 363 7.60 302.03 0.00 363 364 5.40 250.03 0.00 364 365 5.70 292.03 -5.00 365 366 8.05 234.03 -2.00 366 367 6.85 153.03 3.00 367 368 8.45 278.03 -14.00 368 369 6.00 219.03 4.00 369 370 3.00 139.03 24.00 370 371 2.30 246.03 7.00 371 372 2.80 177.03 13.00 372 373 11.20 236.03 4.00 373 374 3.90 197.03 5.00 374 375 5.10 269.03 1.00 375 376 4.30 262.03 3.00 376 377 5.90 307.03 -10.00 377 378 4.60 341.03 -1.00 378 379 13.40 39.03 -5.00 379 380 10.50 13.03 1.00 380 381 6.30 11.03 1.00 381 382 7.40 254.03 -2.00 382 383 20.30 257.03 -12.00 383 384 18.20 202.03 17.00 384 385 8.60 208.03 14.00 385 386 9.90 191.03 0.00 386 387 15.38 132.38 1.00 387 388 12.60 19.11 -15.00 388 389 6.45 355.11 -13.00 389 390 5.60 359.11 0.00 390 391 22.00 67.11 10.00 391 392 7.10 127.11 3.00 392 393 2.50 169.11 -20.00 393 394 4.10 85.11 -20.00 394 395 2.10 26.11 -4.00 395 396 5.20 38.11 -36.00 396 397 12.50 78.11 4.00 397 398 30.00 84.11 1.00 398 399 13.40 136.11 4.00 399 400 3.10 229.11 -4.00 400 401 5.40 115.11 5.00 401 402 6.40 131.11 6.00 402 403 3.70 106.11 1.00 403 404 8.20 50.11 -5.00 404 405 7.50 49.11 -2.00 405 406 2.60 85.11 -9.00 406 407 1.70 194.11 7.00 407 408 6.60 124.11 -1.00 408 409 14.60 50.11 0.00 409 410 1.70 334.11 3.00 410 411 4.10 54.11 4.00 411 412 5.20 304.11 -13.00 412 413 9.10 55.11 3.00 413 414 2.70 109.11 3.00 414 415 5.35 22.11 -4.00 415 416 6.35 52.11 0.00 416 417 9.40 40.11 -1.00 417 418 6.80 94.11 2.00 418 419 7.10 23.11 -4.00 419 420 5.20 67.11 1.00 420 421 11.00 31.11 2.00 406 422 5.20 37.11 0.00 422 423 2.00 98.11 -6.00 423 424 2.40 100.11 2.00 424 425 4.80 73.11 1.00 425 426 1.60 96.11 5.00 426 427 2.50 71.11 -5.00 423 428 3.80 325.11 -2.00 428 429 5.45 240.11 6.00 429 430 5.30 250.11 3.00 430 431 3.75 159.11 8.00 431 432 7.60 231.11 1.00 432 433 4.40 316.11 0.00 433 434 4.60 275.11 0.00 434 435 8.80 334.11 -1.00 435 436 5.20 309.11 -6.00 429 437 3.80 337.11 -8.00 437 438 3.15 4.11 3.00 438 439 7.10 345.11 -5.00 439 440 10.60 317.11 -4.00 440 441 8.45 219.11 8.00 441 442 8.40 153.11 1.00 442 443 2.80 155.11 5.00 443 444 3.10 101.11 0.00 444 445 3.30 115.11 2.00 445 446 3.80 68.11 -3.00 386 447 15.59 132.66 1.00 447 448 12.60 304.11 12.00 448 449 8.00 280.11 -23.00 449 450 2.00 0.00 -90.00 450 451 15.60 283.11 -4.00 451 452 16.40 299.11 -4.00 452 453 30.00 272.11 -3.00 453 454 2.00 0.00 -90.00 454 455 30.00 282.11 0.00 77 456 12.10 45.11 1.00 456 457 4.80 305.11 18.00 457 458 3.20 10.11 78.00 458 459 3.10 349.11 -5.00 459 460 18.00 268.11 -4.00 460 461 20.00 287.11 -5.00 461 462 9.60 358.11 5.00 462 463 14.10 276.11 1.00 463 464 5.70 288.11 -35.00 464 465 8.00 256.11 -2.00 465 466 0.60 0.00 90.00 466 467 10.40 258.11 9.00 467 468 3.20 260.11 -33.00 468 469 4.30 286.11 -10.00 469 470 17.80 278.11 1.00 470 471 9.00 273.11 3.00 471 472 9.20 254.11 0.00 472 473 17.10 275.11 1.00 473 474 0.50 0.00 90.00 474 475 18.70 254.11 -2.00 475 476 9.40 251.11 2.00 476 477 20.00 252.11 1.00 477 478 20.00 253.11 2.00 478 479 6.00 264.11 2.00 479 480 7.80 263.11 -18.00 480 481 15.20 270.11 18.00 481 482 13.10 10.11 3.00 482 483 19.10 278.11 3.00 483 484 4.00 274.11 -44.00 484 485 20.00 279.11 0.00 485 486 20.00 276.11 -1.00 486 487 20.00 271.11 6.00 487 488 20.00 276.11 3.00 488 489 20.00 288.11 6.00 489 490 4.90 270.11 17.00 490 491 5.00 255.11 3.00 491 492 20.00 275.11 0.00 492 493 3.40 349.11 20.00 493 494 20.00 263.11 -7.00 494 495 20.00 277.11 0.00 495 496 20.00 255.11 1.00 496 497 20.00 253.11 0.00 497 498 20.00 268.11 1.00 498 499 20.00 258.11 0.00 499 500 20.00 265.11 0.00 500 501 12.30 280.11 17.00 501 502 19.50 259.11 -9.00 502 503 17.20 353.11 -4.00 503 504 20.00 339.11 3.00 504 505 20.00 295.11 -10.00 478 506 11.10 106.11 0.00 506 507 12.40 70.11 1.00 507 508 20.00 69.11 -1.00 508 509 20.00 79.11 0.00 509 510 20.00 73.11 -1.00 474 511 11.70 267.11 -3.00 511 512 18.40 269.11 0.00 512 513 5.20 274.11 1.00 513 514 10.60 267.11 -6.00 514 515 10.00 88.11 -25.00 515 516 12.70 99.11 -23.00 516 517 10.30 219.11 -3.00 517 518 18.30 234.11 2.00 518 519 14.70 229.11 3.00 519 520 10.40 128.11 3.00 520 521 1.90 224.11 78.00 461 522 13.70 256.11 26.00 522 523 6.00 254.11 14.00 523 524 5.00 4.11 35.00 502 525 8.95 209.11 25.00 525 526 18.35 286.11 4.00 526 527 22.00 292.11 -5.00 527 528 8.65 242.61 -8.00 528 529 13.20 250.11 -3.00 529 530 18.35 212.61 4.00 530 531 13.15 229.11 15.00 531 532 13.30 215.61 -15.00 532 533 30.00 231.11 -2.00 533 534 15.50 242.11 7.00 534 535 15.50 299.61 2.00 535 536 2.00 175.11 -2.00 536 537 7.30 270.11 -6.00 537 538 6.30 240.11 8.00 538 539 7.50 272.11 7.00 539 540 2.30 0.00 90.00 540 541 18.20 283.11 -2.00 541 542 14.50 277.11 0.00 534 543 30.70 53.11 -4.00 543 544 9.30 111.11 1.00 544 545 28.70 56.61 -2.00 545 546 22.10 64.61 0.00 546 547 11.10 48.61 -1.00 547 548 25.90 84.11 0.00 548 549 12.20 89.61 -3.00 549 550 2.40 0.00 -90.00 505 551 19.00 58.12 3.00 551 552 30.00 49.11 4.00 552 553 25.00 14.11 2.00 553 554 10.60 267.11 5.00 554 555 10.00 275.11 -8.00 555 556 30.00 266.11 0.00 556 557 30.00 271.11 0.00 557 558 13.90 281.11 0.00 558 559 30.00 271.11 1.00 559 560 30.00 264.11 9.00 560 561 21.50 261.11 -3.00 561 562 13.50 251.61 -16.00 562 563 11.00 245.11 -4.00 563 564 15.50 229.11 1.00 564 565 19.00 239.11 -1.00 565 566 30.00 248.11 0.00 566 567 30.00 267.11 0.00 567 568 19.50 224.11 0.00 568 569 9.60 263.11 19.00 569 570 10.20 233.11 -19.00 570 571 13.80 232.11 12.00 571 572 18.90 248.11 -6.00 572 573 18.70 278.11 -1.00 573 574 30.00 278.11 0.00 574 575 12.00 301.11 -3.00 575 576 18.70 279.11 2.00 576 577 13.70 299.11 5.00 577 578 30.00 279.11 -2.00 578 579 5.00 218.11 3.00 579 580 7.30 246.11 5.00 554 581 8.50 46.11 -5.00 581 582 5.30 354.11 10.00 582 583 12.50 273.11 -8.00 583 584 9.40 298.11 6.00 584 585 8.60 276.11 2.00 585 586 7.50 298.11 -17.00 586 587 29.00 306.11 2.00 587 588 1.80 0.00 -90.00 588 589 6.10 316.11 -8.00 589 590 1.80 0.00 90.00 590 591 4.80 12.11 32.00 591 592 4.40 272.11 48.00 592 593 20.00 261.11 -1.00 593 594 1.00 0.00 -90.00 594 595 6.60 323.11 -24.00 595 596 14.00 277.11 1.00 596 597 2.40 289.11 -20.00 597 598 2.60 358.11 40.00 598 599 2.60 259.11 8.00 599 600 10.50 278.11 12.00 572 601 15.20 162.11 1.00 601 602 14.40 103.11 5.00 602 603 5.00 203.11 5.00 603 604 9.10 89.11 3.00 604 605 16.70 175.11 12.00 605 606 22.40 95.11 5.00 603 607 1.40 0.00 90.00 607 608 6.10 185.11 4.00 608 609 3.60 120.11 6.00 609 610 5.30 153.11 4.00 610 611 1.90 278.11 -28.00 611 612 5.10 229.11 21.00 612 613 1.90 222.11 -19.00 613 614 1.20 319.11 -37.00 614 615 4.50 263.11 0.00 615 616 4.70 153.61 5.00 616 617 3.30 256.11 5.00 617 618 7.80 246.11 -4.00 618 619 6.30 266.11 9.00 619 620 3.80 240.11 12.00 620 621 3.70 251.11 -7.00 621 622 3.20 314.11 -25.00 622 623 2.70 254.11 0.00 600 624 1.00 0.00 90.00 624 625 6.10 249.11 -15.00 625 626 7.70 273.11 33.00 626 627 4.20 273.11 -23.00 627 628 4.60 231.11 -49.00 628 629 3.20 310.11 -12.00 629 630 2.40 266.11 12.00 630 631 1.80 277.11 5.00 631 632 3.40 291.11 3.00 632 633 3.00 256.11 20.00 633 634 3.60 274.11 -4.00 634 635 6.50 6.11 0.00 635 636 15.00 287.11 3.00 636 637 2.00 278.11 -10.00 637 638 11.00 275.11 -1.00 638 639 1.90 338.11 19.00 639 640 1.40 277.11 20.00 640 641 6.10 292.11 3.00 641 642 4.60 281.11 -1.00 0 643 4.84 342.11 -62.00 643 644 2.85 50.11 -15.00 644 645 5.20 68.61 -19.00 645 646 11.50 83.11 -25.00 646 647 2.60 165.11 9.00 647 648 6.80 102.11 9.00 648 649 27.10 80.11 -4.00 649 650 8.70 41.11 6.00 650 651 18.20 83.61 4.00 651 652 2.90 307.11 2.00 652 653 7.90 89.11 -34.00 653 654 4.60 319.11 -49.00 654 655 4.50 44.11 -38.00 655 656 4.70 0.00 -90.00 656 657 1.45 109.11 -28.00 657 658 2.75 2.11 -6.00 658 659 1.10 0.00 -90.00 659 660 3.50 347.11 0.00 660 661 3.10 53.11 12.00 661 662 3.30 69.11 23.00 662 663 7.25 53.61 5.00 663 664 1.35 0.00 90.00 664 665 27.50 79.61 -4.00 665 666 2.80 0.00 -90.00 666 667 11.00 308.61 -4.00 667 668 13.95 46.11 0.00 668 669 11.20 0.00 90.00 669 670 23.20 270.61 0.00 668 671 19.65 51.61 -3.00 671 672 27.80 55.61 2.00 672 673 24.35 39.61 0.00 673 674 11.30 47.11 26.00 674 675 12.45 83.61 -23.00 675 676 4.60 17.11 17.00 676 677 9.45 84.11 7.00 677 678 12.30 19.61 -7.00 678 679 30.00 82.11 -4.00 0 680 3.44 355.11 -35.00 680 681 2.40 0.00 -90.00 681 682 2.40 59.11 -5.00 682 683 5.30 80.11 -7.00 683 684 3.70 50.11 -23.00 684 685 7.80 98.11 -33.00 685 686 3.30 142.11 12.00 686 687 4.80 97.11 8.00 550 688 4.00 187.16 6.00 688 689 8.50 183.11 -1.00 689 690 5.50 242.11 -2.00 690 691 4.00 268.11 1.00 691 692 6.80 240.11 0.00 692 693 4.80 273.11 0.00 693 694 6.20 259.11 0.00 694 695 5.90 221.11 -2.00 695 696 9.00 90.11 0.00 696 697 8.10 83.11 0.00 697 698 2.60 173.11 -4.00 698 699 10.50 93.11 1.00 699 700 24.40 93.11 -2.00 700 701 2.40 276.11 -9.00 701 702 4.00 96.11 0.00 702 703 2.40 233.11 -8.00 703 704 3.10 99.11 -6.00 704 705 6.40 238.11 -4.00 705 706 5.50 108.11 1.00 706 707 4.90 96.11 -6.00 707 708 6.50 99.11 -2.00 708 709 6.00 92.11 -4.00 709 710 5.80 145.11 -10.00 710 711 5.50 132.11 3.00 711 712 4.50 187.11 8.00 712 713 6.80 287.11 -33.00 713 714 4.00 241.11 4.00 714 715 15.50 275.11 -3.00 715 716 16.60 260.11 3.00 716 717 7.90 17.11 4.00 717 718 12.50 263.11 3.00 718 719 12.80 267.11 5.00 713 720 9.10 110.11 -14.00 720 721 3.00 182.11 0.00 721 722 10.90 90.11 -1.00 534 723 5.99 164.15 -31.00 723 724 4.00 118.11 -18.00 724 725 1.00 184.11 0.00 725 726 3.90 158.11 -25.00 726 727 12.90 66.11 -14.00 727 728 19.90 104.11 3.00 482 729 15.50 189.11 -5.00 729 730 9.30 102.11 23.00 730 731 15.70 143.11 1.00 731 732 15.50 292.11 2.00 482 733 9.20 67.12 -9.00 733 734 1.60 0.00 -90.00 734 735 7.90 0.00 -90.00 735 736 30.00 84.11 0.00 736 737 1.90 167.11 0.00 737 738 12.80 77.11 12.00 738 739 10.00 82.11 -31.00 739 740 7.20 189.11 -12.00 735 741 7.00 264.11 0.00 734 742 2.00 180.11 0.00 742 743 20.00 95.11 0.00 742 744 1.00 180.11 0.00 744 745 5.00 100.11 0.00 744 746 4.00 180.11 0.00 746 747 30.00 91.11 0.00 734 748 6.70 344.11 12.00 748 749 7.10 55.11 19.00 749 750 6.00 91.11 34.00 750 751 5.70 74.11 20.00 750 752 5.80 269.11 20.00 748 753 7.10 8.11 12.00 753 754 11.80 271.11 -2.00 747 755 1.30 8.11 12.00 357 756 5.40 12.11 19.00 357 757 5.29 252.16 -1.00 757 758 3.70 252.11 -2.00 758 759 2.50 252.11 -2.00 759 760 5.10 252.11 -2.00 760 761 3.40 239.11 3.00 761 762 10.20 196.11 8.00 762 763 2.30 196.11 8.00 763 764 4.10 267.11 0.00 764 765 5.50 267.11 0.00 765 766 3.70 267.11 0.00 766 767 5.00 232.11 13.00 767 768 3.60 255.11 6.00 768 769 1.40 315.11 -6.00 769 770 4.70 315.11 -6.00 770 771 5.70 275.11 0.00 771 772 2.00 275.11 0.00 772 773 3.80 314.11 -5.00 773 774 7.00 267.11 7.00 774 775 8.20 232.11 2.00 775 776 7.60 245.11 -2.00 776 777 1.50 210.11 9.00 777 778 6.70 273.11 0.00 778 779 3.70 197.11 0.00 779 780 5.30 0.00 -90.00 761 781 4.10 293.11 15.00 781 782 4.70 23.11 6.00 782 783 3.00 98.11 -5.00 783 784 5.10 66.11 -1.00 784 785 3.60 101.11 -5.00 785 786 1.90 15.11 7.00 786 787 2.50 97.11 3.00 761 788 7.70 158.11 7.00 788 789 1.80 127.11 9.00 762 790 3.40 292.11 -3.00 790 791 11.10 327.11 3.00 791 792 1.10 0.11 0.00 792 793 4.90 314.11 4.00 793 794 10.00 228.11 -5.00 794 795 6.00 284.11 0.00 795 796 1.00 0.00 90.00 764 797 4.50 149.11 12.00 797 798 2.80 197.11 6.00 798 799 1.60 131.11 27.00 799 800 4.90 283.11 -6.00 800 801 5.30 273.11 -1.00 767 802 2.60 299.11 15.00 802 803 3.00 359.11 0.00 803 804 2.50 312.11 0.00 804 805 4.00 282.11 -10.00 771 806 5.00 196.11 8.00 806 807 5.60 149.11 11.00 807 808 2.10 122.11 4.00 808 809 5.10 95.11 2.00 776 810 4.00 321.11 0.00 787 811 3.70 162.11 -5.00 785 812 2.90 168.11 9.00 784 813 5.10 154.11 -6.00 783 814 4.10 159.11 -11.00 789 815 6.90 254.11 -9.00 800 816 6.70 329.11 -12.00 801 817 5.70 344.11 -9.00 801 818 5.70 292.11 0.00 809 819 6.10 9.11 -6.00 806 820 9.50 90.11 -3.00 802 821 2.50 254.11 -14.00 805 822 2.50 165.11 19.00 796 823 18.40 246.11 3.00 641 824 3.49 346.90 -7.00 824 825 6.70 296.35 12.00 825 826 4.00 278.35 -11.00 826 827 5.50 296.35 26.00 827 828 4.50 2.35 -3.00 828 829 6.90 97.35 17.00 829 830 3.30 82.35 24.00 830 831 4.20 71.35 20.00 831 832 3.60 54.35 50.00 832 833 2.40 48.35 -10.00 833 834 2.20 63.35 43.00 834 835 1.70 16.35 40.00 835 836 1.20 292.35 3.00 836 837 1.90 0.00 90.00 837 838 6.20 62.35 22.00 838 839 5.00 101.35 2.00 839 840 4.10 67.35 -36.00 69 841 4.48 19.35 19.00 841 842 20.83 293.35 -1.00 842 843 1.00 0.00 90.00 843 844 6.65 289.35 0.00 844 845 1.40 0.00 -90.00 845 846 6.73 301.35 -5.00 846 847 4.58 286.35 40.00 847 848 3.46 101.35 20.00 848 849 4.65 28.35 4.00 849 850 2.54 59.35 -38.00 850 851 7.50 326.35 -16.00 851 852 6.10 264.35 -1.00 852 853 9.70 255.35 -5.00 851 854 14.93 75.35 -11.00 *END 0081_Carcavuezo CaveConverter_src/test/data/regression/survex_data_order_nested_in.svx0000644000000000000000000000056613030252172025555 0ustar rootroot*begin data_order_nested *data normal from to compass tape clino *equate first.3 second.1 *equate second.3 third.1 *begin first 1 2 050 9.45 0 2 3 045 4.51 -2 *end first *begin second *data normal from to compass clino tape 1 2 062 -1 7.35 2 3 014 0 11.65 *end second *begin third 1 2 055 2.63 -3 2 3 063 7.72 6 *end third *end data_order_nestedCaveConverter_src/test/data/regression/T_LRUD_in.txt0000644000000000000000000001405013030252172021514 0ustar rootrootT (m, 360) [1]: 2004/11/06 0.00 1.0 0.000 0.00 0.00 1.0 2.220 155.07 -6.40 [1] 1.0 1.840 133.24 -87.58 [1] 1.0 8.970 68.59 -7.44 [1] 1.0 6.070 262.41 7.25 [1] 1.1 1.0 3.750 38.38 16.41 [1] 1.1 1.0 3.750 39.15 15.81 [1] 1.1 1.0 3.750 38.97 15.77 [1] 1.1 0.660 132.46 -9.51 [1] 1.1 1.350 120.54 81.60 [1] 1.1 0.620 321.23 5.67 [1] 1.2 1.1 2.860 359.74 -44.03 [1] 1.2 1.1 2.850 359.83 -44.12 [1] 1.2 1.1 2.840 359.73 -44.17 [1] 1.2 3.730 262.13 3.55 [1] 1.2 1.870 298.42 4.42 [1] 1.2 1.400 3.96 7.32 [1] 1.2 1.310 98.59 10.72 [1] 1.2 0.700 19.12 79.66 [1] 1.2 0.570 207.27 -82.52 [1] 1.3 1.2 3.220 356.13 -10.43 [1] 1.3 1.2 3.200 356.47 -10.24 [1] 1.3 1.2 3.210 356.25 -10.32 [1] 1.3 0.400 16.10 55.83 [1] 1.3 0.970 228.49 32.14 [1] 1.3 13.320 292.75 53.20 [1] 1.3 0.670 121.73 88.40 [1] 1.3 1.590 41.18 2.58 [1] 1.4 1.3 3.140 296.16 4.53 [1] 1.4 1.3 3.140 296.30 4.62 [1] 1.4 1.3 3.140 296.41 4.64 [1] 1.4 0.490 325.93 86.36 [1] 1.4 0.990 45.65 8.48 [1] 1.4 1.040 216.58 8.20 [1] 1.5 1.4 2.040 315.48 14.49 [1] 1.5 1.4 2.040 315.31 14.54 [1] 1.5 1.4 2.040 315.48 14.68 [1] 1.5 1.000 303.58 78.66 [1] 1.5 1.080 132.05 9.66 [1] 1.5 1.050 12.79 14.14 [1] 1.5 0.930 257.40 8.73 [1] 1.6 1.5 4.440 247.32 6.10 [1] 1.6 1.5 4.430 246.92 6.31 [1] 1.6 1.5 4.430 246.82 6.30 [1] 1.6 1.130 291.01 83.64 [1] 1.6 0.550 343.52 0.66 [1] 1.6 0.380 169.34 1.97 [1] 1.7 1.6 4.300 270.80 -2.47 [1] 1.7 1.6 4.290 270.44 -2.62 [1] 1.7 1.6 4.300 270.54 -2.62 [1] 1.7 0.460 338.63 5.07 [1] 1.7 0.310 257.49 86.93 [1] 1.7 0.520 32.05 -88.23 [1] 1.8 1.7 2.550 232.96 17.02 [1] 1.8 1.7 2.520 232.94 16.59 [1] 1.8 1.7 2.550 232.84 17.08 [1] 1.8 0.910 135.16 86.15 [1] 1.8 0.280 70.02 7.81 [1] 1.8 0.320 289.59 3.66 [1] 1.9 1.8 2.440 161.57 1.33 [1] 1.9 1.8 2.440 161.69 1.27 [1] 1.9 1.8 2.450 161.80 1.36 [1] 1.9 0.280 50.74 -0.39 [1] 1.9 0.820 141.52 82.58 [1] 1.9 0.520 232.22 4.93 [1] 1.9 2.240 331.35 37.29 [1] 1.10 1.9 1.300 83.37 4.53 [1] 1.10 1.9 1.300 83.77 5.02 [1] 1.10 1.9 1.300 84.11 5.11 [1] 1.10 0.280 144.57 81.81 [1] 1.10 0.420 206.99 -3.70 [1] 1.10 0.220 17.73 11.54 [1] 1.10 0.510 309.96 -84.07 [1] 1.10 0.860 132.99 -0.15 [1] 1.11 1.10 1.490 113.18 9.03 [1] 1.11 1.10 1.490 113.14 8.42 [1] 1.11 1.10 1.490 113.08 8.51 [1] 1.11 0.350 91.22 81.36 [1] 1.11 1.540 55.43 73.20 [1] 1.11 0.220 14.46 0.99 [1] 1.11 0.710 293.51 -84.27 [1] 1.11 2.280 294.59 -29.60 [1] 1.12 1.5 3.530 19.47 -12.56 [1] 1.12 1.5 3.510 19.54 -12.63 [1] 1.12 1.5 3.520 19.64 -12.78 [1] 1.12 1.080 313.28 85.16 [1] 1.12 0.310 223.51 1.01 [1] 1.12 0.930 80.12 6.52 [1] 1.12 0.590 125.92 -83.93 [1] 1.13 1.12 4.490 319.83 -1.46 [1] 1.13 1.12 4.500 319.96 -1.50 [1] 1.13 1.12 4.500 319.99 -1.82 [1] 1.13 0.840 13.20 79.99 [1] 1.13 0.150 68.57 6.43 [1] 1.13 0.610 248.49 12.06 [1] 1.14 1.13 2.940 10.29 -15.69 [1] 1.14 1.13 2.940 10.32 -15.79 [1] 1.14 1.13 2.960 10.28 -15.69 [1] 1.14 0.770 55.88 0.37 [1] 1.14 0.580 331.51 80.78 [1] 1.14 0.550 135.86 -86.18 [1] 1.14 0.130 239.04 4.24 [1] 1.14 1.15 2.710 145.81 -8.92 [1] 1.14 1.15 2.920 147.06 -9.42 [1] CaveConverter_src/test/data/regression/nested_series_flags_ss_spl_ref.svx0000644000000000000000000000060613033264000026223 0ustar rootroot*BEGIN nested_series_flags *EQUATE 2 inner.2 *EQUATE 3 inner.3 *EQUATE 2 inner.2 1 2 9.08 189.31 -7.43 *FLAGS SPLAY 2 2a 7.47 208.36 -11.11 3 3a 2.10 353.60 5.03 3 3b 8.88 190.22 4.19 *FLAGS NOT SPLAY 3 4 3.94 109.34 5.39 *BEGIN inner *FLAGS SPLAY 2 2b 8.06 39.11 14.74 *FLAGS NOT SPLAY 2 3 18.55 116.98 -0.10 *END inner *END nested_series_flags CaveConverter_src/test/data/regression/survex_everything_in.svx0000644000000000000000000000206613030230474024271 0ustar rootroot*begin survex_everything *infer exports on *cs out OSGB:ST *copyright 1983 CUCC *entrance Ent *cs OSGB:ST *FIX Ent 53122.3 51308.5 237.3 ;From surface survey using two GPS fixes nearby under open clear sky *equate Ent aliased_splays.1 *equate aliased_splays.3 diving_tape_comp_depc.1 *equate diving_tape_comp_depc.3 diving_bearing_length.001 *begin aliased_splays *alias station - .. 1 2 12.21 073 -12 2 - 4.33 011 +02 2 - 1.64 180 +03 2 3 6.77 098 -04 *end aliased_splays *begin diving_tape_comp_depc *data diving from to tape compass depthchange 1 2 14.7 50 -1.7 2 3 5.78 65 -0.51 *end diving_tape_comp_depc *begin diving_bearing_length *export 001 ;We're not dealing with exports yet (ever?) *date 1999.07.01 ;Estimated middle of year this section was surveyed *calibrate declination +4.34 ;Based on estimated date ;was +5.17 *data diving from to bearing length fromdepth todepth 001 002 336.0 09.00 -08.30 -08.30 ;st001=kh02st073 002 003 285.0 13.00 -08.30 -09.21 *end diving_bearing_length *end survex_everythingCaveConverter_src/test/data/regression/TripComment_ref.text0000644000000000000000000004134212115304544023247 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.TrainingRoom.1 1 -1 1 1 1 2 0 1 1 1 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 1.04 47.72 83.13 0.00 0.00 0.00 0.00 2 -2 1 1 1 Series 2-root.TrainingRoom.1 2 -1 1 1 1 2 0 2 1 1 3 0 2 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 1 1 1 1 1.09 153.35 -85.85 0.00 0.00 0.00 0.00 3 -2 1 1 1 Series 3-root.TrainingRoom.1 3 -1 1 1 1 2 0 3 1 1 3 0 3 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 1 1 1 1 1.11 175.45 -0.10 0.00 0.00 0.00 0.00 4 -2 1 1 1 Series 4-root.TrainingRoom.1 4 -1 1 1 1 2 0 4 1 1 3 0 4 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4 1 1 1 1 5.01 277.41 17.22 0.00 0.00 0.00 0.00 5 -2 1 1 1 Series 5-root.TrainingRoom.1 5 -1 1 1 1 2 0 5 1 1 3 0 5 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 5 1 1 1 1 1.17 8.87 6.87 0.00 0.00 0.00 0.00 6 -2 1 1 1 Series 6-root.TrainingRoom.1 6 -1 1 1 1 2 0 6 1 1 3 0 6 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6 1 1 1 1 5.95 98.10 6.04 0.00 0.00 0.00 0.00 7 -2 1 1 1 Series 7-root.TrainingRoom.1 7 -1 1 1 1 2 0 7 2 2 3 0 7 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 7 1 1 1 1 5.08 327.47 56.76 5.01 5.95 1.04 1.09 7 2 1 1 1 0.86 248.16 84.61 0.00 0.00 0.00 0.00 8 -2 1 1 1 Series 8-root.TrainingRoom.1 8 -1 1 1 1 7 1 8 1 1 3 0 8 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 8 1 1 1 1 1.97 36.72 85.36 0.00 0.00 0.00 0.00 9 -2 1 1 1 Series 9-root.TrainingRoom.1 9 -1 1 1 1 7 1 9 1 1 3 0 9 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 9 1 1 1 1 2.90 0.21 79.16 0.00 0.00 0.00 0.00 10 -2 1 1 1 Series 10-root.TrainingRoom.1 10 -1 1 1 1 7 1 10 1 1 3 0 10 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 10 1 1 1 1 3.57 0.44 76.99 0.00 0.00 0.00 0.00 11 -2 1 1 1 Series 11-root.TrainingRoom.1 11 -1 1 1 1 7 1 11 1 1 3 0 11 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 11 1 1 1 1 3.33 6.81 73.92 0.00 0.00 0.00 0.00 12 -2 1 1 1 Series 12-root.TrainingRoom.1 12 -1 1 1 1 7 1 12 1 1 3 0 12 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 12 1 1 1 1 3.08 9.73 72.19 0.00 0.00 0.00 0.00 13 -2 1 1 1 Series 13-root.TrainingRoom.1 13 -1 1 1 1 7 1 13 1 1 3 0 13 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 13 1 1 1 1 1.51 33.34 73.27 0.00 0.00 0.00 0.00 14 -2 1 1 1 Series 14-root.TrainingRoom.1 14 -1 1 1 1 7 1 14 1 1 3 0 14 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 14 1 1 1 1 1.13 41.39 63.01 0.00 0.00 0.00 0.00 15 -2 1 1 1 Series 15-root.TrainingRoom.1 15 -1 1 1 1 7 1 15 1 1 3 0 15 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 15 1 1 1 1 1.44 44.13 -46.36 0.00 0.00 0.00 0.00 16 -2 1 1 1 Series 16-root.TrainingRoom.1 16 -1 1 1 1 7 1 16 1 1 3 0 16 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 16 1 1 1 1 1.83 42.45 -54.49 0.00 0.00 0.00 0.00 17 -2 1 1 1 Series 17-root.TrainingRoom.1 17 -1 1 1 1 7 1 17 1 1 3 0 17 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 17 1 1 1 1 1.84 35.11 -63.47 0.00 0.00 0.00 0.00 18 -2 1 1 1 Series 18-root.TrainingRoom.1 18 -1 1 1 1 7 1 18 1 1 3 0 18 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 18 1 1 1 1 1.51 111.18 -81.34 0.00 0.00 0.00 0.00 19 -2 1 1 1 Series 19-root.TrainingRoom.1 19 -1 1 1 1 7 1 19 1 1 3 0 19 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 19 1 1 1 1 1.56 208.58 -80.33 0.00 0.00 0.00 0.00 20 -2 1 1 1 Series 20-root.TrainingRoom.1 20 -1 1 1 1 7 1 20 1 1 3 0 20 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 20 1 1 1 1 0.80 65.58 -74.77 0.00 0.00 0.00 0.00 21 -2 1 1 1 Series 21-root.TrainingRoom.1 21 -1 1 1 1 7 1 21 1 1 3 0 21 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 21 1 1 1 1 0.63 17.58 -85.44 0.00 0.00 0.00 0.00 22 -2 1 1 1 Series 22-root.TrainingRoom.1 22 -1 1 1 1 7 1 22 1 1 3 0 22 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 22 1 1 1 1 0.55 281.21 -80.62 0.00 0.00 0.00 0.00 23 -2 1 1 1 Series 23-root.TrainingRoom.1 23 -1 1 1 1 7 1 23 1 1 3 0 23 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 23 1 1 1 1 0.91 55.93 43.46 0.00 0.00 0.00 0.00 24 -2 1 1 1 Series 24-root.TrainingRoom.1 24 -1 1 1 1 7 1 24 1 1 3 0 24 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 24 1 1 1 1 0.95 54.38 25.70 0.00 0.00 0.00 0.00 25 -2 1 1 1 Series 25-root.TrainingRoom.1 25 -1 1 1 1 7 1 25 1 1 3 0 25 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 25 1 1 1 1 0.71 50.23 15.55 0.00 0.00 0.00 0.00 26 -2 1 1 1 Series 26-root.TrainingRoom.1 26 -1 1 1 1 7 1 26 1 1 3 0 26 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 26 1 1 1 1 0.80 52.99 -17.45 0.00 0.00 0.00 0.00 27 -2 1 1 1 Series 27-root.TrainingRoom.1 27 -1 1 1 1 7 1 27 1 1 3 0 27 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 27 1 1 1 1 0.78 47.54 -32.25 0.00 0.00 0.00 0.00 28 -2 1 1 1 Series 28-root.TrainingRoom.1 28 -1 1 1 1 7 1 28 1 1 3 0 28 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 28 1 1 1 1 0.80 49.21 -38.08 0.00 0.00 0.00 0.00 29 -2 1 1 1 Series 29-root.TrainingRoom.1 29 -1 1 1 1 7 1 29 1 1 3 0 29 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 29 1 1 1 1 1.22 48.37 -40.44 0.00 0.00 0.00 0.00 30 -2 1 1 1 Series 30-root.TrainingRoom.1 30 -1 1 1 1 7 1 30 1 1 3 0 30 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 30 1 1 1 1 0.58 315.38 2.25 0.00 0.00 0.00 0.00 31 -2 1 1 1 Series 31-root.TrainingRoom.1 31 -1 1 1 1 7 1 31 1 1 3 0 31 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 31 1 1 1 1 1.05 326.37 2.41 0.00 0.00 0.00 0.00 32 -2 1 1 1 Series 32-root.TrainingRoom.1 32 -1 1 1 1 7 1 32 1 1 3 0 32 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 32 1 1 1 1 0.62 62.72 -5.29 0.00 0.00 0.00 0.00 33 -2 1 1 1 Series 33-root.TrainingRoom.1 33 -1 1 1 1 7 1 33 1 1 3 0 33 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 33 1 1 1 1 0.71 34.15 -9.16 0.00 0.00 0.00 0.00 34 -2 1 1 1 Series 34-root.TrainingRoom.1 34 -1 1 1 1 7 1 34 1 1 3 0 34 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 34 1 1 1 1 1.52 4.78 -10.78 0.00 0.00 0.00 0.00 35 -2 1 1 1 Series 35-root.TrainingRoom.1 35 -1 1 1 1 7 1 35 1 1 3 0 35 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 35 1 1 1 1 1.62 348.65 -11.00 0.00 0.00 0.00 0.00 36 -2 1 1 1 Series 36-root.TrainingRoom.1 36 -1 1 1 1 7 1 36 1 1 3 0 36 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 36 1 1 1 1 1.85 336.13 -6.26 0.00 0.00 0.00 0.00 37 -2 1 1 1 Series 37-root.TrainingRoom.1 37 -1 1 1 1 7 1 37 1 1 3 0 37 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 37 1 1 1 1 2.39 329.33 -3.53 0.00 0.00 0.00 0.00 38 -2 1 1 1 Series 38-root.TrainingRoom.1 38 -1 1 1 1 7 1 38 1 1 3 0 38 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 38 1 1 1 1 0.86 174.05 0.08 0.00 0.00 0.00 0.00 39 -2 1 1 1 Series 39-root.TrainingRoom.1 39 -1 1 1 1 7 1 39 1 1 3 0 39 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 39 1 1 1 1 1.51 155.18 1.24 0.00 0.00 0.00 0.00 40 -2 1 1 1 Series 40-root.TrainingRoom.1 40 -1 1 1 1 7 1 40 1 1 3 0 40 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 40 1 1 1 1 1.96 140.40 -3.29 0.00 0.00 0.00 0.00 41 -2 1 1 1 Series 41-root.TrainingRoom.1 41 -1 1 1 1 7 1 41 1 1 3 0 41 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 41 1 1 1 1 2.58 131.69 -4.78 0.00 0.00 0.00 0.00 42 -2 1 1 1 Series 42-root.TrainingRoom.1 42 -1 1 1 1 7 1 42 1 1 3 0 42 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 42 1 1 1 1 2.68 130.29 -4.55 0.00 0.00 0.00 0.00 43 -2 1 1 1 Series 43-root.TrainingRoom.1 43 -1 1 1 1 7 1 43 1 1 3 0 43 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 43 1 1 1 1 1.28 112.92 -6.48 0.00 0.00 0.00 0.00 44 -2 1 1 1 Series 44-root.TrainingRoom.1 44 -1 1 1 1 7 1 44 1 1 3 0 44 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 44 1 1 1 1 1.03 99.66 -5.08 0.00 0.00 0.00 0.00 45 -2 1 1 1 Series 45-root.TrainingRoom.1 45 -1 1 1 1 7 1 45 1 1 3 0 45 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 45 1 1 1 1 0.74 82.81 -4.14 0.00 0.00 0.00 0.00 46 -2 1 1 1 Series 46-root.TrainingRoom.1 46 -1 1 1 1 7 1 46 2 2 3 0 46 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 46 1 1 1 1 4.92 69.83 23.86 1.85 1.51 1.97 0.63 46 2 1 1 1 2.96 27.78 70.94 0.00 0.00 0.00 0.00 47 -2 1 1 1 Series 47-root.TrainingRoom.1 47 -1 1 1 1 46 1 47 1 1 3 0 47 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 47 1 1 1 1 1.76 85.45 -85.86 0.00 0.00 0.00 0.00 48 -2 1 1 1 Series 48-root.TrainingRoom.1 48 -1 1 1 1 46 1 48 1 1 3 0 48 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 48 1 1 1 1 0.95 165.48 0.82 0.00 0.00 0.00 0.00 49 -2 1 1 1 Series 49-root.TrainingRoom.1 49 -1 1 1 1 46 1 49 1 1 3 0 49 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 49 1 1 1 1 3.80 331.85 24.88 0.00 0.00 0.00 0.00 50 -2 1 1 1 Series 50-root.TrainingRoom.1 50 -1 1 1 1 46 1 50 1 1 3 0 50 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 50 1 1 1 1 5.74 289.73 15.19 0.00 0.00 0.00 0.00 51 -2 1 1 1 Series 51-root.TrainingRoom.1 51 -1 1 1 1 46 1 51 1 1 3 0 51 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 51 1 1 1 1 5.02 257.83 -9.98 0.00 0.00 0.00 0.00 52 -2 1 1 1 Series 52-root.TrainingRoom.1 52 -1 1 1 1 46 1 52 1 1 3 0 52 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 52 1 1 1 1 2.80 233.18 -16.44 0.00 0.00 0.00 0.00 53 -2 1 1 1 Series 53-root.TrainingRoom.1 53 -1 1 1 1 46 1 53 1 1 3 0 53 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 53 1 1 1 1 13.10 71.82 16.81 0.00 0.00 0.00 0.00 54 -2 1 1 1 Series 54-root.TrainingRoom.1 54 -1 1 1 1 46 1 54 1 1 3 0 54 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 54 1 1 1 1 7.76 33.32 29.66 0.00 0.00 0.00 0.00 55 -2 1 1 1 Series 55-root.TrainingRoom.1 55 -1 1 1 1 46 1 55 1 1 3 0 55 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 55 1 1 1 1 2.00 337.58 33.09 5.02 13.10 2.96 1.76CaveConverter_src/test/data/regression/2649_Mares_from3d_in.dxf0000644000000000000000000003250413030252172023436 0ustar rootroot0 SECTION 2 HEADER 9 $EXTMIN 10 452220.000000 20 4800899.130000 30 261.730000 9 $EXTMAX 10 452310.550000 20 4800946.410000 30 274.000000 9 $PDMODE 70 3 9 $PDSIZE 40 0.80 0 ENDSEC 0 SECTION 2 TABLES 0 TABLE 2 LTYPE 70 10 0 LTYPE 2 CONTINUOUS 70 64 3 Continuous 72 65 73 0 40 0.0 0 LTYPE 2 DASHED 70 64 3 Dashed 72 65 73 2 40 2.5 49 1.25 49 -1.25 0 ENDTAB 0 TABLE 2 LAYER 70 10 0 LAYER 2 CentreLine 70 64 62 5 6 CONTINUOUS 0 LAYER 2 Stations 70 64 62 7 6 CONTINUOUS 0 LAYER 2 Labels 70 64 62 7 6 CONTINUOUS 0 LAYER 2 Surface 70 64 62 5 6 DASHED 0 LAYER 2 SurfaceStations 70 64 62 7 6 CONTINUOUS 0 LAYER 2 SurfaceLabels 70 64 62 7 6 CONTINUOUS 0 ENDTAB 0 ENDSEC 0 SECTION 2 ENTITIES 0 LINE 8 CentreLine 10 452220.00 20 4800904.00 30 274.00 11 452220.71 21 4800903.07 31 272.74 0 LINE 8 CentreLine 10 452220.71 20 4800903.07 30 272.74 11 452220.40 21 4800904.94 31 270.55 0 LINE 8 CentreLine 10 452220.40 20 4800904.94 30 270.55 11 452220.40 21 4800904.94 31 266.33 0 LINE 8 CentreLine 10 452220.40 20 4800904.94 30 266.33 11 452225.18 21 4800904.04 31 267.28 0 LINE 8 CentreLine 10 452225.18 20 4800904.04 30 267.28 11 452226.74 21 4800904.62 31 268.67 0 LINE 8 CentreLine 10 452226.74 20 4800904.62 30 268.67 11 452228.77 21 4800904.34 31 267.23 0 LINE 8 CentreLine 10 452228.77 20 4800904.34 30 267.23 11 452224.45 21 4800899.13 31 265.92 0 LINE 8 CentreLine 10 452228.77 20 4800904.34 30 267.23 11 452231.34 21 4800905.50 31 268.20 0 LINE 8 CentreLine 10 452231.34 20 4800905.50 30 268.20 11 452234.20 21 4800904.59 31 268.10 0 LINE 8 CentreLine 10 452234.20 20 4800904.59 30 268.10 11 452236.72 21 4800904.33 31 267.61 0 LINE 8 CentreLine 10 452236.72 20 4800904.33 30 267.61 11 452236.72 21 4800904.33 31 262.81 0 LINE 8 CentreLine 10 452236.72 20 4800904.33 30 267.61 11 452239.81 21 4800907.35 31 266.77 0 LINE 8 CentreLine 10 452239.81 20 4800907.35 30 266.77 11 452240.32 21 4800908.95 31 265.20 0 LINE 8 CentreLine 10 452240.32 20 4800908.95 30 265.20 11 452245.75 21 4800913.88 31 264.69 0 LINE 8 CentreLine 10 452245.75 20 4800913.88 30 264.69 11 452249.71 21 4800920.04 31 264.04 0 LINE 8 CentreLine 10 452249.71 20 4800920.04 30 264.04 11 452251.24 21 4800923.71 31 265.04 0 LINE 8 CentreLine 10 452251.24 20 4800923.71 30 265.04 11 452256.79 21 4800925.65 31 264.52 0 LINE 8 CentreLine 10 452256.79 20 4800925.65 30 264.52 11 452260.45 21 4800932.07 31 264.14 0 LINE 8 CentreLine 10 452260.45 20 4800932.07 30 264.14 11 452264.55 21 4800935.93 31 263.84 0 LINE 8 CentreLine 10 452264.55 20 4800935.93 30 263.84 11 452268.26 21 4800934.74 31 263.57 0 LINE 8 CentreLine 10 452268.26 20 4800934.74 30 263.57 11 452272.25 21 4800935.25 31 263.71 0 LINE 8 CentreLine 10 452272.25 20 4800935.25 30 263.71 11 452274.00 21 4800937.68 31 263.55 0 LINE 8 CentreLine 10 452274.00 20 4800937.68 30 263.55 11 452275.73 21 4800934.94 31 262.92 0 LINE 8 CentreLine 10 452275.73 20 4800934.94 30 262.92 11 452282.25 21 4800934.17 31 262.92 0 LINE 8 CentreLine 10 452282.25 20 4800934.17 30 262.92 11 452282.26 21 4800932.36 31 263.02 0 LINE 8 CentreLine 10 452282.26 20 4800932.36 30 263.02 11 452283.08 21 4800934.06 31 263.25 0 LINE 8 CentreLine 10 452282.26 20 4800932.36 30 263.02 11 452281.47 21 4800930.14 31 263.87 0 LINE 8 CentreLine 10 452282.25 20 4800934.17 30 262.92 11 452285.23 21 4800934.23 31 263.27 0 LINE 8 CentreLine 10 452285.23 20 4800934.23 30 263.27 11 452286.14 21 4800936.99 31 263.45 0 LINE 8 CentreLine 10 452286.14 20 4800936.99 30 263.45 11 452287.39 21 4800940.90 31 263.29 0 LINE 8 CentreLine 10 452287.39 20 4800940.90 30 263.29 11 452286.35 21 4800942.63 31 263.46 0 LINE 8 CentreLine 10 452286.35 20 4800942.63 30 263.46 11 452287.22 21 4800944.34 31 261.98 0 LINE 8 CentreLine 10 452286.35 20 4800942.63 30 263.46 11 452288.03 21 4800943.53 31 263.26 0 LINE 8 CentreLine 10 452288.03 20 4800943.53 30 263.26 11 452289.71 21 4800946.41 31 263.01 0 LINE 8 CentreLine 10 452288.03 20 4800943.53 30 263.26 11 452295.99 21 4800941.71 31 263.06 0 LINE 8 CentreLine 10 452295.99 20 4800941.71 30 263.06 11 452297.20 21 4800940.41 31 263.21 0 LINE 8 CentreLine 10 452297.20 20 4800940.41 30 263.21 11 452299.86 21 4800940.00 31 263.22 0 LINE 8 CentreLine 10 452299.86 20 4800940.00 30 263.22 11 452303.69 21 4800942.75 31 262.91 0 LINE 8 CentreLine 10 452303.69 20 4800942.75 30 262.91 11 452304.84 21 4800943.23 31 262.81 0 LINE 8 CentreLine 10 452304.84 20 4800943.23 30 262.81 11 452307.59 21 4800942.20 31 262.61 0 LINE 8 CentreLine 10 452304.84 20 4800943.23 30 262.81 11 452307.68 21 4800940.48 31 263.08 0 LINE 8 CentreLine 10 452307.68 20 4800940.48 30 263.08 11 452308.87 21 4800940.98 31 262.44 0 LINE 8 CentreLine 10 452308.87 20 4800940.98 30 262.44 11 452310.55 21 4800939.58 31 261.73 0 TEXT 8 Labels 10 452310.55 20 4800939.58 30 261.73 40 0.60 1 2649_mareserection.mares0904085.16 0 POINT 8 Stations 10 452310.55 20 4800939.58 30 261.73 0 TEXT 8 Labels 10 452308.87 20 4800940.98 30 262.44 40 0.60 1 2649_mareserection.mares0904085.15 0 POINT 8 Stations 10 452308.87 20 4800940.98 30 262.44 0 TEXT 8 Labels 10 452307.68 20 4800940.48 30 263.08 40 0.60 1 2649_mareserection.mares0904085.14 0 POINT 8 Stations 10 452307.68 20 4800940.48 30 263.08 0 TEXT 8 Labels 10 452307.59 20 4800942.20 30 262.61 40 0.60 1 2649_mareserection.mares0904085.13 0 POINT 8 Stations 10 452307.59 20 4800942.20 30 262.61 0 TEXT 8 Labels 10 452304.84 20 4800943.23 30 262.81 40 0.60 1 2649_mareserection.mares0904085.12 0 POINT 8 Stations 10 452304.84 20 4800943.23 30 262.81 0 TEXT 8 Labels 10 452303.69 20 4800942.75 30 262.91 40 0.60 1 2649_mareserection.mares0904085.11 0 POINT 8 Stations 10 452303.69 20 4800942.75 30 262.91 0 TEXT 8 Labels 10 452299.86 20 4800940.00 30 263.22 40 0.60 1 2649_mareserection.mares0904085.10 0 POINT 8 Stations 10 452299.86 20 4800940.00 30 263.22 0 TEXT 8 Labels 10 452297.20 20 4800940.41 30 263.21 40 0.60 1 2649_mareserection.mares0904085.9 0 POINT 8 Stations 10 452297.20 20 4800940.41 30 263.21 0 TEXT 8 Labels 10 452295.99 20 4800941.71 30 263.06 40 0.60 1 2649_mareserection.mares0904085.8 0 POINT 8 Stations 10 452295.99 20 4800941.71 30 263.06 0 TEXT 8 Labels 10 452289.71 20 4800946.41 30 263.01 40 0.60 1 2649_mareserection.mares0904085.7 0 POINT 8 Stations 10 452289.71 20 4800946.41 30 263.01 0 TEXT 8 Labels 10 452288.03 20 4800943.53 30 263.26 40 0.60 1 2649_mareserection.mares0904085.6 0 POINT 8 Stations 10 452288.03 20 4800943.53 30 263.26 0 TEXT 8 Labels 10 452287.22 20 4800944.34 30 261.98 40 0.60 1 2649_mareserection.mares0904085.5 0 POINT 8 Stations 10 452287.22 20 4800944.34 30 261.98 0 TEXT 8 Labels 10 452286.35 20 4800942.63 30 263.46 40 0.60 1 2649_mareserection.mares0904085.4 0 POINT 8 Stations 10 452286.35 20 4800942.63 30 263.46 0 TEXT 8 Labels 10 452287.39 20 4800940.90 30 263.29 40 0.60 1 2649_mareserection.mares0904085.3 0 POINT 8 Stations 10 452287.39 20 4800940.90 30 263.29 0 TEXT 8 Labels 10 452286.14 20 4800936.99 30 263.45 40 0.60 1 2649_mareserection.mares0904085.2 0 POINT 8 Stations 10 452286.14 20 4800936.99 30 263.45 0 TEXT 8 Labels 10 452285.23 20 4800934.23 30 263.27 40 0.60 1 2649_mareserection.mares0904085.1 0 POINT 8 Stations 10 452285.23 20 4800934.23 30 263.27 0 TEXT 8 Labels 10 452282.25 20 4800934.17 30 262.92 40 0.60 1 2649_mareserection.mares0904085.0 0 POINT 8 Stations 10 452282.25 20 4800934.17 30 262.92 0 TEXT 8 Labels 10 452281.47 20 4800930.14 30 263.87 40 0.60 1 2649_mareserection.mares070701.28 0 POINT 8 Stations 10 452281.47 20 4800930.14 30 263.87 0 TEXT 8 Labels 10 452283.08 20 4800934.06 30 263.25 40 0.60 1 2649_mareserection.mares070701.27 0 POINT 8 Stations 10 452283.08 20 4800934.06 30 263.25 0 TEXT 8 Labels 10 452282.26 20 4800932.36 30 263.02 40 0.60 1 2649_mareserection.mares070701.26 0 POINT 8 Stations 10 452282.26 20 4800932.36 30 263.02 0 TEXT 8 Labels 10 452282.25 20 4800934.17 30 262.92 40 0.60 1 2649_mareserection.mares070701.25 0 POINT 8 Stations 10 452282.25 20 4800934.17 30 262.92 0 TEXT 8 Labels 10 452275.73 20 4800934.94 30 262.92 40 0.60 1 2649_mareserection.mares070701.24 0 POINT 8 Stations 10 452275.73 20 4800934.94 30 262.92 0 TEXT 8 Labels 10 452274.00 20 4800937.68 30 263.55 40 0.60 1 2649_mareserection.mares070701.23 0 POINT 8 Stations 10 452274.00 20 4800937.68 30 263.55 0 TEXT 8 Labels 10 452272.25 20 4800935.25 30 263.71 40 0.60 1 2649_mareserection.mares070701.22 0 POINT 8 Stations 10 452272.25 20 4800935.25 30 263.71 0 TEXT 8 Labels 10 452268.26 20 4800934.74 30 263.57 40 0.60 1 2649_mareserection.mares070701.21 0 POINT 8 Stations 10 452268.26 20 4800934.74 30 263.57 0 TEXT 8 Labels 10 452264.55 20 4800935.93 30 263.84 40 0.60 1 2649_mareserection.mares070701.20 0 POINT 8 Stations 10 452264.55 20 4800935.93 30 263.84 0 TEXT 8 Labels 10 452260.45 20 4800932.07 30 264.14 40 0.60 1 2649_mareserection.mares070701.19 0 POINT 8 Stations 10 452260.45 20 4800932.07 30 264.14 0 TEXT 8 Labels 10 452256.79 20 4800925.65 30 264.52 40 0.60 1 2649_mareserection.mares070701.18 0 POINT 8 Stations 10 452256.79 20 4800925.65 30 264.52 0 TEXT 8 Labels 10 452251.24 20 4800923.71 30 265.04 40 0.60 1 2649_mareserection.mares070701.17 0 POINT 8 Stations 10 452251.24 20 4800923.71 30 265.04 0 TEXT 8 Labels 10 452249.71 20 4800920.04 30 264.04 40 0.60 1 2649_mareserection.mares070701.16 0 POINT 8 Stations 10 452249.71 20 4800920.04 30 264.04 0 TEXT 8 Labels 10 452245.75 20 4800913.88 30 264.69 40 0.60 1 2649_mareserection.mares070701.15 0 POINT 8 Stations 10 452245.75 20 4800913.88 30 264.69 0 TEXT 8 Labels 10 452240.32 20 4800908.95 30 265.20 40 0.60 1 2649_mareserection.mares070701.14 0 POINT 8 Stations 10 452240.32 20 4800908.95 30 265.20 0 TEXT 8 Labels 10 452239.81 20 4800907.35 30 266.77 40 0.60 1 2649_mareserection.mares070701.13 0 POINT 8 Stations 10 452239.81 20 4800907.35 30 266.77 0 TEXT 8 Labels 10 452236.72 20 4800904.33 30 262.81 40 0.60 1 2649_mareserection.mares070701.12 0 POINT 8 Stations 10 452236.72 20 4800904.33 30 262.81 0 TEXT 8 Labels 10 452236.72 20 4800904.33 30 267.61 40 0.60 1 2649_mareserection.mares070701.11 0 POINT 8 Stations 10 452236.72 20 4800904.33 30 267.61 0 TEXT 8 Labels 10 452234.20 20 4800904.59 30 268.10 40 0.60 1 2649_mareserection.mares070701.10 0 POINT 8 Stations 10 452234.20 20 4800904.59 30 268.10 0 TEXT 8 Labels 10 452231.34 20 4800905.50 30 268.20 40 0.60 1 2649_mareserection.mares070701.9 0 POINT 8 Stations 10 452231.34 20 4800905.50 30 268.20 0 TEXT 8 Labels 10 452224.45 20 4800899.13 30 265.92 40 0.60 1 2649_mareserection.mares070701.8 0 POINT 8 Stations 10 452224.45 20 4800899.13 30 265.92 0 TEXT 8 Labels 10 452228.77 20 4800904.34 30 267.23 40 0.60 1 2649_mareserection.mares070701.7 0 POINT 8 Stations 10 452228.77 20 4800904.34 30 267.23 0 TEXT 8 Labels 10 452226.74 20 4800904.62 30 268.67 40 0.60 1 2649_mareserection.mares070701.6 0 POINT 8 Stations 10 452226.74 20 4800904.62 30 268.67 0 TEXT 8 Labels 10 452225.18 20 4800904.04 30 267.28 40 0.60 1 2649_mareserection.mares070701.5 0 POINT 8 Stations 10 452225.18 20 4800904.04 30 267.28 0 TEXT 8 Labels 10 452220.40 20 4800904.94 30 266.33 40 0.60 1 2649_mareserection.mares070701.4 0 POINT 8 Stations 10 452220.40 20 4800904.94 30 266.33 0 TEXT 8 Labels 10 452220.40 20 4800904.94 30 270.55 40 0.60 1 2649_mareserection.mares070701.3 0 POINT 8 Stations 10 452220.40 20 4800904.94 30 270.55 0 TEXT 8 Labels 10 452220.71 20 4800903.07 30 272.74 40 0.60 1 2649_mareserection.mares070701.2 0 POINT 8 Stations 10 452220.71 20 4800903.07 30 272.74 0 TEXT 8 Labels 10 452220.00 20 4800904.00 30 274.00 40 0.60 1 2649_mareserection.mares070701.1 0 POINT 8 Stations 10 452220.00 20 4800904.00 30 274.00 000 ENDSEC 000 EOF CaveConverter_src/test/data/regression/2418_Trackside_in.svx0000644000000000000000000000153712560565202023071 0ustar rootroot*begin 2418_Trackside ;surveyors: Dave Cooke, Charlie Chambers, Paul Fretwell ;name: Trackside ;date 15/04/2006 *CALIBRATE declination 2.42 ;declination is 2 41' (2.68) for 2004 changing by 8'E per year. ; 2.55 used for 2005 ; 2.42 used for 2006 ; 2.28 used for 2007 ; 2.15 used for 2008 *FIX 0 452097 4800242 174 ;Altitude fixed using surface mesh *ENTRANCE 0 1 0 4.56 255 11; .5 .5 0 .5 1 2 2.58 88 14; 0 1 .65 1.5 2 3 8.65 65 -3; 2.5 .5 .5 0 4 3 4.83 104 14; 1 1 0 1 5 3 6.65 265 4; .5 0 .5 2 5 6 11.45 82 -2; .8 0 .5 1 7 6 3.05 182 12; 1 0 .4 .4 7 8 1.52 78 22; .3 .6 .4 .1 9 8 2.52 258 4; .5 .5 .75 0 ;stn 9 .5 .5 .75 0 10 3 4.65 238 6; .3 .5 .5 .4 10 11 5.55 78 -12; .6 .2 .75 0 12 11 3.6 216 -2; .8 .2 1 0 12 13 6.65 16 -3; 13 14 1 30 0 15 14 9.1 - up 15 16 7.68 100 -40 17 16 1.65 - up; 1 1.5 *end 2418_Trackside CaveConverter_src/test/data/regression/anonymous_blocks_in.svx0000644000000000000000000000056213033257152024062 0ustar rootroot*begin anonymous_blocks 1 2 9.08 189.31 -7.43 *begin *FLAGS SPLAY 2 2a 7.47 208.36 -11.11 *end 2 3 18.55 116.98 -0.1 *begin *FLAGS surface 3 4 3.94 109.34 5.39 *begin *FLAGS SPLAY 4 4a 1.72 13.50 -2.13 *end 4 5 14.13 96.76 -0.61 *flags duplicate 5 6 14.76 107.42 10.11 *end 6 7 9.56 79.43 -2.48 *end anonymous_blocks CaveConverter_src/test/data/regression/Sloppy2ZigZags_ps_ref.svx0000644000000000000000000003325713030252172024215 0ustar rootroot*BEGIN uzu110810sloppypt2 *EQUATE 158.12 161.0 *EQUATE 161.4 165.1 *BEGIN 161 *DATE 2009.01.07 *FLAGS SPLAY 0 0a 1.29 125.73 0.46 0 0b 1.61 306.94 3.61 0 0c 8.58 203.24 85.39 0 0d 1.79 169.15 -88.07 0 0e 2.53 190.96 4.20 0 0f 2.31 237.87 9.54 0 0g 2.83 253.54 9.73 0 0h 2.16 277.70 11.01 0 0i 1.31 43.80 6.31 *FLAGS NOT SPLAY 0 1 8.84 224.95 74.29 *FLAGS SPLAY 1 1a 0.77 135.02 -4.75 1 1b 1.85 55.20 85.87 1 1c 0.68 190.60 -87.21 *FLAGS NOT SPLAY 1 2 1.29 177.76 16.14 *FLAGS SPLAY 2 2a 0.72 31.98 -4.09 2 2b 2.25 349.48 77.56 2 2c 0.82 175.67 -88.21 *FLAGS NOT SPLAY 2 3 9.45 62.80 8.45 *FLAGS SPLAY 3 3a 0.76 207.08 2.14 3 3b 4.88 114.75 84.07 3 3c 1.07 299.88 -83.79 3 3d 1.45 243.11 1.63 3 3e 2.05 261.73 3.02 *FLAGS NOT SPLAY 3 4 3.09 174.44 77.16 *FLAGS SPLAY 4 4a 0.79 15.24 0.85 4 4b 4.21 52.64 86.09 4 4c 1.25 226.64 -88.43 *FLAGS NOT SPLAY 4 5 3.04 80.70 -0.77 *FLAGS SPLAY 5 5a 0.49 313.79 -1.74 5 5b 4.40 124.69 83.71 5 5c 0.97 67.93 -87.52 *FLAGS NOT SPLAY 5 6 7.44 29.62 5.20 *FLAGS SPLAY 6 6a 0.77 127.34 17.64 6 6b 4.97 41.63 85.19 6 6c 0.73 257.84 -82.51 *FLAGS NOT SPLAY 6 7 5.85 35.05 1.09 *FLAGS SPLAY 7 7a 0.58 282.01 8.71 7 7b 8.62 351.28 81.03 7 7c 0.55 153.97 -74.30 7 7d 3.17 349.34 3.84 7 7e 3.04 20.21 3.70 *FLAGS NOT SPLAY 7 8 9.45 7.85 51.31 *FLAGS SPLAY 8 8a 0.69 134.64 -0.49 8 8b 4.51 93.69 78.99 8 8c 1.88 52.36 -82.29 *FLAGS NOT SPLAY 8 9 2.60 65.73 -6.30 *FLAGS SPLAY 9 9a 0.62 298.10 5.15 9 9b 4.36 19.40 82.85 9 9c 1.08 191.79 -82.85 *FLAGS NOT SPLAY 9 10 4.48 6.77 7.25 *FLAGS SPLAY 10 10a 0.67 115.96 -1.72 10 10b 4.30 115.63 80.16 10 10c 0.74 273.75 -86.19 *FLAGS NOT SPLAY 10 11 3.86 56.51 1.91 *FLAGS SPLAY 11 11a 0.67 323.14 -8.75 11 11b 4.24 25.54 78.35 11 11c 0.56 60.57 -78.89 11 11d 2.62 20.06 7.07 *FLAGS NOT SPLAY 11 12 7.66 28.32 10.32 *FLAGS SPLAY 12 12a 0.47 241.61 -4.41 12 12b 3.69 68.94 85.50 12 12c 0.82 238.09 -83.13 *FLAGS NOT SPLAY 12 13 1.09 289.21 11.36 *FLAGS SPLAY 13 13a 0.63 170.24 -3.66 13 13b 3.37 228.42 84.55 13 13c 0.97 278.10 -82.95 *FLAGS NOT SPLAY 13 14 3.87 230.95 3.41 *FLAGS SPLAY 14 14a 0.70 333.35 5.84 14 14b 3.42 255.12 80.83 14 14c 0.94 291.68 -80.13 *FLAGS NOT SPLAY 14 15 4.60 249.81 2.49 *FLAGS SPLAY 15 15a 0.76 354.29 2.52 15 15b 3.44 282.49 80.49 15 15c 0.84 294.69 -76.37 *FLAGS NOT SPLAY 15 16 4.46 260.87 6.91 *FLAGS SPLAY 16 16a 0.60 149.22 -7.74 16 16b 2.28 213.07 85.82 16 16c 0.94 293.42 -82.12 *FLAGS NOT SPLAY 16 17 7.41 236.86 0.94 *FLAGS SPLAY 17 17a 1.15 336.21 12.30 17 17b 7.30 273.47 83.19 17 17c 0.81 344.65 -74.47 *FLAGS NOT SPLAY 17 18 1.79 282.80 9.24 *FLAGS SPLAY 18 18a 1.40 148.94 -7.89 18 18b 6.31 248.22 83.95 18 18c 1.08 124.24 -85.92 *FLAGS NOT SPLAY 18 19 14.75 240.76 9.56 *FLAGS SPLAY 19 19a 0.59 2.64 1.55 19 19b 1.25 157.25 -8.40 19 19c 48.31 69.00 85.56 19 19d 1.91 72.56 -82.37 19 19e 4.57 16.43 28.14 19 19f 7.14 49.84 15.92 19 19g 7.11 72.91 15.16 *FLAGS NOT SPLAY *data passage station left right up down 0 1.41 1.69 8.55 1.79 1 0.71 0.00 1.85 0.67 2 0.72 0.00 2.20 0.82 3 0.00 0.76 4.85 1.06 4 0.73 0.00 4.20 1.25 5 0.48 0.00 4.37 0.97 6 0.00 0.73 4.95 0.72 7 1.68 0.00 8.51 0.53 8 0.00 0.68 4.43 1.86 9 0.61 0.00 4.33 1.07 10 0.00 0.67 4.23 0.74 11 0.99 0.00 4.15 0.55 12 0.46 0.00 3.68 0.81 13 0.63 0.00 3.35 0.96 14 0.00 0.70 3.37 0.93 15 0.00 0.75 3.39 0.82 16 0.59 0.00 2.27 0.93 17 0.00 1.09 7.25 0.79 18 1.28 0.00 6.28 1.08 19 1.44 2.82 48.16 1.89 *END 161 *BEGIN 165 *DATE 2012.04.10 *CALIBRATE declination 2.0 *FLAGS SPLAY 1 1a 0.57 195.52 4.07 1 1b 0.49 9.16 1.22 1 1c 3.84 348.92 79.39 1 1d 1.62 119.01 -75.94 *FLAGS NOT SPLAY 1 2 3.48 281.26 27.52 *FLAGS SPLAY 2 2a 0.97 136.15 5.76 2 2b 1.76 127.66 70.72 2 2c 1.46 148.72 -73.46 *FLAGS NOT SPLAY 2 3 2.13 191.02 1.42 *FLAGS SPLAY 3 3a 0.52 307.04 3.20 3 3b 1.70 163.78 88.49 3 3c 1.49 307.66 -88.82 *FLAGS NOT SPLAY 3 4 7.43 222.22 -1.21 *FLAGS SPLAY 4 4a 0.42 135.38 -2.58 4 4b 1.50 120.01 74.02 4 4c 1.52 141.14 -83.93 *FLAGS NOT SPLAY 4 5 2.23 224.28 -4.17 *FLAGS SPLAY 5 5a 0.43 123.66 -2.22 5 5b 1.49 167.01 79.72 5 5c 1.39 129.13 -67.70 *FLAGS NOT SPLAY 5 6 3.41 205.94 2.50 *FLAGS SPLAY 6 6a 0.60 306.67 2.25 6 6b 1.44 286.64 87.04 6 6c 1.43 254.09 -86.11 *FLAGS NOT SPLAY 6 7 3.12 212.10 -3.17 *FLAGS SPLAY 7 7a 0.47 300.23 3.93 7 7b 1.64 295.43 79.84 7 7c 1.29 330.51 -77.32 *FLAGS NOT SPLAY 7 8 3.01 223.50 -0.83 8 9 1.53 227.01 0.71 *FLAGS SPLAY 9 9a 0.49 135.95 1.21 9 9b 1.60 213.07 84.96 9 9c 1.28 103.24 -86.61 *FLAGS NOT SPLAY 9 10 4.13 230.74 -1.52 *FLAGS SPLAY 10 10a 0.52 325.70 -0.62 10 10b 1.63 297.20 82.81 10 10c 1.23 73.64 -86.45 *FLAGS NOT SPLAY 10 11 3.15 233.34 3.49 *FLAGS SPLAY 11 11a 0.59 131.07 4.86 11 11b 1.56 120.17 77.10 11 11c 1.27 116.04 -80.16 *FLAGS NOT SPLAY 11 12 7.29 213.25 -3.92 *FLAGS SPLAY 12 12a 1.69 146.32 87.47 12 12b 0.42 126.70 -0.32 12 12c 1.28 252.88 -86.19 *FLAGS NOT SPLAY 12 13 6.48 212.26 -46.98 *FLAGS SPLAY 13 13a 4.12 42.62 77.87 13 13b 1.06 314.62 6.76 13 13c 0.20 124.55 9.65 13 13d 1.60 286.44 -72.64 *FLAGS NOT SPLAY 13 14 2.54 235.48 -15.60 *FLAGS SPLAY 14 14a 0.63 107.29 -5.03 14 14b 1.50 136.97 79.16 14 14c 1.64 119.00 -83.97 *FLAGS NOT SPLAY 14 15 1.92 202.22 -38.76 *FLAGS SPLAY 15 15a 0.89 53.89 -6.97 15 15b 2.58 44.23 83.91 15 15c 1.54 98.15 -88.39 *FLAGS NOT SPLAY 15 16 3.08 81.63 -16.60 *FLAGS SPLAY 16 16a 0.44 352.06 0.95 16 16b 1.29 359.99 78.22 16 16c 1.03 228.83 -82.68 *FLAGS NOT SPLAY 16 17 2.89 92.67 -62.02 *FLAGS SPLAY 17 17a 0.75 321.88 -5.34 17 17b 3.74 21.79 78.45 17 17c 1.45 2.70 -78.49 *FLAGS NOT SPLAY 17 18 4.26 53.58 -27.46 *FLAGS SPLAY 18 18a 0.32 136.32 6.59 18 18b 8.45 197.33 81.96 18 18c 0.89 342.97 -73.79 *FLAGS NOT SPLAY 18 19 4.32 46.44 -3.26 *FLAGS SPLAY 19 19a 0.42 306.43 -0.14 19 19b 1.11 259.87 88.38 19 19c 0.19 125.54 0.08 19 19d 0.58 205.77 -87.87 *FLAGS NOT SPLAY 19 20 1.58 52.71 -1.32 *FLAGS SPLAY 20 20a 0.45 166.31 -2.61 20 20b 1.01 159.34 77.94 20 20c 0.53 232.63 -86.75 20 20d 0.94 312.95 2.07 20 20e 2.52 351.69 -10.78 *FLAGS NOT SPLAY 20 21 2.13 80.12 -0.95 *FLAGS SPLAY 21 21a 0.41 332.70 -0.54 21 21b 0.43 132.90 6.63 21 21c 0.94 342.23 -80.06 *FLAGS NOT SPLAY 21 22 1.40 48.91 -4.57 *FLAGS SPLAY 22 22a 1.00 290.40 -3.78 22 22b 0.37 99.12 -88.04 22 22c 1.32 324.20 59.29 *FLAGS NOT SPLAY 22 23 3.09 6.26 -4.89 *FLAGS SPLAY 23 23a 0.43 256.35 2.38 23 23b 1.00 238.69 83.28 23 23c 0.22 190.83 -84.72 *FLAGS NOT SPLAY 23 24 3.19 42.15 4.79 *FLAGS SPLAY 24 24a 0.78 125.57 -5.13 24 24b 0.80 142.71 55.91 24 24c 0.48 280.12 -86.86 *FLAGS NOT SPLAY 24 25 3.04 29.71 -4.19 *FLAGS SPLAY 25 25a 0.34 112.86 -4.40 25 25b 1.46 127.38 85.25 25 25c 0.44 170.35 -87.52 *FLAGS NOT SPLAY 25 26 5.16 27.70 -2.06 *FLAGS SPLAY 26 26a 0.77 171.11 -0.62 26 26b 1.71 170.49 74.14 26 26c 0.78 178.54 -63.02 *FLAGS NOT SPLAY 26 27 0.89 133.24 21.14 *FLAGS SPLAY 27 27a 0.44 357.20 -2.32 27 27b 1.20 355.05 86.80 27 27c 1.00 115.85 -87.48 *FLAGS NOT SPLAY 27 28 3.49 84.55 -0.49 *FLAGS SPLAY 28 28a 0.37 344.06 -1.58 28 28b 1.23 19.15 79.45 28 28c 1.10 354.08 -82.52 *FLAGS NOT SPLAY 28 29 4.49 57.41 0.19 *FLAGS SPLAY 29 29a 0.54 322.47 -0.38 29 29b 0.87 358.54 75.77 29 29c 1.23 333.67 -79.23 *FLAGS NOT SPLAY 29 30 4.20 52.71 -1.95 *FLAGS SPLAY 30 30a 0.56 140.60 -1.62 30 30b 1.11 146.54 80.67 30 30c 1.19 240.45 -85.53 *FLAGS NOT SPLAY 30 31 3.19 70.91 1.33 *FLAGS SPLAY 31 31a 0.35 314.08 -0.84 31 31b 1.00 0.39 80.18 31 31c 1.47 312.34 -75.60 *FLAGS NOT SPLAY 31 32 1.95 41.99 -0.84 *FLAGS SPLAY 32 32a 0.39 186.52 -0.46 32 32b 1.14 178.57 73.45 32 32c 1.44 169.78 -83.20 *FLAGS NOT SPLAY 32 33 1.18 108.78 -27.67 *FLAGS SPLAY 33 33a 0.59 334.23 -1.87 33 33b 0.24 158.16 0.40 33 33c 0.82 320.62 -85.87 33 33d 1.84 7.88 79.12 *FLAGS NOT SPLAY 33 34 2.03 41.06 -1.30 *FLAGS SPLAY 34 34a 0.53 325.09 5.51 34 34b 1.80 189.89 84.38 34 34c 0.81 37.21 -83.66 *FLAGS NOT SPLAY 34 35 4.67 61.76 1.03 *FLAGS SPLAY 35 35a 0.45 143.45 -4.62 35 35b 1.38 128.03 79.97 35 35c 0.98 108.51 -80.68 *FLAGS NOT SPLAY 35 36 3.57 48.05 1.36 *FLAGS SPLAY 36 36a 0.49 160.34 -9.61 36 36b 0.76 117.65 78.72 36 36c 1.26 168.57 -78.98 *FLAGS NOT SPLAY 36 37 2.13 86.68 -1.42 *FLAGS SPLAY 37 37a 0.51 323.59 5.31 37 37b 0.83 327.69 77.28 37 37c 1.07 336.30 -83.29 *FLAGS NOT SPLAY 37 38 2.37 49.91 -8.73 *FLAGS SPLAY 38 38a 0.48 142.08 14.04 38 38b 1.35 145.26 78.67 38 38c 0.80 318.62 -84.61 *FLAGS NOT SPLAY 38 39 3.65 63.15 4.37 *FLAGS SPLAY 39 39a 0.44 300.17 0.71 39 39b 1.04 328.75 82.92 39 39c 1.05 30.60 -77.32 *FLAGS NOT SPLAY 39 40 2.65 25.59 -2.53 *FLAGS SPLAY 40 40a 0.41 141.83 0.73 40 40b 1.02 117.47 80.38 40 40c 0.95 102.40 -69.23 *FLAGS NOT SPLAY 40 41 7.85 65.58 1.85 *FLAGS SPLAY 41 41a 0.83 225.24 7.58 41 41b 0.87 171.67 86.94 41 41c 1.53 219.66 -55.51 *FLAGS NOT SPLAY 41 42 3.98 215.85 -4.71 *FLAGS SPLAY 42 42a 0.48 316.97 -2.80 42 42b 1.05 300.08 80.57 42 42c 0.99 285.35 -78.94 *FLAGS NOT SPLAY 42 43 2.21 233.70 0.55 *FLAGS SPLAY 43 43a 0.49 125.18 -0.62 43 43b 1.25 162.06 78.16 43 43c 1.04 121.55 -82.42 *FLAGS NOT SPLAY 43 44 4.04 203.86 -0.25 *FLAGS SPLAY 44 44a 0.43 299.26 1.05 44 44b 1.07 200.85 78.05 44 44c 1.17 304.96 -85.05 *FLAGS NOT SPLAY 44 45 5.66 233.77 0.58 ;Disto batteries changed and disto recalibrated before this leg. *FLAGS SPLAY 45 45a 0.46 114.52 -12.27 45 45b 0.95 123.34 64.03 45 45c 1.36 146.04 -73.97 *FLAGS NOT SPLAY 45 46 2.15 186.79 -5.67 *FLAGS SPLAY 46 46a 0.34 284.71 6.20 46 46b 1.03 303.37 79.18 46 46c 1.23 216.15 -83.25 *FLAGS NOT SPLAY 46 47 2.69 210.08 -0.93 *FLAGS SPLAY 47 47a 0.42 132.35 2.41 47 47b 0.94 148.66 82.13 47 47c 1.03 152.70 -87.23 *FLAGS NOT SPLAY 47 48 1.42 230.57 -1.37 *FLAGS SPLAY 48 48a 0.41 143.81 -1.72 48 48b 1.21 164.82 72.39 48 48c 1.17 178.23 -82.45 *FLAGS NOT SPLAY 48 49 2.10 240.59 0.28 *FLAGS SPLAY 49 49a 0.34 144.54 -2.81 49 49b 1.07 140.06 72.28 49 49c 1.14 148.33 -84.52 *FLAGS NOT SPLAY 49 50 3.47 237.36 -2.97 *FLAGS SPLAY 50 50a 0.39 342.06 4.00 50 50b 1.00 213.59 85.36 50 50c 1.12 355.33 -83.46 *FLAGS NOT SPLAY 50 51 2.90 256.53 4.59 *FLAGS SPLAY 51 51a 0.34 148.28 -8.51 51 51b 0.89 141.02 77.66 51 51c 1.43 132.19 -87.31 *FLAGS NOT SPLAY 51 52 3.17 240.12 -3.07 *FLAGS SPLAY 52 52a 0.42 319.87 -2.28 52 52b 0.87 109.67 87.31 52 52c 1.36 303.04 -83.50 *FLAGS NOT SPLAY 52 53 2.60 232.18 -0.80 *FLAGS SPLAY 53 53a 0.35 305.99 3.07 53 53b 1.01 139.41 87.41 53 53c 1.66 309.66 -77.10 *FLAGS NOT SPLAY 53 54 4.54 221.12 -21.78 *FLAGS SPLAY 54 54a 0.56 125.43 -3.35 54 54b 2.11 135.69 69.41 54 54c 1.13 232.20 -85.00 *FLAGS NOT SPLAY 54 55 1.20 181.22 -8.12 *FLAGS SPLAY 55 55a 0.62 284.76 -5.11 55 55b 2.02 219.37 82.06 55 55c 3.36 237.83 -84.61 *FLAGS NOT SPLAY 55 56 1.94 154.16 -70.71 *FLAGS SPLAY 56 56a 1.45 280.79 0.23 56 56b 3.92 286.08 82.18 56 56c 1.94 266.28 -63.29 *FLAGS NOT SPLAY 56 57 5.60 228.25 -6.94 *FLAGS SPLAY 57 57a 0.66 140.56 -17.36 57 57b 0.66 148.24 53.81 57 57c 1.18 95.03 -74.03 *FLAGS NOT SPLAY 57 58 6.32 217.05 -41.16 *FLAGS SPLAY 58 58a 1.04 141.20 -11.06 58 58b 1.98 317.32 -13.13 58 58c 2.96 289.31 83.86 58 58d 0.38 164.39 -87.86 58 58e 4.16 41.63 18.73 *FLAGS NOT SPLAY *data passage station left right up down 1 0.57 0.49 3.78 1.58 2 0.95 0.00 1.66 1.40 3 0.00 0.51 1.70 1.49 4 0.42 0.00 1.44 1.51 5 0.53 0.00 1.47 1.29 6 0.00 0.59 1.44 1.42 7 0.00 0.46 1.61 1.26 8 0.00 0.00 0.00 0.00 9 0.49 0.00 1.59 1.28 10 0.00 0.52 1.61 1.23 11 0.59 0.00 1.52 1.25 12 0.42 0.00 1.69 1.28 13 0.20 1.05 4.03 1.53 14 0.58 0.00 1.47 1.63 15 0.89 0.00 2.57 1.54 16 0.44 0.00 1.27 1.02 17 0.70 0.00 3.66 1.42 18 0.00 0.32 8.36 0.85 19 0.41 0.18 1.11 0.58 20 2.39 0.45 0.98 0.52 21 0.41 0.40 0.00 0.92 22 0.99 0.00 1.14 0.37 23 0.34 0.00 1.00 0.22 24 0.00 0.78 0.66 0.48 25 0.00 0.34 1.46 0.44 26 0.00 0.77 1.64 0.69 27 0.41 0.00 1.19 1.00 28 0.37 0.00 1.21 1.09 29 0.54 0.00 0.84 1.20 30 0.00 0.55 1.10 1.19 31 0.34 0.00 0.98 1.42 32 0.00 0.36 1.09 1.43 33 0.58 0.24 1.81 0.82 34 0.53 0.00 1.79 0.81 35 0.00 0.44 1.35 0.97 36 0.00 0.48 0.75 1.24 37 0.49 0.00 0.81 1.06 38 0.00 0.46 1.32 0.80 39 0.43 0.00 1.03 1.02 40 0.00 0.41 1.00 0.89 41 0.00 0.85 0.87 1.26 42 0.00 0.48 1.04 0.97 43 0.49 0.00 1.23 1.04 44 0.00 0.42 1.05 1.16 45 0.45 0.00 0.86 1.31 46 0.00 0.34 1.01 1.22 47 0.42 0.00 0.93 1.03 48 0.41 0.00 1.15 1.16 49 0.34 0.00 1.02 1.13 50 0.00 0.38 1.00 1.12 51 0.34 0.00 0.86 1.43 52 0.00 0.42 0.87 1.35 53 0.00 0.35 1.00 1.62 54 0.68 0.00 1.98 1.12 55 0.00 0.55 2.00 3.34 56 0.00 1.45 3.88 1.73 57 0.63 0.00 0.53 1.13 58 0.99 1.90 2.95 0.37 *END 165 *END uzu110810sloppypt2 CaveConverter_src/test/data/regression/0098_Bollon_ss_ref.svx0000644000000000000000000001107312560565156023266 0ustar rootroot*BEGIN 0098_Bollon 0 1 7.50 278.20 -42.00 1 2 5.40 286.20 3.00 2 3 9.70 285.20 7.00 3 4 3.60 271.20 -18.00 4 5 7.00 323.20 -12.00 5 6 3.40 23.20 -5.00 6 7 6.80 350.20 8.00 7 8 3.30 322.20 3.00 8 9 2.30 6.20 -4.00 9 10 11.10 355.20 3.00 10 11 2.30 327.20 0.00 11 12 5.20 43.20 -17.00 12 13 11.60 68.20 -16.00 13 14 5.40 69.20 -2.00 14 15 2.30 36.20 -32.00 15 16 1.00 31.20 0.00 16 17 7.50 348.20 23.00 17 18 2.20 49.20 -7.00 18 19 3.40 65.20 -4.00 19 20 4.30 107.20 -5.00 20 21 11.90 62.20 30.00 21 22 6.60 83.20 -8.00 22 23 4.70 122.20 -13.00 23 24 8.70 105.20 -7.00 24 25 6.30 84.20 -6.00 22 26 3.40 8.20 -23.00 26 27 2.40 18.20 -46.00 27 28 9.00 74.20 -19.00 28 29 3.00 87.20 -4.00 29 30 4.10 137.20 0.00 30 31 4.10 57.20 -11.00 31 32 2.10 96.20 -24.00 32 33 5.20 82.20 -2.00 33 34 4.30 97.20 -1.00 34 35 4.20 84.20 -2.00 35 36 7.20 61.20 -7.00 36 37 2.60 76.20 -19.00 37 38 2.90 77.20 2.00 38 39 2.70 115.20 25.00 39 40 2.50 114.20 -6.00 40 41 2.00 76.20 -18.00 41 42 2.00 109.20 34.00 42 43 1.70 98.20 0.00 43 44 2.10 155.20 9.00 44 45 2.60 182.20 36.00 45 46 4.30 97.20 -12.00 46 47 5.80 85.20 -4.00 47 48 6.80 22.20 -3.00 48 49 3.40 74.20 0.00 49 50 4.00 77.20 -12.00 12 51 6.90 326.20 -11.00 51 52 11.30 262.20 -23.00 52 53 3.70 262.20 -7.00 53 54 4.70 296.20 5.00 54 55 3.40 237.20 -9.00 55 56 6.10 235.20 -12.00 56 57 8.40 308.20 -3.00 57 58 6.90 278.20 0.00 58 59 10.30 275.20 -1.00 59 60 7.80 264.20 0.00 60 61 3.50 301.20 0.00 61 62 10.60 276.20 -1.00 62 63 7.70 276.20 0.00 63 64 5.30 301.10 0.00 64 65 5.60 284.10 10.00 65 66 10.70 278.10 8.00 66 67 3.30 358.10 3.00 67 68 11.30 307.10 5.00 68 69 6.60 276.10 -12.00 69 70 19.10 277.10 -9.00 70 71 5.28 33.10 -18.00 71 72 3.30 28.85 0.00 72 73 8.10 291.85 21.00 73 74 7.40 253.85 1.00 74 75 9.50 284.85 4.00 75 76 8.60 241.85 -3.00 76 77 3.30 277.85 -1.00 77 78 6.15 271.85 -1.00 78 79 10.50 288.85 1.00 79 80 8.45 274.85 -2.00 80 81 24.50 235.85 -1.00 81 82 12.40 250.85 1.00 82 83 4.65 227.85 -13.00 83 84 16.10 277.85 -6.00 84 85 1.20 0.00 90.00 85 86 14.20 268.85 -3.00 86 87 14.20 275.85 0.00 87 88 6.50 10.85 0.00 88 89 3.95 318.85 0.00 89 90 17.80 276.85 1.00 90 91 12.95 254.35 7.00 91 92 1.50 0.00 -90.00 92 93 3.05 296.85 16.00 93 94 9.75 271.85 0.00 94 95 9.60 235.85 25.00 95 96 2.00 218.85 19.00 96 97 2.75 247.85 -12.00 97 98 7.30 255.85 12.00 98 99 2.90 270.85 -26.00 99 100 2.10 225.85 0.00 100 101 4.65 195.85 8.00 101 102 7.60 148.85 26.00 102 103 13.05 226.85 39.00 103 104 11.05 215.85 33.00 104 105 3.00 105.85 38.00 105 106 20.75 168.85 36.00 106 107 3.30 290.85 34.00 107 108 13.20 254.85 2.00 108 109 2.70 193.85 -43.00 109 110 6.80 271.85 -23.00 110 111 5.60 199.85 -36.00 111 112 2.75 198.85 -14.00 112 113 17.05 250.85 15.00 113 114 16.10 245.85 -6.00 114 115 14.75 168.85 38.00 115 116 8.95 132.85 29.00 116 117 11.60 127.85 6.00 117 118 15.50 126.85 20.00 104 119 10.05 299.85 -35.00 104 120 10.80 308.15 -27.00 120 121 5.90 204.15 -41.00 121 122 4.40 186.15 -57.00 122 123 4.40 296.15 -65.00 123 124 3.60 0.00 -90.00 124 125 3.90 211.15 7.00 125 126 16.60 269.65 0.00 126 127 9.50 217.15 21.00 127 128 5.40 189.65 14.00 128 129 1.70 249.65 13.00 129 130 4.00 293.65 31.00 130 131 3.60 272.15 7.00 131 132 1.90 0.00 90.00 132 133 6.60 217.65 13.00 133 134 1.20 195.45 0.00 134 135 3.20 281.45 -71.00 135 136 1.80 109.45 -44.00 136 137 1.60 161.45 -70.00 137 138 6.20 247.45 3.00 138 139 4.60 272.45 -6.00 139 140 3.60 133.45 -45.00 140 141 4.10 235.45 2.00 141 142 5.60 209.45 -9.00 142 143 3.70 256.45 49.00 143 144 4.80 272.45 8.00 144 145 5.00 146.45 -34.00 145 146 2.80 208.45 -52.00 146 147 2.50 212.45 15.00 147 148 10.30 237.45 19.00 148 149 10.80 287.45 -8.00 149 150 14.70 206.45 0.00 150 151 3.50 249.45 0.00 151 152 5.60 224.45 0.00 152 153 4.30 257.45 0.00 153 154 2.30 173.45 0.00 154 155 13.30 227.45 0.00 155 156 18.00 244.45 6.00 156 157 5.60 262.45 -35.00 157 158 12.90 220.45 0.00 158 159 19.30 242.45 1.00 159 160 13.50 240.45 14.00 160 161 12.00 278.45 -4.00 161 162 10.90 254.45 0.00 162 163 10.40 237.45 -9.00 163 164 18.00 194.45 -1.00 164 165 6.20 289.45 6.00 165 166 4.40 245.45 13.00 166 167 5.20 222.45 -2.00 *END 0098_Bollon CaveConverter_src/test/data/regression/2649_Mares_from3d_ref.svx0000644000000000000000000000432312115122656023647 0ustar rootroot*BEGIN SurveyFromDXF *EQUATE SeriesFromLines1.6 SeriesFromLines2.0 *EQUATE SeriesFromLines2.0 SeriesFromLines1.6 *EQUATE SeriesFromLines2.3 SeriesFromLines3.0 *EQUATE SeriesFromLines3.0 SeriesFromLines2.3 *EQUATE SeriesFromLines3.13 SeriesFromLines5.0 *EQUATE SeriesFromLines3.14 SeriesFromLines4.0 *EQUATE SeriesFromLines4.0 SeriesFromLines3.14 *EQUATE SeriesFromLines5.0 SeriesFromLines3.13 *EQUATE SeriesFromLines5.4 SeriesFromLines6.0 *EQUATE SeriesFromLines6.0 SeriesFromLines5.4 *EQUATE SeriesFromLines6.1 SeriesFromLines7.0 *EQUATE SeriesFromLines7.0 SeriesFromLines6.1 *EQUATE SeriesFromLines7.5 SeriesFromLines8.0 *EQUATE SeriesFromLines8.0 SeriesFromLines7.5 *BEGIN SeriesFromLines1 *FIX 0 452220.0 4800904.0 274.0 0 1 1.72 142.64 -47.12 1 2 2.90 350.59 -49.12 2 3 4.22 0.00 -90.00 3 4 4.96 100.66 11.05 4 5 2.17 69.61 39.87 5 6 2.50 97.85 -35.10 6 7 6.89 219.66 -10.95 *END SeriesFromLines1 *BEGIN SeriesFromLines2 0 1 2.98 65.71 18.98 1 2 3.00 107.65 -1.91 2 3 2.58 95.89 -10.95 3 4 4.80 0.00 -90.00 *END SeriesFromLines2 *BEGIN SeriesFromLines3 0 1 4.40 45.66 -11.00 1 2 2.30 17.68 -43.07 2 3 7.35 47.76 -3.98 3 4 7.35 32.74 -5.07 4 5 4.10 22.63 14.12 5 6 5.90 70.73 -5.05 6 7 7.40 29.69 -2.94 7 8 5.64 46.73 -3.05 8 9 3.91 107.78 -3.96 9 10 4.02 82.72 1.99 10 11 3.00 35.76 -3.06 11 12 3.30 147.73 -11.00 12 13 6.57 96.74 0.00 13 14 1.81 179.68 3.16 14 15 1.90 25.75 6.95 *END SeriesFromLines3 *BEGIN SeriesFromLines4 0 1 2.50 199.59 19.84 *END SeriesFromLines4 *BEGIN SeriesFromLines5 0 1 3.00 88.85 6.70 1 2 2.91 18.25 3.54 2 3 4.11 17.73 -2.23 3 4 2.03 328.99 4.81 4 5 2.42 26.97 -37.65 *END SeriesFromLines5 *BEGIN SeriesFromLines6 0 1 1.92 61.82 -5.99 1 2 3.34 30.26 -4.29 *END SeriesFromLines6 *BEGIN SeriesFromLines7 0 1 8.17 102.88 -1.40 1 2 1.78 137.05 4.83 2 3 2.69 98.76 0.21 3 4 4.73 54.32 -3.76 4 5 1.25 67.34 -4.59 5 6 2.94 110.53 -3.90 *END SeriesFromLines7 *BEGIN SeriesFromLines8 0 1 3.96 134.08 3.91 1 2 1.44 67.21 -26.37 2 3 2.30 129.81 -17.99 *END SeriesFromLines8 *END SurveyFromDXF CaveConverter_src/test/data/regression/survex_different_data_order_in.svx0000644000000000000000000000167613030252172026244 0ustar rootroot*begin survex_different_data_order *equate not_specified.3 normal_order.1 *equate normal_order.3 normal_order2.1 *equate normal_order2.3 comp_tape_clino.1 *equate comp_tape_clino.3 clino_comp_tape_to_from.1 *begin not_specified 1 2 3.45 046 -1 2 3 7.2 052 5 ;A comment with semicolon separator *end not_specified *begin normal_order *data normal from to tape compass clino 1 2 12.21 073 -12 ;A comment with semicolon separator 2 3 6.77 098 -04 *end normal_order *begin normal_order2 *data normal from to length bearing gradient ignoreall 1 2 10.12 034 2.5 2 3 11.45 038 -1 A comment without a separator *end normal_order2 *begin comp_tape_clino *data normal from to compass tape clino 1 2 050 9.45 0 2 3 045 4.51 -2 *end comp_tape_clino *begin clino_comp_tape_to_from *data normal clino compass tape to from 5.23 67.33 8.23 2 1 -3.45 73.63 10.63 3 2 *end clino_comp_tape_to_from *end survex_different_data_orderCaveConverter_src/test/data/regression/OldCompassHeaders_cs_ref.svx0000644000000000000000000000054213030252172024660 0ustar rootroot*BEGIN OldCompassHeaders *EQUATE Footleg1.2 Footleg2.2 *BEGIN Footleg1 *DATE 2014.02.13 *CALIBRATE declination -30.0 1 2 8.00 15.00 0.00 *END Footleg1 *BEGIN Footleg2 *DATE 2014.02.14 *CALIBRATE declination -45.0 *CALIBRATE tape 0.50 *CALIBRATE compass 10.0 2 3 10.50 100.00 36.87 *END Footleg2 *END OldCompassHeaders CaveConverter_src/test/data/regression/calibrations_ss_ref.svx0000644000000000000000000000706213030252172024016 0ustar rootroot*BEGIN Swildons *EQUATE Ent EntranceZigZags.3 *EQUATE surfacegps.4 EntranceZigZags.3 *EQUATE EntranceZigZags.5 LongDryWay.part1.0 *EQUATE EntranceZigZags.21 LongDryWay.part1.5 *EQUATE ShortDryWay.0 EntranceZigZags.21 *BEGIN surfacegps *CALIBRATE declination 1.58 0 1 9.84 94.37 -5.88 1 2 7.84 97.65 -8.05 2 3 11.76 94.27 -17.67 3 4 4.38 7.38 -23.29 3 5 5.45 262.93 13.06 5 6 8.80 174.95 11.61 6 7 13.78 168.31 12.55 *END surfacegps *BEGIN EntranceZigZags *CALIBRATE declination 0.6 *CALIBRATE compass 1.1 *CALIBRATE clino -0.1 0 1 2.98 10.26 -2.01 0 2 5.24 3.23 -5.04 2 3 2.64 166.70 -60.11 3 4 3.10 330.76 -25.13 4 5 4.51 275.80 -12.10 5 6 2.41 50.67 -22.33 6 7 1.08 37.30 11.53 7 8 2.00 6.10 11.51 8 9 1.01 56.60 0.18 9 10 3.07 336.52 5.81 9 11 2.42 64.64 5.29 11 12 4.50 106.56 19.29 10 13 0.94 80.55 -45.63 13 14 5.31 65.16 19.50 10 15 3.27 329.15 -18.16 15 16 3.57 334.08 -6.33 16 17 2.41 207.98 -9.43 17 18 4.05 308.01 -19.25 18 19 2.06 211.48 -16.06 19 20 2.94 233.55 -35.84 20 21 2.04 14.57 -39.09 *END EntranceZigZags *BEGIN LongDryWay *CALIBRATE declination 3.63 *CALIBRATE compass -2.0 *CALIBRATE clino 0.1 *EQUATE part1.31 part2.31 *EQUATE part2.33 part1.35 *BEGIN part1 *EQUATE 35 BoulderChamber.35 *EQUATE 35 DownStream.35 0 1 4.08 270.72 -25.50 1 2 3.77 354.35 -29.81 2 3 4.33 336.10 -24.79 3 4 2.77 337.70 -4.41 4 5 3.14 343.71 -25.59 5 6 1.87 332.43 6.50 6 7 2.26 343.32 -5.29 7 8 1.72 258.62 12.28 7 9 1.10 310.47 4.46 9 10 2.37 334.59 4.19 10 11 1.12 263.77 46.91 11 12 3.53 351.74 -3.89 12 13 1.97 312.50 39.30 13 14 2.39 28.12 3.33 14 15 0.86 306.09 -13.02 15 16 4.55 48.38 7.37 16 17 2.34 328.01 -9.83 17 18 2.65 86.23 -7.24 18 19 0.84 146.67 18.49 19 20 1.81 87.93 13.23 20 21 1.73 164.45 7.33 21 22 2.91 113.95 7.56 22 23 1.51 181.21 30.14 23 24 4.59 108.18 -8.18 24 25 3.22 188.75 35.45 25 26 4.13 139.60 16.69 25 27 4.94 97.33 39.05 24 28 2.78 323.60 -24.94 28 29 0.89 90.00 -48.92 29 30 6.28 324.60 -29.83 30 31 1.55 264.23 41.75 31 34 5.13 314.22 -30.46 34 35 2.76 19.79 -19.74 *BEGIN DownStream *CALIBRATE declination 0.0 *CALIBRATE compass 0.0 *CALIBRATE clino 0.0 *EQUATE 44 46 35 43 7.82 271.86 -10.72 43 44 1.58 132.75 -54.76 43 45 4.22 283.16 -3.82 46 47 4.08 278.14 -22.89 47 48 1.62 127.59 7.41 45 49 2.40 265.00 1.41 49 50 2.06 297.62 28.08 50 51 2.38 317.24 16.74 51 52 2.80 335.01 -5.36 52 53 8.00 77.58 15.81 52 54 2.99 251.79 -11.14 54 55 2.75 287.69 -14.31 55 56 6.04 280.29 -11.16 56 57 4.72 167.79 -69.81 57 58 6.26 266.27 3.98 58 59 5.34 221.34 -28.43 59 60 3.64 249.87 -18.27 60 61 6.14 188.00 -36.35 61 62 1.04 31.64 -42.73 *END DownStream *BEGIN BoulderChamber 35 36 4.45 91.00 26.23 36 37 6.61 112.79 18.69 37 38 3.92 158.52 22.40 38 39 5.06 158.54 15.55 39 40 3.30 137.29 35.75 40 41 1.54 156.92 21.03 41 42 1.23 188.42 54.13 *END BoulderChamber *END part1 *BEGIN part2 31 32 2.26 15.83 12.57 32 33 6.03 323.45 -41.61 *END part2 *END LongDryWay *BEGIN ShortDryWay *CALIBRATE declination 5.13 *CALIBRATE compass -2.5 *CALIBRATE clino 0.1 0 1 1.43 131.61 -13.25 1 2 3.89 73.29 -51.63 2 3 4.50 170.72 19.68 3 4 1.11 246.49 -14.16 2 5 4.91 323.66 2.34 5 6 5.05 279.35 -25.23 6 7 5.02 336.36 -13.85 7 8 3.19 303.08 -33.11 8 9 6.71 295.69 -12.15 9 10 1.11 265.93 2.35 *END ShortDryWay *END Swildons CaveConverter_src/test/data/regression/nosurvey_in.svx0000644000000000000000000000037613032775132022374 0ustar rootroot*begin nosurveyleg 1 2 5.75 338 -15 2 3 3.03 274 -8 *data nosurvey from to 3 5 ; leg across deep pool in main streamway that was walked round *data normal from to tape compass clino 3 4 8.12 280 +12 4 5 9.89 345 -4 *end nosurveyleg CaveConverter_src/test/data/regression/HSC_ps_ref.svx0000644000000000000000000002411513030252172021754 0ustar rootroot*BEGIN new090417 *EQUATE 1.20 118.0 *BEGIN 118 *DATE 2009.04.17 *CALIBRATE declination 2.08 *FLAGS SPLAY 0 0a 0.96 22.53 -1.72 0 0b 0.23 209.86 13.47 0 0c 4.62 344.93 83.50 0 0d 1.33 234.49 -86.05 *FLAGS NOT SPLAY 0 1 4.41 85.63 56.45 *FLAGS SPLAY 1 1a 5.21 286.13 -1.99 1 1b 1.25 97.37 3.15 1 1c 1.56 321.06 80.51 1 1d 4.37 145.94 -88.53 *FLAGS NOT SPLAY 1 2 2.57 17.44 8.88 *FLAGS SPLAY 2 2a 1.22 287.61 0.03 2 2b 0.40 105.36 4.08 2 2c 0.31 293.53 87.17 2 2d 0.38 21.24 -85.59 *FLAGS NOT SPLAY 2 3 6.09 17.23 -0.36 *FLAGS SPLAY 3 3a 1.34 209.51 15.20 3 3b 0.20 26.53 2.06 3 3c 0.33 19.33 83.86 3 3d 0.44 187.04 -85.42 *FLAGS NOT SPLAY 3 4 6.26 288.72 0.89 *FLAGS SPLAY 4 4a 0.48 196.35 -3.11 4 4b 0.44 12.77 10.01 4 4c 0.34 324.14 88.50 4 4d 0.37 218.56 -87.98 *FLAGS NOT SPLAY 3 5 2.08 143.25 1.29 *FLAGS SPLAY 5 5a 0.82 10.33 3.35 5 5b 0.21 95.58 86.04 5 5c 0.19 205.48 -87.92 *FLAGS NOT SPLAY 5 6 2.63 92.99 -6.53 *FLAGS SPLAY 6 6a 0.36 355.91 0.44 6 6b 0.31 168.00 6.41 6 6c 0.21 76.60 85.20 6 6d 1.94 132.41 -84.27 *FLAGS NOT SPLAY 1 7 1.92 171.25 38.92 *FLAGS SPLAY 7 7a 0.99 23.62 1.01 7 7b 0.96 219.73 0.84 7 7c 2.06 276.93 84.38 7 7d 0.48 160.02 -83.30 *FLAGS NOT SPLAY 7 8 4.09 118.81 8.07 *FLAGS SPLAY 8 8a 0.59 14.54 -1.30 8 8b 1.16 64.30 86.33 8 8c 0.81 4.19 -88.04 *FLAGS NOT SPLAY 8 9 6.84 102.75 6.73 *FLAGS SPLAY 9 9a 0.64 9.27 -0.28 9 9b 0.40 186.72 9.03 9 9c 0.22 28.87 85.75 9 9d 0.22 217.52 -85.24 *FLAGS NOT SPLAY 7 10 3.61 220.79 21.43 *FLAGS SPLAY 10 10a 1.23 116.25 2.68 10 10b 0.76 285.24 7.71 10 10c 0.74 109.40 86.98 10 10d 0.22 100.33 -89.49 *FLAGS NOT SPLAY 10 11 1.78 180.39 16.50 *FLAGS SPLAY 11 11a 0.31 103.13 -2.29 11 11b 1.00 282.91 1.18 11 11c 0.24 314.51 86.50 11 11d 0.20 162.79 -79.23 *FLAGS NOT SPLAY 11 12 15.03 195.29 0.32 *FLAGS SPLAY 12 12a 6.01 17.32 2.01 12 12b 3.08 347.79 3.07 12 12c 2.20 320.84 4.71 12 12d 3.83 49.89 -0.50 12 12e 0.74 110.79 8.92 12 12f 0.69 198.64 10.54 *FLAGS NOT SPLAY 12 13 7.30 264.09 2.57 *FLAGS SPLAY 13 13a 0.70 182.13 3.06 13 13b 0.21 11.63 19.31 13 13c 0.23 184.92 77.90 *FLAGS NOT SPLAY 13 14 3.71 279.82 4.77 *FLAGS SPLAY 14 14a 0.43 188.00 1.46 14 14b 0.85 13.90 -0.77 14 14c 0.34 176.03 -80.18 *FLAGS NOT SPLAY 14 15 6.69 266.26 -26.44 *FLAGS SPLAY 15 15a 0.98 170.84 8.55 15 15b 2.49 64.23 11.72 15 15c 2.61 244.87 21.84 15 15d 3.37 292.48 11.33 15 15e 2.00 342.97 10.72 *FLAGS NOT SPLAY 15 16 2.92 52.57 0.50 *FLAGS SPLAY 16 16a 1.13 335.93 -3.42 16 16b 0.31 152.53 2.42 16 16c 0.62 333.07 87.23 16 16d 0.38 146.54 -87.21 *FLAGS NOT SPLAY 16 17 7.37 58.25 0.39 *FLAGS SPLAY 17 17a 0.98 324.42 3.22 17 17b 0.31 144.32 3.31 17 17c 0.28 300.73 87.16 17 17d 0.05 126.22 -81.67 *FLAGS NOT SPLAY 17 18 3.30 34.06 -4.56 *FLAGS SPLAY 18 18a 2.98 85.15 -2.52 18 18b 2.97 124.59 0.62 18 18c 7.76 126.15 1.14 18 18d 6.42 141.39 0.59 18 18e 3.29 164.25 2.96 18 18f 2.76 240.68 7.36 18 18g 0.87 282.27 12.06 *FLAGS NOT SPLAY 18 19 4.75 270.79 2.04 *FLAGS SPLAY 19 19a 0.20 182.59 2.55 19 19b 1.54 11.61 -0.79 19 19c 0.63 297.61 84.85 19 19d 0.40 87.62 -85.16 *FLAGS NOT SPLAY 19 20 5.16 306.51 4.31 *FLAGS SPLAY 20 20a 1.60 212.01 -0.93 20 20b 0.26 50.02 -84.91 *FLAGS NOT SPLAY 20 21 2.77 223.43 -6.75 *FLAGS SPLAY 21 21a 1.60 180.63 6.26 21 21b 0.60 338.00 1.74 21 21c 0.76 212.74 88.20 *FLAGS NOT SPLAY 21 22 4.11 249.43 5.41 *FLAGS SPLAY 22 22a 0.39 162.23 -0.01 22 22b 0.58 347.00 0.42 22 22c 0.46 271.51 75.36 22 22d 0.26 90.53 -87.49 *FLAGS NOT SPLAY 22 23 4.04 274.31 6.76 21 24 2.04 127.67 8.49 *FLAGS SPLAY 24 24a 1.05 1.79 1.44 24 24b 0.23 100.12 86.02 24 24c 0.27 278.61 -83.60 *FLAGS NOT SPLAY 24 25 4.17 85.93 -6.08 15 26 4.82 275.34 11.68 *FLAGS SPLAY 26 26a 0.67 193.39 11.97 26 26b 0.45 359.40 1.02 26 26c 0.32 29.04 -85.64 *FLAGS NOT SPLAY 26 27 9.44 283.93 -1.80 *FLAGS SPLAY 27 27a 0.33 200.74 4.08 27 27b 0.29 18.18 10.78 27 27c 0.35 6.27 85.39 27 27d 0.24 165.10 -87.87 *FLAGS NOT SPLAY 15 28 5.33 258.07 15.05 *FLAGS SPLAY 28 28a 0.60 161.13 4.17 28 28b 0.85 353.50 8.71 28 28c 2.12 50.09 81.34 *FLAGS NOT SPLAY 28 29 2.15 242.34 48.01 *FLAGS SPLAY 29 29a 2.97 33.03 0.82 29 29b 2.22 320.50 -0.21 29 29c 2.01 217.71 7.64 29 29d 1.67 157.78 9.94 29 29e 1.40 89.26 -9.57 *FLAGS NOT SPLAY 29 30 4.36 106.01 -31.30 *FLAGS SPLAY 30 30a 0.30 9.95 1.38 30 30b 0.48 199.82 0.95 30 30c 0.46 287.87 78.94 *FLAGS NOT SPLAY 29 31 2.09 225.82 5.69 *FLAGS SPLAY 31 31a 0.24 157.70 0.95 31 31b 1.25 331.67 1.19 31 31c 0.20 175.76 86.96 31 31d 0.36 317.54 -83.62 *FLAGS NOT SPLAY 31 32 4.45 242.34 0.48 *FLAGS SPLAY 32 32a 0.52 203.42 5.06 32 32b 3.19 303.43 6.37 32 32c 4.63 339.31 2.41 32 32d 3.02 0.72 5.70 32 32e 3.10 30.34 2.17 32 32f 3.63 67.71 3.17 32 32g 3.21 100.79 -1.01 *FLAGS NOT SPLAY 32 33 3.28 101.68 1.33 *FLAGS SPLAY 33 33a 0.95 34.52 0.59 33 33b 0.34 214.65 16.64 33 33c 0.29 122.89 84.71 33 33d 0.19 292.02 -83.48 *FLAGS NOT SPLAY 33 34 4.79 105.83 -13.72 *FLAGS SPLAY 34 34a 0.29 207.59 -3.35 34 34b 0.20 173.84 86.48 34 34c 1.47 178.88 -87.03 *FLAGS NOT SPLAY 34 35 2.37 121.27 -61.00 *FLAGS SPLAY 35 35a 1.02 20.04 -5.91 35 35b 0.72 201.68 6.82 35 35c 1.17 125.10 82.70 35 35d 1.64 292.70 -81.73 *FLAGS NOT SPLAY 35 36 2.97 70.89 10.56 *FLAGS SPLAY 36 36a 0.79 325.76 2.66 36 36b 0.42 139.95 3.69 36 36c 0.85 34.54 84.25 *FLAGS NOT SPLAY 36 37 2.40 81.43 2.75 *FLAGS SPLAY 37 37a 0.52 358.49 2.72 37 37b 0.50 166.22 5.62 37 37c 0.49 352.29 88.26 *FLAGS NOT SPLAY 36 38 3.44 199.73 3.19 *FLAGS SPLAY 38 38a 0.24 135.39 -2.25 38 38b 0.31 318.27 11.13 38 38c 0.41 119.61 80.85 38 38d 0.19 318.28 -81.47 *FLAGS NOT SPLAY 36 39 3.24 245.65 -25.94 *FLAGS SPLAY 39 39a 0.43 25.03 1.52 39 39b 0.56 7.33 84.71 39 39c 1.47 236.88 -81.55 *FLAGS NOT SPLAY 39 40 3.12 126.45 -36.45 39 41 2.46 288.54 -19.63 *FLAGS SPLAY 41 41a 0.36 200.49 1.35 41 41b 0.28 23.85 4.36 41 41c 0.55 300.08 85.86 *FLAGS NOT SPLAY 41 42 2.83 297.90 27.96 *FLAGS SPLAY 42 42a 0.74 181.72 3.85 42 42b 0.48 340.78 0.38 42 42c 2.69 269.10 86.13 42 42d 0.52 115.64 -84.70 *FLAGS NOT SPLAY 42 43 1.84 310.43 50.44 43 44 7.35 226.90 12.38 *FLAGS SPLAY 44 44a 0.56 328.97 6.99 44 44b 1.05 212.94 78.82 44 44c 0.35 301.67 -85.91 *FLAGS NOT SPLAY 44 45 1.07 265.82 18.38 *FLAGS SPLAY 45 45a 0.51 15.60 4.39 45 45b 0.57 194.98 0.17 45 45c 0.54 180.85 83.08 45 45d 0.50 224.46 -88.24 *FLAGS NOT SPLAY 45 46 2.40 112.23 14.37 *FLAGS SPLAY 46 46a 0.79 17.98 6.40 46 46b 0.53 207.16 5.75 46 46c 0.50 243.62 84.24 46 46d 0.91 125.65 -81.45 *FLAGS NOT SPLAY 46 47 2.52 132.69 26.44 *FLAGS SPLAY 47 47a 3.85 1.01 2.48 47 47b 5.83 317.39 2.51 47 47c 10.34 296.43 3.28 47 47d 10.79 286.75 3.18 47 47e 2.68 266.70 5.84 47 47f 0.50 172.45 13.22 *FLAGS NOT SPLAY 47 48 2.50 63.09 0.33 *FLAGS SPLAY 48 48a 2.01 358.17 2.41 48 48b 0.55 162.50 4.70 48 48c 0.36 41.60 84.49 48 48d 2.61 87.26 -2.01 *FLAGS NOT SPLAY 48 49 4.48 87.14 -2.01 *FLAGS SPLAY 49 49a 2.83 350.35 0.10 49 49b 1.18 152.31 4.71 49 49c 0.40 118.05 77.67 *FLAGS NOT SPLAY 49 50 3.82 87.50 -4.52 *FLAGS SPLAY 50 50a 3.98 347.14 2.28 50 50b 0.34 177.04 4.50 50 50c 0.56 350.94 87.59 50 50d 0.67 224.41 -87.87 *FLAGS NOT SPLAY 43 51 1.80 310.46 50.33 *FLAGS SPLAY 51 51a 0.83 211.09 -1.29 51 51b 0.35 27.20 5.53 51 51c 1.20 241.74 87.79 51 51d 0.38 131.38 -84.70 *FLAGS NOT SPLAY 51 52 8.85 287.98 -2.46 *data passage station left right up down 0 0.86 0.18 4.59 1.33 1 5.10 1.25 1.54 4.37 2 1.22 0.40 0.31 0.38 3 0.20 1.28 0.33 0.44 5 0.78 0.00 0.21 0.19 6 0.36 0.30 0.21 1.93 *data passage station left right up down 3 1.28 0.20 0.33 0.44 4 0.48 0.43 0.34 0.37 *data passage station left right up down 1 1.25 5.10 1.54 4.37 7 0.84 0.93 2.05 0.48 8 0.59 0.00 1.16 0.81 9 0.64 0.39 0.22 0.22 *data passage station left right up down 7 0.13 0.00 2.05 0.48 10 1.22 0.75 0.74 0.22 11 0.31 1.00 0.24 0.20 12 0.64 2.71 0.00 0.00 13 0.70 0.20 0.22 0.00 14 0.43 0.83 0.00 0.34 15 2.42 0.93 0.97 0.00 16 1.11 0.31 0.62 0.38 17 0.97 0.31 0.28 0.05 18 2.74 3.43 0.00 0.00 19 0.19 1.53 0.63 0.40 20 1.28 0.00 0.00 0.26 21 1.32 0.59 0.76 0.00 22 0.38 0.58 0.45 0.26 *data passage station left right up down 21 0.52 1.58 0.76 0.00 24 1.01 0.00 0.23 0.27 *data passage station left right up down 15 1.06 1.87 0.97 0.00 26 0.65 0.44 0.00 0.32 27 0.33 0.28 0.35 0.24 *data passage station left right up down 15 0.97 1.94 0.97 0.00 28 0.60 0.82 2.10 0.00 29 1.60 2.22 0.00 0.00 31 0.23 1.24 0.20 0.36 32 3.51 2.38 0.00 0.00 33 0.89 0.30 0.29 0.19 34 0.00 0.29 0.20 1.47 35 0.98 0.69 1.16 1.62 36 0.38 0.75 0.85 0.00 39 0.00 0.43 0.56 1.45 41 0.36 0.28 0.55 0.00 42 0.62 0.29 2.68 0.52 43 0.00 0.00 0.00 0.00 44 0.00 0.55 1.03 0.35 45 0.00 0.06 0.54 0.50 46 0.76 0.53 0.50 0.90 47 3.82 0.52 0.00 0.00 48 1.96 0.55 0.36 0.00 49 2.81 1.07 0.39 0.00 50 3.91 0.34 0.56 0.67 *data passage station left right up down 29 2.02 1.63 0.00 0.00 30 0.30 0.48 0.45 0.00 *data passage station left right up down 38 0.22 0.27 0.40 0.19 36 0.38 0.75 0.85 0.00 39 0.00 0.43 0.56 1.45 *data passage station left right up down 36 0.74 0.38 0.85 0.00 37 0.52 0.50 0.49 0.00 *data passage station left right up down 43 0.00 0.00 0.00 0.00 51 0.83 0.35 1.20 0.38 *END 118 *END new090417 CaveConverter_src/test/data/regression/Sloppy2ZigZags_ref.text0000644000000000000000000004504412115304544023660 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.uzu110810sloppypt2.161 1 -1 1 1 1 2 0 1 1 1 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 8.58 203.24 85.39 0.00 0.00 0.00 0.00 2 -2 1 1 1 Series 2-root.uzu110810sloppypt2.161 2 -1 1 1 1 2 0 2 1 1 3 0 2 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 1 1 1 1 1.79 169.15 -88.07 0.00 0.00 0.00 0.00 3 -2 1 1 1 Series 3-root.uzu110810sloppypt2.161 3 -1 1 1 1 2 0 3 1 1 3 0 3 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 1 1 1 1 1.29 125.73 0.46 0.00 0.00 0.00 0.00 4 -2 1 1 1 Series 4-root.uzu110810sloppypt2.161 4 -1 1 1 1 2 0 4 1 1 3 0 4 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4 1 1 1 1 2.53 190.96 4.20 0.00 0.00 0.00 0.00 5 -2 1 1 1 Series 5-root.uzu110810sloppypt2.161 5 -1 1 1 1 2 0 5 1 1 3 0 5 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 5 1 1 1 1 1.61 306.94 3.61 0.00 0.00 0.00 0.00 6 -2 1 1 1 Series 6-root.uzu110810sloppypt2.161 6 -1 1 1 1 2 0 6 1 1 3 0 6 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6 1 1 1 1 2.31 237.87 9.54 0.00 0.00 0.00 0.00 7 -2 1 1 1 Series 7-root.uzu110810sloppypt2.161 7 -1 1 1 1 2 0 7 1 1 3 0 7 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 7 1 1 1 1 2.83 253.54 9.73 0.00 0.00 0.00 0.00 8 -2 1 1 1 Series 8-root.uzu110810sloppypt2.161 8 -1 1 1 1 2 0 8 1 1 3 0 8 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 8 1 1 1 1 2.16 277.70 11.01 0.00 0.00 0.00 0.00 9 -2 1 1 1 Series 9-root.uzu110810sloppypt2.161 9 -1 1 1 1 2 0 9 1 1 3 0 9 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 9 1 1 1 1 1.31 43.80 6.31 0.00 0.00 0.00 0.00 10 -2 1 1 1 Series 10-root.uzu110810sloppypt2.161 10 -1 1 1 1 2 0 10 4 4 3 0 10 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 10 1 1 1 1 8.84 224.95 74.29 1.29 1.61 8.58 1.79 10 2 1 1 1 1.29 177.76 16.14 0.77 0.00 1.85 0.68 10 3 1 1 1 9.45 62.80 8.45 0.72 0.00 2.25 0.82 10 4 1 1 1 4.88 114.75 84.07 0.00 0.00 0.00 0.00 11 -2 1 1 1 Series 11-root.uzu110810sloppypt2.161 11 -1 1 1 1 10 3 11 1 1 3 0 11 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 11 1 1 1 1 1.07 299.88 -83.79 0.00 0.00 0.00 0.00 12 -2 1 1 1 Series 12-root.uzu110810sloppypt2.161 12 -1 1 1 1 10 3 12 1 1 3 0 12 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 12 1 1 1 1 0.76 207.08 2.14 0.00 0.00 0.00 0.00 13 -2 1 1 1 Series 13-root.uzu110810sloppypt2.161 13 -1 1 1 1 10 3 13 1 1 3 0 13 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 13 1 1 1 1 1.45 243.11 1.63 0.00 0.00 0.00 0.00 14 -2 1 1 1 Series 14-root.uzu110810sloppypt2.161 14 -1 1 1 1 10 3 14 1 1 3 0 14 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 14 1 1 1 1 2.05 261.73 3.02 0.00 0.00 0.00 0.00 15 -2 1 1 1 Series 15-root.uzu110810sloppypt2.161 15 -1 1 1 1 10 3 15 5 5 3 0 15 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 15 1 1 1 1 3.09 174.44 77.16 0.00 2.05 4.88 1.07 15 2 1 1 1 3.04 80.70 -0.77 0.79 0.00 4.21 1.25 15 3 1 1 1 7.44 29.62 5.20 0.49 0.00 4.40 0.97 15 4 1 1 1 5.85 35.05 1.09 0.00 0.77 4.97 0.73 15 5 1 1 1 8.62 351.28 81.03 0.00 0.00 0.00 0.00 16 -2 1 1 1 Series 16-root.uzu110810sloppypt2.161 16 -1 1 1 1 15 4 16 1 1 3 0 16 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 16 1 1 1 1 0.55 153.97 -74.30 0.00 0.00 0.00 0.00 17 -2 1 1 1 Series 17-root.uzu110810sloppypt2.161 17 -1 1 1 1 15 4 17 1 1 3 0 17 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 17 1 1 1 1 0.58 282.01 8.71 0.00 0.00 0.00 0.00 18 -2 1 1 1 Series 18-root.uzu110810sloppypt2.161 18 -1 1 1 1 15 4 18 1 1 3 0 18 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 18 1 1 1 1 3.17 349.34 3.84 0.00 0.00 0.00 0.00 19 -2 1 1 1 Series 19-root.uzu110810sloppypt2.161 19 -1 1 1 1 15 4 19 1 1 3 0 19 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 19 1 1 1 1 3.04 20.21 3.70 0.00 0.00 0.00 0.00 20 -2 1 1 1 Series 20-root.uzu110810sloppypt2.161 20 -1 1 1 1 15 4 20 5 5 3 0 20 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 20 1 1 1 1 9.45 7.85 51.31 0.58 3.04 8.62 0.55 20 2 1 1 1 2.60 65.73 -6.30 0.00 0.69 4.51 1.88 20 3 1 1 1 4.48 6.77 7.25 0.62 0.00 4.36 1.08 20 4 1 1 1 3.86 56.51 1.91 0.00 0.67 4.30 0.74 20 5 1 1 1 4.24 25.54 78.35 0.00 0.00 0.00 0.00 21 -2 1 1 1 Series 21-root.uzu110810sloppypt2.161 21 -1 1 1 1 20 4 21 1 1 3 0 21 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 21 1 1 1 1 0.56 60.57 -78.89 0.00 0.00 0.00 0.00 22 -2 1 1 1 Series 22-root.uzu110810sloppypt2.161 22 -1 1 1 1 20 4 22 1 1 3 0 22 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 22 1 1 1 1 0.67 323.14 -8.75 0.00 0.00 0.00 0.00 23 -2 1 1 1 Series 23-root.uzu110810sloppypt2.161 23 -1 1 1 1 20 4 23 1 1 3 0 23 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 23 1 1 1 1 2.62 20.06 7.07 0.00 0.00 0.00 0.00 24 -2 1 1 1 Series 24-root.uzu110810sloppypt2.161 24 -1 1 1 1 20 4 24 9 9 3 0 24 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 24 1 1 1 1 7.66 28.32 10.32 0.67 0.00 4.24 0.56 24 2 1 1 1 1.09 289.21 11.36 0.47 0.00 3.69 0.82 24 3 1 1 1 3.87 230.95 3.41 0.63 0.00 3.37 0.97 24 4 1 1 1 4.60 249.81 2.49 0.00 0.70 3.42 0.94 24 5 1 1 1 4.46 260.87 6.91 0.00 0.76 3.44 0.84 24 6 1 1 1 7.41 236.86 0.94 0.60 0.00 2.28 0.94 24 7 1 1 1 1.79 282.80 9.24 0.00 1.14 7.30 0.82 24 8 1 1 1 14.75 240.76 9.56 1.40 0.00 6.31 1.08 24 9 1 1 1 48.31 69.00 85.56 0.00 0.00 0.00 0.00 25 -2 1 1 1 Series 25-root.uzu110810sloppypt2.161 25 -1 1 1 1 24 8 25 1 1 3 0 25 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 25 1 1 1 1 1.91 72.56 -82.37 0.00 0.00 0.00 0.00 26 -2 1 1 1 Series 26-root.uzu110810sloppypt2.161 26 -1 1 1 1 24 8 26 1 1 3 0 26 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 26 1 1 1 1 1.25 157.25 -8.40 0.00 0.00 0.00 0.00 27 -2 1 1 1 Series 27-root.uzu110810sloppypt2.161 27 -1 1 1 1 24 8 27 1 1 3 0 27 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 27 1 1 1 1 7.11 72.91 15.16 0.00 0.00 0.00 0.00 28 -2 1 1 1 Series 28-root.uzu110810sloppypt2.161 28 -1 1 1 1 24 8 28 1 1 3 0 28 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 28 1 1 1 1 0.59 2.64 1.55 0.00 0.00 0.00 0.00 29 -2 1 1 1 Series 29-root.uzu110810sloppypt2.161 29 -1 1 1 1 24 8 29 1 1 3 0 29 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 29 1 1 1 1 4.57 16.43 28.14 0.00 0.00 0.00 0.00 30 -2 1 1 1 Series 30-root.uzu110810sloppypt2.161 30 -1 1 1 1 24 8 30 1 1 3 0 30 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 30 1 1 1 1 7.14 49.84 15.92 0.00 0.00 0.00 0.00 31 -2 1 1 1 Series 31-root.uzu110810sloppypt2.165 31 -1 1 1 1 15 1 31 20 20 3 0 31 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 31 1 1 1 1 3.48 279.26 27.52 0.57 0.49 3.84 1.62 31 2 1 1 1 2.13 189.02 1.42 0.97 0.00 1.76 1.46 31 3 1 1 1 7.43 220.22 -1.21 0.00 0.52 1.70 1.49 31 4 1 1 1 2.23 222.28 -4.17 0.42 0.00 1.50 1.52 31 5 1 1 1 3.41 203.94 2.50 0.43 0.00 1.49 1.39 31 6 1 1 1 3.12 210.10 -3.17 0.00 0.60 1.44 1.42 31 7 1 1 1 3.01 221.50 -0.83 0.00 0.46 1.64 1.29 31 8 1 1 1 1.53 225.01 0.71 0.00 0.00 0.00 0.00 31 9 1 1 1 4.13 228.74 -1.52 0.50 0.00 1.60 1.28 31 10 1 1 1 3.15 231.34 3.49 0.00 0.52 1.63 1.23 31 11 1 1 1 7.29 211.25 -3.92 0.59 0.00 1.56 1.27 31 12 1 1 1 6.48 210.26 -46.98 0.42 0.00 1.69 1.28 31 13 1 1 1 2.54 233.48 -15.60 0.20 1.06 4.12 1.60 31 14 1 1 1 1.92 200.22 -38.76 0.63 0.00 1.50 1.64 31 15 1 1 1 3.08 79.63 -16.60 0.89 0.00 2.58 1.54 31 16 1 1 1 2.89 90.67 -62.02 0.44 0.00 1.29 1.03 31 17 1 1 1 4.26 51.58 -27.46 0.75 0.00 3.74 1.45 31 18 1 1 1 4.32 44.44 -3.26 0.00 0.32 8.45 0.89 31 19 1 1 1 1.58 50.71 -1.32 0.42 0.19 1.11 0.58 31 20 1 1 1 1.01 157.34 77.94 0.00 0.00 0.00 0.00 32 -2 1 1 1 Series 32-root.uzu110810sloppypt2.165 32 -1 1 1 1 31 19 32 1 1 3 0 32 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 32 1 1 1 1 0.52 230.63 -86.75 0.00 0.00 0.00 0.00 33 -2 1 1 1 Series 33-root.uzu110810sloppypt2.165 33 -1 1 1 1 31 19 33 1 1 3 0 33 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 33 1 1 1 1 0.94 310.95 2.07 0.00 0.00 0.00 0.00 34 -2 1 1 1 Series 34-root.uzu110810sloppypt2.165 34 -1 1 1 1 31 19 34 1 1 3 0 34 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 34 1 1 1 1 2.52 349.69 -10.78 0.00 0.00 0.00 0.00 35 -2 1 1 1 Series 35-root.uzu110810sloppypt2.165 35 -1 1 1 1 31 19 35 1 1 3 0 35 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 35 1 1 1 1 0.45 164.31 -2.61 0.00 0.00 0.00 0.00 36 -2 1 1 1 Series 36-root.uzu110810sloppypt2.165 36 -1 1 1 1 31 19 36 39 39 3 0 36 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 36 1 1 1 1 2.13 78.12 -0.95 2.52 0.45 1.01 0.52 36 2 1 1 1 1.40 46.91 -4.57 0.41 0.43 0.00 0.94 36 3 1 1 1 3.09 4.26 -4.89 1.00 0.00 1.32 0.37 36 4 1 1 1 3.19 40.15 4.79 0.43 0.00 1.00 0.22 36 5 1 1 1 3.04 27.71 -4.19 0.00 0.78 0.80 0.48 36 6 1 1 1 5.16 25.70 -2.06 0.00 0.34 1.46 0.44 36 7 1 1 1 0.89 131.24 21.14 0.00 0.77 1.71 0.78 36 8 1 1 1 3.49 82.55 -0.49 0.44 0.00 1.20 1.00 36 9 1 1 1 4.49 55.41 0.19 0.37 0.00 1.23 1.10 36 10 1 1 1 4.20 50.71 -1.95 0.54 0.00 0.87 1.23 36 11 1 1 1 3.19 68.91 1.33 0.00 0.56 1.11 1.19 36 12 1 1 1 1.95 39.99 -0.84 0.35 0.00 1.00 1.46 36 13 1 1 1 1.18 106.78 -27.67 0.00 0.39 1.14 1.44 36 14 1 1 1 2.03 39.06 -1.30 0.59 0.24 1.84 0.82 36 15 1 1 1 4.68 59.76 1.03 0.53 0.00 1.80 0.82 36 16 1 1 1 3.57 46.05 1.36 0.00 0.44 1.38 0.98 36 17 1 1 1 2.13 84.68 -1.42 0.00 0.49 0.76 1.26 36 18 1 1 1 2.37 47.91 -8.73 0.51 0.00 0.84 1.07 36 19 1 1 1 3.65 61.15 4.37 0.00 0.48 1.35 0.80 36 20 1 1 1 2.65 23.59 -2.53 0.44 0.00 1.04 1.05 36 21 1 1 1 7.85 63.58 1.85 0.00 0.41 1.02 0.96 36 22 1 1 1 3.98 213.85 -4.71 0.00 0.83 0.87 1.53 36 23 1 1 1 2.22 231.70 0.55 0.00 0.48 1.06 0.99 36 24 1 1 1 4.04 201.86 -0.25 0.49 0.00 1.25 1.04 36 25 1 1 1 5.66 231.77 0.58 0.00 0.43 1.07 1.17 36 26 1 1 1 2.15 184.79 -5.67 0.46 0.00 0.96 1.36 36 27 1 1 1 2.69 208.08 -0.93 0.00 0.34 1.03 1.23 36 28 1 1 1 1.42 228.57 -1.37 0.42 0.00 0.94 1.03 36 29 1 1 1 2.10 238.59 0.28 0.42 0.00 1.21 1.17 36 30 1 1 1 3.47 235.36 -2.97 0.34 0.00 1.07 1.14 36 31 1 1 1 2.90 254.53 4.59 0.00 0.39 1.00 1.12 36 32 1 1 1 3.17 238.12 -3.07 0.34 0.00 0.88 1.43 36 33 1 1 1 2.60 230.18 -0.80 0.00 0.42 0.87 1.36 36 34 1 1 1 4.54 219.12 -21.78 0.00 0.35 1.01 1.66 36 35 1 1 1 1.20 179.22 -8.12 0.56 0.00 2.11 1.13 36 36 1 1 1 1.94 152.16 -70.71 0.00 0.62 2.02 3.36 36 37 1 1 1 5.60 226.25 -6.94 0.00 1.45 3.92 1.94 36 38 1 1 1 6.32 215.05 -41.16 0.66 0.00 0.66 1.18 36 39 1 1 1 2.96 287.31 83.86 0.00 0.00 0.00 0.00 37 -2 1 1 1 Series 37-root.uzu110810sloppypt2.165 37 -1 1 1 1 36 38 37 1 1 3 0 37 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 37 1 1 1 1 0.38 162.39 -87.86 0.00 0.00 0.00 0.00 38 -2 1 1 1 Series 38-root.uzu110810sloppypt2.165 38 -1 1 1 1 36 38 38 1 1 3 0 38 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 38 1 1 1 1 1.04 139.20 -11.06 0.00 0.00 0.00 0.00 39 -2 1 1 1 Series 39-root.uzu110810sloppypt2.165 39 -1 1 1 1 36 38 39 1 1 3 0 39 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 39 1 1 1 1 4.16 39.63 18.73 0.00 0.00 0.00 0.00 40 -2 1 1 1 Series 40-root.uzu110810sloppypt2.165 40 -1 1 1 1 36 38 40 1 1 3 0 40 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 40 1 1 1 1 1.98 315.32 -13.13 0.00 0.00 0.00 0.00CaveConverter_src/test/data/regression/HSC_pt_ref.text0000644000000000000000000001611013030252172022115 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.new090417.118 1 -1 1 1 1 1 0 1 4 4 3 0 1 0 1 1 1 0.00 0.00 0.00 0.86 0.18 4.59 1.33 1 1 1 1 1 4.41 83.55 56.45 5.10 1.25 1.54 4.37 1 2 1 1 1 2.57 15.36 8.88 1.22 0.40 0.31 0.38 1 3 1 1 1 6.09 15.15 -0.36 1.28 0.20 0.33 0.44 1 4 1 1 1 6.26 286.64 0.89 0.48 0.43 0.34 0.37 2 -2 1 1 1 Series 2-root.new090417.118 2 -1 1 1 1 1 3 2 2 2 3 0 2 0 1 1 1 0.00 0.00 0.00 0.20 1.28 0.33 0.44 2 1 1 1 1 2.08 141.17 1.29 0.78 0.00 0.21 0.19 2 2 1 1 1 2.63 90.91 -6.53 0.36 0.30 0.21 1.93 3 -2 1 1 1 Series 3-root.new090417.118 3 -1 1 1 1 1 1 3 3 3 3 0 3 0 1 1 1 0.00 0.00 0.00 1.25 5.10 1.54 4.37 3 1 1 1 1 1.92 169.17 38.92 0.84 0.93 2.05 0.48 3 2 1 1 1 4.09 116.73 8.07 0.59 0.00 1.16 0.81 3 3 1 1 1 6.84 100.67 6.73 0.64 0.39 0.22 0.22 4 -2 1 1 1 Series 4-root.new090417.118 4 -1 1 1 1 3 1 4 14 14 3 0 4 0 1 1 1 0.00 0.00 0.00 0.13 0.00 2.05 0.48 4 1 1 1 1 3.61 218.71 21.43 1.22 0.75 0.74 0.22 4 2 1 1 1 1.78 178.31 16.50 0.31 1.00 0.24 0.20 4 3 1 1 1 15.03 193.21 0.32 0.64 2.71 0.00 0.00 4 4 1 1 1 7.30 262.01 2.57 0.70 0.20 0.22 0.00 4 5 1 1 1 3.71 277.74 4.77 0.43 0.83 0.00 0.34 4 6 1 1 1 6.69 264.18 -26.44 2.42 0.93 0.97 0.00 4 7 1 1 1 2.92 50.49 0.50 1.11 0.31 0.62 0.38 4 8 1 1 1 7.37 56.17 0.39 0.97 0.31 0.28 0.05 4 9 1 1 1 3.30 31.98 -4.56 2.74 3.43 0.00 0.00 4 10 1 1 1 4.75 268.71 2.04 0.19 1.53 0.63 0.40 4 11 1 1 1 5.16 304.43 4.31 1.28 0.00 0.00 0.26 4 12 1 1 1 2.77 221.35 -6.75 1.32 0.59 0.76 0.00 4 13 1 1 1 4.11 247.35 5.41 0.38 0.58 0.45 0.26 4 14 1 1 1 4.04 272.23 6.76 0.00 0.00 0.00 0.00 5 -2 1 1 1 Series 5-root.new090417.118 5 -1 1 1 1 4 12 5 2 2 3 0 5 0 1 1 1 0.00 0.00 0.00 0.52 1.58 0.76 0.00 5 1 1 1 1 2.04 125.59 8.49 1.01 0.00 0.23 0.27 5 2 1 1 1 4.17 83.85 -6.08 0.00 0.00 0.00 0.00 6 -2 1 1 1 Series 6-root.new090417.118 6 -1 1 1 1 4 6 6 2 2 3 0 6 0 1 1 1 0.00 0.00 0.00 1.06 1.87 0.97 0.00 6 1 1 1 1 4.82 273.26 11.68 0.65 0.44 0.00 0.32 6 2 1 1 1 9.44 281.85 -1.80 0.33 0.28 0.35 0.24 7 -2 1 1 1 Series 7-root.new090417.118 7 -1 1 1 1 4 6 7 3 3 3 0 7 0 1 1 1 0.00 0.00 0.00 0.97 1.94 0.97 0.00 7 1 1 1 1 5.33 255.99 15.05 0.60 0.82 2.10 0.00 7 2 1 1 1 2.15 240.26 48.01 2.02 1.63 0.00 0.00 7 3 1 1 1 4.36 103.93 -31.30 0.30 0.48 0.45 0.00 8 -2 1 1 1 Series 8-root.new090417.118 8 -1 1 1 1 7 2 8 7 7 3 0 8 0 1 1 1 0.00 0.00 0.00 1.60 2.22 0.00 0.00 8 1 1 1 1 2.09 223.74 5.69 0.23 1.24 0.20 0.36 8 2 1 1 1 4.45 240.26 0.48 3.51 2.38 0.00 0.00 8 3 1 1 1 3.28 99.60 1.33 0.89 0.30 0.29 0.19 8 4 1 1 1 4.79 103.75 -13.72 0.00 0.29 0.20 1.47 8 5 1 1 1 2.37 119.19 -61.00 0.98 0.69 1.16 1.62 8 6 1 1 1 2.97 68.81 10.56 0.74 0.38 0.85 0.00 8 7 1 1 1 2.40 79.35 2.75 0.52 0.50 0.49 0.00 9 -2 1 1 1 Series 9-root.new090417.118 9 -1 1 1 1 8 6 9 1 1 3 0 9 0 1 1 1 0.00 0.00 0.00 0.42 0.79 0.85 0.00 9 1 1 1 1 3.44 197.65 3.19 0.22 0.27 0.40 0.19 10 -2 1 1 1 Series 10-root.new090417.118 10 -1 1 1 1 8 6 10 2 2 3 0 10 0 1 1 1 0.00 0.00 0.00 0.38 0.75 0.85 0.00 10 1 1 1 1 3.24 243.57 -25.94 0.43 0.00 0.56 1.45 10 2 1 1 1 3.12 124.37 -36.45 0.00 0.00 0.00 0.00 11 -2 1 1 1 Series 11-root.new090417.118 11 -1 1 1 1 10 1 11 10 10 3 0 11 0 1 1 1 0.00 0.00 0.00 0.00 0.43 0.56 1.45 11 1 1 1 1 2.46 286.46 -19.63 0.36 0.28 0.55 0.00 11 2 1 1 1 2.83 295.82 27.96 0.62 0.29 2.68 0.52 11 3 1 1 1 1.84 308.35 50.44 0.00 0.00 0.00 0.00 11 4 1 1 1 7.35 224.82 12.38 0.00 0.55 1.03 0.35 11 5 1 1 1 1.07 263.74 18.38 0.00 0.06 0.54 0.50 11 6 1 1 1 2.40 110.15 14.37 0.76 0.53 0.50 0.90 11 7 1 1 1 2.52 130.61 26.44 3.82 0.52 0.00 0.00 11 8 1 1 1 2.50 61.01 0.33 1.96 0.55 0.36 0.00 11 9 1 1 1 4.48 85.06 -2.01 2.81 1.07 0.39 0.00 11 10 1 1 1 3.82 85.42 -4.52 3.91 0.34 0.56 0.67 12 -2 1 1 1 Series 12-root.new090417.118 12 -1 1 1 1 11 3 12 2 2 3 0 12 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 12 1 1 1 1 1.80 308.38 50.33 0.83 0.35 1.20 0.38 12 2 1 1 1 8.85 285.90 -2.46 0.00 0.00 0.00 0.00CaveConverter_src/test/data/regression/Uzu-Gour_in.txt0000644000000000000000000007443513030252172022175 0ustar rootrootUzu-Gour090410 (m, 360) [1]: 2009/04/10 2.01 134.44 153.0 0.000 0.00 0.00 [1] 153.0 0.660 310.69 9.16 [1] 153.0 1.170 138.22 11.97 [1] 153.0 1.620 80.27 84.63 [1] 153.0 1.320 136.77 -83.24 [1] 153.0 153.1 4.010 55.15 2.86 [1] 153.0 153.1 4.010 55.08 2.87 [1] 153.0 153.1 4.010 55.13 2.91 [1] 153.1 0.670 357.48 5.13 [1] 153.1 1.240 169.73 4.45 [1] 153.1 6.480 131.19 71.93 [1] 153.1 1.270 111.18 -86.81 [1] 153.1 153.2 6.670 109.22 -1.39 [1] 153.1 153.2 6.670 109.22 -1.33 [1] 153.1 153.2 6.670 109.17 -1.38 [1] 153.2 0.710 12.77 -2.39 [1] 153.2 0.970 175.96 -0.60 [1] 153.2 2.480 5.80 77.81 [1] 153.2 1.160 80.73 -86.86 [1] 153.2 153.3 7.570 82.70 -1.50 [1] 153.2 153.3 7.570 82.85 -1.44 [1] 153.2 153.3 7.560 82.92 -1.43 [1] 153.3 1.070 299.77 -0.43 [1] 153.3 0.700 116.08 5.84 [1] 153.3 5.830 351.61 76.20 [1] 153.3 0.880 309.05 -87.42 [1] 153.3 153.4 15.710 17.44 1.22 [1] 153.3 153.4 15.710 17.53 1.19 [1] 153.3 153.4 15.700 17.54 1.18 [1] 153.4 1.950 226.25 -0.27 [1] 153.4 0.460 66.80 13.93 [1] 153.4 5.650 182.84 82.67 [1] 153.4 1.040 275.59 -86.30 [1] 153.4 153.5 2.730 244.47 2.62 [1] 153.4 153.5 2.730 244.58 2.58 [1] 153.4 153.5 2.730 244.58 2.62 [1] 153.5 2.100 11.50 -1.38 [1] 153.5 5.420 302.47 83.96 [1] 153.5 1.230 134.51 -88.40 [1] 153.5 153.6 4.220 318.38 0.38 [1] 153.5 153.6 4.220 318.27 0.40 [1] 153.5 153.6 4.210 318.26 0.44 [1] 153.6 5.310 71.33 24.03 [1] 153.6 0.720 307.95 86.30 [1] 153.6 1.800 125.36 -84.77 [1] 153.6 153.7 4.920 29.50 -2.13 [1] 153.6 153.7 4.920 29.67 -2.13 [1] 153.6 153.7 4.910 29.57 -2.10 [1] 153.7 1.720 326.24 -2.97 [1] 153.7 4.860 114.49 33.83 [1] 153.7 1.490 119.34 82.62 [1] 153.7 0.880 52.77 -83.97 [1] 153.7 153.8 9.810 58.65 0.98 [1] 153.7 153.8 9.810 58.76 0.90 [1] 153.7 153.8 9.810 58.76 0.93 [1] 153.8 0.600 30.89 4.65 [1] 153.8 1.400 194.75 6.76 [1] 153.8 1.870 143.21 80.26 [1] 153.8 1.170 163.90 -84.89 [1] 153.8 153.9 8.590 128.80 -6.75 [1] 153.8 153.9 8.600 128.68 -6.65 [1] 153.8 153.9 8.600 128.61 -6.64 [1] 153.9 1.220 16.91 8.45 [1] 153.9 1.010 194.87 -5.80 [1] 153.9 1.190 115.77 79.03 [1] 153.9 0.260 324.87 -86.69 [1] 153.9 153.10 5.680 82.90 5.74 [1] 153.9 153.10 5.680 82.95 5.64 [1] 153.9 153.10 5.680 82.92 5.67 [1] 153.10 1.200 327.38 -6.61 [1] 153.10 0.950 146.85 7.78 [1] 153.10 1.560 51.96 85.81 [1] 153.10 0.760 270.01 -85.55 [1] 153.10 153.11 6.560 44.65 4.51 [1] 153.10 153.11 6.560 44.70 4.51 [1] 153.10 153.11 6.560 44.59 4.59 [1] 153.11 1.060 323.36 10.84 [1] 153.11 1.220 147.77 -0.82 [1] 153.11 3.260 239.56 88.17 [1] 153.11 1.180 137.10 -80.05 [1] 153.11 153.12 9.030 72.13 1.18 [1] 153.11 153.12 9.020 72.20 1.25 [1] 153.11 153.12 9.030 72.23 1.22 [1] 153.12 1.220 333.74 -2.77 [1] 153.12 0.390 157.20 6.88 [1] 153.12 9.070 306.85 88.13 [1] 153.12 1.170 32.13 -85.98 [1] 153.12 153.13 3.050 46.20 1.33 [1] 153.12 153.13 3.050 46.21 1.22 [1] 153.12 153.13 3.050 46.26 1.29 [1] 153.13 0.960 333.36 11.12 [1] 153.13 1.080 162.52 0.43 [1] 153.13 9.410 103.09 74.92 [1] 153.13 1.510 134.98 -73.22 [1] 153.13 153.14 6.890 86.27 -0.49 [1] 153.13 153.14 6.890 86.27 -0.48 [1] 153.13 153.14 6.880 86.27 -0.55 [1] 153.14 1.060 337.15 -3.35 [1] 153.14 7.650 102.01 82.12 [1] 153.14 1.290 173.81 -89.40 [1] 153.14 153.15 6.610 61.50 0.18 [1] 153.14 153.15 6.620 61.42 0.05 [1] 153.14 153.15 6.610 61.53 0.03 [1] 153.15 1.540 303.07 -1.24 [1] 153.15 0.240 134.42 12.32 [1] 153.15 6.360 9.40 84.82 [1] 153.15 1.070 310.69 -84.97 [1] 153.15 153.16 5.130 18.51 -1.16 [1] 153.15 153.16 5.130 18.54 -1.18 [1] 153.15 153.16 5.120 18.54 -1.28 [1] 153.16 0.550 311.69 6.18 [1] 153.16 1.300 135.99 -4.45 [1] 153.16 1.400 58.32 82.47 [1] 153.16 1.100 224.97 -87.41 [1] 153.16 153.17 6.850 62.63 1.93 [1] 153.16 153.17 6.850 62.62 2.01 [1] 153.16 153.17 6.850 62.64 2.08 [1] 153.17 1.380 167.09 -2.95 [1] 153.17 4.990 102.11 87.59 [1] 153.17 1.180 212.70 -86.61 [1] 153.17 153.18 5.380 102.12 1.21 [1] 153.17 153.18 5.380 102.21 1.21 [1] 153.17 153.18 5.380 102.21 1.25 [1] 153.18 1.270 16.14 3.17 [1] 153.18 11.110 43.73 75.72 [1] 153.18 1.380 180.93 -87.42 [1] 153.18 153.19 2.600 105.63 -1.04 [1] "19=stn 60 from August 2008" 153.18 153.19 2.600 105.49 -1.05 [1] 153.18 153.19 2.600 105.36 -1.05 [1] 153.19 1.430 243.30 5.15 [1] 153.19 5.180 94.35 80.68 [1] 153.19 1.110 212.90 -87.67 [1] 153.19 153.20 6.930 178.17 -2.10 [1] 153.19 153.20 6.960 178.24 -2.14 [1] 153.19 153.20 6.930 178.10 -2.07 [1] 153.20 0.410 85.52 6.85 [1] 153.20 0.700 269.28 4.70 [1] 153.20 2.870 290.90 87.19 [1] 153.20 1.040 329.38 -84.46 [1] 153.20 153.21 4.010 196.02 3.11 [1] 153.20 153.21 4.010 196.12 3.13 [1] 153.20 153.21 4.010 196.08 3.19 [1] 153.21 1.430 76.94 2.96 [1] 153.21 0.640 246.93 0.76 [1] 153.21 5.240 171.27 84.67 [1] 153.21 1.070 306.36 -85.58 [1] 153.21 153.22 4.150 139.35 -0.17 [1] 153.21 153.22 4.150 139.26 -0.15 [1] 153.21 153.22 4.150 139.22 -0.12 [1] 153.22 0.350 96.03 4.53 [1] 153.22 3.670 279.77 20.06 [1] 153.22 0.960 136.65 84.20 [1] 153.22 1.170 260.34 -85.03 [1] 153.22 153.23 4.700 205.66 -0.37 [1] 153.22 153.23 4.710 205.85 -0.39 [1] 153.22 153.23 4.710 205.77 -0.38 [1] 153.23 0.670 100.63 7.72 [1] 153.23 0.900 284.24 1.46 [1] 153.23 2.030 266.53 85.53 [1] 153.23 1.140 125.32 -83.92 [1] 153.23 153.24 6.520 198.50 5.53 [1] 153.23 153.24 6.520 198.48 5.53 [1] 153.23 153.24 6.520 198.37 5.51 [1] 153.24 0.670 118.59 3.67 [1] 153.24 0.940 305.13 0.53 [1] 153.24 4.720 141.69 87.99 [1] 153.24 1.310 293.36 -72.03 [1] 153.24 153.25 8.680 224.12 -4.18 [1] 153.24 153.25 8.690 223.95 -4.26 [1] 153.24 153.25 8.690 223.95 -4.33 [1] 153.25 1.780 141.39 18.75 [1] 153.25 1.110 337.22 -0.91 [1] 153.25 1.830 242.61 82.90 [1] 153.25 1.050 299.11 -87.89 [1] 153.25 153.26 5.690 246.10 2.21 [1] 153.25 153.26 5.690 246.26 2.24 [1] 153.25 153.26 5.690 246.36 2.39 [1] 153.26 2.880 110.99 19.61 [1] 153.26 1.740 123.76 77.81 [1] 153.26 1.180 84.70 -81.34 [1] 153.26 153.27 2.460 153.08 -9.56 [1] 153.26 153.27 2.460 153.14 -9.62 [1] 153.26 153.27 2.460 153.07 -9.51 [1] 153.27 1.170 272.63 6.40 [1] 153.27 2.030 148.32 86.47 [1] 153.27 0.820 219.90 -89.23 [1] 153.27 153.28 16.850 204.21 -2.13 [1] 153.27 153.28 16.840 204.24 -2.05 [1] 153.27 153.28 16.850 204.26 -2.06 [1] 153.28 1.840 71.44 8.08 [1] 153.28 0.870 257.22 6.27 [1] 153.28 1.100 14.88 73.52 [1] 153.28 153.29 10.280 139.22 5.64 [1] 153.28 153.29 10.280 139.18 5.65 [1] 153.28 153.29 10.280 139.21 5.65 [1] 153.29 1.660 30.10 15.39 [1] 153.29 0.400 203.86 7.65 [1] 153.29 8.090 67.11 77.32 [1] 153.29 0.830 81.38 -87.37 [1] 153.29 153.30 5.840 105.80 5.92 [1] 153.29 153.30 5.840 105.92 5.85 [1] 153.29 153.30 5.840 105.76 5.81 [1] 153.30 1.920 7.20 9.53 [1] 153.30 0.440 160.39 4.71 [1] 153.30 3.250 108.05 82.68 [1] 153.30 1.280 255.16 -87.21 [1] 153.30 153.31 10.740 79.28 -0.95 [1] 153.30 153.31 10.730 79.24 -0.90 [1] 153.30 153.31 10.740 79.40 -1.01 [1] 153.31 2.960 313.97 15.64 [1] 153.31 0.390 134.29 11.27 [1] 153.31 1.300 77.16 82.61 [1] 153.31 1.170 86.89 -84.64 [1] 153.31 153.32 5.990 21.41 2.86 [1] 153.31 153.32 5.990 21.30 2.79 [1] 153.31 153.32 6.000 21.17 2.74 [1] 153.32 1.900 156.21 1.51 [1] 153.32 1.710 343.53 87.98 [1] 153.32 1.270 73.92 -84.80 [1] 153.32 153.33 8.260 124.55 -0.95 [1] 153.32 153.33 8.260 124.62 -0.94 [1] 153.32 153.33 8.260 124.69 -1.01 [1] 153.33 2.260 3.19 18.54 [1] 153.33 0.770 182.19 6.10 [1] 153.33 3.370 12.67 85.55 [1] 153.33 1.260 246.33 -87.14 [1] 153.33 153.34 11.470 86.34 0.10 [1] 153.33 153.34 11.460 86.22 0.17 [1] 153.33 153.34 11.460 86.16 0.15 [1] 153.34 0.520 6.08 8.87 [1] 153.34 0.890 187.81 1.74 [1] 153.34 13.040 45.58 80.50 [1] 153.34 1.370 130.80 -82.35 [1] 153.34 153.35 10.240 104.58 -0.15 [1] 153.34 153.35 10.250 104.62 -0.15 [1] 153.34 153.35 10.250 104.62 -0.15 [1] 153.35 2.390 334.20 16.80 [1] 153.35 1.560 350.17 81.57 [1] 153.35 1.120 53.73 -85.78 [1] 153.35 153.36 6.540 36.47 2.81 [1] 153.35 153.36 6.550 36.43 2.75 [1] 153.35 153.36 6.540 36.48 2.83 [1] 153.36 1.080 290.80 -0.12 [1] 153.36 0.260 107.29 9.29 [1] 153.36 4.780 67.20 78.00 [1] 153.36 1.610 127.33 -86.11 [1] 153.36 153.37 7.850 352.47 0.32 [1] 153.36 153.37 7.850 352.58 0.38 [1] 153.36 153.37 7.850 352.64 0.39 [1] 153.37 1.970 114.20 2.44 [1] 153.37 3.860 29.40 79.16 [1] 153.37 1.500 43.36 -74.01 [1] 153.37 153.38 12.500 59.52 -0.29 [1] 153.37 153.38 12.490 59.62 -0.31 [1] 153.37 153.38 12.490 59.61 -0.27 [1] 153.38 3.710 196.43 25.48 [1] 153.38 1.000 101.32 82.16 [1] 153.38 1.140 83.86 -82.25 [1] 153.38 153.39 6.470 144.31 -0.68 [1] 153.38 153.39 6.470 144.21 -0.63 [1] 153.38 153.39 6.470 144.38 -0.66 [1] 153.39 1.780 256.50 4.97 [1] 153.39 5.460 245.76 79.39 [1] 153.39 1.400 7.99 -88.60 [1] 153.39 153.40 12.200 176.54 2.80 [1] 153.39 153.40 12.180 176.60 2.79 [1] 153.39 153.40 12.190 176.72 2.74 [1] 153.40 0.940 294.81 -3.35 [1] 153.40 8.530 269.05 75.20 [1] 153.40 1.860 227.20 -83.19 [1] 153.40 153.41 8.030 217.47 -3.11 [1] 153.40 153.41 8.030 217.49 -3.14 [1] 153.40 153.41 8.030 217.55 -3.15 [1] 153.41 0.760 112.64 0.91 [1] 153.41 0.390 300.05 13.28 [1] 153.41 10.110 273.70 83.77 [1] 153.41 1.480 282.10 -85.81 [1] 153.41 153.42 5.060 197.76 0.73 [1] 153.41 153.42 5.060 197.69 0.77 [1] 153.41 153.42 5.060 197.61 0.73 [1] 153.42 0.820 87.13 -12.02 [1] 153.42 0.910 271.51 28.37 [1] 153.42 9.380 261.83 78.26 [1] 153.42 1.470 332.21 -86.18 [1] 153.42 153.43 5.140 164.36 -5.76 [1] 153.42 153.43 5.140 164.37 -5.70 [1] 153.42 153.43 5.130 164.35 -5.80 [1] 153.43 1.240 25.91 -2.84 [1] 153.43 1.280 223.96 28.43 [1] 153.43 1.910 212.36 79.68 [1] 153.43 0.880 286.64 -86.20 [1] 153.43 153.44 4.120 90.66 -11.44 [1] 153.43 153.44 4.120 90.69 -11.45 [1] 153.43 153.44 4.120 90.66 -11.54 [1] 153.44 2.410 57.95 5.26 [1] 153.44 1.250 222.00 8.75 [1] 153.44 1.180 198.31 83.84 [1] 153.44 153.45 12.400 173.97 6.86 [1] 153.44 153.45 12.390 174.04 6.87 [1] 153.44 153.45 12.380 173.95 6.85 [1] 153.45 1.420 43.19 -4.13 [1] 153.45 1.000 215.21 22.64 [1] 153.45 3.520 16.66 74.76 [1] 153.45 1.430 272.80 -85.47 [1] 153.45 153.46 7.370 104.88 0.83 [1] 153.45 153.46 7.380 104.92 0.85 [1] 153.45 153.46 7.380 104.92 0.77 [1] 153.46 0.980 352.37 -5.19 [1] 153.46 3.910 3.72 83.25 [1] 153.46 1.190 177.07 -85.49 [1] 153.46 153.47 4.770 62.00 -3.62 [1] 153.46 153.47 4.770 61.96 -3.63 [1] 153.46 153.47 4.770 61.90 -3.58 [1] 153.47 0.850 309.66 1.57 [1] 153.47 0.510 134.97 21.12 [1] 153.47 5.120 95.91 72.50 [1] 153.47 0.900 178.61 -86.89 [1] 153.47 153.48 5.770 23.57 0.26 [1] 153.47 153.48 5.760 23.58 0.39 [1] 153.47 153.48 5.770 23.58 0.32 [1] 153.48 0.960 278.66 -1.41 [1] 153.48 0.910 84.37 -1.28 [1] 153.48 8.950 50.33 87.07 [1] 153.48 0.870 154.03 -87.03 [1] 153.48 153.49 10.870 6.04 2.72 [1] 153.48 153.49 10.870 6.02 2.74 [1] 153.48 153.49 10.870 6.05 2.74 [1] 153.49 3.530 303.46 -22.08 [1] 153.49 1.490 109.10 12.22 [1] 153.49 4.180 271.96 83.18 [1] 153.49 0.250 222.51 -84.71 [1] 153.49 153.50 1.560 17.77 -9.73 [1] 153.49 153.50 1.560 17.58 -9.67 [1] 153.49 153.50 1.560 17.56 -9.68 [1] 153.50 3.090 310.29 -16.03 [1] 153.50 1.810 123.41 3.37 [1] 153.50 2.820 107.70 88.07 [1] 153.50 0.870 32.83 -88.59 [1] 153.50 153.51 11.640 51.07 0.98 [1] 153.50 153.51 11.640 51.16 1.02 [1] 153.50 153.51 11.640 51.06 1.01 [1] 153.51 0.880 291.17 -11.07 [1] 153.51 2.620 163.62 87.41 [1] 153.51 1.340 102.52 -83.95 [1] 153.51 153.52 6.840 26.54 -5.82 [1] 153.51 153.52 6.840 26.58 -5.80 [1] 153.51 153.52 6.830 26.60 -5.74 [1] 153.52 1.100 9.43 2.05 [1] 153.52 2.180 183.91 3.39 [1] 153.52 1.060 147.54 83.46 [1] 153.52 0.690 193.69 -84.93 [1] 153.52 153.53 6.430 119.01 2.72 [1] 153.52 153.53 6.430 119.15 2.66 [1] 153.52 153.53 6.430 119.12 2.63 [1] 153.53 2.460 316.37 -3.18 [1] 153.53 0.350 134.32 6.93 [1] 153.53 1.320 0.65 81.40 [1] 153.53 0.750 219.60 -87.78 [1] 153.53 153.54 16.810 345.83 -2.21 [1] 153.53 153.54 16.800 345.87 -2.24 [1] 153.53 153.54 16.810 345.83 -2.25 [1] 153.54 9.480 121.96 18.18 [1] 153.54 1.340 88.18 80.69 [1] 153.54 0.220 128.68 -85.33 [1] 153.54 153.55 11.680 100.32 4.95 [1] 153.54 153.55 11.680 100.34 4.92 [1] 153.54 153.55 11.660 100.45 4.78 [1] 153.55 0.680 353.36 -0.15 [1] 153.55 5.390 12.73 75.03 [1] 153.55 1.000 50.40 -89.71 [1] 153.55 153.56 1.660 96.15 -19.75 [1] 153.55 153.56 1.660 96.40 -19.81 [1] 153.55 153.56 1.670 96.21 -19.82 [1] 153.56 0.400 38.17 6.20 [1] 153.56 1.050 225.93 5.47 [1] 153.56 2.340 96.97 80.74 [1] 153.56 0.560 294.92 -87.67 [1] 153.56 153.57 5.390 160.72 -3.98 [1] 153.56 153.57 5.390 160.77 -4.06 [1] 153.56 153.57 5.390 160.64 -3.98 [1] 153.57 1.810 25.53 1.62 [1] 153.57 0.530 220.15 1.24 [1] 153.57 2.270 47.01 85.24 [1] 153.57 0.200 12.33 -85.15 [1] 153.57 153.58 4.720 73.19 10.50 [1] 153.57 153.58 4.720 73.13 10.46 [1] 153.57 153.58 4.720 73.36 10.32 [1] 153.58 0.330 16.81 2.17 [1] 153.58 1.180 189.78 0.04 [1] 153.58 4.010 77.71 86.61 [1] 153.58 0.940 144.63 -82.64 [1] 153.58 153.59 5.120 139.89 -5.15 [1] 153.58 153.59 5.120 139.77 -5.11 [1] 153.58 153.59 5.120 139.83 -5.07 [1] 153.59 1.140 5.50 9.72 [1] 153.59 1.160 165.35 20.33 [1] 153.59 1.390 21.12 85.08 [1] 153.59 0.480 248.26 -87.58 [1] 153.59 153.60 8.820 74.99 2.77 [1] 153.59 153.60 8.820 75.06 2.70 [1] 153.59 153.60 8.810 75.02 2.73 [1] 153.60 0.970 320.91 -0.74 [1] 153.60 0.250 141.85 1.28 [1] 153.60 7.570 288.95 79.51 [1] 153.60 0.880 71.53 -85.03 [1] 153.60 153.61 1.710 17.44 9.22 [1] 153.60 153.61 1.710 17.50 9.09 [1] 153.60 153.61 1.710 17.51 9.04 [1] 153.61 0.500 119.39 2.08 [1] 153.61 6.590 87.13 75.75 [1] 153.61 1.170 342.08 -77.77 [1] 153.61 153.62 7.730 52.03 -4.45 [1] 153.61 153.62 7.730 51.92 -4.41 [1] 153.61 153.62 7.730 51.88 -4.33 [1] 153.62 1.600 290.77 -0.14 [1] 153.62 0.220 112.40 8.61 [1] 153.62 4.840 289.04 83.90 [1] 153.62 0.540 263.45 -79.21 [1] 153.62 153.63 2.970 348.12 3.82 [1] 153.62 153.63 2.970 348.16 3.84 [1] 153.62 153.63 2.970 348.14 3.91 [1] 153.63 0.940 108.22 0.43 [1] 153.63 5.020 359.20 80.02 [1] 153.63 0.770 287.97 -88.61 [1] 153.63 153.64 10.870 23.34 -1.94 [1] 153.63 153.64 10.870 23.33 -1.94 [1] 153.63 153.64 10.870 23.30 -1.99 [1] 153.64 1.170 132.36 9.67 [1] 153.64 9.310 35.43 83.06 [1] 153.64 0.430 84.37 -84.49 [1] 153.64 153.65 4.520 55.63 4.75 [1] 153.64 153.65 4.530 55.62 4.64 [1] 153.64 153.65 4.530 55.64 4.80 [1] 153.65 1.400 293.82 8.38 [1] 153.65 8.350 317.08 87.04 [1] 153.65 0.560 60.05 -86.93 [1] 153.65 153.66 3.190 344.47 -2.98 [1] 153.65 153.66 3.200 344.39 -3.24 [1] 153.65 153.66 3.190 344.35 -3.24 [1] 153.66 0.920 211.48 9.89 [1] 153.66 0.260 39.37 20.78 [1] 153.66 10.300 235.93 86.42 [1] 153.66 0.510 191.40 -85.42 [1] 153.66 153.67 2.480 284.64 17.65 [1] 153.66 153.67 2.480 284.91 17.87 [1] 153.66 153.67 2.480 284.87 18.06 [1] 153.67 1.190 61.63 3.00 [1] 153.67 9.550 90.90 83.48 [1] 153.67 1.190 21.67 -82.71 [1] 153.67 153.68 5.470 5.30 0.27 [1] 153.67 153.68 5.470 5.25 0.10 [1] 153.67 153.68 5.470 5.22 0.31 [1] 153.68 0.910 135.70 2.18 [1] 153.68 10.360 129.84 88.37 [1] 153.68 1.300 90.71 -82.74 [1] 153.68 153.69 3.210 73.58 0.27 [1] 153.68 153.69 3.210 73.41 0.28 [1] 153.68 153.69 3.210 73.58 0.17 [1] 153.69 0.850 319.91 5.62 [1] 153.69 4.450 346.56 83.35 [1] 153.69 1.220 324.86 -77.89 [1] 153.69 153.70 6.880 27.75 1.40 [1] 153.69 153.70 6.880 27.76 1.38 [1] 153.69 153.70 6.880 27.72 1.39 [1] 153.70 2.320 330.70 23.53 [1] 153.70 1.410 153.25 28.90 [1] 153.70 2.110 50.40 82.88 [1] 153.70 1.170 116.09 -85.44 [1] 153.70 153.71 5.880 104.57 4.20 [1] 153.70 153.71 5.880 104.68 4.09 [1] 153.70 153.71 5.870 104.58 4.08 [1] 153.71 0.600 8.59 5.70 [1] 153.71 0.990 182.74 6.14 [1] 153.71 3.450 22.79 85.05 [1] 153.71 1.240 130.89 -84.59 [1] 153.71 153.72 7.570 99.21 -5.42 [1] 153.71 153.72 7.570 99.33 -5.51 [1] 153.71 153.72 7.570 99.33 -5.40 [1] 153.72 1.510 348.65 8.10 [1] 153.72 1.100 171.46 5.08 [1] 153.72 11.090 217.02 85.71 [1] 153.72 0.190 293.19 -86.30 [1] 153.72 153.73 5.640 88.59 15.14 [1] 153.72 153.73 5.640 88.57 15.14 [1] 153.72 153.73 5.630 88.61 15.16 [1] 153.73 3.240 192.60 35.24 [1] 153.73 5.160 123.70 74.79 [1] 153.73 1.350 50.38 -81.74 [1] 153.73 153.74 2.170 131.42 8.66 [1] 153.73 153.74 2.170 131.35 8.66 [1] 153.73 153.74 2.170 131.35 8.73 [1] 153.74 2.160 342.38 15.27 [1] 153.74 4.560 167.45 21.67 [1] 153.74 12.110 234.38 84.14 [1] 153.74 1.550 294.57 -87.26 [1] 153.74 153.75 4.580 27.25 14.57 [1] 153.74 153.75 4.570 27.39 14.29 [1] 153.74 153.75 4.570 27.54 14.30 [1] 153.75 0.820 147.55 1.96 [1] 153.75 8.360 189.98 83.08 [1] 153.75 1.100 197.11 -86.67 [1] 153.75 153.76 8.470 60.89 19.33 [1] 153.75 153.76 8.470 60.74 19.33 [1] 153.75 153.76 8.470 60.77 19.23 [1] 153.76 0.410 359.12 11.97 [1] 153.76 0.920 190.46 10.73 [1] 153.76 1.180 70.36 88.64 [1] 153.76 1.280 120.95 -83.97 [1] 153.76 153.77 5.730 104.51 1.01 [1] 153.76 153.77 5.730 104.62 1.02 [1] 153.76 153.77 5.730 104.60 0.90 [1] 153.77 0.490 333.81 -8.65 [1] 153.77 2.350 164.36 23.76 [1] 153.77 2.110 45.37 82.47 [1] 153.77 0.340 300.28 -87.27 [1] 153.77 153.78 5.190 84.15 24.35 [1] 153.77 153.78 5.190 84.16 24.27 [1] 153.77 153.78 5.190 84.26 24.32 [1] 153.78 1.850 189.88 5.06 [1] 153.78 0.420 110.15 87.16 [1] 153.78 0.450 342.41 -88.96 [1] 153.78 153.79 1.270 102.91 2.42 [1] 153.78 153.79 1.270 103.06 2.38 [1] 153.78 153.79 1.280 102.85 2.48 [1] CaveConverter_src/test/data/regression/TripComment_ref.svx0000644000000000000000000000353012114372110023071 0ustar rootroot*BEGIN TrainingRoom *BEGIN 1 ;WSCC DistoX - Footleg ;Dell PDA drawing - Bob *DATE 2012.11.24 *FLAGS SPLAY 0 0a 1.04 47.72 83.13 0 0b 1.09 153.35 -85.85 0 0c 1.11 175.45 -0.10 0 0d 5.01 277.41 17.22 0 0e 1.17 8.87 6.87 0 0f 5.95 98.10 6.04 *FLAGS NOT SPLAY 0 1 5.08 327.47 56.76 *FLAGS SPLAY 1 1a 0.86 248.16 84.61 1 1b 1.97 36.72 85.36 1 1c 2.90 0.21 79.16 1 1d 3.57 0.44 76.99 1 1e 3.33 6.81 73.92 1 1f 3.08 9.73 72.19 1 1g 1.51 33.34 73.27 1 1h 1.13 41.39 63.01 1 1i 1.44 44.13 -46.36 1 1j 1.83 42.45 -54.49 1 1k 1.84 35.11 -63.47 1 1l 1.51 111.18 -81.34 1 1m 1.56 208.58 -80.33 1 1n 0.80 65.58 -74.77 1 1o 0.63 17.58 -85.44 1 1p 0.55 281.21 -80.62 1 1q 0.91 55.93 43.46 1 1r 0.95 54.38 25.70 1 1s 0.71 50.23 15.55 1 1t 0.80 52.99 -17.45 1 1u 0.78 47.54 -32.25 1 1v 0.80 49.21 -38.08 1 1w 1.22 48.37 -40.44 1 1x 0.58 315.38 2.25 1 1y 1.05 326.37 2.41 1 1z 0.62 62.72 -5.29 1 1aa 0.71 34.15 -9.16 1 1ab 1.52 4.78 -10.78 1 1ac 1.62 348.65 -11.00 1 1ad 1.85 336.13 -6.26 1 1ae 2.39 329.33 -3.53 1 1af 0.86 174.05 0.08 1 1ag 1.51 155.18 1.24 1 1ah 1.96 140.40 -3.29 1 1ai 2.58 131.69 -4.78 1 1aj 2.68 130.29 -4.55 1 1ak 1.28 112.92 -6.48 1 1al 1.03 99.66 -5.08 1 1am 0.74 82.81 -4.14 *FLAGS NOT SPLAY 1 2 4.92 69.83 23.86 *FLAGS SPLAY 2 2a 2.96 27.78 70.94 2 2b 1.76 85.45 -85.86 2 2c 0.95 165.48 0.82 2 2d 3.80 331.85 24.88 2 2e 5.74 289.73 15.19 2 2f 5.02 257.83 -9.98 2 2g 2.80 233.18 -16.44 2 2h 13.10 71.82 16.81 2 2i 7.76 33.32 29.66 *FLAGS NOT SPLAY 2 3 2.00 337.58 33.09 *data passage station left right up down 0 5.008 5.951 1.035 1.094 1 1.849 1.507 1.966 0.632 2 5.017 13.104 2.96 1.755 3 1.67 1.996 1.854 0.754 *END 1 *END TrainingRoom CaveConverter_src/test/data/regression/0581_FlappysWorld_ref.svx0000644000000000000000000000033112114041272023731 0ustar rootroot*BEGIN 0581_cave *CALIBRATE declination 2.28 2 1 2.23 258.00 25.00 3 2 6.40 246.00 0.00 4 3 7.65 257.00 3.00 4 5 4.32 240.00 -50.00 6 2 4.54 190.00 39.00 7 6 5.55 195.00 5.00 *END 0581_cave CaveConverter_src/test/data/regression/0106_Torcon_in.svx0000644000000000000000000000202012560565160022403 0ustar rootroot*BEGIN 0106_Torcon ;Created from Survey file on Thu,12 Oct 1995.19:15:18 ;Dates surveyed : 75/8 ;Surveyors : Tobo ;No of stations : 31 ;Plan length : 110.68314m ;Traverse length: 203.7m *FIX entr 452286 4799454 0265 *ENTRANCE entr entr 0 20 220 -15 ;guess from surface to top of pitch 0 1 93.00 - -V ;* 1 2 5.00 224.03 1 ;* 1 3 13.70 44.03 1 ;* 3 4 5 270 -5 ;was 3.50 244.03 -1 4 5 4.70 32.03 -1 ;* 5 6 2.50 62.03 -1 ;* 6 7 4.10 19.03 -1 ;* 7 8 2.30 36.03 -1 ;* 8 9 3.90 29.03 -1 ;* 9 10 4.20 42.03 -1 ;* 10 11 1.10 293.03 -1 ;* 11 12 3.20 54.03 -1 ;* 12 13 2.00 345.03 -1 ;* 13 14 4.10 65.03 -1 ;* 14 15 2.70 31.03 -1 ;* 15 16 1.50 80.03 -1 ;* 16 17 1.60 358.03 -1 ;* 17 18 2.90 37.03 -1 ;* 18 19 2.30 339.03 -1 ;* 19 20 4.70 59.03 -1 ;* 20 21 2.40 352.03 -1 ;* 21 22 2.70 64.03 -1 ;* 22 23 3.30 28.03 -1 ;* 23 24 8.00 34.03 -1 ;* 24 25 1.40 45.03 -1 ;* 25 26 9.80 23.03 -1 ;* 26 27 2.00 43.03 -1 ;* 27 28 2.80 47.03 -1 ;* 28 29 2.30 12.03 -1 ;* 29 30 6.00 16.03 -1 ;* *END 0106_Torcon CaveConverter_src/test/data/regression/3218_Piedrashitas_ref.svx0000644000000000000000000000032012114041272023721 0ustar rootroot*BEGIN 3218_Piedrashitas *CALIBRATE declination 2.08 0 1 0.74 239.05 -45.95 1 2 4.54 255.22 -73.00 2 3 2.66 215.41 -63.52 3 4 2.12 233.67 -49.68 4 5 2.17 235.74 -60.93 *END 3218_Piedrashitas CaveConverter_src/test/data/regression/Riesending_lrou_200909_ss_ref.svx0000644000000000000000000016113612560565270025337 0ustar rootroot*BEGIN Riesending *CALIBRATE declination -2.5 *EQUATE Hauptzug.15 Ursprung.1 *EQUATE Hauptzug.33 Hochsammler.1 *EQUATE Hochsammler.109 Champs_Elysees.1 *EQUATE Hochsammler.125 Champs_Elysees.13 *EQUATE Hochsammler.19 Traumtaenzer.1 *EQUATE Normalweg.1 Hochsammler.21 *EQUATE Normalweg.20 Hochsammler.18 *EQUATE Rampe.1 Normalweg.17 *EQUATE Rampe.4 Hochsammler.13 *EQUATE Rampe.4 Biwakroehre.1 *EQUATE Hauptzug.46 Biwakroehre.15 *EQUATE RD2.1 Hochsammler.9 *EQUATE RD2.29 Hauptzug.72 *EQUATE Normalweg.12 Mitteletage.1 *EQUATE RD2.6 Mitteletage.7 *EQUATE Normalweg.6 Siphon_vorn.1 *EQUATE Normalweg.11 Siphon_vorn.17 *EQUATE RD2.9 Siphon_hinten.1 *EQUATE Hauptzug.103 Waschsalon.1 *EQUATE Lagune.1 Hauptzug.142 *EQUATE Hauptzug.207 Lehmetage.1 *EQUATE Lehmetage.17 Tropfsteinkammer.1 *EQUATE Lehmetage.30 fossile_Schraege.1 *EQUATE Hauptzug.244 fossile_Schraege.17 *EQUATE Lehmetage.30 Dreieckshalle.1 *EQUATE Verbruchgang.1 fossile_Schraege.9 *EQUATE Donnerbach.1 fossile_Schraege.13 *EQUATE Toter_Mann.1 fossile_Schraege.11 *EQUATE Donnerbach.8d Toter_Mann.2 *EQUATE Hauptzug.240 Verbruchetage.1 *EQUATE Hauptzug.244 Seitengang.1 *EQUATE Hauptzug.248 Wasserfallhalle.1 *EQUATE Abfluss.1 Hauptzug.252 *EQUATE Hauptzug.262 Kleiner_Spritzer.1 *EQUATE Hauptzug.286 Leopardengang.1 *EQUATE Hauptzug.279 Leopardengang.11 *EQUATE Hauptzug.306 Schoener_Canyon.1 *EQUATE Schoener_Bach.0 Schoener_Canyon.82a *EQUATE Schoener_Canyon.26 Seitencanyon_Nord.0 *EQUATE Seitencanyon_Nord.13 Seitenseitencanyon.0 *EQUATE Gewurschtel1.0 Schoener_Canyon.10 *EQUATE Gewurschtel1.2 Gewurschtel2.0 *EQUATE Gewurschtel1.6 Gewurschtel3.0 *EQUATE Hauptzug.318 Kongretionencanyon.0 *EQUATE Roehrln.0 Hauptzug.341 *EQUATE Hauptzug.344 Odlgrubn1.0 *EQUATE Schacht6.14 Odlgrubn1.31 *EQUATE Odlgrubn1.17 Odlgrubn2.0 *EQUATE Zweig3.6 Odlgrubn2.29 *EQUATE Odlgrubn2.5 Odlgrubn2a.0 *EQUATE HDB.0 Odlgrubn2.15 *EQUATE SH.0 HDB.4 *EQUATE Hauptzug.349 Droehnung.0 *EQUATE Droehnung.8 Kluftlabyrinth1.0 *EQUATE Kluftlabyrinth1.7 Kluftlabyrinth2.0 *EQUATE Hauptzug.353 Schacht6.0 *EQUATE Halle.0 Schacht6.17 *EQUATE Halle.1 Zweig1.0 *EQUATE Halle.2 Zweig2.0 *EQUATE Halle.6 Zweig3.0 *EQUATE Halle.9 Zweig4.0 *EQUATE Halle.8 Zweig5.0 *EQUATE Hauptzug.346 Schacht1.0 *EQUATE Hauptzug.347 Schacht23.0 *EQUATE Hauptzug.350 Schacht23.10 *EQUATE Schacht4.0 Schacht23.9 *EQUATE Gully.0 Hauptzug.348 *EQUATE Gully.5d Schacht23.2 *EQUATE Hauptzug.352 Schachtumgehung.0 *EQUATE Schacht6.2 Schachtumgehung.8 *EQUATE Schachtumgehung.8 Parallelschacht.0 *EQUATE Odlgrubn1.28d Parallelschacht.11 *EQUATE Schacht6.9 Windschacht.0 *EQUATE Zweig2.8 Windschacht.7 *EQUATE Seengang.0 Schachtumgehung.6 *EQUATE Seengang.4 Kluftschlot.0 *EQUATE Seengang.11 Gipsgang.0 *EQUATE Gipsgang.21 Kluftlabyrinth2.14 *EQUATE Gipsgang.10 Gipsseitengang.0 *EQUATE Seengang.11 Rutschpartie.0 *EQUATE Seengang.26 Steile_Halde.0 *EQUATE Seengang.27 Brausecanyon.0 *EQUATE Seengang.22 Brausecanyon.17 *EQUATE Brausecanyon.16 Missing_Link.0 *EQUATE Missing_Link.14 Brauseschacht.10 *EQUATE Brausecanyon.14 Brauseschacht.0 *EQUATE Brausecanyon.7 Monsterschacht.0 *EQUATE Nebelschacht.17 Monsterschacht.18 *EQUATE Seengang.39 Nebelschacht.0 *EQUATE Seengang.46 Eckschacht.0 *EQUATE Seengang.48 Kristallkluft.0 *EQUATE Seengang.89 Maulwurf1.0 *EQUATE Seengang.89 Maulwurf2.0 *BEGIN Hauptzug *CALIBRATE declination -2.3 1 2 10.00 0.00 -90.00 2 3 7.80 205.00 -33.00 3 4 23.24 0.00 -90.00 4 5 2.35 220.00 29.00 5 6 2.47 137.00 -50.00 6 7 8.62 135.00 -55.00 7 8 7.31 0.00 -90.00 8 9 5.91 0.00 -42.00 9 10 14.50 0.00 -90.00 10 11 28.50 0.00 -90.00 11 12 17.10 0.00 -90.00 12 13 4.30 60.00 0.00 13 14 31.00 0.00 -90.00 14 15 19.00 0.00 -90.00 15 16 1.50 0.00 0.00 16 17 14.00 0.00 -90.00 17 18 115.00 0.00 -90.00 18 19 19.70 82.00 -20.00 19 20 14.20 15.00 -38.00 20 21 9.40 0.00 -90.00 21 22 4.17 37.00 17.00 22 23 7.35 329.00 -16.00 23 24 3.80 310.00 -59.00 24 25 2.06 95.00 8.00 25 26 8.53 65.00 -75.00 26 27 4.65 0.00 -90.00 27 28 4.70 0.00 -90.00 28 29 23.90 0.00 -90.00 29 30 7.95 0.00 25.00 30 31 11.35 318.00 43.00 31 32 3.67 306.00 -16.00 32 33 13.70 334.00 -59.00 33 34 4.10 96.00 -20.00 34 35 2.43 30.00 -28.00 35 36 1.99 286.00 -11.00 36 37 2.56 343.00 -3.00 37 38 2.00 268.00 -2.00 38 39 2.70 318.00 0.00 39 40 3.65 96.00 3.00 40 41 2.13 42.00 -12.00 41 42 3.41 94.00 1.00 42 43 2.93 10.00 -2.00 43 44 6.30 72.00 -1.00 44 45 1.78 18.00 -10.00 45 46 1.73 305.00 13.00 46 47 1.30 37.00 4.00 47 48 2.54 124.00 22.00 48 49 3.60 193.00 10.00 49 50 2.52 140.00 -16.00 50 51 1.38 63.00 0.00 51 52 0.97 0.00 2.00 52 53 3.98 57.00 -43.00 53 54 3.18 116.00 5.00 54 55 1.76 70.00 -1.00 55 56 2.42 332.00 -5.00 56 57 1.00 68.00 -23.00 57 58 7.65 0.00 90.00 58 59 3.59 57.00 -27.00 59 60 10.27 132.00 -4.00 60 61 1.99 113.00 -49.00 61 62 6.70 132.00 1.00 62 63 0.58 275.00 -20.00 63 64 6.88 115.00 -11.00 64 65 3.95 139.00 -38.00 65 66 2.36 231.00 -22.00 66 67 3.59 150.00 -8.00 67 68 0.88 75.00 0.00 68 69 24.10 0.00 -90.00 69 70 2.85 176.00 -5.00 70 71 5.30 358.00 -42.00 71 72 13.60 10.00 -78.00 72 73 1.40 165.00 -1.00 73 74 6.45 114.00 -4.00 74 75 3.24 185.00 -4.00 75 76 3.18 265.00 -10.00 76 77 2.60 180.00 -9.00 77 78 4.50 98.00 -7.00 78 79 0.20 110.00 -45.00 79 80 5.02 106.00 -18.00 80 81 4.81 0.00 -90.00 81 82 0.78 70.00 0.00 82 83 5.25 186.00 15.00 83 84 3.02 90.00 36.00 84 85 2.95 146.00 -22.00 85 86 2.66 165.00 -13.00 86 87 4.88 162.00 -18.00 87 88 2.06 61.00 -8.00 88 89 4.42 104.00 -4.00 89 90 2.53 185.00 -5.00 90 91 5.91 263.00 -36.00 91 92 3.12 193.00 -19.00 92 93 3.91 140.00 8.00 93 94 3.61 182.00 -2.00 94 95 6.75 105.00 2.00 95 96 2.18 67.00 -5.00 96 97 1.61 164.00 1.00 97 98 4.29 227.00 -6.00 98 99 3.55 136.00 -2.00 99 100 2.42 95.00 3.00 100 101 3.62 132.00 0.00 101 102 4.40 198.00 0.00 102 103 5.62 77.00 3.00 103 104 2.70 35.00 -24.00 104 105 1.32 52.00 -19.00 105 106 3.34 169.00 4.00 106 107 3.40 0.00 90.00 107 108 3.47 180.00 6.00 108 109 4.13 148.00 38.00 109 110 3.89 213.00 7.00 110 111 5.09 103.00 -2.00 111 112 4.14 184.00 -3.00 112 113 2.22 74.00 -7.00 113 114 5.58 139.00 -7.00 114 115 3.58 181.00 -20.00 115 116 3.31 92.00 -3.00 116 117 6.74 52.00 -11.00 117 118 1.68 154.00 0.00 118 119 6.93 206.00 -26.00 119 120 3.03 130.00 -13.00 120 121 3.68 179.00 -10.00 121 122 3.92 130.00 -17.00 122 123 2.41 152.00 -18.00 123 124 6.28 99.00 7.00 124 125 3.34 177.00 -39.00 125 126 5.12 129.00 -13.00 126 127 2.30 65.00 13.00 127 128 20.10 0.00 -90.00 128 129 2.65 259.00 6.00 129 130 7.65 98.00 -4.00 130 131 3.28 219.00 -11.00 131 132 2.70 240.00 -71.00 132 133 9.30 0.00 -90.00 133 134 1.20 141.00 21.00 134 135 7.65 143.00 14.00 135 136 2.09 240.00 14.00 136 137 10.70 144.00 0.00 137 138 14.10 0.00 -90.00 138 139 4.10 210.00 20.00 139 140 16.56 0.00 -90.00 140 141 1.05 0.00 90.00 141 142 5.75 325.00 24.00 142 143 7.25 258.00 -7.00 143 144 5.53 198.00 -19.00 144 145 3.25 123.00 -14.00 145 146 1.45 25.00 -48.00 146 147 6.90 111.00 -60.00 147 148 2.40 150.00 1.00 148 149 4.03 98.00 25.00 149 150 2.23 135.00 -53.00 150 151 4.45 36.00 5.00 151 152 2.36 353.00 -9.00 152 153 3.00 0.00 -90.00 153 154 5.30 26.00 12.00 154 155 2.70 111.00 -14.00 155 156 5.79 39.00 1.00 156 157 6.05 148.00 19.00 157 158 7.54 57.00 0.00 158 159 16.37 0.00 -90.00 159 160 1.80 60.00 33.00 160 161 17.30 0.00 -90.00 161 162 11.15 60.00 -61.00 162 163 20.30 0.00 -90.00 163 165 1.27 355.00 10.00 165 166 6.15 35.00 -73.00 166 167 2.11 128.00 -3.00 167 168 4.92 108.00 -71.00 168 169 1.90 104.00 -52.00 169 170 7.64 123.00 -1.00 170 171 3.93 68.00 -12.00 171 172 2.54 141.00 -10.00 172 173 5.12 71.00 2.00 173 174 5.24 50.00 -61.00 174 175 1.50 140.00 -10.00 175 176 14.30 0.00 -90.00 176 177 4.74 78.00 -3.00 177 178 5.98 115.00 -2.00 178 179 4.35 32.00 -24.00 179 180 5.98 112.00 -10.00 180 181 3.45 38.00 -6.00 181 182 10.10 319.00 2.00 182 183 6.99 329.00 -2.00 183 184 3.65 44.00 9.00 184 185 3.35 349.00 22.00 185 186 1.78 70.00 35.00 186 187 3.49 132.00 -3.00 187 188 4.32 183.00 -70.00 188 189 5.33 68.00 -17.00 189 190 3.81 25.00 -57.00 190 191 6.45 38.00 5.00 191 192 2.57 57.00 30.00 192 193 7.95 93.00 -80.00 193 194 9.70 90.00 -75.00 194 195 1.87 86.00 -25.00 195 196 7.25 26.00 -72.00 196 197 5.73 50.00 -12.00 197 198 3.23 39.00 -4.00 198 199 9.28 350.00 -80.00 199 200 10.07 0.00 -90.00 200 201 9.30 50.00 -40.00 201 202 6.06 0.00 -90.00 202 203 1.41 313.00 -27.00 203 204 9.55 0.00 -90.00 204 205 12.97 0.00 -90.00 205 206 13.05 0.00 -90.00 206 207 12.78 188.00 -33.00 207 208 1.95 283.00 2.00 208 209 4.09 225.00 -46.00 209 210 2.41 234.00 -36.00 210 211 5.45 244.00 -60.00 211 212 3.13 198.00 -18.00 212 213 10.51 219.00 -43.00 213 214 2.05 192.00 -43.00 214 215 8.52 235.00 4.00 215 216 5.12 242.00 16.00 216 217 5.00 215.00 -17.00 217 218 4.71 72.00 -26.00 218 219 5.99 224.00 -13.00 219 220 3.70 229.00 -25.00 220 221 5.42 136.00 -33.00 221 222 3.15 198.00 -31.00 222 223 8.35 224.00 2.00 223 224 7.63 232.00 -1.00 224 225 6.68 133.00 -50.00 225 226 9.55 0.00 -90.00 226 227 3.02 331.00 -9.00 227 228 9.06 312.00 -15.00 228 229 2.08 274.00 -29.00 229 230 6.88 302.00 -13.00 230 231 1.90 8.00 -34.00 231 232 5.38 312.00 -25.00 232 233 16.06 345.00 -76.00 233 234 7.46 0.00 -90.00 234 235 6.52 38.00 -41.00 235 236 13.08 70.00 -54.00 236 237 7.98 37.00 -49.00 237 238 15.41 56.00 -55.00 238 239 3.05 355.00 -18.00 239 240 17.16 25.00 -56.00 240 241 14.02 100.00 -51.00 241 242 8.15 38.00 -55.00 242 243 16.18 55.00 -73.00 243 244 14.52 45.00 -61.00 244 245 13.66 343.00 -50.00 245 246 3.49 341.00 -33.00 246 247 19.41 30.00 -54.00 247 248 14.77 9.00 -41.00 248 249 12.82 328.00 5.00 249 250 14.56 347.00 -19.00 250 251 8.64 357.00 -9.00 251 252 20.10 2.00 -23.00 252 253 2.70 355.00 -5.00 253 254 9.47 339.00 -10.00 254 255 18.33 337.00 -1.00 255 256 7.90 324.00 -6.00 256 257 4.90 330.00 23.00 257 258 1.61 0.00 -90.00 258 259 18.10 333.00 -6.00 259 260 7.90 286.00 43.00 260 261 18.80 290.00 38.00 261 262 10.00 291.00 44.00 262 263 14.95 319.00 23.00 263 264 12.45 307.00 23.00 264 265 30.00 264.00 40.00 265 266 4.90 312.00 16.00 266 267 11.87 310.00 -3.00 267 268 4.25 348.00 -13.50 268 269 3.72 301.00 1.00 269 270 6.54 309.00 -25.00 270 271 6.32 309.00 24.00 271 272 21.95 310.00 2.00 272 273 16.66 329.00 0.00 273 274 13.77 326.00 6.00 274 275 8.90 349.00 -22.00 275 276 4.40 64.00 41.00 276 277 6.45 341.00 -1.00 277 278 21.80 323.00 4.00 278 279 28.70 321.00 7.00 279 280 21.95 307.00 22.00 280 281 15.04 304.00 35.00 281 282 2.16 9.00 -6.00 282 283 7.70 4.00 -29.00 283 284 7.08 9.00 -37.00 284 285 7.00 0.00 -90.00 285 286 15.53 351.00 -39.00 286 287 9.35 105.00 -22.50 287 288 16.75 333.00 -8.00 288 289 1.34 332.00 9.00 289 290 1.55 0.00 90.00 290 291 8.15 302.00 22.00 291 292 22.35 336.00 6.00 292 293 25.75 315.00 2.50 293 294 8.10 317.00 1.50 294 295 22.25 316.00 1.00 295 296 16.45 310.00 0.00 296 297 11.00 315.00 -5.00 297 298 30.10 309.00 3.00 298 299 15.09 319.00 -2.00 299 300 24.15 314.00 2.00 300 301 15.00 307.00 -2.00 301 302 20.30 297.00 4.00 302 303 9.37 298.00 -3.00 303 304 7.35 294.00 13.00 304 305 25.25 326.00 2.50 305 306 2.72 287.00 -1.50 306 307 4.09 312.00 -22.00 307 308 10.24 340.00 1.00 308 309 11.83 327.00 -54.00 309 310 19.60 25.00 -67.00 310 311 3.07 35.00 -48.00 311 312 18.35 314.00 -30.00 312 313 19.85 309.00 -9.00 313 314 19.05 277.00 25.00 314 315 7.60 327.00 14.00 315 316 6.55 295.00 35.00 316 317 19.75 253.00 52.00 317 318 1.14 310.00 7.00 318 319 17.15 338.00 -40.00 319 320 16.75 296.00 42.00 320 321 5.27 307.00 -17.00 321 322 11.55 330.00 -36.00 322 323 11.00 0.00 -43.00 323 324 17.10 320.00 16.00 324 325 16.00 323.00 20.00 325 326 18.14 2.00 69.00 326 327 2.55 41.00 -5.00 327 328 10.75 327.00 -2.00 328 329 15.68 276.00 1.00 329 330 7.52 306.00 2.00 330 331 3.76 8.00 -16.00 331 332 2.78 305.00 7.00 332 333 8.11 49.00 -1.00 333 334 4.21 333.00 -17.00 334 335 4.66 48.00 0.00 335 336 9.03 344.00 -6.00 336 337 7.07 85.00 27.00 337 338 16.33 55.00 -7.50 338 339 4.48 23.00 -7.00 339 340 8.04 294.00 -4.50 340 341 8.62 49.00 2.00 341 342 4.60 322.00 -4.00 342 343 15.32 26.00 -20.00 343 344 8.80 279.00 3.50 344 345 14.54 283.00 46.00 345 346 16.50 319.00 -26.00 346 347 10.21 305.00 -35.00 347 348 12.77 259.00 -12.00 348 349 12.54 304.00 -22.00 349 350 9.66 16.00 33.00 350 351 14.99 79.00 2.50 351 352 16.36 354.00 37.00 352 353 6.17 350.00 -7.00 *END Hauptzug *BEGIN Ursprung *CALIBRATE declination -2.4 1 2 7.83 313.00 -8.00 2 3 9.40 304.00 -42.00 3 4 6.92 250.00 -47.00 4 5 5.92 351.00 -69.00 5 6 5.74 252.00 -29.00 6 7 13.45 273.00 -38.00 7 8 4.07 7.00 62.00 8 10 11.52 233.00 58.00 10 11 3.07 191.00 -37.00 11 12 18.70 0.00 90.00 12 13 4.82 211.00 -18.00 13 14 2.22 302.00 -32.00 14 15 3.37 343.00 -52.00 15 16 3.78 252.00 -23.00 12 17 2.00 0.00 90.00 17 18 3.64 117.00 45.00 18 19 2.21 89.00 15.00 19 20 5.48 0.00 90.00 20 21 1.03 301.00 1.00 21 22 6.10 0.00 90.00 22 23 5.15 303.00 80.00 23 24 6.37 189.00 85.00 24 25 1.92 230.00 3.00 25 26 2.26 269.00 -3.00 26 27 4.17 271.00 14.50 27 28 2.65 322.00 2.00 28 29 5.53 260.00 23.00 29 30 3.08 318.00 -14.00 30 31 4.19 262.00 -28.00 31 32 4.11 334.00 -27.00 32 33 5.19 305.00 41.00 33 34 5.31 274.00 -19.00 33 34 5.31 274.00 -19.00 34 35 4.83 278.00 37.00 35 36 4.10 243.00 -16.00 36 37 2.87 349.00 -23.00 37 38 20.25 252.00 -50.00 38 39 10.15 215.00 -34.00 39 40 8.00 238.00 -10.00 40 41 2.22 273.00 -22.00 41 42 16.20 0.00 90.00 42 43 1.81 170.00 50.00 43 44 4.47 60.00 60.00 44 45 5.41 110.00 53.00 45 46 6.46 0.00 90.00 46 47 4.36 278.00 5.00 47 48 3.90 250.00 68.00 48 49 1.50 152.00 0.00 49 50 7.69 273.00 41.00 50 51 6.69 146.00 32.00 51 51a 5.45 17.00 -21.00 51a 51b 4.05 11.00 29.00 51b 51c 12.02 95.00 37.00 51 52 5.60 263.00 30.00 52 53 4.65 256.00 14.00 53 54 4.47 177.00 -24.00 54 54a 1.32 87.00 -35.00 54a 54b 3.55 0.00 90.00 54b 54c 4.12 94.00 -1.00 54c 54d 1.70 133.00 1.00 54d 54e 2.50 216.00 -6.00 54e 54f 4.24 132.00 0.00 54f 54g 5.01 220.00 -23.00 54g 54h 5.15 117.00 35.00 54h 54i 5.54 266.00 13.00 54i 54j 2.39 320.00 21.00 54j 54k 6.67 296.00 -30.00 54k 54k1 7.95 251.00 -22.00 54k 54l 2.86 163.00 -5.00 54l 54m 7.89 145.00 -13.00 54 55 3.02 342.00 -42.00 55 56 7.91 296.00 -40.00 56 57 10.05 302.00 -47.00 57 58 8.40 0.00 90.00 58 59 1.90 4.00 9.00 59 60 2.00 86.00 60.00 60 61 4.91 29.00 -30.00 61 62 3.85 309.00 12.00 62 63 2.36 295.00 7.00 63 64 2.01 269.00 30.00 64 65 3.70 211.00 25.00 65 66 4.47 255.00 -33.00 66 67 7.20 0.00 90.00 67 68 1.85 288.00 6.00 68 69 2.38 315.00 4.00 69 70 2.06 289.00 3.00 70 71 1.52 306.00 -8.00 71 72 2.64 223.00 20.00 72 73 3.57 298.00 8.00 73 74 3.57 257.00 2.00 74 75 2.46 269.00 -2.00 75 76 2.00 320.00 18.00 76 77 3.09 247.00 -4.00 77 78 1.13 313.00 -1.00 78 79 2.35 226.00 33.00 79 80 4.06 188.00 -22.00 80 81 5.91 291.00 18.00 81 82 4.82 250.00 -6.00 82 83 1.24 132.00 -42.00 83 84 3.45 252.00 30.00 84 85 10.89 282.00 -2.00 85 86 7.73 319.00 -26.00 86 87 7.00 202.00 3.00 87 88 5.42 249.00 20.00 88 89 5.82 320.00 12.00 89 90 5.74 307.00 -5.00 90 91 9.35 290.00 0.50 91 92 2.40 205.00 6.00 92 93 5.08 192.00 5.00 93 94 5.37 247.00 -15.00 *END Ursprung *BEGIN Hochsammler *CALIBRATE declination -2.1 1 2 4.90 302.00 26.00 2 3 2.67 344.00 1.00 3 4 3.03 292.00 0.00 4 5 2.55 8.00 7.00 5 6 3.50 281.00 -1.00 6 7 3.40 337.00 4.00 7 8 2.67 325.00 0.00 8 9 7.80 315.00 -2.00 9 10 4.87 282.00 2.00 10 11 7.70 345.00 11.00 11 12 9.20 349.00 -36.00 12 13 17.80 317.00 -5.00 13 14 6.88 323.00 -25.00 14 15 7.83 333.00 -16.00 15 16 7.17 272.00 37.00 16 17 18.38 331.00 -31.00 17 18 11.95 6.00 -54.00 18 19 6.08 305.00 2.00 19 20 1.67 343.00 -5.00 20 21 14.28 0.00 -90.00 21 22 3.23 350.00 13.00 22 23 2.30 250.00 12.00 23 24 2.00 177.00 6.00 24 25 9.33 305.00 -3.00 25 26 2.27 28.00 1.00 26 27 4.98 329.00 -1.00 27 28 2.73 292.00 -2.00 28 29 3.15 322.00 3.00 29 30 3.02 280.00 29.00 30 31 5.45 332.00 -3.00 31 32 4.87 248.00 12.00 32 33 3.40 229.00 3.00 33 34 6.96 315.00 -16.00 34 35 18.13 280.00 68.00 35 36 2.20 75.00 52.00 36 37 4.20 340.00 27.00 37 38 2.06 312.00 -22.00 38 39 4.72 21.00 54.00 39 40 3.27 304.00 40.00 40 41 3.45 234.00 17.00 41 42 4.35 326.00 -10.00 42 43 3.19 80.00 -2.00 43 44 2.12 13.00 24.00 44 45 2.95 28.00 7.00 45 46 7.55 266.00 33.00 46 47 8.60 293.00 -10.00 47 48 1.42 5.00 12.00 48 49 3.28 88.00 -1.00 49 50 2.64 45.00 -4.00 50 51 2.52 95.00 2.00 51 52 1.30 17.00 0.00 52 53 5.98 287.00 12.00 53 54 4.54 213.00 -7.00 54 55 4.75 308.00 4.00 55 56 3.70 292.00 3.00 56 57 1.52 8.00 -1.00 57 58 2.33 57.00 -9.00 58 59 1.80 302.00 -14.00 59 60 3.93 250.00 14.00 60 61 4.44 301.00 -1.00 61 62 2.51 307.00 1.00 62 63 1.89 44.00 3.00 63 64 3.12 90.00 -5.00 64 65 7.45 324.00 5.00 65 66 2.04 338.00 0.00 66 67 2.88 283.00 -3.00 67 68 6.30 292.00 4.00 68 69 3.02 352.00 -3.00 69 70 1.90 35.00 -6.00 70 71 3.07 293.00 7.00 71 72 3.19 16.00 6.00 72 73 2.40 312.00 14.00 73 74 4.53 244.00 -6.00 74 75 4.74 281.00 4.00 75 76 4.40 49.00 -1.00 76 77 7.70 37.00 9.00 77 78 1.44 320.00 -10.00 78 79 3.45 259.00 -5.00 79 80 3.94 194.00 -5.00 80 81 4.18 242.00 12.00 81 82 4.34 313.00 -8.00 82 83 6.38 26.00 6.00 83 84 3.32 255.00 1.00 84 85 2.32 177.00 12.00 85 86 3.17 244.00 -3.00 86 87 3.63 298.00 2.00 87 88 2.15 61.00 -3.00 88 89 2.19 101.00 3.00 89 90 7.00 355.00 -3.00 90 91 7.31 292.00 5.00 91 92 3.55 16.00 -3.00 92 93 4.73 317.00 8.00 93 94 1.53 259.00 7.00 94 95 7.35 169.00 2.00 95 96 1.69 249.00 -26.00 96 97 3.60 321.00 0.00 97 98 5.00 342.00 -2.00 98 99 3.44 323.00 -7.00 99 100 6.70 306.00 2.00 100 101 1.78 273.00 11.00 101 102 4.67 330.00 6.00 102 103 4.80 240.00 -5.00 103 104 4.34 283.00 -5.00 104 105 4.00 15.00 -15.00 105 106 2.15 263.00 0.00 106 107 4.20 332.00 0.00 107 108 7.43 307.00 2.00 108 109 3.53 258.00 4.00 109 110 4.98 332.00 -1.00 110 111 3.80 306.00 -6.00 111 112 1.50 354.00 -10.00 112 113 3.90 294.00 32.00 113 114 8.65 315.00 -8.00 114 115 2.88 3.00 -1.00 115 116 8.43 243.00 0.00 116 117 2.30 205.00 4.00 117 118 1.96 269.00 6.00 118 119 8.55 335.00 4.00 119 120 5.04 275.00 -7.00 120 121 3.77 350.00 -1.00 121 122 2.48 251.00 5.00 122 123 3.46 323.00 -3.00 123 124 3.95 302.00 2.50 124 125 3.20 354.00 1.00 125 126 8.93 2.00 0.00 126 127 3.13 260.00 -1.00 127 128 2.25 11.00 13.00 128 129 5.35 326.00 9.00 129 130 3.24 254.00 -18.00 130 131 3.55 0.00 60.00 131 132 3.90 270.00 -5.00 132 133 3.85 325.00 19.00 133 134 6.30 300.00 34.00 134 135 2.20 343.00 33.00 135 136 2.65 299.00 -33.00 136 137 3.45 172.00 8.00 137 138 3.16 272.00 5.00 138 139 4.47 276.00 -6.00 139 140 0.85 180.00 -1.00 140 141 5.10 286.00 3.00 141 142 3.20 348.00 7.00 142 143 3.90 259.00 19.00 143 144 3.76 239.00 -18.00 144 145 2.56 339.00 20.00 145 146 2.42 215.00 27.00 146 147 2.55 244.00 -4.00 147 148 2.92 259.00 40.00 148 149 6.33 255.00 55.00 149 150 5.33 241.00 15.00 *END Hochsammler *BEGIN Champs_Elysees *CALIBRATE declination -2.1 1 2 7.96 327.00 31.00 2 3 4.10 288.00 60.00 3 4 3.37 210.00 45.00 4 5 5.15 10.00 24.00 5 6 11.10 292.00 0.00 6 7 11.90 300.00 2.00 7 8 11.13 303.00 -13.50 8 9 3.38 278.00 -14.00 9 10 1.98 351.00 -5.00 10 11 5.10 315.00 -35.00 11 12 1.65 29.00 -13.00 12 13 4.20 0.00 -90.00 *END Champs_Elysees *BEGIN Traumtaenzer *CALIBRATE declination -2.0 1 2 8.70 275.00 52.00 2 3 5.10 317.00 57.00 3 4 15.65 315.00 -7.50 4 5 9.50 317.00 -22.00 *END Traumtaenzer *BEGIN Normalweg *CALIBRATE declination -2.0 1 2 2.70 160.00 12.00 2 3 4.63 61.00 1.00 3 4 9.43 125.00 0.00 4 5 3.61 53.00 -10.00 5 6 6.44 154.00 3.00 6 7 3.68 80.00 66.00 7 8 3.22 83.00 -11.00 8 9 9.05 141.00 19.00 9 10 6.25 130.00 26.00 10 11 8.90 148.00 3.00 11 12 4.17 183.00 31.00 12 13 9.83 320.00 10.00 13 14 1.73 268.00 9.00 14 15 3.20 321.00 16.00 15 16 3.67 257.00 36.00 16 17 1.96 319.00 34.00 17 18 4.52 298.00 26.00 18 19 13.80 314.00 -26.00 19 20 7.63 306.00 9.00 *END Normalweg *BEGIN Rampe *CALIBRATE declination -2.0 1 2 22.00 167.00 51.00 2 3 3.80 225.00 6.00 3 4 1.50 120.00 26.00 *END Rampe *BEGIN Biwakroehre *CALIBRATE declination -2.0 1 2 3.23 60.00 10.00 2 3 5.40 106.00 19.00 3 4 15.64 144.00 51.00 4 5 11.48 130.00 23.00 5 6 1.32 208.00 -31.00 6 7 19.15 115.00 1.00 7 8 5.23 133.00 32.00 8 9 3.60 55.00 22.00 9 10 9.04 140.00 12.00 10 11 6.80 141.00 5.00 11 12 2.31 350.00 -60.00 12 13 15.00 0.00 -90.00 13 14 1.00 315.00 0.00 14 15 4.00 0.00 -90.00 *END Biwakroehre *BEGIN RD2 *CALIBRATE declination -2.0 1 2 2.99 114.00 -23.00 2 3 19.80 44.00 -61.00 3 4 8.30 350.00 -74.00 4 5 9.49 85.00 -61.00 5 6 4.40 80.00 -52.50 6 7 5.68 154.00 12.00 7 8 7.25 109.00 1.00 8 9 5.21 0.00 -90.00 9 10 2.08 144.00 10.00 10 11 3.54 82.00 7.00 11 12 3.17 204.00 -36.00 12 13 4.60 168.00 -10.00 13 14 1.65 85.00 -7.00 14 15 2.65 205.00 0.00 15 16 3.10 127.00 9.00 16 17 3.30 47.00 -8.00 17 18 1.78 145.00 -2.00 18 19 4.22 229.00 -12.00 19 20 3.45 114.00 -8.00 20 21 8.45 70.00 4.00 21 22 3.24 190.00 -10.00 22 23 2.83 229.00 -26.00 23 24 5.28 132.00 -6.00 24 25 3.60 55.00 16.00 25 26 1.97 23.00 6.00 26 27 3.30 117.00 6.00 27 28 3.77 84.00 -22.00 28 29 15.35 115.00 2.00 *END RD2 *BEGIN Mitteletage *CALIBRATE declination -2.0 1 2 2.20 201.00 28.00 2 3 19.30 138.00 -0.50 3 4 3.80 194.00 49.00 4 5 7.80 112.00 -28.00 5 6 5.40 102.00 -50.00 6 7 10.35 152.00 -8.50 *END Mitteletage *BEGIN Siphon_vorn *CALIBRATE declination -2.0 1 2 5.37 68.00 -3.00 2 3 7.54 148.00 3.50 3 4 3.80 96.00 -1.00 4 5 2.12 156.00 7.00 5 6 7.04 122.00 -2.00 6 7 3.61 165.00 -5.00 7 8 5.28 117.00 -3.00 8 9 5.10 168.00 -8.00 9 10 2.12 67.00 -2.00 10 11 4.60 120.00 -7.50 11 12 3.50 43.00 8.50 12 12S 5.50 120.00 -33.00 12 13 5.73 240.00 48.00 13 14 9.90 287.00 25.00 14 15 3.90 334.00 6.00 15 16 3.27 240.00 50.00 16 17 0.50 260.00 -60.00 *END Siphon_vorn *BEGIN Siphon_hinten *CALIBRATE declination -2.0 1 2 0.46 260.00 2.00 2 3 3.70 353.00 -5.00 3 4 8.45 329.00 -9.00 4 5 7.43 344.00 -3.00 *END Siphon_hinten *BEGIN Waschsalon *CALIBRATE declination -2.1 1 2 13.89 205.00 48.00 2 3 0.80 332.00 0.00 3 4 4.90 282.00 75.00 *END Waschsalon *BEGIN Lagune *CALIBRATE declination -2.1 1 2 6.65 312.00 3.00 2 3 5.90 74.00 17.00 *END Lagune *BEGIN Lehmetage *CALIBRATE declination -2.2 1 2 13.94 244.00 11.00 2 3 7.14 222.00 -17.00 3 4 3.97 202.00 -11.00 4 5 3.64 245.00 -2.00 5 6 0.68 251.00 48.00 6 7 18.70 233.00 -36.00 7 8 8.25 219.00 -18.00 8 9 4.91 210.00 -4.00 9 10 5.21 102.00 -25.00 10 11 8.25 166.00 17.00 11 12 7.00 262.00 -13.00 12 13 7.85 185.00 2.00 13 14 5.65 90.00 11.00 14 15 7.85 125.00 20.00 15 16 5.65 125.00 -45.00 16 17 7.30 0.00 -90.00 17 18 2.30 305.00 -30.00 18 19 1.23 289.00 -5.00 19 20 4.60 194.00 -32.00 20 21 2.40 197.00 -15.00 21 22 25.24 0.00 -90.00 22 23 3.77 175.00 -25.00 23 24 9.27 81.00 -8.00 24 25 2.88 87.00 -47.00 25 26 3.72 332.00 -48.00 26 27 6.50 0.00 -90.00 27 28 2.95 330.00 -35.00 28 29 13.80 0.00 -90.00 29 30 4.20 58.00 -3.00 *END Lehmetage *BEGIN Tropfsteinkammer *CALIBRATE declination -2.2 1 2 4.96 132.00 9.00 2 3 6.60 145.00 15.00 3 4 3.10 80.00 40.00 4 5 2.20 182.00 8.00 5 6 4.80 115.00 20.00 6 7 4.30 75.00 40.00 *END Tropfsteinkammer *BEGIN fossile_Schraege *CALIBRATE declination -2.2 1 2 5.75 69.00 -23.00 2 3 9.78 89.00 -48.50 3 4 8.14 67.00 -42.00 4 5 3.30 4.00 -17.00 5 6 3.71 50.00 -32.00 6 7 9.94 91.00 -49.00 7 8 13.54 54.00 -52.00 8 9 16.11 56.00 -49.00 9 10 3.35 131.00 -5.00 10 11 17.08 62.00 -58.00 11 12 19.18 333.00 -39.00 12 13 11.98 335.00 -32.00 13 14 12.04 290.00 21.00 14 15 6.73 287.00 -37.00 15 16 4.91 310.00 -1.00 16 17 13.38 332.00 -25.00 *END fossile_Schraege *BEGIN Dreieckshalle *CALIBRATE declination -2.2 1 2 3.43 39.00 10.00 2 3 2.18 296.00 10.00 3 4 8.79 45.00 -38.00 4 5 7.30 55.00 -39.00 5 5a 6.86 75.00 -50.00 5 6 5.92 303.00 -37.00 6 7 4.50 349.00 -52.00 7 8 7.30 0.00 -90.00 8 8a 10.70 340.00 3.00 8 9 7.65 162.00 9.00 9 9a 15.70 41.00 -34.00 9 10 4.47 245.00 43.00 10 11 1.95 0.00 90.00 11 12 10.95 198.00 53.00 12 13 6.20 218.00 52.00 13 14 0.53 0.00 90.00 14 1 4.11 135.00 39.00 *END Dreieckshalle *BEGIN Verbruchgang *CALIBRATE declination -2.2 1 2 14.03 264.00 36.00 2 3 6.37 277.00 -7.00 3 4 8.22 276.00 40.00 *END Verbruchgang *BEGIN Donnerbach *CALIBRATE declination -2.2 1 2 2.45 169.00 11.00 2 3 0.80 0.00 -90.00 3 4 2.53 153.00 -49.00 4 5 3.97 160.00 18.00 5 5a 4.65 326.00 -35.00 5a 5b 3.60 295.00 3.00 5 6 3.10 115.00 -4.00 6 7 4.80 113.00 -32.00 7 8 4.11 183.00 24.00 8 8a 5.30 192.00 0.00 8a 8b 15.40 0.00 90.00 8b 8c 3.20 43.00 24.00 8c 8d 4.30 91.00 -12.00 8 9 18.80 180.00 29.00 9 10 6.50 172.00 32.00 10 11 9.85 133.00 -31.00 11 12 14.40 120.00 -25.00 12 12a 5.65 306.00 6.00 12a 12b 2.75 333.00 -12.00 12b 12c 9.73 341.00 -18.00 12 13 3.50 199.00 -4.00 13 14 13.30 140.00 -7.00 14 15 6.80 140.00 7.00 15 16 4.30 210.00 39.00 16 17 2.80 171.00 -3.00 17 17a 6.50 149.00 0.00 17a 17b 4.80 142.00 10.00 17 18 3.35 224.00 80.00 18 19 3.67 194.00 33.00 19 20 3.37 162.00 22.00 20 21 6.90 145.00 11.00 21 22 4.55 103.00 -19.00 22 22a 6.34 182.00 -23.00 22a 22b 6.97 80.00 -64.00 22 23 11.35 158.00 25.00 23 24 8.35 208.00 -9.00 *END Donnerbach *BEGIN Toter_Mann *CALIBRATE declination -2.2 1 2 6.70 25.00 -52.00 2 2a 17.50 25.00 -68.00 2 3 11.30 84.00 -46.00 3 4 2.20 123.00 11.00 4 5 3.05 235.00 48.00 5 6 10.30 136.00 19.00 6 7 10.20 138.00 7.00 7 8 6.73 196.00 37.00 8 9 9.80 321.00 2.00 9 10 2.45 206.00 35.00 10 11 10.72 171.00 38.00 11 12 16.65 133.00 -8.00 12 13 13.55 135.00 -9.00 13 14 8.77 128.00 -20.00 14 15 8.10 122.00 -4.00 15 16 3.98 107.00 -46.00 16 17 1.95 170.00 0.00 17 18 7.80 160.00 34.00 18 19 18.59 253.00 39.00 19 20 19.20 265.00 45.00 *END Toter_Mann *BEGIN Verbruchetage *CALIBRATE declination -2.1 1 2 2.55 338.00 33.00 2 3 11.05 316.00 13.00 3 4 7.83 295.00 4.00 *END Verbruchetage *BEGIN Seitengang *CALIBRATE declination -2.1 1 2 18.93 135.00 2.00 2 3 4.58 108.00 -9.00 3 4 3.26 148.00 -3.00 4 5 2.86 114.00 -1.00 *END Seitengang *BEGIN Wasserfallhalle *CALIBRATE declination -2.2 1 2 3.17 39.00 20.00 2 3 6.22 72.00 -60.00 3 4 6.15 132.00 -20.00 4 5 5.60 80.00 -45.00 5 6 7.20 163.00 30.00 6 7 4.90 196.00 27.00 7 8 6.05 175.00 20.00 8 9 10.07 155.00 37.00 9 10 9.20 172.00 27.00 10 11 9.50 125.00 -5.00 *END Wasserfallhalle *BEGIN Abfluss *CALIBRATE declination -2.2 1 2 12.95 170.00 7.50 2 3 13.50 104.00 -31.00 3 4 6.74 164.00 -14.00 4 5 6.77 114.00 -41.00 5 6 4.43 340.00 -7.00 6 7 8.90 8.00 -49.00 7 8 2.20 10.00 -22.00 8 9 7.10 4.00 -42.00 9 10 3.82 27.00 -19.00 10 11 4.83 53.00 -53.00 11 12 5.80 32.00 -37.00 12 13 5.38 348.00 -14.00 13 14 5.90 24.00 -47.00 14 14a 5.40 133.00 -4.00 14a 14b 12.02 84.00 -48.00 14b 14c 13.13 34.00 -41.00 14c 14W1 0.51 0.00 -90.00 14c 14d 2.09 314.00 35.00 14d 14e 4.86 331.00 -19.00 14e 14f 3.73 321.00 -9.00 14f 14W2 0.70 0.00 -90.00 14 15 4.70 28.00 -28.00 15 16 3.71 0.00 -90.00 16 17 4.90 5.00 -6.00 17 18 4.66 31.00 -42.00 18 19 6.27 331.00 -21.00 19 20 2.11 340.00 8.00 20 20a 5.60 82.00 -53.00 20a 20b 2.74 130.00 -10.00 20b 20W3 4.60 81.00 -51.00 20 21 1.03 290.00 25.00 21 22 11.65 322.00 -4.00 22 23 16.30 348.00 -34.00 23 24 5.00 75.00 -54.00 *END Abfluss *BEGIN Kleiner_Spritzer *CALIBRATE declination -2.2 1 2 3.15 294.00 21.00 2 3 6.42 36.00 -31.00 3 4 3.80 345.00 -54.00 4 5 0.70 87.00 2.00 5 6 2.15 0.00 -90.00 6 7 3.63 358.00 -63.00 7 8 7.80 37.00 -57.00 8 9 6.30 40.00 -70.00 9 10 13.72 59.00 -59.00 10 11 16.37 70.00 -55.00 11 12 8.14 135.00 -7.00 12 13 14.06 97.00 -47.00 13 14 7.14 117.00 -42.00 14 15 7.70 355.00 -37.00 15 16 17.84 10.00 -52.00 *END Kleiner_Spritzer *BEGIN Leopardengang *CALIBRATE declination -2.2 1 2 22.05 141.00 6.00 2 3 7.95 130.00 -4.00 3 3a 12.56 182.00 -6.50 3 4 4.40 123.00 -1.00 4 5 9.95 154.00 0.00 5 6 5.25 147.00 1.50 6 7 3.45 161.00 -4.00 7 8 6.20 152.00 6.00 8 9 9.60 139.00 3.00 9 10 5.78 258.00 -18.00 10 11 14.25 332.00 29.00 *END Leopardengang *BEGIN Schoener_Canyon *CALIBRATE declination -2.4 1 2 7.50 71.00 3.00 2 3 2.10 29.00 -7.00 3 4 3.76 78.00 10.00 4 5 5.11 49.00 -0.50 5 6 5.28 91.00 5.00 6 7 13.80 73.00 3.00 7 8 6.40 77.00 9.00 8 9 6.74 79.00 -12.00 9 10 7.85 58.00 -4.00 10 11 7.47 79.00 3.00 11 12 4.22 111.00 -5.00 12 13 5.48 102.00 -18.00 13 14 5.70 175.00 31.00 14 14a 10.70 245.00 -32.00 14 15 3.10 141.00 -15.00 15 16 4.70 28.00 1.00 16 17 4.58 71.00 -5.00 17 18 3.91 132.00 12.00 18 19 5.83 72.00 5.00 19 20 6.47 94.00 -7.00 20 21 5.50 130.00 0.00 21 22 12.17 84.00 -0.50 22 23 5.48 108.00 -7.00 23 24 6.07 2.00 -53.00 24 25 8.67 95.00 5.00 25 26 6.97 67.00 24.00 26 27 9.74 124.00 26.00 27 28 2.97 92.00 0.00 28 29 5.55 138.00 23.00 29 30 5.26 84.00 -6.00 30 31 3.06 31.00 -8.00 31 32 9.17 80.00 -24.00 32 33 13.32 78.00 -9.00 33 34 8.33 133.00 4.00 34 35 7.60 36.00 42.00 35 36 6.35 80.00 7.00 36 37 12.70 140.00 30.00 37 38 4.46 121.00 19.00 38 39 4.50 112.00 20.00 39 40 5.37 100.00 42.00 40 41 6.13 141.00 16.00 41 42 3.90 188.00 -32.00 42 43 4.82 75.00 16.00 43 44 12.88 141.00 5.00 44 45 9.62 142.00 -1.00 45 46 7.35 75.00 9.00 46 47 5.30 182.00 -10.00 47 48 4.15 129.00 8.00 48 49 3.30 98.00 -3.00 49 50 8.77 115.00 0.00 50 51 3.15 206.00 -30.00 51 52 4.70 106.00 17.00 52 53 10.05 67.00 -27.00 53 54 7.72 141.00 -5.00 54 55 4.43 242.00 -10.00 55 56 7.62 222.00 -57.00 56 57 6.38 197.00 -80.00 57 58 3.01 80.00 -28.00 58 59 7.10 75.00 -4.00 59 60 10.07 98.00 7.00 60 61 8.22 66.00 30.00 61 62 11.91 89.00 22.00 62 63 5.10 91.00 1.00 63 64 6.05 86.00 -3.00 64 65 6.90 113.00 3.00 65 66 8.29 70.00 -1.00 66 67 3.86 81.00 4.00 67 68 4.48 152.00 -5.00 68 69 13.95 135.00 -38.00 69 70 8.09 122.00 -23.00 70 71 9.05 128.00 -9.00 71 72 5.69 199.00 -12.00 72 73 5.76 166.00 -6.00 73 74 3.53 219.00 -10.00 74 75 4.30 247.00 -3.00 75 76 5.53 149.00 17.00 76 77 4.82 82.00 25.00 77 78 2.56 171.00 38.00 78 78a 7.05 67.00 19.00 78a 78b 8.42 312.00 -17.00 78 79 9.11 187.00 26.00 79 79a 5.69 111.00 33.00 79a 79b 7.31 3.00 -16.00 79 80 6.36 136.00 24.00 80 80a 4.64 188.00 27.00 80a 80b 6.01 266.00 34.00 80 81 3.78 117.00 -30.00 81 82 6.84 158.00 -27.00 82 82a 3.60 172.00 -6.00 82a 82b 8.57 107.00 39.00 82b 82c 2.65 92.00 -8.00 82c 82d 9.92 35.00 0.00 82 83 11.45 124.00 47.00 83 84 7.49 131.00 27.00 84 84a 12.76 80.00 30.00 84 85 18.75 232.00 -1.00 85 86 14.64 237.00 24.00 86 86a 12.14 167.00 -10.00 86a 86b 8.53 137.00 -8.00 86 87 9.74 115.00 3.00 *END Schoener_Canyon *BEGIN Schoener_Bach *CALIBRATE declination -2.4 0 1 2.89 297.00 -37.00 1 2 4.79 10.00 -2.00 2 3 4.99 309.00 -12.00 3 4 2.46 356.00 -15.00 4 5 2.18 332.00 1.00 5 6 3.41 303.00 -2.00 6 7 5.11 330.00 -38.00 7 8 2.62 77.00 -40.00 8 9 4.40 53.00 -24.00 9 10 2.70 320.00 2.00 10 11 2.15 10.00 -8.00 11 12 3.36 224.00 40.00 *END Schoener_Bach *BEGIN Seitencanyon_Nord *CALIBRATE declination -2.3 0 1 1.15 79.00 1.00 1 2 2.47 25.00 -58.00 2 3 9.26 350.00 -32.00 3 4 9.12 299.00 -33.00 4 5 6.30 308.00 -49.00 5 6 10.30 40.00 3.00 6 7 4.80 45.00 35.00 7 8 8.60 76.00 6.00 8 9 1.63 40.00 19.00 9 10 8.63 69.00 -3.00 10 11 3.46 128.00 -6.00 11 12 10.71 85.00 -26.00 12 13 3.00 52.00 -26.00 13 14 9.88 111.00 -29.00 *END Seitencanyon_Nord *BEGIN Seitenseitencanyon *CALIBRATE declination -2.3 0 1 10.85 158.00 14.00 1 2 13.59 160.00 10.00 2 3 5.30 116.00 -32.00 3 4 6.07 121.00 -26.00 4 5 0.60 0.00 90.00 5 6 2.17 161.00 -16.00 6 7 12.17 123.00 -50.00 7 8 10.23 120.00 -35.00 8 9 4.72 103.00 -43.00 *END Seitenseitencanyon *BEGIN Gewurschtel1 *CALIBRATE declination -2.3 0 1 6.78 156.00 56.00 1 2 9.00 145.00 47.00 2 3 5.93 59.00 51.00 3 4 10.63 79.00 -2.00 4 4a 8.83 134.00 -27.00 4 5 3.13 295.00 33.00 5 5a 4.82 11.00 -27.00 5a 5b 12.50 253.00 -26.00 5 6 8.75 46.00 25.00 6 7 5.95 92.00 -22.00 7 8 7.23 355.00 18.00 8 9 3.21 78.00 -5.00 9 10 10.14 27.00 -2.00 *END Gewurschtel1 *BEGIN Gewurschtel2 *CALIBRATE declination -2.3 0 1 2.70 310.00 -55.00 1 2 1.60 134.00 -22.00 2 3 1.83 93.00 -21.00 3 4 4.05 194.00 -70.00 4 5 2.13 245.00 -3.00 5 6 5.85 67.00 -17.00 *END Gewurschtel2 *BEGIN Gewurschtel3 *CALIBRATE declination -2.3 0 1 3.66 336.00 30.00 1 2 6.56 4.00 49.00 2 3 3.68 336.00 34.00 3 3a 5.15 90.00 57.00 3 4 3.52 192.00 18.00 4 5 4.12 250.00 39.00 5 6 1.25 147.00 13.00 6 7 4.96 240.00 -40.00 7 8 7.48 209.00 -25.00 8 9 3.83 190.00 -27.00 9 10 5.00 298.00 -25.00 10 11 7.08 250.00 -44.00 *END Gewurschtel3 *BEGIN Kongretionencanyon 0 1 9.12 302.00 34.00 1 2 3.67 279.00 -9.00 2 3 11.50 281.00 28.00 3 4 10.97 179.00 44.00 4 5 4.80 25.00 18.00 5 6 7.97 164.00 45.00 6 7 6.53 198.00 46.00 *END Kongretionencanyon *BEGIN Roehrln *CALIBRATE declination -2.4 0 1 5.40 220.00 -3.00 1 2 5.01 135.00 -68.00 2 3 13.07 140.00 -75.00 3 4 5.85 107.00 -87.00 4 5 2.85 236.00 -64.00 5 6 5.28 246.00 -46.00 6 7 5.68 260.00 2.00 7 8 4.17 329.00 -20.00 8 9 2.12 263.00 -20.00 9 10 3.05 285.00 -2.00 10 11 3.91 269.00 5.00 11 12 1.80 263.00 -46.00 12 13 2.69 108.00 -32.00 13 14 3.96 305.00 -4.00 14 15 2.27 0.00 90.00 15 15a 2.32 278.00 -1.00 15a 15b 2.56 265.00 33.00 15b 15c 2.88 280.00 0.00 15c 15d 1.41 130.00 53.00 15d 15e 1.40 198.00 -33.00 15e 15f 1.64 197.00 26.00 15 16 2.38 3.00 17.00 16 17 2.87 301.00 29.00 17 18 3.77 270.00 -20.00 18 19 8.77 85.00 -59.00 19 20 1.27 65.00 -6.00 20 21 4.12 358.00 39.00 *END Roehrln *BEGIN Odlgrubn1 *CALIBRATE declination -2.3 0 1 6.93 348.00 -4.00 1 2 3.74 280.00 24.00 2 3 2.11 320.00 11.00 3 4 6.67 296.00 -67.00 4 5 6.82 0.00 -90.00 5 6 0.72 16.00 15.00 6 7 4.01 62.00 -38.00 7 8 8.57 109.00 -5.00 8 9 4.35 343.00 -28.00 9 10 4.12 123.00 -5.00 10 11 3.94 149.00 28.00 11 12 4.46 35.00 -26.00 12 13 3.56 345.00 -3.00 13 14 3.40 350.00 -29.00 14 15 9.94 67.00 -15.50 15 16 7.75 133.00 27.00 16 17 7.21 67.00 12.00 17 18 7.41 289.00 -31.00 18 19 3.12 26.00 -13.00 19 20 1.27 118.00 1.00 20 21 2.00 20.00 3.00 21 22 5.68 75.00 -50.00 22 23 7.89 17.00 -65.00 23 24 17.15 0.00 -90.00 24 25 4.20 255.00 25.00 25 26 8.81 341.00 -49.00 26 27 8.87 329.00 -2.00 27 28 10.45 261.00 14.00 28 28a 12.05 12.00 19.00 28a 28b 6.59 353.00 23.00 28b 28c 4.68 21.00 8.00 28c 28d 6.81 301.00 2.00 28 29 4.75 294.00 21.00 29 30 5.68 266.00 -11.00 30 31 5.87 255.00 -49.00 *END Odlgrubn1 *BEGIN Odlgrubn2 *CALIBRATE declination -2.3 0 1 5.22 39.00 26.00 1 2 5.14 170.00 8.00 2 2a 9.46 50.00 27.00 2a 2b 4.72 136.00 8.00 2b 2c 3.22 89.00 -18.00 2 3 6.38 110.00 3.00 3 4 3.76 155.00 0.00 4 5 5.70 185.00 -16.00 5 6 2.56 37.00 11.00 6 7 2.70 105.00 -75.00 7 8 3.92 132.00 -72.00 8 9 9.04 95.00 -45.00 9 10 7.59 60.00 -44.00 10 11 4.65 18.00 -16.00 11 12 7.17 100.00 -52.00 12 13 7.70 0.00 -90.00 13 14 13.35 75.00 -2.00 14 14a 19.11 300.00 -25.00 14 14b 15.09 50.00 25.00 14 15 9.00 163.00 -18.00 15 16 0.17 303.00 0.00 16 17 3.05 0.00 -90.00 17 18 2.10 10.00 -38.00 18 19 3.90 280.00 -9.00 19 20 1.76 0.00 -90.00 20 21 0.81 163.00 -26.00 21 22 1.50 0.00 -90.00 22 23 3.88 268.00 -20.00 23 24 4.97 228.00 12.00 24 25 4.43 345.00 -4.00 25 26 8.42 345.00 -49.00 26 27 2.35 341.00 -6.00 27 28 2.75 304.00 22.00 28 29 4.40 99.00 33.00 *END Odlgrubn2 *BEGIN Odlgrubn2a *CALIBRATE declination -2.3 0 1 6.46 116.00 10.00 1 1a 6.46 0.00 -90.00 1a 1b 5.20 175.00 -5.00 1 2 5.39 105.00 50.00 2 3 10.67 120.00 45.00 3 4 4.56 140.00 0.00 4 5 7.55 188.00 5.00 *END Odlgrubn2a *BEGIN HDB *CALIBRATE declination -2.3 0 1 7.10 84.00 -14.00 1 2 7.20 18.00 -3.00 2 3 8.12 82.00 -15.00 3 4 9.89 110.00 -38.00 4 5 5.62 40.00 -14.00 5 6 6.83 325.00 -31.00 6 7 5.54 10.00 -4.00 7 8 3.68 333.00 1.00 8 9 6.58 59.00 -1.00 *END HDB *BEGIN SH *CALIBRATE declination -2.3 0 1 4.70 221.00 3.00 1 2 7.68 204.00 -40.00 2 2a 9.48 216.00 7.00 2 3 10.05 72.00 -6.00 3 4 4.32 20.00 11.00 4 5 4.26 111.00 0.00 5 6 11.42 126.00 17.00 6 7 14.25 154.00 35.00 7 8 11.67 122.00 38.00 *END SH *BEGIN Droehnung *CALIBRATE declination -2.4 0 1 14.23 287.00 29.00 1 2 3.38 189.00 -11.00 2 3 11.11 215.00 -62.00 3 4 10.31 272.00 -56.00 4 5 14.13 243.00 -57.00 5 6 6.34 155.00 -50.00 6 7 11.29 127.00 -36.00 7 8 8.76 132.00 -44.00 8 9 6.13 107.00 4.00 9 10 6.88 93.00 0.00 10 11 3.37 121.00 -14.00 11 12 6.79 135.00 -1.00 12 13 0.91 213.00 7.00 13 14 2.22 73.00 74.00 14 15 3.26 115.00 49.00 13 13a 2.90 295.00 -27.00 13a 13b 2.86 177.00 5.00 13b 13c 4.45 283.00 5.00 *END Droehnung *BEGIN Kluftlabyrinth1 *CALIBRATE declination -2.4 0 1 7.26 204.00 -9.00 1 1a 3.85 171.00 5.00 1a 1b 1.88 133.00 3.00 1b 1c 4.46 114.00 -59.00 1c 1d 3.88 78.00 -10.00 1d 1e 4.09 107.00 -25.00 1 2 3.88 300.00 -33.00 2 3 11.27 0.00 -90.00 3 4 3.23 101.00 -14.00 4 5 4.73 94.00 -7.00 5 6 6.54 93.00 -35.00 6 6a 7.52 123.00 -13.00 6 7 2.61 312.00 -29.00 7 8 9.98 57.00 -7.00 8 9 4.22 67.00 -55.00 9 10 2.90 81.00 0.00 *END Kluftlabyrinth1 *BEGIN Kluftlabyrinth2 *CALIBRATE declination -2.4 0 1 4.08 293.00 -4.00 1 2 3.37 304.00 8.00 2 3 10.27 323.00 11.00 3 4 3.00 25.00 72.00 4 5 4.72 304.00 -6.00 5 6 4.57 268.00 5.00 6 7 10.45 46.00 42.00 7 8 7.83 290.00 11.00 8 9 6.40 270.00 53.00 9 10 2.65 332.00 -11.00 10 11 7.14 212.00 -12.00 11 12 3.37 267.00 -3.00 12 13 3.15 308.00 47.00 13 14 5.60 270.00 30.00 14 15 5.26 328.00 2.00 *END Kluftlabyrinth2 *BEGIN Schacht6 *CALIBRATE declination -2.3 0 1 0.83 34.00 35.00 1 2 8.90 351.00 -17.00 2 3 5.67 198.00 -50.00 3 4 6.00 310.00 -75.00 4 5 6.60 25.00 -79.00 5 6 9.25 0.00 -90.00 6 7 5.41 320.00 -78.00 7 8 8.14 109.00 -48.00 8 9 10.67 108.00 -49.00 9 10 10.07 70.00 -52.00 10 11 9.11 116.00 -14.00 11 12 5.75 129.00 -5.00 12 13 6.88 159.00 1.00 13 14 3.80 164.00 -16.00 14 15 7.22 170.00 -68.00 15 16 6.80 105.00 -61.00 16 17 15.93 0.00 -90.00 *END Schacht6 *BEGIN Halle *CALIBRATE declination -2.3 0 1 3.26 298.00 51.00 1 2 7.11 298.00 4.00 2 3 8.62 19.00 24.00 3 4 11.53 80.00 0.00 4 5 19.96 122.00 -23.00 5 6 15.07 155.00 -14.00 6 7 13.70 228.00 -8.00 7 8 7.38 313.00 11.00 8 9 5.64 330.00 12.00 9 10 7.05 317.00 35.00 10 0 7.45 307.00 12.00 *END Halle *BEGIN Zweig1 *CALIBRATE declination -2.3 0 1 11.95 262.00 12.00 1 2 12.17 270.00 -26.00 2 3 7.14 261.00 20.00 3 4 11.32 251.00 -7.00 4 5 3.78 248.00 -3.00 5 6 4.26 228.00 -30.00 6 7 6.00 248.00 -45.00 *END Zweig1 *BEGIN Zweig2 *CALIBRATE declination -2.4 0 1 16.00 325.00 -33.00 1 2 3.90 296.00 -12.00 2 3 2.59 265.00 -47.00 3 4 2.04 284.00 22.00 4 5 2.68 270.00 36.00 5 6 5.52 285.00 48.00 6 7 5.51 290.00 41.00 7 8 4.50 357.00 39.00 8 9 2.61 256.00 -8.00 9 10 3.75 0.00 90.00 10 11 3.29 246.00 -10.00 11 12 3.91 262.00 -26.00 12 13 2.30 0.00 17.00 13 14 4.45 294.00 29.00 14 15 6.23 300.00 30.00 15 16 7.29 271.00 -13.00 16 17 3.61 259.00 -1.00 17 18 2.06 301.00 3.00 18 19 6.75 237.00 7.00 19 20 5.82 308.00 11.00 20 21 6.17 256.00 -3.00 21 22 5.07 222.00 -19.00 22 23 3.81 201.00 -33.00 23 24 4.17 110.00 -20.00 24 25 2.31 76.00 1.00 25 26 5.42 122.00 -42.00 26 27 4.31 201.00 -29.00 27 28 7.24 251.00 -29.00 28 29 11.05 263.00 -63.00 29 30 4.54 25.00 0.00 30 31 3.30 308.00 -23.00 31 32 6.02 255.00 -38.00 32 33 4.18 217.00 -57.00 33 34 2.23 259.00 3.00 34 34a 4.94 0.00 -90.00 34 35 2.30 177.00 41.00 35 36 2.39 340.00 41.00 36 37 3.91 231.00 42.00 37 38 3.18 296.00 -38.00 38 39 4.49 211.00 -41.00 39 40 1.49 250.00 -25.00 40 41 3.32 292.00 -11.00 41 42 3.09 298.00 -2.00 42 43 1.76 272.00 -44.00 43 44 7.93 0.00 -90.00 44 45 3.76 289.00 -23.00 45 46 11.89 230.00 -45.00 46 47 5.54 326.00 -3.00 47 48 8.41 269.00 -18.00 48 49 8.00 242.00 -20.00 49 50 5.34 218.00 -1.00 50 51 7.46 267.00 2.00 51 52 5.58 259.00 -51.00 52 53 16.82 224.00 -55.00 53 54 10.66 247.00 -28.00 58 59 4.38 240.00 -58.00 59 60 11.05 348.00 -10.00 60 61 8.89 253.00 -2.00 61 62 3.06 136.00 4.00 62 63 12.26 214.00 17.00 58 58a 15.84 60.00 15.00 58a 58b 20.32 95.00 18.00 58b 58c 9.40 65.00 4.00 58c 58d 7.08 123.00 11.00 58d 58e 17.83 187.00 13.00 58e 54 3.93 38.00 29.00 58e 58f 16.70 312.00 -25.00 58f 58g 7.25 285.00 4.00 58g 58h 19.10 230.00 -20.00 58h 58 19.10 317.00 -14.00 58c 58c1 8.71 215.00 -3.00 58c1 58c2 7.22 192.00 -44.00 58c2 58c3 10.10 55.00 -46.00 *END Zweig2 *BEGIN Zweig3 *CALIBRATE declination -2.3 0 1 3.97 205.00 -18.00 1 2 12.43 63.00 27.00 2 3 12.05 57.00 27.00 3 4 16.38 117.00 27.00 4 5 5.00 136.00 60.00 5 6 8.41 150.00 39.00 *END Zweig3 *BEGIN Zweig4 *CALIBRATE declination -2.3 0 1 14.25 192.00 -24.00 1 2 11.38 184.00 -28.00 2 3 2.95 184.00 -38.00 3 4 4.90 298.00 -13.00 4 5 5.56 313.00 -33.00 5 6 10.58 268.00 -22.00 *END Zweig4 *BEGIN Zweig5 *CALIBRATE declination -2.3 0 1 10.04 292.00 -5.00 1 2 10.89 270.00 -22.00 *END Zweig5 *BEGIN Schacht1 *CALIBRATE declination -2.3 0 1 4.20 65.00 -28.00 1 2 8.23 107.00 -53.00 2 3 4.45 267.00 -11.00 3 4 4.27 284.00 -42.00 4 5 4.17 349.00 18.00 *END Schacht1 *BEGIN Schacht23 *CALIBRATE declination -2.3 0 1 3.90 45.00 -40.00 1 2 11.94 122.00 -79.00 2 3 5.70 228.00 -34.00 3 4 4.76 331.00 -17.00 4 5 8.02 337.00 56.00 5 6 11.37 310.00 -55.00 6 7 5.35 18.00 -20.00 7 8 14.54 235.00 60.00 8 9 6.48 222.00 68.00 9 10 6.68 300.00 18.00 *END Schacht23 *BEGIN Schacht4 *CALIBRATE declination -2.3 0 1 6.30 24.00 -25.00 1 2 8.88 43.00 -60.00 2 3 5.60 30.00 -80.00 3 4 4.00 0.00 -90.00 *END Schacht4 *BEGIN Gully *CALIBRATE declination -2.4 0 1 11.37 82.00 1.00 1 2 2.46 90.00 -32.00 2 3 3.50 220.00 -45.00 3 4 13.72 102.00 -46.00 4 5 4.22 225.00 -13.00 5 5a 3.46 350.00 -34.00 5a 5b 1.84 330.00 10.00 5b 5c 2.15 270.00 21.00 5c 5d 6.77 15.00 38.00 5 6 2.89 152.00 -23.00 6 7 1.49 0.00 -90.00 7 8 0.71 281.00 -24.00 8 9 0.88 0.00 -90.00 9 10 3.18 217.00 7.00 10 11 13.15 88.00 23.00 11 12 2.67 182.00 42.00 12 13 4.52 137.00 1.00 13 14 1.75 196.00 -23.00 14 15 3.54 170.00 -66.00 15 16 4.23 322.00 -68.00 16 17 3.88 177.00 -15.00 17 18 7.28 287.00 -27.00 18 19 3.22 193.00 -60.00 19 20 3.25 123.00 -10.00 20 21 4.68 227.00 34.00 21 21.1 2.31 92.00 28.00 21.1 21.2 5.36 76.00 -42.00 21.2 21.3 4.14 221.00 -30.00 21.3 21.4 3.50 138.00 9.00 21.4 21.5 6.70 85.00 20.00 21.5 21.6 3.53 68.00 25.00 21 22 16.26 271.00 -18.00 22 23 5.56 225.00 4.00 23 24 4.32 278.00 36.00 24 25 4.33 308.00 -30.00 25 26 3.04 238.00 -34.00 26 27 4.44 274.00 -13.00 27 28 3.76 246.00 -5.00 28 29 7.59 307.00 4.00 29 30 3.60 250.00 27.00 30 31 1.80 304.00 0.00 31 32 2.53 227.00 -20.00 32 33 0.67 250.00 -27.00 33 34 1.34 301.00 9.00 34 35 2.94 319.00 74.00 35 36 1.47 357.00 -35.00 36 37 2.31 281.00 -4.00 37 38 2.86 233.00 15.00 38 39 2.65 253.00 5.00 39 40 2.22 311.00 21.00 40 41 2.92 227.00 -2.00 41 42 2.11 303.00 36.00 *END Gully *BEGIN Schachtumgehung *CALIBRATE declination -2.4 0 1 10.26 31.00 52.00 1 2 10.91 10.00 44.00 2 3 5.52 320.00 11.00 3 4 8.41 35.00 -24.00 4 5 6.48 253.00 -11.00 5 6 19.60 281.00 -41.00 6 7 5.54 194.00 -1.00 7 8 13.68 100.00 -14.00 *END Schachtumgehung *BEGIN Parallelschacht *CALIBRATE declination -2.4 0 1 8.65 104.00 -35.00 1 2 9.07 70.00 -60.00 2 3 6.07 65.00 -57.00 3 4 12.06 112.00 -54.00 4 5 2.03 17.00 -20.00 5 6 6.06 116.00 -29.00 6 7 9.10 57.00 -43.00 7 8 6.87 30.00 -32.00 8 9 4.43 44.00 5.00 9 10 4.58 152.00 -40.00 10 11 4.50 125.00 -68.00 *END Parallelschacht *BEGIN Windschacht *CALIBRATE declination -2.4 0 1 1.81 295.00 -38.00 1 2 4.45 277.00 -45.00 2 3 18.63 0.00 -90.00 3 4 2.80 3.00 -25.00 4 5 4.43 275.00 -63.00 5 6 9.70 0.00 -90.00 6 7 2.14 321.00 50.00 *END Windschacht *BEGIN Seengang 0 1 0.47 65.00 -70.00 1 2 21.03 321.00 3.00 2 3 1.38 315.00 24.00 3 4 14.78 289.00 3.00 4 5 10.93 228.00 -2.00 5 6 9.60 243.00 1.00 6 7 6.66 293.00 0.00 7 8 8.24 260.00 0.00 8 9 6.15 298.00 0.00 9 10 12.93 272.00 0.00 10 11 12.70 276.00 -5.00 11 12 5.22 248.00 15.00 12 13 9.84 283.00 -2.00 13 14 7.05 346.00 1.00 14 15 6.79 266.00 0.00 15 16 16.37 289.00 0.00 16 17 5.39 6.00 0.00 17 18 3.69 84.00 1.00 18 19 8.91 1.00 0.00 19 20 6.87 359.00 -2.00 20 21 5.69 280.00 -3.00 21 22 12.27 322.00 -22.00 22 23 12.26 339.00 20.00 23 24 2.86 329.00 11.00 24 25 8.54 316.00 2.00 25 26 5.90 332.00 10.00 26 27 7.38 294.00 -11.00 27 28 5.45 320.00 5.00 28 29 13.25 287.00 -5.00 29 30 8.91 223.00 -13.00 30 31 5.60 243.00 -6.00 31 32 6.24 305.00 -1.00 32 33 5.67 347.00 0.00 33 34 9.73 265.00 0.00 34 35 6.95 171.00 6.00 35 36 6.35 256.00 -7.00 36 37 17.74 328.00 4.00 37 38 10.77 353.00 -7.00 38 39 4.20 316.00 -1.00 38 40 5.18 325.00 33.00 40 42 11.75 295.50 -14.00 42 43 9.53 316.50 3.00 43 44 8.37 292.00 -1.00 44 45 10.30 331.00 -2.00 45 46 5.96 313.00 -8.00 46 47 3.44 343.50 28.00 47 48 1.69 40.00 -23.50 48 49 7.67 78.00 -5.00 49 51 9.12 111.00 7.00 51 52 16.34 66.00 1.00 52 53 4.49 64.00 -12.00 53 55 6.67 350.00 0.00 55 56 36.23 92.00 -41.60 56 57 13.85 106.20 -15.40 57 58 14.13 88.10 -1.70 58 59 11.69 25.70 -20.60 59 60 8.57 89.20 2.30 60 61 7.96 110.00 -2.00 61 62 11.53 54.50 13.40 62 63 14.20 73.00 10.00 63 64 10.40 327.00 -15.00 64 65 20.53 36.50 0.00 65 66 9.63 18.60 -14.60 66 67 9.41 20.90 -12.90 67 68 23.25 41.30 -0.70 68 69 13.55 23.10 2.80 69 70 6.64 21.50 -6.60 70 71 14.86 22.30 0.50 71 72 0.48 0.00 -90.00 72 73 6.25 25.60 3.40 66 66.1 11.44 168.00 21.00 66.1 66.2 4.78 160.00 34.00 66.2 66.2.1 22.00 126.00 40.00 66.2 66.2.2 15.00 0.00 23.00 73 74 5.65 28.00 -3.00 74 75 0.40 0.00 90.00 75 76 1.43 50.00 -2.00 76 77 2.75 9.00 -5.00 77 78 1.75 8.00 1.00 78 79 3.52 55.00 11.00 79 80 0.25 0.00 -90.00 80 81 7.05 30.00 -3.00 81 82 3.86 24.00 17.00 82 83 6.84 70.00 20.00 83 84 9.45 100.00 6.00 84 85 15.70 10.00 12.00 85 86 6.15 12.00 -16.00 86 86.1 12.35 228.00 -13.00 86.1 86.2 3.78 185.00 -16.00 86.2 86.3 7.76 233.00 -12.00 86.3 86.4 2.30 144.00 -3.00 86.4 83 2.00 0.00 90.00 86 87 7.34 4.50 11.00 87 88 2.22 83.20 -40.50 86 87a 6.74 350.00 -11.30 87a 88 4.04 73.00 17.60 88 89 15.64 137.00 24.50 89 90 20.36 42.00 26.80 90 91 17.72 343.00 0.40 91 92 11.70 349.00 7.90 90 90.1 8.44 148.00 23.00 90.1 90.2 18.13 92.00 40.00 92 93 14.74 94.00 12.50 93 93.1 13.40 124.00 38.00 93 94 6.22 353.00 69.00 94 95 0.69 40.00 -16.00 95 96 2.42 17.00 3.00 96 96.1 20.20 330.00 -38.00 96 97 15.50 14.00 -26.00 97 98 8.38 354.00 3.00 98 98.1 7.62 316.00 28.00 98 99 13.71 126.00 25.00 99 100 10.07 61.00 -1.00 100 101 6.11 94.00 -2.00 101 101.1 13.45 358.00 -33.00 101 102 20.88 66.00 -3.00 102 103 10.20 31.00 -1.00 103 104 18.70 336.00 -22.00 104 105 11.82 266.00 -22.00 105 106 9.36 349.00 -5.00 106 106.1 10.26 250.00 -10.00 106 107 3.59 19.00 0.00 107 108 20.42 42.00 -1.00 108 109 2.36 45.00 17.00 109 110 13.95 8.00 -9.00 110 111 17.66 345.00 -13.00 111 112 7.30 313.00 -31.50 112 112.1 5.42 215.00 12.00 112.1 112.2 2.32 227.00 -1.00 112.2 112.3 6.50 221.00 -40.00 112 113 7.29 310.00 -33.50 113 114 4.24 31.00 -31.00 114 115 8.65 16.00 3.50 115 116 7.79 2.00 -18.00 116 117 14.50 337.00 -20.00 117 118 10.31 315.00 -61.00 118 119 6.24 309.00 -23.50 119 120 5.18 201.00 -15.00 120 121 9.05 239.00 -16.00 121 121.1 6.70 14.00 -13.00 121 122 2.46 167.00 8.00 122 123 4.45 228.00 3.00 123 124 3.72 242.00 -19.00 119 119.1 8.24 287.00 -33.50 119.1 119.2 4.65 357.00 -12.00 119.2 119.3 6.67 336.00 -35.00 119 119.4 3.53 34.00 -1.00 119.4 119.5 4.97 336.00 -30.00 119.5 119.6 3.47 7.00 2.00 119.6 119.7 5.15 106.00 34.00 119.7 119.7.1 4.40 36.00 30.00 119.7 119.8 3.56 205.50 13.00 119.8 119 6.88 198.00 -8.50 *END Seengang *BEGIN Kluftschlot *CALIBRATE declination -2.4 0 1 3.85 94.00 52.00 1 2 21.62 288.00 31.00 *END Kluftschlot *BEGIN Gipsgang *CALIBRATE declination -2.4 *EQUATE 20 surface.20 0 1 13.30 145.00 24.00 1 2 3.94 183.00 28.00 2 3 4.28 104.00 7.00 3 4 14.20 171.00 38.00 4 5 4.20 208.00 -14.00 5 5.1 5.24 174.00 26.00 5.1 5.2 9.50 194.00 3.00 5.2 5.3 9.98 318.00 -7.00 5.3 5.4 3.16 298.00 -2.00 5.4 9 5.44 244.00 -39.00 5 6 5.56 261.00 -23.00 6 7 5.32 192.00 -2.00 7 8 7.19 273.00 0.00 8 9 2.13 228.00 9.00 9 10 3.77 274.00 -40.00 10 11 7.10 152.00 -63.00 11 12 11.43 117.00 -40.00 12 13 18.91 185.00 -63.00 13 14 6.47 67.00 -12.00 14 15 17.63 152.00 -60.00 15 16 7.96 188.00 -24.00 16 17 18.02 114.00 -42.00 17 18 8.63 109.00 -19.00 18 19 3.43 198.00 -58.00 19 20 2.63 246.00 -26.00 *FLAGS SURFACE 16 16.1 5.62 0.00 -100.00 16.1 16.2 6.66 331.00 31.00 16.2 16.3 11.22 347.00 15.00 *BEGIN surface *FLAGS SURFACE 20 21 4.00 200.00 -10.00 *END surface *END Gipsgang *BEGIN Gipsseitengang 0 1 1.05 236.00 5.00 1 2 2.01 317.00 1.00 2 3 1.97 239.00 -7.00 3 4 3.53 0.00 -90.00 4 5 2.84 175.00 3.00 5 6 4.08 259.00 11.00 6 7 4.09 254.00 -46.00 7 8 5.30 68.00 -43.00 8 9 5.21 92.00 59.00 9 6 5.30 271.00 32.00 3 10 3.46 17.00 33.00 10 11 2.26 293.00 74.00 11 12 7.77 293.00 67.00 12 13 2.37 345.00 45.00 13 14 3.40 282.00 -6.00 14 15 7.20 240.00 30.00 *END Gipsseitengang *BEGIN Rutschpartie *CALIBRATE declination -2.4 0 1 9.20 77.00 -1.00 1 2 4.12 71.00 -4.00 2 3 6.17 317.00 -21.00 3 4 3.28 52.00 -15.00 4 5 5.48 304.00 10.00 5 6 7.10 322.00 -30.00 6 7 16.61 363.00 -38.00 7 8 5.95 34.00 -35.00 8 9 5.99 398.00 -34.00 9 10 3.92 303.00 -16.00 10 11 6.58 333.00 -34.00 11 12 3.46 0.00 -100.00 12 13 8.42 82.00 -39.00 13 14 2.46 0.00 -100.00 *END Rutschpartie *BEGIN Steile_Halde 0 1 15.59 280.00 34.00 1 2 16.14 237.90 42.00 2 3 5.11 154.60 42.80 3 4 4.55 147.00 7.50 *END Steile_Halde *BEGIN Brausecanyon 0 1 2.68 202.00 -6.00 1 2 2.73 293.00 10.00 2 3 5.63 213.00 6.00 3 4 3.27 138.00 -4.00 4 5 3.26 198.00 0.00 5 6 2.09 172.00 2.00 6 7 2.95 241.00 1.00 7 8 9.50 0.00 -90.00 8 9 2.23 58.00 32.00 9 10 2.75 0.00 -90.00 10 11 7.33 29.00 -18.00 11 12 9.45 112.00 -13.00 12 13 5.29 75.00 -19.00 13 14 5.42 104.00 13.00 14 15 7.15 167.00 27.00 15 16 7.61 139.00 50.00 16 17 5.57 159.00 8.00 *END Brausecanyon *BEGIN Missing_Link 0 1 3.25 157.00 -22.00 1 2 5.20 97.00 -27.00 2 3 2.24 271.00 -60.00 3 4 3.42 312.00 -37.00 4 5 4.80 303.00 -49.00 5 6 3.95 85.00 -23.00 6 7 1.95 14.00 -42.00 7 8 4.18 103.00 -10.00 8 9 4.45 96.00 -63.00 9 10 5.40 86.00 -26.00 10 11 3.40 8.00 -40.00 11 12 2.47 303.00 -52.00 12 13 9.45 0.00 -73.00 13 14 6.95 23.00 -4.00 10 10.1 1.20 179.00 57.00 10.1 10.2 3.77 152.00 -6.00 10.2 10.3 3.10 97.00 -30.00 10.3 10.4 4.45 120.00 -7.00 10.4 10.5 2.75 34.00 -2.00 10.5 10.6 3.85 100.00 42.00 10.6 10.7 2.80 192.00 -4.00 *END Missing_Link *BEGIN Brauseschacht 0 1 2.56 116.40 -12.20 1 2 14.68 44.00 -57.00 2 3 2.73 116.90 -42.90 3 4 0.83 226.90 -20.80 4 5 5.88 120.70 -48.30 5 6 5.00 43.20 -16.80 6 7 2.23 101.90 -51.10 7 8 3.68 81.90 -16.70 8 9 2.67 167.90 46.70 9 10 4.33 120.20 -9.30 10 10.1 4.15 144.90 -42.70 10.1 10.2 4.16 227.80 -19.00 10.2 10.3 4.42 356.50 -15.00 10 11 4.11 85.80 9.10 11 12 8.16 82.60 -65.90 12 13 5.35 73.40 -42.60 13 14 12.22 356.70 -41.40 14 15 3.57 346.90 -39.50 *END Brauseschacht *BEGIN Monsterschacht 0 1 4.49 211.00 27.00 1 2 4.50 238.00 51.00 2 3 14.29 244.00 26.00 3 4 10.32 149.00 28.00 4 5 14.82 187.00 -27.00 5 6 17.21 210.00 -65.00 6 7 11.16 140.00 -50.00 7 8 9.37 355.00 -74.00 8 9 15.40 334.00 -29.00 9 10 3.03 353.00 -9.00 10 11 6.01 4.00 -54.00 11 12 13.86 18.00 -78.00 12 13 8.66 314.00 -36.00 13 14 10.50 354.00 -71.00 14 15 12.65 50.00 -77.00 15 16 8.59 56.00 -78.00 16 17 7.29 44.00 -88.00 17 18 5.20 334.00 10.00 *END Monsterschacht *BEGIN Nebelschacht 0 1 1.98 224.00 -44.00 1 2 2.57 390.00 -41.00 2 3 7.93 0.00 -100.00 3 4 10.62 0.00 -100.00 4 5 4.92 156.00 37.00 5 6 7.27 22.00 -85.00 6 7 8.74 169.00 -54.00 7 8 7.36 226.00 -68.00 8 9 2.54 132.00 -4.00 9 10 8.60 163.00 -28.00 10 11 10.57 132.00 -41.10 11 12 13.39 152.60 -53.60 12 13 4.88 143.70 -28.10 13 14 5.88 163.60 -47.80 14 15 7.02 100.50 -48.70 15 16 4.45 125.00 -55.00 16 17 11.82 134.00 -59.00 17 18 14.33 140.00 -47.00 *END Nebelschacht *BEGIN Eckschacht 2 3 13.67 0.00 -90.00 0 1 3.51 256.00 -12.50 1 2 6.21 345.00 -35.00 3 4 10.59 184.20 36.00 4 5 1.92 202.50 27.80 5 6 5.72 158.10 27.80 6 7 4.63 197.00 15.70 7 8 1.83 300.80 59.40 8 9 5.32 155.70 -35.50 9 10 5.98 110.80 -35.80 10 11 1.57 338.90 -28.80 11 12 7.31 318.00 -24.00 12 13 3.50 27.90 -36.70 13 14 3.51 339.50 -20.30 *END Eckschacht *BEGIN Kristallkluft 0 1 6.80 293.30 -20.00 1 2 12.63 315.10 -34.70 2 3 13.65 314.00 -30.70 3 4 8.84 302.70 -12.60 4 4.1 9.51 325.90 -30.60 4 5 2.37 269.30 -7.10 5 6 9.38 302.00 -30.40 6 7 5.30 317.40 -9.10 7 8 23.55 296.40 -21.30 *END Kristallkluft *BEGIN Maulwurf1 0 1 6.87 146.00 -11.00 1 2 3.22 132.00 -26.00 2 3 3.00 111.00 -26.00 3 4 3.03 121.00 -23.00 4 5 0.60 159.00 27.00 5 6 3.94 130.00 -40.00 6 7 3.20 117.00 -70.00 7 8 4.18 144.00 -26.00 8 9 2.85 198.00 -14.00 9 10 2.55 131.00 1.00 10 11 15.89 130.00 10.00 11 12 13.07 120.00 16.00 12 13 3.62 150.00 -44.00 *END Maulwurf1 *BEGIN Maulwurf2 0 1 4.84 113.00 16.50 1 2 7.25 115.00 13.00 2 3 5.31 135.00 26.50 3 4 3.28 149.00 10.00 4 5 3.12 130.00 -57.00 5 6 25.50 142.00 89.00 *END Maulwurf2 *END Riesending CaveConverter_src/test/data/regression/survex_different_data_order_ss_ref.svx0000644000000000000000000000167113030272004027106 0ustar rootroot*BEGIN survex_different_data_order *EQUATE normal_order.1 not_specified.3 *EQUATE normal_order.3 normal_order2.1 *EQUATE normal_order2.3 comp_tape_clino.1 *EQUATE comp_tape_clino.3 clino_comp_tape_to_from.1 *BEGIN not_specified 1 2 3.45 46.00 -1.00 2 3 7.20 52.00 5.00 *END not_specified *BEGIN normal_order *data normal from to length bearing gradient 1 2 12.21 73.00 -12.00 2 3 6.77 98.00 -4.00 *END normal_order *BEGIN normal_order2 *data normal from to length bearing gradient ignoreall 1 2 10.12 34.00 2.50 2 3 11.45 38.00 -1.00 *END normal_order2 *BEGIN comp_tape_clino *data normal from to bearing length gradient 1 2 50.00 9.45 0.00 2 3 45.00 4.51 -2.00 *END comp_tape_clino *BEGIN clino_comp_tape_to_from *data normal gradient bearing length to from 5.23 67.33 8.23 2 1 -3.45 73.63 10.63 3 2 *END clino_comp_tape_to_from *END survex_different_data_order CaveConverter_src/test/data/regression/TripComment_ps_ref.svx0000644000000000000000000000373513030252172023605 0ustar rootroot*BEGIN TrainingRoom *BEGIN 1 ;WSCC DistoX - Footleg ;Dell PDA drawing - Bob *DATE 2012.11.24 *FLAGS SPLAY 0 0a 1.17 8.87 6.87 0 0b 1.11 175.45 -0.10 0 0c 5.95 98.10 6.04 0 0d 5.01 277.41 17.22 0 0e 1.03 47.72 83.13 0 0f 1.09 153.35 -85.85 *FLAGS NOT SPLAY 0 1 5.08 327.47 56.76 *FLAGS SPLAY 1 1a 0.86 248.16 84.61 1 1b 1.97 36.72 85.36 1 1c 2.90 0.21 79.16 1 1d 3.57 0.44 76.99 1 1e 3.33 6.81 73.92 1 1f 3.08 9.73 72.19 1 1g 1.51 33.34 73.27 1 1h 1.13 41.39 63.01 1 1i 0.91 55.93 43.46 1 1j 0.95 54.38 25.70 1 1k 0.71 50.23 15.55 1 1l 0.80 52.99 -17.45 1 1m 0.79 47.54 -32.25 1 1n 0.80 49.21 -38.08 1 1o 1.22 48.37 -40.44 1 1p 1.44 44.13 -46.36 1 1q 1.83 42.45 -54.49 1 1r 1.84 35.11 -63.47 1 1s 1.51 111.18 -81.34 1 1t 1.56 208.58 -80.33 1 1u 0.81 65.58 -74.77 1 1v 0.63 17.58 -85.44 1 1w 0.55 281.21 -80.62 1 1x 0.86 174.05 0.08 1 1y 1.51 155.18 1.24 1 1z 1.96 140.40 -3.29 1 1aa 2.58 131.69 -4.78 1 1ab 2.68 130.29 -4.55 1 1ac 0.58 315.38 2.25 1 1ad 1.05 326.37 2.41 1 1ae 1.28 112.92 -6.48 1 1af 1.03 99.66 -5.08 1 1ag 0.73 82.81 -4.14 1 1ah 0.62 62.72 -5.29 1 1ai 0.71 34.15 -9.16 1 1aj 1.52 4.78 -10.78 1 1ak 1.62 348.65 -11.00 1 1al 1.85 336.13 -6.26 1 1am 2.39 329.33 -3.53 *FLAGS NOT SPLAY 1 2 4.92 69.83 23.86 *FLAGS SPLAY 2 2a 0.95 165.48 0.82 2 2b 3.80 331.85 24.88 2 2c 2.96 27.78 70.94 2 2d 1.75 85.45 -85.86 2 2e 13.10 71.82 16.81 2 2f 7.75 33.32 29.66 2 2g 5.74 289.73 15.19 2 2h 5.02 257.83 -9.98 2 2i 2.81 233.18 -16.44 *FLAGS NOT SPLAY 2 3 2.00 337.58 33.09 *FLAGS SPLAY 3 3a 1.67 169.43 -3.02 3 3b 2.00 339.94 5.13 3 3c 1.85 274.03 82.17 3 3d 0.75 63.40 -83.13 *FLAGS NOT SPLAY *data passage station left right up down 0 3.67 4.49 1.03 1.09 1 1.81 2.48 1.96 0.63 2 5.52 9.34 2.80 1.75 3 0.34 0.00 1.84 0.75 *END 1 *END TrainingRoom CaveConverter_src/test/data/regression/SwilEnt_st_spl_ref.text0000644000000000000000000072701712217277202023774 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.Swildons.surfacegps 1 -1 1 1 1 1 0 1 5 5 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 9.84 92.79 -5.88 0.00 0.00 0.00 0.00 1 2 1 1 1 7.84 96.07 -8.05 0.00 0.00 0.00 0.00 1 3 1 1 1 11.76 92.69 -17.67 0.00 0.00 0.00 0.00 1 4 1 1 1 4.38 5.80 -23.29 0.00 0.00 0.00 0.00 1 5 1 1 1 0.22 344.11 60.30 0.00 0.00 0.00 0.00 2 -2 1 1 1 Series 2-root.Swildons.surfacegps 2 -1 1 1 1 1 3 2 3 3 3 0 2 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 1 1 1 1 5.45 261.35 13.06 0.00 0.00 0.00 0.00 2 2 1 1 1 8.80 173.37 11.61 0.00 0.00 0.00 0.00 2 3 1 1 1 13.78 166.73 12.55 0.00 0.00 0.00 0.00 3 -2 1 1 1 Series 3-root.Swildons.EntranceZigZags 3 -1 1 1 1 4 0 3 1 1 3 0 3 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 1 1 1 1 2.98 8.56 -2.01 0.00 0.00 0.00 0.00 4 -2 1 1 1 Series 4-root.Swildons.EntranceZigZags 4 -1 1 1 1 4 0 4 2 2 3 0 4 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4 1 1 1 1 5.24 1.53 -5.04 0.00 0.00 0.00 0.00 4 2 1 1 1 1.84 174.82 -47.48 0.00 0.00 0.00 0.00 5 -2 1 1 1 Series 5-root.Swildons.EntranceZigZags 5 -1 1 1 1 4 1 5 1 1 3 0 5 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 5 1 1 1 1 1.82 166.11 -47.93 0.00 0.00 0.00 0.00 6 -2 1 1 1 Series 6-root.Swildons.EntranceZigZags 6 -1 1 1 1 4 1 6 1 1 3 0 6 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6 1 1 1 1 1.54 188.20 -63.97 0.00 0.00 0.00 0.00 7 -2 1 1 1 Series 7-root.Swildons.EntranceZigZags 7 -1 1 1 1 4 1 7 1 1 3 0 7 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 7 1 1 1 1 1.61 130.61 -59.62 0.00 0.00 0.00 0.00 8 -2 1 1 1 Series 8-root.Swildons.EntranceZigZags 8 -1 1 1 1 4 1 8 1 1 3 0 8 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 8 1 1 1 1 0.68 103.62 -3.30 0.00 0.00 0.00 0.00 9 -2 1 1 1 Series 9-root.Swildons.EntranceZigZags 9 -1 1 1 1 4 1 9 1 1 3 0 9 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 9 1 1 1 1 1.56 138.70 -2.98 0.00 0.00 0.00 0.00 10 -2 1 1 1 Series 10-root.Swildons.EntranceZigZags 10 -1 1 1 1 4 1 10 1 1 3 0 10 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 10 1 1 1 1 5.24 180.46 5.06 0.00 0.00 0.00 0.00 11 -2 1 1 1 Series 11-root.Swildons.EntranceZigZags 11 -1 1 1 1 4 1 11 1 1 3 0 11 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 11 1 1 1 1 1.89 186.27 3.09 0.00 0.00 0.00 0.00 12 -2 1 1 1 Series 12-root.Swildons.EntranceZigZags 12 -1 1 1 1 4 1 12 1 1 3 0 12 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 12 1 1 1 1 1.91 167.12 1.18 0.00 0.00 0.00 0.00 13 -2 1 1 1 Series 13-root.Swildons.EntranceZigZags 13 -1 1 1 1 4 1 13 1 1 3 0 13 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 13 1 1 1 1 1.38 216.89 -0.17 0.00 0.00 0.00 0.00 14 -2 1 1 1 Series 14-root.Swildons.EntranceZigZags 14 -1 1 1 1 4 1 14 1 1 3 0 14 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 14 1 1 1 1 0.64 246.35 1.54 0.00 0.00 0.00 0.00 15 -2 1 1 1 Series 15-root.Swildons 15 -1 1 1 1 4 1 1 4 1 3 0 15 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 15 1 1 1 1 2.64 165.00 -60.11 0.00 0.00 0.00 0.00 16 -2 1 1 1 Series 16-root.Swildons.EntranceZigZags 16 -1 1 1 1 1 4 16 1 1 3 0 16 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 16 1 1 1 1 2.63 346.19 60.51 0.00 0.00 0.00 0.00 17 -2 1 1 1 Series 17-root.Swildons.EntranceZigZags 17 -1 1 1 1 1 4 17 1 1 3 0 17 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 17 1 1 1 1 0.94 8.20 76.67 0.00 0.00 0.00 0.00 18 -2 1 1 1 Series 18-root.Swildons.EntranceZigZags 18 -1 1 1 1 1 4 18 1 1 3 0 18 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 18 1 1 1 1 0.47 6.80 -70.77 0.00 0.00 0.00 0.00 19 -2 1 1 1 Series 19-root.Swildons.EntranceZigZags 19 -1 1 1 1 1 4 19 1 1 3 0 19 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 19 1 1 1 1 0.31 230.38 12.34 0.00 0.00 0.00 0.00 20 -2 1 1 1 Series 20-root.Swildons.EntranceZigZags 20 -1 1 1 1 1 4 20 1 1 3 0 20 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 20 1 1 1 1 0.35 29.35 10.29 0.00 0.00 0.00 0.00 21 -2 1 1 1 Series 21-root.Swildons.EntranceZigZags 21 -1 1 1 1 1 4 21 2 2 3 0 21 0 1 1 1 0.00 0.00 0.00 0.30 0.38 0.91 0.44 21 1 1 1 1 3.10 329.06 -25.13 0.00 0.00 0.00 0.00 21 2 1 1 1 0.59 138.97 80.22 0.00 0.00 0.00 0.00 22 -2 1 1 1 Series 22-root.Swildons.EntranceZigZags 22 -1 1 1 1 21 1 22 1 1 3 0 22 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 22 1 1 1 1 1.50 42.09 87.42 0.00 0.00 0.00 0.00 23 -2 1 1 1 Series 23-root.Swildons.EntranceZigZags 23 -1 1 1 1 21 1 23 1 1 3 0 23 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 23 1 1 1 1 1.32 187.36 -86.08 0.00 0.00 0.00 0.00 24 -2 1 1 1 Series 24-root.Swildons.EntranceZigZags 24 -1 1 1 1 21 1 24 1 1 3 0 24 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 24 1 1 1 1 3.12 150.69 25.35 0.00 0.00 0.00 0.00 25 -2 1 1 1 Series 25-root.Swildons.EntranceZigZags 25 -1 1 1 1 21 1 25 1 1 3 0 25 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 25 1 1 1 1 0.56 206.89 -0.68 0.00 0.00 0.00 0.00 26 -2 1 1 1 Series 26-root.Swildons.LongDryWay 26 -1 1 1 1 21 1 26 2 2 3 0 26 0 1 1 1 0.00 0.00 0.00 0.56 0.00 1.50 1.32 26 1 1 1 1 4.51 274.10 -12.10 0.00 0.00 0.00 0.00 26 2 1 1 1 0.70 332.20 81.49 0.00 0.00 0.00 0.00 27 -2 1 1 1 Series 27-root.Swildons.EntranceZigZags 27 -1 1 1 1 26 1 27 1 1 3 0 27 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 27 1 1 1 1 0.55 112.98 -67.13 0.00 0.00 0.00 0.00 28 -2 1 1 1 Series 28-root.Swildons.EntranceZigZags 28 -1 1 1 1 26 1 28 1 1 3 0 28 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 28 1 1 1 1 0.79 250.88 -12.22 0.00 0.00 0.00 0.00 29 -2 1 1 1 Series 29-root.Swildons.EntranceZigZags 29 -1 1 1 1 26 1 29 1 1 3 0 29 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 29 1 1 1 1 1.22 294.40 -7.82 0.00 0.00 0.00 0.00 30 -2 1 1 1 Series 30-root.Swildons.EntranceZigZags 30 -1 1 1 1 26 1 30 1 1 3 0 30 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 30 1 1 1 1 2.96 295.01 -23.02 0.00 0.00 0.00 0.00 31 -2 1 1 1 Series 31-root.Swildons.EntranceZigZags 31 -1 1 1 1 26 1 31 1 1 3 0 31 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 31 1 1 1 1 1.51 40.84 10.51 0.00 0.00 0.00 0.00 32 -2 1 1 1 Series 32-root.Swildons.EntranceZigZags 32 -1 1 1 1 26 1 32 1 1 3 0 32 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 32 1 1 1 1 4.51 93.04 12.12 0.00 0.00 0.00 0.00 33 -2 1 1 1 Series 33-root.Swildons.EntranceZigZags 33 -1 1 1 1 26 1 33 1 1 3 0 33 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 33 1 1 1 1 3.45 122.11 5.64 0.00 0.00 0.00 0.00 34 -2 1 1 1 Series 34-root.Swildons.EntranceZigZags 34 -1 1 1 1 26 1 34 1 1 3 0 34 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 34 1 1 1 1 3.51 132.45 0.14 0.00 0.00 0.00 0.00 35 -2 1 1 1 Series 35-root.Swildons.EntranceZigZags 35 -1 1 1 1 26 1 35 1 1 3 0 35 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 35 1 1 1 1 6.66 127.76 11.11 0.00 0.00 0.00 0.00 36 -2 1 1 1 Series 36-root.Swildons.EntranceZigZags 36 -1 1 1 1 26 1 36 1 1 3 0 36 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 36 1 1 1 1 2.32 147.91 -6.69 0.00 0.00 0.00 0.00 37 -2 1 1 1 Series 37-root.Swildons.EntranceZigZags 37 -1 1 1 1 26 1 37 1 1 3 0 37 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 37 1 1 1 1 1.64 151.77 -11.17 0.00 0.00 0.00 0.00 38 -2 1 1 1 Series 38-root.Swildons.EntranceZigZags 38 -1 1 1 1 26 1 38 1 1 3 0 38 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 38 1 1 1 1 4.24 71.12 11.85 0.00 0.00 0.00 0.00 39 -2 1 1 1 Series 39-root.Swildons.EntranceZigZags 39 -1 1 1 1 26 1 39 2 2 3 0 39 0 1 1 1 0.00 0.00 0.00 1.98 4.15 0.69 0.51 39 1 1 1 1 2.41 48.97 -22.33 0.00 0.00 0.00 0.00 39 2 1 1 1 0.35 0.88 81.25 0.00 0.00 0.00 0.00 40 -2 1 1 1 Series 40-root.Swildons.EntranceZigZags 40 -1 1 1 1 39 1 40 1 1 3 0 40 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 40 1 1 1 1 0.30 218.69 -79.38 0.00 0.00 0.00 0.00 41 -2 1 1 1 Series 41-root.Swildons.EntranceZigZags 41 -1 1 1 1 39 1 41 1 1 3 0 41 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 41 1 1 1 1 2.38 229.06 22.40 0.00 0.00 0.00 0.00 42 -2 1 1 1 Series 42-root.Swildons.EntranceZigZags 42 -1 1 1 1 39 1 42 1 1 3 0 42 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 42 1 1 1 1 0.51 297.39 -0.90 0.00 0.00 0.00 0.00 43 -2 1 1 1 Series 43-root.Swildons.EntranceZigZags 43 -1 1 1 1 39 1 43 1 1 3 0 43 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 43 1 1 1 1 0.21 106.58 1.25 0.00 0.00 0.00 0.00 44 -2 1 1 1 Series 44-root.Swildons.EntranceZigZags 44 -1 1 1 1 39 1 44 2 2 3 0 44 0 1 1 1 0.00 0.00 0.00 0.49 0.19 0.35 0.29 44 1 1 1 1 1.08 35.60 11.53 0.00 0.00 0.00 0.00 44 2 1 1 1 0.80 325.46 66.53 0.00 0.00 0.00 0.00 45 -2 1 1 1 Series 45-root.Swildons.EntranceZigZags 45 -1 1 1 1 44 1 45 1 1 3 0 45 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 45 1 1 1 1 4.12 174.41 -83.10 0.00 0.00 0.00 0.00 46 -2 1 1 1 Series 46-root.Swildons.EntranceZigZags 46 -1 1 1 1 44 1 46 1 1 3 0 46 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 46 1 1 1 1 0.72 285.99 -77.51 0.00 0.00 0.00 0.00 47 -2 1 1 1 Series 47-root.Swildons.EntranceZigZags 47 -1 1 1 1 44 1 47 1 1 3 0 47 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 47 1 1 1 1 1.09 215.54 -12.21 0.00 0.00 0.00 0.00 48 -2 1 1 1 Series 48-root.Swildons.EntranceZigZags 48 -1 1 1 1 44 1 48 1 1 3 0 48 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 48 1 1 1 1 0.60 290.70 -18.76 0.00 0.00 0.00 0.00 49 -2 1 1 1 Series 49-root.Swildons.EntranceZigZags 49 -1 1 1 1 44 1 49 1 1 3 0 49 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 49 1 1 1 1 2.02 98.40 16.73 0.00 0.00 0.00 0.00 50 -2 1 1 1 Series 50-root.Swildons.EntranceZigZags 50 -1 1 1 1 44 1 50 2 2 3 0 50 0 1 1 1 0.00 0.00 0.00 0.57 1.89 0.73 4.09 50 1 1 1 1 2.00 4.40 11.51 0.00 0.00 0.00 0.00 50 2 1 1 1 0.19 103.54 52.84 0.00 0.00 0.00 0.00 51 -2 1 1 1 Series 51-root.Swildons.EntranceZigZags 51 -1 1 1 1 50 1 51 1 1 3 0 51 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 51 1 1 1 1 1.24 100.52 -61.02 0.00 0.00 0.00 0.00 52 -2 1 1 1 Series 52-root.Swildons.EntranceZigZags 52 -1 1 1 1 50 1 52 1 1 3 0 52 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 52 1 1 1 1 2.00 183.12 -11.17 0.00 0.00 0.00 0.00 53 -2 1 1 1 Series 53-root.Swildons.EntranceZigZags 53 -1 1 1 1 50 1 53 1 1 3 0 53 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 53 1 1 1 1 1.47 96.62 -7.52 0.00 0.00 0.00 0.00 54 -2 1 1 1 Series 54-root.Swildons.EntranceZigZags 54 -1 1 1 1 50 1 54 1 1 3 0 54 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 54 1 1 1 1 0.88 107.69 0.40 0.00 0.00 0.00 0.00 55 -2 1 1 1 Series 55-root.Swildons.EntranceZigZags 55 -1 1 1 1 50 1 55 2 2 3 0 55 0 1 1 1 0.00 0.00 0.00 0.00 1.34 0.15 1.08 55 1 1 1 1 1.01 54.90 0.18 0.00 0.00 0.00 0.00 55 2 1 1 1 0.48 11.08 64.51 0.00 0.00 0.00 0.00 56 -2 1 1 1 Series 56-root.Swildons.EntranceZigZags 56 -1 1 1 1 55 1 56 1 1 3 0 56 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 56 1 1 1 1 0.47 273.94 -73.34 0.00 0.00 0.00 0.00 57 -2 1 1 1 Series 57-root.Swildons.EntranceZigZags 57 -1 1 1 1 55 1 57 1 1 3 0 57 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 57 1 1 1 1 1.02 235.01 -0.46 0.00 0.00 0.00 0.00 58 -2 1 1 1 Series 58-root.Swildons.EntranceZigZags 58 -1 1 1 1 55 1 58 1 1 3 0 58 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 58 1 1 1 1 0.60 278.07 -8.53 0.00 0.00 0.00 0.00 59 -2 1 1 1 Series 59-root.Swildons.EntranceZigZags 59 -1 1 1 1 55 1 59 1 1 3 0 59 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 59 1 1 1 1 3.54 73.29 6.08 0.00 0.00 0.00 0.00 60 -2 1 1 1 Series 60-root.Swildons.EntranceZigZags 60 -1 1 1 1 55 1 60 2 2 3 0 60 0 1 1 1 0.00 0.00 0.00 0.59 3.00 0.43 0.45 60 1 1 1 1 3.07 334.82 5.81 0.00 0.00 0.00 0.00 60 2 1 1 1 1.31 63.06 -58.36 0.00 0.00 0.00 0.00 61 -2 1 1 1 Series 61-root.Swildons.EntranceZigZags 61 -1 1 1 1 60 1 61 1 1 3 0 61 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 61 1 1 1 1 0.58 230.91 -1.43 0.00 0.00 0.00 0.00 62 -2 1 1 1 Series 62-root.Swildons.EntranceZigZags 62 -1 1 1 1 60 1 62 1 1 3 0 62 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 62 1 1 1 1 3.08 154.49 -6.26 0.00 0.00 0.00 0.00 63 -2 1 1 1 Series 63-root.Swildons.EntranceZigZags 63 -1 1 1 1 60 1 63 1 1 3 0 63 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 63 1 1 1 1 1.43 99.53 -11.90 0.00 0.00 0.00 0.00 64 -2 1 1 1 Series 64-root.Swildons.EntranceZigZags 64 -1 1 1 1 60 1 64 1 1 3 0 64 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 64 1 1 1 1 1.14 76.63 -36.92 0.00 0.00 0.00 0.00 65 -2 1 1 1 Series 65-root.Swildons.EntranceZigZags 65 -1 1 1 1 55 1 65 2 2 3 0 65 0 1 1 1 0.00 0.00 0.00 0.37 0.87 0.43 0.45 65 1 1 1 1 2.42 62.94 5.29 0.00 0.00 0.00 0.00 65 2 1 1 1 0.45 237.97 46.05 0.00 0.00 0.00 0.00 66 -2 1 1 1 Series 66-root.Swildons.EntranceZigZags 66 -1 1 1 1 65 1 66 1 1 3 0 66 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 66 1 1 1 1 0.49 176.67 -53.68 0.00 0.00 0.00 0.00 67 -2 1 1 1 Series 67-root.Swildons.EntranceZigZags 67 -1 1 1 1 65 1 67 1 1 3 0 67 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 67 1 1 1 1 0.20 41.01 -21.97 0.00 0.00 0.00 0.00 68 -2 1 1 1 Series 68-root.Swildons.EntranceZigZags 68 -1 1 1 1 65 1 68 1 1 3 0 68 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 68 1 1 1 1 2.42 243.65 -5.41 0.00 0.00 0.00 0.00 69 -2 1 1 1 Series 69-root.Swildons.EntranceZigZags 69 -1 1 1 1 65 1 69 1 1 3 0 69 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 69 1 1 1 1 0.44 231.41 24.20 0.00 0.00 0.00 0.00 70 -2 1 1 1 Series 70-root.Swildons.EntranceZigZags 70 -1 1 1 1 65 1 70 1 1 3 0 70 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 70 1 1 1 1 3.30 116.69 17.88 0.00 0.00 0.00 0.00 71 -2 1 1 1 Series 71-root.Swildons.EntranceZigZags 71 -1 1 1 1 65 1 71 2 2 3 0 71 0 1 1 1 0.00 0.00 0.00 0.13 1.70 0.32 0.39 71 1 1 1 1 4.50 104.86 19.29 0.00 0.00 0.00 0.00 71 2 1 1 1 0.25 295.40 84.93 0.00 0.00 0.00 0.00 72 -2 1 1 1 Series 72-root.Swildons.EntranceZigZags 72 -1 1 1 1 71 1 72 1 1 3 0 72 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 72 1 1 1 1 0.26 125.46 -84.07 0.00 0.00 0.00 0.00 73 -2 1 1 1 Series 73-root.Swildons.EntranceZigZags 73 -1 1 1 1 71 1 73 1 1 3 0 73 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 73 1 1 1 1 1.17 325.47 -9.65 0.00 0.00 0.00 0.00 74 -2 1 1 1 Series 74-root.Swildons.EntranceZigZags 74 -1 1 1 1 71 1 74 1 1 3 0 74 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 74 1 1 1 1 1.63 11.48 -2.28 0.00 0.00 0.00 0.00 75 -2 1 1 1 Series 75-root.Swildons.EntranceZigZags 75 -1 1 1 1 71 1 75 1 1 3 0 75 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 75 1 1 1 1 1.86 95.06 12.16 0.00 0.00 0.00 0.00 76 -2 1 1 1 Series 76-root.Swildons.EntranceZigZags 76 -1 1 1 1 71 1 76 1 1 3 0 76 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 76 1 1 1 1 0.60 196.17 18.66 0.00 0.00 0.00 0.00 77 -2 1 1 1 Series 77-root.Swildons.EntranceZigZags 77 -1 1 1 1 60 1 77 2 2 3 0 77 0 1 1 1 0.00 0.00 0.00 0.54 0.51 0.00 1.12 77 1 1 1 1 0.94 78.85 -45.63 0.00 0.00 0.00 0.00 77 2 1 1 1 0.94 258.08 45.32 0.00 0.00 0.00 0.00 78 -2 1 1 1 Series 78-root.Swildons.EntranceZigZags 78 -1 1 1 1 77 1 78 1 1 3 0 78 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 78 1 1 1 1 0.84 95.45 56.57 0.00 0.00 0.00 0.00 79 -2 1 1 1 Series 79-root.Swildons.EntranceZigZags 79 -1 1 1 1 77 1 79 1 1 3 0 79 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 79 1 1 1 1 0.58 323.17 25.54 0.00 0.00 0.00 0.00 80 -2 1 1 1 Series 80-root.Swildons.EntranceZigZags 80 -1 1 1 1 77 1 80 1 1 3 0 80 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 80 1 1 1 1 1.16 143.12 14.01 0.00 0.00 0.00 0.00 81 -2 1 1 1 Series 81-root.Swildons.EntranceZigZags 81 -1 1 1 1 77 1 81 1 1 3 0 81 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 81 1 1 1 1 0.48 129.08 -25.41 0.00 0.00 0.00 0.00 82 -2 1 1 1 Series 82-root.Swildons.EntranceZigZags 82 -1 1 1 1 77 1 82 2 2 3 0 82 0 1 1 1 0.00 0.00 0.00 0.50 1.07 0.70 0.21 82 1 1 1 1 5.31 63.46 19.50 0.00 0.00 0.00 0.00 82 2 1 1 1 0.21 277.62 69.67 0.00 0.00 0.00 0.00 83 -2 1 1 1 Series 83-root.Swildons.EntranceZigZags 83 -1 1 1 1 82 1 83 1 1 3 0 83 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 83 1 1 1 1 0.54 183.63 -53.51 0.00 0.00 0.00 0.00 84 -2 1 1 1 Series 84-root.Swildons.EntranceZigZags 84 -1 1 1 1 82 1 84 1 1 3 0 84 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 84 1 1 1 1 5.82 244.52 -19.66 0.00 0.00 0.00 0.00 85 -2 1 1 1 Series 85-root.Swildons.EntranceZigZags 85 -1 1 1 1 82 1 85 1 1 3 0 85 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 85 1 1 1 1 0.85 284.28 -13.42 0.00 0.00 0.00 0.00 86 -2 1 1 1 Series 86-root.Swildons.EntranceZigZags 86 -1 1 1 1 82 1 86 1 1 3 0 86 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 86 1 1 1 1 0.64 205.22 -10.28 0.00 0.00 0.00 0.00 87 -2 1 1 1 Series 87-root.Swildons.EntranceZigZags 87 -1 1 1 1 82 1 87 1 1 3 0 87 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 87 1 1 1 1 2.09 160.16 8.15 0.00 0.00 0.00 0.00 88 -2 1 1 1 Series 88-root.Swildons.EntranceZigZags 88 -1 1 1 1 60 1 88 2 2 3 0 88 0 1 1 1 0.00 0.00 0.00 0.57 1.10 0.00 1.12 88 1 1 1 1 3.27 327.45 -18.16 0.00 0.00 0.00 0.00 88 2 1 1 1 0.70 241.88 79.61 0.00 0.00 0.00 0.00 89 -2 1 1 1 Series 89-root.Swildons.EntranceZigZags 89 -1 1 1 1 88 1 89 1 1 3 0 89 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 89 1 1 1 1 0.80 95.56 -82.81 0.00 0.00 0.00 0.00 90 -2 1 1 1 Series 90-root.Swildons.EntranceZigZags 90 -1 1 1 1 88 1 90 1 1 3 0 90 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 90 1 1 1 1 2.37 232.28 -23.81 0.00 0.00 0.00 0.00 91 -2 1 1 1 Series 91-root.Swildons.EntranceZigZags 91 -1 1 1 1 88 1 91 1 1 3 0 91 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 91 1 1 1 1 0.94 166.56 10.56 0.00 0.00 0.00 0.00 92 -2 1 1 1 Series 92-root.Swildons.EntranceZigZags 92 -1 1 1 1 88 1 92 1 1 3 0 92 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 92 1 1 1 1 3.25 147.32 17.88 0.00 0.00 0.00 0.00 93 -2 1 1 1 Series 93-root.Swildons.EntranceZigZags 93 -1 1 1 1 88 1 93 1 1 3 0 93 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 93 1 1 1 1 0.77 61.58 -13.22 0.00 0.00 0.00 0.00 94 -2 1 1 1 Series 94-root.Swildons.EntranceZigZags 94 -1 1 1 1 88 1 94 2 2 3 0 94 0 1 1 1 0.00 0.00 0.00 2.15 0.75 0.69 0.79 94 1 1 1 1 3.57 332.38 -6.33 0.00 0.00 0.00 0.00 94 2 1 1 1 1.82 248.40 55.64 0.00 0.00 0.00 0.00 95 -2 1 1 1 Series 95-root.Swildons.EntranceZigZags 95 -1 1 1 1 94 1 95 1 1 3 0 95 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 95 1 1 1 1 0.86 235.85 47.64 0.00 0.00 0.00 0.00 96 -2 1 1 1 Series 96-root.Swildons.EntranceZigZags 96 -1 1 1 1 94 1 96 1 1 3 0 96 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 96 1 1 1 1 0.70 61.47 -62.51 0.00 0.00 0.00 0.00 97 -2 1 1 1 Series 97-root.Swildons.EntranceZigZags 97 -1 1 1 1 94 1 97 1 1 3 0 97 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 97 1 1 1 1 3.58 152.70 6.43 0.00 0.00 0.00 0.00 98 -2 1 1 1 Series 98-root.Swildons.EntranceZigZags 98 -1 1 1 1 94 1 98 1 1 3 0 98 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 98 1 1 1 1 0.29 50.93 -10.96 0.00 0.00 0.00 0.00 99 -2 1 1 1 Series 99-root.Swildons.EntranceZigZags 99 -1 1 1 1 94 1 99 1 1 3 0 99 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 99 1 1 1 1 0.86 193.39 5.98 0.00 0.00 0.00 0.00 100 -2 1 1 1 Series 100-root.Swildons.EntranceZigZags 100 -1 1 1 1 94 1 100 1 1 3 0 100 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 100 1 1 1 1 0.73 219.84 2.28 0.00 0.00 0.00 0.00 101 -2 1 1 1 Series 101-root.Swildons.EntranceZigZags 101 -1 1 1 1 94 1 101 2 2 3 0 101 0 1 1 1 0.00 0.00 0.00 0.83 0.18 1.50 0.62 101 1 1 1 1 2.41 206.28 -9.43 0.00 0.00 0.00 0.00 101 2 1 1 1 1.55 22.89 -70.16 0.00 0.00 0.00 0.00 102 -2 1 1 1 Series 102-root.Swildons.EntranceZigZags 102 -1 1 1 1 101 1 102 1 1 3 0 102 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 102 1 1 1 1 1.67 192.05 -23.62 0.00 0.00 0.00 0.00 103 -2 1 1 1 Series 103-root.Swildons.EntranceZigZags 103 -1 1 1 1 101 1 103 1 1 3 0 103 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 103 1 1 1 1 2.40 27.02 9.44 0.00 0.00 0.00 0.00 104 -2 1 1 1 Series 104-root.Swildons.EntranceZigZags 104 -1 1 1 1 101 1 104 1 1 3 0 104 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 104 1 1 1 1 1.33 335.08 -9.34 0.00 0.00 0.00 0.00 105 -2 1 1 1 Series 105-root.Swildons.EntranceZigZags 105 -1 1 1 1 101 1 105 1 1 3 0 105 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 105 1 1 1 1 0.48 24.89 -33.63 0.00 0.00 0.00 0.00 106 -2 1 1 1 Series 106-root.Swildons.EntranceZigZags 106 -1 1 1 1 101 1 106 1 1 3 0 106 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 106 1 1 1 1 0.66 81.89 13.58 0.00 0.00 0.00 0.00 107 -2 1 1 1 Series 107-root.Swildons.EntranceZigZags 107 -1 1 1 1 101 1 107 2 2 3 0 107 0 1 1 1 0.00 0.00 0.00 1.38 1.29 0.00 1.46 107 1 1 1 1 4.05 306.31 -19.25 0.00 0.00 0.00 0.00 107 2 1 1 1 0.28 259.76 65.07 0.00 0.00 0.00 0.00 108 -2 1 1 1 Series 108-root.Swildons.EntranceZigZags 108 -1 1 1 1 107 1 108 1 1 3 0 108 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 108 1 1 1 1 0.68 181.17 -85.38 0.00 0.00 0.00 0.00 109 -2 1 1 1 Series 109-root.Swildons.EntranceZigZags 109 -1 1 1 1 107 1 109 1 1 3 0 109 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 109 1 1 1 1 4.05 126.64 19.12 0.00 0.00 0.00 0.00 110 -2 1 1 1 Series 110-root.Swildons.EntranceZigZags 110 -1 1 1 1 107 1 110 1 1 3 0 110 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 110 1 1 1 1 1.54 153.86 12.30 0.00 0.00 0.00 0.00 111 -2 1 1 1 Series 111-root.Swildons.EntranceZigZags 111 -1 1 1 1 107 1 111 1 1 3 0 111 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 111 1 1 1 1 0.60 298.32 2.80 0.00 0.00 0.00 0.00 112 -2 1 1 1 Series 112-root.Swildons.EntranceZigZags 112 -1 1 1 1 107 1 112 2 2 3 0 112 0 1 1 1 0.00 0.00 0.00 1.46 0.39 0.25 0.68 112 1 1 1 1 2.06 209.78 -16.06 0.00 0.00 0.00 0.00 112 2 1 1 1 0.55 319.29 71.97 0.00 0.00 0.00 0.00 113 -2 1 1 1 Series 113-root.Swildons.EntranceZigZags 113 -1 1 1 1 112 1 113 1 1 3 0 113 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 113 1 1 1 1 1.54 306.52 -85.39 0.00 0.00 0.00 0.00 114 -2 1 1 1 Series 114-root.Swildons.EntranceZigZags 114 -1 1 1 1 112 1 114 1 1 3 0 114 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 114 1 1 1 1 2.04 30.02 16.13 0.00 0.00 0.00 0.00 115 -2 1 1 1 Series 115-root.Swildons.EntranceZigZags 115 -1 1 1 1 112 1 115 1 1 3 0 115 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 115 1 1 1 1 0.46 304.97 -13.63 0.00 0.00 0.00 0.00 116 -2 1 1 1 Series 116-root.Swildons.EntranceZigZags 116 -1 1 1 1 112 1 116 2 2 3 0 116 0 1 1 1 0.00 0.00 0.00 0.00 0.44 0.52 1.54 116 1 1 1 1 2.94 231.85 -35.84 0.00 0.00 0.00 0.00 116 2 1 1 1 1.56 82.37 80.29 0.00 0.00 0.00 0.00 117 -2 1 1 1 Series 117-root.Swildons.EntranceZigZags 117 -1 1 1 1 116 1 117 1 1 3 0 117 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 117 1 1 1 1 1.62 299.70 -84.42 0.00 0.00 0.00 0.00 118 -2 1 1 1 Series 118-root.Swildons.EntranceZigZags 118 -1 1 1 1 116 1 118 1 1 3 0 118 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 118 1 1 1 1 2.95 51.87 35.69 0.00 0.00 0.00 0.00 119 -2 1 1 1 Series 119-root.Swildons.EntranceZigZags 119 -1 1 1 1 116 1 119 1 1 3 0 119 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 119 1 1 1 1 0.98 62.56 12.43 0.00 0.00 0.00 0.00 120 -2 1 1 1 Series 120-root.Swildons.EntranceZigZags 120 -1 1 1 1 116 1 120 1 1 3 0 120 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 120 1 1 1 1 0.93 42.31 13.78 0.00 0.00 0.00 0.00 121 -2 1 1 1 Series 121-root.Swildons.LongDryWay 121 -1 1 1 1 116 1 121 2 2 3 0 121 0 1 1 1 0.00 0.00 0.00 0.00 0.89 1.54 1.61 121 1 1 1 1 2.04 12.87 -39.09 0.00 0.00 0.00 0.00 121 2 1 1 1 3.17 228.40 64.31 0.00 0.00 0.00 0.00 122 -2 1 1 1 Series 122-root.Swildons.EntranceZigZags 122 -1 1 1 1 121 1 122 1 1 3 0 122 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 122 1 1 1 1 0.21 337.76 -76.92 0.00 0.00 0.00 0.00 123 -2 1 1 1 Series 123-root.Swildons.EntranceZigZags 123 -1 1 1 1 121 1 123 1 1 3 0 123 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 123 1 1 1 1 2.04 193.65 38.69 0.00 0.00 0.00 0.00 124 -2 1 1 1 Series 124-root.Swildons.EntranceZigZags 124 -1 1 1 1 121 1 124 1 1 3 0 124 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 124 1 1 1 1 1.80 234.26 12.16 0.00 0.00 0.00 0.00 125 -2 1 1 1 Series 125-root.Swildons.EntranceZigZags 125 -1 1 1 1 121 1 125 1 1 3 0 125 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 125 1 1 1 1 0.34 51.47 3.81 0.00 0.00 0.00 0.00 126 -2 1 1 1 Series 126-root.Swildons.LongDryWay 126 -1 1 1 1 26 1 126 1 1 3 0 126 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 126 1 1 1 1 0.67 257.19 80.80 0.00 0.00 0.00 0.00 127 -2 1 1 1 Series 127-root.Swildons.LongDryWay 127 -1 1 1 1 26 1 127 1 1 3 0 127 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 127 1 1 1 1 0.56 95.31 -85.13 0.00 0.00 0.00 0.00 128 -2 1 1 1 Series 128-root.Swildons.LongDryWay 128 -1 1 1 1 26 1 128 1 1 3 0 128 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 128 1 1 1 1 0.57 188.87 0.73 0.00 0.00 0.00 0.00 129 -2 1 1 1 Series 129-root.Swildons.LongDryWay 129 -1 1 1 1 26 1 129 1 1 3 0 129 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 129 1 1 1 1 1.35 0.40 3.08 0.00 0.00 0.00 0.00 130 -2 1 1 1 Series 130-root.Swildons.LongDryWay 130 -1 1 1 1 26 1 130 1 1 3 0 130 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 130 1 1 1 1 4.05 270.33 -24.99 0.00 0.00 0.00 0.00 131 -2 1 1 1 Series 131-root.Swildons.LongDryWay 131 -1 1 1 1 26 1 131 1 1 3 0 131 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 131 1 1 1 1 4.25 270.16 -25.07 0.00 0.00 0.00 0.00 132 -2 1 1 1 Series 132-root.Swildons.LongDryWay 132 -1 1 1 1 26 1 132 2 2 3 0 132 0 1 1 1 0.00 0.00 0.00 0.56 1.35 0.66 0.56 132 1 1 1 1 4.08 269.09 -25.50 0.00 0.00 0.00 0.00 132 2 1 1 1 0.46 104.34 80.16 0.00 0.00 0.00 0.00 133 -2 1 1 1 Series 133-root.Swildons.LongDryWay 133 -1 1 1 1 132 1 133 1 1 3 0 133 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 133 1 1 1 1 1.51 93.01 -80.82 0.00 0.00 0.00 0.00 134 -2 1 1 1 Series 134-root.Swildons.LongDryWay 134 -1 1 1 1 132 1 134 1 1 3 0 134 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 134 1 1 1 1 1.99 49.93 -3.25 0.00 0.00 0.00 0.00 135 -2 1 1 1 Series 135-root.Swildons.LongDryWay 135 -1 1 1 1 132 1 135 1 1 3 0 135 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 135 1 1 1 1 4.22 96.35 -2.77 0.00 0.00 0.00 0.00 136 -2 1 1 1 Series 136-root.Swildons.LongDryWay 136 -1 1 1 1 132 1 136 1 1 3 0 136 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 136 1 1 1 1 3.40 120.60 -12.40 0.00 0.00 0.00 0.00 137 -2 1 1 1 Series 137-root.Swildons.LongDryWay 137 -1 1 1 1 132 1 137 1 1 3 0 137 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 137 1 1 1 1 3.13 148.88 -15.80 0.00 0.00 0.00 0.00 138 -2 1 1 1 Series 138-root.Swildons.LongDryWay 138 -1 1 1 1 132 1 138 1 1 3 0 138 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 138 1 1 1 1 6.66 140.84 -10.55 0.00 0.00 0.00 0.00 139 -2 1 1 1 Series 139-root.Swildons.10 139 -1 1 1 1 132 1 139 2 2 3 0 139 0 1 1 1 0.00 0.00 0.00 1.13 1.96 0.45 1.49 139 1 1 1 1 3.77 352.72 -29.81 0.00 0.00 0.00 0.00 139 2 1 1 1 0.74 234.75 81.47 0.00 0.00 0.00 0.00 140 -2 1 1 1 Series 140-root.Swildons.LongDryWay 140 -1 1 1 1 139 1 140 1 1 3 0 140 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 140 1 1 1 1 1.94 83.85 -81.67 0.00 0.00 0.00 0.00 141 -2 1 1 1 Series 141-root.Swildons.LongDryWay 141 -1 1 1 1 139 1 141 1 1 3 0 141 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 141 1 1 1 1 1.67 65.25 -56.31 0.00 0.00 0.00 0.00 142 -2 1 1 1 Series 142-root.Swildons.LongDryWay 142 -1 1 1 1 139 1 142 1 1 3 0 142 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 142 1 1 1 1 0.66 240.23 -8.20 0.00 0.00 0.00 0.00 143 -2 1 1 1 Series 143-root.Swildons.LongDryWay 143 -1 1 1 1 139 1 143 1 1 3 0 143 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 143 1 1 1 1 0.59 60.21 0.46 0.00 0.00 0.00 0.00 144 -2 1 1 1 Series 144-root.Swildons.LongDryWay 144 -1 1 1 1 139 1 144 1 1 3 0 144 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 144 1 1 1 1 1.30 148.00 -32.25 0.00 0.00 0.00 0.00 145 -2 1 1 1 Series 145-root.Swildons.LongDryWay 145 -1 1 1 1 139 1 145 2 2 3 0 145 0 1 1 1 0.00 0.00 0.00 0.64 0.92 0.73 1.92 145 1 1 1 1 4.33 334.47 -24.79 0.00 0.00 0.00 0.00 145 2 1 1 1 1.20 271.70 77.00 0.00 0.00 0.00 0.00 146 -2 1 1 1 Series 146-root.Swildons.LongDryWay 146 -1 1 1 1 145 1 146 1 1 3 0 146 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 146 1 1 1 1 0.49 65.56 -81.38 0.00 0.00 0.00 0.00 147 -2 1 1 1 Series 147-root.Swildons.LongDryWay 147 -1 1 1 1 145 1 147 1 1 3 0 147 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 147 1 1 1 1 0.19 247.35 6.64 0.00 0.00 0.00 0.00 148 -2 1 1 1 Series 148-root.Swildons.LongDryWay 148 -1 1 1 1 145 1 148 1 1 3 0 148 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 148 1 1 1 1 0.44 242.37 2.33 0.00 0.00 0.00 0.00 149 -2 1 1 1 Series 149-root.Swildons.LongDryWay 149 -1 1 1 1 145 1 149 1 1 3 0 149 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 149 1 1 1 1 0.46 53.02 1.29 0.00 0.00 0.00 0.00 150 -2 1 1 1 Series 150-root.Swildons.LongDryWay 150 -1 1 1 1 145 1 121 1 2 3 0 150 0 1 1 1 0.00 0.00 0.00 0.44 0.45 1.17 0.48 150 1 1 1 1 2.77 336.07 -4.41 0.00 0.00 0.00 0.00 150 2 1 1 1 3.14 342.08 -25.59 0.00 0.00 0.00 0.00 151 -2 1 1 1 Series 151-root.Swildons.LongDryWay 151 -1 1 1 1 121 1 151 1 1 3 0 151 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 151 1 1 1 1 3.01 211.11 65.59 0.00 0.00 0.00 0.00 152 -2 1 1 1 Series 152-root.Swildons.LongDryWay 152 -1 1 1 1 121 1 152 1 1 3 0 152 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 152 1 1 1 1 0.23 198.81 -82.34 0.00 0.00 0.00 0.00 153 -2 1 1 1 Series 153-root.Swildons.LongDryWay 153 -1 1 1 1 121 1 153 1 1 3 0 153 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 153 1 1 1 1 1.83 227.14 1.96 0.00 0.00 0.00 0.00 154 -2 1 1 1 Series 154-root.Swildons.LongDryWay 154 -1 1 1 1 121 1 154 1 1 3 0 154 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 154 1 1 1 1 0.31 66.37 4.55 0.00 0.00 0.00 0.00 155 -2 1 1 1 Series 155-root.Swildons.LongDryWay 155 -1 1 1 1 121 1 155 1 1 3 0 155 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 155 1 1 1 1 2.24 148.04 -4.84 0.00 0.00 0.00 0.00 156 -2 1 1 1 Series 156-root.Swildons.LongDryWay 156 -1 1 1 1 121 1 156 1 1 3 0 156 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 156 1 1 1 1 1.07 118.17 -19.64 0.00 0.00 0.00 0.00 157 -2 1 1 1 Series 157-root.Swildons.LongDryWay 157 -1 1 1 1 121 1 157 2 2 3 0 157 0 1 1 1 0.00 0.00 0.00 1.73 0.62 2.74 0.23 157 1 1 1 1 1.87 330.80 6.50 0.00 0.00 0.00 0.00 157 2 1 1 1 2.65 231.81 69.74 0.00 0.00 0.00 0.00 158 -2 1 1 1 Series 158-root.Swildons.LongDryWay 158 -1 1 1 1 157 1 158 1 1 3 0 158 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 158 1 1 1 1 0.46 74.59 -85.16 0.00 0.00 0.00 0.00 159 -2 1 1 1 Series 159-root.Swildons.LongDryWay 159 -1 1 1 1 157 1 159 1 1 3 0 159 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 159 1 1 1 1 0.81 233.11 4.03 0.00 0.00 0.00 0.00 160 -2 1 1 1 Series 160-root.Swildons.LongDryWay 160 -1 1 1 1 157 1 160 1 1 3 0 160 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 160 1 1 1 1 1.31 222.95 20.79 0.00 0.00 0.00 0.00 161 -2 1 1 1 Series 161-root.Swildons.LongDryWay 161 -1 1 1 1 157 1 161 1 1 3 0 161 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 161 1 1 1 1 0.33 83.42 2.16 0.00 0.00 0.00 0.00 162 -2 1 1 1 Series 162-root.Swildons.LongDryWay 162 -1 1 1 1 157 1 162 6 6 3 0 162 0 1 1 1 0.00 0.00 0.00 1.12 0.32 2.49 0.46 162 1 1 1 1 2.26 341.69 -5.29 0.00 0.00 0.00 0.00 162 2 1 1 1 1.72 256.99 12.28 0.00 0.00 0.00 0.00 162 3 1 1 1 2.19 192.38 16.02 0.00 0.00 0.00 0.00 162 4 1 1 1 1.14 226.56 32.64 0.00 0.00 0.00 0.00 162 5 1 1 1 3.27 161.72 -22.86 0.00 0.00 0.00 0.00 162 6 1 1 1 1.69 277.86 83.39 0.00 0.00 0.00 0.00 163 -2 1 1 1 Series 163-root.Swildons.LongDryWay 163 -1 1 1 1 162 1 163 8 8 3 0 163 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 163 1 1 1 1 1.10 308.84 4.46 0.00 0.00 0.00 0.00 163 2 1 1 1 2.37 332.96 4.19 0.00 0.00 0.00 0.00 163 3 1 1 1 1.12 262.14 46.91 0.00 0.00 0.00 0.00 163 4 1 1 1 3.53 350.11 -3.89 0.00 0.00 0.00 0.00 163 5 1 1 1 1.97 310.87 39.30 0.00 0.00 0.00 0.00 163 6 1 1 1 2.39 26.49 3.33 0.00 0.00 0.00 0.00 163 7 1 1 1 0.86 304.46 -13.02 0.00 0.00 0.00 0.00 163 8 1 1 1 0.40 123.07 82.35 0.00 0.00 0.00 0.00 164 -2 1 1 1 Series 164-root.Swildons.LongDryWay 164 -1 1 1 1 163 7 164 1 1 3 0 164 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 164 1 1 1 1 0.41 264.22 -88.54 0.00 0.00 0.00 0.00 165 -2 1 1 1 Series 165-root.Swildons.LongDryWay 165 -1 1 1 1 163 7 165 1 1 3 0 165 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 165 1 1 1 1 0.65 247.13 6.64 0.00 0.00 0.00 0.00 166 -2 1 1 1 Series 166-root.Swildons.LongDryWay 166 -1 1 1 1 163 7 166 1 1 3 0 166 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 166 1 1 1 1 0.47 21.84 0.91 0.00 0.00 0.00 0.00 167 -2 1 1 1 Series 167-root.Swildons.LongDryWay 167 -1 1 1 1 163 7 167 1 1 3 0 167 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 167 1 1 1 1 0.46 76.58 4.93 0.00 0.00 0.00 0.00 168 -2 1 1 1 Series 168-root.Swildons.LongDryWay 168 -1 1 1 1 163 7 168 2 2 3 0 168 0 1 1 1 0.00 0.00 0.00 0.61 0.45 0.40 0.41 168 1 1 1 1 4.55 46.75 7.37 0.00 0.00 0.00 0.00 168 2 1 1 1 0.90 236.36 72.78 0.00 0.00 0.00 0.00 169 -2 1 1 1 Series 169-root.Swildons.LongDryWay 169 -1 1 1 1 168 1 169 1 1 3 0 169 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 169 1 1 1 1 1.59 107.96 -71.63 0.00 0.00 0.00 0.00 170 -2 1 1 1 Series 170-root.Swildons.LongDryWay 170 -1 1 1 1 168 1 170 1 1 3 0 170 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 170 1 1 1 1 2.92 222.06 -3.46 0.00 0.00 0.00 0.00 171 -2 1 1 1 Series 171-root.Swildons.LongDryWay 171 -1 1 1 1 168 1 171 1 1 3 0 171 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 171 1 1 1 1 3.00 234.96 2.01 0.00 0.00 0.00 0.00 172 -2 1 1 1 Series 172-root.Swildons.LongDryWay 172 -1 1 1 1 168 1 172 1 1 3 0 172 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 172 1 1 1 1 1.64 274.68 -3.03 0.00 0.00 0.00 0.00 173 -2 1 1 1 Series 173-root.Swildons.LongDryWay 173 -1 1 1 1 168 1 173 1 1 3 0 173 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 173 1 1 1 1 2.40 202.52 -9.08 0.00 0.00 0.00 0.00 174 -2 1 1 1 Series 174-root.Swildons.LongDryWay 174 -1 1 1 1 168 1 174 1 1 3 0 174 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 174 1 1 1 1 1.26 252.80 2.93 0.00 0.00 0.00 0.00 175 -2 1 1 1 Series 175-root.Swildons.LongDryWay 175 -1 1 1 1 168 1 175 7 7 3 0 175 0 1 1 1 0.00 0.00 0.00 2.24 0.00 0.86 1.51 175 1 1 1 1 2.34 326.38 -9.83 0.00 0.00 0.00 0.00 175 2 1 1 1 2.65 84.60 -7.24 0.00 0.00 0.00 0.00 175 3 1 1 1 0.84 145.04 18.49 0.00 0.00 0.00 0.00 175 4 1 1 1 1.81 86.30 13.23 0.00 0.00 0.00 0.00 175 5 1 1 1 1.73 162.82 7.33 0.00 0.00 0.00 0.00 175 6 1 1 1 2.91 112.32 7.56 0.00 0.00 0.00 0.00 175 7 1 1 1 1.33 253.55 77.95 0.00 0.00 0.00 0.00 176 -2 1 1 1 Series 176-root.Swildons.LongDryWay 176 -1 1 1 1 175 6 176 1 1 3 0 176 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 176 1 1 1 1 0.40 134.69 -85.39 0.00 0.00 0.00 0.00 177 -2 1 1 1 Series 177-root.Swildons.LongDryWay 177 -1 1 1 1 175 6 177 1 1 3 0 177 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 177 1 1 1 1 0.88 218.54 0.04 0.00 0.00 0.00 0.00 178 -2 1 1 1 Series 178-root.Swildons.LongDryWay 178 -1 1 1 1 175 6 178 1 1 3 0 178 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 178 1 1 1 1 2.39 356.65 2.05 0.00 0.00 0.00 0.00 179 -2 1 1 1 Series 179-root.Swildons.LongDryWay 179 -1 1 1 1 175 6 179 1 1 3 0 179 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 179 1 1 1 1 4.28 318.64 -8.84 0.00 0.00 0.00 0.00 180 -2 1 1 1 Series 180-root.Swildons.LongDryWay 180 -1 1 1 1 175 6 180 2 2 3 0 180 0 1 1 1 0.00 0.00 0.00 1.22 0.84 1.30 0.40 180 1 1 1 1 1.51 179.58 30.14 0.00 0.00 0.00 0.00 180 2 1 1 1 0.40 241.65 88.13 0.00 0.00 0.00 0.00 181 -2 1 1 1 Series 181-root.Swildons.LongDryWay 181 -1 1 1 1 180 1 181 1 1 3 0 181 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 181 1 1 1 1 1.26 53.91 -74.20 0.00 0.00 0.00 0.00 182 -2 1 1 1 Series 182-root.Swildons.LongDryWay 182 -1 1 1 1 180 1 182 1 1 3 0 182 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 182 1 1 1 1 0.38 33.56 9.16 0.00 0.00 0.00 0.00 183 -2 1 1 1 Series 183-root.Swildons.LongDryWay 183 -1 1 1 1 180 1 183 1 1 3 0 183 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 183 1 1 1 1 1.79 32.95 -40.94 0.00 0.00 0.00 0.00 184 -2 1 1 1 Series 184-root.Swildons.LongDryWay 184 -1 1 1 1 180 1 184 1 1 3 0 184 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 184 1 1 1 1 0.20 212.88 -9.54 0.00 0.00 0.00 0.00 185 -2 1 1 1 Series 185-root.Swildons.LongDryWay 185 -1 1 1 1 180 1 185 2 2 3 0 185 0 1 1 1 0.00 0.00 0.00 1.27 0.19 0.40 1.21 185 1 1 1 1 4.59 106.55 -8.18 0.00 0.00 0.00 0.00 185 2 1 1 1 1.44 263.68 83.06 0.00 0.00 0.00 0.00 186 -2 1 1 1 Series 186-root.Swildons.LongDryWay 186 -1 1 1 1 185 1 186 1 1 3 0 186 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 186 1 1 1 1 2.12 25.84 19.01 0.00 0.00 0.00 0.00 187 -2 1 1 1 Series 187-root.Swildons.LongDryWay 187 -1 1 1 1 185 1 187 1 1 3 0 187 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 187 1 1 1 1 2.70 171.33 38.49 0.00 0.00 0.00 0.00 188 -2 1 1 1 Series 188-root.Swildons.LongDryWay 188 -1 1 1 1 185 1 188 1 1 3 0 188 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 188 1 1 1 1 2.76 117.51 44.68 0.00 0.00 0.00 0.00 189 -2 1 1 1 Series 189-root.Swildons.LongDryWay 189 -1 1 1 1 185 1 189 1 1 3 0 189 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 189 1 1 1 1 4.29 103.86 35.63 0.00 0.00 0.00 0.00 190 -2 1 1 1 Series 190-root.Swildons.LongDryWay 190 -1 1 1 1 185 1 190 1 1 3 0 190 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 190 1 1 1 1 3.31 92.40 37.41 0.00 0.00 0.00 0.00 191 -2 1 1 1 Series 191-root.Swildons.LongDryWay 191 -1 1 1 1 185 1 191 1 1 3 0 191 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 191 1 1 1 1 2.74 207.70 20.17 0.00 0.00 0.00 0.00 192 -2 1 1 1 Series 192-root.Swildons.LongDryWay 192 -1 1 1 1 185 1 192 1 1 3 0 192 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 192 1 1 1 1 3.06 202.74 31.06 0.00 0.00 0.00 0.00 193 -2 1 1 1 Series 193-root.Swildons.LongDryWay 193 -1 1 1 1 185 1 193 1 1 3 0 193 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 193 1 1 1 1 3.41 320.36 7.71 0.00 0.00 0.00 0.00 194 -2 1 1 1 Series 194-root.Swildons.LongDryWay 194 -1 1 1 1 185 1 194 2 2 3 0 194 0 1 1 1 0.00 0.00 0.00 3.04 1.76 1.43 0.00 194 1 1 1 1 3.22 187.12 35.45 0.00 0.00 0.00 0.00 194 2 1 1 1 2.44 340.72 79.94 0.00 0.00 0.00 0.00 195 -2 1 1 1 Series 195-root.Swildons.LongDryWay 195 -1 1 1 1 194 1 195 1 1 3 0 195 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 195 1 1 1 1 0.87 171.17 80.92 0.00 0.00 0.00 0.00 196 -2 1 1 1 Series 196-root.Swildons.LongDryWay 196 -1 1 1 1 194 1 196 1 1 3 0 196 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 196 1 1 1 1 0.37 31.73 9.50 0.00 0.00 0.00 0.00 197 -2 1 1 1 Series 197-root.Swildons.LongDryWay 197 -1 1 1 1 194 1 197 1 1 3 0 197 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 197 1 1 1 1 4.18 95.64 36.04 0.00 0.00 0.00 0.00 198 -2 1 1 1 Series 198-root.Swildons.LongDryWay 198 -1 1 1 1 194 1 198 1 1 3 0 198 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 198 1 1 1 1 1.17 226.40 4.30 0.00 0.00 0.00 0.00 199 -2 1 1 1 Series 199-root.Swildons.LongDryWay 199 -1 1 1 1 194 1 199 2 2 3 0 199 0 1 1 1 0.00 0.00 0.00 3.11 1.05 0.86 0.00 199 1 1 1 1 4.13 137.97 16.69 0.00 0.00 0.00 0.00 199 2 1 1 1 0.56 130.10 89.68 0.00 0.00 0.00 0.00 200 -2 1 1 1 Series 200-root.Swildons.LongDryWay 200 -1 1 1 1 199 1 200 1 1 3 0 200 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 200 1 1 1 1 0.53 145.25 -77.01 0.00 0.00 0.00 0.00 201 -2 1 1 1 Series 201-root.Swildons.LongDryWay 201 -1 1 1 1 199 1 201 1 1 3 0 201 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 201 1 1 1 1 1.15 11.90 28.43 0.00 0.00 0.00 0.00 202 -2 1 1 1 Series 202-root.Swildons.LongDryWay 202 -1 1 1 1 199 1 202 1 1 3 0 202 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 202 1 1 1 1 3.06 116.42 16.64 0.00 0.00 0.00 0.00 203 -2 1 1 1 Series 203-root.Swildons.LongDryWay 203 -1 1 1 1 199 1 203 1 1 3 0 203 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 203 1 1 1 1 0.48 229.78 -0.43 0.00 0.00 0.00 0.00 204 -2 1 1 1 Series 204-root.Swildons.LongDryWay 204 -1 1 1 1 194 1 204 2 2 3 0 204 0 1 1 1 0.00 0.00 0.00 2.42 1.16 0.86 0.00 204 1 1 1 1 4.94 95.70 39.05 0.00 0.00 0.00 0.00 204 2 1 1 1 0.53 71.87 39.91 0.00 0.00 0.00 0.00 205 -2 1 1 1 Series 205-root.Swildons.LongDryWay 205 -1 1 1 1 204 1 205 1 1 3 0 205 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 205 1 1 1 1 2.86 144.36 24.42 0.00 0.00 0.00 0.00 206 -2 1 1 1 Series 206-root.Swildons.LongDryWay 206 -1 1 1 1 204 1 206 1 1 3 0 206 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 206 1 1 1 1 2.08 179.54 14.96 0.00 0.00 0.00 0.00 207 -2 1 1 1 Series 207-root.Swildons.LongDryWay 207 -1 1 1 1 204 1 207 1 1 3 0 207 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 207 1 1 1 1 3.64 157.71 16.76 0.00 0.00 0.00 0.00 208 -2 1 1 1 Series 208-root.Swildons.LongDryWay 208 -1 1 1 1 185 1 208 3 3 3 0 208 0 1 1 1 0.00 0.00 0.00 1.76 3.04 1.43 0.00 208 1 1 1 1 2.78 321.97 -24.94 0.00 0.00 0.00 0.00 208 2 1 1 1 0.89 88.37 -48.92 0.00 0.00 0.00 0.00 208 3 1 1 1 0.66 344.18 68.52 0.00 0.00 0.00 0.00 209 -2 1 1 1 Series 209-root.Swildons.LongDryWay 209 -1 1 1 1 208 2 209 1 1 3 0 209 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 209 1 1 1 1 1.17 84.18 -77.61 0.00 0.00 0.00 0.00 210 -2 1 1 1 Series 210-root.Swildons.LongDryWay 210 -1 1 1 1 208 2 210 1 1 3 0 210 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 210 1 1 1 1 0.74 151.52 1.62 0.00 0.00 0.00 0.00 211 -2 1 1 1 Series 211-root.Swildons.LongDryWay 211 -1 1 1 1 208 2 211 1 1 3 0 211 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 211 1 1 1 1 0.65 301.72 1.69 0.00 0.00 0.00 0.00 212 -2 1 1 1 Series 212-root.Swildons.LongDryWay 212 -1 1 1 1 208 2 212 1 1 3 0 212 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 212 1 1 1 1 1.26 22.12 -19.21 0.00 0.00 0.00 0.00 213 -2 1 1 1 Series 213-root.Swildons.LongDryWay 213 -1 1 1 1 208 2 213 3 3 3 0 213 0 1 1 1 0.00 0.00 0.00 0.65 0.60 0.61 1.14 213 1 1 1 1 6.28 322.97 -29.83 0.00 0.00 0.00 0.00 213 2 1 1 1 1.55 262.60 41.75 0.00 0.00 0.00 0.00 213 3 1 1 1 0.98 75.08 80.67 0.00 0.00 0.00 0.00 214 -2 1 1 1 Series 214-root.Swildons.LongDryWay 214 -1 1 1 1 213 2 214 1 1 3 0 214 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 214 1 1 1 1 1.50 163.13 -87.26 0.00 0.00 0.00 0.00 215 -2 1 1 1 Series 215-root.Swildons.LongDryWay 215 -1 1 1 1 213 2 215 1 1 3 0 215 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 215 1 1 1 1 1.41 5.52 4.71 0.00 0.00 0.00 0.00 216 -2 1 1 1 Series 216-root.Swildons.LongDryWay 216 -1 1 1 1 213 2 216 1 1 3 0 216 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 216 1 1 1 1 0.43 205.01 4.65 0.00 0.00 0.00 0.00 217 -2 1 1 1 Series 217-root.Swildons.LongDryWay 217 -1 1 1 1 213 2 217 1 1 3 0 217 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 217 1 1 1 1 1.18 34.55 2.86 0.00 0.00 0.00 0.00 218 -2 1 1 1 Series 218-root.Swildons.LongDryWay 218 -1 1 1 1 213 2 218 2 2 3 0 218 0 1 1 1 0.00 0.00 0.00 0.39 1.14 0.97 1.50 218 1 1 1 1 2.26 14.20 12.57 0.00 0.00 0.00 0.00 218 2 1 1 1 0.76 -0.12 -83.57 0.00 0.00 0.00 0.00 219 -2 1 1 1 Series 219-root.Swildons.LongDryWay 219 -1 1 1 1 218 1 219 1 1 3 0 219 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 219 1 1 1 1 0.88 256.69 -39.46 0.00 0.00 0.00 0.00 220 -2 1 1 1 Series 220-root.Swildons.LongDryWay 220 -1 1 1 1 218 1 220 1 1 3 0 220 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 220 1 1 1 1 0.41 252.90 -1.76 0.00 0.00 0.00 0.00 221 -2 1 1 1 Series 221-root.Swildons.LongDryWay 221 -1 1 1 1 218 1 221 1 1 3 0 221 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 221 1 1 1 1 0.62 256.46 37.38 0.00 0.00 0.00 0.00 222 -2 1 1 1 Series 222-root.Swildons.LongDryWay 222 -1 1 1 1 218 1 222 3 3 3 0 222 0 1 1 1 0.00 0.00 0.00 0.68 0.00 0.38 0.76 222 1 1 1 1 6.03 321.82 -41.61 0.00 0.00 0.00 0.00 222 2 1 1 1 4.45 89.37 26.23 0.00 0.00 0.00 0.00 222 3 1 1 1 2.48 278.60 82.99 0.00 0.00 0.00 0.00 223 -2 1 1 1 Series 223-root.Swildons.LongDryWay 223 -1 1 1 1 213 2 222 1 2 3 0 223 0 1 1 1 0.00 0.00 0.00 0.43 1.37 0.97 1.50 223 1 1 1 1 5.13 312.59 -30.46 0.00 0.00 0.00 0.00 223 2 1 1 1 2.76 18.16 -19.74 0.00 0.00 0.00 0.00 224 -2 1 1 1 Series 224-root.Swildons.LongDryWay 224 -1 1 1 1 222 2 224 1 1 3 0 224 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 224 1 1 1 1 0.38 349.88 -81.72 0.00 0.00 0.00 0.00 225 -2 1 1 1 Series 225-root.Swildons.LongDryWay 225 -1 1 1 1 222 2 225 1 1 3 0 225 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 225 1 1 1 1 1.17 -0.95 7.77 0.00 0.00 0.00 0.00 226 -2 1 1 1 Series 226-root.Swildons.LongDryWay 226 -1 1 1 1 222 2 226 1 1 3 0 226 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 226 1 1 1 1 4.81 15.32 43.97 0.00 0.00 0.00 0.00 227 -2 1 1 1 Series 227-root.Swildons.LongDryWay 227 -1 1 1 1 222 2 227 1 1 3 0 227 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 227 1 1 1 1 2.37 170.78 2.46 0.00 0.00 0.00 0.00 228 -2 1 1 1 Series 228-root.Swildons.LongDryWay 228 -1 1 1 1 222 2 228 3 3 3 0 228 0 1 1 1 0.00 0.00 0.00 3.45 2.23 2.46 0.38 228 1 1 1 1 6.61 111.16 18.69 0.00 0.00 0.00 0.00 228 2 1 1 1 3.92 156.89 22.40 0.00 0.00 0.00 0.00 228 3 1 1 1 2.57 263.73 79.77 0.00 0.00 0.00 0.00 229 -2 1 1 1 Series 229-root.Swildons.LongDryWay 229 -1 1 1 1 228 2 229 1 1 3 0 229 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 229 1 1 1 1 1.77 256.58 76.02 0.00 0.00 0.00 0.00 230 -2 1 1 1 Series 230-root.Swildons.LongDryWay 230 -1 1 1 1 228 2 230 1 1 3 0 230 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 230 1 1 1 1 0.83 186.82 -87.34 0.00 0.00 0.00 0.00 231 -2 1 1 1 Series 231-root.Swildons.LongDryWay 231 -1 1 1 1 228 2 231 1 1 3 0 231 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 231 1 1 1 1 1.13 45.68 -9.21 0.00 0.00 0.00 0.00 232 -2 1 1 1 Series 232-root.Swildons.LongDryWay 232 -1 1 1 1 228 2 232 1 1 3 0 232 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 232 1 1 1 1 1.09 245.41 2.21 0.00 0.00 0.00 0.00 233 -2 1 1 1 Series 233-root.Swildons.LongDryWay 233 -1 1 1 1 228 2 233 2 2 3 0 233 0 1 1 1 0.00 0.00 0.00 1.04 1.09 2.53 0.83 233 1 1 1 1 5.06 156.91 15.55 0.00 0.00 0.00 0.00 233 2 1 1 1 0.81 93.78 80.83 0.00 0.00 0.00 0.00 234 -2 1 1 1 Series 234-root.Swildons.LongDryWay 234 -1 1 1 1 233 1 234 1 1 3 0 234 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 234 1 1 1 1 0.31 141.89 -87.32 0.00 0.00 0.00 0.00 235 -2 1 1 1 Series 235-root.Swildons.LongDryWay 235 -1 1 1 1 233 1 235 1 1 3 0 235 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 235 1 1 1 1 1.36 66.73 1.57 0.00 0.00 0.00 0.00 236 -2 1 1 1 Series 236-root.Swildons.LongDryWay 236 -1 1 1 1 233 1 236 1 1 3 0 236 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 236 1 1 1 1 2.22 35.75 14.64 0.00 0.00 0.00 0.00 237 -2 1 1 1 Series 237-root.Swildons.LongDryWay 237 -1 1 1 1 233 1 237 1 1 3 0 237 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 237 1 1 1 1 1.24 122.51 29.01 0.00 0.00 0.00 0.00 238 -2 1 1 1 Series 238-root.Swildons.LongDryWay 238 -1 1 1 1 233 1 238 1 1 3 0 238 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 238 1 1 1 1 0.36 241.71 -2.19 0.00 0.00 0.00 0.00 239 -2 1 1 1 Series 239-root.Swildons.LongDryWay 239 -1 1 1 1 233 1 239 1 1 3 0 239 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 239 1 1 1 1 1.52 168.27 20.43 0.00 0.00 0.00 0.00 240 -2 1 1 1 Series 240-root.Swildons.LongDryWay 240 -1 1 1 1 233 1 240 1 1 3 0 240 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 240 1 1 1 1 3.17 182.40 6.76 0.00 0.00 0.00 0.00 241 -2 1 1 1 Series 241-root.Swildons.LongDryWay 241 -1 1 1 1 233 1 241 4 4 3 0 241 0 1 1 1 0.00 0.00 0.00 2.01 1.86 0.80 0.31 241 1 1 1 1 3.30 135.66 35.75 0.00 0.00 0.00 0.00 241 2 1 1 1 1.54 155.29 21.03 0.00 0.00 0.00 0.00 241 3 1 1 1 1.23 186.79 54.13 0.00 0.00 0.00 0.00 241 4 1 1 1 0.31 18.58 65.90 0.00 0.00 0.00 0.00 242 -2 1 1 1 Series 242-root.Swildons.LongDryWay 242 -1 1 1 1 241 3 242 1 1 3 0 242 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 242 1 1 1 1 0.56 62.90 1.80 0.00 0.00 0.00 0.00 243 -2 1 1 1 Series 243-root.Swildons.LongDryWay 243 -1 1 1 1 241 3 243 1 1 3 0 243 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 243 1 1 1 1 1.21 117.59 24.03 0.00 0.00 0.00 0.00 244 -2 1 1 1 Series 244-root.Swildons.LongDryWay 244 -1 1 1 1 241 3 244 1 1 3 0 244 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 244 1 1 1 1 0.25 244.95 30.01 0.00 0.00 0.00 0.00 245 -2 1 1 1 Series 245-root.Swildons.LongDryWay 245 -1 1 1 1 222 1 245 3 3 3 0 245 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 245 1 1 1 1 7.82 270.23 -10.72 0.00 0.00 0.00 0.00 245 2 1 1 1 1.58 131.12 -54.76 0.00 0.00 0.00 0.00 245 3 1 1 1 1.17 358.20 20.74 0.00 0.00 0.00 0.00 246 -2 1 1 1 Series 246-root.Swildons.LongDryWay 246 -1 1 1 1 245 1 246 2 2 3 0 246 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 246 1 1 1 1 4.22 281.53 -3.82 0.00 0.00 0.00 0.00 246 2 1 1 1 2.17 186.00 77.31 0.00 0.00 0.00 0.00 247 -2 1 1 1 Series 247-root.Swildons.LongDryWay 247 -1 1 1 1 246 1 247 1 1 3 0 247 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 247 1 1 1 1 1.42 142.85 74.70 0.00 0.00 0.00 0.00 248 -2 1 1 1 Series 248-root.Swildons.LongDryWay 248 -1 1 1 1 246 1 248 1 1 3 0 248 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 248 1 1 1 1 0.92 145.63 -80.05 0.00 0.00 0.00 0.00 249 -2 1 1 1 Series 249-root.Swildons.LongDryWay 249 -1 1 1 1 246 1 249 1 1 3 0 249 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 249 1 1 1 1 1.03 170.00 2.41 0.00 0.00 0.00 0.00 250 -2 1 1 1 Series 250-root.Swildons.LongDryWay 250 -1 1 1 1 246 1 250 1 1 3 0 250 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 250 1 1 1 1 0.26 3.82 2.81 0.00 0.00 0.00 0.00 251 -2 1 1 1 Series 251-root.Swildons.LongDryWay 251 -1 1 1 1 245 2 251 1 1 3 0 251 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 251 1 1 1 1 1.04 278.14 44.73 0.00 0.00 0.00 0.00 252 -2 1 1 1 Series 252-root.Swildons.LongDryWay 252 -1 1 1 1 245 2 252 3 3 3 0 252 0 1 1 1 0.00 0.00 0.00 0.00 1.08 0.73 0.00 252 1 1 1 1 4.08 276.51 -22.89 0.00 0.00 0.00 0.00 252 2 1 1 1 1.62 125.96 7.41 0.00 0.00 0.00 0.00 252 3 1 1 1 0.43 202.15 77.03 0.00 0.00 0.00 0.00 253 -2 1 1 1 Series 253-root.Swildons.LongDryWay 253 -1 1 1 1 252 2 253 1 1 3 0 253 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 253 1 1 1 1 0.71 104.83 -84.42 0.00 0.00 0.00 0.00 254 -2 1 1 1 Series 254-root.Swildons.LongDryWay 254 -1 1 1 1 252 2 254 1 1 3 0 254 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 254 1 1 1 1 0.32 221.22 -13.13 0.00 0.00 0.00 0.00 255 -2 1 1 1 Series 255-root.Swildons.LongDryWay 255 -1 1 1 1 252 2 255 1 1 3 0 255 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 255 1 1 1 1 6.38 141.58 1.27 0.00 0.00 0.00 0.00 256 -2 1 1 1 Series 256-root.Swildons.LongDryWay 256 -1 1 1 1 252 2 256 1 1 3 0 256 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 256 1 1 1 1 9.20 141.93 0.28 0.00 0.00 0.00 0.00 257 -2 1 1 1 Series 257-root.Swildons.LongDryWay 257 -1 1 1 1 246 1 257 2 2 3 0 257 0 1 1 1 0.00 0.00 0.00 1.00 0.26 2.12 0.91 257 1 1 1 1 2.40 263.37 1.41 0.00 0.00 0.00 0.00 257 2 1 1 1 2.28 352.41 78.68 0.00 0.00 0.00 0.00 258 -2 1 1 1 Series 258-root.Swildons.LongDryWay 258 -1 1 1 1 257 1 258 1 1 3 0 258 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 258 1 1 1 1 0.71 356.69 -81.38 0.00 0.00 0.00 0.00 259 -2 1 1 1 Series 259-root.Swildons.LongDryWay 259 -1 1 1 1 257 1 259 1 1 3 0 259 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 259 1 1 1 1 3.78 140.45 -59.73 0.00 0.00 0.00 0.00 260 -2 1 1 1 Series 260-root.Swildons.LongDryWay 260 -1 1 1 1 257 1 260 1 1 3 0 260 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 260 1 1 1 1 0.52 196.62 -1.65 0.00 0.00 0.00 0.00 261 -2 1 1 1 Series 261-root.Swildons.LongDryWay 261 -1 1 1 1 257 1 261 1 1 3 0 261 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 261 1 1 1 1 0.89 18.36 9.05 0.00 0.00 0.00 0.00 262 -2 1 1 1 Series 262-root.Swildons.LongDryWay 262 -1 1 1 1 257 1 262 4 4 3 0 262 0 1 1 1 0.00 0.00 0.00 1.24 0.87 2.24 0.70 262 1 1 1 1 2.06 295.99 28.08 0.00 0.00 0.00 0.00 262 2 1 1 1 2.38 315.61 16.74 0.00 0.00 0.00 0.00 262 3 1 1 1 2.80 333.38 -5.36 0.00 0.00 0.00 0.00 262 4 1 1 1 0.66 154.46 88.10 0.00 0.00 0.00 0.00 263 -2 1 1 1 Series 263-root.Swildons.LongDryWay 263 -1 1 1 1 262 3 263 1 1 3 0 263 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 263 1 1 1 1 1.10 204.80 -87.82 0.00 0.00 0.00 0.00 264 -2 1 1 1 Series 264-root.Swildons.LongDryWay 264 -1 1 1 1 262 3 264 1 1 3 0 264 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 264 1 1 1 1 2.10 210.87 -9.20 0.00 0.00 0.00 0.00 265 -2 1 1 1 Series 265-root.Swildons.LongDryWay 265 -1 1 1 1 262 3 265 1 1 3 0 265 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 265 1 1 1 1 0.70 138.46 -4.62 0.00 0.00 0.00 0.00 266 -2 1 1 1 Series 266-root.Swildons.LongDryWay 266 -1 1 1 1 262 3 266 1 1 3 0 266 0 1 1 1 0.00 0.00 0.00 0.00 1.39 0.66 1.10 266 1 1 1 1 8.00 75.95 15.81 0.00 0.00 0.00 0.00 267 -2 1 1 1 Series 267-root.Swildons.LongDryWay 267 -1 1 1 1 262 3 267 3 3 3 0 267 0 1 1 1 0.00 0.00 0.00 1.39 0.00 0.66 1.10 267 1 1 1 1 2.99 250.16 -11.14 0.00 0.00 0.00 0.00 267 2 1 1 1 2.75 286.06 -14.31 0.00 0.00 0.00 0.00 267 3 1 1 1 1.25 355.34 51.33 0.00 0.00 0.00 0.00 268 -2 1 1 1 Series 268-root.Swildons.LongDryWay 268 -1 1 1 1 267 2 268 1 1 3 0 268 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 268 1 1 1 1 2.30 346.13 56.75 0.00 0.00 0.00 0.00 269 -2 1 1 1 Series 269-root.Swildons.LongDryWay 269 -1 1 1 1 267 2 269 1 1 3 0 269 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 269 1 1 1 1 4.84 -0.80 -70.83 0.00 0.00 0.00 0.00 270 -2 1 1 1 Series 270-root.Swildons.LongDryWay 270 -1 1 1 1 267 2 270 1 1 3 0 270 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 270 1 1 1 1 0.48 210.65 8.16 0.00 0.00 0.00 0.00 271 -2 1 1 1 Series 271-root.Swildons.LongDryWay 271 -1 1 1 1 267 2 271 1 1 3 0 271 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 271 1 1 1 1 1.78 0.59 0.72 0.00 0.00 0.00 0.00 272 -2 1 1 1 Series 272-root.Swildons.LongDryWay 272 -1 1 1 1 267 2 272 4 4 3 0 272 0 1 1 1 0.00 0.00 0.00 0.45 1.74 1.92 4.57 272 1 1 1 1 6.04 278.66 -11.16 0.00 0.00 0.00 0.00 272 2 1 1 1 4.72 166.16 -69.81 0.00 0.00 0.00 0.00 272 3 1 1 1 6.26 264.64 3.98 0.00 0.00 0.00 0.00 272 4 1 1 1 2.54 288.03 73.92 0.00 0.00 0.00 0.00 273 -2 1 1 1 Series 273-root.Swildons.LongDryWay 273 -1 1 1 1 272 3 273 1 1 3 0 273 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 273 1 1 1 1 0.77 135.99 -73.53 0.00 0.00 0.00 0.00 274 -2 1 1 1 Series 274-root.Swildons.LongDryWay 274 -1 1 1 1 272 3 274 1 1 3 0 274 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 274 1 1 1 1 2.05 154.35 1.05 0.00 0.00 0.00 0.00 275 -2 1 1 1 Series 275-root.Swildons.LongDryWay 275 -1 1 1 1 272 3 275 1 1 3 0 275 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 275 1 1 1 1 4.37 84.41 -33.48 0.00 0.00 0.00 0.00 276 -2 1 1 1 Series 276-root.Swildons.LongDryWay 276 -1 1 1 1 272 3 276 1 1 3 0 276 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 276 1 1 1 1 0.91 318.44 6.44 0.00 0.00 0.00 0.00 277 -2 1 1 1 Series 277-root.Swildons.LongDryWay 277 -1 1 1 1 272 3 277 2 2 3 0 277 0 1 1 1 0.00 0.00 0.00 2.05 0.88 2.44 0.74 277 1 1 1 1 5.34 219.71 -28.43 0.00 0.00 0.00 0.00 277 2 1 1 1 3.04 300.99 79.62 0.00 0.00 0.00 0.00 278 -2 1 1 1 Series 278-root.Swildons.LongDryWay 278 -1 1 1 1 277 1 278 1 1 3 0 278 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 278 1 1 1 1 0.68 131.36 -79.35 0.00 0.00 0.00 0.00 279 -2 1 1 1 Series 279-root.Swildons.LongDryWay 279 -1 1 1 1 277 1 279 1 1 3 0 279 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 279 1 1 1 1 1.86 143.00 3.09 0.00 0.00 0.00 0.00 280 -2 1 1 1 Series 280-root.Swildons.LongDryWay 280 -1 1 1 1 277 1 280 1 1 3 0 280 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 280 1 1 1 1 2.89 66.34 28.72 0.00 0.00 0.00 0.00 281 -2 1 1 1 Series 281-root.Swildons.LongDryWay 281 -1 1 1 1 277 1 281 1 1 3 0 281 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 281 1 1 1 1 2.49 84.23 13.93 0.00 0.00 0.00 0.00 282 -2 1 1 1 Series 282-root.Swildons.LongDryWay 282 -1 1 1 1 277 1 282 1 1 3 0 282 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 282 1 1 1 1 2.95 111.15 22.54 0.00 0.00 0.00 0.00 283 -2 1 1 1 Series 283-root.Swildons.LongDryWay 283 -1 1 1 1 277 1 283 1 1 3 0 283 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 283 1 1 1 1 1.83 206.04 8.62 0.00 0.00 0.00 0.00 284 -2 1 1 1 Series 284-root.Swildons.LongDryWay 284 -1 1 1 1 277 1 284 1 1 3 0 284 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 284 1 1 1 1 5.41 308.31 9.33 0.00 0.00 0.00 0.00 285 -2 1 1 1 Series 285-root.Swildons.LongDryWay 285 -1 1 1 1 277 1 285 1 1 3 0 285 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 285 1 1 1 1 4.71 351.65 -42.52 0.00 0.00 0.00 0.00 286 -2 1 1 1 Series 286-root.Swildons.LongDryWay 286 -1 1 1 1 277 1 286 1 1 3 0 286 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 286 1 1 1 1 5.28 235.67 -3.61 0.00 0.00 0.00 0.00 287 -2 1 1 1 Series 287-root.Swildons.LongDryWay 287 -1 1 1 1 277 1 287 1 1 3 0 287 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 287 1 1 1 1 5.32 271.28 -3.40 0.00 0.00 0.00 0.00 288 -2 1 1 1 Series 288-root.Swildons.LongDryWay 288 -1 1 1 1 277 1 288 1 1 3 0 288 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 288 1 1 1 1 3.22 6.42 23.97 0.00 0.00 0.00 0.00 289 -2 1 1 1 Series 289-root.Swildons.LongDryWay 289 -1 1 1 1 277 1 289 2 2 3 0 289 0 1 1 1 0.00 0.00 0.00 2.29 5.14 2.99 0.67 289 1 1 1 1 3.64 248.24 -18.27 0.00 0.00 0.00 0.00 289 2 1 1 1 2.91 96.98 33.34 0.00 0.00 0.00 0.00 290 -2 1 1 1 Series 290-root.Swildons.LongDryWay 290 -1 1 1 1 289 1 290 1 1 3 0 290 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 290 1 1 1 1 4.04 125.45 30.32 0.00 0.00 0.00 0.00 291 -2 1 1 1 Series 291-root.Swildons.LongDryWay 291 -1 1 1 1 289 1 291 1 1 3 0 291 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 291 1 1 1 1 3.55 151.96 27.64 0.00 0.00 0.00 0.00 292 -2 1 1 1 Series 292-root.Swildons.LongDryWay 292 -1 1 1 1 289 1 292 1 1 3 0 292 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 292 1 1 1 1 5.46 180.34 11.17 0.00 0.00 0.00 0.00 293 -2 1 1 1 Series 293-root.Swildons.LongDryWay 293 -1 1 1 1 289 1 293 1 1 3 0 293 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 293 1 1 1 1 2.54 9.05 -16.02 0.00 0.00 0.00 0.00 294 -2 1 1 1 Series 294-root.Swildons.LongDryWay 294 -1 1 1 1 289 1 294 1 1 3 0 294 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 294 1 1 1 1 3.08 22.07 -10.67 0.00 0.00 0.00 0.00 295 -2 1 1 1 Series 295-root.Swildons.LongDryWay 295 -1 1 1 1 289 1 295 1 1 3 0 295 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 295 1 1 1 1 4.51 195.25 -31.47 0.00 0.00 0.00 0.00 296 -2 1 1 1 Series 296-root.Swildons.LongDryWay 296 -1 1 1 1 289 1 296 3 3 3 0 296 0 1 1 1 0.00 0.00 0.00 3.49 1.16 1.60 2.35 296 1 1 1 1 6.14 186.37 -36.35 0.00 0.00 0.00 0.00 296 2 1 1 1 1.04 30.01 -42.73 0.00 0.00 0.00 0.00 296 3 1 1 1 5.53 283.25 86.05 0.00 0.00 0.00 0.00 297 -2 1 1 1 Series 297-root.Swildons.ShortDryWay.pt1 297 -1 1 1 1 121 1 297 2 2 3 0 297 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 297 1 1 1 1 1.43 129.98 -13.25 0.00 0.00 0.00 0.00 297 2 1 1 1 1.42 309.44 12.80 0.00 0.00 0.00 0.00 298 -2 1 1 1 Series 298-root.Swildons.ShortDryWay.pt1 298 -1 1 1 1 297 1 298 1 1 3 0 298 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 298 1 1 1 1 0.58 325.70 -0.57 0.00 0.00 0.00 0.00 299 -2 1 1 1 Series 299-root.Swildons.ShortDryWay.pt1 299 -1 1 1 1 297 1 299 1 1 3 0 299 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 299 1 1 1 1 0.50 256.93 -34.18 0.00 0.00 0.00 0.00 300 -2 1 1 1 Series 300-root.Swildons.ShortDryWay.pt1 300 -1 1 1 1 297 1 300 1 1 3 0 300 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 300 1 1 1 1 0.94 169.50 -6.41 0.00 0.00 0.00 0.00 301 -2 1 1 1 Series 301-root.Swildons.ShortDryWay.pt1 301 -1 1 1 1 297 1 301 2 2 3 0 301 0 1 1 1 0.00 0.00 0.00 0.41 0.87 0.00 0.28 301 1 1 1 1 3.89 71.66 -51.63 0.00 0.00 0.00 0.00 301 2 1 1 1 3.91 251.14 52.00 0.00 0.00 0.00 0.00 302 -2 1 1 1 Series 302-root.Swildons.ShortDryWay.pt1 302 -1 1 1 1 301 1 302 1 1 3 0 302 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 302 1 1 1 1 2.44 238.36 47.81 0.00 0.00 0.00 0.00 303 -2 1 1 1 Series 303-root.Swildons.ShortDryWay.pt1 303 -1 1 1 1 301 1 303 1 1 3 0 303 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 303 1 1 1 1 0.91 251.09 -4.04 0.00 0.00 0.00 0.00 304 -2 1 1 1 Series 304-root.Swildons.ShortDryWay.pt1 304 -1 1 1 1 301 1 304 1 1 3 0 304 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 304 1 1 1 1 0.80 248.68 -35.24 0.00 0.00 0.00 0.00 305 -2 1 1 1 Series 305-root.Swildons.20 305 -1 1 1 1 301 1 305 2 2 3 0 305 0 1 1 1 0.00 0.00 0.00 0.00 1.63 1.81 0.46 305 1 1 1 1 4.50 169.09 19.68 0.00 0.00 0.00 0.00 305 2 1 1 1 1.54 356.49 82.08 0.00 0.00 0.00 0.00 306 -2 1 1 1 Series 306-root.Swildons.ShortDryWay.pt1 306 -1 1 1 1 305 1 306 1 1 3 0 306 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 306 1 1 1 1 0.94 168.81 -79.46 0.00 0.00 0.00 0.00 307 -2 1 1 1 Series 307-root.Swildons.ShortDryWay.pt1 307 -1 1 1 1 305 1 307 1 1 3 0 307 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 307 1 1 1 1 0.46 69.76 -4.30 0.00 0.00 0.00 0.00 308 -2 1 1 1 Series 308-root.Swildons.ShortDryWay.pt1 308 -1 1 1 1 305 1 308 1 1 3 0 308 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 308 1 1 1 1 0.45 218.75 -6.59 0.00 0.00 0.00 0.00 309 -2 1 1 1 Series 309-root.Swildons.ShortDryWay.pt1 309 -1 1 1 1 305 1 309 1 1 3 0 309 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 309 1 1 1 1 4.46 348.87 -20.39 0.00 0.00 0.00 0.00 310 -2 1 1 1 Series 310-root.Swildons.ShortDryWay.pt1 310 -1 1 1 1 305 1 310 1 1 3 0 310 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 310 1 1 1 1 0.39 250.00 -13.19 0.00 0.00 0.00 0.00 311 -2 1 1 1 Series 311-root.Swildons.ShortDryWay.pt1 311 -1 1 1 1 305 1 311 2 2 3 0 311 0 1 1 1 0.00 0.00 0.00 0.31 0.26 1.53 0.92 311 1 1 1 1 1.11 244.86 -14.16 0.00 0.00 0.00 0.00 311 2 1 1 1 0.60 344.30 65.79 0.00 0.00 0.00 0.00 312 -2 1 1 1 Series 312-root.Swildons.ShortDryWay.pt1 312 -1 1 1 1 311 1 312 1 1 3 0 312 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 312 1 1 1 1 0.68 210.50 -85.64 0.00 0.00 0.00 0.00 313 -2 1 1 1 Series 313-root.Swildons.ShortDryWay.pt1 313 -1 1 1 1 311 1 313 1 1 3 0 313 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 313 1 1 1 1 0.28 3.08 4.35 0.00 0.00 0.00 0.00 314 -2 1 1 1 Series 314-root.Swildons.ShortDryWay.pt1 314 -1 1 1 1 311 1 314 1 1 3 0 314 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 314 1 1 1 1 2.84 293.25 -9.50 0.00 0.00 0.00 0.00 315 -2 1 1 1 Series 315-root.Swildons.ShortDryWay.pt1 315 -1 1 1 1 301 1 315 2 2 3 0 315 0 1 1 1 0.00 0.00 0.00 1.63 0.00 1.81 0.46 315 1 1 1 1 4.91 322.03 2.34 0.00 0.00 0.00 0.00 315 2 1 1 1 1.68 225.64 67.16 0.00 0.00 0.00 0.00 316 -2 1 1 1 Series 316-root.Swildons.ShortDryWay.pt1 316 -1 1 1 1 315 1 316 1 1 3 0 316 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 316 1 1 1 1 0.87 45.14 -82.61 0.00 0.00 0.00 0.00 317 -2 1 1 1 Series 317-root.Swildons.ShortDryWay.pt1 317 -1 1 1 1 315 1 317 1 1 3 0 317 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 317 1 1 1 1 4.91 142.10 -2.57 0.00 0.00 0.00 0.00 318 -2 1 1 1 Series 318-root.Swildons.ShortDryWay.pt1 318 -1 1 1 1 315 1 318 1 1 3 0 318 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 318 1 1 1 1 0.74 234.52 -6.85 0.00 0.00 0.00 0.00 319 -2 1 1 1 Series 319-root.Swildons.ShortDryWay.pt1 319 -1 1 1 1 315 1 319 1 1 3 0 319 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 319 1 1 1 1 1.03 101.76 -8.81 0.00 0.00 0.00 0.00 320 -2 1 1 1 Series 320-root.Swildons.ShortDryWay.pt1 320 -1 1 1 1 315 1 320 1 1 3 0 320 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 320 1 1 1 1 2.18 147.20 -2.53 0.00 0.00 0.00 0.00 321 -2 1 1 1 Series 321-root.Swildons.ShortDryWay.pt1 321 -1 1 1 1 315 1 321 2 2 3 0 321 0 1 1 1 0.00 0.00 0.00 1.00 0.32 1.55 0.86 321 1 1 1 1 5.05 277.72 -25.23 0.00 0.00 0.00 0.00 321 2 1 1 1 2.83 14.64 74.62 0.00 0.00 0.00 0.00 322 -2 1 1 1 Series 322-root.Swildons.ShortDryWay.pt1 322 -1 1 1 1 321 1 322 1 1 3 0 322 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 322 1 1 1 1 1.16 109.63 -85.03 0.00 0.00 0.00 0.00 323 -2 1 1 1 Series 323-root.Swildons.ShortDryWay.pt1 323 -1 1 1 1 321 1 323 1 1 3 0 323 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 323 1 1 1 1 5.05 97.64 25.32 0.00 0.00 0.00 0.00 324 -2 1 1 1 Series 324-root.Swildons.ShortDryWay.pt1 324 -1 1 1 1 321 1 324 1 1 3 0 324 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 324 1 1 1 1 0.58 33.16 1.49 0.00 0.00 0.00 0.00 325 -2 1 1 1 Series 325-root.Swildons.ShortDryWay.pt1 325 -1 1 1 1 321 1 325 1 1 3 0 325 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 325 1 1 1 1 2.60 97.42 2.63 0.00 0.00 0.00 0.00 326 -2 1 1 1 Series 326-root.Swildons.ShortDryWay.pt1 326 -1 1 1 1 321 1 326 1 1 3 0 326 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 326 1 1 1 1 2.79 103.46 4.91 0.00 0.00 0.00 0.00 327 -2 1 1 1 Series 327-root.Swildons.ShortDryWay.pt1 327 -1 1 1 1 321 1 327 2 2 3 0 327 0 1 1 1 0.00 0.00 0.00 0.00 1.25 2.73 1.16 327 1 1 1 1 5.02 334.73 -13.85 0.00 0.00 0.00 0.00 327 2 1 1 1 3.73 252.80 80.33 0.00 0.00 0.00 0.00 328 -2 1 1 1 Series 328-root.Swildons.ShortDryWay.pt1 328 -1 1 1 1 327 1 328 1 1 3 0 328 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 328 1 1 1 1 0.54 180.78 -84.02 0.00 0.00 0.00 0.00 329 -2 1 1 1 Series 329-root.Swildons.ShortDryWay.pt1 329 -1 1 1 1 327 1 329 1 1 3 0 329 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 329 1 1 1 1 2.55 326.76 -82.67 0.00 0.00 0.00 0.00 330 -2 1 1 1 Series 330-root.Swildons.ShortDryWay.pt1 330 -1 1 1 1 327 1 330 1 1 3 0 330 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 330 1 1 1 1 5.00 155.24 13.29 0.00 0.00 0.00 0.00 331 -2 1 1 1 Series 331-root.Swildons.ShortDryWay.pt1 331 -1 1 1 1 327 1 331 1 1 3 0 331 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 331 1 1 1 1 0.41 230.14 -3.06 0.00 0.00 0.00 0.00 332 -2 1 1 1 Series 332-root.Swildons.ShortDryWay.pt1 332 -1 1 1 1 327 1 332 2 2 3 0 332 0 1 1 1 0.00 0.00 0.00 0.41 0.00 3.68 0.54 332 1 1 1 1 3.19 301.45 -33.11 0.00 0.00 0.00 0.00 332 2 1 1 1 4.46 351.72 80.60 0.00 0.00 0.00 0.00 333 -2 1 1 1 Series 333-root.Swildons.ShortDryWay.pt1 333 -1 1 1 1 332 1 333 1 1 3 0 333 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 333 1 1 1 1 1.45 222.77 -78.95 0.00 0.00 0.00 0.00 334 -2 1 1 1 Series 334-root.Swildons.ShortDryWay.pt1 334 -1 1 1 1 332 1 334 1 1 3 0 334 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 334 1 1 1 1 3.21 121.38 33.05 0.00 0.00 0.00 0.00 335 -2 1 1 1 Series 335-root.Swildons.ShortDryWay.pt1 335 -1 1 1 1 332 1 335 1 1 3 0 335 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 335 1 1 1 1 0.53 21.44 -5.56 0.00 0.00 0.00 0.00 336 -2 1 1 1 Series 336-root.Swildons.ShortDryWay.pt1 336 -1 1 1 1 332 1 336 1 1 3 0 336 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 336 1 1 1 1 1.87 70.45 1.35 0.00 0.00 0.00 0.00 337 -2 1 1 1 Series 337-root.Swildons.ShortDryWay.pt1 337 -1 1 1 1 332 1 337 2 2 3 0 337 0 1 1 1 0.00 0.00 0.00 0.00 1.37 4.40 1.42 337 1 1 1 1 6.71 294.06 -12.15 0.00 0.00 0.00 0.00 337 2 1 1 1 1.16 243.21 81.25 0.00 0.00 0.00 0.00 338 -2 1 1 1 Series 338-root.Swildons.ShortDryWay.pt1 338 -1 1 1 1 337 1 338 1 1 3 0 338 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 338 1 1 1 1 1.09 200.00 -76.54 0.00 0.00 0.00 0.00 339 -2 1 1 1 Series 339-root.Swildons.ShortDryWay.pt1 339 -1 1 1 1 337 1 339 1 1 3 0 339 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 339 1 1 1 1 6.72 113.92 11.83 0.00 0.00 0.00 0.00 340 -2 1 1 1 Series 340-root.Swildons.ShortDryWay.pt1 340 -1 1 1 1 337 1 340 1 1 3 0 340 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 340 1 1 1 1 0.56 194.85 2.10 0.00 0.00 0.00 0.00 341 -2 1 1 1 Series 341-root.Swildons.ShortDryWay.pt1 341 -1 1 1 1 337 1 341 1 1 3 0 341 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 341 1 1 1 1 3.56 115.95 -4.92 0.00 0.00 0.00 0.00 342 -2 1 1 1 Series 342-root.Swildons.ShortDryWay.pt1 342 -1 1 1 1 337 1 342 2 2 3 0 342 0 1 1 1 0.00 0.00 0.00 1.02 0.00 1.15 1.06 342 1 1 1 1 1.11 264.30 2.35 0.00 0.00 0.00 0.00 342 2 1 1 1 0.84 102.22 84.38 0.00 0.00 0.00 0.00 343 -2 1 1 1 Series 343-root.Swildons.ShortDryWay.pt1 343 -1 1 1 1 342 1 343 1 1 3 0 343 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 343 1 1 1 1 1.16 86.55 -83.85 0.00 0.00 0.00 0.00 344 -2 1 1 1 Series 344-root.Swildons.ShortDryWay.pt1 344 -1 1 1 1 342 1 344 1 1 3 0 344 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 344 1 1 1 1 1.10 85.24 -3.67 0.00 0.00 0.00 0.00 345 -2 1 1 1 Series 345-root.Swildons.ShortDryWay.pt1 345 -1 1 1 1 342 1 345 1 1 3 0 345 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 345 1 1 1 1 0.45 24.62 1.63 0.00 0.00 0.00 0.00 346 -2 1 1 1 Series 346-root.Swildons.ShortDryWay.pt1 346 -1 1 1 1 342 1 346 2 2 3 0 346 0 1 1 1 0.00 0.00 0.00 0.00 0.45 0.84 1.15 346 1 1 1 1 4.30 321.59 3.80 0.00 0.00 0.00 0.00 346 2 1 1 1 2.07 236.36 81.23 0.00 0.00 0.00 0.00 347 -2 1 1 1 Series 347-root.Swildons.ShortDryWay.pt1 347 -1 1 1 1 346 1 347 1 1 3 0 347 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 347 1 1 1 1 1.72 202.52 -67.89 0.00 0.00 0.00 0.00 348 -2 1 1 1 Series 348-root.Swildons.ShortDryWay.pt1 348 -1 1 1 1 346 1 348 1 1 3 0 348 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 348 1 1 1 1 4.28 141.83 -4.52 0.00 0.00 0.00 0.00 349 -2 1 1 1 Series 349-root.Swildons.ShortDryWay.pt1 349 -1 1 1 1 346 1 349 1 1 3 0 349 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 349 1 1 1 1 0.57 211.18 2.62 0.00 0.00 0.00 0.00 350 -2 1 1 1 Series 350-root.Swildons.ShortDryWay.pt1 350 -1 1 1 1 346 1 350 2 2 3 0 350 0 1 1 1 0.00 0.00 0.00 0.64 0.00 2.05 1.59 350 1 1 1 1 3.28 274.36 -17.30 0.00 0.00 0.00 0.00 350 2 1 1 1 1.79 344.18 78.34 0.00 0.00 0.00 0.00 351 -2 1 1 1 Series 351-root.Swildons.ShortDryWay.pt1 351 -1 1 1 1 350 1 351 1 1 3 0 351 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 351 1 1 1 1 0.81 126.42 -86.09 0.00 0.00 0.00 0.00 352 -2 1 1 1 Series 352-root.Swildons.ShortDryWay.pt1 352 -1 1 1 1 350 1 352 1 1 3 0 352 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 352 1 1 1 1 3.28 94.71 17.39 0.00 0.00 0.00 0.00 353 -2 1 1 1 Series 353-root.Swildons.ShortDryWay.pt1 353 -1 1 1 1 350 1 353 1 1 3 0 353 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 353 1 1 1 1 0.52 16.10 -1.02 0.00 0.00 0.00 0.00 354 -2 1 1 1 Series 354-root.Swildons.ShortDryWay.pt1 354 -1 1 1 1 350 1 354 2 2 3 0 354 0 1 1 1 0.00 0.00 0.00 0.00 0.52 1.75 0.81 354 1 1 1 1 4.68 296.37 -3.29 0.00 0.00 0.00 0.00 354 2 1 1 1 0.38 15.48 84.09 0.00 0.00 0.00 0.00 355 -2 1 1 1 Series 355-root.Swildons.ShortDryWay.pt1 355 -1 1 1 1 354 1 355 1 1 3 0 355 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 355 1 1 1 1 2.72 320.06 70.91 0.00 0.00 0.00 0.00 356 -2 1 1 1 Series 356-root.Swildons.ShortDryWay.pt1 356 -1 1 1 1 354 1 356 1 1 3 0 356 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 356 1 1 1 1 0.72 156.99 -86.15 0.00 0.00 0.00 0.00 357 -2 1 1 1 Series 357-root.Swildons.ShortDryWay.pt1 357 -1 1 1 1 354 1 357 1 1 3 0 357 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 357 1 1 1 1 4.68 116.76 3.00 0.00 0.00 0.00 0.00 358 -2 1 1 1 Series 358-root.Swildons.ShortDryWay.pt1 358 -1 1 1 1 354 1 358 1 1 3 0 358 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 358 1 1 1 1 0.57 32.97 -3.75 0.00 0.00 0.00 0.00 359 -2 1 1 1 Series 359-root.Swildons.ShortDryWay.pt2 359 -1 1 1 1 354 1 359 3 3 3 0 359 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 359 1 1 1 1 3.20 315.03 0.98 0.00 0.00 0.00 0.00 359 2 1 1 1 7.10 307.21 -15.08 0.00 0.00 0.00 0.00 359 3 1 1 1 2.89 348.15 82.91 0.00 0.00 0.00 0.00 360 -2 1 1 1 Series 360-root.Swildons.ShortDryWay.pt2 360 -1 1 1 1 359 2 360 1 1 3 0 360 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 360 1 1 1 1 0.88 177.91 -65.42 0.00 0.00 0.00 0.00 361 -2 1 1 1 Series 361-root.Swildons.ShortDryWay.pt2 361 -1 1 1 1 359 2 361 1 1 3 0 361 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 361 1 1 1 1 7.10 126.92 14.54 0.00 0.00 0.00 0.00 362 -2 1 1 1 Series 362-root.Swildons.ShortDryWay.pt2 362 -1 1 1 1 359 2 362 1 1 3 0 362 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 362 1 1 1 1 0.66 193.25 1.13 0.00 0.00 0.00 0.00 363 -2 1 1 1 Series 363-root.Swildons.LongDryWay 363 -1 1 1 1 359 2 277 1 1 3 0 363 0 1 1 1 0.00 0.00 0.00 0.65 0.00 2.87 0.80 363 1 1 1 1 4.24 277.28 -12.53 0.00 0.00 0.00 0.00 364 -2 1 1 1 Series 364-root.Swildons.NewGrottoes 364 -1 1 1 1 233 1 364 2 2 3 0 364 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 364 1 1 1 1 1.56 47.73 7.27 0.00 0.00 0.00 0.00 364 2 1 1 1 0.40 269.59 77.61 0.00 0.00 0.00 0.00 365 -2 1 1 1 Series 365-root.Swildons.NewGrottoes 365 -1 1 1 1 364 1 365 1 1 3 0 365 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 365 1 1 1 1 0.56 41.89 51.47 0.00 0.00 0.00 0.00 366 -2 1 1 1 Series 366-root.Swildons.NewGrottoes 366 -1 1 1 1 364 1 366 1 1 3 0 366 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 366 1 1 1 1 0.73 253.01 -87.94 0.00 0.00 0.00 0.00 367 -2 1 1 1 Series 367-root.Swildons.NewGrottoes 367 -1 1 1 1 364 1 367 1 1 3 0 367 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 367 1 1 1 1 0.50 329.53 9.17 0.00 0.00 0.00 0.00 368 -2 1 1 1 Series 368-root.Swildons.NewGrottoes 368 -1 1 1 1 364 1 368 1 1 3 0 368 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 368 1 1 1 1 0.61 350.39 40.11 0.00 0.00 0.00 0.00 369 -2 1 1 1 Series 369-root.Swildons.NewGrottoes 369 -1 1 1 1 364 1 369 2 2 3 0 369 0 1 1 1 0.00 0.00 0.00 0.42 0.08 0.39 0.73 369 1 1 1 1 1.75 8.90 51.20 0.00 0.00 0.00 0.00 369 2 1 1 1 0.70 149.33 76.26 0.00 0.00 0.00 0.00 370 -2 1 1 1 Series 370-root.Swildons.NewGrottoes 370 -1 1 1 1 369 1 370 1 1 3 0 370 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 370 1 1 1 1 1.76 188.13 -51.66 0.00 0.00 0.00 0.00 371 -2 1 1 1 Series 371-root.Swildons.NewGrottoes 371 -1 1 1 1 369 1 371 1 1 3 0 371 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 371 1 1 1 1 0.88 337.02 -79.23 0.00 0.00 0.00 0.00 372 -2 1 1 1 Series 372-root.Swildons.NewGrottoes 372 -1 1 1 1 369 1 372 1 1 3 0 372 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 372 1 1 1 1 0.29 256.87 0.35 0.00 0.00 0.00 0.00 373 -2 1 1 1 Series 373-root.Swildons.NewGrottoes 373 -1 1 1 1 369 1 373 2 2 3 0 373 0 1 1 1 0.00 0.00 0.00 0.29 0.00 0.68 0.86 373 1 1 1 1 4.07 345.89 12.12 0.00 0.00 0.00 0.00 373 2 1 1 1 0.41 82.41 87.54 0.00 0.00 0.00 0.00 374 -2 1 1 1 Series 374-root.Swildons.NewGrottoes 374 -1 1 1 1 373 1 374 1 1 3 0 374 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 374 1 1 1 1 0.44 214.42 -86.92 0.00 0.00 0.00 0.00 375 -2 1 1 1 Series 375-root.Swildons.NewGrottoes 375 -1 1 1 1 373 1 375 1 1 3 0 375 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 375 1 1 1 1 1.83 346.26 14.57 0.00 0.00 0.00 0.00 376 -2 1 1 1 Series 376-root.Swildons.NewGrottoes 376 -1 1 1 1 373 1 376 1 1 3 0 376 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 376 1 1 1 1 0.96 248.61 -6.20 0.00 0.00 0.00 0.00 377 -2 1 1 1 Series 377-root.Swildons.NewGrottoes 377 -1 1 1 1 373 1 377 1 1 3 0 377 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 377 1 1 1 1 4.11 167.52 -12.51 0.00 0.00 0.00 0.00 378 -2 1 1 1 Series 378-root.Swildons.NewGrottoes 378 -1 1 1 1 373 1 378 1 1 3 0 378 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 378 1 1 1 1 4.10 167.50 -12.74 0.00 0.00 0.00 0.00 379 -2 1 1 1 Series 379-root.Swildons.NewGrottoes 379 -1 1 1 1 373 1 379 1 1 3 0 379 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 379 1 1 1 1 0.82 147.09 -10.96 0.00 0.00 0.00 0.00 380 -2 1 1 1 Series 380-root.Swildons.NewGrottoes 380 -1 1 1 1 373 1 380 1 1 3 0 380 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 380 1 1 1 1 1.22 188.67 -16.89 0.00 0.00 0.00 0.00 381 -2 1 1 1 Series 381-root.Swildons.NewGrottoes 381 -1 1 1 1 373 1 381 2 2 3 0 381 0 1 1 1 0.00 0.00 0.00 0.92 0.62 0.41 0.44 381 1 1 1 1 3.62 48.97 25.22 0.00 0.00 0.00 0.00 381 2 1 1 1 0.89 59.48 -81.94 0.00 0.00 0.00 0.00 382 -2 1 1 1 Series 382-root.Swildons.NewGrottoes 382 -1 1 1 1 381 1 382 1 1 3 0 382 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 382 1 1 1 1 0.43 346.47 4.44 0.00 0.00 0.00 0.00 383 -2 1 1 1 Series 383-root.Swildons.NewGrottoes 383 -1 1 1 1 381 1 383 1 1 3 0 383 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 383 1 1 1 1 2.11 343.19 -7.61 0.00 0.00 0.00 0.00 384 -2 1 1 1 Series 384-root.Swildons.NewGrottoes 384 -1 1 1 1 381 1 384 1 1 3 0 384 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 384 1 1 1 1 3.63 228.80 -25.57 0.00 0.00 0.00 0.00 385 -2 1 1 1 Series 385-root.Swildons.NewGrottoes 385 -1 1 1 1 381 1 385 1 1 3 0 385 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 385 1 1 1 1 1.63 168.89 -5.86 0.00 0.00 0.00 0.00 386 -2 1 1 1 Series 386-root.Swildons.NewGrottoes 386 -1 1 1 1 381 1 386 2 2 3 0 386 0 1 1 1 0.00 0.00 0.00 2.01 1.51 0.00 0.88 386 1 1 1 1 3.25 66.04 12.62 0.00 0.00 0.00 0.00 386 2 1 1 1 0.25 322.03 84.61 0.00 0.00 0.00 0.00 387 -2 1 1 1 Series 387-root.Swildons.NewGrottoes 387 -1 1 1 1 386 1 387 1 1 3 0 387 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 387 1 1 1 1 0.77 221.05 -84.36 0.00 0.00 0.00 0.00 388 -2 1 1 1 Series 388-root.Swildons.NewGrottoes 388 -1 1 1 1 386 1 388 1 1 3 0 388 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 388 1 1 1 1 3.28 245.51 -13.26 0.00 0.00 0.00 0.00 389 -2 1 1 1 Series 389-root.Swildons.NewGrottoes 389 -1 1 1 1 386 1 389 1 1 3 0 389 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 389 1 1 1 1 2.13 329.27 -6.07 0.00 0.00 0.00 0.00 390 -2 1 1 1 Series 390-root.Swildons.NewGrottoes 390 -1 1 1 1 386 1 390 1 1 3 0 390 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 390 1 1 1 1 0.95 168.83 5.78 0.00 0.00 0.00 0.00 391 -2 1 1 1 Series 391-root.Swildons.NewGrottoes 391 -1 1 1 1 386 1 391 2 2 3 0 391 0 1 1 1 0.00 0.00 0.00 2.12 0.90 0.25 0.77 391 1 1 1 1 3.45 54.94 19.52 0.00 0.00 0.00 0.00 391 2 1 1 1 0.56 70.00 -87.16 0.00 0.00 0.00 0.00 392 -2 1 1 1 Series 392-root.Swildons.NewGrottoes 392 -1 1 1 1 391 1 392 1 1 3 0 392 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 392 1 1 1 1 0.62 340.22 -3.41 0.00 0.00 0.00 0.00 393 -2 1 1 1 Series 393-root.Swildons.NewGrottoes 393 -1 1 1 1 391 1 393 1 1 3 0 393 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 393 1 1 1 1 2.44 123.07 10.45 0.00 0.00 0.00 0.00 394 -2 1 1 1 Series 394-root.Swildons.NewGrottoes 394 -1 1 1 1 391 1 394 1 1 3 0 394 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 394 1 1 1 1 1.87 104.59 14.43 0.00 0.00 0.00 0.00 395 -2 1 1 1 Series 395-root.Swildons.NewGrottoes 395 -1 1 1 1 391 1 395 1 1 3 0 395 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 395 1 1 1 1 3.49 236.31 -19.53 0.00 0.00 0.00 0.00 396 -2 1 1 1 Series 396-root.Swildons.NewGrottoes 396 -1 1 1 1 391 1 396 1 1 3 0 396 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 396 1 1 1 1 1.42 152.44 -15.19 0.00 0.00 0.00 0.00 397 -2 1 1 1 Series 397-root.Swildons.NewGrottoes 397 -1 1 1 1 391 1 397 1 1 3 0 397 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 397 1 1 1 1 2.15 232.26 -20.79 0.00 0.00 0.00 0.00 398 -2 1 1 1 Series 398-root.Swildons.NewGrottoes 398 -1 1 1 1 391 1 398 1 1 3 0 398 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 398 1 1 1 1 4.02 166.91 2.89 0.00 0.00 0.00 0.00 399 -2 1 1 1 Series 399-root.Swildons.NewGrottoes 399 -1 1 1 1 391 1 399 1 1 3 0 399 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 399 1 1 1 1 2.75 180.92 1.05 0.00 0.00 0.00 0.00 400 -2 1 1 1 Series 400-root.Swildons.NewGrottoes 400 -1 1 1 1 391 1 400 2 2 3 0 400 0 1 1 1 0.00 0.00 0.00 0.52 3.62 0.00 0.56 400 1 1 1 1 1.42 150.32 -12.13 0.00 0.00 0.00 0.00 400 2 1 1 1 0.89 352.98 85.36 0.00 0.00 0.00 0.00 401 -2 1 1 1 Series 401-root.Swildons.NewGrottoes 401 -1 1 1 1 400 1 401 1 1 3 0 401 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 401 1 1 1 1 0.44 26.70 -87.65 0.00 0.00 0.00 0.00 402 -2 1 1 1 Series 402-root.Swildons.NewGrottoes 402 -1 1 1 1 400 1 402 1 1 3 0 402 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 402 1 1 1 1 1.42 328.03 11.34 0.00 0.00 0.00 0.00 403 -2 1 1 1 Series 403-root.Swildons.NewGrottoes 403 -1 1 1 1 400 1 403 1 1 3 0 403 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 403 1 1 1 1 1.55 40.44 39.53 0.00 0.00 0.00 0.00 404 -2 1 1 1 Series 404-root.Swildons.NewGrottoes 404 -1 1 1 1 400 1 404 1 1 3 0 404 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 404 1 1 1 1 3.00 178.92 4.65 0.00 0.00 0.00 0.00 405 -2 1 1 1 Series 405-root.Swildons.NewGrottoes 405 -1 1 1 1 400 1 405 1 1 3 0 405 0 1 1 1 0.00 0.00 0.00 1.16 2.64 0.89 0.44 405 1 1 1 1 6.30 83.28 26.43 0.00 0.00 0.00 0.00 406 -2 1 1 1 Series 406-root.Swildons.OldGrotto2WC 406 -1 1 1 1 277 1 406 2 2 3 0 406 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 406 1 1 1 1 3.32 23.40 -14.33 0.00 0.00 0.00 0.00 406 2 1 1 1 3.26 204.78 14.30 0.00 0.00 0.00 0.00 407 -2 1 1 1 Series 407-root.Swildons.OldGrotto2WC 407 -1 1 1 1 406 1 407 1 1 3 0 407 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 407 1 1 1 1 0.76 173.14 -0.38 0.00 0.00 0.00 0.00 408 -2 1 1 1 Series 408-root.Swildons.OldGrotto2WC 408 -1 1 1 1 406 1 408 1 1 3 0 408 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 408 1 1 1 1 2.49 217.88 -12.94 0.00 0.00 0.00 0.00 409 -2 1 1 1 Series 409-root.Swildons.OldGrotto2WC 409 -1 1 1 1 406 1 409 1 1 3 0 409 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 409 1 1 1 1 0.98 313.40 -8.83 0.00 0.00 0.00 0.00 410 -2 1 1 1 Series 410-root.Swildons.OldGrotto2WC 410 -1 1 1 1 406 1 410 1 1 3 0 410 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 410 1 1 1 1 1.90 278.59 -27.03 0.00 0.00 0.00 0.00 411 -2 1 1 1 Series 411-root.Swildons.OldGrotto2WC 411 -1 1 1 1 406 1 411 2 2 3 0 411 0 1 1 1 0.00 0.00 0.00 2.39 0.00 0.00 0.86 411 1 1 1 1 5.70 253.64 -30.20 0.00 0.00 0.00 0.00 411 2 1 1 1 1.22 218.57 80.94 0.00 0.00 0.00 0.00 412 -2 1 1 1 Series 412-root.Swildons.OldGrotto2WC 412 -1 1 1 1 411 1 412 1 1 3 0 412 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 412 1 1 1 1 1.14 197.09 -82.80 0.00 0.00 0.00 0.00 413 -2 1 1 1 Series 413-root.Swildons.OldGrotto2WC 413 -1 1 1 1 411 1 413 1 1 3 0 413 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 413 1 1 1 1 5.71 72.47 29.84 0.00 0.00 0.00 0.00 414 -2 1 1 1 Series 414-root.Swildons.OldGrotto2WC 414 -1 1 1 1 411 1 414 1 1 3 0 414 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 414 1 1 1 1 1.06 160.89 -1.36 0.00 0.00 0.00 0.00 415 -2 1 1 1 Series 415-root.Swildons.OldGrotto2WC 415 -1 1 1 1 411 1 415 1 1 3 0 415 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 415 1 1 1 1 0.39 331.26 1.22 0.00 0.00 0.00 0.00 416 -2 1 1 1 Series 416-root.Swildons.OldGrotto2WC 416 -1 1 1 1 411 1 416 2 2 3 0 416 0 1 1 1 0.00 0.00 0.00 0.97 0.38 1.20 1.13 416 1 1 1 1 3.09 199.90 -10.26 0.00 0.00 0.00 0.00 416 2 1 1 1 0.32 232.85 85.69 0.00 0.00 0.00 0.00 417 -2 1 1 1 Series 417-root.Swildons.OldGrotto2WC 417 -1 1 1 1 416 1 417 1 1 3 0 417 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 417 1 1 1 1 0.93 282.44 -86.47 0.00 0.00 0.00 0.00 418 -2 1 1 1 Series 418-root.Swildons.OldGrotto2WC 418 -1 1 1 1 416 1 418 1 1 3 0 418 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 418 1 1 1 1 3.10 18.49 10.18 0.00 0.00 0.00 0.00 419 -2 1 1 1 Series 419-root.Swildons.OldGrotto2WC 419 -1 1 1 1 416 1 419 1 1 3 0 419 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 419 1 1 1 1 0.93 73.72 -2.53 0.00 0.00 0.00 0.00 420 -2 1 1 1 Series 420-root.Swildons.OldGrotto2WC 420 -1 1 1 1 416 1 420 1 1 3 0 420 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 420 1 1 1 1 1.30 261.94 -6.52 0.00 0.00 0.00 0.00 421 -2 1 1 1 Series 421-root.Swildons.LongDryWay 421 -1 1 1 1 416 1 296 2 1 3 0 421 0 1 1 1 0.00 0.00 0.00 0.88 1.27 0.32 0.93 421 1 1 1 1 4.55 163.09 -15.92 0.00 0.00 0.00 0.00 422 -2 1 1 1 Series 422-root.Swildons.OldGrotto2WC 422 -1 1 1 1 296 2 422 1 1 3 0 422 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 422 1 1 1 1 2.47 180.06 -82.25 0.00 0.00 0.00 0.00 423 -2 1 1 1 Series 423-root.Swildons.OldGrotto2WC 423 -1 1 1 1 296 2 423 1 1 3 0 423 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 423 1 1 1 1 0.63 84.70 -2.22 0.00 0.00 0.00 0.00 424 -2 1 1 1 Series 424-root.Swildons.OldGrotto2WC 424 -1 1 1 1 296 2 424 1 1 3 0 424 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 424 1 1 1 1 4.52 343.21 15.77 0.00 0.00 0.00 0.00 425 -2 1 1 1 Series 425-root.Swildons.OldGrotto2WC 425 -1 1 1 1 296 2 425 1 1 3 0 425 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 425 1 1 1 1 0.61 256.83 -2.19 0.00 0.00 0.00 0.00 426 -2 1 1 1 Series 426-root.Swildons.OldGrotto2WC 426 -1 1 1 1 296 2 426 2 2 3 0 426 0 1 1 1 0.00 0.00 0.00 0.63 0.59 5.52 2.45 426 1 1 1 1 2.38 197.66 -26.79 0.00 0.00 0.00 0.00 426 2 1 1 1 5.25 190.33 83.34 0.00 0.00 0.00 0.00 427 -2 1 1 1 Series 427-root.Swildons.OldGrotto2WC 427 -1 1 1 1 426 1 427 1 1 3 0 427 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 427 1 1 1 1 1.53 245.40 -88.07 0.00 0.00 0.00 0.00 428 -2 1 1 1 Series 428-root.Swildons.OldGrotto2WC 428 -1 1 1 1 426 1 428 1 1 3 0 428 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 428 1 1 1 1 0.73 141.71 2.75 0.00 0.00 0.00 0.00 429 -2 1 1 1 Series 429-root.Swildons.OldGrotto2WC 429 -1 1 1 1 426 1 429 1 1 3 0 429 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 429 1 1 1 1 2.37 16.48 26.15 0.00 0.00 0.00 0.00 430 -2 1 1 1 Series 430-root.Swildons.OldGrotto2WC 430 -1 1 1 1 426 1 430 1 1 3 0 430 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 430 1 1 1 1 0.82 316.43 0.68 0.00 0.00 0.00 0.00 431 -2 1 1 1 Series 431-root.Swildons.OldGrotto2WC 431 -1 1 1 1 426 1 431 2 2 3 0 431 0 1 1 1 0.00 0.00 0.00 0.71 0.81 5.21 1.53 431 1 1 1 1 6.29 237.93 -9.79 0.00 0.00 0.00 0.00 431 2 1 1 1 4.36 338.59 65.14 0.00 0.00 0.00 0.00 432 -2 1 1 1 Series 432-root.Swildons.OldGrotto2WC 432 -1 1 1 1 431 1 432 1 1 3 0 432 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 432 1 1 1 1 1.45 40.95 -84.89 0.00 0.00 0.00 0.00 433 -2 1 1 1 Series 433-root.Swildons.OldGrotto2WC 433 -1 1 1 1 431 1 433 1 1 3 0 433 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 433 1 1 1 1 0.23 172.42 2.52 0.00 0.00 0.00 0.00 434 -2 1 1 1 Series 434-root.Swildons.OldGrotto2WC 434 -1 1 1 1 431 1 434 1 1 3 0 434 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 434 1 1 1 1 6.26 56.95 9.67 0.00 0.00 0.00 0.00 435 -2 1 1 1 Series 435-root.Swildons.OldGrotto2WC 435 -1 1 1 1 431 1 435 1 1 3 0 435 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 435 1 1 1 1 1.26 347.55 -5.78 0.00 0.00 0.00 0.00 436 -2 1 1 1 Series 436-root.Swildons.OldGrotto2WC 436 -1 1 1 1 431 1 436 2 2 3 0 436 0 1 1 1 0.00 0.00 0.00 0.23 1.80 3.96 1.44 436 1 1 1 1 7.66 282.53 -7.14 0.00 0.00 0.00 0.00 436 2 1 1 1 5.90 282.73 87.68 0.00 0.00 0.00 0.00 437 -2 1 1 1 Series 437-root.Swildons.OldGrotto2WC 437 -1 1 1 1 436 1 437 1 1 3 0 437 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 437 1 1 1 1 1.22 313.79 -87.56 0.00 0.00 0.00 0.00 438 -2 1 1 1 Series 438-root.Swildons.OldGrotto2WC 438 -1 1 1 1 436 1 438 1 1 3 0 438 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 438 1 1 1 1 7.65 102.49 6.94 0.00 0.00 0.00 0.00 439 -2 1 1 1 Series 439-root.Swildons.OldGrotto2WC 439 -1 1 1 1 436 1 439 1 1 3 0 439 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 439 1 1 1 1 1.11 182.79 -3.02 0.00 0.00 0.00 0.00 440 -2 1 1 1 Series 440-root.Swildons.OldGrotto2WC 440 -1 1 1 1 436 1 440 3 3 3 0 440 0 1 1 1 0.00 0.00 0.00 1.04 0.00 5.90 1.22 440 1 1 1 1 2.58 222.57 -8.54 0.00 0.00 0.00 0.00 440 2 1 1 1 6.80 204.26 -6.51 0.00 0.00 0.00 0.00 440 3 1 1 1 3.44 80.95 71.46 0.00 0.00 0.00 0.00 441 -2 1 1 1 Series 441-root.Swildons.OldGrotto2WC 441 -1 1 1 1 440 2 441 1 1 3 0 441 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 441 1 1 1 1 1.27 17.26 -83.92 0.00 0.00 0.00 0.00 442 -2 1 1 1 Series 442-root.Swildons.OldGrotto2WC 442 -1 1 1 1 440 2 442 1 1 3 0 442 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 442 1 1 1 1 6.77 23.18 6.09 0.00 0.00 0.00 0.00 443 -2 1 1 1 Series 443-root.Swildons.OldGrotto2WC 443 -1 1 1 1 440 2 443 1 1 3 0 443 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 443 1 1 1 1 1.40 70.36 -5.17 0.00 0.00 0.00 0.00 444 -2 1 1 1 Series 444-root.Swildons.OldGrotto2WC 444 -1 1 1 1 440 2 444 2 2 3 0 444 0 1 1 1 0.00 0.00 0.00 1.39 0.00 3.26 1.26 444 1 1 1 1 2.09 106.93 -5.31 0.00 0.00 0.00 0.00 444 2 1 1 1 5.46 280.00 67.93 0.00 0.00 0.00 0.00 445 -2 1 1 1 Series 445-root.Swildons.OldGrotto2WC 445 -1 1 1 1 444 1 445 1 1 3 0 445 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 445 1 1 1 1 1.15 298.64 -85.48 0.00 0.00 0.00 0.00 446 -2 1 1 1 Series 446-root.Swildons.OldGrotto2WC 446 -1 1 1 1 444 1 446 1 1 3 0 446 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 446 1 1 1 1 2.12 288.16 4.09 0.00 0.00 0.00 0.00 447 -2 1 1 1 Series 447-root.Swildons.OldGrotto2WC 447 -1 1 1 1 444 1 447 1 1 3 0 447 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 447 1 1 1 1 1.18 241.56 -9.20 0.00 0.00 0.00 0.00 448 -2 1 1 1 Series 448-root.Swildons.WaterRift 448 -1 1 1 1 444 1 448 2 2 3 0 448 0 1 1 1 0.00 0.00 0.00 0.00 1.68 5.06 1.15 448 1 1 1 1 7.85 203.21 6.96 0.00 0.00 0.00 0.00 448 2 1 1 1 3.22 122.74 87.58 0.00 0.00 0.00 0.00 449 -2 1 1 1 Series 449-root.Swildons.OldGrotto2WC 449 -1 1 1 1 448 1 449 1 1 3 0 449 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 449 1 1 1 1 1.02 79.92 -78.82 0.00 0.00 0.00 0.00 450 -2 1 1 1 Series 450-root.Swildons.OldGrotto2WC 450 -1 1 1 1 448 1 450 1 1 3 0 450 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 450 1 1 1 1 4.08 29.70 -11.00 0.00 0.00 0.00 0.00 451 -2 1 1 1 Series 451-root.Swildons.OldGrotto2WC 451 -1 1 1 1 448 1 451 1 1 3 0 451 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 451 1 1 1 1 3.58 121.30 1.76 0.00 0.00 0.00 0.00 452 -2 1 1 1 Series 452-root.Swildons.OldGrotto2WC 452 -1 1 1 1 448 1 452 1 1 3 0 452 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 452 1 1 1 1 5.02 144.54 5.40 0.00 0.00 0.00 0.00 453 -2 1 1 1 Series 453-root.Swildons.OldGrotto2WC 453 -1 1 1 1 448 1 453 1 1 3 0 453 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 453 1 1 1 1 7.85 21.74 -7.47 0.00 0.00 0.00 0.00 454 -2 1 1 1 Series 454-root.Swildons.OldGrotto2WC 454 -1 1 1 1 448 1 454 1 1 3 0 454 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 454 1 1 1 1 4.04 19.06 -17.03 0.00 0.00 0.00 0.00 455 -2 1 1 1 Series 455-root.Swildons.OldGrotto2WC 455 -1 1 1 1 448 1 455 1 1 3 0 455 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 455 1 1 1 1 3.82 256.65 -10.90 0.00 0.00 0.00 0.00 456 -2 1 1 1 Series 456-root.Swildons.OldGrotto2WC 456 -1 1 1 1 448 1 456 1 1 3 0 456 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 456 1 1 1 1 3.95 289.43 -0.53 0.00 0.00 0.00 0.00 457 -2 1 1 1 Series 457-root.Swildons.OldGrotto2WC 457 -1 1 1 1 448 1 457 1 1 3 0 457 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 457 1 1 1 1 5.88 339.72 -3.35 0.00 0.00 0.00 0.00 458 -2 1 1 1 Series 458-root.Swildons.OldGrotto2WC 458 -1 1 1 1 448 1 458 1 1 3 0 458 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 458 1 1 1 1 6.54 330.76 -2.75 0.00 0.00 0.00 0.00 459 -2 1 1 1 Series 459-root.Swildons.WaterRift 459 -1 1 1 1 448 1 459 1 1 3 0 459 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 459 1 1 1 1 8.89 331.45 6.81 0.00 0.00 0.00 0.00 460 -2 1 1 1 Series 460-root.Swildons.WaterRift 460 -1 1 1 1 448 1 460 1 1 3 0 460 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 460 1 1 1 1 5.13 292.85 17.44 0.00 0.00 0.00 0.00 461 -2 1 1 1 Series 461-root.Swildons.WaterRift 461 -1 1 1 1 448 1 461 1 1 3 0 461 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 461 1 1 1 1 7.66 279.94 0.94 0.00 0.00 0.00 0.00 462 -2 1 1 1 Series 462-root.Swildons.WaterRift 462 -1 1 1 1 448 1 462 1 1 3 0 462 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 462 1 1 1 1 6.92 261.38 5.04 0.00 0.00 0.00 0.00 463 -2 1 1 1 Series 463-root.Swildons.WaterRift 463 -1 1 1 1 448 1 463 1 1 3 0 463 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 463 1 1 1 1 6.86 252.03 5.31 0.00 0.00 0.00 0.00 464 -2 1 1 1 Series 464-root.Swildons.WaterRift 464 -1 1 1 1 448 1 464 1 1 3 0 464 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 464 1 1 1 1 5.23 245.62 7.41 0.00 0.00 0.00 0.00 465 -2 1 1 1 Series 465-root.Swildons.WaterRift 465 -1 1 1 1 448 1 465 1 1 3 0 465 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 465 1 1 1 1 3.51 201.31 21.45 0.00 0.00 0.00 0.00 466 -2 1 1 1 Series 466-root.Swildons.WaterRift 466 -1 1 1 1 448 1 466 1 1 3 0 466 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 466 1 1 1 1 5.06 194.39 22.67 0.00 0.00 0.00 0.00 467 -2 1 1 1 Series 467-root.Swildons.WaterRift 467 -1 1 1 1 448 1 467 1 1 3 0 467 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 467 1 1 1 1 6.28 159.10 22.30 0.00 0.00 0.00 0.00 468 -2 1 1 1 Series 468-root.Swildons.WaterRift 468 -1 1 1 1 448 1 468 1 1 3 0 468 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 468 1 1 1 1 5.35 16.37 22.62 0.00 0.00 0.00 0.00 469 -2 1 1 1 Series 469-root.Swildons.WaterRift 469 -1 1 1 1 448 1 469 1 1 3 0 469 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 469 1 1 1 1 4.13 21.00 -15.64 0.00 0.00 0.00 0.00 470 -2 1 1 1 Series 470-root.Swildons.WaterRift 470 -1 1 1 1 448 1 470 1 1 3 0 470 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 470 1 1 1 1 8.42 333.94 5.44 0.00 0.00 0.00 0.00 471 -2 1 1 1 Series 471-root.Swildons.WaterRift 471 -1 1 1 1 448 1 471 1 1 3 0 471 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 471 1 1 1 1 5.30 344.85 8.54 0.00 0.00 0.00 0.00 472 -2 1 1 1 Series 472-root.Swildons.WaterRift 472 -1 1 1 1 448 1 472 1 1 3 0 472 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 472 1 1 1 1 8.67 131.01 16.67 0.00 0.00 0.00 0.00 473 -2 1 1 1 Series 473-root.Swildons.WaterRift 473 -1 1 1 1 448 1 473 1 1 3 0 473 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 473 1 1 1 1 6.28 120.31 11.57 0.00 0.00 0.00 0.00 474 -2 1 1 1 Series 474-root.Swildons.WaterRift 474 -1 1 1 1 448 1 474 1 1 3 0 474 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 474 1 1 1 1 3.27 112.52 12.54 0.00 0.00 0.00 0.00 475 -2 1 1 1 Series 475-root.Swildons.WaterRift 475 -1 1 1 1 448 1 475 2 2 3 0 475 0 1 1 1 0.00 0.00 0.00 6.74 3.41 1.95 0.00 475 1 1 1 1 5.77 332.70 -11.88 0.00 0.00 0.00 0.00 475 2 1 1 1 3.75 243.34 84.64 0.00 0.00 0.00 0.00 476 -2 1 1 1 Series 476-root.Swildons.WaterRift 476 -1 1 1 1 475 1 476 1 1 3 0 476 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 476 1 1 1 1 1.82 179.21 -73.82 0.00 0.00 0.00 0.00 477 -2 1 1 1 Series 477-root.Swildons.WaterRift 477 -1 1 1 1 475 1 477 1 1 3 0 477 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 477 1 1 1 1 5.76 152.89 11.49 0.00 0.00 0.00 0.00 478 -2 1 1 1 Series 478-root.Swildons.WaterRift 478 -1 1 1 1 475 1 478 1 1 3 0 478 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 478 1 1 1 1 1.98 164.58 -38.83 0.00 0.00 0.00 0.00 479 -2 1 1 1 Series 479-root.Swildons.WaterRift 479 -1 1 1 1 475 1 479 2 2 3 0 479 0 1 1 1 0.00 0.00 0.00 1.52 0.00 3.73 1.75 479 1 1 1 1 4.33 193.94 -26.62 0.00 0.00 0.00 0.00 479 2 1 1 1 0.70 1.04 84.20 0.00 0.00 0.00 0.00 480 -2 1 1 1 Series 480-root.Swildons.WaterRift 480 -1 1 1 1 479 1 480 1 1 3 0 480 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 480 1 1 1 1 4.92 231.98 80.23 0.00 0.00 0.00 0.00 481 -2 1 1 1 Series 481-root.Swildons.WaterRift 481 -1 1 1 1 479 1 481 1 1 3 0 481 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 481 1 1 1 1 1.02 122.01 -85.18 0.00 0.00 0.00 0.00 482 -2 1 1 1 Series 482-root.Swildons.WaterRift 482 -1 1 1 1 479 1 482 1 1 3 0 482 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 482 1 1 1 1 0.28 112.96 1.61 0.00 0.00 0.00 0.00 483 -2 1 1 1 Series 483-root.Swildons.WaterRift 483 -1 1 1 1 479 1 483 1 1 3 0 483 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 483 1 1 1 1 4.32 11.48 26.42 0.00 0.00 0.00 0.00 484 -2 1 1 1 Series 484-root.Swildons.WaterRift 484 -1 1 1 1 479 1 484 1 1 3 0 484 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 484 1 1 1 1 0.76 315.41 -3.19 0.00 0.00 0.00 0.00 485 -2 1 1 1 Series 485-root.Swildons.WaterRift 485 -1 1 1 1 479 1 485 2 2 3 0 485 0 1 1 1 0.00 0.00 0.00 0.25 0.75 0.70 1.02 485 1 1 1 1 6.36 268.81 -36.08 0.00 0.00 0.00 0.00 485 2 1 1 1 7.22 163.37 87.99 0.00 0.00 0.00 0.00 486 -2 1 1 1 Series 486-root.Swildons.WaterRift 486 -1 1 1 1 485 1 486 1 1 3 0 486 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 486 1 1 1 1 1.50 349.31 -85.48 0.00 0.00 0.00 0.00 487 -2 1 1 1 Series 487-root.Swildons.WaterRift 487 -1 1 1 1 485 1 487 1 1 3 0 487 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 487 1 1 1 1 6.38 89.16 35.86 0.00 0.00 0.00 0.00 488 -2 1 1 1 Series 488-root.Swildons.WaterRift 488 -1 1 1 1 485 1 488 1 1 3 0 488 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 488 1 1 1 1 0.60 15.79 -5.81 0.00 0.00 0.00 0.00 489 -2 1 1 1 Series 489-root.Swildons.WaterRift 489 -1 1 1 1 485 1 489 1 1 3 0 489 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 489 1 1 1 1 4.37 92.50 26.89 0.00 0.00 0.00 0.00 490 -2 1 1 1 Series 490-root.Swildons.WaterRift 490 -1 1 1 1 485 1 490 1 1 3 0 490 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 490 1 1 1 1 2.04 95.39 2.01 0.00 0.00 0.00 0.00 491 -2 1 1 1 Series 491-root.Swildons.WaterRift 491 -1 1 1 1 485 1 491 2 2 3 0 491 0 1 1 1 0.00 0.00 0.00 0.00 0.60 7.22 1.50 491 1 1 1 1 1.54 303.46 -17.83 0.00 0.00 0.00 0.00 491 2 1 1 1 0.92 182.61 78.11 0.00 0.00 0.00 0.00 492 -2 1 1 1 Series 492-root.Swildons.WaterRift 492 -1 1 1 1 491 1 492 1 1 3 0 492 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 492 1 1 1 1 5.88 260.22 85.59 0.00 0.00 0.00 0.00 493 -2 1 1 1 Series 493-root.Swildons.WaterRift 493 -1 1 1 1 491 1 493 1 1 3 0 493 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 493 1 1 1 1 1.80 280.26 -85.97 0.00 0.00 0.00 0.00 494 -2 1 1 1 Series 494-root.Swildons.WaterRift 494 -1 1 1 1 491 1 494 1 1 3 0 494 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 494 1 1 1 1 1.56 123.12 18.36 0.00 0.00 0.00 0.00 495 -2 1 1 1 Series 495-root.Swildons.WaterRift 495 -1 1 1 1 491 1 495 1 1 3 0 495 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 495 1 1 1 1 1.18 212.97 -3.95 0.00 0.00 0.00 0.00 496 -2 1 1 1 Series 496-root.Swildons.WaterRift 496 -1 1 1 1 491 1 496 2 2 3 0 496 0 1 1 1 0.00 0.00 0.00 1.18 0.00 5.86 1.80 496 1 1 1 1 4.45 300.43 -20.17 0.00 0.00 0.00 0.00 496 2 1 1 1 0.79 294.24 80.77 0.00 0.00 0.00 0.00 497 -2 1 1 1 Series 497-root.Swildons.WaterRift 497 -1 1 1 1 496 1 497 1 1 3 0 497 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 497 1 1 1 1 3.44 38.46 71.75 0.00 0.00 0.00 0.00 498 -2 1 1 1 Series 498-root.Swildons.WaterRift 498 -1 1 1 1 496 1 498 1 1 3 0 498 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 498 1 1 1 1 1.19 158.19 -84.25 0.00 0.00 0.00 0.00 499 -2 1 1 1 Series 499-root.Swildons.WaterRift 499 -1 1 1 1 496 1 499 1 1 3 0 499 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 499 1 1 1 1 4.45 120.47 20.68 0.00 0.00 0.00 0.00 500 -2 1 1 1 Series 500-root.Swildons.WaterRift 500 -1 1 1 1 496 1 500 1 1 3 0 500 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 500 1 1 1 1 0.66 41.03 -0.43 0.00 0.00 0.00 0.00 501 -2 1 1 1 Series 501-root.Swildons.WaterRift 501 -1 1 1 1 496 1 501 2 2 3 0 501 0 1 1 1 0.00 0.00 0.00 0.00 0.66 0.78 1.18 501 1 1 1 1 2.13 318.80 -11.71 0.00 0.00 0.00 0.00 501 2 1 1 1 1.37 27.96 74.80 0.00 0.00 0.00 0.00 502 -2 1 1 1 Series 502-root.Swildons.WaterRift 502 -1 1 1 1 501 1 502 1 1 3 0 502 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 502 1 1 1 1 0.97 225.11 -87.04 0.00 0.00 0.00 0.00 503 -2 1 1 1 Series 503-root.Swildons.WaterRift 503 -1 1 1 1 501 1 503 1 1 3 0 503 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 503 1 1 1 1 1.93 7.96 -74.91 0.00 0.00 0.00 0.00 504 -2 1 1 1 Series 504-root.Swildons.WaterRift 504 -1 1 1 1 501 1 504 1 1 3 0 504 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 504 1 1 1 1 2.12 138.38 12.80 0.00 0.00 0.00 0.00 505 -2 1 1 1 Series 505-root.Swildons.WaterRift 505 -1 1 1 1 501 1 505 1 1 3 0 505 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 505 1 1 1 1 0.40 63.67 1.27 0.00 0.00 0.00 0.00 506 -2 1 1 1 Series 506-root.Swildons.WaterRift 506 -1 1 1 1 501 1 506 2 2 3 0 506 0 1 1 1 0.00 0.00 0.00 0.00 0.40 1.32 0.97 506 1 1 1 1 5.02 332.34 -11.98 0.00 0.00 0.00 0.00 506 2 1 1 1 3.09 146.14 83.95 0.00 0.00 0.00 0.00 507 -2 1 1 1 Series 507-root.Swildons.WaterRift 507 -1 1 1 1 506 1 507 1 1 3 0 507 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 507 1 1 1 1 1.42 332.50 -84.41 0.00 0.00 0.00 0.00 508 -2 1 1 1 Series 508-root.Swildons.WaterRift 508 -1 1 1 1 506 1 508 1 1 3 0 508 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 508 1 1 1 1 5.07 153.49 11.54 0.00 0.00 0.00 0.00 509 -2 1 1 1 Series 509-root.Swildons.WaterRift 509 -1 1 1 1 506 1 509 1 1 3 0 509 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 509 1 1 1 1 0.32 231.88 -2.11 0.00 0.00 0.00 0.00 510 -2 1 1 1 Series 510-root.Swildons.WaterRift 510 -1 1 1 1 506 1 510 3 3 3 0 510 0 1 1 1 0.00 0.00 0.00 0.32 0.00 3.07 1.41 510 1 1 1 1 1.63 321.88 -34.24 0.00 0.00 0.00 0.00 510 2 1 1 1 6.72 323.97 -5.61 0.00 0.00 0.00 0.00 510 3 1 1 1 1.21 66.60 77.77 0.00 0.00 0.00 0.00 511 -2 1 1 1 Series 511-root.Swildons.WaterRift 511 -1 1 1 1 510 2 511 1 1 3 0 511 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 511 1 1 1 1 0.38 43.68 -87.04 0.00 0.00 0.00 0.00 512 -2 1 1 1 Series 512-root.Swildons.WaterRift 512 -1 1 1 1 510 2 512 1 1 3 0 512 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 512 1 1 1 1 6.71 146.46 5.85 0.00 0.00 0.00 0.00 513 -2 1 1 1 Series 513-root.Swildons.WaterRift 513 -1 1 1 1 510 2 513 1 1 3 0 513 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 513 1 1 1 1 0.67 83.53 -3.81 0.00 0.00 0.00 0.00 514 -2 1 1 1 Series 514-root.Swildons.WaterRift 514 -1 1 1 1 510 2 514 2 2 3 0 514 0 1 1 1 0.00 0.00 0.00 0.00 0.65 1.18 0.38 514 1 1 1 1 2.39 -0.20 10.24 0.00 0.00 0.00 0.00 514 2 1 1 1 2.55 200.99 79.97 0.00 0.00 0.00 0.00 515 -2 1 1 1 Series 515-root.Swildons.WaterRift 515 -1 1 1 1 514 1 515 1 1 3 0 515 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 515 1 1 1 1 1.00 210.06 -85.65 0.00 0.00 0.00 0.00 516 -2 1 1 1 Series 516-root.Swildons.WaterRift 516 -1 1 1 1 514 1 516 1 1 3 0 516 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 516 1 1 1 1 2.40 177.49 -10.67 0.00 0.00 0.00 0.00 517 -2 1 1 1 Series 517-root.Swildons.WaterRift 517 -1 1 1 1 514 1 517 1 1 3 0 517 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 517 1 1 1 1 0.87 223.03 -18.06 0.00 0.00 0.00 0.00 518 -2 1 1 1 Series 518-root.Swildons.WaterRift 518 -1 1 1 1 514 1 518 1 1 3 0 518 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 518 1 1 1 1 1.28 262.01 -11.49 0.00 0.00 0.00 0.00 519 -2 1 1 1 Series 519-root.Swildons.WaterRift 519 -1 1 1 1 514 1 519 1 1 3 0 519 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 519 1 1 1 1 1.20 322.84 7.72 0.00 0.00 0.00 0.00 520 -2 1 1 1 Series 520-root.Swildons.WaterRift 520 -1 1 1 1 514 1 520 2 2 3 0 520 0 1 1 1 0.00 0.00 0.00 0.81 0.43 2.51 1.00 520 1 1 1 1 3.73 243.67 -24.06 0.00 0.00 0.00 0.00 520 2 1 1 1 10.92 337.96 83.66 0.00 0.00 0.00 0.00 521 -2 1 1 1 Series 521-root.Swildons.WaterRift 521 -1 1 1 1 520 1 521 1 1 3 0 521 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 521 1 1 1 1 2.42 198.70 -80.22 0.00 0.00 0.00 0.00 522 -2 1 1 1 Series 522-root.Swildons.WaterRift 522 -1 1 1 1 520 1 522 1 1 3 0 522 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 522 1 1 1 1 3.72 61.43 24.03 0.00 0.00 0.00 0.00 523 -2 1 1 1 Series 523-root.Swildons.WaterRift 523 -1 1 1 1 520 1 523 1 1 3 0 523 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 523 1 1 1 1 0.49 153.68 4.00 0.00 0.00 0.00 0.00 524 -2 1 1 1 Series 524-root.Swildons.WaterRift 524 -1 1 1 1 520 1 524 1 1 3 0 524 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 524 1 1 1 1 1.16 4.44 4.03 0.00 0.00 0.00 0.00 525 -2 1 1 1 Series 525-root.Swildons.WaterRift 525 -1 1 1 1 520 1 525 2 2 3 0 525 0 1 1 1 0.00 0.00 0.00 0.47 0.78 10.85 2.38 525 1 1 1 1 1.75 210.09 -24.54 0.00 0.00 0.00 0.00 525 2 1 1 1 1.64 256.93 84.25 0.00 0.00 0.00 0.00 526 -2 1 1 1 Series 526-root.Swildons.WaterRift 526 -1 1 1 1 525 1 526 1 1 3 0 526 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 526 1 1 1 1 1.75 153.44 -82.92 0.00 0.00 0.00 0.00 527 -2 1 1 1 Series 527-root.Swildons.WaterRift 527 -1 1 1 1 525 1 527 1 1 3 0 527 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 527 1 1 1 1 1.74 32.59 24.31 0.00 0.00 0.00 0.00 528 -2 1 1 1 Series 528-root.Swildons.WaterRift 528 -1 1 1 1 525 1 528 1 1 3 0 528 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 528 1 1 1 1 0.59 87.91 -3.42 0.00 0.00 0.00 0.00 529 -2 1 1 1 Series 529-root.Swildons.WaterRift 529 -1 1 1 1 525 1 529 1 1 3 0 529 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 529 1 1 1 1 0.94 257.80 1.16 0.00 0.00 0.00 0.00 530 -2 1 1 1 Series 530-root.Swildons.WaterRift 530 -1 1 1 1 525 1 530 2 2 3 0 530 0 1 1 1 0.00 0.00 0.00 0.56 0.84 1.63 1.74 530 1 1 1 1 8.34 179.80 -8.14 0.00 0.00 0.00 0.00 530 2 1 1 1 3.43 283.34 82.46 0.00 0.00 0.00 0.00 531 -2 1 1 1 Series 531-root.Swildons.WaterRift 531 -1 1 1 1 530 1 531 1 1 3 0 531 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 531 1 1 1 1 0.81 112.66 -89.45 0.00 0.00 0.00 0.00 532 -2 1 1 1 Series 532-root.Swildons.WaterRift 532 -1 1 1 1 530 1 532 1 1 3 0 532 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 532 1 1 1 1 8.39 1.05 8.00 0.00 0.00 0.00 0.00 533 -2 1 1 1 Series 533-root.Swildons.WaterRift 533 -1 1 1 1 530 1 533 1 1 3 0 533 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 533 1 1 1 1 0.20 93.42 3.81 0.00 0.00 0.00 0.00 534 -2 1 1 1 Series 534-root.Swildons.WaterRift 534 -1 1 1 1 530 1 534 1 1 3 0 534 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 534 1 1 1 1 0.85 280.20 -0.49 0.00 0.00 0.00 0.00 535 -2 1 1 1 Series 535-root.Swildons.WaterRift 535 -1 1 1 1 530 1 535 3 3 3 0 535 0 1 1 1 0.00 0.00 0.00 0.20 0.83 3.40 0.81 535 1 1 1 1 4.39 178.21 -2.78 0.00 0.00 0.00 0.00 535 2 1 1 1 7.89 174.67 -1.64 0.00 0.00 0.00 0.00 535 3 1 1 1 3.06 325.03 82.70 0.00 0.00 0.00 0.00 536 -2 1 1 1 Series 536-root.Swildons.WaterRift 536 -1 1 1 1 535 2 536 1 1 3 0 536 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 536 1 1 1 1 0.98 15.48 -84.71 0.00 0.00 0.00 0.00 537 -2 1 1 1 Series 537-root.Swildons.WaterRift 537 -1 1 1 1 535 2 537 1 1 3 0 537 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 537 1 1 1 1 0.43 80.20 2.27 0.00 0.00 0.00 0.00 538 -2 1 1 1 Series 538-root.Swildons.WaterRift 538 -1 1 1 1 535 2 538 1 1 3 0 538 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 538 1 1 1 1 7.89 352.73 1.68 0.00 0.00 0.00 0.00 539 -2 1 1 1 Series 539-root.Swildons.WaterRift 539 -1 1 1 1 535 2 539 1 1 3 0 539 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 539 1 1 1 1 0.39 270.26 -0.76 0.00 0.00 0.00 0.00 540 -2 1 1 1 Series 540-root.Swildons.WaterRift 540 -1 1 1 1 535 2 540 2 2 3 0 540 0 1 1 1 0.00 0.00 0.00 0.42 0.39 3.04 0.98 540 1 1 1 1 4.52 192.42 -4.00 0.00 0.00 0.00 0.00 540 2 1 1 1 1.36 2.20 83.92 0.00 0.00 0.00 0.00 541 -2 1 1 1 Series 541-root.Swildons.WaterRift 541 -1 1 1 1 540 1 541 1 1 3 0 541 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 541 1 1 1 1 0.91 116.85 -86.27 0.00 0.00 0.00 0.00 542 -2 1 1 1 Series 542-root.Swildons.WaterRift 542 -1 1 1 1 540 1 542 1 1 3 0 542 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 542 1 1 1 1 2.19 156.54 24.87 0.00 0.00 0.00 0.00 543 -2 1 1 1 Series 543-root.Swildons.WaterRift 543 -1 1 1 1 540 1 543 1 1 3 0 543 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 543 1 1 1 1 3.69 157.80 30.12 0.00 0.00 0.00 0.00 544 -2 1 1 1 Series 544-root.Swildons.WaterRift 544 -1 1 1 1 540 1 544 1 1 3 0 544 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 544 1 1 1 1 1.68 78.60 14.09 0.00 0.00 0.00 0.00 545 -2 1 1 1 Series 545-root.Swildons.WaterRift 545 -1 1 1 1 540 1 545 1 1 3 0 545 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 545 1 1 1 1 4.55 9.54 3.98 0.00 0.00 0.00 0.00 546 -2 1 1 1 Series 546-root.Swildons.WaterRift 546 -1 1 1 1 540 1 546 1 1 3 0 546 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 546 1 1 1 1 1.39 6.62 -1.40 0.00 0.00 0.00 0.00 547 -2 1 1 1 Series 547-root.Swildons.WaterRift 547 -1 1 1 1 540 1 547 1 1 3 0 547 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 547 1 1 1 1 1.31 312.60 0.17 0.00 0.00 0.00 0.00 548 -2 1 1 1 Series 548-root.Swildons.WaterRift 548 -1 1 1 1 540 1 548 1 1 3 0 548 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 548 1 1 1 1 2.88 209.14 3.57 0.00 0.00 0.00 0.00 549 -2 1 1 1 Series 549-root.Swildons.FortyRoute 549 -1 1 1 1 491 1 549 2 2 3 0 549 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 549 1 1 1 1 2.76 326.33 18.03 0.00 0.00 0.00 0.00 549 2 1 1 1 5.96 281.92 83.29 0.00 0.00 0.00 0.00 550 -2 1 1 1 Series 550-root.Swildons.FortyRoute 550 -1 1 1 1 549 1 550 1 1 3 0 550 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 550 1 1 1 1 3.76 235.02 -61.01 0.00 0.00 0.00 0.00 551 -2 1 1 1 Series 551-root.Swildons.FortyRoute 551 -1 1 1 1 549 1 551 1 1 3 0 551 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 551 1 1 1 1 2.78 145.19 -18.73 0.00 0.00 0.00 0.00 552 -2 1 1 1 Series 552-root.Swildons.FortyRoute 552 -1 1 1 1 549 1 552 1 1 3 0 552 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 552 1 1 1 1 0.75 231.61 -9.76 0.00 0.00 0.00 0.00 553 -2 1 1 1 Series 553-root.Swildons.FortyRoute 553 -1 1 1 1 549 1 553 2 2 3 0 553 0 1 1 1 0.00 0.00 0.00 1.80 0.00 5.92 3.29 553 1 1 1 1 5.35 305.33 5.35 0.00 0.00 0.00 0.00 553 2 1 1 1 2.15 88.14 81.91 0.00 0.00 0.00 0.00 554 -2 1 1 1 Series 554-root.Swildons.FortyRoute 554 -1 1 1 1 553 1 554 1 1 3 0 554 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 554 1 1 1 1 0.77 45.62 -45.75 0.00 0.00 0.00 0.00 555 -2 1 1 1 Series 555-root.Swildons.FortyRoute 555 -1 1 1 1 553 1 555 1 1 3 0 555 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 555 1 1 1 1 5.18 301.56 -81.62 0.00 0.00 0.00 0.00 556 -2 1 1 1 Series 556-root.Swildons.FortyRoute 556 -1 1 1 1 553 1 556 1 1 3 0 556 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 556 1 1 1 1 0.20 231.27 8.71 0.00 0.00 0.00 0.00 557 -2 1 1 1 Series 557-root.Swildons.FortyRoute 557 -1 1 1 1 553 1 557 1 1 3 0 557 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 557 1 1 1 1 5.34 125.46 -5.34 0.00 0.00 0.00 0.00 558 -2 1 1 1 Series 558-root.Swildons.FortyRoute 558 -1 1 1 1 553 1 558 1 1 3 0 558 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 558 1 1 1 1 0.93 35.53 -9.90 0.00 0.00 0.00 0.00 559 -2 1 1 1 Series 559-root.Swildons.FortyRoute 559 -1 1 1 1 553 1 559 2 2 3 0 559 0 1 1 1 0.00 0.00 0.00 0.20 0.91 2.13 5.12 559 1 1 1 1 3.55 319.83 38.17 0.00 0.00 0.00 0.00 559 2 1 1 1 2.35 115.17 81.52 0.00 0.00 0.00 0.00 560 -2 1 1 1 Series 560-root.Swildons.FortyRoute 560 -1 1 1 1 559 1 560 1 1 3 0 560 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 560 1 1 1 1 0.76 45.48 -63.29 0.00 0.00 0.00 0.00 561 -2 1 1 1 Series 561-root.Swildons.FortyRoute 561 -1 1 1 1 559 1 561 1 1 3 0 561 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 561 1 1 1 1 3.35 109.15 -74.59 0.00 0.00 0.00 0.00 562 -2 1 1 1 Series 562-root.Swildons.FortyRoute 562 -1 1 1 1 559 1 562 1 1 3 0 562 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 562 1 1 1 1 7.46 124.44 -72.97 0.00 0.00 0.00 0.00 563 -2 1 1 1 Series 563-root.Swildons.FortyRoute 563 -1 1 1 1 559 1 563 1 1 3 0 563 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 563 1 1 1 1 0.25 239.83 3.91 0.00 0.00 0.00 0.00 564 -2 1 1 1 Series 564-root.Swildons.FortyRoute 564 -1 1 1 1 559 1 564 1 1 3 0 564 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 564 1 1 1 1 3.53 139.08 -38.25 0.00 0.00 0.00 0.00 565 -2 1 1 1 Series 565-root.Swildons.FortyRoute 565 -1 1 1 1 559 1 565 1 1 3 0 565 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 565 1 1 1 1 0.79 62.85 3.52 0.00 0.00 0.00 0.00 566 -2 1 1 1 Series 566-root.Swildons.FortyRoute 566 -1 1 1 1 559 1 566 2 2 3 0 566 0 1 1 1 0.00 0.00 0.00 0.24 0.78 2.32 3.23 566 1 1 1 1 1.12 6.13 3.63 0.00 0.00 0.00 0.00 566 2 1 1 1 2.21 237.98 80.82 0.00 0.00 0.00 0.00 567 -2 1 1 1 Series 567-root.Swildons.FortyRoute 567 -1 1 1 1 566 1 567 1 1 3 0 567 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 567 1 1 1 1 0.66 260.31 -73.67 0.00 0.00 0.00 0.00 568 -2 1 1 1 Series 568-root.Swildons.FortyRoute 568 -1 1 1 1 566 1 568 1 1 3 0 568 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 568 1 1 1 1 1.10 184.44 -4.47 0.00 0.00 0.00 0.00 569 -2 1 1 1 Series 569-root.Swildons.FortyRoute 569 -1 1 1 1 566 1 569 1 1 3 0 569 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 569 1 1 1 1 0.67 230.08 -2.98 0.00 0.00 0.00 0.00 570 -2 1 1 1 Series 570-root.Swildons.FortyRoute 570 -1 1 1 1 566 1 570 2 2 3 0 570 0 1 1 1 0.00 0.00 0.00 0.67 0.00 2.18 0.63 570 1 1 1 1 1.06 261.82 33.43 0.00 0.00 0.00 0.00 570 2 1 1 1 1.63 41.10 77.79 0.00 0.00 0.00 0.00 571 -2 1 1 1 Series 571-root.Swildons.FortyRoute 571 -1 1 1 1 570 1 571 1 1 3 0 571 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 571 1 1 1 1 1.16 35.98 -82.40 0.00 0.00 0.00 0.00 572 -2 1 1 1 Series 572-root.Swildons.FortyRoute 572 -1 1 1 1 570 1 572 1 1 3 0 572 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 572 1 1 1 1 1.05 81.34 -33.40 0.00 0.00 0.00 0.00 573 -2 1 1 1 Series 573-root.Swildons.FortyRoute 573 -1 1 1 1 570 1 573 1 1 3 0 573 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 573 1 1 1 1 0.57 39.07 -2.91 0.00 0.00 0.00 0.00 574 -2 1 1 1 Series 574-root.Swildons.FortyRoute 574 -1 1 1 1 570 1 574 2 2 3 0 574 0 1 1 1 0.00 0.00 0.00 0.00 0.57 1.59 1.15 574 1 1 1 1 2.53 350.36 5.11 0.00 0.00 0.00 0.00 574 2 1 1 1 1.46 221.87 74.25 0.00 0.00 0.00 0.00 575 -2 1 1 1 Series 575-root.Swildons.FortyRoute 575 -1 1 1 1 574 1 575 1 1 3 0 575 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 575 1 1 1 1 1.24 241.04 -65.46 0.00 0.00 0.00 0.00 576 -2 1 1 1 Series 576-root.Swildons.FortyRoute 576 -1 1 1 1 574 1 576 1 1 3 0 576 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 576 1 1 1 1 2.52 169.99 -5.45 0.00 0.00 0.00 0.00 577 -2 1 1 1 Series 577-root.Swildons.FortyRoute 577 -1 1 1 1 574 1 577 1 1 3 0 577 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 577 1 1 1 1 0.49 249.52 -0.42 0.00 0.00 0.00 0.00 578 -2 1 1 1 Series 578-root.Swildons.FortyRoute 578 -1 1 1 1 574 1 578 2 2 3 0 578 0 1 1 1 0.00 0.00 0.00 0.51 0.00 1.41 1.13 578 1 1 1 1 2.96 315.73 -3.31 0.00 0.00 0.00 0.00 578 2 1 1 1 1.67 336.19 83.13 0.00 0.00 0.00 0.00 579 -2 1 1 1 Series 579-root.Swildons.FortyRoute 579 -1 1 1 1 578 1 579 1 1 3 0 579 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 579 1 1 1 1 1.64 60.75 -86.14 0.00 0.00 0.00 0.00 580 -2 1 1 1 Series 580-root.Swildons.FortyRoute 580 -1 1 1 1 578 1 580 1 1 3 0 580 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 580 1 1 1 1 2.94 135.82 3.36 0.00 0.00 0.00 0.00 581 -2 1 1 1 Series 581-root.Swildons.FortyRoute 581 -1 1 1 1 578 1 581 1 1 3 0 581 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 581 1 1 1 1 0.49 67.64 2.25 0.00 0.00 0.00 0.00 582 -2 1 1 1 Series 582-root.Swildons.FortyRoute 582 -1 1 1 1 578 1 582 2 2 3 0 582 0 1 1 1 0.00 0.00 0.00 0.00 0.47 1.66 1.64 582 1 1 1 1 5.25 324.70 -29.19 0.00 0.00 0.00 0.00 582 2 1 1 1 1.74 197.29 87.16 0.00 0.00 0.00 0.00 583 -2 1 1 1 Series 583-root.Swildons.FortyRoute 583 -1 1 1 1 582 1 583 1 1 3 0 583 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 583 1 1 1 1 1.17 123.55 -68.29 0.00 0.00 0.00 0.00 584 -2 1 1 1 Series 584-root.Swildons.FortyRoute 584 -1 1 1 1 582 1 584 1 1 3 0 584 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 584 1 1 1 1 5.24 142.83 28.59 0.00 0.00 0.00 0.00 585 -2 1 1 1 Series 585-root.Swildons.FortyRoute 585 -1 1 1 1 582 1 585 1 1 3 0 585 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 585 1 1 1 1 0.86 188.04 -3.22 0.00 0.00 0.00 0.00 586 -2 1 1 1 Series 586-root.Swildons.FortyRoute 586 -1 1 1 1 582 1 586 1 1 3 0 586 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 586 1 1 1 1 1.48 137.33 36.33 0.00 0.00 0.00 0.00 587 -2 1 1 1 Series 587-root.Swildons.FortyRoute 587 -1 1 1 1 582 1 587 1 1 3 0 587 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 587 1 1 1 1 1.35 152.73 37.64 0.00 0.00 0.00 0.00 588 -2 1 1 1 Series 588-root.Swildons.FortyRoute 588 -1 1 1 1 582 1 588 1 1 3 0 588 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 588 1 1 1 1 1.31 143.66 3.36 0.00 0.00 0.00 0.00 589 -2 1 1 1 Series 589-root.Swildons.FortyRoute 589 -1 1 1 1 582 1 589 1 1 3 0 589 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 589 1 1 1 1 0.38 16.14 -13.79 0.00 0.00 0.00 0.00 590 -2 1 1 1 Series 590-root.Swildons.FortyRoute 590 -1 1 1 1 582 1 590 1 1 3 0 590 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 590 1 1 1 1 1.68 355.49 -42.58 0.00 0.00 0.00 0.00 591 -2 1 1 1 Series 591-root.Swildons.FortyRoute 591 -1 1 1 1 582 1 591 1 1 3 0 591 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 591 1 1 1 1 0.97 287.90 -24.64 0.00 0.00 0.00 0.00 592 -2 1 1 1 Series 592-root.Swildons.FortyRoute 592 -1 1 1 1 582 1 592 2 2 3 0 592 0 1 1 1 0.00 0.00 0.00 0.81 1.04 1.74 1.09 592 1 1 1 1 1.45 271.57 -22.26 0.00 0.00 0.00 0.00 592 2 1 1 1 4.31 267.38 75.35 0.00 0.00 0.00 0.00 593 -2 1 1 1 Series 593-root.Swildons.FortyRoute 593 -1 1 1 1 592 1 593 1 1 3 0 593 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 593 1 1 1 1 0.52 80.94 -53.29 0.00 0.00 0.00 0.00 594 -2 1 1 1 Series 594-root.Swildons.FortyRoute 594 -1 1 1 1 592 1 594 1 1 3 0 594 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 594 1 1 1 1 2.71 167.91 -81.00 0.00 0.00 0.00 0.00 595 -2 1 1 1 Series 595-root.Swildons.FortyRoute 595 -1 1 1 1 592 1 595 1 1 3 0 595 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 595 1 1 1 1 1.43 91.75 24.76 0.00 0.00 0.00 0.00 596 -2 1 1 1 Series 596-root.Swildons.FortyRoute 596 -1 1 1 1 592 1 596 1 1 3 0 596 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 596 1 1 1 1 0.77 188.60 -1.47 0.00 0.00 0.00 0.00 597 -2 1 1 1 Series 597-root.Swildons.FortyRoute 597 -1 1 1 1 592 1 597 1 1 3 0 597 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 597 1 1 1 1 0.34 18.60 -0.69 0.00 0.00 0.00 0.00 598 -2 1 1 1 Series 598-root.Swildons.FortyRoute 598 -1 1 1 1 592 1 598 1 1 3 0 598 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 598 1 1 1 1 1.39 260.72 -4.33 0.00 0.00 0.00 0.00 599 -2 1 1 1 Series 599-root.Swildons.FortyRoute 599 -1 1 1 1 592 1 599 2 2 3 0 599 0 1 1 1 0.00 0.00 0.00 0.73 0.30 4.17 2.68 599 1 1 1 1 7.65 250.71 -71.60 0.00 0.00 0.00 0.00 599 2 1 1 1 7.66 70.32 71.88 0.00 0.00 0.00 0.00 600 -2 1 1 1 Series 600-root.Swildons.FortyRoute 600 -1 1 1 1 599 1 600 1 1 3 0 600 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 600 1 1 1 1 1.94 100.81 -80.10 0.00 0.00 0.00 0.00 601 -2 1 1 1 Series 601-root.Swildons.FortyRoute 601 -1 1 1 1 599 1 601 1 1 3 0 601 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 601 1 1 1 1 2.79 103.80 2.13 0.00 0.00 0.00 0.00 602 -2 1 1 1 Series 602-root.Swildons.FortyRoute 602 -1 1 1 1 599 1 602 1 1 3 0 602 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 602 1 1 1 1 2.30 50.82 -8.53 0.00 0.00 0.00 0.00 603 -2 1 1 1 Series 603-root.Swildons.WaterRift 603 -1 1 1 1 599 1 525 1 1 3 0 603 0 1 1 1 0.00 0.00 0.00 2.78 0.00 0.00 1.91 603 1 1 1 1 2.32 144.81 -8.38 0.00 0.00 0.00 0.00 604 -2 1 1 1 Series 604-root.Swildons.FortyRoute 604 -1 1 1 1 525 1 604 1 1 3 0 604 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 604 1 1 1 1 1.58 244.75 79.18 0.00 0.00 0.00 0.00 605 -2 1 1 1 Series 605-root.Swildons.FortyRoute 605 -1 1 1 1 525 1 605 1 1 3 0 605 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 605 1 1 1 1 1.73 333.44 -87.87 0.00 0.00 0.00 0.00 606 -2 1 1 1 Series 606-root.Swildons.FortyRoute 606 -1 1 1 1 525 1 606 1 1 3 0 606 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 606 1 1 1 1 2.33 325.69 7.87 0.00 0.00 0.00 0.00 607 -2 1 1 1 Series 607-root.Swildons.FortyRoute 607 -1 1 1 1 525 1 607 1 1 3 0 607 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 607 1 1 1 1 2.32 325.86 7.88 0.00 0.00 0.00 0.00 608 -2 1 1 1 Series 608-root.Swildons.FortyRoute 608 -1 1 1 1 525 1 608 1 1 3 0 608 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 608 1 1 1 1 0.62 100.93 -8.28 0.00 0.00 0.00 0.00 609 -2 1 1 1 Series 609-root.Swildons.FortyRoute 609 -1 1 1 1 525 1 609 1 1 3 0 609 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 609 1 1 1 1 0.98 263.61 1.62 0.00 0.00 0.00 0.00 610 -2 1 1 1 Series 610-root.Swildons.10 610 -1 1 1 1 162 5 610 1 1 3 0 610 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 610 1 1 1 1 1.80 101.70 -83.45 0.00 0.00 0.00 0.00 611 -2 1 1 1 Series 611-root.Swildons.10 611 -1 1 1 1 162 5 611 1 1 3 0 611 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 611 1 1 1 1 1.80 102.85 -50.09 0.00 0.00 0.00 0.00 612 -2 1 1 1 Series 612-root.Swildons.10 612 -1 1 1 1 162 5 612 1 1 3 0 612 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 612 1 1 1 1 0.90 123.57 -23.23 0.00 0.00 0.00 0.00 613 -2 1 1 1 Series 613-root.Swildons.10 613 -1 1 1 1 162 5 613 1 1 3 0 613 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 613 1 1 1 1 0.84 160.86 -25.10 0.00 0.00 0.00 0.00 614 -2 1 1 1 Series 614-root.Swildons.10 614 -1 1 1 1 162 5 614 1 1 3 0 614 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 614 1 1 1 1 0.53 175.92 -0.32 0.00 0.00 0.00 0.00 615 -2 1 1 1 Series 615-root.Swildons.10 615 -1 1 1 1 162 5 615 1 1 3 0 615 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 615 1 1 1 1 0.64 67.23 -0.15 0.00 0.00 0.00 0.00 616 -2 1 1 1 Series 616-root.Swildons.10 616 -1 1 1 1 162 5 616 1 1 3 0 616 0 1 1 1 0.00 0.00 0.00 0.70 0.29 1.68 1.79 616 1 1 1 1 6.91 265.55 3.53 0.00 0.00 0.00 0.00 617 -2 1 1 1 Series 617-root.Swildons.10 617 -1 1 1 1 162 5 617 3 3 3 0 617 0 1 1 1 0.00 0.00 0.00 0.65 0.00 1.68 1.79 617 1 1 1 1 2.54 188.98 -63.18 0.00 0.00 0.00 0.00 617 2 1 1 1 4.59 249.49 -25.44 0.00 0.00 0.00 0.00 617 3 1 1 1 0.49 127.80 84.49 0.00 0.00 0.00 0.00 618 -2 1 1 1 Series 618-root.Swildons.10 618 -1 1 1 1 617 2 618 1 1 3 0 618 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 618 1 1 1 1 1.06 88.41 22.23 0.00 0.00 0.00 0.00 619 -2 1 1 1 Series 619-root.Swildons.10 619 -1 1 1 1 617 2 619 1 1 3 0 619 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 619 1 1 1 1 1.44 29.60 16.46 0.00 0.00 0.00 0.00 620 -2 1 1 1 Series 620-root.Swildons.10 620 -1 1 1 1 617 2 620 1 1 3 0 620 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 620 1 1 1 1 0.26 274.04 12.96 0.00 0.00 0.00 0.00 621 -2 1 1 1 Series 621-root.Swildons.10 621 -1 1 1 1 617 2 621 2 2 3 0 621 0 1 1 1 0.00 0.00 0.00 0.86 0.23 0.49 0.00 621 1 1 1 1 2.94 165.69 7.15 0.00 0.00 0.00 0.00 621 2 1 1 1 0.19 300.51 85.19 0.00 0.00 0.00 0.00 622 -2 1 1 1 Series 622-root.Swildons.10 622 -1 1 1 1 621 1 622 1 1 3 0 622 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 622 1 1 1 1 1.57 161.19 -85.97 0.00 0.00 0.00 0.00 623 -2 1 1 1 Series 623-root.Swildons.10 623 -1 1 1 1 621 1 623 1 1 3 0 623 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 623 1 1 1 1 1.29 325.07 -21.82 0.00 0.00 0.00 0.00 624 -2 1 1 1 Series 624-root.Swildons.10 624 -1 1 1 1 621 1 624 1 1 3 0 624 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 624 1 1 1 1 0.99 315.26 -22.29 0.00 0.00 0.00 0.00 625 -2 1 1 1 Series 625-root.Swildons.10 625 -1 1 1 1 621 1 625 1 1 3 0 625 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 625 1 1 1 1 0.76 255.09 -44.96 0.00 0.00 0.00 0.00 626 -2 1 1 1 Series 626-root.Swildons.10 626 -1 1 1 1 621 1 626 1 1 3 0 626 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 626 1 1 1 1 0.98 214.87 -34.57 0.00 0.00 0.00 0.00 627 -2 1 1 1 Series 627-root.Swildons.10 627 -1 1 1 1 621 1 627 3 3 3 0 627 0 1 1 1 0.00 0.00 0.00 0.00 0.62 0.19 1.57 627 1 1 1 1 3.72 164.01 -0.44 0.00 0.00 0.00 0.00 627 2 1 1 1 2.10 109.92 19.76 0.00 0.00 0.00 0.00 627 3 1 1 1 0.21 314.51 84.80 0.00 0.00 0.00 0.00 628 -2 1 1 1 Series 628-root.Swildons.10 628 -1 1 1 1 627 2 628 1 1 3 0 628 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 628 1 1 1 1 1.10 119.04 -83.53 0.00 0.00 0.00 0.00 629 -2 1 1 1 Series 629-root.Swildons.10 629 -1 1 1 1 627 2 629 1 1 3 0 629 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 629 1 1 1 1 0.25 15.48 -3.95 0.00 0.00 0.00 0.00 630 -2 1 1 1 Series 630-root.Swildons.10 630 -1 1 1 1 627 2 630 1 1 3 0 630 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 630 1 1 1 1 1.77 151.39 -6.07 0.00 0.00 0.00 0.00 631 -2 1 1 1 Series 631-root.Swildons.10 631 -1 1 1 1 627 2 631 1 1 3 0 631 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 631 1 1 1 1 2.88 144.96 8.77 0.00 0.00 0.00 0.00 632 -2 1 1 1 Series 632-root.Swildons.10 632 -1 1 1 1 627 2 632 1 1 3 0 632 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 632 1 1 1 1 2.84 105.08 13.82 0.00 0.00 0.00 0.00 633 -2 1 1 1 Series 633-root.Swildons.10 633 -1 1 1 1 627 2 633 1 1 3 0 633 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 633 1 1 1 1 1.24 95.75 -8.06 0.00 0.00 0.00 0.00 634 -2 1 1 1 Series 634-root.Swildons.10 634 -1 1 1 1 627 2 634 1 1 3 0 634 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 634 1 1 1 1 0.90 219.44 0.31 0.00 0.00 0.00 0.00 635 -2 1 1 1 Series 635-root.Swildons.10 635 -1 1 1 1 627 2 635 1 1 3 0 635 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 635 1 1 1 1 1.74 166.09 -7.64 0.00 0.00 0.00 0.00 636 -2 1 1 1 Series 636-root.Swildons.10 636 -1 1 1 1 627 2 636 1 1 3 0 636 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 636 1 1 1 1 3.17 163.85 5.99 0.00 0.00 0.00 0.00 637 -2 1 1 1 Series 637-root.Swildons.10 637 -1 1 1 1 627 2 637 2 2 3 0 637 0 1 1 1 0.00 0.00 0.00 1.38 1.52 0.21 1.09 637 1 1 1 1 7.71 160.14 1.86 0.00 0.00 0.00 0.00 637 2 1 1 1 2.16 100.50 5.76 0.00 0.00 0.00 0.00 638 -2 1 1 1 Series 638-root.Swildons.10 638 -1 1 1 1 627 2 638 4 4 3 0 638 0 1 1 1 0.00 0.00 0.00 0.25 2.80 0.21 1.09 638 1 1 1 1 8.35 92.14 17.83 0.00 0.00 0.00 0.00 638 2 1 1 1 4.34 7.89 9.01 0.00 0.00 0.00 0.00 638 3 1 1 1 2.15 151.23 2.05 0.00 0.00 0.00 0.00 638 4 1 1 1 3.84 295.00 51.55 0.00 0.00 0.00 0.00 639 -2 1 1 1 Series 639-root.Swildons.10 639 -1 1 1 1 638 3 639 1 1 3 0 639 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 639 1 1 1 1 4.81 294.84 51.44 0.00 0.00 0.00 0.00 640 -2 1 1 1 Series 640-root.Swildons.10 640 -1 1 1 1 638 3 640 1 1 3 0 640 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 640 1 1 1 1 3.83 294.88 51.33 0.00 0.00 0.00 0.00 641 -2 1 1 1 Series 641-root.Swildons.10 641 -1 1 1 1 638 2 641 2 2 3 0 641 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 641 1 1 1 1 3.68 87.05 11.54 0.00 0.00 0.00 0.00 641 2 1 1 1 0.50 293.06 80.22 0.00 0.00 0.00 0.00 642 -2 1 1 1 Series 642-root.Swildons.10 642 -1 1 1 1 641 1 642 1 1 3 0 642 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 642 1 1 1 1 0.25 255.53 80.01 0.00 0.00 0.00 0.00 643 -2 1 1 1 Series 643-root.Swildons.10 643 -1 1 1 1 641 1 643 1 1 3 0 643 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 643 1 1 1 1 0.30 69.66 -88.13 0.00 0.00 0.00 0.00 644 -2 1 1 1 Series 644-root.Swildons.10 644 -1 1 1 1 641 1 644 1 1 3 0 644 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 644 1 1 1 1 1.22 315.77 3.30 0.00 0.00 0.00 0.00 645 -2 1 1 1 Series 645-root.Swildons.10 645 -1 1 1 1 641 1 645 1 1 3 0 645 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 645 1 1 1 1 0.53 326.08 -14.96 0.00 0.00 0.00 0.00 646 -2 1 1 1 Series 646-root.Swildons.10 646 -1 1 1 1 641 1 646 1 1 3 0 646 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 646 1 1 1 1 0.85 117.85 28.64 0.00 0.00 0.00 0.00 647 -2 1 1 1 Series 647-root.Swildons.10 647 -1 1 1 1 641 1 647 3 3 3 0 647 0 1 1 1 0.00 0.00 0.00 1.14 0.58 0.49 0.30 647 1 1 1 1 5.88 45.77 18.38 0.00 0.00 0.00 0.00 647 2 1 1 1 5.34 78.15 18.79 0.00 0.00 0.00 0.00 647 3 1 1 1 2.11 301.89 88.21 0.00 0.00 0.00 0.00 648 -2 1 1 1 Series 648-root.Swildons.10 648 -1 1 1 1 647 2 648 1 1 3 0 648 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 648 1 1 1 1 1.20 49.65 52.50 0.00 0.00 0.00 0.00 649 -2 1 1 1 Series 649-root.Swildons.10 649 -1 1 1 1 647 2 649 1 1 3 0 649 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 649 1 1 1 1 3.76 31.22 57.89 0.00 0.00 0.00 0.00 650 -2 1 1 1 Series 650-root.Swildons.10 650 -1 1 1 1 647 2 650 1 1 3 0 650 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 650 1 1 1 1 0.65 312.79 -88.24 0.00 0.00 0.00 0.00 651 -2 1 1 1 Series 651-root.Swildons.10 651 -1 1 1 1 647 2 651 1 1 3 0 651 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 651 1 1 1 1 1.70 6.74 14.34 0.00 0.00 0.00 0.00 652 -2 1 1 1 Series 652-root.Swildons.10 652 -1 1 1 1 647 2 652 1 1 3 0 652 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 652 1 1 1 1 2.82 294.00 -11.71 0.00 0.00 0.00 0.00 653 -2 1 1 1 Series 653-root.Swildons.10 653 -1 1 1 1 647 2 653 1 1 3 0 653 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 653 1 1 1 1 0.98 311.93 23.51 0.00 0.00 0.00 0.00 654 -2 1 1 1 Series 654-root.Swildons.10 654 -1 1 1 1 647 2 654 1 1 3 0 654 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 654 1 1 1 1 0.83 193.54 7.12 0.00 0.00 0.00 0.00 655 -2 1 1 1 Series 655-root.Swildons.10 655 -1 1 1 1 647 2 655 1 1 3 0 655 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 655 1 1 1 1 2.08 254.25 -15.91 0.00 0.00 0.00 0.00 656 -2 1 1 1 Series 656-root.Swildons.10 656 -1 1 1 1 647 2 656 1 1 3 0 656 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 656 1 1 1 1 1.17 132.71 25.92 0.00 0.00 0.00 0.00 657 -2 1 1 1 Series 657-root.Swildons.10 657 -1 1 1 1 647 2 657 1 1 3 0 657 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 657 1 1 1 1 2.06 88.04 30.46 0.00 0.00 0.00 0.00 658 -2 1 1 1 Series 658-root.Swildons.10 658 -1 1 1 1 162 5 658 3 3 3 0 658 0 1 1 1 0.00 0.00 0.00 0.29 0.70 1.68 1.79 658 1 1 1 1 1.80 103.39 -49.81 0.00 0.00 0.00 0.00 658 2 1 1 1 1.86 142.05 -4.35 0.00 0.00 0.00 0.00 658 3 1 1 1 0.45 273.83 -83.91 0.00 0.00 0.00 0.00 659 -2 1 1 1 Series 659-root.Swildons.10 659 -1 1 1 1 638 3 139 1 1 3 0 659 0 1 1 1 0.00 0.00 0.00 0.00 2.86 3.76 0.00 659 1 1 1 1 3.88 293.57 51.22 0.00 0.00 0.00 0.00 660 -2 1 1 1 Series 660-root.Swildons.20 660 -1 1 1 1 26 1 660 3 3 3 0 660 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 660 1 1 1 1 3.87 260.21 -26.31 0.00 0.00 0.00 0.00 660 2 1 1 1 2.55 124.11 -19.31 0.00 0.00 0.00 0.00 660 3 1 1 1 0.81 254.08 49.75 0.00 0.00 0.00 0.00 661 -2 1 1 1 Series 661-root.Swildons.20 661 -1 1 1 1 660 2 661 1 1 3 0 661 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 661 1 1 1 1 3.81 228.01 62.45 0.00 0.00 0.00 0.00 662 -2 1 1 1 Series 662-root.Swildons.20 662 -1 1 1 1 660 2 662 1 1 3 0 662 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 662 1 1 1 1 0.77 169.50 -87.61 0.00 0.00 0.00 0.00 663 -2 1 1 1 Series 663-root.Swildons.20 663 -1 1 1 1 660 2 663 1 1 3 0 663 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 663 1 1 1 1 0.24 65.75 -0.18 0.00 0.00 0.00 0.00 664 -2 1 1 1 Series 664-root.Swildons.20 664 -1 1 1 1 660 2 664 1 1 3 0 664 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 664 1 1 1 1 0.91 248.69 7.92 0.00 0.00 0.00 0.00 665 -2 1 1 1 Series 665-root.Swildons.20 665 -1 1 1 1 660 2 665 2 2 3 0 665 0 1 1 1 0.00 0.00 0.00 0.23 1.76 3.38 0.77 665 1 1 1 1 5.29 149.28 -7.60 0.00 0.00 0.00 0.00 665 2 1 1 1 0.98 3.51 -20.60 0.00 0.00 0.00 0.00 666 -2 1 1 1 Series 666-root.Swildons.20 666 -1 1 1 1 665 1 666 1 1 3 0 666 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 666 1 1 1 1 0.45 329.32 23.74 0.00 0.00 0.00 0.00 667 -2 1 1 1 Series 667-root.Swildons.20 667 -1 1 1 1 665 1 667 1 1 3 0 667 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 667 1 1 1 1 1.15 346.14 -26.49 0.00 0.00 0.00 0.00 668 -2 1 1 1 Series 668-root.Swildons.20 668 -1 1 1 1 665 1 668 3 3 3 0 668 0 1 1 1 0.00 0.00 0.00 0.90 0.00 0.18 0.51 668 1 1 1 1 1.83 62.36 -43.21 0.00 0.00 0.00 0.00 668 2 1 1 1 3.13 174.99 -12.17 0.00 0.00 0.00 0.00 668 3 1 1 1 0.89 291.90 79.22 0.00 0.00 0.00 0.00 669 -2 1 1 1 Series 669-root.Swildons.20 669 -1 1 1 1 668 2 669 1 1 3 0 669 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 669 1 1 1 1 0.61 235.86 -20.17 0.00 0.00 0.00 0.00 670 -2 1 1 1 Series 670-root.Swildons.20 670 -1 1 1 1 668 2 670 1 1 3 0 670 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 670 1 1 1 1 0.89 61.04 28.28 0.00 0.00 0.00 0.00 671 -2 1 1 1 Series 671-root.Swildons.20 671 -1 1 1 1 668 2 671 1 1 3 0 671 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 671 1 1 1 1 0.56 335.91 -44.42 0.00 0.00 0.00 0.00 672 -2 1 1 1 Series 672-root.Swildons.20 672 -1 1 1 1 668 2 672 2 2 3 0 672 0 1 1 1 0.00 0.00 0.00 0.34 0.35 0.87 0.39 672 1 1 1 1 1.40 256.07 -52.47 0.00 0.00 0.00 0.00 672 2 1 1 1 2.40 282.91 -13.04 0.00 0.00 0.00 0.00 673 -2 1 1 1 Series 673-root.Swildons.20 673 -1 1 1 1 665 1 673 2 2 3 0 673 0 1 1 1 0.00 0.00 0.00 0.90 0.00 0.18 0.51 673 1 1 1 1 2.58 62.72 1.85 0.00 0.00 0.00 0.00 673 2 1 1 1 0.38 330.17 81.25 0.00 0.00 0.00 0.00 674 -2 1 1 1 Series 674-root.Swildons.20 674 -1 1 1 1 673 1 674 1 1 3 0 674 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 674 1 1 1 1 1.90 338.54 -69.71 0.00 0.00 0.00 0.00 675 -2 1 1 1 Series 675-root.Swildons.20 675 -1 1 1 1 673 1 675 1 1 3 0 675 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 675 1 1 1 1 0.89 273.39 -54.79 0.00 0.00 0.00 0.00 676 -2 1 1 1 Series 676-root.Swildons.20 676 -1 1 1 1 673 1 676 1 1 3 0 676 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 676 1 1 1 1 0.98 336.51 -7.20 0.00 0.00 0.00 0.00 677 -2 1 1 1 Series 677-root.Swildons.20 677 -1 1 1 1 673 1 677 1 1 3 0 677 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 677 1 1 1 1 1.33 151.15 8.89 0.00 0.00 0.00 0.00 678 -2 1 1 1 Series 678-root.Swildons.20 678 -1 1 1 1 673 1 678 1 1 3 0 678 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 678 1 1 1 1 1.08 231.15 0.66 0.00 0.00 0.00 0.00 679 -2 1 1 1 Series 679-root.Swildons.20 679 -1 1 1 1 673 1 679 2 2 3 0 679 0 1 1 1 0.00 0.00 0.00 0.97 1.31 0.38 1.78 679 1 1 1 1 2.80 60.36 1.42 0.00 0.00 0.00 0.00 679 2 1 1 1 1.13 287.53 75.43 0.00 0.00 0.00 0.00 680 -2 1 1 1 Series 680-root.Swildons.20 680 -1 1 1 1 679 1 680 1 1 3 0 680 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 680 1 1 1 1 2.72 77.43 66.64 0.00 0.00 0.00 0.00 681 -2 1 1 1 Series 681-root.Swildons.20 681 -1 1 1 1 679 1 681 1 1 3 0 681 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 681 1 1 1 1 0.85 266.28 -82.70 0.00 0.00 0.00 0.00 682 -2 1 1 1 Series 682-root.Swildons.20 682 -1 1 1 1 679 1 682 1 1 3 0 682 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 682 1 1 1 1 2.81 190.16 9.89 0.00 0.00 0.00 0.00 683 -2 1 1 1 Series 683-root.Swildons.20 683 -1 1 1 1 679 1 683 1 1 3 0 683 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 683 1 1 1 1 2.16 132.60 25.75 0.00 0.00 0.00 0.00 684 -2 1 1 1 Series 684-root.Swildons.20 684 -1 1 1 1 679 1 684 1 1 3 0 684 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 684 1 1 1 1 2.16 48.53 -6.32 0.00 0.00 0.00 0.00 685 -2 1 1 1 Series 685-root.Swildons.20 685 -1 1 1 1 679 1 685 1 1 3 0 685 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 685 1 1 1 1 1.26 4.73 -16.99 0.00 0.00 0.00 0.00 686 -2 1 1 1 Series 686-root.Swildons.20 686 -1 1 1 1 679 1 686 2 2 3 0 686 0 1 1 1 0.00 0.00 0.00 0.00 1.90 1.09 0.84 686 1 1 1 1 5.67 272.72 -29.92 0.00 0.00 0.00 0.00 686 2 1 1 1 0.67 0.92 88.13 0.00 0.00 0.00 0.00 687 -2 1 1 1 Series 687-root.Swildons.20 687 -1 1 1 1 686 1 687 1 1 3 0 687 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 687 1 1 1 1 0.23 134.34 -83.36 0.00 0.00 0.00 0.00 688 -2 1 1 1 Series 688-root.Swildons.20 688 -1 1 1 1 686 1 688 1 1 3 0 688 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 688 1 1 1 1 1.22 199.50 3.08 0.00 0.00 0.00 0.00 689 -2 1 1 1 Series 689-root.Swildons.20 689 -1 1 1 1 686 1 689 1 1 3 0 689 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 689 1 1 1 1 2.38 305.74 -7.29 0.00 0.00 0.00 0.00 690 -2 1 1 1 Series 690-root.Swildons.20 690 -1 1 1 1 686 1 690 1 1 3 0 690 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 690 1 1 1 1 3.64 9.98 12.96 0.00 0.00 0.00 0.00 691 -2 1 1 1 Series 691-root.Swildons.20 691 -1 1 1 1 686 1 691 1 1 3 0 691 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 691 1 1 1 1 1.92 333.54 9.74 0.00 0.00 0.00 0.00 692 -2 1 1 1 Series 692-root.Swildons.20 692 -1 1 1 1 686 1 692 2 2 3 0 692 0 1 1 1 0.00 0.00 0.00 1.22 3.45 0.67 0.23 692 1 1 1 1 4.21 313.66 -5.18 0.00 0.00 0.00 0.00 692 2 1 1 1 0.48 84.33 -82.18 0.00 0.00 0.00 0.00 693 -2 1 1 1 Series 693-root.Swildons.20 693 -1 1 1 1 692 1 693 1 1 3 0 693 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 693 1 1 1 1 1.30 346.63 -63.09 0.00 0.00 0.00 0.00 694 -2 1 1 1 Series 694-root.Swildons.20 694 -1 1 1 1 692 1 694 1 1 3 0 694 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 694 1 1 1 1 0.85 205.97 -12.11 0.00 0.00 0.00 0.00 695 -2 1 1 1 Series 695-root.Swildons.20 695 -1 1 1 1 692 1 695 1 1 3 0 695 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 695 1 1 1 1 0.55 88.59 -18.10 0.00 0.00 0.00 0.00 696 -2 1 1 1 Series 696-root.Swildons.20 696 -1 1 1 1 692 1 696 3 3 3 0 696 0 1 1 1 0.00 0.00 0.00 0.83 0.46 0.00 0.48 696 1 1 1 1 0.46 275.66 -49.35 0.00 0.00 0.00 0.00 696 2 1 1 1 2.99 10.35 3.89 0.00 0.00 0.00 0.00 696 3 1 1 1 1.42 173.22 78.06 0.00 0.00 0.00 0.00 697 -2 1 1 1 Series 697-root.Swildons.20 697 -1 1 1 1 696 2 697 1 1 3 0 697 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 697 1 1 1 1 2.31 245.30 74.77 0.00 0.00 0.00 0.00 698 -2 1 1 1 Series 698-root.Swildons.20 698 -1 1 1 1 696 2 698 1 1 3 0 698 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 698 1 1 1 1 0.30 314.30 -80.15 0.00 0.00 0.00 0.00 699 -2 1 1 1 Series 699-root.Swildons.20 699 -1 1 1 1 696 2 699 1 1 3 0 699 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 699 1 1 1 1 1.56 187.79 17.65 0.00 0.00 0.00 0.00 700 -2 1 1 1 Series 700-root.Swildons.20 700 -1 1 1 1 696 2 700 1 1 3 0 700 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 700 1 1 1 1 3.02 209.79 -11.39 0.00 0.00 0.00 0.00 701 -2 1 1 1 Series 701-root.Swildons.20 701 -1 1 1 1 696 2 701 1 1 3 0 701 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 701 1 1 1 1 3.15 246.69 -16.57 0.00 0.00 0.00 0.00 702 -2 1 1 1 Series 702-root.Swildons.20 702 -1 1 1 1 696 2 702 1 1 3 0 702 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 702 1 1 1 1 1.77 296.19 -6.34 0.00 0.00 0.00 0.00 703 -2 1 1 1 Series 703-root.Swildons.20 703 -1 1 1 1 696 2 703 1 1 3 0 703 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 703 1 1 1 1 3.86 326.57 -4.42 0.00 0.00 0.00 0.00 704 -2 1 1 1 Series 704-root.Swildons.20 704 -1 1 1 1 696 2 704 1 1 3 0 704 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 704 1 1 1 1 4.28 342.32 -3.07 0.00 0.00 0.00 0.00 705 -2 1 1 1 Series 705-root.Swildons.20 705 -1 1 1 1 696 2 705 1 1 3 0 705 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 705 1 1 1 1 3.09 18.37 6.70 0.00 0.00 0.00 0.00 706 -2 1 1 1 Series 706-root.Swildons.20 706 -1 1 1 1 696 2 706 1 1 3 0 706 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 706 1 1 1 1 4.26 36.20 13.46 0.00 0.00 0.00 0.00 707 -2 1 1 1 Series 707-root.Swildons.20 707 -1 1 1 1 696 2 707 1 1 3 0 707 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 707 1 1 1 1 3.80 62.68 16.75 0.00 0.00 0.00 0.00 708 -2 1 1 1 Series 708-root.Swildons.20 708 -1 1 1 1 696 2 708 1 1 3 0 708 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 708 1 1 1 1 4.72 80.70 18.14 0.00 0.00 0.00 0.00 709 -2 1 1 1 Series 709-root.Swildons.20 709 -1 1 1 1 696 2 709 1 1 3 0 709 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 709 1 1 1 1 1.83 96.42 23.43 0.00 0.00 0.00 0.00 710 -2 1 1 1 Series 710-root.Swildons.20 710 -1 1 1 1 696 2 710 1 1 3 0 710 0 1 1 1 0.00 0.00 0.00 2.90 4.13 1.39 0.30 710 1 1 1 1 1.51 325.31 1.17 0.00 0.00 0.00 0.00 711 -2 1 1 1 Series 711-root.Swildons.20 711 -1 1 1 1 696 2 711 2 2 3 0 711 0 1 1 1 0.00 0.00 0.00 4.13 2.90 1.39 0.30 711 1 1 1 1 4.27 116.70 31.59 0.00 0.00 0.00 0.00 711 2 1 1 1 0.29 302.80 72.17 0.00 0.00 0.00 0.00 712 -2 1 1 1 Series 712-root.Swildons.20 712 -1 1 1 1 711 1 712 1 1 3 0 712 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 712 1 1 1 1 0.86 353.80 -83.90 0.00 0.00 0.00 0.00 713 -2 1 1 1 Series 713-root.Swildons.20 713 -1 1 1 1 711 1 713 1 1 3 0 713 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 713 1 1 1 1 2.10 309.54 -18.89 0.00 0.00 0.00 0.00 714 -2 1 1 1 Series 714-root.Swildons.20 714 -1 1 1 1 711 1 714 1 1 3 0 714 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 714 1 1 1 1 1.91 224.24 -10.33 0.00 0.00 0.00 0.00 715 -2 1 1 1 Series 715-root.Swildons.20 715 -1 1 1 1 711 1 715 2 2 3 0 715 0 1 1 1 0.00 0.00 0.00 1.61 0.98 0.28 0.86 715 1 1 1 1 2.48 34.54 13.37 0.00 0.00 0.00 0.00 715 2 1 1 1 1.10 321.61 -84.96 0.00 0.00 0.00 0.00 716 -2 1 1 1 Series 716-root.Swildons.20 716 -1 1 1 1 715 1 716 1 1 3 0 716 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 716 1 1 1 1 1.74 354.03 -47.54 0.00 0.00 0.00 0.00 717 -2 1 1 1 Series 717-root.Swildons.20 717 -1 1 1 1 715 1 717 1 1 3 0 717 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 717 1 1 1 1 3.34 279.72 -47.10 0.00 0.00 0.00 0.00 718 -2 1 1 1 Series 718-root.Swildons.20 718 -1 1 1 1 715 1 718 1 1 3 0 718 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 718 1 1 1 1 0.50 295.30 -8.43 0.00 0.00 0.00 0.00 719 -2 1 1 1 Series 719-root.Swildons.20 719 -1 1 1 1 715 1 719 1 1 3 0 719 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 719 1 1 1 1 1.15 356.32 17.17 0.00 0.00 0.00 0.00 720 -2 1 1 1 Series 720-root.Swildons.20 720 -1 1 1 1 715 1 26 1 3 3 0 720 0 1 1 1 0.00 0.00 0.00 2.24 0.00 0.00 1.10 720 1 1 1 1 3.13 326.34 82.94 0.00 0.00 0.00 0.00 720 2 1 1 1 1.35 212.74 -12.67 0.00 0.00 0.00 0.00 720 3 1 1 1 2.43 229.67 22.63 0.00 0.00 0.00 0.00 721 -2 1 1 1 Series 721-root.Swildons.10 721 -1 1 1 1 696 2 638 2 1 3 0 721 0 1 1 1 0.00 0.00 0.00 2.88 4.11 1.39 0.30 721 1 1 1 1 2.14 330.35 -1.84 0.00 0.00 0.00 0.00 722 -2 1 1 1 Series 722-root.Swildons.20 722 -1 1 1 1 638 2 722 1 1 3 0 722 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 722 1 1 1 1 0.36 65.83 74.28 0.00 0.00 0.00 0.00 723 -2 1 1 1 Series 723-root.Swildons.20 723 -1 1 1 1 638 2 723 1 1 3 0 723 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 723 1 1 1 1 1.14 40.60 -54.87 0.00 0.00 0.00 0.00 724 -2 1 1 1 Series 724-root.Swildons.20 724 -1 1 1 1 638 2 724 1 1 3 0 724 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 724 1 1 1 1 1.18 120.87 -68.05 0.00 0.00 0.00 0.00 725 -2 1 1 1 Series 725-root.Swildons.20 725 -1 1 1 1 638 2 725 1 1 3 0 725 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 725 1 1 1 1 1.30 37.28 -71.88 0.00 0.00 0.00 0.00 726 -2 1 1 1 Series 726-root.Swildons.20 726 -1 1 1 1 638 2 726 1 1 3 0 726 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 726 1 1 1 1 1.14 41.94 -52.40 0.00 0.00 0.00 0.00 727 -2 1 1 1 Series 727-root.Swildons.20 727 -1 1 1 1 638 2 727 3 3 3 0 727 0 1 1 1 0.00 0.00 0.00 0.00 0.41 0.35 1.24 727 1 1 1 1 2.84 47.65 -61.41 0.00 0.00 0.00 0.00 727 2 1 1 1 1.87 343.99 -9.57 0.00 0.00 0.00 0.00 727 3 1 1 1 0.37 240.56 -55.73 0.00 0.00 0.00 0.00 728 -2 1 1 1 Series 728-root.Swildons.20 728 -1 1 1 1 727 2 728 1 1 3 0 728 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 728 1 1 1 1 0.36 37.80 -52.79 0.00 0.00 0.00 0.00 729 -2 1 1 1 Series 729-root.Swildons.20 729 -1 1 1 1 727 2 729 1 1 3 0 729 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 729 1 1 1 1 1.17 256.53 42.02 0.00 0.00 0.00 0.00 730 -2 1 1 1 Series 730-root.Swildons.20 730 -1 1 1 1 727 2 305 1 1 3 0 730 0 1 1 1 0.00 0.00 0.00 0.82 0.21 0.78 0.31 730 1 1 1 1 1.63 309.69 20.13 0.00 0.00 0.00 0.00 731 -2 1 1 1 Series 731-root.Swildons.20 731 -1 1 1 1 305 1 658 2 3 3 0 731 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 731 1 1 1 1 1.57 248.47 -33.27 0.00 0.00 0.00 0.00 731 2 1 1 1 2.11 301.30 3.36 0.00 0.00 0.00 0.00 731 3 1 1 1 2.60 265.44 31.57 0.30 0.39 0.00 0.45 732 -2 1 1 1 Series 732-root.Swildons.20 732 -1 1 1 1 658 2 732 1 1 3 0 732 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 732 1 1 1 1 0.45 327.03 -88.28 0.00 0.00 0.00 0.00 733 -2 1 1 1 Series 733-root.Swildons.20 733 -1 1 1 1 658 2 733 1 1 3 0 733 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 733 1 1 1 1 0.40 218.81 -21.96 0.00 0.00 0.00 0.00 734 -2 1 1 1 Series 734-root.Swildons.20 734 -1 1 1 1 658 2 734 1 1 3 0 734 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 734 1 1 1 1 0.39 205.95 -25.01 0.00 0.00 0.00 0.00 735 -2 1 1 1 Series 735-root.Swildons.20 735 -1 1 1 1 658 2 735 1 1 3 0 735 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 735 1 1 1 1 0.45 25.67 6.50 0.00 0.00 0.00 0.00CaveConverter_src/test/data/regression/0081_Carcavuezo_in.svx0000644000000000000000000005422312560565152023260 0ustar rootroot*BEGIN 0081_Carcavuezo ;Created from Survey file on Sun,09 May 1999.13:06:50 ;Dates surveyed : 74/8&86/8&86/8 ;Surveyors : VARIOUS+DMP&MDW ;No of stations : 865 ;Plan length : 647.730186m ;Traverse length: 265.52m *EXPORT 152 253 *FIX 0 452883 4798000 150 *entrance 0 0 1 5.00 0000 0 ;* 1 2 13.30 81.25 -8 ;* 2 3 5.10 101.31 0 ;* 3 4 4.12 165.96 0 ;* 4 5 2.23 116.56 0 ;* 5 6 4.00 180.00 0 ;* 6 7 9.00 90.00 0 ;* 7 8 38.47 81.02 0 ;* 8 9 2.00 180.00 0 ;* 9 10 8.60 262.87 -20 ;* 10 11 16.76 252.64 0 ;* 11 12 5.00 143.13 0 ;* 12 13 5.38 248.19 0 ;* 5 14 32.25 82.87 0 ;* 14 15 6.32 18.43 0 ;* 15 16 22.45 84.29 -26 ;* 16 17 12.37 15.94 -53 ;* 17 18 20.10 264.29 0 ;* 17 19 35.86 59.85 -1 ;* 19 20 132.19 50.52 -1 ;* 20 21 24.59 63.43 0 ;* 16 22 6.05 79.45 13 ;* 22 23 2.40 55.95 45 ;* 23 24 5.15 - +V ;* 24 25 6.90 23.95 42 ;* 25 26 17.55 263.45 11 ;* 26 27 6.18 291.95 16 ;* 27 28 8.16 15.95 -24 ;* 28 29 17.45 90.45 -6 ;* 29 30 13.70 79.45 5 ;* 30 31 22.60 89.95 -10 ;* 31 32 13.00 190.95 32 ;* 32 33 8.29 213.95 5 ;* 33 34 23.25 263.95 -11 ;* 34 35 4.70 353.95 -29 ;* 34 36 30.45 345.95 -10 ;* 19 37 8.43 98.15 5 ;* 37 38 6.30 133.95 38 ;* 38 39 5.90 174.95 0 ;* 39 40 5.40 82.95 8 ;* 40 41 2.00 65.95 -30 ;* 41 42 3.50 179.95 -42 ;* 42 43 9.60 153.95 4 ;* 43 44 9.60 153.95 4 ;* 44 45 5.30 175.95 26 ;* 45 46 6.40 213.95 -8 ;* 46 47 4.40 223.95 30 ;* 47 48 3.00 - -V ;* 48 49 2.40 183.95 0 ;* 49 50 6.00 114.95 34 ;* 50 51 1.70 93.95 0 ;* 51 52 1.90 163.95 10 ;* 52 53 1.40 83.95 0 ;* 53 54 3.80 143.95 35 ;* 54 55 3.30 140.95 -12 ;* 55 56 2.00 - -V ;* 56 57 4.50 94.95 -18 ;* 57 58 3.70 83.95 0 ;* 58 59 2.20 - -V ;* 59 60 2.70 23.95 0 ;* 60 61 3.60 45.95 0 ;* 61 62 3.70 350.95 20 ;* 62 63 0.90 8.95 0 ;* 63 64 0.90 - +V ;* 64 65 0.40 8.95 0 ;* 65 66 11.90 70.95 0 ;* 66 67 2.70 73.95 30 ;* 67 68 6.20 93.95 35 ;* 68 69 2.30 84.95 0 ;* 69 70 10.90 79.95 -2 ;* 70 71 27.50 289.95 0 ;* 71 72 2.60 313.95 38 ;* 70 73 23.20 89.95 2 ;* 73 74 29.60 73.95 -3 ;* 74 75 30.00 73.45 0 ;* 75 76 30.00 74.95 2 ;* 76 77 12.50 85.95 5 ;* 77 78 7.70 53.95 5 ;* 78 79 9.50 48.95 -3 ;* 77 80 21.80 112.95 -4 ;* 80 81 30.00 90.95 -2 ;* 81 82 21.10 117.95 4 ;* 82 83 18.10 73.45 -4 ;* 83 84 16.20 86.95 1 ;* 84 85 30.00 97.95 - ;* 85 86 30.00 95.45 1 ;* 86 87 30.00 102.95 0 ;* 87 88 18.30 61.45 -3 ;* 88 89 24.60 105.45 1 ;* 82 90 15.00 172.95 1 ;* 90 91 20.20 236.45 -1 ;* 91 92 30.00 235.95 2 ;* 92 93 30.00 233.45 3 ;* 93 94 18.60 196.45 6 ;* 94 95 8.40 161.95 -1 ;* 95 96 4.20 116.45 -10 ;* 96 97 5.00 113.95 0 ;* 97 98 6.00 88.95 0 ;* 98 99 10.00 263.95 -2 ;* 93 100 7.80 321.45 2 ;* 100 101 6.80 314.95 -2 ;* 101 102 10.20 273.95 6 ;* 102 103 11.00 262.95 1 ;* 103 104 24.10 253.95 4 ;* 104 105 7.00 268.95 -3 ;* 93 106 7.70 180.95 10 ;* 106 107 8.20 114.95 2 ;* 89 108 15.40 35.95 3 ;* 108 109 9.00 321.95 10 ;* 109 110 11.20 313.95 -31 ;* 110 111 14.50 30.95 -9 ;* 111 112 6.60 69.95 -35 ;* 112 113 5.30 36.95 -8 ;* 113 114 7.60 19.95 25 ;* 114 115 19.20 50.95 -4 ;* 115 116 12.40 83.95 -1 ;* 116 117 2.80 64.95 -34 ;* 117 118 6.70 69.95 -1 ;* 118 119 4.20 47.95 15 ;* 119 120 20.00 71.95 -1 ;* 120 121 20.00 71.95 -4 ;* 121 122 8.90 27.95 -5 ;* 122 123 5.70 338.95 0 ;* 123 124 8.40 309.95 32 ;* 124 125 12.30 275.95 0 ;* 125 126 7.40 336.95 -17 ;* 126 127 7.10 328.95 4 ;* 127 128 9.80 68.95 6 ;* 128 129 7.30 40.95 -6 ;* 129 130 6.70 341.95 -5 ;* 130 131 7.50 26.95 5 ;* 131 132 6.20 56.95 -11 ;* 132 133 5.90 31.95 0 ;* 133 134 2.20 341.95 -2 ;* 134 135 20.00 34.95 -3 ;* 135 136 14.50 4.95 -4 ;* 136 137 11.10 33.95 -2 ;* 137 138 7.80 54.95 0 ;* 138 139 2.10 118.95 8 ;* 139 140 20.00 47.96 -2 ;* 140 141 6.70 25.95 2 ;* 141 142 6.90 3.95 -3 ;* 142 143 6.90 63.95 5 ;* 143 144 6.00 359.95 -7 ;* 144 145 10.40 21.95 -5 ;* 145 146 5.40 7.95 -4 ;* 146 147 12.30 341.95 -5 ;* 147 148 2.90 8.95 8 ;* 148 149 5.30 62.95 0 ;* 149 150 2.10 324.95 31 ;* 150 151 4.10 - +V ;* 151 152 11.10 74.95 5 ;* 140 153 2.00 308.95 12 ;* 153 154 12.00 229.45 1 ;* 154 155 13.10 11.95 -1 ;* 155 156 22.00 31.95 -4 ;* 156 157 7.40 1.95 0 ;* 157 158 7.80 38.95 2 ;* 158 159 5.30 3.45 -5 ;* 159 160 13.70 355.95 1 ;* 160 161 2.80 322.95 7 ;* 161 162 3.40 266.95 -5 ;* 162 163 3.70 206.95 4 ;* 163 164 2.60 236.95 -1 ;* 164 165 2.20 234.95 -7 ;* 165 166 2.80 1.45 8 ;* 166 167 3.90 316.95 -7 ;* 167 168 5.30 236.45 4 ;* 168 169 7.20 331.95 -9 ;* 169 170 4.40 232.95 8 ;* 170 171 1.20 159.95 14 ;* 171 172 6.10 248.95 -3 ;* 172 173 4.50 322.95 -14 ;* 173 174 6.70 220.95 5 ;* 174 175 7.20 138.95 -3 ;* 175 176 5.00 229.95 5 ;* 176 177 6.20 309.95 2 ;* 177 178 3.30 331.95 4 ;* 178 179 8.10 238.95 1 ;* 179 180 7.10 333.95 6 ;* 180 181 1.90 236.45 25 ;* 181 182 6.50 250.95 -15 ;* 182 183 3.20 183.95 -50 ;* 183 184 6.20 216.95 0 ;* 184 185 13.80 238.95 2 ;* 185 186 10.90 212.95 -2 ;* 186 187 16.50 277.95 0 ;* 187 188 11.20 99.11 2 ;* 188 189 7.10 197.11 2 ;* 189 190 6.20 274.11 0 ;* 190 191 8.60 230.11 0 ;* 191 192 0.0 - +V ;* 192 193 0.0 - +V ;* 193 194 0.0 - +V ;* 194 195 0.0 - +V ;* 89 196 14.50 113.92 11 ;* 196 197 20.00 76.95 3 ;* 197 198 10.50 72.95 12 ;* 198 199 10.80 102.95 2 ;* 199 200 18.80 83.95 -4 ;* 200 201 17.30 157.95 -4 ;* 201 202 10.40 145.95 10 ;* 202 203 20.00 85.95 -2 ;* 203 204 9.80 140.95 12 ;* 204 205 20.00 90.95 2 ;* 205 206 10.10 71.95 2 ;* 206 207 20.00 92.95 1 ;* 207 208 30.00 79.95 -1 ;* 208 209 30.00 80.95 1 ;* 209 210 30.00 94.95 2 ;* 210 211 1.00 - -V ;* 211 212 30.00 82.95 - ;* 212 213 30.00 76.95 0 ;* 213 214 10.80 57.95 -1 ;* 214 215 12.40 64.95 -9 ;* 215 216 8.60 59.95 -2 ;* 216 217 8.10 45.95 -3 ;* 217 218 14.80 59.95 2 ;* 218 219 7.30 105.95 -13 ;* 219 220 13.40 60.95 -2 ;* 220 221 13.20 9.95 10 ;* 221 222 6.40 22.95 3 ;* 222 223 15.50 82.95 3 ;* 223 224 4.70 327.95 0 ;* 224 225 3.40 65.95 -2 ;* 225 226 6.70 332.95 -11 ;* 226 227 7.50 17.95 -2 ;* 227 228 1.40 21.95 -26 ;* 228 229 4.10 358.95 -6 ;* 229 230 15.70 16.95 -2 ;* 230 231 5.50 48.95 -2 ;* 231 232 13.30 40.95 1 ;* 232 233 8.70 66.95 -1 ;* 233 234 3.00 163.95 22 ;* 234 235 10.80 58.95 -3 ;* 235 236 8.40 41.95 20 ;* 236 237 16.40 81.95 -1 ;* 237 238 6.40 55.95 -25 ;* 238 239 5.90 63.95 0 ;* 239 240 7.60 158.95 -9 ;* 240 241 5.80 47.95 -6 ;* 241 242 10.20 62.95 2 ;* 242 243 4.30 100.95 4 ;* 243 244 8.30 57.95 -3 ;* 244 245 1.00 - +V ;* 245 246 2.00 145.95 27 ;* 246 247 7.90 58.95 -18 ;* 247 248 7.40 77.95 -8 ;* 248 249 5.60 20.95 -2 ;* 249 250 4.40 45.95 -7 ;* 250 251 2.80 104.95 15 ;* 251 252 6.10 29.95 -7 ;* 252 253 10.00 28.95 -2 ;* 186 254 4.90 272.93 -3 ;* 254 255 7.50 199.95 0 ;* 255 256 6.40 277.95 0 ;* 256 257 9.30 226.95 1 ;* 257 258 8.20 327.95 -3 ;* 258 259 9.70 262.95 -3 ;* 259 260 6.90 217.95 3 ;* 260 261 17.00 252.95 2 ;* 261 262 16.70 306.95 -5 ;* 262 263 20.90 232.95 2 ;* 263 264 19.30 252.95 1 ;* 264 265 13.50 268.95 0 ;* 265 266 3.20 258.95 27 ;* 266 267 2.50 304.95 38 ;* 267 268 4.70 337.95 36 ;* 268 269 9.20 277.95 3 ;* 269 270 5.70 208.95 -16 ;* 270 271 17.40 263.95 -14 ;* 271 272 5.60 95.95 -3 ;* 272 273 14.30 202.95 7 ;* 273 274 5.00 231.95 39 ;* 274 275 15.20 174.95 -2 ;* 113 276 7.90 21.95 19 ;* 276 277 15.20 38.95 -4 ;* 277 278 12.00 351.95 28 ;* 278 279 18.50 273.95 -2 ;* 279 280 16.00 2.95 1 ;* 280 281 23.20 310.95 5 ;* 281 282 21.80 275.95 0 ;* 76 283 15.99 274.94 - ;* 283 284 13.00 261.95 1 ;* 284 285 11.80 268.95 2 ;* 285 286 7.30 282.95 8 ;* 286 287 5.20 344.95 7 ;* 287 288 3.50 6.95 45 ;* 288 289 20.70 257.95 4 ;* 289 290 3.40 261.95 -24 ;* 290 291 1.80 290.95 -20 ;* 291 292 9.00 265.95 7 ;* 292 293 3.80 276.95 21 ;* 293 294 4.50 271.95 -29 ;* 294 295 1.30 225.95 -45 ;* 295 296 2.90 266.95 0 ;* 296 297 11.90 272.95 19 ;* 297 298 5.70 239.95 -9 ;* 298 299 7.30 269.95 38 ;* 299 300 5.70 275.95 12 ;* 289 301 3.00 63.95 7 ;* 301 302 4.10 328.95 -25 ;* 302 303 1.60 68.95 0 ;* 303 304 5.20 83.95 -1 ;* 304 305 1.30 33.95 0 ;* 305 306 6.50 66.95 5 ;* 306 307 8.60 73.95 -9 ;* 79 308 8.23 340.04 -1 ;* 308 309 1.00 - +V ;* 309 310 2.24 330.03 0 ;* 310 311 3.91 267.03 -20 ;* 311 312 3.33 272.03 0 ;* 312 313 3.55 249.03 -2 ;* 313 314 5.62 284.03 0 ;* 314 315 1.83 160.03 43 ;* 315 316 2.56 267.03 50 ;* 316 317 2.74 219.03 50 ;* 317 318 20.20 93.03 0 ;* 317 319 5.86 248.03 -15 ;* 319 320 20.18 290.03 -5 ;* 320 321 18.20 74.03 10 ;* 320 322 14.82 255.03 27 ;* 320 323 11.46 355.03 0 ;* 323 324 7.85 283.03 9 ;* 323 325 4.90 74.03 4 ;* 325 326 22.60 100.03 0 ;* 115 327 3.89 - +V ;* 327 328 10.70 223.03 3 ;* 328 329 5.00 274.03 -18 ;* 329 330 3.20 327.03 -12 ;* 330 331 4.30 279.03 -5 ;* 331 332 4.90 57.03 -6 ;* 332 333 3.20 43.03 9 ;* 333 334 3.20 280.03 -17 ;* 334 335 4.20 331.03 -1 ;* 335 336 10.80 50.03 -2 ;* 336 337 20.60 21.03 -5 ;* 337 338 9.40 65.03 33 ;* 338 339 12.20 288.03 1 ;* 338 340 5.30 42.03 -10 ;* 340 341 7.20 76.03 -23 ;* 341 342 4.60 147.03 -17 ;* 342 343 16.90 92.03 0 ;* 343 344 7.00 94.03 22 ;* 344 345 8.10 46.03 -8 ;* 327 346 6.70 106.03 3 ;* 346 347 5.00 125.03 3 ;* 347 348 15.00 44.03 -3 ;* 348 349 8.50 354.03 -13 ;* 349 350 9.40 108.03 -15 ;* 187 351 2.20 211.99 10 ;* 351 352 4.00 - +V ;* 352 353 3.40 291.03 25 ;* 353 354 10.80 258.03 -1 ;* 354 355 6.20 292.03 -8 ;* 355 356 7.20 277.03 13 ;* 356 357 6.40 261.03 -41 ;* 357 358 14.90 254.03 -3 ;* 358 359 7.30 235.03 5 ;* 359 360 6.90 187.03 3 ;* 360 361 14.00 266.03 -4 ;* 361 362 10.70 231.03 4 ;* 362 363 7.60 302.03 0 ;* 363 364 5.40 250.03 0 ;* 364 365 5.70 292.03 -5 ;* 365 366 8.05 234.03 -2 ;* 366 367 6.85 153.03 3 ;* 367 368 8.45 278.03 -14 ;* 368 369 6.00 219.03 4 ;* 369 370 3.00 139.03 24 ;* 370 371 2.30 246.03 7 ;* 371 372 2.80 177.03 13 ;* 372 373 11.20 236.03 4 ;* 373 374 3.90 197.03 5 ;* 374 375 5.10 269.03 1 ;* 375 376 4.30 262.03 3 ;* 376 377 5.90 307.03 -10 ;* 377 378 4.60 341.03 -1 ;* 378 379 13.40 39.03 -5 ;* 379 380 10.50 13.03 1 ;* 380 381 6.30 11.03 1 ;* 381 382 7.40 254.03 -2 ;* 382 383 20.30 257.03 -12 ;* 383 384 18.20 202.03 17 ;* 384 385 8.60 208.03 14 ;* 385 386 9.90 191.03 0 ;* 386 387 15.38 132.38 1 ;* 387 388 12.60 19.11 -15 ;* 388 389 6.45 355.11 -13 ;* 389 390 5.60 359.11 0 ;* 390 391 22.00 67.11 10 ;* 391 392 7.10 127.11 3 ;* 392 393 2.50 169.11 -20 ;* 393 394 4.10 85.11 -20 ;* 394 395 2.10 26.11 -4 ;* 395 396 5.20 38.11 -36 ;* 396 397 12.50 78.11 4 ;* 397 398 30.00 84.11 1 ;* 398 399 13.40 136.11 4 ;* 399 400 3.10 229.11 -4 ;* 400 401 5.40 115.11 5 ;* 401 402 6.40 131.11 6 ;* 402 403 3.70 106.11 1 ;* 403 404 8.20 50.11 -5 ;* 404 405 7.50 49.11 -2 ;* 405 406 2.60 85.11 -9 ;* 406 407 1.70 194.11 7 ;* 407 408 6.60 124.11 -1 ;* 408 409 14.60 50.11 0 ;* 409 410 1.70 334.11 3 ;* 410 411 4.10 54.11 4 ;* 411 412 5.20 304.11 -13 ;* 412 413 9.10 55.11 3 ;* 413 414 2.70 109.11 3 ;* 414 415 5.35 22.11 -4 ;* 415 416 6.35 52.11 0 ;* 416 417 9.40 40.11 -1 ;* 417 418 6.80 94.11 2 ;* 418 419 7.10 23.11 -4 ;* 419 420 5.20 67.11 1 ;* 420 421 11.00 31.11 2 ;* 406 422 5.20 37.11 0 ;* 422 423 2.00 98.11 -6 ;* 423 424 2.40 100.11 2 ;* 424 425 4.80 73.11 1 ;* 425 426 1.60 96.11 5 ;* 426 427 2.50 71.11 -5 ;* 423 428 3.80 325.11 -2 ;* 428 429 5.45 240.11 6 ;* 429 430 5.30 250.11 3 ;* 430 431 3.75 159.11 8 ;* 431 432 7.60 231.11 1 ;* 432 433 4.40 316.11 0 ;* 433 434 4.60 275.11 0 ;* 434 435 8.80 334.11 -1 ;* 435 436 5.20 309.11 -6 ;* 429 437 3.80 337.11 -8 ;* 437 438 3.15 4.11 3 ;* 438 439 7.10 345.11 -5 ;* 439 440 10.60 317.11 -4 ;* 440 441 8.45 219.11 8 ;* 441 442 8.40 153.11 1 ;* 442 443 2.80 155.11 5 ;* 443 444 3.10 101.11 0 ;* 444 445 3.30 115.11 2 ;* 445 446 3.80 68.11 -3 ;* 386 447 15.59 132.66 1 ;* 447 448 12.60 304.11 12 ;* 448 449 8.00 280.11 -23 ;* 449 450 2.00 - -V ;* 450 451 15.60 283.11 -4 ;* 451 452 16.40 299.11 -4 ;* 452 453 30.00 272.11 -3 ;* 453 454 2.00 - -V ;* 454 455 30.00 282.11 0 ;* 77 456 12.10 45.11 1 ;* 456 457 4.80 305.11 18 ;* 457 458 3.20 10.11 78 ;* 458 459 3.10 349.11 -5 ;* 459 460 18.00 268.11 -4 ;* 460 461 20.00 287.11 -5 ;* 461 462 9.60 358.11 5 ;* 462 463 14.10 276.11 1 ;* 463 464 5.70 288.11 -35 ;* 464 465 8.00 256.11 -2 ;* 465 466 0.60 - +V ;* 466 467 10.40 258.11 9 ;* 467 468 3.20 260.11 -33 ;* 468 469 4.30 286.11 -10 ;* 469 470 17.80 278.11 1 ;* 470 471 9.00 273.11 3 ;* 471 472 9.20 254.11 0 ;* 472 473 17.10 275.11 1 ;* 473 474 0.50 - +V ;* 474 475 18.70 254.11 -2 ;* 475 476 9.40 251.11 2 ;* 476 477 20.00 252.11 1 ;* 477 478 20.00 253.11 2 ;* 478 479 6.00 264.11 2 ;* 479 480 7.80 263.11 -18 ;* 480 481 15.20 270.11 18 ;* 481 482 13.10 10.11 3 ;* 482 483 19.10 278.11 3 ;* 483 484 4.00 274.11 -44 ;* 484 485 20.00 279.11 0 ;* 485 486 20.00 276.11 -1 ;* 486 487 20.00 271.11 6 ;* 487 488 20.00 276.11 3 ;* 488 489 20.00 288.11 6 ;* 489 490 4.90 270.11 17 ;* 490 491 5.00 255.11 3 ;* 491 492 20.00 275.11 0 ;* 492 493 3.40 349.11 20 ;* 493 494 20.00 263.11 -7 ;* 494 495 20.00 277.11 0 ;* 495 496 20.00 255.11 1 ;* 496 497 20.00 253.11 0 ;* 497 498 20.00 268.11 1 ;* 498 499 20.00 258.11 0 ;* 499 500 20.00 265.11 0 ;* 500 501 12.30 280.11 17 ;* 501 502 19.50 259.11 -9 ;* 502 503 17.20 353.11 -4 ;* 503 504 20.00 339.11 3 ;* 504 505 20.00 295.11 -10 ;* 478 506 11.10 106.11 0 ;* 506 507 12.40 70.11 1 ;* 507 508 20.00 69.11 -1 ;* 508 509 20.00 79.11 0 ;* 509 510 20.00 73.11 -1 ;* 474 511 11.70 267.11 -3 ;* 511 512 18.40 269.11 0 ;* 512 513 5.20 274.11 1 ;* 513 514 10.60 267.11 -6 ;* 514 515 10.00 88.11 -25 ;* 515 516 12.70 99.11 -23 ;* 516 517 10.30 219.11 -3 ;* 517 518 18.30 234.11 2 ;* 518 519 14.70 229.11 3 ;* 519 520 10.40 128.11 3 ;* 520 521 1.90 224.11 78 ;* 461 522 13.70 256.11 26 ;* 522 523 6.00 254.11 14 ;* 523 524 5.00 4.11 35 ;* 502 525 8.95 209.11 25 ;* 525 526 18.35 286.11 4 ;* 526 527 22.00 292.11 -5 ;* 527 528 8.65 242.61 -8 ;* 528 529 13.20 250.11 -3 ;* 529 530 18.35 212.61 4 ;* 530 531 13.15 229.11 15 ;* 531 532 13.30 215.61 -15 ;* 532 533 30.00 231.11 -2 ;* 533 534 15.50 242.11 7 ;* 534 535 15.50 299.61 2 ;* 535 536 2.00 175.11 -2 ;* 536 537 7.30 270.11 -6 ;* 537 538 6.30 240.11 8 ;* 538 539 7.50 272.11 7 ;* 539 540 2.30 - +V ;* 540 541 18.20 283.11 -2 ;* 541 542 14.50 277.11 0 ;* 534 543 30.70 53.11 -4 ;* 543 544 9.30 111.11 1 ;* 544 545 28.70 56.61 -2 ;* 545 546 22.10 64.61 0 ;* 546 547 11.10 48.61 -1 ;* 547 548 25.90 84.11 0 ;* 548 549 12.20 89.61 -3 ;* 549 550 2.40 - -V ;* 505 551 19.00 58.12 3 ;* 551 552 30.00 49.11 4 ;* 552 553 25.00 14.11 2 ;* 553 554 10.60 267.11 5 ;* 554 555 10.00 275.11 -8 ;* 555 556 30.00 266.11 0 ;* 556 557 30.00 271.11 - ;* 557 558 13.90 281.11 0 ;* 558 559 30.00 271.11 1 ;* 559 560 30.00 264.11 9 ;* 560 561 21.50 261.11 -3 ;* 561 562 13.50 251.61 -16 ;* 562 563 11.00 245.11 -4 ;* 563 564 15.50 229.11 1 ;* 564 565 19.00 239.11 -1 ;* 565 566 30.00 248.11 0 ;* 566 567 30.00 267.11 0 ;* 567 568 19.50 224.11 0 ;* 568 569 9.60 263.11 19 ;* 569 570 10.20 233.11 -19 ;* 570 571 13.80 232.11 12 ;* 571 572 18.90 248.11 -6 ;* 572 573 18.70 278.11 -1 ;* 573 574 30.00 278.11 - ;* 574 575 12.00 301.11 -3 ;* 575 576 18.70 279.11 2 ;* 576 577 13.70 299.11 5 ;* 577 578 30.00 279.11 -2 ;* 578 579 5.00 218.11 3 ;* 579 580 7.30 246.11 5 ;* 554 581 8.50 46.11 -5 ;* 581 582 5.30 354.11 10 ;* 582 583 12.50 273.11 -8 ;* 583 584 9.40 298.11 6 ;* 584 585 8.60 276.11 2 ;* 585 586 7.50 298.11 -17 ;* 586 587 29.00 306.11 2 ;* 587 588 1.80 - -V ;* 588 589 6.10 316.11 -8 ;* 589 590 1.80 - +V ;* 590 591 4.80 12.11 32 ;* 591 592 4.40 272.11 48 ;* 592 593 20.00 261.11 -1 ;* 593 594 1.00 - -V ;* 594 595 6.60 323.11 -24 ;* 595 596 14.00 277.11 1 ;* 596 597 2.40 289.11 -20 ;* 597 598 2.60 358.11 40 ;* 598 599 2.60 259.11 8 ;* 599 600 10.50 278.11 12 ;* 572 601 15.20 162.11 1 ;* 601 602 14.40 103.11 5 ;* 602 603 5.00 203.11 5 ;* 603 604 9.10 89.11 3 ;* 604 605 16.70 175.11 12 ;* 605 606 22.40 95.11 5 ;* 603 607 1.40 - +V ;* 607 608 6.10 185.11 4 ;* 608 609 3.60 120.11 6 ;* 609 610 5.30 153.11 4 ;* 610 611 1.90 278.11 -28 ;* 611 612 5.10 229.11 21 ;* 612 613 1.90 222.11 -19 ;* 613 614 1.20 319.11 -37 ;* 614 615 4.50 263.11 0 ;* 615 616 4.70 153.61 5 ;* 616 617 3.30 256.11 5 ;* 617 618 7.80 246.11 -4 ;* 618 619 6.30 266.11 9 ;* 619 620 3.80 240.11 12 ;* 620 621 3.70 251.11 -7 ;* 621 622 3.20 314.11 -25 ;* 622 623 2.70 254.11 0 ;* 600 624 1.00 - +V ;* 624 625 6.10 249.11 -15 ;* 625 626 7.70 273.11 33 ;* 626 627 4.20 273.11 -23 ;* 627 628 4.60 231.11 -49 ;* 628 629 3.20 310.11 -12 ;* 629 630 2.40 266.11 12 ;* 630 631 1.80 277.11 5 ;* 631 632 3.40 291.11 3 ;* 632 633 3.00 256.11 20 ;* 633 634 3.60 274.11 -4 ;* 634 635 6.50 6.11 0 ;* 635 636 15.00 287.11 3 ;* 636 637 2.00 278.11 -10 ;* 637 638 11.00 275.11 -1 ;* 638 639 1.90 338.11 19 ;* 639 640 1.40 277.11 20 ;* 640 641 6.10 292.11 3 ;* 641 642 4.60 281.11 -1 ;* 0 643 4.84 342.11 -62 ;* 643 644 2.85 50.11 -15 ;* 644 645 5.20 68.61 -19 ;* 645 646 11.50 83.11 -25 ;* 646 647 2.60 165.11 9 ;* 647 648 6.80 102.11 9 ;* 648 649 27.10 80.11 -4 ;* 649 650 8.70 41.11 6 ;* 650 651 18.20 83.61 4 ;* 651 652 2.90 307.11 2 ;* 652 653 7.90 89.11 -34 ;* 653 654 4.60 319.11 -49 ;* 654 655 4.50 44.11 -38 ;* 655 656 4.70 - -V ;* 656 657 1.45 109.11 -28 ;* 657 658 2.75 2.11 -6 ;* 658 659 1.10 - -V ;* 659 660 3.50 347.11 - ;* 660 661 3.10 53.11 12 ;* 661 662 3.30 69.11 23 ;* 662 663 7.25 53.61 5 ;* 663 664 1.35 - +V ;* 664 665 27.50 79.61 -4 ;* 665 666 2.80 - -V ;* 666 667 11.00 308.61 -4 ;* 667 668 13.95 46.11 0 ;* 668 669 11.20 - +V ;* 669 670 23.20 270.61 - ;* 668 671 19.65 51.61 -3 ;* 671 672 27.80 55.61 2 ;* 672 673 24.35 39.61 0 ;* 673 674 11.30 47.11 26 ;* 674 675 12.45 83.61 -23 ;* 675 676 4.60 17.11 17 ;* 676 677 9.45 84.11 7 ;* 677 678 12.30 19.61 -7 ;* 678 679 30.00 82.11 -4 ;* 0 680 3.44 355.11 -35 ;* 680 681 2.40 - -V ;* 681 682 2.40 59.11 -5 ;* 682 683 5.30 80.11 -7 ;* 683 684 3.70 50.11 -23 ;* 684 685 7.80 98.11 -33 ;* 685 686 3.30 142.11 12 ;* 686 687 4.80 97.11 8 ;* 550 688 4.00 187.16 6 ;* 688 689 8.50 183.11 -1 ;* 689 690 5.50 242.11 -2 ;* 690 691 4.00 268.11 1 ;* 691 692 6.80 240.11 0 ;* 692 693 4.80 273.11 0 ;* 693 694 6.20 259.11 0 ;* 694 695 5.90 221.11 -2 ;* 695 696 9.00 90.11 0 ;* 696 697 8.10 83.11 0 ;* 697 698 2.60 173.11 -4 ;* 698 699 10.50 93.11 1 ;* 699 700 24.40 93.11 -2 ;* 700 701 2.40 276.11 -9 ;* 701 702 4.00 96.11 0 ;* 702 703 2.40 233.11 -8 ;* 703 704 3.10 99.11 -6 ;* 704 705 6.40 238.11 -4 ;* 705 706 5.50 108.11 1 ;* 706 707 4.90 96.11 -6 ;* 707 708 6.50 99.11 -2 ;* 708 709 6.00 92.11 -4 ;* 709 710 5.80 145.11 -10 ;* 710 711 5.50 132.11 3 ;* 711 712 4.50 187.11 8 ;* 712 713 6.80 287.11 -33 ;* 713 714 4.00 241.11 4 ;* 714 715 15.50 275.11 -3 ;* 715 716 16.60 260.11 3 ;* 716 717 7.90 17.11 4 ;* 717 718 12.50 263.11 3 ;* 718 719 12.80 267.11 5 ;* 713 720 9.10 110.11 -14 ;* 720 721 3.00 182.11 0 ;* 721 722 10.90 90.11 -1 ;* 534 723 5.99 164.15 -31 ;* 723 724 4.00 118.11 -18 ;* 724 725 1.00 184.11 0 ;* 725 726 3.90 158.11 -25 ;* 726 727 12.90 66.11 -14 ;* 727 728 19.90 104.11 3 ;* 482 729 15.50 189.11 -5 ;* 729 730 9.30 102.11 23 ;* 730 731 15.70 143.11 1 ;* 731 732 15.50 292.11 2 ;* 482 733 9.20 67.12 -9 ;* 733 734 1.60 - -V ;* 734 735 7.90 - -V ;* 735 736 30.00 84.11 0 ;* 736 737 1.90 167.11 0 ;* 737 738 12.80 77.11 12 ;* 738 739 10.00 82.11 -31 ;* 739 740 7.20 189.11 -12 ;* 735 741 7.00 264.11 0 ;* 734 742 2.00 180.11 0 ;* 742 743 20.00 95.11 0 ;* 742 744 1.00 180.11 0 ;* 744 745 5.00 100.11 0 ;* 744 746 4.00 180.11 0 ;* 746 747 30.00 91.11 0 ;* 734 748 6.70 344.11 12 ;* 748 749 7.10 55.11 19 ;* 749 750 6.00 91.11 34 ;* 750 751 5.70 74.11 20 ;* 750 752 5.80 269.11 20 ;* 748 753 7.10 8.11 12 ;* 753 754 11.80 271.11 -2 ;* 747 755 1.30 8.11 12 ;* 357 756 5.40 12.11 19 ;* 357 757 5.29 252.16 -1 ;* 757 758 3.70 252.11 -2 ;* 758 759 2.50 252.11 -2 ;* 759 760 5.10 252.11 -2 ;* 760 761 3.40 239.11 3 ;* 761 762 10.20 196.11 8 ;* 762 763 2.30 196.11 8 ;* 763 764 4.10 267.11 0 ;* 764 765 5.50 267.11 0 ;* 765 766 3.70 267.11 0 ;* 766 767 5.00 232.11 13 ;* 767 768 3.60 255.11 6 ;* 768 769 1.40 315.11 -6 ;* 769 770 4.70 315.11 -6 ;* 770 771 5.70 275.11 0 ;* 771 772 2.00 275.11 0 ;* 772 773 3.80 314.11 -5 ;* 773 774 7.00 267.11 7 ;* 774 775 8.20 232.11 2 ;* 775 776 7.60 245.11 -2 ;* 776 777 1.50 210.11 9 ;* 777 778 6.70 273.11 0 ;* 778 779 3.70 197.11 0 ;* 779 780 5.30 - -V ;* 761 781 4.10 293.11 15 ;* 781 782 4.70 23.11 6 ;* 782 783 3.00 98.11 -5 ;* 783 784 5.10 66.11 -1 ;* 784 785 3.60 101.11 -5 ;* 785 786 1.90 15.11 7 ;* 786 787 2.50 97.11 3 ;* 761 788 7.70 158.11 7 ;* 788 789 1.80 127.11 9 ;* 762 790 3.40 292.11 -3 ;* 790 791 11.10 327.11 3 ;* 791 792 1.10 .11 0 ;* 792 793 4.90 314.11 4 ;* 793 794 10.00 228.11 -5 ;* 794 795 6.00 284.11 0 ;* 795 796 1.00 - +V ;* 764 797 4.50 149.11 12 ;* 797 798 2.80 197.11 6 ;* 798 799 1.60 131.11 27 ;* 799 800 4.90 283.11 -6 ;* 800 801 5.30 273.11 -1 ;* 767 802 2.60 299.11 15 ;* 802 803 3.00 359.11 0 ;* 803 804 2.50 312.11 0 ;* 804 805 4.00 282.11 -10 ;* 771 806 5.00 196.11 8 ;* 806 807 5.60 149.11 11 ;* 807 808 2.10 122.11 4 ;* 808 809 5.10 95.11 2 ;* 776 810 4.00 321.11 0 ;* 787 811 3.70 162.11 -5 ;* 785 812 2.90 168.11 9 ;* 784 813 5.10 154.11 -6 ;* 783 814 4.10 159.11 -11 ;* 789 815 6.90 254.11 -9 ;* 800 816 6.70 329.11 -12 ;* 801 817 5.70 344.11 -9 ;* 801 818 5.70 292.11 0 ;* 809 819 6.10 9.11 -6 ;* 806 820 9.50 90.11 -3 ;* 802 821 2.50 254.11 -14 ;* 805 822 2.50 165.11 19 ;* 796 823 18.40 246.11 3 ;* 641 824 3.49 346.90 -7 ;* 824 825 6.70 296.35 12 ;* 825 826 4.00 278.35 -11 ;* 826 827 5.50 296.35 26 ;* 827 828 4.50 2.35 -3 ;* 828 829 6.90 97.35 17 ;* 829 830 3.30 82.35 24 ;* 830 831 4.20 71.35 20 ;* 831 832 3.60 54.35 50 ;* 832 833 2.40 48.35 -10 ;* 833 834 2.20 63.35 43 ;* 834 835 1.70 16.35 40 ;* 835 836 1.20 292.35 3 ;* 836 837 1.90 - +V ;* 837 838 6.20 62.35 22 ;* 838 839 5.00 101.35 2 ;* 839 840 4.10 67.35 -36 ;* 69 841 4.48 19.35 19 ;* 841 842 20.83 293.35 -1 ;* 842 843 1.00 - +V ;* 843 844 6.65 289.35 0 ;* 844 845 1.40 - -V ;* 845 846 6.73 301.35 -5 ;* 846 847 4.58 286.35 40 ;* 847 848 3.46 101.35 20 ;* 848 849 4.65 28.35 4 ;* 849 850 2.54 59.35 -38 ;* 850 851 7.50 326.35 -16 ;* 851 852 6.10 264.35 -1 ;* 852 853 9.70 255.35 -5 ;* 851 854 14.93 75.35 -11 ;* *END 0081_Carcavuezo CaveConverter_src/test/data/regression/NightMare_in.svx0000644000000000000000000000570213030252172022346 0ustar rootroot*begin NightMare *EQUATE 25 Mares090408a.0 *EQUATE 7 2007a.7 *EQUATE Mares090408a.4 Mares090408b.4 ;surveyors: Dave Garman, Paul Dold, Chris Agnew, Tony Radmall (Badger) ;name: Mareserection *date 2007.07.01 *CALIBRATE declination 2.28 ;declination is 2 41' (2.68) for 2004 changing by 8'E per year. ; 2.55 used for 2005 ; 2.42 used for 2006 ; 2.28 used for 2007 ; 2.15 used for 2008 *fix 1 452220 4800904 274 ;Altitude fixed using surface mesh *entrance 1 1 2 1.72 145 -47; .2 .3 .1 .4 2 3 2.90 353 -49; .7 .1 1 1 3 4 4.22 - -V; .2 .2 .1 4 5 4.95 103 11; 1 .8 4 .2 5 6 2.17 72 40; .5 .3 2 1 6 7 2.51 100 -35; .2 .4 1.5 .6 7 9 2.98 68 19; .3 .3 .5 1.6 9 10 3.00 110 -2; .1 .3 1 3 10 11 2.58 98 -11; .5 0 1.5 3 11 12 4.8 - -V; 4.1 5.6 1.3 11 13 4.4 48 -11 13 14 2.3 20 -43; 0 .5 .6 1.7 14 15 7.35 50 -4; .1 .6 1.8 .4 15 16 7.35 35 -5; 1 .1 2 1 16 17 4.1 25 14; 1 0 2 1 17 18 5.9 73 -5; 0 .7 1.4 1.6 18 19 7.4 32 -3; 1.2 0 1.4 1.5 19 20 5.63 49 -3; 1 .1 1.5 .93 20 21 3.91 110 -4; 0 1.2 1.4 1 21 22 4.02 85 2; 1 0 1 1.3 22 23 3.00 38 -3; .8 .3 .5 1.4 23 24 3.3 150 -11; 0 1.3 .7 1.7 24 25 6.57 99 0; 2 .2 1.3 1.4 25 26 1.82 182 3; 1.5 1.3 1 0 26 27 1.91 28 7 26 28 2.5 202 20 *data passage station left right up down 1 .2 .3 .1 .4 2 .7 .1 1 1 3 .2 .2 .1 2 4 1 .8 2 .2 5 .5 .3 2 1 6 .2 .4 1.5 .6 7 .3 .3 .5 1.6 9 .1 .3 1 3 10 .5 0 1.5 3 11 4.1 5.6 1.3 4.8 13 0 .5 .6 1.7 14 .1 .6 1.8 .4 15 1 .1 2 1 16 1 0 2 1 17 0 .7 1.4 1.6 18 1.2 0 1.4 1.5 19 1 .1 1.5 .93 20 0 1.2 1.4 1 21 1 0 1 1.3 22 .8 .3 .5 1.4 23 0 1.3 .7 1.7 24 2 .2 1.3 1.4 25 1.5 1.3 1 0 *begin 2007a *export 7 *date 2007.07.01 *data normal from to tape compass clino 7 8 6.9 222 -11 *end 2007a *BEGIN Mares090408a *EXPORT 0 4 ;surveyors: Footleg, Alister Smith, Steve Woolvern *Date 2009.04.08 *CALIBRATE declination 2.08 *data normal from to tape compass clino 0 1 3.00 91.06 6.73 1 2 2.91 20.29 3.57 2 3 4.11 19.88 -2.27 3 4 2.03 331.14 4.87 4 5 2.43 28.98 -37.75 *data passage station left right up down 0 0.86 1.02 1.4 1.06 1 0.38 0.0 0.29 0.38 2 0.67 0.57 0.43 1.36 3 1.26 0.27 0.26 0.37 4 0.65 1.4 0.0 0.79 *END Mares090408a *BEGIN Mares090408b *EXPORT 4 *Equate 6 6a ;surveyors: Footleg, Alister Smith, Steve Woolvern *Date 2009.04.08 *CALIBRATE declination 2.08 *data normal from to tape compass clino 4 6a 1.91 63.99 -6.15 6a 7 3.35 32.37 -4.35 6 8 8.17 104.93 -1.38 8 9 1.78 139.35 4.60 9 10 2.70 100.81 0.36 10 11 4.72 56.33 -3.82 11 12 1.25 69.40 -4.66 12 13 2.95 112.51 -3.77 12 14 3.97 136.09 3.99 14 15 1.44 68.87 -26.54 15 16 2.30 131.94 -17.98 *data passage station left right up down 4 0.65 1.4 0.0 0.79 6 1.44 1.38 0.0 0.53 8 0.28 2.13 0.22 0.19 9 0.7 0.0 0.0 0.37 10 0.34 0.0 0.0 0.58 11 0.57 1.05 0.51 0.28 12 0.7 1.0 0.47 0.23 14 0.5 0.0 0.26 0.4 15 0.0 0.52 0.48 0.66 *END Mares090408b *end NightMareCaveConverter_src/test/data/regression/comments_in.svx0000644000000000000000000001160512560565242022330 0ustar rootroot*BEGIN Swildons *ENTRANCE Ent *EQUATE Ent EntranceZigZags.3 *EQUATE surfacegps.4 EntranceZigZags.3 *EQUATE EntranceZigZags.5 LongDryWay.0 *EQUATE LongDryWay.5 EntranceZigZags.21 *EQUATE LongDryWay.5 ShortDryWay.0 *BEGIN surfacegps ;Not using blockhouse fix as GPS under trees not great. Loop error between other ;two better GPS fixes is 2.56m. These two fixes average the position of the grating ;inside the blockhouse at 53122.3 51308.5 237.3 ;surface gps tie in for entrance using good WAAS GPS fixes ;WSCC DistoX-Footleg *DATE 2013.06.30 *CALIBRATE declination +1.58 *FIX 0 53094 51306 245 ;WAAS fix with good clear sky view of 8 satellites *FIX 7 53119 51282 245 ;WAAS fix with good clear sky view of 8 satellites *FLAGS SURFACE 0 1 9.84 94.37 -5.88 ;stn0=left hand gate post as seen from cave entrance. gps fixed 1 2 7.84 97.65 -8.05 2 3 11.76 94.27 -17.67 3 4 4.38 7.38 -23.29 ;stn4=rh front corner of entrance grating in blockhouse 3 5 5.45 262.93 13.06 5 6 8.80 174.95 11.61 6 7 13.78 168.31 12.55 ;stn7=2nd fence post from corner. Taller of the two fences. gps fixed. *END surfacegps *BEGIN EntranceZigZags *DATE 2012.09.09 *CALIBRATE declination .6 *CALIBRATE compass 1.1 *CALIBRATE clino -0.1 *FLAGS SURFACE 0 1 2.98 10.26 -2.01 ;1.1 has magnetic problems. So surveyed to it from knot on tree opposite door=1.0 Then from knot to rear wall of blockhouse 1.0-1.2 0 2 5.24 3.23 -5.04 ;1.2=rawl plug on rear wall of blockhouse 2 3 2.64 166.70 -60.11 ;1.3=Top left corner of stream culvert when looking out of cave *FLAGS NOT SURFACE 3 4 3.10 330.76 -25.13 4 5 4.51 275.80 -12.10 ;1.5=polished tip of pointy boulder by top of drop into lower level of chamber. Boulder is dark grey with white flecks and fossils. 5 6 2.41 50.67 -22.33 6 7 1.08 37.30 11.53 7 8 2.00 6.10 11.51 8 9 1.01 56.60 0.18 ;1.9=bottom point of sharp vertical edge of boulder forming ceiling 9 10 3.07 336.52 5.81 ;1.10=bottom of cream calcite rib running down RH wall 9 11 2.42 64.64 5.29 11 12 4.50 106.56 19.29 10 13 0.94 80.55 -45.63 13 14 5.31 65.16 19.50 10 15 3.27 329.15 -18.16 15 16 3.57 334.08 -6.33 16 17 2.41 207.98 -9.43 17 18 4.05 308.01 -19.25 18 19 2.06 211.48 -16.06 19 20 2.94 233.55 -35.84 20 21 2.04 14.57 -39.09 ;1.21=25cm tall stumpy stalagmite on floor to left of top of Jacob's Ladder. Stn is centre of flat ring on top. *END EntranceZigZags *BEGIN LongDryWay ;Badger, Cave Ferret, Footleg *DATE 2013.02.23 *CALIBRATE declination +3.63 *CALIBRATE compass -2 *CALIBRATE clino 0.1 0 1 4.08 270.72 -25.50 1 2 3.77 354.35 -29.81 ;2.2=bottom tip of point of flowstone on RH wall looking into cave. Two tone calcite point. 2 3 4.33 336.10 -24.79 3 4 2.77 337.70 -4.41 4 5 3.14 343.71 -25.59 *END LongDryWay *BEGIN ShortDryWay ;Badger, Paul Dold, Footleg *DATE 2013.02.24 *CALIBRATE declination +5.13 ;Declination comment *CALIBRATE compass -2.5 ;Compass calibration comment *CALIBRATE clino 0.1 ;Clino calibration comment 0 1 1.43 131.61 -13.25 *FLAGS SPLAY 1 1a 1.42 311.07 12.80 1 1b 0.58 327.33 -0.57 1 1c 0.50 258.56 -34.18 1 1d 0.94 171.13 -6.41 *FLAGS NOT SPLAY DUPLICATE 1 2 3.89 73.29 -51.63 *FLAGS SPLAY NOT DUPLICATE 2 2a 3.91 252.77 52.00 2 2b 2.44 239.99 47.81 2 2c 0.91 252.72 -4.04 2 2d 0.80 250.31 -35.24 *FLAGS NOT SPLAY NOT DUPLICATE 2 3 4.50 170.72 19.68 ;3.3=tip of downward pointing rock spike on ceiling *FLAGS SPLAY DUPLICATE 3 3a 1.54 358.12 82.08 3 3b 0.94 170.44 -79.46 3 3c 0.46 71.39 -4.30 3 3d 0.45 220.38 -6.59 3 3e 4.46 350.50 -20.39 3 3f 0.39 251.63 -13.19 *FLAGS NOT SPLAY 3 4 1.11 246.49 -14.16 *FLAGS SPLAY 4 4a 0.60 345.93 65.79 4 4b 0.68 212.13 -85.64 4 4c 0.28 4.71 4.35 4 4d 2.84 294.88 -9.50 *FLAGS NOT SPLAY 2 5 4.91 323.66 2.34 *FLAGS SPLAY 5 5a 1.68 227.27 67.16 5 5b 0.87 46.77 -82.61 5 5c 4.91 143.73 -2.57 5 5d 0.74 236.15 -6.85 5 5e 1.03 103.39 -8.81 5 5f 2.18 148.83 -2.53 *FLAGS NOT SPLAY 5 6 5.05 279.35 -25.23 *FLAGS SPLAY 6 6a 2.83 16.27 74.62 6 6b 1.16 111.26 -85.03 6 6c 5.05 99.27 25.32 6 6d 0.58 34.79 1.49 6 6e 2.60 99.05 2.63 6 6f 2.79 105.09 4.91 *FLAGS NOT SPLAY 6 7 5.02 336.36 -13.85 *FLAGS SPLAY 7 7a 3.73 254.43 80.33 7 7b 0.54 182.41 -84.02 7 7c 2.55 328.39 -82.67 7 7d 5.00 156.87 13.29 7 7e 0.41 231.77 -3.06 *FLAGS NOT SPLAY 7 8 3.19 303.08 -33.11 *FLAGS SPLAY 8 8a 4.46 353.35 80.60 8 8b 1.45 224.40 -78.95 8 8c 3.21 123.01 33.05 8 8d 0.53 23.07 -5.56 8 8e 1.87 72.08 1.35 *FLAGS NOT SPLAY 8 9 6.71 295.69 -12.15 ;3.9=lone little knobby white stalagmite on wall *FLAGS SPLAY 9 9a 1.16 244.84 81.25 9 9b 1.09 201.63 -76.54 9 9c 6.72 115.55 11.83 9 9d 0.56 196.48 2.10 9 9e 3.56 117.58 -4.92 *FLAGS NOT SPLAY 9 10 1.11 265.93 2.35 *END ShortDryWay *END Swildons CaveConverter_src/test/data/regression/Uzu-Gour_ref.svx0000644000000000000000000001043012114372110022322 0ustar rootroot*BEGIN Uzu-Gour090410 *EQUATE 134.44 153.0 *BEGIN 153 *DATE 2009.04.10 *CALIBRATE declination 2.01 0 1 4.01 55.12 2.88 1 2 6.67 109.20 -1.37 2 3 7.57 82.82 -1.46 3 4 15.71 17.50 1.20 *FLAGS SPLAY 4 4a 5.65 182.84 82.67 4 4b 1.04 275.59 -86.30 4 4c 1.95 226.25 -0.27 4 4d 0.46 66.80 13.93 *FLAGS NOT SPLAY 4 5 2.73 244.54 2.61 5 6 4.22 318.30 0.41 6 7 4.92 29.58 -2.12 7 8 9.81 58.72 0.94 8 9 8.60 128.70 -6.68 9 10 5.68 82.92 5.68 10 11 6.56 44.65 4.54 11 12 9.03 72.19 1.22 12 13 3.05 46.22 1.28 13 14 6.89 86.27 -0.51 14 15 6.61 61.48 0.09 15 16 5.13 18.53 -1.21 16 17 6.85 62.63 2.01 17 18 5.38 102.18 1.22 18 19 2.60 105.49 -1.05 ;19=stn 60 from August 2008 19 20 6.94 178.17 -2.10 20 21 4.01 196.07 3.14 21 22 4.15 139.28 -0.15 22 23 4.71 205.76 -0.38 23 24 6.52 198.45 5.52 24 25 8.69 224.01 -4.26 25 26 5.69 246.24 2.28 26 27 2.46 153.10 -9.56 27 28 16.85 204.24 -2.08 28 29 10.28 139.20 5.65 29 30 5.84 105.83 5.86 30 31 10.74 79.31 -0.95 31 32 5.99 21.29 2.80 32 33 8.26 124.62 -0.97 33 34 11.46 86.24 0.14 34 35 10.25 104.61 -0.15 35 36 6.54 36.46 2.80 36 37 7.85 352.56 0.36 37 38 12.49 59.58 -0.29 38 39 6.47 144.30 -0.66 39 40 12.19 176.62 2.78 40 41 8.03 217.50 -3.13 41 42 5.06 197.69 0.74 42 43 5.14 164.36 -5.75 43 44 4.12 90.67 -11.48 44 45 12.39 173.99 6.86 45 46 7.38 104.91 0.82 46 47 4.77 61.95 -3.61 47 48 5.77 23.58 0.32 48 49 10.87 6.04 2.73 49 50 1.56 17.64 -9.69 50 51 11.64 51.10 1.00 51 52 6.84 26.57 -5.79 52 53 6.43 119.09 2.67 53 54 16.81 345.84 -2.23 54 55 11.67 100.37 4.88 55 56 1.66 96.25 -19.79 56 57 5.39 160.71 -4.01 57 58 4.72 73.23 10.43 58 59 5.12 139.83 -5.11 59 60 8.82 75.02 2.73 60 61 1.71 17.48 9.12 61 62 7.73 51.94 -4.40 62 63 2.97 348.14 3.86 63 64 10.87 23.32 -1.96 64 65 4.53 55.63 4.73 65 66 3.19 344.40 -3.15 66 67 2.48 284.81 17.86 67 68 5.47 5.26 0.23 68 69 3.21 73.52 0.24 69 70 6.88 27.74 1.39 70 71 5.88 104.61 4.12 71 72 7.57 99.29 -5.44 72 73 5.64 88.59 15.15 73 74 2.17 131.37 8.68 74 75 4.57 27.39 14.39 75 76 8.47 60.80 19.30 76 77 5.73 104.58 0.98 77 78 5.19 84.19 24.31 78 79 1.27 102.94 2.43 *data passage station left right up down 0 0.66 1.17 1.62 1.32 1 0.67 1.24 6.48 1.27 2 0.71 0.97 2.48 1.16 3 1.07 0.7 5.83 0.88 4 1.95 0.0 5.65 1.04 5 0.0 2.1 5.42 1.23 6 0.0 5.31 0.72 1.8 7 1.72 4.86 1.49 0.88 8 0.6 1.4 1.87 1.17 9 1.22 1.01 1.19 0.26 10 1.2 0.95 1.56 0.76 11 1.06 1.22 3.26 1.18 12 1.22 0.39 9.07 1.17 13 0.96 1.08 9.41 1.51 14 1.06 0.0 7.65 1.29 15 1.54 0.24 6.36 1.07 16 0.55 1.3 1.4 1.1 17 0.0 1.38 4.99 1.18 18 1.27 0.0 11.11 1.38 19 0.0 1.43 5.18 1.11 20 0.41 0.7 2.87 1.04 21 1.43 0.64 5.24 1.07 22 0.35 3.67 0.96 1.17 23 0.67 0.9 2.03 1.14 24 0.67 0.94 4.72 1.31 25 1.78 1.11 1.83 1.05 26 2.88 0.0 1.74 1.18 27 0.0 1.17 2.03 0.82 28 1.84 0.87 1.1 0.0 29 1.66 0.4 8.09 0.83 30 1.92 0.44 3.25 1.28 31 2.96 0.39 1.3 1.17 32 0.0 1.9 1.71 1.27 33 2.26 0.77 3.37 1.26 34 0.52 0.89 13.04 1.37 35 2.39 0.0 1.56 1.12 36 1.08 0.26 4.78 1.61 37 0.0 1.97 3.86 1.5 38 0.0 3.71 1.0 1.14 39 0.0 1.78 5.46 1.4 40 0.0 0.94 8.53 1.86 41 0.76 0.39 10.11 1.48 42 0.82 0.91 9.38 1.47 43 1.24 1.28 1.91 0.88 44 2.41 1.25 1.18 0.0 45 1.42 1.0 3.52 1.43 46 0.98 0.0 3.91 1.19 47 0.85 0.51 5.12 0.9 48 0.96 0.91 8.95 0.87 49 3.53 1.49 4.18 0.25 50 3.09 1.81 2.82 0.87 51 0.88 0.0 2.62 1.34 52 1.1 2.18 1.06 0.69 53 2.46 0.35 1.32 0.75 54 0.0 9.48 1.34 0.22 55 0.68 0.0 5.39 1.0 56 0.4 1.05 2.34 0.56 57 1.81 0.53 2.27 0.2 58 0.33 1.18 4.01 0.94 59 1.14 1.16 1.39 0.48 60 0.97 0.25 7.57 0.88 61 0.0 0.5 6.59 1.17 62 1.6 0.22 4.84 0.54 63 0.0 0.94 5.02 0.77 64 0.0 1.17 9.31 0.43 65 1.4 0.0 8.35 0.56 66 0.92 0.26 10.3 0.51 67 0.0 1.19 9.55 1.19 68 0.0 0.91 10.36 1.3 69 0.85 0.0 4.45 1.22 70 2.32 1.41 2.11 1.17 71 0.6 0.99 3.45 1.24 72 1.51 1.1 11.09 0.19 73 0.0 3.24 5.16 1.35 74 2.16 4.56 12.11 1.55 75 0.0 0.82 8.36 1.1 76 0.41 0.92 1.18 1.28 77 0.49 2.35 2.11 0.34 78 0.0 1.85 0.42 0.45 *END 153 *END Uzu-Gour090410 CaveConverter_src/test/data/regression/AwkwardCharsANSI_in.dat0000644000000000000000000001060013030252172023445 0ustar rootrootAWKWARDCHARS SURVEY NAME: ABC! SURVEY DATE: 1 23 1980 COMMENT:My Survey SURVEY TEAM: Dr Footleg DECLINATION: 3.00 FORMAT: DDDDUDLRLADNF CORRECTIONS: 0.00 0.00 0.00 CORRECTIONS2: 0.00 0.00 FROM TO LENGTH BEARING INC LEFT UP DOWN RIGHT FLAGS COMMENTS ABC01! ABC02" 12.00 135.00 4.00 0.00 1.00 0.50 2.00 ABC02" ABC03# 15.00 130.00 3.00 2.00 2.00 0.00 5.00 ABC03# ABC04$ 19.00 165.00 2.00 3.00 1.40 0.00 4.00 ABC04$ ABC05% 22.00 155.00 1.00 6.00 1.10 0.00 0.00 ABC05% ABC06& 14.00 140.00 0.00 4.00 0.50 0.00 3.00 ABC06& ABC07& 14.00 120.00 -5.00 3.00 0.50 2.20 2.00 AWKWARDCHARS SURVEY NAME: DEF+ SURVEY DATE: 1 24 1980 SURVEY TEAM: Dr Footleg DECLINATION: 3.00 FORMAT: DDDDUDLRLADN FROM TO LENGTH BEARING DIP LEFT UP DOWN RIGHT FLAGS COMMENTS ABC06& DEF01' 10.00 50.00 0.00 -9999.00 -9999.00 -9999.00 -9999.00 DEF01' DEF02( 12.00 55.00 4.00 0.00 1.00 0.50 2.00 DEF02( DEF03) 15.00 50.00 3.00 2.00 2.00 0.00 5.00 DEF03) DEF04* 19.00 85.00 2.00 3.00 1.40 0.00 4.00 DEF04* DEF05+ 22.00 75.00 1.00 6.00 1.10 0.00 0.00 DEF05+ DEF06, 14.00 60.00 0.00 4.00 0.50 0.00 3.00 DEF06, DEF07/ 14.00 40.00 4.00 0.00 0.60 0.20 2.00 DEF07/ DEF08 14.00 50.00 -5.00 3.00 0.50 2.20 2.00 AWKWARDCHARS SURVEY NAME: GHI< SURVEY DATE: 1 25 1980 SURVEY TEAM: Dr Footleg DECLINATION: 3.00 FORMAT: DDDDUDLRLADN FROM TO LENGTH BEARING DIP LEFT UP DOWN RIGHT FLAGS COMMENTS DEF07/ GHI01: 10.00 20.00 0.00 -9999.00 -9999.00 -9999.00 -9999.00 GHI01: GHI02; 12.00 28.00 4.00 0.00 1.00 0.50 2.00 GHI02; GHI03< 15.00 12.00 3.00 2.00 2.00 0.00 5.00 GHI03< GHI04= 19.00 18.00 2.00 3.00 1.40 0.00 4.00 GHI04= GHI05> 22.00 29.00 1.00 6.00 1.10 0.00 0.00 GHI05> GHI06? 14.00 11.00 0.00 4.00 0.50 0.00 3.00 GHI06? GHI07@ 16.00 8.00 0.50 0.00 0.60 0.20 2.00 GHI07@ GHI08 10.00 14.00 -5.00 3.00 0.50 2.20 2.00 AWKWARDCHARS SURVEY NAME: JKL- SURVEY DATE: 1 26 1980 SURVEY TEAM: Dr Footleg DECLINATION: 3.00 FORMAT: DDDDUDLRLADN FROM TO LENGTH BEARING DIP LEFT UP DOWN RIGHT FLAGS COMMENTS GHI07@ JKL01[ 10.00 320.00 0.00 -9999.00 -9999.00 -9999.00 -9999.00 JKL01[ JKL02\ 12.00 328.00 4.00 0.00 1.00 0.50 2.00 JKL02\ JKL03] 15.00 312.00 3.00 2.00 2.00 0.00 5.00 JKL03] JKL04^ 19.00 318.00 2.00 3.00 1.40 0.00 4.00 JKL04^ JKL05_ 22.00 329.00 1.00 6.00 1.10 0.00 0.00 JKL05_ JKL06` 16.00 322.00 0.50 0.00 0.60 0.20 2.00 JKL06` JKL07- 14.00 311.00 0.00 4.00 0.50 0.00 3.00 JKL07- JKL08 10.00 314.00 -5.00 3.00 0.50 2.20 2.00 AWKWARDCHARS SURVEY NAME: MNO SURVEY DATE: 1 27 1980 SURVEY TEAM: Dr Footleg DECLINATION: 3.00 FORMAT: DDDDUDLRLADN FROM TO LENGTH BEARING DIP LEFT UP DOWN RIGHT FLAGS COMMENTS JKL07- MNO01{ 10.00 270.00 0.00 -9999.00 -9999.00 -9999.00 -9999.00 MNO01{ MNO02| 12.00 278.00 4.00 0.00 1.00 0.50 2.00 MNO02| MNO03} 15.00 262.00 3.00 2.00 2.00 0.00 5.00 MNO03} MNO04~ 19.00 268.00 2.00 3.00 1.40 0.00 4.00 MNO04~ MNO05 22.00 279.00 1.00 6.00 1.10 0.00 0.00 MNO05 MNO06 14.00 272.00 0.50 0.00 0.60 0.20 2.00 MNO06 MNO07 14.00 261.00 0.00 4.00 0.50 0.00 3.00 MNO07 MNO08 10.00 264.00 -5.00 3.00 0.50 2.20 2.00 CaveConverter_src/test/data/regression/flags_st_cmds_ref.text0000644000000000000000000004560113030252172023614 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.Swildons.surfacegps 1 -1 1 1 1 1 0 1 13 13 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 9.84 94.37 -5.88 0.00 0.00 0.00 0.00 1 2 1 1 1 7.84 97.65 -8.05 0.00 0.00 0.00 0.00 1 3 1 1 1 11.76 94.27 -17.67 0.00 0.00 0.00 0.00 1 4 1 1 1 4.38 7.38 -23.29 0.00 0.00 0.00 0.00 1 5 1 1 1 3.10 330.76 -25.13 0.00 0.00 0.00 0.00 1 6 1 1 1 4.51 275.80 -12.10 0.00 0.00 0.00 0.00 1 7 1 1 1 2.41 50.67 -22.33 0.00 0.00 0.00 0.00 1 8 1 1 1 1.08 37.30 11.53 0.00 0.00 0.00 0.00 1 9 1 1 1 2.00 6.10 11.51 0.00 0.00 0.00 0.00 1 10 1 1 1 1.01 56.60 0.18 0.00 0.00 0.00 0.00 1 11 1 1 1 3.07 336.52 5.81 0.00 0.00 0.00 0.00 1 12 1 1 1 0.94 80.55 -45.63 0.00 0.00 0.00 0.00 1 13 1 1 1 5.31 65.16 19.50 0.00 0.00 0.00 0.00 2 -2 1 1 1 Series 2-root.Swildons.surfacegps 2 -1 1 1 1 1 3 2 3 3 3 0 2 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 1 1 1 1 5.45 262.93 13.06 0.00 0.00 0.00 0.00 2 2 1 1 1 8.80 174.95 11.61 0.00 0.00 0.00 0.00 2 3 1 1 1 13.78 168.31 12.55 0.00 0.00 0.00 0.00 3 -2 1 1 1 Series 3-root.Swildons.EntranceZigZags 3 -1 1 1 1 4 0 3 1 1 3 0 3 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 1 1 1 1 2.98 10.26 -2.01 0.00 0.00 0.00 0.00 4 -2 1 1 1 Series 4-root.Swildons.EntranceZigZags 4 -1 1 1 1 4 0 1 4 2 3 0 4 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4 1 1 1 1 5.24 3.23 -5.04 0.00 0.00 0.00 0.00 4 2 1 1 1 2.64 166.70 -60.11 0.00 0.00 0.00 0.00 5 -2 1 1 1 Series 5-root.Swildons.EntranceZigZags 5 -1 1 1 1 1 10 5 2 2 3 0 5 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 5 1 1 1 1 2.42 64.64 5.29 0.00 0.00 0.00 0.00 5 2 1 1 1 4.50 106.56 19.29 0.00 0.00 0.00 0.00 6 -2 1 1 1 Series 6-root.Swildons.EntranceZigZags 6 -1 1 1 1 1 11 6 9 9 3 0 6 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6 1 1 1 1 3.27 329.15 -18.16 0.00 0.00 0.00 0.00 6 2 1 1 1 3.57 334.08 -6.33 0.00 0.00 0.00 0.00 6 3 1 1 1 2.41 207.98 -9.43 0.00 0.00 0.00 0.00 6 4 1 1 1 4.05 308.01 -19.25 0.00 0.00 0.00 0.00 6 5 1 1 1 2.06 211.48 -16.06 0.00 0.00 0.00 0.00 6 6 1 1 1 2.94 233.55 -35.84 0.00 0.00 0.00 0.00 6 7 1 1 1 2.04 14.57 -39.09 0.00 0.00 0.00 0.00 6 8 1 1 1 1.43 131.61 -13.25 0.00 0.00 0.00 0.00 6 9 1 1 1 1.42 311.07 12.80 0.00 0.00 0.00 0.00 7 -2 1 1 1 Series 7-root.Swildons.LongDryWay 7 -1 1 1 1 1 6 6 7 5 3 0 7 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 7 1 1 1 1 4.08 270.72 -25.50 0.00 0.00 0.00 0.00 7 2 1 1 1 3.77 354.35 -29.81 0.00 0.00 0.00 0.00 7 3 1 1 1 4.33 336.10 -24.79 0.00 0.00 0.00 0.00 7 4 1 1 1 2.77 337.70 -4.41 0.00 0.00 0.00 0.00 7 5 1 1 1 3.14 343.71 -25.59 0.00 0.00 0.00 0.00 8 -2 1 1 1 Series 8-root.Swildons.ShortDryWay 8 -1 1 1 1 6 8 8 1 1 3 0 8 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 8 1 1 1 1 0.58 327.33 -0.57 0.00 0.00 0.00 0.00 9 -2 1 1 1 Series 9-root.Swildons.ShortDryWay 9 -1 1 1 1 6 8 9 1 1 3 0 9 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 9 1 1 1 1 0.50 258.56 -34.18 0.00 0.00 0.00 0.00 10 -2 1 1 1 Series 10-root.Swildons.ShortDryWay 10 -1 1 1 1 6 8 10 1 1 3 0 10 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 10 1 1 1 1 0.94 171.13 -6.41 0.00 0.00 0.00 0.00 11 -2 1 1 1 Series 11-root.Swildons.ShortDryWay 11 -1 1 1 1 6 8 11 2 2 3 0 11 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 11 1 1 1 1 3.89 73.29 -51.63 0.00 0.00 0.00 0.00 11 2 1 1 1 3.91 252.77 52.00 0.00 0.00 0.00 0.00 12 -2 1 1 1 Series 12-root.Swildons.ShortDryWay 12 -1 1 1 1 11 1 12 1 1 3 0 12 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 12 1 1 1 1 2.44 239.99 47.81 0.00 0.00 0.00 0.00 13 -2 1 1 1 Series 13-root.Swildons.ShortDryWay 13 -1 1 1 1 11 1 13 1 1 3 0 13 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 13 1 1 1 1 0.91 252.72 -4.04 0.00 0.00 0.00 0.00 14 -2 1 1 1 Series 14-root.Swildons.ShortDryWay 14 -1 1 1 1 11 1 14 1 1 3 0 14 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 14 1 1 1 1 0.80 250.31 -35.24 0.00 0.00 0.00 0.00 15 -2 1 1 1 Series 15-root.Swildons.ShortDryWay 15 -1 1 1 1 11 1 15 2 2 3 0 15 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 15 1 1 1 1 4.50 170.72 19.68 0.00 0.00 0.00 0.00 15 2 1 1 1 1.54 358.12 82.08 0.00 0.00 0.00 0.00 16 -2 1 1 1 Series 16-root.Swildons.ShortDryWay 16 -1 1 1 1 15 1 16 1 1 3 0 16 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 16 1 1 1 1 0.94 170.44 -79.46 0.00 0.00 0.00 0.00 17 -2 1 1 1 Series 17-root.Swildons.ShortDryWay 17 -1 1 1 1 15 1 17 1 1 3 0 17 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 17 1 1 1 1 0.46 71.39 -4.30 0.00 0.00 0.00 0.00 18 -2 1 1 1 Series 18-root.Swildons.ShortDryWay 18 -1 1 1 1 15 1 18 1 1 3 0 18 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 18 1 1 1 1 0.45 220.38 -6.59 0.00 0.00 0.00 0.00 19 -2 1 1 1 Series 19-root.Swildons.ShortDryWay 19 -1 1 1 1 15 1 19 1 1 3 0 19 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 19 1 1 1 1 4.46 350.50 -20.39 0.00 0.00 0.00 0.00 20 -2 1 1 1 Series 20-root.Swildons.ShortDryWay 20 -1 1 1 1 15 1 20 1 1 3 0 20 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 20 1 1 1 1 0.39 251.63 -13.19 0.00 0.00 0.00 0.00 21 -2 1 1 1 Series 21-root.Swildons.ShortDryWay 21 -1 1 1 1 15 1 21 2 2 3 0 21 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 21 1 1 1 1 1.11 246.49 -14.16 0.00 0.00 0.00 0.00 21 2 1 1 1 0.60 345.93 65.79 0.00 0.00 0.00 0.00 22 -2 1 1 1 Series 22-root.Swildons.ShortDryWay 22 -1 1 1 1 21 1 22 1 1 3 0 22 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 22 1 1 1 1 0.68 212.13 -85.64 0.00 0.00 0.00 0.00 23 -2 1 1 1 Series 23-root.Swildons.ShortDryWay 23 -1 1 1 1 21 1 23 1 1 3 0 23 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 23 1 1 1 1 0.28 4.71 4.35 0.00 0.00 0.00 0.00 24 -2 1 1 1 Series 24-root.Swildons.ShortDryWay 24 -1 1 1 1 21 1 24 1 1 3 0 24 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 24 1 1 1 1 2.84 294.88 -9.50 0.00 0.00 0.00 0.00 25 -2 1 1 1 Series 25-root.Swildons.ShortDryWay 25 -1 1 1 1 11 1 25 2 2 3 0 25 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 25 1 1 1 1 4.91 323.66 2.34 0.00 0.00 0.00 0.00 25 2 1 1 1 1.68 227.27 67.16 0.00 0.00 0.00 0.00 26 -2 1 1 1 Series 26-root.Swildons.ShortDryWay 26 -1 1 1 1 25 1 26 1 1 3 0 26 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 26 1 1 1 1 0.87 46.77 -82.61 0.00 0.00 0.00 0.00 27 -2 1 1 1 Series 27-root.Swildons.ShortDryWay 27 -1 1 1 1 25 1 27 1 1 3 0 27 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 27 1 1 1 1 4.91 143.73 -2.57 0.00 0.00 0.00 0.00 28 -2 1 1 1 Series 28-root.Swildons.ShortDryWay 28 -1 1 1 1 25 1 28 1 1 3 0 28 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 28 1 1 1 1 0.74 236.15 -6.85 0.00 0.00 0.00 0.00 29 -2 1 1 1 Series 29-root.Swildons.ShortDryWay 29 -1 1 1 1 25 1 29 1 1 3 0 29 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 29 1 1 1 1 1.03 103.39 -8.81 0.00 0.00 0.00 0.00 30 -2 1 1 1 Series 30-root.Swildons.ShortDryWay 30 -1 1 1 1 25 1 30 1 1 3 0 30 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 30 1 1 1 1 2.18 148.83 -2.53 0.00 0.00 0.00 0.00 31 -2 1 1 1 Series 31-root.Swildons.ShortDryWay 31 -1 1 1 1 25 1 31 2 2 3 0 31 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 31 1 1 1 1 5.05 279.35 -25.23 0.00 0.00 0.00 0.00 31 2 1 1 1 2.83 16.27 74.62 0.00 0.00 0.00 0.00 32 -2 1 1 1 Series 32-root.Swildons.ShortDryWay 32 -1 1 1 1 31 1 32 1 1 3 0 32 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 32 1 1 1 1 1.16 111.26 -85.03 0.00 0.00 0.00 0.00 33 -2 1 1 1 Series 33-root.Swildons.ShortDryWay 33 -1 1 1 1 31 1 33 1 1 3 0 33 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 33 1 1 1 1 5.05 99.27 25.32 0.00 0.00 0.00 0.00 34 -2 1 1 1 Series 34-root.Swildons.ShortDryWay 34 -1 1 1 1 31 1 34 1 1 3 0 34 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 34 1 1 1 1 0.58 34.79 1.49 0.00 0.00 0.00 0.00 35 -2 1 1 1 Series 35-root.Swildons.ShortDryWay 35 -1 1 1 1 31 1 35 1 1 3 0 35 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 35 1 1 1 1 2.60 99.05 2.63 0.00 0.00 0.00 0.00 36 -2 1 1 1 Series 36-root.Swildons.ShortDryWay 36 -1 1 1 1 31 1 36 1 1 3 0 36 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 36 1 1 1 1 2.79 105.09 4.91 0.00 0.00 0.00 0.00 37 -2 1 1 1 Series 37-root.Swildons.ShortDryWay 37 -1 1 1 1 31 1 37 2 2 3 0 37 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 37 1 1 1 1 5.02 336.36 -13.85 0.00 0.00 0.00 0.00 37 2 1 1 1 3.73 254.43 80.33 0.00 0.00 0.00 0.00 38 -2 1 1 1 Series 38-root.Swildons.ShortDryWay 38 -1 1 1 1 37 1 38 1 1 3 0 38 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 38 1 1 1 1 0.54 182.41 -84.02 0.00 0.00 0.00 0.00 39 -2 1 1 1 Series 39-root.Swildons.ShortDryWay 39 -1 1 1 1 37 1 39 1 1 3 0 39 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 39 1 1 1 1 2.55 328.39 -82.67 0.00 0.00 0.00 0.00 40 -2 1 1 1 Series 40-root.Swildons.ShortDryWay 40 -1 1 1 1 37 1 40 1 1 3 0 40 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 40 1 1 1 1 5.00 156.87 13.29 0.00 0.00 0.00 0.00 41 -2 1 1 1 Series 41-root.Swildons.ShortDryWay 41 -1 1 1 1 37 1 41 1 1 3 0 41 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 41 1 1 1 1 0.41 231.77 -3.06 0.00 0.00 0.00 0.00 42 -2 1 1 1 Series 42-root.Swildons.ShortDryWay 42 -1 1 1 1 37 1 42 2 2 3 0 42 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 42 1 1 1 1 3.19 303.08 -33.11 0.00 0.00 0.00 0.00 42 2 1 1 1 4.46 353.35 80.60 0.00 0.00 0.00 0.00 43 -2 1 1 1 Series 43-root.Swildons.ShortDryWay 43 -1 1 1 1 42 1 43 1 1 3 0 43 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 43 1 1 1 1 1.45 224.40 -78.95 0.00 0.00 0.00 0.00 44 -2 1 1 1 Series 44-root.Swildons.ShortDryWay 44 -1 1 1 1 42 1 44 1 1 3 0 44 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 44 1 1 1 1 3.21 123.01 33.05 0.00 0.00 0.00 0.00 45 -2 1 1 1 Series 45-root.Swildons.ShortDryWay 45 -1 1 1 1 42 1 45 1 1 3 0 45 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 45 1 1 1 1 0.53 23.07 -5.56 0.00 0.00 0.00 0.00 46 -2 1 1 1 Series 46-root.Swildons.ShortDryWay 46 -1 1 1 1 42 1 46 1 1 3 0 46 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 46 1 1 1 1 1.87 72.08 1.35 0.00 0.00 0.00 0.00 47 -2 1 1 1 Series 47-root.Swildons.ShortDryWay 47 -1 1 1 1 42 1 47 2 2 3 0 47 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 47 1 1 1 1 6.71 295.69 -12.15 0.00 0.00 0.00 0.00 47 2 1 1 1 1.16 244.84 81.25 0.00 0.00 0.00 0.00 48 -2 1 1 1 Series 48-root.Swildons.ShortDryWay 48 -1 1 1 1 47 1 48 1 1 3 0 48 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 48 1 1 1 1 1.09 201.63 -76.54 0.00 0.00 0.00 0.00 49 -2 1 1 1 Series 49-root.Swildons.ShortDryWay 49 -1 1 1 1 47 1 49 1 1 3 0 49 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 49 1 1 1 1 6.72 115.55 11.83 0.00 0.00 0.00 0.00 50 -2 1 1 1 Series 50-root.Swildons.ShortDryWay 50 -1 1 1 1 47 1 50 1 1 3 0 50 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 50 1 1 1 1 0.56 196.48 2.10 0.00 0.00 0.00 0.00 51 -2 1 1 1 Series 51-root.Swildons.ShortDryWay 51 -1 1 1 1 47 1 51 1 1 3 0 51 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 51 1 1 1 1 3.56 117.58 -4.92 0.00 0.00 0.00 0.00 52 -2 1 1 1 Series 52-root.Swildons.ShortDryWay 52 -1 1 1 1 47 1 52 1 1 3 0 52 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 52 1 1 1 1 1.11 265.93 2.35 0.00 0.00 0.00 0.00CaveConverter_src/test/data/regression/HSC_ref.svx0000644000000000000000000000771312114372110021254 0ustar rootroot*BEGIN new090417 *EQUATE 1.20 118.0 *BEGIN 118 *DATE 2009.04.17 *CALIBRATE declination 2.08 0 1 4.41 85.63 56.45 1 2 2.57 17.44 8.88 2 3 6.09 17.23 -0.36 3 4 6.26 288.72 0.89 3 5 2.08 143.25 1.29 5 6 2.63 92.99 -6.53 1 7 1.92 171.25 38.92 7 8 4.09 118.81 8.07 8 9 6.84 102.75 6.73 7 10 3.61 220.79 21.43 10 11 1.78 180.39 16.50 11 12 15.03 195.29 0.32 *FLAGS SPLAY 12 12a 0.74 110.79 8.92 12 12b 0.69 198.64 10.54 12 12c 6.01 17.32 2.01 12 12d 3.08 347.79 3.07 12 12e 2.20 320.84 4.71 12 12f 3.83 49.89 -0.50 *FLAGS NOT SPLAY 12 13 7.30 264.09 2.57 13 14 3.71 279.82 4.77 14 15 6.69 266.26 -26.44 *FLAGS SPLAY 15 15a 2.61 244.87 21.84 15 15b 3.37 292.48 11.33 15 15c 2.00 342.97 10.72 15 15d 0.98 170.84 8.55 15 15e 2.49 64.23 11.72 *FLAGS NOT SPLAY 15 16 2.92 52.57 0.50 16 17 7.37 58.25 0.39 17 18 3.30 34.06 -4.56 *FLAGS SPLAY 18 18a 2.97 124.59 0.62 18 18b 7.76 126.15 1.14 18 18c 6.42 141.39 0.59 18 18d 3.29 164.25 2.96 18 18e 2.76 240.68 7.36 18 18f 2.98 85.15 -2.52 18 18g 0.87 282.27 12.06 *FLAGS NOT SPLAY 18 19 4.75 270.79 2.04 19 20 5.16 306.51 4.31 20 21 2.77 223.43 -6.75 21 22 4.11 249.43 5.41 22 23 4.04 274.31 6.76 21 24 2.04 127.67 8.49 24 25 4.17 85.93 -6.08 15 26 4.82 275.34 11.68 26 27 9.44 283.93 -1.80 15 28 5.33 258.07 15.05 28 29 2.15 242.34 48.01 *FLAGS SPLAY 29 29a 2.97 33.03 0.82 29 29b 2.22 320.50 -0.21 29 29c 1.40 89.26 -9.57 29 29d 2.01 217.71 7.64 29 29e 1.67 157.78 9.94 *FLAGS NOT SPLAY 29 30 4.36 106.01 -31.30 29 31 2.09 225.82 5.69 31 32 4.45 242.34 0.48 *FLAGS SPLAY 32 32a 3.19 303.43 6.37 32 32b 4.63 339.31 2.41 32 32c 3.02 0.72 5.70 32 32d 3.10 30.34 2.17 32 32e 3.63 67.71 3.17 32 32f 3.21 100.79 -1.01 32 32g 0.52 203.42 5.06 *FLAGS NOT SPLAY 32 33 3.28 101.68 1.33 33 34 4.79 105.83 -13.72 34 35 2.37 121.27 -61.00 35 36 2.97 70.89 10.56 36 37 2.40 81.43 2.75 36 38 3.44 199.73 3.19 36 39 3.24 245.65 -25.94 39 40 3.12 126.45 -36.45 39 41 2.46 288.54 -19.63 41 42 2.83 297.90 27.96 42 43 1.84 310.43 50.44 43 44 7.35 226.90 12.38 44 45 1.07 265.82 18.38 45 46 2.40 112.23 14.37 46 47 2.52 132.69 26.44 *FLAGS SPLAY 47 47a 3.85 1.01 2.48 47 47b 5.83 317.39 2.51 47 47c 10.34 296.43 3.28 47 47d 10.79 286.75 3.18 47 47e 2.68 266.70 5.84 47 47f 0.50 172.45 13.22 *FLAGS NOT SPLAY 47 48 2.50 63.09 0.33 *FLAGS SPLAY 48 48a 0.36 41.60 84.49 48 48b 2.01 358.17 2.41 48 48c 0.55 162.50 4.70 48 48d 2.61 87.26 -2.01 *FLAGS NOT SPLAY 48 49 4.48 87.14 -2.01 49 50 3.82 87.50 -4.52 43 51 1.80 310.46 50.33 51 52 8.85 287.98 -2.46 *data passage station left right up down 0 0.96 0.23 4.62 1.33 1 5.21 1.25 1.56 4.37 2 1.22 0.4 0.31 0.38 3 1.34 0.2 0.33 0.44 4 0.48 0.44 0.34 0.37 5 0.82 0.0 0.21 0.19 6 0.36 0.31 0.21 1.94 7 0.99 0.96 2.06 0.48 8 0.59 0.0 1.16 0.81 9 0.64 0.4 0.22 0.22 10 1.23 0.76 0.74 0.22 11 0.31 1.0 0.24 0.2 12 0.69 3.08 0.0 0.0 13 0.7 0.21 0.23 0.0 14 0.43 0.85 0.0 0.34 15 2.0 0.98 0.0 0.0 16 1.13 0.31 0.62 0.38 17 0.98 0.31 0.28 0.05 18 3.29 0.87 0.0 0.0 19 0.2 1.54 0.63 0.4 20 1.6 0.0 0.0 0.26 21 1.6 0.6 0.76 0.0 22 0.39 0.58 0.46 0.26 24 1.05 0.0 0.23 0.27 26 0.67 0.45 0.0 0.32 27 0.33 0.29 0.35 0.24 28 0.6 0.85 2.12 0.0 29 2.97 2.01 0.0 0.0 30 0.3 0.48 0.46 0.0 31 0.24 1.25 0.2 0.36 32 3.02 0.52 0.0 0.0 33 0.95 0.34 0.29 0.19 34 0.0 0.29 0.2 1.47 35 1.02 0.72 1.17 1.64 36 0.79 0.42 0.85 0.0 37 0.52 0.5 0.49 0.0 38 0.24 0.31 0.41 0.19 39 0.43 0.0 0.56 1.47 41 0.36 0.28 0.55 0.0 42 0.74 0.48 2.69 0.52 44 0.0 0.56 1.05 0.35 45 0.51 0.57 0.54 0.5 46 0.79 0.53 0.5 0.91 47 5.83 0.5 0.0 0.0 48 2.01 0.55 0.36 0.0 49 2.83 1.18 0.4 0.0 50 3.98 0.34 0.56 0.67 51 0.83 0.35 1.2 0.38 *END 118 *END new090417 CaveConverter_src/test/data/regression/Flags_st_cmd_ref.text0000644000000000000000000004560112167273540023405 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.Swildons.surfacegps 1 -1 1 1 1 1 0 1 13 13 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 9.84 94.37 -5.88 0.00 0.00 0.00 0.00 1 2 1 1 1 7.84 97.65 -8.05 0.00 0.00 0.00 0.00 1 3 1 1 1 11.76 94.27 -17.67 0.00 0.00 0.00 0.00 1 4 1 1 1 4.38 7.38 -23.29 0.00 0.00 0.00 0.00 1 5 1 1 1 3.10 330.76 -25.13 0.00 0.00 0.00 0.00 1 6 1 1 1 4.51 275.80 -12.10 0.00 0.00 0.00 0.00 1 7 1 1 1 2.41 50.67 -22.33 0.00 0.00 0.00 0.00 1 8 1 1 1 1.08 37.30 11.53 0.00 0.00 0.00 0.00 1 9 1 1 1 2.00 6.10 11.51 0.00 0.00 0.00 0.00 1 10 1 1 1 1.01 56.60 0.18 0.00 0.00 0.00 0.00 1 11 1 1 1 3.07 336.52 5.81 0.00 0.00 0.00 0.00 1 12 1 1 1 0.94 80.55 -45.63 0.00 0.00 0.00 0.00 1 13 1 1 1 5.31 65.16 19.50 0.00 0.00 0.00 0.00 2 -2 1 1 1 Series 2-root.Swildons.surfacegps 2 -1 1 1 1 1 3 2 3 3 3 0 2 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 1 1 1 1 5.45 262.93 13.06 0.00 0.00 0.00 0.00 2 2 1 1 1 8.80 174.95 11.61 0.00 0.00 0.00 0.00 2 3 1 1 1 13.78 168.31 12.55 0.00 0.00 0.00 0.00 3 -2 1 1 1 Series 3-root.Swildons.EntranceZigZags 3 -1 1 1 1 4 0 3 1 1 3 0 3 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 1 1 1 1 2.98 10.26 -2.01 0.00 0.00 0.00 0.00 4 -2 1 1 1 Series 4-root.Swildons.EntranceZigZags 4 -1 1 1 1 4 0 1 4 2 3 0 4 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4 1 1 1 1 5.24 3.23 -5.04 0.00 0.00 0.00 0.00 4 2 1 1 1 2.64 166.70 -60.11 0.00 0.00 0.00 0.00 5 -2 1 1 1 Series 5-root.Swildons.EntranceZigZags 5 -1 1 1 1 1 10 5 2 2 3 0 5 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 5 1 1 1 1 2.42 64.64 5.29 0.00 0.00 0.00 0.00 5 2 1 1 1 4.50 106.56 19.29 0.00 0.00 0.00 0.00 6 -2 1 1 1 Series 6-root.Swildons.EntranceZigZags 6 -1 1 1 1 1 11 6 9 9 3 0 6 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6 1 1 1 1 3.27 329.15 -18.16 0.00 0.00 0.00 0.00 6 2 1 1 1 3.57 334.08 -6.33 0.00 0.00 0.00 0.00 6 3 1 1 1 2.41 207.98 -9.43 0.00 0.00 0.00 0.00 6 4 1 1 1 4.05 308.01 -19.25 0.00 0.00 0.00 0.00 6 5 1 1 1 2.06 211.48 -16.06 0.00 0.00 0.00 0.00 6 6 1 1 1 2.94 233.55 -35.84 0.00 0.00 0.00 0.00 6 7 1 1 1 2.04 14.57 -39.09 0.00 0.00 0.00 0.00 6 8 1 1 1 1.43 131.61 -13.25 0.00 0.00 0.00 0.00 6 9 1 1 1 1.42 311.07 12.80 0.00 0.00 0.00 0.00 7 -2 1 1 1 Series 7-root.Swildons.LongDryWay 7 -1 1 1 1 1 6 6 7 5 3 0 7 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 7 1 1 1 1 4.08 270.72 -25.50 0.00 0.00 0.00 0.00 7 2 1 1 1 3.77 354.35 -29.81 0.00 0.00 0.00 0.00 7 3 1 1 1 4.33 336.10 -24.79 0.00 0.00 0.00 0.00 7 4 1 1 1 2.77 337.70 -4.41 0.00 0.00 0.00 0.00 7 5 1 1 1 3.14 343.71 -25.59 0.00 0.00 0.00 0.00 8 -2 1 1 1 Series 8-root.Swildons.ShortDryWay 8 -1 1 1 1 6 8 8 1 1 3 0 8 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 8 1 1 1 1 0.58 327.33 -0.57 0.00 0.00 0.00 0.00 9 -2 1 1 1 Series 9-root.Swildons.ShortDryWay 9 -1 1 1 1 6 8 9 1 1 3 0 9 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 9 1 1 1 1 0.50 258.56 -34.18 0.00 0.00 0.00 0.00 10 -2 1 1 1 Series 10-root.Swildons.ShortDryWay 10 -1 1 1 1 6 8 10 1 1 3 0 10 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 10 1 1 1 1 0.94 171.13 -6.41 0.00 0.00 0.00 0.00 11 -2 1 1 1 Series 11-root.Swildons.ShortDryWay 11 -1 1 1 1 6 8 11 2 2 3 0 11 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 11 1 1 1 1 3.89 73.29 -51.63 0.00 0.00 0.00 0.00 11 2 1 1 1 3.91 252.77 52.00 0.00 0.00 0.00 0.00 12 -2 1 1 1 Series 12-root.Swildons.ShortDryWay 12 -1 1 1 1 11 1 12 1 1 3 0 12 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 12 1 1 1 1 2.44 239.99 47.81 0.00 0.00 0.00 0.00 13 -2 1 1 1 Series 13-root.Swildons.ShortDryWay 13 -1 1 1 1 11 1 13 1 1 3 0 13 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 13 1 1 1 1 0.91 252.72 -4.04 0.00 0.00 0.00 0.00 14 -2 1 1 1 Series 14-root.Swildons.ShortDryWay 14 -1 1 1 1 11 1 14 1 1 3 0 14 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 14 1 1 1 1 0.80 250.31 -35.24 0.00 0.00 0.00 0.00 15 -2 1 1 1 Series 15-root.Swildons.ShortDryWay 15 -1 1 1 1 11 1 15 2 2 3 0 15 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 15 1 1 1 1 4.50 170.72 19.68 0.00 0.00 0.00 0.00 15 2 1 1 1 1.54 358.12 82.08 0.00 0.00 0.00 0.00 16 -2 1 1 1 Series 16-root.Swildons.ShortDryWay 16 -1 1 1 1 15 1 16 1 1 3 0 16 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 16 1 1 1 1 0.94 170.44 -79.46 0.00 0.00 0.00 0.00 17 -2 1 1 1 Series 17-root.Swildons.ShortDryWay 17 -1 1 1 1 15 1 17 1 1 3 0 17 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 17 1 1 1 1 0.46 71.39 -4.30 0.00 0.00 0.00 0.00 18 -2 1 1 1 Series 18-root.Swildons.ShortDryWay 18 -1 1 1 1 15 1 18 1 1 3 0 18 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 18 1 1 1 1 0.45 220.38 -6.59 0.00 0.00 0.00 0.00 19 -2 1 1 1 Series 19-root.Swildons.ShortDryWay 19 -1 1 1 1 15 1 19 1 1 3 0 19 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 19 1 1 1 1 4.46 350.50 -20.39 0.00 0.00 0.00 0.00 20 -2 1 1 1 Series 20-root.Swildons.ShortDryWay 20 -1 1 1 1 15 1 20 1 1 3 0 20 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 20 1 1 1 1 0.39 251.63 -13.19 0.00 0.00 0.00 0.00 21 -2 1 1 1 Series 21-root.Swildons.ShortDryWay 21 -1 1 1 1 15 1 21 2 2 3 0 21 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 21 1 1 1 1 1.11 246.49 -14.16 0.00 0.00 0.00 0.00 21 2 1 1 1 0.60 345.93 65.79 0.00 0.00 0.00 0.00 22 -2 1 1 1 Series 22-root.Swildons.ShortDryWay 22 -1 1 1 1 21 1 22 1 1 3 0 22 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 22 1 1 1 1 0.68 212.13 -85.64 0.00 0.00 0.00 0.00 23 -2 1 1 1 Series 23-root.Swildons.ShortDryWay 23 -1 1 1 1 21 1 23 1 1 3 0 23 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 23 1 1 1 1 0.28 4.71 4.35 0.00 0.00 0.00 0.00 24 -2 1 1 1 Series 24-root.Swildons.ShortDryWay 24 -1 1 1 1 21 1 24 1 1 3 0 24 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 24 1 1 1 1 2.84 294.88 -9.50 0.00 0.00 0.00 0.00 25 -2 1 1 1 Series 25-root.Swildons.ShortDryWay 25 -1 1 1 1 11 1 25 2 2 3 0 25 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 25 1 1 1 1 4.91 323.66 2.34 0.00 0.00 0.00 0.00 25 2 1 1 1 1.68 227.27 67.16 0.00 0.00 0.00 0.00 26 -2 1 1 1 Series 26-root.Swildons.ShortDryWay 26 -1 1 1 1 25 1 26 1 1 3 0 26 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 26 1 1 1 1 0.87 46.77 -82.61 0.00 0.00 0.00 0.00 27 -2 1 1 1 Series 27-root.Swildons.ShortDryWay 27 -1 1 1 1 25 1 27 1 1 3 0 27 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 27 1 1 1 1 4.91 143.73 -2.57 0.00 0.00 0.00 0.00 28 -2 1 1 1 Series 28-root.Swildons.ShortDryWay 28 -1 1 1 1 25 1 28 1 1 3 0 28 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 28 1 1 1 1 0.74 236.15 -6.85 0.00 0.00 0.00 0.00 29 -2 1 1 1 Series 29-root.Swildons.ShortDryWay 29 -1 1 1 1 25 1 29 1 1 3 0 29 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 29 1 1 1 1 1.03 103.39 -8.81 0.00 0.00 0.00 0.00 30 -2 1 1 1 Series 30-root.Swildons.ShortDryWay 30 -1 1 1 1 25 1 30 1 1 3 0 30 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 30 1 1 1 1 2.18 148.83 -2.53 0.00 0.00 0.00 0.00 31 -2 1 1 1 Series 31-root.Swildons.ShortDryWay 31 -1 1 1 1 25 1 31 2 2 3 0 31 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 31 1 1 1 1 5.05 279.35 -25.23 0.00 0.00 0.00 0.00 31 2 1 1 1 2.83 16.27 74.62 0.00 0.00 0.00 0.00 32 -2 1 1 1 Series 32-root.Swildons.ShortDryWay 32 -1 1 1 1 31 1 32 1 1 3 0 32 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 32 1 1 1 1 1.16 111.26 -85.03 0.00 0.00 0.00 0.00 33 -2 1 1 1 Series 33-root.Swildons.ShortDryWay 33 -1 1 1 1 31 1 33 1 1 3 0 33 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 33 1 1 1 1 5.05 99.27 25.32 0.00 0.00 0.00 0.00 34 -2 1 1 1 Series 34-root.Swildons.ShortDryWay 34 -1 1 1 1 31 1 34 1 1 3 0 34 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 34 1 1 1 1 0.58 34.79 1.49 0.00 0.00 0.00 0.00 35 -2 1 1 1 Series 35-root.Swildons.ShortDryWay 35 -1 1 1 1 31 1 35 1 1 3 0 35 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 35 1 1 1 1 2.60 99.05 2.63 0.00 0.00 0.00 0.00 36 -2 1 1 1 Series 36-root.Swildons.ShortDryWay 36 -1 1 1 1 31 1 36 1 1 3 0 36 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 36 1 1 1 1 2.79 105.09 4.91 0.00 0.00 0.00 0.00 37 -2 1 1 1 Series 37-root.Swildons.ShortDryWay 37 -1 1 1 1 31 1 37 2 2 3 0 37 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 37 1 1 1 1 5.02 336.36 -13.85 0.00 0.00 0.00 0.00 37 2 1 1 1 3.73 254.43 80.33 0.00 0.00 0.00 0.00 38 -2 1 1 1 Series 38-root.Swildons.ShortDryWay 38 -1 1 1 1 37 1 38 1 1 3 0 38 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 38 1 1 1 1 0.54 182.41 -84.02 0.00 0.00 0.00 0.00 39 -2 1 1 1 Series 39-root.Swildons.ShortDryWay 39 -1 1 1 1 37 1 39 1 1 3 0 39 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 39 1 1 1 1 2.55 328.39 -82.67 0.00 0.00 0.00 0.00 40 -2 1 1 1 Series 40-root.Swildons.ShortDryWay 40 -1 1 1 1 37 1 40 1 1 3 0 40 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 40 1 1 1 1 5.00 156.87 13.29 0.00 0.00 0.00 0.00 41 -2 1 1 1 Series 41-root.Swildons.ShortDryWay 41 -1 1 1 1 37 1 41 1 1 3 0 41 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 41 1 1 1 1 0.41 231.77 -3.06 0.00 0.00 0.00 0.00 42 -2 1 1 1 Series 42-root.Swildons.ShortDryWay 42 -1 1 1 1 37 1 42 2 2 3 0 42 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 42 1 1 1 1 3.19 303.08 -33.11 0.00 0.00 0.00 0.00 42 2 1 1 1 4.46 353.35 80.60 0.00 0.00 0.00 0.00 43 -2 1 1 1 Series 43-root.Swildons.ShortDryWay 43 -1 1 1 1 42 1 43 1 1 3 0 43 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 43 1 1 1 1 1.45 224.40 -78.95 0.00 0.00 0.00 0.00 44 -2 1 1 1 Series 44-root.Swildons.ShortDryWay 44 -1 1 1 1 42 1 44 1 1 3 0 44 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 44 1 1 1 1 3.21 123.01 33.05 0.00 0.00 0.00 0.00 45 -2 1 1 1 Series 45-root.Swildons.ShortDryWay 45 -1 1 1 1 42 1 45 1 1 3 0 45 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 45 1 1 1 1 0.53 23.07 -5.56 0.00 0.00 0.00 0.00 46 -2 1 1 1 Series 46-root.Swildons.ShortDryWay 46 -1 1 1 1 42 1 46 1 1 3 0 46 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 46 1 1 1 1 1.87 72.08 1.35 0.00 0.00 0.00 0.00 47 -2 1 1 1 Series 47-root.Swildons.ShortDryWay 47 -1 1 1 1 42 1 47 2 2 3 0 47 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 47 1 1 1 1 6.71 295.69 -12.15 0.00 0.00 0.00 0.00 47 2 1 1 1 1.16 244.84 81.25 0.00 0.00 0.00 0.00 48 -2 1 1 1 Series 48-root.Swildons.ShortDryWay 48 -1 1 1 1 47 1 48 1 1 3 0 48 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 48 1 1 1 1 1.09 201.63 -76.54 0.00 0.00 0.00 0.00 49 -2 1 1 1 Series 49-root.Swildons.ShortDryWay 49 -1 1 1 1 47 1 49 1 1 3 0 49 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 49 1 1 1 1 6.72 115.55 11.83 0.00 0.00 0.00 0.00 50 -2 1 1 1 Series 50-root.Swildons.ShortDryWay 50 -1 1 1 1 47 1 50 1 1 3 0 50 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 50 1 1 1 1 0.56 196.48 2.10 0.00 0.00 0.00 0.00 51 -2 1 1 1 Series 51-root.Swildons.ShortDryWay 51 -1 1 1 1 47 1 51 1 1 3 0 51 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 51 1 1 1 1 3.56 117.58 -4.92 0.00 0.00 0.00 0.00 52 -2 1 1 1 Series 52-root.Swildons.ShortDryWay 52 -1 1 1 1 47 1 52 1 1 3 0 52 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 52 1 1 1 1 1.11 265.93 2.35 0.00 0.00 0.00 0.00CaveConverter_src/test/data/regression/2649_Mares_from3d_dt_ref.text0000644000000000000000000001354713030252172024504 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.SurveyFromDXFExportedFrom3D.2649_mareserection.mares070701 1 -1 1 1 1 1 0 1 7 7 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 1.72 142.64 -47.12 0.00 0.00 0.00 0.00 1 2 1 1 1 2.90 350.59 -49.12 0.00 0.00 0.00 0.00 1 3 1 1 1 4.22 0.00 -90.00 0.00 0.00 0.00 0.00 1 4 1 1 1 4.96 100.66 11.05 0.00 0.00 0.00 0.00 1 5 1 1 1 2.17 69.61 39.87 0.00 0.00 0.00 0.00 1 6 1 1 1 2.50 97.85 -35.10 0.00 0.00 0.00 0.00 1 7 1 1 1 6.89 219.66 -10.95 0.00 0.00 0.00 0.00 2 -2 1 1 1 Series 2-root.SurveyFromDXFExportedFrom3D.2649_mareserection.mares070701 2 -1 1 1 1 1 6 2 4 4 3 0 2 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 1 1 1 1 2.98 65.71 18.98 0.00 0.00 0.00 0.00 2 2 1 1 1 3.00 107.65 -1.91 0.00 0.00 0.00 0.00 2 3 1 1 1 2.58 95.89 -10.95 0.00 0.00 0.00 0.00 2 4 1 1 1 4.80 0.00 -90.00 0.00 0.00 0.00 0.00 3 -2 1 1 1 Series 3-root.SurveyFromDXFExportedFrom3D.2649_mareserection.mares070701 3 -1 1 1 1 2 3 3 15 15 3 0 3 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 1 1 1 1 4.40 45.66 -11.00 0.00 0.00 0.00 0.00 3 2 1 1 1 2.30 17.68 -43.07 0.00 0.00 0.00 0.00 3 3 1 1 1 7.35 47.76 -3.98 0.00 0.00 0.00 0.00 3 4 1 1 1 7.35 32.74 -5.07 0.00 0.00 0.00 0.00 3 5 1 1 1 4.10 22.63 14.12 0.00 0.00 0.00 0.00 3 6 1 1 1 5.90 70.73 -5.05 0.00 0.00 0.00 0.00 3 7 1 1 1 7.40 29.69 -2.94 0.00 0.00 0.00 0.00 3 8 1 1 1 5.64 46.73 -3.05 0.00 0.00 0.00 0.00 3 9 1 1 1 3.91 107.78 -3.96 0.00 0.00 0.00 0.00 3 10 1 1 1 4.02 82.72 1.99 0.00 0.00 0.00 0.00 3 11 1 1 1 3.00 35.76 -3.06 0.00 0.00 0.00 0.00 3 12 1 1 1 3.30 147.73 -11.00 0.00 0.00 0.00 0.00 3 13 1 1 1 6.57 96.74 0.00 0.00 0.00 0.00 0.00 3 14 1 1 1 1.81 179.68 3.16 0.00 0.00 0.00 0.00 3 15 1 1 1 1.90 25.75 6.95 0.00 0.00 0.00 0.00 4 -2 1 1 1 Series 4-root.SurveyFromDXFExportedFrom3D.2649_mareserection.mares070701 4 -1 1 1 1 3 14 4 1 1 3 0 4 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4 1 1 1 1 2.50 199.59 19.84 0.00 0.00 0.00 0.00 5 -2 1 1 1 Series 5-root.SurveyFromDXFExportedFrom3D.2649_mareserection.mares0904085 5 -1 1 1 1 3 13 5 5 5 3 0 5 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 5 1 1 1 1 3.00 88.85 6.70 0.00 0.00 0.00 0.00 5 2 1 1 1 2.91 18.25 3.54 0.00 0.00 0.00 0.00 5 3 1 1 1 4.11 17.73 -2.23 0.00 0.00 0.00 0.00 5 4 1 1 1 2.03 328.99 4.81 0.00 0.00 0.00 0.00 5 5 1 1 1 2.42 26.97 -37.65 0.00 0.00 0.00 0.00 6 -2 1 1 1 Series 6-root.SurveyFromDXFExportedFrom3D.2649_mareserection.mares0904085 6 -1 1 1 1 5 4 6 2 2 3 0 6 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6 1 1 1 1 1.92 61.82 -5.99 0.00 0.00 0.00 0.00 6 2 1 1 1 3.34 30.26 -4.29 0.00 0.00 0.00 0.00 7 -2 1 1 1 Series 7-root.SurveyFromDXFExportedFrom3D.2649_mareserection.mares0904085 7 -1 1 1 1 6 1 7 6 6 3 0 7 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 7 1 1 1 1 8.17 102.88 -1.40 0.00 0.00 0.00 0.00 7 2 1 1 1 1.78 137.05 4.83 0.00 0.00 0.00 0.00 7 3 1 1 1 2.69 98.76 0.21 0.00 0.00 0.00 0.00 7 4 1 1 1 4.73 54.32 -3.76 0.00 0.00 0.00 0.00 7 5 1 1 1 1.25 67.34 -4.59 0.00 0.00 0.00 0.00 7 6 1 1 1 2.94 110.53 -3.90 0.00 0.00 0.00 0.00 8 -2 1 1 1 Series 8-root.SurveyFromDXFExportedFrom3D.2649_mareserection.mares0904085 8 -1 1 1 1 7 5 8 3 3 3 0 8 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 8 1 1 1 1 3.96 134.08 3.91 0.00 0.00 0.00 0.00 8 2 1 1 1 1.44 67.21 -26.37 0.00 0.00 0.00 0.00 8 3 1 1 1 2.30 129.81 -17.99 0.00 0.00 0.00 0.00CaveConverter_src/test/data/regression/2649_Mares_fromaven_ref.text0000644000000000000000000001320312115122656024433 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.SurveyFromDXF.SeriesFromLines1 1 -1 1 1 1 1 0 1 7 7 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 1.71 142.64 -46.89 0.00 0.00 0.00 0.00 1 2 1 1 1 2.90 350.59 -49.12 0.00 0.00 0.00 0.00 1 3 1 1 1 4.23 0.00 -90.00 0.00 0.00 0.00 0.00 1 4 1 1 1 4.96 100.66 11.05 0.00 0.00 0.00 0.00 1 5 1 1 1 2.17 69.61 40.07 0.00 0.00 0.00 0.00 1 6 1 1 1 2.50 97.85 -35.10 0.00 0.00 0.00 0.00 1 7 1 1 1 6.89 219.66 -10.95 0.00 0.00 0.00 0.00 2 -2 1 1 1 Series 2-root.SurveyFromDXF.SeriesFromLines2 2 -1 1 1 1 1 6 2 4 4 3 0 2 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 1 1 1 1 2.99 65.79 18.75 0.00 0.00 0.00 0.00 2 2 1 1 1 2.99 107.71 -1.72 0.00 0.00 0.00 0.00 2 3 1 1 1 2.58 95.89 -10.95 0.00 0.00 0.00 0.00 2 4 1 1 1 4.81 0.00 -90.00 0.00 0.00 0.00 0.00 3 -2 1 1 1 Series 3-root.SurveyFromDXF.SeriesFromLines3 3 -1 1 1 1 2 3 3 15 15 3 0 3 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 1 1 1 1 4.40 45.66 -11.13 0.00 0.00 0.00 0.00 3 2 1 1 1 2.30 17.68 -43.07 0.00 0.00 0.00 0.00 3 3 1 1 1 7.35 47.76 -3.98 0.00 0.00 0.00 0.00 3 4 1 1 1 7.35 32.74 -4.99 0.00 0.00 0.00 0.00 3 5 1 1 1 4.10 22.63 14.12 0.00 0.00 0.00 0.00 3 6 1 1 1 5.90 70.73 -5.15 0.00 0.00 0.00 0.00 3 7 1 1 1 7.40 29.69 -2.94 0.00 0.00 0.00 0.00 3 8 1 1 1 5.64 46.73 -3.05 0.00 0.00 0.00 0.00 3 9 1 1 1 3.91 107.78 -3.96 0.00 0.00 0.00 0.00 3 10 1 1 1 4.02 82.72 1.99 0.00 0.00 0.00 0.00 3 11 1 1 1 3.00 35.76 -2.87 0.00 0.00 0.00 0.00 3 12 1 1 1 3.30 147.73 -11.00 0.00 0.00 0.00 0.00 3 13 1 1 1 6.57 96.74 0.00 0.00 0.00 0.00 0.00 3 14 1 1 1 1.81 179.68 2.85 0.00 0.00 0.00 0.00 3 15 1 1 1 1.90 25.75 6.95 0.00 0.00 0.00 0.00 4 -2 1 1 1 Series 4-root.SurveyFromDXF.SeriesFromLines4 4 -1 1 1 1 3 14 4 1 1 3 0 4 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4 1 1 1 1 2.50 199.59 19.84 0.00 0.00 0.00 0.00 5 -2 1 1 1 Series 5-root.SurveyFromDXF.SeriesFromLines5 5 -1 1 1 1 3 13 5 5 5 3 0 5 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 5 1 1 1 1 3.00 88.85 6.51 0.00 0.00 0.00 0.00 5 2 1 1 1 2.91 18.25 3.54 0.00 0.00 0.00 0.00 5 3 1 1 1 4.11 17.73 -2.09 0.00 0.00 0.00 0.00 5 4 1 1 1 2.02 328.99 4.53 0.00 0.00 0.00 0.00 5 5 1 1 1 2.42 26.97 -37.46 0.00 0.00 0.00 0.00 6 -2 1 1 1 Series 6-root.SurveyFromDXF.SeriesFromLines6 6 -1 1 1 1 5 4 6 2 2 3 0 6 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6 1 1 1 1 1.93 61.96 -5.96 0.00 0.00 0.00 0.00 6 2 1 1 1 3.34 30.11 -4.29 0.00 0.00 0.00 0.00 7 -2 1 1 1 Series 7-root.SurveyFromDXF.SeriesFromLines7 7 -1 1 1 1 6 1 7 6 6 3 0 7 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 7 1 1 1 1 8.16 102.89 -1.40 0.00 0.00 0.00 0.00 7 2 1 1 1 1.78 137.05 4.83 0.00 0.00 0.00 0.00 7 3 1 1 1 2.69 98.76 0.43 0.00 0.00 0.00 0.00 7 4 1 1 1 4.73 54.32 -3.76 0.00 0.00 0.00 0.00 7 5 1 1 1 1.26 67.52 -5.01 0.00 0.00 0.00 0.00 7 6 1 1 1 2.94 110.53 -3.70 0.00 0.00 0.00 0.00 8 -2 1 1 1 Series 8-root.SurveyFromDXF.SeriesFromLines8 8 -1 1 1 1 7 5 8 3 3 3 0 8 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 8 1 1 1 1 3.96 134.18 3.91 0.00 0.00 0.00 0.00 8 2 1 1 1 1.44 67.21 -26.37 0.00 0.00 0.00 0.00 8 3 1 1 1 2.30 129.81 -17.75 0.00 0.00 0.00 0.00CaveConverter_src/test/data/regression/Minimal_cs_ref.svx0000644000000000000000000000143513030252172022710 0ustar rootroot*BEGIN V *BEGIN A ;x *DATE 2001.02.07 *CALIBRATE declination -0.42 *FLAGS DUPLICATE 1 2 25.91 45.00 0.00 2 3 12.27 36.00 0.00 *FLAGS NOT DUPLICATE 3 4 10.52 325.00 0.00 ;a 4 5 7.62 354.00 0.00 ;b 5 6 3.56 16.00 0.00 *FLAGS DUPLICATE 6 7 18.14 346.00 0.00 ;c *FLAGS NOT DUPLICATE 7 8 5.18 201.00 0.00 ;tributary enters here on left (looking downstream) *FLAGS DUPLICATE 8 9 8.81 323.00 0.00 ;d *FLAGS NOT DUPLICATE 9 10 5.43 6.00 0.00 *data passage station left right up down 1 3.05 3.05 0.91 0.00 2 6.10 0.00 0.91 0.00 3 0.00 1.22 3.05 0.00 4 1.22 0.00 1.22 0.00 5 1.22 0.00 1.22 0.00 6 0.00 1.22 1.22 0.00 7 0.00 1.22 1.52 0.00 8 1.22 0.00 1.52 0.00 9 0.91 0.00 1.83 0.00 *END A *END V CaveConverter_src/test/data/regression/0581_FlappysWorld_in.svx0000644000000000000000000000110512560565170023600 0ustar rootroot*begin 0581_cave ;complete known cave ;surveyors: Chris Agnew, Dave Garman ;date 070401 *CALIBRATE declination 2.28 *entrance 1 *FIX 1 452005 4800495 0208 ;declination is 2 41' (2.68) for 2004 changing by 8'E per year. ; 2.55 used for 2005 ; 2.42 used for 2006 ; 2.28 used for 2007 ; 2.15 used for 2008 ;From To Tape Compass Clino L R U D 2 1 2.23 258 25;1 0 .4 .5 1 3 2 6.40 246 0;2 4 2 1.5 1 4 3 7.65 257 +3;3 .4 2 .3 .3 4 5 4.32 240 -50;4 0 .6 .4 .3 6 2 4.54 190 39;6 1 .5 .5 0 7 6 5.55 195 5;7 .1 1.5 .9 .3 ;Suspect compass bearing *end 0581_cave CaveConverter_src/test/data/regression/Riesending_lrou_200909_ref.svx0000644000000000000000000016172412115022130024610 0ustar rootroot*BEGIN Riesending *CALIBRATE declination -2.5 *EQUATE Hauptzug.15 Ursprung.1 *EQUATE Hauptzug.33 Hochsammler.1 *EQUATE Hochsammler.109 Champs_Elysees.1 *EQUATE Hochsammler.125 Champs_Elysees.13 *EQUATE Hochsammler.19 Traumtaenzer.1 *EQUATE Normalweg.1 Hochsammler.21 *EQUATE Normalweg.20 Hochsammler.18 *EQUATE Rampe.1 Normalweg.17 *EQUATE Rampe.4 Hochsammler.13 *EQUATE Rampe.4 Biwakroehre.1 *EQUATE Hauptzug.46 Biwakroehre.15 *EQUATE RD2.1 Hochsammler.9 *EQUATE RD2.29 Hauptzug.72 *EQUATE Normalweg.12 Mitteletage.1 *EQUATE RD2.6 Mitteletage.7 *EQUATE Normalweg.6 Siphon_vorn.1 *EQUATE Normalweg.11 Siphon_vorn.17 *EQUATE RD2.9 Siphon_hinten.1 *EQUATE Hauptzug.103 Waschsalon.1 *EQUATE Lagune.1 Hauptzug.142 *EQUATE Hauptzug.207 Lehmetage.1 *EQUATE Lehmetage.17 Tropfsteinkammer.1 *EQUATE Lehmetage.30 fossile_Schraege.1 *EQUATE Hauptzug.244 fossile_Schraege.17 *EQUATE Lehmetage.30 Dreieckshalle.1 *EQUATE Verbruchgang.1 fossile_Schraege.9 *EQUATE Donnerbach.1 fossile_Schraege.13 *EQUATE Toter_Mann.1 fossile_Schraege.11 *EQUATE Donnerbach.8d Toter_Mann.2 *EQUATE Hauptzug.240 Verbruchetage.1 *EQUATE Hauptzug.244 Seitengang.1 *EQUATE Hauptzug.248 Wasserfallhalle.1 *EQUATE Abfluss.1 Hauptzug.252 *EQUATE Hauptzug.262 Kleiner_Spritzer.1 *EQUATE Hauptzug.286 Leopardengang.1 *EQUATE Hauptzug.279 Leopardengang.11 *EQUATE Hauptzug.306 Schoener_Canyon.1 *EQUATE Schoener_Bach.0 Schoener_Canyon.82a *EQUATE Schoener_Canyon.26 Seitencanyon_Nord.0 *EQUATE Seitencanyon_Nord.13 Seitenseitencanyon.0 *EQUATE Gewurschtel1.0 Schoener_Canyon.10 *EQUATE Gewurschtel1.2 Gewurschtel2.0 *EQUATE Gewurschtel1.6 Gewurschtel3.0 *EQUATE Hauptzug.318 Kongretionencanyon.0 *EQUATE Roehrln.0 Hauptzug.341 *EQUATE Hauptzug.344 Odlgrubn1.0 *EQUATE Schacht6.14 Odlgrubn1.31 *EQUATE Odlgrubn1.17 Odlgrubn2.0 *EQUATE Zweig3.6 Odlgrubn2.29 *EQUATE Odlgrubn2.5 Odlgrubn2a.0 *EQUATE HDB.0 Odlgrubn2.15 *EQUATE SH.0 HDB.4 *EQUATE Hauptzug.349 Droehnung.0 *EQUATE Droehnung.8 Kluftlabyrinth1.0 *EQUATE Kluftlabyrinth1.7 Kluftlabyrinth2.0 *EQUATE Hauptzug.353 Schacht6.0 *EQUATE Halle.0 Schacht6.17 *EQUATE Halle.1 Zweig1.0 *EQUATE Halle.2 Zweig2.0 *EQUATE Halle.6 Zweig3.0 *EQUATE Halle.9 Zweig4.0 *EQUATE Halle.8 Zweig5.0 *EQUATE Hauptzug.346 Schacht1.0 *EQUATE Hauptzug.347 Schacht23.0 *EQUATE Hauptzug.350 Schacht23.10 *EQUATE Schacht4.0 Schacht23.9 *EQUATE Gully.0 Hauptzug.348 *EQUATE Gully.5d Schacht23.2 *EQUATE Hauptzug.352 Schachtumgehung.0 *EQUATE Schacht6.2 Schachtumgehung.8 *EQUATE Schachtumgehung.8 Parallelschacht.0 *EQUATE Odlgrubn1.28d Parallelschacht.11 *EQUATE Schacht6.9 Windschacht.0 *EQUATE Zweig2.8 Windschacht.7 *EQUATE Seengang.0 Schachtumgehung.6 *EQUATE Seengang.4 Kluftschlot.0 *EQUATE Seengang.11 Gipsgang.0 *EQUATE Gipsgang.21 Kluftlabyrinth2.14 *EQUATE Gipsgang.10 Gipsseitengang.0 *EQUATE Seengang.11 Rutschpartie.0 *EQUATE Seengang.26 Steile_Halde.0 *EQUATE Seengang.27 Brausecanyon.0 *EQUATE Seengang.22 Brausecanyon.17 *EQUATE Brausecanyon.16 Missing_Link.0 *EQUATE Missing_Link.14 Brauseschacht.10 *EQUATE Brausecanyon.14 Brauseschacht.0 *EQUATE Brausecanyon.7 Monsterschacht.0 *EQUATE Nebelschacht.17 Monsterschacht.18 *EQUATE Seengang.39 Nebelschacht.0 *EQUATE Seengang.46 Eckschacht.0 *EQUATE Seengang.48 Kristallkluft.0 *EQUATE Seengang.89 Maulwurf1.0 *EQUATE Seengang.89 Maulwurf2.0 *BEGIN Hauptzug *CALIBRATE declination -2.3 1 2 10.00 0.00 -90.00 2 3 7.80 205.00 -33.00 3 4 23.24 0.00 -90.00 4 5 2.35 220.00 29.00 5 6 2.47 137.00 -50.00 6 7 8.62 135.00 -55.00 7 8 7.31 0.00 -90.00 8 9 5.91 0.00 -42.00 9 10 14.50 0.00 -90.00 10 11 28.50 0.00 -90.00 11 12 17.10 0.00 -90.00 12 13 4.30 60.00 0.00 13 14 31.00 0.00 -90.00 14 15 19.00 0.00 -90.00 15 16 1.50 0.00 0.00 16 17 14.00 0.00 -90.00 17 18 115.00 0.00 -90.00 18 19 19.70 82.00 -20.00 19 20 14.20 15.00 -38.00 20 21 9.40 0.00 -90.00 21 22 4.17 37.00 17.00 22 23 7.35 329.00 -16.00 23 24 3.80 310.00 -59.00 24 25 2.06 95.00 8.00 25 26 8.53 65.00 -75.00 26 27 4.65 0.00 -90.00 27 28 4.70 0.00 -90.00 28 29 23.90 0.00 -90.00 29 30 7.95 0.00 25.00 30 31 11.35 318.00 43.00 31 32 3.67 306.00 -16.00 32 33 13.70 334.00 -59.00 33 34 4.10 96.00 -20.00 34 35 2.43 30.00 -28.00 35 36 1.99 286.00 -11.00 36 37 2.56 343.00 -3.00 37 38 2.00 268.00 -2.00 38 39 2.70 318.00 0.00 39 40 3.65 96.00 3.00 40 41 2.13 42.00 -12.00 41 42 3.41 94.00 1.00 42 43 2.93 10.00 -2.00 43 44 6.30 72.00 -1.00 44 45 1.78 18.00 -10.00 45 46 1.73 305.00 13.00 46 47 1.30 37.00 4.00 47 48 2.54 124.00 22.00 48 49 3.60 193.00 10.00 49 50 2.52 140.00 -16.00 50 51 1.38 63.00 0.00 51 52 0.97 0.00 2.00 52 53 3.98 57.00 -43.00 53 54 3.18 116.00 5.00 54 55 1.76 70.00 -1.00 55 56 2.42 332.00 -5.00 56 57 1.00 68.00 -23.00 57 58 7.65 0.00 90.00 58 59 3.59 57.00 -27.00 59 60 10.27 132.00 -4.00 60 61 1.99 113.00 -49.00 61 62 6.70 132.00 1.00 62 63 0.58 275.00 -20.00 63 64 6.88 115.00 -11.00 64 65 3.95 139.00 -38.00 65 66 2.36 231.00 -22.00 66 67 3.59 150.00 -8.00 67 68 0.88 75.00 0.00 68 69 24.10 0.00 -90.00 69 70 2.85 176.00 -5.00 70 71 5.30 358.00 -42.00 71 72 13.60 10.00 -78.00 72 73 1.40 165.00 -1.00 73 74 6.45 114.00 -4.00 74 75 3.24 185.00 -4.00 75 76 3.18 265.00 -10.00 76 77 2.60 180.00 -9.00 77 78 4.50 98.00 -7.00 78 79 0.20 110.00 -45.00 79 80 5.02 106.00 -18.00 80 81 4.81 0.00 -90.00 81 82 0.78 70.00 0.00 82 83 5.25 186.00 15.00 83 84 3.02 90.00 36.00 84 85 2.95 146.00 -22.00 85 86 2.66 165.00 -13.00 86 87 4.88 162.00 -18.00 87 88 2.06 61.00 -8.00 88 89 4.42 104.00 -4.00 89 90 2.53 185.00 -5.00 90 91 5.91 263.00 -36.00 91 92 3.12 193.00 -19.00 92 93 3.91 140.00 8.00 93 94 3.61 182.00 -2.00 94 95 6.75 105.00 2.00 95 96 2.18 67.00 -5.00 96 97 1.61 164.00 1.00 97 98 4.29 227.00 -6.00 98 99 3.55 136.00 -2.00 99 100 2.42 95.00 3.00 100 101 3.62 132.00 0.00 101 102 4.40 198.00 0.00 102 103 5.62 77.00 3.00 103 104 2.70 35.00 -24.00 104 105 1.32 52.00 -19.00 105 106 3.34 169.00 4.00 106 107 3.40 0.00 90.00 107 108 3.47 180.00 6.00 108 109 4.13 148.00 38.00 109 110 3.89 213.00 7.00 110 111 5.09 103.00 -2.00 111 112 4.14 184.00 -3.00 112 113 2.22 74.00 -7.00 113 114 5.58 139.00 -7.00 114 115 3.58 181.00 -20.00 115 116 3.31 92.00 -3.00 116 117 6.74 52.00 -11.00 117 118 1.68 154.00 0.00 118 119 6.93 206.00 -26.00 119 120 3.03 130.00 -13.00 120 121 3.68 179.00 -10.00 121 122 3.92 130.00 -17.00 122 123 2.41 152.00 -18.00 123 124 6.28 99.00 7.00 124 125 3.34 177.00 -39.00 125 126 5.12 129.00 -13.00 126 127 2.30 65.00 13.00 127 128 20.10 0.00 -90.00 128 129 2.65 259.00 6.00 129 130 7.65 98.00 -4.00 130 131 3.28 219.00 -11.00 131 132 2.70 240.00 -71.00 132 133 9.30 0.00 -90.00 133 134 1.20 141.00 21.00 134 135 7.65 143.00 14.00 135 136 2.09 240.00 14.00 136 137 10.70 144.00 0.00 137 138 14.10 0.00 -90.00 138 139 4.10 210.00 20.00 139 140 16.56 0.00 -90.00 140 141 1.05 0.00 90.00 141 142 5.75 325.00 24.00 142 143 7.25 258.00 -7.00 143 144 5.53 198.00 -19.00 144 145 3.25 123.00 -14.00 145 146 1.45 25.00 -48.00 146 147 6.90 111.00 -60.00 147 148 2.40 150.00 1.00 148 149 4.03 98.00 25.00 149 150 2.23 135.00 -53.00 150 151 4.45 36.00 5.00 151 152 2.36 353.00 -9.00 152 153 3.00 0.00 -90.00 153 154 5.30 26.00 12.00 154 155 2.70 111.00 -14.00 155 156 5.79 39.00 1.00 156 157 6.05 148.00 19.00 157 158 7.54 57.00 0.00 158 159 16.37 0.00 -90.00 159 160 1.80 60.00 33.00 160 161 17.30 0.00 -90.00 161 162 11.15 60.00 -61.00 162 163 20.30 0.00 -90.00 163 165 1.27 355.00 10.00 165 166 6.15 35.00 -73.00 166 167 2.11 128.00 -3.00 167 168 4.92 108.00 -71.00 168 169 1.90 104.00 -52.00 169 170 7.64 123.00 -1.00 170 171 3.93 68.00 -12.00 171 172 2.54 141.00 -10.00 172 173 5.12 71.00 2.00 173 174 5.24 50.00 -61.00 174 175 1.50 140.00 -10.00 175 176 14.30 0.00 -90.00 176 177 4.74 78.00 -3.00 177 178 5.98 115.00 -2.00 178 179 4.35 32.00 -24.00 179 180 5.98 112.00 -10.00 180 181 3.45 38.00 -6.00 181 182 10.10 319.00 2.00 182 183 6.99 329.00 -2.00 183 184 3.65 44.00 9.00 184 185 3.35 349.00 22.00 185 186 1.78 70.00 35.00 186 187 3.49 132.00 -3.00 187 188 4.32 183.00 -70.00 188 189 5.33 68.00 -17.00 189 190 3.81 25.00 -57.00 190 191 6.45 38.00 5.00 191 192 2.57 57.00 30.00 192 193 7.95 93.00 -80.00 193 194 9.70 90.00 -75.00 194 195 1.87 86.00 -25.00 195 196 7.25 26.00 -72.00 196 197 5.73 50.00 -12.00 197 198 3.23 39.00 -4.00 198 199 9.28 350.00 -80.00 199 200 10.07 0.00 -90.00 200 201 9.30 50.00 -40.00 201 202 6.06 0.00 -90.00 202 203 1.41 313.00 -27.00 203 204 9.55 0.00 -90.00 204 205 12.97 0.00 -90.00 205 206 13.05 0.00 -90.00 206 207 12.78 188.00 -33.00 207 208 1.95 283.00 2.00 208 209 4.09 225.00 -46.00 209 210 2.41 234.00 -36.00 210 211 5.45 244.00 -60.00 211 212 3.13 198.00 -18.00 212 213 10.51 219.00 -43.00 213 214 2.05 192.00 -43.00 214 215 8.52 235.00 4.00 215 216 5.12 242.00 16.00 216 217 5.00 215.00 -17.00 217 218 4.71 72.00 -26.00 218 219 5.99 224.00 -13.00 219 220 3.70 229.00 -25.00 220 221 5.42 136.00 -33.00 221 222 3.15 198.00 -31.00 222 223 8.35 224.00 2.00 223 224 7.63 232.00 -1.00 224 225 6.68 133.00 -50.00 225 226 9.55 0.00 -90.00 226 227 3.02 331.00 -9.00 227 228 9.06 312.00 -15.00 228 229 2.08 274.00 -29.00 229 230 6.88 302.00 -13.00 230 231 1.90 8.00 -34.00 231 232 5.38 312.00 -25.00 232 233 16.06 345.00 -76.00 233 234 7.46 0.00 -90.00 234 235 6.52 38.00 -41.00 235 236 13.08 70.00 -54.00 236 237 7.98 37.00 -49.00 237 238 15.41 56.00 -55.00 238 239 3.05 355.00 -18.00 239 240 17.16 25.00 -56.00 240 241 14.02 100.00 -51.00 241 242 8.15 38.00 -55.00 242 243 16.18 55.00 -73.00 243 244 14.52 45.00 -61.00 244 245 13.66 343.00 -50.00 245 246 3.49 341.00 -33.00 246 247 19.41 30.00 -54.00 247 248 14.77 9.00 -41.00 248 249 12.82 328.00 5.00 249 250 14.56 347.00 -19.00 250 251 8.64 357.00 -9.00 251 252 20.10 2.00 -23.00 252 253 2.70 355.00 -5.00 253 254 9.47 339.00 -10.00 254 255 18.33 337.00 -1.00 255 256 7.90 324.00 -6.00 256 257 4.90 330.00 23.00 257 258 1.61 0.00 -90.00 258 259 18.10 333.00 -6.00 259 260 7.90 286.00 43.00 260 261 18.80 290.00 38.00 261 262 10.00 291.00 44.00 262 263 14.95 319.00 23.00 263 264 12.45 307.00 23.00 264 265 30.00 264.00 40.00 265 266 4.90 312.00 16.00 266 267 11.87 310.00 -3.00 267 268 4.25 348.00 -13.50 268 269 3.72 301.00 1.00 269 270 6.54 309.00 -25.00 270 271 6.32 309.00 24.00 271 272 21.95 310.00 2.00 272 273 16.66 329.00 0.00 273 274 13.77 326.00 6.00 274 275 8.90 349.00 -22.00 275 276 4.40 64.00 41.00 276 277 6.45 341.00 -1.00 277 278 21.80 323.00 4.00 278 279 28.70 321.00 7.00 279 280 21.95 307.00 22.00 280 281 15.04 304.00 35.00 281 282 2.16 9.00 -6.00 282 283 7.70 4.00 -29.00 283 284 7.08 9.00 -37.00 284 285 7.00 0.00 -90.00 285 286 15.53 351.00 -39.00 286 287 9.35 105.00 -22.50 287 288 16.75 333.00 -8.00 288 289 1.34 332.00 9.00 289 290 1.55 0.00 90.00 290 291 8.15 302.00 22.00 291 292 22.35 336.00 6.00 292 293 25.75 315.00 2.50 293 294 8.10 317.00 1.50 294 295 22.25 316.00 1.00 295 296 16.45 310.00 0.00 296 297 11.00 315.00 -5.00 297 298 30.10 309.00 3.00 298 299 15.09 319.00 -2.00 299 300 24.15 314.00 2.00 300 301 15.00 307.00 -2.00 301 302 20.30 297.00 4.00 302 303 9.37 298.00 -3.00 303 304 7.35 294.00 13.00 304 305 25.25 326.00 2.50 305 306 2.72 287.00 -1.50 306 307 4.09 312.00 -22.00 307 308 10.24 340.00 1.00 308 309 11.83 327.00 -54.00 309 310 19.60 25.00 -67.00 310 311 3.07 35.00 -48.00 311 312 18.35 314.00 -30.00 312 313 19.85 309.00 -9.00 313 314 19.05 277.00 25.00 314 315 7.60 327.00 14.00 315 316 6.55 295.00 35.00 316 317 19.75 253.00 52.00 317 318 1.14 310.00 7.00 318 319 17.15 338.00 -40.00 319 320 16.75 296.00 42.00 320 321 5.27 307.00 -17.00 321 322 11.55 330.00 -36.00 322 323 11.00 0.00 -43.00 323 324 17.10 320.00 16.00 324 325 16.00 323.00 20.00 325 326 18.14 2.00 69.00 326 327 2.55 41.00 -5.00 327 328 10.75 327.00 -2.00 328 329 15.68 276.00 1.00 329 330 7.52 306.00 2.00 330 331 3.76 8.00 -16.00 331 332 2.78 305.00 7.00 332 333 8.11 49.00 -1.00 333 334 4.21 333.00 -17.00 334 335 4.66 48.00 0.00 335 336 9.03 344.00 -6.00 336 337 7.07 85.00 27.00 337 338 16.33 55.00 -7.50 338 339 4.48 23.00 -7.00 339 340 8.04 294.00 -4.50 340 341 8.62 49.00 2.00 341 342 4.60 322.00 -4.00 342 343 15.32 26.00 -20.00 343 344 8.80 279.00 3.50 344 345 14.54 283.00 46.00 345 346 16.50 319.00 -26.00 346 347 10.21 305.00 -35.00 347 348 12.77 259.00 -12.00 348 349 12.54 304.00 -22.00 349 350 9.66 16.00 33.00 350 351 14.99 79.00 2.50 351 352 16.36 354.00 37.00 352 353 6.17 350.00 -7.00 *END Hauptzug *BEGIN Ursprung *CALIBRATE declination -2.4 1 2 7.83 313.00 -8.00 2 3 9.40 304.00 -42.00 3 4 6.92 250.00 -47.00 4 5 5.92 351.00 -69.00 5 6 5.74 252.00 -29.00 6 7 13.45 273.00 -38.00 7 8 4.07 7.00 62.00 8 10 11.52 233.00 58.00 10 11 3.07 191.00 -37.00 11 12 18.70 0.00 90.00 12 13 4.82 211.00 -18.00 13 14 2.22 302.00 -32.00 14 15 3.37 343.00 -52.00 15 16 3.78 252.00 -23.00 12 17 2.00 0.00 90.00 17 18 3.64 117.00 45.00 18 19 2.21 89.00 15.00 19 20 5.48 0.00 90.00 20 21 1.03 301.00 1.00 21 22 6.10 0.00 90.00 22 23 5.15 303.00 80.00 23 24 6.37 189.00 85.00 24 25 1.92 230.00 3.00 25 26 2.26 269.00 -3.00 26 27 4.17 271.00 14.50 27 28 2.65 322.00 2.00 28 29 5.53 260.00 23.00 29 30 3.08 318.00 -14.00 30 31 4.19 262.00 -28.00 31 32 4.11 334.00 -27.00 32 33 5.19 305.00 41.00 33 34 5.31 274.00 -19.00 33 34 5.31 274.00 -19.00 34 35 4.83 278.00 37.00 35 36 4.10 243.00 -16.00 36 37 2.87 349.00 -23.00 37 38 20.25 252.00 -50.00 38 39 10.15 215.00 -34.00 39 40 8.00 238.00 -10.00 40 41 2.22 273.00 -22.00 41 42 16.20 0.00 90.00 42 43 1.81 170.00 50.00 43 44 4.47 60.00 60.00 44 45 5.41 110.00 53.00 45 46 6.46 0.00 90.00 46 47 4.36 278.00 5.00 47 48 3.90 250.00 68.00 48 49 1.50 152.00 0.00 49 50 7.69 273.00 41.00 50 51 6.69 146.00 32.00 51 51a 5.45 17.00 -21.00 51a 51b 4.05 11.00 29.00 51b 51c 12.02 95.00 37.00 51 52 5.60 263.00 30.00 52 53 4.65 256.00 14.00 53 54 4.47 177.00 -24.00 54 54a 1.32 87.00 -35.00 54a 54b 3.55 0.00 90.00 54b 54c 4.12 94.00 -1.00 54c 54d 1.70 133.00 1.00 54d 54e 2.50 216.00 -6.00 54e 54f 4.24 132.00 0.00 54f 54g 5.01 220.00 -23.00 54g 54h 5.15 117.00 35.00 54h 54i 5.54 266.00 13.00 54i 54j 2.39 320.00 21.00 54j 54k 6.67 296.00 -30.00 54k 54k1 7.95 251.00 -22.00 54k 54l 2.86 163.00 -5.00 54l 54m 7.89 145.00 -13.00 54 55 3.02 342.00 -42.00 55 56 7.91 296.00 -40.00 56 57 10.05 302.00 -47.00 57 58 8.40 0.00 90.00 58 59 1.90 4.00 9.00 59 60 2.00 86.00 60.00 60 61 4.91 29.00 -30.00 61 62 3.85 309.00 12.00 62 63 2.36 295.00 7.00 63 64 2.01 269.00 30.00 64 65 3.70 211.00 25.00 65 66 4.47 255.00 -33.00 66 67 7.20 0.00 90.00 67 68 1.85 288.00 6.00 68 69 2.38 315.00 4.00 69 70 2.06 289.00 3.00 70 71 1.52 306.00 -8.00 71 72 2.64 223.00 20.00 72 73 3.57 298.00 8.00 73 74 3.57 257.00 2.00 74 75 2.46 269.00 -2.00 75 76 2.00 320.00 18.00 76 77 3.09 247.00 -4.00 77 78 1.13 313.00 -1.00 78 79 2.35 226.00 33.00 79 80 4.06 188.00 -22.00 80 81 5.91 291.00 18.00 81 82 4.82 250.00 -6.00 82 83 1.24 132.00 -42.00 83 84 3.45 252.00 30.00 84 85 10.89 282.00 -2.00 85 86 7.73 319.00 -26.00 86 87 7.00 202.00 3.00 87 88 5.42 249.00 20.00 88 89 5.82 320.00 12.00 89 90 5.74 307.00 -5.00 90 91 9.35 290.00 0.50 91 92 2.40 205.00 6.00 92 93 5.08 192.00 5.00 93 94 5.37 247.00 -15.00 *END Ursprung *BEGIN Hochsammler *CALIBRATE declination -2.1 1 2 4.90 302.00 26.00 2 3 2.67 344.00 1.00 3 4 3.03 292.00 0.00 4 5 2.55 8.00 7.00 5 6 3.50 281.00 -1.00 6 7 3.40 337.00 4.00 7 8 2.67 325.00 0.00 8 9 7.80 315.00 -2.00 9 10 4.87 282.00 2.00 10 11 7.70 345.00 11.00 11 12 9.20 349.00 -36.00 12 13 17.80 317.00 -5.00 13 14 6.88 323.00 -25.00 14 15 7.83 333.00 -16.00 15 16 7.17 272.00 37.00 16 17 18.38 331.00 -31.00 17 18 11.95 6.00 -54.00 18 19 6.08 305.00 2.00 19 20 1.67 343.00 -5.00 20 21 14.28 0.00 -90.00 21 22 3.23 350.00 13.00 22 23 2.30 250.00 12.00 23 24 2.00 177.00 6.00 24 25 9.33 305.00 -3.00 25 26 2.27 28.00 1.00 26 27 4.98 329.00 -1.00 27 28 2.73 292.00 -2.00 28 29 3.15 322.00 3.00 29 30 3.02 280.00 29.00 30 31 5.45 332.00 -3.00 31 32 4.87 248.00 12.00 32 33 3.40 229.00 3.00 33 34 6.96 315.00 -16.00 34 35 18.13 280.00 68.00 35 36 2.20 75.00 52.00 36 37 4.20 340.00 27.00 37 38 2.06 312.00 -22.00 38 39 4.72 21.00 54.00 39 40 3.27 304.00 40.00 40 41 3.45 234.00 17.00 41 42 4.35 326.00 -10.00 42 43 3.19 80.00 -2.00 43 44 2.12 13.00 24.00 44 45 2.95 28.00 7.00 45 46 7.55 266.00 33.00 46 47 8.60 293.00 -10.00 47 48 1.42 5.00 12.00 48 49 3.28 88.00 -1.00 49 50 2.64 45.00 -4.00 50 51 2.52 95.00 2.00 51 52 1.30 17.00 0.00 52 53 5.98 287.00 12.00 53 54 4.54 213.00 -7.00 54 55 4.75 308.00 4.00 55 56 3.70 292.00 3.00 56 57 1.52 8.00 -1.00 57 58 2.33 57.00 -9.00 58 59 1.80 302.00 -14.00 59 60 3.93 250.00 14.00 60 61 4.44 301.00 -1.00 61 62 2.51 307.00 1.00 62 63 1.89 44.00 3.00 63 64 3.12 90.00 -5.00 64 65 7.45 324.00 5.00 65 66 2.04 338.00 0.00 66 67 2.88 283.00 -3.00 67 68 6.30 292.00 4.00 68 69 3.02 352.00 -3.00 69 70 1.90 35.00 -6.00 70 71 3.07 293.00 7.00 71 72 3.19 16.00 6.00 72 73 2.40 312.00 14.00 73 74 4.53 244.00 -6.00 74 75 4.74 281.00 4.00 75 76 4.40 49.00 -1.00 76 77 7.70 37.00 9.00 77 78 1.44 320.00 -10.00 78 79 3.45 259.00 -5.00 79 80 3.94 194.00 -5.00 80 81 4.18 242.00 12.00 81 82 4.34 313.00 -8.00 82 83 6.38 26.00 6.00 83 84 3.32 255.00 1.00 84 85 2.32 177.00 12.00 85 86 3.17 244.00 -3.00 86 87 3.63 298.00 2.00 87 88 2.15 61.00 -3.00 88 89 2.19 101.00 3.00 89 90 7.00 355.00 -3.00 90 91 7.31 292.00 5.00 91 92 3.55 16.00 -3.00 92 93 4.73 317.00 8.00 93 94 1.53 259.00 7.00 94 95 7.35 169.00 2.00 95 96 1.69 249.00 -26.00 96 97 3.60 321.00 0.00 97 98 5.00 342.00 -2.00 98 99 3.44 323.00 -7.00 99 100 6.70 306.00 2.00 100 101 1.78 273.00 11.00 101 102 4.67 330.00 6.00 102 103 4.80 240.00 -5.00 103 104 4.34 283.00 -5.00 104 105 4.00 15.00 -15.00 105 106 2.15 263.00 0.00 106 107 4.20 332.00 0.00 107 108 7.43 307.00 2.00 108 109 3.53 258.00 4.00 109 110 4.98 332.00 -1.00 110 111 3.80 306.00 -6.00 111 112 1.50 354.00 -10.00 112 113 3.90 294.00 32.00 113 114 8.65 315.00 -8.00 114 115 2.88 3.00 -1.00 115 116 8.43 243.00 0.00 116 117 2.30 205.00 4.00 117 118 1.96 269.00 6.00 118 119 8.55 335.00 4.00 119 120 5.04 275.00 -7.00 120 121 3.77 350.00 -1.00 121 122 2.48 251.00 5.00 122 123 3.46 323.00 -3.00 123 124 3.95 302.00 2.50 124 125 3.20 354.00 1.00 125 126 8.93 2.00 0.00 126 127 3.13 260.00 -1.00 127 128 2.25 11.00 13.00 128 129 5.35 326.00 9.00 129 130 3.24 254.00 -18.00 130 131 3.55 0.00 60.00 131 132 3.90 270.00 -5.00 132 133 3.85 325.00 19.00 133 134 6.30 300.00 34.00 134 135 2.20 343.00 33.00 135 136 2.65 299.00 -33.00 136 137 3.45 172.00 8.00 137 138 3.16 272.00 5.00 138 139 4.47 276.00 -6.00 139 140 0.85 180.00 -1.00 140 141 5.10 286.00 3.00 141 142 3.20 348.00 7.00 142 143 3.90 259.00 19.00 143 144 3.76 239.00 -18.00 144 145 2.56 339.00 20.00 145 146 2.42 215.00 27.00 146 147 2.55 244.00 -4.00 147 148 2.92 259.00 40.00 148 149 6.33 255.00 55.00 149 150 5.33 241.00 15.00 *END Hochsammler *BEGIN Champs_Elysees *CALIBRATE declination -2.1 1 2 7.96 327.00 31.00 2 3 4.10 288.00 60.00 3 4 3.37 210.00 45.00 4 5 5.15 10.00 24.00 5 6 11.10 292.00 0.00 6 7 11.90 300.00 2.00 7 8 11.13 303.00 -13.50 8 9 3.38 278.00 -14.00 9 10 1.98 351.00 -5.00 10 11 5.10 315.00 -35.00 11 12 1.65 29.00 -13.00 12 13 4.20 0.00 -90.00 *END Champs_Elysees *BEGIN Traumtaenzer *CALIBRATE declination -2.0 1 2 8.70 275.00 52.00 2 3 5.10 317.00 57.00 3 4 15.65 315.00 -7.50 4 5 9.50 317.00 -22.00 *END Traumtaenzer *BEGIN Normalweg *CALIBRATE declination -2.0 1 2 2.70 160.00 12.00 2 3 4.63 61.00 1.00 3 4 9.43 125.00 0.00 4 5 3.61 53.00 -10.00 5 6 6.44 154.00 3.00 6 7 3.68 80.00 66.00 7 8 3.22 83.00 -11.00 8 9 9.05 141.00 19.00 9 10 6.25 130.00 26.00 10 11 8.90 148.00 3.00 11 12 4.17 183.00 31.00 12 13 9.83 320.00 10.00 13 14 1.73 268.00 9.00 14 15 3.20 321.00 16.00 15 16 3.67 257.00 36.00 16 17 1.96 319.00 34.00 17 18 4.52 298.00 26.00 18 19 13.80 314.00 -26.00 19 20 7.63 306.00 9.00 *END Normalweg *BEGIN Rampe *CALIBRATE declination -2.0 1 2 22.00 167.00 51.00 2 3 3.80 225.00 6.00 3 4 1.50 120.00 26.00 *END Rampe *BEGIN Biwakroehre *CALIBRATE declination -2.0 1 2 3.23 60.00 10.00 2 3 5.40 106.00 19.00 3 4 15.64 144.00 51.00 4 5 11.48 130.00 23.00 5 6 1.32 208.00 -31.00 6 7 19.15 115.00 1.00 7 8 5.23 133.00 32.00 8 9 3.60 55.00 22.00 9 10 9.04 140.00 12.00 10 11 6.80 141.00 5.00 11 12 2.31 350.00 -60.00 12 13 15.00 0.00 -90.00 13 14 1.00 315.00 0.00 14 15 4.00 0.00 -90.00 *END Biwakroehre *BEGIN RD2 *CALIBRATE declination -2.0 1 2 2.99 114.00 -23.00 2 3 19.80 44.00 -61.00 3 4 8.30 350.00 -74.00 4 5 9.49 85.00 -61.00 5 6 4.40 80.00 -52.50 6 7 5.68 154.00 12.00 7 8 7.25 109.00 1.00 8 9 5.21 0.00 -90.00 9 10 2.08 144.00 10.00 10 11 3.54 82.00 7.00 11 12 3.17 204.00 -36.00 12 13 4.60 168.00 -10.00 13 14 1.65 85.00 -7.00 14 15 2.65 205.00 0.00 15 16 3.10 127.00 9.00 16 17 3.30 47.00 -8.00 17 18 1.78 145.00 -2.00 18 19 4.22 229.00 -12.00 19 20 3.45 114.00 -8.00 20 21 8.45 70.00 4.00 21 22 3.24 190.00 -10.00 22 23 2.83 229.00 -26.00 23 24 5.28 132.00 -6.00 24 25 3.60 55.00 16.00 25 26 1.97 23.00 6.00 26 27 3.30 117.00 6.00 27 28 3.77 84.00 -22.00 28 29 15.35 115.00 2.00 *END RD2 *BEGIN Mitteletage *CALIBRATE declination -2.0 1 2 2.20 201.00 28.00 2 3 19.30 138.00 -0.50 3 4 3.80 194.00 49.00 4 5 7.80 112.00 -28.00 5 6 5.40 102.00 -50.00 6 7 10.35 152.00 -8.50 *END Mitteletage *BEGIN Siphon_vorn *CALIBRATE declination -2.0 1 2 5.37 68.00 -3.00 2 3 7.54 148.00 3.50 3 4 3.80 96.00 -1.00 4 5 2.12 156.00 7.00 5 6 7.04 122.00 -2.00 6 7 3.61 165.00 -5.00 7 8 5.28 117.00 -3.00 8 9 5.10 168.00 -8.00 9 10 2.12 67.00 -2.00 10 11 4.60 120.00 -7.50 11 12 3.50 43.00 8.50 12 12S 5.50 120.00 -33.00 12 13 5.73 240.00 48.00 13 14 9.90 287.00 25.00 14 15 3.90 334.00 6.00 15 16 3.27 240.00 50.00 16 17 0.50 260.00 -60.00 *END Siphon_vorn *BEGIN Siphon_hinten *CALIBRATE declination -2.0 1 2 0.46 260.00 2.00 2 3 3.70 353.00 -5.00 3 4 8.45 329.00 -9.00 4 5 7.43 344.00 -3.00 *END Siphon_hinten *BEGIN Waschsalon *CALIBRATE declination -2.1 1 2 13.89 205.00 48.00 2 3 0.80 332.00 0.00 3 4 4.90 282.00 75.00 *END Waschsalon *BEGIN Lagune *CALIBRATE declination -2.1 1 2 6.65 312.00 3.00 2 3 5.90 74.00 17.00 *END Lagune *BEGIN Lehmetage *CALIBRATE declination -2.2 1 2 13.94 244.00 11.00 2 3 7.14 222.00 -17.00 3 4 3.97 202.00 -11.00 4 5 3.64 245.00 -2.00 5 6 0.68 251.00 48.00 6 7 18.70 233.00 -36.00 7 8 8.25 219.00 -18.00 8 9 4.91 210.00 -4.00 9 10 5.21 102.00 -25.00 10 11 8.25 166.00 17.00 11 12 7.00 262.00 -13.00 12 13 7.85 185.00 2.00 13 14 5.65 90.00 11.00 14 15 7.85 125.00 20.00 15 16 5.65 125.00 -45.00 16 17 7.30 0.00 -90.00 17 18 2.30 305.00 -30.00 18 19 1.23 289.00 -5.00 19 20 4.60 194.00 -32.00 20 21 2.40 197.00 -15.00 21 22 25.24 0.00 -90.00 22 23 3.77 175.00 -25.00 23 24 9.27 81.00 -8.00 24 25 2.88 87.00 -47.00 25 26 3.72 332.00 -48.00 26 27 6.50 0.00 -90.00 27 28 2.95 330.00 -35.00 28 29 13.80 0.00 -90.00 29 30 4.20 58.00 -3.00 *END Lehmetage *BEGIN Tropfsteinkammer *CALIBRATE declination -2.2 1 2 4.96 132.00 9.00 2 3 6.60 145.00 15.00 3 4 3.10 80.00 40.00 4 5 2.20 182.00 8.00 5 6 4.80 115.00 20.00 6 7 4.30 75.00 40.00 *END Tropfsteinkammer *BEGIN fossile_Schraege *CALIBRATE declination -2.2 1 2 5.75 69.00 -23.00 2 3 9.78 89.00 -48.50 3 4 8.14 67.00 -42.00 4 5 3.30 4.00 -17.00 5 6 3.71 50.00 -32.00 6 7 9.94 91.00 -49.00 7 8 13.54 54.00 -52.00 8 9 16.11 56.00 -49.00 9 10 3.35 131.00 -5.00 10 11 17.08 62.00 -58.00 11 12 19.18 333.00 -39.00 12 13 11.98 335.00 -32.00 13 14 12.04 290.00 21.00 14 15 6.73 287.00 -37.00 15 16 4.91 310.00 -1.00 16 17 13.38 332.00 -25.00 *END fossile_Schraege *BEGIN Dreieckshalle *CALIBRATE declination -2.2 1 2 3.43 39.00 10.00 2 3 2.18 296.00 10.00 3 4 8.79 45.00 -38.00 4 5 7.30 55.00 -39.00 5 5a 6.86 75.00 -50.00 5 6 5.92 303.00 -37.00 6 7 4.50 349.00 -52.00 7 8 7.30 0.00 -90.00 8 8a 10.70 340.00 3.00 8 9 7.65 162.00 9.00 9 9a 15.70 41.00 -34.00 9 10 4.47 245.00 43.00 10 11 1.95 0.00 90.00 11 12 10.95 198.00 53.00 12 13 6.20 218.00 52.00 13 14 0.53 0.00 90.00 14 1 4.11 135.00 39.00 *END Dreieckshalle *BEGIN Verbruchgang *CALIBRATE declination -2.2 1 2 14.03 264.00 36.00 2 3 6.37 277.00 -7.00 3 4 8.22 276.00 40.00 *END Verbruchgang *BEGIN Donnerbach *CALIBRATE declination -2.2 1 2 2.45 169.00 11.00 2 3 0.80 0.00 -90.00 3 4 2.53 153.00 -49.00 4 5 3.97 160.00 18.00 5 5a 4.65 326.00 -35.00 5a 5b 3.60 295.00 3.00 5 6 3.10 115.00 -4.00 6 7 4.80 113.00 -32.00 7 8 4.11 183.00 24.00 8 8a 5.30 192.00 0.00 8a 8b 15.40 0.00 90.00 8b 8c 3.20 43.00 24.00 8c 8d 4.30 91.00 -12.00 8 9 18.80 180.00 29.00 9 10 6.50 172.00 32.00 10 11 9.85 133.00 -31.00 11 12 14.40 120.00 -25.00 12 12a 5.65 306.00 6.00 12a 12b 2.75 333.00 -12.00 12b 12c 9.73 341.00 -18.00 12 13 3.50 199.00 -4.00 13 14 13.30 140.00 -7.00 14 15 6.80 140.00 7.00 15 16 4.30 210.00 39.00 16 17 2.80 171.00 -3.00 17 17a 6.50 149.00 0.00 17a 17b 4.80 142.00 10.00 17 18 3.35 224.00 80.00 18 19 3.67 194.00 33.00 19 20 3.37 162.00 22.00 20 21 6.90 145.00 11.00 21 22 4.55 103.00 -19.00 22 22a 6.34 182.00 -23.00 22a 22b 6.97 80.00 -64.00 22 23 11.35 158.00 25.00 23 24 8.35 208.00 -9.00 *END Donnerbach *BEGIN Toter_Mann *CALIBRATE declination -2.2 1 2 6.70 25.00 -52.00 2 2a 17.50 25.00 -68.00 2 3 11.30 84.00 -46.00 3 4 2.20 123.00 11.00 4 5 3.05 235.00 48.00 5 6 10.30 136.00 19.00 6 7 10.20 138.00 7.00 7 8 6.73 196.00 37.00 8 9 9.80 321.00 2.00 9 10 2.45 206.00 35.00 10 11 10.72 171.00 38.00 11 12 16.65 133.00 -8.00 12 13 13.55 135.00 -9.00 13 14 8.77 128.00 -20.00 14 15 8.10 122.00 -4.00 15 16 3.98 107.00 -46.00 16 17 1.95 170.00 0.00 17 18 7.80 160.00 34.00 18 19 18.59 253.00 39.00 19 20 19.20 265.00 45.00 *END Toter_Mann *BEGIN Verbruchetage *CALIBRATE declination -2.1 1 2 2.55 338.00 33.00 2 3 11.05 316.00 13.00 3 4 7.83 295.00 4.00 *END Verbruchetage *BEGIN Seitengang *CALIBRATE declination -2.1 1 2 18.93 135.00 2.00 2 3 4.58 108.00 -9.00 3 4 3.26 148.00 -3.00 4 5 2.86 114.00 -1.00 *END Seitengang *BEGIN Wasserfallhalle *CALIBRATE declination -2.2 1 2 3.17 39.00 20.00 2 3 6.22 72.00 -60.00 3 4 6.15 132.00 -20.00 4 5 5.60 80.00 -45.00 5 6 7.20 163.00 30.00 6 7 4.90 196.00 27.00 7 8 6.05 175.00 20.00 8 9 10.07 155.00 37.00 9 10 9.20 172.00 27.00 10 11 9.50 125.00 -5.00 *END Wasserfallhalle *BEGIN Abfluss *CALIBRATE declination -2.2 1 2 12.95 170.00 7.50 2 3 13.50 104.00 -31.00 3 4 6.74 164.00 -14.00 4 5 6.77 114.00 -41.00 5 6 4.43 340.00 -7.00 6 7 8.90 8.00 -49.00 7 8 2.20 10.00 -22.00 8 9 7.10 4.00 -42.00 9 10 3.82 27.00 -19.00 10 11 4.83 53.00 -53.00 11 12 5.80 32.00 -37.00 12 13 5.38 348.00 -14.00 13 14 5.90 24.00 -47.00 14 14a 5.40 133.00 -4.00 14a 14b 12.02 84.00 -48.00 14b 14c 13.13 34.00 -41.00 14c 14W1 0.51 0.00 -90.00 14c 14d 2.09 314.00 35.00 14d 14e 4.86 331.00 -19.00 14e 14f 3.73 321.00 -9.00 14f 14W2 0.70 0.00 -90.00 14 15 4.70 28.00 -28.00 15 16 3.71 0.00 -90.00 16 17 4.90 5.00 -6.00 17 18 4.66 31.00 -42.00 18 19 6.27 331.00 -21.00 19 20 2.11 340.00 8.00 20 20a 5.60 82.00 -53.00 20a 20b 2.74 130.00 -10.00 20b 20W3 4.60 81.00 -51.00 20 21 1.03 290.00 25.00 21 22 11.65 322.00 -4.00 22 23 16.30 348.00 -34.00 23 24 5.00 75.00 -54.00 *END Abfluss *BEGIN Kleiner_Spritzer *CALIBRATE declination -2.2 1 2 3.15 294.00 21.00 2 3 6.42 36.00 -31.00 3 4 3.80 345.00 -54.00 4 5 0.70 87.00 2.00 5 6 2.15 0.00 -90.00 6 7 3.63 358.00 -63.00 7 8 7.80 37.00 -57.00 8 9 6.30 40.00 -70.00 9 10 13.72 59.00 -59.00 10 11 16.37 70.00 -55.00 11 12 8.14 135.00 -7.00 12 13 14.06 97.00 -47.00 13 14 7.14 117.00 -42.00 14 15 7.70 355.00 -37.00 15 16 17.84 10.00 -52.00 *END Kleiner_Spritzer *BEGIN Leopardengang *CALIBRATE declination -2.2 1 2 22.05 141.00 6.00 2 3 7.95 130.00 -4.00 3 3a 12.56 182.00 -6.50 3 4 4.40 123.00 -1.00 4 5 9.95 154.00 0.00 5 6 5.25 147.00 1.50 6 7 3.45 161.00 -4.00 7 8 6.20 152.00 6.00 8 9 9.60 139.00 3.00 9 10 5.78 258.00 -18.00 10 11 14.25 332.00 29.00 *END Leopardengang *BEGIN Schoener_Canyon *CALIBRATE declination -2.4 1 2 7.50 71.00 3.00 2 3 2.10 29.00 -7.00 3 4 3.76 78.00 10.00 4 5 5.11 49.00 -0.50 5 6 5.28 91.00 5.00 6 7 13.80 73.00 3.00 7 8 6.40 77.00 9.00 8 9 6.74 79.00 -12.00 9 10 7.85 58.00 -4.00 10 11 7.47 79.00 3.00 11 12 4.22 111.00 -5.00 12 13 5.48 102.00 -18.00 13 14 5.70 175.00 31.00 14 14a 10.70 245.00 -32.00 14 15 3.10 141.00 -15.00 15 16 4.70 28.00 1.00 16 17 4.58 71.00 -5.00 17 18 3.91 132.00 12.00 18 19 5.83 72.00 5.00 19 20 6.47 94.00 -7.00 20 21 5.50 130.00 0.00 21 22 12.17 84.00 -0.50 22 23 5.48 108.00 -7.00 23 24 6.07 2.00 -53.00 24 25 8.67 95.00 5.00 25 26 6.97 67.00 24.00 26 27 9.74 124.00 26.00 27 28 2.97 92.00 0.00 28 29 5.55 138.00 23.00 29 30 5.26 84.00 -6.00 30 31 3.06 31.00 -8.00 31 32 9.17 80.00 -24.00 32 33 13.32 78.00 -9.00 33 34 8.33 133.00 4.00 34 35 7.60 36.00 42.00 35 36 6.35 80.00 7.00 36 37 12.70 140.00 30.00 37 38 4.46 121.00 19.00 38 39 4.50 112.00 20.00 39 40 5.37 100.00 42.00 40 41 6.13 141.00 16.00 41 42 3.90 188.00 -32.00 42 43 4.82 75.00 16.00 43 44 12.88 141.00 5.00 44 45 9.62 142.00 -1.00 45 46 7.35 75.00 9.00 46 47 5.30 182.00 -10.00 47 48 4.15 129.00 8.00 48 49 3.30 98.00 -3.00 49 50 8.77 115.00 0.00 50 51 3.15 206.00 -30.00 51 52 4.70 106.00 17.00 52 53 10.05 67.00 -27.00 53 54 7.72 141.00 -5.00 54 55 4.43 242.00 -10.00 55 56 7.62 222.00 -57.00 56 57 6.38 197.00 -80.00 57 58 3.01 80.00 -28.00 58 59 7.10 75.00 -4.00 59 60 10.07 98.00 7.00 60 61 8.22 66.00 30.00 61 62 11.91 89.00 22.00 62 63 5.10 91.00 1.00 63 64 6.05 86.00 -3.00 64 65 6.90 113.00 3.00 65 66 8.29 70.00 -1.00 66 67 3.86 81.00 4.00 67 68 4.48 152.00 -5.00 68 69 13.95 135.00 -38.00 69 70 8.09 122.00 -23.00 70 71 9.05 128.00 -9.00 71 72 5.69 199.00 -12.00 72 73 5.76 166.00 -6.00 73 74 3.53 219.00 -10.00 74 75 4.30 247.00 -3.00 75 76 5.53 149.00 17.00 76 77 4.82 82.00 25.00 77 78 2.56 171.00 38.00 78 78a 7.05 67.00 19.00 78a 78b 8.42 312.00 -17.00 78 79 9.11 187.00 26.00 79 79a 5.69 111.00 33.00 79a 79b 7.31 3.00 -16.00 79 80 6.36 136.00 24.00 80 80a 4.64 188.00 27.00 80a 80b 6.01 266.00 34.00 80 81 3.78 117.00 -30.00 81 82 6.84 158.00 -27.00 82 82a 3.60 172.00 -6.00 82a 82b 8.57 107.00 39.00 82b 82c 2.65 92.00 -8.00 82c 82d 9.92 35.00 0.00 82 83 11.45 124.00 47.00 83 84 7.49 131.00 27.00 84 84a 12.76 80.00 30.00 84 85 18.75 232.00 -1.00 85 86 14.64 237.00 24.00 86 86a 12.14 167.00 -10.00 86a 86b 8.53 137.00 -8.00 86 87 9.74 115.00 3.00 *END Schoener_Canyon *BEGIN Schoener_Bach *CALIBRATE declination -2.4 0 1 2.89 297.00 -37.00 1 2 4.79 10.00 -2.00 2 3 4.99 309.00 -12.00 3 4 2.46 356.00 -15.00 4 5 2.18 332.00 1.00 5 6 3.41 303.00 -2.00 6 7 5.11 330.00 -38.00 7 8 2.62 77.00 -40.00 8 9 4.40 53.00 -24.00 9 10 2.70 320.00 2.00 10 11 2.15 10.00 -8.00 11 12 3.36 224.00 40.00 *END Schoener_Bach *BEGIN Seitencanyon_Nord *CALIBRATE declination -2.3 0 1 1.15 79.00 1.00 1 2 2.47 25.00 -58.00 2 3 9.26 350.00 -32.00 3 4 9.12 299.00 -33.00 4 5 6.30 308.00 -49.00 5 6 10.30 40.00 3.00 6 7 4.80 45.00 35.00 7 8 8.60 76.00 6.00 8 9 1.63 40.00 19.00 9 10 8.63 69.00 -3.00 10 11 3.46 128.00 -6.00 11 12 10.71 85.00 -26.00 12 13 3.00 52.00 -26.00 13 14 9.88 111.00 -29.00 *END Seitencanyon_Nord *BEGIN Seitenseitencanyon *CALIBRATE declination -2.3 0 1 10.85 158.00 14.00 1 2 13.59 160.00 10.00 2 3 5.30 116.00 -32.00 3 4 6.07 121.00 -26.00 4 5 0.60 0.00 90.00 5 6 2.17 161.00 -16.00 6 7 12.17 123.00 -50.00 7 8 10.23 120.00 -35.00 8 9 4.72 103.00 -43.00 *END Seitenseitencanyon *BEGIN Gewurschtel1 *CALIBRATE declination -2.3 0 1 6.78 156.00 56.00 1 2 9.00 145.00 47.00 2 3 5.93 59.00 51.00 3 4 10.63 79.00 -2.00 4 4a 8.83 134.00 -27.00 4 5 3.13 295.00 33.00 5 5a 4.82 11.00 -27.00 5a 5b 12.50 253.00 -26.00 5 6 8.75 46.00 25.00 6 7 5.95 92.00 -22.00 7 8 7.23 355.00 18.00 8 9 3.21 78.00 -5.00 9 10 10.14 27.00 -2.00 *END Gewurschtel1 *BEGIN Gewurschtel2 *CALIBRATE declination -2.3 0 1 2.70 310.00 -55.00 1 2 1.60 134.00 -22.00 2 3 1.83 93.00 -21.00 3 4 4.05 194.00 -70.00 4 5 2.13 245.00 -3.00 5 6 5.85 67.00 -17.00 *END Gewurschtel2 *BEGIN Gewurschtel3 *CALIBRATE declination -2.3 0 1 3.66 336.00 30.00 1 2 6.56 4.00 49.00 2 3 3.68 336.00 34.00 3 3a 5.15 90.00 57.00 3 4 3.52 192.00 18.00 4 5 4.12 250.00 39.00 5 6 1.25 147.00 13.00 6 7 4.96 240.00 -40.00 7 8 7.48 209.00 -25.00 8 9 3.83 190.00 -27.00 9 10 5.00 298.00 -25.00 10 11 7.08 250.00 -44.00 *END Gewurschtel3 *BEGIN Kongretionencanyon *CALIBRATE declination -2.5 0 1 9.12 302.00 34.00 1 2 3.67 279.00 -9.00 2 3 11.50 281.00 28.00 3 4 10.97 179.00 44.00 4 5 4.80 25.00 18.00 5 6 7.97 164.00 45.00 6 7 6.53 198.00 46.00 *END Kongretionencanyon *BEGIN Roehrln *CALIBRATE declination -2.4 0 1 5.40 220.00 -3.00 1 2 5.01 135.00 -68.00 2 3 13.07 140.00 -75.00 3 4 5.85 107.00 -87.00 4 5 2.85 236.00 -64.00 5 6 5.28 246.00 -46.00 6 7 5.68 260.00 2.00 7 8 4.17 329.00 -20.00 8 9 2.12 263.00 -20.00 9 10 3.05 285.00 -2.00 10 11 3.91 269.00 5.00 11 12 1.80 263.00 -46.00 12 13 2.69 108.00 -32.00 13 14 3.96 305.00 -4.00 14 15 2.27 0.00 90.00 15 15a 2.32 278.00 -1.00 15a 15b 2.56 265.00 33.00 15b 15c 2.88 280.00 0.00 15c 15d 1.41 130.00 53.00 15d 15e 1.40 198.00 -33.00 15e 15f 1.64 197.00 26.00 15 16 2.38 3.00 17.00 16 17 2.87 301.00 29.00 17 18 3.77 270.00 -20.00 18 19 8.77 85.00 -59.00 19 20 1.27 65.00 -6.00 20 21 4.12 358.00 39.00 *END Roehrln *BEGIN Odlgrubn1 *CALIBRATE declination -2.3 0 1 6.93 348.00 -4.00 1 2 3.74 280.00 24.00 2 3 2.11 320.00 11.00 3 4 6.67 296.00 -67.00 4 5 6.82 0.00 -90.00 5 6 0.72 16.00 15.00 6 7 4.01 62.00 -38.00 7 8 8.57 109.00 -5.00 8 9 4.35 343.00 -28.00 9 10 4.12 123.00 -5.00 10 11 3.94 149.00 28.00 11 12 4.46 35.00 -26.00 12 13 3.56 345.00 -3.00 13 14 3.40 350.00 -29.00 14 15 9.94 67.00 -15.50 15 16 7.75 133.00 27.00 16 17 7.21 67.00 12.00 17 18 7.41 289.00 -31.00 18 19 3.12 26.00 -13.00 19 20 1.27 118.00 1.00 20 21 2.00 20.00 3.00 21 22 5.68 75.00 -50.00 22 23 7.89 17.00 -65.00 23 24 17.15 0.00 -90.00 24 25 4.20 255.00 25.00 25 26 8.81 341.00 -49.00 26 27 8.87 329.00 -2.00 27 28 10.45 261.00 14.00 28 28a 12.05 12.00 19.00 28a 28b 6.59 353.00 23.00 28b 28c 4.68 21.00 8.00 28c 28d 6.81 301.00 2.00 28 29 4.75 294.00 21.00 29 30 5.68 266.00 -11.00 30 31 5.87 255.00 -49.00 *END Odlgrubn1 *BEGIN Odlgrubn2 *CALIBRATE declination -2.3 0 1 5.22 39.00 26.00 1 2 5.14 170.00 8.00 2 2a 9.46 50.00 27.00 2a 2b 4.72 136.00 8.00 2b 2c 3.22 89.00 -18.00 2 3 6.38 110.00 3.00 3 4 3.76 155.00 0.00 4 5 5.70 185.00 -16.00 5 6 2.56 37.00 11.00 6 7 2.70 105.00 -75.00 7 8 3.92 132.00 -72.00 8 9 9.04 95.00 -45.00 9 10 7.59 60.00 -44.00 10 11 4.65 18.00 -16.00 11 12 7.17 100.00 -52.00 12 13 7.70 0.00 -90.00 13 14 13.35 75.00 -2.00 14 14a 19.11 300.00 -25.00 14 14b 15.09 50.00 25.00 14 15 9.00 163.00 -18.00 15 16 0.17 303.00 0.00 16 17 3.05 0.00 -90.00 17 18 2.10 10.00 -38.00 18 19 3.90 280.00 -9.00 19 20 1.76 0.00 -90.00 20 21 0.81 163.00 -26.00 21 22 1.50 0.00 -90.00 22 23 3.88 268.00 -20.00 23 24 4.97 228.00 12.00 24 25 4.43 345.00 -4.00 25 26 8.42 345.00 -49.00 26 27 2.35 341.00 -6.00 27 28 2.75 304.00 22.00 28 29 4.40 99.00 33.00 *END Odlgrubn2 *BEGIN Odlgrubn2a *CALIBRATE declination -2.3 0 1 6.46 116.00 10.00 1 1a 6.46 0.00 -90.00 1a 1b 5.20 175.00 -5.00 1 2 5.39 105.00 50.00 2 3 10.67 120.00 45.00 3 4 4.56 140.00 0.00 4 5 7.55 188.00 5.00 *END Odlgrubn2a *BEGIN HDB *CALIBRATE declination -2.3 0 1 7.10 84.00 -14.00 1 2 7.20 18.00 -3.00 2 3 8.12 82.00 -15.00 3 4 9.89 110.00 -38.00 4 5 5.62 40.00 -14.00 5 6 6.83 325.00 -31.00 6 7 5.54 10.00 -4.00 7 8 3.68 333.00 1.00 8 9 6.58 59.00 -1.00 *END HDB *BEGIN SH *CALIBRATE declination -2.3 0 1 4.70 221.00 3.00 1 2 7.68 204.00 -40.00 2 2a 9.48 216.00 7.00 2 3 10.05 72.00 -6.00 3 4 4.32 20.00 11.00 4 5 4.26 111.00 0.00 5 6 11.42 126.00 17.00 6 7 14.25 154.00 35.00 7 8 11.67 122.00 38.00 *END SH *BEGIN Droehnung *CALIBRATE declination -2.4 0 1 14.23 287.00 29.00 1 2 3.38 189.00 -11.00 2 3 11.11 215.00 -62.00 3 4 10.31 272.00 -56.00 4 5 14.13 243.00 -57.00 5 6 6.34 155.00 -50.00 6 7 11.29 127.00 -36.00 7 8 8.76 132.00 -44.00 8 9 6.13 107.00 4.00 9 10 6.88 93.00 0.00 10 11 3.37 121.00 -14.00 11 12 6.79 135.00 -1.00 12 13 0.91 213.00 7.00 13 14 2.22 73.00 74.00 14 15 3.26 115.00 49.00 13 13a 2.90 295.00 -27.00 13a 13b 2.86 177.00 5.00 13b 13c 4.45 283.00 5.00 *END Droehnung *BEGIN Kluftlabyrinth1 *CALIBRATE declination -2.4 0 1 7.26 204.00 -9.00 1 1a 3.85 171.00 5.00 1a 1b 1.88 133.00 3.00 1b 1c 4.46 114.00 -59.00 1c 1d 3.88 78.00 -10.00 1d 1e 4.09 107.00 -25.00 1 2 3.88 300.00 -33.00 2 3 11.27 0.00 -90.00 3 4 3.23 101.00 -14.00 4 5 4.73 94.00 -7.00 5 6 6.54 93.00 -35.00 6 6a 7.52 123.00 -13.00 6 7 2.61 312.00 -29.00 7 8 9.98 57.00 -7.00 8 9 4.22 67.00 -55.00 9 10 2.90 81.00 0.00 *END Kluftlabyrinth1 *BEGIN Kluftlabyrinth2 *CALIBRATE declination -2.4 0 1 4.08 293.00 -4.00 1 2 3.37 304.00 8.00 2 3 10.27 323.00 11.00 3 4 3.00 25.00 72.00 4 5 4.72 304.00 -6.00 5 6 4.57 268.00 5.00 6 7 10.45 46.00 42.00 7 8 7.83 290.00 11.00 8 9 6.40 270.00 53.00 9 10 2.65 332.00 -11.00 10 11 7.14 212.00 -12.00 11 12 3.37 267.00 -3.00 12 13 3.15 308.00 47.00 13 14 5.60 270.00 30.00 14 15 5.26 328.00 2.00 *END Kluftlabyrinth2 *BEGIN Schacht6 *CALIBRATE declination -2.3 0 1 0.83 34.00 35.00 1 2 8.90 351.00 -17.00 2 3 5.67 198.00 -50.00 3 4 6.00 310.00 -75.00 4 5 6.60 25.00 -79.00 5 6 9.25 0.00 -90.00 6 7 5.41 320.00 -78.00 7 8 8.14 109.00 -48.00 8 9 10.67 108.00 -49.00 9 10 10.07 70.00 -52.00 10 11 9.11 116.00 -14.00 11 12 5.75 129.00 -5.00 12 13 6.88 159.00 1.00 13 14 3.80 164.00 -16.00 14 15 7.22 170.00 -68.00 15 16 6.80 105.00 -61.00 16 17 15.93 0.00 -90.00 *END Schacht6 *BEGIN Halle *CALIBRATE declination -2.3 0 1 3.26 298.00 51.00 1 2 7.11 298.00 4.00 2 3 8.62 19.00 24.00 3 4 11.53 80.00 0.00 4 5 19.96 122.00 -23.00 5 6 15.07 155.00 -14.00 6 7 13.70 228.00 -8.00 7 8 7.38 313.00 11.00 8 9 5.64 330.00 12.00 9 10 7.05 317.00 35.00 10 0 7.45 307.00 12.00 *END Halle *BEGIN Zweig1 *CALIBRATE declination -2.3 0 1 11.95 262.00 12.00 1 2 12.17 270.00 -26.00 2 3 7.14 261.00 20.00 3 4 11.32 251.00 -7.00 4 5 3.78 248.00 -3.00 5 6 4.26 228.00 -30.00 6 7 6.00 248.00 -45.00 *END Zweig1 *BEGIN Zweig2 *CALIBRATE declination -2.4 0 1 16.00 325.00 -33.00 1 2 3.90 296.00 -12.00 2 3 2.59 265.00 -47.00 3 4 2.04 284.00 22.00 4 5 2.68 270.00 36.00 5 6 5.52 285.00 48.00 6 7 5.51 290.00 41.00 7 8 4.50 357.00 39.00 8 9 2.61 256.00 -8.00 9 10 3.75 0.00 90.00 10 11 3.29 246.00 -10.00 11 12 3.91 262.00 -26.00 12 13 2.30 0.00 17.00 13 14 4.45 294.00 29.00 14 15 6.23 300.00 30.00 15 16 7.29 271.00 -13.00 16 17 3.61 259.00 -1.00 17 18 2.06 301.00 3.00 18 19 6.75 237.00 7.00 19 20 5.82 308.00 11.00 20 21 6.17 256.00 -3.00 21 22 5.07 222.00 -19.00 22 23 3.81 201.00 -33.00 23 24 4.17 110.00 -20.00 24 25 2.31 76.00 1.00 25 26 5.42 122.00 -42.00 26 27 4.31 201.00 -29.00 27 28 7.24 251.00 -29.00 28 29 11.05 263.00 -63.00 29 30 4.54 25.00 0.00 30 31 3.30 308.00 -23.00 31 32 6.02 255.00 -38.00 32 33 4.18 217.00 -57.00 33 34 2.23 259.00 3.00 34 34a 4.94 0.00 -90.00 34 35 2.30 177.00 41.00 35 36 2.39 340.00 41.00 36 37 3.91 231.00 42.00 37 38 3.18 296.00 -38.00 38 39 4.49 211.00 -41.00 39 40 1.49 250.00 -25.00 40 41 3.32 292.00 -11.00 41 42 3.09 298.00 -2.00 42 43 1.76 272.00 -44.00 43 44 7.93 0.00 -90.00 44 45 3.76 289.00 -23.00 45 46 11.89 230.00 -45.00 46 47 5.54 326.00 -3.00 47 48 8.41 269.00 -18.00 48 49 8.00 242.00 -20.00 49 50 5.34 218.00 -1.00 50 51 7.46 267.00 2.00 51 52 5.58 259.00 -51.00 52 53 16.82 224.00 -55.00 53 54 10.66 247.00 -28.00 58 59 4.38 240.00 -58.00 59 60 11.05 348.00 -10.00 60 61 8.89 253.00 -2.00 61 62 3.06 136.00 4.00 62 63 12.26 214.00 17.00 58 58a 15.84 60.00 15.00 58a 58b 20.32 95.00 18.00 58b 58c 9.40 65.00 4.00 58c 58d 7.08 123.00 11.00 58d 58e 17.83 187.00 13.00 58e 54 3.93 38.00 29.00 58e 58f 16.70 312.00 -25.00 58f 58g 7.25 285.00 4.00 58g 58h 19.10 230.00 -20.00 58h 58 19.10 317.00 -14.00 58c 58c1 8.71 215.00 -3.00 58c1 58c2 7.22 192.00 -44.00 58c2 58c3 10.10 55.00 -46.00 *END Zweig2 *BEGIN Zweig3 *CALIBRATE declination -2.3 0 1 3.97 205.00 -18.00 1 2 12.43 63.00 27.00 2 3 12.05 57.00 27.00 3 4 16.38 117.00 27.00 4 5 5.00 136.00 60.00 5 6 8.41 150.00 39.00 *END Zweig3 *BEGIN Zweig4 *CALIBRATE declination -2.3 0 1 14.25 192.00 -24.00 1 2 11.38 184.00 -28.00 2 3 2.95 184.00 -38.00 3 4 4.90 298.00 -13.00 4 5 5.56 313.00 -33.00 5 6 10.58 268.00 -22.00 *END Zweig4 *BEGIN Zweig5 *CALIBRATE declination -2.3 0 1 10.04 292.00 -5.00 1 2 10.89 270.00 -22.00 *END Zweig5 *BEGIN Schacht1 *CALIBRATE declination -2.3 0 1 4.20 65.00 -28.00 1 2 8.23 107.00 -53.00 2 3 4.45 267.00 -11.00 3 4 4.27 284.00 -42.00 4 5 4.17 349.00 18.00 *END Schacht1 *BEGIN Schacht23 *CALIBRATE declination -2.3 0 1 3.90 45.00 -40.00 1 2 11.94 122.00 -79.00 2 3 5.70 228.00 -34.00 3 4 4.76 331.00 -17.00 4 5 8.02 337.00 56.00 5 6 11.37 310.00 -55.00 6 7 5.35 18.00 -20.00 7 8 14.54 235.00 60.00 8 9 6.48 222.00 68.00 9 10 6.68 300.00 18.00 *END Schacht23 *BEGIN Schacht4 *CALIBRATE declination -2.3 0 1 6.30 24.00 -25.00 1 2 8.88 43.00 -60.00 2 3 5.60 30.00 -80.00 3 4 4.00 0.00 -90.00 *END Schacht4 *BEGIN Gully *CALIBRATE declination -2.4 0 1 11.37 82.00 1.00 1 2 2.46 90.00 -32.00 2 3 3.50 220.00 -45.00 3 4 13.72 102.00 -46.00 4 5 4.22 225.00 -13.00 5 5a 3.46 350.00 -34.00 5a 5b 1.84 330.00 10.00 5b 5c 2.15 270.00 21.00 5c 5d 6.77 15.00 38.00 5 6 2.89 152.00 -23.00 6 7 1.49 0.00 -90.00 7 8 0.71 281.00 -24.00 8 9 0.88 0.00 -90.00 9 10 3.18 217.00 7.00 10 11 13.15 88.00 23.00 11 12 2.67 182.00 42.00 12 13 4.52 137.00 1.00 13 14 1.75 196.00 -23.00 14 15 3.54 170.00 -66.00 15 16 4.23 322.00 -68.00 16 17 3.88 177.00 -15.00 17 18 7.28 287.00 -27.00 18 19 3.22 193.00 -60.00 19 20 3.25 123.00 -10.00 20 21 4.68 227.00 34.00 21 21.1 2.31 92.00 28.00 21.1 21.2 5.36 76.00 -42.00 21.2 21.3 4.14 221.00 -30.00 21.3 21.4 3.50 138.00 9.00 21.4 21.5 6.70 85.00 20.00 21.5 21.6 3.53 68.00 25.00 21 22 16.26 271.00 -18.00 22 23 5.56 225.00 4.00 23 24 4.32 278.00 36.00 24 25 4.33 308.00 -30.00 25 26 3.04 238.00 -34.00 26 27 4.44 274.00 -13.00 27 28 3.76 246.00 -5.00 28 29 7.59 307.00 4.00 29 30 3.60 250.00 27.00 30 31 1.80 304.00 0.00 31 32 2.53 227.00 -20.00 32 33 0.67 250.00 -27.00 33 34 1.34 301.00 9.00 34 35 2.94 319.00 74.00 35 36 1.47 357.00 -35.00 36 37 2.31 281.00 -4.00 37 38 2.86 233.00 15.00 38 39 2.65 253.00 5.00 39 40 2.22 311.00 21.00 40 41 2.92 227.00 -2.00 41 42 2.11 303.00 36.00 *END Gully *BEGIN Schachtumgehung *CALIBRATE declination -2.4 0 1 10.26 31.00 52.00 1 2 10.91 10.00 44.00 2 3 5.52 320.00 11.00 3 4 8.41 35.00 -24.00 4 5 6.48 253.00 -11.00 5 6 19.60 281.00 -41.00 6 7 5.54 194.00 -1.00 7 8 13.68 100.00 -14.00 *END Schachtumgehung *BEGIN Parallelschacht *CALIBRATE declination -2.4 0 1 8.65 104.00 -35.00 1 2 9.07 70.00 -60.00 2 3 6.07 65.00 -57.00 3 4 12.06 112.00 -54.00 4 5 2.03 17.00 -20.00 5 6 6.06 116.00 -29.00 6 7 9.10 57.00 -43.00 7 8 6.87 30.00 -32.00 8 9 4.43 44.00 5.00 9 10 4.58 152.00 -40.00 10 11 4.50 125.00 -68.00 *END Parallelschacht *BEGIN Windschacht *CALIBRATE declination -2.4 0 1 1.81 295.00 -38.00 1 2 4.45 277.00 -45.00 2 3 18.63 0.00 -90.00 3 4 2.80 3.00 -25.00 4 5 4.43 275.00 -63.00 5 6 9.70 0.00 -90.00 6 7 2.14 321.00 50.00 *END Windschacht *BEGIN Seengang *CALIBRATE declination -2.5 0 1 0.47 65.00 -70.00 1 2 21.03 321.00 3.00 2 3 1.38 315.00 24.00 3 4 14.78 289.00 3.00 4 5 10.93 228.00 -2.00 5 6 9.60 243.00 1.00 6 7 6.66 293.00 0.00 7 8 8.24 260.00 0.00 8 9 6.15 298.00 0.00 9 10 12.93 272.00 0.00 10 11 12.70 276.00 -5.00 11 12 5.22 248.00 15.00 12 13 9.84 283.00 -2.00 13 14 7.05 346.00 1.00 14 15 6.79 266.00 0.00 15 16 16.37 289.00 0.00 16 17 5.39 6.00 0.00 17 18 3.69 84.00 1.00 18 19 8.91 1.00 0.00 19 20 6.87 359.00 -2.00 20 21 5.69 280.00 -3.00 21 22 12.27 322.00 -22.00 22 23 12.26 339.00 20.00 23 24 2.86 329.00 11.00 24 25 8.54 316.00 2.00 25 26 5.90 332.00 10.00 26 27 7.38 294.00 -11.00 27 28 5.45 320.00 5.00 28 29 13.25 287.00 -5.00 29 30 8.91 223.00 -13.00 30 31 5.60 243.00 -6.00 31 32 6.24 305.00 -1.00 32 33 5.67 347.00 0.00 33 34 9.73 265.00 0.00 34 35 6.95 171.00 6.00 35 36 6.35 256.00 -7.00 36 37 17.74 328.00 4.00 37 38 10.77 353.00 -7.00 38 39 4.20 316.00 -1.00 38 40 5.18 325.00 33.00 40 42 11.75 295.50 -14.00 42 43 9.53 316.50 3.00 43 44 8.37 292.00 -1.00 44 45 10.30 331.00 -2.00 45 46 5.96 313.00 -8.00 46 47 3.44 343.50 28.00 47 48 1.69 40.00 -23.50 48 49 7.67 78.00 -5.00 49 51 9.12 111.00 7.00 51 52 16.34 66.00 1.00 52 53 4.49 64.00 -12.00 53 55 6.67 350.00 0.00 55 56 36.23 92.00 -41.60 56 57 13.85 106.20 -15.40 57 58 14.13 88.10 -1.70 58 59 11.69 25.70 -20.60 59 60 8.57 89.20 2.30 60 61 7.96 110.00 -2.00 61 62 11.53 54.50 13.40 62 63 14.20 73.00 10.00 63 64 10.40 327.00 -15.00 64 65 20.53 36.50 0.00 65 66 9.63 18.60 -14.60 66 67 9.41 20.90 -12.90 67 68 23.25 41.30 -0.70 68 69 13.55 23.10 2.80 69 70 6.64 21.50 -6.60 70 71 14.86 22.30 0.50 71 72 0.48 0.00 -90.00 72 73 6.25 25.60 3.40 66 66.1 11.44 168.00 21.00 66.1 66.2 4.78 160.00 34.00 66.2 66.2.1 22.00 126.00 40.00 66.2 66.2.2 15.00 0.00 23.00 73 74 5.65 28.00 -3.00 74 75 0.40 0.00 90.00 75 76 1.43 50.00 -2.00 76 77 2.75 9.00 -5.00 77 78 1.75 8.00 1.00 78 79 3.52 55.00 11.00 79 80 0.25 0.00 -90.00 80 81 7.05 30.00 -3.00 81 82 3.86 24.00 17.00 82 83 6.84 70.00 20.00 83 84 9.45 100.00 6.00 84 85 15.70 10.00 12.00 85 86 6.15 12.00 -16.00 86 86.1 12.35 228.00 -13.00 86.1 86.2 3.78 185.00 -16.00 86.2 86.3 7.76 233.00 -12.00 86.3 86.4 2.30 144.00 -3.00 86.4 83 2.00 0.00 90.00 86 87 7.34 4.50 11.00 87 88 2.22 83.20 -40.50 86 87a 6.74 350.00 -11.30 87a 88 4.04 73.00 17.60 88 89 15.64 137.00 24.50 89 90 20.36 42.00 26.80 90 91 17.72 343.00 0.40 91 92 11.70 349.00 7.90 90 90.1 8.44 148.00 23.00 90.1 90.2 18.13 92.00 40.00 92 93 14.74 94.00 12.50 93 93.1 13.40 124.00 38.00 93 94 6.22 353.00 69.00 94 95 0.69 40.00 -16.00 95 96 2.42 17.00 3.00 96 96.1 20.20 330.00 -38.00 96 97 15.50 14.00 -26.00 97 98 8.38 354.00 3.00 98 98.1 7.62 316.00 28.00 98 99 13.71 126.00 25.00 99 100 10.07 61.00 -1.00 100 101 6.11 94.00 -2.00 101 101.1 13.45 358.00 -33.00 101 102 20.88 66.00 -3.00 102 103 10.20 31.00 -1.00 103 104 18.70 336.00 -22.00 104 105 11.82 266.00 -22.00 105 106 9.36 349.00 -5.00 106 106.1 10.26 250.00 -10.00 106 107 3.59 19.00 0.00 107 108 20.42 42.00 -1.00 108 109 2.36 45.00 17.00 109 110 13.95 8.00 -9.00 110 111 17.66 345.00 -13.00 111 112 7.30 313.00 -31.50 112 112.1 5.42 215.00 12.00 112.1 112.2 2.32 227.00 -1.00 112.2 112.3 6.50 221.00 -40.00 112 113 7.29 310.00 -33.50 113 114 4.24 31.00 -31.00 114 115 8.65 16.00 3.50 115 116 7.79 2.00 -18.00 116 117 14.50 337.00 -20.00 117 118 10.31 315.00 -61.00 118 119 6.24 309.00 -23.50 119 120 5.18 201.00 -15.00 120 121 9.05 239.00 -16.00 121 121.1 6.70 14.00 -13.00 121 122 2.46 167.00 8.00 122 123 4.45 228.00 3.00 123 124 3.72 242.00 -19.00 119 119.1 8.24 287.00 -33.50 119.1 119.2 4.65 357.00 -12.00 119.2 119.3 6.67 336.00 -35.00 119 119.4 3.53 34.00 -1.00 119.4 119.5 4.97 336.00 -30.00 119.5 119.6 3.47 7.00 2.00 119.6 119.7 5.15 106.00 34.00 119.7 119.7.1 4.40 36.00 30.00 119.7 119.8 3.56 205.50 13.00 119.8 119 6.88 198.00 -8.50 *END Seengang *BEGIN Kluftschlot *CALIBRATE declination -2.4 0 1 3.85 94.00 52.00 1 2 21.62 288.00 31.00 *END Kluftschlot *BEGIN Gipsgang *CALIBRATE declination -2.4 *EQUATE 20 surface.20 0 1 13.30 145.00 24.00 1 2 3.94 183.00 28.00 2 3 4.28 104.00 7.00 3 4 14.20 171.00 38.00 4 5 4.20 208.00 -14.00 5 5.1 5.24 174.00 26.00 5.1 5.2 9.50 194.00 3.00 5.2 5.3 9.98 318.00 -7.00 5.3 5.4 3.16 298.00 -2.00 5.4 9 5.44 244.00 -39.00 5 6 5.56 261.00 -23.00 6 7 5.32 192.00 -2.00 7 8 7.19 273.00 0.00 8 9 2.13 228.00 9.00 9 10 3.77 274.00 -40.00 10 11 7.10 152.00 -63.00 11 12 11.43 117.00 -40.00 12 13 18.91 185.00 -63.00 13 14 6.47 67.00 -12.00 14 15 17.63 152.00 -60.00 15 16 7.96 188.00 -24.00 16 17 18.02 114.00 -42.00 17 18 8.63 109.00 -19.00 18 19 3.43 198.00 -58.00 19 20 2.63 246.00 -26.00 16 16.1 5.62 0.00 -100.00 16.1 16.2 6.66 331.00 31.00 16.2 16.3 11.22 347.00 15.00 *BEGIN surface *CALIBRATE declination -2.4 20 21 4.00 200.00 -10.00 *END surface *END Gipsgang *BEGIN Gipsseitengang *CALIBRATE declination -2.5 0 1 1.05 236.00 5.00 1 2 2.01 317.00 1.00 2 3 1.97 239.00 -7.00 3 4 3.53 0.00 -90.00 4 5 2.84 175.00 3.00 5 6 4.08 259.00 11.00 6 7 4.09 254.00 -46.00 7 8 5.30 68.00 -43.00 8 9 5.21 92.00 59.00 9 6 5.30 271.00 32.00 3 10 3.46 17.00 33.00 10 11 2.26 293.00 74.00 11 12 7.77 293.00 67.00 12 13 2.37 345.00 45.00 13 14 3.40 282.00 -6.00 14 15 7.20 240.00 30.00 *END Gipsseitengang *BEGIN Rutschpartie *CALIBRATE declination -2.4 0 1 9.20 77.00 -1.00 1 2 4.12 71.00 -4.00 2 3 6.17 317.00 -21.00 3 4 3.28 52.00 -15.00 4 5 5.48 304.00 10.00 5 6 7.10 322.00 -30.00 6 7 16.61 363.00 -38.00 7 8 5.95 34.00 -35.00 8 9 5.99 398.00 -34.00 9 10 3.92 303.00 -16.00 10 11 6.58 333.00 -34.00 11 12 3.46 0.00 -100.00 12 13 8.42 82.00 -39.00 13 14 2.46 0.00 -100.00 *END Rutschpartie *BEGIN Steile_Halde *CALIBRATE declination -2.5 0 1 15.59 280.00 34.00 1 2 16.14 237.90 42.00 2 3 5.11 154.60 42.80 3 4 4.55 147.00 7.50 *END Steile_Halde *BEGIN Brausecanyon *CALIBRATE declination -2.5 0 1 2.68 202.00 -6.00 1 2 2.73 293.00 10.00 2 3 5.63 213.00 6.00 3 4 3.27 138.00 -4.00 4 5 3.26 198.00 0.00 5 6 2.09 172.00 2.00 6 7 2.95 241.00 1.00 7 8 9.50 0.00 -90.00 8 9 2.23 58.00 32.00 9 10 2.75 0.00 -90.00 10 11 7.33 29.00 -18.00 11 12 9.45 112.00 -13.00 12 13 5.29 75.00 -19.00 13 14 5.42 104.00 13.00 14 15 7.15 167.00 27.00 15 16 7.61 139.00 50.00 16 17 5.57 159.00 8.00 *END Brausecanyon *BEGIN Missing_Link *CALIBRATE declination -2.5 0 1 3.25 157.00 -22.00 1 2 5.20 97.00 -27.00 2 3 2.24 271.00 -60.00 3 4 3.42 312.00 -37.00 4 5 4.80 303.00 -49.00 5 6 3.95 85.00 -23.00 6 7 1.95 14.00 -42.00 7 8 4.18 103.00 -10.00 8 9 4.45 96.00 -63.00 9 10 5.40 86.00 -26.00 10 11 3.40 8.00 -40.00 11 12 2.47 303.00 -52.00 12 13 9.45 0.00 -73.00 13 14 6.95 23.00 -4.00 10 10.1 1.20 179.00 57.00 10.1 10.2 3.77 152.00 -6.00 10.2 10.3 3.10 97.00 -30.00 10.3 10.4 4.45 120.00 -7.00 10.4 10.5 2.75 34.00 -2.00 10.5 10.6 3.85 100.00 42.00 10.6 10.7 2.80 192.00 -4.00 *END Missing_Link *BEGIN Brauseschacht *CALIBRATE declination -2.5 0 1 2.56 116.40 -12.20 1 2 14.68 44.00 -57.00 2 3 2.73 116.90 -42.90 3 4 0.83 226.90 -20.80 4 5 5.88 120.70 -48.30 5 6 5.00 43.20 -16.80 6 7 2.23 101.90 -51.10 7 8 3.68 81.90 -16.70 8 9 2.67 167.90 46.70 9 10 4.33 120.20 -9.30 10 10.1 4.15 144.90 -42.70 10.1 10.2 4.16 227.80 -19.00 10.2 10.3 4.42 356.50 -15.00 10 11 4.11 85.80 9.10 11 12 8.16 82.60 -65.90 12 13 5.35 73.40 -42.60 13 14 12.22 356.70 -41.40 14 15 3.57 346.90 -39.50 *END Brauseschacht *BEGIN Monsterschacht *CALIBRATE declination -2.5 0 1 4.49 211.00 27.00 1 2 4.50 238.00 51.00 2 3 14.29 244.00 26.00 3 4 10.32 149.00 28.00 4 5 14.82 187.00 -27.00 5 6 17.21 210.00 -65.00 6 7 11.16 140.00 -50.00 7 8 9.37 355.00 -74.00 8 9 15.40 334.00 -29.00 9 10 3.03 353.00 -9.00 10 11 6.01 4.00 -54.00 11 12 13.86 18.00 -78.00 12 13 8.66 314.00 -36.00 13 14 10.50 354.00 -71.00 14 15 12.65 50.00 -77.00 15 16 8.59 56.00 -78.00 16 17 7.29 44.00 -88.00 17 18 5.20 334.00 10.00 *END Monsterschacht *BEGIN Nebelschacht *CALIBRATE declination -2.5 0 1 1.98 224.00 -44.00 1 2 2.57 390.00 -41.00 2 3 7.93 0.00 -100.00 3 4 10.62 0.00 -100.00 4 5 4.92 156.00 37.00 5 6 7.27 22.00 -85.00 6 7 8.74 169.00 -54.00 7 8 7.36 226.00 -68.00 8 9 2.54 132.00 -4.00 9 10 8.60 163.00 -28.00 10 11 10.57 132.00 -41.10 11 12 13.39 152.60 -53.60 12 13 4.88 143.70 -28.10 13 14 5.88 163.60 -47.80 14 15 7.02 100.50 -48.70 15 16 4.45 125.00 -55.00 16 17 11.82 134.00 -59.00 17 18 14.33 140.00 -47.00 *END Nebelschacht *BEGIN Eckschacht *CALIBRATE declination -2.5 2 3 13.67 0.00 -90.00 0 1 3.51 256.00 -12.50 1 2 6.21 345.00 -35.00 3 4 10.59 184.20 36.00 4 5 1.92 202.50 27.80 5 6 5.72 158.10 27.80 6 7 4.63 197.00 15.70 7 8 1.83 300.80 59.40 8 9 5.32 155.70 -35.50 9 10 5.98 110.80 -35.80 10 11 1.57 338.90 -28.80 11 12 7.31 318.00 -24.00 12 13 3.50 27.90 -36.70 13 14 3.51 339.50 -20.30 *END Eckschacht *BEGIN Kristallkluft *CALIBRATE declination -2.5 0 1 6.80 293.30 -20.00 1 2 12.63 315.10 -34.70 2 3 13.65 314.00 -30.70 3 4 8.84 302.70 -12.60 4 4.1 9.51 325.90 -30.60 4 5 2.37 269.30 -7.10 5 6 9.38 302.00 -30.40 6 7 5.30 317.40 -9.10 7 8 23.55 296.40 -21.30 *END Kristallkluft *BEGIN Maulwurf1 *CALIBRATE declination -2.5 0 1 6.87 146.00 -11.00 1 2 3.22 132.00 -26.00 2 3 3.00 111.00 -26.00 3 4 3.03 121.00 -23.00 4 5 0.60 159.00 27.00 5 6 3.94 130.00 -40.00 6 7 3.20 117.00 -70.00 7 8 4.18 144.00 -26.00 8 9 2.85 198.00 -14.00 9 10 2.55 131.00 1.00 10 11 15.89 130.00 10.00 11 12 13.07 120.00 16.00 12 13 3.62 150.00 -44.00 *END Maulwurf1 *BEGIN Maulwurf2 *CALIBRATE declination -2.5 0 1 4.84 113.00 16.50 1 2 7.25 115.00 13.00 2 3 5.31 135.00 26.50 3 4 3.28 149.00 10.00 4 5 3.12 130.00 -57.00 5 6 25.50 142.00 89.00 *END Maulwurf2 *END Riesending CaveConverter_src/test/data/regression/Sloppy2ZigZags_ref.svx0000644000000000000000000001316712114372110023506 0ustar rootroot*BEGIN uzu110810sloppypt2 *EQUATE 158.12 161.0 *EQUATE 161.4 165.1 *BEGIN 161 *DATE 2009.01.07 *FLAGS SPLAY 0 0a 8.58 203.24 85.39 0 0b 1.79 169.15 -88.07 0 0c 1.29 125.73 0.46 0 0d 2.53 190.96 4.20 0 0e 1.61 306.94 3.61 0 0f 2.31 237.87 9.54 0 0g 2.83 253.54 9.73 0 0h 2.16 277.70 11.01 0 0i 1.31 43.80 6.31 *FLAGS NOT SPLAY 0 1 8.84 224.95 74.29 1 2 1.29 177.76 16.14 2 3 9.45 62.80 8.45 *FLAGS SPLAY 3 3a 4.88 114.75 84.07 3 3b 1.07 299.88 -83.79 3 3c 0.76 207.08 2.14 3 3d 1.45 243.11 1.63 3 3e 2.05 261.73 3.02 *FLAGS NOT SPLAY 3 4 3.09 174.44 77.16 4 5 3.04 80.70 -0.77 5 6 7.44 29.62 5.20 6 7 5.85 35.05 1.09 *FLAGS SPLAY 7 7a 8.62 351.28 81.03 7 7b 0.55 153.97 -74.30 7 7c 0.58 282.01 8.71 7 7d 3.17 349.34 3.84 7 7e 3.04 20.21 3.70 *FLAGS NOT SPLAY 7 8 9.45 7.85 51.31 8 9 2.60 65.73 -6.30 9 10 4.48 6.77 7.25 10 11 3.86 56.51 1.91 *FLAGS SPLAY 11 11a 4.24 25.54 78.35 11 11b 0.56 60.57 -78.89 11 11c 0.67 323.14 -8.75 11 11d 2.62 20.06 7.07 *FLAGS NOT SPLAY 11 12 7.66 28.32 10.32 12 13 1.09 289.21 11.36 13 14 3.87 230.95 3.41 14 15 4.60 249.81 2.49 15 16 4.46 260.87 6.91 16 17 7.41 236.86 0.94 17 18 1.79 282.80 9.24 18 19 14.75 240.76 9.56 *FLAGS SPLAY 19 19a 48.31 69.00 85.56 19 19b 1.91 72.56 -82.37 19 19c 1.25 157.25 -8.40 19 19d 7.11 72.91 15.16 19 19e 0.59 2.64 1.55 19 19f 4.57 16.43 28.14 19 19g 7.14 49.84 15.92 *FLAGS NOT SPLAY *data passage station left right up down 0 1.288 1.608 8.58 1.79 1 0.773 0.0 1.853 0.675 2 0.722 0.0 2.252 0.816 3 0.0 2.051 4.881 1.066 4 0.794 0.0 4.206 1.247 5 0.488 0.0 4.398 0.974 6 0.0 0.767 4.969 0.727 7 0.576 3.042 8.62 0.551 8 0.0 0.686 4.513 1.882 9 0.619 0.0 4.364 1.078 10 0.0 0.671 4.298 0.741 11 0.67 0.0 4.241 0.558 12 0.47 0.0 3.688 0.816 13 0.634 0.0 3.367 0.971 14 0.0 0.702 3.415 0.941 15 0.0 0.755 3.435 0.844 16 0.605 0.0 2.276 0.939 17 0.0 1.145 7.298 0.815 18 1.401 0.0 6.314 1.079 19 1.246 0.593 48.307 1.906 *END 161 *BEGIN 165 *DATE 2012.04.10 *CALIBRATE declination 2.0 1 2 3.48 281.26 27.52 2 3 2.13 191.02 1.42 3 4 7.43 222.22 -1.21 4 5 2.23 224.28 -4.17 5 6 3.41 205.94 2.50 6 7 3.12 212.10 -3.17 7 8 3.01 223.50 -0.83 8 9 1.53 227.01 0.71 9 10 4.13 230.74 -1.52 10 11 3.15 233.34 3.49 11 12 7.29 213.25 -3.92 12 13 6.48 212.26 -46.98 13 14 2.54 235.48 -15.60 14 15 1.92 202.22 -38.76 15 16 3.08 81.63 -16.60 16 17 2.89 92.67 -62.02 17 18 4.26 53.58 -27.46 18 19 4.32 46.44 -3.26 19 20 1.58 52.71 -1.32 *FLAGS SPLAY 20 20a 1.01 159.34 77.94 20 20b 0.52 232.63 -86.75 20 20c 0.94 312.95 2.07 20 20d 2.52 351.69 -10.78 20 20e 0.45 166.31 -2.61 *FLAGS NOT SPLAY 20 21 2.13 80.12 -0.95 21 22 1.40 48.91 -4.57 22 23 3.09 6.26 -4.89 23 24 3.19 42.15 4.79 24 25 3.04 29.71 -4.19 25 26 5.16 27.70 -2.06 26 27 0.89 133.24 21.14 27 28 3.49 84.55 -0.49 28 29 4.49 57.41 0.19 29 30 4.20 52.71 -1.95 30 31 3.19 70.91 1.33 31 32 1.95 41.99 -0.84 32 33 1.18 108.78 -27.67 33 34 2.03 41.06 -1.30 34 35 4.68 61.76 1.03 35 36 3.57 48.05 1.36 36 37 2.13 86.68 -1.42 37 38 2.37 49.91 -8.73 38 39 3.65 63.15 4.37 39 40 2.65 25.59 -2.53 40 41 7.85 65.58 1.85 41 42 3.98 215.85 -4.71 42 43 2.22 233.70 0.55 43 44 4.04 203.86 -0.25 44 45 5.66 233.77 0.58 ;Disto batteries changed and disto recalibrated before this leg. 45 46 2.15 186.79 -5.67 46 47 2.69 210.08 -0.93 47 48 1.42 230.57 -1.37 48 49 2.10 240.59 0.28 49 50 3.47 237.36 -2.97 50 51 2.90 256.53 4.59 51 52 3.17 240.12 -3.07 52 53 2.60 232.18 -0.80 53 54 4.54 221.12 -21.78 54 55 1.20 181.22 -8.12 55 56 1.94 154.16 -70.71 56 57 5.60 228.25 -6.94 57 58 6.32 217.05 -41.16 *FLAGS SPLAY 58 58a 2.96 289.31 83.86 58 58b 0.38 164.39 -87.86 58 58c 1.04 141.20 -11.06 58 58d 4.16 41.63 18.73 58 58e 1.98 317.32 -13.13 *FLAGS NOT SPLAY *data passage station left right up down 1 0.571 0.494 3.841 1.625 2 0.968 0.0 1.761 1.464 3 0.0 0.52 1.696 1.486 4 0.421 0.0 1.496 1.523 5 0.429 0.0 1.489 1.391 6 0.0 0.6 1.44 1.425 7 0.0 0.465 1.636 1.288 9 0.495 0.0 1.596 1.279 10 0.0 0.52 1.626 1.23 11 0.593 0.0 1.556 1.27 12 0.423 0.0 1.694 1.279 13 0.202 1.061 4.12 1.604 14 0.631 0.0 1.496 1.64 15 0.894 0.0 2.581 1.544 16 0.438 0.0 1.294 1.026 17 0.754 0.0 3.736 1.448 18 0.0 0.324 8.446 0.886 19 0.417 0.187 1.112 0.578 20 2.52 0.454 1.006 0.525 21 0.41 0.428 0.0 0.936 22 0.998 0.0 1.325 0.371 23 0.426 0.0 1.002 0.219 24 0.0 0.779 0.802 0.485 25 0.0 0.344 1.464 0.439 26 0.0 0.771 1.707 0.779 27 0.441 0.0 1.196 0.997 28 0.37 0.0 1.231 1.098 29 0.541 0.0 0.868 1.226 30 0.0 0.559 1.112 1.189 31 0.352 0.0 0.997 1.465 32 0.0 0.388 1.138 1.444 33 0.594 0.242 1.845 0.822 34 0.534 0.0 1.803 0.815 35 0.0 0.445 1.376 0.98 36 0.0 0.49 0.761 1.261 37 0.509 0.0 0.835 1.067 38 0.0 0.476 1.35 0.804 39 0.442 0.0 1.04 1.049 40 0.0 0.411 1.019 0.955 41 0.0 0.826 0.874 1.534 42 0.0 0.483 1.055 0.986 43 0.486 0.0 1.252 1.045 44 0.0 0.428 1.074 1.168 45 0.463 0.0 0.955 1.363 46 0.0 0.343 1.033 1.227 47 0.421 0.0 0.941 1.031 48 0.415 0.0 1.208 1.169 49 0.338 0.0 1.067 1.137 50 0.0 0.387 1.001 1.123 51 0.345 0.0 0.885 1.431 52 0.0 0.419 0.871 1.361 53 0.0 0.354 1.006 1.662 54 0.564 0.0 2.112 1.128 55 0.0 0.622 2.015 3.358 56 0.0 1.45 3.918 1.94 57 0.662 0.0 0.657 1.176 58 1.042 1.979 2.963 0.375 *END 165 *END uzu110810sloppypt2 CaveConverter_src/test/data/regression/2638_BogHole_ss_ref.svx0000644000000000000000000000135512560565210023353 0ustar rootroot*BEGIN 2638_BogHole *CALIBRATE declination 2.28 1 0 5.10 115.00 -19.00 2 1 5.10 90.00 -0.50 3 2 4.60 34.00 4.00 4 3 11.00 13.00 1.00 5 4 22.40 98.00 -1.50 6 5 10.30 114.00 8.00 7 6 6.20 107.00 -8.00 8 7 4.70 34.00 7.00 9 8 3.70 81.00 -44.00 9 entr 7.50 0.00 90.00 A 7 4.30 180.00 -12.00 B A 10.70 96.00 -1.50 Z 7 5.60 89.00 12.00 Y Z 6.60 109.00 -3.00 6 61 1.40 0.00 -90.00 61 62 9.20 108.00 -12.00 62 63 10.00 105.00 -1.00 63 64 13.80 98.00 2.00 64 65 3.90 18.00 -4.00 65 66 6.00 355.00 -1.00 66 67 6.80 47.00 4.00 67 68 9.10 99.00 -5.00 68 69 13.00 4.00 -3.00 69 70 4.30 38.00 -5.00 71 70 4.90 282.00 -2.00 71 72 15.00 75.00 0.00 *END 2638_BogHole CaveConverter_src/test/data/regression/flags_ss_ref.svx0000644000000000000000000000576413030252172022447 0ustar rootroot*BEGIN Swildons *EQUATE Ent EntranceZigZags.3 *EQUATE surfacegps.4 EntranceZigZags.3 *EQUATE LongDryWay.0 EntranceZigZags.5 *EQUATE LongDryWay.5 EntranceZigZags.21 *EQUATE LongDryWay.5 ShortDryWay.0 *BEGIN surfacegps *FLAGS SURFACE 0 1 9.84 94.37 -5.88 1 2 7.84 97.65 -8.05 2 3 11.76 94.27 -17.67 3 4 4.38 7.38 -23.29 3 5 5.45 262.93 13.06 5 6 8.80 174.95 11.61 6 7 13.78 168.31 12.55 *END surfacegps *BEGIN EntranceZigZags *FLAGS SURFACE 0 1 2.98 10.26 -2.01 0 2 5.24 3.23 -5.04 2 3 2.64 166.70 -60.11 *FLAGS NOT SURFACE 3 4 3.10 330.76 -25.13 4 5 4.51 275.80 -12.10 5 6 2.41 50.67 -22.33 6 7 1.08 37.30 11.53 7 8 2.00 6.10 11.51 8 9 1.01 56.60 0.18 9 10 3.07 336.52 5.81 9 11 2.42 64.64 5.29 11 12 4.50 106.56 19.29 10 13 0.94 80.55 -45.63 13 14 5.31 65.16 19.50 10 15 3.27 329.15 -18.16 15 16 3.57 334.08 -6.33 16 17 2.41 207.98 -9.43 17 18 4.05 308.01 -19.25 18 19 2.06 211.48 -16.06 19 20 2.94 233.55 -35.84 20 21 2.04 14.57 -39.09 *END EntranceZigZags *BEGIN LongDryWay 0 1 4.08 270.72 -25.50 1 2 3.77 354.35 -29.81 2 3 4.33 336.10 -24.79 3 4 2.77 337.70 -4.41 4 5 3.14 343.71 -25.59 *END LongDryWay *BEGIN ShortDryWay 0 1 1.43 131.61 -13.25 *FLAGS SPLAY 1 1a 1.42 311.07 12.80 1 1b 0.58 327.33 -0.57 1 1c 0.50 258.56 -34.18 1 1d 0.94 171.13 -6.41 *FLAGS DUPLICATE NOT SPLAY 1 2 3.89 73.29 -51.63 *FLAGS SPLAY 2 2a 3.91 252.77 52.00 2 2b 2.44 239.99 47.81 2 2c 0.91 252.72 -4.04 2 2d 0.80 250.31 -35.24 *FLAGS NOT DUPLICATE NOT SPLAY 2 3 4.50 170.72 19.68 *FLAGS SPLAY 3 3a 1.54 358.12 82.08 3 3b 0.94 170.44 -79.46 3 3c 0.46 71.39 -4.30 3 3d 0.45 220.38 -6.59 3 3e 4.46 350.50 -20.39 3 3f 0.39 251.63 -13.19 *FLAGS NOT SPLAY 3 4 1.11 246.49 -14.16 *FLAGS SPLAY 4 4a 0.60 345.93 65.79 4 4b 0.68 212.13 -85.64 4 4c 0.28 4.71 4.35 4 4d 2.84 294.88 -9.50 *FLAGS NOT SPLAY 2 5 4.91 323.66 2.34 *FLAGS SPLAY 5 5a 1.68 227.27 67.16 5 5b 0.87 46.77 -82.61 5 5c 4.91 143.73 -2.57 5 5d 0.74 236.15 -6.85 5 5e 1.03 103.39 -8.81 5 5f 2.18 148.83 -2.53 *FLAGS NOT SPLAY 5 6 5.05 279.35 -25.23 *FLAGS SPLAY 6 6a 2.83 16.27 74.62 6 6b 1.16 111.26 -85.03 6 6c 5.05 99.27 25.32 6 6d 0.58 34.79 1.49 6 6e 2.60 99.05 2.63 6 6f 2.79 105.09 4.91 *FLAGS NOT SPLAY 6 7 5.02 336.36 -13.85 *FLAGS DUPLICATE SPLAY 7 7a 3.73 254.43 80.33 7 7b 0.54 182.41 -84.02 7 7c 2.55 328.39 -82.67 7 7d 5.00 156.87 13.29 7 7e 0.41 231.77 -3.06 *FLAGS NOT DUPLICATE NOT SPLAY 7 8 3.19 303.08 -33.11 *FLAGS SPLAY 8 8a 4.46 353.35 80.60 8 8b 1.45 224.40 -78.95 8 8c 3.21 123.01 33.05 8 8d 0.53 23.07 -5.56 8 8e 1.87 72.08 1.35 *FLAGS NOT SPLAY 8 9 6.71 295.69 -12.15 *FLAGS SPLAY 9 9a 1.16 244.84 81.25 9 9b 1.09 201.63 -76.54 9 9c 6.72 115.55 11.83 9 9d 0.56 196.48 2.10 9 9e 3.56 117.58 -4.92 *FLAGS NOT SPLAY 9 10 1.11 265.93 2.35 *END ShortDryWay *END Swildons CaveConverter_src/test/data/regression/0107_Uzueka_ss_ref.svx0000644000000000000000000032514412560565164023302 0ustar rootroot*BEGIN 0107_Uzueka *EQUATE entrance2.0 ent2_UpnOver.flyover.13 *EQUATE ent2_upnover.flyover.26 QuadrapheniaResurvey2010.FlyoverCrawl.0 *EQUATE entrance2.19 QuadrapheniaResurvey2010.QuadrapheniaToSqueezeResurvey.10 *EQUATE ent2_UpnOver.flyover.26 QuadrapheniaResurvey2010.MainJunctionsArea.0 *EQUATE Quadraphenia.996 QuadrapheniaResurvey2010.MainJunctionsArea.16 *EQUATE quad2008-2.0 QuadrapheniaResurvey2010.MainJunctionsArea.21 *EQUATE entrance2.18 NearSeries.16 *EQUATE entrance2.19 AroundEntranceSeries.19 *EQUATE WildlifeSeries.983 AroundEntranceSeries.944 *EQUATE WildlifeSeries.922 AroundEntranceSeries.922 *EQUATE entrance1.1000 Quadraphenia.1000 *EQUATE Quad2008-3.23 QuadrapheniaOxbows.1019 *EQUATE Quad2008-2.6 Roofers_Passage_Area.3 *EQUATE Quad2008-3.0 Roofers_Passage_Area.11 *EQUATE TilersWay.40 Roofers_Passage_Area.2 *EQUATE Quad2008-3.0 PullUpPassage.pt1.0 *EQUATE PullUpPassage.pt4.1 PullUpPassageMaze.pt1.1 *EQUATE PullUpPassage.pt2.4 PullUpPassageMaze.pt1.6 *EQUATE PullupMazeInlet.97 PullUpPassageMaze.pt3.3 *EQUATE Quad2008-3.43 MarathonPassage.57 *EQUATE MarathonPassage.54 MarathonPassagePt1.79 *EQUATE FlashbulbHallOldBits.749 FlashbulbHall_resurvey2009_1.13 *EQUATE GodKnows.Feb2010.0 FlashbulbHall_resurvey2009_1.52 *EQUATE GodKnows.Apr2010.39 FlashbulbHall_resurvey2009_1.56 *EQUATE GodKnows.Apr2010.44 FlashbulbHall_resurvey2009_1.44 *EQUATE RealSimaBaz.pt1.0 GodKnows.GoldiesWay.Pt3.5 *EQUATE FlashbulbHall_resurvey2010.34 FlashbulbHall_resurvey2009_1.44 *EQUATE FlashbulbHall_resurvey2010.30 FlashbulbHall_resurvey2009_2.15 *EQUATE FlashbulbHall_Aug09.6 BeyondFlashbulbNorth.11 *EQUATE PullUpPassage.pt3.2 BeyondFlashbulbNorth.0 *EQUATE PigsTrotters_downstream_resurvey2011.0 Marathon_to_PigsTrotters_resurvey2009_1.10 *EQUATE NewUzueka.1 PigsTrotters_downstream_resurvey2011.17 *EQUATE NewUzueka.46 RH_StartOfGorillaWalk.1094 *EQUATE NewUzueka.16 PhreaticMazeSeries.0 *EQUATE NewUzueka.65 2691_GiantPanda.33 *EQUATE WindyInlet.1069 2691_GiantPanda.8 *EQUATE NewUzueka.82 2ndRiverInlet.20 *EQUATE NewUzueka.77 ZoologicalGardens.865 *EQUATE Stomps.Pt1.1 HiddenAven.1 *EQUATE GourInlet.1 Stomps.Pt1.9 *EQUATE NewUzueka.106 GourInlet.1 *EQUATE GourInlet.71 BeyondThunderdome.1 *EQUATE GourInlet.13 BeyondThunderdome.93 *EQUATE BeyondThunderdome.1 TomorrowMorrowLand.1 *EQUATE Uzu-Gour090410153.0 TomorrowMorrowLand.45 *EQUATE GourAven2010.0 Uzu-Gour090410153.58 *EQUATE Stomps.Pt1.34a FarStompsInlet.189 *EQUATE Crossover.1 Stomps.Pt1.17 *EQUATE Crossover.14 Stomps.Pt1.19 *EQUATE 3rdRiver.46 Crossover.46 *EQUATE 3rdRiver.46 3rdRiverInlet.197 *EQUATE 3rdRiver.57 ObviousInlet.1 *EQUATE 3rdRiver.61 StrawInlet.61 *EQUATE 3rdRiver.82 LisasBit.1 *EQUATE 3rdRiver.95 Aug96Passage.202 *EQUATE 3rdRiver.104 LasPlayas.Resurvey2011.8 *EQUATE SloppyInlet.Pt1_2010.1 LasPlayas.Resurvey2011.1 *EQUATE DiversionChamberInlet.1 LasPlayas.Resurvey2011.1 *EQUATE HellOfADiversion.1 SloppyInlet.Pt2_2011.4 *EQUATE HellOfADiversion.58 DiversionChamberInlet.13 *EQUATE BRoad.1 LasPlayas.Resurvey2011.1 *EQUATE BRoad.15 SandyZigZags.1 *EQUATE BRoad.18 River2.9 *EQUATE River2.25 4thRiverInlet.1 *EQUATE River2.34 Astradome.6 *EQUATE River2.49 ArmageddonBypass.1 *EQUATE River2.62 ArmageddonToRockyHorror.219a *EQUATE SandyJunctionInlet.10 ArmageddonToRockyHorror.223 *EQUATE ArmageddonToRockyHorror.223 ChambersBackFromArmageddon.7 *EQUATE ShrimpBoneInlet.238 ArmageddonToRockyHorror.238 *EQUATE RockyHorror.273 ArmageddonToRockyHorror.273 *EQUATE Trident.273 ArmageddonToRockyHorror.273 *EQUATE Quad2008-3.23 Marathon_to_PigsTrotters_resurvey2009_1.0 *EQUATE Quad2008-3.16 FlashbulbHall_resurvey2009_1.26 *EQUATE Marathon_to_PigsTrotters_resurvey2009_1.0 Marathon_to_PigsTrotters_resurvey2009_2.1 *EQUATE Marathon_to_PigsTrotters_resurvey2009_1.6 Marathon_to_PigsTrotters_resurvey2009_2.9 *EQUATE Pigstrotters_sidepassage.0 Marathon_to_PigsTrotters_resurvey2009_1.10 *EQUATE FlashbulbHall_resurvey2009_1.1 Marathon_to_PigsTrotters_resurvey2009_1.10 *EQUATE FlashbulbHall_resurvey2009_2.4 FlashbulbHall_resurvey2009_1.51 *EQUATE FlashbulbHall_resurvey2009_2.0 FlashbulbHall_resurvey2009_2a.1 *EQUATE FlashbulbHall_Aug09.0 FlashbulbHall_resurvey2009_1.46 *EQUATE WardrobePassage.pt4.5 Marathon_to_PigsTrotters_resurvey2009_1.10 *EQUATE WardrobePassage.pt1.13 FlashbulbHall_resurvey2009_1.4 *EQUATE FlashbulbHall_Aug09.2 FlashbulbHall_resurvey2009_2a.7 *EQUATE quad2008-2.6 TilersWayresurvey.0 *EQUATE HiddenAven.1 HiddenAven_Old.10 *EQUATE VampireGallery.0 BeyondFlashbulbNorth.7 *EQUATE VampireGallery.23 VampireGalleryExtension.0 *EQUATE BeyondFlashbulbNorth.10 DogSeries.Aug09_Resurvey.36 *EQUATE NewUzueka.6 BazsPitch.62 *EQUATE BazsPitch.30 RealSimaBaz.pt3.7 *BEGIN entrance1 36 37 19.92 72.47 0.00 36 548 2.70 112.95 -10.00 548 549 8.90 149.95 -2.00 549 550 5.30 213.95 0.00 550 551 6.80 224.95 0.00 551 33 21.02 267.27 0.00 33 34 13.92 291.03 0.00 551 552 9.30 307.95 0.00 552 553 5.40 265.95 0.00 553 554 6.50 318.95 0.00 554 555 13.20 248.95 0.00 555 556 28.10 275.95 0.00 556 557 5.80 279.95 0.00 557 558 14.70 205.95 0.00 558 559 2.20 184.95 0.00 559 560 8.10 77.95 40.00 559 561 11.50 265.95 25.00 550 562 5.10 111.95 0.00 562 563 7.70 66.95 -2.00 563 564 5.50 138.95 0.00 564 565 3.20 75.95 5.00 565 566 6.40 19.95 0.00 566 567 5.00 56.95 0.00 567 568 18.20 91.95 0.00 568 569 6.10 28.95 0.00 569 570 6.10 311.95 5.00 569 571 12.50 83.95 0.00 571 572 6.20 298.95 0.00 571 573 12.00 115.95 0.00 573 574 6.20 83.95 40.00 574 575 6.90 262.95 -18.00 551 576 3.40 141.95 0.00 576 577 7.20 117.95 0.00 577 578 7.50 247.95 0.00 578 579 5.50 143.95 0.00 579 580 3.60 233.95 0.00 30 580 4.63 10.00 0.00 1000 30 11.31 315.00 0.00 36 911 2.60 52.00 6.00 911 912 5.00 299.00 -28.00 912 913 7.00 271.00 6.00 913 914 2.80 237.00 15.00 914 915 14.00 276.00 1.00 915 916 3.80 275.00 -19.00 916 917 7.30 265.00 -5.00 917 918 6.00 271.00 -6.00 914 919 6.30 103.00 8.00 915 920 9.50 339.00 -1.00 *END entrance1 *BEGIN entrance2 0 1 3.72 104.45 0.00 1 2 3.60 50.95 0.00 2 3 9.48 83.45 9.00 3 4 10.21 83.45 -24.00 4 5 8.73 141.95 3.00 5 6 7.96 88.45 -21.00 6 7 2.95 50.95 -20.00 7 8 4.31 96.95 -18.00 8 9 2.50 112.45 0.00 9 10 6.59 43.95 15.00 10 11 2.80 164.95 -8.00 11 12 2.89 96.45 3.00 12 13 8.20 50.45 2.00 13 14 4.40 91.95 -5.00 14 15 12.06 81.45 2.00 15 16 5.84 202.95 3.00 16 17 3.06 248.45 3.00 17 18 3.02 193.45 11.00 18 19 12.86 78.95 13.00 *END entrance2 *BEGIN ent2_UpnOver *EQUATE BitOff.5 flyover.22 *BEGIN flyover *CALIBRATE declination 2.08 1 0 5.94 27.00 -2.00 2 1 1.37 23.00 -42.00 3 2 1.70 5.00 3.00 4 3 15.06 92.00 -1.50 5 3 8.94 31.00 0.00 6 5 9.45 64.50 -1.00 7 6 3.46 28.00 -12.00 8 7 4.22 63.00 5.00 9 8 5.50 52.00 2.00 10 9 1.50 354.00 0.00 11 10 4.50 76.00 1.00 *FLAGS DUPLICATE 12 0 5.54 63.50 0.50 13 12 5.55 89.50 4.00 *FLAGS NOT DUPLICATE 14 13 5.90 232.00 -43.00 6 21 3.84 0.00 90.00 21 22 5.89 219.00 40.00 22 23 2.96 211.00 -2.00 23 24 7.14 249.00 -3.00 24 25 4.40 225.00 -28.00 25 26 4.71 0.00 -90.00 *END flyover *BEGIN BitOff *DATE 2010.03.29 *CALIBRATE declination 1.92 0 1 3.19 218.00 -3.00 1 2 1.63 268.00 -16.00 2 3 6.00 216.00 1.00 3 4 5.95 261.00 -9.00 4 5 6.69 224.00 6.00 *END BitOff *END ent2_UpnOver *BEGIN WildlifeSeries 922 945 4.80 87.00 -7.00 945 946 3.80 78.00 -30.00 946 947 5.10 0.00 -90.00 947 948 3.00 178.00 1.00 948 949 6.90 237.50 -1.00 949 950 6.90 218.00 -1.00 950 951 3.80 243.00 2.00 951 952 5.00 246.50 -3.00 952 953 2.80 247.00 -7.00 953 954 5.10 257.00 2.00 951 955 1.90 185.00 -7.00 955 956 6.40 97.00 2.00 947 957 6.73 359.00 6.00 957 958 3.70 60.00 4.00 958 959 14.00 31.00 2.00 959 960 4.60 262.00 2.00 960 961 5.74 27.00 3.00 961 962 9.95 70.00 1.00 962 963 3.95 49.00 -2.00 963 964 3.00 61.00 -9.00 964 965 3.00 29.00 0.00 961 966 18.20 37.00 2.00 966 967 4.30 77.00 10.00 967 968 2.10 40.00 3.00 968 969 2.40 83.00 0.00 969 970 5.00 31.00 1.00 970 971 4.00 72.00 2.00 966 972 2.80 35.50 7.00 972 973 4.70 53.00 5.00 966 974 18.55 265.50 2.00 974 975 9.56 37.00 3.00 975 976 6.15 64.00 0.00 974 977 8.11 247.00 3.00 977 978 2.24 270.00 -4.00 978 979 5.55 260.00 1.00 978 980 3.36 199.00 6.00 980 981 8.70 253.00 2.00 981 982 4.78 204.00 -1.00 982 983 6.40 210.00 0.00 *END WildlifeSeries *BEGIN AroundEntranceSeries 19 921 5.80 98.00 0.00 921 922 6.50 36.00 -10.00 922 923 19.80 37.00 0.00 923 924 10.50 255.00 -1.00 924 925 6.10 233.50 -1.00 925 926 7.70 274.00 1.00 926 927 19.60 257.00 0.00 927 928 3.60 278.00 -4.00 928 929 3.80 0.00 90.00 929 930 8.10 225.00 -3.00 930 931 7.90 258.00 -1.00 931 932 4.70 356.00 -6.00 932 933 6.70 274.00 -12.00 933 934 11.00 270.00 -10.00 934 935 6.20 255.00 -14.00 935 936 6.30 71.50 1.00 936 937 4.70 28.50 -6.00 937 938 10.00 255.00 4.00 937 939 4.90 53.00 10.00 939 940 18.90 77.00 -1.00 940 941 8.00 187.00 0.00 940 942 21.40 72.00 -8.00 942 943 3.50 202.00 -22.00 943 944 4.80 87.00 -4.00 931 1122 1.00 0.00 -90.00 1122 1123 4.40 234.30 1.00 1123 1124 8.50 266.30 0.00 1124 1125 5.60 251.30 1.00 1125 1126 0.50 0.00 -90.00 1126 1127 4.70 249.30 -3.00 1127 1128 13.80 206.30 -2.00 1128 1129 13.50 259.30 -2.00 1129 1130 7.25 247.30 0.00 1130 1131 3.50 212.30 -6.00 1131 1132 5.70 242.30 -16.00 1132 1133 6.20 80.30 -29.00 1133 1134 6.80 47.30 -16.00 *END AroundEntranceSeries *BEGIN ZoologicalGardens 865 866 12.30 39.55 7.00 866 867 10.40 171.55 -2.00 867 868 5.40 199.55 2.00 868 869 10.60 138.55 5.00 869 870 8.30 161.55 3.00 870 871 12.00 151.55 1.00 871 872 13.40 191.55 4.00 872 873 7.30 141.55 5.00 873 874 10.10 173.55 1.00 874 875 12.70 138.55 3.00 875 876 5.30 203.55 5.00 876 877 4.80 243.55 1.00 877 878 10.80 215.55 2.00 878 879 5.00 338.55 3.00 875 880 22.20 36.55 3.00 880 881 1.90 116.55 6.00 881 882 11.20 31.55 0.00 882 883 7.10 141.55 -2.00 883 884 7.90 231.55 8.00 884 885 3.40 231.55 -20.00 885 886 4.97 227.78 -9.00 884 887 6.90 176.55 -13.00 887 888 16.00 207.55 4.00 888 889 8.00 166.55 0.00 889 890 6.10 221.55 4.00 890 891 2.40 259.55 7.00 891 892 5.50 216.55 4.00 892 893 2.70 176.55 8.00 893 894 1.70 164.55 4.00 894 895 3.20 194.55 0.00 895 896 2.60 234.55 -1.00 896 897 4.00 155.55 3.00 897 898 3.10 196.55 6.00 898 899 2.50 164.55 3.00 899 900 1.90 237.55 10.00 900 901 2.20 204.55 -1.00 901 902 5.20 216.55 2.00 *END ZoologicalGardens *BEGIN Quadraphenia 996 997 26.10 268.15 1.00 997 998 24.20 268.15 0.00 998 999 21.70 271.15 2.00 999 1000 9.20 270.15 1.00 *END Quadraphenia *BEGIN Quad2008-2 *CALIBRATE declination 2.15 *CALIBRATE clino -1.5 0 1 8.85 275.00 -7.00 1 2 5.83 261.00 -28.00 0 3 46.13 73.00 -2.00 3 4 15.88 91.00 -4.00 4 5 31.46 212.00 -5.00 5 6 7.90 185.00 3.00 *END Quad2008-2 *BEGIN Quad2008-3 *CALIBRATE declination 2.15 *CALIBRATE clino -1.5 *FLAGS DUPLICATE 0 1 9.90 355.00 8.00 *FLAGS NOT DUPLICATE 1 2 12.13 265.00 5.00 0 3 11.66 281.00 13.00 3 4 9.29 249.00 -4.00 0 5 40.81 84.00 -3.00 5 6 42.55 85.00 -3.00 6 7 13.67 94.00 10.00 7 8 31.03 86.00 -3.00 8 9 8.01 200.00 8.00 9 10 7.51 214.00 1.00 10 11 6.35 211.00 1.00 10 12 10.67 95.00 -5.00 12 13 2.67 113.00 3.00 13 14 9.77 85.00 -3.00 14 15 4.93 87.00 -2.00 16 15 7.20 20.00 -6.00 15 17 5.53 50.00 -9.00 17 18 13.84 100.00 0.00 18 19 14.54 31.00 -2.00 *FLAGS DUPLICATE 8 20 20.54 91.00 -3.00 20 21 18.22 89.00 1.00 21 19 7.05 101.00 -1.00 19 22 24.34 98.00 -4.00 22 23 6.39 58.00 -22.00 *FLAGS NOT DUPLICATE 23 24 3.98 10.00 -13.00 24 25 6.00 42.00 0.00 25 26 7.12 66.00 2.00 26 27 15.70 41.00 5.00 27 28 8.75 57.00 -2.00 28 29 12.51 18.00 3.00 29 30 8.35 18.00 0.00 30 31 11.97 42.00 -2.00 31 32 35.80 50.00 1.00 32 33 23.51 39.00 -1.00 33 34 30.21 41.00 -1.00 34 35 7.35 53.00 -1.00 35 36 10.54 31.00 0.00 36 37 19.98 32.00 0.00 37 38 5.62 247.00 -1.00 38 39 2.89 1.00 5.00 39 40 4.23 39.00 -15.00 40 41 4.35 5.00 12.00 41 42 33.79 32.00 -2.00 42 43 5.07 256.00 -3.00 43 44 17.26 31.00 2.00 44 45 14.64 40.00 -3.00 45 46 4.52 37.00 24.00 *END Quad2008-3 *BEGIN QuadrapheniaResurvey2010 *CALIBRATE declination 1.92 *EQUATE MainJunctionsArea.10 QuadrapheniaToSqueezeResurvey.0 *EQUATE Quadcrawl.4 MainJunctionsArea.14 *BEGIN MainJunctionsArea *DATE 2010.04.07 1 0 4.99 53.00 -17.00 1 2 13.84 94.00 -19.00 2 3 11.74 79.00 -1.00 3 4 8.26 222.00 -8.00 4 5 20.25 250.00 1.00 5 6 5.57 242.00 3.00 6 7 38.67 267.00 0.00 7 8 7.01 256.00 0.00 8 9 4.90 0.00 -90.00 4 10 30.32 91.00 -2.00 10 11 12.26 306.00 9.00 11 12 14.65 262.00 -1.00 12 3 1.87 349.00 -9.00 10 14 18.99 214.00 -1.00 14 15 37.25 269.00 -2.00 15 16 29.79 256.00 -3.00 *FLAGS DUPLICATE 16 17 23.16 263.00 2.00 *FLAGS NOT DUPLICATE 16 18 21.02 111.00 1.00 18 19 31.12 82.00 -3.00 19 20 8.88 97.00 -5.00 20 21 13.32 178.00 -2.00 *END MainJunctionsArea *BEGIN QuadrapheniaToSqueezeResurvey *DATE 2010.04.07 0 1 27.93 80.00 1.00 1 2 4.90 291.00 -9.00 2 3 6.57 269.00 -4.00 1 4 9.65 86.00 -2.00 4 5 4.43 60.00 -5.00 5 6 7.69 94.00 1.00 4 7 5.83 3.00 0.00 7 8 13.07 62.00 -3.00 8 9 12.23 36.00 4.00 9 10 6.21 31.00 2.00 *END QuadrapheniaToSqueezeResurvey *BEGIN Quadcrawl *DATE 2010.04.08 1 0 16.80 86.00 0.00 1 2 12.00 268.00 -1.00 2 3 1.00 0.00 90.00 3 4 2.40 20.00 -10.00 *END Quadcrawl *BEGIN FlyoverCrawl *DATE 2010.04.01 *FLAGS DUPLICATE 1 0 5.75 43.00 -9.00 *FLAGS NOT DUPLICATE 2 1 4.90 85.00 5.00 3 2 6.05 84.00 6.00 4 3 5.37 30.00 0.00 *END FlyoverCrawl *END QuadrapheniaResurvey2010 *BEGIN Roofers_Passage_Area *CALIBRATE declination 2.15 *CALIBRATE clino -1.5 0 1 13.24 269.00 3.00 1 2 9.30 261.00 -5.00 *FLAGS DUPLICATE 3 2 6.15 10.00 -21.00 4 2 29.26 84.00 -5.00 *FLAGS NOT DUPLICATE 6 5 6.07 84.00 -45.00 7 6 9.84 86.00 -9.00 8 7 6.98 82.00 -3.00 9 8 6.01 83.00 10.00 10 9 5.80 88.00 11.00 10 11 10.60 198.00 -1.00 10 3 11.79 41.00 -4.00 11a 2 6.48 117.00 -68.00 12 11a 5.81 97.00 -9.00 13 12 9.58 75.00 -4.00 14 13 8.58 93.00 -1.00 15 14 13.27 78.00 -3.00 16 15 11.20 81.00 -2.00 17 16 5.67 63.00 -2.00 18 17 7.68 32.00 -2.00 19 18 9.61 80.00 -4.00 20 19 8.75 75.00 -3.00 21 20 3.57 88.00 3.00 22 21 13.59 81.00 -1.00 23 22 7.37 83.00 -8.00 24 23 11.25 84.00 -2.00 25 24 7.41 71.00 -4.00 26 25 2.31 52.00 -5.00 27 26 10.90 78.00 -3.00 28 27 7.97 80.00 -5.00 29 28 19.71 75.00 -3.00 30 29 11.68 73.00 -3.00 31 30 13.79 78.00 -5.00 32 31 4.75 71.00 -2.00 33 32 10.12 89.00 -5.00 34 33 8.67 89.00 -3.00 35 34 1.95 175.00 -9.00 36 35 6.15 91.00 -9.00 37 36 5.12 76.00 -14.00 38 37 2.21 108.00 23.00 39 38 4.88 86.00 -7.00 *END Roofers_Passage_Area *BEGIN TilersWayResurvey *DATE 2010.04.07 *CALIBRATE declination 1.92 *FLAGS DUPLICATE 0 1 5.79 344.00 -8.00 1 2 12.25 267.00 -1.00 2 3 17.64 268.00 0.00 3 4 13.17 264.00 -1.00 *END TilersWayResurvey *BEGIN TilersWay *CALIBRATE declination 8.0 1a 2a 22.90 250.00 0.00 2a 3a 10.20 21.00 0.00 2a 4a 7.70 280.00 0.00 4a 5a 7.30 159.00 0.00 5a 6a 25.00 280.00 0.00 1 2a 11.60 25.00 0.00 1 2 13.90 115.00 0.00 2 3 13.70 86.00 0.00 3 4 14.10 90.00 0.00 3 5 10.90 241.00 0.00 5 6 9.00 238.00 0.00 6 7 8.30 252.00 0.00 7 8 5.00 227.00 0.00 8 9 13.50 225.00 0.00 9 10 15.00 260.00 0.00 9 11 5.20 122.00 0.00 11 12 15.70 84.00 0.00 12 13 8.10 74.00 0.00 13 14 8.20 95.00 0.00 14 15 2.00 155.00 0.00 15 16 4.10 248.00 0.00 16 17 4.00 128.00 0.00 17 18 9.00 93.00 0.00 18 19 7.00 86.00 0.00 19 20 8.50 96.00 0.00 20 21 4.20 90.00 0.00 21 22 4.30 93.00 0.00 22 23 5.70 62.00 0.00 23 24 5.00 93.00 0.00 24 25 22.50 91.00 0.00 25 26 5.10 60.00 0.00 26 27 4.80 50.00 0.00 27 28 7.20 90.00 0.00 28 29 10.40 94.00 0.00 29 30 2.30 15.00 0.00 30 32 30.00 89.00 0.00 32 33 10.30 92.00 0.00 33 34 12.70 91.00 0.00 34 35 15.00 85.00 0.00 35 36 8.50 80.00 0.00 36 37 6.30 180.00 0.00 37 38 2.50 60.00 0.00 38 39 30.00 88.00 0.00 39 40 17.10 92.00 0.00 *END TilersWay *BEGIN 2691_GiantPanda *CALIBRATE declination 2.15 0 1 4.23 91.50 -78.00 1 2 1.57 122.00 -47.00 2 3 1.85 215.00 -20.00 3 4 0.70 320.00 -33.00 4 5 13.75 0.00 -90.00 5 6 5.90 0.00 -90.00 6 7 6.70 100.00 -57.00 7 8 7.28 16.00 -23.00 8 9 5.07 280.00 -78.00 9 10 2.47 83.00 -21.00 10 11 5.14 224.00 -38.00 11 12 2.50 200.00 -31.00 12 13 3.10 65.00 -71.00 13 14 3.12 230.00 -34.00 14 15 1.58 101.00 9.00 15 16 4.20 220.00 -17.00 16 17 1.99 235.00 -43.00 17 18 2.23 132.00 -40.00 18 19 2.30 9.00 -33.00 19 20 3.13 70.00 0.00 20 21 3.05 38.00 -18.00 21 22 2.25 152.00 -85.00 22 23 4.17 25.00 2.00 23 24 2.01 106.00 -47.00 24 25 2.93 32.00 -5.00 25 26 4.75 129.00 0.00 26 27 5.74 218.00 -1.00 27 28 2.30 117.00 -14.00 28 29 9.15 212.00 -4.00 29 30 2.48 217.00 -18.00 30 31 2.42 216.00 -45.00 *FLAGS DUPLICATE 31 32 5.07 95.00 1.00 32 33 5.80 65.00 0.00 *END 2691_GiantPanda *BEGIN WindyInlet 1069 1070 6.30 205.30 31.00 1070 1071 2.78 236.30 63.00 1071 1072 4.38 193.30 59.00 1072 1073 1.83 162.30 -2.00 1073 1074 1.68 117.30 -22.00 1074 1075 5.48 202.30 5.00 1075 1076 2.32 217.30 3.00 1076 1077 2.64 125.30 41.00 1077 1078 4.14 111.30 29.00 1078 1079 4.76 35.30 31.00 1079 1080 2.20 155.30 37.00 1080 1081 2.83 242.30 8.00 1081 1082 3.06 146.30 34.00 1082 1083 4.52 45.30 13.00 1070 1084 9.70 232.30 -46.00 1084 1085 5.55 217.30 24.00 1085 1086 3.95 43.30 10.00 1085 1087 3.05 216.30 19.00 1087 1088 2.75 126.30 29.00 1088 1089 5.05 38.30 8.00 1089 1090 3.01 90.30 4.00 1090 1091 4.15 86.30 21.00 1091 1092 4.65 39.30 30.00 1092 1093 4.90 0.00 90.00 *END WindyInlet *BEGIN Stomps *EQUATE Pt1.46 FarStompsSump.18 *BEGIN Pt1 *DATE 2010.08.11 *CALIBRATE declination 1.92 *EQUATE 28 32 *FLAGS SPLAY 1 1a 15.03 226.71 -13.08 1 1b 6.82 210.56 28.68 *FLAGS NOT SPLAY 1 2 9.08 189.31 -7.43 2 3 18.55 116.98 -0.10 3 4 3.94 109.34 5.39 4 5 14.13 96.76 -0.61 *FLAGS SPLAY 5 5a 4.92 187.59 1.55 *FLAGS NOT SPLAY 5 6 14.76 107.42 10.11 6 7 9.56 79.43 -2.48 7 8 12.97 128.55 -9.80 *FLAGS SPLAY 8 8a 4.13 271.01 46.40 8 8b 13.39 235.87 7.15 *FLAGS NOT SPLAY 8 9 5.84 89.36 1.83 9 10 11.81 117.66 18.69 *FLAGS SPLAY 10 10a 8.08 203.51 -24.97 *FLAGS NOT SPLAY 10 11 17.53 168.45 -7.51 11 12 16.73 148.86 -11.30 12 13 15.14 118.78 -5.89 *FLAGS SPLAY 13 13a 3.61 348.94 1.85 13 13b 6.12 304.49 0.88 13 13c 5.07 331.32 -2.18 *FLAGS NOT SPLAY 13 14 12.56 158.08 3.43 14 15 20.99 142.22 1.02 15 16 14.28 159.69 1.84 *FLAGS SPLAY 16 16a 3.99 50.15 5.15 *FLAGS NOT SPLAY 16 17 10.37 162.98 2.49 *FLAGS SPLAY 17 17a 8.03 85.24 5.30 *FLAGS NOT SPLAY 17 18 7.85 126.63 -11.48 *FLAGS SPLAY 18 18a 9.67 145.31 -10.88 18 18b 8.33 104.33 -11.12 18 18c 10.53 166.40 -10.22 *FLAGS NOT SPLAY 18 19 23.70 157.35 -4.37 *FLAGS SPLAY 19 19a 9.34 73.19 10.78 *FLAGS NOT SPLAY 19 20 13.16 101.93 26.51 *FLAGS SPLAY 20 20a 12.67 132.37 13.97 20 20b 3.99 319.43 -1.32 20 20c 19.28 269.18 2.35 20 20d 21.11 255.42 1.62 *FLAGS NOT SPLAY 20 21 14.46 145.32 8.27 *FLAGS SPLAY 21 21a 21.27 136.38 4.37 21 21b 18.97 113.75 8.27 21 21c 9.40 19.51 12.23 21 21d 3.68 250.66 -18.99 21 21e 12.39 206.43 -26.43 21 21f 16.36 186.99 -21.04 21 21g 17.98 167.17 -10.43 *FLAGS NOT SPLAY 21 22 11.00 140.41 13.34 *FLAGS SPLAY 22 22a 18.00 237.95 -37.04 22 22b 12.64 198.26 -39.64 22 22c 15.78 148.75 -25.36 22 22d 11.77 93.31 -5.76 22 22e 13.48 67.73 -1.47 *FLAGS NOT SPLAY 22 23 19.39 47.07 -3.39 *FLAGS SPLAY 23 23a 10.48 171.25 -0.49 23 23b 7.11 147.60 -3.96 *FLAGS NOT SPLAY 23 24 12.26 182.57 0.88 24 25 9.37 136.99 -31.89 25 26 16.12 66.28 8.82 26 27 20.53 208.25 -0.25 27 28 23.08 217.47 -11.66 *FLAGS SPLAY 28 28a 28.39 23.01 54.31 28 28b 13.96 7.70 59.65 28 28c 2.88 128.79 -0.08 28 28d 12.78 4.70 10.78 *FLAGS NOT SPLAY 28 29 9.44 337.56 -7.14 29 30 11.12 26.64 -1.45 *FLAGS SPLAY 30 30a 4.37 251.83 1.05 30 30b 8.10 252.77 -8.28 30 30c 13.30 274.36 -5.31 30 30d 3.36 125.62 9.29 30 30e 11.33 60.91 17.00 *FLAGS NOT SPLAY 30 31 7.38 59.13 18.23 31 25 7.67 9.40 10.35 32 33 26.57 219.45 -1.21 *FLAGS SPLAY 33 33a 6.56 290.15 -24.69 *FLAGS NOT SPLAY 33 34 30.49 226.77 -3.52 34 34a 4.04 262.63 -3.89 34 35 24.02 125.74 -0.07 35 36 4.42 104.65 6.02 *FLAGS SPLAY 36 36a 9.41 213.65 -13.20 *FLAGS NOT SPLAY 36 37 10.68 164.02 12.16 *FLAGS SPLAY 37 37a 8.28 10.38 -30.58 *FLAGS NOT SPLAY 37 38 12.55 153.02 -2.14 38 39 26.21 114.84 -7.27 *FLAGS SPLAY 39 39a 9.50 182.35 -22.41 *FLAGS NOT SPLAY 39 40 26.69 165.92 -1.74 40 41 29.35 157.64 4.26 *FLAGS SPLAY 41 41a 22.88 13.29 8.03 41 41b 12.85 343.23 -24.55 *FLAGS NOT SPLAY 41 42 25.13 123.62 -2.35 *FLAGS SPLAY 42 42a 7.43 221.79 -41.05 42 42b 13.88 308.37 1.63 *FLAGS NOT SPLAY 42 43 24.15 168.91 -8.72 43 44 13.32 168.35 10.48 *FLAGS SPLAY 44 44a 7.37 297.13 -41.78 44 44b 6.22 274.92 -17.88 *FLAGS NOT SPLAY 44 45 28.90 189.31 16.45 45 46 22.48 194.04 5.14 *FLAGS SPLAY 46 46a 14.53 63.91 5.51 *FLAGS NOT SPLAY *END Pt1 *BEGIN FarStompsSump *DATE 2010.08.11 *CALIBRATE declination 1.92 *FLAGS SPLAY 1 1a 3.38 195.09 -0.91 *FLAGS NOT SPLAY 1 2 4.29 37.46 1.62 2 3 8.00 16.28 1.33 3 4 12.11 36.72 -0.45 4 5 3.62 28.42 8.25 *FLAGS SPLAY 5 5a 0.20 34.15 -2.84 *FLAGS NOT SPLAY 5 6 9.15 34.23 -3.00 6 7 14.44 74.42 1.26 *FLAGS SPLAY 7 7a 5.03 319.95 -1.50 *FLAGS NOT SPLAY 7 8 19.06 43.23 0.52 8 9 17.83 40.55 -1.38 *FLAGS SPLAY 9 9a 4.23 296.54 2.86 *FLAGS NOT SPLAY 9 10 25.44 10.76 1.09 10 11 23.23 38.12 3.43 11 12 16.46 27.78 -0.09 12 13 18.33 316.28 0.70 *FLAGS SPLAY 13 13a 6.75 183.91 -0.23 13 13b 15.99 303.93 0.95 13 13c 10.60 19.61 0.84 13 13d 16.40 114.03 -2.05 13 13e 12.59 6.19 -0.43 *FLAGS NOT SPLAY 13 14 27.32 346.05 -1.43 14 15 25.59 16.44 2.07 15 16 15.21 330.02 2.13 16 17 23.03 30.16 28.64 *FLAGS SPLAY 17 17a 6.28 60.24 45.71 17 17b 16.79 252.67 -28.56 17 17c 16.01 280.45 -5.74 17 17d 16.08 299.27 1.22 17 17e 16.41 210.75 -13.67 *FLAGS NOT SPLAY 17 18 13.99 323.38 15.09 *FLAGS SPLAY 18 18a 6.60 267.65 -26.33 45 18 22.48 194.04 5.14 *FLAGS NOT SPLAY *END FarStompsSump *END Stomps *BEGIN HiddenAven *DATE 2010.08.11 *CALIBRATE declination 1.92 1 2 8.89 64.18 14.19 2 3 11.46 65.80 10.45 3 4 6.04 38.25 9.74 4 4a 5.15 38.20 -74.15 4 5 13.41 48.10 27.79 5 5a 3.40 246.77 -8.87 5 5b 7.33 25.48 19.10 5 5c 2.36 189.79 3.47 5 5d 2.08 64.52 16.76 5 6 12.97 40.50 35.17 5 7 2.52 110.73 13.25 7 8 10.57 170.95 -46.24 8 8a 18.62 68.34 70.02 8 8b 19.53 79.89 72.38 8 8c 6.78 107.91 28.11 8 8d 5.79 192.19 34.26 8 8e 6.54 136.86 31.90 8 8f 6.62 59.04 30.78 8 8g 6.04 25.22 31.64 8 8h 5.92 233.60 24.12 8 8i 6.15 314.48 7.87 8 8j 5.81 4.33 22.87 8 9 9.77 193.39 52.29 9 9a 18.19 41.13 48.52 9 9b 0.63 331.79 -6.98 *END HiddenAven *BEGIN HiddenAven_Old *CALIBRATE declination 6.0 1 2 4.80 65.00 2.00 2 3 4.70 47.00 32.00 3 4 3.70 147.00 32.00 *FLAGS DUPLICATE 4 5 7.60 131.00 15.00 4 6 5.30 344.00 35.00 6 7 4.00 274.00 9.00 7 8 12.20 43.00 24.00 7 9 15.60 229.00 -16.00 9 10 20.40 249.00 -12.00 *END HiddenAven_Old *BEGIN FarStompsInlet 189 903 7.00 241.55 0.00 903 904 3.00 241.55 1.00 904 905 4.90 228.55 1.00 905 906 4.90 256.55 1.00 906 907 3.70 173.55 1.00 907 908 8.00 223.55 1.00 908 909 3.80 218.55 1.00 909 910 4.00 256.55 1.00 *END FarStompsInlet *BEGIN Crossover *DATE 2012.04.08 *CALIBRATE declination 1.67 *EQUATE 1 21 *EQUATE 9 17 *EQUATE 7 22 *FLAGS SPLAY 1 1a 8.54 94.75 2.29 *FLAGS NOT SPLAY 1 2 9.46 229.23 17.20 2 3 7.89 245.18 8.76 3 4 6.86 196.29 -8.35 4 5 3.31 182.53 7.48 5 6 11.24 207.84 1.18 6 7 9.92 200.81 -0.41 *FLAGS SPLAY 7 7a 8.53 53.45 -3.18 7 7b 11.39 63.85 -3.04 7 7c 9.60 343.98 -0.76 7 7d 2.02 265.78 -2.33 7 7e 8.08 75.54 -2.01 *FLAGS NOT SPLAY 7 8 19.09 64.04 -9.29 8 9 6.33 105.55 -5.99 9 10 6.66 143.42 -0.84 10 11 5.25 61.93 13.55 11 12 5.63 52.57 10.17 *FLAGS SPLAY 12 12a 5.92 290.73 8.84 12 12b 5.52 152.51 0.57 *FLAGS NOT SPLAY 12 13 12.43 85.84 -15.55 13 14 8.86 292.85 -10.31 14 15 9.82 262.98 10.47 15 16 6.69 234.25 12.80 16 17 2.10 266.71 -10.84 16 18 6.16 337.99 8.83 18 19 5.15 318.16 -20.15 *FLAGS SPLAY 19 19a 3.18 305.08 5.14 19 19b 2.46 69.61 -2.25 *FLAGS NOT SPLAY 19 20 11.33 10.19 8.20 20 21 11.50 15.41 -5.38 22 23 14.22 210.85 -1.01 *FLAGS SPLAY 23 23a 5.48 45.09 5.14 *FLAGS NOT SPLAY 23 24 7.83 247.96 -0.10 24 25 7.76 216.00 -0.62 25 26 8.91 226.41 -2.06 26 27 8.22 247.58 -2.87 *FLAGS SPLAY 27 27a 3.61 124.68 85.26 *FLAGS NOT SPLAY 27 28 6.45 219.35 0.41 *FLAGS SPLAY 28 28a 2.30 269.73 81.50 28 28b 4.94 243.19 -3.40 *FLAGS NOT SPLAY 28 29 8.45 239.03 -7.94 29 30 7.09 245.24 3.90 30 31 5.50 217.93 4.15 31 32 6.34 257.41 -4.45 32 33 6.41 238.07 3.20 33 34 6.34 243.56 2.10 *FLAGS SPLAY 34 34a 2.35 39.45 12.08 34 34b 4.63 19.62 33.12 *FLAGS NOT SPLAY 34 35 8.92 222.29 9.19 *FLAGS SPLAY 35 35a 1.20 148.09 48.04 *FLAGS NOT SPLAY 35 36 6.02 243.64 -0.34 *FLAGS SPLAY 36 36a 2.22 260.10 70.49 36 36b 2.76 137.39 17.39 *FLAGS NOT SPLAY 36 37 3.62 288.42 29.81 *FLAGS SPLAY 37 37a 1.76 223.24 80.12 37 37b 2.01 159.52 65.36 37 37c 2.74 147.77 54.81 37 37d 2.18 307.25 42.85 37 37e 1.95 146.75 8.94 37 37f 3.18 144.38 -1.74 37 37g 5.46 141.37 -10.84 37 37h 4.66 138.10 -21.17 37 37i 7.04 191.90 -6.75 37 37j 6.60 231.07 8.56 37 37k 10.02 264.80 -10.54 37 37l 2.28 309.28 14.20 37 37m 2.72 314.58 -2.32 37 37n 7.91 316.49 -9.28 37 37o 5.64 314.49 -24.44 37 37p 5.42 115.37 -12.55 37 37q 2.55 82.74 -0.18 *FLAGS NOT SPLAY 37 38 7.10 308.98 -16.38 *FLAGS SPLAY 38 38a 8.01 215.94 4.87 38 38b 5.85 227.41 -7.37 38 38c 4.36 241.18 -9.60 *FLAGS NOT SPLAY 38 39 7.04 237.67 -10.34 39 40 4.49 277.38 1.73 40 41 5.24 254.57 14.08 *FLAGS SPLAY 41 41a 4.71 60.68 7.25 41 41b 3.24 96.08 5.78 41 41c 3.92 38.10 8.95 *FLAGS NOT SPLAY 41 42 5.74 226.02 -16.27 42 43 7.15 222.49 -0.74 43 44 8.77 239.95 7.37 *FLAGS SPLAY 44 44a 2.44 140.15 -8.87 *FLAGS NOT SPLAY 44 45 19.97 239.86 -2.80 45 46 8.18 252.31 -9.96 *FLAGS SPLAY 46 46a 3.99 38.14 15.55 46 46b 4.41 283.53 -16.66 *FLAGS NOT SPLAY *END Crossover *BEGIN 3rdRiver *DATE 2012.04.10 *CALIBRATE declination 1.67 46 47 8.34 243.65 -8.93 47 48 14.34 214.18 -1.22 48 49 8.14 192.29 -1.17 *FLAGS SPLAY 49 49a 4.16 246.97 80.21 *FLAGS NOT SPLAY 49 50 7.57 236.48 -4.85 50 51 9.88 213.52 2.92 *FLAGS SPLAY 51 51a 6.98 263.25 3.66 *FLAGS NOT SPLAY 51 52 9.69 241.51 -3.32 52 53 13.51 203.40 8.83 53 54 11.54 235.57 -8.91 54 55 12.97 227.18 -4.21 55 56 9.29 254.39 -3.17 56 57 1.88 260.95 12.77 57 58 6.50 159.76 17.53 *FLAGS SPLAY 58 58a 2.12 242.45 4.84 *FLAGS NOT SPLAY 58 59 15.60 195.27 -2.72 *FLAGS SPLAY 59 59a 2.59 307.10 -2.62 *FLAGS NOT SPLAY 59 60 10.10 237.41 -5.30 *FLAGS SPLAY 60 60a 5.30 34.24 84.93 60 60b 1.38 133.85 11.89 *FLAGS NOT SPLAY 60 61 8.63 236.34 -6.68 *FLAGS SPLAY 61 61a 10.03 108.33 21.04 *FLAGS NOT SPLAY 61 74 5.78 182.73 2.63 *FLAGS SPLAY 74 74a 0.85 69.46 -6.27 *FLAGS NOT SPLAY 74 75 2.79 123.76 -4.11 75 76 12.14 127.77 -0.64 76 77 7.92 179.08 7.96 *FLAGS SPLAY 77 77a 5.04 301.22 -25.13 *FLAGS NOT SPLAY 77 78 13.27 203.07 5.91 *FLAGS SPLAY 78 78a 5.12 294.82 -3.97 *FLAGS NOT SPLAY 78 79 15.54 198.86 -8.94 79 80 23.41 209.27 -2.02 *FLAGS SPLAY 80 80a 8.63 46.04 -0.26 80 80c 6.32 210.22 10.97 *FLAGS NOT SPLAY 80 80b 12.20 230.96 21.80 80 81 12.84 186.86 3.46 *FLAGS SPLAY 81 81a 3.58 283.08 52.08 81 81b 5.31 256.05 51.18 *FLAGS NOT SPLAY 81 82 16.26 203.94 -0.72 *FLAGS SPLAY 82 82a 6.20 39.96 7.25 *FLAGS NOT SPLAY 82 83 11.02 134.20 19.30 83 84 5.76 209.68 27.30 *FLAGS SPLAY 84 84a 0.96 301.31 0.44 84 84b 4.02 122.98 21.07 *FLAGS NOT SPLAY 84 85 3.67 101.78 20.65 85 86 4.30 83.46 60.24 82 87 21.06 89.22 -1.51 87 88 9.03 79.68 -8.10 88 89 4.64 150.10 18.02 *FLAGS SPLAY 89 89a 9.09 253.54 52.84 *FLAGS NOT SPLAY 89 90 9.04 73.62 -3.05 90 91 22.62 68.06 0.52 *FLAGS SPLAY 91 91a 11.42 215.11 -5.60 *FLAGS NOT SPLAY 91 92 3.97 85.86 -3.20 *FLAGS SPLAY 92 92a 4.67 12.10 1.93 *FLAGS NOT SPLAY 92 93 10.29 154.01 -2.61 *FLAGS SPLAY 93 93a 4.74 277.74 56.13 *FLAGS NOT SPLAY 93 94 8.08 186.01 7.65 *FLAGS SPLAY 94 94a 6.36 263.37 13.68 *FLAGS NOT SPLAY 94 95 5.24 43.64 -8.84 94 96 11.88 200.07 6.12 *FLAGS SPLAY 96 96a 6.92 98.48 0.77 96 96b 7.40 199.40 30.29 *FLAGS NOT SPLAY 96 97 19.46 161.70 -3.91 *FLAGS SPLAY 97 97a 5.94 10.99 57.75 97 97b 7.56 292.11 -24.69 97 97c 15.01 253.87 15.86 *FLAGS NOT SPLAY 97 98 22.53 223.00 -1.42 *FLAGS SPLAY 98 98a 7.26 315.26 -22.00 *FLAGS NOT SPLAY 98 99 14.32 244.13 1.16 *FLAGS SPLAY 99 99a 8.20 289.26 47.95 99 99b 7.50 144.60 -27.19 *FLAGS NOT SPLAY 99 100 11.57 241.48 6.51 *FLAGS SPLAY 100 100a 7.03 154.69 -3.73 *FLAGS NOT SPLAY 100 101 24.04 236.35 2.04 *FLAGS SPLAY 101 101a 2.99 322.89 47.81 101 101b 12.11 143.28 -22.11 *FLAGS NOT SPLAY 101 102 21.65 210.22 -6.90 *FLAGS SPLAY 102 102a 5.42 315.99 -42.97 *FLAGS NOT SPLAY 102 103 11.04 236.96 4.86 *FLAGS SPLAY 103 103a 8.03 271.17 -30.51 *FLAGS NOT SPLAY 103 104 7.72 211.54 4.65 *FLAGS SPLAY 104 104a 1.35 112.98 -20.10 104 104b 8.62 285.39 -43.69 *FLAGS NOT SPLAY *END 3rdRiver *BEGIN ObviousInlet *DATE 2012.04.08 1 2 2.44 50.05 -9.36 2 3 5.85 309.30 3.00 3 4 5.44 266.83 7.31 4 5 4.08 312.21 -3.48 5 6 8.51 243.91 -0.82 6 7 1.59 237.67 19.93 *FLAGS SPLAY 7 7a 0.68 148.89 7.20 *FLAGS NOT SPLAY 7 8 1.90 330.60 0.92 *FLAGS SPLAY 8 8a 2.48 69.00 4.92 *FLAGS NOT SPLAY 8 9 6.11 217.53 3.80 9 10 2.70 268.50 16.27 10 10a 9.93 41.45 8.43 10 11 4.61 237.72 -8.66 11 12 4.33 255.67 27.80 12 13 6.40 229.53 2.80 13 14 4.69 200.07 -16.32 14 15 8.61 229.67 0.92 15 16 7.58 236.29 -1.32 *FLAGS SPLAY 16 16a 0.44 150.77 78.57 *FLAGS NOT SPLAY 16 17 3.63 279.85 9.95 17 18 2.40 301.98 1.27 18 19 3.68 341.75 5.24 19 20 4.45 320.12 -12.01 20 21 3.70 279.17 6.19 21 22 5.05 252.27 1.85 22 23 5.72 288.25 10.76 23 24 3.41 13.65 -18.95 *FLAGS SPLAY 24 24a 0.77 348.03 2.01 24 24b 1.14 203.63 5.80 *FLAGS NOT SPLAY *END ObviousInlet *BEGIN StrawInlet *DATE 2012.04.10 *CALIBRATE declination 1.67 61 62 5.45 259.01 14.70 62 63 11.78 227.47 0.60 63 64 24.01 219.97 0.21 *FLAGS SPLAY 64 64a 1.86 329.92 2.18 *FLAGS NOT SPLAY 64 65 4.42 257.69 23.06 65 66 14.47 223.04 0.57 66 67 12.81 245.47 -11.50 67 68 14.97 224.93 -0.62 68 69 18.59 231.13 2.57 69 70 15.15 210.63 3.77 70 71 21.90 240.92 -3.21 71 72 14.18 235.33 1.57 72 73 5.96 226.44 0.29 *FLAGS SPLAY 73 73a 1.92 141.34 -33.25 *FLAGS NOT SPLAY *END StrawInlet *BEGIN LisasBit *DATE 2012.04.10 *CALIBRATE declination 1.67 1 2 3.38 184.29 -2.95 2 3 5.25 223.17 -0.59 3 4 10.32 226.45 2.36 4 5 4.09 226.69 3.93 5 6 2.93 225.07 -4.37 *FLAGS SPLAY 6 6a 3.14 190.51 -2.92 6 6b 2.05 249.79 14.73 *FLAGS NOT SPLAY 1 7 8.90 149.90 20.14 7 8 6.15 235.21 7.55 *FLAGS SPLAY 8 8a 4.85 113.79 11.68 *FLAGS NOT SPLAY 8 9 1.68 234.62 -71.25 9 10 3.51 228.87 -11.39 10 11 6.28 227.02 -1.26 *FLAGS SPLAY 11 11a 0.20 312.13 2.17 *FLAGS NOT SPLAY 11 12 2.77 164.80 -14.43 12 13 3.46 221.60 -4.35 *FLAGS SPLAY 13 13a 1.47 73.62 -32.57 *FLAGS NOT SPLAY 13 14 2.14 98.34 -10.63 14 15 2.31 192.43 1.81 15 16 3.12 78.49 22.06 *FLAGS SPLAY 16 16a 1.37 296.77 -8.05 16 16b 1.83 160.61 -3.17 *FLAGS NOT SPLAY 16 17 2.49 138.72 -9.70 17 18 2.19 152.73 -2.14 18 19 1.12 199.32 57.19 19 20 3.25 72.41 21.12 20 21 2.54 80.08 68.37 21 21a 6.84 47.47 14.14 21 22 4.71 236.60 37.06 22 23 2.76 247.65 32.10 *FLAGS SPLAY 23 23a 2.14 22.58 -4.62 23 23b 0.32 226.02 20.55 *FLAGS NOT SPLAY 23 24 4.43 190.61 32.70 24 25 3.19 43.63 20.15 *FLAGS SPLAY 25 25a 4.29 278.43 35.70 25 25b 4.91 218.34 36.86 25 25c 2.81 82.84 18.66 25 25d 7.15 157.15 43.46 *FLAGS NOT SPLAY 22 26 3.66 63.90 -42.79 *FLAGS SPLAY 26 26a 1.63 224.30 2.25 *FLAGS NOT SPLAY 26 27 3.34 210.04 -12.88 27 28 4.88 239.93 2.13 *END LisasBit *BEGIN 3rdRiverInlet 197 659 36.13 14.42 0.00 659 660 43.41 321.54 0.00 660 661 45.22 251.96 0.00 661 662 21.93 226.84 0.00 662 663 43.86 245.77 0.00 663 664 22.02 219.47 0.00 664 665 64.00 241.03 0.00 665 666 9.60 234.00 0.00 666 667 7.40 302.00 0.00 667 668 20.10 237.00 0.00 668 669 29.60 230.00 0.00 669 670 29.60 231.50 0.00 670 671 29.60 231.50 0.00 671 672 18.50 232.50 0.00 672 673 29.60 229.00 0.00 673 674 16.10 266.00 0.00 674 675 23.70 231.00 0.00 675 676 26.90 221.00 0.00 676 677 23.80 233.00 0.00 677 678 27.30 222.00 0.00 678 679 13.20 228.00 0.00 679 680 10.90 248.00 0.00 680 681 29.60 220.00 0.00 681 682 20.30 208.50 0.00 682 683 13.20 214.00 0.00 683 684 14.70 238.00 17.00 684 685 3.90 230.00 -28.00 685 686 18.60 230.00 0.00 686 687 26.30 228.00 0.00 687 688 6.10 246.00 0.00 688 689 6.50 23.00 0.00 689 690 2.80 280.00 0.00 690 691 2.80 182.00 0.00 691 692 4.80 261.00 0.00 692 693 6.80 208.00 0.00 693 694 4.70 240.00 0.00 694 695 2.70 285.00 0.00 695 696 3.00 29.00 0.00 696 697 2.70 354.00 0.00 697 698 7.30 25.00 0.00 698 699 2.10 246.00 0.00 699 700 3.40 213.00 0.00 700 701 5.20 245.00 0.00 701 702 2.20 226.00 0.00 702 703 7.60 235.00 0.00 703 704 2.30 333.00 0.00 704 705 14.10 52.00 0.00 705 706 16.10 38.00 0.00 706 707 29.10 37.00 0.00 707 708 6.10 250.00 0.00 708 709 4.40 258.00 0.00 709 710 9.90 43.00 0.00 710 711 23.10 43.00 0.00 711 712 3.80 87.00 -25.00 712 713 4.80 26.00 0.00 713 714 8.80 130.00 0.00 714 715 3.40 27.00 0.00 715 716 7.40 79.00 0.00 716 717 3.40 81.00 0.00 717 718 2.80 9.00 0.00 718 719 2.90 67.00 0.00 719 720 3.30 15.00 0.00 720 721 14.20 35.00 0.00 721 722 6.20 49.00 0.00 722 723 12.10 68.00 0.00 723 724 1.40 358.00 0.00 724 725 3.80 66.00 0.00 725 726 7.80 55.00 0.00 726 727 2.40 352.00 0.00 727 728 3.60 52.00 0.00 728 729 3.60 32.00 0.00 729 730 7.20 38.00 0.00 730 731 3.20 44.50 0.00 731 732 1.20 95.00 0.00 732 733 2.80 61.00 6.00 733 734 9.10 45.00 6.00 734 735 6.50 77.00 8.00 735 736 6.40 58.50 7.00 736 737 9.10 56.50 12.00 737 738 13.30 61.00 10.00 738 739 5.00 15.00 47.00 739 740 4.90 68.00 36.00 740 741 10.40 42.00 40.00 741 742 11.80 24.00 27.00 *END 3rdRiverInlet *BEGIN ArmageddonBypass *CALIBRATE declination 6.89 1 2 9.70 221.00 22.00 2 3 10.00 242.00 -10.00 3 4 6.80 189.00 0.00 4 5 8.00 147.00 11.00 5 6 4.60 171.00 -27.00 6 7 2.70 263.00 -10.00 7 8 12.20 185.00 6.00 8 9 7.50 164.00 -6.00 9 10 8.20 223.00 7.00 10 11 18.40 104.50 -1.00 11 12 1.00 0.00 -90.00 12 13 10.90 71.00 -7.50 13 14 11.40 116.00 -5.00 14 15 4.50 105.00 -3.00 15 16 11.80 175.00 4.00 16 17 5.50 87.00 -1.00 17 18 5.40 150.00 -7.00 18 19 12.70 71.00 -1.00 19 20 22.40 109.00 -1.00 20 21 13.20 120.00 0.00 21 22 8.10 90.00 -2.00 22 23 10.00 97.00 0.00 23 24 12.20 242.00 4.00 24 25 8.30 177.00 -4.00 25 26 7.70 224.00 2.00 26 27 7.60 173.00 0.00 27 28 6.20 102.00 1.00 28 29 5.50 133.00 -1.00 29 30 5.80 72.00 -5.00 30 31 14.00 109.00 -5.00 31 32 9.70 114.00 -2.00 32 33 7.40 143.00 1.00 33 34 13.80 95.00 -5.00 34 35 15.00 65.00 -4.00 35 36 8.20 87.00 0.00 36 37 8.40 61.00 2.00 37 38 8.10 105.00 -4.00 38 39 1.20 15.00 0.00 39 40 21.60 73.00 0.00 40 41 11.30 81.00 0.00 *END ArmageddonBypass *BEGIN Trident 273 317 17.91 70.19 -40.00 317 318 30.70 86.70 4.00 318 319 30.70 107.70 0.00 319 320 30.70 109.70 0.00 320 321 30.70 102.70 8.00 321 322 18.40 115.70 10.00 322 323 30.70 98.70 17.00 323 324 19.20 107.70 9.00 324 325 23.30 87.70 13.00 325 326 11.40 159.70 26.00 326 327 8.20 133.70 30.00 327 328 30.70 108.70 32.00 328 329 5.40 105.70 -2.00 329 330 10.20 102.70 -24.00 330 331 7.10 124.70 -22.00 331 332 22.00 66.70 0.00 332 333 13.20 76.70 -7.00 333 334 18.60 131.70 0.00 334 335 14.10 224.70 2.00 335 336 9.30 197.70 2.00 336 337 13.20 107.70 3.00 337 338 10.00 218.70 3.00 338 339 6.20 101.70 4.00 339 340 6.80 134.70 0.00 340 341 8.20 250.70 20.00 341 342 7.20 247.70 -27.00 342 343 4.50 209.70 0.00 343 344 8.70 224.70 16.00 344 345 3.50 97.70 0.00 345 346 2.80 193.70 3.00 346 347 3.50 198.70 -42.00 347 348 5.60 224.70 5.00 348 349 8.40 255.70 0.00 349 350 12.50 254.70 0.00 350 351 5.90 275.70 -4.00 351 352 9.50 268.70 0.00 352 353 6.90 250.70 -2.00 353 354 12.00 251.70 -5.00 354 355 16.80 261.70 -6.00 355 356 15.30 249.70 2.00 356 357 15.20 243.70 -4.00 357 358 15.70 193.70 0.00 358 359 16.70 198.70 1.00 359 360 18.00 148.70 -2.00 360 361 10.90 111.70 2.00 361 362 3.60 158.70 -2.00 362 363 11.40 216.70 -2.00 363 364 6.40 148.70 -2.00 364 365 18.00 230.70 22.00 365 366 17.90 227.70 20.00 366 367 11.50 236.70 -30.00 367 368 5.70 220.70 -2.00 368 369 17.20 238.70 -2.00 369 370 17.20 232.70 0.00 370 371 3.70 0.00 90.00 371 372 14.90 227.70 -9.00 372 373 15.80 221.70 -3.00 373 374 15.40 229.70 0.00 374 375 4.60 253.70 0.00 375 376 14.70 238.70 0.00 376 377 14.30 248.70 0.00 377 378 16.00 235.70 0.00 378 379 9.60 279.70 0.00 379 380 15.40 266.70 0.00 380 381 20.60 237.70 2.00 381 382 7.20 131.70 -4.00 382 383 30.60 212.70 5.00 383 384 22.20 226.70 -3.00 384 385 13.90 211.70 0.00 385 386 13.50 242.70 2.00 386 387 17.00 230.70 0.00 387 388 20.70 213.70 0.00 388 389 7.50 203.70 0.00 389 390 7.00 0.00 -90.00 390 391 10.00 203.70 0.00 357 392 4.90 213.70 0.00 392 393 11.30 326.70 25.00 393 394 12.50 35.70 22.00 394 395 3.20 22.70 30.00 395 396 6.10 273.70 -2.00 396 397 12.00 255.70 8.00 397 398 4.80 242.70 11.00 398 399 3.20 265.70 -28.00 399 400 6.90 260.70 6.00 400 401 5.30 256.70 -8.00 401 402 2.00 315.70 0.00 402 403 10.20 275.70 6.00 403 404 7.30 217.70 -2.00 404 405 6.10 269.70 8.00 405 406 4.50 0.00 90.00 406 407 14.90 255.70 4.00 407 408 15.90 248.70 -4.00 408 409 30.70 257.70 -7.00 409 410 26.50 230.70 2.00 410 411 15.50 109.71 3.00 411 412 12.90 52.70 36.00 412 413 10.50 120.70 3.00 413 414 9.30 157.70 -8.00 414 415 11.50 155.70 -15.00 415 416 17.30 90.70 -1.00 416 417 24.30 146.70 2.00 417 418 12.70 244.70 30.00 418 419 3.80 242.70 0.00 419 420 14.60 132.70 0.00 420 421 23.00 66.70 1.00 421 422 13.10 130.70 -1.00 422 423 11.60 90.70 -4.00 423 424 27.00 129.70 0.00 424 425 7.10 137.70 -2.00 425 426 16.60 58.70 0.00 426 427 11.10 78.70 3.00 427 428 19.50 54.70 -4.00 428 429 19.70 165.70 -2.00 429 430 19.70 117.70 0.00 430 431 23.00 148.70 2.00 431 432 19.70 152.70 0.00 432 433 14.60 57.70 -3.00 433 434 27.00 155.70 -2.00 434 435 12.10 219.70 4.00 435 436 27.00 272.70 0.00 436 437 9.50 261.70 0.00 437 438 22.10 179.70 2.00 438 439 27.00 211.70 0.00 439 440 24.30 234.70 -1.00 440 441 9.30 239.70 0.00 441 442 7.00 130.70 0.00 442 443 18.10 104.70 3.00 443 444 25.90 130.70 2.00 444 445 10.40 239.70 -1.00 445 446 25.40 183.70 -2.00 446 447 9.00 198.70 5.00 447 448 9.60 194.70 -10.00 448 449 22.50 280.70 0.00 449 450 21.20 275.70 2.00 450 451 5.00 247.70 -38.00 451 452 10.60 267.70 -4.00 452 453 10.10 249.70 8.00 453 454 16.50 272.70 0.00 454 455 10.80 254.70 15.00 455 456 11.80 244.70 4.00 456 457 6.50 286.70 18.00 410 458 10.10 217.67 7.00 458 459 8.00 234.70 9.00 459 460 8.10 199.70 -2.00 460 461 9.10 219.70 0.00 461 462 6.90 235.70 -2.00 462 463 4.10 297.70 0.00 463 464 18.10 237.70 -6.00 464 465 3.30 229.70 0.00 465 466 16.70 231.70 0.00 466 467 12.50 205.70 0.00 467 468 8.90 209.70 0.00 468 469 30.00 224.70 1.00 469 470 19.40 209.70 0.00 470 471 3.40 196.70 -2.00 471 472 6.20 138.70 -6.00 472 473 3.00 188.70 15.00 473 474 6.40 127.70 -17.00 474 475 11.20 235.70 4.00 475 476 5.30 184.70 4.00 476 477 8.60 243.70 -11.00 477 478 8.70 249.70 14.00 478 479 10.10 262.70 30.00 360 480 5.19 43.64 1.00 480 481 11.60 73.70 0.00 481 482 25.10 83.70 0.00 482 483 27.00 73.70 0.00 483 484 4.00 353.70 0.00 484 485 2.00 33.70 0.00 485 486 1.60 323.70 0.00 486 487 16.90 63.70 0.00 487 488 6.80 48.70 0.00 488 489 4.90 3.70 0.00 489 490 9.30 63.70 0.00 490 491 8.30 28.70 0.00 491 492 5.70 58.70 0.00 492 493 4.40 3.70 0.00 493 494 9.90 88.70 0.00 494 495 5.80 73.70 0.00 495 496 8.70 88.70 0.00 496 497 27.20 63.70 0.00 497 498 6.20 63.70 0.00 498 499 7.90 53.70 0.00 499 500 12.90 68.70 0.00 500 501 9.20 23.70 0.00 501 502 8.70 283.70 0.00 502 503 7.60 293.70 0.00 *END Trident *BEGIN QuadrapheniaOxbows 1019 800 8.00 256.65 26.00 800 801 20.00 269.65 1.00 801 802 3.10 281.65 0.00 802 803 17.50 271.65 -1.00 803 804 9.00 235.65 -15.00 803 805 14.00 273.65 -4.00 805 806 14.90 257.65 2.00 802 807 7.30 251.35 -20.00 807 808 5.10 235.35 0.00 808 809 5.30 144.35 0.00 809 810 13.60 287.85 0.00 809 811 9.60 260.35 37.00 811 812 14.00 266.35 2.00 812 813 16.00 29.85 -12.00 *END QuadrapheniaOxbows *BEGIN FlashbulbHallOldBits 745 746 5.20 73.65 0.00 746 747 10.00 40.65 0.00 746 748 5.50 76.65 11.00 748 749 8.30 220.65 -10.00 *END FlashbulbHallOldBits *BEGIN PullupMazeInlet 97 98 20.24 212.90 0.00 98 99 102.04 245.69 0.00 99 100 32.38 261.12 0.00 *END PullupMazeInlet *BEGIN Pigstrotters_sidepassage *CALIBRATE declination 2.08 0 1 12.51 59.00 -4.00 1 2 6.25 36.00 17.00 2 3 8.07 69.00 -13.00 *END Pigstrotters_sidepassage *BEGIN Marathon_to_PigsTrotters_resurvey2009_1 *CALIBRATE declination 2.08 1 0 3.64 311.00 20.00 1 2 7.34 214.00 -4.00 2 3 12.36 186.00 1.00 3 4 13.04 145.00 -3.00 4 5 5.63 77.00 1.00 6 5 9.16 227.00 -29.00 5 7 5.04 111.00 10.00 7 8 6.15 227.00 -8.00 8 8a 19.00 0.00 90.00 8 9 9.90 227.00 3.00 9 10 7.97 200.00 18.00 *END Marathon_to_PigsTrotters_resurvey2009_1 *BEGIN Marathon_to_PigsTrotters_resurvey2009_2 *CALIBRATE declination 2.08 2 1 10.22 256.00 -17.00 3 2 14.72 242.00 0.00 4 3 12.12 226.00 1.00 5 4 9.73 283.00 -1.00 6 5 28.37 34.00 0.00 7 6 18.80 38.00 0.00 8 7 7.27 244.00 9.00 9 8 5.35 8.00 -9.00 10 7 2.84 49.00 10.00 11 10 0.82 99.00 -27.00 12 11 11.97 43.00 2.00 *END Marathon_to_PigsTrotters_resurvey2009_2 *BEGIN PigsTrotters_downstream_resurvey2011 *DATE 2011.04.22 *CALIBRATE declination 1.78 0 1 18.28 120.00 1.00 2 0 12.70 284.00 -3.00 2 3 3.50 90.00 -0.50 3 4 8.80 58.00 2.00 4 5 5.30 40.00 30.00 1 6 7.60 37.00 22.00 1 7 3.18 100.00 20.00 7 8 5.80 70.00 22.00 8 9 4.00 58.00 32.00 0 10 22.80 164.00 -10.00 10 11 7.97 70.00 18.00 10 12 18.40 176.00 -3.00 *EQUATE 12 12a 12 13 11.70 166.00 -3.00 *EQUATE 13 13a 13 14 15.00 80.00 18.00 13 15 13.85 227.00 -1.00 15 16 14.80 240.00 5.00 15 17 8.10 175.00 -3.00 17 18 30.00 140.00 -1.00 18 19 6.40 240.00 0.00 18 20 27.70 48.00 -2.00 17 21 13.42 222.00 -1.00 21 22 4.33 236.00 -3.00 *END PigsTrotters_downstream_resurvey2011 *BEGIN ChambersBackFromArmageddon *CALIBRATE declination 6.0 1 2 26.00 64.00 6.00 2 3 11.50 36.00 -2.00 3 4 1.70 344.00 0.00 4 5 9.00 325.00 60.00 5 6 10.90 305.00 0.00 6 7 10.00 294.00 0.00 *END ChambersBackFromArmageddon *BEGIN SandyJunctionInlet *CALIBRATE declination 6.0 *EQUATE 2 14 1 2 18.00 210.00 -4.00 2 3 13.00 240.00 8.00 3 4 6.00 190.00 0.00 4 5 8.80 134.00 0.00 5 6 12.00 181.00 0.00 6 7 4.00 274.00 -5.00 7 8 17.00 204.00 0.00 8 9 16.00 267.00 0.00 9 10 9.50 235.00 0.00 10 11 7.00 346.00 -17.00 11 12 20.00 63.00 -3.00 12 13 24.00 31.00 -3.00 13 14 21.00 31.00 6.00 *END SandyJunctionInlet *BEGIN ArmageddonToRockyHorror 219a 220 15.50 63.00 0.00 220 221 49.36 83.01 0.00 221 222 16.64 122.73 0.00 222 223 117.00 71.56 0.00 223 225 64.56 106.19 0.00 225 226 159.66 139.82 0.00 226 227 41.00 192.68 0.00 227 228 104.30 122.47 0.00 228 229 100.18 86.56 0.00 229 230 39.81 101.59 0.00 230 231 50.09 93.43 0.00 231 232 19.00 90.00 0.00 232 233 127.94 201.55 0.00 233 234 202.89 211.49 0.00 234 235 15.29 168.69 0.00 235 236 63.82 215.43 0.00 236 237 19.02 273.01 0.00 237 238 25.61 218.66 0.00 238 265 27.65 77.47 0.00 265 266 36.25 114.44 0.00 230 267 21.02 205.34 0.00 267 268 5.00 90.00 0.00 268 269 98.47 214.65 0.00 269 270 56.56 225.00 0.00 270 271 40.00 216.87 0.00 271 272 81.39 222.51 0.00 266 273 35.00 94.28 0.00 *END ArmageddonToRockyHorror *BEGIN NearSeries *CALIBRATE declination 6.0 1 2 11.20 77.00 3.00 2 3 5.00 98.00 -38.00 3 4 5.00 82.00 -14.00 4 5 4.60 112.00 -16.00 5 6 6.20 53.00 14.00 6 7 4.80 189.00 1.00 7 8 7.90 224.00 -15.00 6 9 6.70 100.00 0.00 9 10 6.70 71.00 0.00 10 11 4.00 91.00 0.00 10 12 1.70 127.00 0.00 12 13 12.90 97.00 0.00 13 14 7.50 229.00 0.00 14 15 1.70 239.00 0.00 15 16 2.00 165.00 0.00 16 17 10.50 262.00 0.00 16 18 8.90 85.00 11.00 13 19 12.60 79.00 16.00 *END NearSeries *BEGIN MarathonPassagePt1 79 80 41.23 255.96 0.00 80 81 7.07 225.00 0.00 81 82 11.18 243.43 0.00 82 83 12.72 225.00 0.00 *END MarathonPassagePt1 *BEGIN MarathonPassage *CALIBRATE declination 6.0 31 32 4.00 27.00 0.00 31 33 7.30 274.00 0.00 31 34 7.40 100.00 0.00 34 35 2.70 218.00 0.00 35 36 7.40 96.00 0.00 39 40 3.00 74.00 20.00 40 41 4.60 57.00 0.00 41 42 10.80 58.00 0.00 42 36 4.80 38.00 0.00 36 43 2.70 50.00 0.00 43 44 5.80 102.00 0.00 44 45 5.60 100.00 39.00 45 46 4.00 91.00 -15.00 46 47 7.30 61.00 -12.00 47 48 5.50 86.00 -13.00 48 49 5.90 78.00 10.00 49 50 2.40 139.00 6.00 50 51 4.80 178.00 -34.00 51 52 10.00 68.00 0.00 51 53 9.00 239.00 0.00 53 54 2.70 257.00 -42.00 54 55 4.90 131.00 -40.00 55 56 16.90 229.00 -5.00 56 57 17.70 214.00 0.00 *END MarathonPassage *BEGIN RH_StartOfGorillaWalk 1094 1095 6.61 185.30 51.00 1095 1096 4.20 0.00 90.00 1096 1097 5.00 40.30 36.00 1097 1098 5.80 43.30 60.00 1098 1099 4.60 0.00 90.00 1099 1100 9.58 227.30 5.00 1100 1101 9.97 243.30 6.00 1101 1102 8.86 233.30 -3.00 1102 1103 4.95 283.30 11.00 1103 1104 1.61 205.30 19.00 1104 1105 4.41 283.30 45.00 1105 1106 3.46 278.30 -15.00 1106 1107 9.03 233.30 0.00 1107 1108 5.71 32.30 -6.00 1108 1109 1.34 312.30 22.00 1109 1110 2.59 216.30 -11.00 1110 1111 8.28 245.30 10.00 1111 1112 3.96 215.30 16.00 1112 1113 3.74 265.30 -14.00 1113 1114 5.14 284.30 21.00 1114 1115 3.54 240.30 -1.00 1115 1116 3.26 260.30 -41.00 1116 1117 3.36 258.30 -5.00 1117 1118 7.28 251.30 14.00 1118 1119 6.25 265.30 -1.00 *END RH_StartOfGorillaWalk *BEGIN 2ndRiverInlet *CALIBRATE declination 4.0 1 2 4.30 82.00 0.00 2 3 3.00 80.00 0.00 3 4 4.50 113.00 0.00 4 5 5.40 110.00 35.00 5 6 12.90 118.00 -14.00 6 7 8.90 67.00 0.00 7 8 15.50 20.00 0.00 8 9 25.50 59.00 -3.00 9 10 20.00 99.00 0.00 10 11 6.60 68.00 -4.00 11 12 4.50 126.00 0.00 12 13 7.50 83.00 0.00 13 14 14.40 135.00 0.00 14 15 7.60 85.00 13.00 14 16 3.10 113.00 0.00 16 16b 1.00 0.00 -90.00 16b 17 13.70 100.00 0.00 17 18 12.20 81.00 0.00 18 19 9.50 83.00 0.00 19 20 19.00 112.00 0.00 *END 2ndRiverInlet *BEGIN Aug96Passage 202 835 3.00 31.40 12.00 835 836 11.30 47.40 5.00 836 837 9.50 46.40 -3.00 837 838 4.60 52.40 -1.00 838 839 6.30 62.40 3.00 839 840 6.20 53.40 14.00 840 841 9.00 41.40 -5.00 841 842 5.00 22.40 2.00 842 843 5.30 38.40 1.00 843 844 7.40 41.40 3.00 844 845 0.40 131.40 0.00 845 846 8.50 35.40 2.00 846 847 7.30 1.40 3.00 847 848 4.80 34.40 1.00 848 849 8.90 6.40 8.00 849 850 3.40 309.40 2.00 850 851 5.10 265.40 5.00 851 852 2.90 11.40 8.00 852 853 3.30 320.40 13.00 853 854 4.10 16.40 -8.00 854 855 7.00 42.40 2.00 855 856 2.00 327.40 4.00 856 857 3.60 35.40 2.00 857 858 7.50 13.40 2.00 858 859 3.90 54.40 4.00 859 860 3.90 31.40 1.00 860 861 5.00 305.40 68.00 *END Aug96Passage *BEGIN NewUzueka *CALIBRATE declination 6.89 *FLAGS DUPLICATE 1 2 12.60 225.00 0.00 2 3 4.80 219.00 0.00 *FLAGS NOT DUPLICATE 3 4 3.70 247.00 1.00 4 5 8.30 254.00 0.00 5 6 6.30 258.00 19.00 6 7 4.00 196.00 20.00 7 8 8.50 105.00 0.00 8 9 5.00 101.00 0.00 9 10 7.30 67.00 0.00 10 11 9.70 118.00 -10.00 11 12 5.00 125.00 14.00 12 13 4.20 145.00 -5.00 13 14 3.10 113.00 10.00 14 15 10.20 98.00 15.00 15 16 10.10 106.00 2.00 16 17 12.40 57.00 0.00 17 18 7.50 76.00 1.00 18 19 7.90 40.00 -2.00 19 20 4.90 171.00 0.00 20 21 8.30 71.00 -2.00 21 22 5.80 38.50 2.00 22 23 7.00 69.00 -2.00 23 24 9.50 35.00 -1.00 24 25 3.50 71.00 -4.00 25 26 6.00 43.00 -3.00 26 27 4.70 65.00 -5.00 27 28 1.90 132.00 0.00 28 29 8.90 80.00 -3.00 29 30 11.60 221.00 -4.00 30 31 4.50 155.00 0.00 31 32 6.10 57.00 0.00 32 33 3.30 39.00 15.00 33 34 5.20 38.00 -31.00 34 35 11.90 34.00 -1.00 35 36 6.50 74.00 0.00 36 37 13.30 57.00 0.00 37 38 18.50 73.00 0.00 38 39 11.40 51.00 0.00 39 40 10.90 72.00 0.00 40 41 3.70 50.00 30.00 41 42 21.00 54.00 1.50 42 43 20.00 53.00 0.00 43 44 16.50 40.00 0.00 44 45 7.40 54.00 -10.00 45 46 12.60 30.00 -5.00 46 47 11.80 56.00 -4.00 47 48 20.00 80.00 -1.00 48 49 20.00 51.00 0.00 49 50 12.00 108.00 -1.00 50 51 13.60 200.00 8.00 51 51a 20.00 108.00 0.00 50 52 20.00 48.00 0.00 52 53 20.00 47.00 0.00 53 54 20.00 60.00 0.00 54 55 13.00 81.00 0.00 55 56 9.00 81.00 0.00 56 57 14.80 77.00 0.00 57 58 20.00 30.00 0.00 58 59 20.00 40.00 0.00 59 60 20.00 88.00 -2.00 60 61 13.40 125.00 -5.00 61 62 20.00 66.00 0.00 62 63 20.00 72.00 0.00 63 64 20.00 66.00 0.00 64 65 10.00 72.00 0.00 65 66 20.00 55.00 0.00 66 67 20.00 42.00 0.00 67 68 20.00 11.00 -3.00 68 69 20.00 26.00 1.00 69 70 20.00 36.00 2.00 69 69a 15.00 36.00 2.00 69a 69b 16.03 273.00 0.00 70 71 20.00 44.00 -2.00 71 72 8.90 71.00 -1.00 72 73 14.30 108.00 -2.00 73 74 15.30 45.00 -5.00 74 75 13.40 47.00 -8.00 75 76 11.00 36.00 5.00 76 77 3.50 108.00 -3.00 77 78 14.30 36.00 3.00 78 79 19.00 22.00 -5.00 79 80 20.00 30.00 0.00 80 81 20.00 17.00 -2.00 81 82 20.00 31.00 0.00 82 83 17.00 87.00 0.00 83 84 20.00 75.00 25.00 84 85 10.00 110.00 -15.00 85 86 20.00 92.00 -5.00 86 87 20.00 123.00 -2.00 87 88 20.00 97.00 2.00 88 89 20.00 132.00 5.00 89 90 9.40 215.00 0.00 90 91 20.00 160.00 -2.00 91 92 20.00 108.00 0.00 92 93 18.00 112.00 0.00 93 94 13.00 63.00 -1.00 94 95 20.00 162.00 -2.00 95 96 8.30 76.00 0.00 96 97 14.50 165.00 15.00 97 98 20.00 198.00 -1.00 98 99 15.80 198.00 -4.00 99 100 20.00 159.00 -2.00 *FLAGS DUPLICATE 100 101 20.00 115.00 -3.00 101 102 9.00 151.00 -2.00 102 103 10.50 63.00 2.00 103 104 20.00 103.00 5.00 104 105 10.80 98.00 -5.00 105 106 20.00 121.00 0.00 *END NewUzueka *BEGIN GourInlet *CALIBRATE declination 2.15 1 2 5.27 11.00 -27.00 2 3 14.80 66.00 -4.00 3 4 10.19 58.00 0.00 4 5 3.34 73.00 6.00 5 6 18.77 24.00 1.00 6 7 5.00 100.00 -3.00 7 8 9.22 32.00 3.00 8 9 11.00 72.00 -4.00 9 10 5.84 30.00 -1.00 10 11 21.80 59.00 2.00 11 12 23.50 98.00 0.00 12 13 12.58 59.00 8.00 13 14 21.05 39.00 0.00 14 15 17.67 65.00 26.00 15 16 17.52 302.00 5.00 15 18 12.08 2.00 2.00 16 17 15.35 75.00 -30.00 18 19 8.15 63.00 -5.00 19 20 4.00 100.00 17.00 20 21 8.92 113.00 43.00 21 22 4.34 307.00 -14.00 22 23 6.46 80.00 -22.00 23 24 6.66 106.00 -12.00 24 25 7.19 0.00 -8.00 25 26 10.93 92.00 -2.00 26 27 3.84 124.00 -4.00 27 28 11.07 106.00 13.00 28 29 3.00 180.00 3.00 29 30 7.08 109.00 4.00 30 31 9.55 83.00 3.00 31 32 4.19 93.00 1.00 32 33 7.10 83.00 -3.00 33 34 1.73 178.00 -12.00 34 35 26.06 92.00 1.00 35 36 5.72 94.00 -3.00 36 37 3.30 200.00 -18.00 37 38 6.98 0.00 -90.00 38 39 6.01 170.00 20.00 39 40 4.13 73.00 36.00 40 41 5.96 110.00 13.00 41 42 5.21 104.00 2.00 42 43 8.79 150.00 2.00 43 44 5.83 171.00 16.00 44 45 6.96 83.00 2.00 45 46 6.05 95.00 4.00 46 47 4.93 150.00 10.00 47 48 4.75 81.00 49.00 48 49 5.52 110.00 -2.00 49 50 9.83 102.00 -7.00 50 51 4.97 120.00 -3.00 51 52 7.88 138.00 9.00 52 53 2.71 83.00 28.00 53 54 1.80 358.00 40.00 54 55 3.15 90.00 -37.00 55 56 4.26 103.00 34.00 56 57 4.30 78.00 31.00 57 58 3.19 75.00 -16.00 58 59 3.68 18.00 33.00 59 60 9.49 111.00 13.00 60 61 11.95 84.00 -32.00 61 62 10.40 51.00 -9.00 62 63 9.67 111.00 0.00 63 64 7.50 70.00 20.00 64 65 7.97 37.00 14.00 65 66 22.76 63.00 0.00 66 67 14.18 119.00 -5.00 67 68 9.27 73.00 5.00 68 69 10.49 125.00 -3.00 69 70 22.11 320.00 42.00 70 71 1.41 319.00 -18.00 *END GourInlet *BEGIN BeyondThunderdome *DATE 2008.08.01 *CALIBRATE declination 2.15 1 2 10.26 254.00 15.00 2 3 13.12 264.00 5.00 3 4 8.51 303.00 26.00 4 5 4.94 300.00 53.00 5 6 3.26 208.00 6.00 6 7 5.00 289.00 -7.00 7 8 13.50 307.00 -41.00 8 9 13.13 311.00 -22.00 9 10 13.27 217.00 11.00 10 11 20.62 319.00 -16.00 11 12 5.42 325.00 14.00 12 13 6.36 327.00 3.00 13 14 12.40 325.00 -2.00 14 15 13.54 267.00 -1.00 15 16 12.93 233.00 -24.00 16 17 3.68 28.00 -43.00 17 18 4.09 267.00 14.00 18 19 2.26 215.00 9.00 19 20 7.35 295.00 3.00 20 21 8.21 212.00 -12.00 21 22 3.50 252.00 -1.00 22 23 3.40 268.00 15.00 23 24 7.46 269.00 -17.00 23 25 4.40 258.00 55.00 24 26 9.50 259.00 6.00 26 27 4.02 250.00 2.00 27 28 1.63 225.00 49.00 27 30 10.58 272.00 0.00 28 29 3.48 25.00 86.00 30 31 6.68 279.00 -10.00 31 32 6.76 327.00 34.00 32 33 7.34 247.00 -14.00 33 34 2.26 287.00 -15.00 34 35 11.22 226.00 3.00 35 36 4.93 242.00 72.00 36 37 9.67 206.00 -2.00 37 38 19.32 236.00 -3.00 38 39 6.02 250.00 -1.00 39 40 25.02 275.00 -7.00 40 41 7.73 273.00 5.00 41 42 18.90 272.00 -4.00 42 43 7.19 265.00 3.00 42 44 4.27 22.00 -27.00 44 45 6.88 49.00 -5.00 45 46 6.85 75.00 0.00 46 47 2.61 332.00 -2.00 47 48 6.42 285.00 -4.00 48 49 8.71 268.00 1.00 49 50 5.76 273.00 0.00 50 51 8.08 256.00 19.00 51 52 7.80 267.00 -1.00 52 53 2.68 8.00 -50.00 53 54 8.15 49.00 -11.00 54 55 14.08 52.00 3.00 55 56 6.70 104.00 18.00 56 57 13.30 93.00 -5.00 57 58 18.38 97.00 5.00 58 59 4.92 120.00 6.00 59 60 1.98 98.00 -15.00 60 61 8.83 90.00 0.00 61 62 10.55 98.00 -10.00 62 63 6.31 54.00 -20.00 63 64 13.95 91.00 0.00 64 35 2.93 108.00 2.00 44 89 4.06 263.00 -27.00 89 90 3.64 272.00 -18.00 90 91 23.71 0.00 -90.00 91 92 13.00 257.00 -6.00 92 93 20.96 222.00 -4.00 3 102 3.41 147.00 -46.00 102 103 8.51 279.00 -15.00 103 104 8.11 250.00 -6.00 104 105 13.18 271.00 -5.00 105 106 7.25 308.00 -7.00 106 107 9.14 25.00 10.00 107 108 2.36 75.00 28.00 108 8 4.70 75.00 41.00 29 65 3.35 172.00 12.00 65 66 19.26 221.00 0.00 66 67 7.52 137.00 0.00 67 68 3.27 220.00 5.00 68 69 4.44 179.00 11.00 69 70 2.96 223.00 35.00 70 71 1.46 184.00 29.00 71 72 4.16 210.00 40.00 72 73 9.20 154.00 44.00 73 74 5.66 277.00 -30.00 74 75 4.29 235.00 26.00 75 76 6.23 96.00 14.00 76 77 8.84 117.00 -1.00 77 78 5.12 98.00 -45.00 78 79 3.84 334.00 -42.00 79 80 9.73 37.00 -40.00 80 81 11.70 329.00 -37.00 81 82 6.00 76.00 -46.00 82 83 2.26 36.00 3.00 83 84 4.17 311.00 28.00 84 85 6.34 281.00 1.00 85 86 2.73 337.00 -3.00 86 87 3.78 39.00 -4.00 87 88 1.60 353.00 -17.00 *END BeyondThunderdome *BEGIN TomorrowMorrowLand *CALIBRATE declination 2.15 1 2 10.46 125.00 11.00 2 3 3.81 108.00 51.00 3 4 8.48 42.00 8.00 4 5 8.90 60.00 7.00 5 6 3.20 41.00 -1.00 6 7 9.80 10.00 1.00 7 8 6.16 46.00 0.00 8 9 5.00 84.00 1.00 9 10 6.18 52.00 3.00 10 11 6.26 38.00 3.00 11 12 9.15 10.00 12.00 12 13 8.32 98.00 1.00 13 14 6.12 110.00 -14.00 14 15 8.74 38.00 -1.00 15 16 7.11 95.00 11.00 16 17 21.71 149.00 -2.00 17 18 4.74 94.00 -9.00 18 19 7.96 56.00 -4.00 19 20 9.38 64.00 0.00 20 21 12.86 48.00 2.00 21 22 13.63 107.00 9.00 22 23 8.31 58.00 -15.00 23 24 9.19 35.00 6.00 24 25 11.17 100.00 2.00 25 26 8.25 112.00 -3.00 26 27 4.63 30.00 -10.00 27 28 8.39 340.00 -1.00 28 29 14.99 43.00 8.00 29 30 15.61 33.00 -9.00 30 31 9.54 21.00 4.00 31 32 25.10 40.00 5.00 32 33 21.95 36.00 -6.00 33 34 6.96 55.00 6.00 34 35 10.11 19.00 6.00 35 36 17.25 29.00 -5.00 36 37 13.00 95.00 -1.00 37 38 6.94 33.00 32.00 38 39 7.74 50.00 -5.00 39 40 6.57 78.00 -35.00 40 41 12.41 91.00 4.00 41 42 12.43 34.00 0.00 42 43 11.16 45.00 1.00 43 44 6.83 75.00 -10.00 44 45 7.99 23.00 -5.00 *END TomorrowMorrowLand *BEGIN Uzu-Gour090410153 *CALIBRATE declination 2.08 0 1 4.01 55.12 2.88 1 2 6.67 109.20 -1.37 2 3 7.57 82.82 -1.46 3 4 15.71 17.50 1.20 4 4a 0.46 66.80 13.93 4 5 2.73 244.54 2.61 5 6 4.22 318.30 0.41 6 7 4.92 29.58 -2.12 7 8 9.81 58.72 0.94 8 9 8.60 128.70 -6.68 9 10 5.68 82.92 5.68 10 11 6.56 44.65 4.54 11 12 9.03 72.19 1.22 12 13 3.05 46.22 1.28 13 14 6.89 86.27 -0.51 14 15 6.61 61.48 0.09 15 16 5.13 18.53 -1.21 16 17 6.85 62.63 2.01 17 18 5.38 102.18 1.22 18 19 2.60 105.49 -1.05 19 20 6.94 178.17 -2.10 20 21 4.01 196.07 3.14 21 22 4.15 139.28 -0.15 22 23 4.71 205.76 -0.38 23 24 6.52 198.45 5.52 24 25 8.69 224.01 -4.26 25 26 5.69 246.24 2.28 26 27 2.46 153.10 -9.56 27 28 16.85 204.24 -2.08 28 29 10.28 139.20 5.65 29 30 5.84 105.83 5.86 30 31 10.74 79.31 -0.95 31 32 5.99 21.29 2.80 32 33 8.26 124.62 -0.97 33 34 11.46 86.24 0.14 34 35 10.25 104.61 -0.15 35 36 6.54 36.46 2.80 36 37 7.85 352.56 0.36 37 38 12.49 59.58 -0.29 38 39 6.47 144.30 -0.66 39 40 12.19 176.62 2.78 40 41 8.03 217.50 -3.13 41 42 5.06 197.69 0.74 42 43 5.14 164.36 -5.75 43 44 4.12 90.67 -11.48 44 45 12.39 173.99 6.86 45 46 7.38 104.91 0.82 46 47 4.77 61.95 -3.61 47 48 5.77 23.58 0.32 48 49 10.87 6.04 2.73 49 50 1.56 17.64 -9.69 50 51 11.64 51.10 1.00 51 52 6.84 26.57 -5.79 52 53 6.43 119.09 2.67 53 54 16.81 345.84 -2.23 54 55 11.67 100.37 4.88 55 56 1.66 96.25 -19.79 56 57 5.39 160.71 -4.01 57 58 4.72 73.23 10.43 58 59 5.12 139.83 -5.11 59 60 8.82 75.02 2.73 60 61 1.71 17.48 9.12 61 62 7.73 51.94 -4.40 62 63 2.97 348.14 3.86 63 64 10.87 23.32 -1.96 64 65 4.53 55.63 4.73 65 66 3.19 344.40 -3.15 66 67 2.48 284.81 17.86 67 68 5.47 5.26 0.23 68 69 3.21 73.52 0.24 69 70 6.88 27.74 1.39 70 71 5.88 104.61 4.12 71 72 7.57 99.29 -5.44 72 73 5.64 88.59 15.15 73 74 2.17 131.37 8.68 74 75 4.57 27.39 14.39 75 76 8.47 60.80 19.30 76 77 5.73 104.58 0.98 77 78 5.19 84.19 24.31 78 79 1.27 102.94 2.43 *END Uzu-Gour090410153 *BEGIN GourAven2010 *DATE 2010.08.09 *CALIBRATE declination 1.92 0 1 2.24 139.95 28.32 1 2 5.91 70.86 27.68 *FLAGS SPLAY 2 2a 1.11 175.45 -0.10 2 2b 1.17 8.87 6.87 *FLAGS NOT SPLAY 2 3 5.08 327.47 56.76 3 4 4.92 69.83 23.86 *FLAGS SPLAY 4 4a 0.95 165.48 0.82 4 4b 3.80 331.85 24.88 4 4c 5.74 289.73 15.19 4 4d 2.80 233.18 -16.44 4 4e 7.76 33.32 29.66 *FLAGS NOT SPLAY 4 5 2.00 337.58 33.09 5 6 11.33 256.84 -5.02 6 7 4.83 315.41 34.36 *FLAGS SPLAY 7 7a 4.71 21.66 32.61 7 7b 3.12 254.93 11.55 7 7c 4.05 103.53 3.40 7 7d 4.14 69.26 18.44 7 7e 7.31 221.39 2.77 7 7f 7.08 196.12 -0.28 *FLAGS NOT SPLAY 7 8 10.95 55.71 35.32 8 9 9.78 65.84 3.27 *FLAGS SPLAY 9 9a 3.98 233.45 -1.12 *FLAGS NOT SPLAY 9 10 4.02 65.03 22.07 10 11 2.66 124.77 6.23 *FLAGS SPLAY 11 11a 6.44 244.26 -33.76 *FLAGS NOT SPLAY 11 12 4.68 28.23 41.16 *FLAGS SPLAY 12 12a 12.70 20.35 69.18 12 12b 2.35 256.10 14.98 12 12c 2.05 326.35 6.05 12 12d 3.45 44.58 36.15 12 12e 7.31 45.38 40.15 12 12f 7.44 59.56 40.31 12 12g 5.50 20.21 43.16 12 12h 2.89 291.62 14.24 *FLAGS NOT SPLAY 12 13 4.74 257.83 20.70 13 14 3.65 238.14 -5.06 14 15 1.18 304.15 22.54 15 16 3.01 254.32 20.56 16 17 2.80 262.28 32.10 17 18 2.51 130.46 27.56 *FLAGS SPLAY 18 18a 1.91 43.25 -1.46 *FLAGS NOT SPLAY 18 19 1.60 82.83 -6.44 19 20 2.62 206.13 -3.57 20 21 2.74 273.17 46.82 *FLAGS SPLAY 21 21a 1.45 67.41 10.21 *FLAGS NOT SPLAY 21 22 5.18 26.78 41.32 *FLAGS SPLAY 22 22a 1.73 308.53 4.45 22 22b 5.75 61.72 37.02 22 22c 8.28 215.65 -4.87 22 22d 8.34 236.94 -5.86 22 22e 6.38 77.99 35.97 *FLAGS NOT SPLAY 22 23 6.09 69.43 35.08 23 24 2.80 330.39 -45.49 24 25 3.96 24.64 -39.81 25 26 2.56 117.72 -45.71 26 27 2.20 85.94 -7.90 27 28 1.36 72.33 62.56 28 29 1.39 121.96 -18.84 29 30 0.86 110.32 6.35 30 31 8.52 168.68 -79.71 22 22f 16.08 233.79 -2.48 22 22g 11.69 0.00 90.00 *END GourAven2010 *BEGIN LasPlayas *BEGIN Resurvey2011 *DATE 2011.08.05 *CALIBRATE declination 1.75 1 2 17.16 36.57 0.88 *FLAGS SPLAY 2 2a 2.59 324.74 86.92 2 2b 0.91 217.94 -86.69 2 2c 8.83 303.26 12.88 2 2d 1.83 125.25 2.05 2 2e 5.07 122.58 -31.28 *FLAGS NOT SPLAY 2 3 21.58 33.16 0.58 3 4 11.09 53.13 -0.89 4 5 9.35 346.19 0.05 5 6 4.77 322.49 -16.11 *FLAGS SPLAY 6 6a 4.35 308.01 86.98 6 6b 2.67 307.52 1.82 6 6c 7.79 290.15 -28.37 *FLAGS NOT SPLAY 6 7 21.34 39.33 1.49 7 8 13.13 20.26 8.69 8 9 10.42 348.71 -23.99 9 10 2.56 298.36 20.94 10 11 11.61 235.25 1.59 *FLAGS SPLAY 11 11a 0.65 352.01 75.61 11 11b 2.23 26.77 -79.76 11 11c 0.51 300.78 2.21 11 11d 0.55 119.70 16.12 11 11e 2.07 34.07 -0.63 *FLAGS NOT SPLAY 11 12 14.89 14.54 4.04 *FLAGS SPLAY 12 12a 2.07 133.80 73.58 12 12b 0.72 108.95 -73.27 12 12c 0.79 137.89 3.40 12 12d 1.58 223.02 1.74 *FLAGS NOT SPLAY 12 13 5.85 64.09 11.07 12 14 2.71 243.50 -3.39 14 15 5.16 244.23 -5.39 *FLAGS SPLAY 15 15a 1.83 99.73 66.98 15 15b 2.42 61.36 -77.93 15 15c 1.51 50.56 -3.92 15 15d 0.58 184.00 11.56 *FLAGS NOT SPLAY 15 16 3.35 18.15 -8.58 16 17 2.26 50.24 18.70 *FLAGS SPLAY 17 17a 6.18 22.63 75.76 17 17b 2.21 169.97 -86.97 17 17c 0.22 163.98 6.65 17 17d 1.10 259.09 -1.63 17 17e 1.34 333.80 1.60 *FLAGS NOT SPLAY 17 18 1.24 268.37 -38.79 18 19 3.33 259.72 41.22 19 20 7.22 252.89 11.09 20 21 3.45 272.26 58.43 21 22 3.77 263.94 19.53 22 23 5.97 67.69 32.54 23 24 2.83 1.25 31.89 24 25 3.31 290.91 -5.83 *FLAGS SPLAY 25 25a 8.65 64.34 87.45 25 25b 2.11 191.88 3.81 25 25c 1.66 266.24 8.28 25 25d 1.70 339.04 7.43 25 25e 3.49 44.64 7.77 25 25f 3.36 80.46 9.43 25 25g 2.53 106.89 9.78 *FLAGS NOT SPLAY 22 26 2.28 240.45 -4.79 26 27 4.18 272.76 -12.28 27 28 4.82 238.58 -1.79 *FLAGS SPLAY 28 28a 9.62 8.65 78.87 28 28b 0.88 16.19 -82.32 28 28c 0.31 139.61 17.54 28 28d 1.84 352.74 13.62 28 28e 4.37 323.55 22.47 28 28f 3.93 272.87 17.55 *FLAGS NOT SPLAY 22 29 4.09 172.11 -75.25 29 30 2.65 264.67 -12.93 30 31 2.68 280.10 17.92 *END Resurvey2011 *END LasPlayas *BEGIN SloppyInlet *EQUATE Pt1_2010.12 Pt2_2011.0 *BEGIN Pt1_2010 *DATE 2010.08.13 *CALIBRATE declination 1.92 *FLAGS DUPLICATE 1 2 15.91 51.99 -13.42 *FLAGS NOT DUPLICATE 2 3 4.87 78.08 -9.61 *FLAGS SPLAY 3 3a 2.91 288.84 7.49 *FLAGS NOT SPLAY 3 4 6.53 48.21 0.84 4 5 6.06 80.62 -0.33 5 6 9.00 46.55 0.21 *FLAGS SPLAY 6 6a 1.90 148.27 -2.41 6 6b 2.50 236.20 -1.32 *FLAGS NOT SPLAY 6 7 2.02 91.10 40.33 7 8 5.01 53.19 28.20 8 9 3.63 78.61 30.48 *FLAGS SPLAY 9 9a 2.98 284.69 -63.98 9 9b 2.92 312.26 -68.67 *FLAGS NOT SPLAY 9 10 2.83 38.67 49.77 10 11 4.56 46.79 15.28 *FLAGS SPLAY 11 11a 1.90 16.28 2.96 *FLAGS NOT SPLAY 11 12 3.35 227.63 50.31 12 12a 8.24 213.14 71.05 *FLAGS SPLAY 12 12b 4.28 349.87 -86.59 12 12c 1.77 53.79 7.68 12 12d 3.13 223.58 9.11 12 12e 1.20 345.12 20.17 12 12f 2.31 272.47 10.51 *FLAGS NOT SPLAY *END Pt1_2010 *BEGIN Pt2_2011 *DATE 2011.08.10 *CALIBRATE declination 1.75 *FLAGS SPLAY 0 0a 8.58 203.24 85.39 0 0b 1.79 169.15 -88.07 0 0c 1.29 125.73 0.46 0 0d 2.53 190.96 4.20 0 0e 1.61 306.94 3.61 0 0f 2.31 237.87 9.54 0 0g 2.83 253.54 9.73 0 0h 2.16 277.70 11.01 0 0i 1.31 43.80 6.31 *FLAGS NOT SPLAY 0 1 8.84 224.95 74.29 1 2 1.29 177.76 16.14 2 3 9.45 62.80 8.45 *FLAGS SPLAY 3 3a 4.88 114.75 84.07 3 3b 1.07 299.88 -83.79 3 3c 0.76 207.08 2.14 3 3d 1.45 243.11 1.63 3 3e 2.05 261.73 3.02 *FLAGS NOT SPLAY 3 4 3.09 174.44 77.16 4 5 3.04 80.70 -0.77 5 6 7.44 29.62 5.20 6 7 5.85 35.05 1.09 *FLAGS SPLAY 7 7a 8.62 351.28 81.03 7 7b 0.55 153.97 -74.30 7 7c 0.58 282.01 8.71 7 7d 3.17 349.34 3.84 7 7e 3.04 20.21 3.70 *FLAGS NOT SPLAY 7 8 9.45 7.85 51.31 8 9 2.60 65.73 -6.30 9 10 4.48 6.77 7.25 10 11 3.86 56.51 1.91 *FLAGS SPLAY 11 11a 4.24 25.54 78.35 11 11b 0.56 60.57 -78.89 11 11c 0.67 323.14 -8.75 11 11d 2.62 20.06 7.07 *FLAGS NOT SPLAY 11 12 7.66 28.32 10.32 12 13 1.09 289.21 11.36 13 14 3.87 230.95 3.41 14 15 4.60 249.81 2.49 15 16 4.46 260.87 6.91 16 17 7.41 236.86 0.94 17 18 1.79 282.80 9.24 18 18a 7.50 240.76 9.56 18a 19 7.25 240.76 9.56 *FLAGS SPLAY 19 19a 48.31 69.00 85.56 19 19b 1.91 72.56 -82.37 19 19c 1.25 157.25 -8.40 19 19d 7.11 72.91 15.16 19 19e 0.59 2.64 1.55 19 19f 4.57 16.43 28.14 19 19g 7.14 49.84 15.92 *FLAGS NOT SPLAY *END Pt2_2011 *END SloppyInlet *BEGIN HellOfADiversion *DATE 2012.04.10 *CALIBRATE declination 1.67 1 2 3.48 281.26 27.52 2 3 2.13 191.02 1.42 3 4 7.43 222.22 -1.21 4 5 2.23 224.28 -4.17 5 6 3.41 205.94 2.50 6 7 3.12 212.10 -3.17 7 8 3.01 223.50 -0.83 8 9 1.53 227.01 0.71 9 10 4.13 230.74 -1.52 10 11 3.15 233.34 3.49 11 12 7.29 213.25 -3.92 12 13 6.48 212.26 -46.98 13 14 2.54 235.48 -15.60 14 15 1.92 202.22 -38.76 15 16 3.08 81.63 -16.60 16 17 2.89 92.67 -62.02 17 18 4.26 53.58 -27.46 18 19 4.32 46.44 -3.26 19 20 1.58 52.71 -1.32 *FLAGS SPLAY 20 20a 0.94 312.95 2.07 *FLAGS NOT SPLAY 20 21 2.13 80.12 -0.95 21 22 1.40 48.91 -4.57 22 23 3.09 6.26 -4.89 23 24 3.19 42.15 4.79 24 25 3.04 29.71 -4.19 25 26 5.16 27.70 -2.06 26 27 0.89 133.24 21.14 27 28 3.49 84.55 -0.49 28 29 4.49 57.41 0.19 29 30 4.20 52.71 -1.95 30 31 3.19 70.91 1.33 31 32 1.95 41.99 -0.84 32 33 1.18 108.78 -27.67 33 34 2.03 41.06 -1.30 34 35 4.68 61.76 1.03 35 36 3.57 48.05 1.36 36 37 2.13 86.68 -1.42 37 38 2.37 49.91 -8.73 38 39 3.65 63.15 4.37 39 40 2.65 25.59 -2.53 40 41 7.85 65.58 1.85 41 42 3.98 215.85 -4.71 42 43 2.22 233.70 0.55 43 44 4.04 203.86 -0.25 44 45 5.66 233.77 0.58 45 46 2.15 186.79 -5.67 46 47 2.69 210.08 -0.93 47 48 1.42 230.57 -1.37 48 49 2.10 240.59 0.28 49 50 3.47 237.36 -2.97 50 51 2.90 256.53 4.59 51 52 3.17 240.12 -3.07 52 53 2.60 232.18 -0.80 53 54 4.54 221.12 -21.78 54 55 1.20 181.22 -8.12 55 56 1.94 154.16 -70.71 56 57 5.60 228.25 -6.94 57 58 6.32 217.05 -41.16 *FLAGS SPLAY 58 58a 4.16 41.63 18.73 *FLAGS NOT SPLAY *END HellOfADiversion *BEGIN DiversionChamberInlet *DATE 2012.04.12 *CALIBRATE declination 1.67 *FLAGS SPLAY 1 1a 8.76 287.34 20.69 1 1b 10.20 253.92 24.44 1 1c 2.13 144.12 3.82 1 1d 3.99 202.19 17.98 1 1e 10.80 215.21 17.53 *FLAGS DUPLICATE NOT SPLAY 1 2 9.65 45.09 -8.73 *FLAGS NOT DUPLICATE SPLAY 2 2a 1.77 145.49 -0.87 *FLAGS NOT SPLAY 2 3 7.77 187.34 -10.02 3 4 9.44 211.26 3.08 *FLAGS SPLAY 4 4a 2.51 100.17 -29.05 *FLAGS NOT SPLAY 4 5 11.95 163.92 -0.41 *FLAGS SPLAY 5 5a 6.87 4.56 3.19 5 5b 3.83 3.31 14.82 5 5c 1.39 14.78 -31.95 5 5d 11.13 303.87 28.34 *FLAGS NOT SPLAY 5 6 8.26 67.45 1.78 *FLAGS SPLAY 6 6a 2.80 347.23 11.18 *FLAGS NOT SPLAY 6 7 2.15 155.93 -7.58 7 8 8.18 69.41 -0.13 8 9 8.47 77.66 6.42 9 10 6.85 341.28 0.08 *FLAGS SPLAY 10 10a 10.05 250.19 -1.04 *FLAGS NOT SPLAY 10 11 14.59 73.83 1.72 *FLAGS SPLAY 11 11a 3.58 303.03 -20.21 11 11b 1.58 311.41 -36.36 *FLAGS NOT SPLAY 11 12 2.47 323.56 -6.85 *FLAGS SPLAY 12 12a 0.81 79.38 40.38 *FLAGS NOT SPLAY 12 13 8.42 66.83 -1.30 *FLAGS SPLAY 13 13a 1.50 323.93 -0.83 *FLAGS NOT SPLAY 13 14 7.41 47.92 -0.40 14 15 4.82 88.87 4.20 15 16 7.13 53.76 0.25 16 17 4.76 71.24 4.81 17 18 6.28 57.69 -3.59 *FLAGS SPLAY 18 18a 1.52 179.34 -14.08 *FLAGS NOT SPLAY 18 19 9.10 101.84 0.31 *FLAGS SPLAY 19 19a 2.07 347.15 -24.47 *FLAGS NOT SPLAY 19 20 3.28 61.64 8.72 *FLAGS SPLAY 20 20a 1.21 202.36 -9.48 *FLAGS NOT SPLAY 20 21 2.71 180.70 -22.74 21 22 2.10 172.14 25.72 22 23 4.06 64.68 38.17 23 24 4.34 81.84 -44.24 *FLAGS SPLAY 24 24a 16.57 248.33 45.37 24 24b 15.46 240.65 75.35 *FLAGS NOT SPLAY 24 24c 10.27 65.57 12.67 10 25 2.49 252.87 28.57 25 26 9.84 244.96 -5.45 *END DiversionChamberInlet *BEGIN BRoad *DATE 2012.04.12 *CALIBRATE declination 1.67 1 2 9.05 310.87 6.10 2 3 5.86 260.07 -2.54 *FLAGS SPLAY 3 3a 7.52 235.49 13.22 *FLAGS NOT SPLAY 3 4 5.76 35.46 -25.54 4 5 3.42 316.93 -58.18 *FLAGS SPLAY 5 5a 1.02 313.42 55.77 *FLAGS NOT SPLAY 5 6 3.76 34.48 13.31 6 7 11.00 44.94 -2.21 *FLAGS SPLAY 7 7a 1.50 146.85 44.06 *FLAGS NOT SPLAY 7 8 2.98 63.88 5.70 *FLAGS SPLAY 8 8a 2.00 315.52 -34.09 *FLAGS NOT SPLAY 8 9 4.84 58.30 1.92 *FLAGS SPLAY 9 9a 3.55 310.90 -20.18 *FLAGS NOT SPLAY 5 10 10.23 244.05 4.18 10 11 9.92 246.99 -0.09 *FLAGS SPLAY 11 11a 1.20 143.23 -12.63 *FLAGS NOT SPLAY 11 12 5.47 242.34 -10.18 *FLAGS SPLAY 12 12a 8.22 237.32 -0.27 *FLAGS NOT SPLAY 12 13 8.77 203.42 5.39 *FLAGS SPLAY 13 13a 1.07 129.50 -47.84 13 13b 0.92 315.03 4.02 13 13c 1.90 44.86 -9.67 *FLAGS NOT SPLAY 13 14 8.39 243.71 1.15 *FLAGS SPLAY 14 14a 2.83 144.92 -27.48 *FLAGS NOT SPLAY 14 15 5.06 188.22 -7.12 *FLAGS SPLAY 15 15a 2.99 308.29 -2.95 *FLAGS NOT SPLAY 15 16 6.06 209.47 -0.52 *FLAGS SPLAY 16 16a 1.13 40.00 -44.42 *FLAGS NOT SPLAY 16 17 5.24 76.22 0.40 17 18 3.41 107.79 7.72 *FLAGS SPLAY 18 18a 0.45 97.08 18.10 18 18b 1.87 258.49 -11.22 18 18c 2.21 137.79 -30.29 *FLAGS NOT SPLAY *END BRoad *BEGIN SandyZigZags *DATE 2012.04.12 *CALIBRATE declination 1.67 1 2 3.49 279.73 6.46 2 3 8.32 261.03 7.47 3 4 6.09 248.59 -2.41 *FLAGS SPLAY 4 4a 2.35 241.20 14.47 4 4b 1.39 63.24 1.96 *FLAGS NOT SPLAY 4 5 8.67 44.44 1.38 *FLAGS SPLAY 5 5a 0.29 143.21 43.64 *FLAGS NOT SPLAY 5 6 2.92 81.97 -3.57 6 7 6.39 355.71 1.64 *FLAGS SPLAY 7 7a 1.22 193.47 -1.63 *FLAGS NOT SPLAY 7 8 10.02 244.12 -0.20 8 9 13.79 231.18 1.72 *FLAGS SPLAY 9 9a 1.35 320.86 44.98 9 9b 0.82 329.84 -22.90 *FLAGS NOT SPLAY 9 10 6.62 262.98 -0.85 *FLAGS SPLAY 10 10a 1.64 151.95 2.06 *FLAGS NOT SPLAY 10 11 10.80 229.41 1.52 *FLAGS SPLAY 11 11a 4.27 215.79 4.67 11 11b 0.91 331.90 39.34 11 11c 0.90 330.46 -34.14 *FLAGS NOT SPLAY 11 12 4.97 264.54 3.28 12 13 6.32 240.83 -1.64 13 14 4.52 251.31 -3.94 14 15 3.29 194.15 -3.46 15 16 1.41 295.46 -5.72 *FLAGS SPLAY 16 16a 1.02 156.81 -34.97 16 16b 6.00 202.14 -3.87 16 16c 3.33 196.46 3.03 16 16d 3.61 204.99 2.11 16 16e 2.08 266.72 8.03 *FLAGS NOT SPLAY 16 17 3.57 222.19 2.69 17 18 2.85 259.92 25.62 18 19 1.78 205.31 20.90 *FLAGS SPLAY 19 19a 1.38 324.35 21.90 *FLAGS NOT SPLAY 19 20 1.71 292.07 37.62 *FLAGS SPLAY 20 20a 1.48 166.77 -3.53 20 20b 4.89 247.16 22.91 20 20c 5.51 234.49 30.66 20 20d 3.93 251.64 -20.03 *FLAGS NOT SPLAY *END SandyZigZags *BEGIN River2 *CALIBRATE declination 6.89 9 10 11.00 218.00 0.00 10 11 15.30 240.00 -1.00 11 12 12.00 216.00 6.00 12 13 20.00 250.00 -4.00 13 14 13.60 245.00 0.00 14 15 20.00 232.50 -1.00 15 16 10.00 233.00 -1.00 16 17 13.30 236.00 -2.00 17 18 13.00 243.00 0.00 18 19 20.00 223.00 0.00 19 20 20.00 234.00 0.00 20 21 20.00 231.00 6.00 21 22 20.00 230.00 -10.00 22 23 20.00 244.00 7.00 23 24 20.00 237.00 0.00 24 25 20.00 229.00 0.00 25 26 20.00 182.00 -3.00 26 27 11.90 171.00 17.00 27 28 7.00 136.00 2.00 28 29 16.00 110.00 -25.00 29 30 4.80 127.00 0.00 30 31 8.40 96.00 0.00 31 32 8.00 144.00 10.00 32 33 17.60 91.00 -5.00 33 34 10.40 111.00 0.00 34 35 15.00 159.00 0.00 35 36 14.80 89.00 3.00 36 37 6.50 138.00 9.00 37 38 5.00 190.00 -18.00 38 39 7.50 123.00 0.00 39 40 7.00 167.00 0.00 40 41 10.80 104.00 0.00 41 42 18.50 68.00 0.00 42 43 11.70 118.00 0.00 43 44 6.80 206.00 30.00 44 45 14.00 111.00 0.00 45 46 16.50 144.00 -14.00 46 47 6.90 199.00 0.00 47 48 7.50 107.00 0.00 48 49 4.50 171.00 0.00 49 50 7.70 90.00 0.00 50 51 5.00 71.00 19.00 51 52 5.40 74.00 -25.00 52 53 5.00 99.00 0.00 53 54 16.50 57.00 0.00 54 55 14.40 56.00 10.00 55 56 11.50 80.00 -10.00 56 57 18.60 61.00 0.00 57 58 13.00 57.00 0.00 58 59 16.50 115.00 0.00 59 60 20.00 80.00 0.00 60 61 20.00 68.00 0.00 61 62 3.50 82.00 0.00 *END River2 *BEGIN 4thRiverInlet *DATE 2010.08.13 *CALIBRATE declination 1.92 *FLAGS DUPLICATE 1 2 4.70 241.84 -5.47 2 3 9.48 256.65 1.67 *FLAGS SPLAY 3 3a 2.68 350.37 -6.54 *FLAGS NOT SPLAY 3 4 11.11 284.45 0.30 *FLAGS SPLAY 4 4a 1.26 185.58 1.16 4 4b 1.65 278.61 -3.07 *FLAGS NOT SPLAY 4 5 3.84 333.48 0.12 *FLAGS SPLAY 5 5a 3.37 100.90 2.17 5 5b 2.59 135.08 2.69 *FLAGS NOT SPLAY 5 6 20.38 250.71 1.74 6 7 11.86 256.97 2.88 7 8 4.09 258.04 4.52 8 9 5.93 233.74 -0.07 *FLAGS SPLAY 9 9a 2.98 336.04 -1.13 *FLAGS NOT SPLAY 9 10 5.52 337.88 6.23 *FLAGS SPLAY 10 10a 2.21 193.84 -1.41 *FLAGS NOT DUPLICATE NOT SPLAY 10 11 10.52 215.87 9.02 *FLAGS SPLAY 11 11a 2.47 199.90 -34.00 *FLAGS NOT SPLAY 10 12 2.58 302.07 -41.08 12 13 4.47 297.63 -2.33 13 14 6.37 280.24 4.14 *FLAGS SPLAY 14 14a 0.40 1.55 8.49 *FLAGS NOT SPLAY 14 15 3.00 261.92 1.12 15 16 4.55 240.61 6.07 16 17 4.27 282.95 -4.47 *FLAGS SPLAY 17 17a 2.55 257.44 15.77 *FLAGS NOT SPLAY 17 18 4.75 43.09 13.49 *FLAGS SPLAY 18 18a 1.52 242.18 -3.26 *FLAGS NOT SPLAY 18 19 8.59 265.04 1.96 19 20 4.85 266.29 1.21 20 21 5.02 271.64 -0.01 21 22 1.95 263.93 -3.79 22 23 4.98 262.50 -2.11 *FLAGS SPLAY 23 23a 1.01 140.63 -3.98 *FLAGS NOT SPLAY 23 24 2.54 325.70 -4.68 24 25 1.53 53.79 -5.34 25 26 1.74 342.48 -4.34 26 27 3.82 347.92 -0.28 *FLAGS SPLAY 27 27a 1.52 161.71 5.37 *FLAGS NOT SPLAY 27 28 4.65 293.98 9.62 28 29 6.17 74.15 2.86 29 30 3.16 91.71 -2.67 30 31 3.80 54.05 -3.67 31 32 1.61 298.37 7.35 32 33 1.00 56.81 -16.94 33 34 4.93 275.76 -2.15 34 35 4.48 273.96 0.01 35 36 3.39 255.20 49.90 *END 4thRiverInlet *BEGIN PhreaticMazeSeries *CALIBRATE declination 6.0 0 1 9.20 210.00 -1.00 1 2 12.30 214.00 0.00 2 3 15.00 215.00 4.00 3 4 3.40 272.00 3.00 4 5 4.80 248.00 4.00 5 6 5.40 281.00 4.00 6 7 4.10 243.00 2.00 7 8 9.70 259.00 0.00 8 9 16.40 254.50 2.00 9 10 4.20 253.00 -4.00 10 11 3.80 244.00 -34.00 12 2 2.90 300.00 -30.00 12 13 4.40 83.00 24.00 13 14 3.10 40.00 28.00 14 15 5.50 81.00 -15.00 15 16 3.20 37.00 0.00 16 17 3.30 109.00 11.00 17 18 3.70 68.00 -6.00 18 19 5.60 94.00 -2.00 19 20 7.20 40.00 6.00 20 21 6.90 255.00 -14.00 21 22 9.00 276.00 1.00 22 23 8.50 312.00 -5.00 *END PhreaticMazeSeries *BEGIN Astradome *CALIBRATE declination 6.89 1 2 20.00 216.00 15.00 2 3 14.30 222.00 5.00 3 4 20.00 247.00 -10.00 4 5 13.00 248.00 -3.00 5 6 15.00 236.00 -20.00 *FLAGS SPLAY 1 6a 12.80 336.00 0.00 1 6b 12.40 258.00 0.00 1 6c 12.40 94.00 0.00 1 6d 20.00 27.00 0.00 *FLAGS NOT SPLAY 1 0 102.50 0.00 90.00 *END Astradome *BEGIN ShrimpBoneInlet 238 239 72.27 284.42 0.00 239 240 7.07 278.13 0.00 240 241 10.44 16.70 0.00 241 242 7.21 236.31 0.00 242 243 10.00 36.87 0.00 243 244 11.04 275.19 0.00 244 245 21.40 322.59 0.00 245 246 66.40 251.56 0.00 246 247 11.18 333.43 0.00 247 248 21.02 267.27 0.00 248 249 44.01 248.68 0.00 249 250 13.03 237.52 0.00 250 251 55.22 264.80 0.00 251 252 5.83 300.96 0.00 252 253 7.61 246.80 0.00 253 254 68.96 299.53 0.00 254 255 54.70 251.89 0.00 255 256 33.61 247.25 0.00 256 257 50.69 247.98 0.00 257 258 7.28 344.05 0.00 258 259 8.00 270.00 0.00 259 260 17.20 305.53 0.00 260 261 6.32 341.56 0.00 261 262 15.29 281.31 0.00 262 263 9.48 288.43 0.00 263 264 23.32 300.96 0.00 264 605 4.70 300.50 1.00 605 606 6.30 292.50 0.00 606 607 4.60 261.50 0.00 607 608 8.60 261.50 0.00 608 609 4.90 285.50 0.00 609 610 1.40 258.50 0.00 610 611 4.40 302.50 4.00 611 612 4.00 321.50 0.00 612 613 5.00 263.50 0.00 613 614 2.70 302.50 2.00 614 615 9.00 255.50 1.00 615 616 6.80 259.50 1.00 616 617 5.20 225.50 2.00 617 618 20.50 237.50 2.00 618 619 6.70 235.50 0.00 619 620 28.80 248.50 3.00 620 621 16.00 238.50 3.00 621 622 30.00 242.50 3.00 622 623 17.60 243.50 3.00 623 624 15.70 257.50 3.00 624 625 16.50 249.50 2.00 625 626 25.70 245.50 2.00 626 627 24.50 245.50 2.00 627 628 8.50 261.50 0.00 628 629 14.40 258.50 3.00 629 630 9.00 262.50 0.00 630 631 4.00 289.50 0.00 631 632 11.50 263.50 2.00 632 633 8.50 252.50 2.00 633 634 6.50 265.50 3.00 634 635 7.20 244.50 0.00 635 636 11.50 261.50 2.00 636 637 7.10 253.50 2.00 637 638 10.00 250.50 0.00 638 639 5.80 260.50 3.00 639 640 5.80 228.50 0.00 640 641 2.40 215.50 0.00 641 642 16.70 240.50 1.00 642 643 6.00 253.50 1.00 643 644 10.50 248.50 1.00 644 645 9.10 228.50 1.00 645 646 10.80 243.50 1.00 646 647 6.10 251.50 1.00 647 648 3.00 260.50 1.00 648 649 6.40 255.50 1.00 649 650 8.70 253.50 1.00 650 651 12.30 250.50 1.00 651 652 4.50 140.50 1.00 652 653 10.80 110.50 0.00 653 654 3.60 218.50 0.00 654 655 13.90 117.50 1.00 655 656 4.60 183.50 1.00 656 657 7.70 129.50 0.00 657 658 0.10 0.00 90.00 *END ShrimpBoneInlet *BEGIN RockyHorror 273 274 6.25 33.07 -12.00 274 275 28.70 92.36 4.00 275 276 28.00 94.36 0.00 276 277 20.50 127.36 4.00 277 278 30.00 107.36 0.00 278 279 30.00 105.36 7.00 279 280 11.30 184.36 14.00 280 281 28.10 68.36 -4.00 281 282 9.80 340.36 -30.00 282 283 7.60 53.36 -36.00 283 284 13.50 77.36 -15.00 284 285 6.50 112.36 -4.00 285 286 2.90 152.36 -36.00 286 287 3.10 48.36 -61.00 287 288 2.20 113.36 -50.00 288 289 3.10 119.36 0.00 289 290 6.30 129.36 16.00 290 291 3.50 86.36 -30.00 291 292 9.70 103.36 0.00 292 293 11.70 122.36 28.00 293 294 4.50 247.36 24.00 294 295 3.90 108.36 28.00 295 296 10.00 93.36 -9.00 296 297 30.00 80.36 -6.00 297 298 30.00 94.36 6.00 298 299 23.50 110.36 8.00 299 300 26.50 119.36 0.00 300 301 28.00 107.36 23.00 301 302 14.70 130.36 -2.00 302 303 8.00 182.36 -43.00 303 304 12.50 76.36 -21.00 304 305 2.00 0.00 90.00 305 306 10.50 105.36 -1.00 306 307 6.50 93.36 -21.00 307 308 10.00 136.36 -2.00 308 309 24.30 102.36 0.00 309 310 5.30 97.36 -36.00 310 311 8.50 126.36 -3.00 311 312 12.00 119.36 -18.00 312 313 8.50 121.36 -12.00 313 314 7.00 317.36 -36.00 312 315 5.70 321.36 0.00 *EQUATE 315 316 *END RockyHorror *BEGIN WardrobePassage *CALIBRATE declination 2.08 *EQUATE pt2.0 pt1.9 *EQUATE pt3.0 pt2.3 *EQUATE pt4.0 pt2.1 *BEGIN pt1 0 1 4.12 108.63 -17.08 1 2 13.19 74.49 -1.07 2 3 9.26 66.20 -4.76 3 4 7.77 61.68 -2.64 4 5 12.68 70.11 -3.46 5 6 6.81 88.64 -2.71 6 7 4.24 59.41 0.18 7 8 7.38 54.73 -0.80 8 9 5.49 65.32 -15.33 9 10 4.97 22.29 0.85 10 11 6.90 33.07 13.39 11 12 10.14 10.04 -59.59 12 13 6.62 74.70 -23.76 *FLAGS SPLAY 8 8a 6.16 255.38 -8.78 11 11a 5.09 310.57 1.87 11 11b 4.66 233.93 -0.09 11 11c 4.62 25.31 3.22 12 12a 0.55 248.20 -4.78 *FLAGS NOT SPLAY *END pt1 *BEGIN pt2 0 1 8.32 65.02 -8.51 1 2 5.11 94.80 23.62 2 3 2.32 145.78 -20.46 *FLAGS SPLAY 3 3a 4.41 212.07 -6.30 3 3b 2.24 167.45 3.18 3 3c 5.69 71.80 8.82 3 3d 6.85 41.24 13.29 *FLAGS NOT SPLAY 3 4 10.78 221.00 -0.51 4 5 1.66 253.55 -7.16 5 6 4.36 208.32 3.10 6 6a 1.56 74.09 27.24 6 7 1.81 218.22 24.54 7 7a 4.28 238.51 7.36 7 8 5.14 214.38 3.65 8 9 6.51 217.17 10.90 9 10 8.16 238.00 -0.86 *FLAGS SPLAY 10 10a 2.64 102.07 3.52 10 10b 4.71 124.38 -1.80 10 10c 5.16 162.68 -0.87 10 10d 5.26 186.71 0.84 *FLAGS NOT SPLAY 10 10e 2.31 218.41 1.88 *FLAGS SPLAY 10 10f 2.33 251.13 5.23 10 10g 1.50 54.90 0.09 *FLAGS NOT SPLAY 11 10 4.89 266.23 -45.47 12 11 3.48 211.29 -34.69 *FLAGS SPLAY 12 12a 0.85 68.26 -39.19 *FLAGS NOT SPLAY 12 13 11.31 94.94 68.59 *END pt2 *BEGIN pt3 0 1 15.45 111.61 4.78 1 2 5.58 108.32 -5.21 2 3 6.84 91.68 0.39 3 4 4.75 79.49 1.13 4 5 4.95 132.14 -15.59 5 6 4.91 205.05 -1.26 6 7 13.28 217.96 3.48 *FLAGS SPLAY 7 7a 6.01 47.71 -12.33 7 7b 3.21 74.61 1.35 *FLAGS NOT SPLAY 7 7c 2.12 245.15 9.83 *FLAGS SPLAY 7 7d 2.18 99.03 2.11 *FLAGS NOT SPLAY 7 8 9.07 85.36 1.10 *FLAGS SPLAY 8 8a 1.82 12.95 -10.10 *FLAGS NOT SPLAY 8 9 4.84 35.03 5.05 9 9a 10.65 260.80 -3.86 9 10 4.55 82.73 9.57 10 11 3.64 89.31 -8.24 11 12 4.22 80.75 -20.57 12 13 5.39 96.65 10.72 13 14 1.44 28.32 19.48 15 14 9.27 216.19 -3.11 15 16 1.36 330.59 -13.03 17 16 5.61 219.09 -2.03 18 17 3.92 305.61 -1.03 19 18 1.56 295.00 -27.36 19 20 1.35 94.11 28.43 20 21 1.00 38.50 60.68 21 22 1.93 68.82 -34.70 22 23 0.68 107.30 -19.26 23 24 4.04 80.13 -10.25 25 24 5.63 276.50 -25.55 *END pt3 *BEGIN pt4 0 1 10.76 52.79 -19.25 *FLAGS SPLAY 1 1a 1.34 304.55 -5.29 *FLAGS NOT SPLAY 1 1b 12.76 291.66 2.50 *FLAGS SPLAY 1 1c 1.73 61.28 -38.08 1 1d 6.07 44.39 -37.13 1 1e 3.25 109.33 -4.58 *FLAGS NOT SPLAY 1 2 7.39 88.64 -23.93 2 3 3.91 28.54 -47.25 3 4 15.92 92.32 -19.02 *FLAGS SPLAY 4 4a 22.23 340.21 3.85 4 4b 8.05 231.38 1.65 4 4c 24.34 10.16 1.91 4 4d 7.00 115.63 -2.10 *FLAGS NOT SPLAY 4 5 18.77 355.62 1.95 *END pt4 *END WardrobePassage *BEGIN FlashbulbHall_resurvey2009_1 *DATE 2009.04.09 *CALIBRATE declination 2.08 1 2 9.01 249.00 5.00 2 3 14.10 220.00 7.00 3 4 7.20 265.00 19.00 2 5 11.57 276.00 9.00 5 6 9.91 271.00 8.00 6 7 9.86 241.00 -1.00 7 8 8.89 304.00 5.00 8 9 5.00 265.00 1.00 9 10 5.89 49.00 8.00 10 11 8.53 56.00 24.00 11 12 11.94 61.00 -28.00 12 13 9.93 108.00 -6.00 13 14 9.55 263.00 6.00 10 15 6.62 28.00 -6.00 15 16 7.58 38.00 -12.00 16 17 5.40 280.00 -17.00 17 18 5.80 244.00 5.00 18 19 4.61 250.00 5.00 19 20 5.92 204.00 8.00 20 21 12.04 218.00 8.00 21 22 5.11 268.00 7.00 22 23 2.77 261.00 1.00 19 24 8.26 250.00 12.00 24 25 11.28 31.00 0.00 26 27 5.31 80.00 -5.00 27 28 7.89 212.00 2.00 29 28 6.45 82.00 5.00 28 30 2.53 64.00 0.00 30 25 5.22 106.00 1.00 31 25 4.13 208.00 7.00 32 31 2.75 262.00 -10.00 33 34 4.20 77.00 -2.00 34 35 6.49 68.00 -14.00 35 36 1.54 45.00 -11.00 36 37 4.52 85.00 -18.00 37 38 3.26 77.00 -35.00 38 24 1.34 281.00 5.00 9 39 16.24 240.00 8.00 39 40 10.84 236.00 6.00 40 41 6.00 314.00 -7.00 41 42 7.79 245.00 6.00 42 43 13.88 259.00 3.00 43 44 11.76 249.00 13.00 44 45 16.69 272.00 0.00 45 46 22.44 257.00 3.00 44 47 7.90 242.00 7.00 47 48 3.98 227.00 15.00 42 49 5.40 105.00 1.00 49 50 13.21 230.00 15.00 50 51 10.92 193.00 47.00 51 52 10.36 198.00 -1.00 52 53 9.88 219.00 1.00 53 54 11.66 240.00 -3.00 54 55 4.92 217.00 0.00 55 56 13.00 0.00 -90.00 *END FlashbulbHall_resurvey2009_1 *BEGIN FlashbulbHall_resurvey2009_2 *CALIBRATE declination 2.08 0 1 9.91 80.00 0.00 2 1 5.14 340.00 -1.00 2 3 6.94 139.00 13.00 3 4 1.20 0.00 -90.00 5 2 6.70 234.00 -25.00 6 5 3.63 235.00 -11.00 6 7 5.00 45.00 6.00 7 8 12.09 56.00 2.00 *END FlashbulbHall_resurvey2009_2 *BEGIN FlashbulbHall_resurvey2009_2a *CALIBRATE declination 2.08 2 1 7.68 70.00 -2.00 3 2 18.40 78.00 -9.00 4 3 7.85 100.00 6.00 5 4 9.80 71.00 -5.00 6 5 8.82 111.00 0.00 7 6 3.94 90.00 31.00 *FLAGS SPLAY 7 7N 21.50 0.00 0.00 7 7E 15.40 90.00 0.00 7 7S 6.30 180.00 0.00 7 7W 16.60 270.00 0.00 7 7U 5.88 0.00 90.00 *FLAGS NOT SPLAY *END FlashbulbHall_resurvey2009_2a *BEGIN FlashbulbHall_Aug09 *CALIBRATE declination 2.08 0 0a 1.24 64.24 -5.19 0 1 15.46 259.63 14.33 1 2 4.45 14.92 36.25 *FLAGS SPLAY 2 2a 26.43 336.31 2.30 2 2b 7.29 208.04 9.95 2 2c 6.02 172.29 6.72 2 2d 21.76 11.27 0.84 2 2e 10.35 111.71 23.86 *FLAGS NOT SPLAY 2 3 21.93 343.71 -1.85 3 4 13.37 279.29 7.17 4 5 9.40 9.96 0.46 5 6 26.18 285.87 1.08 *FLAGS SPLAY 6 6a 4.03 181.19 10.24 6 6b 8.94 90.39 -7.08 6 6c 3.82 302.45 -4.44 *FLAGS NOT SPLAY 2 7 20.89 28.47 4.02 7 8 3.46 60.87 -6.51 *END FlashbulbHall_Aug09 *BEGIN FlashbulbHall_resurvey2010 *DATE 2010.08.12 *CALIBRATE declination 1.92 30 31 10.50 267.00 -11.00 31 32 4.96 9.00 -40.00 32 33 9.18 296.00 -22.00 33 34 3.28 9.00 11.00 *END FlashbulbHall_resurvey2010 *BEGIN GodKnows *EQUATE sideA.0 Apr2010.32 *EQUATE Apr2010.41 GoldiesWay.Pt1.0 *EQUATE Apr2010.21 GoldiesWay.Pt4.13 *EQUATE Feb2010.3 Apr2010.0 *EQUATE Feb2010.7 Apr2010.12 *BEGIN Feb2010 *DATE 2010.02.19 *CALIBRATE declination 1.92 *FLAGS DUPLICATE 0 1 11.52 255.39 -2.14 1 2 6.17 236.39 -40.65 *FLAGS SPLAY 2 2a 6.52 255.38 6.40 2 2b 16.05 260.62 2.14 *FLAGS NOT SPLAY 2 3 7.39 235.62 -70.29 3 4 1.39 273.05 -6.62 4 5 3.40 287.44 -44.34 5 6 4.60 293.16 -4.18 6 7 4.24 229.04 6.75 *END Feb2010 *BEGIN Apr2010 *DATE 2010.04.08 *CALIBRATE declination 1.92 0 1 4.63 216.00 14.00 1 2 2.55 79.00 30.00 2 3 4.25 57.00 57.00 0 4 4.35 283.00 -33.00 4 5 5.32 208.00 -2.00 4 6 3.56 286.00 15.00 4 7 4.44 320.00 -59.00 7 8 2.45 32.00 0.00 8 9 2.45 36.00 21.00 9 10 2.36 134.00 37.00 10 11 3.15 50.00 13.00 5 12 5.75 250.00 -12.00 12 13 8.85 66.00 -14.00 13 14 2.60 0.00 -90.00 12 15 2.45 15.00 12.00 15 16 6.30 39.00 20.00 16 17 8.25 253.00 4.00 17 18 7.50 283.00 -11.00 18 19 1.78 228.00 -33.00 19 20 3.50 279.00 -26.00 20 21 2.65 223.00 -30.00 21 22 4.80 248.00 -8.00 22 23 2.15 282.00 -2.00 16 24 5.00 28.00 9.00 16 25 10.65 58.00 20.00 12 26 6.10 129.00 22.00 12 27 4.00 216.00 -18.00 27 28 3.40 237.00 -30.00 28 29 5.00 91.00 4.00 28 30 9.50 215.00 -3.00 30 31 3.65 197.00 -10.00 31 32 2.10 225.00 -10.00 32 33 2.30 171.00 -28.00 33 34 3.70 248.00 0.00 33 35 9.05 70.00 -39.00 35 36 4.10 96.00 12.00 36 37 8.35 57.00 47.00 37 38 2.35 31.00 29.00 38 39 8.50 95.00 22.00 39 40 9.50 65.00 40.00 41 42 2.85 197.00 -30.00 42 28 1.54 260.00 -28.00 44 45 3.40 190.00 -11.00 45 46 5.00 213.00 -4.00 46 24 8.80 212.00 0.00 *END Apr2010 *BEGIN sideA *DATE 2010.08.12 *CALIBRATE declination 1.92 0 1 2.79 292.00 3.00 1 2 1.53 287.00 10.00 2 3 7.12 237.00 -7.00 *END sideA *BEGIN GoldiesWay *CALIBRATE declination 1.92 *EQUATE Pt2.0 Pt1.12 *EQUATE Pt3.0 Pt2.11 *EQUATE Pt4.4 Pt1.3 *EQUATE Pt4.15 Pt1.4 *EQUATE Pt5.25 Pt2.5 *EQUATE Pt1.8 Goldies_Extension.7 *BEGIN Pt1 *DATE 2010.08.09 0 1 5.89 266.26 -7.50 1 2 3.02 249.05 19.48 2 3 8.07 269.84 2.90 *FLAGS SPLAY 3 3a 2.09 56.66 -23.54 3 3b 4.58 67.59 -28.89 *FLAGS NOT SPLAY 3 4 6.09 260.07 -4.49 *FLAGS SPLAY 4 4a 8.65 52.01 -9.11 *FLAGS NOT SPLAY 4 5 1.15 60.70 16.85 5 6 5.88 261.78 -2.13 6 7 10.19 251.72 -5.18 7 8 4.36 238.96 -25.25 8 9 1.86 217.58 0.23 9 10 6.97 253.21 1.86 10 11 1.11 170.54 -16.23 11 12 12.65 254.48 3.40 12 13 4.15 14.49 -8.32 *FLAGS SPLAY 13 13a 0.30 51.97 0.29 *FLAGS NOT SPLAY 13 14 3.13 252.22 -5.46 14 15 3.26 47.31 11.56 *FLAGS SPLAY 15 15a 5.30 269.34 -37.59 *FLAGS NOT SPLAY 15 16 6.27 63.63 6.92 16 17 7.02 88.85 -7.43 17 8 7.02 93.37 -7.11 *END Pt1 *BEGIN Goldies_Extension *DATE 2011.04.22 *CALIBRATE declination 1.78 1 0 3.38 63.00 6.00 2 1 7.60 44.00 14.00 3 2 3.99 109.00 7.00 4 3 5.90 226.00 -52.00 5 3 12.15 32.00 -10.00 6 5 7.76 40.00 12.00 *FLAGS DUPLICATE 7 6 6.69 280.00 -6.00 *END Goldies_Extension *BEGIN Pt2 *DATE 2009.08.09 0 1 2.96 256.43 -8.65 1 2 8.82 209.10 7.48 2 3 2.95 253.09 -16.93 3 4 8.31 202.46 3.53 4 5 6.05 192.34 -6.04 5 6 4.31 225.23 -76.28 *FLAGS SPLAY 6 6a 8.21 237.84 -7.63 *FLAGS NOT SPLAY 6 7 10.39 70.54 -11.57 7 8 6.94 63.68 38.70 8 9 9.62 90.47 -2.89 9 10 4.10 81.21 -26.71 10 11 10.22 66.08 -20.01 11 12 6.52 53.47 -6.59 *FLAGS SPLAY 12 12a 3.10 46.81 1.63 12 12b 2.35 97.36 -3.67 *FLAGS NOT SPLAY *END Pt2 *BEGIN Pt3 *DATE 2009.08.09 0 1 3.02 177.74 -26.39 1 2 5.51 244.31 -0.54 2 3 10.34 220.26 -3.38 3 4 1.87 165.06 1.50 4 5 7.10 69.99 -1.25 5 6 3.16 210.95 -13.85 *FLAGS SPLAY 6 6a 10.45 73.82 0.76 *FLAGS NOT SPLAY *END Pt3 *BEGIN Pt4 *DATE 2010.08.12 4 5 1.89 54.00 -17.00 5 6 6.71 70.00 -8.00 6 7 1.50 59.00 -19.00 7 8 2.82 23.00 -9.00 8 9 2.09 328.00 7.00 9 10 3.39 246.00 1.00 10 11 0.86 280.00 25.00 11 12 1.27 9.00 -13.00 12 13 0.99 317.00 5.00 11 14 5.43 246.00 0.00 14 15 6.75 230.00 9.00 *END Pt4 *BEGIN Pt5 *DATE 2010.08.12 16 17 5.51 24.00 -34.00 17 18 5.22 13.00 -4.00 17 19 9.10 70.00 0.00 20 21 7.18 62.00 -49.00 21 22 6.06 82.00 0.00 *FLAGS DUPLICATE 22 18 2.76 10.00 15.00 *FLAGS NOT DUPLICATE 18 26 2.14 94.00 0.00 26 25 5.05 47.00 -4.00 23 24 10.87 70.00 0.00 24 25 5.27 0.00 90.00 *END Pt5 *END GoldiesWay *END GodKnows *BEGIN RealSimaBaz *EQUATE pt2.39 pt1.15 *EQUATE pt1.0 pt3.9 *EQUATE pt2.0 pt4.0 *EQUATE pt4.12 pt5.0 *EQUATE pt2.12 TomsAntic.32 *BEGIN pt1 *DATE 2011.04.22 *CALIBRATE declination 1.78 1 0 5.00 35.00 13.00 2 1 14.40 68.00 2.00 3 2 8.60 64.00 -1.00 4 3 3.92 104.00 -1.00 5 4 8.14 65.00 -1.00 6 5 3.91 61.00 -8.00 7 6 1.96 147.00 -20.00 8 7 9.37 50.00 0.00 9 8 3.51 117.00 -5.00 10 9 3.66 55.00 2.00 11 10 5.13 67.00 -1.00 12 11 1.64 185.00 1.00 13 12 5.14 57.00 8.00 14 13 3.94 94.00 -37.00 15 14 5.98 69.00 -16.00 *END pt1 *BEGIN pt2 *DATE 2012.04.05 *CALIBRATE declination 1.67 0 1 7.55 323.00 16.00 1 2 13.00 37.00 11.00 2 3 13.62 80.00 -14.00 3 4 5.70 74.00 -30.00 4 5 26.15 75.00 1.00 5 6 8.53 72.00 1.50 6 7 11.70 90.00 -10.50 7 8 6.60 64.00 5.00 8 9 3.85 77.00 -10.00 9 10 6.55 78.00 -4.00 10 11 27.90 60.00 1.00 11 12 21.15 60.00 1.50 12 13 17.00 90.00 15.00 12 14 5.70 134.00 -14.00 14 15 3.00 212.00 5.00 15 16 5.05 82.00 -7.00 16 17 2.65 151.00 -8.00 17 18 3.03 245.00 3.00 18 19 4.65 202.00 1.50 19 20 3.73 222.00 -11.00 20 21 12.49 80.00 0.00 21 22 2.42 64.00 -5.00 22 23 4.75 90.00 0.00 23 25 7.90 82.00 1.00 25 26 5.25 48.00 2.00 26 27 2.95 65.00 3.50 27 28 6.80 44.00 -7.00 28 29 5.60 69.00 -3.00 29 30 3.13 59.00 2.00 30 31 2.15 127.00 1.50 31 32 7.90 41.00 -2.00 32 33 3.38 150.00 -5.00 33 34 3.97 57.00 1.00 34 35 3.65 178.00 -6.00 35 36 4.69 65.00 -2.00 36 37 3.00 98.00 -8.00 37 38 2.25 83.00 -9.00 39 38 1.90 214.00 -20.00 *END pt2 *BEGIN pt3 *DATE 2012.04.05 *CALIBRATE declination 1.67 1 0 13.39 33.00 -1.00 1 2 7.97 263.00 3.00 2 3 7.90 238.00 30.00 2 4 5.53 254.00 0.00 4 5 4.25 238.00 1.00 5 6 4.76 253.00 2.00 6 7 2.51 240.00 1.00 7 8 3.70 37.00 0.00 8 9 7.51 251.00 4.00 *END pt3 *BEGIN pt4 *DATE 2012.04.06 *CALIBRATE declination 1.67 0 1 2.85 172.00 -4.00 1 2 7.57 257.00 10.00 2 3 3.93 262.00 -6.00 3 4 1.83 235.00 2.00 4 5 1.77 315.00 2.00 5 6 3.50 226.00 2.00 6 7 4.05 185.00 5.00 7 8 13.45 257.00 3.00 *FLAGS DUPLICATE 9 8 3.82 268.00 5.00 *FLAGS NOT DUPLICATE 9 10 25.15 257.00 1.00 10 11 6.26 257.00 8.00 11 12 15.55 232.00 0.50 12 13 6.45 260.00 0.00 13 14 4.15 271.00 5.00 14 15 6.66 240.00 3.00 15 16 8.10 258.00 5.00 16 17 7.35 260.00 9.00 17 18 7.30 270.00 -1.00 18 19 5.70 255.00 4.00 19 20 8.90 342.00 -1.00 20 21 10.00 270.00 1.00 19 22 10.90 165.00 2.00 *END pt4 *BEGIN pt5 *DATE 2012.04.05 *CALIBRATE declination 1.67 1 0 3.44 121.00 -30.00 2 1 2.40 60.00 -32.00 3 2 6.00 327.00 0.00 4 3 1.90 12.00 -6.00 5 4 2.38 76.00 3.00 6 5 5.10 324.00 -16.00 *END pt5 *BEGIN TomsAntic *DATE 2012.04.06 *CALIBRATE declination 1.67 0 1 13.50 82.00 -2.00 1 2 5.10 51.00 1.00 2 3 8.00 75.00 -6.00 3 5 4.20 65.00 4.00 5 6 18.00 86.00 2.00 6 7 5.30 75.00 -2.00 7 8 5.10 12.00 2.00 8 9 1.60 257.00 -24.00 9 10 5.80 314.00 -30.00 9 11 15.60 77.00 11.00 11 12 11.65 82.00 0.00 3 25 4.67 182.00 -75.00 25 26 1.90 222.00 -17.00 26 27 5.00 245.00 0.00 27 28 5.00 238.00 2.00 28 29 9.00 232.00 2.00 29 30 1.75 292.00 1.00 30 31 7.30 221.00 -1.00 31 32 0.73 31.00 -24.00 *END TomsAntic *END RealSimaBaz *BEGIN PullUpPassage *CALIBRATE declination 2.08 *EQUATE pt1.6 pt2.0 *EQUATE pt1.4 pt3.0 *EQUATE pt3.3 pt4.0 *EQUATE pt4.3 pt5.0 *BEGIN pt1 *FLAGS DUPLICATE 0 1 40.75 86.09 -1.69 *FLAGS NOT DUPLICATE 1 2 3.24 131.09 77.58 2 3 7.16 203.24 10.00 3 4 5.71 243.86 -42.02 4 5 8.26 260.38 2.68 5 6 5.51 245.45 -6.17 6 7 3.52 300.34 17.85 7 8 6.08 266.26 8.27 *END pt1 *BEGIN pt2 0 1 3.34 259.17 16.03 1 2 5.52 247.74 -17.23 2 3 3.29 207.11 -15.06 3 4 3.78 193.88 16.58 4 4a 5.48 17.86 1.10 4 4b 2.03 143.75 0.57 4 4c 5.41 321.28 3.08 4 4d 2.88 235.96 5.48 *END pt2 *BEGIN pt3 0 1 4.37 219.84 27.47 1 2 4.61 199.51 -0.76 2 3 5.19 211.46 19.49 *END pt3 *BEGIN pt4 1 0 6.92 39.00 16.00 1 2 27.80 72.00 -5.00 2 3 11.08 84.00 -5.00 *END pt4 *BEGIN pt5 0 1 6.94 87.38 6.53 1 2 2.75 102.64 7.52 2 3 4.41 208.25 -9.13 3 4 3.32 216.64 15.70 *FLAGS SPLAY 4 4a 4.06 86.83 2.72 4 4b 0.78 44.40 2.95 4 4c 2.80 162.77 10.78 4 4d 2.16 253.72 3.30 4 4e 2.41 218.78 7.54 4 4f 3.54 177.56 6.30 *FLAGS NOT SPLAY 4 5 7.36 92.52 0.29 5 6 5.50 65.40 -8.66 6 7 7.67 93.16 -1.29 7 7a 4.28 227.54 7.32 7 8 7.25 94.25 -0.54 8 9 4.93 81.43 -0.41 9 10 7.08 69.93 6.82 9 11 10.69 240.97 -2.24 *END pt5 *END PullUpPassage *BEGIN PullUpPassageMaze *CALIBRATE declination 2.08 *EQUATE pt1.1 pt2.0 *EQUATE pt1.27 pt3.0 *EQUATE pt3.2 pt4.0 *EQUATE pt4.12 pt5.0 *EQUATE pt5.6 pt6.0 *EQUATE pt6.0 pt7.0 *EQUATE pt5.5 pt8.0 *EQUATE pt3.1 pt9.0 *EQUATE pt9.3 pt10.0 *BEGIN pt1 *EQUATE 1 1A 1 4 4.03 315.00 -43.00 4 5 9.61 270.00 5.00 5 6 2.40 304.00 -7.00 6 7 16.50 269.00 1.00 7 8 7.46 257.00 12.00 8 9 2.83 300.00 -2.00 9 10 4.59 253.00 2.00 10 11 2.54 199.00 -4.00 11 12 9.39 264.00 0.00 12 13 4.20 253.00 5.00 13 14 7.86 238.00 1.00 14 15 2.50 238.00 0.00 15 16 6.80 258.00 -5.00 16 17 4.41 97.00 2.00 17 18 2.69 76.00 0.00 18 19 6.16 65.00 3.00 19 20 5.90 87.00 -12.00 20 21 3.11 100.00 -14.00 21 22 4.58 97.00 5.00 11 23 7.03 93.00 2.00 23 24 4.56 83.00 0.00 24 25 6.55 100.00 -3.00 25 26 1.72 149.00 7.00 26 27 10.69 213.00 0.00 27 28 5.79 82.00 -10.00 28 29 2.73 63.00 0.00 29 30 3.65 0.00 17.00 30 31 8.12 88.00 -4.00 31 32 5.12 94.00 -4.00 32 33 4.70 120.00 -16.00 33 34 2.31 154.00 24.00 34 35 2.99 199.00 1.00 35 36 3.67 238.00 -50.00 36 37 4.05 261.00 19.00 37 38 4.33 281.00 11.00 38 39 3.72 262.00 3.00 39 40 2.14 281.00 -2.00 40 41 3.78 267.00 6.00 41 42 2.20 283.00 1.00 33 43 7.55 90.00 -25.00 43 44 2.97 75.00 -24.00 44 45 5.13 77.00 57.00 45 46 7.49 76.00 3.00 46 47 4.49 86.00 -8.00 47 48 4.12 90.00 -1.00 45 49 10.38 300.00 -1.00 49 50 3.81 18.00 -55.00 50 1A 2.69 114.00 20.00 16 16A 1.00 0.00 90.00 16A 16B 5.00 280.00 -3.00 *END pt1 *BEGIN pt2 0 1 15.29 256.80 11.90 1 2 7.40 277.06 -2.46 *FLAGS SPLAY 2 2a 2.32 149.11 7.25 2 2b 7.97 206.88 1.29 2 2c 5.52 250.63 0.94 2 2d 2.63 321.41 4.58 2 2e 3.63 60.43 12.63 *FLAGS NOT SPLAY *END pt2 *BEGIN pt3 0 1 4.03 220.55 -47.33 1 2 7.03 213.05 -19.06 2 3 2.44 254.03 33.49 3 4 5.92 273.43 18.84 4 5 3.23 262.53 -7.22 *END pt3 *BEGIN pt4 0 1 5.77 74.59 14.11 1 2 3.71 129.45 15.86 *FLAGS SPLAY 2 2a 0.26 234.99 5.91 *FLAGS NOT SPLAY 2 3 4.15 65.22 22.96 3 4 5.41 102.66 -5.06 *FLAGS SPLAY 4 4a 0.22 49.08 -64.63 4 4b 2.96 218.06 -64.63 4 4c 0.73 340.79 -64.63 *FLAGS NOT SPLAY 4 5 4.77 74.80 -0.05 5 6 7.30 82.88 -26.18 6 7 5.71 241.16 -0.27 7 8 2.87 248.77 -27.80 8 9 4.97 240.95 0.58 9 9a 10.35 258.92 1.12 9 10 3.82 124.34 17.25 *FLAGS SPLAY 10 10a 1.03 22.85 -9.66 *FLAGS NOT SPLAY 10 10b 5.67 204.23 14.09 10 11 3.71 95.37 34.64 11 12 3.09 77.13 28.32 12 13 3.21 83.29 51.90 13 14 8.13 78.56 14.35 14 15 4.50 59.92 32.07 15 16 8.69 288.96 86.53 *END pt4 *BEGIN pt5 0 1 1.27 215.01 -30.38 1 2 6.83 254.29 -10.69 2 3 4.76 270.61 31.33 3 4 3.39 251.63 -31.96 4 5 5.23 278.22 -20.04 *FLAGS SPLAY 5 5a 1.00 184.64 1.49 5 5b 2.55 244.69 -0.42 *FLAGS NOT SPLAY 5 6 4.09 214.01 5.72 *FLAGS SPLAY 6 6a 1.18 302.47 -0.34 *FLAGS NOT SPLAY 6 7 7.11 81.59 12.61 *END pt5 *BEGIN pt6 0 1 3.39 264.41 24.77 1 1a 0.81 174.14 3.58 1 2 2.24 283.34 42.95 1 3 4.71 211.24 -6.23 *END pt6 *BEGIN pt7 0 1 1.44 43.24 -1.22 1 2 4.88 205.53 8.74 *END pt7 *BEGIN pt8 0 1 2.09 70.26 -32.50 1 2 3.16 18.25 15.01 *FLAGS SPLAY 2 2a 2.42 270.76 3.29 2 2b 3.16 21.74 11.91 2 2c 7.41 88.61 -9.58 *FLAGS NOT SPLAY *END pt8 *BEGIN pt9 0 1 1.68 280.97 -3.78 1 2 2.57 256.13 13.11 2 3 2.72 258.81 48.02 *FLAGS SPLAY 3 3a 0.95 89.10 -8.66 3 3b 1.51 275.86 1.84 *FLAGS NOT SPLAY 3 4 9.81 261.35 -15.80 *END pt9 *BEGIN pt10 0 1 54.34 215.57 85.82 *END pt10 *END PullUpPassageMaze *BEGIN BeyondFlashbulbNorth *DATE 2009.08.10 *CALIBRATE declination 2.08 0 1 4.81 280.18 -34.10 *FLAGS SPLAY 1 1a 1.80 152.12 -5.30 1 1b 0.98 287.66 1.93 1 1c 3.22 99.22 -4.41 *FLAGS NOT SPLAY 2 1 14.66 136.20 -84.61 *FLAGS SPLAY 2 2a 0.47 2.06 3.73 2 2b 0.34 177.67 2.24 *FLAGS NOT SPLAY 3 2 2.05 110.62 -34.65 3 3a 1.42 106.59 -3.93 3 3b 0.86 255.92 -0.31 4 3 1.85 93.90 -7.78 4 4a 2.74 242.67 -1.17 4 4b 3.50 279.44 0.83 4 5 6.08 252.21 53.48 5 5a 2.49 86.08 -0.27 5 5b 2.83 187.08 4.20 5 5c 3.55 23.31 4.56 5 6 10.24 231.91 9.49 6 7 1.86 328.80 -0.11 7 7a 4.80 314.01 74.03 7 8 5.76 231.29 6.99 8 9 2.43 206.23 -8.49 9 10 4.51 197.94 1.49 10 11 4.70 110.28 -21.44 *END BeyondFlashbulbNorth *BEGIN VampireGallery *DATE 2009.08.10 *CALIBRATE declination 2.08 0 1 7.09 43.00 -3.00 1 2 5.11 123.00 0.00 2 3 3.55 76.00 7.00 3 4 3.93 95.00 0.00 3 5 6.81 5.00 10.00 5 6 3.97 28.00 -17.00 6 7 5.70 310.00 1.00 7 8 5.53 5.00 11.00 8 9 4.25 46.00 10.00 9 10 6.51 288.00 28.00 10 11 9.95 162.00 -7.00 11 12 12.94 221.00 -3.00 10 13 21.87 48.00 0.00 13 14 37.87 50.00 -1.00 14 15 8.49 78.00 -3.00 15 16 13.76 56.00 0.00 16 17 8.93 324.00 5.00 17 18 4.24 69.00 29.00 18 19 10.34 94.00 0.00 18 20 15.78 266.00 -7.00 20 21 4.38 261.00 11.00 21 22 4.86 280.00 10.00 22 23 13.60 248.00 -2.00 16 24 11.40 91.00 -2.00 24 25 7.48 40.00 0.00 25 26 4.27 29.00 1.00 26 27 4.52 292.00 -5.00 27 28 2.96 340.00 -4.00 28 29 7.98 269.00 3.00 29 30 1.96 340.00 -10.00 30 31 3.75 43.00 0.00 31 32 3.67 90.00 3.00 32 33 3.64 80.00 0.00 33 34 4.33 32.00 -4.00 34 35 3.12 45.00 -7.00 *END VampireGallery *BEGIN VampireGalleryExtension *DATE 2010.04.08 *CALIBRATE declination 1.92 0 1 4.02 325.00 31.00 1 2 3.10 53.00 43.00 2 3 5.53 222.00 8.00 3 4 11.27 233.00 -1.50 4 5 14.20 241.00 1.00 5 6 11.00 235.00 2.70 2 7 17.34 55.00 4.00 *END VampireGalleryExtension *BEGIN DogSeries *EQUATE Aug09_Resurvey.46 Mar10_Resurvey.1 *EQUATE Traverse.9 Aug09_Resurvey.43 *EQUATE CarolsCrawl.44 Aug09_Resurvey.44 *BEGIN Aug09_Resurvey *CALIBRATE declination 2.08 36 37 6.49 277.00 -4.00 37 38 6.28 237.00 -4.00 38 39 8.12 252.00 -3.00 39 40 5.34 256.00 3.00 40 41 12.57 277.00 22.00 39 42 9.97 43.00 32.00 42 43 6.16 302.00 30.00 43 44 3.91 301.00 19.00 44 45 16.18 272.00 4.00 45 46 9.68 273.00 -2.00 *END Aug09_Resurvey *BEGIN Mar10_Resurvey *DATE 2010.03.30 *CALIBRATE declination 1.92 1 2 7.49 293.00 -23.00 2 3 4.76 235.00 -23.00 3 4 11.90 313.00 15.00 4 5 16.05 46.00 4.00 5 6 6.67 26.00 7.00 6 7 6.07 335.00 9.00 7 8 9.68 69.00 11.00 4 9 4.12 40.00 3.00 9 10 12.68 310.00 20.00 10 11 2.88 303.00 0.00 11 12 9.84 260.00 1.00 7 13 6.37 310.00 17.00 13 14 7.83 233.00 0.00 14 15 5.16 295.00 -2.00 15 15a 9.20 0.00 90.00 13 16 8.75 47.00 0.00 16 17 5.03 72.00 1.00 16 18 5.79 286.00 3.00 4 19 1.68 192.00 7.00 19 20 13.03 245.00 -5.00 20 21 6.54 274.00 29.00 21 22 11.94 31.00 0.00 22 23 8.10 45.00 26.00 22 24 6.76 273.00 -1.00 24 25 6.38 259.00 -3.00 25 26 6.68 262.00 0.00 26 27 14.17 233.00 -1.00 27 28 10.84 251.00 2.00 28 29 11.49 301.00 2.00 29 30 4.65 167.00 -16.00 30 31 15.81 259.00 3.00 31 32 3.93 272.00 -4.00 32 33 8.55 252.00 1.00 33 34 7.75 301.00 10.00 34 35 5.49 346.00 -2.00 35 36 12.70 260.00 3.00 29 37 11.95 75.00 3.00 40 39 9.38 276.00 3.00 39 38 5.76 205.00 -1.00 38 37 4.87 204.00 1.00 42 41 9.37 77.00 -2.00 21 41 2.77 219.00 5.00 19 43 17.73 211.00 -17.00 43 44 4.89 237.00 -5.00 44 45 9.31 92.00 -8.00 45 46 11.47 89.00 -5.00 46 47 7.00 214.00 5.00 47 48 9.13 267.00 5.00 46 49 2.49 36.00 6.00 49 50 7.93 95.00 -3.00 50 51 5.21 57.00 -2.00 51 52 6.41 67.00 23.00 52 53 3.00 3.00 -3.00 53 54 8.30 256.00 -6.00 54 55 9.36 261.00 -1.00 55 46 6.62 197.00 -12.00 55 56 3.75 300.00 18.00 56 57 5.52 33.00 7.00 57 58 6.00 15.00 7.00 58 59 4.03 7.00 3.00 59 60 3.29 94.00 21.00 60 1 6.79 103.00 24.00 *END Mar10_Resurvey *BEGIN Traverse *DATE 2010.04.01 *CALIBRATE declination 1.92 0 1 8.88 230.00 4.00 1 2 8.73 108.00 1.00 2 3 5.00 143.00 3.00 3 4 3.69 118.00 0.00 1 5 10.79 250.00 1.00 5 6 13.75 221.00 0.00 6 7 5.43 247.00 -7.00 0 8 6.92 335.00 1.00 8 9 8.19 290.00 -18.00 10 7 1.73 75.00 33.00 11 10 10.82 37.00 26.00 *END Traverse *BEGIN CarolsCrawl *DATE 2010.04.04 *CALIBRATE declination 1.92 44 1 4.12 50.00 14.00 1 2 6.71 36.00 12.00 2 3 3.55 52.00 3.00 3 4 4.59 107.00 -4.00 4 5 1.73 58.00 6.00 5 6 6.86 94.00 -2.00 6 7 0.81 185.00 -5.00 7 8 7.69 88.00 2.00 8 9 3.40 0.00 -90.00 *END CarolsCrawl *END DogSeries *BEGIN BazsPitch *CALIBRATE declination 6.89 24 30 4.20 113.00 0.00 30 31 6.70 0.00 90.00 31 32 3.50 201.00 0.00 32 33 12.30 229.00 0.00 33 34 3.60 239.00 0.00 34 35 4.10 227.00 15.00 35 36 9.00 0.00 90.00 36 37 6.70 213.00 0.00 37 38 2.20 72.00 0.00 38 39 7.70 56.00 0.00 39 40 9.70 207.00 0.00 40 41 2.40 207.00 0.00 41 42 5.20 208.00 0.00 42 43 3.20 292.00 0.00 43 44 4.60 270.00 0.00 44 45 11.70 222.00 0.00 45 46 21.40 109.00 0.00 46 47 15.20 82.00 0.00 47 48 11.00 71.00 0.00 48 49 12.40 151.00 0.00 49 50 27.00 65.00 0.00 50 50a 10.00 0.00 -90.00 50a 51 10.10 62.00 0.00 51 52 23.80 209.00 0.00 52 53 24.40 68.00 0.00 53 54 7.40 123.00 0.00 54 55 10.80 90.00 0.00 55 56 5.90 94.00 0.00 56 57 7.00 30.00 0.00 57 58 9.20 71.00 0.00 58 59 3.00 0.00 -90.00 59 60 11.30 63.00 0.00 60 61 15.50 71.00 0.00 61 62 6.90 133.00 0.00 *END BazsPitch *END 0107_Uzueka CaveConverter_src/test/data/regression/2649_Mares_fromaven_in.dxf0000644000000000000000000001154213030252172024060 0ustar rootroot0 SECTION 2 HEADER 9 $EXTMIN 10 -45.275000 20 -23.640000 30 -6.135000 9 $EXTMAX 10 45.275000 20 23.640000 30 6.135000 9 $PDMODE 70 3 9 $PDSIZE 40 0.80 0 ENDSEC 0 SECTION 2 TABLES 0 TABLE 2 LTYPE 70 10 0 LTYPE 2 CONTINUOUS 70 64 3 Continuous 72 65 73 0 40 0.0 0 LTYPE 2 DASHED 70 64 3 Dashed 72 65 73 2 40 2.5 49 1.25 49 -1.25 0 ENDTAB 0 TABLE 2 LAYER 70 10 0 LAYER 2 CentreLine 70 64 62 5 6 CONTINUOUS 0 LAYER 2 Stations 70 64 62 7 6 CONTINUOUS 0 LAYER 2 Labels 70 64 62 7 6 CONTINUOUS 0 LAYER 2 Surface 70 64 62 5 6 DASHED 0 LAYER 2 SurfaceStations 70 64 62 7 6 CONTINUOUS 0 LAYER 2 SurfaceLabels 70 64 62 7 6 CONTINUOUS 0 ENDTAB 0 ENDSEC 0 SECTION 2 ENTITIES 0 LINE 8 CentreLine 10 -45.28 20 -18.77 30 6.13 11 -44.57 21 -19.70 31 4.88 0 LINE 8 CentreLine 10 -44.57 20 -19.70 30 4.88 11 -44.88 21 -17.83 31 2.69 0 LINE 8 CentreLine 10 -44.88 20 -17.83 30 2.69 11 -44.88 21 -17.83 31 -1.54 0 LINE 8 CentreLine 10 -44.88 20 -17.83 30 -1.54 11 -40.10 21 -18.73 31 -0.59 0 LINE 8 CentreLine 10 -40.10 20 -18.73 30 -0.59 11 -38.54 21 -18.15 31 0.81 0 LINE 8 CentreLine 10 -38.54 20 -18.15 30 0.81 11 -36.51 21 -18.43 31 -0.63 0 LINE 8 CentreLine 10 -36.51 20 -18.43 30 -0.63 11 -40.83 21 -23.64 31 -1.94 0 LINE 8 CentreLine 10 -36.51 20 -18.43 30 -0.63 11 -33.93 21 -17.27 31 0.33 0 LINE 8 CentreLine 10 -33.93 20 -17.27 30 0.33 11 -31.08 21 -18.18 31 0.24 0 LINE 8 CentreLine 10 -31.08 20 -18.18 30 0.24 11 -28.56 21 -18.44 31 -0.25 0 LINE 8 CentreLine 10 -28.56 20 -18.44 30 -0.25 11 -28.56 21 -18.44 31 -5.06 0 LINE 8 CentreLine 10 -28.56 20 -18.44 30 -0.25 11 -25.47 21 -15.42 31 -1.10 0 LINE 8 CentreLine 10 -25.47 20 -15.42 30 -1.10 11 -24.96 21 -13.82 31 -2.67 0 LINE 8 CentreLine 10 -24.96 20 -13.82 30 -2.67 11 -19.53 21 -8.89 31 -3.18 0 LINE 8 CentreLine 10 -19.53 20 -8.89 30 -3.18 11 -15.57 21 -2.73 31 -3.82 0 LINE 8 CentreLine 10 -15.57 20 -2.73 30 -3.82 11 -14.04 21 0.94 31 -2.82 0 LINE 8 CentreLine 10 -14.04 20 0.94 30 -2.82 11 -8.49 21 2.88 31 -3.35 0 LINE 8 CentreLine 10 -8.49 20 2.88 30 -3.35 11 -4.83 21 9.30 31 -3.73 0 LINE 8 CentreLine 10 -4.83 20 9.30 30 -3.73 11 -0.73 21 13.16 31 -4.03 0 LINE 8 CentreLine 10 -0.73 20 13.16 30 -4.03 11 2.98 21 11.97 31 -4.30 0 LINE 8 CentreLine 10 2.98 20 11.97 30 -4.30 11 6.97 21 12.48 31 -4.16 0 LINE 8 CentreLine 10 6.97 20 12.48 30 -4.16 11 8.72 21 14.91 31 -4.31 0 LINE 8 CentreLine 10 8.72 20 14.91 30 -4.31 11 10.45 21 12.17 31 -4.94 0 LINE 8 CentreLine 10 10.45 20 12.17 30 -4.94 11 16.97 21 11.40 31 -4.94 0 LINE 8 CentreLine 10 16.97 20 11.40 30 -4.94 11 16.98 21 9.59 31 -4.85 0 LINE 8 CentreLine 10 16.98 20 9.59 30 -4.85 11 17.80 21 11.29 31 -4.62 0 LINE 8 CentreLine 10 16.98 20 9.59 30 -4.85 11 16.19 21 7.37 31 -4.00 0 LINE 8 CentreLine 10 16.97 20 11.40 30 -4.94 11 19.95 21 11.46 31 -4.60 0 LINE 8 CentreLine 10 19.95 20 11.46 30 -4.60 11 20.86 21 14.22 31 -4.42 0 LINE 8 CentreLine 10 20.86 20 14.22 30 -4.42 11 22.11 21 18.13 31 -4.57 0 LINE 8 CentreLine 10 22.11 20 18.13 30 -4.57 11 21.07 21 19.86 31 -4.41 0 LINE 8 CentreLine 10 21.07 20 19.86 30 -4.41 11 21.94 21 21.57 31 -5.88 0 LINE 8 CentreLine 10 21.07 20 19.86 30 -4.41 11 22.76 21 20.76 31 -4.61 0 LINE 8 CentreLine 10 22.76 20 20.76 30 -4.61 11 24.43 21 23.64 31 -4.86 0 LINE 8 CentreLine 10 22.76 20 20.76 30 -4.61 11 30.71 21 18.94 31 -4.81 0 LINE 8 CentreLine 10 30.71 20 18.94 30 -4.81 11 31.92 21 17.64 31 -4.66 0 LINE 8 CentreLine 10 31.92 20 17.64 30 -4.66 11 34.58 21 17.23 31 -4.64 0 LINE 8 CentreLine 10 34.58 20 17.23 30 -4.64 11 38.41 21 19.98 31 -4.95 0 LINE 8 CentreLine 10 38.41 20 19.98 30 -4.95 11 39.57 21 20.46 31 -5.06 0 LINE 8 CentreLine 10 39.57 20 20.46 30 -5.06 11 42.32 21 19.43 31 -5.25 0 LINE 8 CentreLine 10 39.57 20 20.46 30 -5.06 11 42.40 21 17.71 31 -4.79 0 LINE 8 CentreLine 10 42.40 20 17.71 30 -4.79 11 43.59 21 18.21 31 -5.43 0 LINE 8 CentreLine 10 43.59 20 18.21 30 -5.43 11 45.27 21 16.81 31 -6.13 000 ENDSEC 000 EOF CaveConverter_src/test/data/regression/Stomps_ps_ref.svx0000644000000000000000000002377113030252172022633 0ustar rootroot*BEGIN Stomps2010 *EQUATE 155.1 156.1 *EQUATE 156.9 127.0 *BEGIN 156 *DATE 2010.08.11 *CALIBRATE declination 1.92 *EQUATE 28 32 *FLAGS SPLAY 1 1a 1.69 37.77 8.97 1 1b 9.67 232.64 2.24 1 1c 3.12 97.12 86.67 1 1d 0.74 77.17 -89.50 1 1e 15.03 226.71 -13.08 1 1f 6.82 210.56 28.68 *FLAGS NOT SPLAY 1 2 9.08 189.31 -7.43 *FLAGS SPLAY 2 2a 7.47 208.36 -11.11 2 2b 8.06 39.11 14.74 2 2c 4.41 128.49 81.69 2 2d 1.25 358.86 -82.11 *FLAGS NOT SPLAY 2 3 18.55 116.98 -0.10 *FLAGS SPLAY 3 3a 2.10 353.60 5.03 3 3b 8.88 190.22 4.19 3 3c 3.69 137.39 81.12 3 3d 1.65 101.41 -87.20 *FLAGS NOT SPLAY 3 4 3.94 109.34 5.39 *FLAGS SPLAY 4 4a 1.72 13.50 -2.13 4 4b 5.78 180.90 3.13 4 4c 3.62 131.58 82.07 4 4d 1.77 11.41 -89.12 *FLAGS NOT SPLAY 4 5 14.13 96.76 -0.61 *FLAGS SPLAY 5 5a 0.89 21.68 11.66 5 5b 4.92 187.59 1.55 5 5c 3.34 152.86 86.38 5 5d 1.68 93.35 -86.43 5 5e 10.70 195.39 -17.40 *FLAGS NOT SPLAY 5 6 14.76 107.42 10.11 *FLAGS SPLAY 6 6a 2.77 353.39 1.57 6 6b 6.30 194.68 -4.39 6 6c 1.21 240.65 80.78 6 6d 2.02 357.90 -83.47 *FLAGS NOT SPLAY 6 7 9.56 79.43 -2.48 *FLAGS SPLAY 7 7a 12.22 207.03 2.29 7 7b 1.68 97.50 85.86 7 7c 1.71 241.95 -86.22 *FLAGS NOT SPLAY 7 8 12.97 128.55 -9.80 *FLAGS SPLAY 8 8a 5.12 354.01 2.57 8 8b 5.91 181.07 -1.30 8 8c 5.02 174.58 84.02 8 8d 1.51 132.53 -81.84 8 8e 13.39 235.87 7.15 8 8f 4.13 271.01 46.40 *FLAGS NOT SPLAY 8 9 5.84 89.36 1.83 *FLAGS SPLAY 9 9a 4.62 19.88 -7.87 9 9b 14.51 183.22 24.27 9 9c 4.47 145.46 80.50 *FLAGS NOT SPLAY 9 10 11.81 117.66 18.69 *FLAGS SPLAY 10 10a 5.38 40.87 -12.73 10 10b 15.76 211.64 3.96 10 10c 2.39 262.28 85.82 10 10d 8.08 203.51 -24.97 *FLAGS NOT SPLAY 10 11 17.53 168.45 -7.51 *FLAGS SPLAY 11 11a 11.16 40.65 22.54 11 11b 5.81 202.33 -0.42 11 11c 4.42 170.80 84.77 11 11d 2.04 127.28 -88.53 *FLAGS NOT SPLAY 11 12 16.73 148.86 -11.30 *FLAGS SPLAY 12 12a 10.78 54.37 20.06 12 12b 2.98 221.85 -4.24 12 12c 5.15 185.63 84.72 12 12d 2.27 188.16 -80.50 *FLAGS NOT SPLAY 12 13 15.14 118.78 -5.89 *FLAGS SPLAY 13 13a 1.67 61.44 5.64 13 13b 7.80 233.20 3.15 13 13c 6.12 304.49 0.88 13 13d 3.61 348.94 1.85 13 13e 5.07 331.32 -2.18 13 13f 6.90 69.83 84.81 13 13g 0.45 268.26 -88.34 *FLAGS NOT SPLAY 13 14 12.56 158.08 3.43 *FLAGS SPLAY 14 14a 3.84 53.87 -4.42 14 14b 3.12 227.31 2.93 14 14c 5.53 300.37 87.43 14 14d 1.63 169.51 -86.65 *FLAGS NOT SPLAY 14 15 20.99 142.22 1.02 *FLAGS SPLAY 15 15a 3.37 59.85 -7.03 15 15b 6.88 228.82 -1.60 15 15c 1.81 165.82 -81.12 15 15d 7.31 156.10 87.72 *FLAGS NOT SPLAY 15 16 14.28 159.69 1.84 *FLAGS SPLAY 16 16a 3.99 50.15 5.15 16 16b 6.30 223.94 0.27 16 16c 6.76 212.56 82.75 16 16d 2.16 75.37 -85.02 16 16e 7.35 53.81 -19.26 *FLAGS NOT SPLAY 16 17 10.37 162.98 2.49 *FLAGS SPLAY 17 17a 8.03 85.24 5.30 17 17b 4.58 268.81 4.80 17 17c 7.08 117.31 85.78 17 17d 1.67 30.75 -87.87 17 17e 11.57 65.79 -12.79 *FLAGS NOT SPLAY 17 18 7.85 126.63 -11.48 *FLAGS SPLAY 18 18a 9.04 57.55 -6.54 18 18b 12.85 221.83 12.63 18 18c 5.78 227.99 82.52 18 18d 1.20 269.82 -79.45 18 18e 9.67 145.31 -10.88 18 18f 10.53 166.40 -10.22 18 18g 8.33 104.33 -11.12 *FLAGS NOT SPLAY 18 19 23.70 157.35 -4.37 *FLAGS SPLAY 19 19a 9.34 73.19 10.78 19 19b 11.84 245.81 12.69 19 19c 1.17 287.39 83.26 19 19d 2.42 51.41 38.56 *FLAGS NOT SPLAY 19 20 13.16 101.93 26.51 *FLAGS SPLAY 20 20a 8.13 59.17 2.11 20 20b 3.99 319.43 -1.32 20 20c 19.28 269.18 2.35 20 20d 21.11 255.42 1.62 20 20e 9.96 233.12 -18.11 20 20f 1.90 168.29 81.35 20 20g 12.67 132.37 13.97 *FLAGS NOT SPLAY 20 21 14.46 145.32 8.27 *FLAGS SPLAY 21 21a 14.26 78.44 8.06 21 21b 3.69 250.66 -18.99 21 21c 7.18 227.58 -16.64 21 21d 12.39 206.43 -26.43 21 21e 16.36 186.99 -21.04 21 21f 17.98 167.17 -10.43 21 21g 21.27 136.38 4.37 21 21h 18.97 113.75 8.27 21 21i 1.58 137.96 69.16 21 21j 0.84 62.80 -88.10 21 21k 9.40 19.51 12.23 *FLAGS NOT SPLAY 21 22 11.00 140.41 13.34 *FLAGS SPLAY 22 22a 18.00 237.95 -37.04 22 22b 12.64 198.26 -39.64 22 22c 15.78 148.75 -25.36 22 22d 16.36 126.26 -16.70 22 22e 11.77 93.31 -5.76 22 22f 13.48 67.73 -1.47 22 22g 13.79 35.24 -1.65 *FLAGS NOT SPLAY 22 23 19.39 47.07 -3.39 *FLAGS SPLAY 23 23a 7.24 83.01 -21.44 23 23b 8.47 183.50 1.18 23 23c 10.48 171.25 -0.49 23 23d 7.11 147.60 -3.96 *FLAGS NOT SPLAY 23 24 12.26 182.57 0.88 *FLAGS SPLAY 24 24a 1.92 82.91 0.63 24 24b 1.15 120.51 84.75 24 24c 0.93 76.07 -84.15 *FLAGS NOT SPLAY 24 25 9.37 136.99 -31.89 *FLAGS SPLAY 25 25a 1.16 119.38 3.47 25 25b 2.94 355.15 23.42 25 25c 3.69 310.01 86.34 25 25d 0.33 193.17 -87.50 *FLAGS NOT SPLAY 25 26 16.12 66.28 8.82 *FLAGS SPLAY 26 26a 4.09 231.84 0.23 26 26b 1.49 42.67 87.21 26 26c 0.60 329.87 -86.96 *FLAGS NOT SPLAY 26 27 20.53 208.25 -0.25 *FLAGS SPLAY 27 27a 1.97 300.95 -6.53 27 27b 3.69 311.97 80.68 27 27c 1.85 292.76 -79.95 *FLAGS NOT SPLAY 27 28 23.08 217.47 -11.66 *FLAGS SPLAY 28 28a 2.88 128.79 -0.08 28 28b 6.22 310.56 2.64 28 28c 8.32 349.65 84.55 28 28d 28.39 23.01 54.31 28 28e 13.96 7.70 59.65 28 28f 12.78 4.70 10.78 28 28g 8.89 49.16 13.35 *FLAGS NOT SPLAY 28 29 9.44 337.56 -7.14 *FLAGS SPLAY 29 29a 2.88 283.39 -6.23 29 29b 10.43 124.26 14.34 29 29c 0.85 25.33 78.60 29 29d 1.76 324.20 -83.85 *FLAGS NOT SPLAY 29 30 11.12 26.64 -1.45 *FLAGS SPLAY 30 30a 4.37 251.83 1.05 30 30b 8.10 252.77 -8.28 30 30c 13.29 274.36 -5.31 30 30d 5.95 168.28 4.29 30 30e 3.36 125.62 9.29 30 30f 11.33 60.91 17.00 30 30g 6.48 357.65 15.32 *FLAGS NOT SPLAY 30 31 7.38 59.13 18.23 *FLAGS SPLAY 31 31a 6.38 284.87 4.02 31 31b 3.28 81.68 10.06 31 31c 1.65 268.12 86.30 31 31d 0.81 305.44 -85.22 *FLAGS NOT SPLAY 31 25 7.67 9.40 10.35 *FLAGS SPLAY 32 32a 2.87 117.70 -1.62 32 32b 6.26 302.62 9.50 32 32c 7.77 227.86 81.72 32 32d 1.77 169.28 -67.64 *FLAGS NOT SPLAY 32 33 26.57 219.45 -1.21 *FLAGS SPLAY 33 33a 2.53 307.33 4.40 33 33b 3.36 124.91 2.33 33 33c 5.20 170.50 89.34 33 33d 3.23 328.02 -70.36 33 33e 6.56 290.15 -24.69 *FLAGS NOT SPLAY 33 34 30.49 226.77 -3.52 *FLAGS SPLAY 34 34a 5.86 236.75 -3.69 34 34b 4.04 262.63 -3.89 34 34c 8.40 95.41 4.69 34 34d 9.61 62.57 84.14 34 34e 1.35 158.37 -84.56 *FLAGS NOT SPLAY 34 35 24.02 125.74 -0.07 *FLAGS SPLAY 35 35a 2.68 30.69 -5.75 35 35b 2.81 197.88 -14.73 35 35c 0.73 66.43 86.00 35 35d 1.57 127.05 -83.96 *FLAGS NOT SPLAY 35 36 4.42 104.65 6.02 *FLAGS SPLAY 36 36a 2.49 21.29 -22.90 36 36b 2.24 260.57 -1.29 36 36c 5.82 217.21 86.87 36 36d 1.89 140.80 -83.24 36 36e 9.41 213.65 -13.20 *FLAGS NOT SPLAY 36 37 10.68 164.02 12.16 *FLAGS SPLAY 37 37a 3.80 53.48 -4.48 37 37b 6.19 229.59 9.87 37 37c 6.08 146.27 82.26 37 37d 8.29 10.38 -30.58 *FLAGS NOT SPLAY 37 38 12.55 153.02 -2.14 *FLAGS SPLAY 38 38a 2.42 41.61 -6.10 38 38b 10.27 228.39 1.96 38 38c 6.31 200.74 84.49 38 38d 5.42 81.95 -50.82 *FLAGS NOT SPLAY 38 39 26.21 114.84 -7.27 *FLAGS SPLAY 39 39a 3.40 52.39 6.37 39 39b 20.50 219.16 10.44 39 39c 13.28 207.48 46.99 39 39d 9.50 182.35 -22.41 *FLAGS NOT SPLAY 39 40 26.69 165.92 -1.74 *FLAGS SPLAY 40 40a 8.67 60.90 12.75 40 40b 15.33 247.49 12.29 40 40c 10.78 304.71 85.18 40 40d 2.29 6.12 -84.82 *FLAGS NOT SPLAY 40 41 29.35 157.64 4.26 *FLAGS SPLAY 41 41a 10.62 252.68 11.74 41 41b 12.75 22.64 8.50 41 41c 7.88 18.58 78.68 41 41d 22.88 13.29 8.03 41 41e 12.85 343.23 -24.55 *FLAGS NOT SPLAY 41 42 25.13 123.62 -2.35 *FLAGS SPLAY 42 42a 4.46 66.37 20.49 42 42b 21.37 242.80 10.60 42 42c 10.42 232.44 63.69 42 42d 7.43 221.79 -41.05 42 42e 13.88 308.37 1.63 *FLAGS NOT SPLAY 42 43 24.15 168.91 -8.72 *FLAGS SPLAY 43 43a 14.40 256.04 21.06 43 43b 10.07 101.29 29.82 43 43c 12.51 150.27 86.71 43 43d 2.00 248.22 -77.51 *FLAGS NOT SPLAY 43 44 13.32 168.35 10.48 *FLAGS SPLAY 44 44a 4.83 75.77 6.03 44 44b 18.29 275.87 11.43 44 44c 10.21 26.26 77.78 44 44d 7.37 297.13 -41.78 44 44e 6.22 274.92 -17.88 *FLAGS NOT SPLAY 44 45 28.90 189.31 16.45 *FLAGS SPLAY 45 45a 10.63 135.54 9.88 45 45b 9.58 280.49 -1.90 45 45c 3.41 209.50 87.61 45 45d 4.30 270.17 -67.62 *FLAGS NOT SPLAY 45 46 22.48 194.04 5.14 *FLAGS SPLAY 46 46a 14.53 63.91 5.51 46 46b 6.66 255.94 -22.06 46 46c 1.69 238.04 77.50 46 46d 12.99 117.87 8.99 *FLAGS NOT SPLAY *data passage station left right up down 1 0.79 8.89 3.11 0.74 2 7.12 6.02 4.36 1.24 3 1.82 8.64 3.64 1.64 4 1.71 5.64 3.59 1.77 5 0.86 10.19 3.34 1.68 6 2.73 6.16 1.19 2.01 7 0.00 11.90 1.67 1.71 8 4.63 10.62 4.99 1.50 9 4.55 13.02 4.41 0.00 10 5.13 14.63 2.38 3.41 11 9.10 4.01 4.40 2.04 12 9.95 2.97 5.13 2.24 13 1.83 7.76 6.87 0.44 14 3.81 3.04 5.52 1.62 15 3.34 6.72 7.30 1.78 16 6.61 5.60 6.70 2.15 17 11.08 3.78 7.06 1.67 18 8.94 12.34 5.73 1.18 19 7.65 10.37 1.16 0.00 20 7.33 15.73 1.88 0.00 21 12.73 10.63 1.48 0.84 22 11.75 11.68 0.00 8.06 23 3.55 7.89 0.00 2.65 24 1.87 0.00 1.15 0.92 25 1.83 1.14 3.68 0.33 26 0.00 4.07 1.48 0.60 27 0.00 1.96 3.65 1.82 28 1.49 15.96 8.28 0.00 29 2.81 8.55 0.83 1.75 30 10.36 4.83 0.00 0.00 31 6.00 2.38 1.65 0.81 25 1.83 1.14 3.68 0.33 *data passage station left right up down 32 2.81 6.13 7.69 1.64 33 3.32 5.49 5.20 3.05 34 8.27 5.09 9.56 1.34 35 2.66 2.70 0.73 1.57 36 2.11 9.00 5.81 1.88 37 3.76 5.77 6.02 4.21 38 2.70 10.23 6.28 4.20 39 3.37 19.77 9.71 3.62 40 8.30 14.94 10.74 2.28 41 18.01 9.64 7.73 5.34 42 4.11 20.87 9.34 4.88 43 8.06 13.42 12.49 1.95 44 4.68 17.79 9.98 4.91 45 8.70 9.57 3.41 3.98 46 12.46 5.44 1.65 2.50 *END 156 *END Stomps2010 CaveConverter_src/test/data/regression/CalTest_cs_ref.svx0000644000000000000000000000177313030252172022666 0ustar rootroot*BEGIN FootlegCalTest *EQUATE Footleg1.2 Footleg2.2 *EQUATE Footleg2.3 Footleg3.3 *EQUATE Footleg3.4 Footleg4.4 *BEGIN Footleg1 *DATE 2014.02.13 *CALIBRATE declination -30.0 1 2 8.00 15.00 0.00 2 2a 10.00 285.00 0.00 *data passage station left right up down 1 0.30 0.91 0.61 1.22 2 1.22 0.61 0.91 0.30 *END Footleg1 *BEGIN Footleg2 *DATE 2014.02.14 *CALIBRATE declination -45.0 *CALIBRATE tape 0.50 *CALIBRATE compass 10.0 2 3 10.50 100.00 36.87 3 3a 10.00 10.00 0.00 *data passage station left right up down 2 0.30 0.91 0.61 1.22 3 1.22 0.61 0.91 0.30 *END Footleg2 *BEGIN Footleg3 *DATE 2014.02.14 *CALIBRATE declination 10.0 *CALIBRATE tape -2.00 *CALIBRATE compass 25.0 *CALIBRATE clino 8.0 3 4 8.00 260.00 -28.87 *END Footleg3 *BEGIN Footleg4 *DATE 2014.03.31 *CALIBRATE declination 15.0 *CALIBRATE tape 4.00 *CALIBRATE compass -7.0 *CALIBRATE clino -10.0 4 5 14.00 143.00 -46.87 *END Footleg4 *END FootlegCalTest CaveConverter_src/test/data/regression/HSC_ref.text0000644000000000000000000004552012115304544021425 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.new090417.118 1 -1 1 1 1 1 0 1 4 4 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 4.41 83.55 56.45 0.96 0.23 4.62 1.33 1 2 1 1 1 2.57 15.36 8.88 5.21 1.25 1.56 4.37 1 3 1 1 1 6.09 15.15 -0.36 1.22 0.40 0.31 0.38 1 4 1 1 1 6.26 286.64 0.89 1.34 0.20 0.33 0.44 2 -2 1 1 1 Series 2-root.new090417.118 2 -1 1 1 1 1 3 2 2 2 3 0 2 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 1 1 1 1 2.08 141.17 1.29 0.00 0.00 0.00 0.00 2 2 1 1 1 2.63 90.91 -6.53 0.82 0.00 0.21 0.19 3 -2 1 1 1 Series 3-root.new090417.118 3 -1 1 1 1 1 1 3 3 3 3 0 3 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 1 1 1 1 1.92 169.17 38.92 0.00 0.00 0.00 0.00 3 2 1 1 1 4.09 116.73 8.07 0.99 0.96 2.06 0.48 3 3 1 1 1 6.84 100.67 6.73 0.59 0.00 1.16 0.81 4 -2 1 1 1 Series 4-root.new090417.118 4 -1 1 1 1 3 1 4 4 4 3 0 4 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4 1 1 1 1 3.61 218.71 21.43 0.00 0.00 0.00 0.00 4 2 1 1 1 1.78 178.31 16.50 1.23 0.76 0.74 0.22 4 3 1 1 1 15.03 193.21 0.32 0.31 1.00 0.24 0.20 4 4 1 1 1 0.74 108.71 8.92 0.00 0.00 0.00 0.00 5 -2 1 1 1 Series 5-root.new090417.118 5 -1 1 1 1 4 3 5 1 1 3 0 5 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 5 1 1 1 1 0.69 196.56 10.54 0.00 0.00 0.00 0.00 6 -2 1 1 1 Series 6-root.new090417.118 6 -1 1 1 1 4 3 6 1 1 3 0 6 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6 1 1 1 1 6.01 15.24 2.01 0.00 0.00 0.00 0.00 7 -2 1 1 1 Series 7-root.new090417.118 7 -1 1 1 1 4 3 7 1 1 3 0 7 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 7 1 1 1 1 3.08 345.71 3.07 0.00 0.00 0.00 0.00 8 -2 1 1 1 Series 8-root.new090417.118 8 -1 1 1 1 4 3 8 1 1 3 0 8 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 8 1 1 1 1 2.20 318.76 4.71 0.00 0.00 0.00 0.00 9 -2 1 1 1 Series 9-root.new090417.118 9 -1 1 1 1 4 3 9 1 1 3 0 9 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 9 1 1 1 1 3.83 47.81 -0.50 0.00 0.00 0.00 0.00 10 -2 1 1 1 Series 10-root.new090417.118 10 -1 1 1 1 4 3 10 4 4 3 0 10 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 10 1 1 1 1 7.30 262.01 2.57 0.69 3.08 0.00 0.00 10 2 1 1 1 3.71 277.74 4.77 0.70 0.21 0.23 0.00 10 3 1 1 1 6.69 264.18 -26.44 0.43 0.85 0.00 0.34 10 4 1 1 1 2.61 242.79 21.84 0.00 0.00 0.00 0.00 11 -2 1 1 1 Series 11-root.new090417.118 11 -1 1 1 1 10 3 11 1 1 3 0 11 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 11 1 1 1 1 3.37 290.40 11.33 0.00 0.00 0.00 0.00 12 -2 1 1 1 Series 12-root.new090417.118 12 -1 1 1 1 10 3 12 1 1 3 0 12 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 12 1 1 1 1 2.00 340.89 10.72 0.00 0.00 0.00 0.00 13 -2 1 1 1 Series 13-root.new090417.118 13 -1 1 1 1 10 3 13 1 1 3 0 13 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 13 1 1 1 1 0.98 168.76 8.55 0.00 0.00 0.00 0.00 14 -2 1 1 1 Series 14-root.new090417.118 14 -1 1 1 1 10 3 14 1 1 3 0 14 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 14 1 1 1 1 2.49 62.15 11.72 0.00 0.00 0.00 0.00 15 -2 1 1 1 Series 15-root.new090417.118 15 -1 1 1 1 10 3 15 4 4 3 0 15 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 15 1 1 1 1 2.92 50.49 0.50 2.00 0.98 0.00 0.00 15 2 1 1 1 7.37 56.17 0.39 1.13 0.31 0.62 0.38 15 3 1 1 1 3.30 31.98 -4.56 0.98 0.31 0.28 0.05 15 4 1 1 1 2.97 122.51 0.62 0.00 0.00 0.00 0.00 16 -2 1 1 1 Series 16-root.new090417.118 16 -1 1 1 1 15 3 16 1 1 3 0 16 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 16 1 1 1 1 7.76 124.07 1.14 0.00 0.00 0.00 0.00 17 -2 1 1 1 Series 17-root.new090417.118 17 -1 1 1 1 15 3 17 1 1 3 0 17 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 17 1 1 1 1 6.42 139.31 0.59 0.00 0.00 0.00 0.00 18 -2 1 1 1 Series 18-root.new090417.118 18 -1 1 1 1 15 3 18 1 1 3 0 18 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 18 1 1 1 1 3.29 162.17 2.96 0.00 0.00 0.00 0.00 19 -2 1 1 1 Series 19-root.new090417.118 19 -1 1 1 1 15 3 19 1 1 3 0 19 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 19 1 1 1 1 2.76 238.60 7.36 0.00 0.00 0.00 0.00 20 -2 1 1 1 Series 20-root.new090417.118 20 -1 1 1 1 15 3 20 1 1 3 0 20 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 20 1 1 1 1 2.98 83.07 -2.52 0.00 0.00 0.00 0.00 21 -2 1 1 1 Series 21-root.new090417.118 21 -1 1 1 1 15 3 21 1 1 3 0 21 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 21 1 1 1 1 0.87 280.19 12.06 0.00 0.00 0.00 0.00 22 -2 1 1 1 Series 22-root.new090417.118 22 -1 1 1 1 15 3 22 5 5 3 0 22 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 22 1 1 1 1 4.75 268.71 2.04 3.29 0.87 0.00 0.00 22 2 1 1 1 5.16 304.43 4.31 0.20 1.54 0.63 0.40 22 3 1 1 1 2.77 221.35 -6.75 1.60 0.00 0.00 0.26 22 4 1 1 1 4.11 247.35 5.41 1.60 0.60 0.76 0.00 22 5 1 1 1 4.04 272.23 6.76 0.39 0.58 0.46 0.26 23 -2 1 1 1 Series 23-root.new090417.118 23 -1 1 1 1 22 3 23 2 2 3 0 23 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 23 1 1 1 1 2.04 125.59 8.49 0.00 0.00 0.00 0.00 23 2 1 1 1 4.17 83.85 -6.08 1.05 0.00 0.23 0.27 24 -2 1 1 1 Series 24-root.new090417.118 24 -1 1 1 1 10 3 24 2 2 3 0 24 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 24 1 1 1 1 4.82 273.26 11.68 0.00 0.00 0.00 0.00 24 2 1 1 1 9.44 281.85 -1.80 0.67 0.45 0.00 0.32 25 -2 1 1 1 Series 25-root.new090417.118 25 -1 1 1 1 10 3 25 3 3 3 0 25 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 25 1 1 1 1 5.33 255.99 15.05 0.00 0.00 0.00 0.00 25 2 1 1 1 2.15 240.26 48.01 0.60 0.85 2.12 0.00 25 3 1 1 1 2.97 30.95 0.82 0.00 0.00 0.00 0.00 26 -2 1 1 1 Series 26-root.new090417.118 26 -1 1 1 1 25 2 26 1 1 3 0 26 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 26 1 1 1 1 2.22 318.42 -0.21 0.00 0.00 0.00 0.00 27 -2 1 1 1 Series 27-root.new090417.118 27 -1 1 1 1 25 2 27 1 1 3 0 27 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 27 1 1 1 1 1.40 87.18 -9.57 0.00 0.00 0.00 0.00 28 -2 1 1 1 Series 28-root.new090417.118 28 -1 1 1 1 25 2 28 1 1 3 0 28 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 28 1 1 1 1 2.01 215.63 7.64 0.00 0.00 0.00 0.00 29 -2 1 1 1 Series 29-root.new090417.118 29 -1 1 1 1 25 2 29 1 1 3 0 29 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 29 1 1 1 1 1.67 155.70 9.94 0.00 0.00 0.00 0.00 30 -2 1 1 1 Series 30-root.new090417.118 30 -1 1 1 1 25 2 30 1 1 3 0 30 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 30 1 1 1 1 4.36 103.93 -31.30 2.97 2.01 0.00 0.00 31 -2 1 1 1 Series 31-root.new090417.118 31 -1 1 1 1 25 2 31 3 3 3 0 31 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 31 1 1 1 1 2.09 223.74 5.69 0.00 0.00 0.00 0.00 31 2 1 1 1 4.45 240.26 0.48 0.24 1.25 0.20 0.36 31 3 1 1 1 3.19 301.35 6.37 0.00 0.00 0.00 0.00 32 -2 1 1 1 Series 32-root.new090417.118 32 -1 1 1 1 31 2 32 1 1 3 0 32 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 32 1 1 1 1 4.63 337.23 2.41 0.00 0.00 0.00 0.00 33 -2 1 1 1 Series 33-root.new090417.118 33 -1 1 1 1 31 2 33 1 1 3 0 33 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 33 1 1 1 1 3.02 -1.36 5.70 0.00 0.00 0.00 0.00 34 -2 1 1 1 Series 34-root.new090417.118 34 -1 1 1 1 31 2 34 1 1 3 0 34 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 34 1 1 1 1 3.10 28.26 2.17 0.00 0.00 0.00 0.00 35 -2 1 1 1 Series 35-root.new090417.118 35 -1 1 1 1 31 2 35 1 1 3 0 35 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 35 1 1 1 1 3.63 65.63 3.17 0.00 0.00 0.00 0.00 36 -2 1 1 1 Series 36-root.new090417.118 36 -1 1 1 1 31 2 36 1 1 3 0 36 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 36 1 1 1 1 3.21 98.71 -1.01 0.00 0.00 0.00 0.00 37 -2 1 1 1 Series 37-root.new090417.118 37 -1 1 1 1 31 2 37 1 1 3 0 37 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 37 1 1 1 1 0.52 201.34 5.06 0.00 0.00 0.00 0.00 38 -2 1 1 1 Series 38-root.new090417.118 38 -1 1 1 1 31 2 38 5 5 3 0 38 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 38 1 1 1 1 3.28 99.60 1.33 3.02 0.52 0.00 0.00 38 2 1 1 1 4.79 103.75 -13.72 0.95 0.34 0.29 0.19 38 3 1 1 1 2.37 119.19 -61.00 0.00 0.29 0.20 1.47 38 4 1 1 1 2.97 68.81 10.56 1.02 0.72 1.17 1.64 38 5 1 1 1 2.40 79.35 2.75 0.79 0.42 0.85 0.00 39 -2 1 1 1 Series 39-root.new090417.118 39 -1 1 1 1 38 4 39 1 1 3 0 39 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 39 1 1 1 1 3.44 197.65 3.19 0.00 0.00 0.00 0.00 40 -2 1 1 1 Series 40-root.new090417.118 40 -1 1 1 1 38 4 40 2 2 3 0 40 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 40 1 1 1 1 3.24 243.57 -25.94 0.00 0.00 0.00 0.00 40 2 1 1 1 3.12 124.37 -36.45 0.43 0.00 0.56 1.47 41 -2 1 1 1 Series 41-root.new090417.118 41 -1 1 1 1 40 1 41 8 8 3 0 41 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 41 1 1 1 1 2.46 286.46 -19.63 0.00 0.00 0.00 0.00 41 2 1 1 1 2.83 295.82 27.96 0.36 0.28 0.55 0.00 41 3 1 1 1 1.84 308.35 50.44 0.74 0.48 2.69 0.52 41 4 1 1 1 7.35 224.82 12.38 0.00 0.00 0.00 0.00 41 5 1 1 1 1.07 263.74 18.38 0.00 0.56 1.05 0.35 41 6 1 1 1 2.40 110.15 14.37 0.51 0.57 0.54 0.50 41 7 1 1 1 2.52 130.61 26.44 0.79 0.53 0.50 0.91 41 8 1 1 1 3.85 -1.07 2.48 0.00 0.00 0.00 0.00 42 -2 1 1 1 Series 42-root.new090417.118 42 -1 1 1 1 41 7 42 1 1 3 0 42 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 42 1 1 1 1 5.83 315.31 2.51 0.00 0.00 0.00 0.00 43 -2 1 1 1 Series 43-root.new090417.118 43 -1 1 1 1 41 7 43 1 1 3 0 43 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 43 1 1 1 1 10.34 294.35 3.28 0.00 0.00 0.00 0.00 44 -2 1 1 1 Series 44-root.new090417.118 44 -1 1 1 1 41 7 44 1 1 3 0 44 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 44 1 1 1 1 10.79 284.67 3.18 0.00 0.00 0.00 0.00 45 -2 1 1 1 Series 45-root.new090417.118 45 -1 1 1 1 41 7 45 1 1 3 0 45 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 45 1 1 1 1 2.68 264.62 5.84 0.00 0.00 0.00 0.00 46 -2 1 1 1 Series 46-root.new090417.118 46 -1 1 1 1 41 7 46 1 1 3 0 46 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 46 1 1 1 1 0.50 170.37 13.22 0.00 0.00 0.00 0.00 47 -2 1 1 1 Series 47-root.new090417.118 47 -1 1 1 1 41 7 47 2 2 3 0 47 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 47 1 1 1 1 2.50 61.01 0.33 5.83 0.50 0.00 0.00 47 2 1 1 1 0.36 39.52 84.49 0.00 0.00 0.00 0.00 48 -2 1 1 1 Series 48-root.new090417.118 48 -1 1 1 1 47 1 48 1 1 3 0 48 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 48 1 1 1 1 2.01 356.09 2.41 0.00 0.00 0.00 0.00 49 -2 1 1 1 Series 49-root.new090417.118 49 -1 1 1 1 47 1 49 1 1 3 0 49 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 49 1 1 1 1 0.55 160.42 4.70 0.00 0.00 0.00 0.00 50 -2 1 1 1 Series 50-root.new090417.118 50 -1 1 1 1 47 1 50 1 1 3 0 50 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 50 1 1 1 1 2.61 85.18 -2.01 0.00 0.00 0.00 0.00 51 -2 1 1 1 Series 51-root.new090417.118 51 -1 1 1 1 47 1 51 2 2 3 0 51 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 51 1 1 1 1 4.48 85.06 -2.01 2.01 0.55 0.36 0.00 51 2 1 1 1 3.82 85.42 -4.52 2.83 1.18 0.40 0.00 52 -2 1 1 1 Series 52-root.new090417.118 52 -1 1 1 1 41 3 52 2 2 3 0 52 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 52 1 1 1 1 1.80 308.38 50.33 0.00 0.00 0.00 0.00 52 2 1 1 1 8.85 285.90 -2.46 0.83 0.35 1.20 0.38CaveConverter_src/test/data/regression/2638_BogHole_ref.svx0000644000000000000000000000135512114041276022642 0ustar rootroot*BEGIN 2638_BogHole *CALIBRATE declination 2.28 1 0 5.10 115.00 -19.00 2 1 5.10 90.00 -0.50 3 2 4.60 34.00 4.00 4 3 11.00 13.00 1.00 5 4 22.40 98.00 -1.50 6 5 10.30 114.00 8.00 7 6 6.20 107.00 -8.00 8 7 4.70 34.00 7.00 9 8 3.70 81.00 -44.00 9 entr 7.50 0.00 90.00 A 7 4.30 180.00 -12.00 B A 10.70 96.00 -1.50 Z 7 5.60 89.00 12.00 Y Z 6.60 109.00 -3.00 6 61 1.40 0.00 -90.00 61 62 9.20 108.00 -12.00 62 63 10.00 105.00 -1.00 63 64 13.80 98.00 2.00 64 65 3.90 18.00 -4.00 65 66 6.00 355.00 -1.00 66 67 6.80 47.00 4.00 67 68 9.10 99.00 -5.00 68 69 13.00 4.00 -3.00 69 70 4.30 38.00 -5.00 71 70 4.90 282.00 -2.00 71 72 15.00 75.00 0.00 *END 2638_BogHole CaveConverter_src/test/data/regression/AwkwardCharsUTF8_cs_ref.svx0000644000000000000000000000711113030252172024347 0ustar rootroot*BEGIN AWKWARDCHARS *EQUATE ABC_ex.ABC06_am DEF_pl.ABC06_am *EQUATE DEF_pl.DEF07_fs GHI_lt.DEF07_fs *EQUATE GHI_lt.GHI07_at JKL-.GHI07_at *EQUATE JKL-.JKL07- MNO_asc163.JKL07- *BEGIN ABC_ex ;My Survey *DATE 1980.01.23 *CALIBRATE declination -3.0 ABC01_ex ABC02_dq 3.66 135.00 4.00 ABC02_dq ABC03_hs 4.57 130.00 3.00 ABC03_hs ABC04_dl 5.79 165.00 2.00 ABC04_dl ABC05_pc 6.71 155.00 1.00 ABC05_pc ABC06_am 4.27 140.00 0.00 ABC06_am ABC07_am 4.27 120.00 -5.00 *data passage station left right up down ABC01_ex 0.00 0.61 0.30 0.15 ABC02_dq 0.61 1.52 0.61 0.00 ABC03_hs 0.91 1.22 0.43 0.00 ABC04_dl 1.83 0.00 0.34 0.00 ABC05_pc 1.22 0.91 0.15 0.00 ABC06_am 0.91 0.61 0.15 0.67 *END ABC_ex *BEGIN DEF_pl *DATE 1980.01.24 *CALIBRATE declination -3.0 ABC06_am DEF01_sq 3.05 50.00 0.00 DEF01_sq DEF02_ob 3.66 55.00 4.00 DEF02_ob DEF03_cb 4.57 50.00 3.00 DEF03_cb DEF04_as 5.79 85.00 2.00 DEF04_as DEF05_pl 6.71 75.00 1.00 DEF05_pl DEF06_cm 4.27 60.00 0.00 DEF06_cm DEF07_fs 4.27 40.00 4.00 DEF07_fs DEF08_asc233 4.27 50.00 -5.00 *data passage station left right up down ABC06_am 0.00 0.00 0.00 0.00 DEF01_sq 0.00 0.61 0.30 0.15 DEF02_ob 0.61 1.52 0.61 0.00 DEF03_cb 0.91 1.22 0.43 0.00 DEF04_as 1.83 0.00 0.34 0.00 DEF05_pl 1.22 0.91 0.15 0.00 DEF06_cm 0.00 0.61 0.18 0.06 DEF07_fs 0.91 0.61 0.15 0.67 *END DEF_pl *BEGIN GHI_lt *DATE 1980.01.25 *CALIBRATE declination -3.0 DEF07_fs GHI01_co 3.05 20.00 0.00 GHI01_co GHI02_sc 3.66 28.00 4.00 GHI02_sc GHI03_lt 4.57 12.00 3.00 GHI03_lt GHI04_eq 5.79 18.00 2.00 GHI04_eq GHI05_gt 6.71 29.00 1.00 GHI05_gt GHI06_qm 4.27 11.00 0.00 GHI06_qm GHI07_at 4.88 8.00 0.50 GHI07_at GHI08_asc243 3.05 14.00 -5.00 *data passage station left right up down DEF07_fs 0.00 0.00 0.00 0.00 GHI01_co 0.00 0.61 0.30 0.15 GHI02_sc 0.61 1.52 0.61 0.00 GHI03_lt 0.91 1.22 0.43 0.00 GHI04_eq 1.83 0.00 0.34 0.00 GHI05_gt 1.22 0.91 0.15 0.00 GHI06_qm 0.00 0.61 0.18 0.06 GHI07_at 0.91 0.61 0.15 0.67 *END GHI_lt *BEGIN JKL- *DATE 1980.01.26 *CALIBRATE declination -3.0 GHI07_at JKL01_os 3.05 320.00 0.00 JKL01_os JKL02_bs 3.66 328.00 4.00 JKL02_bs JKL03_cs 4.57 312.00 3.00 JKL03_cs JKL04_ht 5.79 318.00 2.00 JKL04_ht JKL05_ 6.71 329.00 1.00 JKL05_ JKL06_gr 4.88 322.00 0.50 JKL06_gr JKL07- 4.27 311.00 0.00 JKL07- JKL08_asc241 3.05 314.00 -5.00 *data passage station left right up down GHI07_at 0.00 0.00 0.00 0.00 JKL01_os 0.00 0.61 0.30 0.15 JKL02_bs 0.61 1.52 0.61 0.00 JKL03_cs 0.91 1.22 0.43 0.00 JKL04_ht 1.83 0.00 0.34 0.00 JKL05_ 0.00 0.61 0.18 0.06 JKL06_gr 1.22 0.91 0.15 0.00 JKL07- 0.91 0.61 0.15 0.67 *END JKL- *BEGIN MNO_asc163 *DATE 1980.01.27 *CALIBRATE declination -3.0 JKL07- MNO01_oc 3.05 270.00 0.00 MNO01_oc MNO02_pi 3.66 278.00 4.00 MNO02_pi MNO03_cc 4.57 262.00 3.00 MNO03_cc MNO04_ti 5.79 268.00 2.00 MNO04_ti MNO05_asc172 6.71 279.00 1.00 MNO05_asc172 MNO06_asc163 4.27 272.00 0.50 MNO06_asc163 MNO07_asc180 4.27 261.00 0.00 MNO07_asc180 MNO08_asc169 3.05 264.00 -5.00 *data passage station left right up down JKL07- 0.00 0.00 0.00 0.00 MNO01_oc 0.00 0.61 0.30 0.15 MNO02_pi 0.61 1.52 0.61 0.00 MNO03_cc 0.91 1.22 0.43 0.00 MNO04_ti 1.83 0.00 0.34 0.00 MNO05_asc172 0.00 0.61 0.18 0.06 MNO06_asc163 1.22 0.91 0.15 0.00 MNO07_asc180 0.91 0.61 0.15 0.67 *END MNO_asc163 *END AWKWARDCHARS CaveConverter_src/test/data/regression/SwilEnt_in.svx0000644000000000000000000014006113030252172022053 0ustar rootroot*BEGIN Swildons *ENTRANCE Ent ;*FIX Ent 53122.3 51308.5 237.3 ;From surface survey using two GPS fixes nearby under open clear sky *EQUATE Ent EntranceZigZags.3 *EQUATE surfacegps.4 EntranceZigZags.3 *EQUATE EntranceZigZags.5 LongDryWay.0 *EQUATE LongDryWay.5 EntranceZigZags.21 *EQUATE LongDryWay.5 ShortDryWay.pt1.0 *EQUATE LongDryWay.39 NewGrottoes.0 *EQUATE LongDryWay.62 OldGrotto2WC.4 *EQUATE LongDryWay.59 OldGrotto2WC.0 *EQUATE LongDryWay.59 ShortDryWay.pt2.3 *EQUATE OldGrotto2WC.11 WaterRift.0 *EQUATE WaterRift.4 FortyRoute.0 *EQUATE WaterRift.12 FortyRoute.11 *EQUATE LongDryWay.8 10.0 *EQUATE 10.20 LongDryWay.2 *EQUATE 10.13 20.20 *EQUATE 10.18 20.27 *EQUATE EntranceZigZags.5 20.0 *EQUATE 20.23 ShortDryWay.pt1.3 *EQUATE 20.19 EntranceZigZags.5 *BEGIN surfacegps ;Not using blockhouse fix as GPS under trees not great. Loop error between other ;two better GPS fixes is 2.56m. These two fixes average the position of the grating ;inside the blockhouse at 53122.3 51308.5 237.3 ;Surface GPS tie in for entrance using good WAAS GPS fixes ;WSCC DistoX-Footleg *DATE 2013.06.30 *CALIBRATE declination +1.58 *FIX 0 53094 51306 245 ;WAAS fix with good clear sky view of 8 satellites *FIX 7 53119 51282 245 ;WAAS fix with good clear sky view of 8 satellites *FLAGS SURFACE 0 1 9.84 94.37 -5.88 ;stn0=left hand gate post as seen from cave entrance. GPS fixed 1 2 7.84 97.65 -8.05 2 3 11.76 94.27 -17.67 3 4 4.38 7.38 -23.29 ;stn4=rh front corner of entrance grating in blockhouse 3 5 5.45 262.93 13.06 5 6 8.80 174.95 11.61 6 7 13.78 168.31 12.55 ;stn7=2nd fence post from corner. Taller of the two fences. GPS fixed. *END surfacegps *BEGIN EntranceZigZags *DATE 2012.09.09 *CALIBRATE declination +1.70 *FLAGS SURFACE 0 1 2.98 10.26 -2.01 ;1 has magnetic problems. So surveyed to it from knot on tree opposite door=1.0 Then from knot to rear wall of blockhouse 1.0-1.2 0 2 5.24 3.23 -5.04 ;2=rawl plug on rear wall of blockhouse *FLAGS SPLAY 2 2a 5.24 182.16 5.06 2 2b 1.89 187.97 3.09 2 2c 1.91 168.82 1.18 2 2d 1.38 218.59 -0.17 2 2e 0.64 248.05 1.54 2 2f 0.68 105.32 -3.30 2 2g 1.56 140.40 -2.98 2 2h 1.84 176.52 -47.48 2 2i 1.82 167.81 -47.93 2 2j 1.54 189.90 -63.97 2 2k 1.61 132.31 -59.62 *FLAGS NOT SPLAY 2 3 2.64 166.70 -60.11 ;3=Top left corner of stream culvert when looking out of cave *FLAGS NOT SURFACE *FLAGS SPLAY 3 3a 0.22 345.81 60.30 3 3b 2.63 347.89 60.51 3 3c 0.94 9.90 76.67 3 3d 0.31 232.08 12.34 3 3e 0.35 31.05 10.29 3 3f 0.47 8.50 -70.77 *FLAGS NOT SPLAY 3 4 3.10 330.76 -25.13 *FLAGS SPLAY 4 4a 3.12 152.39 25.35 4 4b 0.56 208.59 -0.68 4 4c 0.59 140.67 80.22 4 4d 1.32 189.06 -86.08 4 4e 1.50 43.79 87.42 *FLAGS NOT SPLAY 4 5 4.51 275.80 -12.10 ;5=polished tip of pointy boulder by top of drop into lower level of chamber. Boulder is dark grey with white flecks and fossils. *FLAGS SPLAY 5 5a 4.51 94.74 12.12 5 5b 3.45 123.81 5.64 5 5c 3.51 134.15 0.14 5 5d 6.66 129.46 11.11 5 5e 2.32 149.61 -6.69 5 5f 1.64 153.47 -11.17 5 5g 0.79 252.58 -12.22 5 5h 1.22 296.10 -7.82 5 5i 2.96 296.71 -23.02 5 5j 1.51 42.54 10.51 5 5k 4.24 72.82 11.85 5 5l 0.70 333.90 81.49 5 5m 0.55 114.68 -67.13 *FLAGS NOT SPLAY 5 6 2.41 50.67 -22.33 *FLAGS SPLAY 6 6a 2.38 230.76 22.40 6 6b 0.35 2.58 81.25 6 6c 0.30 220.39 -79.38 6 6d 0.51 299.09 -0.90 6 6e 0.21 108.28 1.25 *FLAGS NOT SPLAY 6 7 1.08 37.30 11.53 *FLAGS SPLAY 7 7a 1.09 217.24 -12.21 7 7b 0.80 327.16 66.53 7 7c 4.12 176.11 -83.10 7 7d 0.72 287.69 -77.51 7 7e 0.60 292.40 -18.76 7 7f 2.02 100.10 16.73 *FLAGS NOT SPLAY 7 8 2.00 6.10 11.51 *FLAGS SPLAY 8 8a 2.00 184.82 -11.17 8 8b 1.47 98.32 -7.52 8 8c 0.19 105.24 52.84 8 8d 1.24 102.22 -61.02 8 8e 0.88 109.39 0.40 *FLAGS NOT SPLAY 8 9 1.01 56.60 0.18 ;9=bottom point of sharp vertical edge of boulder forming ceiling *FLAGS SPLAY 9 9a 1.02 236.71 -0.46 9 9b 0.48 12.78 64.51 9 9c 0.60 279.77 -8.53 9 9d 0.47 275.64 -73.34 ;9 9e 3.54 74.99 6.08 *FLAGS NOT SPLAY 9 10 3.07 336.52 5.81 ;10=bottom of cream calcite rib running down RH wall *FLAGS SPLAY 10 10a 3.08 156.19 -6.26 10 10b 0.58 232.61 -1.43 10 10c 1.31 64.76 -58.36 10 10d 1.43 101.23 -11.90 10 10e 1.14 78.33 -36.92 *FLAGS NOT SPLAY 9 11 2.42 64.64 5.29 *FLAGS SPLAY 11 11a 2.42 245.35 -5.41 11 11b 0.44 233.11 24.20 11 11c 0.20 42.71 -21.97 11 11d 0.45 239.67 46.05 11 11e 0.49 178.37 -53.68 11 11f 3.30 118.39 17.88 *FLAGS NOT SPLAY 11 12 4.50 106.56 19.29 *FLAGS SPLAY 12 12a 0.25 297.10 84.93 12 12b 0.26 127.16 -84.07 12 12c 0.60 197.87 18.66 12 12d 1.17 327.17 -9.65 12 12e 1.63 13.18 -2.28 12 12f 1.86 96.76 12.16 10 10f 3.76 209.97 51.34 *FLAGS NOT SPLAY 10 13 0.94 80.55 -45.63 *FLAGS SPLAY 13 13a 0.94 259.78 45.32 13 13b 0.84 97.15 56.57 13 13c 1.16 144.82 14.01 13 13d 0.48 130.78 -25.41 13 13e 0.58 324.87 25.54 *FLAGS NOT SPLAY 13 14 5.31 65.16 19.50 *FLAGS SPLAY 14 14a 5.82 246.22 -19.66 14 14b 0.64 206.92 -10.28 14 14c 0.54 185.33 -53.51 14 14d 0.21 279.32 69.67 14 14e 2.09 161.86 8.15 14 14f 0.85 285.98 -13.42 *FLAGS NOT SPLAY 10 15 3.27 329.15 -18.16 *FLAGS SPLAY 15 15a 3.25 149.02 17.88 15 15b 0.77 63.28 -13.22 15 15c 0.70 243.58 79.61 15 15d 0.80 97.26 -82.81 15 15e 2.37 233.98 -23.81 15 15f 0.94 168.26 10.56 *FLAGS NOT SPLAY 15 16 3.57 334.08 -6.33 *FLAGS SPLAY 16 16a 3.58 154.40 6.43 16 16b 0.29 52.63 -10.96 16 16c 0.70 63.17 -62.51 16 16d 0.73 221.54 2.28 16 16e 1.82 250.10 55.64 16 16f 0.86 237.55 47.64 16 16g 0.86 195.09 5.98 *FLAGS NOT SPLAY 16 17 2.41 207.98 -9.43 *FLAGS SPLAY 17 17a 2.40 28.72 9.44 17 17b 1.55 24.59 -70.16 17 17c 1.33 336.78 -9.34 17 17d 0.48 26.59 -33.63 17 17e 0.66 83.59 13.58 17 17f 1.67 193.75 -23.62 *FLAGS NOT SPLAY 17 18 4.05 308.01 -19.25 *FLAGS SPLAY 18 18a 4.05 128.34 19.12 18 18b 1.54 155.56 12.30 18 18c 0.60 300.02 2.80 18 18d 0.28 261.46 65.07 18 18e 0.68 182.87 -85.38 *FLAGS NOT SPLAY 18 19 2.06 211.48 -16.06 *FLAGS SPLAY 19 19a 2.04 31.72 16.13 19 19b 0.55 320.99 71.97 19 19c 1.54 308.22 -85.39 19 19d 0.46 306.67 -13.63 *FLAGS NOT SPLAY 19 20 2.94 233.55 -35.84 *FLAGS SPLAY 20 20a 2.95 53.57 35.69 20 20b 0.98 64.26 12.43 20 20c 0.93 44.01 13.78 20 20d 1.56 84.07 80.29 20 20e 1.62 301.40 -84.42 *FLAGS NOT SPLAY 20 21 2.04 14.57 -39.09 ;21= 25cm tall stumpy stalagmite on floor to left of top of Jacob's Ladder. Stn is centre of flat ring on top. *FLAGS SPLAY 21 21a 2.04 195.35 38.69 21 21b 1.80 235.96 12.16 21 21c 0.21 339.46 -76.92 21 21d 0.34 53.17 3.81 21 21e 3.17 230.10 64.31 *FLAGS NOT SPLAY *data passage station left right up down 3 0.09 0.11 0.91 0.44 4 0.56 0.00 1.49 1.31 5 1.98 4.15 0.69 0.50 6 0.49 0.19 0.35 0.29 7 0.57 1.90 0.73 4.09 8 0.00 1.34 0.15 1.09 9 0.59 3.00 0.43 0.45 10 1.97 1.09 2.93 1.11 *data passage station left right up down 9 0.38 0.87 0.43 0.45 11 0.13 1.70 0.33 0.40 12 1.63 0.57 0.25 0.26 *data passage station left right up down 10 0.54 2.34 2.93 1.11 13 0.50 1.07 0.70 0.21 14 0.54 2.05 0.20 0.44 *data passage station left right up down 10 1.97 1.09 2.93 1.11 15 2.15 0.75 0.68 0.80 16 0.83 0.18 1.51 0.62 17 1.38 1.29 0.00 1.46 18 1.46 0.38 0.25 0.68 19 0.00 0.45 0.53 1.54 20 0.00 0.89 1.53 1.62 21 1.16 0.21 2.86 0.21 *END EntranceZigZags *BEGIN LongDryWay ;Badger, Cave Ferret, Footleg *DATE 2013.02.23 *CALIBRATE declination +1.63 *EQUATE 44 46 *FLAGS SPLAY 0 0a 0.57 190.50 0.73 0 0b 0.67 258.82 80.80 0 0c 1.35 2.03 3.08 0 0d 0.56 96.94 -85.13 0 0e 4.05 271.96 -24.99 0 0f 4.25 271.79 -25.07 *FLAGS NOT SPLAY 0 1 4.08 270.72 -25.50 *FLAGS SPLAY 1 1a 1.99 51.56 -3.25 1 1b 0.46 105.97 80.16 1 1c 1.51 94.64 -80.82 1 1d 4.22 97.98 -2.77 1 1e 3.40 122.23 -12.40 1 1f 3.13 150.51 -15.80 1 1g 6.66 142.47 -10.55 *FLAGS NOT SPLAY 1 2 3.77 354.35 -29.81 ;2=bottom tip of point of flowstone on RH wall looking into cave. Two tone calcite point. *FLAGS SPLAY 2 2a 0.66 241.86 -8.20 2 2b 1.94 85.48 -81.67 2 2c 0.59 61.84 0.46 2 2d 0.74 236.38 81.47 2 2e 1.67 66.88 -56.31 2 2f 1.30 149.63 -32.25 *FLAGS NOT SPLAY 2 3 4.33 336.10 -24.79 *FLAGS SPLAY 3 3a 1.20 273.33 77.00 3 3b 0.46 54.65 1.29 3 3c 0.19 248.98 6.64 3 3d 0.49 67.19 -81.38 3 3e 0.44 244.00 2.33 *FLAGS NOT SPLAY 3 4 2.77 337.70 -4.41 *FLAGS SPLAY 4 4a 1.44 45.43 -70.35 4 4b 0.50 246.88 -7.75 4 4c 2.23 271.73 60.68 *FLAGS NOT SPLAY 4 5 3.14 343.71 -25.59 *FLAGS SPLAY 5 5a 0.31 68.00 4.55 5 5b 0.23 200.44 -82.34 5 5c 3.01 212.74 65.59 5 5d 1.83 228.77 1.96 5 5e 2.24 149.67 -4.84 5 5f 1.07 119.80 -19.64 *FLAGS NOT SPLAY 5 6 1.87 332.43 6.50 *FLAGS SPLAY 6 6a 0.33 85.05 2.16 6 6b 0.81 234.74 4.03 6 6c 0.46 76.22 -85.16 6 6d 1.31 224.58 20.79 6 6e 2.65 233.44 69.74 *FLAGS NOT SPLAY 6 7 2.26 343.32 -5.29 *FLAGS SPLAY 7 7a 0.51 89.65 -82.84 7 7b 0.44 225.38 -8.27 7 7c 1.81 226.26 51.07 *FLAGS NOT SPLAY 7 8 1.72 258.62 12.28 ;8=centre top of rounded stumpy stalagmite on wall at junction 0.82m off floor *FLAGS SPLAY 8 8a 0.79 122.45 -3.92 8 8b 0.82 125.25 -80.01 8 8c 1.02 113.36 59.45 *FLAGS NOT SPLAY 7 9 1.10 310.47 4.46 *FLAGS SPLAY 9 9a 0.57 99.03 -87.47 9 9b 0.90 250.68 3.72 9 9c 0.88 233.37 70.96 9 9d 0.60 60.03 -19.66 *FLAGS NOT SPLAY 9 10 2.37 334.59 4.19 *FLAGS SPLAY 10 10a 0.26 51.75 0.96 10 10b 0.43 43.34 -88.13 10 10c 0.44 235.87 0.68 10 10d 2.30 241.44 71.10 *FLAGS NOT SPLAY 10 11 1.12 263.77 46.91 *FLAGS SPLAY 11 11a 0.64 52.79 1.87 11 11b 1.45 190.34 76.03 11 11c 0.98 0.32 -83.36 *FLAGS NOT SPLAY 11 12 3.53 351.74 -3.89 *FLAGS SPLAY 12 12a 0.83 261.49 10.43 12 12b 1.01 249.00 60.34 *FLAGS NOT SPLAY 12 13 1.97 312.50 39.30 *FLAGS SPLAY 13 13a 0.91 98.78 -1.21 13 13b 0.46 59.54 83.75 13 13c 1.07 62.56 -71.75 *FLAGS NOT SPLAY 13 14 2.39 28.12 3.33 *FLAGS SPLAY 14 14a 1.53 267.21 -13.19 14 14b 0.59 261.25 -82.95 14 14c 0.50 137.83 73.72 *FLAGS NOT SPLAY 14 15 0.86 306.09 -13.02 ;15=notch on stal column *FLAGS SPLAY 15 15a 0.46 78.21 4.93 15 15b 0.65 248.76 6.64 15 15c 0.41 265.85 -88.54 15 15d 0.40 124.70 82.35 15 15e 0.47 23.47 0.91 *FLAGS NOT SPLAY 15 16 4.55 48.38 7.37 *FLAGS SPLAY 16 16a 2.92 223.69 -3.46 16 16b 3.00 236.59 2.01 16 16c 1.64 276.31 -3.03 16 16d 0.90 237.99 72.78 16 16e 1.59 109.59 -71.63 16 16f 2.40 204.15 -9.08 16 16g 1.26 254.43 2.93 *FLAGS NOT SPLAY 16 17 2.34 328.01 -9.83 *FLAGS SPLAY 17 17a 1.50 103.75 -2.42 17 17b 1.22 173.37 80.16 *FLAGS NOT SPLAY 17 18 2.65 86.23 -7.24 *FLAGS SPLAY 18 18a 2.10 185.84 6.37 18 18b 0.40 223.80 82.63 18 18c 0.51 10.73 10.61 18 18d 0.52 174.98 -79.44 *FLAGS NOT SPLAY 18 19 0.84 146.67 18.49 *FLAGS SPLAY 19 19a 1.39 43.52 3.89 19 19b 0.51 159.85 17.51 19 19c 0.40 97.95 87.19 *FLAGS NOT SPLAY 19 20 1.81 87.93 13.23 *FLAGS SPLAY 20 20a 0.60 43.10 4.22 20 20b 1.64 208.49 63.28 20 20c 0.87 209.39 -0.95 *FLAGS NOT SPLAY 20 21 1.73 164.45 7.33 *FLAGS SPLAY 21 21a 0.68 33.20 4.40 21 21b 1.20 234.09 82.95 21 21c 0.25 41.06 -84.36 *FLAGS NOT SPLAY 21 22 2.91 113.95 7.56 *FLAGS SPLAY 22 22a 1.33 255.18 77.95 22 22b 0.88 220.17 0.04 22 22c 0.40 136.32 -85.39 22 22d 2.39 358.28 2.05 22 22e 4.28 320.27 -8.84 *FLAGS NOT SPLAY 22 23 1.51 181.21 30.14 *FLAGS SPLAY 23 23a 0.20 214.51 -9.54 23 23b 1.26 55.54 -74.20 23 23c 0.38 35.19 9.16 23 23d 0.40 243.28 88.13 23 23e 1.79 34.58 -40.94 *FLAGS NOT SPLAY 23 24 4.59 108.18 -8.18 *FLAGS SPLAY 24 24a 2.12 27.47 19.01 24 24b 1.44 265.31 83.06 24 24c 2.74 209.33 20.17 24 24d 3.06 204.37 31.06 24 24e 2.70 172.96 38.49 24 24f 2.76 119.14 44.68 24 24g 4.29 105.49 35.63 24 24h 3.31 94.03 37.41 24 24i 3.41 321.99 7.71 *FLAGS NOT SPLAY 24 25 3.22 188.75 35.45 ;25=tip of obvious pointed boulder in middle of lower section *FLAGS SPLAY 25 25a 1.17 228.03 4.30 25 25b 2.44 342.35 79.94 25 25c 0.87 172.80 80.92 25 25d 0.37 33.36 9.50 25 25e 4.18 97.27 36.04 *FLAGS NOT SPLAY 25 26 4.13 139.60 16.69 *FLAGS SPLAY 26 26a 0.48 231.41 -0.43 26 26b 0.56 131.73 89.68 26 26c 1.15 13.53 28.43 26 26d 0.53 146.88 -77.01 26 26e 3.06 118.05 16.64 *FLAGS NOT SPLAY 25 27 4.94 97.33 39.05 *FLAGS SPLAY 27 27a 0.53 73.50 39.91 27 27b 2.86 145.99 24.42 27 27c 2.08 181.17 14.96 27 27d 3.64 159.34 16.76 *FLAGS NOT SPLAY 24 28 2.78 323.60 -24.94 ;28=shiny black square block protruding from calcite on left side of hole when looking down hole *FLAGS SPLAY 28 28a 2.01 240.61 79.48 28 28b 1.17 150.81 -80.16 28 28c 0.42 153.56 -10.07 *FLAGS NOT SPLAY 28 29 0.89 90.00 -48.92 *FLAGS SPLAY 29 29a 0.66 345.81 68.52 29 29b 0.74 153.15 1.62 29 29c 0.65 303.35 1.69 29 29d 1.17 85.81 -77.61 29 29e 1.26 23.75 -19.21 *FLAGS NOT SPLAY 29 30 6.28 324.60 -29.83 *FLAGS SPLAY 30 30a 1.95 224.71 72.46 30 30b 1.49 213.57 5.25 30 30c 0.32 52.79 6.31 30 30d 0.43 224.41 -83.42 *FLAGS NOT SPLAY 30 31 1.55 264.23 41.75 ;31=tip of stalagmite which is 10cm below tip of stalactite above it *FLAGS SPLAY 31 31a 1.18 36.18 2.86 31 31b 1.41 7.15 4.71 31 31c 0.98 76.71 80.67 31 31d 0.43 206.64 4.65 31 31e 1.50 164.76 -87.26 *FLAGS NOT SPLAY 31 32 2.26 15.83 12.57 *FLAGS SPLAY 32 32a 0.88 258.32 -39.46 32 32b 0.41 254.53 -1.76 32 32c 0.62 258.09 37.38 32 32d 0.76 1.51 -83.57 *FLAGS NOT SPLAY 32 35 6.03 323.45 -41.61 31 34 5.13 314.22 -30.46 *FLAGS SPLAY 34 34a 1.81 117.94 6.32 34 34b 1.67 169.45 73.19 34 34c 0.78 104.73 -65.15 *FLAGS NOT SPLAY 34 35 2.76 19.79 -19.74 ;33=35 tip of little stumpy stalagmite on floor directly opposite junction *FLAGS SPLAY 35 35a 3.60 249.79 75.43 35 35b 0.58 4.89 17.88 35 35c 1.23 222.29 3.93 *FLAGS NOT SPLAY 35 36 4.45 91.00 26.23 *FLAGS SPLAY 36 36a 2.37 172.41 2.46 36 36b 2.48 280.23 82.99 36 36c 1.17 0.68 7.77 36 36d 0.38 351.51 -81.72 36 36e 4.81 16.95 43.97 *FLAGS NOT SPLAY 36 37 6.61 112.79 18.69 *FLAGS SPLAY 37 37a 2.77 143.57 88.42 37 37b 1.24 47.17 8.65 37 37c 2.20 237.64 2.14 37 37d 0.52 23.20 -72.57 *FLAGS NOT SPLAY 37 38 3.92 158.52 22.40 *FLAGS SPLAY 38 38a 2.57 265.36 79.77 38 38b 1.77 258.21 76.02 38 38c 0.83 188.45 -87.34 38 38d 1.09 247.04 2.21 38 38e 1.13 47.31 -9.21 *FLAGS NOT SPLAY 38 39 5.06 158.54 15.55 ;39=tip of little stumpy stalagmite on edge of boulder. 15cm high stal. 60cm tall boulder face. *FLAGS SPLAY 39 39a 0.81 95.41 80.83 39 39b 0.36 243.34 -2.19 39 39c 1.36 68.36 1.57 39 39d 0.31 143.52 -87.32 39 39e 2.22 37.38 14.64 39 39f 1.24 124.14 29.01 39 39g 1.52 169.90 20.43 39 39h 3.17 184.03 6.76 *FLAGS NOT SPLAY 39 40 3.30 137.29 35.75 *FLAGS SPLAY 40 40a 0.41 330.85 80.32 40 40b 0.72 24.63 16.27 40 40c 0.43 242.41 10.73 *FLAGS NOT SPLAY 40 41 1.54 156.92 21.03 *FLAGS SPLAY 41 41a 1.17 313.23 86.69 41 41b 0.76 273.70 17.56 41 41c 1.15 52.78 9.22 *FLAGS NOT SPLAY 41 42 1.23 188.42 54.13 *FLAGS SPLAY 42 42a 0.31 20.21 65.90 42 42b 0.56 64.53 1.80 42 42c 0.25 246.58 30.01 42 42d 1.21 119.22 24.03 *FLAGS NOT SPLAY 35 43 7.82 271.86 -10.72 *FLAGS SPLAY 43 43a 2.96 340.05 72.39 43 43b 0.62 18.69 7.95 43 43c 0.66 202.11 10.96 43 43d 1.72 172.80 -79.05 *FLAGS NOT SPLAY 43 44 1.58 132.75 -54.76 ;44=breast like stalagmite on floor against left wall. Right on the white nipple spot washed clean by drips. 43 45 4.22 283.16 -3.82 *FLAGS SPLAY 45 45a 0.26 5.45 2.81 45 45b 0.92 147.26 -80.05 45 45c 2.17 187.63 77.31 45 45d 1.42 144.48 74.70 45 45e 1.03 171.63 2.41 46 46a 1.17 359.83 20.74 46 46b 1.04 279.77 44.73 *FLAGS NOT SPLAY 46 47 4.08 278.14 -22.89 ;47=little stumpy stalagmite on RH wall *FLAGS SPLAY 47 47a 1.17 175.15 69.16 47 47b 0.66 146.16 -60.94 47 47c 0.96 181.60 1.29 *FLAGS NOT SPLAY 47 48 1.62 127.59 7.41 *FLAGS SPLAY 48 48a 0.32 222.85 -13.13 48 48b 0.43 203.78 77.03 48 48c 0.71 106.46 -84.42 48 48d 6.38 143.21 1.27 48 48e 9.20 143.56 0.28 *FLAGS NOT SPLAY 45 49 2.40 265.00 1.41 ;49=nipple on tip of big stalagmite boss *FLAGS SPLAY 49 49a 2.28 354.04 78.68 49 49b 0.52 198.25 -1.65 49 49c 0.89 19.99 9.05 49 49d 0.71 358.32 -81.38 49 49e 3.78 142.08 -59.73 *FLAGS NOT SPLAY 49 50 2.06 297.62 28.08 *FLAGS SPLAY 50 50a 0.69 36.66 83.53 50 50b 0.46 191.30 6.20 50 50c 0.76 186.66 -84.09 *FLAGS NOT SPLAY 50 51 2.38 317.24 16.74 ;51=tip of larger stalagmite reaching close to ceiling *FLAGS SPLAY 51 51a 0.35 91.28 79.27 51 51b 0.67 44.19 5.41 51 51c 1.90 251.77 -12.45 51 51d 4.01 13.33 -82.25 *FLAGS NOT SPLAY 51 52 2.80 335.01 -5.36 *FLAGS SPLAY 52 52a 2.10 212.50 -9.20 52 52b 0.66 156.09 88.10 52 52c 1.10 206.43 -87.82 52 52d 0.70 140.09 -4.62 *FLAGS NOT SPLAY 52 53 8.00 77.58 15.81 52 54 2.99 251.79 -11.14 *FLAGS SPLAY 54 54a 1.50 7.07 14.17 54 54b 4.94 156.76 -77.22 54 54c 1.38 326.54 73.27 *FLAGS NOT SPLAY 54 55 2.75 287.69 -14.31 *FLAGS SPLAY 55 55a 0.48 212.28 8.16 55 55b 1.78 2.22 0.72 55 55c 1.25 356.97 51.33 55 55d 4.84 0.83 -70.83 55 55e 2.30 347.76 56.75 *FLAGS NOT SPLAY 55 56 6.04 280.29 -11.16 *FLAGS SPLAY 56 56a 2.58 173.80 -9.68 56 56b 0.91 210.62 72.78 56 56c 5.52 258.49 -78.70 56 56d 1.22 355.76 -2.47 *FLAGS NOT SPLAY 56 57 4.72 167.79 -69.81 ;57=top of rounded calcite blob stuck out from wall *FLAGS SPLAY 57 57a 5.53 35.74 84.02 57 57b 1.48 358.49 5.81 57 57c 0.71 175.94 -0.18 57 57d 0.76 90.98 -86.28 *FLAGS NOT SPLAY 57 58 6.26 266.27 3.98 *FLAGS SPLAY 58 58a 0.91 320.07 6.44 58 58b 2.54 289.66 73.92 58 58c 2.05 155.98 1.05 58 58d 0.77 137.62 -73.53 58 58e 4.37 86.04 -33.48 *FLAGS NOT SPLAY 58 59 5.34 221.34 -28.43 ;59=little dimple in middle of large stalagmite boss directly in front of you when entering from Short Dry Way *FLAGS SPLAY 59 59a 5.41 309.94 9.33 59 59b 1.86 144.63 3.09 59 59c 3.04 302.62 79.62 59 59d 0.68 132.99 -79.35 59 59e 4.71 353.28 -42.52 59 59f 2.89 67.97 28.72 59 59g 2.49 85.86 13.93 59 59h 2.95 112.78 22.54 59 59i 1.83 207.67 8.62 59 59j 5.28 237.30 -3.61 59 59k 5.32 272.91 -3.40 59 59l 3.22 8.05 23.97 *FLAGS NOT SPLAY 59 60 3.64 249.87 -18.27 *FLAGS SPLAY 60 60a 2.91 98.61 33.34 60 60b 4.04 127.08 30.32 60 60c 3.55 153.59 27.64 60 60d 5.46 181.97 11.17 60 60e 2.54 10.68 -16.02 60 60f 3.08 23.70 -10.67 60 60g 4.51 196.88 -31.47 *FLAGS NOT SPLAY 60 61 6.14 188.00 -36.35 *FLAGS SPLAY 61 61a 0.93 109.00 -3.73 61 61b 4.46 154.64 72.91 61 61c 3.27 191.41 -82.47 *FLAGS NOT SPLAY 61 62 1.04 31.64 -42.73 *data passage station left right up down 0 0.56 1.34 0.66 0.56 1 1.13 1.96 0.46 1.49 2 0.63 0.92 0.74 1.91 3 0.44 0.45 1.17 0.48 4 1.02 0.00 1.95 1.36 5 1.73 0.62 2.74 0.23 6 1.12 0.32 2.48 0.46 7 1.10 0.00 1.41 0.50 8 0.55 0.00 0.88 0.81 *data passage station left right up down 7 1.12 0.00 1.41 0.50 9 0.85 0.56 0.83 0.57 10 0.39 0.24 2.18 0.43 11 0.00 0.61 1.41 0.97 12 0.77 0.00 0.88 0.00 13 0.00 0.86 0.46 1.02 14 1.47 0.00 0.48 0.59 15 0.61 0.45 0.40 0.41 16 2.24 0.00 0.86 1.51 17 0.00 1.46 1.20 0.00 18 0.48 1.95 0.40 0.51 19 1.33 0.33 0.40 0.00 20 0.60 0.87 1.46 0.00 21 0.65 0.00 1.19 0.25 22 1.22 0.84 1.30 0.40 23 1.27 0.18 0.40 1.22 24 3.04 1.76 1.43 0.00 25 3.11 1.05 0.86 0.00 26 1.08 0.47 0.56 0.51 *data passage station left right up down 25 2.42 1.16 0.86 0.00 27 0.16 3.08 0.34 0.00 *data passage station left right up down 24 1.76 3.04 1.43 0.00 28 0.00 0.00 1.98 1.15 29 0.64 0.60 0.61 1.15 30 1.46 0.28 1.86 0.43 31 0.39 1.15 0.96 1.50 32 0.68 0.00 0.38 0.75 *data passage station left right up down 31 0.43 1.38 0.96 1.50 34 0.00 1.36 1.60 0.70 35 0.55 0.93 3.48 0.00 36 3.45 2.23 2.46 0.38 37 1.22 2.15 2.77 0.50 38 1.04 1.09 2.53 0.83 39 2.01 1.86 0.80 0.31 40 0.59 0.42 0.40 0.00 41 0.98 0.71 1.17 0.00 42 1.04 0.19 0.28 0.00 *data passage station left right up down 35 0.93 0.55 3.48 0.00 43 0.61 0.64 2.82 1.68 *data passage station left right up down 43 0.62 0.61 2.82 1.68 45 1.00 0.26 2.12 0.91 *data passage station left right up down 46 0.00 1.08 0.73 0.00 47 0.42 0.00 1.09 0.58 *data passage station left right up down 47 0.00 0.70 1.09 0.58 48 0.00 0.31 0.42 0.70 *data passage station left right up down 45 1.00 0.26 2.12 0.91 49 1.24 0.87 2.24 0.71 50 0.42 0.00 0.69 0.75 51 1.79 0.65 0.34 3.97 52 0.00 1.39 0.66 1.10 *data passage station left right up down 52 1.39 0.00 0.66 1.10 54 0.00 1.44 1.32 4.82 55 0.45 1.75 1.92 4.58 56 0.00 0.91 0.87 5.42 57 0.47 0.00 5.50 0.75 58 2.05 0.88 2.44 0.74 59 2.29 5.14 2.99 0.67 60 3.48 1.15 1.60 2.35 61 0.00 0.00 4.26 3.24 *END LongDryWay *BEGIN ShortDryWay *EQUATE pt1.13 pt2.0 *BEGIN pt1 ;Badger, Paul Dold, Footleg *DATE 2013.02.24 *CALIBRATE declination +1.63 0 1 1.43 131.61 -13.25 *FLAGS SPLAY 1 1a 1.42 311.07 12.80 1 1b 0.58 327.33 -0.57 1 1c 0.94 171.13 -6.41 1 1d 0.50 258.56 -34.18 *FLAGS NOT SPLAY 1 2 3.89 73.29 -51.63 *FLAGS SPLAY 2 2a 3.91 252.77 52.00 2 2b 0.91 252.72 -4.04 2 2c 0.80 250.31 -35.24 2 2d 2.44 239.99 47.81 *FLAGS NOT SPLAY 2 3 4.50 170.72 19.68 ;3=tip of downward pointing rock spike on ceiling *FLAGS SPLAY 3 3a 4.46 350.50 -20.39 3 3b 0.46 71.39 -4.30 3 3c 0.39 251.63 -13.19 3 3d 1.54 358.12 82.08 3 3e 0.94 170.44 -79.46 3 3f 0.45 220.38 -6.59 *FLAGS NOT SPLAY 3 4 1.11 246.49 -14.16 *FLAGS SPLAY 4 4a 0.68 212.13 -85.64 4 4b 0.28 4.71 4.35 4 4c 0.60 345.93 65.79 4 4d 2.84 294.88 -9.50 *FLAGS NOT SPLAY 2 5 4.91 323.66 2.34 *FLAGS SPLAY 5 5a 4.91 143.73 -2.57 5 5b 0.74 236.15 -6.85 5 5c 0.87 46.77 -82.61 5 5d 1.68 227.27 67.16 5 5e 1.03 103.39 -8.81 5 5f 2.18 148.83 -2.53 *FLAGS NOT SPLAY 5 6 5.05 279.35 -25.23 *FLAGS SPLAY 6 6a 5.05 99.27 25.32 6 6b 0.58 34.79 1.49 6 6c 1.16 111.26 -85.03 6 6d 2.83 16.27 74.62 6 6e 2.60 99.05 2.63 6 6f 2.79 105.09 4.91 *FLAGS NOT SPLAY 6 7 5.02 336.36 -13.85 *FLAGS SPLAY 7 7a 5.00 156.87 13.29 7 7b 0.41 231.77 -3.06 7 7c 3.73 254.43 80.33 7 7d 0.54 182.41 -84.02 7 7e 2.55 328.39 -82.67 *FLAGS NOT SPLAY 7 8 3.19 303.08 -33.11 *FLAGS SPLAY 8 8a 3.21 123.01 33.05 8 8b 0.53 23.07 -5.56 8 8c 4.46 353.35 80.60 8 8d 1.45 224.40 -78.95 8 8e 1.87 72.08 1.35 *FLAGS NOT SPLAY 8 9 6.71 295.69 -12.15 ;9=lone little knobby white stalagmite on wall *FLAGS SPLAY 9 9a 6.72 115.55 11.83 9 9b 0.56 196.48 2.10 9 9c 1.16 244.84 81.25 9 9d 1.09 201.63 -76.54 9 9e 3.56 117.58 -4.92 *FLAGS NOT SPLAY 9 10 1.11 265.93 2.35 *FLAGS SPLAY 10 10a 1.10 86.87 -3.67 10 10b 0.45 26.25 1.63 10 10c 1.16 88.18 -83.85 10 10d 0.84 103.85 84.38 *FLAGS NOT SPLAY 10 11 4.30 323.22 3.80 *FLAGS SPLAY 11 11a 4.28 143.46 -4.52 11 11b 0.57 212.81 2.62 11 11c 2.07 237.99 81.23 11 11d 1.72 204.15 -67.89 *FLAGS NOT SPLAY 11 12 3.28 275.99 -17.30 *FLAGS SPLAY 12 12a 3.28 96.34 17.39 12 12b 0.52 17.73 -1.02 12 12c 0.81 128.05 -86.09 12 12d 1.79 345.81 78.34 *FLAGS NOT SPLAY 12 13 4.68 298.00 -3.29 *FLAGS SPLAY 13 13a 4.68 118.39 3.00 13 13b 0.57 34.60 -3.75 13 13c 0.38 17.11 84.09 13 13d 0.72 158.62 -86.15 13 13e 2.72 321.69 70.91 *FLAGS NOT SPLAY *data passage station left right up down 1 0.41 0.87 0.00 0.28 2 0.00 1.62 1.80 0.46 3 0.31 0.26 1.52 0.92 4 0.00 0.28 0.55 0.68 *data passage station left right up down 2 1.62 0.00 1.80 0.46 5 1.00 0.32 1.55 0.87 6 0.00 1.25 2.73 1.15 7 0.41 0.00 3.67 0.53 8 0.00 1.38 4.40 1.42 9 1.02 0.00 1.15 1.06 10 0.00 0.45 0.84 1.16 11 0.64 0.00 2.05 1.59 12 0.00 0.52 1.75 0.80 13 0.00 0.57 0.38 0.71 *END pt1 *BEGIN pt2 ;Badger, Paul Dold, Footleg *DATE 2013.02.24 *CALIBRATE declination +1.63 *FLAGS SPLAY 0 0a 0.57 34.03 -0.51 0 0b 0.76 110.14 -85.72 0 0c 2.74 327.08 86.41 *FLAGS NOT SPLAY 0 1 3.20 316.66 0.98 *FLAGS SPLAY 1 1a 3.22 136.76 -1.39 1 1b 0.57 38.38 3.06 1 1c 1.47 103.34 -84.18 1 1d 2.40 260.62 87.93 *FLAGS NOT SPLAY 1 2 7.10 308.84 -15.08 *FLAGS SPLAY 2 2a 7.10 128.55 14.54 2 2b 0.66 194.88 1.13 2 2c 2.89 349.78 82.91 2 2d 0.88 179.54 -65.42 *FLAGS NOT SPLAY 2 3 4.24 278.91 -12.53 ;Stn3=little dimple in middle of large stalagmite boss directly in front of you when entering Old Grotto from Short Dry Way = Long Dry Way stn 59 *FLAGS SPLAY 3 3a 4.21 98.44 12.28 3 3b 3.16 81.24 88.43 3 3c 0.77 354.83 -84.93 *FLAGS NOT SPLAY *data passage station left right up down 0 0.00 0.56 2.73 0.76 1 0.00 0.57 2.40 1.46 2 0.65 0.00 2.87 0.80 3 0.66 0.81 3.16 0.76 *END pt2 *END ShortDryWay *BEGIN NewGrottoes ;Badger, Paul Dold, Footleg *DATE 2013.02.24 *CALIBRATE declination +1.63 0 1 1.56 49.36 7.27 *FLAGS SPLAY 1 1a 0.50 331.16 9.17 1 1b 0.40 271.22 77.61 1 1c 0.73 254.64 -87.94 1 1d 0.61 352.02 40.11 1 1e 0.56 43.52 51.47 *FLAGS NOT SPLAY 1 2 1.75 10.53 51.20 *FLAGS SPLAY 2 2a 1.76 189.76 -51.66 2 2b 0.29 258.50 0.35 2 2c 0.88 338.65 -79.23 2 2d 0.70 150.96 76.26 *FLAGS NOT SPLAY 2 3 4.07 347.52 12.12 *FLAGS SPLAY 3 3a 4.11 169.15 -12.51 3 3b 4.10 169.13 -12.74 3 3c 1.83 347.89 14.57 3 3d 0.96 250.24 -6.20 3 3e 0.41 84.04 87.54 3 3f 0.44 216.05 -86.92 3 3g 0.82 148.72 -10.96 3 3h 1.22 190.30 -16.89 *FLAGS NOT SPLAY 3 4 3.62 50.60 25.22 *FLAGS SPLAY 4 4a 3.63 230.43 -25.57 4 4b 0.43 348.10 4.44 4 4c 1.63 170.52 -5.86 4 4d 0.89 61.11 -81.94 4 4e 2.11 344.82 -7.61 *FLAGS NOT SPLAY 4 5 3.25 67.67 12.62 *FLAGS SPLAY 5 5a 3.28 247.14 -13.26 5 5b 0.25 323.66 84.61 5 5c 0.95 170.46 5.78 5 5d 2.13 330.90 -6.07 5 5e 0.77 222.68 -84.36 *FLAGS NOT SPLAY 5 6 3.45 56.57 19.52 *FLAGS SPLAY 6 6a 3.49 237.94 -19.53 6 6b 1.42 154.07 -15.19 6 6c 0.56 71.63 -87.16 6 6d 0.62 341.85 -3.41 6 6e 2.15 233.89 -20.79 6 6f 4.02 168.54 2.89 6 6g 2.44 124.70 10.45 6 6h 1.87 106.22 14.43 6 6i 2.75 182.55 1.05 *FLAGS NOT SPLAY 6 7 1.42 151.95 -12.13 *FLAGS SPLAY 7 7a 1.42 329.66 11.34 7 7b 1.55 42.07 39.53 7 7c 3.00 180.55 4.65 7 7d 0.89 354.61 85.36 7 7e 0.44 28.33 -87.65 *FLAGS NOT SPLAY 7 8 6.30 84.91 26.43 *FLAGS SPLAY 8 8a 0.81 355.74 6.08 8 8b 0.32 173.04 9.98 8 8c 0.19 349.50 82.00 8 8d 0.36 157.86 -75.31 *FLAGS NOT SPLAY *data passage station left right up down 1 0.42 0.08 0.39 0.73 2 0.28 0.00 0.68 0.87 3 0.92 0.62 0.41 0.44 4 2.01 1.51 0.00 0.89 5 2.12 0.90 0.25 0.76 6 0.52 3.62 0.00 0.56 7 1.16 2.64 0.89 0.44 8 0.81 0.32 0.19 0.35 *END NewGrottoes *BEGIN OldGrotto2WC ;Badger, Paul Dold, Footleg *DATE 2013.02.24 *CALIBRATE declination +1.63 0 1 3.32 25.03 -14.33 *FLAGS SPLAY 1 1a 3.26 206.41 14.30 1 1b 0.98 315.03 -8.83 1 1c 0.76 174.77 -0.38 1 1d 2.49 219.51 -12.94 1 1e 1.90 280.22 -27.03 *FLAGS NOT SPLAY 1 2 5.70 255.27 -30.20 *FLAGS SPLAY 2 2a 5.71 74.10 29.84 2 2b 1.06 162.52 -1.36 2 2c 1.22 220.20 80.94 2 2d 0.39 332.89 1.22 2 2e 1.14 198.72 -82.80 *FLAGS NOT SPLAY 2 3 3.09 201.53 -10.26 *FLAGS SPLAY 3 3a 3.10 20.12 10.18 3 3b 1.30 263.57 -6.52 3 3c 0.93 284.07 -86.47 3 3d 0.93 75.35 -2.53 3 3e 0.32 234.48 85.69 *FLAGS NOT SPLAY 3 4 4.55 164.72 -15.92 ;4=small rounded boss stalagmite on calcite bridge in centre of passage. Top of boss has contour like line pattern. *FLAGS SPLAY 4 4a 4.52 344.84 15.77 4 4b 0.61 258.46 -2.19 4 4c 0.63 86.33 -2.22 4 4d 5.53 284.88 86.05 4 4e 2.47 181.69 -82.25 *FLAGS NOT SPLAY 4 5 2.38 199.29 -26.79 *FLAGS SPLAY 5 5a 2.37 18.11 26.15 5 5b 0.82 318.06 0.68 5 5c 0.73 143.34 2.75 5 5d 5.25 191.96 83.34 5 5e 1.53 247.03 -88.07 *FLAGS NOT SPLAY 5 6 6.29 239.56 -9.79 *FLAGS SPLAY 6 6a 6.26 58.58 9.67 6 6b 1.26 349.18 -5.78 6 6c 1.45 42.58 -84.89 6 6d 0.23 174.05 2.52 6 6e 4.36 340.22 65.14 *FLAGS NOT SPLAY 6 7 7.66 284.16 -7.14 *FLAGS SPLAY 7 7a 7.65 104.12 6.94 7 7b 1.11 184.42 -3.02 7 7c 1.22 315.42 -87.56 7 7d 5.90 284.36 87.68 *FLAGS NOT SPLAY 7 8 2.58 224.20 -8.54 *FLAGS SPLAY 8 8a 2.58 43.16 8.82 8 8b 1.49 307.59 -0.90 8 8c 5.16 259.48 81.94 8 8d 1.06 108.65 -87.34 *FLAGS NOT SPLAY 8 9 6.80 205.89 -6.51 *FLAGS SPLAY 9 9a 6.77 24.81 6.09 9 9b 1.40 71.99 -5.17 9 9c 3.44 82.58 71.46 9 9d 1.27 18.89 -83.92 *FLAGS NOT SPLAY 9 10 2.09 108.56 -5.31 *FLAGS SPLAY 10 10a 2.12 289.79 4.09 10 10b 1.18 243.19 -9.20 10 10c 1.15 300.27 -85.48 10 10d 5.46 281.63 67.93 *FLAGS NOT SPLAY 10 11 7.85 204.84 6.96 ;11=RH of 3 points on top of boulder as seen when entering from Old Grotto. Point chipped by bashing so has white impact marks. *FLAGS SPLAY 11 11a 7.85 23.37 -7.47 11 11b 4.04 20.69 -17.03 11 11c 4.08 31.33 -11.00 11 11d 3.58 122.93 1.76 11 11e 5.02 146.17 5.40 11 11f 3.82 258.28 -10.90 11 11g 3.95 291.06 -0.53 11 11h 5.88 341.35 -3.35 11 11i 6.54 332.39 -2.75 11 11j 3.22 124.37 87.58 11 11k 1.02 81.55 -78.82 *FLAGS NOT SPLAY *data passage station left right up down 1 2.38 0.00 0.00 0.86 2 0.97 0.38 1.20 1.13 3 0.89 1.27 0.32 0.93 4 0.63 0.60 5.51 2.45 5 0.70 0.81 5.21 1.53 6 0.23 1.80 3.96 1.45 7 1.04 0.00 5.90 1.22 8 0.00 1.49 5.10 1.06 9 1.39 0.00 3.26 1.26 10 0.00 1.68 5.06 1.15 11 4.27 5.18 3.22 1.00 *END OldGrotto2WC *BEGIN FortyRoute ;WSCC DistoX-Footleg ;PDA-Ben Kent *DATE 2013.06.29 *CALIBRATE declination +1.58 *FLAGS SPLAY 0 0a 1.22 222.85 -1.27 0 0b 1.46 156.87 -86.76 0 0c 1.04 248.22 75.18 *FLAGS NOT SPLAY 0 1 2.76 327.91 18.03 ;0=calcite testicle. Tie in stn for stream level survey *FLAGS SPLAY 1 1a 2.78 146.77 -18.73 1 1b 0.75 233.19 -9.76 1 1c 3.76 236.60 -61.01 1 1d 5.96 283.50 83.29 *FLAGS NOT SPLAY 1 2 5.35 306.91 5.35 *FLAGS SPLAY 2 2a 5.34 127.04 -5.34 2 2b 0.93 37.11 -9.90 2 2c 0.20 232.85 8.71 2 2d 0.77 47.20 -45.75 2 2e 5.18 303.14 -81.62 2 2f 2.15 89.72 81.91 *FLAGS NOT SPLAY 2 3 3.55 321.41 38.17 *FLAGS SPLAY 3 3a 3.53 140.66 -38.25 3 3b 0.25 241.41 3.91 3 3c 0.79 64.43 3.52 3 3d 2.35 116.75 81.52 3 3e 0.76 47.06 -63.29 3 3f 3.35 110.73 -74.59 3 3g 7.46 126.02 -72.97 *FLAGS NOT SPLAY 3 4 1.12 7.71 3.63 *FLAGS SPLAY 4 4a 1.10 186.02 -4.47 4 4b 0.67 231.66 -2.98 4 4c 2.21 239.56 80.82 4 4d 0.66 261.89 -73.67 *FLAGS NOT SPLAY 4 5 1.06 263.40 33.43 *FLAGS SPLAY 5 5a 1.05 82.92 -33.40 5 5b 0.57 40.65 -2.91 5 5c 1.16 37.56 -82.40 5 5d 1.63 42.68 77.79 *FLAGS NOT SPLAY 5 6 2.53 351.94 5.11 *FLAGS SPLAY 6 6a 2.52 171.57 -5.45 6 6b 0.49 251.10 -0.42 6 6c 1.24 242.62 -65.46 6 6d 1.46 223.45 74.25 *FLAGS NOT SPLAY 6 7 2.96 317.31 -3.31 *FLAGS SPLAY 7 7a 2.94 137.40 3.36 7 7b 0.49 69.22 2.25 7 7c 1.67 337.77 83.13 7 7d 1.64 62.33 -86.14 *FLAGS NOT SPLAY 7 8 5.25 326.28 -29.19 *FLAGS SPLAY 8 8a 5.24 144.41 28.59 8 8b 0.86 189.62 -3.22 8 8c 0.38 17.72 -13.79 8 8d 1.17 125.13 -68.29 8 8e 1.74 198.87 87.16 8 8f 1.48 138.91 36.33 8 8g 1.35 154.31 37.64 8 8h 1.31 145.24 3.36 8 8i 1.68 357.07 -42.58 8 8j 0.97 289.48 -24.64 *FLAGS NOT SPLAY 8 9 1.45 273.15 -22.26 *FLAGS SPLAY 9 9a 1.43 93.33 24.76 9 9b 0.34 20.18 -0.69 9 9c 1.39 262.30 -4.33 9 9d 0.77 190.18 -1.47 9 9e 4.31 268.96 75.35 ;splay to old stemple belay 9 9f 0.52 82.52 -53.29 9 9g 2.71 169.49 -81.00 *FLAGS NOT SPLAY 9 10 7.65 252.29 -71.60 *FLAGS SPLAY 10 10a 7.66 71.90 71.88 10 10b 2.79 105.38 2.13 10 10c 1.94 102.39 -80.10 10 10d 2.30 52.40 -8.53 *FLAGS NOT SPLAY 10 11 2.32 146.39 -8.38 ;stn11=RH point of broken tipped stalactite at head height in middle of stream (looking downstream) *FLAGS SPLAY 11 11a 2.33 327.27 7.87 11 11b 2.32 327.44 7.88 11 11c 1.58 246.33 79.18 11 11d 1.73 335.02 -87.87 11 11e 0.62 102.51 -8.28 11 11f 0.98 265.19 1.62 *FLAGS NOT SPLAY *data passage station left right up down 0 1.18 0.00 1.00 1.45 1 1.80 0.00 5.91 3.29 2 0.20 0.91 2.13 5.13 3 0.25 0.77 2.32 3.23 4 0.66 0.00 2.18 0.63 5 0.00 0.57 1.60 1.14 6 0.51 0.00 1.40 1.12 7 0.00 0.47 1.66 1.64 8 0.81 1.04 1.74 1.09 9 0.73 0.30 4.17 2.68 10 2.78 0.00 0.00 1.91 11 0.42 0.86 1.55 1.73 *END FortyRoute *BEGIN WaterRift ;Badger, Paul Dold, Footleg, Ben Kent, Josh White . *DATE 2013.06.29 *CALIBRATE declination +1.58 *FLAGS SPLAY 0 0a 5.35 17.95 22.62 0 0b 4.13 22.58 -15.64 0 0c 8.42 335.52 5.44 0 0d 8.89 333.03 6.81 0 0e 5.30 346.43 8.54 0 0f 5.13 294.43 17.44 0 0g 7.66 281.52 0.94 0 0h 6.92 262.96 5.04 0 0i 6.86 253.61 5.31 0 0j 5.23 247.20 7.41 0 0k 3.51 202.89 21.45 0 0l 5.06 195.97 22.67 0 0m 6.28 160.68 22.30 0 0n 8.67 132.59 16.67 0 0o 6.28 121.89 11.57 0 0p 3.27 114.10 12.54 *FLAGS NOT SPLAY 0 1 5.77 334.28 -11.88 *FLAGS SPLAY 1 1a 5.76 154.47 11.49 1 1b 1.98 166.16 -38.83 1 1c 3.75 244.92 84.64 1 1d 1.82 180.79 -73.82 *FLAGS NOT SPLAY 1 2 4.33 195.52 -26.62 *FLAGS SPLAY 2 2a 4.32 13.06 26.42 2 2b 0.76 316.99 -3.19 2 2c 0.28 114.54 1.61 2 2d 1.02 123.59 -85.18 2 2e 0.70 2.62 84.20 2 2f 4.92 233.56 80.23 *FLAGS NOT SPLAY 2 3 6.36 270.39 -36.08 *FLAGS SPLAY 3 3a 6.38 90.74 35.86 3 3b 7.22 164.95 87.99 3 3c 1.50 350.89 -85.48 3 3d 0.60 17.37 -5.81 3 3e 4.37 94.08 26.89 3 3f 2.04 96.97 2.01 *FLAGS NOT SPLAY 3 4 1.54 305.04 -17.83 ;4=testicle tie in to 40 route survey *FLAGS SPLAY 4 4a 1.56 124.70 18.36 4 4b 1.18 214.55 -3.95 4 4c 1.80 281.84 -85.97 4 4d 0.92 184.19 78.11 4 4e 5.88 261.80 85.59 *FLAGS NOT SPLAY 4 5 4.45 302.01 -20.17 ;passage continues up above route to 40's splay leg is to right side back wall *FLAGS SPLAY 5 5a 4.45 122.05 20.68 5 5b 0.66 42.61 -0.43 5 5c 0.79 295.82 80.77 5 5d 3.44 40.04 71.75 5 5e 1.19 159.77 -84.25 *FLAGS NOT SPLAY 5 6 2.13 320.38 -11.71 *FLAGS SPLAY 6 6a 2.12 139.96 12.80 6 6b 0.40 65.25 1.27 6 6c 1.37 29.54 74.80 6 6d 0.97 226.69 -87.04 6 6e 1.93 9.54 -74.91 *FLAGS NOT SPLAY 6 7 5.02 333.92 -11.98 *FLAGS SPLAY 7 7a 5.07 155.07 11.54 7 7b 0.32 233.46 -2.11 7 7c 3.09 147.72 83.95 7 7d 1.42 334.08 -84.41 *FLAGS NOT SPLAY 7 8 1.63 323.46 -34.24 *FLAGS SPLAY 8 8a 1.65 141.45 35.60 8 8b 0.74 242.86 -4.71 8 8c 2.20 121.85 85.11 8 8d 0.57 265.91 -86.27 *FLAGS NOT SPLAY 8 9 6.72 325.55 -5.61 *FLAGS SPLAY 9 9a 6.71 148.04 5.85 9 9b 0.67 85.11 -3.81 9 9c 1.21 68.18 77.77 9 9d 0.38 45.26 -87.04 *FLAGS NOT SPLAY 9 10 2.39 1.38 10.24 *FLAGS SPLAY 10 10a 2.40 179.07 -10.67 ;top of the climb down from the water rift 10 10b 0.87 224.61 -18.06 10 10c 2.55 202.57 79.97 10 10d 1.00 211.64 -85.65 10 10e 1.28 263.59 -11.49 10 10f 1.20 324.42 7.72 *FLAGS NOT SPLAY 10 11 3.73 245.25 -24.06 *FLAGS SPLAY 11 11a 3.72 63.01 24.03 11 11b 1.16 6.02 4.03 11 11c 0.49 155.26 4.00 11 11d 2.42 200.28 -80.22 11 11e 10.92 339.54 83.66 *FLAGS NOT SPLAY 11 12 1.75 211.67 -24.54 ;12=RH point of broken tipped stalactite at head height in middle of stream (looking downstream) *FLAGS SPLAY 12 12a 1.74 34.17 24.31 12 12b 0.94 259.38 1.16 12 12c 0.59 89.49 -3.42 12 12d 1.75 155.02 -82.92 12 12e 1.64 258.51 84.25 *FLAGS NOT SPLAY 12 13 8.34 181.38 -8.14 *FLAGS SPLAY 13 13a 8.39 2.63 8.00 13 13b 0.85 281.78 -0.49 13 13c 3.43 284.92 82.46 13 13d 0.81 114.24 -89.45 13 13e 0.20 95.00 3.81 *FLAGS NOT SPLAY 13 14 4.39 179.79 -2.78 *FLAGS SPLAY 14 14a 4.39 357.83 2.72 14 14b 1.53 261.41 0.73 14 14c 3.11 221.34 84.26 14 14d 0.84 76.55 -85.25 *FLAGS NOT SPLAY 14 15 7.89 176.25 -1.64 ;15=tip of fat stalactite in middle of passage *FLAGS SPLAY 15 15a 7.89 354.31 1.68 15 15b 0.39 271.84 -0.76 15 15c 0.43 81.78 2.27 15 15d 0.98 17.06 -84.71 15 15e 3.06 326.61 82.70 *FLAGS NOT SPLAY 15 16 4.52 194.00 -4.00 ;16=tip of calcite floor mound. highest point of calcited cobbles *FLAGS SPLAY 16 16a 4.55 11.12 3.98 16 16b 1.39 8.20 -1.40 16 16c 1.31 314.18 0.17 16 16d 2.88 210.72 3.57 16 16e 2.19 158.12 24.87 16 16f 3.69 159.38 30.12 16 16g 1.68 80.18 14.09 16 16h 1.36 3.78 83.92 16 16i 0.91 118.43 -86.27 *FLAGS NOT SPLAY *data passage station left right up down 0 6.74 3.41 1.95 0.00 1 1.53 0.00 3.73 1.74 2 0.24 0.75 0.69 1.02 3 0.00 0.60 7.22 1.50 4 1.18 0.00 5.87 1.80 5 0.00 0.66 0.78 1.18 6 0.00 0.40 1.32 0.96 7 0.32 0.00 3.07 1.41 8 0.73 0.00 2.19 0.57 9 0.00 0.66 1.18 0.38 10 0.81 0.43 2.51 1.00 11 0.47 0.78 10.85 2.39 12 0.56 0.84 1.64 1.73 13 0.19 0.84 3.40 0.81 14 0.00 1.52 3.09 0.84 15 0.42 0.39 3.04 0.98 16 1.81 1.13 1.35 0.91 *END WaterRift *BEGIN 10 ;pda Badger ;distoX (Owned by Gary Cullen) operated by Paul Dold *DATE 2013.06.30 *CALIBRATE declination +1.58 *FLAGS SPLAY 0 0a 0.79 122.45 -3.92 0 0b 0.82 125.25 -80.01 0 0c 1.02 113.36 59.45 *FLAGS NOT SPLAY 0 1 2.19 193.96 16.02 *FLAGS SPLAY 1 1a 0.60 276.70 12.05 1 1b 1.13 263.53 84.69 1 1c 0.86 340.30 -87.68 1 1d 0.22 130.33 11.67 *FLAGS NOT SPLAY 1 2 1.14 228.14 32.64 *FLAGS SPLAY 2 2a 0.70 84.60 -2.91 2 2b 0.51 245.48 7.63 2 2c 0.88 181.29 75.58 2 2d 1.15 205.42 -86.76 *FLAGS NOT SPLAY 2 3 3.27 163.30 -22.86 *FLAGS SPLAY 3 3a 0.64 68.81 -0.15 3 3b 1.80 103.28 -83.45 3 3c 1.69 279.44 83.39 3 3d 1.80 104.43 -50.09 3 3e 0.90 125.15 -23.23 3 3f 0.84 162.44 -25.10 3 3g 0.53 177.50 -0.32 *FLAGS NOT SPLAY 3 4 6.91 267.13 3.53 ;3 to 4 dig 4 being centre of dig face, muddy floor dig face muddy and pebbly *FLAGS SPLAY 4 4a 0.55 178.10 2.86 4 4b 0.33 358.62 9.99 4 4c 0.38 76.20 84.09 4 4d 0.44 211.43 -83.57 *FLAGS NOT SPLAY 3 5 2.54 190.56 -63.18 *FLAGS SPLAY 5 5a 0.60 308.44 -0.68 5 5b 0.72 295.04 -61.80 *FLAGS NOT SPLAY 5 6 4.59 251.07 -25.44 *FLAGS SPLAY 6 6a 1.06 89.99 22.23 6 6b 0.26 275.62 12.96 6 6c 0.49 129.38 84.49 6 6d 1.44 31.18 16.46 *FLAGS NOT SPLAY 6 7 2.94 167.27 7.15 *FLAGS SPLAY 7 7a 1.29 326.65 -21.82 7 7b 0.99 316.84 -22.29 7 7c 0.76 256.67 -44.96 7 7d 0.98 216.45 -34.57 7 7e 0.19 302.09 85.19 7 7f 1.57 162.77 -85.97 *FLAGS NOT SPLAY 7 8 3.72 165.59 -0.44 *FLAGS SPLAY 8 8a 0.75 39.89 9.56 8 8b 0.42 37.36 78.00 8 8c 1.07 126.50 -89.16 *FLAGS NOT SPLAY 8 9 2.10 111.50 19.76 *FLAGS SPLAY 9 9a 0.90 221.02 0.31 9 9b 1.10 120.62 -83.53 9 9c 0.21 316.09 84.80 9 9d 0.25 17.06 -3.95 9 9e 1.74 167.67 -7.64 9 9f 1.77 152.97 -6.07 9 9g 3.17 165.43 5.99 ;9 station looking up stream at t junction left hand wall on roof orange white calcite tip with lines of development I.e different bands of shading 9 9h 2.88 146.54 8.77 9 9i 2.84 106.66 13.82 ;9 cross section is looking upstream 9 9j 1.24 97.33 -8.06 *FLAGS NOT SPLAY 9 10 7.71 161.72 1.86 *FLAGS SPLAY 10 10a 0.46 262.62 2.57 10 10b 0.36 13.53 -1.36 10 10c 0.65 315.92 77.50 10 10d 0.63 99.67 -84.98 *FLAGS NOT SPLAY 10 11 2.16 102.08 5.76 ;11 the centre line of the left hand passage needs to be moved so it is between the width of the drawn passage. passage continues narrows too tight 9 12 8.35 93.72 17.83 *FLAGS SPLAY 12 12a 1.67 330.14 -0.55 12 12b 0.52 155.45 -0.04 12 12c 0.44 246.87 82.62 ;12 looking downstream passage keyhole shape 12 12d 0.44 67.03 -84.94 *FLAGS NOT SPLAY 12 13 4.34 9.47 9.01 *FLAGS SPLAY 13 13a 0.79 243.90 -9.22 13 13b 0.90 67.62 -18.81 13 13c 0.65 256.16 -85.98 *FLAGS NOT SPLAY 13 14 2.15 152.81 2.05 *FLAGS SPLAY 14 14a 3.84 296.58 51.55 14 14b 4.81 296.42 51.44 14 14c 3.83 296.46 51.33 ;leg stn4 to tie in point start of dry ways not numbered on this drawing *FLAGS NOT SPLAY 13 15 3.68 88.63 11.54 *FLAGS SPLAY 15 15a 1.22 317.35 3.30 15 15b 0.85 119.43 28.64 15 15c 0.50 294.64 80.22 15 15d 0.30 71.24 -88.13 15 15e 0.53 327.66 -14.96 15 15f 0.25 257.11 80.01 *FLAGS NOT SPLAY 15 16 5.88 47.35 18.38 *FLAGS SPLAY 16 16a 0.54 335.23 0.80 16 16b 1.45 160.46 6.63 16 16c 0.27 280.29 80.80 *FLAGS NOT SPLAY 16 17 5.34 79.73 18.79 *FLAGS SPLAY 17 17a 1.70 8.32 14.34 17 17b 2.11 303.47 88.21 17 17c 0.65 314.37 -88.24 17 17d 0.83 195.12 7.12 17 17e 2.82 295.58 -11.71 17 17f 2.08 255.83 -15.91 ;17 water 17 17g 1.17 134.29 25.92 17 17h 2.06 89.62 30.46 17 17i 1.20 51.23 52.50 17 17j 3.76 32.80 57.89 17 17k 0.98 313.51 23.51 ;17 a gully leading away from the chamber although dry today 20130630 evidence at times takes water 3 3x 0.37 221.12 0.55 *FLAGS NOT SPLAY 3 18 1.80 104.97 -49.81 ;18 19 1.86 143.63 -4.35 *FLAGS SPLAY 18 18a 0.78 175.26 4.50 18 18b 0.26 37.36 24.21 18 18c 0.31 183.81 49.92 *FLAGS NOT SPLAY 14 20 3.88 295.15 51.22 ;14=point of rock in middle of floor 20=two tone calcite point tie in for long dry way survey *data passage station left right up down 1 0.21 0.53 1.13 0.86 2 0.65 0.39 0.85 1.15 3 0.70 0.29 1.68 1.79 4 0.55 0.32 0.38 0.44 *data passage station left right up down 3 0.65 0.26 1.68 1.79 5 0.00 0.60 0.00 0.63 6 0.86 0.23 0.49 0.00 7 0.00 0.62 0.19 1.57 8 0.73 0.00 0.41 1.07 9 1.38 1.52 0.21 1.09 10 0.32 0.35 0.63 0.63 *data passage station left right up down 9 0.25 2.80 0.21 1.09 12 1.65 0.50 0.44 0.44 13 0.00 0.43 0.00 0.65 14 0.00 2.86 3.76 0.00 *data passage station left right up down 13 0.20 0.00 0.00 0.65 15 1.14 0.58 0.49 0.30 16 0.54 1.43 0.27 0.00 17 1.62 0.86 2.11 0.65 *data passage station left right up down 3 0.29 0.70 1.68 1.79 18 0.24 0.60 0.24 0.00 *END 10 *BEGIN 20 ;WSCC DistoX-Footleg ;PDA-Ben Kent *DATE 2013.06.30 *CALIBRATE declination +1.58 0 1 3.87 261.79 -26.31 ;1=small grey double hump stalagmite on back wall 1 2 2.55 125.69 -19.31 *FLAGS SPLAY 2 2a 0.91 250.27 7.92 2 2b 0.77 171.08 -87.61 2 2c 0.81 255.66 49.75 2 2d 0.24 67.33 -0.18 2 2e 3.81 229.59 62.45 *FLAGS NOT SPLAY 2 3 5.29 150.86 -7.60 *FLAGS SPLAY 3 3a 0.98 5.09 -20.60 3 3b 0.45 330.90 23.74 3 3c 1.15 347.72 -26.49 *FLAGS NOT SPLAY 3 4 1.83 63.94 -43.21 *FLAGS SPLAY 4 4a 0.88 254.64 -4.95 4 4b 0.31 92.19 22.06 4 4c 0.77 180.62 67.03 4 4d 0.57 170.18 -74.58 *FLAGS NOT SPLAY 4 5 3.13 176.57 -12.17 *FLAGS SPLAY 5 5a 0.89 62.62 28.28 5 5b 0.61 237.44 -20.17 5 5c 0.89 293.48 79.22 5 5d 0.56 337.49 -44.42 *FLAGS NOT SPLAY 5 6 1.40 257.65 -52.47 *FLAGS SPLAY 6 6a 0.52 318.37 75.96 6 6b 0.35 16.99 1.82 6 6c 0.19 324.08 -71.45 *FLAGS NOT SPLAY 6 7 2.40 284.49 -13.04 *FLAGS SPLAY 7 7a 0.40 195.25 -1.25 7 7b 0.32 213.01 45.13 7 7c 0.42 157.49 -56.01 *FLAGS NOT SPLAY 3 8 2.58 64.30 1.85 ;8=calcite knob highest point on boulder *FLAGS SPLAY 8 8a 0.98 338.09 -7.20 8 8b 1.33 152.73 8.89 8 8c 0.38 331.75 81.25 8 8d 1.90 340.12 -69.71 8 8e 0.89 274.97 -54.79 8 8f 1.08 232.73 0.66 *FLAGS NOT SPLAY 8 9 2.80 61.94 1.42 *FLAGS SPLAY 9 9a 2.81 191.74 9.89 9 9b 2.16 134.18 25.75 9 9c 2.16 50.11 -6.32 9 9d 1.26 6.31 -16.99 9 9e 1.13 289.11 75.43 9 9f 2.72 79.01 66.64 9 9g 0.85 267.86 -82.70 *FLAGS NOT SPLAY 9 10 5.67 274.30 -29.92 *FLAGS SPLAY 10 10a 0.67 2.50 88.13 10 10b 0.23 135.92 -83.36 10 10c 1.22 201.08 3.08 10 10d 3.64 11.56 12.96 10 10e 1.92 335.12 9.74 10 10f 2.38 307.32 -7.29 *FLAGS NOT SPLAY 10 11 4.21 315.24 -5.18 *FLAGS SPLAY 11 11a 0.55 90.17 -18.10 11 11b 0.85 207.55 -12.11 11 11c 0.48 85.91 -82.18 11 11d 1.30 348.21 -63.09 *FLAGS NOT SPLAY 11 12 0.46 277.24 -49.35 ;12= red paint mark *FLAGS SPLAY 12 12a 0.21 238.72 1.25 *FLAGS NOT SPLAY 12 13 2.99 11.93 3.89 *FLAGS SPLAY 13 13a 1.42 174.80 78.06 13 13b 0.30 315.88 -80.15 13 13c 2.31 246.88 74.77 13 13d 1.56 189.37 17.65 13 13e 3.02 211.37 -11.39 13 13f 3.15 248.27 -16.57 13 13g 1.77 297.77 -6.34 13 13h 3.86 328.15 -4.42 13 13i 4.28 343.90 -3.07 13 13j 3.09 19.95 6.70 13 13k 4.26 37.78 13.46 13 13l 3.80 64.26 16.75 13 13m 4.72 82.28 18.14 13 13n 1.83 98.00 23.43 *FLAGS NOT SPLAY 13 14 1.51 326.89 1.17 ;14=calcite tipped spike on ceiling over pit *FLAGS SPLAY 13 13a 1.80 134.62 18.89 *FLAGS NOT SPLAY 13 15 4.27 118.28 31.59 *FLAGS SPLAY 15 15a 2.10 311.12 -18.89 15 15b 0.29 304.38 72.17 15 15c 0.86 355.38 -83.90 15 15d 1.91 225.82 -10.33 *FLAGS NOT SPLAY 15 16 2.48 36.12 13.37 *FLAGS SPLAY 16 16a 0.50 296.88 -8.43 16 16b 1.10 323.19 -84.96 16 16c 1.15 357.90 17.17 16 16d 1.74 355.61 -47.54 16 16e 3.34 281.30 -47.10 *FLAGS NOT SPLAY 16 17 3.13 327.92 82.94 *FLAGS SPLAY 17 17a 0.72 273.55 72.14 17 17b 0.51 284.99 -34.65 *FLAGS NOT SPLAY 17 18 1.35 214.32 -12.67 18 19 2.43 231.25 22.63 13 20 2.14 331.93 -1.84 *FLAGS SPLAY 20 20a 1.14 42.18 -54.87 20 20b 1.18 122.45 -68.05 20 20c 0.36 67.41 74.28 20 20d 1.30 38.86 -71.88 20 20e 1.14 43.52 -52.40 *FLAGS NOT SPLAY 20 21 2.84 49.23 -61.41 *FLAGS SPLAY 21 21a 0.38 306.70 3.51 21 21b 0.58 42.06 -16.72 21 21c 0.36 346.21 52.74 *FLAGS NOT SPLAY 21 22 1.87 345.57 -9.57 *FLAGS SPLAY 22 22a 1.17 258.11 42.02 22 22b 0.37 242.14 -55.73 22 22c 0.36 39.38 -52.79 *FLAGS NOT SPLAY 22 23 1.63 311.27 20.13 *FLAGS SPLAY 23 23a 0.42 64.58 4.20 23 23b 0.32 213.47 -9.32 23 23c 0.99 86.07 -87.31 23 23d 0.25 94.22 48.88 *FLAGS NOT SPLAY 23 24 1.57 250.05 -33.27 *FLAGS SPLAY 24 24a 0.24 7.88 -0.38 24 24b 1.15 13.91 67.66 *FLAGS NOT SPLAY 24 25 2.11 302.88 3.36 *FLAGS SPLAY 25 25a 0.59 203.43 -39.91 25 25b 0.73 124.92 74.91 25 25c 0.46 19.39 -52.00 *FLAGS NOT SPLAY 25 26 2.60 267.02 31.57 *FLAGS SPLAY 26 26a 0.45 275.41 -83.91 26 26b 0.45 328.61 -88.28 26 26c 0.40 220.39 -21.96 26 26d 0.39 207.53 -25.01 26 26e 0.45 27.25 6.50 *FLAGS NOT SPLAY 27 26 1.86 143.63 -4.35 ;Reversed leg 18-19 in Series 10 *FLAGS SPLAY 26 26a 0.44 24.90 6.93 27 27a 0.78 175.30 4.50 27 27b 0.26 37.40 24.20 27 27c 0.31 183.80 49.90 *FLAGS NOT SPLAY *data passage station left right up down 2 0.23 1.76 3.38 0.77 3 0.90 0.00 0.18 0.51 4 0.13 0.26 0.71 0.55 5 0.34 0.35 0.88 0.39 6 0.00 0.34 0.51 0.18 7 0.40 0.00 0.22 0.34 *data passage station left right up down 3 0.90 0.00 0.18 0.51 8 0.96 1.31 0.38 1.78 9 0.00 1.90 1.09 0.84 10 1.21 3.46 0.67 0.23 11 0.83 0.46 0.00 0.47 12 0.21 0.00 0.00 0.00 13 2.90 4.13 1.39 0.29 *data passage station left right up down 13 4.13 2.90 1.39 0.29 15 1.61 0.98 0.28 0.85 16 2.24 0.00 0.00 1.09 17 0.00 0.10 0.69 0.29 *data passage station left right up down 13 2.88 4.11 1.39 0.29 20 0.00 0.41 0.35 1.23 21 0.35 0.23 0.29 0.00 22 0.82 0.21 0.78 0.31 23 0.29 0.25 0.19 0.98 24 0.00 0.43 1.06 0.00 25 0.45 0.28 0.70 0.36 26 0.31 0.39 0.00 0.45 27 0.73 0.22 0.24 0.00 *END 20 *END Swildons CaveConverter_src/test/data/regression/0098_Bollon_in.svx0000644000000000000000000001176412560565154022420 0ustar rootroot*BEGIN 0098_Bollon ;Created from Survey file on Sun,07 Sep 2003.17:46:38 ;Dates surveyed : 89/7&940808&990814&010806&030809 ;Surveyors : Steve/Toby+Rob Murgatroyd Toby Chilton+SO MSmith+PP SO+killer+ ;No of stations : 184 ;Plan length : 1090.94876m ;Traverse length: 1153.75m *EXPORT 117 *FIX 0 452150 4797930 0170 *ENTRANCE 0 0 1 7.50 278.20 -42 ;* 1 2 5.40 286.20 3 ;* 2 3 9.70 285.20 7 ;* 3 4 3.60 271.20 -18 ;* 4 5 7.00 323.20 -12 ;* 5 6 3.40 23.20 -5 ;* 6 7 6.80 350.20 8 ;* 7 8 3.30 322.20 3 ;* 8 9 2.30 6.20 -4 ;* 9 10 11.10 355.20 3 ;* 10 11 2.30 327.20 0 ;* 11 12 5.20 43.20 -17 ;* 12 13 11.60 68.20 -16 ;* 13 14 5.40 69.20 -2 ;* 14 15 2.30 36.20 -32 ;* 15 16 1.00 31.20 0 ;* 16 17 7.50 348.20 23 ;* 17 18 2.20 49.20 -7 ;* 18 19 3.40 65.20 -4 ;* 19 20 4.30 107.20 -5 ;* 20 21 11.90 62.20 30 ;* 21 22 6.60 83.20 -8 ;* 22 23 4.70 122.20 -13 ;* 23 24 8.70 105.20 -7 ;* 24 25 6.30 84.20 -6 ;* 22 26 3.40 8.20 -23 ;* 26 27 2.40 18.20 -46 ;* 27 28 9.00 74.20 -19 ;* 28 29 3.00 87.20 -4 ;* 29 30 4.10 137.20 0 ;* 30 31 4.10 57.20 -11 ;* 31 32 2.10 96.20 -24 ;* 32 33 5.20 82.20 -2 ;* 33 34 4.30 97.20 -1 ;* 34 35 4.20 84.20 -2 ;* 35 36 7.20 61.20 -7 ;* 36 37 2.60 76.20 -19 ;* 37 38 2.90 77.20 2 ;* 38 39 2.70 115.20 25 ;* 39 40 2.50 114.20 -6 ;* 40 41 2.00 76.20 -18 ;* 41 42 2.00 109.20 34 ;* 42 43 1.70 98.20 0 ;* 43 44 2.10 155.20 9 ;* 44 45 2.60 182.20 36 ;* 45 46 4.30 97.20 -12 ;* 46 47 5.80 85.20 -4 ;* 47 48 6.80 22.20 -3 ;* 48 49 3.40 74.20 0 ;* 49 50 4.00 77.20 -12 ;* 12 51 6.90 326.20 -11 ;* 51 52 11.30 262.20 -23 ;* 52 53 3.70 262.20 -7 ;* 53 54 4.70 296.20 5 ;* 54 55 3.40 237.20 -9 ;* 55 56 6.10 235.20 -12 ;* 56 57 8.40 308.20 -3 ;* 57 58 6.90 278.20 0 ;* 58 59 10.30 275.20 -1 ;* 59 60 7.80 264.20 0 ;* 60 61 3.50 301.20 0 ;* 61 62 10.60 276.20 -1 ;* 62 63 7.70 276.20 0 ;* 63 64 5.30 301.10 0 ;thro sump 64 65 5.60 284.10 10 ;* 65 66 10.70 278.10 8 ;* 66 67 3.30 358.10 3 ;* 67 68 11.30 307.10 5 ;* 68 69 6.60 276.10 -12 ;RMs limit first dive 69 70 19.10 277.10 -9 ;* 70 71 5.28 33.10 -18 ;sump 2 water level 71 72 3.30 28.85 0 ;far sump pool 72 73 8.10 291.85 21 ;* 73 74 7.40 253.85 1 ;* 74 75 9.50 284.85 4 ;* 75 76 8.60 241.85 -3 ;* 76 77 3.30 277.85 -1 ;* 77 78 6.15 271.85 -1 ;* 78 79 10.50 288.85 1 ;* 79 80 8.45 274.85 -2 ;* 80 81 24.50 235.85 -1 ;* 81 82 12.40 250.85 1 ;* 82 83 4.65 227.85 -13 ;* 83 84 16.10 277.85 -6 ;* 84 85 1.20 - +V ;* 85 86 14.20 268.85 -3 ;* 86 87 14.20 275.85 0 ;edge sump 3 87 88 6.50 10.85 0 ;thro sump 88 89 3.95 318.85 0 ;* 89 90 17.80 276.85 1 ;* 90 91 12.95 254.35 7 ;* 91 92 1.50 - -V ;* 92 93 3.05 296.85 16 ;* 93 94 9.75 271.85 - ;poss passage 94 95 9.60 235.85 25 ;* 95 96 2.00 218.85 19 ;* 96 97 2.75 247.85 -12 ;cl thro muddy boulders 97 98 7.30 255.85 12 ;muddy boulders up 98 99 2.90 270.85 -26 ;shitty boulders 99 100 2.10 225.85 0 ;* 100 101 4.65 195.85 8 ;bouldrs 101 102 7.60 148.85 26 ;cl up bouldrs 102 103 13.05 226.85 39 ;on sand ramp 103 104 11.05 215.85 33 ;branch 104 105 3.00 105.85 38 ;cl up boulders 105 106 20.75 168.85 36 ;* 106 107 3.30 290.85 34 ;boulder slope 107 108 13.20 254.85 2 ;trav around bldrs; inlet to W 108 109 2.70 193.85 -43 ;* 109 110 6.80 271.85 -23 ;cl thro boulders 110 111 5.60 199.85 -36 ;* 111 112 2.75 198.85 -14 ;cl dwn thro bldrs 112 113 17.05 250.85 15 ;large collapse chmbr 113 114 16.10 245.85 -6 ;8w 4h 114 115 14.75 168.85 38 ;ramp 115 116 8.95 132.85 29 ;helic squeeze 116 117 11.60 127.85 6 ;sandy chmbr 117 118 15.50 126.85 20 ;top cl; inlet at top with draught 104 119 10.05 299.85 -35 ;down bldrs huge draught 104 120 10.80 308.15 -27 ;start cl down 120 121 5.90 204.15 -41 ;* 121 122 4.40 186.15 -57 ;dangerous cl 122 123 4.40 296.15 -65 ;on ladder 123 124 3.60 - -V ;start stream pass 124 125 3.90 211.15 7 ;mud 125 126 16.60 269.65 - ;* 126 127 9.50 217.15 21 ;top ramp from pass 127 128 5.40 189.65 14 ;way thro chk 128 129 1.70 249.65 13 ;* 129 130 4.00 293.65 31 ;* 130 131 3.60 272.15 7 ;cl into chmbr 131 132 1.90 - +V ;chmbr 132 133 6.60 217.65 13 ;stn marked 0 dig strng drft 133 134 1.20 195.45 0 ;* 134 135 3.20 281.45 -71 ;* 135 136 1.80 109.45 -44 ;* 136 137 1.60 161.45 -70 ;* 137 138 6.20 247.45 3 ;* 138 139 4.60 272.45 -6 ;* 139 140 3.60 133.45 -45 ;* 140 141 4.10 235.45 2 ;* 141 142 5.60 209.45 -9 ;* 142 143 3.70 256.45 49 ;* 143 144 4.80 272.45 8 ;* 144 145 5.00 146.45 -34 ;* 145 146 2.80 208.45 -52 ;* 146 147 2.50 212.45 15 ;* 147 148 10.30 237.45 19 ;* 148 149 10.80 287.45 -8 ;* 149 150 14.70 206.45 0 ;* 150 151 3.50 249.45 0 ;* 151 152 5.60 224.45 0 ;* 152 153 4.30 257.45 0 ;* 153 154 2.30 173.45 0 ;* 154 155 13.30 227.45 0 ;* 155 156 18.00 244.45 6 ;* 156 157 5.60 262.45 -35 ;* 157 158 12.90 220.45 0 ;* 158 159 19.30 242.45 1 ;* 159 160 13.50 240.45 14 ;* 160 161 12.00 278.45 -4 ;* 161 162 10.90 254.45 0 ;* 162 163 10.40 237.45 -9 ;* 163 164 18.00 194.45 -1 ;* 164 165 6.20 289.45 6 ;* 165 166 4.40 245.45 13 ;* 166 167 5.20 222.45 -2 ;* *END 0098_BollonCaveConverter_src/test/data/regression/0581_FlappysWorld_ss_ref.svx0000644000000000000000000000033112560565172024455 0ustar rootroot*BEGIN 0581_cave *CALIBRATE declination 2.28 2 1 2.23 258.00 25.00 3 2 6.40 246.00 0.00 4 3 7.65 257.00 3.00 4 5 4.32 240.00 -50.00 6 2 4.54 190.00 39.00 7 6 5.55 195.00 5.00 *END 0581_cave CaveConverter_src/test/data/regression/2649_Mares_from3d_ds_ref.dxf0000644000000000000000000003451312615540424024304 0ustar rootroot0 SECTION 2 HEADER 9 $EXTMIN 10 452220.000000 20 4800899.130000 30 261.730000 9 $EXTMAX 10 452310.550000 20 4800946.410000 30 274.000000 9 $PDMODE 70 3 9 $PDSIZE 40 0.80 0 ENDSEC 0 SECTION 2 TABLES 0 TABLE 2 LTYPE 70 10 0 LTYPE 2 CONTINUOUS 70 64 3 Continuous 72 65 73 0 40 0.0 0 LTYPE 2 DASHED 70 64 3 Dashed 72 65 73 2 40 2.5 49 1.25 49 -1.25 0 ENDTAB 0 TABLE 2 LAYER 70 10 0 LAYER 2 CentreLine 70 64 62 5 6 CONTINUOUS 0 LAYER 2 Stations 70 64 62 7 6 CONTINUOUS 0 LAYER 2 Labels 70 64 62 7 6 CONTINUOUS 0 LAYER 2 Surface 70 64 62 5 6 DASHED 0 LAYER 2 SurfaceStations 70 64 62 7 6 CONTINUOUS 0 LAYER 2 SurfaceLabels 70 64 62 7 6 CONTINUOUS 0 ENDTAB 0 ENDSEC 0 SECTION 2 ENTITIES 0 LINE 8 CentreLine 10 452220.00 20 4800904.00 30 274.00 11 452220.71 21 4800903.07 31 272.74 0 LINE 8 CentreLine 10 452220.71 20 4800903.07 30 272.74 11 452220.40 21 4800904.94 31 270.55 0 LINE 8 CentreLine 10 452220.40 20 4800904.94 30 270.55 11 452220.40 21 4800904.94 31 266.33 0 LINE 8 CentreLine 10 452220.40 20 4800904.94 30 266.33 11 452225.18 21 4800904.04 31 267.28 0 LINE 8 CentreLine 10 452225.18 20 4800904.04 30 267.28 11 452226.75 21 4800904.62 31 268.67 0 LINE 8 CentreLine 10 452226.75 20 4800904.62 30 268.67 11 452228.77 21 4800904.34 31 267.23 0 LINE 8 CentreLine 10 452228.77 20 4800904.34 30 267.23 11 452224.45 21 4800899.13 31 265.92 0 LINE 8 CentreLine 10 452228.77 20 4800904.34 30 267.23 11 452231.34 21 4800905.50 31 268.20 0 LINE 8 CentreLine 10 452231.34 20 4800905.50 30 268.20 11 452234.20 21 4800904.59 31 268.10 0 LINE 8 CentreLine 10 452234.20 20 4800904.59 30 268.10 11 452236.72 21 4800904.33 31 267.61 0 LINE 8 CentreLine 10 452236.72 20 4800904.33 30 267.61 11 452236.72 21 4800904.33 31 262.81 0 LINE 8 CentreLine 10 452236.72 20 4800904.33 30 267.61 11 452239.81 21 4800907.35 31 266.77 0 LINE 8 CentreLine 10 452239.81 20 4800907.35 30 266.77 11 452240.32 21 4800908.95 31 265.20 0 LINE 8 CentreLine 10 452240.32 20 4800908.95 30 265.20 11 452245.74 21 4800913.88 31 264.69 0 LINE 8 CentreLine 10 452245.74 20 4800913.88 30 264.69 11 452249.70 21 4800920.04 31 264.04 0 LINE 8 CentreLine 10 452249.70 20 4800920.04 30 264.04 11 452251.23 21 4800923.71 31 265.04 0 LINE 8 CentreLine 10 452251.23 20 4800923.71 30 265.04 11 452256.78 21 4800925.65 31 264.52 0 LINE 8 CentreLine 10 452256.78 20 4800925.65 30 264.52 11 452260.44 21 4800932.07 31 264.14 0 LINE 8 CentreLine 10 452260.44 20 4800932.07 30 264.14 11 452264.54 21 4800935.93 31 263.84 0 LINE 8 CentreLine 10 452264.54 20 4800935.93 30 263.84 11 452268.26 21 4800934.74 31 263.57 0 LINE 8 CentreLine 10 452268.26 20 4800934.74 30 263.57 11 452272.24 21 4800935.25 31 263.71 0 LINE 8 CentreLine 10 452272.24 20 4800935.25 30 263.71 11 452273.99 21 4800937.68 31 263.55 0 LINE 8 CentreLine 10 452273.99 20 4800937.68 30 263.55 11 452275.72 21 4800934.94 31 262.92 0 LINE 8 CentreLine 10 452275.72 20 4800934.94 30 262.92 11 452282.25 21 4800934.17 31 262.92 0 LINE 8 CentreLine 10 452282.25 20 4800934.17 30 262.92 11 452282.26 21 4800932.36 31 263.02 0 LINE 8 CentreLine 10 452282.26 20 4800932.36 30 263.02 11 452283.08 21 4800934.06 31 263.25 0 LINE 8 CentreLine 10 452282.26 20 4800932.36 30 263.02 11 452281.47 21 4800930.15 31 263.87 0 LINE 8 CentreLine 10 452282.25 20 4800934.17 30 262.92 11 452285.23 21 4800934.23 31 263.27 0 LINE 8 CentreLine 10 452285.23 20 4800934.23 30 263.27 11 452286.14 21 4800936.99 31 263.45 0 LINE 8 CentreLine 10 452286.14 20 4800936.99 30 263.45 11 452287.39 21 4800940.90 31 263.29 0 LINE 8 CentreLine 10 452287.39 20 4800940.90 30 263.29 11 452286.34 21 4800942.63 31 263.46 0 LINE 8 CentreLine 10 452286.34 20 4800942.63 30 263.46 11 452287.21 21 4800944.34 31 261.98 0 LINE 8 CentreLine 10 452286.34 20 4800942.63 30 263.46 11 452288.03 21 4800943.53 31 263.26 0 LINE 8 CentreLine 10 452288.03 20 4800943.53 30 263.26 11 452289.71 21 4800946.41 31 263.01 0 LINE 8 CentreLine 10 452288.03 20 4800943.53 30 263.26 11 452295.99 21 4800941.71 31 263.06 0 LINE 8 CentreLine 10 452295.99 20 4800941.71 30 263.06 11 452297.20 21 4800940.41 31 263.21 0 LINE 8 CentreLine 10 452297.20 20 4800940.41 30 263.21 11 452299.86 21 4800940.01 31 263.22 0 LINE 8 CentreLine 10 452299.86 20 4800940.01 30 263.22 11 452303.69 21 4800942.76 31 262.91 0 LINE 8 CentreLine 10 452303.69 20 4800942.76 30 262.91 11 452304.84 21 4800943.24 31 262.81 0 LINE 8 CentreLine 10 452304.84 20 4800943.24 30 262.81 11 452307.59 21 4800942.21 31 262.61 0 LINE 8 CentreLine 10 452304.84 20 4800943.24 30 262.81 11 452307.68 21 4800940.49 31 263.08 0 LINE 8 CentreLine 10 452307.68 20 4800940.49 30 263.08 11 452308.87 21 4800940.99 31 262.44 0 LINE 8 CentreLine 10 452308.87 20 4800940.99 30 262.44 11 452310.55 21 4800939.59 31 261.73 0 TEXT 8 Labels 10 452310.55 20 4800939.59 30 261.73 40 0.60 1 surveyfromdxf.seriesfromlines8.3 0 POINT 8 Stations 10 452310.55 20 4800939.59 30 261.73 0 TEXT 8 Labels 10 452308.87 20 4800940.99 30 262.44 40 0.60 1 surveyfromdxf.seriesfromlines8.2 0 POINT 8 Stations 10 452308.87 20 4800940.99 30 262.44 0 TEXT 8 Labels 10 452307.68 20 4800940.49 30 263.08 40 0.60 1 surveyfromdxf.seriesfromlines8.1 0 POINT 8 Stations 10 452307.68 20 4800940.49 30 263.08 0 TEXT 8 Labels 10 452304.84 20 4800943.24 30 262.81 40 0.60 1 surveyfromdxf.seriesfromlines8.0 0 POINT 8 Stations 10 452304.84 20 4800943.24 30 262.81 0 TEXT 8 Labels 10 452307.59 20 4800942.21 30 262.61 40 0.60 1 surveyfromdxf.seriesfromlines7.6 0 POINT 8 Stations 10 452307.59 20 4800942.21 30 262.61 0 TEXT 8 Labels 10 452304.84 20 4800943.24 30 262.81 40 0.60 1 surveyfromdxf.seriesfromlines7.5 0 POINT 8 Stations 10 452304.84 20 4800943.24 30 262.81 0 TEXT 8 Labels 10 452303.69 20 4800942.76 30 262.91 40 0.60 1 surveyfromdxf.seriesfromlines7.4 0 POINT 8 Stations 10 452303.69 20 4800942.76 30 262.91 0 TEXT 8 Labels 10 452299.86 20 4800940.01 30 263.22 40 0.60 1 surveyfromdxf.seriesfromlines7.3 0 POINT 8 Stations 10 452299.86 20 4800940.01 30 263.22 0 TEXT 8 Labels 10 452297.20 20 4800940.41 30 263.21 40 0.60 1 surveyfromdxf.seriesfromlines7.2 0 POINT 8 Stations 10 452297.20 20 4800940.41 30 263.21 0 TEXT 8 Labels 10 452295.99 20 4800941.71 30 263.06 40 0.60 1 surveyfromdxf.seriesfromlines7.1 0 POINT 8 Stations 10 452295.99 20 4800941.71 30 263.06 0 TEXT 8 Labels 10 452288.03 20 4800943.53 30 263.26 40 0.60 1 surveyfromdxf.seriesfromlines7.0 0 POINT 8 Stations 10 452288.03 20 4800943.53 30 263.26 0 TEXT 8 Labels 10 452289.71 20 4800946.41 30 263.01 40 0.60 1 surveyfromdxf.seriesfromlines6.2 0 POINT 8 Stations 10 452289.71 20 4800946.41 30 263.01 0 TEXT 8 Labels 10 452288.03 20 4800943.53 30 263.26 40 0.60 1 surveyfromdxf.seriesfromlines6.1 0 POINT 8 Stations 10 452288.03 20 4800943.53 30 263.26 0 TEXT 8 Labels 10 452286.34 20 4800942.63 30 263.46 40 0.60 1 surveyfromdxf.seriesfromlines6.0 0 POINT 8 Stations 10 452286.34 20 4800942.63 30 263.46 0 TEXT 8 Labels 10 452287.21 20 4800944.34 30 261.98 40 0.60 1 surveyfromdxf.seriesfromlines5.5 0 POINT 8 Stations 10 452287.21 20 4800944.34 30 261.98 0 TEXT 8 Labels 10 452286.34 20 4800942.63 30 263.46 40 0.60 1 surveyfromdxf.seriesfromlines5.4 0 POINT 8 Stations 10 452286.34 20 4800942.63 30 263.46 0 TEXT 8 Labels 10 452287.39 20 4800940.90 30 263.29 40 0.60 1 surveyfromdxf.seriesfromlines5.3 0 POINT 8 Stations 10 452287.39 20 4800940.90 30 263.29 0 TEXT 8 Labels 10 452286.14 20 4800936.99 30 263.45 40 0.60 1 surveyfromdxf.seriesfromlines5.2 0 POINT 8 Stations 10 452286.14 20 4800936.99 30 263.45 0 TEXT 8 Labels 10 452285.23 20 4800934.23 30 263.27 40 0.60 1 surveyfromdxf.seriesfromlines5.1 0 POINT 8 Stations 10 452285.23 20 4800934.23 30 263.27 0 TEXT 8 Labels 10 452282.25 20 4800934.17 30 262.92 40 0.60 1 surveyfromdxf.seriesfromlines5.0 0 POINT 8 Stations 10 452282.25 20 4800934.17 30 262.92 0 TEXT 8 Labels 10 452281.47 20 4800930.15 30 263.87 40 0.60 1 surveyfromdxf.seriesfromlines4.1 0 POINT 8 Stations 10 452281.47 20 4800930.15 30 263.87 0 TEXT 8 Labels 10 452282.26 20 4800932.36 30 263.02 40 0.60 1 surveyfromdxf.seriesfromlines4.0 0 POINT 8 Stations 10 452282.26 20 4800932.36 30 263.02 0 TEXT 8 Labels 10 452283.08 20 4800934.06 30 263.25 40 0.60 1 surveyfromdxf.seriesfromlines3.15 0 POINT 8 Stations 10 452283.08 20 4800934.06 30 263.25 0 TEXT 8 Labels 10 452282.26 20 4800932.36 30 263.02 40 0.60 1 surveyfromdxf.seriesfromlines3.14 0 POINT 8 Stations 10 452282.26 20 4800932.36 30 263.02 0 TEXT 8 Labels 10 452282.25 20 4800934.17 30 262.92 40 0.60 1 surveyfromdxf.seriesfromlines3.13 0 POINT 8 Stations 10 452282.25 20 4800934.17 30 262.92 0 TEXT 8 Labels 10 452275.72 20 4800934.94 30 262.92 40 0.60 1 surveyfromdxf.seriesfromlines3.12 0 POINT 8 Stations 10 452275.72 20 4800934.94 30 262.92 0 TEXT 8 Labels 10 452273.99 20 4800937.68 30 263.55 40 0.60 1 surveyfromdxf.seriesfromlines3.11 0 POINT 8 Stations 10 452273.99 20 4800937.68 30 263.55 0 TEXT 8 Labels 10 452272.24 20 4800935.25 30 263.71 40 0.60 1 surveyfromdxf.seriesfromlines3.10 0 POINT 8 Stations 10 452272.24 20 4800935.25 30 263.71 0 TEXT 8 Labels 10 452268.26 20 4800934.74 30 263.57 40 0.60 1 surveyfromdxf.seriesfromlines3.9 0 POINT 8 Stations 10 452268.26 20 4800934.74 30 263.57 0 TEXT 8 Labels 10 452264.54 20 4800935.93 30 263.84 40 0.60 1 surveyfromdxf.seriesfromlines3.8 0 POINT 8 Stations 10 452264.54 20 4800935.93 30 263.84 0 TEXT 8 Labels 10 452260.44 20 4800932.07 30 264.14 40 0.60 1 surveyfromdxf.seriesfromlines3.7 0 POINT 8 Stations 10 452260.44 20 4800932.07 30 264.14 0 TEXT 8 Labels 10 452256.78 20 4800925.65 30 264.52 40 0.60 1 surveyfromdxf.seriesfromlines3.6 0 POINT 8 Stations 10 452256.78 20 4800925.65 30 264.52 0 TEXT 8 Labels 10 452251.23 20 4800923.71 30 265.04 40 0.60 1 surveyfromdxf.seriesfromlines3.5 0 POINT 8 Stations 10 452251.23 20 4800923.71 30 265.04 0 TEXT 8 Labels 10 452249.70 20 4800920.04 30 264.04 40 0.60 1 surveyfromdxf.seriesfromlines3.4 0 POINT 8 Stations 10 452249.70 20 4800920.04 30 264.04 0 TEXT 8 Labels 10 452245.74 20 4800913.88 30 264.69 40 0.60 1 surveyfromdxf.seriesfromlines3.3 0 POINT 8 Stations 10 452245.74 20 4800913.88 30 264.69 0 TEXT 8 Labels 10 452240.32 20 4800908.95 30 265.20 40 0.60 1 surveyfromdxf.seriesfromlines3.2 0 POINT 8 Stations 10 452240.32 20 4800908.95 30 265.20 0 TEXT 8 Labels 10 452239.81 20 4800907.35 30 266.77 40 0.60 1 surveyfromdxf.seriesfromlines3.1 0 POINT 8 Stations 10 452239.81 20 4800907.35 30 266.77 0 TEXT 8 Labels 10 452236.72 20 4800904.33 30 267.61 40 0.60 1 surveyfromdxf.seriesfromlines3.0 0 POINT 8 Stations 10 452236.72 20 4800904.33 30 267.61 0 TEXT 8 Labels 10 452236.72 20 4800904.33 30 262.81 40 0.60 1 surveyfromdxf.seriesfromlines2.4 0 POINT 8 Stations 10 452236.72 20 4800904.33 30 262.81 0 TEXT 8 Labels 10 452236.72 20 4800904.33 30 267.61 40 0.60 1 surveyfromdxf.seriesfromlines2.3 0 POINT 8 Stations 10 452236.72 20 4800904.33 30 267.61 0 TEXT 8 Labels 10 452234.20 20 4800904.59 30 268.10 40 0.60 1 surveyfromdxf.seriesfromlines2.2 0 POINT 8 Stations 10 452234.20 20 4800904.59 30 268.10 0 TEXT 8 Labels 10 452231.34 20 4800905.50 30 268.20 40 0.60 1 surveyfromdxf.seriesfromlines2.1 0 POINT 8 Stations 10 452231.34 20 4800905.50 30 268.20 0 TEXT 8 Labels 10 452228.77 20 4800904.34 30 267.23 40 0.60 1 surveyfromdxf.seriesfromlines2.0 0 POINT 8 Stations 10 452228.77 20 4800904.34 30 267.23 0 TEXT 8 Labels 10 452224.45 20 4800899.13 30 265.92 40 0.60 1 surveyfromdxf.seriesfromlines1.7 0 POINT 8 Stations 10 452224.45 20 4800899.13 30 265.92 0 TEXT 8 Labels 10 452228.77 20 4800904.34 30 267.23 40 0.60 1 surveyfromdxf.seriesfromlines1.6 0 POINT 8 Stations 10 452228.77 20 4800904.34 30 267.23 0 TEXT 8 Labels 10 452226.75 20 4800904.62 30 268.67 40 0.60 1 surveyfromdxf.seriesfromlines1.5 0 POINT 8 Stations 10 452226.75 20 4800904.62 30 268.67 0 TEXT 8 Labels 10 452225.18 20 4800904.04 30 267.28 40 0.60 1 surveyfromdxf.seriesfromlines1.4 0 POINT 8 Stations 10 452225.18 20 4800904.04 30 267.28 0 TEXT 8 Labels 10 452220.40 20 4800904.94 30 266.33 40 0.60 1 surveyfromdxf.seriesfromlines1.3 0 POINT 8 Stations 10 452220.40 20 4800904.94 30 266.33 0 TEXT 8 Labels 10 452220.40 20 4800904.94 30 270.55 40 0.60 1 surveyfromdxf.seriesfromlines1.2 0 POINT 8 Stations 10 452220.40 20 4800904.94 30 270.55 0 TEXT 8 Labels 10 452220.71 20 4800903.07 30 272.74 40 0.60 1 surveyfromdxf.seriesfromlines1.1 0 POINT 8 Stations 10 452220.71 20 4800903.07 30 272.74 0 TEXT 8 Labels 10 452220.00 20 4800904.00 30 274.00 40 0.60 1 surveyfromdxf.seriesfromlines1.0 0 POINT 8 Stations 10 452220.00 20 4800904.00 30 274.00 000 ENDSEC 000 EOF CaveConverter_src/test/data/regression/2638_BogHole_in.svx0000644000000000000000000000156512560565210022503 0ustar rootroot*begin 2638_BogHole ;surveyors: Paul G, Harry Long ;name: Bog Hole (BOG=Boring Old Gits!) ;date 12-04-2007 *CALIBRATE declination 2.28 ;declination is 2 41' (2.68) for 2004 changing by 8'E per year. ; 2.55 used for 2005 ; 2.42 used for 2006 ; 2.28 used for 2007 ; 2.15 used for 2008 *FIX entr 452147 4800844 238 ;Altitude fixed using surface mesh *ENTRANCE entr 1 0 5.1 115 -19 2 1 5.1 90 -.5 3 2 4.6 34 4 4 3 11 13 1 5 4 22.4 98 -1.5 6 5 10.3 114 8 7 6 6.2 107 -8 8 7 4.7 34 7 9 8 3.7 81 -44 9 entr 7.5 - +V A 7 4.3 180 -12 B A 10.7 96 -1.5 Z 7 5.6 89 12 Y Z 6.6 109 -3 ;070412 ;Paul G Harry L 6 61 1.4 - -V 61 62 9.2 108 -12 62 63 10 105 -1 63 64 13.8 98 2 64 65 3.9 18 -4 65 66 6 355 -1 66 67 6.8 47 4 67 68 9.1 99 -5 68 69 13 4 -3 69 70 4.3 38 -5 71 70 4.9 282 -2 71 72 15 75 0; no clino - back of chamber *end 2638_BogHole CaveConverter_src/test/data/regression/Sloppy2ZigZags_pt_ref7.text0000644000000000000000000001560313030252172024444 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.uzu110810sloppypt2.161 1 -1 1 1 1 1 0 1 19 19 3 0 1 0 1 1 1 0.00 0.00 0.00 1.41 1.69 8.55 1.79 1 1 1 1 1 8.84 224.95 74.29 0.71 0.00 1.85 0.67 1 2 1 1 1 1.29 177.76 16.14 0.72 0.00 2.20 0.82 1 3 1 1 1 9.45 62.80 8.45 0.00 0.76 4.85 1.06 1 4 1 1 1 3.09 174.44 77.16 0.73 0.00 4.20 1.25 1 5 1 1 1 3.04 80.70 -0.77 0.48 0.00 4.37 0.97 1 6 1 1 1 7.44 29.62 5.20 0.00 0.73 4.95 0.72 1 7 1 1 1 5.85 35.05 1.09 1.68 0.00 8.51 0.53 1 8 1 1 1 9.45 7.85 51.31 0.00 0.68 4.43 1.86 1 9 1 1 1 2.60 65.73 -6.30 0.61 0.00 4.33 1.07 1 10 1 1 1 4.48 6.77 7.25 0.00 0.67 4.23 0.74 1 11 1 1 1 3.86 56.51 1.91 0.99 0.00 4.15 0.55 1 12 1 1 1 7.66 28.32 10.32 0.46 0.00 3.68 0.81 1 13 1 1 1 1.09 289.21 11.36 0.63 0.00 3.35 0.96 1 14 1 1 1 3.87 230.95 3.41 0.00 0.70 3.37 0.93 1 15 1 1 1 4.60 249.81 2.49 0.00 0.75 3.39 0.82 1 16 1 1 1 4.46 260.87 6.91 0.59 0.00 2.27 0.93 1 17 1 1 1 7.41 236.86 0.94 0.00 1.09 7.25 0.79 1 18 1 1 1 1.79 282.80 9.24 1.28 0.00 6.28 1.08 1 19 1 1 1 14.75 240.76 9.56 1.44 2.82 48.16 1.89 2 -2 1 1 1 Series 2-root.uzu110810sloppypt2.165 2 -1 1 1 1 1 4 2 57 57 3 0 2 0 1 1 1 0.00 0.00 0.00 0.57 0.49 3.78 1.58 2 1 1 1 1 3.48 279.26 27.52 0.95 0.00 1.66 1.40 2 2 1 1 1 2.13 189.02 1.42 0.00 0.51 1.70 1.49 2 3 1 1 1 7.43 220.22 -1.21 0.42 0.00 1.44 1.51 2 4 1 1 1 2.23 222.28 -4.17 0.53 0.00 1.47 1.29 2 5 1 1 1 3.41 203.94 2.50 0.00 0.59 1.44 1.42 2 6 1 1 1 3.12 210.10 -3.17 0.00 0.46 1.61 1.26 2 7 1 1 1 3.01 221.50 -0.83 0.00 0.00 0.00 0.00 2 8 1 1 1 1.53 225.01 0.71 0.49 0.00 1.59 1.28 2 9 1 1 1 4.13 228.74 -1.52 0.00 0.52 1.61 1.23 2 10 1 1 1 3.15 231.34 3.49 0.59 0.00 1.52 1.25 2 11 1 1 1 7.29 211.25 -3.92 0.42 0.00 1.69 1.28 2 12 1 1 1 6.48 210.26 -46.98 0.20 1.05 4.03 1.53 2 13 1 1 1 2.54 233.48 -15.60 0.58 0.00 1.47 1.63 2 14 1 1 1 1.92 200.22 -38.76 0.89 0.00 2.57 1.54 2 15 1 1 1 3.08 79.63 -16.60 0.44 0.00 1.27 1.02 2 16 1 1 1 2.89 90.67 -62.02 0.70 0.00 3.66 1.42 2 17 1 1 1 4.26 51.58 -27.46 0.00 0.32 8.36 0.85 2 18 1 1 1 4.32 44.44 -3.26 0.41 0.18 1.11 0.58 2 19 1 1 1 1.58 50.71 -1.32 2.39 0.45 0.98 0.52 2 20 1 1 1 2.13 78.12 -0.95 0.41 0.40 0.00 0.92 2 21 1 1 1 1.40 46.91 -4.57 0.99 0.00 1.14 0.37 2 22 1 1 1 3.09 4.26 -4.89 0.34 0.00 1.00 0.22 2 23 1 1 1 3.19 40.15 4.79 0.00 0.78 0.66 0.48 2 24 1 1 1 3.04 27.71 -4.19 0.00 0.34 1.46 0.44 2 25 1 1 1 5.16 25.70 -2.06 0.00 0.77 1.64 0.69 2 26 1 1 1 0.89 131.24 21.14 0.41 0.00 1.19 1.00 2 27 1 1 1 3.49 82.55 -0.49 0.37 0.00 1.21 1.09 2 28 1 1 1 4.49 55.41 0.19 0.54 0.00 0.84 1.20 2 29 1 1 1 4.20 50.71 -1.95 0.00 0.55 1.10 1.19 2 30 1 1 1 3.19 68.91 1.33 0.34 0.00 0.98 1.42 2 31 1 1 1 1.95 39.99 -0.84 0.00 0.36 1.09 1.43 2 32 1 1 1 1.18 106.78 -27.67 0.58 0.24 1.81 0.82 2 33 1 1 1 2.03 39.06 -1.30 0.53 0.00 1.79 0.81 2 34 1 1 1 4.68 59.76 1.03 0.00 0.44 1.35 0.97 2 35 1 1 1 3.57 46.05 1.36 0.00 0.48 0.75 1.24 2 36 1 1 1 2.13 84.68 -1.42 0.49 0.00 0.81 1.06 2 37 1 1 1 2.37 47.91 -8.73 0.00 0.46 1.32 0.80 2 38 1 1 1 3.65 61.15 4.37 0.43 0.00 1.03 1.02 2 39 1 1 1 2.65 23.59 -2.53 0.00 0.41 1.00 0.89 2 40 1 1 1 7.85 63.58 1.85 0.00 0.85 0.87 1.26 2 41 1 1 1 3.98 213.85 -4.71 0.00 0.48 1.04 0.97 2 42 1 1 1 2.22 231.70 0.55 0.49 0.00 1.23 1.04 2 43 1 1 1 4.04 201.86 -0.25 0.00 0.42 1.05 1.16 2 44 1 1 1 5.66 231.77 0.58 0.45 0.00 0.86 1.31 2 45 1 1 1 2.15 184.79 -5.67 0.00 0.34 1.01 1.22 2 46 1 1 1 2.69 208.08 -0.93 0.42 0.00 0.93 1.03 2 47 1 1 1 1.42 228.57 -1.37 0.41 0.00 1.15 1.16 2 48 1 1 1 2.10 238.59 0.28 0.34 0.00 1.02 1.13 2 49 1 1 1 3.47 235.36 -2.97 0.00 0.38 1.00 1.12 2 50 1 1 1 2.90 254.53 4.59 0.34 0.00 0.86 1.43 2 51 1 1 1 3.17 238.12 -3.07 0.00 0.42 0.87 1.35 2 52 1 1 1 2.60 230.18 -0.80 0.00 0.35 1.00 1.62 2 53 1 1 1 4.54 219.12 -21.78 0.68 0.00 1.98 1.12 2 54 1 1 1 1.20 179.22 -8.12 0.00 0.55 2.00 3.34 2 55 1 1 1 1.94 152.16 -70.71 0.00 1.45 3.88 1.73 2 56 1 1 1 5.60 226.25 -6.94 0.63 0.00 0.53 1.13 2 57 1 1 1 6.32 215.05 -41.16 0.99 1.90 2.95 0.37CaveConverter_src/test/data/regression/OldCompassHeaders_in.dat0000644000000000000000000000143013030252172023752 0ustar rootrootOldCompassHeaders SURVEY NAME: Footleg1 SURVEY DATE: 2 13 2014 COMMENT: SURVEY TEAM: DECLINATION: 30.00 FORMAT: DMMDLRUDLADNF CORRECTIONS: 0.00 0.00 0.00 CORRECTIONS2: 0.00 0.00 FROM TO LENGTH BEARING DIP LEFT UP DOWN RIGHT FLAGS COMMENTS 1 2 26.25 15.00 0.00 -9999.00 -9999.00 -9999.00 -9999.00 OldCompassHeaders SURVEY NAME: Footleg2 SURVEY DATE: 2 14 2014 COMMENT: SURVEY TEAM: DECLINATION: 45.00 FORMAT: DMMDLRUDLADNF CORRECTIONS: -10.00 0.00 -1.64 CORRECTIONS2: -10.00 0.00 FROM TO LENGTH BEARING DIP LEFT UP DOWN RIGHT FLAGS COMMENTS 2 3 34.45 100.00 36.87 -9999.00 -9999.00 -9999.00 -9999.00 CaveConverter_src/test/data/regression/0106_Torcon_ref.svx0000644000000000000000000000153512114041274022551 0ustar rootroot*BEGIN 0106_Torcon entr 0 20.00 220.00 -15.00 0 1 93.00 0.00 -90.00 1 2 5.00 224.03 1.00 1 3 13.70 44.03 1.00 3 4 5.00 270.00 -5.00 4 5 4.70 32.03 -1.00 5 6 2.50 62.03 -1.00 6 7 4.10 19.03 -1.00 7 8 2.30 36.03 -1.00 8 9 3.90 29.03 -1.00 9 10 4.20 42.03 -1.00 10 11 1.10 293.03 -1.00 11 12 3.20 54.03 -1.00 12 13 2.00 345.03 -1.00 13 14 4.10 65.03 -1.00 14 15 2.70 31.03 -1.00 15 16 1.50 80.03 -1.00 16 17 1.60 358.03 -1.00 17 18 2.90 37.03 -1.00 18 19 2.30 339.03 -1.00 19 20 4.70 59.03 -1.00 20 21 2.40 352.03 -1.00 21 22 2.70 64.03 -1.00 22 23 3.30 28.03 -1.00 23 24 8.00 34.03 -1.00 24 25 1.40 45.03 -1.00 25 26 9.80 23.03 -1.00 26 27 2.00 43.03 -1.00 27 28 2.80 47.03 -1.00 28 29 2.30 12.03 -1.00 29 30 6.00 16.03 -1.00 *END 0106_Torcon CaveConverter_src/test/data/regression/AwkwardCharsANSI_cs_ref.svx0000644000000000000000000000711113030252172024353 0ustar rootroot*BEGIN AWKWARDCHARS *EQUATE ABC_ex.ABC06_am DEF_pl.ABC06_am *EQUATE DEF_pl.DEF07_fs GHI_lt.DEF07_fs *EQUATE GHI_lt.GHI07_at JKL-.GHI07_at *EQUATE JKL-.JKL07- MNO_asc163.JKL07- *BEGIN ABC_ex ;My Survey *DATE 1980.01.23 *CALIBRATE declination -3.0 ABC01_ex ABC02_dq 3.66 135.00 4.00 ABC02_dq ABC03_hs 4.57 130.00 3.00 ABC03_hs ABC04_dl 5.79 165.00 2.00 ABC04_dl ABC05_pc 6.71 155.00 1.00 ABC05_pc ABC06_am 4.27 140.00 0.00 ABC06_am ABC07_am 4.27 120.00 -5.00 *data passage station left right up down ABC01_ex 0.00 0.61 0.30 0.15 ABC02_dq 0.61 1.52 0.61 0.00 ABC03_hs 0.91 1.22 0.43 0.00 ABC04_dl 1.83 0.00 0.34 0.00 ABC05_pc 1.22 0.91 0.15 0.00 ABC06_am 0.91 0.61 0.15 0.67 *END ABC_ex *BEGIN DEF_pl *DATE 1980.01.24 *CALIBRATE declination -3.0 ABC06_am DEF01_sq 3.05 50.00 0.00 DEF01_sq DEF02_ob 3.66 55.00 4.00 DEF02_ob DEF03_cb 4.57 50.00 3.00 DEF03_cb DEF04_as 5.79 85.00 2.00 DEF04_as DEF05_pl 6.71 75.00 1.00 DEF05_pl DEF06_cm 4.27 60.00 0.00 DEF06_cm DEF07_fs 4.27 40.00 4.00 DEF07_fs DEF08_asc233 4.27 50.00 -5.00 *data passage station left right up down ABC06_am 0.00 0.00 0.00 0.00 DEF01_sq 0.00 0.61 0.30 0.15 DEF02_ob 0.61 1.52 0.61 0.00 DEF03_cb 0.91 1.22 0.43 0.00 DEF04_as 1.83 0.00 0.34 0.00 DEF05_pl 1.22 0.91 0.15 0.00 DEF06_cm 0.00 0.61 0.18 0.06 DEF07_fs 0.91 0.61 0.15 0.67 *END DEF_pl *BEGIN GHI_lt *DATE 1980.01.25 *CALIBRATE declination -3.0 DEF07_fs GHI01_co 3.05 20.00 0.00 GHI01_co GHI02_sc 3.66 28.00 4.00 GHI02_sc GHI03_lt 4.57 12.00 3.00 GHI03_lt GHI04_eq 5.79 18.00 2.00 GHI04_eq GHI05_gt 6.71 29.00 1.00 GHI05_gt GHI06_qm 4.27 11.00 0.00 GHI06_qm GHI07_at 4.88 8.00 0.50 GHI07_at GHI08_asc243 3.05 14.00 -5.00 *data passage station left right up down DEF07_fs 0.00 0.00 0.00 0.00 GHI01_co 0.00 0.61 0.30 0.15 GHI02_sc 0.61 1.52 0.61 0.00 GHI03_lt 0.91 1.22 0.43 0.00 GHI04_eq 1.83 0.00 0.34 0.00 GHI05_gt 1.22 0.91 0.15 0.00 GHI06_qm 0.00 0.61 0.18 0.06 GHI07_at 0.91 0.61 0.15 0.67 *END GHI_lt *BEGIN JKL- *DATE 1980.01.26 *CALIBRATE declination -3.0 GHI07_at JKL01_os 3.05 320.00 0.00 JKL01_os JKL02_bs 3.66 328.00 4.00 JKL02_bs JKL03_cs 4.57 312.00 3.00 JKL03_cs JKL04_ht 5.79 318.00 2.00 JKL04_ht JKL05_ 6.71 329.00 1.00 JKL05_ JKL06_gr 4.88 322.00 0.50 JKL06_gr JKL07- 4.27 311.00 0.00 JKL07- JKL08_asc241 3.05 314.00 -5.00 *data passage station left right up down GHI07_at 0.00 0.00 0.00 0.00 JKL01_os 0.00 0.61 0.30 0.15 JKL02_bs 0.61 1.52 0.61 0.00 JKL03_cs 0.91 1.22 0.43 0.00 JKL04_ht 1.83 0.00 0.34 0.00 JKL05_ 0.00 0.61 0.18 0.06 JKL06_gr 1.22 0.91 0.15 0.00 JKL07- 0.91 0.61 0.15 0.67 *END JKL- *BEGIN MNO_asc163 *DATE 1980.01.27 *CALIBRATE declination -3.0 JKL07- MNO01_oc 3.05 270.00 0.00 MNO01_oc MNO02_pi 3.66 278.00 4.00 MNO02_pi MNO03_cc 4.57 262.00 3.00 MNO03_cc MNO04_ti 5.79 268.00 2.00 MNO04_ti MNO05_asc172 6.71 279.00 1.00 MNO05_asc172 MNO06_asc163 4.27 272.00 0.50 MNO06_asc163 MNO07_asc180 4.27 261.00 0.00 MNO07_asc180 MNO08_asc169 3.05 264.00 -5.00 *data passage station left right up down JKL07- 0.00 0.00 0.00 0.00 MNO01_oc 0.00 0.61 0.30 0.15 MNO02_pi 0.61 1.52 0.61 0.00 MNO03_cc 0.91 1.22 0.43 0.00 MNO04_ti 1.83 0.00 0.34 0.00 MNO05_asc172 0.00 0.61 0.18 0.06 MNO06_asc163 1.22 0.91 0.15 0.00 MNO07_asc180 0.91 0.61 0.15 0.67 *END MNO_asc163 *END AWKWARDCHARS CaveConverter_src/test/data/regression/calibrations_in.svx0000644000000000000000000000716513030252172023147 0ustar rootroot*BEGIN Swildons *EQUATE Ent EntranceZigZags.3 *EQUATE surfacegps.4 EntranceZigZags.3 *EQUATE EntranceZigZags.5 LongDryWay.part1.0 *EQUATE LongDryWay.part1.5 EntranceZigZags.21 *EQUATE EntranceZigZags.21 ShortDryWay.0 *BEGIN surfacegps *CALIBRATE declination +1.58 0 1 9.84 94.37 -5.88 1 2 7.84 97.65 -8.05 2 3 11.76 94.27 -17.67 3 4 4.38 7.38 -23.29 3 5 5.45 262.93 13.06 5 6 8.80 174.95 11.61 6 7 13.78 168.31 12.55 *END surfacegps *BEGIN EntranceZigZags *CALIBRATE declination .6 *CALIBRATE compass 1.1 *CALIBRATE clino -0.1 0 1 2.98 10.26 -2.01 0 2 5.24 3.23 -5.04 2 3 2.64 166.70 -60.11 3 4 3.10 330.76 -25.13 4 5 4.51 275.80 -12.10 5 6 2.41 50.67 -22.33 6 7 1.08 37.30 11.53 7 8 2.00 6.10 11.51 8 9 1.01 56.60 0.18 9 10 3.07 336.52 5.81 9 11 2.42 64.64 5.29 11 12 4.50 106.56 19.29 10 13 0.94 80.55 -45.63 13 14 5.31 65.16 19.50 10 15 3.27 329.15 -18.16 15 16 3.57 334.08 -6.33 16 17 2.41 207.98 -9.43 17 18 4.05 308.01 -19.25 18 19 2.06 211.48 -16.06 19 20 2.94 233.55 -35.84 20 21 2.04 14.57 -39.09 *END EntranceZigZags *BEGIN LongDryWay *CALIBRATE declination +3.63 *CALIBRATE compass -2 *CALIBRATE clino 0.1 *EQUATE part1.31 part2.31 *EQUATE part2.33 part1.35 *begin part1 *EQUATE 35 BoulderChamber.35 *EQUATE 35 DownStream.35 0 1 4.08 270.72 -25.50 1 2 3.77 354.35 -29.81 2 3 4.33 336.10 -24.79 3 4 2.77 337.70 -4.41 4 5 3.14 343.71 -25.59 5 6 1.87 332.43 6.50 6 7 2.26 343.32 -5.29 7 8 1.72 258.62 12.28 7 9 1.10 310.47 4.46 9 10 2.37 334.59 4.19 10 11 1.12 263.77 46.91 11 12 3.53 351.74 -3.89 12 13 1.97 312.50 39.30 13 14 2.39 28.12 3.33 14 15 0.86 306.09 -13.02 15 16 4.55 48.38 7.37 16 17 2.34 328.01 -9.83 17 18 2.65 86.23 -7.24 18 19 0.84 146.67 18.49 19 20 1.81 87.93 13.23 20 21 1.73 164.45 7.33 21 22 2.91 113.95 7.56 22 23 1.51 181.21 30.14 23 24 4.59 108.18 -8.18 24 25 3.22 188.75 35.45 25 26 4.13 139.60 16.69 25 27 4.94 97.33 39.05 24 28 2.78 323.60 -24.94 28 29 0.89 90.00 -48.92 29 30 6.28 324.60 -29.83 30 31 1.55 264.23 41.75 31 34 5.13 314.22 -30.46 34 35 2.76 19.79 -19.74 *BEGIN DownStream *CALIBRATE declination 0 *CALIBRATE compass 0 *CALIBRATE clino 0 *EQUATE 44 46 35 43 7.82 271.86 -10.72 43 44 1.58 132.75 -54.76 43 45 4.22 283.16 -3.82 46 47 4.08 278.14 -22.89 47 48 1.62 127.59 7.41 45 49 2.40 265.00 1.41 49 50 2.06 297.62 28.08 50 51 2.38 317.24 16.74 51 52 2.80 335.01 -5.36 52 53 8.00 77.58 15.81 52 54 2.99 251.79 -11.14 54 55 2.75 287.69 -14.31 55 56 6.04 280.29 -11.16 56 57 4.72 167.79 -69.81 57 58 6.26 266.27 3.98 58 59 5.34 221.34 -28.43 59 60 3.64 249.87 -18.27 60 61 6.14 188.00 -36.35 61 62 1.04 31.64 -42.73 *END DownStream *BEGIN BoulderChamber 35 36 4.45 91.00 26.23 36 37 6.61 112.79 18.69 37 38 3.92 158.52 22.40 38 39 5.06 158.54 15.55 39 40 3.30 137.29 35.75 40 41 1.54 156.92 21.03 41 42 1.23 188.42 54.13 *END BoulderChamber *END part1 *BEGIN part2 31 32 2.26 15.83 12.57 32 33 6.03 323.45 -41.61 *END part2 *END LongDryWay *BEGIN ShortDryWay *CALIBRATE declination +5.13 ;Declination comment *CALIBRATE compass -2.5 ;Compass calibration comment *CALIBRATE clino 0.1 ;Clino calibration comment 0 1 1.43 131.61 -13.25 1 2 3.89 73.29 -51.63 2 3 4.50 170.72 19.68 3 4 1.11 246.49 -14.16 2 5 4.91 323.66 2.34 5 6 5.05 279.35 -25.23 6 7 5.02 336.36 -13.85 7 8 3.19 303.08 -33.11 8 9 6.71 295.69 -12.15 9 10 1.11 265.93 2.35 *END ShortDryWay *END Swildons CaveConverter_src/test/data/regression/2418_Trackside_ref.svx0000644000000000000000000000100512114041272023214 0ustar rootroot*BEGIN 2418_Trackside *CALIBRATE declination 2.42 1 0 4.56 255.00 11.00 1 2 2.58 88.00 14.00 2 3 8.65 65.00 -3.00 4 3 4.83 104.00 14.00 5 3 6.65 265.00 4.00 5 6 11.45 82.00 -2.00 7 6 3.05 182.00 12.00 7 8 1.52 78.00 22.00 9 8 2.52 258.00 4.00 10 3 4.65 238.00 6.00 10 11 5.55 78.00 -12.00 12 11 3.60 216.00 -2.00 12 13 6.65 16.00 -3.00 13 14 1.00 30.00 0.00 15 14 9.10 0.00 90.00 15 16 7.68 100.00 -40.00 17 16 1.65 0.00 90.00 *END 2418_Trackside CaveConverter_src/test/data/regression/Crossover_st_cmd_ref.text0000644000000000000000000000345213030252172024320 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.CrossTest.Leg1 1 -1 1 1 1 1 0 1 5 5 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 1.10 350.00 0.00 0.00 0.00 0.00 0.00 1 2 1 1 1 1.20 0.00 0.00 0.00 0.00 0.00 0.00 1 3 1 1 1 1.30 10.00 0.00 0.00 0.00 0.00 0.00 1 4 1 1 1 1.40 5.00 0.00 0.00 0.00 0.00 0.00 1 5 1 1 1 1.50 355.00 0.00 0.00 0.00 0.00 0.00 2 -2 1 1 1 Series 2-root.CrossTest.Leg2 2 -1 1 1 1 2 0 1 2 3 3 0 2 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 1 1 1 1 2.10 90.00 0.00 0.00 0.00 0.00 0.00 2 2 1 1 1 2.20 80.00 0.00 0.00 0.00 0.00 0.00 2 3 1 1 1 2.30 100.00 0.00 0.00 0.00 0.00 0.00 3 -2 1 1 1 Series 3-root.CrossTest.Leg2 3 -1 1 1 1 1 2 3 2 2 3 0 3 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 1 1 1 1 2.40 95.00 0.00 0.00 0.00 0.00 0.00 3 2 1 1 1 2.50 85.00 0.00 0.00 0.00 0.00 0.00CaveConverter_src/test/data/regression/GourAven_ref.text0000644000000000000000000005521012115304544022533 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.GourAven2010.154 1 -1 1 1 1 1 0 1 3 3 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 2.24 138.03 28.32 0.00 0.00 0.00 0.00 1 2 1 1 1 5.91 68.94 27.68 0.00 0.00 0.00 0.00 1 3 1 1 1 1.04 45.80 83.13 0.00 0.00 0.00 0.00 2 -2 1 1 1 Series 2-root.GourAven2010.154 2 -1 1 1 1 1 2 2 1 1 3 0 2 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 1 1 1 1 1.09 151.43 -85.85 0.00 0.00 0.00 0.00 3 -2 1 1 1 Series 3-root.GourAven2010.154 3 -1 1 1 1 1 2 3 1 1 3 0 3 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 1 1 1 1 1.11 173.53 -0.10 0.00 0.00 0.00 0.00 4 -2 1 1 1 Series 4-root.GourAven2010.154 4 -1 1 1 1 1 2 4 1 1 3 0 4 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4 1 1 1 1 5.01 275.49 17.22 0.00 0.00 0.00 0.00 5 -2 1 1 1 Series 5-root.GourAven2010.154 5 -1 1 1 1 1 2 5 1 1 3 0 5 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 5 1 1 1 1 1.17 6.95 6.87 0.00 0.00 0.00 0.00 6 -2 1 1 1 Series 6-root.GourAven2010.154 6 -1 1 1 1 1 2 6 1 1 3 0 6 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6 1 1 1 1 5.95 96.18 6.04 0.00 0.00 0.00 0.00 7 -2 1 1 1 Series 7-root.GourAven2010.154 7 -1 1 1 1 1 2 7 3 3 3 0 7 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 7 1 1 1 1 5.08 325.55 56.76 5.01 5.95 1.04 1.09 7 2 1 1 1 4.92 67.91 23.86 1.33 1.82 1.04 3.64 7 3 1 1 1 2.96 25.86 70.94 0.00 0.00 0.00 0.00 8 -2 1 1 1 Series 8-root.GourAven2010.154 8 -1 1 1 1 7 2 8 1 1 3 0 8 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 8 1 1 1 1 1.76 83.53 -85.86 0.00 0.00 0.00 0.00 9 -2 1 1 1 Series 9-root.GourAven2010.154 9 -1 1 1 1 7 2 9 1 1 3 0 9 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 9 1 1 1 1 0.95 163.56 0.82 0.00 0.00 0.00 0.00 10 -2 1 1 1 Series 10-root.GourAven2010.154 10 -1 1 1 1 7 2 10 1 1 3 0 10 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 10 1 1 1 1 3.80 329.93 24.88 0.00 0.00 0.00 0.00 11 -2 1 1 1 Series 11-root.GourAven2010.154 11 -1 1 1 1 7 2 11 1 1 3 0 11 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 11 1 1 1 1 5.74 287.81 15.19 0.00 0.00 0.00 0.00 12 -2 1 1 1 Series 12-root.GourAven2010.154 12 -1 1 1 1 7 2 12 1 1 3 0 12 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 12 1 1 1 1 5.02 255.91 -9.98 0.00 0.00 0.00 0.00 13 -2 1 1 1 Series 13-root.GourAven2010.154 13 -1 1 1 1 7 2 13 1 1 3 0 13 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 13 1 1 1 1 2.80 231.26 -16.44 0.00 0.00 0.00 0.00 14 -2 1 1 1 Series 14-root.GourAven2010.154 14 -1 1 1 1 7 2 14 1 1 3 0 14 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 14 1 1 1 1 13.10 69.90 16.81 0.00 0.00 0.00 0.00 15 -2 1 1 1 Series 15-root.GourAven2010.154 15 -1 1 1 1 7 2 15 1 1 3 0 15 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 15 1 1 1 1 7.76 31.40 29.66 0.00 0.00 0.00 0.00 16 -2 1 1 1 Series 16-root.GourAven2010.154 16 -1 1 1 1 7 2 16 4 4 3 0 16 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 16 1 1 1 1 2.00 335.66 33.09 5.02 13.10 2.96 1.76 16 2 1 1 1 11.33 254.92 -5.02 1.67 2.00 1.85 0.75 16 3 1 1 1 4.83 313.49 34.36 1.21 3.67 0.92 1.13 16 4 1 1 1 5.23 71.90 81.18 0.00 0.00 0.00 0.00 17 -2 1 1 1 Series 17-root.GourAven2010.154 17 -1 1 1 1 16 3 17 1 1 3 0 17 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 17 1 1 1 1 1.34 108.48 -86.27 0.00 0.00 0.00 0.00 18 -2 1 1 1 Series 18-root.GourAven2010.154 18 -1 1 1 1 16 3 18 1 1 3 0 18 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 18 1 1 1 1 2.04 298.91 20.04 0.00 0.00 0.00 0.00 19 -2 1 1 1 Series 19-root.GourAven2010.154 19 -1 1 1 1 16 3 19 1 1 3 0 19 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 19 1 1 1 1 4.71 19.74 32.61 0.00 0.00 0.00 0.00 20 -2 1 1 1 Series 20-root.GourAven2010.154 20 -1 1 1 1 16 3 20 1 1 3 0 20 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 20 1 1 1 1 3.12 253.01 11.55 0.00 0.00 0.00 0.00 21 -2 1 1 1 Series 21-root.GourAven2010.154 21 -1 1 1 1 16 3 21 1 1 3 0 21 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 21 1 1 1 1 3.28 139.18 -6.14 0.00 0.00 0.00 0.00 22 -2 1 1 1 Series 22-root.GourAven2010.154 22 -1 1 1 1 16 3 22 1 1 3 0 22 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 22 1 1 1 1 4.05 101.61 3.40 0.00 0.00 0.00 0.00 23 -2 1 1 1 Series 23-root.GourAven2010.154 23 -1 1 1 1 16 3 23 1 1 3 0 23 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 23 1 1 1 1 4.14 67.34 18.44 0.00 0.00 0.00 0.00 24 -2 1 1 1 Series 24-root.GourAven2010.154 24 -1 1 1 1 16 3 24 1 1 3 0 24 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 24 1 1 1 1 7.31 219.47 2.77 0.00 0.00 0.00 0.00 25 -2 1 1 1 Series 25-root.GourAven2010.154 25 -1 1 1 1 16 3 25 1 1 3 0 25 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 25 1 1 1 1 7.08 194.20 -0.28 0.00 0.00 0.00 0.00 26 -2 1 1 1 Series 26-root.GourAven2010.154 26 -1 1 1 1 16 3 26 3 3 3 0 26 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 26 1 1 1 1 10.95 53.79 35.32 2.04 3.28 5.23 1.34 26 2 1 1 1 9.78 63.92 3.27 0.00 2.21 3.30 1.36 26 3 1 1 1 1.70 332.33 82.05 0.00 0.00 0.00 0.00 27 -2 1 1 1 Series 27-root.GourAven2010.154 27 -1 1 1 1 26 2 27 1 1 3 0 27 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 27 1 1 1 1 0.61 32.62 -85.87 0.00 0.00 0.00 0.00 28 -2 1 1 1 Series 28-root.GourAven2010.154 28 -1 1 1 1 26 2 28 1 1 3 0 28 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 28 1 1 1 1 1.71 327.39 8.11 0.00 0.00 0.00 0.00 29 -2 1 1 1 Series 29-root.GourAven2010.154 29 -1 1 1 1 26 2 29 1 1 3 0 29 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 29 1 1 1 1 0.80 141.07 2.96 0.00 0.00 0.00 0.00 30 -2 1 1 1 Series 30-root.GourAven2010.154 30 -1 1 1 1 26 2 30 1 1 3 0 30 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 30 1 1 1 1 3.98 231.53 -1.12 0.00 0.00 0.00 0.00 31 -2 1 1 1 Series 31-root.GourAven2010.154 31 -1 1 1 1 26 2 31 3 3 3 0 31 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 31 1 1 1 1 4.02 63.11 22.07 1.71 0.80 1.70 0.61 31 2 1 1 1 2.66 122.85 6.23 0.32 0.25 0.53 0.36 31 3 1 1 1 0.98 162.59 86.78 0.00 0.00 0.00 0.00 32 -2 1 1 1 Series 32-root.GourAven2010.154 32 -1 1 1 1 31 2 32 1 1 3 0 32 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 32 1 1 1 1 0.26 23.65 -86.76 0.00 0.00 0.00 0.00 33 -2 1 1 1 Series 33-root.GourAven2010.154 33 -1 1 1 1 31 2 33 1 1 3 0 33 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 33 1 1 1 1 1.64 324.85 17.05 0.00 0.00 0.00 0.00 34 -2 1 1 1 Series 34-root.GourAven2010.154 34 -1 1 1 1 31 2 34 1 1 3 0 34 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 34 1 1 1 1 6.44 242.34 -33.76 0.00 0.00 0.00 0.00 35 -2 1 1 1 Series 35-root.GourAven2010.154 35 -1 1 1 1 31 2 35 1 1 3 0 35 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 35 1 1 1 1 0.42 167.34 -0.39 0.00 0.00 0.00 0.00 36 -2 1 1 1 Series 36-root.GourAven2010.154 36 -1 1 1 1 31 2 36 2 2 3 0 36 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 36 1 1 1 1 4.68 26.31 41.16 1.64 0.42 0.98 0.26 36 2 1 1 1 6.64 295.01 79.59 0.00 0.00 0.00 0.00 37 -2 1 1 1 Series 37-root.GourAven2010.154 37 -1 1 1 1 36 1 37 1 1 3 0 37 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 37 1 1 1 1 12.70 18.43 69.18 0.00 0.00 0.00 0.00 38 -2 1 1 1 Series 38-root.GourAven2010.154 38 -1 1 1 1 36 1 38 1 1 3 0 38 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 38 1 1 1 1 3.01 155.00 -82.68 0.00 0.00 0.00 0.00 39 -2 1 1 1 Series 39-root.GourAven2010.154 39 -1 1 1 1 36 1 39 1 1 3 0 39 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 39 1 1 1 1 0.49 161.32 -3.84 0.00 0.00 0.00 0.00 40 -2 1 1 1 Series 40-root.GourAven2010.154 40 -1 1 1 1 36 1 40 1 1 3 0 40 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 40 1 1 1 1 2.35 254.18 14.98 0.00 0.00 0.00 0.00 41 -2 1 1 1 Series 41-root.GourAven2010.154 41 -1 1 1 1 36 1 41 1 1 3 0 41 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 41 1 1 1 1 2.05 324.43 6.05 0.00 0.00 0.00 0.00 42 -2 1 1 1 Series 42-root.GourAven2010.154 42 -1 1 1 1 36 1 42 1 1 3 0 42 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 42 1 1 1 1 3.45 42.66 36.15 0.00 0.00 0.00 0.00 43 -2 1 1 1 Series 43-root.GourAven2010.154 43 -1 1 1 1 36 1 43 1 1 3 0 43 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 43 1 1 1 1 7.31 43.46 40.15 0.00 0.00 0.00 0.00 44 -2 1 1 1 Series 44-root.GourAven2010.154 44 -1 1 1 1 36 1 44 1 1 3 0 44 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 44 1 1 1 1 7.44 57.64 40.31 0.00 0.00 0.00 0.00 45 -2 1 1 1 Series 45-root.GourAven2010.154 45 -1 1 1 1 36 1 45 1 1 3 0 45 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 45 1 1 1 1 5.50 18.29 43.16 0.00 0.00 0.00 0.00 46 -2 1 1 1 Series 46-root.GourAven2010.154 46 -1 1 1 1 36 1 46 1 1 3 0 46 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 46 1 1 1 1 2.86 1.04 33.73 0.00 0.00 0.00 0.00 47 -2 1 1 1 Series 47-root.GourAven2010.154 47 -1 1 1 1 36 1 47 1 1 3 0 47 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 47 1 1 1 1 2.89 289.70 14.24 0.00 0.00 0.00 0.00 48 -2 1 1 1 Series 48-root.GourAven2010.154 48 -1 1 1 1 36 1 48 7 7 3 0 48 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 48 1 1 1 1 4.74 255.91 20.70 0.49 2.86 6.64 3.01 48 2 1 1 1 3.65 236.22 -5.06 0.33 0.00 0.61 0.84 48 3 1 1 1 1.18 302.23 22.54 0.40 0.45 8.22 0.28 48 4 1 1 1 3.01 252.40 20.56 0.29 0.00 4.62 0.80 48 5 1 1 1 2.80 260.36 32.10 0.31 0.35 0.76 0.94 48 6 1 1 1 2.51 128.54 27.56 0.82 0.00 1.87 1.02 48 7 1 1 1 1.81 38.41 85.61 0.00 0.00 0.00 0.00 49 -2 1 1 1 Series 49-root.GourAven2010.154 49 -1 1 1 1 48 6 49 1 1 3 0 49 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 49 1 1 1 1 0.48 45.14 -88.61 0.00 0.00 0.00 0.00 50 -2 1 1 1 Series 50-root.GourAven2010.154 50 -1 1 1 1 48 6 50 1 1 3 0 50 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 50 1 1 1 1 1.11 344.73 2.19 0.00 0.00 0.00 0.00 51 -2 1 1 1 Series 51-root.GourAven2010.154 51 -1 1 1 1 48 6 51 1 1 3 0 51 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 51 1 1 1 1 1.91 41.33 -1.46 0.00 0.00 0.00 0.00 52 -2 1 1 1 Series 52-root.GourAven2010.154 52 -1 1 1 1 48 6 52 1 1 3 0 52 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 52 1 1 1 1 0.51 251.10 6.82 0.00 0.00 0.00 0.00 53 -2 1 1 1 Series 53-root.GourAven2010.154 53 -1 1 1 1 48 6 53 4 4 3 0 53 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 53 1 1 1 1 1.60 80.91 -6.44 1.11 0.51 1.81 0.48 53 2 1 1 1 2.62 204.21 -3.57 0.00 0.64 1.37 0.48 53 3 1 1 1 2.74 271.25 46.82 0.00 0.71 3.67 0.47 53 4 1 1 1 9.98 17.30 82.51 0.00 0.00 0.00 0.00 54 -2 1 1 1 Series 54-root.GourAven2010.154 54 -1 1 1 1 53 3 54 1 1 3 0 54 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 54 1 1 1 1 3.23 322.81 31.68 0.00 0.00 0.00 0.00 55 -2 1 1 1 Series 55-root.GourAven2010.154 55 -1 1 1 1 53 3 55 1 1 3 0 55 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 55 1 1 1 1 0.77 148.87 -11.23 0.00 0.00 0.00 0.00 56 -2 1 1 1 Series 56-root.GourAven2010.154 56 -1 1 1 1 53 3 56 1 1 3 0 56 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 56 1 1 1 1 1.45 65.49 10.21 0.00 0.00 0.00 0.00 57 -2 1 1 1 Series 57-root.GourAven2010.154 57 -1 1 1 1 53 3 57 2 2 3 0 57 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 57 1 1 1 1 5.18 24.86 41.32 3.23 0.77 9.98 0.00 57 2 1 1 1 11.69 261.71 88.10 0.00 0.00 0.00 0.00 58 -2 1 1 1 Series 58-root.GourAven2010.154 58 -1 1 1 1 57 1 58 1 1 3 0 58 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 58 1 1 1 1 0.84 268.42 -88.39 0.00 0.00 0.00 0.00 59 -2 1 1 1 Series 59-root.GourAven2010.154 59 -1 1 1 1 57 1 59 1 1 3 0 59 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 59 1 1 1 1 1.73 306.61 4.45 0.00 0.00 0.00 0.00 60 -2 1 1 1 Series 60-root.GourAven2010.154 60 -1 1 1 1 57 1 60 1 1 3 0 60 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 60 1 1 1 1 5.26 -0.43 37.58 0.00 0.00 0.00 0.00 61 -2 1 1 1 Series 61-root.GourAven2010.154 61 -1 1 1 1 57 1 61 1 1 3 0 61 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 61 1 1 1 1 5.75 59.80 37.02 0.00 0.00 0.00 0.00 62 -2 1 1 1 Series 62-root.GourAven2010.154 62 -1 1 1 1 57 1 62 1 1 3 0 62 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 62 1 1 1 1 2.17 131.81 2.41 0.00 0.00 0.00 0.00 63 -2 1 1 1 Series 63-root.GourAven2010.154 63 -1 1 1 1 57 1 63 1 1 3 0 63 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 63 1 1 1 1 8.28 213.73 -4.87 0.00 0.00 0.00 0.00 64 -2 1 1 1 Series 64-root.GourAven2010.154 64 -1 1 1 1 57 1 64 1 1 3 0 64 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 64 1 1 1 1 8.34 235.02 -5.86 0.00 0.00 0.00 0.00 65 -2 1 1 1 Series 65-root.GourAven2010.154 65 -1 1 1 1 57 1 65 1 1 3 0 65 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 65 1 1 1 1 16.08 231.87 -2.48 0.00 0.00 0.00 0.00 66 -2 1 1 1 Series 66-root.GourAven2010.154 66 -1 1 1 1 57 1 66 1 1 3 0 66 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 66 1 1 1 1 6.38 76.07 35.97 0.00 0.00 0.00 0.00 67 -2 1 1 1 Series 67-root.GourAven2010.154 67 -1 1 1 1 57 1 67 9 9 3 0 67 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 67 1 1 1 1 6.09 67.51 35.08 5.26 2.17 11.69 0.84 67 2 1 1 1 2.80 328.47 -45.49 0.90 0.59 1.97 1.37 67 3 1 1 1 3.96 22.72 -39.81 0.00 0.86 0.84 0.81 67 4 1 1 1 2.56 115.80 -45.71 0.95 0.67 0.00 0.69 67 5 1 1 1 2.20 84.02 -7.90 1.18 0.00 1.03 0.40 67 6 1 1 1 1.36 70.41 62.56 0.98 0.27 0.00 0.38 67 7 1 1 1 1.39 120.04 -18.84 0.32 1.45 0.00 0.59 67 8 1 1 1 0.86 108.40 6.35 1.60 0.90 1.87 6.93 67 9 1 1 1 8.52 166.76 -79.71 0.00 0.00 0.00 0.00CaveConverter_src/test/data/regression/Stomps_in.txt0000644000000000000000000005101213030252172021747 0ustar rootrootStomps2010 (m, 360) [1]: 2010/08/11 1.92 155.1 156.1 0.000 0.00 0.00 [1] 156.1 1.685 37.77 8.97 [1] 156.1 9.668 232.64 2.24 [1] 156.1 3.115 97.12 86.67 [1] 156.1 0.745 77.17 -89.50 [1] 156.1 15.030 226.71 -13.08 [1] 156.1 6.815 210.56 28.68 [1] 156.1 156.2 9.082 189.32 -7.47 [1] 156.1 156.2 9.083 189.34 -7.44 [1] 156.1 156.2 9.082 189.28 -7.39 [1] 156.2 7.472 208.36 -11.11 [1] 156.2 8.061 39.11 14.74 [1] 156.2 4.407 128.49 81.69 [1] 156.2 1.255 358.86 -82.11 [1] 156.2 156.3 18.548 116.97 -0.10 [1] 156.2 156.3 18.549 117.04 -0.17 [1] 156.2 156.3 18.549 116.93 -0.04 [1] 156.3 2.098 353.60 5.03 [1] 156.3 8.884 190.22 4.19 [1] 156.3 3.688 137.39 81.12 [1] 156.3 1.646 101.41 -87.20 [1] 156.3 156.4 3.936 109.44 5.34 [1] 156.3 156.4 3.938 109.22 5.48 [1] 156.3 156.4 3.938 109.37 5.36 [1] 156.4 1.715 13.50 -2.13 [1] 156.4 5.781 180.90 3.13 [1] 156.4 3.620 131.58 82.07 [1] 156.4 1.770 11.41 -89.12 [1] 156.4 156.5 14.131 96.88 -0.68 [1] 156.4 156.5 14.132 96.70 -0.55 [1] 156.4 156.5 14.132 96.70 -0.60 [1] 156.5 0.893 21.68 11.66 [1] 156.5 4.925 187.59 1.55 [1] 156.5 3.344 152.86 86.38 [1] 156.5 1.684 93.35 -86.43 [1] 156.5 10.695 195.39 -17.40 [1] 156.5 156.6 14.760 107.50 10.06 [1] 156.5 156.6 14.759 107.33 10.17 [1] 156.5 156.6 14.759 107.44 10.10 [1] 156.6 2.772 353.39 1.57 [1] 156.6 6.301 194.68 -4.39 [1] 156.6 1.207 240.65 80.78 [1] 156.6 2.024 357.90 -83.47 [1] 156.6 156.7 9.561 79.45 -2.42 [1] 156.6 156.7 9.565 79.40 -2.46 [1] 156.6 156.7 9.565 79.44 -2.57 [1] 156.7 12.221 207.03 2.29 [1] 156.7 1.677 97.50 85.86 [1] 156.7 1.712 241.95 -86.22 [1] 156.7 156.8 12.973 128.48 -9.76 [1] 156.7 156.8 12.975 128.57 -9.82 [1] 156.7 156.8 12.975 128.61 -9.82 [1] 156.8 5.115 354.01 2.57 [1] 156.8 5.906 181.07 -1.30 [1] 156.8 5.017 174.58 84.02 [1] 156.8 1.511 132.53 -81.84 [1] 156.8 13.390 235.87 7.15 [1] 156.8 4.134 271.01 46.40 [1] 156.8 156.9 5.842 89.35 1.87 [1] 156.8 156.9 5.839 89.31 1.83 [1] 156.8 156.9 5.839 89.43 1.79 [1] 156.9 127.0 0.000 0.00 0.00 [1] 156.9 4.619 19.88 -7.87 [1] 156.9 14.511 183.22 24.27 [1] 156.9 4.472 145.46 80.50 [1] 156.9 156.10 11.809 117.69 18.69 [1] 156.9 156.10 11.809 117.59 18.69 [1] 156.9 156.10 11.811 117.69 18.70 [1] 156.10 5.381 40.87 -12.73 [1] 156.10 15.757 211.64 3.96 [1] 156.10 2.391 262.28 85.82 [1] 156.10 8.082 203.51 -24.97 [1] 156.10 156.11 17.550 168.45 -7.49 [1] 156.10 156.11 17.521 168.46 -7.50 [1] 156.10 156.11 17.519 168.43 -7.53 [1] 156.11 11.161 40.65 22.54 [1] 156.11 5.811 202.33 -0.42 [1] 156.11 4.416 170.80 84.77 [1] 156.11 2.043 127.28 -88.53 [1] 156.11 156.12 16.732 148.80 -11.28 [1] 156.11 156.12 16.721 148.91 -11.33 [1] 156.11 156.12 16.730 148.87 -11.28 [1] 156.12 10.776 54.37 20.06 [1] 156.12 2.977 221.85 -4.24 [1] 156.12 5.149 185.63 84.72 [1] 156.12 2.270 188.16 -80.50 [1] 156.12 156.13 15.139 118.82 -5.89 [1] 156.12 156.13 15.139 118.82 -5.91 [1] 156.12 156.13 15.134 118.70 -5.87 [1] 156.13 1.673 61.44 5.64 [1] 156.13 7.796 233.20 3.15 [1] 156.13 6.120 304.49 0.88 [1] 156.13 3.606 348.94 1.85 [1] 156.13 5.067 331.32 -2.18 [1] 156.13 6.896 69.83 84.81 [1] 156.13 0.445 268.26 -88.34 [1] 156.13 156.14 12.563 158.14 3.41 [1] 156.13 156.14 12.564 158.04 3.44 [1] 156.13 156.14 12.563 158.07 3.44 [1] 156.14 3.844 53.87 -4.42 [1] 156.14 3.119 227.31 2.93 [1] 156.14 5.528 300.37 87.43 [1] 156.14 1.627 169.51 -86.65 [1] 156.14 156.15 20.984 142.26 0.98 [1] 156.14 156.15 20.986 142.23 1.04 [1] 156.14 156.15 20.988 142.18 1.05 [1] 156.15 3.368 59.85 -7.03 [1] 156.15 6.875 228.82 -1.60 [1] 156.15 1.806 165.82 -81.12 [1] 156.15 7.308 156.10 87.72 [1] 156.15 156.16 14.275 159.71 1.84 [1] 156.15 156.16 14.276 159.70 1.84 [1] 156.15 156.16 14.276 159.67 1.84 [1] 156.16 3.988 50.15 5.15 [1] 156.16 6.304 223.94 0.27 [1] 156.16 6.757 212.56 82.75 [1] 156.16 2.158 75.37 -85.02 [1] 156.16 7.348 53.81 -19.26 [1] 156.16 156.17 10.367 162.95 2.52 [1] 156.16 156.17 10.364 162.98 2.42 [1] 156.16 156.17 10.367 163.01 2.53 [1] 156.17 8.027 85.24 5.30 [1] 156.17 4.577 268.81 4.80 [1] 156.17 7.078 117.31 85.78 [1] 156.17 1.673 30.75 -87.87 [1] 156.17 11.569 65.79 -12.79 [1] 156.17 156.18 7.843 126.74 -11.50 [1] 156.17 156.18 7.852 126.60 -11.44 [1] 156.17 156.18 7.852 126.55 -11.49 [1] 156.18 9.038 57.55 -6.54 [1] 156.18 12.852 221.83 12.63 [1] 156.18 5.779 227.99 82.52 [1] 156.18 1.204 269.82 -79.45 [1] 156.18 9.671 145.31 -10.88 [1] 156.18 10.526 166.40 -10.22 [1] 156.18 8.326 104.33 -11.12 [1] 156.18 156.19 23.709 157.38 -4.42 [1] 156.18 156.19 23.700 157.26 -4.35 [1] 156.18 156.19 23.702 157.42 -4.35 [1] 156.19 9.339 73.19 10.78 [1] 156.19 11.843 245.81 12.69 [1] 156.19 1.166 287.39 83.26 [1] 156.19 2.420 51.41 38.56 [1] 156.19 156.20 13.185 101.94 26.53 [1] 156.19 156.20 13.149 102.01 26.46 [1] 156.19 156.20 13.139 101.85 26.53 [1] 156.20 8.130 59.17 2.11 [1] 156.20 3.988 319.43 -1.32 [1] 156.20 19.284 269.18 2.35 [1] 156.20 21.108 255.42 1.62 [1] 156.20 9.955 233.12 -18.11 [1] 156.20 1.902 168.29 81.35 [1] 156.20 12.668 132.37 13.97 [1] 156.20 156.21 14.462 145.26 8.28 [1] 156.20 156.21 14.460 145.32 8.26 [1] 156.20 156.21 14.464 145.37 8.28 [1] 156.21 14.256 78.44 8.06 [1] 156.21 3.685 250.66 -18.99 [1] 156.21 7.179 227.58 -16.64 [1] 156.21 12.386 206.43 -26.43 [1] 156.21 16.364 186.99 -21.04 [1] 156.21 17.979 167.17 -10.43 [1] 156.21 21.266 136.38 4.37 [1] 156.21 18.968 113.75 8.27 [1] 156.21 1.580 137.96 69.16 [1] 156.21 0.839 62.80 -88.10 [1] 156.21 9.404 19.51 12.23 [1] 156.21 156.22 10.999 140.38 13.29 [1] 156.21 156.22 10.996 140.43 13.40 [1] 156.21 156.22 10.994 140.43 13.33 [1] 156.22 17.998 237.95 -37.04 [1] 156.22 12.636 198.26 -39.64 [1] 156.22 15.783 148.75 -25.36 [1] 156.22 16.363 126.26 -16.70 [1] 156.22 11.772 93.31 -5.76 [1] 156.22 13.482 67.73 -1.47 [1] 156.22 13.786 35.24 -1.65 [1] 156.22 156.23 19.386 47.04 -3.35 [1] 156.22 156.23 19.388 47.10 -3.41 [1] 156.22 156.23 19.388 47.06 -3.41 [1] 156.23 7.241 83.01 -21.44 [1] 156.23 8.473 183.50 1.18 [1] 156.23 10.477 171.25 -0.49 [1] 156.23 7.107 147.60 -3.96 [1] 156.23 156.24 12.258 182.64 0.90 [1] 156.23 156.24 12.256 182.50 0.91 [1] 156.23 156.24 12.259 182.58 0.83 [1] 156.24 1.920 82.91 0.63 [1] 156.24 1.151 120.51 84.75 [1] 156.24 0.925 76.07 -84.15 [1] 156.24 156.25 9.369 136.98 -31.91 [1] 156.24 156.25 9.373 136.99 -31.91 [1] 156.24 156.25 9.374 136.99 -31.85 [1] 156.25 1.155 119.38 3.47 [1] 156.25 2.938 355.15 23.42 [1] 156.25 3.686 310.01 86.34 [1] 156.25 0.328 193.17 -87.50 [1] 156.25 156.26 16.108 66.35 8.77 [1] 156.25 156.26 16.122 66.25 8.83 [1] 156.25 156.26 16.117 66.24 8.86 [1] 156.26 4.087 231.84 0.23 [1] 156.26 1.485 42.67 87.21 [1] 156.26 0.596 329.87 -86.96 [1] 156.26 156.27 20.526 208.25 -0.28 [1] 156.26 156.27 20.528 208.27 -0.27 [1] 156.26 156.27 20.525 208.23 -0.21 [1] 156.27 1.974 300.95 -6.53 [1] 156.27 3.695 311.97 80.68 [1] 156.27 1.849 292.76 -79.95 [1] 156.27 156.28 23.080 217.47 -11.63 [1] 156.27 156.28 23.075 217.44 -11.67 [1] 156.27 156.28 23.083 217.50 -11.67 [1] 156.28 2.876 128.79 -0.08 [1] 156.28 6.224 310.56 2.64 [1] 156.28 8.322 349.65 84.55 [1] 156.28 28.386 23.01 54.31 [1] 156.28 13.961 7.70 59.65 [1] 156.28 12.779 4.70 10.78 [1] 156.28 8.894 49.16 13.35 [1] 156.28 156.29 9.439 337.59 -7.19 [1] 156.28 156.29 9.441 337.60 -7.15 [1] 156.28 156.29 9.436 337.49 -7.09 [1] 156.29 2.879 283.39 -6.23 [1] 156.29 10.427 124.26 14.34 [1] 156.29 0.851 25.33 78.60 [1] 156.29 1.758 324.20 -83.85 [1] 156.29 156.30 11.120 26.68 -1.43 [1] 156.29 156.30 11.120 26.64 -1.41 [1] 156.29 156.30 11.119 26.60 -1.51 [1] 156.30 4.372 251.83 1.05 [1] 156.30 8.095 252.77 -8.28 [1] 156.30 13.295 274.36 -5.31 [1] 156.30 5.945 168.28 4.29 [1] 156.30 3.359 125.62 9.29 [1] 156.30 11.331 60.91 17.00 [1] 156.30 6.484 357.65 15.32 [1] 156.30 156.31 7.376 59.14 18.25 [1] 156.30 156.31 7.377 59.14 18.23 [1] 156.30 156.31 7.378 59.11 18.22 [1] 156.31 6.381 284.87 4.02 [1] 156.31 3.277 81.68 10.06 [1] 156.31 1.653 268.12 86.30 [1] 156.31 0.814 305.44 -85.22 [1] 156.31 156.25 7.676 9.38 10.39 [1] 156.31 156.25 7.673 9.33 10.34 [1] 156.31 156.25 7.672 9.48 10.33 [1] 156.28 156.32 0.000 0.00 0.00 [1] 156.32 2.868 117.70 -1.62 [1] 156.32 6.256 302.62 9.50 [1] 156.32 7.767 227.86 81.72 [1] 156.32 1.774 169.28 -67.64 [1] 156.32 156.33 26.566 219.44 -1.19 [1] 156.32 156.33 26.564 219.46 -1.25 [1] 156.32 156.33 26.566 219.44 -1.19 [1] 156.33 2.532 307.33 4.40 [1] 156.33 3.357 124.91 2.33 [1] 156.33 5.201 170.50 89.34 [1] 156.33 3.235 328.02 -70.36 [1] 156.33 6.562 290.15 -24.69 [1] 156.33 156.34 30.489 226.77 -3.53 [1] 156.33 156.34 30.484 226.81 -3.51 [1] 156.33 156.34 30.485 226.72 -3.53 [1] 156.34 5.858 236.75 -3.69 [1] 156.34 4.039 262.63 -3.89 [1] 156.34 8.402 95.41 4.69 [1] 156.34 9.614 62.57 84.14 [1] 156.34 1.348 158.37 -84.56 [1] 156.34 156.35 24.033 125.74 -0.09 [1] 156.34 156.35 24.016 125.70 -0.01 [1] 156.34 156.35 24.016 125.77 -0.12 [1] 156.35 2.683 30.69 -5.75 [1] 156.35 2.813 197.88 -14.73 [1] 156.35 0.727 66.43 86.00 [1] 156.35 1.575 127.05 -83.96 [1] 156.35 156.36 4.417 104.52 6.16 [1] 156.35 156.36 4.423 104.71 5.99 [1] 156.35 156.36 4.417 104.71 5.91 [1] 156.36 2.493 21.29 -22.90 [1] 156.36 2.244 260.57 -1.29 [1] 156.36 5.819 217.21 86.87 [1] 156.36 1.892 140.80 -83.24 [1] 156.36 9.410 213.65 -13.20 [1] 156.36 156.37 10.681 164.01 12.18 [1] 156.36 156.37 10.681 163.95 12.18 [1] 156.36 156.37 10.688 164.10 12.13 [1] 156.37 3.803 53.48 -4.48 [1] 156.37 6.189 229.59 9.87 [1] 156.37 6.078 146.27 82.26 [1] 156.37 8.285 10.38 -30.58 [1] 156.37 156.38 12.554 153.03 -2.14 [1] 156.37 156.38 12.551 152.97 -2.10 [1] 156.37 156.38 12.552 153.06 -2.18 [1] 156.38 2.415 41.61 -6.10 [1] 156.38 10.270 228.39 1.96 [1] 156.38 6.308 200.74 84.49 [1] 156.38 5.415 81.95 -50.82 [1] 156.38 156.39 26.215 114.86 -7.26 [1] 156.38 156.39 26.214 114.87 -7.29 [1] 156.38 156.39 26.213 114.79 -7.27 [1] 156.39 3.396 52.39 6.37 [1] 156.39 20.495 219.16 10.44 [1] 156.39 13.281 207.48 46.99 [1] 156.39 9.497 182.35 -22.41 [1] 156.39 156.40 26.685 165.86 -1.74 [1] 156.39 156.40 26.689 165.92 -1.76 [1] 156.39 156.40 26.689 165.99 -1.72 [1] 156.40 8.666 60.90 12.75 [1] 156.40 15.330 247.49 12.29 [1] 156.40 10.782 304.71 85.18 [1] 156.40 2.294 6.12 -84.82 [1] 156.40 156.41 29.350 157.69 4.29 [1] 156.40 156.41 29.349 157.53 4.22 [1] 156.40 156.41 29.347 157.70 4.26 [1] 156.41 10.618 252.68 11.74 [1] 156.41 12.751 22.64 8.50 [1] 156.41 7.880 18.58 78.68 [1] 156.41 22.876 13.29 8.03 [1] 156.41 12.847 343.23 -24.55 [1] 156.41 156.42 25.137 123.66 -2.35 [1] 156.41 156.42 25.129 123.63 -2.36 [1] 156.41 156.42 25.133 123.57 -2.35 [1] 156.42 4.459 66.37 20.49 [1] 156.42 21.374 242.80 10.60 [1] 156.42 10.424 232.44 63.69 [1] 156.42 7.432 221.79 -41.05 [1] 156.42 13.883 308.37 1.63 [1] 156.42 156.43 24.150 168.89 -8.71 [1] 156.42 156.43 24.151 168.93 -8.73 [1] 156.42 156.43 24.152 168.90 -8.73 [1] 156.43 14.396 256.04 21.06 [1] 156.43 10.067 101.29 29.82 [1] 156.43 12.510 150.27 86.71 [1] 156.43 2.000 248.22 -77.51 [1] 156.43 156.44 13.326 168.43 10.44 [1] 156.43 156.44 13.324 168.25 10.49 [1] 156.43 156.44 13.324 168.37 10.50 [1] 156.44 4.831 75.77 6.03 [1] 156.44 18.290 275.87 11.43 [1] 156.44 10.208 26.26 77.78 [1] 156.44 7.368 297.13 -41.78 [1] 156.44 6.217 274.92 -17.88 [1] 156.44 156.45 28.902 189.23 16.41 [1] 156.44 156.45 28.898 189.32 16.47 [1] 156.44 156.45 28.904 189.38 16.47 [1] 156.45 10.630 135.54 9.88 [1] 156.45 9.581 280.49 -1.90 [1] 156.45 3.411 209.50 87.61 [1] 156.45 4.305 270.17 -67.62 [1] 156.45 156.46 22.480 194.02 5.15 [1] 156.45 156.46 22.478 194.00 5.08 [1] 156.45 156.46 22.485 194.09 5.19 [1] 156.46 14.529 63.91 5.51 [1] 156.46 6.659 255.94 -22.06 [1] 156.46 1.685 238.04 77.50 [1] 156.46 12.990 117.87 8.99 [1] CaveConverter_src/test/data/regression/SwilEnt_ss_cmdnl_ref.svx0000644000000000000000000003242613030252172024110 0ustar rootroot*BEGIN Swildons *EQUATE Ent EntranceZigZags.3 *EQUATE surfacegps.4 EntranceZigZags.3 *EQUATE LongDryWay.0 EntranceZigZags.5 *EQUATE LongDryWay.5 EntranceZigZags.21 *EQUATE LongDryWay.5 ShortDryWay.pt1.0 *EQUATE LongDryWay.39 NewGrottoes.0 *EQUATE LongDryWay.62 OldGrotto2WC.4 *EQUATE LongDryWay.59 OldGrotto2WC.0 *EQUATE LongDryWay.59 ShortDryWay.pt2.3 *EQUATE WaterRift.0 OldGrotto2WC.11 *EQUATE WaterRift.4 FortyRoute.0 *EQUATE WaterRift.12 FortyRoute.11 *EQUATE 10.0 LongDryWay.8 *EQUATE 10.20 LongDryWay.2 *EQUATE 10.13 20.20 *EQUATE 10.18 20.27 *EQUATE 20.0 EntranceZigZags.5 *EQUATE 20.23 ShortDryWay.pt1.3 *EQUATE 20.19 EntranceZigZags.5 *BEGIN surfacegps *DATE 2013.06.30 *CALIBRATE declination 1.58 *FLAGS SURFACE 0 1 9.84 94.37 -5.88 1 2 7.84 97.65 -8.05 2 3 11.76 94.27 -17.67 3 4 4.38 7.38 -23.29 3 5 5.45 262.93 13.06 5 6 8.80 174.95 11.61 6 7 13.78 168.31 12.55 *END surfacegps *BEGIN EntranceZigZags *DATE 2012.09.09 *CALIBRATE declination 1.7 *FLAGS SURFACE 0 1 2.98 10.26 -2.01 0 2 5.24 3.23 -5.04 2 3 2.64 166.70 -60.11 *FLAGS NOT SURFACE 3 4 3.10 330.76 -25.13 4 5 4.51 275.80 -12.10 5 6 2.41 50.67 -22.33 6 7 1.08 37.30 11.53 7 8 2.00 6.10 11.51 8 9 1.01 56.60 0.18 9 10 3.07 336.52 5.81 9 11 2.42 64.64 5.29 11 12 4.50 106.56 19.29 10 13 0.94 80.55 -45.63 13 14 5.31 65.16 19.50 10 15 3.27 329.15 -18.16 15 16 3.57 334.08 -6.33 16 17 2.41 207.98 -9.43 17 18 4.05 308.01 -19.25 18 19 2.06 211.48 -16.06 19 20 2.94 233.55 -35.84 20 21 2.04 14.57 -39.09 *data passage station left right up down 3 0.30 0.38 0.91 0.44 4 0.56 0.00 1.50 1.32 5 1.98 4.15 0.69 0.51 6 0.49 0.19 0.35 0.29 7 0.57 1.89 0.73 4.09 8 0.00 1.34 0.15 1.08 9 0.37 0.00 0.43 0.45 11 0.13 1.70 0.32 0.39 12 1.63 0.57 0.25 0.26 *data passage station left right up down 9 0.59 0.00 0.43 0.45 10 0.54 2.34 2.94 1.12 13 0.50 1.07 0.70 0.21 14 0.54 2.05 0.20 0.43 *data passage station left right up down 10 1.97 1.10 2.94 1.12 15 2.15 0.75 0.69 0.79 16 0.83 0.18 1.50 0.62 17 1.38 1.29 0.00 1.46 18 1.46 0.39 0.25 0.68 19 0.00 0.44 0.52 1.54 20 0.00 0.89 1.54 1.61 21 1.16 0.21 2.86 0.20 *END EntranceZigZags *BEGIN LongDryWay *DATE 2013.02.23 *CALIBRATE declination 1.63 *EQUATE 44 46 0 1 4.08 270.72 -25.50 1 2 3.77 354.35 -29.81 2 3 4.33 336.10 -24.79 3 4 2.77 337.70 -4.41 4 5 3.14 343.71 -25.59 5 6 1.87 332.43 6.50 6 7 2.26 343.32 -5.29 7 8 1.72 258.62 12.28 7 9 1.10 310.47 4.46 9 10 2.37 334.59 4.19 10 11 1.12 263.77 46.91 11 12 3.53 351.74 -3.89 12 13 1.97 312.50 39.30 13 14 2.39 28.12 3.33 14 15 0.86 306.09 -13.02 15 16 4.55 48.38 7.37 16 17 2.34 328.01 -9.83 17 18 2.65 86.23 -7.24 18 19 0.84 146.67 18.49 19 20 1.81 87.93 13.23 20 21 1.73 164.45 7.33 21 22 2.91 113.95 7.56 22 23 1.51 181.21 30.14 23 24 4.59 108.18 -8.18 24 25 3.22 188.75 35.45 25 26 4.13 139.60 16.69 25 27 4.94 97.33 39.05 24 28 2.78 323.60 -24.94 28 29 0.89 90.00 -48.92 29 30 6.28 324.60 -29.83 30 31 1.55 264.23 41.75 31 32 2.26 15.83 12.57 32 35 6.03 323.45 -41.61 31 34 5.13 314.22 -30.46 34 35 2.76 19.79 -19.74 35 36 4.45 91.00 26.23 36 37 6.61 112.79 18.69 37 38 3.92 158.52 22.40 38 39 5.06 158.54 15.55 39 40 3.30 137.29 35.75 40 41 1.54 156.92 21.03 41 42 1.23 188.42 54.13 35 43 7.82 271.86 -10.72 43 44 1.58 132.75 -54.76 43 45 4.22 283.16 -3.82 46 47 4.08 278.14 -22.89 47 48 1.62 127.59 7.41 45 49 2.40 265.00 1.41 49 50 2.06 297.62 28.08 50 51 2.38 317.24 16.74 51 52 2.80 335.01 -5.36 52 53 8.00 77.58 15.81 52 54 2.99 251.79 -11.14 54 55 2.75 287.69 -14.31 55 56 6.04 280.29 -11.16 56 57 4.72 167.79 -69.81 57 58 6.26 266.27 3.98 58 59 5.34 221.34 -28.43 59 60 3.64 249.87 -18.27 60 61 6.14 188.00 -36.35 61 62 1.04 31.64 -42.73 *data passage station left right up down 0 0.56 1.35 0.66 0.56 1 1.13 1.96 0.45 1.49 2 0.64 0.92 0.73 1.92 3 0.44 0.45 1.17 0.48 4 1.02 0.00 1.94 1.36 5 1.73 0.62 2.74 0.23 6 1.12 0.32 2.49 0.46 7 1.12 0.00 1.41 0.51 9 0.85 0.56 0.83 0.57 10 0.39 0.24 2.18 0.43 11 0.00 0.62 1.41 0.97 12 0.77 0.00 0.88 0.00 13 0.00 0.86 0.46 1.02 14 1.47 0.00 0.48 0.59 15 0.61 0.45 0.40 0.41 16 2.24 0.00 0.86 1.51 17 0.00 1.46 1.20 0.00 18 0.48 1.95 0.40 0.51 19 1.33 0.33 0.40 0.00 20 0.59 0.86 1.46 0.00 21 0.65 0.00 1.19 0.25 22 1.22 0.84 1.30 0.40 23 1.27 0.19 0.40 1.21 24 3.04 1.76 1.43 0.00 25 3.11 1.05 0.86 0.00 26 1.08 0.48 0.56 0.52 *data passage station left right up down 7 1.10 0.00 1.41 0.51 8 0.55 0.00 0.88 0.81 *data passage station left right up down 25 2.42 1.16 0.86 0.00 27 0.16 3.08 0.34 0.00 *data passage station left right up down 24 1.76 3.04 1.43 0.00 28 0.00 0.00 1.98 1.15 29 0.65 0.60 0.61 1.14 30 1.46 0.28 1.86 0.43 31 0.39 1.14 0.97 1.50 32 0.68 0.00 0.38 0.76 35 0.55 0.93 3.48 0.00 36 3.45 2.23 2.46 0.38 37 1.23 2.15 2.77 0.50 38 1.04 1.09 2.53 0.83 39 2.01 1.86 0.80 0.31 40 0.58 0.42 0.40 0.00 41 0.98 0.71 1.17 0.00 42 1.03 0.18 0.28 0.00 *data passage station left right up down 31 0.43 1.37 0.97 1.50 34 0.00 1.36 1.60 0.71 35 0.93 0.55 3.48 0.00 43 0.63 0.60 2.82 1.69 45 1.00 0.26 2.12 0.91 49 1.24 0.87 2.24 0.70 50 0.41 0.00 0.69 0.76 51 1.79 0.65 0.34 3.97 52 1.39 0.00 0.66 1.10 54 0.00 1.44 1.32 4.82 55 0.45 1.74 1.92 4.57 56 0.00 0.91 0.87 5.41 57 0.47 0.00 5.50 0.76 58 2.05 0.88 2.44 0.74 59 2.29 5.14 2.99 0.67 60 3.49 1.16 1.60 2.35 61 0.00 0.00 4.26 3.24 *data passage station left right up down 46 0.00 1.08 0.73 0.00 47 0.00 0.00 1.09 0.58 48 0.00 2.53 0.42 0.71 *END LongDryWay *BEGIN ShortDryWay *EQUATE pt1.13 pt2.0 *BEGIN pt1 *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 1.43 131.61 -13.25 1 2 3.89 73.29 -51.63 2 3 4.50 170.72 19.68 3 4 1.11 246.49 -14.16 2 5 4.91 323.66 2.34 5 6 5.05 279.35 -25.23 6 7 5.02 336.36 -13.85 7 8 3.19 303.08 -33.11 8 9 6.71 295.69 -12.15 9 10 1.11 265.93 2.35 10 11 4.30 323.22 3.80 11 12 3.28 275.99 -17.30 12 13 4.68 298.00 -3.29 *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 0.41 0.87 0.00 0.28 2 0.00 1.63 1.81 0.46 3 0.31 0.26 1.53 0.92 4 0.00 2.09 0.55 0.68 *data passage station left right up down 2 1.63 0.00 1.81 0.46 5 1.00 0.32 1.55 0.86 6 0.00 1.25 2.73 1.16 7 0.41 0.00 3.68 0.54 8 0.00 1.37 4.40 1.42 9 1.02 0.00 1.15 1.06 10 0.00 0.45 0.84 1.15 11 0.64 0.00 2.05 1.59 12 0.00 0.52 1.75 0.81 13 0.00 0.57 0.38 0.72 *END pt1 *BEGIN pt2 *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 3.20 316.66 0.98 1 2 7.10 308.84 -15.08 2 3 4.24 278.91 -12.53 *data passage station left right up down 0 0.00 0.56 2.73 0.76 1 0.00 0.57 2.40 1.46 2 0.65 0.00 2.87 0.80 3 0.00 0.00 3.16 0.77 *END pt2 *END ShortDryWay *BEGIN NewGrottoes *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 1.56 49.36 7.27 1 2 1.75 10.53 51.20 2 3 4.07 347.52 12.12 3 4 3.62 50.60 25.22 4 5 3.25 67.67 12.62 5 6 3.45 56.57 19.52 6 7 1.42 151.95 -12.13 7 8 6.30 84.91 26.43 *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 0.42 0.08 0.39 0.73 2 0.29 0.00 0.68 0.86 3 0.92 0.62 0.41 0.44 4 2.01 1.51 0.00 0.88 5 2.12 0.90 0.25 0.77 6 0.52 3.62 0.00 0.56 7 1.16 2.64 0.89 0.44 8 0.81 0.31 0.19 0.35 *END NewGrottoes *BEGIN OldGrotto2WC *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 3.32 25.03 -14.33 1 2 5.70 255.27 -30.20 2 3 3.09 201.53 -10.26 3 4 4.55 164.72 -15.92 4 5 2.38 199.29 -26.79 5 6 6.29 239.56 -9.79 6 7 7.66 284.16 -7.14 7 8 2.58 224.20 -8.54 8 9 6.80 205.89 -6.51 9 10 2.09 108.56 -5.31 10 11 7.85 204.84 6.96 *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 2.39 0.00 0.00 0.86 2 0.97 0.38 1.20 1.13 3 0.88 1.27 0.32 0.93 4 0.63 0.59 5.52 2.45 5 0.71 0.81 5.21 1.53 6 0.23 1.80 3.96 1.44 7 1.04 0.00 5.90 1.22 8 0.00 1.49 5.11 1.06 9 1.39 0.00 3.26 1.26 10 0.00 1.68 5.06 1.15 11 4.27 5.18 3.22 1.00 *END OldGrotto2WC *BEGIN FortyRoute *DATE 2013.06.29 *CALIBRATE declination 1.58 0 1 2.76 327.91 18.03 1 2 5.35 306.91 5.35 2 3 3.55 321.41 38.17 3 4 1.12 7.71 3.63 4 5 1.06 263.40 33.43 5 6 2.53 351.94 5.11 6 7 2.96 317.31 -3.31 7 8 5.25 326.28 -29.19 8 9 1.45 273.15 -22.26 9 10 7.65 252.29 -71.60 10 11 2.32 146.39 -8.38 *data passage station left right up down 0 1.18 0.00 1.01 1.46 1 1.80 0.00 5.92 3.29 2 0.20 0.91 2.13 5.12 3 0.24 0.78 2.32 3.23 4 0.67 0.00 2.18 0.63 5 0.00 0.57 1.59 1.15 6 0.51 0.00 1.41 1.13 7 0.00 0.47 1.66 1.64 8 0.81 1.04 1.74 1.09 9 0.73 0.30 4.17 2.68 10 2.78 0.00 0.00 1.91 11 0.43 0.86 1.55 1.73 *END FortyRoute *BEGIN WaterRift *DATE 2013.06.29 *CALIBRATE declination 1.58 0 1 5.77 334.28 -11.88 1 2 4.33 195.52 -26.62 2 3 6.36 270.39 -36.08 3 4 1.54 305.04 -17.83 4 5 4.45 302.01 -20.17 5 6 2.13 320.38 -11.71 6 7 5.02 333.92 -11.98 7 8 1.63 323.46 -34.24 8 9 6.72 325.55 -5.61 9 10 2.39 1.38 10.24 10 11 3.73 245.25 -24.06 11 12 1.75 211.67 -24.54 12 13 8.34 181.38 -8.14 13 14 4.39 179.79 -2.78 14 15 7.89 176.25 -1.64 15 16 4.52 194.00 -4.00 *data passage station left right up down 0 6.74 3.41 1.95 0.00 1 1.52 0.00 3.73 1.75 2 0.25 0.75 0.70 1.02 3 0.00 0.60 7.22 1.50 4 1.18 0.00 5.86 1.80 5 0.00 0.66 0.78 1.18 6 0.00 0.40 1.32 0.97 7 0.32 0.00 3.07 1.41 8 0.73 0.00 2.19 0.57 9 0.00 0.65 1.18 0.38 10 0.81 0.43 2.51 1.00 11 0.47 0.78 10.85 2.38 12 0.56 0.84 1.63 1.74 13 0.20 0.83 3.40 0.81 14 0.00 1.52 3.09 0.84 15 0.42 0.39 3.04 0.98 16 1.81 1.13 1.35 0.91 *END WaterRift *BEGIN 10 *DATE 2013.06.30 *CALIBRATE declination 1.58 0 1 2.19 193.96 16.02 1 2 1.14 228.14 32.64 2 3 3.27 163.30 -22.86 3 4 6.91 267.13 3.53 3 5 2.54 190.56 -63.18 5 6 4.59 251.07 -25.44 6 7 2.94 167.27 7.15 7 8 3.72 165.59 -0.44 8 9 2.10 111.50 19.76 9 10 7.71 161.72 1.86 10 11 2.16 102.08 5.76 9 12 8.35 93.72 17.83 12 13 4.34 9.47 9.01 13 14 2.15 152.81 2.05 13 15 3.68 88.63 11.54 15 16 5.88 47.35 18.38 16 17 5.34 79.73 18.79 3 18 1.80 104.97 -49.81 14 20 3.88 295.15 51.22 *data passage station left right up down 0 0.75 0.00 0.88 0.81 1 0.21 0.53 1.13 0.86 2 0.65 0.39 0.85 1.15 3 0.65 0.26 1.68 1.79 5 0.00 0.60 0.00 0.63 6 0.86 0.23 0.49 0.00 7 0.00 0.62 0.19 1.57 8 0.73 0.00 0.41 1.07 9 1.38 1.52 0.21 1.09 10 0.32 0.35 0.63 0.63 *data passage station left right up down 3 0.70 0.29 1.68 1.79 4 0.55 0.32 0.38 0.44 *data passage station left right up down 9 0.25 2.80 0.21 1.09 12 1.65 0.50 0.44 0.44 13 0.20 0.00 0.00 0.65 15 1.14 0.58 0.49 0.30 16 0.54 1.43 0.27 0.00 17 1.62 0.86 2.11 0.65 *data passage station left right up down 13 0.00 0.43 0.00 0.65 14 0.00 2.86 3.76 0.00 *data passage station left right up down 3 0.29 0.70 1.68 1.79 18 0.22 0.73 0.24 0.00 *END 10 *BEGIN 20 *DATE 2013.06.30 *CALIBRATE declination 1.58 0 1 3.87 261.79 -26.31 1 2 2.55 125.69 -19.31 2 3 5.29 150.86 -7.60 3 4 1.83 63.94 -43.21 4 5 3.13 176.57 -12.17 5 6 1.40 257.65 -52.47 6 7 2.40 284.49 -13.04 3 8 2.58 64.30 1.85 8 9 2.80 61.94 1.42 9 10 5.67 274.30 -29.92 10 11 4.21 315.24 -5.18 11 12 0.46 277.24 -49.35 12 13 2.99 11.93 3.89 13 14 1.51 326.89 1.17 13 15 4.27 118.28 31.59 15 16 2.48 36.12 13.37 16 17 3.13 327.92 82.94 17 18 1.35 214.32 -12.67 18 19 2.43 231.25 22.63 13 20 2.14 331.93 -1.84 20 21 2.84 49.23 -61.41 21 22 1.87 345.57 -9.57 22 23 1.63 311.27 20.13 23 24 1.57 250.05 -33.27 24 25 2.11 302.88 3.36 25 26 2.60 267.02 31.57 27 26 1.86 143.63 -4.35 *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 0.00 0.00 0.00 0.00 2 0.23 1.76 3.38 0.77 3 0.90 0.00 0.18 0.51 4 0.14 0.26 0.71 0.55 5 0.34 0.35 0.87 0.39 6 0.00 0.34 0.50 0.18 7 0.40 0.00 0.23 0.35 *data passage station left right up down 3 0.90 0.00 0.18 0.51 8 0.97 1.31 0.38 1.78 9 0.00 1.90 1.09 0.84 10 1.22 3.45 0.67 0.23 11 0.83 0.46 0.00 0.48 12 0.21 0.00 0.00 0.00 13 4.13 2.90 1.39 0.30 15 1.61 0.98 0.28 0.86 16 2.24 0.00 0.00 1.10 17 0.00 0.10 0.69 0.29 18 0.00 0.00 0.00 0.00 *data passage station left right up down 13 2.88 4.11 1.39 0.30 20 0.00 0.41 0.35 1.24 21 0.36 0.23 0.29 0.00 22 0.82 0.21 0.78 0.31 23 0.29 0.25 0.19 0.99 24 0.00 0.43 1.06 0.00 25 0.45 0.28 0.70 0.36 26 0.36 0.45 0.00 0.45 *data passage station left right up down 27 0.23 0.41 0.24 0.00 26 0.36 0.45 0.00 0.45 *END 20 *END Swildons CaveConverter_src/test/data/regression/Crossover_in.svx0000644000000000000000000000037413030252172022455 0ustar rootroot*begin CrossTest *equate Leg1.3 Leg2.4 *begin Leg1 1 2 1.1 350 0 2 3 1.2 0 0 3 4 1.3 10 0 4 5 1.4 5 0 5 6 1.5 355 0 *end Leg1 *begin Leg2 1 2 2.1 90 0 2 3 2.2 80 0 3 4 2.3 100 0 4 5 2.4 95 0 5 6 2.5 85 0 *end Leg2 *end CrossTestCaveConverter_src/test/data/regression/0122_Suviejo_ss_ref.svx0000644000000000000000000000635412560565170023453 0ustar rootroot*BEGIN 0122_Suviejo *EQUATE 39 109 *EQUATE 48 119 0 1 19.90 42.28 -13.00 1 2 15.40 75.28 -10.00 2 3 3.50 55.28 0.00 3 4 19.30 0.00 -90.00 4 5 14.80 211.28 -27.00 5 6 39.70 217.28 -15.00 6 7 15.20 206.28 -17.00 7 8 5.20 0.00 -90.00 8 9 11.10 208.28 -6.00 4 10 18.00 43.28 20.00 10 11 9.00 13.28 -27.00 11 12 4.50 137.28 -65.00 12 13 8.00 31.28 -36.00 13 14 22.00 64.28 -45.00 14 15 19.50 40.28 25.00 15 16 16.00 28.28 -10.00 15 17 7.50 302.28 -21.00 17 18 7.00 220.28 -5.00 18 19 23.00 229.28 0.00 19 20 12.00 197.28 0.00 20 21 10.50 202.28 11.00 21 22 10.00 219.28 -18.00 22 23 8.00 213.28 0.00 23 24 8.00 192.28 0.00 24 25 13.00 219.28 0.00 25 26 12.00 211.28 0.00 26 27 8.50 220.28 0.00 27 28 14.00 228.28 0.00 28 29 5.00 212.28 -12.00 29 30 4.30 0.00 -90.00 30 31 11.00 210.28 -38.00 31 32 30.00 224.28 0.00 32 33 30.00 231.28 10.00 33 34 10.00 203.28 -25.00 34 35 8.00 203.28 -29.00 31 36 1.50 330.28 -17.00 36 37 14.20 39.28 -40.00 37 38 10.00 351.28 -7.00 38 39 11.80 35.28 3.00 39 40 30.30 29.78 0.00 40 41 5.20 255.28 3.00 41 42 12.40 340.28 0.00 42 43 4.50 306.28 0.00 40 44 8.10 22.28 -4.00 44 45 16.70 346.28 -2.00 45 46 12.30 20.28 -1.00 46 47 11.10 16.28 1.00 47 48 11.00 326.28 4.00 48 49 26.30 335.28 -47.00 49 50 2.50 64.28 -9.00 50 51 4.40 286.28 -48.00 51 52 1.90 284.28 -10.00 52 53 5.10 0.00 -90.00 53 54 11.70 124.28 -61.00 54 55 3.10 179.28 -9.00 55 56 2.50 106.28 -28.00 56 57 3.60 46.28 -35.00 49 58 5.40 39.78 0.00 58 59 7.10 20.28 5.00 59 60 2.30 248.28 -40.00 60 61 6.60 222.28 0.00 60 62 4.40 359.28 9.00 62 63 11.60 222.28 1.00 63 64 15.40 208.78 0.00 64 65 5.30 235.28 -1.00 65 66 17.00 209.78 -2.00 66 67 20.80 221.28 4.00 62 68 5.00 28.28 9.00 68 69 9.00 33.28 -20.00 37 70 25.30 220.28 0.00 70 71 13.20 204.28 6.00 71 72 8.70 217.28 -3.00 72 73 10.00 130.28 0.00 73 74 5.20 70.28 0.00 74 75 11.60 115.28 4.00 75 76 5.70 50.28 3.00 76 77 9.00 166.28 0.00 77 78 3.80 203.28 3.00 78 79 5.00 169.28 4.00 79 80 8.20 221.28 -8.00 80 81 8.60 18.28 0.00 80 82 12.80 201.78 -1.00 82 83 4.30 214.28 -37.00 83 84 4.60 220.28 0.00 84 85 3.60 141.78 -1.00 85 86 5.60 231.28 16.00 86 87 7.10 186.28 3.00 87 88 3.10 245.28 4.00 88 89 14.30 186.78 -1.00 89 90 10.00 84.28 4.00 90 91 11.70 97.28 -1.00 91 92 7.40 143.28 0.00 92 93 9.90 193.28 -7.00 93 94 8.50 194.28 -3.00 94 95 5.00 165.28 0.00 0 96 21.00 45.40 -15.00 96 97 12.10 70.40 -12.00 97 98 17.80 54.40 -45.00 98 99 30.00 210.40 -27.00 99 100 30.00 220.40 -8.00 100 101 10.90 164.40 30.00 101 102 15.60 206.40 -21.00 102 103 4.60 213.40 -7.00 103 104 2.80 0.00 -90.00 104 105 18.90 211.40 -51.00 105 106 15.20 201.40 -4.00 106 107 6.60 313.40 0.00 107 108 30.00 305.40 -3.00 108 109 20.30 41.40 -5.00 109 110 3.50 0.00 -90.00 110 111 14.90 29.40 -33.00 111 112 4.95 306.40 -5.00 112 113 19.70 30.40 0.00 113 114 22.20 26.40 0.00 114 115 12.40 39.40 -2.00 115 116 3.20 333.40 -1.00 116 117 24.85 358.40 -3.00 117 118 9.37 29.40 2.00 118 119 12.85 338.40 -7.00 *END 0122_Suviejo CaveConverter_src/test/data/regression/AwkwardCharsUTF8_in.dat0000644000000000000000000001061313030252172023445 0ustar rootrootAWKWARDCHARS SURVEY NAME: ABC! SURVEY DATE: 1 23 1980 COMMENT:My Survey SURVEY TEAM: Dr Footleg DECLINATION: 3.00 FORMAT: DDDDUDLRLADNF CORRECTIONS: 0.00 0.00 0.00 CORRECTIONS2: 0.00 0.00 FROM TO LENGTH BEARING INC LEFT UP DOWN RIGHT FLAGS COMMENTS ABC01! ABC02" 12.00 135.00 4.00 0.00 1.00 0.50 2.00 ABC02" ABC03# 15.00 130.00 3.00 2.00 2.00 0.00 5.00 ABC03# ABC04$ 19.00 165.00 2.00 3.00 1.40 0.00 4.00 ABC04$ ABC05% 22.00 155.00 1.00 6.00 1.10 0.00 0.00 ABC05% ABC06& 14.00 140.00 0.00 4.00 0.50 0.00 3.00 ABC06& ABC07& 14.00 120.00 -5.00 3.00 0.50 2.20 2.00 AWKWARDCHARS SURVEY NAME: DEF+ SURVEY DATE: 1 24 1980 SURVEY TEAM: Dr Footleg DECLINATION: 3.00 FORMAT: DDDDUDLRLADN FROM TO LENGTH BEARING DIP LEFT UP DOWN RIGHT FLAGS COMMENTS ABC06& DEF01' 10.00 50.00 0.00 -9999.00 -9999.00 -9999.00 -9999.00 DEF01' DEF02( 12.00 55.00 4.00 0.00 1.00 0.50 2.00 DEF02( DEF03) 15.00 50.00 3.00 2.00 2.00 0.00 5.00 DEF03) DEF04* 19.00 85.00 2.00 3.00 1.40 0.00 4.00 DEF04* DEF05+ 22.00 75.00 1.00 6.00 1.10 0.00 0.00 DEF05+ DEF06, 14.00 60.00 0.00 4.00 0.50 0.00 3.00 DEF06, DEF07/ 14.00 40.00 4.00 0.00 0.60 0.20 2.00 DEF07/ DEF08é 14.00 50.00 -5.00 3.00 0.50 2.20 2.00 AWKWARDCHARS SURVEY NAME: GHI< SURVEY DATE: 1 25 1980 SURVEY TEAM: Dr Footleg DECLINATION: 3.00 FORMAT: DDDDUDLRLADN FROM TO LENGTH BEARING DIP LEFT UP DOWN RIGHT FLAGS COMMENTS DEF07/ GHI01: 10.00 20.00 0.00 -9999.00 -9999.00 -9999.00 -9999.00 GHI01: GHI02; 12.00 28.00 4.00 0.00 1.00 0.50 2.00 GHI02; GHI03< 15.00 12.00 3.00 2.00 2.00 0.00 5.00 GHI03< GHI04= 19.00 18.00 2.00 3.00 1.40 0.00 4.00 GHI04= GHI05> 22.00 29.00 1.00 6.00 1.10 0.00 0.00 GHI05> GHI06? 14.00 11.00 0.00 4.00 0.50 0.00 3.00 GHI06? GHI07@ 16.00 8.00 0.50 0.00 0.60 0.20 2.00 GHI07@ GHI08ó 10.00 14.00 -5.00 3.00 0.50 2.20 2.00 AWKWARDCHARS SURVEY NAME: JKL- SURVEY DATE: 1 26 1980 SURVEY TEAM: Dr Footleg DECLINATION: 3.00 FORMAT: DDDDUDLRLADN FROM TO LENGTH BEARING DIP LEFT UP DOWN RIGHT FLAGS COMMENTS GHI07@ JKL01[ 10.00 320.00 0.00 -9999.00 -9999.00 -9999.00 -9999.00 JKL01[ JKL02\ 12.00 328.00 4.00 0.00 1.00 0.50 2.00 JKL02\ JKL03] 15.00 312.00 3.00 2.00 2.00 0.00 5.00 JKL03] JKL04^ 19.00 318.00 2.00 3.00 1.40 0.00 4.00 JKL04^ JKL05_ 22.00 329.00 1.00 6.00 1.10 0.00 0.00 JKL05_ JKL06` 16.00 322.00 0.50 0.00 0.60 0.20 2.00 JKL06` JKL07- 14.00 311.00 0.00 4.00 0.50 0.00 3.00 JKL07- JKL08ñ 10.00 314.00 -5.00 3.00 0.50 2.20 2.00 AWKWARDCHARS SURVEY NAME: MNO£ SURVEY DATE: 1 27 1980 SURVEY TEAM: Dr Footleg DECLINATION: 3.00 FORMAT: DDDDUDLRLADN FROM TO LENGTH BEARING DIP LEFT UP DOWN RIGHT FLAGS COMMENTS JKL07- MNO01{ 10.00 270.00 0.00 -9999.00 -9999.00 -9999.00 -9999.00 MNO01{ MNO02| 12.00 278.00 4.00 0.00 1.00 0.50 2.00 MNO02| MNO03} 15.00 262.00 3.00 2.00 2.00 0.00 5.00 MNO03} MNO04~ 19.00 268.00 2.00 3.00 1.40 0.00 4.00 MNO04~ MNO05¬ 22.00 279.00 1.00 6.00 1.10 0.00 0.00 MNO05¬ MNO06£ 14.00 272.00 0.50 0.00 0.60 0.20 2.00 MNO06£ MNO07´ 14.00 261.00 0.00 4.00 0.50 0.00 3.00 MNO07´ MNO08© 10.00 264.00 -5.00 3.00 0.50 2.20 2.00 CaveConverter_src/test/data/regression/2366_Torno_ss_ref.svx0000644000000000000000000006214312560565200023134 0ustar rootroot*BEGIN 2366_Torno *EQUATE 2366_06_01.20 2366_06_02.0 *EQUATE 2366_06_02.46 2366_06_03.0 *EQUATE 2366_06_03.4 2366_06_04.48 *EQUATE 2366_06_02.9 2366_06_05.0 *EQUATE 2366_06_02.10 2366_06_06.16 *EQUATE 2366_06_03.2 2366_06_07.0 *EQUATE 2366_06_02.28 2366_06_08.8 *EQUATE 2366_06_03.4 2366_06_09.11 *EQUATE 2366_06_07.8 2366_06_10.K *EQUATE 2366_06_03.14 2366_06_11.b *EQUATE 2366_06_11.21 2366_06_12.40 *EQUATE 2366_06_12.35 2366_06_13.1 *EQUATE 2366_06_11.a 2366_06_14.btc3.16 *EQUATE 2366_06_13.3 2366_06_14.btc2.9 *EQUATE 2366_06_12.35 2366_06_15.0 *EQUATE 2366_06_15.9 2366_06_17.9 *EQUATE 2366_06_12.33 2366_06_16.24 *EQUATE 2366_06_15.21 2366_06_18.3 *EQUATE 2366_06_18.6 2366_06_19.1 *EQUATE 2366_06_19.0 2366_06_20.4 *EQUATE 2366_07_01.0 2366_06_19.10 *EQUATE 2366_07_01.25 2366_06_02.39 *EQUATE 2366_07_02.4 2366_06_02.15 *EQUATE 2366_07_02.3 2366_06_19.14 *EQUATE 2366_07_03.0 2366_06_15.5 *EQUATE 2366_08_01.6 2366_07_01.24 *EQUATE 2366_08_02.61 2366_06_02.1 *EQUATE 2366_08_04.0 2366_06_14.btc1.7 *EQUATE 2366_08_02.2 2366_08_03.43 *EQUATE 2366_08_05.9 2366_08_03.17 *EQUATE 2366_08_06.0 2366_08_03.20 *EQUATE 2366_08_07.0 2366_08_03.5 *EQUATE 2366_08_08.0 2366_08_03.11 *EQUATE 2366_08_08.22 2366_08_09.20 *EQUATE 2366_08_09.19 2366_08_10.1 *EQUATE 2366_08_04.8 2366_08_11.21 *EQUATE 2366_08_04.20 2366_08_12.A *EQUATE 2366_08_04.44 2366_08_13.44 *BEGIN 2366_06_01 *CALIBRATE declination 2.42 0 1 5.60 166.00 -7.00 1 2 4.40 152.00 1.00 2 3 5.60 101.00 -2.00 3 4 4.30 91.00 0.00 4 5 3.40 50.00 18.00 5 6 4.60 96.00 5.00 6 7 4.70 74.00 2.00 7 8 3.60 8.00 0.00 6 9 4.00 345.00 -3.00 9 10 4.60 358.00 -8.00 10 11 7.40 234.00 2.00 11 3a 7.80 218.00 -3.00 10 12 3.10 356.00 11.00 12 13 2.30 0.00 23.00 13 14 3.50 36.00 15.00 20 21 6.20 340.00 1.00 21 22 7.00 355.00 2.00 22 23 7.40 25.00 5.00 23 24 8.50 342.00 4.00 24 25 7.70 21.00 15.00 25 26 9.40 351.00 3.00 26 27 3.00 0.00 90.00 27 6 4.10 105.00 21.00 *END 2366_06_01 *BEGIN 2366_06_02 *CALIBRATE declination 2.42 0 1 3.00 0.00 90.00 1 2 4.50 184.00 -5.00 2 3 5.60 144.00 -3.00 3 4 2.70 163.00 -4.00 4 5 5.40 138.00 -9.00 5 6 1.80 66.00 -14.00 6 7 7.60 140.00 -2.00 7 8 1.00 166.00 -8.00 8 9 5.40 132.00 -1.00 9 10 5.50 55.00 0.00 10 11 8.90 101.00 -3.00 11 12 2.00 146.00 -16.00 12 13 9.00 75.00 8.00 12 14 8.30 239.00 -8.00 14 15 6.70 222.00 6.00 15 16 7.80 119.00 -7.00 16 17 15.00 177.00 -4.00 17 18 5.20 168.00 -9.00 18 19 6.40 230.00 1.00 19 20 5.70 183.00 -4.00 19 21 2.30 0.00 90.00 21 22 3.90 182.00 -3.00 22 23 5.40 195.00 -5.00 23 24 2.30 244.00 -10.00 24 25 1.80 253.00 -5.00 25 26 2.00 0.00 -90.00 26 27 1.30 210.00 -7.00 27 28 2.40 0.00 -90.00 28 29 6.00 265.00 -7.00 29 30 4.60 354.00 -22.00 30 31 3.00 292.00 32.00 31 32 3.50 277.00 20.00 32 33 3.50 238.00 -10.00 33 34 10.50 193.00 -5.00 34 35 5.50 251.00 -1.00 35 36 8.80 181.00 -8.00 36 37 8.10 214.00 -3.00 37 38 7.30 228.00 -5.00 38 39 9.70 227.00 -8.00 39 40 2.40 303.00 -3.00 40 41 5.90 240.00 -9.00 41 42 8.10 208.00 -8.00 42 43 4.20 235.00 -15.00 43 44 8.90 224.00 -8.00 44 45 6.40 171.00 -2.00 45 46 4.00 238.00 -7.00 *END 2366_06_02 *BEGIN 2366_06_03 *CALIBRATE declination 2.42 0 1 9.60 298.00 -24.00 1 2 6.70 201.00 -33.00 2 3 6.50 320.00 4.00 3 4 6.80 270.00 -15.00 4 5 18.60 218.00 -5.00 5 6 17.50 291.00 -4.00 6 7 8.20 310.00 -3.00 7 8 4.00 299.00 7.00 8 9 10.80 288.00 -6.00 9 10 6.40 261.00 -3.00 10 11 26.05 242.00 -2.00 11 12 4.30 295.00 -4.00 12 13 3.50 279.00 -2.00 13 14 16.30 259.00 -5.00 *END 2366_06_03 *BEGIN 2366_06_04 *CALIBRATE declination 2.42 1 0 4.10 352.00 0.00 2 1 6.40 347.00 3.00 3 2 9.70 71.00 4.00 4 3 3.25 16.00 15.00 4 5 1.40 0.00 -90.00 6 5 2.60 76.00 1.00 7 6 2.70 347.00 5.00 6 8 3.40 340.00 29.00 8 9 7.00 10.00 5.00 9 3 6.75 150.00 -5.00 10 7 3.00 345.00 -38.00 11 10 5.60 330.00 -6.00 12 7 4.00 8.00 2.00 13 12 2.80 80.00 5.00 14 13 4.20 132.00 0.00 15 14 5.30 130.00 2.00 16 15 16.25 142.00 4.00 17 16 3.40 163.00 5.00 18 17 1.05 50.00 0.00 19 18 2.95 354.00 2.00 20 19 2.70 34.00 -3.00 21 20 2.50 158.00 -3.00 22 21 3.00 40.00 -2.00 22 23 3.45 173.00 6.00 23 24 7.90 143.00 3.00 25 24 3.70 342.00 -2.00 26 22 4.30 149.00 -6.00 27 26 2.00 170.00 9.00 28 27 2.70 67.00 7.00 29 28 6.30 136.00 1.00 30 29 10.50 10.00 -1.00 30 31 32.00 150.00 2.00 32 30 8.50 153.00 6.00 33 32 5.20 168.00 1.00 34 33 17.10 144.00 4.00 35 34 7.50 110.00 10.00 36 35 16.85 47.00 0.00 37 36 3.55 99.00 -10.00 38 37 12.10 52.00 11.00 39 38 6.10 46.00 1.00 40 39 11.00 83.00 -2.00 41 40 8.90 59.00 4.00 42 41 5.30 100.00 4.00 43 42 4.60 0.00 0.00 44 43 8.40 59.00 3.00 45 44 10.50 50.00 2.00 46 45 5.00 23.00 -5.00 47 46 3.40 44.00 10.00 48 47 4.70 12.00 -8.00 *END 2366_06_04 *BEGIN 2366_06_05 *CALIBRATE declination 2.42 0 1 2.30 200.00 -6.00 1 2 2.70 156.00 10.00 2 3 5.30 135.00 -25.00 3 4 4.20 224.00 10.00 4 5 2.80 187.00 10.00 5 6 5.10 235.00 -2.00 6 7 3.20 231.00 -9.00 7 8 3.00 172.00 -12.00 8 9 1.60 141.00 -4.00 9 10 1.60 180.00 8.00 10 11 1.50 244.00 -10.00 11 12 4.30 203.00 -5.00 12 13 4.10 299.00 0.00 7 14 4.20 311.00 -2.00 14 15 7.20 318.00 5.00 *END 2366_06_05 *BEGIN 2366_06_06 *CALIBRATE declination 2.42 16 17 3.20 347.00 24.00 17 18 3.30 58.00 13.00 18 19 3.20 73.00 5.00 19 20 4.40 93.00 8.00 *END 2366_06_06 *BEGIN 2366_06_07 *CALIBRATE declination 2.42 0 1 6.60 122.00 8.00 1 2 4.70 137.00 1.00 2 3 6.40 146.00 11.00 3 4 7.20 80.00 13.00 4 5 5.60 106.00 13.00 5 6 14.60 80.00 10.00 6 7 2.60 177.00 50.00 7 8 4.10 47.00 38.00 *END 2366_06_07 *BEGIN 2366_06_08 *CALIBRATE declination 2.42 1 0 8.60 229.00 -6.00 2 1 4.50 226.00 0.00 3 2 3.70 285.00 -13.00 4 3 3.50 303.00 -9.00 5 4 4.10 261.00 -17.00 4 6 2.80 315.00 -22.00 6 7 4.40 0.00 -90.00 7 8 1.30 260.00 0.00 *END 2366_06_08 *BEGIN 2366_06_09 *CALIBRATE declination 2.42 *CALIBRATE tape 1.00 11 10 15.50 218.00 -5.00 1 0 4.60 251.00 1.00 1 2 8.80 250.00 -6.00 2 3 7.70 340.00 -5.00 3 4 6.90 310.00 -5.00 4 5 9.70 265.00 -15.00 5 6 7.10 270.00 -15.00 6 7 7.30 240.00 -5.00 7 8 17.90 310.00 -3.00 8 9 8.80 334.00 -20.00 9 10 4.40 330.00 -40.00 *END 2366_06_09 *BEGIN 2366_06_10 *CALIBRATE declination 2.42 K 1 16.30 54.00 31.00 B A 5.92 285.00 25.00 B C 1.30 158.00 0.00 C D 8.50 241.00 20.00 E C 13.20 238.00 -18.00 F E 3.30 319.00 -3.00 G F 11.10 252.00 -9.00 H G 4.70 227.00 -17.00 H I 1.80 0.00 -90.00 I J 5.50 122.00 -30.00 K J 2.40 24.00 22.00 *END 2366_06_10 *BEGIN 2366_06_11 *CALIBRATE declination 2.42 *CALIBRATE tape -0.90 2 1 9.90 0.00 -18.00 2 3 7.60 263.00 3.00 4 3 6.90 42.00 1.00 4 5 6.90 199.00 -31.00 5 6 8.90 266.00 -31.00 5 7 15.80 94.00 35.00 8 7 13.30 77.00 21.00 8 9 14.10 152.00 28.00 10 9 15.30 311.00 -2.00 10 11 12.80 43.00 3.00 12 11 6.70 298.00 -18.00 12 13 13.30 149.00 5.00 13 14 4.10 102.00 -5.00 14 15 6.30 340.00 -1.00 15 16 7.70 338.00 -1.00 16 17 3.20 342.00 -2.00 17 18 3.20 311.00 5.00 18 19 6.20 37.00 6.00 19 20 4.00 2.00 3.00 20 21 4.70 36.00 4.00 12 a 7.00 0.00 -5.00 a b 6.00 79.00 0.00 *END 2366_06_11 *BEGIN 2366_06_12 *CALIBRATE declination 2.42 0 1 9.68 25.50 -5.50 1 2 8.47 331.00 -1.00 2 3 9.14 9.00 2.00 3 4 8.20 108.00 5.00 3 5 12.68 47.00 0.00 5 6 12.59 44.00 -7.00 6 7 2.63 19.00 39.00 7 8 7.46 9.00 -18.00 8 9 13.24 92.00 5.50 9 10 9.67 197.00 2.00 10 11 9.47 70.00 1.00 11 12 11.39 115.00 3.00 12 13 7.32 87.00 4.00 13 14 16.11 58.00 2.00 14 15 4.40 9.00 0.00 15 16 5.85 313.00 4.00 16 17 12.81 44.00 2.00 17 18 9.04 16.00 3.00 18 19 19.55 58.00 2.00 19 20 3.65 76.00 -1.00 20 21 4.90 31.00 6.00 21 22 4.31 88.00 3.00 22 24 6.67 47.00 6.00 24 25 6.41 61.00 1.00 25 26 7.29 25.00 3.00 8 27 3.66 352.00 -14.00 27 28 10.98 27.00 1.00 28 29 2.41 310.00 1.00 29 30 15.55 291.00 5.00 30 31 46.75 308.50 -3.50 31 32 12.55 343.00 -8.00 32 33 22.75 296.00 4.00 33 34 6.30 354.00 -13.00 34 35 26.56 342.00 -2.00 33 36 5.28 107.00 -23.00 36 37 10.97 315.00 -47.00 37 38 4.60 6.00 -19.00 38 39 10.68 331.00 1.00 39 40 1.78 294.00 -13.00 *END 2366_06_12 *BEGIN 2366_06_13 *CALIBRATE declination 2.42 *CALIBRATE tape 1.00 1 2 5.50 0.00 10.00 2 3 5.60 75.00 3.00 3 4 10.90 115.00 0.00 4 5 15.60 130.00 1.00 5 6 6.20 175.00 1.00 6 7 10.90 122.00 1.00 7 8 7.40 160.00 0.00 8 9 12.20 128.00 3.00 9 10 6.30 98.00 0.00 10 11 24.90 124.00 2.00 11 12 12.40 112.00 2.00 *END 2366_06_13 *BEGIN 2366_06_14 *CALIBRATE declination 2.42 *EQUATE btc1.9 btc2.11 *EQUATE btc1.7 btc3.1 *BEGIN btc1 2 1 6.00 232.00 -5.00 2 3 18.25 97.00 0.00 3 4 6.80 60.00 5.00 4 5 23.10 123.00 1.00 5 6 29.90 130.00 -3.00 6 7 17.55 122.00 0.00 7 8 11.55 107.00 11.00 8 9 16.95 125.00 -9.00 *END btc1 *BEGIN btc2 *FLAGS DUPLICATE 9 10 4.25 239.00 7.00 10 11 9.55 234.00 -19.00 11 12 16.95 305.00 9.00 *END btc2 *BEGIN btc3 1 2 2.90 276.00 12.00 2 3 4.50 0.00 -90.00 3 4 5.15 338.00 -13.00 4 5 4.30 196.00 -9.00 5 6 7.20 123.00 -6.00 6 7 5.95 127.00 -11.00 7 8 2.70 0.00 -90.00 8 9 3.30 70.00 -1.00 9 10 6.05 173.00 3.00 10 11 5.95 212.00 -5.00 11 12 1.40 0.00 -90.00 12 13 3.35 196.00 -36.00 13 14 4.30 192.00 -10.00 14 15 14.05 135.00 11.00 15 16 12.15 116.00 -10.00 *END btc3 *END 2366_06_14 *BEGIN 2366_06_15 *CALIBRATE declination 2.42 0 1 5.40 345.00 0.00 1 2 1.80 317.00 30.00 2 3 7.00 10.00 6.00 3 4 5.70 22.00 -1.00 4 5 3.90 332.00 7.00 5 6 10.50 21.00 17.00 6 7 10.10 116.00 -9.00 7 8 4.70 55.00 24.00 8 9 13.20 33.00 1.00 9 10 8.50 92.00 4.00 10 11 5.80 115.00 8.00 11 12 3.40 71.00 11.00 12 13 11.40 29.00 2.00 13 14 6.20 322.00 5.00 14 15 5.40 292.00 18.00 15 16 5.20 290.00 -12.00 15 17 3.50 24.00 23.00 17 18 5.60 129.00 4.00 18 19 3.80 130.00 5.00 19 20 2.80 38.00 6.00 20 21 4.20 120.00 15.00 21 22 5.90 133.00 25.00 19 23 6.60 134.00 -2.00 23 24 2.60 224.00 3.00 24 25 3.60 298.00 -3.00 *END 2366_06_15 *BEGIN 2366_06_16 *CALIBRATE declination 2.42 1 2 7.40 210.00 36.00 2 3 6.10 110.00 -2.00 3 4 11.40 243.00 -2.00 4 5 4.75 205.00 -6.00 5 6 5.70 110.00 -1.00 6 7 2.55 164.00 -4.00 7 8 3.85 89.00 1.00 8 9 7.40 118.00 6.00 9 10 3.70 157.00 16.00 10 11 7.75 184.00 12.00 12 13 5.50 222.00 -31.00 13 14 6.00 228.00 -46.00 14 15 6.30 223.00 -11.00 15 16 5.10 247.00 -27.00 9 16 2.60 315.00 -5.00 8 17 10.35 208.00 -1.00 17 18 3.70 0.00 -90.00 18 19 2.70 0.00 -90.00 19 20 7.00 32.00 -8.00 20 21 3.60 355.00 -8.00 21 22 6.50 56.00 -4.00 22 23 3.60 104.00 -5.00 23 24 3.70 62.00 -45.00 *END 2366_06_16 *BEGIN 2366_06_17 *CALIBRATE declination 2.42 1 2 5.80 297.00 -8.00 2 3 2.10 250.00 -13.00 3 4 10.65 304.00 -6.00 4 5 9.60 313.00 -5.00 5 6 2.80 279.00 -5.00 6 7 9.50 290.00 -8.00 9 8 5.75 202.00 -1.00 7 8 1.35 0.00 -90.00 *END 2366_06_17 *BEGIN 2366_06_18 *CALIBRATE declination 2.42 *CALIBRATE tape 0.20 1 2 11.20 136.00 -16.00 3 2 5.75 26.00 1.00 *FLAGS DUPLICATE 4 3 6.40 311.00 -28.00 *FLAGS NOT DUPLICATE 4 5 17.15 132.00 -3.00 5 6 4.97 31.00 2.00 6 7 8.98 109.00 -2.00 7 8 12.10 119.00 0.00 8 9 7.24 136.00 2.00 9 10 7.35 23.00 -4.00 10 11 10.80 117.00 3.00 11 12 12.60 138.00 -2.00 13 14 6.07 38.00 -9.00 14 15 5.29 81.00 3.00 15 16 4.80 23.00 -5.00 7 16 1.70 0.00 -90.00 *END 2366_06_18 *BEGIN 2366_06_19 *CALIBRATE declination 2.42 *EQUATE 39 1 0 1 12.30 232.00 -31.00 0 2 6.80 103.00 -4.00 2 3 11.30 58.00 10.00 3 4 9.40 31.00 -3.00 4 5 20.40 125.00 -1.00 5 6 9.90 127.00 -5.00 6 7 13.70 134.00 1.00 7 8 12.20 105.00 -2.00 8 9 5.10 124.00 5.00 9 10 6.20 45.00 -30.00 10 11 21.10 42.00 0.00 11 12 10.60 43.00 8.00 12 13 8.30 16.00 2.00 13 14 8.20 8.00 -5.00 14 15 4.80 110.00 -6.00 16 9 2.20 346.00 33.00 17 16 2.80 348.00 15.00 18 17 6.40 309.00 40.00 19 18 5.60 51.00 25.00 19a 18 2.20 284.00 15.00 20 9 4.10 93.00 20.00 21 20 7.40 23.00 -19.00 22 21 11.20 313.00 0.00 23 21 5.70 61.00 -12.00 24 23 8.70 331.00 3.00 25 24 4.50 72.00 11.00 26 25 5.70 86.00 -2.00 27 26 5.30 55.00 -27.00 28 25 7.00 11.00 7.00 29 10 6.50 294.00 15.00 30 6 6.90 58.00 -26.00 30 31 6.20 286.00 1.00 31 32 4.00 216.00 0.00 32 33 5.40 276.00 -3.00 33 34 4.80 233.00 -6.00 34 35 10.20 282.00 -1.00 35 36 6.90 223.00 -5.00 37 36 8.00 97.00 3.00 37 38 13.80 316.00 -40.00 38 39 1.80 0.00 -90.00 14 1a 5.10 121.00 -5.00 1a 2a 8.80 8.00 21.00 1a 3a 5.50 123.00 -19.00 *END 2366_06_19 *BEGIN 2366_06_20 *CALIBRATE declination 2.42 *CALIBRATE tape 0.20 1 2 9.25 69.00 6.00 2 3 6.56 104.00 -4.00 3 4 7.41 107.00 -27.00 *END 2366_06_20 *BEGIN 2366_07_01 *CALIBRATE declination 2.28 1 0 4.00 310.00 15.00 2 1 2.80 290.00 5.00 3 2 2.20 48.00 4.00 4 3 2.00 4.00 3.00 5 4 9.20 310.00 22.00 6 5 3.30 330.00 10.00 7 6 2.60 299.00 10.00 8 7 4.60 247.00 -7.00 9 8 3.30 217.00 -9.00 10 9 3.50 228.00 6.00 11 10 1.80 325.00 18.00 12 11 1.70 339.00 21.00 13 12 5.20 230.00 -16.00 14 13 2.70 196.00 3.00 15 14 1.70 236.00 -2.00 16 15 4.20 182.00 0.00 17 16 2.70 226.00 -8.00 18 5 4.55 125.00 22.00 19 18 4.20 101.00 27.00 20 19 4.70 29.00 20.00 21 20 2.10 0.00 2.00 22 21 4.30 100.00 3.00 23 22 1.30 353.00 5.00 24 23 9.66 117.00 1.00 25 24 6.20 49.00 4.00 *END 2366_07_01 *BEGIN 2366_07_02 *CALIBRATE declination 2.28 0 4 16.00 0.00 -90.00 1 2 12.00 0.00 -90.00 3 2 2.00 108.00 0.00 *END 2366_07_02 *BEGIN 2366_07_03 *CALIBRATE declination 2.28 *FLAGS DUPLICATE 0 1 6.30 21.00 2.00 1 2 7.30 72.00 11.00 2 3 6.20 112.00 4.00 *FLAGS NOT DUPLICATE 3 4 6.50 3.20 51.00 4 5 3.60 0.00 82.00 5 6 1.80 274.00 53.00 6 7 1.30 145.00 62.00 7 8 6.50 198.00 2.00 8 9 20.50 209.00 3.00 9 10 4.80 287.00 -3.00 10 11 5.40 126.00 52.00 11 12 2.80 315.00 49.00 12 13 2.20 287.00 1.00 13 14 7.60 204.00 1.00 14 15 3.50 207.00 -3.00 15 16 3.00 238.00 11.00 16 17 6.20 204.00 0.00 17 18 3.00 272.00 24.00 18 19 6.70 240.00 -7.00 8 1A 3.90 0.00 90.00 1A 2A 11.00 22.00 9.00 2A 3A 2.30 31.00 6.00 3A 4A 4.20 75.00 9.00 4A 5A 9.00 65.00 4.00 5A 6A 4.40 345.00 3.00 6A 7A 3.20 63.00 1.00 7A 8A 3.40 340.00 2.00 *END 2366_07_03 *BEGIN 2366_08_01 *CALIBRATE declination 2.15 1 0 4.74 325.00 6.00 1 2 16.95 135.00 2.00 2 3 1.18 210.00 0.00 3 4 5.11 114.00 0.00 4 5 4.80 150.00 5.00 *FLAGS DUPLICATE 5 6 2.43 138.00 22.00 *END 2366_08_01 *BEGIN 2366_08_02 *CALIBRATE declination 2.15 1 0 2.02 199.00 -7.00 1 2 2.04 125.00 -22.00 2 3 2.65 50.00 -3.00 3 4 2.95 41.00 26.00 3 5 6.85 142.00 3.00 5 6 8.08 152.00 -4.00 6 7 5.12 144.00 -5.00 7 8 2.78 171.00 -4.00 8 9 1.40 229.00 -4.00 9 10 3.18 301.00 1.00 10 11 4.14 196.00 -6.00 12 7 1.12 175.00 4.00 12 13 4.69 97.00 0.00 13 14 4.16 352.00 12.00 14 15 3.25 33.00 0.00 15 16 0.80 95.00 4.00 16 17 3.44 16.00 1.00 17 18 4.17 142.00 0.00 18 19 5.81 22.00 -1.00 13 20 6.04 131.00 1.00 20 21 5.51 15.00 7.00 21 22 2.65 322.00 10.00 21 23 5.17 153.00 0.00 21 24 9.94 14.00 6.00 24 25 2.65 319.00 8.00 24 30 5.67 145.00 -7.00 25 26 3.29 358.00 6.00 26 27 3.48 334.00 6.00 20 31 5.72 134.00 0.00 31 32 9.29 130.00 -1.00 32 33 8.62 128.00 0.00 32 34 6.79 355.00 1.00 34 35 4.17 15.00 2.00 35 36 7.19 316.00 9.00 35 37 3.79 122.00 0.00 35 38 7.55 16.00 4.00 38 39 5.08 141.00 -1.00 39 40 3.56 150.00 1.00 40 41 14.62 131.00 -1.00 40 42 3.39 23.00 -5.00 38 43 2.82 312.00 17.00 43 44 5.78 316.00 -1.00 43 45 5.38 16.00 11.00 45 46 3.66 2.00 9.00 46 47 3.45 18.00 -4.00 47 48 1.36 12.00 -33.00 48 49 4.85 32.00 0.00 50 49 2.56 190.00 -59.00 50 51 2.48 24.00 -2.00 51 52 6.29 33.00 3.00 52 53 3.99 143.00 0.00 53 54 4.64 359.00 8.00 54 55 8.38 31.00 0.00 55 56 2.44 32.00 3.00 55 57 4.83 330.00 0.00 56 58 2.31 356.00 6.00 58 59 3.37 63.00 -65.00 59 60 1.71 154.00 9.00 60 61 2.15 165.00 -26.00 *END 2366_08_02 *BEGIN 2366_08_03 *CALIBRATE declination 2.15 1 0 4.50 250.00 -2.00 1 2 3.23 79.00 -1.00 2 3 7.60 22.00 2.00 3 4 5.71 36.00 2.00 4 5 3.33 128.00 -1.00 5 6 1.02 92.00 -30.00 6 7 3.89 84.00 -1.00 7 8 5.17 149.00 1.00 8 9 4.78 42.00 0.00 9 10 2.45 101.00 2.00 10 11 3.64 58.00 7.00 11 12 15.39 146.00 0.00 12 13 10.64 115.00 1.00 13 14 9.86 183.00 -1.00 14 15 6.69 142.00 2.00 15 16 6.88 166.00 -1.00 16 17 4.83 117.00 0.00 17 18 10.04 90.00 0.00 18 19 5.99 139.00 4.00 19 20 3.69 68.00 -6.00 15 21 5.85 31.00 12.00 21 22 4.74 348.00 1.00 22 23 7.12 29.00 3.00 23 24 9.55 15.00 0.00 24 25 10.91 124.00 2.00 25 26 9.64 91.00 -3.00 26 27 7.45 146.00 -1.00 27 28 6.23 129.00 2.00 28 29 6.41 60.00 2.00 29 30 3.12 317.00 2.00 30 31 7.41 63.00 1.00 31 32 3.16 53.00 2.00 32 33 3.69 138.00 11.00 33 34 1.12 168.00 -24.00 34 35 4.23 60.00 7.00 35 36 1.13 166.00 -16.00 36 37 8.00 125.00 1.00 37 38 0.38 0.00 -90.00 38 39 1.12 67.00 2.00 39 40 3.36 4.00 8.00 40 41 0.67 0.00 -90.00 41 42 2.94 55.00 -4.00 42 43 0.92 36.00 36.00 21 a1 4.95 80.00 -2.00 a1 a2 4.40 352.00 8.00 a2 a3 6.40 36.00 3.00 a3 a4 6.74 54.00 0.00 b0 b1 12.30 151.00 -1.00 b1 b2 4.45 56.00 -1.00 b2 b3 4.20 156.00 0.00 b3 b4 3.15 61.00 0.00 b4 b5 5.50 143.00 -1.00 b5 b6 8.20 174.00 -1.00 b6 23 1.12 270.00 -8.00 c1 c2 8.95 314.00 0.00 c1 36 4.10 139.00 -16.00 c2 c3 9.90 233.00 -8.00 d1 d2 8.38 313.00 0.00 34 d2 2.36 155.00 1.00 *END 2366_08_03 *BEGIN 2366_08_04 *CALIBRATE declination 2.15 1 2 1.76 276.00 -13.00 2 3 1.48 245.00 12.00 3 4 5.50 229.00 -11.00 4 5 1.60 207.00 -17.00 5 6 3.59 239.00 14.00 6 7 3.90 126.00 14.00 7 8 3.20 242.00 11.00 8 9 4.20 195.00 9.00 9 10 3.79 200.00 6.00 10 11 4.50 224.00 -23.00 11 12 8.37 225.00 9.00 12 13 4.90 293.00 3.00 13 14 18.70 214.00 -3.00 14 15 8.40 293.00 -2.00 15 16 4.37 221.00 -16.00 16 17 9.81 258.00 -3.00 17 18 12.57 183.00 1.00 18 19 20.25 245.00 0.00 19 20 11.62 156.00 -4.00 20 21 0.60 167.00 2.00 21 22 16.97 226.00 -1.00 22 23 5.60 249.00 0.00 23 24 4.50 201.00 2.00 24 25 3.00 244.00 16.00 25 26 6.20 331.00 -2.00 26 27 6.50 240.00 -2.00 27 28 2.40 181.00 0.00 28 29 4.00 236.00 -2.00 29 30 4.10 212.00 0.00 30 31 1.00 263.00 0.00 31 32 4.28 205.00 58.00 32 33 3.80 240.00 26.00 33 34 2.50 199.00 -24.00 34 35 3.20 245.00 -28.00 35 36 3.90 293.00 -43.00 36 37 5.30 216.00 -11.00 37 38 10.90 207.00 -18.00 38 39 20.50 194.00 0.00 39 40 5.60 219.00 8.00 40 41 17.80 201.00 -1.00 41 42 7.00 109.00 7.00 42 43 7.40 145.00 -19.00 43 44 11.60 228.00 18.00 *FLAGS DUPLICATE 0 1A 28.15 300.00 -1.00 1A 2A 19.45 318.00 0.00 2A 3A 13.41 313.00 -3.00 3A 4A 19.30 278.00 -5.00 4A 5A 4.92 251.00 -2.00 5A 1 8.20 283.00 -3.00 *END 2366_08_04 *BEGIN 2366_08_05 *CALIBRATE declination 2.15 0 1 2.47 310.00 10.00 1 2 1.67 19.00 12.00 2 3 5.07 44.00 0.00 3 4 2.92 6.00 3.00 4 5 3.42 127.00 0.00 5 6 3.05 123.00 5.00 7 6 2.23 333.00 6.00 4 8 2.29 39.00 6.00 8 9 1.25 301.00 -17.00 *END 2366_08_05 *BEGIN 2366_08_06 *CALIBRATE declination 2.15 0 1 4.42 139.00 0.00 1 2 6.28 79.00 0.00 2 3 4.71 48.00 4.00 3 4 19.39 136.00 -1.00 4 5 3.97 123.00 -3.00 1 6 14.72 130.00 -1.00 6 7 4.37 141.00 -9.00 7 8 2.82 131.00 0.00 8 9 2.69 150.00 -5.00 9 10 5.86 131.00 0.00 10 11 4.87 132.00 0.00 11 12 3.04 132.00 4.00 12 13 3.15 125.00 -15.00 13 14 1.49 155.00 31.00 14 15 1.94 106.00 -13.00 *END 2366_08_06 *BEGIN 2366_08_07 *CALIBRATE declination 2.15 0 1 3.77 15.00 10.00 1 2 2.82 56.00 0.00 2 3 2.84 50.00 7.00 *END 2366_08_07 *BEGIN 2366_08_08 *CALIBRATE declination 2.15 0 1 2.98 346.00 28.00 1 2 12.98 348.00 1.00 2 3 5.80 254.00 -7.00 3 4 4.28 214.00 -6.00 4 5 6.81 299.00 -2.00 5 6 1.20 0.00 -9.00 6 7 0.42 0.00 90.00 7 8 6.39 317.00 -1.00 8 9 4.43 205.00 -4.00 9 10 4.37 224.00 -3.00 10 11 0.72 154.00 -5.00 11 12 3.72 259.00 -6.00 12 13 3.54 334.00 3.00 13 14 2.76 20.00 -2.00 14 15 2.19 265.00 -1.00 15 16 2.55 321.00 6.00 16 17 1.44 327.00 3.00 17 18 2.07 206.00 -2.00 18 19 2.61 262.00 -11.00 19 20 0.94 322.00 0.00 20 21 2.17 18.00 -5.00 21 22 3.11 309.00 0.00 *END 2366_08_08 *BEGIN 2366_08_09 *CALIBRATE declination 2.15 0 1 9.09 213.00 -5.00 1 2 5.01 250.00 27.00 2 3 2.78 222.00 -40.00 3 4 2.60 246.00 -20.00 4 5 3.77 195.00 18.00 5 6 3.00 297.00 0.00 6 7 7.46 254.00 -9.00 7 8 3.08 234.00 -5.00 8 9 4.22 266.00 1.00 9 10 3.74 256.00 -9.00 10 11 8.54 207.00 -9.00 11 12 2.37 238.00 -8.00 12 13 3.89 248.00 -9.00 13 14 1.92 259.00 -49.00 14 15 5.14 243.00 -12.00 15 16 5.10 224.00 1.00 16 17 3.38 134.00 9.00 17 18 2.04 153.00 -46.00 18 19 5.14 76.00 12.00 19 20 5.46 77.00 19.00 8 21 1.71 312.00 -72.00 21 22 7.14 230.00 -1.00 22 23 4.85 238.00 -9.00 23 24 2.55 155.00 0.00 24 25 6.66 206.00 -3.00 25 26 5.12 208.00 4.00 26 20 1.44 314.00 -7.00 28 29 13.79 299.00 -3.00 29 30 26.09 248.00 -6.00 30 20 8.12 269.00 -15.00 17 a1 4.81 209.00 17.00 a1 a2 4.59 211.00 4.00 a2 a3 6.29 230.00 3.00 *END 2366_08_09 *BEGIN 2366_08_10 *DATE 2008.03.27 *CALIBRATE declination 2.15 1 2 5.42 187.00 0.00 2 3 3.85 231.00 -1.00 3 4 10.33 201.00 -2.00 4 5 2.16 258.00 3.00 5 6 3.51 266.00 -5.00 6 7 2.43 331.00 -2.00 7 8 2.16 254.00 -1.00 8 9 2.25 233.00 -7.00 9 10 1.70 228.00 -8.00 10 11 2.94 216.00 -5.00 11 12 14.57 204.00 -2.00 12 13 2.34 254.00 -2.00 13 14 4.42 225.00 0.00 14 15 8.87 205.00 -3.00 15 16 1.25 313.00 79.00 17 16 5.53 27.00 12.00 18 19 4.03 282.00 -1.00 19 20 8.45 281.00 -3.00 20 21 6.16 284.00 -2.00 21 22 3.76 347.00 -14.00 22 23 2.68 231.00 -3.00 23 24 2.26 263.00 -15.00 24 25 6.63 207.00 0.00 25 26 6.02 199.00 -2.00 26 27 2.97 200.00 -5.00 24 28 1.37 292.00 -25.00 15 28 2.06 59.00 -44.00 18 29 10.00 39.00 0.00 *END 2366_08_10 *BEGIN 2366_08_11 *DATE 2008.03.28 *CALIBRATE declination 2.15 1 2 3.24 326.00 -5.00 2 3 1.90 318.00 3.00 3 4 5.59 211.00 -4.00 4 5 2.53 228.00 -1.00 5 6 4.18 302.00 -6.00 6 7 3.00 59.00 -72.00 7 8 7.36 310.00 8.00 8 9 7.15 301.00 -11.00 9 10 9.68 333.00 -8.00 10 11 21.83 308.00 -3.00 11 12 10.10 320.00 5.00 12 13 5.82 324.00 -1.00 13 14 4.38 347.00 -6.00 14 15 4.70 313.00 -6.00 15 16 4.03 324.00 -9.00 16 17 10.24 308.00 -3.00 17 18 8.01 324.00 -10.00 18 19 1.79 10.00 -4.00 19 20 2.42 287.00 -15.00 20 21 2.38 221.00 10.00 *END 2366_08_11 *BEGIN 2366_08_12 *DATE 2008.03.28 *CALIBRATE declination 2.15 A 1 4.90 142.00 68.00 1 2 6.20 38.00 -4.00 2 3 5.50 43.00 4.00 3 4 3.40 4.00 -1.00 4 5 2.30 62.00 1.00 5 6 7.00 351.00 -3.00 6 7 3.90 330.00 3.00 7 8 8.26 9.00 0.00 8 9 2.50 27.00 5.00 9 10 4.60 310.00 3.00 10 11 3.40 60.00 14.00 11 12 4.70 56.00 26.00 12 13 4.10 54.00 7.00 13 14 4.60 95.00 -42.00 *END 2366_08_12 *BEGIN 2366_08_13 *DATE 2008.03.28 *CALIBRATE declination 2.15 44 45 8.50 211.00 34.00 45 46 12.00 219.00 -9.00 46 47 3.40 185.00 24.00 47 48 2.30 56.00 -57.00 48 49 4.50 151.00 -41.00 49 50 8.30 0.00 -90.00 50 51 5.13 262.00 10.00 51 52 12.00 237.00 -2.00 52 53 2.07 172.00 -3.00 53 54 3.00 293.00 -41.00 54 55 3.50 218.00 -46.00 55 56 4.10 209.00 -2.00 56 57 1.60 242.00 0.00 57 58 9.70 212.00 -4.00 58 59 4.10 161.00 -3.00 59 60 6.70 191.00 4.00 60 61 4.00 0.00 90.00 61 62 7.69 202.00 -2.00 62 63 3.00 0.00 -90.00 63 64 3.00 171.00 -14.00 64 65 3.80 84.00 -3.00 65 66 3.00 119.00 0.00 66 67 3.80 147.00 1.00 b0 b1 10.00 13.00 0.00 b1 b2 5.80 321.00 -3.00 b2 b3 7.50 321.00 6.00 b2 b4 2.50 285.00 -1.00 b4 b5 4.00 282.00 -48.00 b5 67 2.10 220.00 -36.00 52 c1 2.45 0.00 90.00 c1 c2 5.50 231.00 23.00 c2 c3 9.10 193.00 20.00 c3 c4 6.90 174.00 0.00 67 d0 15.00 189.00 -1.00 *END 2366_08_13 *END 2366_Torno CaveConverter_src/test/data/regression/Swil20120909_ps_ref.svx0000644000000000000000000001352713030252172023111 0ustar rootroot*BEGIN Swil20120909 *BEGIN 1 *DATE 2012.09.09 0 1 2.98 10.26 -2.01 ;1.1 has magnetic problems. So surveyed to it from knot on tree opposite door=1.0\rThen from knot to rear wall of blockhouse 1.0-1.2 0 2 5.24 3.23 -5.04 ;1.2=rawl plug on rear wall of blockhouse *FLAGS SPLAY 2 2a 5.24 182.16 5.06 2 2b 1.89 187.97 3.09 2 2c 1.91 168.82 1.18 2 2d 1.38 218.59 -0.17 2 2e 0.64 248.05 1.54 2 2f 0.68 105.32 -3.30 2 2g 1.56 140.40 -2.98 2 2h 1.84 176.52 -47.48 2 2i 1.82 167.81 -47.93 2 2j 1.54 189.90 -63.97 2 2k 1.61 132.31 -59.62 *FLAGS NOT SPLAY 2 3 2.63 166.70 -60.11 ;1.3=Top left corner of stream culvert when looking out of cave *FLAGS SPLAY 3 3a 0.23 345.81 60.30 3 3b 2.63 347.89 60.51 3 3c 0.94 9.90 76.67 3 3d 0.31 232.08 12.34 3 3e 0.35 31.05 10.29 3 3f 0.47 8.50 -70.77 *FLAGS NOT SPLAY 3 4 3.10 330.76 -25.13 *FLAGS SPLAY 4 4a 3.12 152.39 25.35 4 4b 0.56 208.59 -0.68 4 4c 0.59 140.67 80.22 4 4d 1.32 189.06 -86.08 4 4e 1.50 43.79 87.42 *FLAGS NOT SPLAY 4 5 4.51 275.80 -12.10 ;1.5=polished tip of pointy boulder by top of drop into lower level of chamber. Boulder is dark grey with white flecks and fossils. *FLAGS SPLAY 5 5a 4.51 94.74 12.12 5 5b 3.45 123.81 5.64 5 5c 3.51 134.15 0.14 5 5d 6.66 129.46 11.11 5 5e 2.33 149.61 -6.69 5 5f 1.64 153.47 -11.17 5 5g 0.79 252.58 -12.22 5 5h 1.22 296.10 -7.82 5 5i 2.96 296.71 -23.02 5 5j 1.51 42.54 10.51 5 5k 4.24 72.82 11.85 5 5l 0.70 333.90 81.49 5 5m 0.55 114.68 -67.13 *FLAGS NOT SPLAY 5 6 2.41 50.67 -22.33 *FLAGS SPLAY 6 6a 2.38 230.76 22.40 6 6b 0.35 2.58 81.25 6 6c 0.30 220.39 -79.38 6 6d 0.51 299.09 -0.90 6 6e 0.21 108.28 1.25 *FLAGS NOT SPLAY 6 7 1.08 37.30 11.53 *FLAGS SPLAY 7 7a 1.09 217.24 -12.21 7 7b 0.80 327.16 66.53 7 7c 4.12 176.11 -83.10 7 7d 0.72 287.69 -77.51 7 7e 0.60 292.40 -18.76 7 7f 2.02 100.10 16.73 *FLAGS NOT SPLAY 7 8 2.00 6.10 11.51 *FLAGS SPLAY 8 8a 2.00 184.82 -11.17 8 8b 1.47 98.32 -7.52 8 8c 0.19 105.24 52.84 8 8d 1.24 102.22 -61.02 8 8e 0.88 109.39 0.40 *FLAGS NOT SPLAY 8 9 1.01 56.60 0.18 ;1.9=bottom point of sharp vertical edge of boulder forming ceiling *FLAGS SPLAY 9 9a 1.02 236.71 -0.46 9 9b 0.48 12.78 64.51 9 9c 0.60 279.77 -8.53 9 9d 0.47 275.64 -73.34 9 9e 3.54 74.99 6.08 *FLAGS NOT SPLAY 9 10 3.07 336.52 5.81 ;1.10=bottom of cream calcite rib running down RH wall *FLAGS SPLAY 10 10a 3.08 156.19 -6.26 10 10b 0.58 232.61 -1.43 10 10c 1.31 64.76 -58.36 10 10d 1.43 101.23 -11.90 10 10e 1.14 78.33 -36.92 *FLAGS NOT SPLAY 9 11 2.42 64.64 5.29 *FLAGS SPLAY 11 11a 2.42 245.35 -5.41 11 11b 0.44 233.11 24.20 11 11c 0.20 42.71 -21.97 11 11d 0.45 239.67 46.05 11 11e 0.49 178.37 -53.68 11 11f 3.30 118.39 17.88 *FLAGS NOT SPLAY 11 12 4.50 106.56 19.29 *FLAGS SPLAY 12 12a 0.25 297.10 84.93 12 12b 0.26 127.16 -84.07 12 12c 0.60 197.87 18.66 12 12d 1.17 327.17 -9.65 12 12e 1.63 13.18 -2.28 12 12f 1.86 96.76 12.16 10 10f 3.76 209.97 51.34 *FLAGS NOT SPLAY 10 13 0.94 80.55 -45.63 *FLAGS SPLAY 13 13a 0.94 259.78 45.32 13 13b 0.84 97.15 56.57 13 13c 1.16 144.82 14.01 13 13d 0.48 130.78 -25.41 13 13e 0.58 324.87 25.54 *FLAGS NOT SPLAY 13 14 5.31 65.16 19.50 *FLAGS SPLAY 14 14a 5.82 246.22 -19.66 14 14b 0.64 206.92 -10.28 14 14c 0.55 185.33 -53.51 14 14d 0.21 279.32 69.67 14 14e 2.09 161.86 8.15 14 14f 0.85 285.98 -13.42 *FLAGS NOT SPLAY 10 15 3.27 329.15 -18.16 *FLAGS SPLAY 15 15a 3.25 149.02 17.88 15 15b 0.77 63.28 -13.22 15 15c 0.70 243.58 79.61 15 15d 0.81 97.26 -82.81 15 15e 2.37 233.98 -23.81 15 15f 0.94 168.26 10.56 *FLAGS NOT SPLAY 15 16 3.57 334.08 -6.33 *FLAGS SPLAY 16 16a 3.58 154.40 6.43 16 16b 0.29 52.63 -10.96 16 16c 0.70 63.17 -62.51 16 16d 0.73 221.54 2.28 16 16e 1.82 250.10 55.64 16 16f 0.85 237.55 47.64 16 16g 0.86 195.09 5.98 *FLAGS NOT SPLAY 16 17 2.41 207.98 -9.43 *FLAGS SPLAY 17 17a 2.40 28.72 9.44 17 17b 1.55 24.59 -70.16 17 17c 1.33 336.78 -9.34 17 17d 0.48 26.59 -33.63 17 17e 0.66 83.59 13.58 17 17f 1.67 193.75 -23.62 *FLAGS NOT SPLAY 17 18 4.05 308.01 -19.25 *FLAGS SPLAY 18 18a 4.05 128.34 19.12 18 18b 1.54 155.56 12.30 18 18c 0.59 300.02 2.80 18 18d 0.28 261.46 65.07 18 18e 0.69 182.87 -85.38 *FLAGS NOT SPLAY 18 19 2.06 211.48 -16.06 *FLAGS SPLAY 19 19a 2.04 31.72 16.13 19 19b 0.55 320.99 71.97 19 19c 1.54 308.22 -85.39 19 19d 0.46 306.67 -13.63 *FLAGS NOT SPLAY 19 20 2.94 233.55 -35.84 *FLAGS SPLAY 20 20a 2.95 53.57 35.69 20 20b 0.98 64.26 12.43 20 20c 0.93 44.01 13.78 20 20d 1.55 84.07 80.29 20 20e 1.62 301.40 -84.42 *FLAGS NOT SPLAY 20 21 2.04 14.57 -39.09 ;1.21=25cm tall stumpy stalagmite on floor to left of top of Jacob's Ladder. Stn is centre of flat ring on top. *FLAGS SPLAY 21 21a 2.04 195.35 38.69 21 21b 1.80 235.96 12.16 21 21c 0.21 339.46 -76.92 21 21d 0.34 53.17 3.81 21 21e 3.17 230.10 64.31 *FLAGS NOT SPLAY *data passage station left right up down 0 0.00 0.00 0.00 0.00 2 0.00 1.90 0.00 1.38 3 0.09 0.11 0.91 0.44 4 0.56 0.00 1.49 1.31 5 1.98 4.15 0.69 0.50 6 0.49 0.19 0.35 0.29 7 0.57 1.90 0.73 4.09 8 0.00 1.34 0.15 1.09 9 0.38 0.87 0.43 0.45 11 0.13 1.70 0.33 0.40 12 1.63 0.57 0.25 0.26 *data passage station left right up down 9 0.59 3.00 0.43 0.45 10 0.54 2.34 2.93 1.11 13 0.50 1.07 0.70 0.21 14 0.54 2.05 0.20 0.44 *data passage station left right up down 10 1.97 1.09 2.93 1.11 15 2.15 0.75 0.68 0.80 16 0.83 0.18 1.51 0.62 17 1.38 1.29 0.00 1.46 18 1.46 0.38 0.25 0.68 19 0.00 0.45 0.53 1.54 20 0.00 0.89 1.53 1.62 21 1.16 0.21 2.86 0.21 *END 1 *END Swil20120909 CaveConverter_src/test/data/regression/2596_Petirrojo_ss_ref.svx0000644000000000000000000000026112560565206024014 0ustar rootroot*BEGIN 2596_Petirrojo *CALIBRATE declination 2.28 2 1 6.20 0.00 -90.00 3 2 2.04 41.00 -7.00 4 3 4.59 340.00 -26.00 5 4 6.81 22.00 -56.00 *END 2596_Petirrojo CaveConverter_src/test/data/regression/2595_PrizeCock_ref.svx0000644000000000000000000000027312114041272023210 0ustar rootroot*BEGIN 2595_Prize_Cock_Pot *CALIBRATE declination 2.28 2 1 1.98 228.00 66.00 3 2 7.50 0.00 90.00 4 3 3.71 24.00 1.00 4 5 3.90 0.00 -90.00 *END 2595_Prize_Cock_Pot CaveConverter_src/test/data/regression/2108_ref.svx0000644000000000000000000000066012114041276021231 0ustar rootroot*BEGIN 2108 *CALIBRATE declination 2.42 *EQUATE 3 15 1 2 2.61 108.00 -40.00 2 3 3.09 60.00 -36.00 3 4 2.55 263.00 -12.00 4 5 2.05 235.00 -69.00 5 6 4.87 247.00 18.00 6 7 1.90 290.00 0.00 4 8 2.50 342.00 23.00 8 9 5.95 116.00 -12.00 9 10 4.12 174.00 27.00 10 11 5.15 149.00 19.00 11 12 4.30 303.00 14.00 12 13 5.70 66.00 -18.00 13 14 3.78 268.00 -12.00 14 15 4.86 323.00 -15.00 *END 2108 CaveConverter_src/test/data/regression/Stomps_ps_ref7.svx0000644000000000000000000002377113030252172022722 0ustar rootroot*BEGIN Stomps2010 *EQUATE 155.1 156.1 *EQUATE 156.9 127.0 *BEGIN 156 *DATE 2010.08.11 *CALIBRATE declination 1.92 *EQUATE 28 32 *FLAGS SPLAY 1 1a 1.68 37.77 8.97 1 1b 9.67 232.64 2.24 1 1c 3.12 97.12 86.67 1 1d 0.74 77.17 -89.50 1 1e 15.03 226.71 -13.08 1 1f 6.82 210.56 28.68 *FLAGS NOT SPLAY 1 2 9.08 189.31 -7.43 *FLAGS SPLAY 2 2a 7.47 208.36 -11.11 2 2b 8.06 39.11 14.74 2 2c 4.41 128.49 81.69 2 2d 1.26 358.86 -82.11 *FLAGS NOT SPLAY 2 3 18.55 116.98 -0.10 *FLAGS SPLAY 3 3a 2.10 353.60 5.03 3 3b 8.88 190.22 4.19 3 3c 3.69 137.39 81.12 3 3d 1.65 101.41 -87.20 *FLAGS NOT SPLAY 3 4 3.94 109.34 5.39 *FLAGS SPLAY 4 4a 1.72 13.50 -2.13 4 4b 5.78 180.90 3.13 4 4c 3.62 131.58 82.07 4 4d 1.77 11.41 -89.12 *FLAGS NOT SPLAY 4 5 14.13 96.76 -0.61 *FLAGS SPLAY 5 5a 0.89 21.68 11.66 5 5b 4.92 187.59 1.55 5 5c 3.34 152.86 86.38 5 5d 1.68 93.35 -86.43 5 5e 10.70 195.39 -17.40 *FLAGS NOT SPLAY 5 6 14.76 107.42 10.11 *FLAGS SPLAY 6 6a 2.77 353.39 1.57 6 6b 6.30 194.68 -4.39 6 6c 1.21 240.65 80.78 6 6d 2.02 357.90 -83.47 *FLAGS NOT SPLAY 6 7 9.56 79.43 -2.48 *FLAGS SPLAY 7 7a 12.22 207.03 2.29 7 7b 1.68 97.50 85.86 7 7c 1.71 241.95 -86.22 *FLAGS NOT SPLAY 7 8 12.97 128.55 -9.80 *FLAGS SPLAY 8 8a 5.12 354.01 2.57 8 8b 5.91 181.07 -1.30 8 8c 5.02 174.58 84.02 8 8d 1.51 132.53 -81.84 8 8e 13.39 235.87 7.15 8 8f 4.13 271.01 46.40 *FLAGS NOT SPLAY 8 9 5.84 89.36 1.83 *FLAGS SPLAY 9 9a 4.62 19.88 -7.87 9 9b 14.51 183.22 24.27 9 9c 4.47 145.46 80.50 *FLAGS NOT SPLAY 9 10 11.81 117.66 18.69 *FLAGS SPLAY 10 10a 5.38 40.87 -12.73 10 10b 15.76 211.64 3.96 10 10c 2.39 262.28 85.82 10 10d 8.08 203.51 -24.97 *FLAGS NOT SPLAY 10 11 17.53 168.45 -7.51 *FLAGS SPLAY 11 11a 11.16 40.65 22.54 11 11b 5.81 202.33 -0.42 11 11c 4.42 170.80 84.77 11 11d 2.04 127.28 -88.53 *FLAGS NOT SPLAY 11 12 16.73 148.86 -11.30 *FLAGS SPLAY 12 12a 10.78 54.37 20.06 12 12b 2.98 221.85 -4.24 12 12c 5.15 185.63 84.72 12 12d 2.27 188.16 -80.50 *FLAGS NOT SPLAY 12 13 15.14 118.78 -5.89 *FLAGS SPLAY 13 13a 1.67 61.44 5.64 13 13b 7.80 233.20 3.15 13 13c 6.12 304.49 0.88 13 13d 3.61 348.94 1.85 13 13e 5.07 331.32 -2.18 13 13f 6.90 69.83 84.81 13 13g 0.44 268.26 -88.34 *FLAGS NOT SPLAY 13 14 12.56 158.08 3.43 *FLAGS SPLAY 14 14a 3.84 53.87 -4.42 14 14b 3.12 227.31 2.93 14 14c 5.53 300.37 87.43 14 14d 1.63 169.51 -86.65 *FLAGS NOT SPLAY 14 15 20.99 142.22 1.02 *FLAGS SPLAY 15 15a 3.37 59.85 -7.03 15 15b 6.88 228.82 -1.60 15 15c 1.81 165.82 -81.12 15 15d 7.31 156.10 87.72 *FLAGS NOT SPLAY 15 16 14.28 159.69 1.84 *FLAGS SPLAY 16 16a 3.99 50.15 5.15 16 16b 6.30 223.94 0.27 16 16c 6.76 212.56 82.75 16 16d 2.16 75.37 -85.02 16 16e 7.35 53.81 -19.26 *FLAGS NOT SPLAY 16 17 10.37 162.98 2.49 *FLAGS SPLAY 17 17a 8.03 85.24 5.30 17 17b 4.58 268.81 4.80 17 17c 7.08 117.31 85.78 17 17d 1.67 30.75 -87.87 17 17e 11.57 65.79 -12.79 *FLAGS NOT SPLAY 17 18 7.85 126.63 -11.48 *FLAGS SPLAY 18 18a 9.04 57.55 -6.54 18 18b 12.85 221.83 12.63 18 18c 5.78 227.99 82.52 18 18d 1.20 269.82 -79.45 18 18e 9.67 145.31 -10.88 18 18f 10.53 166.40 -10.22 18 18g 8.33 104.33 -11.12 *FLAGS NOT SPLAY 18 19 23.70 157.35 -4.37 *FLAGS SPLAY 19 19a 9.34 73.19 10.78 19 19b 11.84 245.81 12.69 19 19c 1.17 287.39 83.26 19 19d 2.42 51.41 38.56 *FLAGS NOT SPLAY 19 20 13.16 101.93 26.51 *FLAGS SPLAY 20 20a 8.13 59.17 2.11 20 20b 3.99 319.43 -1.32 20 20c 19.28 269.18 2.35 20 20d 21.11 255.42 1.62 20 20e 9.96 233.12 -18.11 20 20f 1.90 168.29 81.35 20 20g 12.67 132.37 13.97 *FLAGS NOT SPLAY 20 21 14.46 145.32 8.27 *FLAGS SPLAY 21 21a 14.26 78.44 8.06 21 21b 3.68 250.66 -18.99 21 21c 7.18 227.58 -16.64 21 21d 12.39 206.43 -26.43 21 21e 16.36 186.99 -21.04 21 21f 17.98 167.17 -10.43 21 21g 21.27 136.38 4.37 21 21h 18.97 113.75 8.27 21 21i 1.58 137.96 69.16 21 21j 0.84 62.80 -88.10 21 21k 9.40 19.51 12.23 *FLAGS NOT SPLAY 21 22 11.00 140.41 13.34 *FLAGS SPLAY 22 22a 18.00 237.95 -37.04 22 22b 12.64 198.26 -39.64 22 22c 15.78 148.75 -25.36 22 22d 16.36 126.26 -16.70 22 22e 11.77 93.31 -5.76 22 22f 13.48 67.73 -1.47 22 22g 13.79 35.24 -1.65 *FLAGS NOT SPLAY 22 23 19.39 47.07 -3.39 *FLAGS SPLAY 23 23a 7.24 83.01 -21.44 23 23b 8.47 183.50 1.18 23 23c 10.48 171.25 -0.49 23 23d 7.11 147.60 -3.96 *FLAGS NOT SPLAY 23 24 12.26 182.57 0.88 *FLAGS SPLAY 24 24a 1.92 82.91 0.63 24 24b 1.15 120.51 84.75 24 24c 0.92 76.07 -84.15 *FLAGS NOT SPLAY 24 25 9.37 136.99 -31.89 *FLAGS SPLAY 25 25a 1.16 119.38 3.47 25 25b 2.94 355.15 23.42 25 25c 3.69 310.01 86.34 25 25d 0.33 193.17 -87.50 *FLAGS NOT SPLAY 25 26 16.12 66.28 8.82 *FLAGS SPLAY 26 26a 4.09 231.84 0.23 26 26b 1.48 42.67 87.21 26 26c 0.60 329.87 -86.96 *FLAGS NOT SPLAY 26 27 20.53 208.25 -0.25 *FLAGS SPLAY 27 27a 1.97 300.95 -6.53 27 27b 3.70 311.97 80.68 27 27c 1.85 292.76 -79.95 *FLAGS NOT SPLAY 27 28 23.08 217.47 -11.66 *FLAGS SPLAY 28 28a 2.88 128.79 -0.08 28 28b 6.22 310.56 2.64 28 28c 8.32 349.65 84.55 28 28d 28.39 23.01 54.31 28 28e 13.96 7.70 59.65 28 28f 12.78 4.70 10.78 28 28g 8.89 49.16 13.35 *FLAGS NOT SPLAY 28 29 9.44 337.56 -7.14 *FLAGS SPLAY 29 29a 2.88 283.39 -6.23 29 29b 10.43 124.26 14.34 29 29c 0.85 25.33 78.60 29 29d 1.76 324.20 -83.85 *FLAGS NOT SPLAY 29 30 11.12 26.64 -1.45 *FLAGS SPLAY 30 30a 4.37 251.83 1.05 30 30b 8.10 252.77 -8.28 30 30c 13.30 274.36 -5.31 30 30d 5.94 168.28 4.29 30 30e 3.36 125.62 9.29 30 30f 11.33 60.91 17.00 30 30g 6.48 357.65 15.32 *FLAGS NOT SPLAY 30 31 7.38 59.13 18.23 *FLAGS SPLAY 31 31a 6.38 284.87 4.02 31 31b 3.28 81.68 10.06 31 31c 1.65 268.12 86.30 31 31d 0.81 305.44 -85.22 *FLAGS NOT SPLAY 31 25 7.67 9.40 10.35 *FLAGS SPLAY 32 32a 2.87 117.70 -1.62 32 32b 6.26 302.62 9.50 32 32c 7.77 227.86 81.72 32 32d 1.77 169.28 -67.64 *FLAGS NOT SPLAY 32 33 26.57 219.45 -1.21 *FLAGS SPLAY 33 33a 2.53 307.33 4.40 33 33b 3.36 124.91 2.33 33 33c 5.20 170.50 89.34 33 33d 3.24 328.02 -70.36 33 33e 6.56 290.15 -24.69 *FLAGS NOT SPLAY 33 34 30.49 226.77 -3.52 *FLAGS SPLAY 34 34a 5.86 236.75 -3.69 34 34b 4.04 262.63 -3.89 34 34c 8.40 95.41 4.69 34 34d 9.61 62.57 84.14 34 34e 1.35 158.37 -84.56 *FLAGS NOT SPLAY 34 35 24.02 125.74 -0.07 *FLAGS SPLAY 35 35a 2.68 30.69 -5.75 35 35b 2.81 197.88 -14.73 35 35c 0.73 66.43 86.00 35 35d 1.58 127.05 -83.96 *FLAGS NOT SPLAY 35 36 4.42 104.65 6.02 *FLAGS SPLAY 36 36a 2.49 21.29 -22.90 36 36b 2.24 260.57 -1.29 36 36c 5.82 217.21 86.87 36 36d 1.89 140.80 -83.24 36 36e 9.41 213.65 -13.20 *FLAGS NOT SPLAY 36 37 10.68 164.02 12.16 *FLAGS SPLAY 37 37a 3.80 53.48 -4.48 37 37b 6.19 229.59 9.87 37 37c 6.08 146.27 82.26 37 37d 8.28 10.38 -30.58 *FLAGS NOT SPLAY 37 38 12.55 153.02 -2.14 *FLAGS SPLAY 38 38a 2.42 41.61 -6.10 38 38b 10.27 228.39 1.96 38 38c 6.31 200.74 84.49 38 38d 5.42 81.95 -50.82 *FLAGS NOT SPLAY 38 39 26.21 114.84 -7.27 *FLAGS SPLAY 39 39a 3.40 52.39 6.37 39 39b 20.50 219.16 10.44 39 39c 13.28 207.48 46.99 39 39d 9.50 182.35 -22.41 *FLAGS NOT SPLAY 39 40 26.69 165.92 -1.74 *FLAGS SPLAY 40 40a 8.67 60.90 12.75 40 40b 15.33 247.49 12.29 40 40c 10.78 304.71 85.18 40 40d 2.29 6.12 -84.82 *FLAGS NOT SPLAY 40 41 29.35 157.64 4.26 *FLAGS SPLAY 41 41a 10.62 252.68 11.74 41 41b 12.75 22.64 8.50 41 41c 7.88 18.58 78.68 41 41d 22.88 13.29 8.03 41 41e 12.85 343.23 -24.55 *FLAGS NOT SPLAY 41 42 25.13 123.62 -2.35 *FLAGS SPLAY 42 42a 4.46 66.37 20.49 42 42b 21.37 242.80 10.60 42 42c 10.42 232.44 63.69 42 42d 7.43 221.79 -41.05 42 42e 13.88 308.37 1.63 *FLAGS NOT SPLAY 42 43 24.15 168.91 -8.72 *FLAGS SPLAY 43 43a 14.40 256.04 21.06 43 43b 10.07 101.29 29.82 43 43c 12.51 150.27 86.71 43 43d 2.00 248.22 -77.51 *FLAGS NOT SPLAY 43 44 13.32 168.35 10.48 *FLAGS SPLAY 44 44a 4.83 75.77 6.03 44 44b 18.29 275.87 11.43 44 44c 10.21 26.26 77.78 44 44d 7.37 297.13 -41.78 44 44e 6.22 274.92 -17.88 *FLAGS NOT SPLAY 44 45 28.90 189.31 16.45 *FLAGS SPLAY 45 45a 10.63 135.54 9.88 45 45b 9.58 280.49 -1.90 45 45c 3.41 209.50 87.61 45 45d 4.30 270.17 -67.62 *FLAGS NOT SPLAY 45 46 22.48 194.04 5.14 *FLAGS SPLAY 46 46a 14.53 63.91 5.51 46 46b 6.66 255.94 -22.06 46 46c 1.68 238.04 77.50 46 46d 12.99 117.87 8.99 *FLAGS NOT SPLAY *data passage station left right up down 1 0.79 8.89 3.11 0.74 2 7.12 6.02 4.36 1.24 3 1.82 8.64 3.64 1.64 4 1.71 5.64 3.59 1.77 5 0.86 10.19 3.34 1.68 6 2.73 6.16 1.19 2.01 7 0.00 11.90 1.67 1.71 8 4.63 10.62 4.99 1.50 9 4.55 13.02 4.41 0.00 10 5.13 14.63 2.38 3.41 11 9.10 4.01 4.40 2.04 12 9.95 2.97 5.13 2.24 13 1.83 7.76 6.87 0.44 14 3.81 3.04 5.52 1.62 15 3.34 6.72 7.30 1.78 16 6.61 5.60 6.70 2.15 17 11.08 3.78 7.06 1.67 18 8.94 12.34 5.73 1.18 19 7.65 10.37 1.16 0.00 20 7.33 15.73 1.88 0.00 21 12.73 10.63 1.48 0.84 22 11.75 11.68 0.00 8.06 23 3.55 7.89 0.00 2.65 24 1.87 0.00 1.15 0.92 25 1.83 1.14 3.68 0.33 26 0.00 4.07 1.48 0.60 27 0.00 1.96 3.65 1.82 28 1.49 15.96 8.28 0.00 29 2.81 8.55 0.83 1.75 30 10.36 4.83 0.00 0.00 31 6.00 2.38 1.65 0.81 25 1.83 1.14 3.68 0.33 *data passage station left right up down 32 2.81 6.13 7.69 1.64 33 3.32 5.49 5.20 3.05 34 8.27 5.09 9.56 1.34 35 2.66 2.70 0.73 1.57 36 2.11 9.00 5.81 1.88 37 3.76 5.77 6.02 4.21 38 2.70 10.23 6.28 4.20 39 3.37 19.77 9.71 3.62 40 8.30 14.94 10.74 2.28 41 18.01 9.64 7.73 5.34 42 4.11 20.87 9.34 4.88 43 8.06 13.42 12.49 1.95 44 4.68 17.79 9.98 4.91 45 8.70 9.57 3.41 3.98 46 12.46 5.44 1.65 2.50 *END 156 *END Stomps2010 CaveConverter_src/test/data/regression/0107_Uzueka_in.svx0000644000000000000000000052101712560565162022422 0ustar rootroot*BEGIN 0107_Uzueka ;Reorganised all survey data into sections for drawing up in Tunnel ;and replaced several sections of data derived from the printed ;surveys with original data found in the archive file. ;Footleg Mar. 2008 ;Dates surveyed : Various & 910814&950412&960811&970802&970818&000731&000802&000802&000802&010411&010411&020328&020329&020329&020329&020329&020330&020801 ;Surveyors : ?+BEC+tf+LMills+PeteEagan Dave Biggs Liz++JD JChilton+Juan Jane+LDJM+PP PE+PP PE+Ali+LM++DBell+DBell+BEC+BEC+Marcus+DFoxton+PP ;Matienzo position is 43.315936, -3.584633 (W 3.584633) ;Declination can be found at ;www.ngdc.noaa.gov/geomagmodels/struts/calcDeclination ;declination is 2 41' (2.68) for 2004 changing by 8'E per year ;declination is 2.28 for 2007 ;declination is 2.15 for 2008 ;Recalculated as 2 5' for 2009 changing by 7'E per year ;declination is 2.08 for 2009 ;declination is 1deg-55mins ie 1.92deg for 2010 Easter ;declination is 1deg-53mins ie 1.88deg for 2010 summer ;declination is 1deg-47mins ie 1.78deg for 2011 Easter ;using 1.75 for 2011 Summer. CHECK THIS ;using 1.67 for 2012 Easter. CHECK THIS *EXPORT 2ndRiverInlet.1 RockyHorror.313 *FIX ent2_UpnOver.flyover.14 451918 4800014 175; GPS fix Easter 2007 (Field Entrance) *FIX entrance1.561 451701 4799962 175; GPS WAAS fix Easter 2008 (Church Entrance) *FIX 2691_GiantPanda.0 452629 4800024 215 *ENTRANCE ent2_UpnOver.flyover.14 ;Usual entrance at bottom of field *ENTRANCE entrance1.36 *ENTRANCE entrance1.561 ;Church Entrance *ENTRANCE entrance1.574 *ENTRANCE 2691_GiantPanda.0 *EQUATE entrance2.0 ent2_UpnOver.flyover.13 *EQUATE QuadrapheniaResurvey2010.FlyoverCrawl.0 ent2_upnover.flyover.26 *EQUATE entrance2.19 QuadrapheniaResurvey2010.QuadrapheniaToSqueezeResurvey.10 *EQUATE QuadrapheniaResurvey2010.MainJunctionsArea.0 ent2_UpnOver.flyover.26 *EQUATE QuadrapheniaResurvey2010.MainJunctionsArea.16 Quadraphenia.996 *EQUATE QuadrapheniaResurvey2010.MainJunctionsArea.21 quad2008-2.0 *EQUATE NearSeries.16 entrance2.18 *EQUATE entrance2.19 AroundEntranceSeries.19 *EQUATE WildlifeSeries.983 AroundEntranceSeries.944 *EQUATE WildlifeSeries.922 AroundEntranceSeries.922 *EQUATE entrance1.1000 Quadraphenia.1000 *EQUATE QuadrapheniaOxbows.1019 Quad2008-3.23 *EQUATE Roofers_Passage_Area.3 Quad2008-2.6 *EQUATE Roofers_Passage_Area.11 Quad2008-3.0 *EQUATE Roofers_Passage_Area.2 TilersWay.40 *EQUATE Quad2008-3.0 PullUpPassage.pt1.0 *EQUATE PullUpPassage.pt4.1 PullUpPassageMaze.pt1.1 *EQUATE PullUpPassage.pt2.4 PullUpPassageMaze.pt1.6 *EQUATE PullUpPassageMaze.pt3.3 PullupMazeInlet.97 *EQUATE Quad2008-3.43 MarathonPassage.57 *EQUATE MarathonPassagePt1.79 MarathonPassage.54 *EQUATE FlashbulbHallOldBits.749 FlashbulbHall_resurvey2009_1.13 *EQUATE FlashbulbHall_resurvey2009_1.52 GodKnows.Feb2010.0 *EQUATE FlashbulbHall_resurvey2009_1.56 GodKnows.Apr2010.39 *EQUATE FlashbulbHall_resurvey2009_1.44 GodKnows.Apr2010.44 *EQUATE GodKnows.GoldiesWay.Pt3.5 RealSimaBaz.pt1.0 *EQUATE FlashbulbHall_resurvey2009_1.44 FlashbulbHall_resurvey2010.34 *EQUATE FlashbulbHall_resurvey2009_2.15 FlashbulbHall_resurvey2010.30 *EQUATE FlashbulbHall_Aug09.6 BeyondFlashbulbNorth.11 *EQUATE BeyondFlashbulbNorth.0 PullUpPassage.pt3.2 *EQUATE Marathon_to_PigsTrotters_resurvey2009_1.10 PigsTrotters_downstream_resurvey2011.0 *EQUATE PigsTrotters_downstream_resurvey2011.17 NewUzueka.1 *EQUATE RH_StartOfGorillaWalk.1094 NewUzueka.46 *EQUATE PhreaticMazeSeries.0 NewUzueka.16 *EQUATE NewUzueka.65 2691_GiantPanda.33 *EQUATE 2691_GiantPanda.8 WindyInlet.1069 *EQUATE NewUzueka.82 2ndRiverInlet.20 *EQUATE NewUzueka.77 ZoologicalGardens.865 *EQUATE Stomps.Pt1.1 HiddenAven.1 *EQUATE Stomps.Pt1.9 GourInlet.1 *EQUATE NewUzueka.106 GourInlet.1 *EQUATE GourInlet.71 BeyondThunderdome.1 *EQUATE GourInlet.13 BeyondThunderdome.93 *EQUATE BeyondThunderdome.1 TomorrowMorrowLand.1 *EQUATE TomorrowMorrowLand.45 Uzu-Gour090410153.0 *EQUATE Uzu-Gour090410153.58 GourAven2010.0 *EQUATE Stomps.Pt1.34a FarStompsInlet.189 *EQUATE Stomps.Pt1.17 Crossover.1 *EQUATE Stomps.Pt1.19 Crossover.14 *EQUATE Crossover.46 3rdRiver.46 *EQUATE 3rdRiver.46 3rdRiverInlet.197 *EQUATE 3rdRiver.57 ObviousInlet.1 *EQUATE 3rdRiver.61 StrawInlet.61 *EQUATE 3rdRiver.82 LisasBit.1 *EQUATE 3rdRiver.95 Aug96Passage.202 *EQUATE 3rdRiver.104 LasPlayas.Resurvey2011.8 *EQUATE LasPlayas.Resurvey2011.1 SloppyInlet.Pt1_2010.1 *EQUATE LasPlayas.Resurvey2011.1 DiversionChamberInlet.1 *EQUATE HellOfADiversion.1 SloppyInlet.Pt2_2011.4 *EQUATE HellOfADiversion.58 DiversionChamberInlet.13 *EQUATE LasPlayas.Resurvey2011.1 BRoad.1 *EQUATE BRoad.15 SandyZigZags.1 *EQUATE River2.9 BRoad.18 *EQUATE River2.25 4thRiverInlet.1 *EQUATE River2.34 Astradome.6 *EQUATE River2.49 ArmageddonBypass.1 *EQUATE River2.62 ArmageddonToRockyHorror.219a *EQUATE ArmageddonToRockyHorror.223 SandyJunctionInlet.10 *EQUATE ArmageddonToRockyHorror.223 ChambersBackFromArmageddon.7 *EQUATE ArmageddonToRockyHorror.238 ShrimpBoneInlet.238 *EQUATE ArmageddonToRockyHorror.273 RockyHorror.273 *EQUATE ArmageddonToRockyHorror.273 Trident.273 *EQUATE Quad2008-3.23 Marathon_to_PigsTrotters_resurvey2009_1.0 *EQUATE FlashbulbHall_resurvey2009_1.26 Quad2008-3.16 *EQUATE Marathon_to_PigsTrotters_resurvey2009_1.0 Marathon_to_PigsTrotters_resurvey2009_2.1 *EQUATE Marathon_to_PigsTrotters_resurvey2009_1.6 Marathon_to_PigsTrotters_resurvey2009_2.9 *EQUATE Marathon_to_PigsTrotters_resurvey2009_1.10 Pigstrotters_sidepassage.0 *EQUATE Marathon_to_PigsTrotters_resurvey2009_1.10 FlashbulbHall_resurvey2009_1.1 *EQUATE FlashbulbHall_resurvey2009_2.4 FlashbulbHall_resurvey2009_1.51 *EQUATE FlashbulbHall_resurvey2009_2.0 FlashbulbHall_resurvey2009_2a.1 *EQUATE FlashbulbHall_resurvey2009_1.46 FlashbulbHall_Aug09.0 ;FlashbulbHall_resurvey2009_2a.9 *EQUATE Marathon_to_PigsTrotters_resurvey2009_1.10 WardrobePassage.pt4.5 *EQUATE FlashbulbHall_resurvey2009_1.4 WardrobePassage.pt1.13 *EQUATE FlashbulbHall_resurvey2009_2a.7 FlashbulbHall_Aug09.2 *begin entrance1 *EXPORT 36 561 574 1000 ;First Entrance Series 36 37 19.92 72.47 0 ;* 36 548 2.70 112.95 -10 ;1st entr 548 549 8.90 149.95 -2 ;* 549 550 5.30 213.95 0 ;* 550 551 6.80 224.95 0 ;* 551 33 21.02 267.27 0 ;* 33 34 13.92 291.03 0 ;* 551 552 9.30 307.95 0 ;* 552 553 5.40 265.95 0 ;* 553 554 6.50 318.95 0 ;* 554 555 13.20 248.95 0 ;* 555 556 28.10 275.95 0 ;* 556 557 5.80 279.95 0 ;* 557 558 14.70 205.95 0 ;* 558 559 2.20 184.95 0 ;* 559 560 8.10 77.95 40 ;* 559 561 11.50 265.95 25 ;Church entr 550 562 5.10 111.95 0 ;* 562 563 7.70 66.95 -2 ;* 563 564 5.50 138.95 0 ;* 564 565 3.20 75.95 5 ;* 565 566 6.40 19.95 0 ;* 566 567 5.00 56.95 0 ;* 567 568 18.20 91.95 0 ;* 568 569 6.10 28.95 0 ;* 569 570 6.10 311.95 5 ;* 569 571 12.50 83.95 0 ;* 571 572 6.20 298.95 0 ;* 571 573 12.00 115.95 0 ;* 573 574 6.20 83.95 40 ;pitch entr 574 575 6.90 262.95 -18 ;* 551 576 3.40 141.95 0 ;* 576 577 7.20 117.95 0 ;* 577 578 7.50 247.95 0 ;* 578 579 5.50 143.95 0 ;* 579 580 3.60 233.95 0 ;* 30 580 4.63 010 0 ; 1000 30 11.31 315.00 0 ;* 36 911 2.60 52.00 6 ;* 911 912 5.00 299.00 -28 ;stn8 912 913 7.00 271.00 6 ;* 913 914 2.80 237.00 15 ;stn15 914 915 14.00 276.00 1 ;stn3 915 916 3.80 275.00 -19 ;stn2 916 917 7.30 265.00 -5 ;stn1 917 918 6.00 271.00 -6 ;stn0 914 919 6.30 103.00 8 ;* 915 920 9.50 339.00 -1 ;stn4 *end entrance1 *begin entrance2 *EXPORT 0 18 19 0 1 3.72 104.45 0 ;* 1 2 3.60 50.95 0 ;* 2 3 9.48 83.45 9 ;* 3 4 10.21 83.45 -24 ;* 4 5 8.73 141.95 3 ;* 5 6 7.96 88.45 -21 ;* 6 7 2.95 50.95 -20 ;* 7 8 4.31 96.95 -18 ;* 8 9 2.50 112.45 0 ;* 9 10 6.59 43.95 15 ;* 10 11 2.80 164.95 -8 ;* 11 12 2.89 96.45 3 ;* 12 13 8.20 50.45 2 ;* 13 14 4.40 91.95 -5 ;* 14 15 12.06 81.45 2 ;* 15 16 5.84 202.95 3 ;* 16 17 3.06 248.45 3 ;* 17 18 3.02 193.45 11 ;* 18 19 12.86 78.95 13 ;* *end entrance2 *BEGIN ent2_UpnOver *EXPORT flyover.13 flyover.14 flyover.26 *BEGIN flyover *EXPORT 13 14 22 26 ;surveyors: Alasdair Neill, Ian Chandler ;passage name: first passage inside entrance ;date: 13th Aug 09 ;stns 21-26 ;surveyors: Alasdair Neill Peter Smith ;date: 14th Aug 09 *CALIBRATE declination 2.08 1 0 5.94 27 -2 2 1 1.37 23 -42 3 2 1.7 5 3 4 3 15.06 92 -1.5 5 3 8.94 31 0 6 5 9.45 64.5 -1 7 6 3.46 28 -12 8 7 4.22 63 5 9 8 5.5 52 2 10 9 1.5 354 0 11 10 4.5 76 1 ;link to entrance *FLAGS DUPLICATE 12 0 5.54 63.5 0.5 13 12 5.55 89.5 4 *FLAGS NOT DUPLICATE 14 13 5.9 232 -43 ;entrance 6 21 3.84 - up 21 22 5.89 219 40 22 23 2.96 211 -2 23 24 7.14 249 -3 24 25 4.4 225 -28 25 26 4.71 - down ;marker at foot of climb *data passage station left right up down 6 0.9 0.6 2.5 1.04 21 0.4 0.4 1 2.5 22 0.4 0 0.5 1 23 0 0.4 0.2 0.6 24 0.7 0.2 1.1 1.2 25 0.3 0.6 2.2 2 26 0.4 0.5 2 0 *data passage station left right up down 0 2 2 0.8 0.2 1 0.5 0.5 1.4 0 2 0.8 0.95 0.8 0.3 3 3.1 1.2 0.7 0.2 4 0.8 1 0.4 0.3 *data passage station left right up down 3 2.2 1.8 0.7 0.2 5 1.6 1.4 0.5 0.9 6 0.9 0.6 4.8 1.04 7 0.5 0 7 0.7 8 0.5 1.3 0.4 0.2 9 1.3 0.8 0 0.42 10 0 0.6 1.2 0.8 11 0.3 0.3 0.3 0.3 *data passage station left right up down 0 3.75 0.9 0.9 0.6 12 2.6 1.9 0.4 0.2 13 0.3 0.3 0.3 0.3 14 0.6 3.5 1 0.8 *END flyover *EQUATE flyover.22 BitOff.5 *BEGIN BitOff *EXPORT 5 ;surveyors Ali Neill, Peter Eagan *Date 2010.03.29 *CALIBRATE declination 1.92 0 1 3.19 218 -3 1 2 1.63 268 -16 2 3 6 216 1 3 4 5.95 261 -9 4 5 6.69 224 6 *data passage station left right up down 0 .7 .2 .6 0 1 0 .3 .7 .7 2 0 .3 .9 2 3 .3 .3 1.6 0.8 4 .6 .4 3 4 5 0.4 0 0.5 1 *END BitOff *END ent2_UpnOver *begin WildlifeSeries *EXPORT 922 983 922 945 4.80 87.00 -7 ;head slope 945 946 3.80 78.00 -30 ;head of p 946 947 5.10 - -V ;p 947 948 3.00 178.00 1 ;* 948 949 6.90 237.50 -1 ;* 949 950 6.90 218.00 -1 ;* 950 951 3.80 243.00 2 ;junct 951 952 5.00 246.50 -3 ;* 952 953 2.80 247.00 -7 ;* 953 954 5.10 257.00 2 ;conts low upstream 951 955 1.90 185.00 -7 ;* 955 956 6.40 97.00 2 ;conts low downstream 947 957 6.73 359.00 6 ;* 957 958 3.70 60.00 4 ;* 958 959 14.00 31.00 2 ;* 959 960 4.60 262.00 2 ;jnct; unsurveyed pass 960 961 5.74 27.00 3 ;junct 961 962 9.95 70.00 1 ;* 962 963 3.95 49.00 -2 ;* 963 964 3.00 61.00 -9 ;* 964 965 3.00 29.00 0 ;stal; conts 3m to chk 961 966 18.20 37.00 2 ;jnct 4way 966 967 4.30 77.00 10 ;* 967 968 2.10 40.00 3 ;* 968 969 2.40 83.00 0 ;* 969 970 5.00 31.00 1 ;* 970 971 4.00 72.00 2 ;tight slot 966 972 2.80 35.50 7 ;* 972 973 4.70 53.00 5 ;chk sandstone blocks 966 974 18.55 265.50 2 ;junction 974 975 9.56 37.00 3 ;* 975 976 6.15 64.00 0 ;cairn; conts past chk 974 977 8.11 247.00 3 ;formations 977 978 2.24 270.00 -4 ;4way junct 978 979 5.55 260.00 1 ;cairn conts too low 978 980 3.36 199.00 6 ;* 980 981 8.70 253.00 2 ;* 981 982 4.78 204.00 -1 ;* 982 983 6.40 210.00 0 ;Head to Head *end WildlifeSeries *begin AroundEntranceSeries *EXPORT 19 922 944 19 921 5.80 98.00 0 ;from squeeze start of Alis 921 922 6.50 36.00 -10 ;stn120! start of new series 922 923 19.80 37.00 0 ;T junction 923 924 10.50 255.00 -1 ;* 924 925 6.10 233.50 -1 ;* 925 926 7.70 274.00 1 ;water sinks in wet weather 926 927 19.60 257.00 0 ;pit in floor 927 928 3.60 278.00 -4 ;cl up 928 929 3.80 - +V ;* 929 930 8.10 225.00 -3 ;* 930 931 7.90 258.00 -1 ;jnct L not surveyed 931 932 4.70 356.00 -6 ;top of cl down 932 933 6.70 274.00 -12 ;hole in floor 933 934 11.00 270.00 -10 ;entr passage 934 935 6.20 255.00 -14 ;cairn in chmbr 935 936 6.30 71.50 1 ;start of LH passage 936 937 4.70 28.50 -6 ;* 937 938 10.00 255.00 4 ;* 937 939 4.90 53.00 10 ;run-in on L surface debris 939 940 18.90 77.00 -1 ;phallic stal 940 941 8.00 187.00 0 ;window into pit 940 942 21.40 72.00 -8 ;parallel pass on L; tree roots 942 943 3.50 202.00 -22 ;start of grotty small stream passage 943 944 4.80 87.00 -4 ;Head to Head ;935 1120 16.00 87.30 10 ;* ;1120 1121 7.40 93.30 11 ;* 931 1122 1 - -V ;junct Squeeze Bypass 1122 1123 4.40 234.30 1 ;crawl on R connects with chmbr 1123 1124 8.50 266.30 0 ;traverse 1124 1125 5.60 251.30 1 ;* 1125 1126 0.50 - -V ;* 1126 1127 4.70 249.30 -3 ;cobble sediment 1127 1128 13.80 206.30 -2 ;* 1128 1129 13.50 259.30 -2 ;sandy crawl 1129 1130 7.25 247.30 0 ;* 1130 1131 3.50 212.30 -6 ;* 1131 1132 5.70 242.30 -16 ;calc chk; small hole to cont 1132 1133 6.20 80.30 -29 ;* 1133 1134 6.80 47.30 -16 ;rift cont too tight *end AroundEntranceSeries *begin ZoologicalGardens *EXPORT 865 ;167 862 16.70 108.55 2 ;stn 42 = old44 to stn 41 ;862 863 23.70 46.55 -3 ;aven needs bolting ;863 864 20.00 36.55 2 ;* ;864 865 4.10 106.55 -3 ;stn 38 865 866 12.30 39.55 7 ;* 866 867 10.40 171.55 -2 ;* 867 868 5.40 199.55 2 ;stn35 other ways off to right 868 869 10.60 138.55 5 ;* 869 870 8.30 161.55 3 ;* 870 871 12.00 151.55 1 ;* 871 872 13.40 191.55 4 ;stn 31 872 873 7.30 141.55 5 ;stn 25 873 874 10.10 173.55 1 ;* 874 875 12.70 138.55 3 ;* 875 876 5.30 203.55 5 ;stn26 876 877 4.80 243.55 1 ;* 877 878 10.80 215.55 2 ;* 878 879 5.00 338.55 3 ;stn30 poss cl 875 880 22.20 36.55 3 ;stn22 880 881 1.90 116.55 6 ;* 881 882 11.20 31.55 0 ;* 882 883 7.10 141.55 -2 ;stn19 883 884 7.90 231.55 8 ;stn16 884 885 3.40 231.55 -20 ;* 885 886 4.97 227.78 -9 ;* 884 887 6.90 176.55 -13 ;stn15 887 888 16.00 207.55 4 ;* 888 889 8.00 166.55 0 ;* 889 890 6.10 221.55 4 ;* 890 891 2.40 259.55 7 ;stn11 891 892 5.50 216.55 4 ;* 892 893 2.70 176.55 8 ;* 893 894 1.70 164.55 4 ;* 894 895 3.20 194.55 0 ;* 895 896 2.60 234.55 -1 ;* 896 897 4.00 155.55 3 ;* 897 898 3.10 196.55 6 ;* 898 899 2.50 164.55 3 ;* 899 900 1.90 237.55 10 ;* 900 901 2.20 204.55 -1 ;* 901 902 5.20 216.55 2 ;stn0 *end ZoologicalGardens *begin Quadraphenia *EXPORT 996 1000 ;April 2001 (bearings already adjusted by -2.85, but significantly different calibration to 2008 resurvey!) ;Batch 11 ;994 995 50.00 266.65 -1 ;STN52 ;995 996 13.65 237.15 -2 ;STN47 996 997 26.10 268.15 1 ;STN48 997 998 24.20 268.15 0 ;* 998 999 21.70 271.15 2 ;STN50 999 1000 9.20 270.15 1 ;STN51 *end Quadraphenia *BEGIN Quad2008-2 ;Quadraphenia 2008 resurvey + side bits part 2 ;surveyors Ali Neill Peter Eagan Pete Smith ;date 2008-08-18 *EXPORT 0 6 *CALIBRATE declination 2.15 *CALIBRATE clino -1.5 0 1 8.85 275 -7 1 2 5.83 261 -28 0 3 46.13 73 -2 3 4 15.88 91 -4 4 5 31.46 212 -5 5 6 7.9 185 3; 6 is carbide "+" *data passage station left right up down 0 .9 4 4 2 1 1 0 1 1.3 2 1 .3 1.5 .5 *data passage station left right up down 0 4.9 4 2 3 3 1 1.7 3.9 1.5 4 5.6 3.4 4.2 1.4 5 3.5 .6 6.7 1.5 6 1.5 4 5 1.5 *END Quad2008-2 *BEGIN Quad2008-3 ;Quadraphenia 2008 resurvey + side bits part 3 +Marathon Passage resurvey ;surveyors Ali Neill Peter Eagan Pete Smith ;date 2008-08-18 *EXPORT 0 5 16 23 43 *CALIBRATE declination 2.15 *CALIBRATE clino -1.5 *FLAGS DUPLICATE 0 1 9.9 355 8 *FLAGS NOT DUPLICATE 1 2 12.13 265 5; conts low rubbly dig 0 3 11.66 281 13 3 4 9.29 249 -4 ;resurvey Quadraphenia 0 5 40.81 84 -3 5 6 42.55 85 -3 6 7 13.67 94 10 7 8 31.03 86 -3 8 9 8.01 200 8 9 10 7.51 214 1 10 11 6.35 211 1 10 12 10.67 95 -5 12 13 2.67 113 3 13 14 9.77 85 -3 14 15 4.93 87 -2 16 15 7.2 20 -6; 16 triangle on wall 15 17 5.53 50 -9 17 18 13.84 100 0 18 19 14.54 31 -2 *FLAGS DUPLICATE 8 20 20.54 91 -3 20 21 18.22 89 1 21 19 7.05 101 -1 19 22 24.34 98 -4 22 23 6.39 58 -22; marked stn 23 - Marathon starts *FLAGS NOT DUPLICATE 23 24 3.98 10 -13 24 25 6 42 0 25 26 7.12 66 2 26 27 15.7 41 5 27 28 8.75 57 -2 28 29 12.51 18 3 29 30 8.35 18 0 30 31 11.97 42 -2 31 32 35.8 50 1 32 33 23.51 39 -1 33 34 30.21 41 -1; 34 opp stn 40 34 35 7.35 53 -1 35 36 10.54 31 0 36 37 19.98 32 0 37 38 5.62 247 -1 38 39 2.89 1 5 39 40 4.23 39 -15 40 41 4.35 5 12 41 42 33.79 32 -2 42 43 5.07 256 -3 43 44 17.26 31 2 44 45 14.64 40 -3 45 46 4.52 37 24; marked 29 in carbide *data passage station left right up down 0 0 5 5 1 1 2.2 .4 1.6 1.5 2 .3 .5 .2 .4 *data passage station left right up down 0 0 5 5 1 3 .8 0 .5 .6 4 .8 .5 .2 .2 *data passage station left right up down 0 5 0 5 1 5 2.6 1.9 4.6 1.6 6 .8 7.5 4.6 .3 7 2.2 0 4 1.7 8 2.2 3 3 1.7 *data passage station left right up down 8 .3 .7 2 .7 9 .3 .7 2 .7 10 .5 .5 1.5 .2 11 .7 .5 .6 0 *data passage station left right up down 10 2 0 1.5 .2 12 .8 1 .8 .2 13 .9 .7 1.5 2.7 14 .5 1.2 2.6 .3 15 1.6 .9 1 4 16 .3 .7 1 1 *data passage station left right up down 15 1.6 .9 1 4 17 1 1.6 1.5 1.4 18 1 .5 1.1 .2 19 1 .5 1.1 .2 *data passage station left right up down 8 2.2 3 3 1.7 20 3.8 0 1.8 1.5 21 0 1.9 1.3 1.5 19 0 2 1 1.5 22 3 0 2 1.5 23 1.2 1.2 4 2 24 0 .5 5 1.5 25 .2 .3 5 1.5 26 .4 .4 5 1.5 27 1.2 1.5 1.4 1.8 28 2.6 0 1.7 1.5 29 2.6 .6 .5 2 30 .3 1.5 1.5 2 31 1.5 1.5 1.5 1.5 32 2.5 0 1 1.2 33 .4 1.5 1.2 1.2 34 1.2 1.2 1.5 1.2 35 1.5 .2 1.8 1.5 36 .5 1.2 2 1.5 37 2 .3 1.8 .5 38 .3 1.5 2 1.5 39 0 1.2 2 1.8 40 1.5 1.2 2.5 1 41 .3 1 2.5 1.5 42 1.5 1.2 2 .2 43 1.5 2 3 1 44 1.5 .2 2.5 1.2 45 1.8 1.8 3 .3 46 3 1.2 3 1.2 *END Quad2008-3 *BEGIN QuadrapheniaResurvey2010 *EXPORT MainJunctionsArea.0 MainJunctionsArea.16 MainJunctionsArea.21 QuadrapheniaToSqueezeResurvey.10 FlyoverCrawl.0 *CALIBRATE declination 1.92 *EQUATE MainJunctionsArea.10 QuadrapheniaToSqueezeResurvey.0 *EQUATE MainJunctionsArea.14 Quadcrawl.4 *BEGIN MainJunctionsArea *EXPORT 0 10 14 16 21 *Date 2010.04.07 ;surveyors Alasdair Neill, Dave Bell 1 0 4.99 53 -17 1 2 13.84 94 -19 2 3 11.74 79 -1 3 4 8.26 222 -8 4 5 20.25 250 1 5 6 5.57 242 3 6 7 38.67 267 0 7 8 7.01 256 0 8 9 4.9 - down 4 10 30.32 91 -2 ;10 is cairn on big junction in Quadraphenia 10 11 12.26 306 9 11 12 14.65 262 -1 12 3 1.87 349 -9 10 14 18.99 214 -1 14 15 37.25 269 -2 15 16 29.79 256 -3 *FLAGS DUPLICATE 16 17 23.16 263 2 *FLAGS NOT DUPLICATE 16 18 21.02 111 1 18 19 31.12 82 -3 19 20 8.88 97 -5 20 21 13.32 178 -2 *data passage station left right up down 0 0.9 0.6 5.8 1.7 1 1.7 1 6.1 1.5 2 0.9 1.1 3.7 0.75 3 0 1.78 2.9 1.45 *data passage station left right up down 3 1.78 0 2.9 1.45 4 4.7 1 0.8 0.6 5 1.6 0 3.9 1.2 6 0 1.3 3.4 1.6 7 1.6 1.1 3.1 1.0 8 0 2.6 3.7 1 *data passage station left right up down 4 1 4.7 0.8 0.6 10 3.8 3 1.8 0.6 11 1.8 0 1.3 1.8 12 0.8 2.4 3.1 1.8 3 1.78 0 2.9 1.45 *data passage station left right up down 10 3.8 3 1.8 0.6 14 2.4 4.6 2 1.1 15 3.0 0 3.2 1.3 16 6.8 1.8 4.4 0.9 17 1.5 3.8 2 1.5 *data passage station left right up down 16 1.8 6.8 4.4 0.9 18 3.6 0 2.6 1.4 19 0 3.2 3.2 1.5 20 2.2 4.1 3.6 1.2 21 5 1 2 3 ;carbide spot on wall *END MainJunctionsArea *BEGIN QuadrapheniaToSqueezeResurvey *EXPORT 0 10 *Date 2010.04.07 ;surveyors Alasdair Neill, Dave Bell 0 1 27.93 80 1 1 2 4.9 291 -9 2 3 6.57 269 -4 ;small continues 1 4 9.65 86 -2 4 5 4.43 60 -5 5 6 7.69 94 1 ;small continues 4 7 5.83 3 0 7 8 13.07 62 -3 8 9 12.23 36 4 9 10 6.21 31 2 ;LH end of carbide arrow pointing to squeeze *data passage station left right up down 0 3 3.8 1.8 0.6 1 1.2 0 1.1 1.5 2 0.5 0 0.5 0.7 3 0.2 0.2 0.4 0.3 *data passage station left right up down 1 1.2 0 1.1 1.5 4 2.1 0.8 1.3 0.9 5 0.1 0.7 0.1 0.5 6 0.3 0.3 0 0.4 *data passage station left right up down 4 2.1 0.8 1.3 0.9 7 0 2.7 0.7 1.1 8 1.5 2.2 1.3 0.4 9 0.6 1.5 0.6 1.2 10 0 5.4 0.6 1 *END QuadrapheniaToSqueezeResurvey *BEGIN Quadcrawl *EXPORT 4 *Date 2010.04.08 ;surveyors Alasdair Neill, Torben, Pete smith 1 0 16.8 86 0 1 2 12.0 268 -1 2 3 1 - up 3 4 2.4 20 -10 *data passage station left right up down 0 0.3 0.3 0.3 0.2 1 0.3 0.3 0.2 0.4 2 0.3 0.3 0.2 0.4 *END Quadcrawl *BEGIN FlyoverCrawl *EXPORT 0 ;crawl at junction of Quadraphenia & flyover route to entrance *Date 2010.04.01 ;surveyors Ali Neill, Peter Eagan *FLAGS DUPLICATE 1 0 5.75 43 -9 *FLAGS NOT DUPLICATE 2 1 4.9 85 5 3 2 6.05 84 6 4 3 5.37 30 0 ;cont low c10m *data passage station left right up down 0 0.7 0.5 5 1.2 1 0.8 0.5 3.4 0.7 2 0.4 0.5 0.5 0.5 3 1.3 0.2 0.7 0.4 4 0.3 0.5 0.4 0.3 *END FlyoverCrawl *END QuadrapheniaResurvey2010 *BEGIN Roofers_Passage_Area ;surveyors Ali Neill, Peter Eagan ;date 2008-08-05 *EXPORT 2 3 11 *CALIBRATE declination 2.15 *CALIBRATE clino -1.5 0 1 13.24 269 3 1 2 9.3 261 -5 *FLAGS DUPLICATE 3 2 6.15 10 -21; 3 carbide + on wall 4 2 29.26 84 -5; leg down Tilers' Way *FLAGS NOT DUPLICATE 6 5 6.07 84 -45 7 6 9.84 86 -9 8 7 6.98 82 -3 9 8 6.01 83 10 10 9 5.8 88 11 10 11 10.6 198 -1; 11 is stn 21 (carbide) in main passage 10 3 11.79 41 -4 ;Roofer's Passage (Not TILERS' WAY as labeled here originally! See sketches) 11a 2 6.48 117 -68 12 11a 5.81 97 -9 13 12 9.58 75 -4 14 13 8.58 93 -1 15 14 13.27 78 -3 16 15 11.2 81 -2 17 16 5.67 63 -2 18 17 7.68 32 -2 19 18 9.61 80 -4 20 19 8.75 75 -3 21 20 3.57 88 3 22 21 13.59 81 -1 23 22 7.37 83 -8 24 23 11.25 84 -2 25 24 7.41 71 -4 26 25 2.31 52 -5 27 26 10.9 78 -3 28 27 7.97 80 -5 29 28 19.71 75 -3 30 29 11.68 73 -3 31 30 13.79 78 -5 32 31 4.75 71 -2 33 32 10.12 89 -5 34 33 8.67 89 -3 35 34 1.95 175 -9 36 35 6.15 91 -9 37 36 5.12 76 -14 38 37 2.21 108 23 39 38 4.88 86 -7; marked 39 *data passage station left right up down 0 .8 .8 .8 4 1 .8 .8 .8 .6 2 3 3 6 0 3 1.5 4 5 1.5 *data passage station left right up down 2 3 3 6 0 4 .8 .8 .3 1.2 *data passage station left right up down 5 1.5 .3 6 1 6 0 1.5 .5 .8 7 0 .8 .8 .8 8 .4 .2 .8 1 9 .3 .3 3 1.5 10 3.4 2.2 6.5 1.5 11 5 0 5 1 *data passage station left right up down 10 2.2 3.4 6.5 1.5 3 4 1.5 5 1.5 *data passage station left right up down 11a .3 1 1.5 1 12 1 .3 1 1.5 13 0 .8 1 1.5 14 1.2 0 1.5 1 15 1 .3 1.2 1 16 1 .4 1 1 17 1.2 .3 .8 .8 18 0 1.2 1 .8 19 .2 1 3 1.5 20 0 1.2 3 .8 21 1 0 2 .5 22 1 1 3 .2 23 1 1.2 1.5 1 24 1.5 0 1.5 .4 25 .3 .3 1 .3 26 .25 .25 1.5 .4 27 .3 1 2 .4 28 1.2 .8 0 1 29 .8 1.2 3 .5 30 1.2 .2 1.5 .3 31 1.5 .2 1 .4 32 1 .3 1.5 .2 33 1.2 .4 1.5 .4 34 1 1.5 2 .3 35 1.2 .3 2 .3 36 .5 .4 2 .8 37 0 1.5 1 1.5 38 .4 .4 2 .8 39 .3 .3 1.5 1 *END Roofers_Passage_Area *EQUATE TilersWayresurvey.0 quad2008-2.6 *BEGIN TilersWayResurvey *EXPORT 0 *CALIBRATE declination 1.92 *Date 2010.04.07 ;surveyors Alasdair Neill, Dave Bell *FLAGS DUPLICATE 0 1 5.79 344 -8 1 2 12.25 267 -1 2 3 17.64 268 0 3 4 13.17 264 -1 ;marked at top of slope down to smelly pool *FLAGS NOT DUPLICATE *data passage station left right up down 1 1 1.4 0 1.7 2 0 0.9 0.5 1.4 3 0.8 0 0.5 1.5 4 0.8 0 0.8 1.5 *END TilersWayresurvey *begin TilersWay *EXPORT 40 *CALIBRATE declination 8.0 ;approximate calibration guessed for 1983 1a 2a 22.9 250 0 ;Folder4_06 2a 3a 10.2 21 0 2a 4a 7.7 280 0 4a 5a 7.3 159 0 5a 6a 25.0 280 0 1 2a 11.6 25 0 1 2 13.9 115 0 ;Folder4_07 2 3 13.7 86 0 3 4 14.1 90 0 3 5 10.9 241 0 5 6 9.0 238 0 6 7 8.3 252 0 7 8 5.0 227 0 8 9 13.5 225 0 9 10 15.0 260 0 9 11 5.2 122 0 11 12 15.7 84 0 12 13 8.1 74 0 13 14 8.2 95 0 14 15 2.0 155 0 15 16 4.1 248 0 16 17 4.0 128 0 17 18 9.0 93 0 18 19 7.0 86 0 19 20 8.5 96 0 20 21 4.2 90 0 21 22 4.3 93 0 22 23 5.7 62 0 23 24 5.0 93 0 24 25 22.5 91 0 25 26 5.1 60 0 26 27 4.8 50 0 27 28 7.2 90 0 28 29 10.4 94 0 29 30 2.3 15 0 30 32 30.0 89 0 32 33 10.3 92 0 33 34 12.7 91 0 34 35 15.0 85 0 35 36 8.5 80 0 36 37 6.3 180 0 37 38 2.5 60 0 38 39 30.0 88 0 39 40 17.1 92 0 *end TilersWay *begin 2691_GiantPanda *EXPORT 0 8 33 ;surveyors: Clare Dallimore Jon Wichett Alex Burton-Johnson ;name: Giant Panda Entrance - resurvey down into Gorilla Walk stream (2 cobble cairn) ;date 080403 *CALIBRATE declination 2.15 0 1 4.23 91.5 -78 1 2 1.57 122 -47 2 3 1.85 215 -20 3 4 .7 320 -33 4 5 13.75 - down 5 6 5.9 - down 6 7 6.7 100 -57 7 8 7.28 16 -23 8 9 5.07 280 -78 9 10 2.47 83 -21 10 11 5.14 224 -38 11 12 2.5 200 -31 12 13 3.1 65 -71 13 14 3.12 230 -34 14 15 1.58 101 9 15 16 4.20 220 -17 16 17 1.99 235 -43 17 18 2.23 132 -40 18 19 2.3 9 -33 19 20 3.13 70 0 20 21 3.05 38 -18 21 22 2.25 152 -85 22 23 4.17 25 2 23 24 2.01 106 -47 24 25 2.93 32 -5 25 26 4.75 129 0 26 27 5.74 218 -1 27 28 2.3 117 -14 28 29 9.15 212 -4 29 30 2.48 217 -18 30 31 2.42 216 -45 *FLAGS duplicate 31 32 5.07 95 1 32 33 5.8 65 0 *flags not duplicate *data passage station left right up down 0 1 0 0 4 1 1 0 4 0 2 0 .5 2 .5 3 .7 .5 2 7 ;Changed L=7 to 0.7 4 1 2 2 2 5 5 0 2 5.9 6 1 5 5 5 7 1 0 6 1.5 8 .5 .25 7 2 9 4 0 5 2 10 .5 4 2 1 11 .2 0 2 .3 12 .7 3 1 3.1 13 0 .2 2 2 14 .6 .5 7 .7 ;Changed L=6 to 0.6 15 0 1.5 1 1 16 0 .2 2 3 17 .3 0 3 3 18 2 0 4 2 ;Changed U=7 to 4 19 0 .4 5 2 ;Changed U=9 to 5 20 .4 0 5 2 ;Changed U=7 to 5 21 .3 .5 2 2 22 .3 0 2 1 23 .2 .6 1 2 ;Changed R=6 to 0.6 24 1 0 1 .6 25 0 3 .1 .9 26 0 .5 .1 .9 ;Changed R=5 to 0.5 27 .6 .2 .1 1 ;Changed L=6 to 0.6 28 0 2 1 .3 29 0 .2 .2 1 30 .3 0 .5 3 31 2 0 .35 .5 32 5 5 2 .5 33 4 3 .5 .5 *end 2691_GiantPanda *begin WindyInlet *EXPORT 1069 ;BigBluePen survey notes scan ;Mike Alderton ;Tim Lamberton ;28/03/2002 ;163 1047 4.00 329 0 ;dummy leg (NEEDS CHECKING, but reestimated after Easter 2008 trip) ;1047 1048 1.97 6.30 56 ;stn23 ;1048 1049 3.46 39.30 15 ;* ;1049 1050 7.08 29.30 6 ;stn21 ;1050 1051 2.21 278.30 -4 ;* ;1051 1052 6.37 31.30 1 ;stn19 ;1052 1053 5.16 293.30 2 ;* ;1053 1054 1.97 209.30 -5 ;stn17 ;1054 1055 2.14 260.30 52 ;* ;1055 1056 3.74 199.30 4 ;* ;1056 1057 1.94 258.30 61 ;stn14 ;1057 1058 2.99 216.30 27 ;* ;1058 1059 2.76 248.30 4 ;* ;1059 1060 2.60 206.30 18 ;stn11 ;1060 1061 2.49 309.30 43 ;stn10 ;1061 1062 2.45 29.30 31 ;* ;1062 1063 3.24 36.30 5 ;* ;1063 1064 1.33 293.30 23 ;* ;1064 1065 3.16 39.30 38 ;stn6 ;1065 1066 4.29 12.30 68 ;* ;1066 1067 4.41 51.30 37 ;* ;1067 1068 2.38 2.30 -4 ;stn3 ;1068 1069 6.62 164.30 70 ;stn2 1069 1070 6.30 205.30 31 ;stn1 1070 1071 2.78 236.30 63 ;stn2 1071 1072 4.38 193.30 59 ;* 1072 1073 1.83 162.30 -2 ;* 1073 1074 1.68 117.30 -22 ;* 1074 1075 5.48 202.30 5 ;stn6 1075 1076 2.32 217.30 3 ;* 1076 1077 2.64 125.30 41 ;* 1077 1078 4.14 111.30 29 ;* 1078 1079 4.76 35.30 31 ;stn10 1079 1080 2.20 155.30 37 ;* 1080 1081 2.83 242.30 8 ;* 1081 1082 3.06 146.30 34 ;* 1082 1083 4.52 45.30 13 ;stn14 1070 1084 9.70 232.30 -46 ;* 1084 1085 5.55 217.30 24 ;* 1085 1086 3.95 43.30 10 ;* 1085 1087 3.05 216.30 19 ;* 1087 1088 2.75 126.30 29 ;* 1088 1089 5.05 38.30 8 ;* 1089 1090 3.01 90.30 4 ;* 1090 1091 4.15 86.30 21 ;* 1091 1092 4.65 39.30 30 ;* 1092 1093 4.90 - +V ;* *end WindyInlet *BEGIN Stomps *EXPORT Pt1.1 Pt1.9 Pt1.17 Pt1.19 Pt1.34a *EQUATE FarStompsSump.18 Pt1.46 *BEGIN Pt1 *EXPORT 1 9 17 19 34a 46 ;Resurvey of Near Stomps starting from station marked with a note at the entrance ;to the sandy crawl to Hidden Aven, tying into station marked with a note at the ;start of Gour Inlet and on past Obvious Junction (station marked with a note ;there too) to the end of the large passages of the Far Stomps. ;PocketTopo series 156 ;Surveyors: Sketching (PDA) - Footleg; DistoX - Paul Dold ;Instruments: West Sussex Caving Club DistoX (calibrated in cave on previous ;trip and checked against Footleg's Suunto Tandem at start of this trip). ;PocketTopo on Footleg's Dell Axim 51v PDA *DATE 2010.08.11 *CALIBRATE declination 1.92 *EQUATE 28 32 *FLAGS SPLAY 1 1a 15.03 226.71 -13.08 1 1b 6.82 210.56 28.68 *FLAGS NOT SPLAY 1 2 9.08 189.31 -7.43 2 3 18.55 116.98 -0.10 3 4 3.94 109.34 5.39 4 5 14.13 96.76 -0.61 *FLAGS SPLAY 5 5a 4.92 187.59 1.55 *FLAGS NOT SPLAY 5 6 14.76 107.42 10.11 6 7 9.56 79.43 -2.48 7 8 12.97 128.55 -9.80 *FLAGS SPLAY 8 8a 4.13 271.01 46.40 8 8b 13.39 235.87 7.15 *FLAGS NOT SPLAY 8 9 5.84 89.36 1.83 9 10 11.81 117.66 18.69 *FLAGS SPLAY 10 10a 8.08 203.51 -24.97 *FLAGS NOT SPLAY 10 11 17.53 168.45 -7.51 11 12 16.73 148.86 -11.30 12 13 15.14 118.78 -5.89 *FLAGS SPLAY 13 13a 3.61 348.94 1.85 13 13b 6.12 304.49 0.88 13 13c 5.07 331.32 -2.18 *FLAGS NOT SPLAY 13 14 12.56 158.08 3.43 14 15 20.99 142.22 1.02 15 16 14.28 159.69 1.84 *FLAGS SPLAY 16 16a 3.99 50.15 5.15 *FLAGS NOT SPLAY 16 17 10.37 162.98 2.49 *FLAGS SPLAY 17 17a 8.03 85.24 5.30 *FLAGS NOT SPLAY 17 18 7.85 126.63 -11.48 *FLAGS SPLAY 18 18a 9.67 145.31 -10.88 18 18b 8.33 104.33 -11.12 18 18c 10.53 166.40 -10.22 *FLAGS NOT SPLAY 18 19 23.70 157.35 -4.37 *FLAGS SPLAY 19 19a 9.34 73.19 10.78 *FLAGS NOT SPLAY 19 20 13.16 101.93 26.51 *FLAGS SPLAY 20 20a 12.67 132.37 13.97 20 20b 3.99 319.43 -1.32 20 20c 19.28 269.18 2.35 20 20d 21.11 255.42 1.62 *FLAGS NOT SPLAY 20 21 14.46 145.32 8.27 *FLAGS SPLAY 21 21a 21.27 136.38 4.37 21 21b 18.97 113.75 8.27 21 21c 9.40 19.51 12.23 21 21d 3.68 250.66 -18.99 21 21e 12.39 206.43 -26.43 21 21f 16.36 186.99 -21.04 21 21g 17.98 167.17 -10.43 *FLAGS NOT SPLAY 21 22 11.00 140.41 13.34 *FLAGS SPLAY 22 22a 18.00 237.95 -37.04 22 22b 12.64 198.26 -39.64 22 22c 15.78 148.75 -25.36 22 22d 11.77 93.31 -5.76 22 22e 13.48 67.73 -1.47 *FLAGS NOT SPLAY 22 23 19.39 47.07 -3.39 *FLAGS SPLAY 23 23a 10.48 171.25 -0.49 23 23b 7.11 147.60 -3.96 *FLAGS NOT SPLAY 23 24 12.26 182.57 0.88 24 25 9.37 136.99 -31.89 25 26 16.12 66.28 8.82 26 27 20.53 208.25 -0.25 27 28 23.08 217.47 -11.66 *FLAGS SPLAY 28 28a 28.39 23.01 54.31 28 28b 13.96 7.70 59.65 28 28c 2.88 128.79 -0.08 28 28d 12.78 4.70 10.78 *FLAGS NOT SPLAY 28 29 9.44 337.56 -7.14 29 30 11.12 26.64 -1.45 *FLAGS SPLAY 30 30a 4.37 251.83 1.05 30 30b 8.10 252.77 -8.28 30 30c 13.30 274.36 -5.31 30 30d 3.36 125.62 9.29 30 30e 11.33 60.91 17.00 *FLAGS NOT SPLAY 30 31 7.38 59.13 18.23 31 25 7.67 9.40 10.35 32 33 26.57 219.45 -1.21 *FLAGS SPLAY 33 33a 6.56 290.15 -24.69 *FLAGS NOT SPLAY 33 34 30.49 226.77 -3.52 34 34a 4.04 262.63 -3.89 ;Attachment station for Far Stomps Inlet 34 35 24.02 125.74 -0.07 35 36 4.42 104.65 6.02 *FLAGS SPLAY 36 36a 9.41 213.65 -13.20 *FLAGS NOT SPLAY 36 37 10.68 164.02 12.16 *FLAGS SPLAY 37 37a 8.28 10.38 -30.58 *FLAGS NOT SPLAY 37 38 12.55 153.02 -2.14 38 39 26.21 114.84 -7.27 *FLAGS SPLAY 39 39a 9.50 182.35 -22.41 *FLAGS NOT SPLAY 39 40 26.69 165.92 -1.74 40 41 29.35 157.64 4.26 *FLAGS SPLAY 41 41a 22.88 13.29 8.03 41 41b 12.85 343.23 -24.55 *FLAGS NOT SPLAY 41 42 25.13 123.62 -2.35 *FLAGS SPLAY 42 42a 7.43 221.79 -41.05 42 42b 13.88 308.37 1.63 *FLAGS NOT SPLAY 42 43 24.15 168.91 -8.72 43 44 13.32 168.35 10.48 *FLAGS SPLAY 44 44a 7.37 297.13 -41.78 44 44b 6.22 274.92 -17.88 *FLAGS NOT SPLAY 44 45 28.90 189.31 16.45 45 46 22.48 194.04 5.14 *FLAGS SPLAY 46 46a 14.53 63.91 5.51 *FLAGS NOT SPLAY *data passage station left right up down 1 1.685 9.668 3.115 0.745 2 8.061 7.472 4.407 1.255 3 2.098 8.884 3.688 1.646 4 1.715 5.781 3.62 1.77 5 0.893 10.695 3.344 1.684 6 2.772 6.301 1.207 2.024 7 0.0 12.221 1.677 1.712 8 5.115 5.906 5.017 1.511 9 4.619 14.511 4.472 0.0 10 5.381 15.757 2.391 0.0 11 11.161 5.811 4.416 2.043 12 10.776 2.977 5.149 2.27 13 1.673 7.796 6.896 0.445 14 3.844 3.119 5.528 1.627 15 3.368 6.875 7.308 1.806 16 7.348 6.304 6.757 2.158 17 11.569 4.577 7.078 1.673 18 9.038 12.852 5.779 1.204 19 2.42 11.843 6.5 0.0 20 8.13 9.955 1.902 0.0 21 14.256 7.179 1.58 0.839 22 13.786 16.363 0.0 10.0 23 7.241 8.473 0.0 0.0 24 1.92 0.0 1.151 0.925 25 2.938 1.155 3.686 0.328 26 0.0 4.087 1.485 0.596 27 0.0 1.974 3.695 1.849 28 6.224 8.894 8.322 0.0 29 2.879 10.427 0.851 1.758 30 6.484 5.945 2.3 0.0 31 6.381 3.277 1.653 0.814 25 5 1.9 3.686 0.328 *data passage station left right up down 32 2.868 6.256 7.767 1.774 33 3.357 2.532 5.201 3.235 34 8.402 5.858 9.614 1.348 35 2.683 2.813 0.727 1.575 36 2.493 2.244 5.819 1.892 37 3.803 6.189 6.078 0.0 38 2.415 10.27 6.308 5.415 39 3.396 20.495 13.281 0.0 40 8.666 15.33 10.782 2.294 41 12.751 10.618 7.88 0.0 42 4.459 21.374 10.424 0.0 43 10.067 14.396 12.51 2.0 44 4.831 18.29 10.208 0.0 45 10.63 9.581 3.411 4.305 46 12.99 6.659 1.685 0.0 *data passage station left right up down 22 7.5 8 0 10 30 10.8 8 2.3 0.0 *END Pt1 *BEGIN FarStompsSump *EXPORT 18 ;Resurvey of Far Stomps starting from furthest point reached into wide bedding ;plane draughting duck at terminal end, surveying back to the start of the ;large passages of the Far Stomps at a station on top of the big rock slab ;near the roof which you have to climb up onto to get into the bedding ;section at the end of the Far Stomps. ;PocketTopo series 157 ;Surveyors: Sketching (PDA) - Footleg; DistoX - Paul Dold ;Instruments: West Sussex Caving Club DistoX (calibrated in cave on previous ;trip and checked against Footleg's Suunto Tandem at start of this trip). ;PocketTopo on Footleg's Dell Axim 51v PDA *DATE 2010.08.11 *CALIBRATE declination 1.92 *FLAGS SPLAY 1 1a 3.38 195.09 -0.91 *FLAGS NOT SPLAY 1 2 4.29 37.46 1.62 2 3 8.00 16.28 1.33 3 4 12.11 36.72 -0.45 4 5 3.62 28.42 8.25 *FLAGS SPLAY 5 5a 0.20 34.15 -2.84 *FLAGS NOT SPLAY 5 6 9.15 34.23 -3.00 6 7 14.44 74.42 1.26 *FLAGS SPLAY 7 7a 5.03 319.95 -1.50 *FLAGS NOT SPLAY 7 8 19.06 43.23 0.52 8 9 17.83 40.55 -1.38 *FLAGS SPLAY 9 9a 4.23 296.54 2.86 *FLAGS NOT SPLAY 9 10 25.44 10.76 1.09 10 11 23.23 38.12 3.43 11 12 16.46 27.78 -0.09 12 13 18.33 316.28 0.70 *FLAGS SPLAY 13 13a 6.75 183.91 -0.23 13 13b 15.99 303.93 0.95 13 13c 10.60 19.61 0.84 13 13d 16.40 114.03 -2.05 13 13e 12.59 6.19 -0.43 *FLAGS NOT SPLAY 13 14 27.32 346.05 -1.43 14 15 25.59 16.44 2.07 15 16 15.21 330.02 2.13 16 17 23.03 30.16 28.64 *FLAGS SPLAY 17 17a 6.28 60.24 45.71 17 17b 16.79 252.67 -28.56 17 17c 16.01 280.45 -5.74 17 17d 16.08 299.27 1.22 17 17e 16.41 210.75 -13.67 *FLAGS NOT SPLAY 17 18 13.99 323.38 15.09 *FLAGS SPLAY 18 18a 6.60 267.65 -26.33 45 18 22.48 194.04 5.14 ;Duplicate leg from Pt1 to make passage walls render right *FLAGS NOT SPLAY *data passage station left right up down 1 2.9 1.066 0.0 0.0 2 1.962 6.855 0.2 0.524 3 0.0 8.292 0.233 0.381 4 3.922 6.688 0.418 0.292 5 4.242 6.6 0.326 0.601 6 3.044 7.11 0.996 0.243 7 10.218 2.722 0.614 0.51 8 10.358 4.848 0.37 0.59 9 11.713 2.876 1.483 0.199 10 5.862 8.006 1.12 0.376 11 7.496 4.614 0.257 1.564 12 10.144 7.38 0.65 0.836 13 8.94 11.646 0.34 1.314 14 6.238 7.831 1.166 0.318 15 11.52 3.969 1.056 0.942 16 5.757 11.99 2.569 1.432 17 14.043 0.0 5.548 0.0 18 9.228 12.784 2.044 0.0 45 9.581 10.63 3.411 4.305 *END FarStompsSump *END Stomps *BEGIN HiddenAven *EXPORT 1 ;Large aven hidden up small sandy crawl on left in Near Stomps shortly before ;Gour Inlet. A small inlet is seen emerging from boulders near the entrance to ;the crawl and this is the water coming from the aven. ;PocketTopo series 155 ;Surveyors: Sketching (PDA) - Footleg; DistoX - Paul Dold ;Instruments: West Sussex Caving Club DistoX (calibrated in cave on previous ;trip and checked against Footleg's Suunto Tandem at start of this survey). ;PocketTopo on Footleg's Dell Axim 51v PDA *Date 2010.08.11 *CALIBRATE declination 1.92 1 2 8.89 64.18 14.19 2 3 11.46 65.80 10.45 3 4 6.04 38.25 9.74 4 4a 5.15 38.20 -74.15 4 5 13.41 48.10 27.79 5 5a 3.40 246.77 -8.87 5 5b 7.33 25.48 19.10 5 5c 2.36 189.79 3.47 5 5d 2.08 64.52 16.76 5 6 12.97 40.50 35.17 5 7 2.52 110.73 13.25 7 8 10.57 170.95 -46.24 8 8a 18.62 68.34 70.02 8 8b 19.53 79.89 72.38 8 8c 6.78 107.91 28.11 8 8d 5.79 192.19 34.26 8 8e 6.54 136.86 31.90 8 8f 6.62 59.04 30.78 8 8g 6.04 25.22 31.64 8 8h 5.92 233.60 24.12 8 8i 6.15 314.48 7.87 8 8j 5.81 4.33 22.87 8 9 9.77 193.39 52.29 9 9a 18.19 41.13 48.52 9 9b 0.63 331.79 -6.98 *data passage station left right up down 1 1.583 1.796 3.119 0.0 2 0.0 0.265 0.607 0.538 3 1.376 0.0 2.854 0.375 4 0.0 1.908 7.227 1.588 5 5.325 2.566 17.56 0.213 6 1.5 0.4 6.0 0.0 7 0.0 3.774 17.834 1.914 8 6.717 5.817 45.0 0.0 9 0.0 7.145 1.183 3.851 *END HiddenAven *EQUATE HiddenAven_Old.10 HiddenAven.1 *begin HiddenAven_Old *EXPORT 10 *CALIBRATE declination 6.0 ;approximate calibration guessed for 1983 (year is a guess too) 1 2 4.8 65 2 2 3 4.7 47 32 3 4 3.7 147 32 *FLAGS DUPLICATE 4 5 7.6 131 15 4 6 5.3 344 35 6 7 4.0 274 9 7 8 12.2 43 24 7 9 15.6 229 -16 9 10 20.4 249 -12 ;10 11 26.5 138 0 ;11 12 26.0 104 0 ;12 13 14.1 83 0 ;13 Stal 11.2 135 -12 *FLAGS NOT DUPLICATE *end HiddenAven_Old *begin FarStompsInlet *EXPORT 189 ;Data Batch 5: Aug. 1997 ;Juan + Jane ;Compass viewed from top 189 903 7.00 241.55 0 ;pass entry 903 904 3.00 241.55 1 ;* 904 905 4.90 228.55 1 ;* 905 906 4.90 256.55 1 ;* 906 907 3.70 173.55 1 ;* 907 908 8.00 223.55 1 ;* 908 909 3.80 218.55 1 ;* 909 910 4.00 256.55 1 ;false floor; slight draught *end FarStompsInlet *BEGIN Crossover *EXPORT 1 14 46 ;Resurvey starting from note marking station on top of stalagmite on top ;of boulder at Obvious Junction. ;PocketTopo series 162 (continues into 3rd River) ;Surveyors: Sketching (PDA) - Footleg, DistoX - Paul Dold ;Instruments: West Sussex Caving Club DistoX (calibration checked against ;Footleg's Suunto Tandem at start of this trip). ;PocketTopo on Footleg's Dell Axim 51v PDA *DATE 2012.04.08 *CALIBRATE declination 1.67 *EQUATE 1 21 *EQUATE 9 17 *EQUATE 7 22 *FLAGS SPLAY 1 1a 8.54 94.75 2.29 *FLAGS NOT SPLAY 1 2 9.46 229.23 17.20 2 3 7.89 245.18 8.76 3 4 6.86 196.29 -8.35 4 5 3.31 182.53 7.48 5 6 11.24 207.84 1.18 6 7 9.92 200.81 -0.41 *FLAGS SPLAY 7 7a 8.53 53.45 -3.18 7 7b 11.39 63.85 -3.04 7 7c 9.60 343.98 -0.76 7 7d 2.02 265.78 -2.33 7 7e 8.08 75.54 -2.01 *FLAGS NOT SPLAY 7 8 19.09 64.04 -9.29 8 9 6.33 105.55 -5.99 9 10 6.66 143.42 -0.84 10 11 5.25 61.93 13.55 11 12 5.63 52.57 10.17 *FLAGS SPLAY 12 12a 5.92 290.73 8.84 12 12b 5.52 152.51 0.57 *FLAGS NOT SPLAY 12 13 12.43 85.84 -15.55 13 14 8.86 292.85 -10.31 14 15 9.82 262.98 10.47 15 16 6.69 234.25 12.80 16 17 2.10 266.71 -10.84 16 18 6.16 337.99 8.83 18 19 5.15 318.16 -20.15 *FLAGS SPLAY 19 19a 3.18 305.08 5.14 19 19b 2.46 69.61 -2.25 *FLAGS NOT SPLAY 19 20 11.33 10.19 8.20 20 21 11.50 15.41 -5.38 22 23 14.22 210.85 -1.01 *FLAGS SPLAY 23 23a 5.48 45.09 5.14 *FLAGS NOT SPLAY 23 24 7.83 247.96 -0.10 24 25 7.76 216.00 -0.62 25 26 8.91 226.41 -2.06 26 27 8.22 247.58 -2.87 *FLAGS SPLAY 27 27a 3.61 124.68 85.26 *FLAGS NOT SPLAY 27 28 6.45 219.35 0.41 *FLAGS SPLAY 28 28a 2.30 269.73 81.50 28 28b 4.94 243.19 -3.40 *FLAGS NOT SPLAY 28 29 8.45 239.03 -7.94 29 30 7.09 245.24 3.90 30 31 5.50 217.93 4.15 31 32 6.34 257.41 -4.45 32 33 6.41 238.07 3.20 33 34 6.34 243.56 2.10 *FLAGS SPLAY 34 34a 2.35 39.45 12.08 34 34b 4.63 19.62 33.12 *FLAGS NOT SPLAY 34 35 8.92 222.29 9.19 *FLAGS SPLAY 35 35a 1.20 148.09 48.04 *FLAGS NOT SPLAY 35 36 6.02 243.64 -0.34 *FLAGS SPLAY 36 36a 2.22 260.10 70.49 36 36b 2.76 137.39 17.39 *FLAGS NOT SPLAY 36 37 3.62 288.42 29.81 *FLAGS SPLAY 37 37a 1.76 223.24 80.12 37 37b 2.01 159.52 65.36 37 37c 2.74 147.77 54.81 37 37d 2.18 307.25 42.85 37 37e 1.95 146.75 8.94 37 37f 3.18 144.38 -1.74 37 37g 5.46 141.37 -10.84 37 37h 4.66 138.10 -21.17 37 37i 7.04 191.90 -6.75 37 37j 6.60 231.07 8.56 37 37k 10.02 264.80 -10.54 37 37l 2.28 309.28 14.20 37 37m 2.72 314.58 -2.32 37 37n 7.91 316.49 -9.28 37 37o 5.64 314.49 -24.44 37 37p 5.42 115.37 -12.55 37 37q 2.55 82.74 -0.18 *FLAGS NOT SPLAY 37 38 7.10 308.98 -16.38 *FLAGS SPLAY 38 38a 8.01 215.94 4.87 38 38b 5.85 227.41 -7.37 38 38c 4.36 241.18 -9.60 *FLAGS NOT SPLAY 38 39 7.04 237.67 -10.34 39 40 4.49 277.38 1.73 40 41 5.24 254.57 14.08 *FLAGS SPLAY 41 41a 4.71 60.68 7.25 41 41b 3.24 96.08 5.78 41 41c 3.92 38.10 8.95 *FLAGS NOT SPLAY 41 42 5.74 226.02 -16.27 42 43 7.15 222.49 -0.74 43 44 8.77 239.95 7.37 *FLAGS SPLAY 44 44a 2.44 140.15 -8.87 *FLAGS NOT SPLAY 44 45 19.97 239.86 -2.80 45 46 8.18 252.31 -9.96 ;Stn 46=nipple on top of prominent horizontal rock spike *FLAGS SPLAY 46 46a 3.99 38.14 15.55 46 46b 4.41 283.53 -16.66 *FLAGS NOT SPLAY *data passage station left right up down 1 10.649 4.382 7.002 1.641 2 4.868 0.0 1.975 1.814 3 1.77 0.0 0.933 0.355 4 1.46 1.108 0.411 0.261 5 0.88 0.858 1.085 0.0 6 0.0 4.05 0.714 1.527 7 7.572 5.13 1.645 1.259 8 2.092 1.649 3.545 1.64 9 6.71 2.861 3.287 1.324 10 1.063 0.0 3.283 1.659 11 1.939 0.0 2.216 1.364 12 3.622 5.2 2.981 5.0 13 5 5 5.5 1.0 *data passage station left right up down 13 5 5 5.5 1.0 14 0.0 1.351 1.499 0.431 15 8.073 0.646 5.706 0.765 16 3.456 0.363 0.0 1.274 18 3.892 1.776 1.89 2.377 19 4.151 3.162 1.38 0.656 20 4.878 3.867 3.181 0.933 21 4.382 10.649 7.002 1.641 *data passage station left right up down 22 5.254 2.027 1.736 1.316 23 0.0 1.313 0.761 1.373 24 1.853 0.0 0.727 1.287 25 1.866 0.0 0.517 1.187 26 0.0 1.363 0.603 0.978 27 1.092 0.0 0.749 0.716 28 0.0 1.8 0.904 0.675 29 1.246 1.694 0.338 0.0 30 1.858 0.618 0.596 0.305 31 0.551 1.057 0.709 0.698 32 1.841 0.471 1.186 0.0 33 1.698 2.216 0.474 0.0 34 0.824 1.579 3.013 0.0 35 0.0 2.982 1.411 1.175 36 8.847 2.966 1.856 0.7 37 7.928 3.655 1.761 3.093 38 5.733 1.505 1.508 0.588 39 0.666 1.862 0.44 0.0 40 1.27 0.453 0.639 0.0 41 2.003 2.344 0.579 0.925 42 1.053 0.326 0.712 0.0 43 0.808 1.335 0.77 0.0 44 3.885 1.548 1.156 1.199 45 1.677 4.389 1.771 0.819 46 2.542 4.986 0.0 0.0 *END Crossover *BEGIN 3rdRiver *EXPORT 46 57 61 82 95 104 ;PocketTopo series 162 (continued from Crossover) ;Surveyors: Sketching (PDA) - Footleg, DistoX - Paul Dold, Lisa Wootten ;Instruments: West Sussex Caving Club DistoX (calibration checked against ;Footleg's Suunto Tandem at start of this trip). ;PocketTopo on Footleg's Dell Axim 51v PDA *DATE 2012.04.10 *CALIBRATE declination 1.67 46 47 8.34 243.65 -8.93 47 48 14.34 214.18 -1.22 48 49 8.14 192.29 -1.17 *FLAGS SPLAY 49 49a 4.16 246.97 80.21 *FLAGS NOT SPLAY 49 50 7.57 236.48 -4.85 50 51 9.88 213.52 2.92 *FLAGS SPLAY 51 51a 6.98 263.25 3.66 *FLAGS NOT SPLAY 51 52 9.69 241.51 -3.32 52 53 13.51 203.40 8.83 53 54 11.54 235.57 -8.91 54 55 12.97 227.18 -4.21 ;stn 55=bottom of prominent broken stalactite 55 56 9.29 254.39 -3.17 56 57 1.88 260.95 12.77 ;stn 57=tip of downward pointing spike over inlet entrance 57 58 6.50 159.76 17.53 *FLAGS SPLAY 58 58a 2.12 242.45 4.84 *FLAGS NOT SPLAY 58 59 15.60 195.27 -2.72 *FLAGS SPLAY 59 59a 2.59 307.10 -2.62 *FLAGS NOT SPLAY 59 60 10.10 237.41 -5.30 *FLAGS SPLAY 60 60a 5.30 34.24 84.93 60 60b 1.38 133.85 11.89 *FLAGS NOT SPLAY 60 61 8.63 236.34 -6.68 *FLAGS SPLAY 61 61a 10.03 108.33 21.04 *FLAGS NOT SPLAY 61 74 5.78 182.73 2.63 *FLAGS SPLAY 74 74a 0.85 69.46 -6.27 *FLAGS NOT SPLAY 74 75 2.79 123.76 -4.11 75 76 12.14 127.77 -0.64 76 77 7.92 179.08 7.96 *FLAGS SPLAY 77 77a 5.04 301.22 -25.13 *FLAGS NOT SPLAY 77 78 13.27 203.07 5.91 *FLAGS SPLAY 78 78a 5.12 294.82 -3.97 *FLAGS NOT SPLAY 78 79 15.54 198.86 -8.94 79 80 23.41 209.27 -2.02 *FLAGS SPLAY 80 80a 8.63 46.04 -0.26 80 80c 6.32 210.22 10.97 *FLAGS NOT SPLAY 80 80b 12.20 230.96 21.80 ;Actual leg to top of slope 80 81 12.84 186.86 3.46 ;stn 81=tip of tallest of 3 stalagmites *FLAGS SPLAY 81 81a 3.58 283.08 52.08 81 81b 5.31 256.05 51.18 *FLAGS NOT SPLAY 81 82 16.26 203.94 -0.72 *FLAGS SPLAY 82 82a 6.20 39.96 7.25 *FLAGS NOT SPLAY 82 83 11.02 134.20 19.30 83 84 5.76 209.68 27.30 *FLAGS SPLAY 84 84a 0.96 301.31 0.44 84 84b 4.02 122.98 21.07 *FLAGS NOT SPLAY 84 85 3.67 101.78 20.65 85 86 4.30 83.46 60.24 82 87 21.06 89.22 -1.51 87 88 9.03 79.68 -8.10 88 89 4.64 150.10 18.02 *FLAGS SPLAY 89 89a 9.09 253.54 52.84 *FLAGS NOT SPLAY 89 90 9.04 73.62 -3.05 90 91 22.62 68.06 0.52 *FLAGS SPLAY 91 91a 11.42 215.11 -5.60 *FLAGS NOT SPLAY 91 92 3.97 85.86 -3.20 *FLAGS SPLAY 92 92a 4.67 12.10 1.93 *FLAGS NOT SPLAY 92 93 10.29 154.01 -2.61 *FLAGS SPLAY 93 93a 4.74 277.74 56.13 *FLAGS NOT SPLAY 93 94 8.08 186.01 7.65 *FLAGS SPLAY 94 94a 6.36 263.37 13.68 *FLAGS NOT SPLAY 94 95 5.24 43.64 -8.84 94 96 11.88 200.07 6.12 *FLAGS SPLAY 96 96a 6.92 98.48 0.77 96 96b 7.40 199.40 30.29 *FLAGS NOT SPLAY 96 97 19.46 161.70 -3.91 *FLAGS SPLAY 97 97a 5.94 10.99 57.75 97 97b 7.56 292.11 -24.69 97 97c 15.01 253.87 15.86 *FLAGS NOT SPLAY 97 98 22.53 223.00 -1.42 *FLAGS SPLAY 98 98a 7.26 315.26 -22.00 *FLAGS NOT SPLAY 98 99 14.32 244.13 1.16 *FLAGS SPLAY 99 99a 8.20 289.26 47.95 99 99b 7.50 144.60 -27.19 *FLAGS NOT SPLAY 99 100 11.57 241.48 6.51 *FLAGS SPLAY 100 100a 7.03 154.69 -3.73 *FLAGS NOT SPLAY 100 101 24.04 236.35 2.04 *FLAGS SPLAY 101 101a 2.99 322.89 47.81 101 101b 12.11 143.28 -22.11 *FLAGS NOT SPLAY 101 102 21.65 210.22 -6.90 *FLAGS SPLAY 102 102a 5.42 315.99 -42.97 *FLAGS NOT SPLAY 102 103 11.04 236.96 4.86 *FLAGS SPLAY 103 103a 8.03 271.17 -30.51 *FLAGS NOT SPLAY 103 104 7.72 211.54 4.65 *FLAGS SPLAY 104 104a 1.35 112.98 -20.10 104 104b 8.62 285.39 -43.69 *FLAGS NOT SPLAY *data passage station left right up down 46 2.542 4.986 0.0 0.0 47 2.738 0.663 1.705 1.415 48 3.02 2.612 4.644 1.265 49 2.807 3.706 9.001 1.05 50 3.088 0.0 2.24 0.645 51 0.954 4.875 1.288 1.155 52 4.764 1.12 4.693 0.577 53 0.929 4.683 0.653 1.731 54 1.658 2.255 2.075 1.356 55 4.043 3.378 0.684 0.766 56 2.021 0.0 2.967 0.471 57 2.318 1.423 2.438 0.864 58 0.637 5.913 1.677 1.052 59 1.421 5.547 2.176 0.0 60 5.833 2.204 2.867 1.656 61 3.778 3.802 2.767 0.848 74 7.797 2.384 0.492 1.22 75 8.918 2.657 0.697 1.041 76 6.153 3.324 3.034 0.967 77 1.998 3.701 2.168 1.629 78 2.606 6.686 2.782 1.363 79 4.19 8.192 1.85 1.023 80 5.543 1.424 2.772 1.024 81 0.87 3.778 0.746 1.689 82 6.22 4.709 4.986 0.473 87 2.382 5.376 2.607 1.992 88 1.825 4.173 1.287 0.572 89 6.526 2.663 2.993 1.325 90 1.742 5.487 3.775 2.136 91 4.391 2.319 3.373 1.548 92 5.19 5.314 2.972 2.049 93 2.572 7.383 0.833 1.489 94 2.291 3.845 1.987 0.0 95 0.0 0.76 2.975 1.772 96 8.584 3.497 3.633 1.631 97 3.739 7.34 2.617 1.777 98 2.756 6.729 2.822 1.711 99 6.252 4.957 5.272 2.24 100 8.218 4.291 3.687 0.0 101 8.135 2.389 3.257 0.0 102 8.103 6.399 8.24 0.0 103 9.32 4.132 7.159 0.0 104 5.847 4.463 4.746 0.0 *data passage station left right up down 82 6.887 3.586 4.89 0.519 83 1.409 5.041 1.125 1.003 84 1.925 3.296 1.659 0.0 85 0.808 0.961 1.204 0.218 86 0.789 0.734 0.395 0.325 *data passage station left right up down 80 5.543 1.424 2.772 1.024 80b 0 2 .5 1 *END 3rdRiver *BEGIN ObviousInlet *EXPORT 1 ;PocketTopo series 163 (continues into 3rd River) ;Surveyors: Sketching (PDA) - Footleg, DistoX - Paul Dold ;Instruments: West Sussex Caving Club DistoX (calibration checked against ;Footleg's Suunto Tandem at start of this trip). ;PocketTopo on Footleg's Dell Axim 51v PDA *DATE 2012.04.08 1 2 2.44 50.05 -9.36 2 3 5.85 309.30 3.00 3 4 5.44 266.83 7.31 4 5 4.08 312.21 -3.48 5 6 8.51 243.91 -0.82 6 7 1.59 237.67 19.93 *FLAGS SPLAY 7 7a 0.68 148.89 7.20 *FLAGS NOT SPLAY 7 8 1.90 330.60 0.92 *FLAGS SPLAY 8 8a 2.48 69.00 4.92 *FLAGS NOT SPLAY 8 9 6.11 217.53 3.80 9 10 2.70 268.50 16.27 10 10a 9.93 41.45 8.43 ;Counted leg along dead end passage 10 11 4.61 237.72 -8.66 11 12 4.33 255.67 27.80 12 13 6.40 229.53 2.80 13 14 4.69 200.07 -16.32 14 15 8.61 229.67 0.92 15 16 7.58 236.29 -1.32 ;stn 16=tip of stalagmite *FLAGS SPLAY 16 16a 0.44 150.77 78.57 *FLAGS NOT SPLAY 16 17 3.63 279.85 9.95 17 18 2.40 301.98 1.27 18 19 3.68 341.75 5.24 19 20 4.45 320.12 -12.01 20 21 3.70 279.17 6.19 21 22 5.05 252.27 1.85 22 23 5.72 288.25 10.76 23 24 3.41 13.65 -18.95 *FLAGS SPLAY 24 24a 0.77 348.03 2.01 24 24b 1.14 203.63 5.80 *FLAGS NOT SPLAY *data passage station left right up down 1 1.384 1.304 0.0 0.863 2 1.551 1.967 0.553 0.306 3 0.587 0.564 0.75 0.468 4 0.0 4.044 2.335 0.592 5 1.575 0.0 0.938 0.532 6 0.401 0.509 1.336 0.0 7 1.512 2.113 0.891 0.669 8 1.375 0.411 0.716 0.543 9 0.0 1.01 0.477 0.839 10 1.395 2.501 1.751 1.82 11 1.052 1.144 0.925 0.545 12 0.91 1.374 0.394 0.0 13 0.548 1.164 0.213 0.387 14 0.592 3.071 1.014 1.253 15 2.012 2.227 2.391 0.302 16 2.498 1.918 1.912 0.602 17 0.908 0.447 0.484 1.103 18 1.461 1.227 0.614 0.63 19 0.828 0.395 0.438 1.325 20 1.056 0.325 1.542 0.296 21 0.715 0.66 1.642 0.503 22 0.296 0.961 2.294 0.424 23 0.0 1.709 1.272 1.357 24 5.409 3.248 0.284 0.3 *END ObviousInlet *BEGIN StrawInlet *EXPORT 61 ;PocketTopo series 162 (continues from 3rd River) ;Surveyors: Sketching (PDA) - Footleg, DistoX - Paul Dold, Lisa Wootten ;Instruments: West Sussex Caving Club DistoX (calibration checked against ;Footleg's Suunto Tandem at start of this trip). ;PocketTopo on Footleg's Dell Axim 51v PDA *DATE 2012.04.10 *CALIBRATE declination 1.67 61 62 5.45 259.01 14.70 ;stn 62=tip of point just to left of black cross marked on wall 62 63 11.78 227.47 0.60 63 64 24.01 219.97 0.21 *FLAGS SPLAY 64 64a 1.86 329.92 2.18 *FLAGS NOT SPLAY 64 65 4.42 257.69 23.06 65 66 14.47 223.04 0.57 66 67 12.81 245.47 -11.50 67 68 14.97 224.93 -0.62 68 69 18.59 231.13 2.57 69 70 15.15 210.63 3.77 70 71 21.90 240.92 -3.21 71 72 14.18 235.33 1.57 72 73 5.96 226.44 0.29 *FLAGS SPLAY 73 73a 1.92 141.34 -33.25 *FLAGS NOT SPLAY *data passage station left right up down 61 3.778 3.802 2.767 0.848 62 3.93 1.09 2.355 1.681 63 0.726 2.156 1.43 1.332 64 2.025 4.686 3.347 1.207 65 1.503 5.541 2.044 1.708 66 0.308 2.426 1.845 0.0 67 2.881 1.951 1.962 0.383 68 2.249 3.671 2.102 0.0 69 3.07 1.437 1.217 0.778 70 0.605 3.765 0.335 1.315 71 2.643 1.947 1.274 0.478 72 1.349 0.45 2.845 0.66 73 0.426 1.187 0.388 0.0 *END StrawInlet *BEGIN LisasBit *EXPORT 1 ;PocketTopo series 164 ;Surveyors: Sketching (PDA) - Footleg, DistoX - Paul Dold, Lisa Wootten ;Instruments: West Sussex Caving Club DistoX (calibration checked against ;Footleg's Suunto Tandem at start of this trip). ;PocketTopo on Footleg's Dell Axim 51v PDA *DATE 2012.04.10 *CALIBRATE declination 1.67 1 2 3.38 184.29 -2.95 2 3 5.25 223.17 -0.59 3 4 10.32 226.45 2.36 4 5 4.09 226.69 3.93 5 6 2.93 225.07 -4.37 *FLAGS SPLAY 6 6a 3.14 190.51 -2.92 6 6b 2.05 249.79 14.73 *FLAGS NOT SPLAY 1 7 8.90 149.90 20.14 7 8 6.15 235.21 7.55 *FLAGS SPLAY 8 8a 4.85 113.79 11.68 *FLAGS NOT SPLAY 8 9 1.68 234.62 -71.25 9 10 3.51 228.87 -11.39 10 11 6.28 227.02 -1.26 *FLAGS SPLAY 11 11a 0.20 312.13 2.17 *FLAGS NOT SPLAY 11 12 2.77 164.80 -14.43 12 13 3.46 221.60 -4.35 *FLAGS SPLAY 13 13a 1.47 73.62 -32.57 *FLAGS NOT SPLAY 13 14 2.14 98.34 -10.63 14 15 2.31 192.43 1.81 15 16 3.12 78.49 22.06 *FLAGS SPLAY 16 16a 1.37 296.77 -8.05 16 16b 1.83 160.61 -3.17 *FLAGS NOT SPLAY 16 17 2.49 138.72 -9.70 17 18 2.19 152.73 -2.14 18 19 1.12 199.32 57.19 19 20 3.25 72.41 21.12 20 21 2.54 80.08 68.37 21 21a 6.84 47.47 14.14 ;Counted leg to flowstone inlet 21 22 4.71 236.60 37.06 22 23 2.76 247.65 32.10 *FLAGS SPLAY 23 23a 2.14 22.58 -4.62 23 23b 0.32 226.02 20.55 *FLAGS NOT SPLAY 23 24 4.43 190.61 32.70 24 25 3.19 43.63 20.15 *FLAGS SPLAY 25 25a 4.29 278.43 35.70 25 25b 4.91 218.34 36.86 25 25c 2.81 82.84 18.66 25 25d 7.15 157.15 43.46 *FLAGS NOT SPLAY 22 26 3.66 63.90 -42.79 *FLAGS SPLAY 26 26a 1.63 224.30 2.25 *FLAGS NOT SPLAY 26 27 3.34 210.04 -12.88 27 28 4.88 239.93 2.13 *data passage station left right up down 1 6.887 3.586 4.89 0.519 2 2.528 4.19 4.904 1.154 3 0.592 1.057 0.552 0.684 4 0.907 0.611 1.008 0.703 5 0.57 0.46 1.629 0.635 6 0.752 1.052 0.0 0.238 *data passage station left right up down 1 6.887 3.586 4.89 0.519 7 4.678 2.494 1.898 1.36 8 3.912 0.0 0.871 2.045 10 1.092 0.668 0.577 0.0 11 0.824 1 0.366 0.951 12 0.273 0.495 1.13 1.42 13 1.655 0.55 0.915 0.0 14 0.608 0.898 4.208 0.289 15 0.507 0.497 1.328 0.456 16 0.0 4.42 2.386 0.739 17 2.09 0.796 0.858 0.725 18 0.507 1.325 0.346 0.0 19 0.712 0.251 0.38 1.193 20 0.379 1.031 3.368 1.377 21 0.0 0.944 2.715 1.124 22 0.456 0.806 0.484 4.035 23 3.053 1.905 5.317 1.367 24 1.725 0.0 1.0 0.752 25 4.364 3.697 7.807 0.0 *data passage station left right up down 22 0.806 0.456 0.484 4.035 26 2.017 1.449 1.685 1.347 27 0.0 0.513 0.587 0.682 28 1.182 1.747 1.725 0.648 *END LisasBit *begin 3rdRiverInlet *EXPORT 197 197 659 36.13 14.42 0 ;3rd River 659 660 43.41 321.54 0 ;* 660 661 45.22 251.96 0 ;* 661 662 21.93 226.84 0 ;* 662 663 43.86 245.77 0 ;* 663 664 22.02 219.47 0 ;* 664 665 64.00 241.03 0 ;* 665 666 9.60 234.00 0 ;* 666 667 7.40 302.00 0 ;* 667 668 20.10 237.00 0 ;* 668 669 29.60 230.00 0 ;* 669 670 29.60 231.50 0 ;* 670 671 29.60 231.50 0 ;* 671 672 18.50 232.50 0 ;* 672 673 29.60 229.00 0 ;* 673 674 16.10 266.00 0 ;* 674 675 23.70 231.00 0 ;* 675 676 26.90 221.00 0 ;* 676 677 23.80 233.00 0 ;* 677 678 27.30 222.00 0 ;* 678 679 13.20 228.00 0 ;* 679 680 10.90 248.00 0 ;* 680 681 29.60 220.00 0 ;* 681 682 20.30 208.50 0 ;* 682 683 13.20 214.00 0 ;* 683 684 14.70 238.00 17 ;* 684 685 3.90 230.00 -28 ;* 685 686 18.60 230.00 0 ; was 18.60 191.00 0 ; 686 687 26.30 228.00 0 ;* 687 688 6.10 246.00 0 ;* 688 689 6.50 23.00 0 ;* 689 690 2.80 280.00 0 ;was 2.80 222.00 0 690 691 2.80 182.00 0 ;* 691 692 4.80 261.00 0 ;* 692 693 6.80 208.00 0 ;* 693 694 4.70 240.00 0 ;* 694 695 2.70 285.00 0 ;* 695 696 3.00 29.00 0 ;* 696 697 2.70 354.00 0 ;* 697 698 7.30 25.00 0 ;* 698 699 2.10 246.00 0 ;* 699 700 3.40 213.00 0 ;* 700 701 5.20 245.00 0 ;* 701 702 2.20 226.00 0 ;* 702 703 7.60 235.00 0 ;* 703 704 2.30 333.00 0 ;* 704 705 14.10 52.00 0 ;* 705 706 16.10 38.00 0 ;* 706 707 29.10 37.00 0 ;* 707 708 6.10 250.00 0 ;* 708 709 4.40 258.00 0 ;* 709 710 9.90 43.00 0 ;* 710 711 23.10 43.00 0 ;* 711 712 3.80 87.00 -25 ;* 712 713 4.80 26.00 0 ;* 713 714 8.80 130.00 0 ;* 714 715 3.40 27.00 0 ;* 715 716 7.40 79.00 0 ;* 716 717 3.40 81.00 0 ;* 717 718 2.80 9.00 0 ;* 718 719 2.90 67.00 0 ;* 719 720 3.30 15.00 0 ;* 720 721 14.20 35.00 0 ;* 721 722 6.20 49.00 0 ;* 722 723 12.10 68.00 0 ;* 723 724 1.40 358.00 0 ;* 724 725 3.80 66.00 0 ;* 725 726 7.80 55.00 0 ;* 726 727 2.40 352.00 0 ;* 727 728 3.60 52.00 0 ;* 728 729 3.60 32.00 0 ;* 729 730 7.20 38.00 0 ;* 730 731 3.20 44.50 0 ;* 731 732 1.20 95.00 0 ;* 732 733 2.80 61.00 6 ;* 733 734 9.10 45.00 6 ;* 734 735 6.50 77.00 8 ;* 735 736 6.40 58.50 7 ;* 736 737 9.10 56.50 12 ;* 737 738 13.30 61.00 10 ;* 738 739 5.00 15.00 47 ;* 739 740 4.90 68.00 36 ;* 740 741 10.40 42.00 40 ;* 741 742 11.80 24.00 27 ;* *end 3rdRiverInlet *begin ArmageddonBypass *EXPORT 1 ;Surveyed 1979 *CALIBRATE declination 6.89 1 2 9.7 221 22 2 3 10.0 242 -10 3 4 6.8 189 0 4 5 8.0 147 11 5 6 4.6 171 -27 6 7 2.7 263 -10 7 8 12.2 185 6 8 9 7.5 164 -6 9 10 8.2 223 7 10 11 18.4 104.5 -1 11 12 1.0 - -V 12 13 10.9 071 -7.5 13 14 11.4 116 -5 14 15 4.5 105 -3 15 16 11.8 175 4 16 17 5.5 087 -1 17 18 5.4 150 -7 18 19 12.7 071 -1 19 20 22.4 109 -1 20 21 13.2 120 0 21 22 8.1 90 -2 22 23 10.0 097 0 23 24 12.2 242 4 24 25 8.3 177 -4 25 26 7.7 224 2 26 27 7.6 173 0 27 28 6.2 102 1 28 29 5.5 133 -1 29 30 5.8 072 -5 30 31 14.0 109 -5 31 32 9.7 114 -2 32 33 7.4 143 1 33 34 13.8 95 -5 34 35 15.0 065 -4 35 36 8.2 087 0 36 37 8.4 061 2 37 38 8.1 105 -4 38 39 1.2 015 0 39 40 21.6 073 0 40 41 11.3 081 0 *end ArmageddonBypass *begin Trident *EXPORT 273 273 317 17.91 70.19 -40 ;DataPrintouts03.jpg 317 318 30.70 86.70 4 ; | 318 319 30.70 107.70 0 ; | 319 320 30.70 109.70 0 ;* 320 321 30.70 102.70 8 ;* 321 322 18.40 115.70 10 ;* 322 323 30.70 98.70 17 ;* 323 324 19.20 107.70 9 ;* 324 325 23.30 87.70 13 ;* 325 326 11.40 159.70 26 ;* 326 327 8.20 133.70 30 ;* 327 328 30.70 108.70 32 ;* 328 329 5.40 105.70 -2 ;* 329 330 10.20 102.70 -24 ;* 330 331 7.10 124.70 -22 ;* 331 332 22.00 66.70 0 ;* 332 333 13.20 76.70 -7 ;* 333 334 18.60 131.70 0 ;* 334 335 14.10 224.70 2 ;* 335 336 9.30 197.70 2 ;* 336 337 13.20 107.70 3 ;* 337 338 10.00 218.70 3 ;* 338 339 6.20 101.70 4 ;* 339 340 6.80 134.70 0 ;* 340 341 8.20 250.70 20 ;* 341 342 7.20 247.70 -27 ;* 342 343 4.50 209.70 0 ;* 343 344 8.70 224.70 16 ;* 344 345 3.50 97.70 0 ;* 345 346 2.80 193.70 3 ;* 346 347 3.50 198.70 -42 ;* 347 348 5.60 224.70 5 ;* 348 349 8.40 255.70 0 ;* 349 350 12.50 254.70 0 ;* 350 351 5.90 275.70 -4 ;* 351 352 9.50 268.70 0 ;* 352 353 6.90 250.70 -2 ;* 353 354 12.00 251.70 -5 ;* 354 355 16.80 261.70 -6 ;* 355 356 15.30 249.70 2 ;* 356 357 15.20 243.70 -4 ;* 357 358 15.70 193.70 0 ;* 358 359 16.70 198.70 1 ;* 359 360 18.00 148.70 -2 ;* 360 361 10.90 111.70 2 ;* 361 362 3.60 158.70 -2 ;* 362 363 11.40 216.70 -2 ;* 363 364 6.40 148.70 -2 ;* 364 365 18.00 230.70 22 ;* 365 366 17.90 227.70 20 ;* 366 367 11.50 236.70 -30 ;* 367 368 5.70 220.70 -2 ;* 368 369 17.20 238.70 -2 ;* 369 370 17.20 232.70 0 ;* 370 371 3.70 - +V ;* 371 372 14.90 227.70 -9 ;* 372 373 15.80 221.70 -3 ;* 373 374 15.40 229.70 0 ;end DataPrintouts03.jpg 374 375 4.60 253.70 0 ;DataPrintouts04.jpg 375 376 14.70 238.70 0 ; | 376 377 14.30 248.70 0 ; | 377 378 16.00 235.70 0 ;* 378 379 9.60 279.70 0 ;* 379 380 15.40 266.70 0 ;* 380 381 20.60 237.70 2 ;* 381 382 7.20 131.70 -4 ;* 382 383 30.60 212.70 5 ;* 383 384 22.20 226.70 -3 ;* 384 385 13.90 211.70 0 ;* 385 386 13.50 242.70 2 ;* 386 387 17.00 230.70 0 ;* 387 388 20.70 213.70 0 ;* 388 389 7.50 203.70 0 ;* 389 390 7.00 - -V ;* 390 391 10.00 203.70 0 ;end of middle passage 357 392 4.90 213.70 0 ;* 392 393 11.30 326.70 25 ;* 393 394 12.50 35.70 22 ;* 394 395 3.20 22.70 30 ;* 395 396 6.10 273.70 -2 ;* 396 397 12.00 255.70 8 ;* 397 398 4.80 242.70 11 ;* 398 399 3.20 265.70 -28 ;* 399 400 6.90 260.70 6 ;* 400 401 5.30 256.70 -8 ;* 401 402 2.00 315.70 0 ;* 402 403 10.20 275.70 6 ;* 403 404 7.30 217.70 -2 ;* 404 405 6.10 269.70 8 ;* 405 406 4.50 - +V ;* 406 407 14.90 255.70 4 ;* 407 408 15.90 248.70 -4 ;* 408 409 30.70 257.70 -7 ;* 409 410 26.50 230.70 2 ;end DataPrintouts04.jpg 410 411 15.50 109.71 3 ;DataPrintouts05.jpg 411 412 12.90 52.70 36 ; | 412 413 10.50 120.70 3 ; | 413 414 9.30 157.70 -8 ;* 414 415 11.50 155.70 -15 ;* 415 416 17.30 90.70 -1 ;* 416 417 24.30 146.70 2 ;* 417 418 12.70 244.70 30 ;* 418 419 3.80 242.70 0 ;* 419 420 14.60 132.70 0 ;* 420 421 23.00 66.70 1 ;* 421 422 13.10 130.70 -1 ;* 422 423 11.60 90.70 -4 ;* 423 424 27.00 129.70 0 ;* 424 425 7.10 137.70 -2 ;* 425 426 16.60 58.70 0 ;* 426 427 11.10 78.70 3 ;* 427 428 19.50 54.70 -4 ;* 428 429 19.70 165.70 -2 ;* 429 430 19.70 117.70 0 ;* 430 431 23.00 148.70 2 ;* 431 432 19.70 152.70 0 ;* 432 433 14.60 57.70 -3 ;* 433 434 27.00 155.70 -2 ;* 434 435 12.10 219.70 4 ;* 435 436 27.00 272.70 0 ;* 436 437 9.50 261.70 0 ;* 437 438 22.10 179.70 2 ;* 438 439 27.00 211.70 0 ;* 439 440 24.30 234.70 -1 ;* 440 441 9.30 239.70 0 ;* 441 442 7.00 130.70 0 ;* 442 443 18.10 104.70 3 ;* 443 444 25.90 130.70 2 ;* 444 445 10.40 239.70 -1 ;* 445 446 25.40 183.70 -2 ;* 446 447 9.00 198.70 5 ;* 447 448 9.60 194.70 -10 ;* 448 449 22.50 280.70 0 ;* 449 450 21.20 275.70 2 ;* 450 451 5.00 247.70 -38 ;* 451 452 10.60 267.70 -4 ;* 452 453 10.10 249.70 8 ;* 453 454 16.50 272.70 0 ;* 454 455 10.80 254.70 15 ;* 455 456 11.80 244.70 4 ;* 456 457 6.50 286.70 18 ;* 410 458 10.10 217.67 7 ;* 458 459 8.00 234.70 9 ;* 459 460 8.10 199.70 -2 ;* 460 461 9.10 219.70 0 ;* 461 462 6.90 235.70 -2 ;* 462 463 4.10 297.70 0 ;* 463 464 18.10 237.70 -6 ;* 464 465 3.30 229.70 0 ;* 465 466 16.70 231.70 0 ;* 466 467 12.50 205.70 0 ;* 467 468 8.90 209.70 0 ;* 468 469 30.00 224.70 1 ;* 469 470 19.40 209.70 0 ;* 470 471 3.40 196.70 -2 ;* 471 472 6.20 138.70 -6 ;* 472 473 3.00 188.70 15 ;* 473 474 6.40 127.70 -17 ;* 474 475 11.20 235.70 4 ;* 475 476 5.30 184.70 4 ;* 476 477 8.60 243.70 -11 ;* 477 478 8.70 249.70 14 ;* 478 479 10.10 262.70 30 ;end DataPrintouts05.jpg 360 480 5.19 43.64 1 ;DataPrintouts06.jpg 480 481 11.60 73.70 0 ;* 481 482 25.10 83.70 0 ;* 482 483 27.00 73.70 0 ;* 483 484 4.00 353.70 0 ;* 484 485 2.00 33.70 0 ;* 485 486 1.60 323.70 0 ;* 486 487 16.90 63.70 0 ;* 487 488 6.80 48.70 0 ;* 488 489 4.90 3.70 0 ;* 489 490 9.30 63.70 0 ;* 490 491 8.30 28.70 0 ;* 491 492 5.70 58.70 0 ;* 492 493 4.40 3.70 0 ;* 493 494 9.90 88.70 0 ;* 494 495 5.80 73.70 0 ;* 495 496 8.70 88.70 0 ;* 496 497 27.20 63.70 0 ;* 497 498 6.20 63.70 0 ;* 498 499 7.90 53.70 0 ;* 499 500 12.90 68.70 0 ;* 500 501 9.20 23.70 0 ;* 501 502 8.70 283.70 0 ;* 502 503 7.60 293.70 0 ;end DataPrintouts06.jpg *end Trident *begin QuadrapheniaOxbows *EXPORT 1019 ;Scans Unknown_Aug91c 1019 800 8.00 256.65 26 ;* 800 801 20.00 269.65 1 ;* 801 802 3.10 281.65 0 ;* 802 803 17.50 271.65 -1 ;* 803 804 9.00 235.65 -15 ;* 803 805 14.00 273.65 -4 ;* 805 806 14.90 257.65 2 ;* 802 807 7.30 251.35 -20 ;* 807 808 5.10 235.35 0 ;* 808 809 5.30 144.35 0 ;* 809 810 13.60 287.85 0 ;* 809 811 9.60 260.35 37 ;* 811 812 14.00 266.35 2 ;* 812 813 16.00 29.85 -12 ;* *end QuadrapheniaOxbows *begin FlashbulbHallOldBits *EXPORT 749 ;Old bit from Scans Unknown_Jul91 745 746 5.20 73.65 0 ;* 746 747 10.00 40.65 0 ;* 746 748 5.50 76.65 11 ;* 748 749 8.30 220.65 -10 ;* *end FlashbulbHallOldBits *begin PullupMazeInlet *EXPORT 97 97 98 20.24 212.90 0 ;* 98 99 102.04 245.69 0 ;* 99 100 32.38 261.12 0 ;* *end PullupMazeInlet *BEGIN Pigstrotters_sidepassage *EXPORT 0 ;surveyors Alasdair Neill Patrick Warren ;date 2009-04-10 ;declination is 2.08 for 2009 *CALIBRATE declination 2.08 ;0=stav 1 of 9.4.09 0 1 12.51 59 -4 1 2 6.25 36 17 2 3 8.07 69 -13 ;hole down to t.t. streamway *data passage station left right up down 0 1 1 5 2; duplicated from 1 1 1 1 5 2 2 0.5 1.5 2 1.5 3 0 0.3 4 0.4 *END Pigstrotters_sidepassage *BEGIN Marathon_to_PigsTrotters_resurvey2009_1 *EXPORT 0 6 10 ;surveyors Alasdair Neill Peter Eagan ;date 2009-04-10 ;declination is 2.08 for 2009 *CALIBRATE declination 2.08 1 0 3.64 311 20 1 2 7.34 214 -4 2 3 12.36 186 1 3 4 13.04 145 -3 4 5 5.63 77 1 6 5 9.16 227 -29 ;6=bECKA STA 5 5 7 5.04 111 10 7 8 6.15 227 -8 8 8a 19 - up ;disto up aven to left of sta 8 8 9 9.9 227 3 9 10 7.97 200 18 ;10 =STA1 OF9.4.09 *data passage station left right up down 0 1.2 1.2 4 2 1 2 0 3 1.5 2 1 0 2.8 1.7 3 3.3 6.2 1 3 4 5.1 6.7 6.2 1.5 5 2.6 0.9 7 1.3 7 1 0.7 0.9 1.6 8 1.8 0 1.5 1.5 9 0.7 3 0.6 1.7 10 6 9 9 2.5 *data passage station left right up down 5 2.6 0.9 7 1.3 6 0 1.3 1.9 1.4 *data passage station left right up down 4 5.1 6.7 6.2 1.5 9 0.7 3 0.6 1.7 *END Marathon_to_PigsTrotters_resurvey2009_1 *BEGIN Marathon_to_PigsTrotters_resurvey2009_2 *EXPORT 1 9 ;surveyors Becka Lawson (RL), Patrick Warren (PBW) ;instruments = RL pomy, PBW tape ;date 2009-04-10 ;declination is 2.08 for 2009 *CALIBRATE declination 2.08 2 1 10.22 256 -17 3 2 14.72 242 0 4 3 12.12 226 +1 5 4 9.73 283 -1 6 5 28.37 034 0 7 6 18.80 038 0 8 7 7.27 244 +9 9 8 5.35 008 -9 10 7 2.84 049 +10 11 10 0.82 099 -27 12 11 11.97 043 +2 *data passage station left right up down ; station 1 is Ali 23 from 2008-04-8? 1 1.2 1.2 4 2 2 2.0 0.5 1.0 1.7 3 1.5 1.3 1.2 1.4 4 0.5 2.5 1.1 0.5 5 2.1 2.3 1.0 1.3 6 0.2 1.4 1.5 1.0 7 0.8 0.2 0.4 0.6 10 0.0 1.0 1.0 0.1 11 0.1 0.7 0.1 0.7 12 0.2 1.2 3.0 4.0; station where side passage ends above lower level *data passage station left right up down 7 0.2 0.8 0.4 0.6 8 0.0 3.5 1.8 0.1 9 1.3 0 1.9 1.4 *END Marathon_to_PigsTrotters_resurvey2009_2 *BEGIN PigsTrotters_downstream_resurvey2011 *EXPORT 0 17 ;surveyors Alasdair Neill + Santi Urrutia + Simone Sanbento *Date 2011.04.22 *CALIBRATE declination 1.78 0 1 18.28 120 +1 2 0 12.70 284 -3 2 3 3.50 090 -0.5 3 4 8.80 058 +2 4 5 5.30 040 +30 1 6 7.60 037 +22 1 7 3.18 100 +20 7 8 5.80 070 +22 8 9 4.00 058 +32 0 10 22.80 164 -10 10 11 7.97 070 +18 10 12 18.40 176 -3 12 12a 0 0 0 12 13 11.70 166 -3 13 13a 0 0 0 13 14 15.00 080 +18 13 15 13.85 227 -1 15 16 14.80 240 +5 15 17 8.10 175 -3 17 18 30.00 140 -1 18 19 6.40 240 0 18 20 27.7 048 -2 17 21 13.42 222 -1 21 22 4.33 236 -3 ; continues as low crawl, main route into cave *data passage station left right up down 1 2.5 2.3 8.2 1.2 6 0 0.5 2.3 0.7 *data passage station left right up down 0 4 4 4 2 1 2.5 2.3 8.2 1.2 7 0.7 0 7.6 1.8 8 0 0.9 3.4 0.9 9 0 0.9 3.4 0.9 *data passage station left right up down 0 4 4 4 2 2 0 2.5 3.1 1.3 3 0.7 0.6 4.9 0.8 4 0 0.9 2.8 1.3 5 0.3 0.3 0.3 0.3 ;guess *data passage station left right up down 0 7 6 4 2 10 3.3 11.5 7 0.3 *data passage station left right up down 10 1.1 1.3 7 0.3 11 1.1 1.3 2.96 1.4 *data passage station left right up down 10 3.3 6.5 0.6 0.3 12 2.7 4.7 0.6 0.2 13 3 5 0.6 0.2 15 6 6.5 2 1 17 4 0.1 0.2 0.4 18 5 0.5 0.2 0.3 20 2 5 0 0.3 *data passage station left right up down 12 2.7 4.7 0.6 0.2 12a 2.7 4.7 6 0.2 *data passage station left right up down 13a 0.5 0.5 10 0.2 14 0.5 0.5 0.5 0.5 *data passage station left right up down 15 6 6.5 2 1 16 3 0 0.3 0.3 *data passage station left right up down 18 1 0.5 0.2 0.3 19 1 0 0 0.3 *data passage station left right up down 17 1.5 0 0.1 0.3 21 1.5 0 0.1 0.3 22 1.5 0.5 0.3 0 *END PigsTrotters_downstream_resurvey2011 *begin ChambersBackFromArmageddon ;Folder4_32 *EXPORT 7 *CALIBRATE declination 6.0 ;approximate calibration guessed for 1983 (year is a guess too) 1 2 26.0 64 6 2 3 11.5 36 -2 3 4 1.7 344 0 4 5 9.0 325 60 5 6 10.9 305 0 6 7 10.0 294 0 *end ChambersBackFromArmageddon *begin SandyJunctionInlet ;Folder4_20 *EXPORT 10 *CALIBRATE declination 6.0 ;approximate calibration guessed for 1983 (year is a guess too) *EQUATE 2 14 1 2 18.0 210 -4 2 3 13.0 240 8 3 4 6.0 190 0 4 5 8.8 134 0 5 6 12.0 181 0 6 7 4.0 274 -5 7 8 17.0 204 0 8 9 16.0 267 0 9 10 9.5 235 0 10 11 7.0 346 -17 11 12 20.0 063 -3 12 13 24.0 031 -3 13 14 21.0 031 6 *end SandyJunctionInlet *begin ArmageddonToRockyHorror *EXPORT 219a 223 238 273 ;Data taken off old printed survey 219a 220 15.5 63 0 ;Adjustment leg to allow this data to be attached to end of River2 data 220 221 49.36 83.01 0 ;* 221 222 16.64 122.73 0 ;* 222 223 117.00 71.56 0 ;* 223 225 64.56 106.19 0 ;* 225 226 159.66 139.82 0 ;* 226 227 41.00 192.68 0 ;* 227 228 104.30 122.47 0 ;* 228 229 100.18 86.56 0 ;* 229 230 39.81 101.59 0 ;* 230 231 50.09 93.43 0 ;* 231 232 19.00 90.00 0 ;* 232 233 127.94 201.55 0 ;* 233 234 202.89 211.49 0 ;* 234 235 15.29 168.69 0 ;* 235 236 63.82 215.43 0 ;* 236 237 19.02 273.01 0 ;* 237 238 25.61 218.66 0 ;* 238 265 27.65 77.47 0 ;* 265 266 36.25 114.44 0 ;* 230 267 21.02 205.34 0 ;* 267 268 5.00 90.00 0 ;* 268 269 98.47 214.65 0 ;* 269 270 56.56 225.00 0 ;* 270 271 40.00 216.87 0 ;* 271 272 81.39 222.51 0 ;* 266 273 35.00 94.28 0 ;* *end ArmageddonToRockyHorror *begin NearSeries *EXPORT 16 ;Lank Neil Grovel Trevor 13/8/83 ;Scan: Folder4_02.jpg *CALIBRATE declination 6.0 ;approximate calibration guessed for 1983 1 2 11.2 77 3 ;Folder4_16.jpg 2 3 5.0 98 -38 3 4 5.0 82 -14 4 5 4.6 112 -16 5 6 6.2 53 14 6 7 4.8 189 1 7 8 7.9 224 -15 6 9 6.7 100 0 ;Folder4_17.jpg 9 10 6.7 71 0 10 11 4.0 91 0 10 12 1.7 127 0 12 13 12.9 97 0 13 14 7.5 229 0 14 15 1.7 239 0 15 16 2.0 165 0 16 17 10.5 262 0 16 18 8.9 85 11 ;Folder4_18.jpg 13 19 12.6 79 16 *end NearSeries *begin MarathonPassagePt1 *EXPORT 79 ; 73 1019 ;1019 70 51.22 38.66 0 ;* ;70 71 25.80 35.53 0 ;* ;71 72 94.92 41.58 0 ;* ;72 73 19.69 23.96 0 ;* ;73 74 8.54 249.44 0 ;* ;74 75 45.65 28.81 0 ;* ;75 76 5.83 210.96 0 ;* ;76 77 21.09 31.43 0 ;* ;77 78 10.19 78.69 0 ;* ;78 79 5.00 0000 0 ;* 79 80 41.23 255.96 0 ;* 80 81 7.07 225.00 0 ;* 81 82 11.18 243.43 0 ;* 82 83 12.72 225.00 0 ;* *end MarathonPassagePt1 *begin MarathonPassage *EXPORT 54 57 ;Lank Neil Grovel Trevor 13/8/83 *CALIBRATE declination 6.0 ;approximate calibration guessed for 1983 31 32 4.0 27 0 31 33 7.3 274 0 31 34 7.4 100 0 34 35 2.7 218 0 35 36 7.4 96 0 ;37 38 9.2 270 0 ;38 39 3.2 200 0 39 40 3.0 74 20 40 41 4.6 57 0 41 42 10.8 58 0 42 36 4.8 38 0 36 43 2.7 50 0 43 44 5.8 102 0 44 45 5.6 100 39 45 46 4.0 91 -15 46 47 7.3 61 -12 47 48 5.5 86 -13 48 49 5.9 78 10 49 50 2.4 139 6 50 51 4.8 178 -34 51 52 10.0 68 0 51 53 9.0 239 0 53 54 2.7 257 -42 54 55 4.9 131 -40 55 56 16.9 229 -5 56 57 17.7 214 0 ;57 58 4.2 77 0 ;58 59 30.0 218 0 ;59 60 15.0 208 0 ;60 61 5.9 77 0 *end MarathonPassage ;*begin WMFPassage ; ;*EXPORT 783 1006 ; ;;WMF Passage/Mickey Rat? Lank 7/4/88 (Resurveyed by Lank/Ali in 2008. Named Roofers Passage) ;;Folder4_04 - 4_10.jpg (Not the original data from these scanned notes, but looks like closest match) ; ;;Data taken off old printed survey (now replaced with real data) ;;783 43 4.00 0000 0 ;* ;;43 44 58.21 265.07 0 ;* ;;44 45 19.31 248.75 0 ;* ;;45 46 6.40 218.66 0 ;* ;;46 47 32.06 266.42 0 ;* ;;47 48 6.40 231.34 0 ;* ;;48 49 32.00 270.00 0 ;* ;;49 50 5.10 11.31 0 ;* ;;50 51 33.37 261.38 0 ;* ;;51 52 17.26 259.99 0 ;* ;;51 53 18.78 25.20 0 ;* ;;53 54 6.70 63.43 0 ;* ;;54 55 13.45 48.01 0 ;* ;;55 56 20.10 84.29 0 ;* ;;55 57 18.02 273.18 0 ;* ;;57 58 33.83 251.03 0 ;* ;;58 59 4.12 284.03 0 ;* ;;59 60 19.72 239.53 0 ;* ;;57 61 11.18 10.30 0 ;* ;;61 62 33.01 91.73 0 ;* ;;61 63 7.07 261.87 0 ;* ;;63 64 4.12 165.96 0 ;* ;;64 65 11.18 280.30 0 ;* ; ;1006 778 6.70 280.65 49 ;leg 22 to 21 : Scan Unknown_Aug91b ;778 779 4.00 276.15 4 ;* ;779 780 7.50 253.15 1 ;* ;780 781 6.80 267.15 0 ;* ;781 782 20.00 258.65 0 ;* ;782 783 13.30 254.65 1 ;leg 17 to 16 ;783 784 8.70 212.15 1 ;* ;784 785 14.70 255.65 1 ;* ;785 786 20.00 259.65 1 ;* ;786 787 11.40 261.65 1 ;* ;787 788 13.00 255.15 1 ;* ;788 789 4.50 242.65 3 ;* ;789 790 14.10 256.65 0 ;leg 10 to 9 ;790 791 16.10 256.15 2 ;* ;791 792 20.00 254.15 2 ;* ;792 793 18.50 253.65 1 ;* ;793 794 20.00 267.15 2 ;* ;794 795 1.90 6.15 0 ;leg 5 to 4 ;795 796 4.80 271.15 1 ;* ;796 797 4.60 258.15 5 ;* ;797 798 2.40 254.65 2 ;* ;798 799 5.60 265.65 2 ;leg 1 to 0 ; ;*end WMFPassage *begin RH_StartOfGorillaWalk *EXPORT 1094 ;Shitty Shale Crawl ;30 Mar. 2002 DFoxton ;Magnetic deviation adjustment applied to figures: 2.7 ;156 1094 22.00 223.30 0 ;dummy leg to position off old data. Now attached to new data stn 46 1094 1095 6.61 185.30 51 ;stn25 1095 1096 4.20 - +V ;* 1096 1097 5.00 40.30 36 ;stn23 1097 1098 5.80 43.30 60 ;* 1098 1099 4.60 - +V ;stm21 1099 1100 9.58 227.30 5 ;* 1100 1101 9.97 243.30 6 ;* 1101 1102 8.86 233.30 -3 ;* 1102 1103 4.95 283.30 11 ;stn17 1103 1104 1.61 205.30 19 ;* 1104 1105 4.41 283.30 45 ;* 1105 1106 3.46 278.30 -15 ;stn14 1106 1107 9.03 233.30 0 ;* 1107 1108 5.71 32.30 -6 ;stn12 1108 1109 1.34 312.30 22 ;* 1109 1110 2.59 216.30 -11 ;* 1110 1111 8.28 245.30 10 ;stn9 1111 1112 3.96 215.30 16 ;* 1112 1113 3.74 265.30 -14 ;* 1113 1114 5.14 284.30 21 ;* 1114 1115 3.54 240.30 -1 ;* 1115 1116 3.26 260.30 -41 ;* 1116 1117 3.36 258.30 -5 ;stn3 1117 1118 7.28 251.30 14 ;* 1118 1119 6.25 265.30 -1 ;stn1 *end RH_StartOfGorillaWalk *begin 2ndRiverInlet *EXPORT 1 20 *CALIBRATE declination 4.0 ;approximate calibration based on 1988 1 2 4.3 82 0 2 3 3.0 80 0 3 4 4.5 113 0 4 5 5.4 110 35 5 6 12.9 118 -14 6 7 8.9 67 0 7 8 15.5 20 0 8 9 25.5 59 -3 9 10 20.0 99 0 10 11 6.6 68 -4 11 12 4.5 126 0 12 13 7.5 83 0 13 14 14.4 135 0 14 15 7.6 85 13 14 16 3.1 113 0 16 16b 1 - -v 16b 17 13.7 100 0 17 18 12.2 81 0 18 19 9.5 83 0 19 20 19.0 112 0 *end 2ndRiverInlet *begin Aug96Passage *EXPORT 202 202 835 3.00 31.40 12 ;climb over boulders 835 836 11.30 47.40 5 ;climb over boulders 836 837 9.50 46.40 -3 ;* 837 838 4.60 52.40 -1 ;* 838 839 6.30 62.40 3 ;* 839 840 6.20 53.40 14 ;* 840 841 9.00 41.40 -5 ;* 841 842 5.00 22.40 2 ;* 842 843 5.30 38.40 1 ;* 843 844 7.40 41.40 3 ;* 844 845 0.40 131.40 0 ;* 845 846 8.50 35.40 2 ;* 846 847 7.30 1.40 3 ;* 847 848 4.80 34.40 1 ;* 848 849 8.90 6.40 8 ;* 849 850 3.40 309.40 2 ;* 850 851 5.10 265.40 5 ;* 851 852 2.90 11.40 8 ;* 852 853 3.30 320.40 13 ;top of boulder 853 854 4.10 16.40 -8 ;* 854 855 7.00 42.40 2 ;* 855 856 2.00 327.40 4 ;* 856 857 3.60 35.40 2 ;* 857 858 7.50 13.40 2 ;stal 858 859 3.90 54.40 4 ;* 859 860 3.90 31.40 1 ;cairn 860 861 5.00 305.40 68 ;cairn at top of 5m climb *end Aug96Passage *begin NewUzueka *EXPORT 1 6 16 46 65 77 82 100 106 *CALIBRATE declination 6.89 ;approximate calibration based on estimated age of data *FLAGS DUPLICATE 1 2 12.6 225 0 2 3 4.8 219 0 *FLAGS NOT DUPLICATE 3 4 3.7 247 1 4 5 8.3 254 0 5 6 6.3 258 19 6 7 4.0 196 20 7 8 8.5 105 0 8 9 5.0 101 0 9 10 7.3 067 0 10 11 9.7 118 -10 11 12 5.0 125 14 12 13 4.2 145 -5 13 14 3.1 113 10 14 15 10.2 098 15 15 16 10.1 106 2 16 17 12.4 057 0 17 18 7.5 076 1 18 19 7.9 40 -2 19 20 4.9 171 0 20 21 8.3 071 -2 21 22 5.8 38.5 2 22 23 7.0 069 -2 23 24 9.5 035 -1 24 25 3.5 071 -4 25 26 6.0 043 -3 26 27 4.7 065 -5 27 28 1.9 132 0 28 29 8.9 080 -3 29 30 11.6 221 -4 30 31 4.5 155 0 31 32 6.1 057 0 32 33 3.3 039 15 33 34 5.2 038 -31 34 35 11.9 034 -1 35 36 6.5 074 0 36 37 13.3 057 0 37 38 18.5 073 0 38 39 11.4 051 0 39 40 10.9 072 0 40 41 3.7 050 30 41 42 21.0 054 1.5 42 43 20.0 053 0 43 44 16.5 040 0 44 45 7.4 054 -10 45 46 12.6 030 -5 46 47 11.8 056 -4 47 48 20.0 080 -1 48 49 20.0 051 0 49 50 12.0 108 -1 50 51 13.6 200 8 51 51a 20 108 0;offset to sump 50 52 20.0 048 0 52 53 20.0 047 0 53 54 20.0 060 0 54 55 13.0 081 0 55 56 9.0 081 0 56 57 14.8 077 0 57 58 20.0 030 0 58 59 20.0 040 0 59 60 20.0 088 -2 60 61 13.4 125 -5 61 62 20.0 066 0 62 63 20.0 072 0 63 64 20.0 066 0 64 65 10.0 072 0 65 66 20.0 055 0 66 67 20.0 042 0 67 68 20.0 011 -3 68 69 20.0 026 1 69 70 20.0 036 2 69 69a 15.0 036 2 ;Estimated leg to mark side passage 69a 69b 16.03 273 0;266.42 0 ;Estimated leg up side passage 70 71 20.0 044 -2 71 72 8.9 071 -1 72 73 14.3 108 -2 73 74 15.3 045 -5 74 75 13.4 047 -8 75 76 11.0 036 5 76 77 3.5 108 -3 77 78 14.3 036 3 78 79 19.0 022 -5 79 80 20.0 030 0 80 81 20.0 017 -2 81 82 20.0 031 0 82 83 17.0 087 0 83 84 20.0 075 25 84 85 10.0 110 -15 85 86 20.0 092 -5 86 87 20.0 123 -2 87 88 20.0 097 2 88 89 20.0 132 5 89 90 9.4 215 0 90 91 20.0 160 -2 91 92 20.0 108 0 92 93 18.0 112 0 93 94 13.0 063 -1 94 95 20.0 162 -2 95 96 8.3 076 0 96 97 14.5 165 15 97 98 20.0 198 -1 98 99 15.8 198 -4 99 100 20.0 159 -2 *FLAGS DUPLICATE 100 101 20.0 115 -3 101 102 9.0 151 -2 102 103 10.5 063 2 103 104 20.0 103 5 104 105 10.8 098 -5 105 106 20.0 121 0 ;106 107 20.0 149 -1 ;107 108 19.3 161 -10 ;108 109 20.0 127.5 -2 ;109 110 20.0 150 0 ;110 111 20.0 152 0 ;111 112 20.0 144 -3; 112 = minor junction with crossover ;112 113 14.0 180 0 ;113 114 14.3 154 0; 114 = major junction with crossover *FLAGS NOT DUPLICATE *end NewUzueka *begin GourInlet *EXPORT 1 13 71 ;surveyors: Footleg, Paul Dold ;date 2008-03-21 *CALIBRATE declination 2.15 ;Surveyed using Hilti laser measurer, Suunto Tandem compass/clino and Auriga on a Palm PDA 1 2 5.27 011 -27 ; 2 3 14.80 066 -4 ; 3 4 10.19 058 0 ; 4 5 3.34 073 6 ; 5 6 18.77 024 1 ; 6 7 5.00 100 -3 ; 7 8 9.22 032 3 ; 8 9 11.00 072 -4 ; 9 10 5.84 030 -1 ; 10 11 21.80 059 2 ; 11 12 23.50 098 0 ; 12 13 12.58 059 8 ; 13 14 21.05 039 0 ; 14 15 17.67 065 26 ; 15 16 17.52 302 5 ; 15 is cairn up on mud slope near back R corner of chamber 15 18 12.08 002 2 ; 16 17 15.35 075 -30 ; 17 is roof lip middle of arch entrance to sump. Knob at left of boulder. 18 19 8.15 063 -5 ; Pitch up is 5m 19 20 4.00 100 17 ; 20 21 8.92 113 43 ; 21 22 4.34 307 -14 ; 22 23 6.46 080 -22 ; 23 24 6.66 106 -12 ; 24 25 7.19 000 -8 ; 25 26 10.93 092 -2 ; 26 27 3.84 124 -4 ; 27 28 11.07 106 13 ; 28 29 3.00 180 3 ; 29 30 7.08 109 4 ; 30 31 9.55 083 3 ; 31 32 4.19 093 1 ; 32 33 7.10 083 -3 ; 33 34 1.73 178 -12 ; 34 35 26.06 092 1 ; 35 36 5.72 094 -3 ; 36 37 3.30 200 -18 ; 37 38 6.98 - -V ; 38 39 6.01 170 20 ; 39 40 4.13 073 36 ; 40 41 5.96 110 13 ; 41 42 5.21 104 2 ; 42 43 8.79 150 2 ; 43 44 5.83 171 16 ; 44 45 6.96 083 2 ; 45 46 6.05 095 4 ; 46 47 4.93 150 10 ; 47 48 4.75 081 49 ; 48 49 5.52 110 -2 ; 49 50 9.83 102 -7 ; 50 51 4.97 120 -3 ; 51 52 7.88 138 9 ; 52 53 2.71 083 28 ; 53 54 1.80 358 40 ; 54 55 3.15 090 -37 ; 55 56 4.26 103 34 ; 56 57 4.30 078 31 ; 57 58 3.19 075 -16 ; 58 59 3.68 018 33 ; 59 60 9.49 111 13 ; 60 61 11.95 084 -32 ; 61 62 10.40 051 -9 ; 62 63 9.67 111 0 ; 63 64 7.50 070 20 ; 64 65 7.97 037 14 ; 65 66 22.76 063 0 ; 66 67 14.18 119 -5 ; 67 68 9.27 073 5 ; 68 69 10.49 125 -3 ; 69 70 22.11 320 42 ; 70 71 1.41 319 -18 ; *data passage station left right up down 1 2.0 2.0 2.0 0.3 2 4.8 1.6 0.4 0.4 3 2.0 4.9 0.3 0.3 4 0.5 1.4 0.3 0.3 5 1.2 3.1 0.2 0.9 6 0.8 3.9 0.9 1.0 7 2.0 0.5 1.4 1.2 8 0.2 6.0 1.4 1.0 9 2.4 0.0 2.0 1.0 10 0.5 2.6 2.8 1.1 11 0.0 3.8 3.3 1.1 12 1.9 0.4 5.1 1.2 13 1.4 2.4 2.2 3.2 14 4.4 9.7 25.3 0.0 15 17.52 2 12.6 5.5 ;DOWN 6 TO BOTTOM OF MUD HEAP 17 1.9 2.6 7.9 1.6 *data passage station left right up down 18 1.5 2.6 2.3 1.2 19 0.3 4.2 1.5 1.6 20 0.0 0.6 5.5 1.8 21 1.2 1.8 1.3 1.8 22 0.0 0.5 0.0 1.0 23 0.2 1.4 1.0 0.9 24 5.6 3.3 2.7 0.7 25 1.6 2.4 1.5 0.6 26 1.4 1.2 0.5 0.4 27 1.0 0.2 0.6 0.3 28 1.3 2.1 1.0 0.4 29 0.2 2.7 0.7 0.7 30 0.2 1.5 2.0 1.0 31 1.3 0.2 3.1 1.1 32 0.9 0.3 1.1 1.3 33 0.2 1.0 3.2 1.0 34 1.4 0.4 1.0 0.7 35 1.4 1.8 2.0 0.8 36 0.7 1.5 2.1 1.0 37 0.0 1.5 1.4 1 38 3.0 2.0 5 0.5 ;Real down is 1.4 but survex renders it wrong 39 1.2 1.0 8.5 0.5 40 0.6 2.0 2.6 1.4 41 1.3 0.4 3.2 1.6 42 0.2 2.0 1.5 1.1 43 1.0 0.9 1.0 0.7 44 1.7 0.2 2.5 0.8 45 1.6 0.0 3.2 1.1 46 1.4 1.0 0.3 1.2 47 1.6 1.7 4.0 1.2 48 1.5 1.7 0.2 0.9 49 0.9 0.5 1.7 3.1 50 3.0 0.6 0.7 0.2 51 0.9 1.0 0.6 1.2 52 1.0 0.0 0.7 0.9 53 0.3 0.2 0.4 0.8 54 1.1 0.4 0.6 0.6 55 0.2 0.7 1.0 0.6 56 0.5 0.2 1.8 0.9 57 0.6 0.4 0.2 0.6 58 1.3 0.2 0.4 0.6 59 1.4 4.9 2.5 1.8 60 3.3 6.1 1.0 0.6 61 4.6 8.3 2.9 2.0 62 0.2 1.4 2.0 1.9 63 2.9 1.7 2.7 1.5 64 1.1 1.0 1.2 0.9 65 0.2 1.1 4.6 1.4 66 1.2 0.8 5.9 1.8 67 1.3 0.2 10.1 0.8 68 0.2 1.2 23.7 1.5 69 4.7 1.7 27.2 1.0 *end GourInlet *begin BeyondThunderdome *EXPORT 1 93 ;2008-08-01 : Footleg, Paul Dold, Mandy Fu, Mike Topsom (Stns 1 - 35) ;2008-08-03 : Footleg, Paul Dold (Stns 35 +) *DATE 2008.08.01 *CALIBRATE declination 2.15 ;Surveyed using Phil Papard's Disto, Footleg's Suunto Tandem compass/clino and Auriga on a Palm PDA 1 2 10.26 254 15 ;1 is lefthand spit of Y hang on wall at top of bolt climb and mud slope 2 3 13.12 264 5 ; 3 4 8.51 303 26 ; 4 5 4.94 300 53 ; 5 6 3.26 208 6 ; 6 7 5.00 289 -7 ; 7 8 13.50 307 -41 ; 8 9 13.13 311 -22 ; 9 10 13.27 217 11 ; 10 11 20.62 319 -16 ; 11 12 5.42 325 14 ; 12 13 6.36 327 3 ; 13 14 12.40 325 -2 ;13 is pointy tip of big chock stone 14 15 13.54 267 -1 ; 15 16 12.93 233 -24 ; 16 17 3.68 028 -43 ; 17 18 4.09 267 14 ; 18 19 2.26 215 9 ; 19 20 7.35 295 3 ; 20 21 8.21 212 -12 ; 21 22 3.50 252 -1 ; 22 23 3.40 268 15 ; 23 24 7.46 269 -17 ; 23 25 4.40 258 55 ;25 is tip of spike by pile of sand. 24 26 9.50 259 6 ; 26 27 4.02 250 2 ; 27 28 1.63 225 49 ; 27 30 10.58 272 0 ; 28 29 3.48 025 86 ;29 tip of spike opposite side pass. On lip of canyon. 30 31 6.68 279 -10 ; 31 32 6.76 327 34 ; 32 33 7.34 247 -14 ; 33 34 2.26 287 -15 ; 34 35 11.22 226 3 ; 35 36 4.93 242 72 ; 36 37 9.67 206 -2 ; 37 38 19.32 236 -3 ; 38 39 6.02 250 -1 ; 39 40 25.02 275 -7 ; 40 41 7.73 273 5 ; 41 42 18.90 272 -4 ; 42 43 7.19 265 3 ; 42 44 4.27 022 -27 ; 44 45 6.88 049 -5 ; 45 46 6.85 075 0 ; 46 47 2.61 332 -2 ; 47 48 6.42 285 -4 ; 48 49 8.71 268 1 ; 49 50 5.76 273 0 ; 50 51 8.08 256 19 ; 51 52 7.80 267 -1 ; 52 53 2.68 008 -50 ; 53 54 8.15 049 -11 ; 54 55 14.08 052 3 ; 55 56 6.70 104 18 ; 56 57 13.30 093 -5 ;56 marked in pencil on knob on wall. 57 58 18.38 097 5 ; 58 59 4.92 120 6 ; 59 60 1.98 098 -15 ; 60 61 8.83 090 0 ; 61 62 10.55 098 -10 ; 62 63 6.31 054 -20 ; 63 64 13.95 091 0 ; 64 35 2.93 108 2 ; 44 89 4.06 263 -27 ; 89 90 3.64 272 -18 ; 90 91 23.71 000 -90 ; 91 92 13.00 257 -6 ; 92 93 20.96 222 -4 ;93 = GourInlet.13 ;Pretty Oxbow 3 102 3.41 147 -46 ; 102 103 8.51 279 -15 ; 103 104 8.11 250 -6 ; 104 105 13.18 271 -5 ; 105 106 7.25 308 -7 ; 106 107 9.14 025 10 ; 107 108 2.36 075 28 ; 108 8 4.70 075 41 ; ;Barter Town 29 65 3.35 172 12 ; 65 66 19.26 221 0 ; 66 67 7.52 137 0 ; 67 68 3.27 220 5 ; 68 69 4.44 179 11 ; 69 70 2.96 223 35 ; 70 71 1.46 184 29 ; 71 72 4.16 210 40 ; 72 73 9.20 154 44 ; 73 74 5.66 277 -30 ; 74 75 4.29 235 26 ; 75 76 6.23 096 14 ; 76 77 8.84 117 -1 ; 77 78 5.12 098 -45 ; 78 79 3.84 334 -42 ; 79 80 9.73 037 -40 ; 80 81 11.70 329 -37 ; 81 82 6.00 076 -46 ; 82 83 2.26 036 3 ; 83 84 4.17 311 28 ; 84 85 6.34 281 1 ; 85 86 2.73 337 -3 ; 86 87 3.78 039 -4 ; 87 88 1.60 353 -17 ;88 is small horizontal spike at end 10cm off sand floor. *data passage station left right up down 1 10.3 0.2 7.9 1.0 2 6.6 3.7 9.4 0.6 3 0.2 2.9 7.7 1.7 4 0.9 0.2 1.7 1.2 5 1.3 0.4 0.2 1.0 6 4.6 3.9 5.6 1.1 7 3.0 2.1 1.9 1.0 8 2.5 0.2 3.0 1.9 9 2.9 1.4 4.4 1.5 10 0.5 8.0 0.9 2.4 11 2.4 2.0 3.9 2.9 12 3.3 1.8 3.0 1.0 13 1.9 1.6 1.9 5.7 14 2.0 3.7 4.6 4.5 15 2.4 0.5 4.0 5.6 16 0.0 2.1 6.6 2.5 17 2.4 0.2 9.3 0.5 18 0.8 0.2 8.0 1.6 19 0.5 0.8 5.2 0.8 20 0.7 0.2 5.1 0.6 21 0.2 1.2 8.0 0.8 22 1.0 0.5 6.6 0.7 23 1.5 0.0 6.8 1.7 24 0.5 1.0 1.4 0.3 26 1.0 0.2 2.3 0.7 27 1.3 0.4 6.0 0.8 30 1.6 0.4 1.5 0.9 31 0.5 2.5 7.1 0.3 32 1.4 0.2 0.6 1.4 33 0.4 0.9 3.7 1.2 34 1.1 0.3 2.7 1.4 35 0.2 1.5 5.0 1.3 36 2.1 1.6 0.2 1.4 37 0.9 1.9 0.2 0.7 38 0.5 1.5 0.5 1.0 39 0.3 1.4 0.5 0.4 40 0.4 1.6 0.6 1.5 41 0.5 0.8 1.7 1.6 42 1.0 1.0 1.8 0.4 43 1.5 0.5 2.1 0.4 *data passage station left right up down 42 1.1 1.1 1.7 0.6 44 1.5 1.7 1.1 1.3 45 0.2 0.7 1.7 1.8 46 0.5 1.9 2.0 1.4 47 1.5 0.4 2.4 2.2 48 0.7 0.2 2.7 1.3 49 0.2 1.2 1.1 1.6 50 0.4 0.9 0.9 0.8 51 1.5 0.6 0.4 0.6 52 1.2 1.6 0.5 1.8 53 0.2 0.6 0.2 0.8 54 0.4 1.1 3.3 1.1 55 0.2 1.8 2.1 1.9 56 1.1 0.3 0.6 1.0 57 0.4 0.6 2.3 1.6 58 0.2 1.0 1.0 4.2 59 0.6 0.6 0.4 2.2 60 2.1 0.8 0.3 1.7 61 0.3 0.3 1.3 1.1 62 1.4 0.2 3.1 1.2 63 0.7 1.0 4.0 1.2 64 0.4 0.8 4.7 1.7 35 1.5 0.2 5.0 1.3 *data passage station left right up down 44 1.9 1.4 1.0 1.3 89 0.2 1.1 1.0 1.5 90 0.9 1.7 2.3 23.7 *data passage station left right up down 3 3.3 0.2 8.5 1.7 102 1.0 2.1 1.5 1.1 103 2.9 3.1 0.7 1.7 104 0.2 1.1 1.1 1.6 105 0.2 1.6 1.3 1.6 106 0.5 1.7 1.1 1.0 107 1.5 1.7 1.0 0.4 108 0.7 1.7 1.1 0.7 8 0.2 2.5 3.0 1.9 *data passage station left right up down 29 2.0 1.5 1.2 0.0 65 0.6 1.5 0.4 0.7 66 2.3 1.1 0.2 0.2 67 0.5 0.8 0.7 0.6 68 1.3 1.0 6.0 1.2 69 0.0 1.6 4.2 1.3 70 0.3 0.2 0.8 1.1 71 0.2 0.3 0.7 0.4 72 2.9 5.2 6.4 1.8 73 1.1 2.2 3.1 1.8 74 0.6 0.2 0.7 1.1 75 4.0 1.8 11.4 1.0 76 3.7 2.1 3.1 1.1 77 3.6 5.3 1.1 1.2 78 0.6 3.6 0.2 0.5 79 6.1 1.0 1.0 1.1 80 7.1 7.3 5.6 0.8 81 0.2 3.2 3.1 1.4 82 1.5 1.5 5.8 0.7 83 0.6 0.3 0.6 0.7 84 1.8 0.8 0.7 1.8 85 1.1 1.0 0.4 0.9 86 1.1 1.2 0.5 0.8 87 0.6 0.5 0.7 0.6 88 0.2 0.3 0.5 0.1 *end BeyondThunderdome *begin TomorrowMorrowLand *EXPORT 1 45 ;2008-08-05 : Footleg, Paul Dold *CALIBRATE declination 2.15 ;Surveyed using Hilti Laser Measure, Footleg's Suunto Tandem compass/clino and Auriga on a Palm PDA 1 2 10.46 125 11 ; 2 3 3.81 108 51 ; 3 4 8.48 042 8 ; 4 5 8.90 060 7 ; 5 6 3.20 041 -1 ; 6 7 9.80 010 1 ; 7 8 6.16 046 0 ; 8 9 5.00 084 1 ; 9 10 6.18 052 3 ; 10 11 6.26 038 3 ; 11 12 9.15 010 12 ; 12 13 8.32 098 1 ; 13 14 6.12 110 -14 ; 14 15 8.74 038 -1 ; 15 16 7.11 095 11 ; 16 17 21.71 149 -2 ; 17 18 4.74 094 -9 ; 18 19 7.96 056 -4 ; 19 20 9.38 064 0 ; 20 21 12.86 048 2 ; 21 22 13.63 107 9 ; 22 23 8.31 058 -15 ; 23 24 9.19 035 6 ; 24 25 11.17 100 2 ; 25 26 8.25 112 -3 ; 26 27 4.63 030 -10 ; 27 28 8.39 340 -1 ;Changed bearing from 140 as clearly wrong looking at sketches 28 29 14.99 043 8 ; 29 30 15.61 033 -9 ; 30 31 9.54 021 4 ; 31 32 25.10 040 5 ; 32 33 21.95 036 -6 ; 33 34 6.96 055 6 ; 34 35 10.11 019 6 ; 35 36 17.25 029 -5 ; 36 37 13.00 095 -1 ; 37 38 6.94 033 32 ; 38 39 7.74 050 -5 ; 39 40 6.57 078 -35 ; 40 41 12.41 091 4 ; 41 42 12.43 034 0 ; 42 43 11.16 045 1 ; 43 44 6.83 075 -10 ; 44 45 7.99 023 -5 ; ;45 46 5.04 064 -1 ;Suspect clino readings from this point onwards. Need to recheck on next visit ;46 47 8.82 105 -2 ; ;47 48 5.56 062 -3 ; ;48 49 14.71 016 0 ; ;49 50 5.58 289 -5 ; ;50 51 5.92 024 1 ; ;51 52 8.95 061 -4 ; ;52 53 8.79 116 15 ; ;53 54 7.13 079 -17 ; ;54 55 5.45 047 -1 ; ;55 56 9.95 069 -6 ; ;56 57 10.88 071 -1 ; ;57 58 8.73 035 0 ; ;58 59 7.48 070 -1 ; ;59 60 5.81 106 -4 ; *data passage station left right up down 1 0.2 10.1 1.0 1.2 2 0.2 5.4 12.3 17.8 3 1.2 1.4 2.6 1.0 4 0.2 0.6 7.7 1.3 5 0.7 0.2 5.3 1.5 6 0.7 0.2 2.3 1.3 7 0.2 0.5 6.7 1.4 8 1.0 0.3 4.0 1.4 9 0.7 0.5 1.8 1.2 10 0.8 0.2 2.5 1.5 11 0.7 0.2 2.9 1.5 12 0.2 1.5 2.0 1.7 13 0.6 1.2 1.1 3.4 14 0.3 0.8 3.3 1.9 15 0.2 1.8 2.0 1.6 16 0.2 1.2 1.6 3.3 17 1.3 0.2 3.2 2.2 18 0.8 0.8 9.4 1.7 19 1.0 0.9 10.9 1.4 20 0.9 0.2 3.8 1.6 21 1.1 1.2 3.0 1.8 22 1.4 0.2 14.1 3.6 23 1.0 0.2 4.4 1.7 24 0.5 1.3 1.1 2.7 25 0.2 1.3 1.5 3.2 26 1.5 0.3 8.4 2.7 27 1.0 0.6 1.3 2.0 28 0.5 1.7 1.0 2.0 29 1.2 0.2 2.3 4.2 30 1.7 0.4 4.9 1.5 31 1.4 1.1 2.8 2.6 32 1.0 0.3 11.4 3.6 33 0.2 1.1 11.6 2.1 34 1.7 0.2 6.8 2.9 35 0.8 0.7 2.0 4.0 36 0.2 1.4 1.4 2.1 37 1.5 0.2 13.2 2.8 38 0.2 2.3 13.7 4.3 39 1.1 0.7 10.0 5.7 40 0.2 1.4 13.5 1.7 41 2.3 1.9 0.3 1.2 42 1.4 0.8 6.4 2.5 43 0.2 1.1 3.1 2.6 44 1.3 0.2 10.5 1.6 45 0.7 1.0 1.5 1.2 ;46 0.0 1.4 9.6 1.3 ;47 1.4 0.2 5.1 1.4 ;48 1.4 0.2 6.7 1.2 ;49 2.2 0.2 5.2 1.5 ;50 0.9 2.2 1.6 1.0 ;51 1.7 6.5 1.3 1.4 ;52 0.9 1.4 2.1 1.3 ;53 3.6 0.4 11.4 2.9 ;54 0.9 0.2 13.0 1.6 ;55 1.1 0.8 4.6 1.6 ;56 0.7 0.4 9.5 1.1 ;57 1.0 0.5 10.6 1.2 ;58 0.2 1.1 11.5 1.5 ;59 0.4 1.0 13.4 1.4 *end TomorrowMorrowLand *BEGIN Uzu-Gour090410153 *EXPORT 0 58 ;Date 2009/04/10 *CALIBRATE declination 2.08 0 1 4.01 55.12 2.88 1 2 6.67 109.20 -1.37 2 3 7.57 82.82 -1.46 3 4 15.71 17.50 1.20 4 4a 0.46 66.80 13.93 4 5 2.73 244.54 2.61 5 6 4.22 318.30 0.41 6 7 4.92 29.58 -2.12 7 8 9.81 58.72 0.94 8 9 8.60 128.70 -6.68 9 10 5.68 82.92 5.68 10 11 6.56 44.65 4.54 11 12 9.03 72.19 1.22 12 13 3.05 46.22 1.28 13 14 6.89 86.27 -0.51 14 15 6.61 61.48 0.09 15 16 5.13 18.53 -1.21 16 17 6.85 62.63 2.01 17 18 5.38 102.18 1.22 18 19 2.60 105.49 -1.05 19 20 6.94 178.17 -2.10 20 21 4.01 196.07 3.14 21 22 4.15 139.28 -0.15 22 23 4.71 205.76 -0.38 23 24 6.52 198.45 5.52 24 25 8.69 224.01 -4.26 25 26 5.69 246.24 2.28 26 27 2.46 153.10 -9.56 27 28 16.85 204.24 -2.08 28 29 10.28 139.20 5.65 29 30 5.84 105.83 5.86 30 31 10.74 79.31 -0.95 31 32 5.99 21.29 2.80 32 33 8.26 124.62 -0.97 33 34 11.46 86.24 0.14 34 35 10.25 104.61 -0.15 35 36 6.54 36.46 2.80 36 37 7.85 352.56 0.36 37 38 12.49 59.58 -0.29 38 39 6.47 144.30 -0.66 39 40 12.19 176.62 2.78 40 41 8.03 217.50 -3.13 41 42 5.06 197.69 0.74 42 43 5.14 164.36 -5.75 43 44 4.12 90.67 -11.48 44 45 12.39 173.99 6.86 45 46 7.38 104.91 0.82 46 47 4.77 61.95 -3.61 47 48 5.77 23.58 0.32 48 49 10.87 6.04 2.73 49 50 1.56 17.64 -9.69 50 51 11.64 51.10 1.00 51 52 6.84 26.57 -5.79 52 53 6.43 119.09 2.67 53 54 16.81 345.84 -2.23 54 55 11.67 100.37 4.88 55 56 1.66 96.25 -19.79 56 57 5.39 160.71 -4.01 57 58 4.72 73.23 10.43 58 59 5.12 139.83 -5.11 59 60 8.82 75.02 2.73 60 61 1.71 17.48 9.12 61 62 7.73 51.94 -4.40 62 63 2.97 348.14 3.86 63 64 10.87 23.32 -1.96 64 65 4.53 55.63 4.73 65 66 3.19 344.40 -3.15 66 67 2.48 284.81 17.86 67 68 5.47 5.26 0.23 68 69 3.21 73.52 0.24 69 70 6.88 27.74 1.39 70 71 5.88 104.61 4.12 71 72 7.57 99.29 -5.44 72 73 5.64 88.59 15.15 73 74 2.17 131.37 8.68 74 75 4.57 27.39 14.39 75 76 8.47 60.80 19.30 76 77 5.73 104.58 0.98 77 78 5.19 84.19 24.31 78 79 1.27 102.94 2.43 *data passage station left right up down 0 0.66 1.17 1.62 1.32 1 0.67 1.24 6.48 1.27 2 0.71 0.97 2.48 1.16 3 1.07 0.7 5.83 0.88 4 1.95 0.0 5.65 1.04 5 0.0 2.1 5.42 1.23 6 0.0 5.31 0.72 1.8 7 1.72 4.86 1.49 0.88 8 0.6 1.4 1.87 1.17 9 1.22 1.01 1.19 0.26 10 1.2 0.95 1.56 0.76 11 1.06 1.22 3.26 1.18 12 1.22 0.39 9.07 1.17 13 0.96 1.08 9.41 1.51 14 1.06 0.0 7.65 1.29 15 1.54 0.24 6.36 1.07 16 0.55 1.3 1.4 1.1 17 0.0 1.38 4.99 1.18 18 1.27 0.0 11.11 1.38 19 0.0 1.43 5.18 1.11 20 0.41 0.7 2.87 1.04 21 1.43 0.64 5.24 1.07 22 0.35 3.67 0.96 1.17 23 0.67 0.9 2.03 1.14 24 0.67 0.94 4.72 1.31 25 1.78 1.11 1.83 1.05 26 2.88 0.0 1.74 1.18 27 0.0 1.17 2.03 0.82 28 1.84 0.87 1.1 0.0 29 1.66 0.4 8.09 0.83 30 1.92 0.44 3.25 1.28 31 2.96 0.39 1.3 1.17 32 0.0 1.9 1.71 1.27 33 2.26 0.77 3.37 1.26 34 0.52 0.89 13.04 1.37 35 2.39 0.0 1.56 1.12 36 1.08 0.26 4.78 1.61 37 0.0 1.97 3.86 1.5 38 0.0 3.71 1.0 1.14 39 0.0 1.78 5.46 1.4 40 0.0 0.94 8.53 1.86 41 0.76 0.39 10.11 1.48 42 0.82 0.91 9.38 1.47 43 1.24 1.28 1.91 0.88 44 2.41 1.25 1.18 0.0 45 1.42 1.0 3.52 1.43 46 0.98 0.0 3.91 1.19 47 0.85 0.51 5.12 0.9 48 0.96 0.91 8.95 0.87 49 3.53 1.49 4.18 0.25 50 3.09 1.81 2.82 0.87 51 0.88 0.0 2.62 1.34 52 1.1 2.18 1.06 0.69 53 2.46 0.35 1.32 0.75 54 0.0 9.48 1.34 0.22 55 0.68 0.0 5.39 1.0 56 0.4 1.05 2.34 0.56 57 1.81 0.53 2.27 0.2 58 0.33 1.18 4.01 0.94 59 1.14 1.16 1.39 0.48 60 0.97 0.25 7.57 0.88 61 0.0 0.5 6.59 1.17 62 1.6 0.22 4.84 0.54 63 0.0 0.94 5.02 0.77 64 0.0 1.17 9.31 0.43 65 1.4 0.0 8.35 0.56 66 0.92 0.26 10.3 0.51 67 0.0 1.19 9.55 1.19 68 0.0 0.91 10.36 1.3 69 0.85 0.0 4.45 1.22 70 2.32 1.41 2.11 1.17 71 0.6 0.99 3.45 1.24 72 1.51 1.1 11.09 0.19 73 0.0 3.24 5.16 1.35 74 2.16 4.56 12.11 1.55 75 0.0 0.82 8.36 1.1 76 0.41 0.92 1.18 1.28 77 0.49 2.35 2.11 0.34 78 0.0 1.85 0.42 0.45 *END Uzu-Gour090410153 *BEGIN GourAven2010 *EXPORT 0 ;Series 154 in PocketTopo file ;Date 2010/08/09 *CALIBRATE declination 1.92 *DATE 2010.08.09 0 1 2.24 139.95 28.32 1 2 5.91 70.86 27.68 *FLAGS SPLAY 2 2a 1.11 175.45 -0.10 2 2b 1.17 8.87 6.87 *FLAGS NOT SPLAY 2 3 5.08 327.47 56.76 3 4 4.92 69.83 23.86 *FLAGS SPLAY 4 4a 0.95 165.48 0.82 4 4b 3.80 331.85 24.88 4 4c 5.74 289.73 15.19 4 4d 2.80 233.18 -16.44 4 4e 7.76 33.32 29.66 *FLAGS NOT SPLAY 4 5 2.00 337.58 33.09 5 6 11.33 256.84 -5.02 6 7 4.83 315.41 34.36 *FLAGS SPLAY 7 7a 4.71 21.66 32.61 7 7b 3.12 254.93 11.55 7 7c 4.05 103.53 3.40 7 7d 4.14 69.26 18.44 7 7e 7.31 221.39 2.77 7 7f 7.08 196.12 -0.28 *FLAGS NOT SPLAY 7 8 10.95 55.71 35.32 8 9 9.78 65.84 3.27 *FLAGS SPLAY 9 9a 3.98 233.45 -1.12 *FLAGS NOT SPLAY 9 10 4.02 65.03 22.07 10 11 2.66 124.77 6.23 *FLAGS SPLAY 11 11a 6.44 244.26 -33.76 *FLAGS NOT SPLAY 11 12 4.68 28.23 41.16 *FLAGS SPLAY 12 12a 12.70 20.35 69.18 12 12b 2.35 256.10 14.98 12 12c 2.05 326.35 6.05 12 12d 3.45 44.58 36.15 12 12e 7.31 45.38 40.15 12 12f 7.44 59.56 40.31 12 12g 5.50 20.21 43.16 12 12h 2.89 291.62 14.24 *FLAGS NOT SPLAY 12 13 4.74 257.83 20.70 13 14 3.65 238.14 -5.06 14 15 1.18 304.15 22.54 15 16 3.01 254.32 20.56 16 17 2.80 262.28 32.10 17 18 2.51 130.46 27.56 *FLAGS SPLAY 18 18a 1.91 43.25 -1.46 *FLAGS NOT SPLAY 18 19 1.60 82.83 -6.44 19 20 2.62 206.13 -3.57 20 21 2.74 273.17 46.82 *FLAGS SPLAY 21 21a 1.45 67.41 10.21 *FLAGS NOT SPLAY 21 22 5.18 26.78 41.32 *FLAGS SPLAY 22 22a 1.73 308.53 4.45 22 22b 5.75 61.72 37.02 22 22c 8.28 215.65 -4.87 22 22d 8.34 236.94 -5.86 22 22e 6.38 77.99 35.97 *FLAGS NOT SPLAY 22 23 6.09 69.43 35.08 23 24 2.80 330.39 -45.49 24 25 3.96 24.64 -39.81 25 26 2.56 117.72 -45.71 26 27 2.20 85.94 -7.90 27 28 1.36 72.33 62.56 28 29 1.39 121.96 -18.84 29 30 0.86 110.32 6.35 30 31 8.52 168.68 -79.71 22 22f 16.08 233.79 -2.48 22 22g 11.689 - +V *data passage station left right up down 2 5.008 5.951 1.035 1.094 3 1.334 1.825 1.039 3.638 4 1 4 2.96 1.755 5 1.67 1.996 1.854 0.754 6 1.214 3.669 0.922 1.131 7 2.04 3.282 5.227 1.337 8 0.0 2.211 3.299 1.359 9 1.711 0.795 1.702 0.611 10 0.323 0.25 0.532 0.365 11 1.635 0.422 0.981 0.261 12 0.488 2.856 6.639 3.007 13 0.326 0.0 0.613 0.841 14 0.398 0.451 8.219 0.277 15 0.293 0.0 4.625 0.801 16 0.306 0.354 0.759 0.942 17 0.82 0.0 1.871 1.015 18 1.108 0.508 1.806 0.479 19 0.0 0.645 1.366 0.481 20 0.0 0.709 3.671 0.472 21 3.231 0.766 9.983 0.0 22 5.264 2.167 5 0.845 23 0.895 0.593 1.967 1.371 24 0.0 0.855 0.838 0.808 25 0.951 0.666 0.0 0.693 26 1.178 0.0 1.029 0.405 27 0.976 0.269 0.0 0.384 28 0.32 1.453 0.0 0.591 29 1.599 0.898 1.871 6.929 *data passage station left right up down 22 2.5 1.75 11.689 0.845 22f 2.5 .5 11.689 10 *END GourAven2010 *begin LasPlayas *EXPORT Resurvey2011.1 Resurvey2011.8 *BEGIN Resurvey2011 *EXPORT 1 8 ;Surveyed from large cairn in middle of Diversion Chamber, heading upstream. ;Includes previously unsurveyed inlet to avens ;PocketTopo series 160 ;Surveyors: Sketching (PDA) - Footleg; DistoX - Slim (with Dianne Arthurs and Paul Dold) ;Instruments: West Sussex Caving Club DistoX (calibrated in cave on previous ;trip and checked against Footleg's Suunto Tandem at start of this trip). ;PocketTopo on Footleg's Dell Axim 51v PDA *DATE 2011.08.05 *CALIBRATE declination 1.75 ;CHECK THIS! 1 2 17.16 36.57 0.88 *FLAGS SPLAY 2 2a 2.59 324.74 86.92 2 2b 0.91 217.94 -86.69 2 2c 8.83 303.26 12.88 2 2d 1.83 125.25 2.05 2 2e 5.07 122.58 -31.28 *FLAGS NOT SPLAY 2 3 21.58 33.16 0.58 3 4 11.09 53.13 -0.89 4 5 9.35 346.19 0.05 5 6 4.77 322.49 -16.11 *FLAGS SPLAY 6 6a 4.35 308.01 86.98 6 6b 2.67 307.52 1.82 6 6c 7.79 290.15 -28.37 ;6 6d 19.29 139.61 16.84 *FLAGS NOT SPLAY 6 7 21.34 39.33 1.49 7 8 13.13 20.26 8.69 ;Stn 8 is marked with a note on a boulder 8 9 10.42 348.71 -23.99 9 10 2.56 298.36 20.94 10 11 11.61 235.25 1.59 *FLAGS SPLAY 11 11a 0.65 352.01 75.61 11 11b 2.23 26.77 -79.76 11 11c 0.51 300.78 2.21 11 11d 0.55 119.70 16.12 11 11e 2.07 34.07 -0.63 *FLAGS NOT SPLAY 11 12 14.89 14.54 4.04 *FLAGS SPLAY 12 12a 2.07 133.80 73.58 12 12b 0.72 108.95 -73.27 12 12c 0.79 137.89 3.40 12 12d 1.58 223.02 1.74 *FLAGS NOT SPLAY 12 13 5.85 64.09 11.07 12 14 2.71 243.50 -3.39 14 15 5.16 244.23 -5.39 *FLAGS SPLAY 15 15a 1.83 99.73 66.98 15 15b 2.42 61.36 -77.93 15 15c 1.51 50.56 -3.92 15 15d 0.58 184.00 11.56 *FLAGS NOT SPLAY 15 16 3.35 18.15 -8.58 16 17 2.26 50.24 18.70 *FLAGS SPLAY 17 17a 6.18 22.63 75.76 17 17b 2.21 169.97 -86.97 17 17c 0.22 163.98 6.65 17 17d 1.10 259.09 -1.63 17 17e 1.34 333.80 1.60 *FLAGS NOT SPLAY 17 18 1.24 268.37 -38.79 18 19 3.33 259.72 41.22 19 20 7.22 252.89 11.09 20 21 3.45 272.26 58.43 21 22 3.77 263.94 19.53 22 23 5.97 67.69 32.54 23 24 2.83 1.25 31.89 24 25 3.31 290.91 -5.83 *FLAGS SPLAY 25 25a 8.65 64.34 87.45 25 25b 2.11 191.88 3.81 25 25c 1.66 266.24 8.28 25 25d 1.70 339.04 7.43 25 25e 3.49 44.64 7.77 25 25f 3.36 80.46 9.43 25 25g 2.53 106.89 9.78 *FLAGS NOT SPLAY 22 26 2.28 240.45 -4.79 26 27 4.18 272.76 -12.28 27 28 4.82 238.58 -1.79 *FLAGS SPLAY 28 28a 9.62 8.65 78.87 28 28b 0.88 16.19 -82.32 28 28c 0.31 139.61 17.54 28 28d 1.84 352.74 13.62 28 28e 4.37 323.55 22.47 28 28f 3.93 272.87 17.55 *FLAGS NOT SPLAY 22 29 4.09 172.11 -75.25 29 30 2.65 264.67 -12.93 30 31 2.68 280.10 17.92 *data passage station left right up down 1 9.454 2.031 2.533 0.591 2 8.832 5.071 2.591 0.909 3 5.99 2.323 6.825 1.566 4 9.232 0.0 6.657 0.856 5 6.45 6.196 3.789 0.0 6 2.668 8.5 4.347 0.0 7 4.974 4.6 5.226 0.794 8 6.094 4.989 0.0 2.099 9 1.935 0.0 1.787 0.0 10 0.906 0.0 2.623 0.48 11 0.514 0.55 0.65 2.234 12 0.8 0.55 2.072 0.724 *data passage station left right up down 13 0.289 0.32 0.938 0.266 12 0.794 0.0 2.072 0.724 14 0.0 0.31 0.727 0.632 15 0.0 1.51 1.831 2.419 16 0.525 0.299 0.772 1.997 17 0.219 1.342 6.176 2.206 18 0.0 1.249 1.049 1.542 19 0.454 0.0 0.324 1.821 20 0.0 0.464 8.016 1.664 21 1.037 0.0 5.426 4.262 22 1.917 1.181 11.095 4.11 26 0.0 0.594 9.551 1.836 27 1.007 0.47 4.179 0.79 28 0.308 4.372 9.623 0.875 *data passage station left right up down 22 1.181 1.917 11.095 4.11 23 0.959 0.0 2.476 1.035 24 0.754 0.489 1.364 1.063 25 2.108 3.494 8.653 0.0 *data passage station left right up down 22 1.917 1.181 11.095 4.11 29 0.0 0.423 0.485 1.472 30 0.0 0.292 1.163 0.685 31 0.424 0.0 0.451 1.273 *end Resurvey2011 *end LasPlayas *begin SloppyInlet *EXPORT Pt1_2010.1 Pt2_2011.4 ;Previously unexplored inlet off Diversion Chamber, starts as a ;hands and knees crawl in a tube half full of water. ;Surveyed from large cairn in middle of Diversion Chamber *equate Pt1_2010.12 Pt2_2011.0 *begin Pt1_2010 *EXPORT 1 12 ;PocketTopo series 158 ;Surveyors: Sketching (PDA) - Footleg; DistoX - Paul Dold ;Instruments: West Sussex Caving Club DistoX (calibrated in cave on previous ;trip and checked against Footleg's Suunto Tandem at start of this trip). ;PocketTopo on Footleg's Dell Axim 51v PDA *DATE 2010.08.13 *CALIBRATE declination 1.92 *FLAGS DUPLICATE 1 2 15.91 51.99 -13.42 *FLAGS NOT DUPLICATE 2 3 4.87 78.08 -9.61 *FLAGS SPLAY 3 3a 2.91 288.84 7.49 *FLAGS NOT SPLAY 3 4 6.53 48.21 0.84 4 5 6.06 80.62 -0.33 5 6 9.00 46.55 0.21 *FLAGS SPLAY 6 6a 1.90 148.27 -2.41 6 6b 2.50 236.20 -1.32 *FLAGS NOT SPLAY 6 7 2.02 91.10 40.33 7 8 5.01 53.19 28.20 8 9 3.63 78.61 30.48 *FLAGS SPLAY 9 9a 2.98 284.69 -63.98 9 9b 2.92 312.26 -68.67 *FLAGS NOT SPLAY 9 10 2.83 38.67 49.77 10 11 4.56 46.79 15.28 *FLAGS SPLAY 11 11a 1.90 16.28 2.96 *FLAGS NOT SPLAY 11 12 3.35 227.63 50.31 12 12a 8.24 213.14 71.05 *FLAGS SPLAY 12 12b 4.28 349.87 -86.59 12 12c 1.77 53.79 7.68 12 12d 3.13 223.58 9.11 12 12e 1.20 345.12 20.17 12 12f 2.31 272.47 10.51 *FLAGS NOT SPLAY *data passage station left right up down 1 10.495 1.903 2.546 0.613 2 0.795 1.194 0.555 0.423 3 0.925 0.0 0.273 0.258 4 0.213 0.951 0.345 0.371 5 1.188 0.0 0.856 0.228 6 0.0 3.147 1.819 0.259 7 0.466 0.276 0.962 0.413 8 3.134 0.354 1.61 1.264 9 0.881 1.921 7.014 1.699 10 0.647 0.303 0.807 0.928 11 2.271 1.071 2.131 1.42 12 1.341 1.622 9.859 1.723 12a .4 .4 3 0 *end Pt1_2010 *BEGIN Pt2_2011 *EXPORT 0 4 ;PocketTopo series 161 ;Surveyors: Sketching (PDA) - Dianne Arthurs; DistoX - Paul Dold/Slim? ;Instruments: West Sussex Caving Club DistoX? (calibrated in cave on previous ;trip and checked ??? against Footleg's Suunto Tandem at start of this trip). ;PocketTopo on PDA *DATE 2011.08.10 *CALIBRATE declination 1.75 ;CHECK THIS! *FLAGS SPLAY 0 0a 8.58 203.24 85.39 0 0b 1.79 169.15 -88.07 0 0c 1.29 125.73 0.46 0 0d 2.53 190.96 4.20 0 0e 1.61 306.94 3.61 0 0f 2.31 237.87 9.54 0 0g 2.83 253.54 9.73 0 0h 2.16 277.70 11.01 0 0i 1.31 43.80 6.31 *FLAGS NOT SPLAY 0 1 8.84 224.95 74.29 1 2 1.29 177.76 16.14 2 3 9.45 62.80 8.45 *FLAGS SPLAY 3 3a 4.88 114.75 84.07 3 3b 1.07 299.88 -83.79 3 3c 0.76 207.08 2.14 3 3d 1.45 243.11 1.63 3 3e 2.05 261.73 3.02 *FLAGS NOT SPLAY 3 4 3.09 174.44 77.16 4 5 3.04 80.70 -0.77 5 6 7.44 29.62 5.20 6 7 5.85 35.05 1.09 *FLAGS SPLAY 7 7a 8.62 351.28 81.03 7 7b 0.55 153.97 -74.30 7 7c 0.58 282.01 8.71 7 7d 3.17 349.34 3.84 7 7e 3.04 20.21 3.70 *FLAGS NOT SPLAY 7 8 9.45 7.85 51.31 8 9 2.60 65.73 -6.30 9 10 4.48 6.77 7.25 10 11 3.86 56.51 1.91 *FLAGS SPLAY 11 11a 4.24 25.54 78.35 11 11b 0.56 60.57 -78.89 11 11c 0.67 323.14 -8.75 11 11d 2.62 20.06 7.07 *FLAGS NOT SPLAY 11 12 7.66 28.32 10.32 12 13 1.09 289.21 11.36 13 14 3.87 230.95 3.41 14 15 4.60 249.81 2.49 15 16 4.46 260.87 6.91 16 17 7.41 236.86 0.94 17 18 1.79 282.80 9.24 18 18a 7.5 240.76 9.56 ;Originally on 14.75m leg. 18a 19 7.25 240.76 9.56 ;Split to give better 3D model *FLAGS SPLAY 19 19a 48.31 69.00 85.56 19 19b 1.91 72.56 -82.37 19 19c 1.25 157.25 -8.40 19 19d 7.11 72.91 15.16 19 19e 0.59 2.64 1.55 19 19f 4.57 16.43 28.14 19 19g 7.14 49.84 15.92 *FLAGS NOT SPLAY *data passage station left right up down 0 1.288 1.608 8.58 1.79 1 0.773 0.0 1.853 0.675 2 0.722 0.0 2.252 0.816 3 0.0 2.051 4.881 1.066 4 0.794 0.0 4.206 1.247 5 0.488 0.0 4.398 0.974 6 0.0 0.767 4.969 0.727 7 0.576 3.042 8.62 0.551 8 0.0 0.686 4.513 1.882 9 0.619 0.0 4.364 1.078 10 0.0 0.671 4.298 0.741 11 0.67 0.0 4.241 0.558 12 0.47 0.0 3.688 0.816 13 0.634 0.0 3.367 0.971 14 0.0 0.702 3.415 0.941 15 0.0 0.755 3.435 0.844 16 0.605 0.0 2.276 0.939 17 0.0 1.145 7.298 0.815 18 1.401 0.0 6.314 1.079 18a 1.3 0.25 8 1 19f 4.2 0 46 4 19 1.246 0.593 8 1.906 *end Pt2_2011 *end SloppyInlet *BEGIN HellOfADiversion *EXPORT 1 58 ;PocketTopo series 165 ;Surveyors: Sketching (PDA) - Footleg; DistoX - Paul Dold, Lisa Wootten ;Instruments: West Sussex Caving Club DistoX (calibration checked against ;Footleg's Suunto Tandem at start of this trip). ;PocketTopo on Footleg's Dell Axim 51v PDA *DATE 2012.04.10 *CALIBRATE declination 1.67 1 2 3.48 281.26 27.52 2 3 2.13 191.02 1.42 3 4 7.43 222.22 -1.21 4 5 2.23 224.28 -4.17 5 6 3.41 205.94 2.50 6 7 3.12 212.10 -3.17 7 8 3.01 223.50 -0.83 8 9 1.53 227.01 0.71 9 10 4.13 230.74 -1.52 10 11 3.15 233.34 3.49 11 12 7.29 213.25 -3.92 12 13 6.48 212.26 -46.98 13 14 2.54 235.48 -15.60 14 15 1.92 202.22 -38.76 15 16 3.08 81.63 -16.60 16 17 2.89 92.67 -62.02 17 18 4.26 53.58 -27.46 18 19 4.32 46.44 -3.26 19 20 1.58 52.71 -1.32 *FLAGS SPLAY 20 20a 0.94 312.95 2.07 *FLAGS NOT SPLAY 20 21 2.13 80.12 -0.95 21 22 1.40 48.91 -4.57 22 23 3.09 6.26 -4.89 23 24 3.19 42.15 4.79 24 25 3.04 29.71 -4.19 25 26 5.16 27.70 -2.06 26 27 0.89 133.24 21.14 27 28 3.49 84.55 -0.49 28 29 4.49 57.41 0.19 29 30 4.20 52.71 -1.95 30 31 3.19 70.91 1.33 31 32 1.95 41.99 -0.84 32 33 1.18 108.78 -27.67 33 34 2.03 41.06 -1.30 34 35 4.68 61.76 1.03 35 36 3.57 48.05 1.36 36 37 2.13 86.68 -1.42 37 38 2.37 49.91 -8.73 38 39 3.65 63.15 4.37 39 40 2.65 25.59 -2.53 40 41 7.85 65.58 1.85 41 42 3.98 215.85 -4.71 42 43 2.22 233.70 0.55 43 44 4.04 203.86 -0.25 44 45 5.66 233.77 0.58 45 46 2.15 186.79 -5.67 46 47 2.69 210.08 -0.93 47 48 1.42 230.57 -1.37 48 49 2.10 240.59 0.28 49 50 3.47 237.36 -2.97 50 51 2.90 256.53 4.59 51 52 3.17 240.12 -3.07 52 53 2.60 232.18 -0.80 53 54 4.54 221.12 -21.78 54 55 1.20 181.22 -8.12 55 56 1.94 154.16 -70.71 56 57 5.60 228.25 -6.94 57 58 6.32 217.05 -41.16 *FLAGS SPLAY 58 58a 4.16 41.63 18.73 *FLAGS NOT SPLAY *data passage station left right up down 1 0.571 0.494 3.841 1.625 2 0.968 0.0 1.761 1.464 3 0.0 0.52 1.696 1.486 4 0.421 0.0 1.496 1.523 5 0.429 0.0 1.489 1.391 6 0.0 0.6 1.44 1.425 7 0.0 0.465 1.636 1.288 9 0.495 0.0 1.596 1.279 10 0.0 0.52 1.626 1.23 11 0.593 0.0 1.556 1.27 12 0.423 0.0 1.694 1.279 13 0.202 1.061 4.12 1.604 14 0.631 0.0 1.496 1.64 15 0.894 0.0 2.581 1.544 16 0.438 0.0 1.294 1.026 17 0.754 0.0 3.736 1.448 18 0.0 0.324 8.446 0.886 19 0.417 0.187 1.112 0.578 20 2.52 0.454 1.006 0.525 21 0.41 0.428 0.0 0.936 22 0.998 0.0 1.325 0.371 23 0.426 0.0 1.002 0.219 24 0.0 0.779 0.802 0.485 25 0.0 0.344 1.464 0.439 26 0.0 0.771 1.707 0.779 27 0.441 0.0 1.196 0.997 28 0.37 0.0 1.231 1.098 29 0.541 0.0 0.868 1.226 30 0.0 0.559 1.112 1.189 31 0.352 0.0 0.997 1.465 32 0.0 0.388 1.138 1.444 33 0.594 0.242 1.845 0.822 34 0.534 0.0 1.803 0.815 35 0.0 0.445 1.376 0.98 36 0.0 0.49 0.761 1.261 37 0.509 0.0 0.835 1.067 38 0.0 0.476 1.35 0.804 39 0.442 0.0 1.04 1.049 40 0.0 0.411 1.019 0.955 41 0.0 0.826 0.874 1.534 42 0.0 0.483 1.055 0.986 43 0.486 0.0 1.252 1.045 44 0.0 0.428 1.074 1.168 45 0.463 0.0 0.955 1.363 46 0.0 0.343 1.033 1.227 47 0.421 0.0 0.941 1.031 48 0.415 0.0 1.208 1.169 49 0.338 0.0 1.067 1.137 50 0.0 0.387 1.001 1.123 51 0.345 0.0 0.885 1.431 52 0.0 0.419 0.871 1.361 53 0.0 0.354 1.006 1.662 54 0.564 0.0 2.112 1.128 55 0.0 0.622 2.015 3.358 56 0.0 1.45 3.918 1.94 57 0.662 0.0 0.657 1.176 58 1.042 1.979 2.963 0.375 *END HellOfADiversion *begin DiversionChamberInlet *EXPORT 1 13 ;PocketTopo series 166 ;Surveyors: Sketching (PDA) - Footleg; DistoX - Paul Dold ;Instruments: West Sussex Caving Club DistoX (calibration checked against ;Footleg's Suunto Tandem 2 days previously). ;PocketTopo on Footleg's Dell Axim 51v PDA *DATE 2012.04.12 *CALIBRATE declination 1.67 *FLAGS SPLAY 1 1a 8.76 287.34 20.69 1 1b 10.20 253.92 24.44 1 1c 2.13 144.12 3.82 1 1d 3.99 202.19 17.98 1 1e 10.80 215.21 17.53 *FLAGS NOT SPLAY *FLAGS DUPLICATE 1 2 9.65 45.09 -8.73 *FLAGS NOT DUPLICATE *FLAGS SPLAY 2 2a 1.77 145.49 -0.87 *FLAGS NOT SPLAY 2 3 7.77 187.34 -10.02 3 4 9.44 211.26 3.08 *FLAGS SPLAY 4 4a 2.51 100.17 -29.05 *FLAGS NOT SPLAY 4 5 11.95 163.92 -0.41 *FLAGS SPLAY 5 5a 6.87 4.56 3.19 5 5b 3.83 3.31 14.82 5 5c 1.39 14.78 -31.95 5 5d 11.13 303.87 28.34 *FLAGS NOT SPLAY 5 6 8.26 67.45 1.78 *FLAGS SPLAY 6 6a 2.80 347.23 11.18 *FLAGS NOT SPLAY 6 7 2.15 155.93 -7.58 7 8 8.18 69.41 -0.13 8 9 8.47 77.66 6.42 9 10 6.85 341.28 0.08 *FLAGS SPLAY 10 10a 10.05 250.19 -1.04 *FLAGS NOT SPLAY 10 11 14.59 73.83 1.72 *FLAGS SPLAY 11 11a 3.58 303.03 -20.21 11 11b 1.58 311.41 -36.36 *FLAGS NOT SPLAY 11 12 2.47 323.56 -6.85 *FLAGS SPLAY 12 12a 0.81 79.38 40.38 *FLAGS NOT SPLAY 12 13 8.42 66.83 -1.30 *FLAGS SPLAY 13 13a 1.50 323.93 -0.83 *FLAGS NOT SPLAY 13 14 7.41 47.92 -0.40 14 15 4.82 88.87 4.20 15 16 7.13 53.76 0.25 16 17 4.76 71.24 4.81 17 18 6.28 57.69 -3.59 *FLAGS SPLAY 18 18a 1.52 179.34 -14.08 *FLAGS NOT SPLAY 18 19 9.10 101.84 0.31 *FLAGS SPLAY 19 19a 2.07 347.15 -24.47 *FLAGS NOT SPLAY 19 20 3.28 61.64 8.72 *FLAGS SPLAY 20 20a 1.21 202.36 -9.48 *FLAGS NOT SPLAY 20 21 2.71 180.70 -22.74 21 22 2.10 172.14 25.72 22 23 4.06 64.68 38.17 23 24 4.34 81.84 -44.24 *FLAGS SPLAY 24 24a 16.57 248.33 45.37 24 24b 15.46 240.65 75.35 *FLAGS NOT SPLAY 24 24c 10.27 65.57 12.67 ;Actual leg to end of aven rift 10 25 2.49 252.87 28.57 25 26 9.84 244.96 -5.45 *data passage station left right up down 1 10.384 6.911 2.533 0.629 2 3.973 9.783 3.186 0.0 3 1.12 2.745 1.082 0.949 4 1.845 3.725 0.838 0.735 5 2.009 0.0 0.0 0.0 6 1.618 1.13 0.307 0.238 7 1.246 0.901 0.98 0.591 8 0.0 1.0 4.703 0.529 9 2.71 0.403 3.249 1.628 10 1.083 3.395 1.452 0.0 11 1.809 0.0 0.945 0.0 12 1.056 1.091 0.0 1.718 13 2.48 0.78 2.924 0.0 14 1.294 0.722 1.213 1.159 15 0.784 0.0 0.848 1.538 16 0.0 0.908 0.649 1.007 17 1.273 0.949 0.434 0.715 18 0.612 1.954 0.667 0.0 19 0.947 0.0 0.869 0.0 20 0.811 1.091 1.281 0.956 21 1.022 0.368 0.243 0.42 22 1.088 0.0 2.46 0.681 23 0.0 1.265 19.653 1.607 24 0.855 1.657 10.891 0.0 24c 1 1 8.5 .5 *data passage station left right up down 10 2.489 1.136 1.339 0.0 25 1.286 0.694 0.0 0.599 26 .7 .7 .4 0 *end DiversionChamberInlet *begin BRoad *EXPORT 1 15 18 ;PocketTopo series 167 ;Surveyors: Sketching (PDA) - Footleg; DistoX - Paul Dold ;Instruments: West Sussex Caving Club DistoX (calibration checked against ;Footleg's Suunto Tandem 2 days previously). ;PocketTopo on Footleg's Dell Axim 51v PDA *DATE 2012.04.12 *CALIBRATE declination 1.67 1 2 9.05 310.87 6.10 2 3 5.86 260.07 -2.54 *FLAGS SPLAY 3 3a 7.52 235.49 13.22 *FLAGS NOT SPLAY 3 4 5.76 35.46 -25.54 4 5 3.42 316.93 -58.18 *FLAGS SPLAY 5 5a 1.02 313.42 55.77 *FLAGS NOT SPLAY 5 6 3.76 34.48 13.31 6 7 11.00 44.94 -2.21 *FLAGS SPLAY 7 7a 1.50 146.85 44.06 *FLAGS NOT SPLAY 7 8 2.98 63.88 5.70 *FLAGS SPLAY 8 8a 2.00 315.52 -34.09 *FLAGS NOT SPLAY 8 9 4.84 58.30 1.92 *FLAGS SPLAY 9 9a 3.55 310.90 -20.18 *FLAGS NOT SPLAY 5 10 10.23 244.05 4.18 10 11 9.92 246.99 -0.09 *FLAGS SPLAY 11 11a 1.20 143.23 -12.63 *FLAGS NOT SPLAY 11 12 5.47 242.34 -10.18 *FLAGS SPLAY 12 12a 8.22 237.32 -0.27 *FLAGS NOT SPLAY 12 13 8.77 203.42 5.39 *FLAGS SPLAY 13 13a 1.07 129.50 -47.84 13 13b 0.92 315.03 4.02 13 13c 1.90 44.86 -9.67 *FLAGS NOT SPLAY 13 14 8.39 243.71 1.15 *FLAGS SPLAY 14 14a 2.83 144.92 -27.48 *FLAGS NOT SPLAY 14 15 5.06 188.22 -7.12 *FLAGS SPLAY 15 15a 2.99 308.29 -2.95 *FLAGS NOT SPLAY 15 16 6.06 209.47 -0.52 *FLAGS SPLAY 16 16a 1.13 40.00 -44.42 *FLAGS NOT SPLAY 16 17 5.24 76.22 0.40 17 18 3.41 107.79 7.72 *FLAGS SPLAY 18 18a 0.45 97.08 18.10 18 18b 1.87 258.49 -11.22 18 18c 2.21 137.79 -30.29 *FLAGS NOT SPLAY *data passage station left right up down 2 2.589 0.0 1.944 1.476 3 0.523 3.627 0.881 0.522 4 0.43 0.443 1.589 1.211 5 3.398 1.16 2.343 0.449 6 2.605 0.806 1.224 1.174 7 1.29 1.825 0.0 1.057 8 2 0.0 1.546 0.0 9 2.5 0.0 1.6 1.05 *data passage station left right up down 5 1.224 3.46 2.357 0.396 10 0.893 2.799 1.22 1.118 11 2.441 1.831 1.012 1.162 12 2.883 1.383 0.336 0.0 13 0.0 3.178 0.844 1.097 14 1.547 0.0 1.194 1.433 15 2.745 1.258 1.395 0.0 16 2.603 2.03 1.469 0.0 17 2.079 1.961 1.17 0.748 18 5.088 1.748 1.945 0.0 *end BRoad *BEGIN SandyZigZags *EXPORT 1 ;PocketTopo series 168 ;Surveyors: Sketching (PDA) - Footleg; DistoX - Paul Dold ;Instruments: West Sussex Caving Club DistoX (calibration checked against ;Footleg's Suunto Tandem 2 days previously). ;PocketTopo on Footleg's Dell Axim 51v PDA *DATE 2012.04.12 *CALIBRATE declination 1.67 1 2 3.49 279.73 6.46 2 3 8.32 261.03 7.47 3 4 6.09 248.59 -2.41 *FLAGS SPLAY 4 4a 2.35 241.20 14.47 4 4b 1.39 63.24 1.96 *FLAGS NOT SPLAY 4 5 8.67 44.44 1.38 *FLAGS SPLAY 5 5a 0.29 143.21 43.64 *FLAGS NOT SPLAY 5 6 2.92 81.97 -3.57 6 7 6.39 355.71 1.64 *FLAGS SPLAY 7 7a 1.22 193.47 -1.63 *FLAGS NOT SPLAY 7 8 10.02 244.12 -0.20 8 9 13.79 231.18 1.72 *FLAGS SPLAY 9 9a 1.35 320.86 44.98 9 9b 0.82 329.84 -22.90 *FLAGS NOT SPLAY 9 10 6.62 262.98 -0.85 *FLAGS SPLAY 10 10a 1.64 151.95 2.06 *FLAGS NOT SPLAY 10 11 10.80 229.41 1.52 *FLAGS SPLAY 11 11a 4.27 215.79 4.67 11 11b 0.91 331.90 39.34 11 11c 0.90 330.46 -34.14 *FLAGS NOT SPLAY 11 12 4.97 264.54 3.28 12 13 6.32 240.83 -1.64 13 14 4.52 251.31 -3.94 14 15 3.29 194.15 -3.46 15 16 1.41 295.46 -5.72 *FLAGS SPLAY 16 16a 1.02 156.81 -34.97 16 16b 6.00 202.14 -3.87 16 16c 3.33 196.46 3.03 16 16d 3.61 204.99 2.11 16 16e 2.08 266.72 8.03 *FLAGS NOT SPLAY 16 17 3.57 222.19 2.69 17 18 2.85 259.92 25.62 18 19 1.78 205.31 20.90 *FLAGS SPLAY 19 19a 1.38 324.35 21.90 *FLAGS NOT SPLAY 19 20 1.71 292.07 37.62 *FLAGS SPLAY 20 20a 1.48 166.77 -3.53 20 20b 4.89 247.16 22.91 20 20c 5.51 234.49 30.66 20 20d 3.93 251.64 -20.03 *FLAGS NOT SPLAY *data passage station left right up down 1 2.745 1.258 1.395 0.0 2 0.669 1.176 1.182 1.149 3 0.611 0.34 0.983 0.482 4 0.846 1.004 1.772 0.0 5 0.0 0.895 0.0 0.493 6 1.174 0.0 0.928 0.86 7 0.699 0.0 1.219 0.0 8 1.185 0.0 1.714 0.0 9 0.0 1.811 0.0 0.0 10 0.746 0.0 1.078 0.0 11 0.649 2.098 0.0 0.0 12 1.213 0.527 0.617 0.999 13 1.533 2.906 0.689 0.0 14 2.142 1.545 3.569 0.928 15 0.0 1.495 1.245 0.829 16 1.396 0.398 1.435 0.0 17 0.767 0.424 0.746 1.03 18 0.402 0.0 2.864 1.533 19 0.0 0.456 3.213 1.183 20 3.866 0.0 5.393 2.057 *END SandyZigZags *begin River2 *EXPORT 9 25 34 49 62 *CALIBRATE declination 6.89 ;approximate calibration based on estimated age of data ;*FLAGS DUPLICATE ;1 2 8.0 324 13 ;Starts from Diversion Chamber somewhere ;2 3 8.4 273 -13 ;3 4 13.7 239 0 ;4 5 20.0 240 0 ;5 6 16.2 243 0 ;6 7 6.7 218 0 ;7 8 11.5 229 -2 ;8 9 9.0 144 0 ;*FLAGS NOT DUPLICATE 9 10 11.0 218 0 ;9=New tie in point to resurvey 10 11 15.3 240 -1 11 12 12.0 216 6 12 13 20.0 250 -4 13 14 13.6 245 0 14 15 20.0 232.5 -1 15 16 10.0 233 -1 16 17 13.3 236 -2 17 18 13.0 243 0 18 19 20.0 223 0 19 20 20.0 234 0 20 21 20.0 231 6 21 22 20.0 230 -10 22 23 20.0 244 7 23 24 20.0 237 0 24 25 20.0 229 0 ;Stn25=4th River Inlet jtn ;25 25a 10.19 288 0 ;* 25 26 20.0 182 -3 26 27 11.9 171 17 27 28 7.0 136 2 28 29 16.0 110 -25 29 30 4.8 127 0 30 31 8.4 96 0 31 32 8.0 144 10 32 33 17.6 91 -5 33 34 10.4 111 0 ;Stn34=Astradome jtn 34 35 15.0 159 0 35 36 14.8 89 3 36 37 6.5 138 9 37 38 5.0 190 -18 38 39 7.5 123 0 39 40 7.0 167 0 40 41 10.8 104 0 41 42 18.5 68 0 42 43 11.7 118 0 43 44 6.8 206 30 44 45 14.0 111 0 45 46 16.5 144 -14 46 47 6.9 199 0 47 48 7.5 107 0 48 49 4.5 171 0 ;Stn49=Armaggeddon Bypass jtn 49 50 7.7 90 0 50 51 5.0 71 19 51 52 5.4 74 -25 52 53 5.0 99 0 53 54 16.5 57 0 54 55 14.4 56 10 55 56 11.5 80 -10 56 57 18.6 61 0 57 58 13.0 57 0 58 59 16.5 115 0 59 60 20.0 80 0 60 61 20.0 68 0 61 62 3.5 82 0 *end River2 *BEGIN 4thRiverInlet *EXPORT 1 ;Resurvey of 4th River Inlet plus new extension found on this trip ;by Steve Sharp digging out cobbles at the choke. ;PocketTopo series 159 ;Surveyors: Sketching (PDA) - Footleg; DistoX - Paul Dold ;Instruments: West Sussex Caving Club DistoX (calibrated in cave on previous ;trip and checked against Footleg's Suunto Tandem at start of this trip). ;PocketTopo on Footleg's Dell Axim 51v PDA *DATE 2010.08.13 *CALIBRATE declination 1.92 *FLAGS DUPLICATE 1 2 4.70 241.84 -5.47 2 3 9.48 256.65 1.67 *FLAGS SPLAY 3 3a 2.68 350.37 -6.54 *FLAGS NOT SPLAY 3 4 11.11 284.45 0.30 *FLAGS SPLAY 4 4a 1.26 185.58 1.16 4 4b 1.65 278.61 -3.07 *FLAGS NOT SPLAY 4 5 3.84 333.48 0.12 *FLAGS SPLAY 5 5a 3.37 100.90 2.17 5 5b 2.59 135.08 2.69 *FLAGS NOT SPLAY 5 6 20.38 250.71 1.74 6 7 11.86 256.97 2.88 7 8 4.09 258.04 4.52 8 9 5.93 233.74 -0.07 *FLAGS SPLAY 9 9a 2.98 336.04 -1.13 *FLAGS NOT SPLAY 9 10 5.52 337.88 6.23 *FLAGS SPLAY 10 10a 2.21 193.84 -1.41 *FLAGS NOT SPLAY *FLAGS NOT DUPLICATE 10 11 10.52 215.87 9.02 *FLAGS SPLAY 11 11a 2.47 199.90 -34.00 *FLAGS NOT SPLAY 10 12 2.58 302.07 -41.08 12 13 4.47 297.63 -2.33 13 14 6.37 280.24 4.14 *FLAGS SPLAY 14 14a 0.40 1.55 8.49 *FLAGS NOT SPLAY 14 15 3.00 261.92 1.12 15 16 4.55 240.61 6.07 16 17 4.27 282.95 -4.47 *FLAGS SPLAY 17 17a 2.55 257.44 15.77 *FLAGS NOT SPLAY 17 18 4.75 43.09 13.49 *FLAGS SPLAY 18 18a 1.52 242.18 -3.26 *FLAGS NOT SPLAY 18 19 8.59 265.04 1.96 19 20 4.85 266.29 1.21 20 21 5.02 271.64 -0.01 21 22 1.95 263.93 -3.79 22 23 4.98 262.50 -2.11 *FLAGS SPLAY 23 23a 1.01 140.63 -3.98 *FLAGS NOT SPLAY 23 24 2.54 325.70 -4.68 24 25 1.53 53.79 -5.34 25 26 1.74 342.48 -4.34 26 27 3.82 347.92 -0.28 *FLAGS SPLAY 27 27a 1.52 161.71 5.37 *FLAGS NOT SPLAY 27 28 4.65 293.98 9.62 28 29 6.17 74.15 2.86 29 30 3.16 91.71 -2.67 30 31 3.80 54.05 -3.67 31 32 1.61 298.37 7.35 32 33 1.00 56.81 -16.94 33 34 4.93 275.76 -2.15 34 35 4.48 273.96 0.01 35 36 3.39 255.20 49.90 *data passage station left right up down 1 1.495 2.54 3.155 0.36 2 0.0 1.196 3.316 1.296 3 0.0 1.027 0.981 1.369 4 1.825 0.0 1.651 1.377 5 1.305 0.0 1.416 1.456 6 0.0 0.804 5.074 1.647 7 0.945 0.0 1.533 1.648 8 1.595 0.0 1.35 2.068 9 1.957 1.41 1.422 1.479 10 3.773 1.578 1.359 2.636 12 1.658 0.293 2.717 0.296 13 0.842 0.454 0.293 0.248 14 0.644 1.574 0.365 0.694 15 1.695 0.629 0.352 0.478 16 0.368 1.941 0.397 0.873 17 0.768 0.939 3.268 0.335 18 1.52 0.495 3.561 1.803 19 0.2 0.449 1.35 1.855 20 0.29 0.303 1.247 1.686 21 0.772 0.0 1.355 1.408 22 0.0 0.532 1.884 1.115 23 0.0 0.624 2.202 0.939 24 0.0 0.617 0.505 0.662 25 0.754 0.0 1.042 0.57 26 0.647 0.247 0.893 0.561 27 0.648 0.391 1.831 0.315 28 0.0 0.943 1.087 0.849 29 0.0 0.38 0.567 1.392 30 0.73 0.0 1.023 1.189 31 0.822 0.0 1.412 0.976 32 0.0 0.679 0.775 1.174 33 0.0 0.736 1.197 0.907 34 0.0 0.566 1.727 0.485 35 0.0 0.979 1.506 0.473 36 0.398 2.628 1.277 0.365 *data passage station left right up down 10 3.773 1.578 1.359 2.636 11 0.405 0.483 0.706 1.152 *END 4thRiverInlet ;*EQUATE NewUzueka.6 Crawl75.33 ; ;*begin Crawl75 ;Suspected to be passage before GorillaWalk (duplicate data) ;*CALIBRATE declination 6.0 ;approximate calibration based on Aug. 1980 ; ;x 24 9.8 264 -21 ;24 25 2.9 286 8 ;25 26 3.9 309 7 ;26 27 3.9 323 -24 ;27 28 2.6 334 33 ;28 29 10.7 289 13 ;29 30 5.1 249 -14 ;30 31 10.7 283 2 ;31 32 3.3 311 -22 ;32 33 7.2 068 -9 ; ;*end Crawl75 *begin PhreaticMazeSeries *EXPORT 0 ;Location unknown, described as Maze near Phreatic Series *CALIBRATE declination 6.0 ;approximate calibration based on Aug. 1980 0 1 9.2 210 -1 1 2 12.3 214 0 2 3 15.0 215 4 3 4 3.4 272 3 4 5 4.8 248 4 5 6 5.4 281 4 6 7 4.1 243 2 7 8 9.7 259 0 8 9 16.4 254.5 2 9 10 4.2 253 -4 10 11 3.8 244 -34 12 2 2.9 300 -30 12 13 4.4 083 24 13 14 3.1 040 28 14 15 5.5 081 -15 15 16 3.2 037 0 16 17 3.3 109 11 17 18 3.7 068 -6 18 19 5.6 094 -2 19 20 7.2 040 6 20 21 6.9 255 -14 21 22 9.0 276 1 22 23 8.5 312 -5 ;23 x 2.7 109 12 ;x 24 9.8 264 -21 ;24 25 2.9 286 8 ;25 26 3.9 309 7 ;26 27 3.9 323 -24 ;27 28 2.6 334 33 ;28 29 10.7 289 13 ;29 30 5.1 249 -14 ;30 31 10.7 283 2 ;31 32 3.3 311 -22 ;32 33 7.2 068 -9 *end PhreaticMazeSeries *begin Astradome *EXPORT 6 *CALIBRATE declination 6.89 ;approximate calibration based on estimated age of data 1 2 20.0 216 15 2 3 14.3 222 5 3 4 20.0 247 -10 4 5 13.0 248 -3 5 6 15.0 236 -20 *FLAGS SPLAY 1 6a 12.8 336 0 1 6b 12.4 258 0 1 6c 12.4 094 0 1 6d 20.0 027 0 *FLAGS NOT SPLAY 1 0 102.5 - UP *end Astradome *begin ShrimpBoneInlet *EXPORT 238 238 239 72.27 284.42 0 ;* 239 240 7.07 278.13 0 ;* 240 241 10.44 16.70 0 ;* 241 242 7.21 236.31 0 ;* 242 243 10.00 36.87 0 ;* 243 244 11.04 275.19 0 ;* 244 245 21.40 322.59 0 ;* 245 246 66.40 251.56 0 ;* 246 247 11.18 333.43 0 ;* 247 248 21.02 267.27 0 ;* 248 249 44.01 248.68 0 ;* 249 250 13.03 237.52 0 ;* 250 251 55.22 264.80 0 ;* 251 252 5.83 300.96 0 ;* 252 253 7.61 246.80 0 ;* 253 254 68.96 299.53 0 ;* 254 255 54.70 251.89 0 ;* 255 256 33.61 247.25 0 ;* 256 257 50.69 247.98 0 ;* 257 258 7.28 344.05 0 ;* 258 259 8.00 270.00 0 ;* 259 260 17.20 305.53 0 ;* 260 261 6.32 341.56 0 ;* 261 262 15.29 281.31 0 ;* 262 263 9.48 288.43 0 ;* 263 264 23.32 300.96 0 ;* 264 605 4.70 300.50 1 ;BEC EXTENSION (starts part way up Shrimp Bone Inlet) 605 606 6.30 292.50 0 ;* 606 607 4.60 261.50 0 ;* 607 608 8.60 261.50 0 ;* 608 609 4.90 285.50 0 ;STN5-6 609 610 1.40 258.50 0 ;* 610 611 4.40 302.50 4 ;* 611 612 4.00 321.50 0 ;STN8-9 612 613 5.00 263.50 0 ;* 613 614 2.70 302.50 2 ;* 614 615 9.00 255.50 1 ;STN11-12 615 616 6.80 259.50 1 ;* 616 617 5.20 225.50 2 ;* 617 618 20.50 237.50 2 ;STN14-15 618 619 6.70 235.50 0 ;* 619 620 28.80 248.50 3 ;* 620 621 16.00 238.50 3 ;* 621 622 30.00 242.50 3 ;* 622 623 17.60 243.50 3 ;* 623 624 15.70 257.50 3 ;* 624 625 16.50 249.50 2 ;STN21-22 625 626 25.70 245.50 2 ;* 626 627 24.50 245.50 2 ;* 627 628 8.50 261.50 0 ;* 628 629 14.40 258.50 3 ;* 629 630 9.00 262.50 0 ;STN26-27 630 631 4.00 289.50 0 ;* 631 632 11.50 263.50 2 ;* 632 633 8.50 252.50 2 ;* 633 634 6.50 265.50 3 ;* 634 635 7.20 244.50 0 ;* 635 636 11.50 261.50 2 ;STN32-33 636 637 7.10 253.50 2 ;* 637 638 10.00 250.50 0 ;* 638 639 5.80 260.50 3 ;* 639 640 5.80 228.50 0 ;* 640 641 2.40 215.50 0 ;* 641 642 16.70 240.50 1 ;STN38-39 642 643 6.00 253.50 1 ;* 643 644 10.50 248.50 1 ;* 644 645 9.10 228.50 1 ;* 645 646 10.80 243.50 1 ;* 646 647 6.10 251.50 1 ;* 647 648 3.00 260.50 1 ;* 648 649 6.40 255.50 1 ;STN45-46 649 650 8.70 253.50 1 ;* 650 651 12.30 250.50 1 ;* 651 652 4.50 140.50 1 ;* 652 653 10.80 110.50 0 ;* 653 654 3.60 218.50 0 ;* 654 655 13.90 117.50 1 ;* 655 656 4.60 183.50 1 ;* 656 657 7.70 129.50 0 ;STN53-A 657 658 0.10 - +V ;* *end ShrimpBoneInlet *begin RockyHorror *EXPORT 273 313 ;Rocky Horror (scans UkuekaEnd) 1979 273 274 6.25 33.07 -12 ;* 274 275 28.70 92.36 4 ;DataPrintouts01.jpg 275 276 28.00 94.36 0 ; | 276 277 20.50 127.36 4 ; | 277 278 30.00 107.36 0 ;* 278 279 30.00 105.36 7 ;* 279 280 11.30 184.36 14 ;* 280 281 28.10 68.36 -4 ;* 281 282 9.80 340.36 -30 ;* 282 283 7.60 53.36 -36 ;* 283 284 13.50 77.36 -15 ;* 284 285 6.50 112.36 -4 ;* 285 286 2.90 152.36 -36 ;* 286 287 3.10 48.36 -61 ;* 287 288 2.20 113.36 -50 ;* 288 289 3.10 119.36 0 ;* 289 290 6.30 129.36 16 ;* 290 291 3.50 86.36 -30 ;* 291 292 9.70 103.36 0 ;* 292 293 11.70 122.36 28 ;* 293 294 4.50 247.36 24 ;* 294 295 3.90 108.36 28 ;* 295 296 10.00 93.36 -9 ;* 296 297 30.00 80.36 -6 ;* 297 298 30.00 94.36 6 ;* 298 299 23.50 110.36 8 ;* 299 300 26.50 119.36 0 ;* 300 301 28.00 107.36 23 ;* 301 302 14.70 130.36 -2 ;* 302 303 8.00 182.36 -43 ;* 303 304 12.50 76.36 -21 ;* 304 305 2.00 - +V ;* 305 306 10.50 105.36 -1 ;* 306 307 6.50 93.36 -21 ;* 307 308 10.00 136.36 -2 ;* 308 309 24.30 102.36 0 ;* 309 310 5.30 97.36 -36 ;* 310 311 8.50 126.36 -3 ;* 311 312 12.00 119.36 -18 ;* 312 313 8.50 121.36 -12 ;* 313 314 7.00 317.36 -36 ; 312 315 5.70 321.36 0 ;* 315 316 0.0 - +V ;end DataPrintouts01.jpg *end RockyHorror *BEGIN WardrobePassage *EXPORT pt1.13 pt4.5 ;WARDROBE PASSAGE ;Date 2009/08/05 *CALIBRATE declination 2.08 *BEGIN pt1 *EXPORT 9 13 0 1 4.12 108.63 -17.08 1 2 13.19 74.49 -1.07 2 3 9.26 66.20 -4.76 3 4 7.77 61.68 -2.64 4 5 12.68 70.11 -3.46 5 6 6.81 88.64 -2.71 6 7 4.24 59.41 0.18 7 8 7.38 54.73 -0.80 8 9 5.49 65.32 -15.33 9 10 4.97 22.29 0.85 10 11 6.90 33.07 13.39 11 12 10.14 10.04 -59.59 12 13 6.62 74.70 -23.76 *FLAGS SPLAY 8 8a 6.16 255.38 -8.78 11 11a 5.09 310.57 1.87 11 11b 4.66 233.93 -0.09 11 11c 4.62 25.31 3.22 12 12a 0.55 248.20 -4.78 *FLAGS NOT SPLAY *data passage station left right up down 0 0.195 0.737 1.044 1.183 1 3.069 0.546 0.848 0.288 2 1.167 2.185 0.387 0.478 3 2.152 1.853 1.039 0.638 4 0.654 1.069 1.276 0.558 5 0.708 0.479 1.744 0.254 6 1.135 0.542 0.241 0.255 7 0.977 0.962 0.364 0.298 8 0.192 3.976 0.361 1.297 9 0.975 2.227 1.822 0.307 10 0.779 0.198 1.475 0.693 11 8.595 0.686 1.327 0.594 12 0.0 3.648 3.282 1.382 13 3 2.5 13 0 *END pt1 *EQUATE pt2.0 pt1.9 *BEGIN pt2 *EXPORT 0 1 3 0 1 8.32 65.02 -8.51 1 2 5.11 94.80 23.62 2 3 2.32 145.78 -20.46 *FLAGS SPLAY 3 3a 4.41 212.07 -6.30 3 3b 2.24 167.45 3.18 3 3c 5.69 71.80 8.82 3 3d 6.85 41.24 13.29 *FLAGS NOT SPLAY 3 4 10.78 221.00 -0.51 4 5 1.66 253.55 -7.16 5 6 4.36 208.32 3.10 6 6a 1.56 74.09 27.24 6 7 1.81 218.22 24.54 7 7a 4.28 238.51 7.36 7 8 5.14 214.38 3.65 8 9 6.51 217.17 10.90 9 10 8.16 238.00 -0.86 *FLAGS SPLAY 10 10a 2.64 102.07 3.52 10 10b 4.71 124.38 -1.80 10 10c 5.16 162.68 -0.87 10 10d 5.26 186.71 0.84 *FLAGS NOT SPLAY 10 10e 2.31 218.41 1.88 *FLAGS SPLAY 10 10f 2.33 251.13 5.23 10 10g 1.50 54.90 0.09 *FLAGS NOT SPLAY 11 10 4.89 266.23 -45.47 12 11 3.48 211.29 -34.69 *FLAGS SPLAY 12 12a 0.85 68.26 -39.19 *FLAGS NOT SPLAY 12 13 11.31 94.94 68.59 *data passage station left right up down 0 0.975 2.227 1.822 0.307 1 1.078 2.305 2.913 0.94 2 0.883 1.359 0.846 0.32 3 8.106 0.0 1.61 1.035 4 0.659 1.033 1.504 0.456 5 0.743 0.29 0.894 0.266 6 0.964 0.242 1.194 0.483 7 0.819 0.53 0.569 0.601 8 0.504 0.54 0.224 0.687 9 0.75 1.071 0.257 1.202 10 1.592 0.733 0.3 1 10e 4.3 1.35 0.3 1 *data passage station left right up down 10 1.592 0.733 3 0.5 11 0.205 1.493 0.986 1.016 12 0.259 0.793 1.491 0.0 *END pt2 *EQUATE pt3.0 pt2.3 *BEGIN pt3 *EXPORT 0 0 1 15.45 111.61 4.78 1 2 5.58 108.32 -5.21 2 3 6.84 91.68 0.39 3 4 4.75 79.49 1.13 4 5 4.95 132.14 -15.59 5 6 4.91 205.05 -1.26 6 7 13.28 217.96 3.48 *FLAGS SPLAY 7 7a 6.01 47.71 -12.33 7 7b 3.21 74.61 1.35 *FLAGS NOT SPLAY 7 7c 2.12 245.15 9.83 *FLAGS SPLAY 7 7d 2.18 99.03 2.11 *FLAGS NOT SPLAY 7 8 9.07 85.36 1.10 *FLAGS SPLAY 8 8a 1.82 12.95 -10.10 *FLAGS NOT SPLAY 8 9 4.84 35.03 5.05 9 9a 10.65 260.80 -3.86 9 10 4.55 82.73 9.57 10 11 3.64 89.31 -8.24 11 12 4.22 80.75 -20.57 12 13 5.39 96.65 10.72 13 14 1.44 28.32 19.48 15 14 9.27 216.19 -3.11 15 16 1.36 330.59 -13.03 17 16 5.61 219.09 -2.03 18 17 3.92 305.61 -1.03 19 18 1.56 295.00 -27.36 19 20 1.35 94.11 28.43 20 21 1.00 38.50 60.68 21 22 1.93 68.82 -34.70 22 23 0.68 107.30 -19.26 23 24 4.04 80.13 -10.25 25 24 5.63 276.50 -25.55 *data passage station left right up down 0 6.7 4.4 1.61 1.035 1 1.309 0.413 0.224 0.73 2 0.842 2.898 0.52 0.764 3 1.939 1.548 0.455 0.972 4 0.593 1.838 0.27 1.351 5 0.222 0.229 0.853 0.435 6 0.372 0.49 1.337 1.059 7 1.574 1.525 0.0 0.0 8 0.976 0.282 0.423 1.436 9 0.459 0.932 0.896 1.383 10 1.571 2.735 0.197 0.96 11 2.546 3.039 0.493 1.592 12 0.646 0.841 0.844 0.779 13 1.383 2.058 0.687 0.919 14 1.974 2.284 0.279 0.0 15 1.737 1.332 0.202 0.391 16 0.608 1.487 0.483 0.253 17 0.0 0.417 0.197 0.319 18 2.367 0.0 0.0 0.0 18 0.799 0.206 0.546 0.283 19 0.21 0.323 0.392 0.584 20 0.406 0.197 2.894 0.289 21 0.252 0.456 2.592 0.743 23 0.525 0.328 0.419 0.52 24 0.188 0.506 0.721 0.2 25 0.197 0.594 0.84 0.555 *data passage station left right up down 9 0.932 0.459 0.896 1.383 9a 0.932 0.459 0.896 1.383 *END pt3 *EQUATE pt4.0 pt2.1 *BEGIN pt4 *EXPORT 0 5 0 1 10.76 52.79 -19.25 *FLAGS SPLAY 1 1a 1.34 304.55 -5.29 *FLAGS NOT SPLAY 1 1b 12.76 291.66 2.50 *FLAGS SPLAY 1 1c 1.73 61.28 -38.08 1 1d 6.07 44.39 -37.13 1 1e 3.25 109.33 -4.58 *FLAGS NOT SPLAY 1 2 7.39 88.64 -23.93 2 3 3.91 28.54 -47.25 3 4 15.92 92.32 -19.02 *FLAGS SPLAY 4 4a 22.23 340.21 3.85 4 4b 8.05 231.38 1.65 4 4c 24.34 10.16 1.91 4 4d 7.00 115.63 -2.10 *FLAGS NOT SPLAY 4 5 18.77 355.62 1.95 *data passage station left right up down 0 1.168 2.74 2.889 0.941 1 2.184 1.053 6.612 0.0 2 0.872 0.368 5.131 1.397 3 0.232 1.23 2.232 1.681 4 7 3.8 7 0.3 *data passage station left right up down 1 0.5 0.5 6.612 0.0 1b 0.5 0.5 3.282 1.382 *END pt4 *END WardrobePassage *BEGIN FlashbulbHall_resurvey2009_1 *EXPORT 1 4 13 26 44 46 51 52 56 ;surveyors Alasdair Neill Peter Eagan Lank Mills Dave Bell *date 2009.04.09 ;declination is 2.08 for 2009 *CALIBRATE declination 2.08 ;sta 0 is L Mills sta in Pigs Trotters Chamber downstream end ;sta 1 marked on top of boulder upstream end of Pigs Trotters Chamber ;0 1 29.13 341 9 1 2 9.01 249 5 2 3 14.1 220 7 3 4 7.2 265 19 ;marker before foot of slippery slope 2 5 11.57 276 9 5 6 9.91 271 8 6 7 9.86 241 -1 7 8 8.89 304 5 8 9 5 265 1 9 10 5.89 49 8 10 11 8.53 56 24 11 12 11.94 61 -28 12 13 9.93 108 -6 13 14 9.55 263 6 10 15 6.62 028 -6 15 16 7.58 38 -12 16 17 5.4 280 -17 17 18 5.8 244 5 18 19 4.61 250 5 19 20 5.92 204 8 20 21 12.04 218 8 21 22 5.11 268 7 22 23 2.77 261 1 19 24 8.26 250 12 24 25 11.28 31 0 26 27 5.31 80 -5 ;26=SQUEEZE THROUGH TO QUADRAPHENIA OXBOWS 27 28 7.89 212 2 29 28 6.45 82 5 28 30 2.53 64 0 30 25 5.22 106 1 31 25 4.13 208 7 32 31 2.75 262 -10 33 34 4.2 77 -2 ;33 dig, pitch above 34 35 6.49 68 -14 35 36 1.54 45 -11 36 37 4.52 85 -18 37 38 3.26 77 -35 38 24 1.34 281 5 9 39 16.24 240 8 39 40 10.84 236 6 40 41 6 314 -7 41 42 7.79 245 6 42 43 13.88 259 3 43 44 11.76 249 13 ;cairn mkd 44 44 45 16.69 272 0 45 46 22.44 257 3 44 47 7.9 242 7 47 48 3.98 227 15 42 49 5.4 105 1 49 50 13.21 230 15 50 51 10.92 193 47 51 52 10.36 198 -1 52 53 9.88 219 1 53 54 11.66 240 -3 54 55 4.92 217 0 55 56 13 - down ;disto down undescended pitch ;52 57 11.52 257 -3 *data passage station left right up down ;0 14 9.7 6 1 1 9 6 9 2.5 2 1.1 4.6 4 1 3 1.1 6 16 1.6 4 2.5 3 13 0 *data passage station left right up down 2 1.1 4.6 4 1 5 2.3 0 1.4 1.5 6 1 1.2 9.8 1.4 7 0 1.8 4.4 1 8 5 0 3 0.6 9 1.4 1.5 9.6 0.6 10 1 0 6 0.7 11 0.25 0.4 4.3 0.8 12 1.7 1.3 6.3 1.2 13 0 1.8 4.9 0.8 14 1.8 0 4 0.5 *data passage station left right up down 10 1 0 6 0.7 15 0 0.6 1 0.45 16 1.7 2 1.8 3.5 17 0.8 0 3.7 1.7 18 0 1.2 3.2 1.5 19 1.2 0 6.3 1.6 20 0 0.9 2.7 1.5 21 1.6 0.8 1 0.7 22 0.5 0.2 3 0.2 23 0.5 0.2 3 0.2 *data passage station left right up down 19 1.2 0 6.3 1.6 24 0 1.3 5 1 25 1.8 0 2 4 31 0.3 1 0.7 2 32 1 0.6 0.7 0.9 *data passage station left right up down 26 1.48 1.64 0.8 7 27 0.5 0.8 0.4 2.5 28 0 1.5 1.5 1.5 29 1.5 1.5 2 1 *data passage station left right up down 25 1.8 0 2 4 30 0.9 0 1.6 1.3 28 0 1.5 1.5 1.5 *data passage station left right up down 33 0.35 0.2 6.8 0.5 34 0 0.4 7.3 1.4 35 0.3 0 9.3 1.3 36 0 0.3 4 1.6 37 0.6 0 4 1.4 38 1.3 0 5 1 24 0 1.3 5 1 *data passage station left right up down 9 2 1.5 7 0.5 39 0 2 10 0.5 40 0 6 9 1.2 41 1.3 0 9.4 1.3 42 0 1.1 5.6 1.63 43 2 0 7.1 1.4 44 4.2 7.5 4.7 1.1 45 1.9 1.6 4 2 46 0.402 3.179 5.003 0.629 ;From aug09 DistoX survey *data passage station left right up down 44 4.2 7.5 4.7 1.1 47 0.8 0.6 10.7 1.1 *data passage station left right up down 42 1.9 0. 9.4 1.3 49 0.6 0.8 1 1.2 50 2 1.8 3 1 51 2.8 8 1.1 2 52 0 8 2.7 1.1 *data passage station left right up down 52 0 0.8 2.7 1.1 53 0 0.8 3 0.8 54 0.6 0.2 4.2 1 55 1.2 0 4 1.3 ;*data passage station left right up down ;52 0 8 2.7 1.1 ;57 2 0 3.5 1 *END FlashbulbHall_resurvey2009_1 *BEGIN FlashbulbHall_resurvey2009_2 *EXPORT 0 4 15 ;surveyors Alasdair Neill Peter Eagan ;date 2009-04-10 ;declination is 2.08 for 2009 *CALIBRATE declination 2.08 0 1 9.91 80 0 2 1 5.14 340 -1 2 3 6.94 139 13 3 4 1.2 - down ;sta 51 of9.4.09 5 2 6.7 234 -25 6 5 3.63 235 -11 6 7 5 45 6 ;sta2 of 1.8.86 7 8 12.09 56 2 ;small tube cont *data passage station left right up down 0 1.1 1.5 3.3 1.3 1 3 3 4 1 2 5 6.2 2.2 1.7 4 2 7 1.1 2 *data passage station left right up down 2 5 8 2.2 1.7 5 2 1.4 2 3 6 2.6 0.9 2.3 1.2 7 0.3 0.3 2 0.7 8 0.3 0.3 0.75 0 *END FlashbulbHall_resurvey2009_2 *BEGIN FlashbulbHall_resurvey2009_2a *EXPORT 1 7 ;9 ;surveyors Becka Lawson (RL), Patrick Warren (PBW) ;instruments = RL pony, PBW tape ;date 2009-04-10 ;declination is 2.08 for 2009 *CALIBRATE declination 2.08 2 1 7.68 070 -2 3 2 18.40 078 -9 4 3 7.85 100 +6 5 4 9.80 071 -5 6 5 8.82 111 0 7 6 3.94 090 +31 ;8 7 4.72 015 +38 ;8 9 15.38 078 -14 ; next five legs are disto measures of the size of Flashbulb Hall *FLAGS SPLAY 7 7N 21.5 000 0; to wall North of station 7 cairn 7 7E 15.4 090 0; ditto East 7 7S 6.3 180 0; ditto South 7 7W 16.6 270 0; ditto West 7 7U 5.88 000 +90; ditto Up *FLAGS NOT SPLAY *data passage station left right up down 1 1.5 1.1 3.3 1.3 2 1.5 3.0 2.5 0.6 3 0.0 3.0 2.5 1.7 4 1.4 0.2 2.7 1.0 5 0.0 10.4 2.8 1.8 6 5.5 10.5 3.8 3.8 *data passage station left right up down 7S 3.4 1.5 5.8 3.8 7 16.6 15.4 5.8 2 7N 8.1 7 5 1.9 ; station 7 is marked cairn in Flashbulb Hall0 ; station 9 is Ali 46 from 2009-04-09 (also stn 0 in aug09 DistoX survey) *END FlashbulbHall_resurvey2009_2a *BEGIN FlashbulbHall_Aug09 *EXPORT 0 2 6 ;FLASHBULB HALL TO TRAVERSE resurvey ;Date 2009/08/03 *CALIBRATE declination 2.08 0 0a 1.24 64.24 -5.19 0 1 15.46 259.63 14.33 1 2 4.45 14.92 36.25 *FLAGS SPLAY 2 2a 26.43 336.31 2.30 ;2=central stn in flashbulb hall 2 2b 7.29 208.04 9.95 2 2c 6.02 172.29 6.72 2 2d 21.76 11.27 0.84 2 2e 10.35 111.71 23.86 *FLAGS NOT SPLAY 2 3 21.93 343.71 -1.85 3 4 13.37 279.29 7.17 4 5 9.40 9.96 0.46 5 6 26.18 285.87 1.08 *FLAGS SPLAY 6 6a 4.03 181.19 10.24 6 6b 8.94 90.39 -7.08 6 6c 3.82 302.45 -4.44 *FLAGS NOT SPLAY 2 7 20.89 28.47 4.02 7 8 3.46 60.87 -6.51 *data passage station left right up down 0 0.402 3.179 5.003 0.629 1 0.906 3.532 8.599 0.983 2 10.154 15.543 5.721 1.725 3 4.654 1.277 5.613 1.314 4 1.704 3.025 3.725 0.861 5 4.351 1.64 4.933 1.062 6 6.81 1.325 5.088 0.476 *data passage station left right up down 2 10.154 8.3 5.721 1.725 7 4.503 2.548 2.464 1.591 8 0.646 0.389 0.927 0.694 *END FlashbulbHall_Aug09 *BEGIN FlashbulbHall_resurvey2010 *EXPORT 30 34 *Date 2010.08.12 *CALIBRATE declination 1.92 ;rifty from high level chamber to main passage before FBH ;surveyors Ali Neill Pete Eagan Torben Redder 30 31 10.5 267 -11 31 32 4.96 9 -40 32 33 9.18 296 -22 33 34 3.28 9 11 *data passage station left right up down 30 3 3 1.1 2 31 1.2 1.5 2.1 1.8 32 .4 0 .9 1 33 0 1.3 5.1 1.7 *END FlashbulbHall_resurvey2010 *BEGIN GodKnows *EXPORT Feb2010.0 Apr2010.39 Apr2010.44 GoldiesWay.Pt3.5 *EQUATE Apr2010.32 sideA.0 *EQUATE GoldiesWay.Pt1.0 Apr2010.41 *EQUATE GoldiesWay.Pt4.13 Apr2010.21 ;*EQUATE Feb2010.1 Apr2010.57 *EQUATE Feb2010.3 Apr2010.0 *EQUATE Feb2010.7 Apr2010.12 *BEGIN Feb2010 *EXPORT 0 1 3 7 ;Down climb in high level chamber into God Knows Series. ;Surveyors: Sketching (PDA) - Footleg; DistoX - Paul Dold, Alistair Smith ;Instruments: West Sussex Caving Club DistoX (calibrated in cave on this ;trip and checked against Footleg's Suunto Tandem at start of this survey). ;PocketTopo on Footleg's Dell Axim 51v PDA *date 2010.02.19 *CALIBRATE declination 1.92 *flags duplicate 0 1 11.52 255.39 -2.14 1 2 6.17 236.39 -40.65 *FLAGS splay 2 2a 6.52 255.38 6.40 2 2b 16.05 260.62 2.14 *FLAGS not splay 2 3 7.39 235.62 -70.29 3 4 1.39 273.05 -6.62 4 5 3.40 287.44 -44.34 5 6 4.60 293.16 -4.18 6 7 4.24 229.04 6.75 *flags not duplicate *data passage station left right up down 0 0 8.02 2.7 1.1 1 1.52 0.0 2.91 1.17 2 0.31 1.86 2.75 4.62 3 0.53 0.61 9.88 0.34 4 0.37 0.29 9.9 0.53 5 2.68 1.13 4.23 2.02 6 2.44 0.8 0.83 0.0 7 0.43 2.0 3.69 0.54 *END Feb2010 *BEGIN Apr2010 *EXPORT 0 12 21 32 39 41 44 *CALIBRATE declination 1.92 *Date 2010.04.08 ;surveyors Alasdair Neill Angus 0 1 4.63 216 14 1 2 2.55 79 30 2 3 4.25 57 57 0 4 4.35 283 -33 4 5 5.32 208 -2 4 6 3.56 286 15 4 7 4.44 320 -59 7 8 2.45 32 0 8 9 2.45 36 21 9 10 2.36 134 37 10 11 3.15 50 13 5 12 5.75 250 -12 12 13 8.85 66 -14 13 14 2.6 - down 12 15 2.45 15 12 15 16 6.3 39 20 16 17 8.25 253 4 17 18 7.5 283 -11 18 19 1.78 228 -33 19 20 3.5 279 -26 20 21 2.65 223 -30 21 22 4.8 248 -8 22 23 2.15 282 -2 16 24 5 28 9 16 25 10.65 58 20 12 26 6.1 129 22 12 27 4 216 -18 27 28 3.4 237 -30 28 29 5 91 4 28 30 9.5 215 -3 30 31 3.65 197 -10 31 32 2.1 225 -10 32 33 2.3 171 -28 33 34 3.7 248 0 33 35 9.05 70 -39 35 36 4.1 96 12 36 37 8.35 57 47 37 38 2.35 31 29 38 39 8.5 95 22 39 40 9.5 65 40 ;stn 39 is stn from 3/8/09 41 42 2.85 197 -30 ;stn 41 is Torben's start 42 28 1.54 260 -28 ;0 43 6.93 42 65 ;57 43 6.1 232 -43 44 45 3.4 190 -11 45 46 5 213 -4 46 24 8.8 212 0 *data passage station left right up down 0 0 .9 8.7 1.5 1 1.25 .7 5.9 .85 2 .6 0 4.8 .7 3 0 .5 1 2 *data passage station left right up down 0 .85 0 8.7 1.5 4 .9 1.6 3.4 2.2 5 .2 .2 3 1 *data passage station left right up down 4 2.3 1.65 3.4 2.2 7 0 .45 1.5 1.5 8 .6 0 1.2 .7 9 0 .8 1 .5 10 .5 0 .2 .5 11 .3 .3 1.5 .3 *data passage station left right up down 5 1.1 0 3.1 3.4 12 1.55 1.05 2.55 1.25 13 0 .5 .4 2.6 *data passage station left right up down 12 1.55 1.05 2.55 1.25 15 .1 .7 2.9 1.3 16 .85 .85 5.8 .8 *data passage station left right up down 16 .85 .85 5.8 .8 17 0 .7 3.6 1.4 18 .4 0 2.7 1.4 19 .3 1.7 0 1.1 20 .35 0 .6 1.4 21 1.1 .5 1.3 0 22 0 .6 .6 .4 23 0 .3 1 .2 *data passage station left right up down 16 .85 .85 5.8 .8 24 .3 .2 0 1.5 *data passage station left right up down 16 .85 .85 5.8 .8 25 0 .4 1 1 *data passage station left right up down 12 .4 .4 3.8 2.1 26 5 .5 2 1 *data passage station left right up down 12 .4 .4 3.8 2.1 27 1 .3 3 1.5 *data passage station left right up down 27 .3 .75 5.8 2 28 .4 .4 1.3 1.8 29 .3 .5 2 1.8 *data passage station left right up down 28 1.6 0 1.3 1.8 30 .6 .4 13.5 1.8 31 1 .35 6 3.1 32 2.05 0 11.7 2.6 33 .5 1.5 20 1.9 34 2.35 1.75 20 1.7 *data passage station left right up down 33 2.8 1.1 20 1.9 35 .5 1.4 25 2.3 36 2.4 1 25 2.2 37 3.35 0 15 1.5 38 2 4.8 14 2.2 39 2.5 2.5 10.5 2.6 40 1.5 1 5 2 *data passage station left right up down 41 1.35 .9 4 2.5 42 1.2 .7 .7 1.8 ;*data passage station left right up down ;0 .9 0 8.7 1.5 ;43 2.2 .5 5.5 4.5 ;57 0 1.5 3.4 1.0 *data passage station left right up down 45 1 0 4.7 2 46 .2 .3 2.2 .8 24 .2 .3 0 1.5 *END Apr2010 *BEGIN sideA *EXPORT 0 ;rift near big chamber in Godknows *Date 2010.08.12 *CALIBRATE declination 1.92 ;surveyors Ali Neill Pete Eagan Torben Redder 0 1 2.79 292 3 1 2 1.53 287 10 2 3 7.12 237 -7 *data passage station left right up down 0 0 1.4 5.5 1.9 1 .3 1.2 4.5 2.3 2 1 .4 1 1.8 *END sideA *BEGIN GoldiesWay *EXPORT Pt1.0 Pt4.13 Pt3.5 *CALIBRATE declination 1.92 ;surveyors Torben Carmen Chris Binding *EQUATE Pt2.0 Pt1.12 *EQUATE Pt3.0 Pt2.11 *EQUATE Pt4.4 Pt1.3 *EQUATE Pt4.15 Pt1.4 *EQUATE Pt5.25 Pt2.5 *EQUATE Goldies_Extension.7 Pt1.8 *BEGIN Pt1 *EXPORT 0 3 4 8 12 *Date 2010.08.09 0 1 5.89 266.26 -7.50 1 2 3.02 249.05 19.48 2 3 8.07 269.84 2.90 *FLAGS splay 3 3a 2.09 56.66 -23.54 3 3b 4.58 67.59 -28.89 *FLAGS NOT splay 3 4 6.09 260.07 -4.49 *FLAGS splay 4 4a 8.65 52.01 -9.11 *FLAGS NOT splay 4 5 1.15 60.70 16.85 5 6 5.88 261.78 -2.13 6 7 10.19 251.72 -5.18 7 8 4.36 238.96 -25.25 8 9 1.86 217.58 0.23 9 10 6.97 253.21 1.86 10 11 1.11 170.54 -16.23 11 12 12.65 254.48 3.40 12 13 4.15 14.49 -8.32 *FLAGS splay 13 13a 0.30 51.97 0.29 *FLAGS NOT splay 13 14 3.13 252.22 -5.46 14 15 3.26 47.31 11.56 *FLAGS splay 15 15a 5.30 269.34 -37.59 *FLAGS NOT splay 15 16 6.27 63.63 6.92 16 17 7.02 88.85 -7.43 17 8 7.02 93.37 -7.11 *data passage station left right up down 0 1.554 0.758 2.763 1.543 1 0.493 0.503 3.821 1.67 2 0.194 0.597 4.726 1.201 3 0.578 0.872 3.623 0.956 4 2.238 0.617 4.916 1.297 6 0.309 0.691 1.64 1.407 7 0.201 0.404 2.461 1.48 8 0.543 1.257 1.295 1.003 9 0.212 0.412 2.097 1.171 10 0.679 0.232 1.65 2.25 11 0.232 0.679 1.65 2.25 ;Estimated from 10 12 1.101 0.287 1.156 1.431 13 0.785 0.375 1.4 1.047 14 0.344 0.369 1.208 1.415 15 0.343 0.444 0.756 0.682 16 0.292 0.553 1.567 0.743 17 0.793 0.806 4.812 1.989 8 1.257 0.543 1.295 1.003 *END Pt1 *BEGIN Goldies_Extension *EXPORT 7 ;surveyors Alasdair Neill + Santi Urrutia + Simone Sanbento *Date 2011.04.22 *CALIBRATE declination 1.78 1 0 3.38 63 6 2 1 7.6 44 14 3 2 3.99 109 7 4 3 5.9 226 -52 5 3 12.15 32 -10 6 5 7.76 40 12 *FLAGS duplicate 7 6 6.69 280 -6 *FLAGS NOT duplicate *data passage station left right up down 0 0 0.4 1.6 0.3 1 0.5 0.3 0 0.6 2 0 0.6 1.3 1.4 3 1.59 1.35 2.6 1.3 4 1 0.5 1 1.5 *data passage station left right up down 3 1.7 0 2.8 1.6 5 0 0.5 0.5 0.7 6 0 1.17 4.8 0.6 7 1.257 0.543 1.295 1.003 *END Goldies_Extension *BEGIN Pt2 *EXPORT 0 5 11 *Date 2009.08.09 *CALIBRATE declination 1.92 0 1 2.96 256.43 -8.65 1 2 8.82 209.10 7.48 2 3 2.95 253.09 -16.93 3 4 8.31 202.46 3.53 4 5 6.05 192.34 -6.04 5 6 4.31 225.23 -76.28 *FLAGS splay 6 6a 8.21 237.84 -7.63 *FLAGS NOT splay 6 7 10.39 70.54 -11.57 7 8 6.94 63.68 38.70 8 9 9.62 90.47 -2.89 9 10 4.10 81.21 -26.71 10 11 10.22 66.08 -20.01 11 12 6.52 53.47 -6.59 *FLAGS splay 12 12a 3.10 46.81 1.63 12 12b 2.35 97.36 -3.67 *FLAGS NOT splay *data passage station left right up down 0 0.356 0.872 1.651 1.563 1 0.552 0.467 1.906 1.001 2 0.354 0.78 2.356 2.475 3 0.59 0.269 2.836 1.466 4 0.575 0.251 4.633 2.153 5 0.244 0.543 6.106 5.343 6 0.24 0.687 4.528 1.56 7 0.647 1.441 8.713 1.608 8 0.285 0.667 5.024 2.639 9 0.579 0.25 1.6 1.422 10 0.28 0.536 7.203 4.928 11 0.832 1.254 9.606 1.987 12 1.702 1.145 20.325 0.0 *END Pt2 *BEGIN Pt3 *EXPORT 0 5 *Date 2009.08.09 *CALIBRATE declination 1.92 0 1 3.02 177.74 -26.39 1 2 5.51 244.31 -0.54 2 3 10.34 220.26 -3.38 3 4 1.87 165.06 1.50 4 5 7.10 69.99 -1.25 5 6 3.16 210.95 -13.85 *FLAGS splay 6 6a 10.45 73.82 0.76 ;6 6b 11.32 236.87 -1.08 *FLAGS NOT splay *data passage station left right up down 0 0.796 0.803 0.416 1.303 1 0.765 0.929 4.099 1.173 2 1.362 0.395 0.251 1.235 3 1.017 1.714 0.49 0.56 4 1.145 0.521 0.273 0.909 5 0.625 0.291 0.377 0.622 6 0.5 0.762 0.585 0.911 *END Pt3 *BEGIN Pt4 *EXPORT 4 13 15 *Date 2010.08.12 *CALIBRATE declination 1.92 ;surveyors Ali Neill Pete Eagan Torben Redder ;Madam La Guillotine, leading off Godknows 4 5 1.89 54 -17 5 6 6.71 70 -8 6 7 1.5 59 -19 7 8 2.82 23 -9 8 9 2.09 328 7 9 10 3.39 246 1 10 11 .86 280 25 11 12 1.27 9 -13 12 13 .99 317 5; stn from other day 11 14 5.43 246 0 14 15 6.75 230 9 *data passage station left right up down 4 1 .6 4 1 5 .4 0 2.8 1.7 6 .3 .4 4.5 1.3 7 .3 .5 10 .6 8 .4 0 1 .3 9 .4 0 .8 .5 10 .2 .4 .5 .5 11 .4 .6 0 .8 12 .3 .5 .25 0 13 .3 .5 .25 0 *data passage station left right up down 11 .4 .6 0 .8 14 .5 0 2 .5 15 .5 0 2 .5 *END Pt4 *BEGIN Pt5 *EXPORT 25 *Date 2010.08.12 *CALIBRATE declination 1.92 ;surveyors Ali Neill Pete Eagan Torben Redder ;passages to right at climb down into Canyon at end of Goldie's Way 16 17 5.51 24 -34 17 18 5.22 13 -4 17 19 9.1 70 0 ; Porthole Rift 20 21 7.18 62 -49 21 22 6.06 82 0 *FLAGS duplicate 22 18 2.76 10 15 *FLAGS NOT duplicate 18 26 2.14 94 0 26 25 5.05 47 -4 23 24 10.87 70 0 24 25 5.27 - up ;25 = 25 Torben *data passage station left right up down 16 .7 .5 .7 .5 17 .4 .8 4 1.2 18 .5 0 4 2.6 *data passage station left right up down 17 .4 .8 4 1.2 19 .5 .5 2 1 *data passage station left right up down 20 .5 .7 8.2 1.5 21 1.8 .5 10 1.6 22 1.8 .5 10 1.6 18 .5 0 4 2.6 *data passage station left right up down 18 .3 .4 6.3 5.7 26 .4 .4 6 2.3 25 .4 .2 5 0 *data passage station left right up down 23 0 1 3 1.2 24 .4 .2 5 0 25 .4 .4 6 2.3 *END Pt5 *END GoldiesWay *END GodKnows *BEGIN RealSimaBaz *EXPORT pt1.0 pt2.31 pt3.7 *EQUATE pt2.39 pt1.15 *EQUATE pt1.0 pt3.9 *EQUATE pt2.0 pt4.0 *EQUATE pt4.12 pt5.0 *EQUATE pt2.12 TomsAntic.32 *BEGIN pt1 *EXPORT 0 15 ; 22nd April 2011 ; Carmen Smith + Patrick Warren ; notes : Carmen ; instruments : Patrick ; patrick's tandem, Pete Eagan's disto *Date 2011.04.22 *CALIBRATE declination 1.78 1 0 5.00 035 +13 2 1 14.40 068 +2 3 2 8.60 064 -1 4 3 3.92 104 -1 5 4 8.14 065 -1 6 5 3.91 061 -8 7 6 1.96 147 -20 8 7 9.37 050 0 9 8 3.51 117 -5 10 9 3.66 055 +2 11 10 5.13 067 -1 12 11 1.64 185 +1 13 12 5.14 057 +8 14 13 3.94 094 -37 15 14 5.98 069 -16 *data passage station left right up down 0 0.6 0.3 0.4 0.6 ; LRUD data taken from Torben's survey 1 0.5 1.3 0.9 0.8 2 0.9 1.8 0.6 0.2 3 1.2 1.0 1.0 0.3 4 0.9 1.0 0.6 0.3 5 1.2 0.8 2.1 0.2 6 0.6 1.0 1.5 0.6 7 0.8 0.0 1.0 1.2 8 0.0 1.3 0.8 1.3 ; recorded R as 0.3 in notes but passage more than 30cm wide! 9 0.9 0.0 1.0 1.6 10 1.0 0.3 1.6 1.4 11 0.0 1.0 1.0 1.3 12 1.1 0.0 1.3 1.2 13 0.5 1.4 1.9 0.4 14 0.5 1.0 6.0 0.7 15 0.7 0.4 1.8 0.7 ; marked station on top boulder past little aven *END pt1 *BEGIN pt2 *EXPORT 0 12 31 39 ;surveyors Carmen Smith & Chris Binding *DATE 2012.04.05 *CALIBRATE declination 1.67 0 1 7.55 323 16 1 2 13 37 11 2 3 13.62 80 -14 3 4 5.70 74 -30 4 5 26.15 75 1 5 6 8.53 72 1.5 6 7 11.7 90 -10.5 7 8 6.6 64 5 8 9 3.85 77 -10 9 10 6.55 78 -4 10 11 27.9 60 1 11 12 21.15 60 1.5 12 13 17 90 15 12 14 5.7 134 -14 14 15 3 212 5 15 16 5.05 82 -7 16 17 2.65 151 -8 17 18 3.03 245 3 18 19 4.65 202 1.5 19 20 3.73 222 -11 20 21 12.49 80 0 21 22 2.42 64 -5 22 23 4.75 90 0 23 25 7.9 82 1 25 26 5.25 48 2 26 27 2.95 65 3.5 27 28 6.8 44 -7 28 29 5.6 69 -3 29 30 3.13 59 2 30 31 2.15 127 1.5 31 32 7.9 41 -2 32 33 3.38 150 -5 33 34 3.97 57 1 34 35 3.65 178 -6 35 36 4.69 65 -2 36 37 3 98 -8 37 38 2.25 83 -9 39 38 1.9 214 -20 *data passage station left right up down 0 2 0 5 1 1 0 2.5 5 1.5 2 0 4 4 4 3 2 1.5 5 3 4 0 .75 20 1 5 2 .75 12 2 6 0 2 14 2.25 7 1.2 0 1 .5 8 4 2 30 1.4 9 .75 .75 0 .7 10 .25 .75 1 1 11 2 2 15 .5 12 .5 4 15 1 13 .1 .1 .1 .1 *data passage station left right up down 12 17 10 15 1 14 .5 1 2 1.5 15 1 1 2.5 1.5 16 .5 2.65 1.5 .75 17 0 1.5 4.5 1.5 18 .5 0 2 1.5 19 .5 .5 1.5 1.2 20 1 1 2.5 1.15 21 .2 .1 4 1.5 22 0 .3 4 1.5 23 .2 .3 3 1.5 25 .3 0 1.5 1.5 26 0 .2 1.5 1.5 27 0 .3 2 1.5 28 0 .4 1 1.2 29 .3 0 2.5 .4 30 .1 2 2 .2 31 2 0 .4 1 32 .1 4 .6 .2 33 4 .5 .5 .4 34 0 4 .3 .3 35 .4 .1 .4 .8 36 0 .4 .4 .4 37 .3 0 .3 .4 38 .4 0 .3 .2 39 .6 .2 2 .5 *END pt2 *BEGIN pt3 *EXPORT 7 9 ;downstream Sima Baz streamway ;surveyors A Neill, D Bell, P Eagen *DATE 2012.04.05 ;Assumed date, may be a few days out *CALIBRATE declination 1.67 1 0 13.39 33 -1 1 2 7.97 263 3 2 3 7.9 238 30 ;looking into passage at top of unclimbed climb 2 4 5.53 254 0 4 5 4.25 238 1 5 6 4.76 253 2 6 7 2.51 240 1 7 8 3.7 37 0 8 9 7.51 251 4 *data passage station left right up down 0 1.5 3.5 0.7 0 1 0.5 1.8 0.6 0.2 2 0.1 1.4 4.8 0.7 3 0.5 0.5 1.5 0.5 *data passage station left right up down 2 0.1 1.4 4.8 0.7 4 0.9 0.7 1.35 0.6 5 0.4 0 0.6 0.7 6 0.3 0 0.2 1.1 7 0.45 0.45 0.35 1.5 *data passage station left right up down 7 0.45 0.45 0.35 1.5 8 0.4 1.2 0.1 0.6 8 1.2 0.4 0.1 0.6 9 0.8 0.9 0.2 0.5 *END pt3 *BEGIN pt4 *EXPORT 0 12 ;downstream Sima Baz streamway ;surveyors Carmen Smith Chris Binding *DATE 2012.04.06 *CALIBRATE declination 1.67 0 1 2.85 172 -4 1 2 7.57 257 10 2 3 3.93 262 -6 3 4 1.83 235 2 4 5 1.77 315 2 5 6 3.5 226 2 6 7 4.05 185 5 7 8 13.45 257 3 *FLAGS duplicate 9 8 3.82 268 5; dogleg back in passage to get long leg *FLAGS not duplicate 9 10 25.15 257 1 10 11 6.26 257 8 11 12 15.55 232 .5 12 13 6.45 260 0 13 14 4.15 271 5 14 15 6.66 240 3 15 16 8.10 258 5 16 17 7.35 260 9 17 18 7.3 270 -1 18 19 5.7 255 4 19 20 8.90 342 -1 20 21 10 270 1 19 22 10.9 165 2 *data passage station left right up down 0 1.5 3 4 .5 1 2.5 8 12 .5 2 .4 0 10 1 3 1 0 10 1 4 0 2.5 11 1 5 2.5 0 11 1 6 0 1 10 .3 7 0 3 11 1 8 2 2 30 1 9 0 3 30 1 10 0 .75 8 1 11 2.5 2 4 1 12 2 4 10 1 13 1 1 1 .5 14 .7 0 4 .5 15 4 .5 30 .2 16 0 .35 5 .4 17 0 .25 4 1 18 3 2.5 2 .2 19 1 1 2 .1 20 1 1 0 .4 21 1 1 .6 .6 *data passage station left right up down 19 1 1 2 .1 22 1 1 .6 .6 *END pt4 *BEGIN pt5 *EXPORT 0 ;downstream Sima Baz streamway ;surveyors A Neill, D Bell, P Eagan *DATE 2012.04.05 ;Assumed date, may be a few days out *CALIBRATE declination 1.67 1 0 3.44 121 -30 2 1 2.40 060 -32 3 2 6.0 327 0 4 3 1.9 012 -6 5 4 2.38 076 3 6 5 5.1 324 -16 *data passage station left right up down 0 1.5 1.5 4 1 1 0.75 0.75 2.6 1.4 2 0 0.9 7.8 1.5 3 0.9 0.4 0.2 1.0 4 0 0.9 0.2 1.4 5 0.7 0.5 7.0 2.9 6 1.3 0.7 1.3 1 *END pt5 *BEGIN TomsAntic *EXPORT 32 ;downstream Sima Baz streamway ;surveyors Carmen Smith Chris Binding Tom Howard *DATE 2012.04.06 *CALIBRATE declination 1.67 0 1 13.5 82 -2 1 2 5.1 51 1 2 3 8 75 -6 3 5 4.2 65 4 5 6 18 86 2 6 7 5.3 75 -2 7 8 5.1 12 2 8 9 1.6 257 -24 9 10 5.8 314 -30 9 11 15.6 77 11 11 12 11.65 82 0 3 25 4.67 182 -75 25 26 1.9 222 -17 26 27 5 245 0 27 28 5 238 2 28 29 9 232 2 29 30 1.75 292 1 30 31 7.3 221 -1 31 32 .73 31 -24 *END TomsAntic *END RealSimaBaz *BEGIN PullUpPassage *EXPORT pt1.0 pt2.4 pt3.2 pt4.1 *EQUATE pt1.6 pt2.0 *EQUATE pt1.4 pt3.0 *EQUATE pt3.3 pt4.0 *EQUATE pt4.3 pt5.0 *calibrate declination 2.08 *BEGIN pt1 ;PITCH UP OUT OF QUADRAPHENIA UP PITCH TO END OF TRAVERSE AFTER FLASHBULB HALL ;Date 2009/08/07 ;surveyors: Torben Redder Alasdair Neill Santi Urrutia *EXPORT 0 4 6 *FLAGS DUPLICATE 0 1 40.75 86.09 -1.69 *FLAGS NOT DUPLICATE 1 2 3.24 131.09 77.58 2 3 7.16 203.24 10.00 3 4 5.71 243.86 -42.02 4 5 8.26 260.38 2.68 5 6 5.51 245.45 -6.17 6 7 3.52 300.34 17.85 7 8 6.08 266.26 8.27 *data passage station left right up down 2 0.289 0.9 1.081 0.716 3 0.76 0.9 0.283 1.16 4 0.43 1.005 3.646 1.087 5 0.85 0.651 1.973 0.317 6 0.297 1.22 13.954 2.868 7 0.447 0.308 1.888 1.64 8 0.446 0.234 0.891 1.38 *END pt1 *BEGIN pt2 *EXPORT 0 4 0 1 3.34 259.17 16.03 1 2 5.52 247.74 -17.23 2 3 3.29 207.11 -15.06 3 4 3.78 193.88 16.58 4 4a 5.48 17.86 1.10 4 4b 2.03 143.75 0.57 4 4c 5.41 321.28 3.08 4 4d 2.88 235.96 5.48 *data passage station left right up down 0 0.206 1.282 2.894 2.854 1 0.388 0.212 1.475 1.471 2 0.499 0.647 4.151 1.287 3 4.629 1.147 20.76 0.854 4 2.315 8.434 4.647 1.211 *END pt2 *BEGIN pt3 *EXPORT 0 2 3 0 1 4.37 219.84 27.47 1 2 4.61 199.51 -0.76 2 3 5.19 211.46 19.49 *data passage station left right up down 0 0.639 1.258 3.377 1.412 1 0.799 0.226 1.7 1.239 2 0.61 0.779 1.709 1.844 3 0.872 0.86 0.344 0.781 *END pt3 *BEGIN pt4 *EXPORT 0 1 3 ;surveyors: Alasdair Neill Santi Urrutia Lloyd Cawthorne ;date: 8th Aug 09 1 0 6.92 39 16 1 2 27.8 72 -5 2 3 11.08 84 -5 *data passage station left right up down 0 0.872 0.86 0.344 0.781 1 0 3.1 3.4 1.9 *data passage station left right up down 1 3.1 0 3.4 1.9 2 0 1.05 3.44 1.79 3 1.3 .77 4.2 2.9 *END pt4 *BEGIN pt5 *EXPORT 0 ;Date 2009/08/09 0 1 6.94 87.38 6.53 1 2 2.75 102.64 7.52 2 3 4.41 208.25 -9.13 3 4 3.32 216.64 15.70 *FLAGS SPLAY 4 4a 4.06 86.83 2.72 4 4b 0.78 44.40 2.95 4 4c 2.80 162.77 10.78 4 4d 2.16 253.72 3.30 4 4e 2.41 218.78 7.54 4 4f 3.54 177.56 6.30 *FLAGS NOT SPLAY 4 5 7.36 92.52 0.29 5 6 5.50 65.40 -8.66 6 7 7.67 93.16 -1.29 7 7a 4.28 227.54 7.32 7 8 7.25 94.25 -0.54 8 9 4.93 81.43 -0.41 9 10 7.08 69.93 6.82 9 11 10.69 240.97 -2.24 *data passage station left right up down 0 0.556 0.579 1.668 2.959 1 0.283 0.482 0.348 0.905 2 1.221 1.527 0.33 1.133 3 0.335 0.866 0.923 0.408 4 0.799 2.114 1.347 0.754 5 1.061 0.369 5.052 1.175 6 0.392 1.178 0.462 0.552 7 0.376 1.622 4.934 0.609 8 0.849 0.527 0.814 0.818 9 0.29 1.045 1.447 1.615 *END pt5 *END PullUpPassage *BEGIN PullUpPassageMaze *EXPORT pt1.1 pt1.6 pt3.3 *CALIBRATE declination 2.08 *EQUATE pt1.1 pt2.0 *EQUATE pt1.27 pt3.0 *EQUATE pt3.2 pt4.0 *EQUATE pt4.12 pt5.0 *EQUATE pt5.6 pt6.0 *EQUATE pt6.0 pt7.0 *EQUATE pt5.5 pt8.0 *EQUATE pt3.1 pt9.0 *EQUATE pt9.3 pt10.0 *BEGIN pt1 *EXPORT 1 6 27 ;Maze off PULL-UP PASSAGE ;surveyors: Alasdair Neill Santi Urrutia Lloyd Cawthorne ;date: 8th Aug 09 1 4 4.03 315 -43 4 5 9.61 270 5 5 6 2.4 304 -7; 2.4 from 7/8/09 6 7 16.5 269 1 7 8 7.46 257 12 8 9 2.83 300 -2 9 10 4.59 253 2 10 11 2.54 199 -4 11 12 9.39 264 0 12 13 4.2 253 5 13 14 7.86 238 1 14 15 2.5 238 0 15 16 6.8 258 -5 16 17 4.41 97 2 17 18 2.69 76 0 18 19 6.16 65 3 19 20 5.9 87 -12 20 21 3.11 100 -14 21 22 4.58 97 5 11 23 7.03 93 2 23 24 4.56 83 0 24 25 6.55 100 -3 25 26 1.72 149 7 26 27 10.69 213 0 27 28 5.79 82 -10 28 29 2.73 63 0 29 30 3.65 0 17 30 31 8.12 88 -4 31 32 5.12 94 -4 32 33 4.7 120 -16 33 34 2.31 154 24 34 35 2.99 199 1 35 36 3.67 238 -50 36 37 4.05 261 19 37 38 4.33 281 11 38 39 3.72 262 3 39 40 2.14 281 -2 40 41 3.78 267 6 41 42 2.2 283 1 33 43 7.55 90 -25 43 44 2.97 75 -24 44 45 5.13 77 57 45 46 7.49 76 3 46 47 4.49 86 -8 47 48 4.12 90 -1 45 49 10.38 300 -1 49 50 3.81 18 -55 50 1A 2.69 114 20; 1 = 1A *EQUATE 1 1A ;BitOff2 (From Easter 2010a) ;*CALIBRATE declination 1.92 ;Date 2010.03.29 ;surveyors Ali Neill Peter Eagan 16 16A 1 - up 16A 16B 5 280 -3 *data passage station left right up down 16A .3 .3 .1 .1 16B .3 .3 .1 .1 ;END BitOff2 *data passage station left right up down 1 0 3.1 3.4 1.9 4 .77 2 5.4 .4 5 0 5.6 9.7 1.6 6 1.7 5.9 6 1.5 7 1.1 1.68 4.5 0.4 8 .2 2 2.2 .5 9 .75 0 2.5 .6 10 .76 .6 0 .7 11 .4 .5 2.6 .76 12 .6 0 2.4 .7 13 .3 .6 2.3 1.1 14 0 .8 2 .9 15 0 .9 1.2 .9 16 1.2 .6 1.6 .7 *data passage station left right up down 16 .6 1.2 1.6 .7 17 .5 0 2 .8 18 0 .6 3.1 1.2 19 .6 0 2.7 1.3 20 .4 0 3.2 .7 21 .3 .4 4 .8 22 .9 0 2.6 .6 *data passage station left right up down 11 0.5 .4 2.6 0.76 23 0 .8 2.4 .6 24 0 .8 2 .6 25 0 .7 2 1.3 26 1 1.5 4.1 1.4 27 2.3 1.9 10 2.2 28 .5 0 3.1 1.2 29 .71 .5 .7 .6 30 1.35 3 24 1.4 31 1.2 .8 5.3 .9 32 .4 .7 1.3 1.4 33 1.3 1.2 3 .4 34 .4 .5 2.4 .87 35 .4 .5 1.8 .9 36 .61 .4 2.9 0 37 0 .62 2.8 .5 38 .6 0 2 1.3 39 0 .4 2 1.7 40 .3 .1 1.4 1.5 41 0 .4 1.2 1.5 42 .6 0 3.5 1.5 *data passage station left right up down 33 1.3 1.2 3 .4 43 .38 1.33 6.2 1.6 44 0 1.2 5.5 1.6 45 1.9 .8 5.1 1.53 46 0 .8 3.4 .7 47 .26 .73 2.3 .71 48 .3 .3 2 0 *data passage station left right up down 45 .8 0 3.4 .7 49 0 1 .6 .8 50 0 1.9 4.2 1.3 1A 3.1 0 3.4 1.9 *END pt1 *BEGIN pt2 *EXPORT 0 ;Date 2009/08/08 0 1 15.29 256.80 11.90 1 2 7.40 277.06 -2.46 *FLAGS SPLAY 2 2a 2.32 149.11 7.25 2 2b 7.97 206.88 1.29 2 2c 5.52 250.63 0.94 2 2d 2.63 321.41 4.58 2 2e 3.63 60.43 12.63 *FLAGS NOT SPLAY *data passage station left right up down 0 0.439 3.344 3.169 1.743 1 0.85 1.197 0.437 1.651 2 6.714 5.754 0.0 0.0 *END pt2 *BEGIN pt3 *EXPORT 0 1 2 3 ;Date 2009/08/08 0 1 4.03 220.55 -47.33 1 2 7.03 213.05 -19.06 2 3 2.44 254.03 33.49 3 4 5.92 273.43 18.84 4 5 3.23 262.53 -7.22 *data passage station left right up down 0 2.29 1.558 7.237 1.047 1 0.295 0.245 0.73 0.884 2 1.08 1.643 0.634 1.443 4 0.212 0.368 0.989 1.042 3 0.328 1.544 4.498 1.482 *END pt3 *BEGIN pt4 *EXPORT 0 12 ;Date 2009/08/09 0 1 5.77 74.59 14.11 1 2 3.71 129.45 15.86 *FLAGS SPLAY 2 2a 0.26 234.99 5.91 *FLAGS NOT SPLAY 2 3 4.15 65.22 22.96 3 4 5.41 102.66 -5.06 *FLAGS SPLAY 4 4a 0.22 49.08 -64.63 4 4b 2.96 218.06 -64.63 4 4c 0.73 340.79 -64.63 *FLAGS NOT SPLAY 4 5 4.77 74.80 -0.05 5 6 7.30 82.88 -26.18 6 7 5.71 241.16 -0.27 7 8 2.87 248.77 -27.80 8 9 4.97 240.95 0.58 9 9a 10.35 258.92 1.12 9 10 3.82 124.34 17.25 *FLAGS SPLAY 10 10a 1.03 22.85 -9.66 *FLAGS NOT SPLAY 10 10b 5.67 204.23 14.09 10 11 3.71 95.37 34.64 11 12 3.09 77.13 28.32 12 13 3.21 83.29 51.90 13 14 8.13 78.56 14.35 14 15 4.50 59.92 32.07 15 16 8.69 288.96 86.53 *data passage station left right up down 0 1.482 1.003 0.635 1.465 1 0.632 0.759 4.463 1.635 2 1.258 2.012 0.809 1.465 3 0.545 1.657 2.248 0.888 4 0.0 0.0 0.0 0.807 5 0.468 0.239 1.901 0.998 6 0.862 0.972 1.727 1.964 7 0.65 2.083 0.367 1.639 8 0.603 0.371 0.457 1.015 9 0.384 0.9 0.719 1.414 10 5.566 0.555 2.547 1.185 11 0.276 0.217 1.138 1.198 12 0.201 0.634 1.782 1.283 13 1.28 0.205 2.75 1.917 14 0.536 0.227 1.911 0.807 15 0.639 0.307 0.0 0.0 16 0.0 0.0 0.0 1.235 *END pt4 *BEGIN pt5 *EXPORT 0 5 6 ;Date 2009/08/09 0 1 1.27 215.01 -30.38 1 2 6.83 254.29 -10.69 2 3 4.76 270.61 31.33 3 4 3.39 251.63 -31.96 4 5 5.23 278.22 -20.04 *FLAGS SPLAY 5 5a 1.00 184.64 1.49 5 5b 2.55 244.69 -0.42 *FLAGS NOT SPLAY 5 6 4.09 214.01 5.72 *FLAGS SPLAY 6 6a 1.18 302.47 -0.34 *FLAGS NOT SPLAY 6 7 7.11 81.59 12.61 *data passage station left right up down 0 0.715 0.203 2.872 1.082 1 0.41 0.292 0.388 0.908 2 0.219 0.777 5.77 1.429 3 0.335 0.286 3.267 1.259 4 0.214 0.569 5.412 1.471 5 1.369 1.004 6.136 1.71 6 1.318 0.906 6.495 0.923 *END pt5 *BEGIN pt6 *EXPORT 0 ;Date 2009/08/09 0 1 3.39 264.41 24.77 1 1a 0.81 174.14 3.58 1 2 2.24 283.34 42.95 1 3 4.707 211.24 -6.23 *data passage station left right up down 0 0.313 0.805 4.775 0.908 1 4.707 0.259 3.618 1.312 *END pt6 *BEGIN pt7 *EXPORT 0 ;Date 2009/08/09 0 1 1.44 43.24 -1.22 1 2 4.88 205.53 8.74 *data passage station left right up down 0 1.384 0.895 5.232 0.856 1 0.438 1.203 1.271 0.63 *END pt7 *BEGIN pt8 *EXPORT 0 ;Date 2009/08/09 0 1 2.09 70.26 -32.50 1 2 3.16 18.25 15.01 *FLAGS SPLAY 2 2a 2.42 270.76 3.29 2 2b 3.16 21.74 11.91 2 2c 7.41 88.61 -9.58 *FLAGS NOT SPLAY *data passage station left right up down 0 0.768 1.056 6.021 1.737 1 0.857 0.287 0.627 1.165 2 4.565 4.761 0.0 0.0 *END pt8 *BEGIN pt9 *EXPORT 0 3 ;Date 2009/08/09 0 1 1.68 280.97 -3.78 1 2 2.57 256.13 13.11 2 3 2.72 258.81 48.02 *FLAGS SPLAY 3 3a 0.95 89.10 -8.66 3 3b 1.51 275.86 1.84 *FLAGS NOT SPLAY 3 4 9.81 261.35 -15.80 *data passage station left right up down 0 0.284 1.329 0.912 1.024 1 0.456 0.245 7.54 1.056 2 0.215 0.205 5.494 1.383 3 0.325 1.819 3.709 1.313 *END pt9 *BEGIN pt10 *EXPORT 0 ;Date 2009/08/09 0 1 54.34 215.57 85.82 *END pt10 *END PullUpPassageMaze *EQUATE BeyondFlashbulbNorth.7 VampireGallery.0 *BEGIN BeyondFlashbulbNorth *EXPORT 0 7 10 11 ;surveyors: Alasdair Neill Santi Urrutia Carolina Smith de la Fuente Paul Clement-Walker *date 2009.08.10 *calibrate declination 2.08 0 1 4.81 280.18 -34.10 *FLAGS SPLAY 1 1a 1.80 152.12 -5.30 1 1b 0.98 287.66 1.93 1 1c 3.22 99.22 -4.41 *FLAGS NOT SPLAY 2 1 14.66 136.20 -84.61 *FLAGS SPLAY 2 2a 0.47 2.06 3.73 2 2b 0.34 177.67 2.24 *FLAGS NOT SPLAY 3 2 2.05 110.62 -34.65 3 3a 1.42 106.59 -3.93 3 3b 0.86 255.92 -0.31 4 3 1.85 93.90 -7.78 4 4a 2.74 242.67 -1.17 4 4b 3.50 279.44 0.83 4 5 6.08 252.21 53.48 5 5a 2.49 86.08 -0.27 5 5b 2.83 187.08 4.20 5 5c 3.55 23.31 4.56 5 6 10.24 231.91 9.49 6 7 1.86 328.80 -0.11 7 7a 4.80 314.01 74.03 7 8 5.76 231.29 6.99 8 9 2.43 206.23 -8.49 9 10 4.51 197.94 1.49 10 11 4.70 110.28 -21.44 *data passage station left right up down 0 0.427 0.329 1.563 1.759 1 2.248 1.198 10.777 0.46 2 0.622 0.734 0.0 0.0 3 0.296 0.346 0.0 0.0 4 1.024 0.333 0.0 0.0 5 1.437 4.264 4.346 0.919 6 0.327 3.039 3.055 0.753 7 2.19 1.53 2.698 1.125 8 1.613 2.094 4.002 1.125 9 0.23 2.611 5.004 1.363 10 1.178 1.14 3.245 1.376 11 1.32 6.81 5.09 0.48 *END BeyondFlashbulbNorth *BEGIN VampireGallery *EXPORT 0 23 ;surveyors: Alasdair Neill Santi Urrutia Carolina Smith de la Fuente Paul Clement-Walker *date 2009.08.10 *calibrate declination 2.08 0 1 7.09 43 -3 1 2 5.11 123 0 2 3 3.55 76 7 3 4 3.93 95 0 3 5 6.81 5 10 5 6 3.97 28 -17 6 7 5.7 310 1 7 8 5.53 5 11 8 9 4.25 46 10 9 10 6.51 288 28 10 11 9.95 162 -7 11 12 12.94 221 -3 10 13 21.87 48 0 13 14 37.87 50 -1 14 15 8.49 78 -3 15 16 13.76 56 0 16 17 8.93 324 5 17 18 4.24 69 29 18 19 10.34 94 0 18 20 15.78 266 -7 20 21 4.38 261 11 21 22 4.86 280 10 22 23 13.6 248 -2 16 24 11.4 91 -2 24 25 7.48 40 0 25 26 4.27 29 1 26 27 4.52 292 -5 27 28 2.96 340 -4 28 29 7.98 269 3 29 30 1.96 340 -10 30 31 3.75 43 0 31 32 3.67 90 3 32 33 3.64 80 0 33 34 4.33 32 -4 34 35 3.12 45 -7; marked 35 conts through stal *data passage station left right up down 1 0 3.5 3.5 1 2 1.8 2 3.1 1 3 1.1 .7 2.1 1.3 4 0 .5 1.5 .5 *data passage station left right up down 3 1.1 .7 2.1 1.3 5 0 3 3.2 2.2 6 2 1.89 5 1.2 7 0 1.4 1.8 1.3 8 0 2.4 4.3 2.2 9 9.9 2.35 1.6 2.9 10 8.1 10 1.5 0 11 4.28 3.1 1.8 1.5 12 2.5 1.9 2.1 1.3 *data passage station left right up down 10 10 8.1 1.5 0 13 1.8 5.3 1.9 0 14 1.3 4.5 2.8 1.8 15 5.1 2.5 1.3 1.3 16 3.1 4.2 3.3 2.2 17 3.8 3.4 3.4 2 18 0 2.1 1 1.2 19 .4 .5 .6 0 *data passage station left right up down 18 2.1 0 1 1.2 20 4.8 2.6 3.2 .8 21 1.2 2.6 1.9 1.9 22 3.3 3.4 2.8 2.1 23 2.6 3.74 2.74 3.64 *data passage station left right up down 16 2.2 0 .7 1.8 24 2.24 0 .7 1.8 25 1.2 1 .7 .2 26 1.2 .7 .7 0 27 .7 1.3 .5 0 28 1.8 1.5 .7 .7 29 .7 3 1.5 .6 30 1.2 1.1 0 .5 31 .9 .7 0 .5 32 .8 1.1 .9 .4 33 .2 .5 .9 .7 34 .6 .3 .9 .5 35 0 .8 1 .6 *END VampireGallery *EQUATE VampireGalleryExtension.0 VampireGallery.23 *BEGIN VampireGalleryExtension *EXPORT 0 *CALIBRATE declination 1.92 *Date 2010.04.08 ;surveyors Alasdair Neill Torben Pete smith 0 1 4.02 325 31 1 2 3.1 053 43 2 3 5.53 222 8 3 4 11.27 233 -1.5 4 5 14.2 241 1 5 6 11 235 2.7 2 7 17.34 55 4 *data passage station left right up down 0 2.6 3.74 2.74 3.64 1 1 1 0.5 0.5 2 2 3 1.5 1.5 3 1.5 1.6 0.8 0.1 4 0.8 1.8 1 0.3 5 1.8 0.5 0.6 0.3 6 0.7 0.47 0.1 0.1 *data passage station left right up down 2 3 2 1.5 1.5 7 0.5 0.5 0.5 0.5 *END VampireGalleryExtension *EQUATE BeyondFlashbulbNorth.10 DogSeries.Aug09_Resurvey.36 *BEGIN DogSeries *EXPORT Aug09_Resurvey.36 *EQUATE Aug09_Resurvey.46 Mar10_Resurvey.1 *EQUATE Aug09_Resurvey.43 Traverse.9 *EQUATE Aug09_Resurvey.44 CarolsCrawl.44 *BEGIN Aug09_Resurvey *EXPORT 36 43 44 46 ;surveyors: Ali Santi Carol Paul Clement-Walker ;passage name: Dog Series ;date: 10th Aug 09 *CALIBRATE declination 2.08 36 37 6.49 277 -4 37 38 6.28 237 -4 38 39 8.12 252 -3 39 40 5.34 256 3 40 41 12.57 277 22 39 42 9.97 43 32 42 43 6.16 302 30 43 44 3.91 301 19 44 45 16.18 272 4 45 46 9.68 273 -2 *data passage station left right up down 36 5.6 2 4.9 1.6 37 6.2 0 4.8 1.9 38 6.9 4.5 4.2 0 39 5.3 6.7 5.9 0.8 40 3 4 4.7 1.3 41 1.3 .6 .8 0 *data passage station left right up down 39 1.3 0 7 1.3 42 1.3 0 7 1.3 43 1.2 3 4.2 3.2 44 0.8 3.7 4.1 1.6 45 2.5 1.7 2.1 0.9 46 0 2.85 1.67 1.43 *END Aug09_Resurvey *BEGIN Mar10_Resurvey *EXPORT 1 *CALIBRATE declination 1.92 *Date 2010.03.30 ;surveyors Jenny Corrin, Carol Smith, Lank Mills, Peter Eagan 1 2 7.49 293 -23;1=Slippy Slide 2 3 4.76 235 -23; 3=Agincourt Corner 3 4 11.9 313 15; 4=Dog's Bollocks 4 5 16.05 46 4 5 6 6.67 26 7 6 7 6.07 335 9 7 8 9.68 69 11 4 9 4.12 40 3 9 10 12.68 310 20 10 11 2.88 303 0 11 12 9.84 260 1 7 13 6.37 310 17 13 14 7.83 233 0 14 15 5.16 295 -2; 15=aven 9.2m 15 15a 9.2 - up 13 16 8.75 47 0 16 17 5.03 72 1 16 18 5.79 286 3 4 19 1.68 192 7 19 20 13.03 245 -5 20 21 6.54 274 29 21 22 11.94 31 0 22 23 8.1 45 26 22 24 6.76 273 -1 24 25 6.38 259 -3 25 26 6.68 262 0 26 27 14.17 233 -1 27 28 10.84 251 2 28 29 11.49 301 2 29 30 4.65 167 -16 30 31 15.81 259 3 31 32 3.93 272 -4 32 33 8.55 252 1 33 34 7.75 301 10 34 35 5.49 346 -2 35 36 12.7 260 3 29 37 11.95 75 3 40 39 9.38 276 3 39 38 5.76 205 -1;38=squeeze over boulder 38 37 4.87 204 1 42 41 9.37 77 -2 21 41 2.77 219 5 19 43 17.73 211 -17 43 44 4.89 237 -5 44 45 9.31 92 -8 45 46 11.47 89 -5 46 47 7.0 214 5 47 48 9.13 267 5 46 49 2.49 36 6; 46=Manhattan Junction 49 50 7.93 95 -3 50 51 5.21 57 -2 51 52 6.41 67 23 52 53 3.0 3 -3 53 54 8.3 256 -6 54 55 9.36 261 -1 55 46 6.62 197 -12 55 56 3.75 300 18 56 57 5.52 33 7 57 58 6.0 15 7 58 59 4.03 7 3 59 60 3.29 94 21 60 1 6.79 103 24 *data passage station left right up down 1 0 4 1.8 1.3 2 .8 8 4.9 1.5 3 0 2.8 1.3 1.4 4 0 9.2 4.5 1.5 5 3.7 4.4 4 1.5 6 2.8 2.6 3.6 2.6 7 7.7 7.7 2.5 1.5 *data passage station left right up down 4 0 9.2 4.5 1.5 9 4.9 10.96 4.23 0 10 1.3 2.7 0.4 .4 11 1.2 0.2 .2 .4 *data passage station left right up down 7 7.7 7.7 2.5 1.5 13 6.37 1.7 .7 .7 14 4.3 1.2 .5 .4 *data passage station left right up down 13 1.7 6.37 .7 .7 16 1.6 1.6 .7 .5 *data passage station left right up down 4 9.2 0 4.5 1.5 19 1.4 3.6 2.8 1.8 20 .6 2.8 5.0 1.5 21 4.6 1.1 1.3 1.2 22 3.1 1.3 20.39 .8 *data passage station left right up down 22 3.1 1.3 20.39 .8 24 .7 1.9 1 1.9 25 0 1 2.8 1.3 26 .8 0 1.2 1.4 27 .7 1.8 1.2 1.2 28 5.3 3.6 .9 .3 29 4.65 1.6 .9 2.2 30 0 3.4 2.3 1.5 31 .7 3.6 1.2 1 32 1.8 0 1.5 1.9 33 2 2.9 1.6 1.6 34 1.3 5 .4 1.0 35 1.6 .2 .4 0 *data passage station left right up down 29 1.6 4.65 .9 2.2 37 1.2 0 .3 .2 ;Was missing. These numbers copied from stn 39 38 .4 .2 .2 .4 39 1.2 0 .3 .2 40 1.0 1.4 7 1.5 *data passage station left right up down 21 1.1 4.6 1.3 1.2 41 .3 .3 .4 .3 42 .2 .2 .2 .2 *data passage station left right up down 19 1.4 3.6 2.8 1.8 43 0 3 2.5 1.8 44 3.0 2.5 5 1.6 45 3.2 0 7 1.9 46 2 1.4 3 1.6 47 2.5 .5 1.7 1.8 48 2 0 1.8 2 *data passage station left right up down 46 1.4 2 3 1.6 49 0 4.6 2.5 1.6 50 .8 0 3.2 1.6 51 0 .8 3.4 1.5 52 1 1 .7 1.2 53 1.4 0 .3 .2 54 0 3 2.5 1.5 55 1.2 1.2 1.5 1.5 56 0 1.7 2 1.6 57 3.35 0 7.6 1.9 58 1.6 0 2.9 1.5 59 .7 2.3 7 1.2 60 3.2 0 9.6 1.4 1 4 0 1.8 1.3 *data passage station left right up down 55 1.2 1.2 1.5 1.5 46 1.4 2 3 1.6 *END Mar10_Resurvey *BEGIN Traverse *EXPORT 9 *CALIBRATE declination 1.92 *Date 2010.04.01 ;surveyors Ali Neill, Peter Eagan 0 1 8.88 230 4 1 2 8.73 108 1 2 3 5 143 3 3 4 3.69 118 0 1 5 10.79 250 1 5 6 13.75 221 0 6 7 5.43 247 -7 0 8 6.92 335 1 8 9 8.19 290 -18 10 7 1.73 75 33 11 10 10.82 37 26 *data passage station left right up down 0 2 2.2 1.6 1.8 1 4 0 1 2 2 2.5 3.2 0.7 0 3 1.3 0.9 0.3 0 4 2 0.3 0.3 0.2 *data passage station left right up down 1 1.3 0.8 1.2 1.3 5 0.4 1.8 1 0.3 6 0.3 1.1 0.4 1.1 7 1 1 1.5 1.2 10 .9 1 1.5 1.8 11 .6 .7 3 2 *data passage station left right up down 0 2.2 2 1.6 1.8 8 2.6 2 2.4 7.2 9 2 4 5 2 *data passage station left right up down 7 1 1 1.5 1.2 *END Traverse *BEGIN CarolsCrawl *EXPORT 44 *CALIBRATE declination 1.92 *Date 2010.04.04 ;surveyors Peter Smith Peter Eagan 44 1 4.12 50 14 1 2 6.71 36 12 2 3 3.55 52 3 3 4 4.59 107 -4 4 5 1.73 58 6 5 6 6.86 94 -2 6 7 .81 185 -5 7 8 7.69 88 2 8 9 3.4 - down *data passage station left right up down 44 .3 1 4 1.2 1 .7 0 1.8 .5 2 .3 .4 .7 .5 3 .1 .4 .8 .6 4 .5 0 .8 .4 5 .25 .25 .5 .7 6 .5 .6 .6 .3 7 .5 0 .6 .2 8 1.6 .7 .3 3.4 *END CarolsCrawl *END DogSeries ;Attach old sima baz after solving loop closures to the rest of the entrance series as old sima baz is 35m displaced from true position. ;*solve *fix BazsPitch.30 452016 4799747 154 *fix NewUzueka.1 452181 4799774 154 *EQUATE NewUzueka.6 BazsPitch.62 ;*equate BazsPitch.24 SimaBaz.24 ;*equate RealSimaBaz.pt2.31 SimaBaz.4 *equate RealSimaBaz.pt3.7 BazsPitch.30 *begin BazsPitch *EXPORT 24 30 62 *CALIBRATE declination 6.89 ;(assumed date was 1979) 24 30 4.2 113 0 30 31 6.7 - +V 31 32 3.5 201 0 32 33 12.3 229 0 33 34 3.6 239 0 34 35 4.1 227 15 35 36 9 - +V 36 37 6.7 213 0 37 38 2.2 072 0 38 39 7.7 056 0 39 40 9.7 207 0 40 41 2.4 207 0 41 42 5.2 208 0 42 43 3.2 292 0 43 44 4.6 270 0 44 45 11.7 222 0 45 46 21.4 109 0 46 47 15.2 82 0 47 48 11.0 071 0 48 49 12.4 151 0 49 50 27.0 065 0 50 50a 10 - -V 50a 51 10.1 062 0 51 52 23.8 209 0 52 53 24.4 068 0 53 54 7.4 123 0 54 55 10.8 090 0 55 56 5.9 094 0 56 57 7.0 030 0 57 58 9.2 071 0 58 59 3 - -V 59 60 11.3 063 0 60 61 15.5 071 0 61 62 6.9 133 0 *end BazsPitch ;*begin SimaBaz ; ;*EXPORT 4 24 30 ; ;*CALIBRATE declination 186.89 ;(assumed date was 1979) Original data was 180 degrees out ; ;*FLAGS DUPLICATE ;1 2 8.9 229 0 ;2 3 8.9 247 0 ;3 4 2.2 319 0 ;4 5 7.5 224 0 ;5 6 3.8 324 0 ;6 7 2.8 254 0 ;7 8 3.0 356 0 ;8 9 4.4 247 0 ;9 10 7.8 285 0 ;10 11 4.0 257 0 ;11 12 2.9 266 0 ;12 13 2.7 270 0 ;13 14 8.6 249 0 ;14 15 4.7 264 0 ;15 16 4.6 248 0 ;16 17 2.4 301 0 ;17 18 8.7 230 0 ;18 19 2.2 282 0 ;19 20 4.7 233 0 ;20 21 2.8 279 0 ;21 22 5.3 244 0 ;22 23 3.5 301 0 ;23 24 18.2 248 0 ;24 25 10.7 245 0 ;25 26 4.4 261 0 ;26 27 9.0 251 0 ;27 28 9.7 256 0 ;28 29 20 256 0;estimated to sump ;*FLAGS NOT DUPLICATE ; ;*end SimaBaz *END 0107_Uzueka CaveConverter_src/test/data/regression/NightMare_ref.svx0000644000000000000000000000274012114372104022513 0ustar rootroot*BEGIN NightMare *CALIBRATE declination 2.28 *EQUATE 25 Mares090408a.0 *EQUATE 7 2007a.7 *EQUATE Mares090408a.4 Mares090408b.4 1 2 1.72 145.00 -47.00 2 3 2.90 353.00 -49.00 3 4 4.22 0.00 -90.00 4 5 4.95 103.00 11.00 5 6 2.17 72.00 40.00 6 7 2.51 100.00 -35.00 7 9 2.98 68.00 19.00 9 10 3.00 110.00 -2.00 10 11 2.58 98.00 -11.00 11 12 4.80 0.00 -90.00 11 13 4.40 48.00 -11.00 13 14 2.30 20.00 -43.00 14 15 7.35 50.00 -4.00 15 16 7.35 35.00 -5.00 16 17 4.10 25.00 14.00 17 18 5.90 73.00 -5.00 18 19 7.40 32.00 -3.00 19 20 5.63 49.00 -3.00 20 21 3.91 110.00 -4.00 21 22 4.02 85.00 2.00 22 23 3.00 38.00 -3.00 23 24 3.30 150.00 -11.00 24 25 6.57 99.00 0.00 25 26 1.82 182.00 3.00 26 27 1.91 28.00 7.00 26 28 2.50 202.00 20.00 *BEGIN 2007a *CALIBRATE declination 2.28 7 8 6.90 222.00 -11.00 *END 2007a *BEGIN Mares090408a *CALIBRATE declination 2.08 0 1 3.00 91.06 6.73 1 2 2.91 20.29 3.57 2 3 4.11 19.88 -2.27 3 4 2.03 331.14 4.87 4 5 2.43 28.98 -37.75 *END Mares090408a *BEGIN Mares090408b *CALIBRATE declination 2.08 *EQUATE 6 6a 4 6a 1.91 63.99 -6.15 6a 7 3.35 32.37 -4.35 6 8 8.17 104.93 -1.38 8 9 1.78 139.35 4.60 9 10 2.70 100.81 0.36 10 11 4.72 56.33 -3.82 11 12 1.25 69.40 -4.66 12 13 2.95 112.51 -3.77 12 14 3.97 136.09 3.99 14 15 1.44 68.87 -26.54 15 16 2.30 131.94 -17.98 *END Mares090408b *END NightMare CaveConverter_src/test/data/regression/SwilEnt_ss_cmdnl_testgen.svx0000644000000000000000000003242612604502122025004 0ustar rootroot*BEGIN Swildons *EQUATE Ent EntranceZigZags.3 *EQUATE surfacegps.4 EntranceZigZags.3 *EQUATE LongDryWay.0 EntranceZigZags.5 *EQUATE LongDryWay.5 EntranceZigZags.21 *EQUATE LongDryWay.5 ShortDryWay.pt1.0 *EQUATE LongDryWay.39 NewGrottoes.0 *EQUATE LongDryWay.62 OldGrotto2WC.4 *EQUATE LongDryWay.59 OldGrotto2WC.0 *EQUATE LongDryWay.59 ShortDryWay.pt2.3 *EQUATE WaterRift.0 OldGrotto2WC.11 *EQUATE WaterRift.4 FortyRoute.0 *EQUATE WaterRift.12 FortyRoute.11 *EQUATE 10.0 LongDryWay.8 *EQUATE 10.20 LongDryWay.2 *EQUATE 10.13 20.20 *EQUATE 10.18 20.27 *EQUATE 20.0 EntranceZigZags.5 *EQUATE 20.23 ShortDryWay.pt1.3 *EQUATE 20.19 EntranceZigZags.5 *BEGIN surfacegps *DATE 2013.06.30 *CALIBRATE declination 1.58 *FLAGS SURFACE 0 1 9.84 94.37 -5.88 1 2 7.84 97.65 -8.05 2 3 11.76 94.27 -17.67 3 4 4.38 7.38 -23.29 3 5 5.45 262.93 13.06 5 6 8.80 174.95 11.61 6 7 13.78 168.31 12.55 *END surfacegps *BEGIN EntranceZigZags *DATE 2012.09.09 *CALIBRATE declination 1.7 *FLAGS SURFACE 0 1 2.98 10.26 -2.01 0 2 5.24 3.23 -5.04 2 3 2.64 166.70 -60.11 *FLAGS NOT SURFACE 3 4 3.10 330.76 -25.13 4 5 4.51 275.80 -12.10 5 6 2.41 50.67 -22.33 6 7 1.08 37.30 11.53 7 8 2.00 6.10 11.51 8 9 1.01 56.60 0.18 9 10 3.07 336.52 5.81 9 11 2.42 64.64 5.29 11 12 4.50 106.56 19.29 10 13 0.94 80.55 -45.63 13 14 5.31 65.16 19.50 10 15 3.27 329.15 -18.16 15 16 3.57 334.08 -6.33 16 17 2.41 207.98 -9.43 17 18 4.05 308.01 -19.25 18 19 2.06 211.48 -16.06 19 20 2.94 233.55 -35.84 20 21 2.04 14.57 -39.09 *data passage station left right up down 3 0.30 0.38 0.91 0.44 4 0.56 0.00 1.50 1.32 5 1.98 4.15 0.69 0.51 6 0.49 0.19 0.35 0.29 7 0.57 1.89 0.73 4.09 8 0.00 1.34 0.15 1.08 9 0.37 0.00 0.43 0.45 11 0.13 1.70 0.32 0.39 12 1.63 0.57 0.25 0.26 *data passage station left right up down 9 0.59 0.00 0.43 0.45 10 0.54 2.34 2.94 1.12 13 0.50 1.07 0.70 0.21 14 0.54 2.05 0.20 0.43 *data passage station left right up down 10 1.97 1.10 2.94 1.12 15 2.15 0.75 0.69 0.79 16 0.83 0.18 1.50 0.62 17 1.38 1.29 0.00 1.46 18 1.46 0.39 0.25 0.68 19 0.00 0.44 0.52 1.54 20 0.00 0.89 1.54 1.61 21 1.16 0.21 2.86 0.20 *END EntranceZigZags *BEGIN LongDryWay *DATE 2013.02.23 *CALIBRATE declination 1.63 *EQUATE 44 46 0 1 4.08 270.72 -25.50 1 2 3.77 354.35 -29.81 2 3 4.33 336.10 -24.79 3 4 2.77 337.70 -4.41 4 5 3.14 343.71 -25.59 5 6 1.87 332.43 6.50 6 7 2.26 343.32 -5.29 7 8 1.72 258.62 12.28 7 9 1.10 310.47 4.46 9 10 2.37 334.59 4.19 10 11 1.12 263.77 46.91 11 12 3.53 351.74 -3.89 12 13 1.97 312.50 39.30 13 14 2.39 28.12 3.33 14 15 0.86 306.09 -13.02 15 16 4.55 48.38 7.37 16 17 2.34 328.01 -9.83 17 18 2.65 86.23 -7.24 18 19 0.84 146.67 18.49 19 20 1.81 87.93 13.23 20 21 1.73 164.45 7.33 21 22 2.91 113.95 7.56 22 23 1.51 181.21 30.14 23 24 4.59 108.18 -8.18 24 25 3.22 188.75 35.45 25 26 4.13 139.60 16.69 25 27 4.94 97.33 39.05 24 28 2.78 323.60 -24.94 28 29 0.89 90.00 -48.92 29 30 6.28 324.60 -29.83 30 31 1.55 264.23 41.75 31 32 2.26 15.83 12.57 32 35 6.03 323.45 -41.61 31 34 5.13 314.22 -30.46 34 35 2.76 19.79 -19.74 35 36 4.45 91.00 26.23 36 37 6.61 112.79 18.69 37 38 3.92 158.52 22.40 38 39 5.06 158.54 15.55 39 40 3.30 137.29 35.75 40 41 1.54 156.92 21.03 41 42 1.23 188.42 54.13 35 43 7.82 271.86 -10.72 43 44 1.58 132.75 -54.76 43 45 4.22 283.16 -3.82 46 47 4.08 278.14 -22.89 47 48 1.62 127.59 7.41 45 49 2.40 265.00 1.41 49 50 2.06 297.62 28.08 50 51 2.38 317.24 16.74 51 52 2.80 335.01 -5.36 52 53 8.00 77.58 15.81 52 54 2.99 251.79 -11.14 54 55 2.75 287.69 -14.31 55 56 6.04 280.29 -11.16 56 57 4.72 167.79 -69.81 57 58 6.26 266.27 3.98 58 59 5.34 221.34 -28.43 59 60 3.64 249.87 -18.27 60 61 6.14 188.00 -36.35 61 62 1.04 31.64 -42.73 *data passage station left right up down 0 0.56 1.35 0.66 0.56 1 1.13 1.96 0.45 1.49 2 0.64 0.92 0.73 1.92 3 0.44 0.45 1.17 0.48 4 1.02 0.00 1.94 1.36 5 1.73 0.62 2.74 0.23 6 1.12 0.32 2.49 0.46 7 1.12 0.00 1.41 0.51 9 0.85 0.56 0.83 0.57 10 0.39 0.24 2.18 0.43 11 0.00 0.62 1.41 0.97 12 0.77 0.00 0.88 0.00 13 0.00 0.86 0.46 1.02 14 1.47 0.00 0.48 0.59 15 0.61 0.45 0.40 0.41 16 2.24 0.00 0.86 1.51 17 0.00 1.46 1.20 0.00 18 0.48 1.95 0.40 0.51 19 1.33 0.33 0.40 0.00 20 0.59 0.86 1.46 0.00 21 0.65 0.00 1.19 0.25 22 1.22 0.84 1.30 0.40 23 1.27 0.19 0.40 1.21 24 3.04 1.76 1.43 0.00 25 3.11 1.05 0.86 0.00 26 1.08 0.48 0.56 0.52 *data passage station left right up down 7 1.10 0.00 1.41 0.51 8 0.55 0.00 0.88 0.81 *data passage station left right up down 25 2.42 1.16 0.86 0.00 27 0.16 3.08 0.34 0.00 *data passage station left right up down 24 1.76 3.04 1.43 0.00 28 0.00 0.00 1.98 1.15 29 0.65 0.60 0.61 1.14 30 1.46 0.28 1.86 0.43 31 0.39 1.14 0.97 1.50 32 0.68 0.00 0.38 0.76 35 0.55 0.93 3.48 0.00 36 3.45 2.23 2.46 0.38 37 1.23 2.15 2.77 0.50 38 1.04 1.09 2.53 0.83 39 2.01 1.86 0.80 0.31 40 0.58 0.42 0.40 0.00 41 0.98 0.71 1.17 0.00 42 1.03 0.18 0.28 0.00 *data passage station left right up down 31 0.43 1.37 0.97 1.50 34 0.00 1.36 1.60 0.71 35 0.93 0.55 3.48 0.00 43 0.63 0.60 2.82 1.69 45 1.00 0.26 2.12 0.91 49 1.24 0.87 2.24 0.70 50 0.41 0.00 0.69 0.76 51 1.79 0.65 0.34 3.97 52 1.39 0.00 0.66 1.10 54 0.00 1.44 1.32 4.82 55 0.45 1.74 1.92 4.57 56 0.00 0.91 0.87 5.41 57 0.47 0.00 5.50 0.76 58 2.05 0.88 2.44 0.74 59 2.29 5.14 2.99 0.67 60 3.49 1.16 1.60 2.35 61 0.00 0.00 4.26 3.24 *data passage station left right up down 46 0.00 1.08 0.73 0.00 47 0.00 0.00 1.09 0.58 48 0.00 2.53 0.42 0.71 *END LongDryWay *BEGIN ShortDryWay *EQUATE pt1.13 pt2.0 *BEGIN pt1 *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 1.43 131.61 -13.25 1 2 3.89 73.29 -51.63 2 3 4.50 170.72 19.68 3 4 1.11 246.49 -14.16 2 5 4.91 323.66 2.34 5 6 5.05 279.35 -25.23 6 7 5.02 336.36 -13.85 7 8 3.19 303.08 -33.11 8 9 6.71 295.69 -12.15 9 10 1.11 265.93 2.35 10 11 4.30 323.22 3.80 11 12 3.28 275.99 -17.30 12 13 4.68 298.00 -3.29 *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 0.41 0.87 0.00 0.28 2 0.00 1.63 1.81 0.46 3 0.31 0.26 1.53 0.92 4 0.00 2.09 0.55 0.68 *data passage station left right up down 2 1.63 0.00 1.81 0.46 5 1.00 0.32 1.55 0.86 6 0.00 1.25 2.73 1.16 7 0.41 0.00 3.68 0.54 8 0.00 1.37 4.40 1.42 9 1.02 0.00 1.15 1.06 10 0.00 0.45 0.84 1.15 11 0.64 0.00 2.05 1.59 12 0.00 0.52 1.75 0.81 13 0.00 0.57 0.38 0.72 *END pt1 *BEGIN pt2 *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 3.20 316.66 0.98 1 2 7.10 308.84 -15.08 2 3 4.24 278.91 -12.53 *data passage station left right up down 0 0.00 0.56 2.73 0.76 1 0.00 0.57 2.40 1.46 2 0.65 0.00 2.87 0.80 3 0.00 0.00 3.16 0.77 *END pt2 *END ShortDryWay *BEGIN NewGrottoes *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 1.56 49.36 7.27 1 2 1.75 10.53 51.20 2 3 4.07 347.52 12.12 3 4 3.62 50.60 25.22 4 5 3.25 67.67 12.62 5 6 3.45 56.57 19.52 6 7 1.42 151.95 -12.13 7 8 6.30 84.91 26.43 *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 0.42 0.08 0.39 0.73 2 0.29 0.00 0.68 0.86 3 0.92 0.62 0.41 0.44 4 2.01 1.51 0.00 0.88 5 2.12 0.90 0.25 0.77 6 0.52 3.62 0.00 0.56 7 1.16 2.64 0.89 0.44 8 0.81 0.31 0.19 0.35 *END NewGrottoes *BEGIN OldGrotto2WC *DATE 2013.02.24 *CALIBRATE declination 1.63 0 1 3.32 25.03 -14.33 1 2 5.70 255.27 -30.20 2 3 3.09 201.53 -10.26 3 4 4.55 164.72 -15.92 4 5 2.38 199.29 -26.79 5 6 6.29 239.56 -9.79 6 7 7.66 284.16 -7.14 7 8 2.58 224.20 -8.54 8 9 6.80 205.89 -6.51 9 10 2.09 108.56 -5.31 10 11 7.85 204.84 6.96 *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 2.39 0.00 0.00 0.86 2 0.97 0.38 1.20 1.13 3 0.88 1.27 0.32 0.93 4 0.63 0.59 5.52 2.45 5 0.71 0.81 5.21 1.53 6 0.23 1.80 3.96 1.44 7 1.04 0.00 5.90 1.22 8 0.00 1.49 5.11 1.06 9 1.39 0.00 3.26 1.26 10 0.00 1.68 5.06 1.15 11 4.27 5.18 3.22 1.00 *END OldGrotto2WC *BEGIN FortyRoute *DATE 2013.06.29 *CALIBRATE declination 1.58 0 1 2.76 327.91 18.03 1 2 5.35 306.91 5.35 2 3 3.55 321.41 38.17 3 4 1.12 7.71 3.63 4 5 1.06 263.40 33.43 5 6 2.53 351.94 5.11 6 7 2.96 317.31 -3.31 7 8 5.25 326.28 -29.19 8 9 1.45 273.15 -22.26 9 10 7.65 252.29 -71.60 10 11 2.32 146.39 -8.38 *data passage station left right up down 0 1.18 0.00 1.01 1.46 1 1.80 0.00 5.92 3.29 2 0.20 0.91 2.13 5.12 3 0.24 0.78 2.32 3.23 4 0.67 0.00 2.18 0.63 5 0.00 0.57 1.59 1.15 6 0.51 0.00 1.41 1.13 7 0.00 0.47 1.66 1.64 8 0.81 1.04 1.74 1.09 9 0.73 0.30 4.17 2.68 10 2.78 0.00 0.00 1.91 11 0.43 0.86 1.55 1.73 *END FortyRoute *BEGIN WaterRift *DATE 2013.06.29 *CALIBRATE declination 1.58 0 1 5.77 334.28 -11.88 1 2 4.33 195.52 -26.62 2 3 6.36 270.39 -36.08 3 4 1.54 305.04 -17.83 4 5 4.45 302.01 -20.17 5 6 2.13 320.38 -11.71 6 7 5.02 333.92 -11.98 7 8 1.63 323.46 -34.24 8 9 6.72 325.55 -5.61 9 10 2.39 1.38 10.24 10 11 3.73 245.25 -24.06 11 12 1.75 211.67 -24.54 12 13 8.34 181.38 -8.14 13 14 4.39 179.79 -2.78 14 15 7.89 176.25 -1.64 15 16 4.52 194.00 -4.00 *data passage station left right up down 0 6.74 3.41 1.95 0.00 1 1.52 0.00 3.73 1.75 2 0.25 0.75 0.70 1.02 3 0.00 0.60 7.22 1.50 4 1.18 0.00 5.86 1.80 5 0.00 0.66 0.78 1.18 6 0.00 0.40 1.32 0.97 7 0.32 0.00 3.07 1.41 8 0.73 0.00 2.19 0.57 9 0.00 0.65 1.18 0.38 10 0.81 0.43 2.51 1.00 11 0.47 0.78 10.85 2.38 12 0.56 0.84 1.63 1.74 13 0.20 0.83 3.40 0.81 14 0.00 1.52 3.09 0.84 15 0.42 0.39 3.04 0.98 16 1.81 1.13 1.35 0.91 *END WaterRift *BEGIN 10 *DATE 2013.06.30 *CALIBRATE declination 1.58 0 1 2.19 193.96 16.02 1 2 1.14 228.14 32.64 2 3 3.27 163.30 -22.86 3 4 6.91 267.13 3.53 3 5 2.54 190.56 -63.18 5 6 4.59 251.07 -25.44 6 7 2.94 167.27 7.15 7 8 3.72 165.59 -0.44 8 9 2.10 111.50 19.76 9 10 7.71 161.72 1.86 10 11 2.16 102.08 5.76 9 12 8.35 93.72 17.83 12 13 4.34 9.47 9.01 13 14 2.15 152.81 2.05 13 15 3.68 88.63 11.54 15 16 5.88 47.35 18.38 16 17 5.34 79.73 18.79 3 18 1.80 104.97 -49.81 14 20 3.88 295.15 51.22 *data passage station left right up down 0 0.75 0.00 0.88 0.81 1 0.21 0.53 1.13 0.86 2 0.65 0.39 0.85 1.15 3 0.65 0.26 1.68 1.79 5 0.00 0.60 0.00 0.63 6 0.86 0.23 0.49 0.00 7 0.00 0.62 0.19 1.57 8 0.73 0.00 0.41 1.07 9 1.38 1.52 0.21 1.09 10 0.32 0.35 0.63 0.63 *data passage station left right up down 3 0.70 0.29 1.68 1.79 4 0.55 0.32 0.38 0.44 *data passage station left right up down 9 0.25 2.80 0.21 1.09 12 1.65 0.50 0.44 0.44 13 0.20 0.00 0.00 0.65 15 1.14 0.58 0.49 0.30 16 0.54 1.43 0.27 0.00 17 1.62 0.86 2.11 0.65 *data passage station left right up down 13 0.00 0.43 0.00 0.65 14 0.00 2.86 3.76 0.00 *data passage station left right up down 3 0.29 0.70 1.68 1.79 18 0.22 0.73 0.24 0.00 *END 10 *BEGIN 20 *DATE 2013.06.30 *CALIBRATE declination 1.58 0 1 3.87 261.79 -26.31 1 2 2.55 125.69 -19.31 2 3 5.29 150.86 -7.60 3 4 1.83 63.94 -43.21 4 5 3.13 176.57 -12.17 5 6 1.40 257.65 -52.47 6 7 2.40 284.49 -13.04 3 8 2.58 64.30 1.85 8 9 2.80 61.94 1.42 9 10 5.67 274.30 -29.92 10 11 4.21 315.24 -5.18 11 12 0.46 277.24 -49.35 12 13 2.99 11.93 3.89 13 14 1.51 326.89 1.17 13 15 4.27 118.28 31.59 15 16 2.48 36.12 13.37 16 17 3.13 327.92 82.94 17 18 1.35 214.32 -12.67 18 19 2.43 231.25 22.63 13 20 2.14 331.93 -1.84 20 21 2.84 49.23 -61.41 21 22 1.87 345.57 -9.57 22 23 1.63 311.27 20.13 23 24 1.57 250.05 -33.27 24 25 2.11 302.88 3.36 25 26 2.60 267.02 31.57 27 26 1.86 143.63 -4.35 *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 0.00 0.00 0.00 0.00 2 0.23 1.76 3.38 0.77 3 0.90 0.00 0.18 0.51 4 0.14 0.26 0.71 0.55 5 0.34 0.35 0.87 0.39 6 0.00 0.34 0.50 0.18 7 0.40 0.00 0.23 0.35 *data passage station left right up down 3 0.90 0.00 0.18 0.51 8 0.97 1.31 0.38 1.78 9 0.00 1.90 1.09 0.84 10 1.22 3.45 0.67 0.23 11 0.83 0.46 0.00 0.48 12 0.21 0.00 0.00 0.00 13 4.13 2.90 1.39 0.30 15 1.61 0.98 0.28 0.86 16 2.24 0.00 0.00 1.10 17 0.00 0.10 0.69 0.29 18 0.00 0.00 0.00 0.00 *data passage station left right up down 13 2.88 4.11 1.39 0.30 20 0.00 0.41 0.35 1.24 21 0.36 0.23 0.29 0.00 22 0.82 0.21 0.78 0.31 23 0.29 0.25 0.19 0.99 24 0.00 0.43 1.06 0.00 25 0.45 0.28 0.70 0.36 26 0.36 0.45 0.00 0.45 *data passage station left right up down 27 0.23 0.41 0.24 0.00 26 0.36 0.45 0.00 0.45 *END 20 *END Swildons CaveConverter_src/test/data/regression/2649_Mares_fromaven_ds_ref.svx0000644000000000000000000000431513030252172024753 0ustar rootroot*BEGIN SurveyFromDXF *EQUATE SeriesFromLines1.6 SeriesFromLines2.0 *EQUATE SeriesFromLines2.0 SeriesFromLines1.6 *EQUATE SeriesFromLines2.3 SeriesFromLines3.0 *EQUATE SeriesFromLines3.0 SeriesFromLines2.3 *EQUATE SeriesFromLines3.13 SeriesFromLines5.0 *EQUATE SeriesFromLines3.14 SeriesFromLines4.0 *EQUATE SeriesFromLines4.0 SeriesFromLines3.14 *EQUATE SeriesFromLines5.0 SeriesFromLines3.13 *EQUATE SeriesFromLines5.4 SeriesFromLines6.0 *EQUATE SeriesFromLines6.0 SeriesFromLines5.4 *EQUATE SeriesFromLines6.1 SeriesFromLines7.0 *EQUATE SeriesFromLines7.0 SeriesFromLines6.1 *EQUATE SeriesFromLines7.5 SeriesFromLines8.0 *EQUATE SeriesFromLines8.0 SeriesFromLines7.5 *BEGIN SeriesFromLines1 *FIX 0 -45.28 -18.77 6.13 0 1 1.71 142.64 -46.89 1 2 2.90 350.59 -49.12 2 3 4.23 0.00 -90.00 3 4 4.96 100.66 11.05 4 5 2.17 69.61 40.07 5 6 2.50 97.85 -35.10 6 7 6.89 219.66 -10.95 *END SeriesFromLines1 *BEGIN SeriesFromLines2 0 1 2.99 65.79 18.75 1 2 2.99 107.71 -1.72 2 3 2.58 95.89 -10.95 3 4 4.81 0.00 -90.00 *END SeriesFromLines2 *BEGIN SeriesFromLines3 0 1 4.40 45.66 -11.13 1 2 2.30 17.68 -43.07 2 3 7.35 47.76 -3.98 3 4 7.35 32.74 -4.99 4 5 4.10 22.63 14.12 5 6 5.90 70.73 -5.15 6 7 7.40 29.69 -2.94 7 8 5.64 46.73 -3.05 8 9 3.91 107.78 -3.96 9 10 4.02 82.72 1.99 10 11 3.00 35.76 -2.87 11 12 3.30 147.73 -11.00 12 13 6.57 96.74 0.00 13 14 1.81 179.68 2.85 14 15 1.90 25.75 6.95 *END SeriesFromLines3 *BEGIN SeriesFromLines4 0 1 2.50 199.59 19.84 *END SeriesFromLines4 *BEGIN SeriesFromLines5 0 1 3.00 88.85 6.51 1 2 2.91 18.25 3.54 2 3 4.11 17.73 -2.09 3 4 2.02 328.99 4.53 4 5 2.42 26.97 -37.46 *END SeriesFromLines5 *BEGIN SeriesFromLines6 0 1 1.93 61.96 -5.96 1 2 3.34 30.11 -4.29 *END SeriesFromLines6 *BEGIN SeriesFromLines7 0 1 8.16 102.89 -1.40 1 2 1.78 137.05 4.83 2 3 2.69 98.76 0.43 3 4 4.73 54.32 -3.76 4 5 1.26 67.52 -5.01 5 6 2.94 110.53 -3.70 *END SeriesFromLines7 *BEGIN SeriesFromLines8 0 1 3.96 134.18 3.91 1 2 1.44 67.21 -26.37 2 3 2.30 129.81 -17.75 *END SeriesFromLines8 *END SurveyFromDXF CaveConverter_src/test/data/regression/TripComment_pt_ref.text0000644000000000000000000000146613030252172023751 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.TrainingRoom.1 1 -1 1 1 1 1 0 1 3 3 3 0 1 0 1 1 1 0.00 0.00 0.00 3.67 4.49 1.03 1.09 1 1 1 1 1 5.08 327.47 56.76 1.81 2.48 1.96 0.63 1 2 1 1 1 4.92 69.83 23.86 5.52 9.34 2.80 1.75 1 3 1 1 1 2.00 337.58 33.09 0.34 0.00 1.84 0.75CaveConverter_src/test/data/regression/survex_everything_ss_asp_ref.svx0000644000000000000000000000147613030452530026012 0ustar rootroot*BEGIN survex_everything *alias station - .. *EQUATE Ent aliased_splays.1 *EQUATE aliased_splays.3 diving_tape_comp_depc.1 *EQUATE diving_tape_comp_depc.3 diving_bearing_length.001 *BEGIN aliased_splays *alias station - .. 1 2 12.21 73.00 -12.00 2 - 4.33 11.00 2.00 2 - 1.64 180.00 3.00 2 3 6.77 98.00 -4.00 *END aliased_splays *BEGIN diving_tape_comp_depc *alias station - .. *data diving from to length bearing depthchange 1 2 14.70 50.00 -1.70 2 3 5.78 65.00 -0.51 *END diving_tape_comp_depc *BEGIN diving_bearing_length *DATE 1999.07.01 *CALIBRATE declination 4.34 *alias station - .. *data diving from to bearing length fromdepth todepth 001 002 336.00 9.00 -8.30 -8.30 002 003 285.00 13.00 -8.30 -9.21 *END diving_bearing_length *END survex_everything CaveConverter_src/test/data/regression/SwilEnt_st_nsp_ref.text0000644000000000000000000005470413030252172023763 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.Swildons.surfacegps 1 -1 1 1 1 1 0 1 13 13 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 9.84 92.79 -5.88 0.00 0.00 0.00 0.00 1 2 1 1 1 7.84 96.07 -8.05 0.00 0.00 0.00 0.00 1 3 1 1 1 11.76 92.69 -17.67 0.00 0.00 0.00 0.00 1 4 1 1 1 4.38 5.80 -23.29 0.30 0.38 0.91 0.44 1 5 1 1 1 3.10 329.06 -25.13 0.56 0.00 1.50 1.32 1 6 1 1 1 4.51 274.10 -12.10 1.98 4.15 0.69 0.51 1 7 1 1 1 2.41 48.97 -22.33 0.49 0.19 0.35 0.29 1 8 1 1 1 1.08 35.60 11.53 0.57 1.89 0.73 4.09 1 9 1 1 1 2.00 4.40 11.51 0.00 1.34 0.15 1.08 1 10 1 1 1 1.01 54.90 0.18 0.59 0.00 0.43 0.45 1 11 1 1 1 3.07 334.82 5.81 0.54 2.34 2.94 1.12 1 12 1 1 1 0.94 78.85 -45.63 0.50 1.07 0.70 0.21 1 13 1 1 1 5.31 63.46 19.50 0.54 2.05 0.20 0.43 2 -2 1 1 1 Series 2-root.Swildons.surfacegps 2 -1 1 1 1 1 3 2 3 3 3 0 2 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 1 1 1 1 5.45 261.35 13.06 0.00 0.00 0.00 0.00 2 2 1 1 1 8.80 173.37 11.61 0.00 0.00 0.00 0.00 2 3 1 1 1 13.78 166.73 12.55 0.00 0.00 0.00 0.00 3 -2 1 1 1 Series 3-root.Swildons.EntranceZigZags 3 -1 1 1 1 4 0 3 1 1 3 0 3 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 1 1 1 1 2.98 8.56 -2.01 0.00 0.00 0.00 0.00 4 -2 1 1 1 Series 4-root.Swildons.EntranceZigZags 4 -1 1 1 1 4 0 1 4 2 3 0 4 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4 1 1 1 1 5.24 1.53 -5.04 0.00 0.00 0.00 0.00 4 2 1 1 1 2.64 165.00 -60.11 0.00 0.00 0.00 0.00 5 -2 1 1 1 Series 5-root.Swildons.EntranceZigZags 5 -1 1 1 1 1 10 5 2 2 3 0 5 0 1 1 1 0.00 0.00 0.00 0.37 0.00 0.43 0.45 5 1 1 1 1 2.42 62.94 5.29 0.13 1.70 0.32 0.39 5 2 1 1 1 4.50 104.86 19.29 1.63 0.57 0.25 0.26 6 -2 1 1 1 Series 6-root.Swildons.EntranceZigZags 6 -1 1 1 1 1 11 6 14 14 3 0 6 0 1 1 1 0.00 0.00 0.00 1.97 1.10 2.94 1.12 6 1 1 1 1 3.27 327.45 -18.16 2.15 0.75 0.69 0.79 6 2 1 1 1 3.57 332.38 -6.33 0.83 0.18 1.50 0.62 6 3 1 1 1 2.41 206.28 -9.43 1.38 1.29 0.00 1.46 6 4 1 1 1 4.05 306.31 -19.25 1.46 0.39 0.25 0.68 6 5 1 1 1 2.06 209.78 -16.06 0.00 0.44 0.52 1.54 6 6 1 1 1 2.94 231.85 -35.84 0.00 0.89 1.54 1.61 6 7 1 1 1 2.04 12.87 -39.09 1.73 0.62 2.74 0.23 6 8 1 1 1 1.87 330.80 6.50 1.12 0.32 2.49 0.46 6 9 1 1 1 2.26 341.69 -5.29 1.10 0.00 1.41 0.51 6 10 1 1 1 1.72 256.99 12.28 0.75 0.00 0.88 0.81 6 11 1 1 1 2.19 192.38 16.02 0.21 0.53 1.13 0.86 6 12 1 1 1 1.14 226.56 32.64 0.65 0.39 0.85 1.15 6 13 1 1 1 3.27 161.72 -22.86 0.70 0.29 1.68 1.79 6 14 1 1 1 6.91 265.55 3.53 0.55 0.32 0.38 0.44 7 -2 1 1 1 Series 7-root.Swildons.LongDryWay 7 -1 1 1 1 1 6 6 7 5 3 0 7 0 1 1 1 0.00 0.00 0.00 0.56 1.35 0.66 0.56 7 1 1 1 1 4.08 269.09 -25.50 1.13 1.96 0.45 1.49 7 2 1 1 1 3.77 352.72 -29.81 0.64 0.92 0.73 1.92 7 3 1 1 1 4.33 334.47 -24.79 0.44 0.45 1.17 0.48 7 4 1 1 1 2.77 336.07 -4.41 1.02 0.00 1.94 1.36 7 5 1 1 1 3.14 342.08 -25.59 0.00 0.00 0.00 0.00 8 -2 1 1 1 Series 8-root.Swildons.LongDryWay 8 -1 1 1 1 6 9 8 18 18 3 0 8 0 1 1 1 0.00 0.00 0.00 1.12 0.00 1.41 0.51 8 1 1 1 1 1.10 308.84 4.46 0.85 0.56 0.83 0.57 8 2 1 1 1 2.37 332.96 4.19 0.39 0.24 2.18 0.43 8 3 1 1 1 1.12 262.14 46.91 0.00 0.62 1.41 0.97 8 4 1 1 1 3.53 350.11 -3.89 0.77 0.00 0.88 0.00 8 5 1 1 1 1.97 310.87 39.30 0.00 0.86 0.46 1.02 8 6 1 1 1 2.39 26.49 3.33 1.47 0.00 0.48 0.59 8 7 1 1 1 0.86 304.46 -13.02 0.61 0.45 0.40 0.41 8 8 1 1 1 4.55 46.75 7.37 2.24 0.00 0.86 1.51 8 9 1 1 1 2.34 326.38 -9.83 0.00 1.46 1.20 0.00 8 10 1 1 1 2.65 84.60 -7.24 0.48 1.95 0.40 0.51 8 11 1 1 1 0.84 145.04 18.49 1.33 0.33 0.40 0.00 8 12 1 1 1 1.81 86.30 13.23 0.59 0.86 1.46 0.00 8 13 1 1 1 1.73 162.82 7.33 0.65 0.00 1.19 0.25 8 14 1 1 1 2.91 112.32 7.56 1.22 0.84 1.30 0.40 8 15 1 1 1 1.51 179.58 30.14 1.27 0.19 0.40 1.21 8 16 1 1 1 4.59 106.55 -8.18 3.04 1.76 1.43 0.00 8 17 1 1 1 3.22 187.12 35.45 3.11 1.05 0.86 0.00 8 18 1 1 1 4.13 137.97 16.69 1.08 0.48 0.56 0.52 9 -2 1 1 1 Series 9-root.Swildons.LongDryWay 9 -1 1 1 1 8 17 9 1 1 3 0 9 0 1 1 1 0.00 0.00 0.00 2.42 1.16 0.86 0.00 9 1 1 1 1 4.94 95.70 39.05 0.16 3.08 0.34 0.00 10 -2 1 1 1 Series 10-root.Swildons.LongDryWay 10 -1 1 1 1 8 16 10 13 13 3 0 10 0 1 1 1 0.00 0.00 0.00 1.76 3.04 1.43 0.00 10 1 1 1 1 2.78 321.97 -24.94 0.00 0.00 1.98 1.15 10 2 1 1 1 0.89 88.37 -48.92 0.65 0.60 0.61 1.14 10 3 1 1 1 6.28 322.97 -29.83 1.46 0.28 1.86 0.43 10 4 1 1 1 1.55 262.60 41.75 0.39 1.14 0.97 1.50 10 5 1 1 1 2.26 14.20 12.57 0.68 0.00 0.38 0.76 10 6 1 1 1 6.03 321.82 -41.61 0.55 0.93 3.48 0.00 10 7 1 1 1 4.45 89.37 26.23 3.45 2.23 2.46 0.38 10 8 1 1 1 6.61 111.16 18.69 1.23 2.15 2.77 0.50 10 9 1 1 1 3.92 156.89 22.40 1.04 1.09 2.53 0.83 10 10 1 1 1 5.06 156.91 15.55 2.01 1.86 0.80 0.31 10 11 1 1 1 3.30 135.66 35.75 0.58 0.42 0.40 0.00 10 12 1 1 1 1.54 155.29 21.03 0.98 0.71 1.17 0.00 10 13 1 1 1 1.23 186.79 54.13 1.03 0.18 0.28 0.00 11 -2 1 1 1 Series 11-root.Swildons.LongDryWay 11 -1 1 1 1 10 4 10 6 2 3 0 11 0 1 1 1 0.00 0.00 0.00 0.43 1.37 0.97 1.50 11 1 1 1 1 5.13 312.59 -30.46 0.00 1.36 1.60 0.71 11 2 1 1 1 2.76 18.16 -19.74 0.00 0.00 0.00 0.00 12 -2 1 1 1 Series 12-root.Swildons.LongDryWay 12 -1 1 1 1 10 6 12 4 4 3 0 12 0 1 1 1 0.00 0.00 0.00 0.93 0.55 3.48 0.00 12 1 1 1 1 7.82 270.23 -10.72 0.61 0.64 2.82 1.69 12 2 1 1 1 1.58 131.12 -54.76 0.00 1.08 0.73 0.00 12 3 1 1 1 4.08 276.51 -22.89 0.00 0.00 1.09 0.58 12 4 1 1 1 1.62 125.96 7.41 0.00 2.53 0.42 0.71 13 -2 1 1 1 Series 13-root.Swildons.LongDryWay 13 -1 1 1 1 12 1 13 6 6 3 0 13 0 1 1 1 0.00 0.00 0.00 0.63 0.60 2.82 1.69 13 1 1 1 1 4.22 281.53 -3.82 1.00 0.26 2.12 0.91 13 2 1 1 1 2.40 263.37 1.41 1.24 0.87 2.24 0.70 13 3 1 1 1 2.06 295.99 28.08 0.41 0.00 0.69 0.76 13 4 1 1 1 2.38 315.61 16.74 1.79 0.65 0.34 3.97 13 5 1 1 1 2.80 333.38 -5.36 0.00 1.39 0.66 1.10 13 6 1 1 1 8.00 75.95 15.81 0.00 0.00 0.00 0.00 14 -2 1 1 1 Series 14-root.Swildons.LongDryWay 14 -1 1 1 1 13 5 14 32 32 3 0 14 0 1 1 1 0.00 0.00 0.00 1.39 0.00 0.66 1.10 14 1 1 1 1 2.99 250.16 -11.14 0.00 1.44 1.32 4.82 14 2 1 1 1 2.75 286.06 -14.31 0.45 1.74 1.92 4.57 14 3 1 1 1 6.04 278.66 -11.16 0.00 0.91 0.87 5.41 14 4 1 1 1 4.72 166.16 -69.81 0.47 0.00 5.50 0.76 14 5 1 1 1 6.26 264.64 3.98 2.05 0.88 2.44 0.74 14 6 1 1 1 5.34 219.71 -28.43 2.29 5.14 2.99 0.67 14 7 1 1 1 3.64 248.24 -18.27 3.49 1.16 1.60 2.35 14 8 1 1 1 6.14 186.37 -36.35 0.00 0.00 4.26 3.24 14 9 1 1 1 1.04 30.01 -42.73 0.63 0.59 5.52 2.45 14 10 1 1 1 2.38 197.66 -26.79 0.71 0.81 5.21 1.53 14 11 1 1 1 6.29 237.93 -9.79 0.23 1.80 3.96 1.44 14 12 1 1 1 7.66 282.53 -7.14 1.04 0.00 5.90 1.22 14 13 1 1 1 2.58 222.57 -8.54 0.00 1.49 5.11 1.06 14 14 1 1 1 6.80 204.26 -6.51 1.39 0.00 3.26 1.26 14 15 1 1 1 2.09 106.93 -5.31 0.00 1.68 5.06 1.15 14 16 1 1 1 7.85 203.21 6.96 6.74 3.41 1.95 0.00 14 17 1 1 1 5.77 332.70 -11.88 1.52 0.00 3.73 1.75 14 18 1 1 1 4.33 193.94 -26.62 0.25 0.75 0.70 1.02 14 19 1 1 1 6.36 268.81 -36.08 0.00 0.60 7.22 1.50 14 20 1 1 1 1.54 303.46 -17.83 1.18 0.00 5.86 1.80 14 21 1 1 1 4.45 300.43 -20.17 0.00 0.66 0.78 1.18 14 22 1 1 1 2.13 318.80 -11.71 0.00 0.40 1.32 0.97 14 23 1 1 1 5.02 332.34 -11.98 0.32 0.00 3.07 1.41 14 24 1 1 1 1.63 321.88 -34.24 0.73 0.00 2.19 0.57 14 25 1 1 1 6.72 323.97 -5.61 0.00 0.65 1.18 0.38 14 26 1 1 1 2.39 -0.20 10.24 0.81 0.43 2.51 1.00 14 27 1 1 1 3.73 243.67 -24.06 0.47 0.78 10.85 2.38 14 28 1 1 1 1.75 210.09 -24.54 0.56 0.84 1.63 1.74 14 29 1 1 1 8.34 179.80 -8.14 0.20 0.83 3.40 0.81 14 30 1 1 1 4.39 178.21 -2.78 0.00 1.52 3.09 0.84 14 31 1 1 1 7.89 174.67 -1.64 0.42 0.39 3.04 0.98 14 32 1 1 1 4.52 192.42 -4.00 1.81 1.13 1.35 0.91 15 -2 1 1 1 Series 15-root.Swildons.ShortDryWay.pt1 15 -1 1 1 1 6 7 15 4 4 3 0 15 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 15 1 1 1 1 1.43 129.98 -13.25 0.41 0.87 0.00 0.28 15 2 1 1 1 3.89 71.66 -51.63 0.00 1.63 1.81 0.46 15 3 1 1 1 4.50 169.09 19.68 0.31 0.26 1.53 0.92 15 4 1 1 1 1.11 244.86 -14.16 0.00 2.09 0.55 0.68 16 -2 1 1 1 Series 16-root.Swildons.ShortDryWay.pt1 16 -1 1 1 1 15 2 14 6 12 3 0 16 0 1 1 1 0.00 0.00 0.00 1.63 0.00 1.81 0.46 16 1 1 1 1 4.91 322.03 2.34 1.00 0.32 1.55 0.86 16 2 1 1 1 5.05 277.72 -25.23 0.00 1.25 2.73 1.16 16 3 1 1 1 5.02 334.73 -13.85 0.41 0.00 3.68 0.54 16 4 1 1 1 3.19 301.45 -33.11 0.00 1.37 4.40 1.42 16 5 1 1 1 6.71 294.06 -12.15 1.02 0.00 1.15 1.06 16 6 1 1 1 1.11 264.30 2.35 0.00 0.45 0.84 1.15 16 7 1 1 1 4.30 321.59 3.80 0.64 0.00 2.05 1.59 16 8 1 1 1 3.28 274.36 -17.30 0.00 0.52 1.75 0.81 16 9 1 1 1 4.68 296.37 -3.29 0.00 0.56 2.73 0.76 16 10 1 1 1 3.20 315.03 0.98 0.00 0.57 2.40 1.46 16 11 1 1 1 7.10 307.21 -15.08 0.65 0.00 2.87 0.80 16 12 1 1 1 4.24 277.28 -12.53 0.00 0.00 0.00 0.00 17 -2 1 1 1 Series 17-root.Swildons.NewGrottoes 17 -1 1 1 1 10 10 17 8 8 3 0 17 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 17 1 1 1 1 1.56 47.73 7.27 0.42 0.08 0.39 0.73 17 2 1 1 1 1.75 8.90 51.20 0.29 0.00 0.68 0.86 17 3 1 1 1 4.07 345.89 12.12 0.92 0.62 0.41 0.44 17 4 1 1 1 3.62 48.97 25.22 2.01 1.51 0.00 0.88 17 5 1 1 1 3.25 66.04 12.62 2.12 0.90 0.25 0.77 17 6 1 1 1 3.45 54.94 19.52 0.52 3.62 0.00 0.56 17 7 1 1 1 1.42 150.32 -12.13 1.16 2.64 0.89 0.44 17 8 1 1 1 6.30 83.28 26.43 0.81 0.31 0.19 0.35 18 -2 1 1 1 Series 18-root.Swildons.OldGrotto2WC 18 -1 1 1 1 14 6 14 9 4 3 0 18 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 18 1 1 1 1 3.32 23.40 -14.33 2.39 0.00 0.00 0.86 18 2 1 1 1 5.70 253.64 -30.20 0.97 0.38 1.20 1.13 18 3 1 1 1 3.09 199.90 -10.26 0.88 1.27 0.32 0.93 18 4 1 1 1 4.55 163.09 -15.92 0.00 0.00 0.00 0.00 19 -2 1 1 1 Series 19-root.Swildons.FortyRoute 19 -1 1 1 1 14 20 14 28 11 3 0 19 0 1 1 1 0.00 0.00 0.00 1.18 0.00 1.01 1.46 19 1 1 1 1 2.76 326.33 18.03 1.80 0.00 5.92 3.29 19 2 1 1 1 5.35 305.33 5.35 0.20 0.91 2.13 5.12 19 3 1 1 1 3.55 319.83 38.17 0.24 0.78 2.32 3.23 19 4 1 1 1 1.12 6.13 3.63 0.67 0.00 2.18 0.63 19 5 1 1 1 1.06 261.82 33.43 0.00 0.57 1.59 1.15 19 6 1 1 1 2.53 350.36 5.11 0.51 0.00 1.41 1.13 19 7 1 1 1 2.96 315.73 -3.31 0.00 0.47 1.66 1.64 19 8 1 1 1 5.25 324.70 -29.19 0.81 1.04 1.74 1.09 19 9 1 1 1 1.45 271.57 -22.26 0.73 0.30 4.17 2.68 19 10 1 1 1 7.65 250.71 -71.60 2.78 0.00 0.00 1.91 19 11 1 1 1 2.32 144.81 -8.38 0.00 0.00 0.00 0.00 20 -2 1 1 1 Series 20-root.Swildons.10 20 -1 1 1 1 6 13 20 7 7 3 0 20 0 1 1 1 0.00 0.00 0.00 0.65 0.26 1.68 1.79 20 1 1 1 1 2.54 188.98 -63.18 0.00 0.60 0.00 0.63 20 2 1 1 1 4.59 249.49 -25.44 0.86 0.23 0.49 0.00 20 3 1 1 1 2.94 165.69 7.15 0.00 0.62 0.19 1.57 20 4 1 1 1 3.72 164.01 -0.44 0.73 0.00 0.41 1.07 20 5 1 1 1 2.10 109.92 19.76 1.38 1.52 0.21 1.09 20 6 1 1 1 7.71 160.14 1.86 0.32 0.35 0.63 0.63 20 7 1 1 1 2.16 100.50 5.76 0.00 0.00 0.00 0.00 21 -2 1 1 1 Series 21-root.Swildons.10 21 -1 1 1 1 20 5 7 2 4 3 0 21 0 1 1 1 0.00 0.00 0.00 0.25 2.80 0.21 1.09 21 1 1 1 1 8.35 92.14 17.83 1.65 0.50 0.44 0.44 21 2 1 1 1 4.34 7.89 9.01 0.00 0.43 0.00 0.65 21 3 1 1 1 2.15 151.23 2.05 0.00 2.86 3.76 0.00 21 4 1 1 1 3.88 293.57 51.22 0.00 0.00 0.00 0.00 22 -2 1 1 1 Series 22-root.Swildons.10 22 -1 1 1 1 21 2 22 3 3 3 0 22 0 1 1 1 0.00 0.00 0.00 0.20 0.00 0.00 0.65 22 1 1 1 1 3.68 87.05 11.54 1.14 0.58 0.49 0.30 22 2 1 1 1 5.88 45.77 18.38 0.54 1.43 0.27 0.00 22 3 1 1 1 5.34 78.15 18.79 1.62 0.86 2.11 0.65 23 -2 1 1 1 Series 23-root.Swildons.10 23 -1 1 1 1 6 13 29 3 2 3 0 23 0 1 1 1 0.00 0.00 0.00 0.29 0.70 1.68 1.79 23 1 1 1 1 1.80 103.39 -49.81 0.23 0.41 0.24 0.00 23 2 1 1 1 1.86 142.05 -4.35 0.36 0.45 0.00 0.45 24 -2 1 1 1 Series 24-root.Swildons.20 24 -1 1 1 1 1 6 24 7 7 3 0 24 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 24 1 1 1 1 3.87 260.21 -26.31 0.00 0.00 0.00 0.00 24 2 1 1 1 2.55 124.11 -19.31 0.23 1.76 3.38 0.77 24 3 1 1 1 5.29 149.28 -7.60 0.90 0.00 0.18 0.51 24 4 1 1 1 1.83 62.36 -43.21 0.14 0.26 0.71 0.55 24 5 1 1 1 3.13 174.99 -12.17 0.34 0.35 0.87 0.39 24 6 1 1 1 1.40 256.07 -52.47 0.00 0.34 0.50 0.18 24 7 1 1 1 2.40 282.91 -13.04 0.40 0.00 0.23 0.35 25 -2 1 1 1 Series 25-root.Swildons.20 25 -1 1 1 1 24 3 25 7 7 3 0 25 0 1 1 1 0.00 0.00 0.00 0.90 0.00 0.18 0.51 25 1 1 1 1 2.58 62.72 1.85 0.97 1.31 0.38 1.78 25 2 1 1 1 2.80 60.36 1.42 0.00 1.90 1.09 0.84 25 3 1 1 1 5.67 272.72 -29.92 1.22 3.45 0.67 0.23 25 4 1 1 1 4.21 313.66 -5.18 0.83 0.46 0.00 0.48 25 5 1 1 1 0.46 275.66 -49.35 0.21 0.00 0.00 0.00 25 6 1 1 1 2.99 10.35 3.89 2.90 4.13 1.39 0.30 25 7 1 1 1 1.51 325.31 1.17 0.00 0.00 0.00 0.00 26 -2 1 1 1 Series 26-root.Swildons.20 26 -1 1 1 1 25 6 1 6 5 3 0 26 0 1 1 1 0.00 0.00 0.00 4.13 2.90 1.39 0.30 26 1 1 1 1 4.27 116.70 31.59 1.61 0.98 0.28 0.86 26 2 1 1 1 2.48 34.54 13.37 2.24 0.00 0.00 1.10 26 3 1 1 1 3.13 326.34 82.94 0.00 0.10 0.69 0.29 26 4 1 1 1 1.35 212.74 -12.67 0.00 0.00 0.00 0.00 26 5 1 1 1 2.43 229.67 22.63 0.00 0.00 0.00 0.00 27 -2 1 1 1 Series 27-root.Swildons.10 27 -1 1 1 1 25 6 21 2 1 3 0 27 0 1 1 1 0.00 0.00 0.00 2.88 4.11 1.39 0.30 27 1 1 1 1 2.14 330.35 -1.84 0.00 0.00 0.00 0.00 28 -2 1 1 1 Series 28-root.Swildons.20 28 -1 1 1 1 21 2 15 3 3 3 0 28 0 1 1 1 0.00 0.00 0.00 0.00 0.41 0.35 1.24 28 1 1 1 1 2.84 47.65 -61.41 0.36 0.23 0.29 0.00 28 2 1 1 1 1.87 343.99 -9.57 0.82 0.21 0.78 0.31 28 3 1 1 1 1.63 309.69 20.13 0.00 0.00 0.00 0.00 29 -2 1 1 1 Series 29-root.Swildons.20 29 -1 1 1 1 15 3 29 3 3 3 0 29 0 1 1 1 0.00 0.00 0.00 0.29 0.25 0.19 0.99 29 1 1 1 1 1.57 248.47 -33.27 0.00 0.43 1.06 0.00 29 2 1 1 1 2.11 301.30 3.36 0.45 0.28 0.70 0.36 29 3 1 1 1 2.60 265.44 31.57 0.00 0.00 0.00 0.00CaveConverter_src/test/data/regression/Swil20120909_in.txt0000644000000000000000000002703313030252172022235 0ustar rootrootSwil20120909 (m, 360) [1]: 2012/09/09 0.00 1.0 0.000 0.00 0.00 "Entrance stn 1.1 is top tip of sticking out rock on RH side of blockhouse doorway, 56cm below lintel." 1.0 1.1 2.985 10.23 -2.01 [1] "1.1 has magnetic problems. So surveyed to it from knot on tree opposite door=1.0\rThen from knot to rear wall of blockhouse 1.0-1.2" 1.0 1.1 2.983 10.29 -2.02 [1] 1.0 1.2 5.234 3.18 -5.07 [1] "1.2=rawl plug on rear wall of blockhouse " 1.0 1.2 5.240 3.25 -4.96 [1] 1.0 1.2 5.234 3.25 -5.08 [1] 1.2 5.236 182.16 5.06 [1] 1.2 1.893 187.97 3.09 [1] 1.2 1.914 168.82 1.18 [1] 1.2 1.383 218.59 -0.17 [1] 1.2 0.644 248.05 1.54 [1] 1.2 0.684 105.32 -3.30 [1] 1.2 1.558 140.40 -2.98 [1] 1.2 1.840 176.52 -47.48 [1] 1.2 1.821 167.81 -47.93 [1] 1.2 1.541 189.90 -63.97 [1] 1.2 1.608 132.31 -59.62 [1] 1.2 1.3 2.635 166.54 -60.05 [1] "1.3=Top left corner of stream culvert when looking out of cave" 1.2 1.3 2.636 166.81 -60.10 [1] 1.2 1.3 2.634 166.74 -60.18 [1] 1.3 0.225 345.81 60.30 [1] 1.3 2.631 347.89 60.51 [1] 1.3 0.938 9.90 76.67 [1] 1.3 0.312 232.08 12.34 [1] 1.3 0.351 31.05 10.29 [1] 1.3 0.468 8.50 -70.77 [1] 1.3 1.4 3.108 330.39 -25.13 [1] 1.3 1.4 3.111 330.55 -25.13 [1] 1.3 1.4 3.085 331.35 -25.13 [1] 1.4 3.116 152.39 25.35 [1] 1.4 0.561 208.59 -0.68 [1] 1.4 0.589 140.67 80.22 [1] 1.4 1.318 189.06 -86.08 [1] 1.4 1.496 43.79 87.42 [1] 1.4 1.5 4.507 275.74 -12.18 [1] "1.5=polished tip of pointy boulder by top of drop into lower level of chamber. Boulder is dark grey with white flecks and fossils." 1.4 1.5 4.518 275.89 -12.06 [1] 1.4 1.5 4.511 275.76 -12.05 [1] 1.5 4.511 94.74 12.12 [1] 1.5 3.446 123.81 5.64 [1] 1.5 3.514 134.15 0.14 [1] 1.5 6.656 129.46 11.11 [1] 1.5 2.325 149.61 -6.69 [1] 1.5 1.639 153.47 -11.17 [1] 1.5 0.791 252.58 -12.22 [1] 1.5 1.217 296.10 -7.82 [1] 1.5 2.959 296.71 -23.02 [1] 1.5 1.507 42.54 10.51 [1] 1.5 4.241 72.82 11.85 [1] 1.5 0.696 333.90 81.49 [1] 1.5 0.547 114.68 -67.13 [1] 1.5 1.6 2.414 50.56 -22.29 [1] 1.5 1.6 2.403 50.78 -22.36 [1] 1.5 1.6 2.408 50.67 -22.34 [1] 1.6 2.376 230.76 22.40 [1] 1.6 0.351 2.58 81.25 [1] 1.6 0.296 220.39 -79.38 [1] 1.6 0.507 299.09 -0.90 [1] 1.6 0.208 108.28 1.25 [1] 1.6 1.7 1.085 37.46 11.50 [1] 1.6 1.7 1.085 37.33 11.54 [1] 1.6 1.7 1.084 37.11 11.54 [1] 1.7 1.090 217.24 -12.21 [1] 1.7 0.797 327.16 66.53 [1] 1.7 4.115 176.11 -83.10 [1] 1.7 0.723 287.69 -77.51 [1] 1.7 0.599 292.40 -18.76 [1] 1.7 2.024 100.10 16.73 [1] 1.7 1.8 2.002 6.04 11.52 [1] 1.7 1.8 1.999 6.07 11.51 [1] 1.7 1.8 1.996 6.18 11.49 [1] 1.8 2.005 184.82 -11.17 [1] 1.8 1.469 98.32 -7.52 [1] 1.8 0.191 105.24 52.84 [1] 1.8 1.241 102.22 -61.02 [1] 1.8 0.884 109.39 0.40 [1] 1.8 1.9 1.004 56.71 0.14 [1] "1.9=bottom point of sharp vertical edge of boulder forming ceiling " 1.8 1.9 1.010 56.56 0.24 [1] 1.8 1.9 1.010 56.54 0.17 [1] 1.9 1.024 236.71 -0.46 [1] 1.9 0.479 12.78 64.51 [1] 1.9 0.602 279.77 -8.53 [1] 1.9 0.469 275.64 -73.34 [1] 1.9 3.537 74.99 6.08 [1] 1.9 1.10 3.064 336.58 5.75 [1] "1.10=bottom of cream calcite rib running down RH wall" 1.9 1.10 3.065 336.43 5.74 [1] 1.9 1.10 3.072 336.55 5.93 [1] 1.10 3.079 156.19 -6.26 [1] 1.10 0.580 232.61 -1.43 [1] 1.10 1.308 64.76 -58.36 [1] 1.10 1.426 101.23 -11.90 [1] 1.10 1.139 78.33 -36.92 [1] 1.9 1.11 2.423 64.65 5.31 [1] 1.9 1.11 2.422 64.64 5.28 [1] 1.9 1.11 2.418 64.64 5.29 [1] 1.11 2.423 245.35 -5.41 [1] 1.11 0.438 233.11 24.20 [1] 1.11 0.199 42.71 -21.97 [1] 1.11 0.452 239.67 46.05 [1] 1.11 0.493 178.37 -53.68 [1] 1.11 3.298 118.39 17.88 [1] 1.11 1.12 4.506 106.48 19.33 [1] 1.11 1.12 4.499 106.54 19.29 [1] 1.11 1.12 4.497 106.66 19.25 [1] 1.12 0.246 297.10 84.93 [1] 1.12 0.262 127.16 -84.07 [1] 1.12 0.597 197.87 18.66 [1] 1.12 1.169 327.17 -9.65 [1] 1.12 1.632 13.18 -2.28 [1] 1.12 1.864 96.76 12.16 [1] 1.10 3.756 209.97 51.34 [1] 1.10 1.13 0.942 80.62 -45.73 [1] 1.10 1.13 0.942 80.46 -45.58 [1] 1.10 1.13 0.943 80.57 -45.59 [1] 1.13 0.936 259.78 45.32 [1] 1.13 0.843 97.15 56.57 [1] 1.13 1.155 144.82 14.01 [1] 1.13 0.485 130.78 -25.41 [1] 1.13 0.583 324.87 25.54 [1] 1.13 1.14 5.317 65.34 19.51 [1] 1.13 1.14 5.311 65.12 19.54 [1] 1.13 1.14 5.309 65.03 19.45 [1] 1.14 5.822 246.22 -19.66 [1] 1.14 0.643 206.92 -10.28 [1] 1.14 0.545 185.33 -53.51 [1] 1.14 0.212 279.32 69.67 [1] 1.14 2.086 161.86 8.15 [1] 1.14 0.850 285.98 -13.42 [1] 1.10 0.000 0.00 0.00 [1] 1.10 1.15 3.267 329.14 -18.23 [1] 1.10 1.15 3.270 329.11 -18.15 [1] 1.10 1.15 3.269 329.20 -18.11 [1] 1.15 3.253 149.02 17.88 [1] 1.15 0.773 63.28 -13.22 [1] 1.15 0.696 243.58 79.61 [1] 1.15 0.805 97.26 -82.81 [1] 1.15 2.373 233.98 -23.81 [1] 1.15 0.942 168.26 10.56 [1] 1.15 1.16 3.562 334.13 -6.32 [1] 1.15 1.16 3.574 334.08 -6.36 [1] 1.15 1.16 3.572 334.03 -6.31 [1] 1.16 3.580 154.40 6.43 [1] 1.16 0.291 52.63 -10.96 [1] 1.16 0.699 63.17 -62.51 [1] 1.16 0.727 221.54 2.28 [1] 1.16 1.825 250.10 55.64 [1] 1.16 0.855 237.55 47.64 [1] 1.16 0.861 195.09 5.98 [1] 1.16 1.17 2.408 208.01 -9.40 [1] 1.16 1.17 2.408 207.93 -9.51 [1] 1.16 1.17 2.407 207.99 -9.37 [1] 1.17 2.405 28.72 9.44 [1] 1.17 1.549 24.59 -70.16 [1] 1.17 1.331 336.78 -9.34 [1] 1.17 0.485 26.59 -33.63 [1] 1.17 0.663 83.59 13.58 [1] 1.17 1.671 193.75 -23.62 [1] 1.17 1.18 4.056 307.88 -19.29 [1] 1.17 1.18 4.046 308.05 -19.18 [1] 1.17 1.18 4.052 308.10 -19.29 [1] 1.18 4.053 128.34 19.12 [1] 1.18 1.543 155.56 12.30 [1] 1.18 0.595 300.02 2.80 [1] 1.18 0.280 261.46 65.07 [1] 1.18 0.685 182.87 -85.38 [1] 1.18 1.19 2.049 211.43 -16.07 [1] 1.18 1.19 2.060 211.58 -16.05 [1] 1.18 1.19 2.059 211.42 -16.05 [1] 1.19 2.045 31.72 16.13 [1] 1.19 0.553 320.99 71.97 [1] 1.19 1.545 308.22 -85.39 [1] 1.19 0.461 306.67 -13.63 [1] 1.19 1.20 2.938 233.57 -35.79 [1] 1.19 1.20 2.936 233.46 -35.86 [1] 1.19 1.20 2.937 233.62 -35.86 [1] 1.20 2.952 53.57 35.69 [1] 1.20 0.984 64.26 12.43 [1] 1.20 0.929 44.01 13.78 [1] 1.20 1.555 84.07 80.29 [1] 1.20 1.624 301.40 -84.42 [1] 1.20 1.21 2.038 14.45 -39.04 [1] "1.21=25cm tall stumpy stalagmite on floor to left of top of Jacob's Ladder. Stn is centre of flat ring on top." 1.20 1.21 2.045 14.42 -39.06 [1] 1.20 1.21 2.045 14.84 -39.16 [1] 1.21 2.042 195.35 38.69 [1] 1.21 1.800 235.96 12.16 [1] 1.21 0.214 339.46 -76.92 [1] 1.21 0.343 53.17 3.81 [1] 1.21 3.170 230.10 64.31 [1] CaveConverter_src/test/data/regression/2366_Torno_ref.svx0000644000000000000000000006174712114041276022435 0ustar rootroot*BEGIN 2366_Torno *EQUATE 2366_06_01.20 2366_06_02.0 *EQUATE 2366_06_02.46 2366_06_03.0 *EQUATE 2366_06_03.4 2366_06_04.48 *EQUATE 2366_06_02.9 2366_06_05.0 *EQUATE 2366_06_02.10 2366_06_06.16 *EQUATE 2366_06_03.2 2366_06_07.0 *EQUATE 2366_06_02.28 2366_06_08.8 *EQUATE 2366_06_03.4 2366_06_09.11 *EQUATE 2366_06_07.8 2366_06_10.K *EQUATE 2366_06_03.14 2366_06_11.b *EQUATE 2366_06_11.21 2366_06_12.40 *EQUATE 2366_06_12.35 2366_06_13.1 *EQUATE 2366_06_11.a 2366_06_14.btc3.16 *EQUATE 2366_06_13.3 2366_06_14.btc2.9 *EQUATE 2366_06_12.35 2366_06_15.0 *EQUATE 2366_06_15.9 2366_06_17.9 *EQUATE 2366_06_12.33 2366_06_16.24 *EQUATE 2366_06_15.21 2366_06_18.3 *EQUATE 2366_06_18.6 2366_06_19.1 *EQUATE 2366_06_19.0 2366_06_20.4 *EQUATE 2366_07_01.0 2366_06_19.10 *EQUATE 2366_07_01.25 2366_06_02.39 *EQUATE 2366_07_02.4 2366_06_02.15 *EQUATE 2366_07_02.3 2366_06_19.14 *EQUATE 2366_07_03.0 2366_06_15.5 *EQUATE 2366_08_01.6 2366_07_01.24 *EQUATE 2366_08_02.61 2366_06_02.1 *EQUATE 2366_08_04.0 2366_06_14.btc1.7 *EQUATE 2366_08_02.2 2366_08_03.43 *EQUATE 2366_08_05.9 2366_08_03.17 *EQUATE 2366_08_06.0 2366_08_03.20 *EQUATE 2366_08_07.0 2366_08_03.5 *EQUATE 2366_08_08.0 2366_08_03.11 *EQUATE 2366_08_08.22 2366_08_09.20 *EQUATE 2366_08_09.19 2366_08_10.1 *EQUATE 2366_08_04.8 2366_08_11.21 *EQUATE 2366_08_04.20 2366_08_12.A *EQUATE 2366_08_04.44 2366_08_13.44 *BEGIN 2366_06_01 *CALIBRATE declination 2.42 0 1 5.60 166.00 -7.00 1 2 4.40 152.00 1.00 2 3 5.60 101.00 -2.00 3 4 4.30 91.00 0.00 4 5 3.40 50.00 18.00 5 6 4.60 96.00 5.00 6 7 4.70 74.00 2.00 7 8 3.60 8.00 0.00 6 9 4.00 345.00 -3.00 9 10 4.60 358.00 -8.00 10 11 7.40 234.00 2.00 11 3a 7.80 218.00 -3.00 10 12 3.10 356.00 11.00 12 13 2.30 0.00 23.00 13 14 3.50 36.00 15.00 20 21 6.20 340.00 1.00 21 22 7.00 355.00 2.00 22 23 7.40 25.00 5.00 23 24 8.50 342.00 4.00 24 25 7.70 21.00 15.00 25 26 9.40 351.00 3.00 26 27 3.00 0.00 90.00 27 6 4.10 105.00 21.00 *END 2366_06_01 *BEGIN 2366_06_02 *CALIBRATE declination 2.42 0 1 3.00 0.00 90.00 1 2 4.50 184.00 -5.00 2 3 5.60 144.00 -3.00 3 4 2.70 163.00 -4.00 4 5 5.40 138.00 -9.00 5 6 1.80 66.00 -14.00 6 7 7.60 140.00 -2.00 7 8 1.00 166.00 -8.00 8 9 5.40 132.00 -1.00 9 10 5.50 55.00 0.00 10 11 8.90 101.00 -3.00 11 12 2.00 146.00 -16.00 12 13 9.00 75.00 8.00 12 14 8.30 239.00 -8.00 14 15 6.70 222.00 6.00 15 16 7.80 119.00 -7.00 16 17 15.00 177.00 -4.00 17 18 5.20 168.00 -9.00 18 19 6.40 230.00 1.00 19 20 5.70 183.00 -4.00 19 21 2.30 0.00 90.00 21 22 3.90 182.00 -3.00 22 23 5.40 195.00 -5.00 23 24 2.30 244.00 -10.00 24 25 1.80 253.00 -5.00 25 26 2.00 0.00 -90.00 26 27 1.30 210.00 -7.00 27 28 2.40 0.00 -90.00 28 29 6.00 265.00 -7.00 29 30 4.60 354.00 -22.00 30 31 3.00 292.00 32.00 31 32 3.50 277.00 20.00 32 33 3.50 238.00 -10.00 33 34 10.50 193.00 -5.00 34 35 5.50 251.00 -1.00 35 36 8.80 181.00 -8.00 36 37 8.10 214.00 -3.00 37 38 7.30 228.00 -5.00 38 39 9.70 227.00 -8.00 39 40 2.40 303.00 -3.00 40 41 5.90 240.00 -9.00 41 42 8.10 208.00 -8.00 42 43 4.20 235.00 -15.00 43 44 8.90 224.00 -8.00 44 45 6.40 171.00 -2.00 45 46 4.00 238.00 -7.00 *END 2366_06_02 *BEGIN 2366_06_03 *CALIBRATE declination 2.42 0 1 9.60 298.00 -24.00 1 2 6.70 201.00 -33.00 2 3 6.50 320.00 4.00 3 4 6.80 270.00 -15.00 4 5 18.60 218.00 -5.00 5 6 17.50 291.00 -4.00 6 7 8.20 310.00 -3.00 7 8 4.00 299.00 7.00 8 9 10.80 288.00 -6.00 9 10 6.40 261.00 -3.00 10 11 26.05 242.00 -2.00 11 12 4.30 295.00 -4.00 12 13 3.50 279.00 -2.00 13 14 16.30 259.00 -5.00 *END 2366_06_03 *BEGIN 2366_06_04 *CALIBRATE declination 2.42 1 0 4.10 352.00 0.00 2 1 6.40 347.00 3.00 3 2 9.70 71.00 4.00 4 3 3.25 16.00 15.00 4 5 1.40 0.00 -90.00 6 5 2.60 76.00 1.00 7 6 2.70 347.00 5.00 6 8 3.40 340.00 29.00 8 9 7.00 10.00 5.00 9 3 6.75 150.00 -5.00 10 7 3.00 345.00 -38.00 11 10 5.60 330.00 -6.00 12 7 4.00 8.00 2.00 13 12 2.80 80.00 5.00 14 13 4.20 132.00 0.00 15 14 5.30 130.00 2.00 16 15 16.25 142.00 4.00 17 16 3.40 163.00 5.00 18 17 1.05 50.00 0.00 19 18 2.95 354.00 2.00 20 19 2.70 34.00 -3.00 21 20 2.50 158.00 -3.00 22 21 3.00 40.00 -2.00 22 23 3.45 173.00 6.00 23 24 7.90 143.00 3.00 25 24 3.70 342.00 -2.00 26 22 4.30 149.00 -6.00 27 26 2.00 170.00 9.00 28 27 2.70 67.00 7.00 29 28 6.30 136.00 1.00 30 29 10.50 10.00 -1.00 30 31 32.00 150.00 2.00 32 30 8.50 153.00 6.00 33 32 5.20 168.00 1.00 34 33 17.10 144.00 4.00 35 34 7.50 110.00 10.00 36 35 16.85 47.00 0.00 37 36 3.55 99.00 -10.00 38 37 12.10 52.00 11.00 39 38 6.10 46.00 1.00 40 39 11.00 83.00 -2.00 41 40 8.90 59.00 4.00 42 41 5.30 100.00 4.00 43 42 4.60 0.00 0.00 44 43 8.40 59.00 3.00 45 44 10.50 50.00 2.00 46 45 5.00 23.00 -5.00 47 46 3.40 44.00 10.00 48 47 4.70 12.00 -8.00 *END 2366_06_04 *BEGIN 2366_06_05 *CALIBRATE declination 2.42 0 1 2.30 200.00 -6.00 1 2 2.70 156.00 10.00 2 3 5.30 135.00 -25.00 3 4 4.20 224.00 10.00 4 5 2.80 187.00 10.00 5 6 5.10 235.00 -2.00 6 7 3.20 231.00 -9.00 7 8 3.00 172.00 -12.00 8 9 1.60 141.00 -4.00 9 10 1.60 180.00 8.00 10 11 1.50 244.00 -10.00 11 12 4.30 203.00 -5.00 12 13 4.10 299.00 0.00 7 14 4.20 311.00 -2.00 14 15 7.20 318.00 5.00 *END 2366_06_05 *BEGIN 2366_06_06 *CALIBRATE declination 2.42 16 17 3.20 347.00 24.00 17 18 3.30 58.00 13.00 18 19 3.20 73.00 5.00 19 20 4.40 93.00 8.00 *END 2366_06_06 *BEGIN 2366_06_07 *CALIBRATE declination 2.42 0 1 6.60 122.00 8.00 1 2 4.70 137.00 1.00 2 3 6.40 146.00 11.00 3 4 7.20 80.00 13.00 4 5 5.60 106.00 13.00 5 6 14.60 80.00 10.00 6 7 2.60 177.00 50.00 7 8 4.10 47.00 38.00 *END 2366_06_07 *BEGIN 2366_06_08 *CALIBRATE declination 2.42 1 0 8.60 229.00 -6.00 2 1 4.50 226.00 0.00 3 2 3.70 285.00 -13.00 4 3 3.50 303.00 -9.00 5 4 4.10 261.00 -17.00 4 6 2.80 315.00 -22.00 6 7 4.40 0.00 -90.00 7 8 1.30 260.00 0.00 *END 2366_06_08 *BEGIN 2366_06_09 *CALIBRATE tape 1.0 *CALIBRATE declination 2.42 11 10 15.50 218.00 -5.00 1 0 4.60 251.00 1.00 1 2 8.80 250.00 -6.00 2 3 7.70 340.00 -5.00 3 4 6.90 310.00 -5.00 4 5 9.70 265.00 -15.00 5 6 7.10 270.00 -15.00 6 7 7.30 240.00 -5.00 7 8 17.90 310.00 -3.00 8 9 8.80 334.00 -20.00 9 10 4.40 330.00 -40.00 *END 2366_06_09 *BEGIN 2366_06_10 *CALIBRATE declination 2.42 K 1 16.30 54.00 31.00 B A 5.92 285.00 25.00 B C 1.30 158.00 0.00 C D 8.50 241.00 20.00 E C 13.20 238.00 -18.00 F E 3.30 319.00 -3.00 G F 11.10 252.00 -9.00 H G 4.70 227.00 -17.00 H I 1.80 0.00 -90.00 I J 5.50 122.00 -30.00 K J 2.40 24.00 22.00 *END 2366_06_10 *BEGIN 2366_06_11 *CALIBRATE tape -0.9 *CALIBRATE declination 2.42 2 1 9.90 0.00 -18.00 2 3 7.60 263.00 3.00 4 3 6.90 42.00 1.00 4 5 6.90 199.00 -31.00 5 6 8.90 266.00 -31.00 5 7 15.80 94.00 35.00 8 7 13.30 77.00 21.00 8 9 14.10 152.00 28.00 10 9 15.30 311.00 -2.00 10 11 12.80 43.00 3.00 12 11 6.70 298.00 -18.00 12 13 13.30 149.00 5.00 13 14 4.10 102.00 -5.00 14 15 6.30 340.00 -1.00 15 16 7.70 338.00 -1.00 16 17 3.20 342.00 -2.00 17 18 3.20 311.00 5.00 18 19 6.20 37.00 6.00 19 20 4.00 2.00 3.00 20 21 4.70 36.00 4.00 12 a 7.00 0.00 -5.00 a b 6.00 79.00 0.00 *END 2366_06_11 *BEGIN 2366_06_12 *CALIBRATE declination 2.42 0 1 9.68 25.50 -5.50 1 2 8.47 331.00 -1.00 2 3 9.14 9.00 2.00 3 4 8.20 108.00 5.00 3 5 12.68 47.00 0.00 5 6 12.59 44.00 -7.00 6 7 2.63 19.00 39.00 7 8 7.46 9.00 -18.00 8 9 13.24 92.00 5.50 9 10 9.67 197.00 2.00 10 11 9.47 70.00 1.00 11 12 11.39 115.00 3.00 12 13 7.32 87.00 4.00 13 14 16.11 58.00 2.00 14 15 4.40 9.00 0.00 15 16 5.85 313.00 4.00 16 17 12.81 44.00 2.00 17 18 9.04 16.00 3.00 18 19 19.55 58.00 2.00 19 20 3.65 76.00 -1.00 20 21 4.90 31.00 6.00 21 22 4.31 88.00 3.00 22 24 6.67 47.00 6.00 24 25 6.41 61.00 1.00 25 26 7.29 25.00 3.00 8 27 3.66 352.00 -14.00 27 28 10.98 27.00 1.00 28 29 2.41 310.00 1.00 29 30 15.55 291.00 5.00 30 31 46.75 308.50 -3.50 31 32 12.55 343.00 -8.00 32 33 22.75 296.00 4.00 33 34 6.30 354.00 -13.00 34 35 26.56 342.00 -2.00 33 36 5.28 107.00 -23.00 36 37 10.97 315.00 -47.00 37 38 4.60 6.00 -19.00 38 39 10.68 331.00 1.00 39 40 1.78 294.00 -13.00 *END 2366_06_12 *BEGIN 2366_06_13 *CALIBRATE tape 1.0 *CALIBRATE declination 2.42 1 2 5.50 0.00 10.00 2 3 5.60 75.00 3.00 3 4 10.90 115.00 0.00 4 5 15.60 130.00 1.00 5 6 6.20 175.00 1.00 6 7 10.90 122.00 1.00 7 8 7.40 160.00 0.00 8 9 12.20 128.00 3.00 9 10 6.30 98.00 0.00 10 11 24.90 124.00 2.00 11 12 12.40 112.00 2.00 *END 2366_06_13 *BEGIN 2366_06_14 *CALIBRATE declination 2.42 *EQUATE btc1.9 btc2.11 *EQUATE btc1.7 btc3.1 *BEGIN btc1 *CALIBRATE declination 2.42 2 1 6.00 232.00 -5.00 2 3 18.25 97.00 0.00 3 4 6.80 60.00 5.00 4 5 23.10 123.00 1.00 5 6 29.90 130.00 -3.00 6 7 17.55 122.00 0.00 7 8 11.55 107.00 11.00 8 9 16.95 125.00 -9.00 *END btc1 *BEGIN btc2 *CALIBRATE declination 2.42 9 10 4.25 239.00 7.00 10 11 9.55 234.00 -19.00 11 12 16.95 305.00 9.00 *END btc2 *BEGIN btc3 *CALIBRATE declination 2.42 1 2 2.90 276.00 12.00 2 3 4.50 0.00 -90.00 3 4 5.15 338.00 -13.00 4 5 4.30 196.00 -9.00 5 6 7.20 123.00 -6.00 6 7 5.95 127.00 -11.00 7 8 2.70 0.00 -90.00 8 9 3.30 70.00 -1.00 9 10 6.05 173.00 3.00 10 11 5.95 212.00 -5.00 11 12 1.40 0.00 -90.00 12 13 3.35 196.00 -36.00 13 14 4.30 192.00 -10.00 14 15 14.05 135.00 11.00 15 16 12.15 116.00 -10.00 *END btc3 *END 2366_06_14 *BEGIN 2366_06_15 *CALIBRATE declination 2.42 0 1 5.40 345.00 0.00 1 2 1.80 317.00 30.00 2 3 7.00 10.00 6.00 3 4 5.70 22.00 -1.00 4 5 3.90 332.00 7.00 5 6 10.50 21.00 17.00 6 7 10.10 116.00 -9.00 7 8 4.70 55.00 24.00 8 9 13.20 33.00 1.00 9 10 8.50 92.00 4.00 10 11 5.80 115.00 8.00 11 12 3.40 71.00 11.00 12 13 11.40 29.00 2.00 13 14 6.20 322.00 5.00 14 15 5.40 292.00 18.00 15 16 5.20 290.00 -12.00 15 17 3.50 24.00 23.00 17 18 5.60 129.00 4.00 18 19 3.80 130.00 5.00 19 20 2.80 38.00 6.00 20 21 4.20 120.00 15.00 21 22 5.90 133.00 25.00 19 23 6.60 134.00 -2.00 23 24 2.60 224.00 3.00 24 25 3.60 298.00 -3.00 *END 2366_06_15 *BEGIN 2366_06_16 *CALIBRATE declination 2.42 1 2 7.40 210.00 36.00 2 3 6.10 110.00 -2.00 3 4 11.40 243.00 -2.00 4 5 4.75 205.00 -6.00 5 6 5.70 110.00 -1.00 6 7 2.55 164.00 -4.00 7 8 3.85 89.00 1.00 8 9 7.40 118.00 6.00 9 10 3.70 157.00 16.00 10 11 7.75 184.00 12.00 12 13 5.50 222.00 -31.00 13 14 6.00 228.00 -46.00 14 15 6.30 223.00 -11.00 15 16 5.10 247.00 -27.00 9 16 2.60 315.00 -5.00 8 17 10.35 208.00 -1.00 17 18 3.70 0.00 -90.00 18 19 2.70 0.00 -90.00 19 20 7.00 32.00 -8.00 20 21 3.60 355.00 -8.00 21 22 6.50 56.00 -4.00 22 23 3.60 104.00 -5.00 23 24 3.70 62.00 -45.00 *END 2366_06_16 *BEGIN 2366_06_17 *CALIBRATE declination 2.42 1 2 5.80 297.00 -8.00 2 3 2.10 250.00 -13.00 3 4 10.65 304.00 -6.00 4 5 9.60 313.00 -5.00 5 6 2.80 279.00 -5.00 6 7 9.50 290.00 -8.00 9 8 5.75 202.00 -1.00 7 8 1.35 0.00 -90.00 *END 2366_06_17 *BEGIN 2366_06_18 *CALIBRATE tape 0.2 *CALIBRATE declination 2.42 1 2 11.20 136.00 -16.00 3 2 5.75 26.00 1.00 4 3 6.40 311.00 -28.00 4 5 17.15 132.00 -3.00 5 6 4.97 31.00 2.00 6 7 8.98 109.00 -2.00 7 8 12.10 119.00 0.00 8 9 7.24 136.00 2.00 9 10 7.35 23.00 -4.00 10 11 10.80 117.00 3.00 11 12 12.60 138.00 -2.00 13 14 6.07 38.00 -9.00 14 15 5.29 81.00 3.00 15 16 4.80 23.00 -5.00 7 16 1.70 0.00 -90.00 *END 2366_06_18 *BEGIN 2366_06_19 *CALIBRATE declination 2.42 *EQUATE 39 1 0 1 12.30 232.00 -31.00 0 2 6.80 103.00 -4.00 2 3 11.30 58.00 10.00 3 4 9.40 31.00 -3.00 4 5 20.40 125.00 -1.00 5 6 9.90 127.00 -5.00 6 7 13.70 134.00 1.00 7 8 12.20 105.00 -2.00 8 9 5.10 124.00 5.00 9 10 6.20 45.00 -30.00 10 11 21.10 42.00 0.00 11 12 10.60 43.00 8.00 12 13 8.30 16.00 2.00 13 14 8.20 8.00 -5.00 14 15 4.80 110.00 -6.00 16 9 2.20 346.00 33.00 17 16 2.80 348.00 15.00 18 17 6.40 309.00 40.00 19 18 5.60 51.00 25.00 19a 18 2.20 284.00 15.00 20 9 4.10 93.00 20.00 21 20 7.40 23.00 -19.00 22 21 11.20 313.00 0.00 23 21 5.70 61.00 -12.00 24 23 8.70 331.00 3.00 25 24 4.50 72.00 11.00 26 25 5.70 86.00 -2.00 27 26 5.30 55.00 -27.00 28 25 7.00 11.00 7.00 29 10 6.50 294.00 15.00 30 6 6.90 58.00 -26.00 30 31 6.20 286.00 1.00 31 32 4.00 216.00 0.00 32 33 5.40 276.00 -3.00 33 34 4.80 233.00 -6.00 34 35 10.20 282.00 -1.00 35 36 6.90 223.00 -5.00 37 36 8.00 97.00 3.00 37 38 13.80 316.00 -40.00 38 39 1.80 0.00 -90.00 14 1a 5.10 121.00 -5.00 1a 2a 8.80 8.00 21.00 1a 3a 5.50 123.00 -19.00 *END 2366_06_19 *BEGIN 2366_06_20 *CALIBRATE tape 0.2 *CALIBRATE declination 2.42 1 2 9.25 69.00 6.00 2 3 6.56 104.00 -4.00 3 4 7.41 107.00 -27.00 *END 2366_06_20 *BEGIN 2366_07_01 *CALIBRATE declination 2.28 1 0 4.00 310.00 15.00 2 1 2.80 290.00 5.00 3 2 2.20 48.00 4.00 4 3 2.00 4.00 3.00 5 4 9.20 310.00 22.00 6 5 3.30 330.00 10.00 7 6 2.60 299.00 10.00 8 7 4.60 247.00 -7.00 9 8 3.30 217.00 -9.00 10 9 3.50 228.00 6.00 11 10 1.80 325.00 18.00 12 11 1.70 339.00 21.00 13 12 5.20 230.00 -16.00 14 13 2.70 196.00 3.00 15 14 1.70 236.00 -2.00 16 15 4.20 182.00 0.00 17 16 2.70 226.00 -8.00 18 5 4.55 125.00 22.00 19 18 4.20 101.00 27.00 20 19 4.70 29.00 20.00 21 20 2.10 0.00 2.00 22 21 4.30 100.00 3.00 23 22 1.30 353.00 5.00 24 23 9.66 117.00 1.00 25 24 6.20 49.00 4.00 *END 2366_07_01 *BEGIN 2366_07_02 *CALIBRATE declination 2.28 0 4 16.00 0.00 -90.00 1 2 12.00 0.00 -90.00 3 2 2.00 108.00 0.00 *END 2366_07_02 *BEGIN 2366_07_03 *CALIBRATE declination 2.28 0 1 6.30 21.00 2.00 1 2 7.30 72.00 11.00 2 3 6.20 112.00 4.00 3 4 6.50 3.20 51.00 4 5 3.60 0.00 82.00 5 6 1.80 274.00 53.00 6 7 1.30 145.00 62.00 7 8 6.50 198.00 2.00 8 9 20.50 209.00 3.00 9 10 4.80 287.00 -3.00 10 11 5.40 126.00 52.00 11 12 2.80 315.00 49.00 12 13 2.20 287.00 1.00 13 14 7.60 204.00 1.00 14 15 3.50 207.00 -3.00 15 16 3.00 238.00 11.00 16 17 6.20 204.00 0.00 17 18 3.00 272.00 24.00 18 19 6.70 240.00 -7.00 8 1A 3.90 0.00 90.00 1A 2A 11.00 22.00 9.00 2A 3A 2.30 31.00 6.00 3A 4A 4.20 75.00 9.00 4A 5A 9.00 65.00 4.00 5A 6A 4.40 345.00 3.00 6A 7A 3.20 63.00 1.00 7A 8A 3.40 340.00 2.00 *END 2366_07_03 *BEGIN 2366_08_01 *CALIBRATE declination 2.15 1 0 4.74 325.00 6.00 1 2 16.95 135.00 2.00 2 3 1.18 210.00 0.00 3 4 5.11 114.00 0.00 4 5 4.80 150.00 5.00 5 6 2.43 138.00 22.00 *END 2366_08_01 *BEGIN 2366_08_02 *CALIBRATE declination 2.15 1 0 2.02 199.00 -7.00 1 2 2.04 125.00 -22.00 2 3 2.65 50.00 -3.00 3 4 2.95 41.00 26.00 3 5 6.85 142.00 3.00 5 6 8.08 152.00 -4.00 6 7 5.12 144.00 -5.00 7 8 2.78 171.00 -4.00 8 9 1.40 229.00 -4.00 9 10 3.18 301.00 1.00 10 11 4.14 196.00 -6.00 12 7 1.12 175.00 4.00 12 13 4.69 97.00 0.00 13 14 4.16 352.00 12.00 14 15 3.25 33.00 0.00 15 16 0.80 95.00 4.00 16 17 3.44 16.00 1.00 17 18 4.17 142.00 0.00 18 19 5.81 22.00 -1.00 13 20 6.04 131.00 1.00 20 21 5.51 15.00 7.00 21 22 2.65 322.00 10.00 21 23 5.17 153.00 0.00 21 24 9.94 14.00 6.00 24 25 2.65 319.00 8.00 24 30 5.68 145.00 -7.00 25 26 3.29 358.00 6.00 26 27 3.48 334.00 6.00 20 31 5.72 134.00 0.00 31 32 9.29 130.00 -1.00 32 33 8.62 128.00 0.00 32 34 6.79 355.00 1.00 34 35 4.17 15.00 2.00 35 36 7.19 316.00 9.00 35 37 3.80 122.00 0.00 35 38 7.56 16.00 4.00 38 39 5.08 141.00 -1.00 39 40 3.56 150.00 1.00 40 41 14.62 131.00 -1.00 40 42 3.39 23.00 -5.00 38 43 2.82 312.00 17.00 43 44 5.78 316.00 -1.00 43 45 5.38 16.00 11.00 45 46 3.66 2.00 9.00 46 47 3.45 18.00 -4.00 47 48 1.36 12.00 -33.00 48 49 4.85 32.00 0.00 50 49 2.56 190.00 -59.00 50 51 2.48 24.00 -2.00 51 52 6.30 33.00 3.00 52 53 3.99 143.00 0.00 53 54 4.64 359.00 8.00 54 55 8.38 31.00 0.00 55 56 2.44 32.00 3.00 55 57 4.83 330.00 0.00 56 58 2.30 356.00 6.00 58 59 3.37 63.00 -65.00 59 60 1.71 154.00 9.00 60 61 2.14 165.00 -26.00 *END 2366_08_02 *BEGIN 2366_08_03 *CALIBRATE declination 2.15 1 0 4.50 250.00 -2.00 1 2 3.23 79.00 -1.00 2 3 7.60 22.00 2.00 3 4 5.71 36.00 2.00 4 5 3.33 128.00 -1.00 5 6 1.02 92.00 -30.00 6 7 3.89 84.00 -1.00 7 8 5.17 149.00 1.00 8 9 4.78 42.00 0.00 9 10 2.45 101.00 2.00 10 11 3.64 58.00 7.00 11 12 15.39 146.00 0.00 12 13 10.64 115.00 1.00 13 14 9.86 183.00 -1.00 14 15 6.69 142.00 2.00 15 16 6.88 166.00 -1.00 16 17 4.83 117.00 0.00 17 18 10.04 90.00 0.00 18 19 5.99 139.00 4.00 19 20 3.69 68.00 -6.00 15 21 5.85 31.00 12.00 21 22 4.74 348.00 1.00 22 23 7.12 29.00 3.00 23 24 9.55 15.00 0.00 24 25 10.91 124.00 2.00 25 26 9.64 91.00 -3.00 26 27 7.45 146.00 -1.00 27 28 6.23 129.00 2.00 28 29 6.41 60.00 2.00 29 30 3.12 317.00 2.00 30 31 7.41 63.00 1.00 31 32 3.16 53.00 2.00 32 33 3.69 138.00 11.00 33 34 1.12 168.00 -24.00 34 35 4.23 60.00 7.00 35 36 1.13 166.00 -16.00 36 37 8.00 125.00 1.00 37 38 0.38 0.00 -90.00 38 39 1.12 67.00 2.00 39 40 3.36 4.00 8.00 40 41 0.67 0.00 -90.00 41 42 2.94 55.00 -4.00 42 43 0.92 36.00 36.00 21 a1 4.95 80.00 -2.00 a1 a2 4.40 352.00 8.00 a2 a3 6.40 36.00 3.00 a3 a4 6.74 54.00 0.00 b0 b1 12.30 151.00 -1.00 b1 b2 4.45 56.00 -1.00 b2 b3 4.20 156.00 0.00 b3 b4 3.15 61.00 0.00 b4 b5 5.50 143.00 -1.00 b5 b6 8.20 174.00 -1.00 b6 23 1.12 270.00 -8.00 c1 c2 8.95 314.00 0.00 c1 36 4.10 139.00 -16.00 c2 c3 9.90 233.00 -8.00 d1 d2 8.38 313.00 0.00 34 d2 2.36 155.00 1.00 *END 2366_08_03 *BEGIN 2366_08_04 *CALIBRATE declination 2.15 1 2 1.76 276.00 -13.00 2 3 1.48 245.00 12.00 3 4 5.50 229.00 -11.00 4 5 1.60 207.00 -17.00 5 6 3.59 239.00 14.00 6 7 3.90 126.00 14.00 7 8 3.20 242.00 11.00 8 9 4.20 195.00 9.00 9 10 3.79 200.00 6.00 10 11 4.50 224.00 -23.00 11 12 8.37 225.00 9.00 12 13 4.90 293.00 3.00 13 14 18.70 214.00 -3.00 14 15 8.40 293.00 -2.00 15 16 4.37 221.00 -16.00 16 17 9.81 258.00 -3.00 17 18 12.57 183.00 1.00 18 19 20.25 245.00 0.00 19 20 11.62 156.00 -4.00 20 21 0.60 167.00 2.00 21 22 16.97 226.00 -1.00 22 23 5.60 249.00 0.00 23 24 4.50 201.00 2.00 24 25 3.00 244.00 16.00 25 26 6.20 331.00 -2.00 26 27 6.50 240.00 -2.00 27 28 2.40 181.00 0.00 28 29 4.00 236.00 -2.00 29 30 4.10 212.00 0.00 30 31 1.00 263.00 0.00 31 32 4.28 205.00 58.00 32 33 3.80 240.00 26.00 33 34 2.50 199.00 -24.00 34 35 3.20 245.00 -28.00 35 36 3.90 293.00 -43.00 36 37 5.30 216.00 -11.00 37 38 10.90 207.00 -18.00 38 39 20.50 194.00 0.00 39 40 5.60 219.00 8.00 40 41 17.80 201.00 -1.00 41 42 7.00 109.00 7.00 42 43 7.40 145.00 -19.00 43 44 11.60 228.00 18.00 0 1A 28.15 300.00 -1.00 1A 2A 19.45 318.00 0.00 2A 3A 13.41 313.00 -3.00 3A 4A 19.30 278.00 -5.00 4A 5A 4.92 251.00 -2.00 5A 1 8.20 283.00 -3.00 *END 2366_08_04 *BEGIN 2366_08_05 *CALIBRATE declination 2.15 0 1 2.47 310.00 10.00 1 2 1.67 19.00 12.00 2 3 5.07 44.00 0.00 3 4 2.92 6.00 3.00 4 5 3.42 127.00 0.00 5 6 3.05 123.00 5.00 7 6 2.23 333.00 6.00 4 8 2.29 39.00 6.00 8 9 1.25 301.00 -17.00 *END 2366_08_05 *BEGIN 2366_08_06 *CALIBRATE declination 2.15 0 1 4.42 139.00 0.00 1 2 6.28 79.00 0.00 2 3 4.71 48.00 4.00 3 4 19.39 136.00 -1.00 4 5 3.97 123.00 -3.00 1 6 14.72 130.00 -1.00 6 7 4.37 141.00 -9.00 7 8 2.82 131.00 0.00 8 9 2.69 150.00 -5.00 9 10 5.86 131.00 0.00 10 11 4.87 132.00 0.00 11 12 3.04 132.00 4.00 12 13 3.15 125.00 -15.00 13 14 1.49 155.00 31.00 14 15 1.94 106.00 -13.00 *END 2366_08_06 *BEGIN 2366_08_07 *CALIBRATE declination 2.15 0 1 3.77 15.00 10.00 1 2 2.82 56.00 0.00 2 3 2.84 50.00 7.00 *END 2366_08_07 *BEGIN 2366_08_08 *CALIBRATE declination 2.15 0 1 2.98 346.00 28.00 1 2 12.98 348.00 1.00 2 3 5.80 254.00 -7.00 3 4 4.28 214.00 -6.00 4 5 6.81 299.00 -2.00 5 6 1.20 0.00 -9.00 6 7 0.42 0.00 90.00 7 8 6.39 317.00 -1.00 8 9 4.43 205.00 -4.00 9 10 4.37 224.00 -3.00 10 11 0.72 154.00 -5.00 11 12 3.72 259.00 -6.00 12 13 3.54 334.00 3.00 13 14 2.76 20.00 -2.00 14 15 2.19 265.00 -1.00 15 16 2.55 321.00 6.00 16 17 1.44 327.00 3.00 17 18 2.07 206.00 -2.00 18 19 2.61 262.00 -11.00 19 20 0.94 322.00 0.00 20 21 2.17 18.00 -5.00 21 22 3.11 309.00 0.00 *END 2366_08_08 *BEGIN 2366_08_09 *CALIBRATE declination 2.15 0 1 9.09 213.00 -5.00 1 2 5.01 250.00 27.00 2 3 2.78 222.00 -40.00 3 4 2.60 246.00 -20.00 4 5 3.77 195.00 18.00 5 6 3.00 297.00 0.00 6 7 7.46 254.00 -9.00 7 8 3.08 234.00 -5.00 8 9 4.22 266.00 1.00 9 10 3.74 256.00 -9.00 10 11 8.54 207.00 -9.00 11 12 2.37 238.00 -8.00 12 13 3.89 248.00 -9.00 13 14 1.92 259.00 -49.00 14 15 5.14 243.00 -12.00 15 16 5.10 224.00 1.00 16 17 3.38 134.00 9.00 17 18 2.04 153.00 -46.00 18 19 5.14 76.00 12.00 19 20 5.46 77.00 19.00 8 21 1.71 312.00 -72.00 21 22 7.14 230.00 -1.00 22 23 4.85 238.00 -9.00 23 24 2.55 155.00 0.00 24 25 6.66 206.00 -3.00 25 26 5.12 208.00 4.00 26 20 1.44 314.00 -7.00 28 29 13.79 299.00 -3.00 29 30 26.09 248.00 -6.00 30 20 8.12 269.00 -15.00 17 a1 4.81 209.00 17.00 a1 a2 4.59 211.00 4.00 a2 a3 6.29 230.00 3.00 *END 2366_08_09 *BEGIN 2366_08_10 *CALIBRATE declination 2.15 1 2 5.42 187.00 0.00 2 3 3.85 231.00 -1.00 3 4 10.33 201.00 -2.00 4 5 2.16 258.00 3.00 5 6 3.51 266.00 -5.00 6 7 2.43 331.00 -2.00 7 8 2.16 254.00 -1.00 8 9 2.25 233.00 -7.00 9 10 1.70 228.00 -8.00 10 11 2.94 216.00 -5.00 11 12 14.57 204.00 -2.00 12 13 2.34 254.00 -2.00 13 14 4.42 225.00 0.00 14 15 8.87 205.00 -3.00 15 16 1.25 313.00 79.00 17 16 5.53 27.00 12.00 18 19 4.03 282.00 -1.00 19 20 8.45 281.00 -3.00 20 21 6.16 284.00 -2.00 21 22 3.76 347.00 -14.00 22 23 2.68 231.00 -3.00 23 24 2.26 263.00 -15.00 24 25 6.63 207.00 0.00 25 26 6.02 199.00 -2.00 26 27 2.97 200.00 -5.00 24 28 1.37 292.00 -25.00 15 28 2.06 59.00 -44.00 18 29 10.00 39.00 0.00 *END 2366_08_10 *BEGIN 2366_08_11 *CALIBRATE declination 2.15 1 2 3.24 326.00 -5.00 2 3 1.90 318.00 3.00 3 4 5.59 211.00 -4.00 4 5 2.53 228.00 -1.00 5 6 4.18 302.00 -6.00 6 7 3.00 59.00 -72.00 7 8 7.36 310.00 8.00 8 9 7.15 301.00 -11.00 9 10 9.68 333.00 -8.00 10 11 21.83 308.00 -3.00 11 12 10.10 320.00 5.00 12 13 5.82 324.00 -1.00 13 14 4.38 347.00 -6.00 14 15 4.70 313.00 -6.00 15 16 4.03 324.00 -9.00 16 17 10.24 308.00 -3.00 17 18 8.01 324.00 -10.00 18 19 1.79 10.00 -4.00 19 20 2.42 287.00 -15.00 20 21 2.38 221.00 10.00 *END 2366_08_11 *BEGIN 2366_08_12 *CALIBRATE declination 2.15 A 1 4.90 142.00 68.00 1 2 6.20 38.00 -4.00 2 3 5.50 43.00 4.00 3 4 3.40 4.00 -1.00 4 5 2.30 62.00 1.00 5 6 7.00 351.00 -3.00 6 7 3.90 330.00 3.00 7 8 8.26 9.00 0.00 8 9 2.50 27.00 5.00 9 10 4.60 310.00 3.00 10 11 3.40 60.00 14.00 11 12 4.70 56.00 26.00 12 13 4.10 54.00 7.00 13 14 4.60 95.00 -42.00 *END 2366_08_12 *BEGIN 2366_08_13 *CALIBRATE declination 2.15 44 45 8.50 211.00 34.00 45 46 12.00 219.00 -9.00 46 47 3.40 185.00 24.00 47 48 2.30 56.00 -57.00 48 49 4.50 151.00 -41.00 49 50 8.30 0.00 -90.00 50 51 5.13 262.00 10.00 51 52 12.00 237.00 -2.00 52 53 2.07 172.00 -3.00 53 54 3.00 293.00 -41.00 54 55 3.50 218.00 -46.00 55 56 4.10 209.00 -2.00 56 57 1.60 242.00 0.00 57 58 9.70 212.00 -4.00 58 59 4.10 161.00 -3.00 59 60 6.70 191.00 4.00 60 61 4.00 0.00 90.00 61 62 7.69 202.00 -2.00 62 63 3.00 0.00 -90.00 63 64 3.00 171.00 -14.00 64 65 3.80 84.00 -3.00 65 66 3.00 119.00 0.00 66 67 3.80 147.00 1.00 b0 b1 10.00 13.00 0.00 b1 b2 5.80 321.00 -3.00 b2 b3 7.50 321.00 6.00 b2 b4 2.50 285.00 -1.00 b4 b5 4.00 282.00 -48.00 b5 67 2.10 220.00 -36.00 52 c1 2.45 0.00 90.00 c1 c2 5.50 231.00 23.00 c2 c3 9.10 193.00 20.00 c3 c4 6.90 174.00 0.00 67 d0 15.00 189.00 -1.00 *END 2366_08_13 *END 2366_Torno CaveConverter_src/test/data/regression/Bagshawe_acad_ref.svx0000644000000000000000000006011612115122654023333 0ustar rootroot*BEGIN SurveyFromDXF *EQUATE S_L_JB_MAIN.1 S_L_JB_MAIN47.0 *EQUATE S_L_JB_MAIN1.0 S_L_JB_MAIN12.0 *EQUATE S_L_JB_MAIN1.8 S_L_JB_MAIN19.0 *EQUATE S_L_JB_MAIN1.9 S_L_JB_MAIN2.0 *EQUATE S_L_JB_MAIN2.0 S_L_JB_MAIN1.9 *EQUATE S_L_JB_MAIN2.1 S_L_JB_MAIN16.11 *EQUATE S_L_JB_MAIN2.5 S_L_JB_MAIN21.0 *EQUATE S_L_JB_MAIN2.10 S_L_JB_MAIN21.9 *EQUATE S_L_JB_MAIN2.13 S_L_JB_MAIN20.0 *EQUATE S_L_JB_MAIN2.20 S_L_JB_MAIN20.11 *EQUATE S_L_JB_MAIN2.22 S_L_JB_MAIN3.0 *EQUATE S_L_JB_MAIN3.0 S_L_JB_MAIN2.22 *EQUATE S_L_JB_MAIN3.1 S_L_JB_MAIN22.0 *EQUATE S_L_JB_MAIN3.9 S_L_JB_MAIN6.0 *EQUATE S_L_JB_MAIN3.13 S_L_JB_MAIN5.0 *EQUATE S_L_JB_MAIN3.16 S_L_JB_MAIN4.0 *EQUATE S_L_JB_MAIN4.0 S_L_JB_MAIN3.16 *EQUATE S_L_JB_MAIN5.0 S_L_JB_MAIN3.13 *EQUATE S_L_JB_MAIN6.0 S_L_JB_MAIN3.9 *EQUATE S_L_JB_MAIN7.1 S_L_JB_MAIN9.9 *EQUATE S_L_JB_MAIN7.10 S_L_JB_MAIN8.0 *EQUATE S_L_JB_MAIN8.0 S_L_JB_MAIN7.10 *EQUATE S_L_JB_MAIN9.6 S_L_JB_MAIN11.0 *EQUATE S_L_JB_MAIN9.7 S_L_JB_MAIN10.0 *EQUATE S_L_JB_MAIN9.9 S_L_JB_MAIN7.1 *EQUATE S_L_JB_MAIN10.0 S_L_JB_MAIN9.7 *EQUATE S_L_JB_MAIN11.0 S_L_JB_MAIN9.6 *EQUATE S_L_JB_MAIN12.0 S_L_JB_MAIN1.0 *EQUATE S_L_JB_MAIN12.4 S_L_JB_MAIN13.0 *EQUATE S_L_JB_MAIN12.4 S_L_JB_MAIN13.8 *EQUATE S_L_JB_MAIN12.8 S_L_JB_MAIN14.5 *EQUATE S_L_JB_MAIN13.0 S_L_JB_MAIN12.4 *EQUATE S_L_JB_MAIN13.0 S_L_JB_MAIN13.8 *EQUATE S_L_JB_MAIN13.1 S_L_JB_MAIN14.0 *EQUATE S_L_JB_MAIN13.8 S_L_JB_MAIN12.4 *EQUATE S_L_JB_MAIN14.0 S_L_JB_MAIN13.1 *EQUATE S_L_JB_MAIN14.5 S_L_JB_MAIN12.8 *EQUATE S_L_JB_MAIN15.1 S_L_JB_MAIN17.3 *EQUATE S_L_JB_MAIN16.2 S_L_JB_MAIN17.0 *EQUATE S_L_JB_MAIN16.3 S_L_JB_MAIN37.0 *EQUATE S_L_JB_MAIN16.5 S_L_JB_MAIN38.0 *EQUATE S_L_JB_MAIN16.5 S_L_JB_MAIN38.1 *EQUATE S_L_JB_MAIN16.11 S_L_JB_MAIN2.1 *EQUATE S_L_JB_MAIN17.0 S_L_JB_MAIN16.2 *EQUATE S_L_JB_MAIN17.1 S_L_JB_MAIN18.0 *EQUATE S_L_JB_MAIN17.2 S_L_JB_MAIN38.7 *EQUATE S_L_JB_MAIN17.3 S_L_JB_MAIN15.1 *EQUATE S_L_JB_MAIN18.0 S_L_JB_MAIN17.1 *EQUATE S_L_JB_MAIN19.0 S_L_JB_MAIN1.8 *EQUATE S_L_JB_MAIN20.0 S_L_JB_MAIN2.13 *EQUATE S_L_JB_MAIN20.11 S_L_JB_MAIN2.20 *EQUATE S_L_JB_MAIN21.0 S_L_JB_MAIN2.5 *EQUATE S_L_JB_MAIN21.9 S_L_JB_MAIN2.10 *EQUATE S_L_JB_MAIN22.0 S_L_JB_MAIN3.1 *EQUATE S_L_JB_MAIN22.6 S_L_JB_MAIN23.0 *EQUATE S_L_JB_MAIN22.6 S_L_JB_MAIN24.0 *EQUATE S_L_JB_MAIN22.6 S_L_JB_MAIN46.0 *EQUATE S_L_JB_MAIN22.10 S_L_JB_MAIN22.11 *EQUATE S_L_JB_MAIN23.0 S_L_JB_MAIN22.6 *EQUATE S_L_JB_MAIN23.0 S_L_JB_MAIN24.0 *EQUATE S_L_JB_MAIN23.0 S_L_JB_MAIN46.0 *EQUATE S_L_JB_MAIN24.0 S_L_JB_MAIN22.6 *EQUATE S_L_JB_MAIN24.0 S_L_JB_MAIN23.0 *EQUATE S_L_JB_MAIN24.0 S_L_JB_MAIN46.0 *EQUATE S_L_JB_MAIN24.7 S_L_JB_MAIN25.0 *EQUATE S_L_JB_MAIN25.0 S_L_JB_MAIN24.7 *EQUATE S_L_JB_MAIN25.6 S_L_JB_MAIN26.0 *EQUATE S_L_JB_MAIN26.0 S_L_JB_MAIN25.6 *EQUATE S_L_JB_MAIN28.17 S_L_JB_MAIN31.0 *EQUATE S_L_JB_MAIN28.19 S_L_JB_MAIN29.0 *EQUATE S_L_JB_MAIN28.20 S_L_JB_MAIN30.0 *EQUATE S_L_JB_MAIN28.32 S_L_JB_MAIN36.0 *EQUATE S_L_JB_MAIN29.0 S_L_JB_MAIN28.19 *EQUATE S_L_JB_MAIN30.0 S_L_JB_MAIN28.20 *EQUATE S_L_JB_MAIN31.0 S_L_JB_MAIN28.17 *EQUATE S_L_JB_MAIN31.4 S_L_JB_MAIN32.0 *EQUATE S_L_JB_MAIN31.10 S_L_full_moon.0 *EQUATE S_L_JB_MAIN32.0 S_L_JB_MAIN31.4 *EQUATE S_L_JB_MAIN32.1 S_L_JB_MAIN34.0 *EQUATE S_L_JB_MAIN32.1 S_L_JB_MAIN42.0 *EQUATE S_L_JB_MAIN32.2 S_L_JB_MAIN33.0 *EQUATE S_L_JB_MAIN33.0 S_L_JB_MAIN32.2 *EQUATE S_L_JB_MAIN34.0 S_L_JB_MAIN32.1 *EQUATE S_L_JB_MAIN34.0 S_L_JB_MAIN42.0 *EQUATE S_L_JB_MAIN34.2 S_L_JB_MAIN35.0 *EQUATE S_L_JB_MAIN35.0 S_L_JB_MAIN34.2 *EQUATE S_L_JB_MAIN36.0 S_L_JB_MAIN28.32 *EQUATE S_L_JB_MAIN37.0 S_L_JB_MAIN16.3 *EQUATE S_L_JB_MAIN37.2 S_L_JB_MAIN37.3 *EQUATE S_L_JB_MAIN38.0 S_L_JB_MAIN16.5 *EQUATE S_L_JB_MAIN38.0 S_L_JB_MAIN38.1 *EQUATE S_L_JB_MAIN38.1 S_L_JB_MAIN16.5 *EQUATE S_L_JB_MAIN38.7 S_L_JB_MAIN17.2 *EQUATE S_L_JB_MAIN39.6 S_L_JB_MAIN53.0 *EQUATE S_L_JB_MAIN40.0 S_L_JB_MAIN41.0 *EQUATE S_L_JB_MAIN40.0 S_L_JB_MAIN52.0 *EQUATE S_L_JB_MAIN40.0 S_L_JB_MAIN52.1 *EQUATE S_L_JB_MAIN40.0 S_L_JB_MAIN61.17 *EQUATE S_L_JB_MAIN41.0 S_L_JB_MAIN40.0 *EQUATE S_L_JB_MAIN41.0 S_L_JB_MAIN52.0 *EQUATE S_L_JB_MAIN41.0 S_L_JB_MAIN52.1 *EQUATE S_L_JB_MAIN41.0 S_L_JB_MAIN61.17 *EQUATE S_L_JB_MAIN42.0 S_L_JB_MAIN32.1 *EQUATE S_L_JB_MAIN42.0 S_L_JB_MAIN34.0 *EQUATE S_L_JB_MAIN42.14 S_L_JB_MAIN44.0 *EQUATE S_L_JB_MAIN44.0 S_L_JB_MAIN42.14 *EQUATE S_L_JB_MAIN46.0 S_L_JB_MAIN22.6 *EQUATE S_L_JB_MAIN46.0 S_L_JB_MAIN23.0 *EQUATE S_L_JB_MAIN46.0 S_L_JB_MAIN24.0 *EQUATE S_L_JB_MAIN46.7 S_L_JB_MAIN48.0 *EQUATE S_L_JB_MAIN46.17 S_L_JB_MAIN51.0 *EQUATE S_L_JB_MAIN46.19 S_L_JB_MAIN50.0 *EQUATE S_L_JB_MAIN47.0 S_L_JB_MAIN.1 *EQUATE S_L_JB_MAIN48.0 S_L_JB_MAIN46.7 *EQUATE S_L_JB_MAIN48.3 S_L_JB_MAIN49.0 *EQUATE S_L_JB_MAIN49.0 S_L_JB_MAIN48.3 *EQUATE S_L_JB_MAIN50.0 S_L_JB_MAIN46.19 *EQUATE S_L_JB_MAIN51.0 S_L_JB_MAIN46.17 *EQUATE S_L_full_moon.0 S_L_JB_MAIN31.10 *EQUATE S_L_full_moon.8 S_L_full_moon1.0 *EQUATE S_L_full_moon.10 S_L_full_moon3.0 *EQUATE S_L_full_moon1.0 S_L_full_moon.8 *EQUATE S_L_full_moon1.8 S_L_full_moon2.0 *EQUATE S_L_full_moon2.0 S_L_full_moon1.8 *EQUATE S_L_full_moon3.0 S_L_full_moon.10 *EQUATE S_L_JB_MAIN52.0 S_L_JB_MAIN40.0 *EQUATE S_L_JB_MAIN52.0 S_L_JB_MAIN41.0 *EQUATE S_L_JB_MAIN52.0 S_L_JB_MAIN52.1 *EQUATE S_L_JB_MAIN52.0 S_L_JB_MAIN61.17 *EQUATE S_L_JB_MAIN52.1 S_L_JB_MAIN40.0 *EQUATE S_L_JB_MAIN52.1 S_L_JB_MAIN41.0 *EQUATE S_L_JB_MAIN52.1 S_L_JB_MAIN61.17 *EQUATE S_L_JB_MAIN53.0 S_L_JB_MAIN39.6 *EQUATE S_L_JB_MAIN53.16 S_L_JB_MAIN54.0 *EQUATE S_L_JB_MAIN53.16 S_L_JB_MAIN56.0 *EQUATE S_L_JB_MAIN53.16 S_L_JB_MAIN57.0 *EQUATE S_L_JB_MAIN53.16 S_L_JB_MAIN58.0 *EQUATE S_L_JB_MAIN53.16 S_L_JB_MAIN59.0 *EQUATE S_L_JB_MAIN53.27 S_L_JB_MAIN61.0 *EQUATE S_L_JB_MAIN53.29 S_L_JB_MAIN60.0 *EQUATE S_L_JB_MAIN54.0 S_L_JB_MAIN53.16 *EQUATE S_L_JB_MAIN54.0 S_L_JB_MAIN56.0 *EQUATE S_L_JB_MAIN54.0 S_L_JB_MAIN57.0 *EQUATE S_L_JB_MAIN54.0 S_L_JB_MAIN58.0 *EQUATE S_L_JB_MAIN54.0 S_L_JB_MAIN59.0 *EQUATE S_L_JB_MAIN54.1 S_L_JB_MAIN55.0 *EQUATE S_L_JB_MAIN55.0 S_L_JB_MAIN54.1 *EQUATE S_L_JB_MAIN56.0 S_L_JB_MAIN53.16 *EQUATE S_L_JB_MAIN56.0 S_L_JB_MAIN54.0 *EQUATE S_L_JB_MAIN56.0 S_L_JB_MAIN57.0 *EQUATE S_L_JB_MAIN56.0 S_L_JB_MAIN58.0 *EQUATE S_L_JB_MAIN56.0 S_L_JB_MAIN59.0 *EQUATE S_L_JB_MAIN56.1 S_L_JB_MAIN57.1 *EQUATE S_L_JB_MAIN57.0 S_L_JB_MAIN53.16 *EQUATE S_L_JB_MAIN57.0 S_L_JB_MAIN54.0 *EQUATE S_L_JB_MAIN57.0 S_L_JB_MAIN56.0 *EQUATE S_L_JB_MAIN57.0 S_L_JB_MAIN58.0 *EQUATE S_L_JB_MAIN57.0 S_L_JB_MAIN59.0 *EQUATE S_L_JB_MAIN57.1 S_L_JB_MAIN56.1 *EQUATE S_L_JB_MAIN58.0 S_L_JB_MAIN53.16 *EQUATE S_L_JB_MAIN58.0 S_L_JB_MAIN54.0 *EQUATE S_L_JB_MAIN58.0 S_L_JB_MAIN56.0 *EQUATE S_L_JB_MAIN58.0 S_L_JB_MAIN57.0 *EQUATE S_L_JB_MAIN58.0 S_L_JB_MAIN59.0 *EQUATE S_L_JB_MAIN59.0 S_L_JB_MAIN53.16 *EQUATE S_L_JB_MAIN59.0 S_L_JB_MAIN54.0 *EQUATE S_L_JB_MAIN59.0 S_L_JB_MAIN56.0 *EQUATE S_L_JB_MAIN59.0 S_L_JB_MAIN57.0 *EQUATE S_L_JB_MAIN59.0 S_L_JB_MAIN58.0 *EQUATE S_L_JB_MAIN60.0 S_L_JB_MAIN53.29 *EQUATE S_L_JB_MAIN61.0 S_L_JB_MAIN53.27 *EQUATE S_L_JB_MAIN61.17 S_L_JB_MAIN40.0 *EQUATE S_L_JB_MAIN61.17 S_L_JB_MAIN41.0 *EQUATE S_L_JB_MAIN61.17 S_L_JB_MAIN52.0 *EQUATE S_L_JB_MAIN61.17 S_L_JB_MAIN52.1 *BEGIN S_L_JB_MAIN *FIX 0 17139.84 80873.35 237.02 0 1 16.46 64.71 -15.91 1 2 6.61 336.67 -13.84 2 3 3.23 258.44 -13.25 *END S_L_JB_MAIN *BEGIN S_L_JB_MAIN1 0 1 4.21 45.10 2.04 1 2 7.31 60.39 -48.18 2 3 4.43 215.79 -20.34 3 4 19.77 183.16 -2.20 4 5 3.73 116.20 17.49 5 6 9.06 100.69 28.98 6 7 9.45 30.41 5.59 7 8 10.76 30.50 0.11 8 9 15.81 28.20 3.55 *END S_L_JB_MAIN1 *BEGIN S_L_JB_MAIN2 0 1 9.63 55.07 2.56 1 2 4.53 82.77 2.28 2 3 12.23 42.75 1.50 3 4 8.39 54.32 1.03 4 5 2.63 17.07 24.96 5 6 8.45 55.30 -10.50 6 7 6.93 359.42 -5.46 7 8 10.06 41.17 -1.99 8 9 8.56 83.42 -1.00 9 10 7.28 128.59 1.02 10 11 11.83 41.42 4.51 11 12 10.65 57.98 3.01 12 13 6.33 50.58 -0.54 13 14 10.61 70.11 -4.00 14 15 10.72 76.56 -2.51 15 16 12.09 65.18 -4.51 16 17 13.78 37.92 -2.50 17 18 12.06 63.20 -3.23 18 19 12.62 37.91 -2.00 19 20 9.36 31.40 -7.00 20 21 10.52 29.43 -5.02 21 22 13.16 71.80 -1.26 *END S_L_JB_MAIN2 *BEGIN S_L_JB_MAIN3 0 1 11.19 43.15 -1.74 1 2 4.51 29.71 -7.00 2 3 6.06 121.86 0.00 3 4 10.19 58.49 -6.48 4 5 8.25 18.08 0.00 5 6 11.57 46.89 -0.50 6 7 7.74 72.81 -4.96 7 8 9.20 50.16 1.99 8 9 7.75 52.98 13.28 9 10 13.30 64.38 -4.74 10 11 14.80 55.69 -1.51 11 12 12.58 29.47 -4.51 12 13 18.45 48.95 -8.01 13 14 7.24 114.08 -3.48 14 15 7.57 57.19 1.97 15 16 10.15 59.11 -8.73 16 17 2.57 124.00 -5.58 17 18 0.23 0.00 -90.00 18 19 6.10 208.81 -6.50 19 20 19.79 220.79 4.00 20 21 29.35 228.71 4.01 21 22 3.50 154.83 6.07 22 23 5.40 218.76 2.55 23 24 6.20 146.88 -7.50 24 25 12.35 121.45 -5.99 25 26 5.75 99.10 -1.00 26 27 7.15 103.09 -9.01 27 28 5.50 57.32 -0.52 28 29 3.35 17.24 4.96 29 30 10.50 95.10 -4.48 30 31 5.00 74.57 0.00 *END S_L_JB_MAIN3 *BEGIN S_L_JB_MAIN4 0 1 5.50 36.34 -11.00 1 2 3.00 65.24 -5.93 *END S_L_JB_MAIN4 *BEGIN S_L_JB_MAIN5 0 1 5.66 41.01 -18.02 1 2 7.12 38.44 -7.50 *END S_L_JB_MAIN5 *BEGIN S_L_JB_MAIN6 0 1 1.80 152.42 -9.93 1 2 19.15 236.20 34.01 *END S_L_JB_MAIN6 *BEGIN S_L_JB_MAIN7 0 1 1.00 47.84 0.00 1 2 10.44 132.37 -7.82 2 3 23.88 114.04 -10.01 3 4 15.95 149.39 -10.00 4 5 8.80 140.24 -5.87 5 6 6.24 144.07 -2.48 6 7 8.47 160.56 -0.47 7 8 1.95 83.22 42.51 8 9 8.52 108.65 3.50 9 10 16.71 76.33 -8.98 10 11 11.12 204.40 -2.01 11 12 12.44 202.44 -3.00 12 13 13.24 213.41 1.51 13 14 8.58 203.94 0.00 14 15 7.80 204.79 0.00 15 16 12.10 220.75 0.00 16 17 12.10 219.77 0.00 17 18 11.80 213.77 0.00 18 19 5.10 242.68 0.00 19 20 6.00 162.74 0.00 *END S_L_JB_MAIN7 *BEGIN S_L_JB_MAIN8 0 1 16.45 68.39 -4.50 1 2 15.30 67.88 -8.49 2 3 6.85 77.83 -4.52 3 4 6.43 71.40 -1.52 4 5 5.50 72.33 -5.95 *END S_L_JB_MAIN8 *BEGIN S_L_JB_MAIN9 0 1 23.32 253.41 -0.20 1 2 9.43 268.58 10.33 2 3 7.13 265.66 24.88 3 4 6.70 257.13 3.42 4 5 3.28 261.51 -27.25 5 6 16.65 258.95 4.58 6 7 7.22 239.17 1.75 7 8 11.80 173.96 -14.68 8 9 20.19 188.40 -0.17 *END S_L_JB_MAIN9 *BEGIN S_L_JB_MAIN10 0 1 0.23 221.42 -10.01 1 2 11.35 280.48 -43.01 2 3 1.84 249.93 -15.41 3 4 7.16 266.61 26.02 4 5 5.33 260.65 14.01 5 6 6.98 263.64 -5.01 6 7 3.14 359.81 13.06 7 8 5.05 282.54 -32.04 8 9 6.39 290.49 -20.05 9 10 1.56 0.00 90.00 10 11 9.83 278.01 21.98 11 12 5.69 347.12 6.96 12 13 8.15 306.08 5.00 13 14 11.64 329.39 8.00 14 15 7.25 352.24 7.53 15 16 1.04 320.12 -8.83 16 17 13.30 320.80 -58.99 *END S_L_JB_MAIN10 *BEGIN S_L_JB_MAIN11 0 1 6.70 298.44 11.98 1 2 7.07 264.43 7.97 2 3 9.47 263.44 3.99 3 4 6.42 268.45 10.96 *END S_L_JB_MAIN11 *BEGIN S_L_JB_MAIN12 0 1 19.76 221.12 1.97 1 2 28.51 218.31 -0.02 2 3 18.98 201.61 -0.60 3 4 15.17 207.81 0.64 4 5 8.92 264.28 8.32 5 6 12.51 173.94 -1.65 6 7 8.80 206.18 -6.52 7 8 14.00 205.98 1.15 *END S_L_JB_MAIN12 *BEGIN S_L_JB_MAIN13 0 1 3.87 210.63 6.08 1 2 5.06 329.04 89.34 2 3 3.45 34.67 10.03 3 4 8.95 23.41 -3.01 4 5 1.99 40.86 9.86 5 6 7.05 20.85 -0.08 6 7 5.93 320.19 -89.25 7 8 17.43 204.51 0.00 *END S_L_JB_MAIN13 *BEGIN S_L_JB_MAIN14 0 1 14.53 192.12 -4.62 1 2 4.07 217.52 1.27 2 3 4.79 347.47 19.28 3 4 11.30 209.58 -0.15 4 5 8.38 204.11 -4.59 *END S_L_JB_MAIN14 *BEGIN S_L_JB_MAIN15 0 1 2.07 0.00 90.00 1 2 4.60 260.62 -1.99 2 3 5.93 217.88 26.53 3 4 3.05 242.07 22.55 4 5 7.35 249.43 5.47 5 6 4.29 234.25 17.50 6 7 2.62 250.11 0.00 7 8 1.07 286.24 0.00 8 9 4.32 220.88 51.98 9 10 4.15 265.57 -2.49 10 11 4.64 253.83 -24.04 11 12 5.30 249.44 0.00 *END S_L_JB_MAIN15 *BEGIN S_L_JB_MAIN16 0 1 6.18 49.04 12.81 1 2 4.90 52.56 -9.05 2 3 5.48 98.09 -1.88 3 4 6.28 74.19 1.19 4 5 12.88 38.12 3.20 5 6 6.91 109.35 -1.91 6 7 10.09 142.95 -3.30 7 8 1.51 124.27 -24.74 8 9 2.93 340.77 -62.19 9 10 3.94 230.57 -11.72 10 11 3.76 273.37 -4.43 *END S_L_JB_MAIN16 *BEGIN S_L_JB_MAIN17 0 1 7.07 33.01 4.06 1 2 6.38 317.34 11.94 2 3 3.74 236.45 23.96 *END S_L_JB_MAIN17 *BEGIN S_L_JB_MAIN18 0 1 4.61 80.83 6.85 *END S_L_JB_MAIN18 *BEGIN S_L_JB_MAIN19 0 1 9.63 210.93 1.78 1 2 7.02 202.43 42.03 2 3 5.10 202.97 24.46 3 4 1.63 158.11 44.92 4 5 1.69 0.00 90.00 5 6 7.69 211.47 38.53 6 7 6.37 225.39 35.96 *END S_L_JB_MAIN19 *BEGIN S_L_JB_MAIN20 0 1 10.44 40.57 -10.71 1 2 4.77 49.45 -6.14 2 3 4.18 75.30 -0.82 3 4 8.56 44.05 -4.69 4 5 3.08 18.38 -1.68 5 6 1.41 23.26 20.79 6 7 1.56 90.00 89.63 7 8 15.02 45.05 -6.23 8 9 24.31 65.12 -6.16 9 10 0.57 180.00 88.99 10 11 9.19 74.74 -0.69 *END S_L_JB_MAIN20 *BEGIN S_L_JB_MAIN21 0 1 6.37 58.51 34.21 1 2 2.69 118.85 -1.06 2 3 3.01 59.69 2.09 3 4 6.27 117.46 -1.46 4 5 7.55 54.06 -0.99 5 6 6.61 42.12 -17.06 6 7 4.36 21.24 -29.10 7 8 3.03 24.12 -14.14 8 9 1.20 299.58 -69.20 *END S_L_JB_MAIN21 *BEGIN S_L_JB_MAIN22 0 1 9.35 13.90 -4.48 1 2 5.70 338.01 6.95 2 3 11.20 1.79 2.00 3 4 15.65 7.31 -0.99 4 5 15.80 19.44 0.00 5 6 25.40 25.98 -2.01 6 7 7.31 57.42 -2.98 7 8 14.00 69.88 -8.00 8 9 17.47 73.81 -4.99 9 10 10.25 98.21 -4.03 11 12 6.13 66.41 -1.96 12 13 9.24 65.43 -0.50 13 14 6.37 26.00 -1.98 14 15 12.82 83.29 -5.51 15 16 5.82 85.37 -2.46 16 17 7.77 164.07 -5.98 *END S_L_JB_MAIN22 *BEGIN S_L_JB_MAIN23 0 1 3.53 295.04 5.03 1 2 3.91 252.89 -11.05 2 3 6.13 244.54 10.53 3 4 2.75 257.72 44.04 4 5 3.19 120.13 5.95 5 6 2.67 54.94 -4.08 6 7 10.11 62.44 -4.99 7 8 11.11 64.95 -9.48 8 9 7.46 90.77 -6.00 9 10 12.97 69.39 -6.02 10 11 6.75 77.31 -7.49 *END S_L_JB_MAIN23 *BEGIN S_L_JB_MAIN24 0 1 14.57 64.75 -6.90 1 2 3.75 79.68 -37.99 2 3 2.51 247.43 -4.12 3 4 1.22 334.08 -11.87 4 5 12.76 315.57 3.01 5 6 3.46 229.45 0.00 6 7 6.54 270.26 -1.49 7 8 5.36 276.26 -6.96 8 9 13.32 256.36 -1.98 9 10 10.28 257.34 2.01 10 11 5.33 286.23 0.54 11 12 6.47 263.35 0.00 12 13 7.32 272.27 0.00 13 14 9.06 258.34 -1.01 14 15 20.57 256.36 0.00 *END S_L_JB_MAIN24 *BEGIN S_L_JB_MAIN25 0 1 3.96 245.70 0.00 1 2 3.66 225.78 8.96 2 3 4.88 224.75 5.06 3 4 7.62 239.73 2.03 4 5 1.52 198.79 1.88 5 6 3.05 239.65 0.94 6 7 4.88 180.71 -3.99 7 8 5.49 225.74 0.00 8 9 3.05 158.65 0.00 9 10 2.44 254.70 6.12 *END S_L_JB_MAIN25 *BEGIN S_L_JB_MAIN26 0 1 6.10 240.77 6.03 *END S_L_JB_MAIN26 *BEGIN S_L_JB_MAIN27 0 1 4.60 265.06 10.02 1 2 7.50 0.00 -90.00 *END S_L_JB_MAIN27 *BEGIN S_L_JB_MAIN28 0 1 9.29 290.37 3.02 1 2 4.30 265.60 1.07 2 3 2.01 266.58 1.14 3 4 3.16 243.52 8.93 4 5 7.56 289.61 4.02 5 6 5.20 277.39 9.51 6 7 5.31 357.94 4.00 7 8 4.20 9.89 3.00 8 9 7.28 5.29 2.99 9 10 3.10 350.90 1.48 10 11 8.10 4.51 8.52 11 12 4.36 6.06 1.05 12 13 3.03 40.94 22.90 13 14 7.24 1.28 8.02 14 15 8.81 18.89 5.02 15 16 10.70 2.28 8.98 16 17 5.69 350.69 1.01 17 18 8.79 5.55 8.51 18 19 11.49 29.22 -2.99 19 20 5.00 9.92 -8.98 20 21 2.51 25.75 0.00 21 22 2.32 73.68 2.97 22 23 2.74 18.57 -12.67 23 24 2.18 1.84 0.00 24 25 6.04 341.66 0.00 25 26 9.37 356.76 0.00 26 27 4.97 34.49 4.03 27 28 9.62 27.23 -23.02 28 29 3.57 336.11 -23.98 29 30 3.37 2.56 -2.04 30 31 9.37 2.32 2.02 31 32 7.02 29.48 12.00 32 33 5.37 88.67 -15.56 33 34 7.57 19.18 -16.03 34 35 3.72 37.71 -8.96 35 36 3.12 27.55 2.94 36 37 12.42 42.00 1.01 37 38 11.77 338.57 3.99 38 39 6.77 347.44 2.96 39 40 11.27 35.98 0.00 40 41 7.97 69.19 -12.02 41 42 3.67 30.48 0.94 42 43 4.87 37.52 11.01 43 44 3.47 74.40 3.97 *END S_L_JB_MAIN28 *BEGIN S_L_JB_MAIN29 0 1 4.32 91.20 3.98 1 2 5.64 69.90 0.00 2 3 2.92 58.60 2.55 3 4 2.82 55.58 -3.05 *END S_L_JB_MAIN29 *BEGIN S_L_JB_MAIN30 0 1 7.12 248.45 2.98 1 2 4.84 248.75 4.03 2 3 2.72 236.43 -5.48 3 4 2.09 232.69 9.09 *END S_L_JB_MAIN30 *BEGIN S_L_JB_MAIN31 0 1 9.75 272.14 -8.02 1 2 0.28 0.00 90.00 2 3 11.60 273.57 4.00 3 4 9.38 276.01 9.02 4 5 18.05 228.39 -1.49 5 6 7.90 232.30 -1.23 6 7 30.35 218.94 1.00 7 8 15.45 235.25 6.99 8 9 12.76 212.95 5.49 9 10 15.01 244.16 8.00 10 11 4.32 166.09 -10.93 11 12 6.05 211.48 10.00 *END S_L_JB_MAIN31 *BEGIN S_L_JB_MAIN32 0 1 6.29 38.55 1.00 1 2 7.17 62.93 2.00 2 3 7.55 29.52 32.99 *END S_L_JB_MAIN32 *BEGIN S_L_JB_MAIN33 0 1 3.20 318.95 -50.00 1 2 3.40 27.53 -44.98 *END S_L_JB_MAIN33 *BEGIN S_L_JB_MAIN34 0 1 2.74 281.52 -14.58 1 2 2.89 0.00 -90.00 2 3 3.78 55.42 -31.95 *END S_L_JB_MAIN34 *BEGIN S_L_JB_MAIN35 0 1 2.94 254.76 10.00 1 2 4.95 251.77 -27.02 2 3 0.40 328.30 0.00 3 4 8.20 338.39 -86.01 4 5 8.67 68.24 -11.51 5 6 5.32 56.80 23.50 6 7 2.99 68.27 5.57 7 8 8.57 68.24 -10.01 *END S_L_JB_MAIN35 *BEGIN S_L_JB_MAIN36 0 1 4.85 252.31 4.02 1 2 4.10 266.71 -26.96 2 3 6.48 254.78 11.03 3 4 5.20 297.72 9.98 4 5 8.42 290.77 6.00 5 6 5.90 267.75 7.01 6 7 2.70 344.73 0.00 7 8 8.22 300.76 5.02 8 9 5.20 287.70 6.96 9 10 3.80 306.81 6.95 10 11 3.10 326.67 7.04 11 12 3.40 277.74 11.01 12 13 3.82 292.78 6.46 13 14 8.33 337.25 6.48 14 15 4.00 269.71 7.04 15 16 3.97 280.28 8.55 16 17 5.86 324.74 1.96 17 18 5.03 309.75 2.96 18 19 5.00 304.78 5.05 19 20 4.00 34.72 0.00 *END S_L_JB_MAIN36 *BEGIN S_L_JB_MAIN37 0 1 7.46 151.99 -2.00 1 2 6.80 171.12 0.00 *END S_L_JB_MAIN37 *BEGIN S_L_JB_MAIN38 1 2 6.22 29.41 2.58 2 3 4.50 356.80 6.12 3 4 0.52 124.00 -1.10 4 5 1.22 315.00 89.34 5 6 14.08 242.40 -1.87 6 7 11.16 250.95 -1.85 *END S_L_JB_MAIN38 *BEGIN S_L_JB_MAIN39 0 1 1.05 100.95 -53.06 1 2 3.97 191.41 29.94 2 3 7.40 36.46 46.98 3 4 2.19 86.08 48.08 4 5 5.30 0.00 90.00 5 6 1.50 108.43 -13.90 6 7 0.77 0.00 90.00 *END S_L_JB_MAIN39 *BEGIN S_L_JB_MAIN40 0 1 2.67 252.75 -13.85 1 2 13.13 277.64 -53.02 *END S_L_JB_MAIN40 *BEGIN S_L_JB_MAIN41 0 1 2.26 300.55 19.68 *END S_L_JB_MAIN41 *BEGIN S_L_JB_MAIN42 0 1 4.70 52.66 7.09 1 2 9.10 57.70 30.01 2 3 1.94 51.75 47.00 3 4 1.20 0.00 90.00 4 5 0.79 76.61 34.79 5 6 0.68 42.71 39.01 6 7 3.12 0.00 90.00 7 8 0.58 275.19 40.70 8 9 2.42 0.00 90.00 9 10 4.53 146.75 56.01 10 11 1.08 0.00 90.00 11 12 9.64 48.83 55.98 12 13 7.94 45.75 47.01 13 14 0.45 119.43 3.83 14 15 1.98 146.98 -15.80 15 16 4.34 77.60 -3.96 16 17 3.74 67.80 -8.14 17 18 6.58 51.74 -1.92 18 19 9.60 15.72 0.00 19 20 5.86 28.75 -1.07 *END S_L_JB_MAIN42 *BEGIN S_L_JB_MAIN43 0 1 7.31 231.73 13.12 1 2 5.41 210.75 -19.99 *END S_L_JB_MAIN43 *BEGIN S_L_JB_MAIN44 0 1 5.50 51.75 56.06 *END S_L_JB_MAIN44 *BEGIN S_L_JB_MAIN45 0 1 0.18 270.00 86.82 *END S_L_JB_MAIN45 *BEGIN S_L_JB_MAIN46 0 1 3.20 290.73 8.98 1 2 4.20 258.64 8.07 2 3 8.46 251.61 8.50 3 4 2.93 265.29 -3.92 4 5 3.78 286.71 12.99 5 6 10.55 255.59 5.99 6 7 8.05 257.18 4.99 7 8 3.30 194.21 -15.82 8 9 3.50 205.18 1.80 9 10 7.99 225.15 3.01 10 11 0.84 287.30 40.20 11 12 4.36 261.10 5.93 12 13 4.32 287.19 12.01 13 14 5.58 290.22 0.00 14 15 1.84 260.48 -18.00 15 16 3.80 264.08 6.04 16 17 3.30 257.19 -3.13 17 18 3.23 192.73 31.10 18 19 3.58 205.19 7.86 19 20 4.68 253.11 0.00 20 21 3.52 259.27 7.02 21 22 1.86 268.04 38.21 22 23 6.43 261.72 11.02 23 24 5.47 257.10 45.92 *END S_L_JB_MAIN46 *BEGIN S_L_JB_MAIN47 0 1 22.91 52.15 -10.97 *END S_L_JB_MAIN47 *BEGIN S_L_JB_MAIN48 0 1 2.52 246.71 5.93 1 2 4.75 276.17 1.09 2 3 1.76 341.57 13.82 3 4 4.85 313.54 31.05 *END S_L_JB_MAIN48 *BEGIN S_L_JB_MAIN49 0 1 6.55 65.74 32.01 *END S_L_JB_MAIN49 *BEGIN S_L_JB_MAIN50 0 1 12.50 92.23 10.00 1 2 2.55 92.92 -2.02 2 3 7.00 77.76 14.05 *END S_L_JB_MAIN50 *BEGIN S_L_JB_MAIN51 0 1 6.90 254.01 18.77 *END S_L_JB_MAIN51 *BEGIN S_L_full_moon 0 1 4.18 225.30 -12.44 1 2 1.87 284.85 0.00 2 3 7.94 225.71 1.01 3 4 11.50 219.76 4.99 4 5 11.30 258.76 2.99 5 6 18.30 215.75 1.00 6 7 7.60 217.70 19.06 7 8 7.21 233.75 1.99 8 9 15.00 238.75 -5.01 9 10 12.91 253.76 1.02 10 11 3.40 298.76 -4.05 11 12 8.30 227.79 -2.00 *END S_L_full_moon *BEGIN S_L_full_moon1 0 1 4.30 112.71 -35.03 1 2 4.20 111.86 -30.97 2 3 3.60 105.66 -24.99 3 4 4.50 54.71 -4.97 4 5 20.81 75.76 -5.02 5 6 7.00 96.28 -6.97 6 7 10.29 119.77 -5.02 7 8 6.01 61.81 -4.01 8 9 5.50 94.75 -9.00 *END S_L_full_moon1 *BEGIN S_L_full_moon2 0 1 7.90 73.73 3.05 *END S_L_full_moon2 *BEGIN S_L_full_moon3 0 1 6.10 117.75 -17.55 1 2 10.39 158.73 -15.01 2 3 11.89 175.75 -1.98 3 4 6.18 192.75 11.00 4 5 4.49 195.69 -26.05 5 6 6.83 170.79 -9.01 6 7 16.34 171.75 -4.00 7 8 14.92 169.23 -4.00 8 9 18.29 165.76 -5.49 9 10 8.96 170.82 0.00 *END S_L_full_moon3 *BEGIN S_L_JB_MAIN52 1 2 10.13 211.71 -1.98 2 3 24.48 121.67 -10.00 3 4 9.65 170.64 2.02 4 5 14.73 136.64 -14.03 5 6 4.12 132.78 -12.49 6 7 3.63 118.69 3.00 7 8 5.47 165.61 0.00 8 9 6.16 175.20 -17.96 9 10 2.26 282.44 -15.14 10 11 4.38 209.57 -20.99 11 12 12.92 201.67 -3.99 12 13 22.73 221.16 0.98 13 14 9.41 210.69 -3.96 14 15 4.26 215.11 -5.12 15 16 9.32 236.67 4.00 16 17 3.47 286.73 11.13 17 18 5.64 232.64 -3.05 18 19 13.64 211.66 -0.50 19 20 9.31 246.18 11.02 20 21 14.01 237.63 0.49 21 22 10.91 214.70 1.52 22 23 23.18 238.17 5.00 *END S_L_JB_MAIN52 *BEGIN S_L_JB_MAIN53 0 1 4.10 79.54 -5.88 1 2 5.50 70.69 -9.85 2 3 5.24 68.74 -11.78 3 4 5.20 83.46 -15.74 4 5 9.34 111.93 -13.74 5 6 9.75 90.24 -14.73 6 7 0.51 90.00 88.88 7 8 0.45 0.00 -88.73 8 9 7.47 103.11 -14.73 9 10 2.00 166.26 -21.77 10 11 8.42 212.48 0.00 11 12 3.17 219.74 5.24 12 13 3.94 234.94 4.07 13 14 5.55 250.12 14.18 14 15 1.64 200.31 34.48 15 16 6.63 163.01 35.90 16 17 15.88 181.15 32.05 17 18 1.61 219.38 31.49 18 19 0.50 90.00 -88.85 19 20 4.77 298.86 20.35 20 21 13.31 257.51 17.30 21 22 2.29 246.14 18.31 22 23 2.27 217.69 11.19 23 24 5.98 125.92 -14.83 24 25 4.88 106.20 -18.76 25 26 10.85 207.77 3.17 26 27 6.98 208.70 1.89 27 28 7.63 87.59 2.93 28 29 9.94 103.35 15.70 *END S_L_JB_MAIN53 *BEGIN S_L_JB_MAIN54 0 1 11.93 144.76 -22.01 1 2 8.20 95.81 19.96 *END S_L_JB_MAIN54 *BEGIN S_L_JB_MAIN55 0 1 11.01 126.74 -35.99 *END S_L_JB_MAIN55 *BEGIN S_L_JB_MAIN56 0 1 12.79 176.77 -17.00 1 2 6.40 147.80 -10.98 *END S_L_JB_MAIN56 *BEGIN S_L_JB_MAIN57 0 1 12.79 176.77 -17.00 *END S_L_JB_MAIN57 *BEGIN S_L_JB_MAIN58 0 1 8.40 174.77 -24.03 1 2 19.06 312.77 35.00 *END S_L_JB_MAIN58 *BEGIN S_L_JB_MAIN59 0 1 8.73 277.80 13.99 *END S_L_JB_MAIN59 *BEGIN S_L_JB_MAIN60 0 1 9.02 101.69 -7.96 1 2 17.07 79.65 -4.00 2 3 14.85 73.67 -5.02 3 4 6.76 34.62 -11.00 4 5 3.75 4.74 -0.92 5 6 6.75 59.68 0.00 6 7 19.50 59.17 -3.00 7 8 22.25 31.15 0.00 8 9 25.41 9.15 3.99 9 10 18.20 40.68 0.00 10 11 23.67 65.15 0.51 11 12 6.19 119.63 0.00 12 13 6.23 94.61 2.95 *END S_L_JB_MAIN60 *BEGIN S_L_JB_MAIN61 0 1 2.88 208.35 -5.98 1 2 2.72 274.22 -1.48 2 3 19.13 205.83 -4.98 3 4 6.54 208.26 -5.97 4 5 10.80 191.83 -3.50 5 6 24.00 205.35 -3.99 6 7 8.86 197.38 -7.98 7 8 8.81 202.89 -4.03 8 9 9.03 200.85 -1.97 9 10 7.88 225.57 1.96 10 11 13.05 150.68 -14.46 11 12 2.83 221.83 -18.54 12 13 2.90 213.63 -7.93 13 14 2.83 253.38 38.95 14 15 25.00 223.63 4.43 15 16 7.18 224.60 3.91 16 17 13.30 255.35 6.78 *END S_L_JB_MAIN61 *END SurveyFromDXF CaveConverter_src/test/data/regression/Bagshawe_acad_in.dxf0000644000000000000000000442150212560565232023141 0ustar rootroot 0 SECTION 2 HEADER 9 $ACADVER 1 AC1015 9 $ACADMAINTVER 70 6 9 $DWGCODEPAGE 3 ANSI_1252 9 $INSBASE 10 0.0 20 0.0 30 0.0 9 $EXTMIN 10 16700.0 20 80200.0 30 -0.004002138481826 9 $EXTMAX 10 17400.0 20 81000.0 30 288.99 9 $LIMMIN 10 16800.0 20 80350.0 9 $LIMMAX 10 17400.0 20 81000.0 9 $ORTHOMODE 70 0 9 $REGENMODE 70 1 9 $FILLMODE 70 1 9 $QTEXTMODE 70 0 9 $MIRRTEXT 70 1 9 $LTSCALE 40 0.1 9 $ATTMODE 70 1 9 $TEXTSIZE 40 0.2 9 $TRACEWID 40 0.05 9 $TEXTSTYLE 7 STANDARD 9 $CLAYER 8 S_L Bens R 9 $CELTYPE 6 BYLAYER 9 $CECOLOR 62 256 9 $CELTSCALE 40 2.0 9 $DISPSILH 70 0 9 $DIMSCALE 40 1.0 9 $DIMASZ 40 0.18 9 $DIMEXO 40 0.0625 9 $DIMDLI 40 0.38 9 $DIMRND 40 0.0 9 $DIMDLE 40 0.0 9 $DIMEXE 40 0.18 9 $DIMTP 40 0.0 9 $DIMTM 40 0.0 9 $DIMTXT 40 0.18 9 $DIMCEN 40 0.09 9 $DIMTSZ 40 0.0 9 $DIMTOL 70 0 9 $DIMLIM 70 0 9 $DIMTIH 70 1 9 $DIMTOH 70 1 9 $DIMSE1 70 0 9 $DIMSE2 70 0 9 $DIMTAD 70 0 9 $DIMZIN 70 0 9 $DIMBLK 1 9 $DIMASO 70 1 9 $DIMSHO 70 1 9 $DIMPOST 1 9 $DIMAPOST 1 9 $DIMALT 70 0 9 $DIMALTD 70 2 9 $DIMALTF 40 25.4 9 $DIMLFAC 40 1.0 9 $DIMTOFL 70 0 9 $DIMTVP 40 0.0 9 $DIMTIX 70 0 9 $DIMSOXD 70 0 9 $DIMSAH 70 0 9 $DIMBLK1 1 9 $DIMBLK2 1 9 $DIMSTYLE 2 STANDARD 9 $DIMCLRD 70 0 9 $DIMCLRE 70 0 9 $DIMCLRT 70 0 9 $DIMTFAC 40 1.0 9 $DIMGAP 40 0.09 9 $DIMJUST 70 0 9 $DIMSD1 70 0 9 $DIMSD2 70 0 9 $DIMTOLJ 70 1 9 $DIMTZIN 70 0 9 $DIMALTZ 70 0 9 $DIMALTTZ 70 0 9 $DIMUPT 70 0 9 $DIMDEC 70 4 9 $DIMTDEC 70 4 9 $DIMALTU 70 2 9 $DIMALTTD 70 2 9 $DIMTXSTY 7 STANDARD 9 $DIMAUNIT 70 0 9 $DIMADEC 70 0 9 $DIMALTRND 40 0.0 9 $DIMAZIN 70 0 9 $DIMDSEP 70 46 9 $DIMATFIT 70 3 9 $DIMFRAC 70 0 9 $DIMLDRBLK 1 9 $DIMLUNIT 70 2 9 $DIMLWD 70 -2 9 $DIMLWE 70 -2 9 $DIMTMOVE 70 0 9 $LUNITS 70 2 9 $LUPREC 70 4 9 $SKETCHINC 40 0.1 9 $FILLETRAD 40 0.5 9 $AUNITS 70 0 9 $AUPREC 70 0 9 $MENU 1 . 9 $ELEVATION 40 0.0 9 $PELEVATION 40 0.0 9 $THICKNESS 40 0.0 9 $LIMCHECK 70 0 9 $CHAMFERA 40 0.5 9 $CHAMFERB 40 0.5 9 $CHAMFERC 40 1.0 9 $CHAMFERD 40 0.0 9 $SKPOLY 70 1 9 $TDCREATE 40 2452448.769296990 9 $TDUCREATE 40 2452448.727630324 9 $TDUPDATE 40 2454763.643879074 9 $TDUUPDATE 40 2454763.602212407 9 $TDINDWG 40 8.3886591435 9 $TDUSRTIMER 40 8.3886591435 9 $USRTIMER 70 1 9 $ANGBASE 50 90.0 9 $ANGDIR 70 1 9 $PDMODE 70 0 9 $PDSIZE 40 0.0 9 $PLINEWID 40 0.0 9 $SPLFRAME 70 0 9 $SPLINETYPE 70 6 9 $SPLINESEGS 70 8 9 $HANDSEED 5 2B9E 9 $SURFTAB1 70 6 9 $SURFTAB2 70 6 9 $SURFTYPE 70 6 9 $SURFU 70 6 9 $SURFV 70 6 9 $UCSBASE 2 9 $UCSNAME 2 9 $UCSORG 10 0.0 20 0.0 30 0.0 9 $UCSXDIR 10 1.0 20 0.0 30 0.0 9 $UCSYDIR 10 0.0 20 1.0 30 0.0 9 $UCSORTHOREF 2 9 $UCSORTHOVIEW 70 1 9 $UCSORGTOP 10 0.0 20 0.0 30 0.0 9 $UCSORGBOTTOM 10 0.0 20 0.0 30 0.0 9 $UCSORGLEFT 10 0.0 20 0.0 30 0.0 9 $UCSORGRIGHT 10 0.0 20 0.0 30 0.0 9 $UCSORGFRONT 10 0.0 20 0.0 30 0.0 9 $UCSORGBACK 10 0.0 20 0.0 30 0.0 9 $PUCSBASE 2 9 $PUCSNAME 2 9 $PUCSORG 10 0.0 20 0.0 30 0.0 9 $PUCSXDIR 10 1.0 20 0.0 30 0.0 9 $PUCSYDIR 10 0.0 20 1.0 30 0.0 9 $PUCSORTHOREF 2 9 $PUCSORTHOVIEW 70 0 9 $PUCSORGTOP 10 0.0 20 0.0 30 0.0 9 $PUCSORGBOTTOM 10 0.0 20 0.0 30 0.0 9 $PUCSORGLEFT 10 0.0 20 0.0 30 0.0 9 $PUCSORGRIGHT 10 0.0 20 0.0 30 0.0 9 $PUCSORGFRONT 10 0.0 20 0.0 30 0.0 9 $PUCSORGBACK 10 0.0 20 0.0 30 0.0 9 $USERI1 70 0 9 $USERI2 70 0 9 $USERI3 70 0 9 $USERI4 70 0 9 $USERI5 70 0 9 $USERR1 40 0.0 9 $USERR2 40 0.0 9 $USERR3 40 0.0 9 $USERR4 40 0.0 9 $USERR5 40 0.0 9 $WORLDVIEW 70 1 9 $SHADEDGE 70 3 9 $SHADEDIF 70 70 9 $TILEMODE 70 1 9 $MAXACTVP 70 48 9 $PINSBASE 10 0.0 20 0.0 30 0.0 9 $PLIMCHECK 70 0 9 $PEXTMIN 10 1.000000000000000E+20 20 1.000000000000000E+20 30 1.000000000000000E+20 9 $PEXTMAX 10 -1.000000000000000E+20 20 -1.000000000000000E+20 30 -1.000000000000000E+20 9 $PLIMMIN 10 0.0 20 0.0 9 $PLIMMAX 10 12.0 20 9.0 9 $UNITMODE 70 0 9 $VISRETAIN 70 1 9 $PLINEGEN 70 0 9 $PSLTSCALE 70 1 9 $TREEDEPTH 70 3020 9 $CMLSTYLE 2 STANDARD 9 $CMLJUST 70 0 9 $CMLSCALE 40 1.0 9 $PROXYGRAPHICS 70 1 9 $MEASUREMENT 70 0 9 $CELWEIGHT 370 -1 9 $ENDCAPS 280 0 9 $JOINSTYLE 280 0 9 $LWDISPLAY 290 0 9 $INSUNITS 70 0 9 $HYPERLINKBASE 1 9 $STYLESHEET 1 9 $XEDIT 290 1 9 $CEPSNTYPE 380 0 9 $PSTYLEMODE 290 0 9 $FINGERPRINTGUID 2 {F33BCABC-F37F-4DBE-A9A9-2347955E194E} 9 $VERSIONGUID 2 {3D2A87AE-A623-4131-AD0E-F0514B5708A6} 9 $EXTNAMES 290 1 9 $PSVPSCALE 40 0.0 9 $OLESTARTUP 290 0 0 ENDSEC 0 SECTION 2 CLASSES 0 CLASS 1 OLE2FRAME 2 AcDbOle2Frame 3 AutoCAD 2000 90 32768 280 0 281 1 0 CLASS 1 LWPOLYLINE 2 AcDbPolyline 3 AutoCAD 2000 90 32768 280 0 281 1 0 CLASS 1 DICTIONARYVAR 2 AcDbDictionaryVar 3 AutoCAD 2000 90 0 280 0 281 0 0 CLASS 1 HATCH 2 AcDbHatch 3 AutoCAD 2000 90 32768 280 0 281 1 0 CLASS 1 ACDBDICTIONARYWDFLT 2 AcDbDictionaryWithDefault 3 AutoCAD 2000 90 0 280 0 281 0 0 CLASS 1 ACDBPLACEHOLDER 2 AcDbPlaceHolder 3 AutoCAD 2000 90 0 280 0 281 0 0 CLASS 1 LAYOUT 2 AcDbLayout 3 AutoCAD 2000 90 0 280 0 281 0 0 CLASS 1 SORTENTSTABLE 2 AcDbSortentsTable 3 AutoCAD 2000 90 0 280 0 281 0 0 ENDSEC 0 SECTION 2 TABLES 0 TABLE 2 VPORT 5 8 330 0 100 AcDbSymbolTable 70 5 0 VPORT 5 2B9D 330 8 100 AcDbSymbolTableRecord 100 AcDbViewportTableRecord 2 *Active 70 0 10 0.0 20 0.0 11 1.0 21 1.0 12 77.84256546905567 22 -0.4495263894749542 13 0.0 23 0.0 14 0.5 24 0.5 15 0.5 25 0.5 16 0.0 26 0.0 36 1.0 17 17053.60924083251 27 80543.3018002062 37 -34.43613105160257 40 839.7353409526401 41 1.697160883280757 42 50.0 43 0.0 44 0.0 50 0.0 51 0.0 71 0 72 100 73 1 74 1 75 0 76 0 77 0 78 0 281 0 65 1 110 0.0 120 0.0 130 0.0 111 1.0 121 0.0 131 0.0 112 0.0 122 1.0 132 0.0 79 1 146 0.0 0 ENDTAB 0 TABLE 2 LTYPE 5 5 330 0 100 AcDbSymbolTable 70 4 0 LTYPE 5 13 330 5 100 AcDbSymbolTableRecord 100 AcDbLinetypeTableRecord 2 BYBLOCK 70 0 3 72 65 73 0 40 0.0 0 LTYPE 5 14 330 5 100 AcDbSymbolTableRecord 100 AcDbLinetypeTableRecord 2 BYLAYER 70 0 3 72 65 73 0 40 0.0 0 LTYPE 5 15 330 5 100 AcDbSymbolTableRecord 100 AcDbLinetypeTableRecord 2 CONTINUOUS 70 0 3 Solid line 72 65 73 0 40 0.0 0 LTYPE 5 6C 330 5 100 AcDbSymbolTableRecord 100 AcDbLinetypeTableRecord 2 ACAD_ISO03W100 70 0 3 ISO dash space __ __ __ __ __ __ 72 65 73 2 40 30.0 49 12.0 74 0 49 -18.0 74 0 0 LTYPE 5 6D 330 5 100 AcDbSymbolTableRecord 100 AcDbLinetypeTableRecord 2 ACAD_ISO07W100 70 0 3 ISO dot . . . . . . . . . . . . . . . . . . . . 72 65 73 2 40 3.5 49 0.5 74 0 49 -3.0 74 0 0 LTYPE 5 25C6 330 5 100 AcDbSymbolTableRecord 100 AcDbLinetypeTableRecord 2 DOT 70 0 3 Dot . . . . . . . . . . . . . . . . . . . . . . 72 65 73 2 40 0.25 49 0.0 74 0 49 -0.25 74 0 0 ENDTAB 0 TABLE 2 LAYER 5 2 330 0 100 AcDbSymbolTable 70 15 0 LAYER 5 F 330 2 100 AcDbSymbolTableRecord 100 AcDbLayerTableRecord 2 0 70 0 62 7 6 CONTINUOUS 370 -3 390 AA5 0 LAYER 5 4D 330 2 100 AcDbSymbolTableRecord 100 AcDbLayerTableRecord 2 S_L full moon 70 0 62 3 6 CONTINUOUS 370 -3 390 AA5 0 LAYER 5 4E 330 2 100 AcDbSymbolTableRecord 100 AcDbLayerTableRecord 2 S_L_JB_MAIN 70 0 62 1 6 CONTINUOUS 370 13 390 AA5 0 LAYER 5 5D 330 2 100 AcDbSymbolTableRecord 100 AcDbLayerTableRecord 2 Hbowl Outline 70 0 62 1 6 CONTINUOUS 370 -3 390 AA5 0 LAYER 5 5E 330 2 100 AcDbSymbolTableRecord 100 AcDbLayerTableRecord 2 Main DETAIL 70 0 62 7 6 CONTINUOUS 370 5 390 AA5 0 LAYER 5 2BE 330 2 100 AcDbSymbolTableRecord 100 AcDbLayerTableRecord 2 S_L_DaveA_MadGil 70 0 62 2 6 CONTINUOUS 370 -3 390 AA5 0 LAYER 5 2BF 330 2 100 AcDbSymbolTableRecord 100 AcDbLayerTableRecord 2 S_L_ST_Stream 70 0 62 3 6 CONTINUOUS 370 -3 390 AA5 0 LAYER 5 2403 330 2 100 AcDbSymbolTableRecord 100 AcDbLayerTableRecord 2 Defpoints 70 0 62 7 6 CONTINUOUS 290 0 370 -3 390 AA5 0 LAYER 5 2A9D 330 2 100 AcDbSymbolTableRecord 100 AcDbLayerTableRecord 2 S_L Bens R 70 0 62 3 6 CONTINUOUS 370 -3 390 AA5 0 LAYER 5 2AC5 330 2 100 AcDbSymbolTableRecord 100 AcDbLayerTableRecord 2 S_L_JT_MadGil 70 0 62 3 6 CONTINUOUS 370 -3 390 AA5 0 LAYER 5 2ADD 330 2 100 AcDbSymbolTableRecord 100 AcDbLayerTableRecord 2 Radio Locations 70 0 62 7 6 CONTINUOUS 370 -3 390 AA5 0 ENDTAB 0 TABLE 2 STYLE 5 3 330 0 100 AcDbSymbolTable 70 3 0 STYLE 5 10 330 3 100 AcDbSymbolTableRecord 100 AcDbTextStyleTableRecord 2 STANDARD 70 0 40 0.0 41 1.0 50 0.0 71 0 42 0.2 3 txt 4 0 STYLE 5 6B 330 3 100 AcDbSymbolTableRecord 100 AcDbTextStyleTableRecord 2 70 1 40 0.0 41 1.0 50 0.0 71 0 42 0.2 3 ltypeshp.shx 4 0 STYLE 5 2AC2 330 3 100 AcDbSymbolTableRecord 100 AcDbTextStyleTableRecord 2 ASHADE 70 0 40 0.2 41 1.0 50 0.0 71 0 42 0.2 3 simplex.shx 4 0 ENDTAB 0 TABLE 2 VIEW 5 6 330 0 100 AcDbSymbolTable 70 0 0 ENDTAB 0 TABLE 2 UCS 5 7 330 0 100 AcDbSymbolTable 70 0 0 ENDTAB 0 TABLE 2 APPID 5 9 330 0 100 AcDbSymbolTable 70 6 0 APPID 5 11 330 9 100 AcDbSymbolTableRecord 100 AcDbRegAppTableRecord 2 ACAD 70 0 0 APPID 5 2AC3 330 9 100 AcDbSymbolTableRecord 100 AcDbRegAppTableRecord 2 AVE_RENDER 70 0 0 APPID 5 2AC4 330 9 100 AcDbSymbolTableRecord 100 AcDbRegAppTableRecord 2 AVE_ENTITY_MATERIAL 70 0 0 APPID 5 2AD1 330 9 100 AcDbSymbolTableRecord 100 AcDbRegAppTableRecord 2 AVE_FINISH 70 0 0 APPID 5 2AD2 330 9 100 AcDbSymbolTableRecord 100 AcDbRegAppTableRecord 2 AVE_MATERIAL 70 0 0 APPID 5 2AD3 330 9 100 AcDbSymbolTableRecord 100 AcDbRegAppTableRecord 2 AVE_GLOBAL 70 0 0 ENDTAB 0 TABLE 2 DIMSTYLE 5 A 330 0 100 AcDbSymbolTable 70 1 100 AcDbDimStyleTable 71 1 340 1D 0 DIMSTYLE 105 1D 330 A 100 AcDbSymbolTableRecord 100 AcDbDimStyleTableRecord 2 STANDARD 70 0 340 10 0 ENDTAB 0 TABLE 2 BLOCK_RECORD 5 1 330 0 100 AcDbSymbolTable 70 11 0 BLOCK_RECORD 5 19 102 {ACAD_XDICTIONARY 360 D43 102 } 330 1 100 AcDbSymbolTableRecord 100 AcDbBlockTableRecord 2 *MODEL_SPACE 340 AA8 0 BLOCK_RECORD 5 16 330 1 100 AcDbSymbolTableRecord 100 AcDbBlockTableRecord 2 *PAPER_SPACE 340 AA9 0 BLOCK_RECORD 5 2C0 330 1 100 AcDbSymbolTableRecord 100 AcDbBlockTableRecord 2 A$C0A50654C 340 0 0 BLOCK_RECORD 5 462 330 1 100 AcDbSymbolTableRecord 100 AcDbBlockTableRecord 2 A$C4B0A0433 340 0 0 BLOCK_RECORD 5 492 330 1 100 AcDbSymbolTableRecord 100 AcDbBlockTableRecord 2 A$C44E76109 340 0 0 BLOCK_RECORD 5 4E6 330 1 100 AcDbSymbolTableRecord 100 AcDbBlockTableRecord 2 A$C2DFF248B 340 0 0 BLOCK_RECORD 5 54C 330 1 100 AcDbSymbolTableRecord 100 AcDbBlockTableRecord 2 A$C62997DD1 340 0 0 BLOCK_RECORD 5 1A01 330 1 100 AcDbSymbolTableRecord 100 AcDbBlockTableRecord 2 A$C20A84848 340 0 0 BLOCK_RECORD 5 2231 330 1 100 AcDbSymbolTableRecord 100 AcDbBlockTableRecord 2 A$C5DA63FB3 340 0 0 BLOCK_RECORD 5 2243 330 1 100 AcDbSymbolTableRecord 100 AcDbBlockTableRecord 2 A$C317150F8 340 0 0 BLOCK_RECORD 5 22AD 330 1 100 AcDbSymbolTableRecord 100 AcDbBlockTableRecord 2 A$C70CC784A 340 0 0 BLOCK_RECORD 5 2AC6 330 1 100 AcDbSymbolTableRecord 100 AcDbBlockTableRecord 2 AVE_RENDER 340 0 102 {BLKREFS 331 2AC9 331 2ACA 331 2ACB 331 2ACC 331 2ACD 331 2ACE 331 2ACF 331 2AD0 102 } 0 BLOCK_RECORD 5 2AD4 330 1 100 AcDbSymbolTableRecord 100 AcDbBlockTableRecord 2 AVE_GLOBAL 340 0 102 {BLKREFS 331 2AD7 102 } 0 ENDTAB 0 ENDSEC 0 SECTION 2 BLOCKS 0 BLOCK 5 1A 330 19 100 AcDbEntity 8 0 100 AcDbBlockBegin 2 *MODEL_SPACE 70 0 10 0.0 20 0.0 30 0.0 3 *MODEL_SPACE 1 0 ENDBLK 5 1B 330 19 100 AcDbEntity 8 0 100 AcDbBlockEnd 0 BLOCK 5 17 330 16 100 AcDbEntity 67 1 8 0 100 AcDbBlockBegin 2 *PAPER_SPACE 70 0 10 0.0 20 0.0 30 0.0 3 *PAPER_SPACE 1 0 ENDBLK 5 18 330 16 100 AcDbEntity 67 1 8 0 100 AcDbBlockEnd 0 BLOCK 5 370 330 2C0 100 AcDbEntity 8 0 48 0.1 100 AcDbBlockBegin 2 A$C0A50654C 70 0 10 0.0 20 0.0 30 0.0 3 A$C0A50654C 1 0 SPLINE 5 2C1 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 6 ACAD_ISO07W100 48 0.01 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 11 71 3 72 30 73 26 74 24 42 0.0000000001 43 0.0000000001 44 0.0000000001 12 -0.9891992674170937 22 0.1465769741176462 32 0.0 13 -0.9891992674170937 23 0.1465769741176462 33 0.0 40 0.0 40 0.0 40 0.0 40 0.0 40 0.3744386698696861 40 0.8117219567962866 40 0.9407171529939038 40 1.205429723440976 40 1.449791373749897 40 1.595620778671167 40 1.694408735928174 40 1.72652050521567 40 1.774459004076001 40 1.924584566838725 40 2.078069735876305 40 2.295152302683937 40 2.566631199239483 40 2.845361443069446 40 3.145627436753366 40 3.351812018993665 40 3.437598030425429 40 3.53347514390749 40 3.609166003148918 40 3.725010931387738 40 3.884266313891256 40 3.983054325400413 40 3.993777640965046 40 3.993777640965046 40 3.993777640965046 40 3.993777640965046 10 16.22123243251289 20 12.18262213499413 30 0.0 10 16.09776761320365 20 12.20091683073484 30 0.0 10 15.85984432364484 20 12.34621735290161 30 0.0 10 15.58315124857052 20 12.50104161420669 30 0.0 10 15.41685814953814 20 12.73031631447582 30 0.0 10 15.20489493695367 20 12.79819473055675 30 0.0 10 15.05924043089216 20 12.9844198719925 30 0.0 10 14.89585607363748 20 13.0029211310953 30 0.0 10 14.80558070916925 20 13.05422096499573 30 0.0 10 14.79985349305334 20 13.12376339565907 30 0.0 10 14.88902078871842 20 13.14633325834845 30 0.0 10 15.00160810721241 20 13.1492230879263 30 0.0 10 15.15608557824892 20 13.05583157067595 30 0.0 10 15.35632354284874 20 12.97914375802557 30 0.0 10 15.61604202332874 20 12.97085484121434 30 0.0 10 15.8811838309384 20 12.84973879704273 30 0.0 10 16.08439477071753 20 12.6996483615734 30 0.0 10 16.25515623990364 20 12.56427771663186 30 0.0 10 16.38409773477751 20 12.58726059902826 30 0.0 10 16.47815867357722 20 12.55171732634186 30 0.0 10 16.48842273339966 20 12.44186900870538 30 0.0 10 16.40245779910253 20 12.35128755600939 30 0.0 10 16.31968595454677 20 12.27077397639047 30 0.0 10 16.26215170406796 20 12.18307158246212 30 0.0 10 16.22476826447983 20 12.18209820461147 30 0.0 10 16.22123243251289 20 12.18262213499413 30 0.0 11 16.22123243251289 21 12.18262213499413 31 0.0 11 15.87808838678583 21 12.33247700270234 31 0.0 11 15.52422102549414 21 12.58937107355215 31 0.0 11 15.43843484303389 21 12.68570638141463 31 0.0 11 15.21324658440406 21 12.82485735384372 31 0.0 11 15.02022810143972 21 12.97471222155194 31 0.0 11 14.88082568321317 21 13.01752788611855 31 0.0 11 14.80576298734607 21 13.08175134124341 31 0.0 11 14.80576298734607 21 13.11386311053091 31 0.0 11 14.8486559075477 21 13.13527098453927 31 0.0 11 14.99878147031043 21 13.13527098453927 31 0.0 11 15.13818388853695 21 13.07104744596429 31 0.0 11 15.34192568706595 21 12.99612001211019 31 0.0 11 15.6100070369259 21 12.95330434754357 31 0.0 11 15.86736507122117 21 12.84626514440198 31 0.0 11 16.11399996098029 21 12.67500248613551 31 0.0 11 16.29629529940848 21 12.57866717827303 31 0.0 11 16.38208131084025 21 12.57866717827303 31 0.0 11 16.46786732227201 21 12.53585151370641 31 0.0 11 16.47859046680815 21 12.4609240798523 31 0.0 11 16.41425108650571 21 12.36458877198984 31 0.0 11 16.30701844394465 21 12.24684567356911 31 0.0 11 16.23195574807752 21 12.18262213499413 31 0.0 11 16.22123243251289 21 12.18262213499413 31 0.0 0 LWPOLYLINE 5 2C2 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 106 70 0 43 0.0 10 11.50249333605245 20 14.32861423575069 10 11.53762053644149 20 14.37244423640623 10 11.64300247966565 20 14.37244423640623 10 11.65178427976292 20 14.32861423575069 10 11.72203885156952 20 14.34614626939296 10 11.80985719459917 20 14.33738025257183 10 11.81863899469641 20 14.26725236835311 10 11.83620259489094 20 14.30231626873741 10 11.93280273801784 20 14.30231626873741 10 12.00305730982447 20 14.2321883845187 10 11.98549353860144 20 14.18835838386317 10 12.03818451021351 20 14.21465635087645 10 12.09965728192284 20 14.21465635087645 10 12.15234825353493 20 14.15329448347887 10 12.14356645343767 20 14.11823049964445 10 12.17869365382674 20 14.15329448347887 10 12.24894839666183 20 14.12699651646559 10 12.27529379695363 20 14.05686854879677 10 12.34554836876023 20 14.08316651581005 10 12.38945754027503 20 14.03057058178349 10 12.38067574017779 20 13.99550668139919 10 12.4245847406641 20 14.02180464841246 10 12.47727571227616 20 14.01303863159134 10 12.52996668388826 20 13.90784676353821 10 12.58265765550032 20 13.96044269756478 10 12.66169402740422 20 13.94291066392251 10 12.67047582750146 20 13.89908074671708 10 12.69682139882175 20 13.90784676353821 10 12.73194859921082 20 13.89908074671708 10 12.80220317101742 20 13.82895286249838 10 12.78463957082289 20 13.77635692847182 10 12.83733054243498 20 13.82018684567725 10 12.88123971394978 20 13.8026548954851 10 12.88123971394978 20 13.75882489482957 10 12.90758511424158 20 13.77635692847182 10 12.96905788595091 20 13.78512286184285 10 13.00418525736847 20 13.71499497762413 10 12.96905788595091 20 13.6711650604187 10 13.03931245775754 20 13.71499497762413 10 13.10956702956414 20 13.706228960803 10 13.13591260088443 20 13.64486709340542 10 13.15347620107897 20 13.6711650604187 10 13.2149489727883 20 13.66239904359757 10 13.25007617317734 20 13.60103709274989 10 13.22373077288557 20 13.57473912573661 10 13.30276714478944 20 13.60980310957101 10 13.3554581164015 20 13.60103709274989 10 13.4081490880136 20 13.54844115872333 10 13.37302171659604 20 13.51337717488891 10 13.4344944883054 20 13.58350514255774 10 13.504749060112 20 13.53090920853118 10 13.52231283133503 20 13.47831327450461 10 13.55744003172407 20 13.52214319171004 10 13.60134920323889 20 13.51337717488891 10 13.61891280343343 20 13.46078124086236 10 13.66282197494823 20 13.49584522469676 10 13.73307654675483 20 13.46954725768348 10 13.76820391817239 20 13.4432492906702 10 13.75064014694936 20 13.39065335664365 10 13.78576751836692 20 13.4081853068358 10 13.88236749046532 20 13.39941937346478 10 13.89993126168835 20 13.36435538963037 10 13.87358569036805 20 13.32052538897483 10 13.92627666198012 20 13.35558937280924 10 14.00531303388402 20 13.32052538897483 10 13.99653123378675 20 13.26792945494827 10 14.04044040530155 20 13.28546148859052 10 14.13704054842844 20 13.22409953774284 10 14.13704054842844 20 13.16273758689516 10 14.20729512023507 20 13.16273758689516 10 14.29511329223621 20 13.11890766968973 10 14.30389509233345 20 13.05754571884203 10 14.35658606394554 20 13.09260970267644 10 14.4619680071697 20 13.02248181845773 10 14.43562243584941 20 12.98741783462332 10 14.4619680071697 20 13.00494978481548 10 14.52344077887903 20 12.96988580098107 10 14.50587700765601 20 12.95235385078892 10 14.54978617917083 20 12.9786518178022 10 14.62004075097743 20 12.92605588377564 10 14.62004075097743 20 12.89099189994122 10 14.64638632229773 20 12.94358783396778 10 14.72542269420159 20 12.89099189994122 10 14.70785909400706 20 12.84716198273579 10 14.76933186571642 20 12.8822259665702 10 14.8220226663 20 12.85592799955692 10 14.8220226663 20 12.78580003188811 10 14.83958643752302 20 12.83839596591467 10 14.8922772381066 20 12.78580003188811 10 14.92740460952416 20 12.73320409786156 10 14.98887738123349 20 12.75073613150381 10 15.04156835284558 20 12.69814011402714 10 15.00644098142802 20 12.63677824662956 10 15.10479758719148 20 12.67184214701386 10 15.20139755928988 20 12.6192462129873 10 15.19261575919261 20 12.55788434558972 10 15.21896115948439 20 12.61048027961628 10 15.35068867402884 20 12.54035231194747 10 15.31556130261128 20 12.4877563779209 10 15.35947047412611 20 12.50528841156317 10 15.42972504593271 20 12.40886247688107 10 15.38581587441791 20 12.37379849304666 10 15.45607044622451 20 12.40009654351004 10 15.51754321793384 20 12.33873459266236 10 15.49997961773934 20 12.29490459200681 10 15.46485224632178 20 12.31243662564908 0 SPLINE 5 2C3 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 239 73 235 74 233 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.156374547382165 40 0.1932390033860036 40 0.2821266048122753 40 0.4782962871790648 40 0.570457551121339 40 0.640877302738578 40 0.7285401847309521 40 0.7518678948175275 40 0.7858466304209087 40 1.202655482975933 40 1.657960682714918 40 1.720811807954949 40 1.885912962754635 40 2.010830532902799 40 2.081800089782956 40 2.155528999554087 40 2.218301919488355 40 2.296602114931522 40 2.437633311160437 40 2.49712841092997 40 2.521848890186926 40 2.688282813644728 40 2.945853543857378 40 3.063844155954684 40 3.243511750963742 40 3.407243293559512 40 3.436990923700156 40 3.495259801081867 40 3.594485799361958 40 3.694083075492207 40 3.771921631663781 40 3.905026787811928 40 4.163544317714973 40 4.335889346646163 40 4.444463080776188 40 4.522301636947786 40 4.627901859505415 40 4.738495223044034 40 4.782939023757172 40 4.833150165491526 40 5.273055475089784 40 5.549838574002895 40 5.806113839868555 40 6.73372306399179 40 7.569207878689783 40 7.864669595521772 40 8.098185477411773 40 8.555108543752931 40 8.857226708184354 40 9.086586434182505 40 9.473304289798788 40 9.978094552995656 40 10.36600273490627 40 10.5101573849021 40 10.71894204124587 40 10.98744404718477 40 11.23111413434625 40 11.47712224883072 40 11.64548138631505 40 11.85202227257703 40 11.98118775353661 40 12.20237465107576 40 12.54596069634144 40 12.75015163785149 40 13.0125241599189 40 13.38963045356871 40 13.5820780101669 40 13.74576751092168 40 13.78075924750492 40 13.84719549412387 40 13.96979463249792 40 14.10711373400116 40 14.35900497799977 40 14.59521334028964 40 14.87169704800361 40 15.09359666381194 40 15.52574869693765 40 15.94071276501956 40 16.4259973569828 40 16.96145288176709 40 17.36901897111835 40 17.54928768020763 40 17.64861258917666 40 18.15860539826583 40 18.52808315369204 40 18.76631314753688 40 18.89947039744647 40 19.05803599041481 40 19.23521029775314 40 19.56783452633883 40 19.7164689661838 40 19.83646399801601 40 19.91896112263952 40 19.98539739321523 40 20.04817030277024 40 20.14148155248385 40 20.39090966960947 40 20.74103745927227 40 20.8351478862765 40 20.93336193277365 40 21.02454072220719 40 21.1707996412914 40 21.55092788723603 40 21.74957783004814 40 21.85686503597618 40 22.09605635771886 40 22.23473371274802 40 22.43614578764842 40 22.5766187247616 40 22.82429636604653 40 23.01757577577205 40 23.17515678908698 40 23.26633537800355 40 23.42138320417917 40 23.49968342932319 40 23.52941032883247 40 23.58940787127651 40 23.75309737203128 40 23.86530834212467 40 24.00558833552512 40 24.12457832243432 40 24.34109996125559 40 24.57036087043915 40 24.76979184876295 40 24.83625584351492 40 25.05261098872241 40 25.43521019810292 40 25.73732846669604 40 26.0462498243059 40 26.32330166585092 40 26.59102953455799 40 26.87813035176495 40 27.05590551973324 40 27.20278150052297 40 27.55740275703598 40 27.86447536260036 40 27.9641906761858 40 28.00546596488572 40 28.07598166977411 40 28.23617305717751 40 28.38214893693518 40 28.76858160876389 40 29.23754809654717 40 29.48896281107082 40 29.73822564062193 40 30.0138213855996 40 30.2403757175446 40 30.41886085634158 40 30.60193566345958 40 30.85924673174148 40 31.06954156008564 40 31.28361361652887 40 31.35966346551194 40 31.64171268118215 40 31.97996553761937 40 32.20190724739721 40 32.48774265828934 40 32.71314715543293 40 32.81250414737462 40 33.05222166794974 40 33.23309550807437 40 33.4729743750104 40 33.71664446217188 40 33.90788160093243 40 34.23299808310041 40 34.50347744094108 40 34.87094692594462 40 35.15114417581638 40 35.32760606307218 40 35.67297661176343 40 35.98990251185639 40 36.1187134917978 40 36.53228480565598 40 36.93086436197045 40 37.19264344088728 40 37.41458500723939 40 37.65101620439807 40 37.90762197054046 40 38.21897640860201 40 38.61627623178919 40 39.09465915474749 40 39.5867073004879 40 40.03075993902385 40 40.46919247033092 40 40.90397388268391 40 41.38405872715589 40 41.49901181025814 40 41.73074012810534 40 41.99541544356992 40 42.11725046488136 40 42.24494068792031 40 42.52064124684525 40 42.72963321867627 40 42.98567248804672 40 43.1161729143674 40 43.28323625646508 40 43.34332570255425 40 43.38460099125418 40 43.48431648041608 40 43.89188256976734 40 44.33764297686293 40 44.52426527337307 40 45.00976861248773 40 45.60927844557409 40 45.71766552683919 40 45.87767301316265 40 45.95140192293377 40 46.08176676266124 40 46.2333002263282 40 46.40654065731752 40 46.7842897404112 40 47.03224040807358 40 47.35426778571009 40 47.55255403872198 40 47.62352338400083 40 47.84132144589047 40 48.13365730285863 40 48.59826587689791 40 48.98258303281657 40 49.32544798056292 40 49.63175788925345 40 49.84944914066949 40 49.9798967799126 40 50.08429718226598 40 50.13965385424879 40 50.18909490683774 40 50.26728219698228 40 50.39282802647139 40 50.55542507513494 40 50.67196295033912 40 50.80917917776897 40 50.89405309757354 40 50.89405309757354 40 50.89405309757354 40 50.89405309757354 10 16.54727400355219 20 16.62426104401298 30 0.0 10 16.53201338615436 20 16.57530687441759 30 0.0 10 16.51315516052635 20 16.5148120234168 30 0.0 10 16.47726547038878 20 16.42323376247081 30 0.0 10 16.35738012020298 20 16.40383829530179 30 0.0 10 16.23528173479138 20 16.37722766530866 30 0.0 10 16.16070502936777 20 16.26043454141989 30 0.0 10 16.20262231694566 20 16.17943008105191 30 0.0 10 16.23779622557843 20 16.13528145951176 30 0.0 10 16.28281580178912 20 16.10415936060386 30 0.0 10 16.19783565424985 20 15.93668579397187 30 0.0 10 16.08785066335829 20 15.70689998061512 30 0.0 10 15.97775218375235 20 15.35930273918894 30 0.0 10 15.76461636396407 20 15.26314696069431 30 0.0 10 15.64541118395842 20 15.28630992444539 30 0.0 10 15.52010752566163 20 15.27991492659722 30 0.0 10 15.44600061090796 20 15.22664940058763 30 0.0 10 15.40442752741558 20 15.16323355666248 30 0.0 10 15.4374350961583 20 15.08477052236859 30 0.0 10 15.54186173566898 20 15.07652795897862 30 0.0 10 15.61267048954568 20 15.03594154439074 30 0.0 10 15.70188355462859 20 15.0067755669811 30 0.0 10 15.68991970662633 20 14.91727510777236 30 0.0 10 15.71333890004506 20 14.77237057910524 30 0.0 10 15.64556269355229 20 14.59528633271353 30 0.0 10 15.68889034152508 20 14.40264283430206 30 0.0 10 15.77097287590532 20 14.30867612995785 30 0.0 10 15.9912402389325 20 14.21335443494273 30 0.0 10 15.89650530829096 20 14.17504799912581 30 0.0 10 15.90792449497481 20 14.10132823099995 30 0.0 10 15.89919280116444 20 14.02186641728661 30 0.0 10 15.86699806695349 20 13.92750043123086 30 0.0 10 15.77188790751279 20 13.87532273236519 30 0.0 10 15.61166950079236 20 13.86091536404405 30 0.0 10 15.43487549065231 20 13.93471984727798 30 0.0 10 15.26651723353612 20 14.0061400282383 30 0.0 10 15.14220168326198 20 13.98948488728351 30 0.0 10 15.05998416652141 20 13.93500225725196 30 0.0 10 14.9933865944426 20 13.86066845382384 30 0.0 10 14.98013807364171 20 13.76275024859242 30 0.0 10 14.91057545915353 20 13.73458390874439 30 0.0 10 14.73562517397251 20 13.78558961895037 30 0.0 10 14.49638323253122 20 13.86828567884621 30 0.0 10 14.2168029935584 20 14.04223606465936 30 0.0 10 13.73182422652324 20 14.12789236366149 30 0.0 10 13.13827547600769 20 14.46593820496699 30 0.0 10 12.51367613486615 20 14.74307802554483 30 0.0 10 12.0754079351472 20 14.88077290425736 30 0.0 10 11.81410244407452 20 15.08977694167044 30 0.0 10 11.46736745623122 20 15.13105723435789 30 0.0 10 11.20870811630614 20 15.34474320630358 30 0.0 10 10.96882474945629 20 15.53304937666189 30 0.0 10 10.65231684571062 20 15.73495859567262 30 0.0 10 10.29505558222416 20 15.95934819683949 30 0.0 10 10.0155492719444 20 16.18315407388373 30 0.0 10 9.75527049179014 20 16.19939213847309 30 0.0 10 9.625672934739121 20 16.38091074330294 30 0.0 10 9.485719117714847 20 16.58153815410477 30 0.0 10 9.214296409008174 20 16.63913140795482 30 0.0 10 9.131045912744195 20 16.88654447726182 30 0.0 10 8.904263929041571 20 16.90368315744756 30 0.0 10 8.740453906449442 20 16.88551553111697 30 0.0 10 8.557585965418148 20 16.96769037987913 30 0.0 10 8.497349081692044 20 17.21037588151942 30 0.0 10 8.36200026263895 20 17.42543978940844 30 0.0 10 8.179648601790338 20 17.62842664647095 30 0.0 10 7.931307176999172 20 17.77016835883991 30 0.0 10 7.67550423462849 20 17.86359067209374 30 0.0 10 7.444846895981717 20 17.97204163972885 30 0.0 10 7.382186857944594 20 18.08933686236268 30 0.0 10 7.306233643074794 20 18.14480235111437 30 0.0 10 7.326131910163167 20 18.23249272654223 30 0.0 10 7.220579884708905 20 18.30203377630845 30 0.0 10 7.087144142435872 20 18.39418435530041 30 0.0 10 6.877382811115521 20 18.47571187406573 30 0.0 10 6.777649288956682 20 18.7238053505084 30 0.0 10 6.683794839897055 20 18.95041270009166 30 0.0 10 6.459025232570282 20 19.17042530689177 30 0.0 10 6.214522936278448 20 19.42729786317514 30 0.0 10 5.977824198868479 20 19.81359365294082 30 0.0 10 5.552226478354722 20 20.05804175867476 30 0.0 10 5.155152257391726 20 20.30732265138909 30 0.0 10 4.864969576825308 20 20.56797584411174 30 0.0 10 4.620862131502511 20 20.58311672185912 30 0.0 10 4.431420625902267 20 20.77656567088595 30 0.0 10 4.273057799856644 20 21.06381136449113 30 0.0 10 3.937057571312051 20 21.26792189671201 30 0.0 10 3.680431752606969 20 21.27676495145899 30 0.0 10 3.538975053438822 20 21.39826352802326 30 0.0 10 3.501464185249115 20 21.56573592088466 30 0.0 10 3.268340881204428 20 21.63671225274199 30 0.0 10 3.075204607951126 20 21.73328501205521 30 0.0 10 2.940201228333823 20 21.89268501013466 30 0.0 10 2.949862484353007 20 22.03199078196193 30 0.0 10 2.84601540861722 20 22.0615232161198 30 0.0 10 2.836653921745472 20 22.14323460595802 30 0.0 10 2.896460496041017 20 22.21074365559327 30 0.0 10 2.743565659603828 20 22.30212420216779 30 0.0 10 2.577243100421924 20 22.41697245857174 30 0.0 10 2.398134639543394 20 22.56693062053567 30 0.0 10 2.215955616836185 20 22.64685053333085 30 0.0 10 2.135921562258525 20 22.57627800720282 30 0.0 10 2.019480820698575 20 22.57358780956148 30 0.0 10 1.82730171152921 20 22.64849042969325 30 0.0 10 1.591410771896821 20 22.7298688526637 30 0.0 10 1.447010185561113 20 22.92383644215397 30 0.0 10 1.267504902420413 20 22.97220419778344 30 0.0 10 1.143596708436723 20 23.09329264887007 30 0.0 10 1.08025135463788 20 23.28481214274228 30 0.0 10 0.9162563192983839 20 23.34613244466427 30 0.0 10 0.7818247331488438 20 23.49114631056393 30 0.0 10 0.5956244981805894 20 23.5634556321691 30 0.0 10 0.4415738931366866 20 23.68942291925115 30 0.0 10 0.3525986047504634 20 23.81925624993448 30 0.0 10 0.2047934479792662 20 23.83334328711613 30 0.0 10 0.1226347767867482 20 23.74900558416823 30 0.0 10 0.0265167177409925 20 23.74749363813799 30 0.0 10 -0.0094690061711352 20 23.69710501416472 30 0.0 10 0.0347108471442269 20 23.61127041669226 30 0.0 10 0.1082426055639002 20 23.5335454054461 30 0.0 10 0.2214380712592268 20 23.4495988582177 30 0.0 10 0.3349033032964994 20 23.39950944923816 30 0.0 10 0.4670128873619249 20 23.31050034379319 30 0.0 10 0.6027695451513291 20 23.17816434359244 30 0.0 10 0.7808823799935106 20 23.06084708729825 30 0.0 10 0.9679076854043302 20 23.03496282740919 30 0.0 10 1.0374164242915 20 22.88367331032073 30 0.0 10 1.150386461175334 20 22.69740173316543 30 0.0 10 1.319106924928495 20 22.43849328880119 30 0.0 10 1.600408917336102 20 22.26037758109027 30 0.0 10 1.874650822731574 20 22.12397099346263 30 0.0 10 2.00060066495402 20 21.85294370836805 30 0.0 10 2.249402737454744 20 21.70644565169796 30 0.0 10 2.483297634760275 20 21.64390047447454 30 0.0 10 2.680096237943117 20 21.5791487197044 30 0.0 10 2.854637595824374 20 21.43145364189061 30 0.0 10 3.02570774475587 20 21.2133483157561 30 0.0 10 3.258081936287357 20 21.11471717097359 30 0.0 10 3.387783836715017 20 21.0233298644005 30 0.0 10 3.460486073066256 20 21.0341567503899 30 0.0 10 3.542689986725222 20 20.98997841778293 30 0.0 10 3.661028075103712 20 20.93122931120948 30 0.0 10 3.733425432585166 20 20.69950257789611 30 0.0 10 3.98006310841396 20 20.46218409730829 30 0.0 10 4.264596473493863 20 20.23455094021303 30 0.0 10 4.527572586181276 20 20.03753826677736 30 0.0 10 4.655395562829928 20 19.81010103294785 30 0.0 10 4.804397584456253 20 19.60227983432735 30 0.0 10 5.003599728459686 20 19.4896246991372 30 0.0 10 5.17848657459276 20 19.39341304681249 30 0.0 10 5.290403458899319 20 19.21396611687738 30 0.0 10 5.384062172631195 20 19.01858666663943 30 0.0 10 5.556427570562374 20 18.85921703170478 30 0.0 10 5.719573434051666 20 18.8080059757472 30 0.0 10 5.864064716872821 20 18.68075757920396 30 0.0 10 5.984103283105941 20 18.47868247322659 30 0.0 10 6.192929851771607 20 18.28680352622412 30 0.0 10 6.409875682797901 20 18.10947429468619 30 0.0 10 6.560934450191929 20 17.9016587109012 30 0.0 10 6.769242037420803 20 17.85623688879211 30 0.0 10 6.922530466857923 20 17.74365905057913 30 0.0 10 7.025156179614285 20 17.603600107303 30 0.0 10 7.166782714567489 20 17.42850660262587 30 0.0 10 7.384425686179952 20 17.35781641678742 30 0.0 10 7.573563817534829 20 17.23582563373479 30 0.0 10 7.808467366214789 20 17.14105871825243 30 0.0 10 8.034517098038236 20 16.99307851250259 30 0.0 10 8.19991738041539 20 16.70850218498641 30 0.0 10 8.450066015222223 20 16.53593853999422 30 0.0 10 8.615811324379437 20 16.28030205944997 30 0.0 10 8.910871862184976 20 16.29463277002412 30 0.0 10 9.078483240061018 20 16.02779301572703 30 0.0 10 9.31870236950664 20 15.90936662671184 30 0.0 10 9.483126356446573 20 15.66674650102939 30 0.0 10 9.799382827888555 20 15.56369647825301 30 0.0 10 10.11886322066079 20 15.40842613797734 30 0.0 10 10.35088727732768 20 15.22489120328895 30 0.0 10 10.5129158811242 20 15.04274606451754 30 0.0 10 10.74981112471506 20 14.96509041965159 30 0.0 10 10.90517957941324 20 14.73068617923147 30 0.0 10 11.21206458795913 20 14.60453754950227 30 0.0 10 11.48960802697466 20 14.31664061631601 30 0.0 10 11.80761678030321 20 13.98854642698767 30 0.0 10 12.21259847768553 20 13.74132392867419 30 0.0 10 12.58108425803742 20 13.46960107051472 30 0.0 10 12.94752113822518 20 13.2273330625307 30 0.0 10 13.32111136843933 20 12.97449863876189 30 0.0 10 13.61879665530129 20 12.80249930462055 30 0.0 10 13.87476940876166 20 12.69603723303348 30 0.0 10 14.08010746653099 20 12.68236474404548 30 0.0 10 14.29756531049751 20 12.75739933344737 30 0.0 10 14.44186444260779 20 12.65070312077729 30 0.0 10 14.60703709601789 20 12.59055122222028 30 0.0 10 14.73392130963382 20 12.40323389938704 30 0.0 10 14.99623986070691 20 12.38398996462914 30 0.0 10 15.19181820157223 20 12.42273720908659 30 0.0 10 15.37370152186315 20 12.36441527447075 30 0.0 10 15.46124933832376 20 12.28009004056338 30 0.0 10 15.54835793536888 20 12.25021036495602 30 0.0 10 15.61673340339934 20 12.25923775992193 30 0.0 10 15.77740729182616 20 12.15068258514462 30 0.0 10 16.04977219349102 20 12.00466387646677 30 0.0 10 16.32001050992905 20 11.77972266815495 30 0.0 10 16.5862113075097 20 11.51799396388348 30 0.0 10 16.82924036116744 20 11.17747134264603 30 0.0 10 17.11548138049805 20 10.86250307201026 30 0.0 10 17.15006506884961 20 10.57372160430783 30 0.0 10 17.16552852444426 20 10.45932360627457 30 0.0 10 17.22132338438678 20 10.35016901735498 30 0.0 10 17.29769362784825 20 10.25948385489852 30 0.0 10 17.36093665275996 20 10.11576882953544 30 0.0 10 17.34372375874986 20 9.87916220930877 30 0.0 10 17.41045649646995 20 9.610851037677884 30 0.0 10 17.28112909980431 20 9.306883302559239 30 0.0 10 17.09855292475671 20 9.126980252071486 30 0.0 10 16.9722783093065 20 8.973005215814847 30 0.0 10 16.82997965446731 20 8.889001158447136 30 0.0 10 16.75842289317731 20 8.69432830877548 30 0.0 10 16.64791605515777 20 8.395746774458865 30 0.0 10 16.45532595618141 20 8.061559806267453 30 0.0 10 16.35402345946973 20 7.673877624964335 30 0.0 10 16.16691354815386 20 7.380892753898494 30 0.0 10 16.07627321415369 20 7.103876695415229 30 0.0 10 15.9468518614482 20 6.924983645031426 30 0.0 10 15.81959331586297 20 6.833373105416931 30 0.0 10 15.7325968731771 20 6.808775893677136 30 0.0 10 15.65138779516457 20 6.788123034636187 30 0.0 10 15.66321353827234 20 6.716282301114794 30 0.0 10 15.6924821059669 20 6.642482975638015 30 0.0 10 15.7359345266848 20 6.524166285502219 30 0.0 10 15.82157816916994 20 6.421928403516957 30 0.0 10 15.85629284565603 20 6.271050053473969 30 0.0 10 15.76507026245493 20 6.186248164158366 30 0.0 10 15.73254679524345 20 6.120237956499511 30 0.0 10 15.72011763446235 20 6.095011510658096 30 0.0 11 16.54727400355219 21 16.62426104401298 31 0.0 11 16.49774381135549 21 16.47593788624611 31 0.0 11 16.48123361875391 21 16.44297727859519 31 0.0 11 16.39868304135407 21 16.41001657686922 31 0.0 11 16.2170718867568 21 16.33585504502332 31 0.0 11 16.17579659805687 21 16.2534532907084 31 0.0 11 16.20056169415522 21 16.18753188725646 31 0.0 11 16.25834717545671 21 16.12161057787957 31 0.0 11 16.27485717525431 21 16.1051302270166 31 0.0 11 16.26660207895352 21 16.07216952529062 31 0.0 11 16.09324602065703 21 15.69312164359209 31 0.0 11 15.85384938475826 21 15.30583353942452 31 0.0 11 15.79606390345676 21 15.28111306016758 31 0.0 11 15.63096274865708 21 15.28111306016758 31 0.0 11 15.5071370753613 21 15.26463270930459 31 0.0 11 15.4493515940598 21 15.22343178510961 31 0.0 11 15.41633140166067 21 15.15751047573272 31 0.0 11 15.44109649775902 21 15.09982920067474 31 0.0 11 15.5153919788581 21 15.07510872141779 31 0.0 11 15.64747294125865 21 15.02566766882884 31 0.0 11 15.69700332625936 21 14.99270696710287 31 0.0 11 15.69700332625936 21 14.96798648784592 31 0.0 11 15.69700332625936 21 14.80155256438811 31 0.0 11 15.66398313386022 21 14.54610717304937 31 0.0 11 15.68874822995857 21 14.43074481108354 31 0.0 11 15.81257409605834 21 14.30056186450073 31 0.0 11 15.93639996215813 21 14.19343963092886 31 0.0 11 15.91163467325577 21 14.17695928006587 31 0.0 11 15.90337976975897 21 14.11927809908296 31 0.0 11 15.89512467345821 21 14.0203960879801 31 0.0 11 15.85384938475826 21 13.92975411119616 31 0.0 11 15.78780899995999 21 13.88855328107622 31 0.0 11 15.65572803755944 21 13.87207293021325 31 0.0 11 15.40807630535988 21 13.94623446205915 31 0.0 11 15.24297515056019 21 13.9956755146481 31 0.0 11 15.135659477062 21 13.97919516378512 31 0.0 11 15.0696190922637 21 13.93799433366518 31 0.0 11 15.00357851466142 21 13.85559257935025 31 0.0 11 14.95404832246473 21 13.75671056824741 31 0.0 11 14.9127730337648 21 13.74023021738442 31 0.0 11 14.8632426487641 21 13.74847034577838 31 0.0 11 14.4521409352682 21 13.90503363193921 31 0.0 11 14.20448939587268 21 14.02863621637406 31 0.0 11 13.95683766367312 21 14.094557619826 31 0.0 11 13.10656679357629 21 14.46536527905553 31 0.0 11 12.3388466936833 21 14.79497220224017 31 0.0 11 12.06477888468606 21 14.90535545361807 31 0.0 11 11.86665753748721 21 15.02895803805293 31 0.0 11 11.4373946506904 21 15.18552132421376 31 0.0 11 11.18974311129486 21 15.35856496123757 31 0.0 11 11.0081317638936 21 15.49864780246035 31 0.0 11 10.68618455059498 21 15.71289226960411 31 0.0 11 10.26517676009896 21 15.99139837395377 31 0.0 11 9.92671935419878 21 16.18092236184057 31 0.0 11 9.786383488301453 21 16.21388306356654 31 0.0 11 9.639443699606687 21 16.36220612725834 31 0.0 11 9.457832352205429 21 16.55997024353911 31 0.0 11 9.243201005209016 21 16.67533269958001 31 0.0 11 9.086354946710116 21 16.86485659339175 31 0.0 11 8.921253791910402 21 16.89781729511771 31 0.0 11 8.714877348410794 21 16.90605751758673 31 0.0 11 8.599306578611788 21 16.96373869856965 31 0.0 11 8.500246001414382 21 17.16150281485042 31 0.0 11 8.32688975031391 21 17.45814903630908 31 0.0 11 8.186553691612544 21 17.6064721000009 31 0.0 11 7.963667248315374 21 17.74489526905272 31 0.0 11 7.616954938918411 21 17.89321833274452 31 0.0 11 7.451853784118696 21 17.99210043792243 31 0.0 11 7.344538110620504 21 18.11570302235729 31 0.0 11 7.319772821718146 21 18.14042350161425 31 0.0 11 7.311517918221369 21 18.20634490506618 31 0.0 11 7.228967340821526 21 18.29698678777506 31 0.0 11 7.113396571022548 21 18.37114831962097 31 0.0 11 6.898765031222126 21 18.5029910324498 31 0.0 11 6.783194261423147 21 18.70899537119957 31 0.0 11 6.659368395323355 21 18.95620054006928 31 0.0 11 6.510777433125241 21 19.12100395462408 31 0.0 11 6.221850412225762 21 19.4423706553397 31 0.0 11 5.967594950032804 21 19.77031781227833 31 0.0 11 5.571352255635133 21 20.05048358879895 31 0.0 11 5.125579176236755 21 20.34712981025762 31 0.0 11 4.778866866839791 21 20.56137427740137 31 0.0 11 4.605510615739319 21 20.61081532999033 31 0.0 11 4.531215134640234 21 20.6767366393672 31 0.0 11 4.209267921341648 21 21.07226496600378 31 0.0 11 3.887320708043034 21 21.25354873142157 31 0.0 11 3.656179168445049 21 21.31122991240448 31 0.0 11 3.557118398443634 21 21.40021202886735 31 0.0 11 3.482822917344577 21 21.54029496416519 31 0.0 11 3.325976858845677 21 21.62269671848012 31 0.0 11 3.037050030750208 21 21.78750013303492 31 0.0 11 2.954499453350337 21 21.91110271746977 31 0.0 11 2.921479260951201 21 22.02646507943561 31 0.0 11 2.855438683348921 21 22.07590613202456 31 0.0 11 2.847183587048135 21 22.14182753547651 31 0.0 11 2.871948875950494 21 22.19950871645943 31 0.0 11 2.805908298348214 21 22.26543011991137 31 0.0 11 2.599532047652616 21 22.40551305520921 31 0.0 11 2.310605026753137 21 22.60327717148996 31 0.0 11 2.219799353052508 21 22.62799765074692 31 0.0 11 2.130645045659235 21 22.58679682062698 31 0.0 11 2.039839371958606 21 22.57855659815795 31 0.0 11 1.89950350606125 21 22.61975752235295 31 0.0 11 1.561046100161064 21 22.79280106530171 31 0.0 11 1.41245513796295 21 22.92464387220559 31 0.0 11 1.313394367961535 21 22.96584470232552 31 0.0 11 1.140038309665044 21 23.1306481168803 31 0.0 11 1.073997732062764 21 23.25259093506916 31 0.0 11 0.9088967700670878 21 23.36795339111005 31 0.0 11 0.8015809037648864 21 23.45859527381894 31 0.0 11 0.5869495567684738 21 23.58219785825379 31 0.0 11 0.4383584017663509 21 23.70580044268865 31 0.0 11 0.3227876319673442 21 23.81292267626052 31 0.0 11 0.2319821510707243 21 23.82116280465449 31 0.0 11 0.0916460923693876 21 23.75524149527761 31 0.0 11 0.0173506112703308 21 23.73052092194561 31 0.0 11 0.0008404186687585 21 23.70580044268865 31 0.0 11 0.0173506112703308 21 23.64811926170574 31 0.0 11 0.1246662847685229 21 23.52451667727088 31 0.0 11 0.215471958469152 21 23.45859527381894 31 0.0 11 0.3392978245689164 21 23.392673870367 31 0.0 11 0.4383584017663509 21 23.32675256099011 31 0.0 11 0.6034595565660368 21 23.18666962569227 31 0.0 11 0.8015809037648864 21 23.07130716965137 31 0.0 11 0.9831922511661446 21 22.98890550941151 31 0.0 11 1.016212443565279 21 22.93122423435353 31 0.0 11 1.123528117063472 21 22.74336020086286 31 0.0 11 1.354669656661457 21 22.43847375693518 31 0.0 11 1.602321388861014 21 22.26543021398641 31 0.0 11 1.858228217361329 21 22.09238657696261 31 0.0 11 2.023329179357034 21 21.8699019814249 31 0.0 11 2.246215815458214 21 21.72157882365803 31 0.0 11 2.51863264375612 21 21.63093694094915 31 0.0 11 2.683733798555806 21 21.56501563157226 31 0.0 11 2.799304568354813 21 21.47437374886338 31 0.0 11 3.053560030547771 21 21.22716857999365 31 0.0 11 3.317721955348872 21 21.07060529383284 31 0.0 11 3.40852743624552 21 21.0294044637129 31 0.0 11 3.449802724945442 21 21.0294044637129 31 0.0 11 3.515843302547722 21 21.0046838903809 31 0.0 11 3.647924072144263 21 20.914042007672 31 0.0 11 3.713964649746543 21 20.7838590610892 31 0.0 11 3.961616189142091 21 20.48721293370559 31 0.0 11 4.324838691140627 21 20.19056671224692 31 0.0 11 4.51470494203869 21 20.02576329769212 31 0.0 11 4.655041000740027 21 19.8197590530174 31 0.0 11 4.82839705903649 21 19.60551458587365 31 0.0 11 5.018263502738562 21 19.4819120014388 31 0.0 11 5.166854464936676 21 19.38302989626089 31 0.0 11 5.274170138434868 21 19.23470683256908 31 0.0 11 5.406251100835447 21 19.01388200327738 31 0.0 11 5.563097159334347 21 18.87379906797954 31 0.0 11 5.75296341023241 21 18.77491705687669 31 0.0 11 5.810748891533904 21 18.72547600428774 31 0.0 11 5.984104949830367 21 18.50299131467497 31 0.0 11 6.223501585729138 21 18.26402636827427 31 0.0 11 6.388602740528824 21 18.11570330458246 31 0.0 11 6.59497918402846 21 17.9179391883017 31 0.0 11 6.801355627528067 21 17.82729730559282 31 0.0 11 6.882254838620553 21 17.76961603053484 31 0.0 11 7.039100897119453 21 17.58833226511707 31 0.0 11 7.162926763219246 21 17.45648955228824 31 0.0 11 7.37755830301964 21 17.34936731871637 31 0.0 11 7.592189650016052 21 17.23400486267547 31 0.0 11 7.765545901116524 21 17.15326296868163 31 0.0 11 8.029707633113645 21 16.96373907486989 31 0.0 11 8.194808787913331 21 16.74949460772613 31 0.0 11 8.45897071271446 21 16.49404931046245 31 0.0 11 8.665346963410087 21 16.30452532257565 31 0.0 11 8.838703214510559 21 16.27156462084968 31 0.0 11 9.102864946507679 21 16.04908002531198 31 0.0 11 9.350516678707208 21 15.85131590903122 31 0.0 11 9.433067256107051 21 15.7524338038533 31 0.0 11 9.796289758105586 21 15.55466968757255 31 0.0 11 10.15125716380333 21 15.37338592215478 31 0.0 11 10.35598243379959 21 15.21024227384599 31 0.0 11 10.5210833957953 21 15.06191921015418 31 0.0 11 10.7274598392949 21 14.94655684818835 31 0.0 11 10.90907118669619 21 14.76527298869553 31 0.0 11 11.17323291869328 21 14.60046957414073 31 0.0 11 11.47041484308954 21 14.33678405440802 31 0.0 11 11.81712734529051 21 14.00717722529845 31 0.0 11 12.22162513598897 21 13.72701135470276 31 0.0 11 12.5848474451835 21 13.47156605743907 31 0.0 11 12.94806994718203 21 13.22602074889043 31 0.0 11 13.31129244918057 21 12.98705570841468 31 0.0 11 13.73230023967659 21 12.75633098448301 31 0.0 11 13.83961610597879 21 12.71513006028802 31 0.0 11 14.07075764557677 21 12.69864970942504 31 0.0 11 14.33491937757386 21 12.71513006028802 31 0.0 11 14.44223505107208 21 12.6574488793051 31 0.0 11 14.55615464736769 21 12.59976769832218 31 0.0 11 14.77078618716811 21 12.42672406129837 31 0.0 11 14.97716263066772 21 12.3937633595724 31 0.0 11 15.23306926636405 21 12.40200358204143 31 0.0 11 15.35689513246381 21 12.36080265784643 31 0.0 11 15.49723119116518 21 12.27016077513754 31 0.0 11 15.55501647966266 21 12.25368042427456 31 0.0 11 15.59629176836259 21 12.25368042427456 31 0.0 11 15.68709744206322 21 12.21247959415463 31 0.0 11 16.03380975146018 21 11.99823512701088 31 0.0 11 16.38052206085714 21 11.71806925641519 31 0.0 11 16.51260302325769 21 11.58622654358637 31 0.0 11 16.81804004395473 21 11.2088385222089 31 0.0 11 17.13173216095256 21 10.69794783360649 31 0.0 11 17.14824235355413 21 10.59082560003462 31 0.0 11 17.18126254595327 21 10.43426231387378 31 0.0 11 17.21428273835241 21 10.36834100449691 31 0.0 11 17.28857821945146 21 10.26121877092504 31 0.0 11 17.34636370075295 21 10.12113583562718 31 0.0 11 17.35461879705374 21 9.948092198603376 31 0.0 11 17.37112879685133 21 9.570704083150857 31 0.0 11 17.28032331595469 21 9.339979359219185 31 0.0 11 17.07394687245508 21 9.092774190349473 31 0.0 11 16.93361081375371 21 8.952691255051618 31 0.0 11 16.87582552525623 21 8.911490424931685 31 0.0 11 16.76850985175803 21 8.721966437044898 31 0.0 11 16.66119398545584 21 8.450040788918229 31 0.0 11 16.46307263825699 21 8.029791983024693 31 0.0 11 16.33099186866044 21 7.668884312510215 31 0.0 11 16.17414581016151 21 7.363997962657592 31 0.0 11 16.05031994406175 21 7.083832092061896 31 0.0 11 15.9182389816612 21 6.910788455038087 31 0.0 11 15.81092330816301 21 6.836626923192184 31 0.0 11 15.71186253816156 21 6.803666221466215 31 0.0 11 15.66233215316086 21 6.778945742209259 31 0.0 11 15.66233215316086 21 6.729504689620313 31 0.0 11 15.68709744206322 21 6.65534315777441 31 0.0 11 15.73662782706392 21 6.539980701733512 31 0.0 11 15.81917840446379 21 6.399897860510733 31 0.0 11 15.83568840426136 21 6.284535404469835 31 0.0 11 15.76139292316227 21 6.169173042503999 31 0.0 11 15.72011763446235 21 6.095011510658096 31 0.0 0 LWPOLYLINE 5 2C4 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 1.707148964614447 20 22.58623137224373 10 1.73538833445221 20 22.51576025772196 10 1.700089079397884 20 22.5016660348176 10 1.643610510750846 20 22.51576025772196 0 LWPOLYLINE 5 2C5 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 48 2.0 100 AcDbPolyline 90 10 70 0 43 0.0 10 1.65067022493892 20 22.5016660348176 10 1.685969479993246 20 22.45233625465236 10 1.643610510750846 20 22.43119492029583 10 1.60831125569652 20 22.45233625465236 10 1.643610510750846 20 22.41005358593929 10 1.601251370479957 20 22.35367669432189 10 1.565952115425602 20 22.38186514013059 10 1.60831125569652 20 22.35367669432189 10 1.573012000642165 20 22.30434691415664 10 1.537712916616328 20 22.318441137061 0 LWPOLYLINE 5 2C6 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 0.274001501190412 20 23.74900459495275 10 0.2598817307572858 20 23.70672192623969 10 0.3869589805414932 20 23.71376903769187 10 0.35871961070373 20 23.76309881785711 0 LWPOLYLINE 5 2C7 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 0.1681039070559223 20 23.77014592930929 10 0.1610440218393592 20 23.69967481478751 10 0.2528220165692119 20 23.69967481478751 10 0.2457621313526488 20 23.74195748350058 0 LWPOLYLINE 5 2C8 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 0.0692661981379956 20 23.72081614914404 10 0.0622063129214325 20 23.66443925752662 10 0.1610440218393592 20 23.67853348043098 10 0.132804652001596 20 23.72786326059622 0 SPLINE 5 2C9 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 6 ACAD_ISO07W100 48 0.01 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 11 71 3 72 42 73 38 74 36 42 0.0000000001 43 0.0000000001 44 0.0000000001 12 -0.9422407072424453 22 0.3349364859421209 32 0.0 13 -0.9422407072424453 23 0.3349364859421209 33 0.0 40 0.0 40 0.0 40 0.0 40 0.0 40 0.3180332459582898 40 0.6953442703590265 40 0.9549419881066349 40 1.341025986076261 40 1.664744228238058 40 2.018861125745345 40 2.273990606748513 40 2.361686748219391 40 2.431383049736477 40 2.51855678637106 40 2.68448419167648 40 3.000995478385003 40 3.371335764143635 40 3.732093785898048 40 4.104772045675288 40 4.484011325128024 40 4.867409901090845 40 5.237216031457698 40 5.52213934727961 40 5.838437690964829 40 6.040890581335903 40 6.358429911631168 40 6.582827431554565 40 6.886252041596954 40 6.993410611151071 40 7.008807013923939 40 7.057520963388321 40 7.213488782961693 40 7.414397163719778 40 7.647327449417354 40 7.991710503233955 40 8.308138587435413 40 8.678000294763464 40 9.058945147448643 40 9.186460993287319 40 9.186460993287319 40 9.186460993287319 40 9.186460993287319 10 5.705044175431225 20 18.85514673831724 30 0.0 10 5.605156218565109 20 18.89065371758859 30 0.0 10 5.424839947179859 20 19.05829051355186 30 0.0 10 5.270480163613378 20 19.33403587972871 30 0.0 10 5.086492147460559 20 19.62184456135678 30 0.0 10 4.879486996886076 20 19.87275761261741 30 0.0 10 4.596222282132865 20 20.09083946491914 30 0.0 10 4.41455184015148 20 20.3455837523996 30 0.0 10 4.175471450545755 20 20.4434159857225 30 0.0 10 4.143839698300174 20 20.59157884627417 30 0.0 10 4.201425202469752 20 20.66656910142939 30 0.0 10 4.319005916386148 20 20.6472497451709 30 0.0 10 4.491439894586367 20 20.57329574255137 30 0.0 10 4.677434467699679 20 20.33934383484623 30 0.0 10 5.014088272299623 20 20.22306128316299 30 0.0 10 5.31282065813105 20 19.9940759644602 30 0.0 10 5.702154559302469 20 19.9721793917425 30 0.0 10 5.997330940690648 20 19.70193778831549 30 0.0 10 6.17894124714394 20 19.37084524868193 30 0.0 10 6.421360392205171 20 19.1225137447028 30 0.0 10 6.670603939203402 20 18.90469265687884 30 0.0 10 6.755534213142091 20 18.64658612347599 30 0.0 10 6.914390815509864 20 18.40327525638121 30 0.0 10 7.161112628916994 20 18.33720789812572 30 0.0 10 7.369131043656312 20 18.08315493979458 30 0.0 10 7.312870202324708 20 17.94958108397363 30 0.0 10 7.462350818527543 20 17.69570634256054 30 0.0 10 7.418387160650555 20 17.74519389487103 30 0.0 10 7.349067632459378 20 17.76369743398976 30 0.0 10 7.231361984094391 20 17.86369513882467 30 0.0 10 7.034893641467205 20 17.74269816473942 30 0.0 10 6.7738135869625 20 17.82603674728435 30 0.0 10 6.524421868892105 20 17.99520441791953 30 0.0 10 6.33199194760878 20 18.28858930807582 30 0.0 10 6.017073008706157 20 18.47189623670955 30 0.0 10 5.918884675128276 20 18.80154382755095 30 0.0 10 5.745094382353777 20 18.84091016854819 30 0.0 10 5.705044175431225 20 18.85514673831724 30 0.0 11 5.705044175431225 21 18.85514673831724 31 0.0 11 5.454419875013854 21 19.05093388185601 31 0.0 11 5.247382357399544 21 19.36636862222941 31 0.0 11 5.105725099504013 21 19.58390987428356 31 0.0 11 4.85510079908667 21 19.87759050614158 31 0.0 11 4.615373237127187 21 20.09513175819573 31 0.0 11 4.364748936709816 21 20.34530417302296 31 0.0 11 4.168608157553364 21 20.50846007033853 31 0.0 11 4.157711419095505 21 20.59547658785021 31 0.0 11 4.201298201898538 21 20.64986194258879 31 0.0 11 4.28847193853312 21 20.64986194258879 31 0.0 11 4.441025934886511 21 20.58459953359251 31 0.0 11 4.680753496845994 21 20.37793533579606 31 0.0 11 5.00765479544006 21 20.20390238422281 31 0.0 11 5.323659355576239 21 20.02986943264956 31 0.0 11 5.68325069851545 21 19.93197586088018 31 0.0 11 5.977461781735854 21 19.69268050031064 31 0.0 11 6.195396037808052 21 19.37724567648712 31 0.0 11 6.446020338225423 21 19.10531915314449 31 0.0 11 6.642161117381874 21 18.89865495534803 31 0.0 11 6.783818375277377 21 18.61585137774771 31 0.0 11 6.903682156257104 21 18.45269548043215 31 0.0 11 7.176099762561761 21 18.28953949966648 31 0.0 11 7.317757020457264 21 18.11550654809323 31 0.0 11 7.394034018633959 21 17.82182591623521 31 0.0 11 7.437620801436992 21 17.72393234446583 31 0.0 11 7.426724062979104 21 17.73480939872352 31 0.0 11 7.383137280176072 21 17.75656350723892 31 0.0 11 7.241480022280569 21 17.82182591623521 31 0.0 11 7.045339243124118 21 17.77831761575431 31 0.0 11 6.816508419622522 21 17.82182591623521 31 0.0 11 6.533193903831516 21 18.01761297632386 31 0.0 11 6.326156557245695 21 18.2569083368934 31 0.0 11 6.053738779912549 21 18.50708075172063 31 0.0 11 5.824907956410953 21 18.81163852128646 31 0.0 11 5.705044175431225 21 18.85514673831724 31 0.0 0 LWPOLYLINE 5 2CA 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 48 2.0 100 AcDbPolyline 90 15 70 0 43 0.0 10 1.8624654132079 20 22.11407498839797 10 1.8412859285867 20 22.14226343420668 10 1.883645068857617 20 22.19159321437192 10 1.918944152883426 20 22.18454610291974 10 1.883645068857617 20 22.20568743727626 10 1.926004038100018 20 22.26911135689576 10 1.954243407937781 20 22.24797010598933 10 1.926004038100018 20 22.26911135689576 10 1.961303293154344 20 22.318441137061 10 1.989542662992107 20 22.31139402560882 10 1.961303293154344 20 22.318441137061 10 1.996602377180181 20 22.35367669432189 10 2.03896151745107 20 22.33958247141753 10 1.947183522721218 20 22.38186514013059 10 1.707148964614447 20 22.5650900378872 0 SPLINE 5 2CB 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 113 73 109 74 107 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.6180705397691045 40 1.270082903983126 40 1.433396722961204 40 1.710180967255146 40 2.025283266008595 40 2.320377795074989 40 2.62318870806365 40 2.689371076052186 40 2.748523651967673 40 2.856837980167551 40 3.062937451264791 40 3.583992085382696 40 3.790091732718831 40 3.979781667122493 40 4.164044232876487 40 4.516763770462929 40 4.936473196716947 40 5.421810237260705 40 5.753430623590432 40 5.909395798103597 40 6.035114527889016 40 6.202839011635282 40 6.35885142815426 40 6.630900842889517 40 6.755685792253061 40 6.76964075336933 40 7.045632392425816 40 7.467934334161639 40 7.751850285463677 40 7.83586922930207 40 7.968624476230112 40 8.015363345046452 40 8.029318306162721 40 8.122897496679524 40 8.307050859374792 40 8.752560059093072 40 9.529860857495533 40 10.28918332306279 40 10.60792784907918 40 10.83284529579966 40 11.7068506590188 40 12.31450840120268 40 12.72857663906195 40 13.41716994686687 40 14.24452389195674 40 14.61915692059601 40 14.91554087580126 40 15.23340589183611 40 15.54288958714855 40 15.75978245765393 40 15.99717756845044 40 16.46306564750063 40 16.59454591536466 40 16.75347844552986 40 17.28413037751723 40 17.76729273892764 40 18.29203868672875 40 18.6474660902899 40 18.78692524295816 40 18.83104675073592 40 18.85076425388739 40 18.90341375930614 40 19.03309050694428 40 19.19637659790707 40 19.45329729299042 40 19.87383766448647 40 20.27022586072591 40 20.37910187056366 40 20.43654205924438 40 20.5370472628602 40 20.66241563613129 40 20.81816469112644 40 20.98830068832604 40 21.20175595516696 40 21.6951211517515 40 22.01879450511467 40 22.47569147369165 40 22.61309107506015 40 22.66891091952529 40 22.75702680708174 40 22.84514260540694 40 22.94656701568054 40 23.03014593119459 40 23.11943862258421 40 23.24796341035516 40 23.28975286811219 40 23.38726157152025 40 23.50723362627403 40 23.57692809475757 40 24.19167222716524 40 24.28525141768203 40 24.42549454794999 40 24.66543881444416 40 24.90538313555299 40 24.99026390551253 40 25.116628685938 40 25.31641772044197 40 25.47055321892945 40 25.97370428997446 40 26.69029881770977 40 26.74783049617373 40 26.88389210345632 40 27.07338760918494 40 27.27439806579768 40 27.44918099718317 40 27.49946862793031 40 27.49946862793031 40 27.49946862793031 40 27.49946862793031 10 34.3261867565636 20 1.200069312555569 30 0.0 10 34.13304261696412 20 1.267290027361823 30 0.0 10 33.73614767710586 20 1.405422934814171 30 0.0 10 33.28965263812001 20 1.629228194396907 30 0.0 10 33.07180351873508 20 1.922684684423582 30 0.0 10 32.88045299674321 20 2.093218989770164 30 0.0 10 32.59873039567064 20 2.198369428951115 30 0.0 10 32.36693690965454 20 2.397528316651156 30 0.0 10 32.18291241608552 20 2.526892878066512 30 0.0 10 32.03502734205813 20 2.551236268269475 30 0.0 10 31.98756216319675 20 2.617795712450739 30 0.0 10 31.8787164733259 20 2.681351827588109 30 0.0 10 31.61706263138024 20 2.777810401342691 30 0.0 10 31.36154618784316 20 2.962347073416248 30 0.0 10 31.06674816446229 20 3.05867821314507 30 0.0 10 30.92144568897129 20 3.190977623599485 30 0.0 10 30.70546673587457 20 3.302551523229484 30 0.0 10 30.41467381263437 20 3.432804273481193 30 0.0 10 30.02540481738659 20 3.589727598782079 30 0.0 10 29.62798185413967 20 3.702961694433177 30 0.0 10 29.32985529972267 20 3.830072386128421 30 0.0 10 29.14151904247249 20 3.911974283635649 30 0.0 10 29.02485326573324 20 4.010029707765774 30 0.0 10 28.87405645697528 20 4.042236531087497 30 0.0 10 28.68143285545853 20 4.075678388063534 30 0.0 10 28.4903785299414 20 4.110804115794826 30 0.0 10 28.4079006209318 20 4.255621379121436 30 0.0 10 28.26755924823291 20 4.249353157792663 30 0.0 10 28.04623987256871 20 4.362340242405061 30 0.0 10 27.73563775177426 20 4.436337733464986 30 0.0 10 27.51230589576749 20 4.631915188351555 30 0.0 10 27.35563573597907 20 4.621410455502565 30 0.0 10 27.22915748876418 20 4.673352913540417 30 0.0 10 27.22496899862923 20 4.578026864231614 30 0.0 10 27.16882850355379 20 4.583054326842247 30 0.0 10 27.0919442871917 20 4.644320219816751 30 0.0 10 26.86547003051073 20 4.733707390804435 30 0.0 10 26.4114597491215 20 4.84956441558533 30 0.0 10 25.80414314033424 20 5.117177176761833 30 0.0 10 25.22092564488572 20 5.319465976049581 30 0.0 10 24.81468923966639 20 5.477492924617185 30 0.0 10 24.41302609738679 20 5.729463156523233 30 0.0 10 23.87214691911988 20 5.912821622752526 30 0.0 10 23.31624449579557 20 6.232688712304055 30 0.0 10 22.92894916810634 20 6.654107774091343 30 0.0 10 22.48503130022786 20 7.123237990002635 30 0.0 10 22.23058158414715 20 7.721597158392158 30 0.0 10 21.84627497902029 20 8.048705820775525 30 0.0 10 21.63464352428225 20 8.301673335768631 30 0.0 10 21.44004575681758 20 8.540113089387949 30 0.0 10 21.29400971615583 20 8.784083199722504 30 0.0 10 21.09868595464284 20 8.950829738092862 30 0.0 10 20.91224678542212 20 9.194880711875878 30 0.0 10 20.7158521950726 20 9.395639785831336 30 0.0 10 20.59140096615285 20 9.615846898116753 30 0.0 10 20.4173661807289 20 9.828123534692149 30 0.0 10 20.14492307812189 20 10.10763789540182 30 0.0 10 19.78024745012939 20 10.4718616303079 30 0.0 10 19.50159649557642 20 10.8224868703474 30 0.0 10 19.27935464879949 20 11.09999220091566 30 0.0 10 19.14756920876851 20 11.19731120974081 30 0.0 10 19.07792414924761 20 11.24253685557048 30 0.0 10 19.04733878633336 20 11.21087669082786 30 0.0 10 19.07189372940428 20 11.1235144115802 30 0.0 10 18.89053948555408 20 11.19608430051722 30 0.0 10 18.75386332522128 20 11.25038133265416 30 0.0 10 18.50203760347824 20 11.40932955614557 30 0.0 10 18.18423772072348 20 11.57836554212288 30 0.0 10 17.97760723037565 20 11.77927275541807 30 0.0 10 17.80206368803325 20 11.90887682230188 30 0.0 10 17.8312774294775 20 12.00275617630703 30 0.0 10 17.90906993764381 20 12.06853306645899 30 0.0 10 17.87380635296103 20 12.20767222486287 30 0.0 10 17.90650293516046 20 12.35166470587568 30 0.0 10 18.00557931083208 20 12.52525320946912 30 0.0 10 18.32709690355524 20 12.52007043511405 30 0.0 10 18.64538128829282 20 12.62016123915098 30 0.0 10 19.08752427960701 20 12.5787211114534 30 0.0 10 19.32987750737109 20 12.36536714435893 30 0.0 10 19.51382307115191 20 12.26666314059955 30 0.0 10 19.62097361138564 20 12.25108230570683 30 0.0 10 19.64095878100306 20 12.35431744541928 30 0.0 10 19.59708741342303 20 12.4334859036566 30 0.0 10 19.57461833458565 20 12.51914069137748 30 0.0 10 19.55813322227381 20 12.62306881005085 30 0.0 10 19.65866082276006 20 12.67044768045846 30 0.0 10 19.73519695437165 20 12.73526054892504 30 0.0 10 19.72336075660734 20 12.82493070619497 30 0.0 10 19.75459626204698 20 12.92596250482681 30 0.0 10 19.63152879018734 20 12.9542010056091 30 0.0 10 19.50113942734131 20 13.19204633813327 30 0.0 10 19.24891715467401 20 13.30721226236291 30 0.0 10 19.00555555614777 20 13.46269315533239 30 0.0 10 18.83483860901379 20 13.43293997422876 30 0.0 10 18.68173769991738 20 13.29567061550949 30 0.0 10 18.54007770777423 20 13.15196825228671 30 0.0 10 18.38798850142774 20 13.13870768696022 30 0.0 10 18.25175935426127 20 13.1091040418754 30 0.0 10 18.09724666362006 20 13.17409279762267 30 0.0 10 17.81119210091041 20 13.18414463529776 30 0.0 10 17.35331955855135 20 13.20827415738189 30 0.0 10 16.93295310941322 20 13.25283984182213 30 0.0 10 16.63005871154478 20 13.30636696242176 30 0.0 10 16.53844722966594 20 13.41587681748063 30 0.0 10 16.52062593167223 20 13.58989551990458 30 0.0 10 16.41582178491805 20 13.76525654008822 30 0.0 10 16.27532562387939 20 13.81021948497145 30 0.0 10 16.2138136873607 20 13.85321637187788 30 0.0 10 16.20007004394113 20 13.8628231882982 30 0.0 11 34.3261867565636 21 1.200069312555569 31 0.0 11 33.747055388228 21 1.415981448250192 31 0.0 11 33.19583374932099 21 1.764226804125371 31 0.0 11 33.09117144454688 21 1.88959508332141 31 0.0 11 32.88184683499872 21 2.070682702243516 31 0.0 11 32.60274722706512 21 2.216945710318071 31 0.0 11 32.36551269528439 21 2.39244658785347 31 0.0 11 32.1003682412711 21 2.538709595928025 31 0.0 11 32.03757081984582 21 2.559604324806542 31 0.0 11 31.99570593649699 21 2.601393782563562 31 0.0 11 31.90639410823121 21 2.662675027861084 31 0.0 11 31.71800203675942 21 2.746253849300089 31 0.0 11 31.25748793431424 21 2.99002565485776 31 0.0 11 31.06909567003848 21 3.07360447629675 31 0.0 11 30.91559090495539 21 3.185043061673866 31 0.0 11 30.75510875571618 21 3.275586824097388 31 0.0 11 30.43414426443376 21 3.421849832171943 31 0.0 11 30.04340496756995 21 3.575077781231016 31 0.0 11 29.58289086512474 21 3.728305730290088 31 0.0 11 29.27588133495859 21 3.853674103561189 31 0.0 11 29.13633153099181 21 3.923323137106194 31 0.0 11 29.03166922621773 21 3.992972264726262 31 0.0 11 28.87118707697851 21 4.041726569392764 31 0.0 11 28.71768231189543 21 4.069586239255812 31 0.0 11 28.46649281899843 21 4.17405978957332 31 0.0 11 28.37020360657649 21 4.253430257373537 31 0.0 11 28.35624864546023 21 4.253430257373537 31 0.0 11 28.09110399864292 21 4.330044231903073 31 0.0 11 27.7003647017791 21 4.490237027871614 31 0.0 11 27.44917520888208 21 4.622570342127232 31 0.0 11 27.36544544218441 21 4.629535189036701 31 0.0 11 27.23287302237375 21 4.622570342127232 31 0.0 11 27.21194067710132 21 4.580780884370199 31 0.0 11 27.19798571598505 21 4.580780884370199 31 0.0 11 27.11425575648337 21 4.622570342127232 31 0.0 11 26.94679603028402 21 4.699184316656769 31 0.0 11 26.52116942703151 21 4.830791465540684 31 0.0 11 25.79551067776901 21 5.109387787870858 31 0.0 11 25.08380688962276 21 5.374054228231969 31 0.0 11 24.79075251337693 21 5.499422507428008 31 0.0 11 24.59538286494501 21 5.610861092805109 31 0.0 11 23.79994931010111 21 5.973036236574287 31 0.0 11 23.28361517038678 21 6.293421922586432 31 0.0 11 22.99056060133691 21 6.585948032810591 31 0.0 11 22.54679268359603 21 7.112475124931833 31 0.0 11 22.10023334946311 21 7.80896583668219 31 0.0 11 21.83508889544981 21 8.073632277043316 31 0.0 11 21.63971924701792 21 8.296509259647407 31 0.0 11 21.444349598586 21 8.547245912114533 31 0.0 11 21.26293491127037 21 8.797982564581658 31 0.0 11 21.10943014618729 21 8.951210513640731 31 0.0 11 20.95592538110423 21 9.132298132562851 31 0.0 11 20.66287100485837 21 9.49447327633203 31 0.0 11 20.59309619927697 21 9.605911767634069 31 0.0 11 20.49541127865901 21 9.731280046830107 31 0.0 11 20.13258190402777 21 10.11850907186132 31 0.0 11 19.79766245162906 21 10.4667544277365 31 0.0 11 19.46274319203436 21 10.87071902926271 31 0.0 11 19.22550846744963 21 11.13538546962382 31 0.0 11 19.11386877851938 21 11.21896438513789 31 0.0 11 19.07200389517055 21 11.23289417303187 31 0.0 11 19.05804893405428 21 11.21896438513789 31 0.0 11 19.05270698409066 21 11.16658658457863 31 0.0 11 18.92402805245725 21 11.18264246922237 31 0.0 11 18.77390248969456 21 11.24686600779736 31 0.0 11 18.55139493168454 21 11.3753130014972 31 0.0 11 18.19284038082497 21 11.59506931680105 31 0.0 11 17.88583104346284 21 11.84580596926818 31 0.0 11 17.81605604507743 21 11.92938488478225 31 0.0 11 17.83001100619372 21 11.98510413043327 31 0.0 11 17.88583104346284 21 12.06868295187227 31 0.0 11 17.88583104346284 21 12.19405132514336 31 0.0 11 17.91374096569541 21 12.34727927420244 31 0.0 11 18.01142569350935 21 12.48657734129247 31 0.0 11 18.22075030305754 21 12.5283667990495 31 0.0 11 18.7091745205393 21 12.59801592666957 31 0.0 11 19.0301388190177 21 12.55622646891254 31 0.0 11 19.42087830868553 21 12.3194196043394 31 0.0 11 19.54647295873203 21 12.26370035868838 31 0.0 11 19.60229280319717 21 12.26370035868838 31 0.0 11 19.63020291823372 21 12.34727927420244 31 0.0 11 19.60229280319717 21 12.43085809564145 31 0.0 11 19.5743828809646 21 12.5283667990495 31 0.0 11 19.5743828809646 21 12.61194571456356 31 0.0 11 19.64415787935001 21 12.66766496021458 31 0.0 11 19.72788764604769 21 12.76517366362263 31 0.0 11 19.72788764604769 21 12.80696312137966 31 0.0 11 19.72788764604769 21 12.90447182478771 31 0.0 11 19.63020291823372 21 12.97412085833274 31 0.0 11 19.58833784208087 21 13.02984010398375 31 0.0 11 19.09991381740312 21 13.40313934112099 31 0.0 11 19.01618385790143 21 13.44492879887801 31 0.0 11 18.87663424673866 21 13.43099891690896 31 0.0 11 18.68126459830674 21 13.29170084981893 31 0.0 11 18.48589494987484 21 13.15240268865385 31 0.0 11 18.40216499037316 21 13.13847290075986 31 0.0 11 18.27657034032665 21 13.12454301879081 31 0.0 11 18.08120069189476 21 13.16633247654785 31 0.0 11 17.92769592681167 21 13.18026226444183 31 0.0 11 17.42531674821361 21 13.20812193430487 31 0.0 11 16.71361296006739 21 13.29170084981893 31 0.0 11 16.65779311560228 21 13.30563063771293 31 0.0 11 16.56289941857238 21 13.40313934112099 31 0.0 11 16.50707957410728 21 13.58422686596804 31 0.0 11 16.39543969237303 21 13.75138469699616 31 0.0 11 16.24193512009398 21 13.83496351843517 31 0.0 11 16.20007004394113 21 13.8628231882982 31 0.0 0 SPLINE 5 2CC 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 0.005 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 12 73 8 74 6 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.5042059029040236 40 1.322988937617085 40 2.237684824621246 40 3.234289376595888 40 4.088543938358269 40 4.088543938358269 40 4.088543938358269 40 4.088543938358269 10 17.56587795201551 20 9.798030230336166 30 0.0 10 17.58016064521546 20 9.630255308585631 30 0.0 10 17.61763709083834 20 9.190029670196429 30 0.0 10 17.50833469237591 20 8.44424993575021 30 0.0 10 17.15474846868867 20 7.585973115603523 30 0.0 10 16.49472340360673 20 6.923506545335582 30 0.0 10 16.19240370134197 20 6.383458644070134 30 0.0 10 16.05286958831655 20 6.134202296138425 30 0.0 11 17.56587795201551 21 9.798030230336166 31 0.0 11 17.59389652406713 21 9.29460342121348 31 0.0 11 17.48182189380369 21 8.483527015943764 31 0.0 11 17.11757908890476 21 7.644482473156145 31 0.0 11 16.50116845142733 21 6.861374205404331 31 0.0 11 16.05286958831655 21 6.134202296138425 31 0.0 0 SPLINE 5 2CD 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 0.005 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 13 73 9 74 7 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.5103958160521218 40 1.554657299945774 40 2.520919937737657 40 3.635534097115259 40 4.149184177865009 40 4.677154173631995 40 4.677154173631995 40 4.677154173631995 40 4.677154173631995 10 18.04219538717788 20 10.16161618496912 30 0.0 10 18.0118323095941 20 9.994099224696617 30 0.0 10 17.91934687235136 20 9.483845306146127 30 0.0 10 17.87519019194579 20 8.643277721749385 30 0.0 10 17.49906692586712 20 7.636375668746252 30 0.0 10 16.82182348730786 20 7.056096009899881 30 0.0 10 16.50875173872324 20 6.403398428278176 30 0.0 10 16.31778019136854 20 6.113390661989049 30 0.0 10 16.22098170474024 20 5.966393304130804 30 0.0 11 18.04219538717788 21 10.16161618496912 31 0.0 11 17.95813932896606 21 9.658189459296551 31 0.0 11 17.81804595562252 21 8.623367786983394 31 0.0 11 17.45380315072358 21 7.72838696915997 31 0.0 11 16.75333645503431 21 6.861374205404331 31 0.0 11 16.50116845142733 21 6.413883754767567 31 0.0 11 16.22098170474024 21 5.966393304130804 31 0.0 0 SPLINE 5 2CE 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 12 73 8 74 6 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.2399375066127055 40 0.5866810763331102 40 0.8926692585639807 40 1.408078345445605 40 1.524049100152422 40 1.524049100152422 40 1.524049100152422 40 1.524049100152422 10 23.91007124589981 20 5.931603981811989 30 0.0 10 23.8547917235661 20 5.989591856285482 30 0.0 10 23.71962548749168 20 6.131380395687504 30 0.0 10 23.47779384674881 20 6.306589935044269 30 0.0 10 23.19070256397833 20 6.570566205006662 30 0.0 10 22.92510963368929 20 6.737813006350762 30 0.0 10 22.75896284513465 20 6.866999750942102 30 0.0 10 22.72844529105449 20 6.890728548223123 30 0.0 11 23.91007124589981 21 5.931603981811989 31 0.0 11 23.74025680438092 21 6.101112278161011 31 0.0 11 23.47138371370465 21 6.320060592273364 31 0.0 11 23.23788880841519 21 6.51782028702641 31 0.0 11 22.82042803320891 21 6.820100005175547 31 0.0 11 22.72844529105449 21 6.890728548223123 31 0.0 0 ELLIPSE 5 2CF 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbEllipse 10 16.16800654501743 20 6.473699790447923 30 0.0 11 -0.4795257342145334 21 0.3002510365636937 31 0.0 210 0.0 220 0.0 230 1.0 40 0.3410938643903854 41 0.0 42 6.283185307179586 0 SPLINE 5 2D0 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 37 73 33 74 31 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.0291239508788264 40 0.0503124761630856 40 0.0786149473509139 40 0.1994960822135393 40 0.4784723549601765 40 0.8895154797753486 40 1.43969979393682 40 1.920027487421802 40 2.402588689541244 40 2.549734320095813 40 2.603605444527171 40 2.702663900880533 40 3.014070610734504 40 3.136207771961147 40 3.37680900685704 40 3.7332010161574 40 4.071657077134593 40 4.242594116737254 40 4.31774997963809 40 4.417724048901678 40 4.465120225966968 40 4.565094158774506 40 4.83042230288798 40 4.96772625723469 40 5.10768983103986 40 5.213755049327776 40 5.416305573642778 40 5.614432298366173 40 5.886077031808832 40 6.03322250475422 40 6.03322250475422 40 6.03322250475422 40 6.03322250475422 10 22.06404577286113 20 7.843514055009734 30 0.0 10 22.0677733507461 20 7.852215028317909 30 0.0 10 22.07421285046454 20 7.86724621395562 30 0.0 10 22.06512220225596 20 7.900751647532404 30 0.0 10 22.14264151150449 20 7.883857605034068 30 0.0 10 22.2501815787087 20 7.834727538599899 30 0.0 10 22.50179119471775 20 7.690829710391121 30 0.0 10 22.80294263839969 20 7.41637008729007 30 0.0 10 23.11505514652423 20 7.046252582223714 30 0.0 10 23.49085509401549 20 6.709451157784031 30 0.0 10 23.7805330756205 20 6.478625525301382 30 0.0 10 23.95940373769202 20 6.338102935280979 30 0.0 10 24.05129524459702 20 6.293336705940834 30 0.0 10 24.21017495905358 20 6.315469734935597 30 0.0 10 24.38531146866424 20 6.306669540113596 30 0.0 10 24.60993132337688 20 6.275061179632163 30 0.0 10 24.82068390039421 20 6.15297504318287 30 0.0 10 25.10837787481643 20 6.033229993582558 30 0.0 10 25.36670006418645 20 5.910222019538466 30 0.0 10 25.55894347139699 20 5.851006082442124 30 0.0 10 25.64000331691736 20 5.768321087308837 30 0.0 10 25.703308777504 20 5.723927505216027 30 0.0 10 25.73100709275716 20 5.643421970518526 30 0.0 10 25.84963426474125 20 5.562757692574886 30 0.0 10 25.92880854277711 20 5.405945652752539 30 0.0 10 26.09640734401125 20 5.32394056695564 30 0.0 10 26.17570799235219 20 5.221438704638052 30 0.0 10 26.29660476932075 20 5.130691051586605 30 0.0 10 26.46118005902623 20 5.080751211571194 30 0.0 10 26.6399010349788 20 4.941758010477337 30 0.0 10 26.79623160580164 20 4.808869692036532 30 0.0 10 26.91140602107306 20 4.72976417572686 30 0.0 10 26.95187352376967 20 4.701969785045264 30 0.0 11 22.06404577286113 21 7.843514055009734 31 0.0 11 22.07112129425607 21 7.871765453413743 31 0.0 11 22.07112129425607 21 7.892953978698002 31 0.0 11 22.0994237654439 21 7.892953978698002 31 0.0 11 22.21263345739115 21 7.850576928129498 31 0.0 11 22.45320407687958 21 7.709319936109437 31 0.0 11 22.76453068153355 21 7.440931792383878 31 0.0 11 23.13953774995812 21 7.038349529758036 31 0.0 11 23.4933180613938 21 6.713458495149396 31 0.0 11 23.86832493701436 21 6.409756079900077 31 0.0 11 23.98861034316059 21 6.325001978763083 31 0.0 11 24.03813957133726 21 6.303813453478838 31 0.0 11 24.13719802769063 21 6.303813453478838 31 0.0 11 24.4485246323446 21 6.296750580359073 31 0.0 11 24.56880984568681 21 6.275562055074829 31 0.0 11 24.78815370818637 21 6.176682207698306 31 0.0 11 25.11221617422964 21 6.028362342558466 31 0.0 11 25.42354277888361 21 5.895590920758337 31 0.0 11 25.5792061776126 21 5.824962471785838 31 0.0 11 25.63581092718425 21 5.775522548097583 31 0.0 11 25.70656710515379 21 5.70489409912507 31 0.0 11 25.72779386214264 21 5.662516954481517 31 0.0 11 25.79854984730818 21 5.591888505509018 31 0.0 11 25.97544000302602 21 5.394128810755972 31 0.0 11 26.0886496949733 21 5.316437488663694 31 0.0 11 26.18770815132666 21 5.217557641287172 31 0.0 11 26.2726153720861 21 5.153991971359374 31 0.0 11 26.4565812420029 21 5.069237776147332 31 0.0 11 26.61932016212685 21 4.956232276606343 31 0.0 11 26.83158831042746 21 4.786723886182258 31 0.0 11 26.95187352376967 21 4.701969785045264 31 0.0 0 SPLINE 5 2D1 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 44 73 40 74 38 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.2250051098679379 40 0.5534275306116875 40 0.8366174170671735 40 1.037317876480748 40 1.321029583959362 40 1.584018117238673 40 1.793968260291228 40 1.8828558617175 40 1.997808731107299 40 2.17435710459904 40 2.273682076005104 40 2.341639547211839 40 2.393839748388512 40 2.608125434030698 40 2.841111663385108 40 3.147435235355887 40 3.338015389607723 40 3.526568625064824 40 3.756206879382754 40 4.04651130935871 40 4.216421013782112 40 4.292522396662499 40 4.391925301145305 40 4.474886129825994 40 4.571488630927853 40 4.688228724133009 40 4.820566282721533 40 5.002923853086648 40 5.239293963313874 40 5.591871814132533 40 5.923350195315991 40 6.262708990461621 40 6.546388805853034 40 6.828147276894807 40 7.006332288043841 40 7.155069796700283 40 7.277689958119672 40 7.277689958119672 40 7.277689958119672 40 7.277689958119672 10 16.4473880324071 20 5.589915093020053 30 0.0 10 16.48513760433553 20 5.654797695416784 30 0.0 10 16.57798728399951 20 5.814384375226668 30 0.0 10 16.66408824656432 20 6.084131758823811 30 0.0 10 16.67869347199909 20 6.355668839731832 30 0.0 10 16.76133442227866 20 6.601739306127047 30 0.0 10 16.91984320036084 20 6.799693242697909 30 0.0 10 17.09029966912646 20 6.979738098670321 30 0.0 10 17.20645277747363 20 7.138879894874843 30 0.0 10 17.33870106266707 20 7.183531581949129 30 0.0 10 17.46330204284776 20 7.220156228460774 30 0.0 10 17.54708551802311 20 7.320234958459758 30 0.0 10 17.66549960024705 20 7.373531943787906 30 0.0 10 17.65297396335276 20 7.467541009058217 30 0.0 10 17.78235100494799 20 7.490220094053551 30 0.0 10 17.92756636026521 20 7.411038802134035 30 0.0 10 18.16805307419561 20 7.329961153697789 30 0.0 10 18.36489630915482 20 7.184283582138574 30 0.0 10 18.60776288744077 20 7.146664017855709 30 0.0 10 18.78200439135096 20 7.275139813708296 30 0.0 10 19.02703048201187 20 7.255655314488425 30 0.0 10 19.25713710735046 20 7.216999629703868 30 0.0 10 19.40141367343979 20 7.099130363685275 30 0.0 10 19.51616843256624 20 7.080181570510442 30 0.0 10 19.60153100050522 20 7.065426036995898 30 0.0 10 19.69604328005012 20 7.094080266081279 30 0.0 10 19.78523816717265 20 7.037216063477231 30 0.0 10 19.90196581926791 20 7.028919769830499 30 0.0 10 20.04490206234645 20 7.039469497131475 30 0.0 10 20.22847113106744 20 7.072143992430216 30 0.0 10 20.48116960915198 20 6.99865470098986 30 0.0 10 20.76416169535361 20 6.886679289224399 30 0.0 10 21.08297129075951 20 6.75941353682766 30 0.0 10 21.40690364414237 20 6.734577248145765 30 0.0 10 21.70288214947403 20 6.802329402823614 30 0.0 10 21.94977850412795 20 6.808411639992812 30 0.0 10 22.15438497148691 20 6.843160366699813 30 0.0 10 22.27750252449316 20 6.933906084190039 30 0.0 10 22.343186180112 20 6.995756299231926 30 0.0 10 22.37286708226724 20 7.023704959574345 30 0.0 11 16.4473880324071 21 5.589915093020053 31 0.0 11 16.55470370590529 21 5.787679209300819 31 0.0 11 16.65376447590674 21 6.100805781622469 31 0.0 11 16.69503976460666 21 6.380971558143102 31 0.0 11 16.76108014940493 21 6.570495546029903 31 0.0 11 16.92618130420461 21 6.801220364036637 31 0.0 11 17.09953736250111 21 6.998984480317389 31 0.0 11 17.24812851750323 21 7.147307544009194 31 0.0 11 17.33067909490307 21 7.180268245735163 31 0.0 11 17.43799476840129 21 7.221469075855097 31 0.0 11 17.57833063429862 21 7.328591309426968 31 0.0 11 17.65262611539768 21 7.39451271287892 31 0.0 11 17.66913630799925 21 7.460434116330858 31 0.0 11 17.71866669299996 21 7.476914467193836 31 0.0 11 17.92504313649959 21 7.419233286210925 31 0.0 11 18.13967448349598 21 7.328591309426968 31 0.0 11 18.41209131179388 21 7.18850846820419 31 0.0 11 18.60195756269195 21 7.172028117341199 31 0.0 11 18.77531381379242 21 7.246189649187101 31 0.0 11 19.00480417988703 21 7.254429777581066 31 0.0 11 19.28547610448572 21 7.180268245735163 31 0.0 11 19.43406706668383 21 7.097866585495296 31 0.0 11 19.50836254778289 21 7.081386234632319 31 0.0 11 19.60742331778433 21 7.073146012163292 31 0.0 11 19.68997389518418 21 7.081386234632319 31 0.0 11 19.7807793760808 21 7.04842553290635 31 0.0 11 19.89635033868379 21 7.031945182043358 31 0.0 11 20.02843110828036 21 7.040185310437323 31 0.0 11 20.21004245568161 21 7.056665661300314 31 0.0 11 20.4411839952796 21 7.007224608711354 31 0.0 11 20.77138630487897 21 6.883622118351553 31 0.0 11 21.0850784218768 21 6.776499884779681 31 0.0 11 21.42353563497298 21 6.751779311447677 31 0.0 11 21.70420755957167 21 6.79298014156761 31 0.0 11 21.98487948417036 21 6.817700714899615 31 0.0 11 22.15823573527083 21 6.858901545019548 31 0.0 11 22.28206140856659 21 6.941303299334478 31 0.0 11 22.37286708226724 21 7.023704959574345 31 0.0 0 SPLINE 5 2D2 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 109 73 105 74 103 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.132337756876116 40 0.2152985762126949 40 0.2862679214915485 40 0.5584812995219708 40 0.8124833130395163 40 0.9208703943046174 40 0.9836432277944755 40 1.050195907352714 40 1.150618016070146 40 1.37204461551179 40 1.6626834200933 40 1.877257653928964 40 2.263975509545239 40 2.677546868388838 40 2.886976493133629 40 3.032881218635057 40 3.103809202883698 40 3.178104683982755 40 3.236474533071902 40 3.321348452876473 40 3.545645542096779 40 3.960114707004048 40 4.502736295951144 40 4.720905175469047 40 5.002300839357548 40 5.200586955913448 40 5.30622894217895 40 5.522687656073183 40 5.850066657582744 40 6.293469064519387 40 6.643385877458305 40 6.971781273780625 40 7.423959715196052 40 7.774611130467655 40 8.023874037767486 40 8.200338998992188 40 8.248409971390634 40 8.358357651947542 40 8.417811422115466 40 8.557778025540805 40 8.63150701942482 40 8.828925000087487 40 9.040125204050271 40 9.168428053890963 40 9.234952795329427 40 9.29327230845997 40 9.452666317081524 40 9.665574564519415 40 9.861484501704545 40 10.03803302845357 40 10.21830155213199 40 10.46970577256623 40 10.68377800001249 40 11.10270674839326 40 11.35757130502837 40 11.70471499025137 40 12.10172719605263 40 12.38633390267437 40 12.6917131349833 40 12.99213267859413 40 13.25726273272465 40 13.58940250362056 40 14.0227008667129 40 14.2407017065175 40 14.42892237449241 40 14.67550052552564 40 14.82500261919502 40 14.93228986125015 40 14.99065971033929 40 15.05351083557933 40 15.25734686290474 40 15.51332869855068 40 15.64993021613987 40 15.85690660812787 40 15.97960183617872 40 16.11265153314151 40 16.31349594076631 40 16.55385409594476 40 16.87862871722662 40 17.1480509660455 40 17.47921307420589 40 17.75663599647176 40 17.95961028640809 40 18.0833557700183 40 18.27190900547543 40 18.46661175487814 40 18.62990627130693 40 18.80225127325063 40 19.11360576110721 40 19.54302553335528 40 19.81540489220244 40 20.06792043891583 40 20.31933521510608 40 20.52230950504241 40 20.80618725474577 40 20.95964342443721 40 21.04888599383573 40 21.09097578741566 40 21.17515535615781 40 21.27137913445689 40 21.37477201650072 40 21.73497989892065 40 21.73497989892065 40 21.73497989892065 40 21.73497989892065 10 17.82598236649818 20 11.15939756369501 30 0.0 10 17.78250371257956 20 11.15976092011958 30 0.0 10 17.71176885576099 20 11.16035205996294 30 0.0 10 17.61192839416735 20 11.12830271775481 30 0.0 10 17.49765961838226 20 11.23267804122581 30 0.0 10 17.41659221709157 20 11.40867882343465 30 0.0 10 17.25202850752971 20 11.56216350170304 30 0.0 10 17.2226393366669 20 11.70135229198056 30 0.0 10 17.24822537022505 20 11.79110141320589 30 0.0 10 17.33753642159646 20 11.78536896198751 30 0.0 10 17.46002592461049 20 11.767428233042 30 0.0 10 17.64574997185126 20 11.66393149540798 30 0.0 10 17.82695257095352 20 11.50063048786556 30 0.0 10 18.11915915239604 20 11.41726888986499 30 0.0 10 18.37690124412416 20 11.18623993148921 30 0.0 10 18.68191127209641 20 11.04545879020189 30 0.0 10 18.9105829161551 20 10.92166858574522 30 0.0 10 19.01241446514538 20 10.82717967299095 30 0.0 10 19.05524108705876 20 10.72193301095176 30 0.0 10 19.13129073090122 20 10.74235570481465 30 0.0 10 19.21069673634635 20 10.73905757462499 30 0.0 10 19.24670362111481 20 10.60135273373273 30 0.0 10 19.40769475449206 20 10.42828993284274 30 0.0 10 19.71012656048514 20 10.17114329289655 30 0.0 10 19.98573942620128 20 9.890840637627018 30 0.0 10 20.18467226297026 20 9.605414836018823 30 0.0 10 20.28977952518271 20 9.395353971819936 30 0.0 10 20.4313418135169 20 9.257612535365673 30 0.0 10 20.57307198941883 20 9.156417017980743 30 0.0 10 20.70036445586401 20 8.977804028153508 30 0.0 10 20.9162640853718 20 8.729958226320388 30 0.0 10 21.1961760900019 20 8.481503199172493 30 0.0 10 21.46563116184387 20 8.221521629773086 30 0.0 10 21.69968002899555 20 7.925324858414995 30 0.0 10 21.9104188543426 20 7.611524474562282 30 0.0 10 22.16537228260926 20 7.366610701077734 30 0.0 10 22.29594938824887 20 7.140531298749976 30 0.0 10 22.39800030265753 20 7.021067865993323 30 0.0 10 22.46218793199012 20 6.927699856084513 30 0.0 10 22.4570590267016 20 6.848806773540419 30 0.0 10 22.51938658716056 20 6.763186464236802 30 0.0 10 22.60188094009172 20 6.714046031038108 30 0.0 10 22.6458743428238 20 6.578084309077964 30 0.0 10 22.80312334456078 20 6.500180716635016 30 0.0 10 22.8956301830382 20 6.346660369262872 30 0.0 10 22.98455051624871 20 6.23915249095839 30 0.0 10 23.0662811687712 20 6.2089741997419 30 0.0 10 23.1236530269597 20 6.128083594088592 30 0.0 10 23.28400658212098 20 6.118127884246719 30 0.0 10 23.41589315846029 20 5.970822511071232 30 0.0 10 23.59412449627478 20 5.888931721645356 30 0.0 10 23.72457353704998 20 5.747045582978827 30 0.0 10 23.93499436281537 20 5.723650807680498 30 0.0 10 24.12641986658168 20 5.623640367269285 30 0.0 10 24.39062126375 20 5.49241685497222 30 0.0 10 24.63427807785923 20 5.324462743417993 30 0.0 10 24.92750408561444 20 5.146807738872936 30 0.0 10 25.25626491855874 20 5.073950265382627 30 0.0 10 25.56855384304161 20 4.929442264579522 30 0.0 10 25.88746775610649 20 4.845921126639449 30 0.0 10 26.16777018172026 20 4.747785585733296 30 0.0 10 26.43747287326542 20 4.640731570242738 30 0.0 10 26.72003343648055 20 4.540328639141451 30 0.0 10 27.01178421778184 20 4.350243339484637 30 0.0 10 27.35330863599364 20 4.319339421387601 30 0.0 10 27.57808226996719 20 4.137263459948647 30 0.0 10 27.80285704002231 20 4.113899456005255 30 0.0 10 27.96003836746113 20 3.996618411939024 30 0.0 10 28.13925879780165 20 3.96101424464921 30 0.0 10 28.22907357718275 20 4.020476637349778 30 0.0 10 28.30784417470375 20 4.037615881873612 30 0.0 10 28.40429100693796 20 3.978358587808043 30 0.0 10 28.56910264641397 20 3.927807036343685 30 0.0 10 28.75678774954035 20 3.859004018171034 30 0.0 10 28.93699564097952 20 3.77292654749882 30 0.0 10 29.07697898176456 20 3.704376852739684 30 0.0 10 29.22803467766175 20 3.66645675663102 30 0.0 10 29.35076895388453 20 3.566480840026421 30 0.0 10 29.55156375014558 20 3.570648360733963 30 0.0 10 29.79599131744501 20 3.492400254289375 30 0.0 10 30.03814938524673 20 3.353372581064137 30 0.0 10 30.31088481955948 20 3.209447071766647 30 0.0 10 30.58223660841078 20 3.098031812479317 30 0.0 10 30.83016801888835 20 2.992598196767588 30 0.0 10 31.01925588439583 20 2.91644917985823 30 0.0 10 31.14648626278394 20 2.796097754005261 30 0.0 10 31.31612585289107 20 2.755310406933368 30 0.0 10 31.46406567233784 20 2.645211767200613 30 0.0 10 31.56964577732898 20 2.489967903029906 30 0.0 10 31.80197430853344 20 2.473546133914864 30 0.0 10 32.03469503783301 20 2.26213253663034 30 0.0 10 32.33328120533186 20 2.106091246969707 30 0.0 10 32.59084286919649 20 1.91786160429916 30 0.0 10 32.7988475861294 20 1.764961545441488 30 0.0 10 32.95980258732372 20 1.584812885788712 30 0.0 10 33.19733553098038 20 1.503603724155827 30 0.0 10 33.35962742544634 20 1.353508214365281 30 0.0 10 33.50447930040878 20 1.270753776150571 30 0.0 10 33.5779795298687 20 1.184517620945041 30 0.0 10 33.65009279883809 20 1.2146774269908 30 0.0 10 33.72543148986479 20 1.190972162981994 30 0.0 10 33.80174934639861 20 1.136121345351455 30 0.0 10 33.96852664367757 20 1.050860005255311 30 0.0 10 34.10569277781066 20 0.9801236894452863 30 0.0 10 34.21226793148401 20 0.9251630843703821 30 0.0 11 17.82598236649818 21 11.15939756369501 31 0.0 11 17.6939014040976 21 11.15115734122599 31 0.0 11 17.61135082669776 21 11.14291721283203 31 0.0 11 17.55356553820027 21 11.18411804295196 31 0.0 11 17.39671947970134 21 11.40660273256472 31 0.0 11 17.24812851750323 21 11.61260697723945 31 0.0 11 17.23161832490166 21 11.71972921081132 31 0.0 11 17.256383421 21 11.77741039179424 31 0.0 11 17.32242399860228 21 11.78565061426326 31 0.0 11 17.42148457579972 21 11.76917026340028 31 0.0 11 17.61960592299854 21 11.67028815822237 31 0.0 11 17.85900255889731 21 11.50548474366758 31 0.0 11 18.05712390609613 21 11.42308308342771 31 0.0 11 18.37907111939475 21 11.20883861628396 31 0.0 11 18.74229362139328 21 11.01107440592814 31 0.0 11 18.92225360248718 21 10.90395217235627 31 0.0 11 19.0213143724886 21 10.79683003285946 31 0.0 11 19.06258966118852 21 10.73914875780148 31 0.0 11 19.13688514228758 21 10.73914875780148 31 0.0 11 19.19467043078509 21 10.73090862940752 31 0.0 11 19.23594571948501 21 10.65674709756162 31 0.0 11 19.36802668188556 21 10.47546333214384 31 0.0 11 19.6734637025826 21 10.19529746154815 31 0.0 11 20.04494130088193 21 9.799769228986633 31 0.0 11 20.16876716698169 21 9.620145135739818 31 0.0 11 20.3173581291798 21 9.381180189339119 31 0.0 11 20.45769399507716 21 9.241097254041278 31 0.0 11 20.540244572477 21 9.17517585058934 31 0.0 11 20.68058063117834 21 9.010372436034543 31 0.0 11 20.89521197817475 21 8.763167267164831 31 0.0 11 21.21715919147337 21 8.458280917312194 31 0.0 11 21.46481092367289 21 8.211075748442482 31 0.0 11 21.67118736717253 21 7.955630451178791 31 0.0 11 21.94360419547041 21 7.594722686589264 31 0.0 11 22.17474573506839 21 7.331037260931623 31 0.0 11 22.31508179376973 21 7.12503292218183 31 0.0 11 22.42239746726795 21 6.984949986883989 31 0.0 11 22.4471625633663 21 6.943749156764056 31 0.0 11 22.47192785226866 21 6.836626923192184 31 0.0 11 22.5049480446678 21 6.787185870603224 31 0.0 11 22.6040086218652 21 6.688303859500379 31 0.0 11 22.63702881426433 21 6.622382456048441 31 0.0 11 22.78396879576311 21 6.490539743219613 31 0.0 11 22.91604956535965 21 6.325736234589768 31 0.0 11 23.00685523906031 21 6.235094351880874 31 0.0 11 23.06464052755779 21 6.202133744229968 31 0.0 11 23.10591581625772 21 6.160932820034972 31 0.0 11 23.25450697125984 21 6.103251639052061 31 0.0 11 23.42786302955633 21 5.979649054617198 31 0.0 11 23.59296418435602 21 5.874186681366396 31 0.0 11 23.73330024305735 21 5.767064447794524 31 0.0 11 23.90665630135385 21 5.717623395205578 31 0.0 11 24.13779784095183 21 5.618741290027656 31 0.0 11 24.32766428465388 21 5.519859278924812 31 0.0 11 24.68263169035163 21 5.297374589312042 31 0.0 11 24.90551813364879 21 5.173772098952241 31 0.0 11 25.23572044324819 21 5.066649865380369 31 0.0 11 25.60719784874351 21 4.926566930082529 31 0.0 11 25.87961467704142 21 4.844165175767599 31 0.0 11 26.16854169794089 21 4.745283164664755 31 0.0 11 26.44921362253956 21 4.638160931092883 31 0.0 11 26.69521418123574 21 4.539278825914962 31 0.0 11 26.99239610563199 21 4.390955762223157 31 0.0 11 27.40514899263124 21 4.259112955319281 31 0.0 11 27.5950152435293 21 4.151990721747409 31 0.0 11 27.77662639812655 21 4.102549763233511 31 0.0 11 27.99951303422776 21 3.997087295907661 31 0.0 11 28.14810399642587 21 3.980606945044669 31 0.0 11 28.24716476642729 21 4.021807869239665 31 0.0 11 28.3049500549248 21 4.03004799763363 31 0.0 11 28.36273553622629 21 4.005327518376674 31 0.0 11 28.55260178712433 21 3.931165986530771 31 0.0 11 28.7919984230231 21 3.840524103821877 31 0.0 11 28.91582428912286 21 3.782842828763904 31 0.0 11 29.10569054002093 21 3.700441168524037 31 0.0 11 29.22126130981991 21 3.659240244329055 31 0.0 11 29.33683207961888 21 3.593318934952165 31 0.0 11 29.53495342681773 21 3.560358233226196 31 0.0 11 29.76609496641569 21 3.494436829774258 31 0.0 11 30.05502198731517 21 3.346113766082453 31 0.0 11 30.29441862321394 21 3.22251118164759 31 0.0 11 30.59820447040761 21 3.090668468818776 31 0.0 11 30.85411129890795 21 2.983546235246905 31 0.0 11 31.0357224535052 21 2.89290435253801 31 0.0 11 31.13478303070261 21 2.818742726617045 31 0.0 11 31.30813928180311 21 2.744581194771143 31 0.0 11 31.464985340302 21 2.629218832805307 31 0.0 11 31.58055611010098 21 2.513856376764422 31 0.0 11 31.7456572649007 21 2.464415418250524 31 0.0 11 32.00981899689782 21 2.299611909620665 31 0.0 11 32.37304149889633 21 2.070546951935014 31 0.0 11 32.59592813499753 21 1.913983665774182 31 0.0 11 32.79404948219635 21 1.757420473688412 31 0.0 11 32.98391573309442 21 1.592616965058567 31 0.0 11 33.16552688769167 21 1.501975082349673 31 0.0 11 33.39666842728965 21 1.337171667794891 31 0.0 11 33.52049429338942 21 1.246529785085996 31 0.0 11 33.5947897744885 21 1.197088732497036 31 0.0 11 33.63606506318842 21 1.205328954966063 31 0.0 11 33.71861564058827 21 1.188848604103085 31 0.0 11 33.80116621798811 21 1.139407551514125 31 0.0 11 33.89197189168874 21 1.089966498925164 31 0.0 11 34.21226793148401 21 0.9251630843703821 31 0.0 0 LWPOLYLINE 5 2D3 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 24.94169433481448 20 5.06993656567721 10 24.91339186362665 20 5.076999438796974 10 24.8921651066378 20 5.055810913512729 0 SPLINE 5 2D4 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 14 73 10 74 8 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.245598308250181 40 0.4360915533006939 40 0.777723647486913 40 1.119597551115747 40 1.347371911458974 40 1.522940974503201 40 1.668560869420828 40 1.668560869420828 40 1.668560869420828 40 1.668560869420828 10 25.47944032336298 20 4.963295149726107 30 0.0 10 25.39928455385886 20 4.93666678796535 30 0.0 10 25.25695762059083 20 4.889384688488211 30 0.0 10 25.00255153347343 20 4.976248909630323 30 0.0 10 24.75398001876921 20 5.124196034999291 30 0.0 10 24.47668269744595 20 5.249222922933876 30 0.0 10 24.24034125058367 20 5.333514118510651 30 0.0 10 24.11040972028015 20 5.478384111950326 30 0.0 10 24.09330219638936 20 5.585638780562183 30 0.0 10 24.08554602741304 20 5.63426565015257 30 0.0 11 25.47944032336298 21 4.963295149726107 31 0.0 11 25.23886970387454 21 4.913855226037853 31 0.0 11 25.05490402676173 21 4.963295149726107 31 0.0 11 24.75065294350272 21 5.118677793910663 31 0.0 11 24.43932633884875 21 5.259934691855676 31 0.0 11 24.23413390474709 21 5.358814539232184 31 0.0 11 24.12092421279982 21 5.493008658132495 31 0.0 11 24.08554602741304 21 5.63426565015257 31 0.0 0 LWPOLYLINE 5 2D5 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 25.73416198564132 20 5.571398769754637 10 25.73416198564132 20 5.543147371350613 10 25.77661569242303 20 5.543147371350613 10 25.79784244941189 20 5.564335896634858 0 LWPOLYLINE 5 2D6 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 25.38745738840455 20 5.797409862911692 10 25.3662306314157 20 5.755032812343202 10 25.40868433819744 20 5.705592794579871 10 25.44406233078021 20 5.740907066103659 0 LWPOLYLINE 5 2D7 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 25.35915491721675 20 5.747969939223423 10 25.30255016764513 20 5.755032812343202 10 25.26717217506234 20 5.684404269295626 10 25.30255016764513 20 5.634964345607372 0 LWPOLYLINE 5 2D8 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 25.44406233078021 20 5.733844192983895 10 25.45821356637409 20 5.684404269295626 10 25.49359155895689 20 5.67027861713116 10 25.5360450729346 20 5.677341490250924 0 LWPOLYLINE 5 2D9 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 25.23179418247957 20 5.578461548799339 10 25.1964161898968 20 5.543147371350613 10 25.24594541807349 20 5.500770226707061 0 LWPOLYLINE 5 2DA 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 25.27424769645731 20 5.656152870891617 10 25.23179418247957 20 5.642027218727136 10 25.23179418247957 20 5.592587295038882 10 25.26717217506234 20 5.585524421919103 0 LWPOLYLINE 5 2DB 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 25.18934047569786 20 5.514895972946604 10 25.13981124752118 20 5.500770226707061 10 25.13273572612624 20 5.437204650854326 10 25.18934047569786 20 5.394827600285836 0 LWPOLYLINE 5 2DC 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 24.97707232739725 20 5.126439362485228 10 24.94169433481448 20 5.098187964081219 10 24.97707232739725 20 5.04874804039295 0 LWPOLYLINE 5 2DD 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 25.65633047908082 20 5.620838693442891 10 25.64217924348691 20 5.578461548799339 10 25.69878399305852 20 5.550210244470392 10 25.71293522865244 20 5.578461548799339 0 LWPOLYLINE 5 2DE 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 25.56434754412242 20 5.677341490250924 10 25.56434754412242 20 5.613775820323127 10 25.60680125090414 20 5.606712947203362 10 25.62802800789299 20 5.620838693442891 0 LWPOLYLINE 5 2DF 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 25.40868433819744 20 5.882164058123734 10 25.35915491721675 20 5.875101185003956 10 25.32377692463398 20 5.783284116672149 10 25.3662306314157 20 5.755032812343202 0 LWPOLYLINE 5 2E0 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 34.98456721410328 20 0.1580359336370893 10 35.3311813631095 20 -0.000000011183074 10 35.77972823811268 20 0.983780568263894 10 34.49850337698907 20 1.567944780934634 10 34.3261867565636 20 1.200069312555569 0 LWPOLYLINE 5 2E1 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 34.21226793148401 20 0.9251630843703821 10 34.04995650198587 20 0.5841642014876634 10 34.65274987018193 20 0.3093253937029186 0 SPLINE 5 2E2 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 20 73 16 74 14 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.1236829439797024 40 0.2649833733364451 40 0.5372462097368187 40 1.061787617845153 40 1.132757120110705 40 1.324084858370391 40 1.481516268937723 40 1.619668903307549 40 1.711930021789655 40 1.852265887687011 40 1.964529402761629 40 2.052192228405175 40 2.138235058720055 40 2.138235058720055 40 2.138235058720055 40 2.138235058720055 10 22.14998063897005 20 7.34507166028996 30 0.0 10 22.12922345665821 20 7.3058327169656 30 0.0 10 22.08475242441261 20 7.221765607680486 30 0.0 10 21.8826915489542 20 7.226602529544316 30 0.0 10 21.59597108291265 20 7.318328866365028 30 0.0 10 21.31312013296243 20 7.421546948073721 30 0.0 10 21.10282828161992 20 7.573683567667631 30 0.0 10 20.98219567428384 20 7.669350755995923 30 0.0 10 20.98176696140145 20 7.837958369495973 30 0.0 10 21.00116546312015 20 7.978867517435208 30 0.0 10 21.12637693099377 20 8.034633407220384 30 0.0 10 21.24004281446012 20 8.008326295924117 30 0.0 10 21.35605080156401 20 8.038761387212606 30 0.0 10 21.4220527494995 20 8.114716427058569 30 0.0 10 21.43408554119957 20 8.172010155721032 30 0.0 10 21.44004582757454 20 8.200389856693988 30 0.0 11 22.14998063897005 21 7.34507166028996 31 0.0 11 22.07568515787099 21 7.246189649187101 31 0.0 11 21.93534909916962 21 7.229709298324124 31 0.0 11 21.67118736717253 21 7.295630701776062 31 0.0 11 21.19239409537502 21 7.509875168919805 31 0.0 11 21.1346086140735 21 7.551075999039738 31 0.0 11 21.00252784447695 21 7.689499168091572 31 0.0 11 20.98601765187538 21 7.846062454252404 31 0.0 11 21.0272929405753 21 7.977905167081217 31 0.0 11 21.10984351797515 21 8.019106091276213 31 0.0 11 21.2501793838725 21 8.019106091276213 31 0.0 11 21.3574952501747 21 8.05206669892712 31 0.0 11 21.41528053867219 21 8.117988102379058 31 0.0 11 21.44004582757454 21 8.200389856693988 31 0.0 0 LWPOLYLINE 5 2E3 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.9454676421702 20 12.00389236087107 10 16.99815861378226 20 12.03019032788437 10 17.05084958539433 20 11.98636041067892 10 17.04206778529709 20 11.94253041002339 0 LWPOLYLINE 5 2E4 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.85764947016906 20 12.10031821210307 10 16.93668584207293 20 12.08278626191092 10 16.97181321349046 20 12.03019032788437 10 16.93668584207293 20 11.99512634404995 0 LWPOLYLINE 5 2E5 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 3 70 0 43 0.0 10 16.84886767007179 20 11.97759439385779 10 16.7961766984597 20 11.99512634404995 10 16.76104932704214 20 12.05648829489764 0 LWPOLYLINE 5 2E6 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 5 70 0 43 0.0 10 17.71826827409987 20 12.03982355825021 10 17.70948630297411 20 11.96969559058139 10 17.7797410458092 20 11.95216364038924 10 17.806086446101 20 11.99599355759467 10 17.79730464600373 20 12.03105754142907 0 LWPOLYLINE 5 2E7 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 18.34339601583946 20 8.275853575490941 10 18.24533069291859 20 8.254877471687365 10 18.21030726690199 20 8.296829679294518 10 18.24533069291859 20 8.352766050179099 0 LWPOLYLINE 5 2E8 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 18.38254351953435 20 7.820024359734915 10 18.33895034107993 20 7.863539059978236 10 18.26048238849719 20 7.846133198695923 0 LWPOLYLINE 5 2E9 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 18.10354667613572 20 7.68077756355143 10 18.2081704201087 20 7.637262863308095 10 18.32151295401578 20 7.689480447155048 10 18.30407556695161 20 7.750400914605634 10 18.21688921004278 20 7.79391561484897 0 LWPOLYLINE 5 2EA 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 18.33895034107993 20 7.410986666637967 10 18.22560780717287 20 7.376175038148389 10 18.18201462871846 20 7.410986666637967 10 18.14714004739411 20 7.498015973049561 10 18.2081704201087 20 7.532827695614187 0 SPLINE 5 2EB 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 42 73 38 74 36 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.2498353314150203 40 0.4494929641531171 40 0.520462466418646 40 0.6223986263874123 40 0.7663488357492245 40 0.9791326354845068 40 1.166098070463862 40 1.406342853119059 40 1.540593890733819 40 1.672674660330361 40 1.946211020129025 40 2.182581110678782 40 2.368047965887899 40 2.592301303206155 40 2.776879235611041 40 2.957871882078877 40 3.15652176245396 40 3.376774153038468 40 3.683984464175648 40 3.825284893532363 40 3.982844882241949 40 4.241603359110611 40 4.604546606569394 40 4.786832738554939 40 4.853268915784646 40 4.924196900033298 40 4.983691787172942 40 5.058311445267685 40 5.306067127050592 40 5.619628558786746 40 5.726779406966456 40 5.841308066999617 40 5.977222962571694 40 6.320258450815618 40 6.453130874664136 40 6.453130874664136 40 6.453130874664136 40 6.453130874664136 10 20.8209164970757 20 8.82664290726224 30 0.0 10 20.73793365101016 20 8.83191248450524 30 0.0 10 20.58863448967618 20 8.841393280841668 30 0.0 10 20.42062400428798 20 8.916657306852393 30 0.0 10 20.29039501871472 20 8.841684262549438 30 0.0 10 20.35518716506807 20 8.725790207841797 30 0.0 10 20.40043259209832 20 8.59149617376406 30 0.0 10 20.51271765429255 20 8.439312240859049 30 0.0 10 20.67701199810032 20 8.301249816014255 30 0.0 10 20.7129071519777 20 8.087689177349741 30 0.0 10 20.58963334856543 20 7.937517768942779 30 0.0 10 20.39774473566734 20 7.973332072444277 30 0.0 10 20.19069460462864 20 7.978257280431996 30 0.0 10 19.95843747501136 20 8.019621871711635 30 0.0 10 19.76432389440922 20 8.121160560018887 30 0.0 10 19.5613309363359 20 8.118591236934111 30 0.0 10 19.3687788399651 20 8.153483575474554 30 0.0 10 19.18711756184304 20 8.220118875779172 30 0.0 10 19.06434754412833 20 8.397455884793625 30 0.0 10 18.80449000433757 20 8.412648295366906 30 0.0 10 18.59491823979194 20 8.454311996053302 30 0.0 10 18.38004789114555 20 8.442953165947848 30 0.0 10 18.25011057905821 20 8.606260510762574 30 0.0 10 18.23739672280069 20 8.871263551068754 30 0.0 10 18.27088076078813 20 9.137579760826568 30 0.0 10 18.25444118231407 20 9.340264294440057 30 0.0 10 18.25127316752612 20 9.448330875715702 30 0.0 10 18.21269300524786 20 9.506666845145076 30 0.0 10 18.13854865607759 20 9.530735576524927 30 0.0 10 18.15261148034285 20 9.679052074234832 30 0.0 10 18.17760886068731 20 9.869625494427213 30 0.0 10 18.23002601287485 20 10.10610283419925 30 0.0 10 18.15655947317084 20 10.2721431531339 30 0.0 10 18.08649654292953 20 10.36908670737092 30 0.0 10 18.03890069556828 20 10.56874997848961 30 0.0 10 18.12017061623437 20 10.76640883221064 30 0.0 10 18.13541756853918 20 10.92419071764851 30 0.0 10 18.13967448349598 20 10.9682430669052 30 0.0 11 20.8209164970757 21 8.82664290726224 31 0.0 11 20.57326495768015 21 8.859603608988209 31 0.0 11 20.3751436104813 21 8.884324088245165 31 0.0 11 20.3173581291798 21 8.843123258125231 31 0.0 11 20.34212322527815 21 8.74424115294731 31 0.0 11 20.39990870657967 21 8.612398440118496 31 0.0 11 20.52373457267944 21 8.439354803094687 31 0.0 11 20.6475604387792 21 8.299271867796832 31 0.0 11 20.67232553487755 21 8.060306921396147 31 0.0 11 20.58151986117692 21 7.96142481621824 31 0.0 11 20.44943909158039 21 7.96142481621824 31 0.0 11 20.17702207047847 21 7.986145389550244 31 0.0 11 19.94588053088048 21 8.035586348064143 31 0.0 11 19.77252447258402 21 8.101507751516081 31 0.0 11 19.54963783648281 21 8.126228324848085 31 0.0 11 19.36802668188556 21 8.159188932498992 31 0.0 11 19.20292552708588 21 8.233350558419957 31 0.0 11 19.05433456488774 21 8.365193271248784 31 0.0 11 18.83970302508734 21 8.414634323837731 31 0.0 11 18.5342660043903 21 8.447594931488652 31 0.0 11 18.39392994568896 21 8.464075282351629 31 0.0 11 18.28661427219074 21 8.579437738392527 31 0.0 11 18.24533898349082 21 8.834883035656204 31 0.0 11 18.26184917609239 21 9.197450566491752 31 0.0 11 18.25359407979161 21 9.379549680436099 31 0.0 11 18.24533898349082 21 9.445470989812974 31 0.0 11 18.2040636947909 21 9.503152264870962 31 0.0 11 18.1545335025942 21 9.536112872521869 31 0.0 11 18.14627840629341 21 9.610274498442834 31 0.0 11 18.17929859869255 21 9.855819901066539 31 0.0 11 18.19580859849011 21 10.16894637931312 31 0.0 11 18.1545335025942 21 10.26782848449103 31 0.0 11 18.09674802129271 21 10.36671049559389 31 0.0 11 18.06372782889357 21 10.49855330249776 31 0.0 11 18.12316448369841 21 10.83640035407637 31 0.0 11 18.13967448349598 21 10.9682430669052 31 0.0 0 LWPOLYLINE 5 2EC 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 18.09823261213529 20 9.024001748193697 10 18.09823261213529 20 9.114898198009186 10 18.11224194398113 20 9.226770845703299 10 18.16827927136446 20 9.296691191715211 10 18.18929317273122 20 9.296691191715211 0 LWPOLYLINE 5 2ED 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.82455002554107 20 7.715589286116056 10 17.75480067008842 20 7.767806775887962 10 17.83326862267117 20 7.820024359734915 10 17.89429918818973 20 7.79391561484897 0 LWPOLYLINE 5 2EE 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.63273973185528 20 7.689480447155048 10 17.63273973185528 20 7.741698031002002 10 17.71992608876408 20 7.837430221017228 10 17.78095665428267 20 7.846133198695923 0 LWPOLYLINE 5 2EF 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.37118008271679 20 7.210819308928833 10 17.32758690426237 20 7.280442754058114 10 17.43221064823538 20 7.358769176866061 10 17.49324121375394 20 7.350066199187381 0 LWPOLYLINE 5 2F0 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.43221064823538 20 7.384877921752021 10 17.43221064823538 20 7.42839252792028 10 17.50195981088401 20 7.541530673292882 10 17.54555318214244 20 7.524124812010555 0 LWPOLYLINE 5 2F1 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 17.04753233808941 20 7.808795372677337 10 17.02651843672265 20 7.724890957463031 10 16.80937369671016 20 7.522121859953429 0 LWPOLYLINE 5 2F2 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 17.81583123560699 20 7.619857002025781 10 17.72864487869819 20 7.663371702269103 10 17.77223805715257 20 7.741698031002002 0 LWPOLYLINE 5 2F3 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.80711263847692 20 7.550233556896515 10 17.75480067008842 20 7.576342395857508 10 17.67633291030966 20 7.532827695614187 10 17.67633291030966 20 7.489313089445928 0 LWPOLYLINE 5 2F4 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.54555318214244 20 7.541530673292882 10 17.54555318214244 20 7.602451140743468 10 17.6153023447911 20 7.689480447155048 10 17.66761431317959 20 7.68077756355143 0 LWPOLYLINE 5 2F5 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 17.64145832898535 20 7.498015973049561 10 17.59786495772692 20 7.498015973049561 10 17.49324121375394 20 7.402283783034334 0 LWPOLYLINE 5 2F6 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 18.09482807900562 20 7.506718950728242 10 18.06867209481137 20 7.550233556896515 10 17.95532975370832 20 7.550233556896515 10 17.92917376951407 20 7.46320425048492 0 LWPOLYLINE 5 2F7 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 17.48182181811441 20 9.079938025003229 10 17.47481705578948 20 9.0170097135925 10 17.41877972840612 20 8.912129100499569 10 17.36974716334768 20 8.800256452805456 10 17.37675173286859 20 8.730336106793544 0 LWPOLYLINE 5 2F8 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.38375649519352 20 8.611471424498233 10 17.28569117227266 20 8.541551078486321 10 17.23665841441024 20 8.506590905480365 10 17.23665841441024 20 8.450654534595784 0 LWPOLYLINE 5 2F9 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 17.22965365208531 20 8.359758084780295 10 17.22965365208531 20 8.3038217138957 10 17.22965365208531 20 8.261869506288562 0 LWPOLYLINE 5 2FA 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 17.2226490825644 20 8.163981021871876 10 17.21564432023947 20 8.115036685588478 10 17.09656509595186 20 7.975195899489591 10 17.08255576410602 20 7.891291484275299 10 17.06154166993525 20 7.856331311269343 0 LWPOLYLINE 5 2FB 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 18.06320918611868 20 8.499598870879168 10 18.04219528475192 20 8.513582940081562 10 18.05620461659776 20 8.646431597504189 10 18.1052371816562 20 8.660415760781631 0 LWPOLYLINE 5 2FC 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.98148554509856 20 7.959271249993449 10 17.89429918818973 20 7.959271249993449 10 17.85070581693133 20 8.037597578726362 10 17.90301778531983 20 8.046300556405043 0 LWPOLYLINE 5 2FD 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.86707854027696 20 8.059100408778945 10 17.86007377795203 20 8.136012789392054 10 17.9231158676603 20 8.247885437086168 10 17.98615795736859 20 8.247885437086168 0 LWPOLYLINE 5 2FE 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 17.73736347582826 20 7.872241943581869 10 17.73736347582826 20 7.941865388711136 10 17.82455002554107 20 8.020191811519097 0 LWPOLYLINE 5 2FF 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 6 70 0 43 0.0 10 18.08422328028945 20 8.422686396191011 10 18.14726517719373 20 8.43667046539339 10 18.15426993951862 20 8.492606742202923 10 18.22431659874783 20 8.506590905480365 10 18.22431659874783 20 8.422686396191011 10 18.14726517719373 20 8.422686396191011 0 LWPOLYLINE 5 300 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 18.07721851796452 20 8.219917298681409 10 18.1052371816562 20 8.177965091074256 10 18.14726517719373 20 8.240893402484985 10 18.11924651350205 20 8.268861540889744 0 LWPOLYLINE 5 301 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 17.95113453135198 20 8.129020754790857 10 18.02818595290608 20 8.240893402484985 10 18.00717185873534 20 8.289837644693321 10 18.08422328028945 20 8.352766050179099 10 18.09122784981036 20 8.422686396191011 0 LWPOLYLINE 5 302 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 18.035190522427 20 8.401710292387434 10 18.00717185873534 20 8.415694361589828 10 18.035190522427 20 8.471630638399346 10 18.07721851796452 20 8.492606742202923 0 LWPOLYLINE 5 303 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.95113453135198 20 8.254877471687365 10 17.93012062998522 20 8.296829679294518 10 17.98615795736859 20 8.394718257786252 10 18.06320918611868 20 8.394718257786252 0 LWPOLYLINE 5 304 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 18.00016728921443 20 8.108044650987295 10 18.1052371816562 20 8.108044650987295 10 18.08422328028945 20 8.191949160276649 0 LWPOLYLINE 5 305 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 18.17329583878438 20 7.828727337413596 10 18.13842125746004 20 7.907053666146495 10 18.06867209481137 20 7.907053666146495 0 LWPOLYLINE 5 306 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 18.27791977556137 20 7.820024359734915 10 18.23432640430294 20 7.88094492126055 10 18.19073322584853 20 7.872241943581869 0 LWPOLYLINE 5 307 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 18.06867209481137 20 7.863539059978236 10 18.0599534976813 20 7.924459527428822 10 17.95532975370832 20 7.95056836638983 0 LWPOLYLINE 5 308 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 18.07721851796452 20 8.653423632105386 10 18.0702139484436 20 8.702367968388784 10 18.09122784981036 20 8.814240522007835 10 18.13325584534789 20 8.856192823690051 0 LWPOLYLINE 5 309 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 18.1052371816562 20 8.849200789088854 10 18.07721851796452 20 8.863184858291234 10 18.08422328028945 20 9.00302564439012 10 18.17528384088538 20 9.024001748193697 10 18.17528384088538 20 8.954081308106722 0 LWPOLYLINE 5 30A 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 3 70 0 43 0.0 10 18.00450908742848 20 10.69427615182952 10 18.02059397526122 20 10.61934871797541 10 18.05812532319478 20 10.60329283333166 0 ELLIPSE 5 30B 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbEllipse 10 17.72811036534759 20 10.08441373421198 30 0.0 11 -0.3367514281810315 21 -0.2289678252872065 31 0.0 210 0.0 220 0.0 230 1.0 40 0.2897996440895753 41 0.0 42 6.283185307179586 0 LWPOLYLINE 5 30C 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 18.13325584534789 20 9.408563839409325 10 18.09122784981036 20 9.415555874010522 10 18.09823261213529 20 9.583364798514168 10 18.07721851796452 20 9.625317006121321 10 18.14026060767281 20 9.681253377005901 0 LWPOLYLINE 5 30D 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 18.11224194398113 20 9.247746949506876 10 18.09122784981036 20 9.296691191715211 10 18.1052371816562 20 9.401571804808142 10 18.14026060767281 20 9.415555874010522 0 LWPOLYLINE 5 30E 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.07719498568613 20 11.77597659112258 10 17.00694041387953 20 11.77597659112258 10 16.98059501358773 20 11.81980659177813 10 17.0157222139768 20 11.86363650898356 0 LWPOLYLINE 5 30F 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 3 70 0 43 0.0 10 16.8927766705581 20 11.92499845983124 10 16.84886767007179 20 11.94253041002339 10 16.85764947016906 20 11.97759439385779 0 LWPOLYLINE 5 310 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.98059501358773 20 11.84610455879141 10 16.92790404197566 20 11.85487049216241 10 16.91034044178113 20 11.88993447599683 10 16.93668584207293 20 11.93376447665237 0 LWPOLYLINE 5 311 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 3 70 0 43 0.0 10 17.18257692891029 20 11.88116845917571 10 17.25283150071689 20 11.84610455879141 10 17.24404970061962 20 11.81104057495699 0 LWPOLYLINE 5 312 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.0596313854916 20 11.92499845983124 10 17.07719498568613 20 11.97759439385779 10 17.17379512881302 20 11.88993447599683 10 17.16501332871575 20 11.84610455879141 0 LWPOLYLINE 5 313 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.19135872900756 20 11.68831675671172 10 17.08597695681189 20 11.714614723725 10 17.0596313854916 20 11.7496786241093 10 17.09475875690915 20 11.78474260794371 0 LWPOLYLINE 5 314 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 2 70 0 43 0.0 10 17.83829863683306 20 10.92441035930635 10 17.88119155703469 20 10.87624278882522 0 LWPOLYLINE 5 315 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.7793206577702 20 11.0100417718897 10 17.7793206577702 20 10.96722610732308 10 17.81149043343566 20 10.91905845339184 10 17.85974509693386 20 10.95117022267933 0 LWPOLYLINE 5 316 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.69353464633843 20 11.1224328809458 10 17.68281150180226 20 11.0849692057438 10 17.74178930983663 20 11.0100417718897 10 17.79004397333486 20 11.01539367780421 0 LWPOLYLINE 5 317 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 3 70 0 43 0.0 10 17.95625442393029 20 10.77990748096276 10 17.97233931176302 20 10.70498004710864 10 18.03131711979739 20 10.71568394238778 0 LWPOLYLINE 5 318 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.90263818816399 20 10.89229867346897 10 17.89727644486743 20 10.84413101953774 10 17.91336133270016 20 10.79596336560651 10 17.97233931176302 20 10.79061137624188 0 LWPOLYLINE 5 319 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 19.93795069493705 20 7.524985975090316 10 19.99898126045562 20 7.298709778420175 10 19.83332695096405 20 7.263898055855534 10 19.8071709667698 20 7.429253691000027 0 LWPOLYLINE 5 31A 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 19.97282527626137 20 7.490174252525676 10 19.87692012941846 20 7.655529887670169 10 20.07744902023435 20 7.890508967943929 10 20.16463556994719 20 7.794776777928717 0 LWPOLYLINE 5 31B 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 1 43 0.0 10 19.85948274235428 20 7.77737091664639 10 19.7635775955114 20 7.77737091664639 10 19.71998441705699 20 7.838291384096976 10 19.73742180412114 20 7.881806084340297 10 19.85948274235428 20 7.864400223057984 0 LWPOLYLINE 5 31C 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 19.33636382968535 20 7.66423286534885 10 19.14455353599956 20 7.69034161023481 10 19.19686550438805 20 7.77737091664639 10 19.26661466703669 20 7.81218263921103 10 19.37995700813976 20 7.751262171760444 0 LWPOLYLINE 5 31D 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 6 70 1 43 0.0 10 19.3625198138796 20 7.794776777928717 10 19.41483178226809 20 7.838291384096976 10 19.48458094491675 20 7.846994361775671 10 19.510736929111 20 7.803479755607398 10 19.58048609175966 20 7.725153332799436 10 19.510736929111 20 7.646827004066537 0 LWPOLYLINE 5 31E 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 18.55691642615599 20 7.759103892284329 10 18.50460465057151 20 7.811321476131283 10 18.37382492240428 20 7.811321476131283 0 LWPOLYLINE 5 31F 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 18.80975728536037 20 7.637262863308095 10 18.8010386882303 20 7.689480447155048 10 18.70513354138739 20 7.741698031002002 10 18.6528215729989 20 7.724292169719689 0 LWPOLYLINE 5 320 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 18.67897755719315 20 7.741698031002002 10 18.61794699167458 20 7.785212637170275 10 18.54819782902592 20 7.759103892284329 0 LWPOLYLINE 5 321 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 18.53947923189582 20 7.524124812010555 10 18.49588586063743 20 7.498015973049561 10 18.53947923189582 20 7.402283783034334 10 18.59179100748031 20 7.410986666637967 0 LWPOLYLINE 5 322 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 18.59179100748031 20 7.532827695614187 10 18.53947923189582 20 7.524124812010555 10 18.51332324770157 20 7.576342395857508 0 LWPOLYLINE 5 323 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 18.36510613247017 20 7.42839252792028 10 18.37382492240428 20 7.498015973049561 10 18.39126211666442 20 7.541530673292882 0 LWPOLYLINE 5 324 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 18.49588586063743 20 7.42839252792028 10 18.45229268218301 20 7.419689644316648 10 18.45229268218301 20 7.367472060469694 0 LWPOLYLINE 5 325 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 18.42613669798876 20 7.79391561484897 10 18.50460465057151 20 7.759103892284329 10 18.50460465057151 20 7.645965840986789 10 18.42613669798876 20 7.645965840986789 0 LWPOLYLINE 5 326 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 18.76616410690596 20 7.567639418178828 10 18.72257092845157 20 7.602451140743468 10 18.73128952558164 20 7.645965840986789 0 LWPOLYLINE 5 327 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 18.73128952558164 20 7.358769176866061 10 18.71385213851746 20 7.454501366881288 10 18.86206925374887 20 7.402283783034334 10 18.87078785087896 20 7.367472060469694 0 LWPOLYLINE 5 328 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 18.87950644800904 20 7.550233556896515 10 18.87078785087896 20 7.593748257139836 10 18.84463186668472 20 7.628559979704476 10 18.76616410690596 20 7.619857002025781 0 LWPOLYLINE 5 329 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 18.94925580346171 20 7.419689644316648 10 18.94053701352763 20 7.515421834331874 10 18.82719467242455 20 7.550233556896515 0 LWPOLYLINE 5 32A 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 19.01028617617626 20 7.297848615340427 10 18.98413038478602 20 7.402283783034334 10 18.88822523794311 20 7.402283783034334 0 LWPOLYLINE 5 32B 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 19.510736929111 20 7.559797697654943 10 19.44098757365836 20 7.568500581258575 10 19.41483178226809 20 7.524985975090316 10 19.43226897652826 20 7.455362529961035 10 19.50201813917692 20 7.446659552282355 0 LWPOLYLINE 5 32C 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 6 70 0 43 0.0 10 19.3625198138796 20 7.394442062510449 10 19.38867579807384 20 7.464065413564668 10 19.3102078454911 20 7.498877136129308 10 19.23174008571237 20 7.490174252525676 10 19.21430269864819 20 7.446659552282355 10 19.23174008571237 20 7.403144946114082 0 LWPOLYLINE 5 32D 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 1 43 0.0 10 19.86820153228839 20 7.446659552282355 10 19.70254722279682 20 7.464065413564668 10 19.71998441705699 20 7.751262171760444 10 19.87692012941846 20 7.733856310478131 0 LWPOLYLINE 5 32E 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 6 70 0 43 0.0 10 18.77768530306045 20 8.359758084780295 10 18.80570396675213 20 8.296829679294518 10 18.74266206984785 20 8.212925264080212 10 18.6516013164479 20 8.184957125675452 10 18.60256875138946 20 8.282845610092124 10 18.75667140169369 20 8.359758084780295 0 LWPOLYLINE 5 32F 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 18.59556398906454 20 8.282845610092124 10 18.52551732983536 20 8.282845610092124 10 18.5045032356646 20 8.331789946375522 0 LWPOLYLINE 5 330 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 18.33639125351453 20 8.450654534595784 10 18.36440991720621 20 8.345774015577916 10 18.42745200691448 20 8.366750119381478 10 18.44846590828123 20 8.422686396191011 10 18.34339601583946 20 8.464638603798164 0 LWPOLYLINE 5 331 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 18.44146133876032 20 8.359758084780295 10 18.48348933429784 20 8.324797817699277 10 18.56754532537286 20 8.359758084780295 10 18.5815546572187 20 8.422686396191011 10 18.469480002452 20 8.422686396191011 0 LWPOLYLINE 5 332 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 6 70 0 43 0.0 10 18.49049390381876 20 8.31780578309808 10 18.51150799798952 20 8.282845610092124 10 18.45547067060616 20 8.226909333282605 10 18.38542401137698 20 8.226909333282605 10 18.3574053476853 20 8.261869506288562 10 18.37841924905205 20 8.310813748496897 0 LWPOLYLINE 5 333 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 19.07188146462704 20 8.247885437086168 10 19.0158441372437 20 8.198941194877832 10 18.96681137938125 20 8.240893402484985 10 18.95980680986033 20 8.352766050179099 10 19.00883937491878 20 8.352766050179099 0 LWPOLYLINE 5 334 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 18.93879271568957 20 8.359758084780295 10 18.93178814616865 20 8.310813748496897 10 18.81971329859794 20 8.331789946375522 10 18.77068073353953 20 8.394718257786252 0 LWPOLYLINE 5 335 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 18.95980680986033 20 8.275853575490941 10 18.903769482477 20 8.240893402484985 10 18.82671806092287 20 8.240893402484985 10 18.80570396675213 20 8.282845610092124 10 18.82671806092287 20 8.310813748496897 0 LWPOLYLINE 5 336 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 1 43 0.0 10 19.57176730182558 20 7.994944135637837 10 19.52817412337117 20 8.038458835881172 10 19.58920468888973 20 8.090676419728126 10 19.65023525440832 20 8.064567580767118 10 19.61536067308398 20 7.977538274355524 0 LWPOLYLINE 5 337 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 1 43 0.0 10 19.510736929111 20 8.029755858202477 10 19.50201813917692 20 7.968835390751891 10 19.42355037939819 20 7.951429529469578 10 19.37995700813976 20 7.977538274355524 10 19.44098757365836 20 8.04716171948479 0 LWPOLYLINE 5 338 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 20.42619502628164 20 7.803479755607398 10 20.45235101047589 20 7.768668033042757 10 20.50466297886438 20 7.794776777928717 10 20.52210017312455 20 7.820885522814663 10 20.5482561573188 20 7.820885522814663 0 LWPOLYLINE 5 339 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 20.33028987943873 20 7.855697245379303 10 20.33900866937284 20 7.794776777928717 10 20.38260184782723 20 7.786073894325085 10 20.40875783202147 20 7.829588500493343 0 LWPOLYLINE 5 33A 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 2 70 0 43 0.0 10 19.97282527626137 20 7.490174252525676 10 20.20822874840157 20 7.716450449195804 0 LWPOLYLINE 5 33B 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 20.21694753833569 20 7.899211945622624 10 20.21694753833569 20 7.829588500493343 10 20.2605407167901 20 7.820885522814663 10 20.30413389524448 20 7.873103106661616 0 LWPOLYLINE 5 33C 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 3 70 0 43 0.0 10 20.12104239149278 20 7.968835390751891 10 20.15591697281709 20 7.899211945622624 10 20.21694753833569 20 7.907914829226257 0 LWPOLYLINE 5 33D 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 20.65287990129178 20 7.907914829226257 10 20.68775448261612 20 7.873103106661616 10 20.72262925674445 20 7.942726551790883 10 20.6964732725502 20 8.029755858202477 0 LWPOLYLINE 5 33E 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 20.57441214151304 20 7.855697245379303 10 20.57441214151304 20 7.820885522814663 10 20.65287990129178 20 7.846994361775671 10 20.65287990129178 20 7.907914829226257 0 SPLINE 5 33F 330 2C0 100 AcDbEntity 8 Main DETAIL 48 2.0 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 12 73 8 74 6 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.2399846466062238 40 0.3918354945699321 40 0.5050347245751443 40 0.7673105208348581 40 0.8826116682822481 40 0.8826116682822481 40 0.8826116682822481 40 0.8826116682822481 10 16.20779061903118 20 14.67987118765938 30 0.0 10 16.14681315861371 20 14.73249798957091 30 0.0 10 16.0472520671098 20 14.81842452381488 30 0.0 10 15.88738548162983 20 14.88087789955065 30 0.0 10 15.69890504232684 20 14.86110406090044 30 0.0 10 15.62903273652374 20 14.68397457875083 30 0.0 10 15.55730179314758 20 14.58289417221714 30 0.0 10 15.53539722451171 20 14.55202712100539 30 0.0 11 16.20779061903118 21 14.67987118765938 31 0.0 11 16.0156782450297 21 14.82369561660742 31 0.0 11 15.87159392177144 21 14.87163712074014 31 0.0 11 15.75952835601822 21 14.85565667499598 31 0.0 11 15.59943473952171 21 14.64791012927082 31 0.0 11 15.53539722451171 21 14.55202712100539 31 0.0 0 SPLINE 5 340 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 36 73 32 74 30 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.115063356927915 40 0.2239748214134764 40 0.4194907880466396 40 0.5820167361968587 40 0.7445425850185682 40 0.9622944089155019 40 1.012546996298175 40 1.180913643431068 40 1.250608111914601 40 1.349281031395357 40 1.517319119011036 40 1.592450235725754 40 1.690952366838797 40 1.848692591433806 40 1.947280310108292 40 1.978439699155831 40 2.129396126040538 40 2.313653869654118 40 2.744889345446798 40 2.815415655392149 40 2.880665747380183 40 3.11914828197497 40 3.228690453406928 40 3.30442889897695 40 3.396673216269004 40 3.459059200265372 40 3.48691887012842 40 3.571799449897989 40 3.691004407736401 40 3.691004407736401 40 3.691004407736401 40 3.691004407736401 10 16.24193512009398 20 14.01605113735728 30 0.0 10 16.27980509092395 20 14.02204378606515 30 0.0 10 16.35352030469864 20 14.03370868495194 30 0.0 10 16.47760247610641 20 14.12568183285524 30 0.0 10 16.43978615833734 20 14.31034487505749 30 0.0 10 16.33051407729138 20 14.44397986951718 30 0.0 10 16.27739744568456 20 14.60934284402763 30 0.0 10 16.06846649335547 20 14.70737329980873 30 0.0 10 16.17526690052889 20 14.82848500564335 30 0.0 10 16.19319937774326 20 14.91892225893258 30 0.0 10 16.25568085220825 20 15.0230637851094 30 0.0 10 16.38324058197261 20 15.0217636409242 30 0.0 10 16.48136458754718 20 14.99203084375366 30 0.0 10 16.61769513213107 20 15.02445019801851 30 0.0 10 16.57091881910276 20 15.16490766333734 30 0.0 10 16.49809369256848 20 15.22757188764432 30 0.0 10 16.37767011620791 20 15.28976406799068 30 0.0 10 16.43250966962522 20 15.3773666224734 30 0.0 10 16.52396630739779 20 15.45070069843052 30 0.0 10 16.69951267831323 20 15.64855265946926 30 0.0 10 16.74479126019448 20 15.86620805625366 30 0.0 10 16.72145761358295 20 16.08904107739232 30 0.0 10 16.86849311476094 20 16.10987623000216 30 0.0 10 16.99011128888063 20 16.10709444088359 30 0.0 10 17.13896534697735 20 16.10956581713168 30 0.0 10 17.21470818168438 20 16.17252760789894 30 0.0 10 17.28839254412746 20 16.17335817958535 30 0.0 10 17.36191912085906 20 16.18881637860595 30 0.0 10 17.36142807333765 20 16.26069293216835 30 0.0 10 17.25111438918892 20 16.23318549658347 30 0.0 10 17.19546673612675 20 16.26865165665783 30 0.0 10 17.16296332498439 20 16.28936719665105 30 0.0 11 16.24193512009398 21 14.01605113735728 31 0.0 11 16.35357480902419 21 14.04391071314526 31 0.0 11 16.43730476852587 21 14.11355984076533 31 0.0 11 16.4233498074096 21 14.30857715350639 31 0.0 11 16.33961984790792 21 14.44787531467147 31 0.0 11 16.25589008121025 21 14.58717347583655 31 0.0 11 16.11634027724346 21 14.75433121278962 31 0.0 11 16.144250199476 21 14.79612067054665 31 0.0 11 16.2140250050574 21 14.94934861960572 31 0.0 11 16.25589008121025 21 15.00506786525674 31 0.0 11 16.35357480902419 21 15.01899765315075 31 0.0 11 16.52103453522355 21 15.00506786525674 31 0.0 11 16.59080934080495 21 15.03292753511979 31 0.0 11 16.57685437968865 21 15.13043614445278 31 0.0 11 16.46521469075844 21 15.24187472982989 31 0.0 11 16.39543969237303 21 15.3115237633749 31 0.0 11 16.4093948462933 21 15.33938343323794 31 0.0 11 16.51425381115305 21 15.44797643626456 31 0.0 11 16.63395212910242 21 15.58805937156241 31 0.0 11 16.72888515814946 21 16.00871571060663 31 0.0 11 16.73714025445025 21 16.07875722529309 31 0.0 11 16.79905309109813 21 16.09935759331553 31 0.0 11 17.03736867493788 21 16.10827957772893 31 0.0 11 17.1457655932991 21 16.12407816664753 31 0.0 11 17.21180597809737 21 16.16115888553295 31 0.0 11 17.30251312895117 21 16.177928705349 31 0.0 11 17.35833297341628 21 16.20578828113699 31 0.0 11 17.35833297341628 21 16.23364795100003 31 0.0 11 17.27460320671861 21 16.24757773889402 31 0.0 11 17.16296332498439 21 16.28936719665105 31 0.0 0 LWPOLYLINE 5 341 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.67323115504101 20 12.13538219593748 10 16.63810378362347 20 12.15291414612963 10 16.59419478313714 20 12.22304211379845 10 16.62932198352621 20 12.24934008081173 0 LWPOLYLINE 5 342 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.55028561162234 20 12.77616671807214 10 16.60297658323441 20 12.73233671741661 10 16.70835852645856 20 12.73233671741661 10 16.7259221266531 20 12.77616671807214 0 LWPOLYLINE 5 343 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.23413995297835 20 13.31089207515887 10 16.19023078146352 20 13.28459410814559 10 16.20779455268655 20 13.19693419028462 10 16.24292175307562 20 13.18816817346349 0 LWPOLYLINE 5 344 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.19901258156079 20 13.41608394321198 10 16.17266718126901 20 13.38101995937758 10 16.19023078146352 20 13.31089207515887 10 16.23413995297835 20 13.31089207515887 0 LWPOLYLINE 5 345 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.43612186830091 20 12.88135858612527 10 16.45368546849545 20 12.81123061845645 10 16.52394021133054 20 12.78493265144317 10 16.58541298303987 20 12.81123061845645 0 LWPOLYLINE 5 346 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 3 70 0 43 0.0 10 16.38343089668882 20 12.93395452015182 10 16.43612186830091 20 12.87259256930414 10 16.45368546849545 20 12.91642248650957 0 LWPOLYLINE 5 347 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.32195812497949 20 13.06544435521823 10 16.31317632488222 20 12.96901842053613 10 16.36586729649431 20 12.91642248650957 10 16.40099466791184 20 12.9602524871651 0 LWPOLYLINE 5 348 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.26048535327015 20 13.18816817346349 10 16.24292175307562 20 13.11804028924479 10 16.26926732439591 20 13.05667833839709 10 16.32195812497949 20 13.06544435521823 0 ARC 5 349 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbCircle 10 -97.10687215354488 20 -202.7320412630742 30 0.0 40 244.6070885206994 100 AcDbArc 50 62.35207445117757 51 62.53818387270766 0 LWPOLYLINE 5 34A 330 2C0 100 AcDbEntity 8 Main DETAIL 48 2.0 100 AcDbPolyline 90 6 70 1 43 0.0 10 15.11915389003223 20 13.94002479221318 10 15.08713513252723 20 13.76423930487658 10 15.34328485051022 20 13.65237576741687 10 15.45535041626348 20 13.78021975062074 10 15.45535041626348 20 13.89208328808045 10 15.29525679976697 20 13.94002479221318 0 LWPOLYLINE 5 34B 330 2C0 100 AcDbEntity 8 Main DETAIL 48 2.0 100 AcDbPolyline 90 4 70 1 43 0.0 10 15.50337863803522 20 13.87610275888617 10 15.47135988053023 20 13.76423930487658 10 15.59943473952171 20 13.71629780074385 10 15.64746279026496 20 13.82816125475346 0 LWPOLYLINE 5 34C 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.21657635278381 20 13.81055344841118 10 16.13753980985146 20 13.7842554813979 10 16.12875800975419 20 13.64399962951037 10 16.19901258156079 20 13.63523369613935 0 LINE 5 34D 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbLine 10 16.20007004394113 20 13.8628231882982 30 0.0 11 16.24193512009398 21 14.01605113735728 31 0.0 0 LWPOLYLINE 5 34E 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.19023078146352 20 13.53004182808624 10 16.15510358107448 20 13.50374386107296 10 16.14632178097721 20 13.44238191022526 10 16.19023078146352 20 13.42484996003311 0 LWPOLYLINE 5 34F 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.17266718126901 20 13.63523369613935 10 16.14632178097721 20 13.58263776211279 10 16.14632178097721 20 13.53880776145726 10 16.19023078146352 20 13.53004182808624 0 LWPOLYLINE 5 350 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 3 70 0 43 0.0 10 17.39334064433012 20 12.29403721156188 10 17.41968621565041 20 12.21514331052203 10 17.47237718726248 20 12.22390932734316 0 LWPOLYLINE 5 351 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.70835852645856 20 12.74110273423774 10 16.7522675269449 20 12.6622088331979 10 16.7961766984597 20 12.6622088331979 10 16.80495849855697 20 12.70603875040333 0 LWPOLYLINE 5 352 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.03328598519982 20 12.53948493150252 10 17.05084958539433 20 12.4956550142971 10 17.09475875690915 20 12.4956550142971 10 17.12110415720096 20 12.53948493150252 0 LWPOLYLINE 5 353 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 3 70 0 43 0.0 10 17.00694041387953 20 12.57454891533693 10 17.04206778529709 20 12.53948493150252 10 17.0596313854916 20 12.59208086552908 0 LWPOLYLINE 5 354 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 3 70 0 43 0.0 10 16.74348572684763 20 12.17044617977188 10 16.85764947016906 20 12.1441482127586 10 16.85764947016906 20 12.06525431171877 0 LWPOLYLINE 5 355 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 3 70 0 43 0.0 10 16.63810378362347 20 12.24934008081173 10 16.74348572684763 20 12.18797812996403 10 16.73470392675037 20 12.15291414612963 0 LWPOLYLINE 5 356 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.7698312981679 20 12.0477222780765 10 16.71714032655583 20 12.06525431171877 10 16.67323115504101 20 12.11785024574533 10 16.69079475523554 20 12.1441482127586 0 LWPOLYLINE 5 357 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.90155864168386 20 12.63591086618461 10 16.93668584207293 20 12.58331493215806 10 16.989376813685 20 12.5657828985158 10 17.00694041387953 20 12.61837883254236 0 LWPOLYLINE 5 358 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.81374029865423 20 12.6622088331979 10 16.85764947016906 20 12.60961289917133 10 16.87521307036357 20 12.62714484936348 10 16.91034044178113 20 12.65344281637676 0 LWPOLYLINE 5 359 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 5 70 0 43 0.0 10 17.32308607252352 20 12.38169712942284 10 17.32308607252352 20 12.32910119539629 10 17.34943164384378 20 12.30280322838301 10 17.41968621565041 20 12.31156924520414 10 17.41968621565041 20 12.34663314558844 0 LWPOLYLINE 5 35A 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.20014052910483 20 12.42552704662827 10 17.21770430032785 20 12.38169712942284 10 17.31430427242625 20 12.38169712942284 10 17.29674067223172 20 12.41676111325725 0 LWPOLYLINE 5 35B 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.12988595729822 20 12.47812306410494 10 17.16501332871575 20 12.4342930634494 10 17.22648610042512 20 12.45182501364155 10 17.21770430032785 20 12.46935704728382 0 LWPOLYLINE 5 35C 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.62166813097297 20 12.10995144246892 10 17.66557730248777 20 12.04858949162122 10 17.72705007419711 20 12.0748874586345 10 17.71826827409987 20 12.1011854256478 0 LWPOLYLINE 5 35D 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbPolyline 90 5 70 0 43 0.0 10 17.47237718726248 20 12.22390932734316 10 17.49872258755428 20 12.24144127753531 10 17.52506798784605 20 12.15378144312445 10 17.61288633087571 20 12.1362494094822 10 17.62166813097297 20 12.16254737649548 0 ARC 5 35E 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbCircle 10 16.8348566642228 20 18.02569383072343 30 0.0 40 1.984172036094252 100 AcDbArc 50 246.6267442978481 51 273.1596617613975 0 ARC 5 35F 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbCircle 10 16.43897575250107 20 15.13660549925524 30 0.0 40 1.336301590487937 100 AcDbArc 50 68.52395472719855 51 104.8841939040943 0 LINE 5 360 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbLine 10 15.51938793127345 20 14.99948110394402 30 0.0 11 16.7681184477974 21 14.96752012900557 31 0.0 0 SPLINE 5 361 330 2C0 100 AcDbEntity 8 Main DETAIL 48 2.0 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 9 73 5 74 3 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.3361965262312481 40 0.8881458893287696 40 0.8881458893287696 40 0.8881458893287696 40 0.8881458893287696 10 15.88760338603819 20 15.30311057448449 30 0.0 10 16.00057735200033 20 15.30925161406068 30 0.0 10 16.29902589516413 20 15.32547468191014 30 0.0 10 16.57845455224715 20 15.21312606714007 30 0.0 10 16.75210898353066 20 15.14330561634217 30 0.0 11 15.88760338603819 21 15.30311057448449 31 0.0 11 16.22379991226944 21 15.30311057448449 31 0.0 11 16.75210898353066 21 15.14330561634217 31 0.0 0 LINE 5 362 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbLine 10 16.57048168240126 20 16.72776075757073 30 0.0 11 16.60362785974072 21 16.83647321887103 31 0.0 0 LINE 5 363 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbLine 10 16.90194311373906 20 16.85537967582753 30 0.0 11 16.92561893026319 21 16.94991221096034 31 0.0 0 SPLINE 5 364 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 14 73 10 74 8 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.0921611798294074 40 0.1261940223850145 40 0.2103735911271642 40 0.306597369426251 40 0.3648662741226548 40 0.4385952680066697 40 0.4962764489895949 40 0.4962764489895949 40 0.4962764489895949 40 0.4962764489895949 10 17.04257746795127 20 16.41825670526318 30 0.0 10 17.03481350970332 20 16.38404008689796 30 0.0 10 17.02418251384638 20 16.33718811829347 30 0.0 10 16.95025092630348 20 16.32237069721641 30 0.0 10 16.88382101671028 20 16.34473797525291 30 0.0 10 16.79881967505016 20 16.37336100021838 30 0.0 10 16.78562204253227 20 16.46022523363068 30 0.0 10 16.83666749940879 20 16.50938637082391 30 0.0 10 16.83060639101509 20 16.55485985895134 30 0.0 10 16.82794592815088 20 16.57481999142402 30 0.0 11 17.04257746795127 21 16.41825670526318 31 0.0 11 17.00130217925135 21 16.33585504502332 31 0.0 11 16.96828198685222 21 16.32761482255431 31 0.0 11 16.88573140945237 21 16.34409517341728 31 0.0 11 16.80318083205253 21 16.39353622600624 31 0.0 11 16.79492573575174 21 16.45121740698916 31 0.0 11 16.82794592815088 21 16.51713881044109 31 0.0 11 16.82794592815088 21 16.57481999142402 31 0.0 0 LINE 5 365 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbLine 10 16.84512111987547 20 16.6474080651553 30 0.0 11 16.8687969363996 21 16.76084714069472 31 0.0 0 LINE 5 366 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbLine 10 17.0724090953299 20 16.50560930418113 30 0.0 11 17.09608491185403 21 16.62377499395967 31 0.0 0 LINE 5 367 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbLine 10 17.2191992603966 20 16.49615607570288 30 0.0 11 17.24761017181416 21 16.60014183931394 31 0.0 0 LINE 5 368 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbLine 10 17.16296332498439 20 16.28936719665105 30 0.0 11 17.18605308305711 21 16.39689684288083 31 0.0 0 LINE 5 369 330 2C0 100 AcDbEntity 8 S_L_ST_Stream 48 2.0 100 AcDbLine 10 16.64150913197363 20 16.93573236824298 30 0.0 11 16.66518494849776 21 17.02081159144742 31 0.0 0 LWPOLYLINE 5 36A 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 23.40770324993408 20 6.742408683083283 10 23.36524973595635 20 6.756534429322812 10 23.25204004400907 20 6.64352883570676 10 23.25911556540404 20 6.587026038898727 0 LWPOLYLINE 5 36B 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 23.29449375079082 20 6.862477149819099 10 23.24496432981013 20 6.883665675103344 10 23.14590587345676 20 6.770660081487292 10 23.13883035206182 20 6.685905980350312 0 LWPOLYLINE 5 36C 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 22.98316695333284 20 7.130865293544658 10 22.91948668236625 20 7.152053912903951 10 22.82750374740786 20 7.067299717691909 10 22.82042803320891 20 7.017859794003655 10 22.84873050439671 20 6.989608395599645 0 LWPOLYLINE 5 36D 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 23.13883035206182 20 7.01079692088389 10 23.07514988829123 20 6.99667126871941 10 22.96901591054293 20 6.869539928863815 10 22.99024266753178 20 6.820100005175547 10 23.01146942452067 20 6.7918487008466 0 LWPOLYLINE 5 36E 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 5 70 0 43 0.0 10 22.55863065673159 20 7.540510429290264 10 22.5303283783478 20 7.540510429290264 10 22.50202590715997 20 7.44869345503352 10 22.51617714275389 20 7.378065006061007 10 22.55863065673159 20 7.356876480776762 0 LWPOLYLINE 5 36F 330 2C0 100 AcDbEntity 8 S_L_DaveA_MadGil 100 AcDbPolyline 90 4 70 0 43 0.0 10 22.79920127622003 20 7.307436463013445 10 22.74259652664841 20 7.328625082372752 10 22.6647648272839 20 7.257996539325191 10 22.70721853406564 20 7.215619488756701 0 ENDBLK 5 371 330 2C0 100 AcDbEntity 8 0 48 0.1 100 AcDbBlockEnd 0 BLOCK 5 482 330 462 100 AcDbEntity 8 0 48 0.1 100 AcDbBlockBegin 2 A$C4B0A0433 70 0 10 0.0 20 0.0 30 0.0 3 A$C4B0A0433 1 0 LWPOLYLINE 5 463 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 49 70 0 43 0.0 10 5.073216823416643 20 23.05984554900946 10 5.105706140873294 20 22.96255314377534 10 5.024482678963863 20 22.88147613941357 10 4.943259301188319 20 22.84904533766887 10 5.138195542463847 20 22.83282993679651 10 5.203174261511051 20 22.71932213069004 10 5.1706849440544 20 22.58959892371121 10 5.105706140873294 20 22.45987575778392 10 4.975748618644971 20 22.45987575778392 10 5.105706140873294 20 22.39501415429451 10 5.089461482144969 20 22.29772174906039 10 5.056972080554416 20 22.26529094731569 10 4.991993361507212 20 22.18421394295392 10 5.105706140873294 20 22.20042934382627 10 5.1706849440544 20 22.20042934382627 10 5.186929602782726 20 22.16799854208156 10 5.203174261511051 20 22.10313693859215 10 5.154440201192173 20 21.95719833074097 10 5.056972080554416 20 21.94098292986862 10 5.203174261511051 20 21.8923367683031 10 5.203174261511051 20 21.77882896219663 10 5.186929602782726 20 21.6815365569625 10 5.154440201192173 20 21.60045955260074 10 5.056972080554416 20 21.60045955260074 10 5.121950883735522 20 21.56802875085603 10 5.154440201192173 20 21.51938254823897 10 5.138195542463847 20 21.45452094474956 10 5.073216823416643 20 21.38965934126014 10 5.073216823416643 20 21.38965934126014 10 5.1706849440544 20 21.35722853951544 10 5.219419004373293 20 21.30858233689838 10 5.219419004373293 20 21.11399756748168 10 5.154440201192173 20 21.06535136486462 10 5.056972080554416 20 21.06535136486462 10 5.154440201192173 20 21.01670516224756 10 5.203174261511051 20 20.98427436050285 10 5.138195542463847 20 20.93562815788579 10 5.089461482144969 20 20.93562815788579 10 5.1706849440544 20 20.88698195526873 10 5.251908405963845 20 20.83833575265167 10 5.235663663101618 20 20.75725874828991 10 5.219419004373293 20 20.64375094218343 10 5.138195542463847 20 20.61132014043872 10 5.024482678963863 20 20.64375094218343 10 5.105706140873294 20 20.61132014043872 10 5.154440201192173 20 20.53024317712849 10 5.154440201192173 20 20.46538157363908 10 5.089461482144969 20 20.41673537102203 10 5.186929602782726 20 20.40051997014967 0 SPLINE 5 464 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 15 73 11 74 9 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 1.039817835472156 40 2.256081307093166 40 3.008330849701104 40 3.884113129262678 40 4.642970868383029 40 5.24841368248504 40 6.030979438380275 40 6.767153267152476 40 6.767153267152476 40 6.767153267152476 40 6.767153267152476 10 5.381865928192155 20 19.11457563811615 30 0.0 10 5.402761881066735 20 19.4600517313562 30 0.0 10 5.448099599911335 20 20.20962740645753 30 0.0 10 5.522934546017934 20 21.21765554804459 30 0.0 10 5.323490484191754 20 22.15323011611491 30 0.0 10 5.385950481459288 20 22.95090398362177 30 0.0 10 5.410461400298018 20 23.69988531759351 30 0.0 10 5.279971733924146 20 24.40617233317056 30 0.0 10 5.23052987394128 20 25.1128969139496 30 0.0 10 5.157399256372617 20 25.61401200075809 30 0.0 10 5.121950883735522 20 25.85691592967103 30 0.0 11 5.381865928192155 21 19.11457563811615 31 0.0 11 5.446844647239373 21 20.15236121184368 31 0.0 11 5.463089305967699 21 21.3685161951671 31 0.0 11 5.365621185329928 21 22.11442459424382 31 0.0 11 5.381865928192155 21 22.99005620029936 31 0.0 11 5.381865928192155 21 23.74891393941971 31 0.0 11 5.300642466282724 21 24.34888373064525 31 0.0 11 5.219419004373293 21 25.12722293146667 31 0.0 11 5.121950883735522 21 25.85691592967103 31 0.0 0 SPLINE 5 465 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 35 73 31 74 0 42 0.0000000001 43 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.4057103296205168 40 0.9629849029868964 40 1.76809730051688 40 2.742241099131404 40 3.163841480761049 40 3.908081168070752 40 4.605532530031975 40 5.222573693407821 40 6.050993754872664 40 6.459297593382808 40 6.726757224623026 40 7.270619989431057 40 8.143952697752174 40 9.085707659840476 40 10.28284328996549 40 11.53658606103946 40 12.12135770050248 40 12.37779205173307 40 13.18867696006987 40 13.70788165185422 40 13.98354346668423 40 14.16191283522857 40 14.63103775494241 40 15.20457831786864 40 15.59005834871798 40 15.92869639253631 40 16.18287435334491 40 16.41551334987229 40 16.41551334987229 40 16.41551334987229 40 16.41551334987229 10 5.479334048829926 20 25.7271927226922 30 0.0 10 5.482015874485258 20 25.59179910455821 30 0.0 10 5.488381395473949 20 25.27043186122042 30 0.0 10 5.584882180989013 20 24.68861518591006 30 0.0 10 5.768237365864642 20 23.92297169313688 30 0.0 10 5.64968402723113 20 23.18710044138915 30 0.0 10 5.6543477175456 20 22.4736337005149 30 0.0 10 5.711950522259257 20 21.85491007041079 30 0.0 10 5.740029216593545 20 21.1680155672661 30 0.0 10 5.664318590655025 20 20.45485183337168 30 0.0 10 5.730628378605583 20 19.83873606252352 30 0.0 10 5.767066479202049 20 19.33670191852963 30 0.0 10 5.883150251993964 20 18.94571351342224 30 0.0 10 5.969353608040496 20 18.38989544652226 30 0.0 10 6.250328434882332 20 17.64618161232903 30 0.0 10 6.264467908023574 20 16.62985858530558 30 0.0 10 6.113200070206358 20 15.50104632264295 30 0.0 10 5.710069249343669 20 14.56554637096362 30 0.0 10 5.482217413300406 20 13.90620063993837 30 0.0 10 5.303905619018114 20 13.38458570122447 30 0.0 10 5.180905989482265 20 12.87293621977003 30 0.0 10 4.991136477402084 20 12.3616348329601 30 0.0 10 5.007790433592136 20 12.03487237784105 30 0.0 10 5.016873190160637 20 11.72680257721649 30 0.0 10 4.885391823014243 20 11.32792714056242 30 0.0 10 4.607417524568655 20 10.93836649647197 30 0.0 10 4.473283498028388 20 10.52260688750559 30 0.0 10 4.544791085979957 20 10.16236245982431 30 0.0 10 4.823419981156257 20 10.03852551967211 30 0.0 10 4.983546822872973 20 10.055990799112 30 0.0 10 5.059609411291354 20 10.07422479384798 30 0.0 0 SPLINE 5 466 330 462 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 87 73 83 74 81 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.4941097918888518 40 1.05273285710806 40 1.36597864618037 40 1.411884121350587 40 1.510691966013164 40 1.641482816827663 40 1.953405994906847 40 2.025949661050721 40 2.251524837454811 40 2.287835998840303 40 2.716069163811261 40 3.151331268835866 40 3.238789874280712 40 3.384034444543918 40 3.559528352706559 40 4.363619042273386 40 5.594503795377386 40 6.015535383205372 40 6.324055928328641 40 6.580490279559239 40 6.777768746971828 40 6.931629352380445 40 7.495784875490387 40 7.599687324174026 40 7.71676448739503 40 7.924569396212972 40 8.165677920148342 40 8.795234878852712 40 9.476946226047232 40 9.781705793147416 40 10.14175796223427 40 10.64527977958651 40 11.53050268666419 40 12.22383784331458 40 12.84706496819199 40 13.05859805534451 40 13.35092693523725 40 14.19553485362082 40 14.640821177431 40 14.80784012254231 40 15.12780635395795 40 15.38170929508661 40 15.65737106886508 40 16.09181135810522 40 16.39657092520542 40 16.76243948984789 40 17.04565613851881 40 17.33814598247019 40 17.82194604854063 40 18.42191583976616 40 19.02370009560393 40 19.63950097799487 40 20.16777510895849 40 20.58121708393383 40 21.29487959070107 40 21.77208929382984 40 22.54139230858375 40 23.14147617167586 40 23.3161649446636 40 23.67438012726297 40 24.10052668546926 40 24.26278618432688 40 24.41239920711489 40 24.55833777391452 40 24.69791310415471 40 24.90944622592281 40 25.08855383384828 40 25.27774675172096 40 25.58546796253819 40 25.88843588131956 40 26.12969224847517 40 26.37098999860628 40 26.45367838698989 40 26.5348491142139 40 26.63348837509364 40 26.76026980740013 40 26.93588552948878 40 27.04470106492102 40 27.1977545235341 40 27.50426644984047 40 27.50426644984047 40 27.50426644984047 40 27.50426644984047 10 0.0 20 0.1380891832031388 30 0.0 10 0.0602859340956885 20 0.2914067198331471 30 0.0 10 0.1887290143296837 20 0.618059644002651 30 0.0 10 0.4383134355271982 20 1.007032544816695 30 0.0 10 0.4917933452356709 20 1.31425449199937 30 0.0 10 0.5938222004193313 20 1.438940116737334 30 0.0 10 0.7076605425795918 20 1.411198644689981 30 0.0 10 0.7764547424975826 20 1.622860179491545 30 0.0 10 0.7593926325194872 20 1.781142123333865 30 0.0 10 0.8465207527926287 20 1.973951245535106 30 0.0 10 0.9665582227917591 20 2.007636435266786 30 0.0 10 1.174924972821194 20 2.10766202994944 30 0.0 10 1.228579214774083 20 2.443906334449995 30 0.0 10 1.314103520772008 20 2.796559737647632 30 0.0 10 1.529263155266094 20 2.867905857182557 30 0.0 10 1.66207114666077 20 2.918243704136914 30 0.0 10 1.83109815835897 20 3.272853059886442 30 0.0 10 2.271695111297231 20 3.856692018324595 30 0.0 10 2.434051378061829 20 4.684002661148503 30 0.0 10 2.663221325800028 20 5.296880219356573 30 0.0 10 2.662875346205898 20 5.637230332025824 30 0.0 10 2.521376839565474 20 5.867991996722039 30 0.0 10 2.576358803658446 20 6.074521469163823 30 0.0 10 2.680805403371958 20 6.357529084270699 30 0.0 10 2.716114587333606 20 6.640251763021034 30 0.0 10 2.872529057840916 20 6.858165923253066 30 0.0 10 3.005396297351301 20 6.920030066544598 30 0.0 10 3.120353629671822 20 7.08110646562042 30 0.0 10 3.217714973969609 20 7.425986836385799 30 0.0 10 3.388369176675097 20 7.928539599433653 30 0.0 10 3.806579702290735 20 8.295913635052784 30 0.0 10 4.000302764464931 20 8.704972669984124 30 0.0 10 4.064700488718856 20 9.102654914599952 30 0.0 10 3.833630485827874 20 9.653726428013449 30 0.0 10 3.725722187566253 20 10.34451198145465 30 0.0 10 3.846643846744365 20 11.0925078878831 30 0.0 10 4.132419328044385 20 11.51471719824761 30 0.0 10 4.377615288023324 20 11.81775273403052 30 0.0 10 4.326193289308688 20 12.29190036321197 30 0.0 10 4.398961558418423 20 12.79660708799017 30 0.0 10 4.426408979697319 20 13.29946504026328 30 0.0 10 4.593339963516744 20 13.56585762712539 30 0.0 10 4.71053672034112 20 13.77830428454108 30 0.0 10 4.874527464013824 20 14.02488003816935 30 0.0 10 4.827724219350812 20 14.35475850813806 30 0.0 10 4.830464074229235 20 14.70322425127218 30 0.0 10 5.038883402319342 20 15.02046504991611 30 0.0 10 5.087097340691133 20 15.33644624186965 30 0.0 10 5.126410470526533 20 15.65728810705294 30 0.0 10 5.386742214227946 20 15.92185162113703 30 0.0 10 5.439568878617714 20 16.3978040820682 30 0.0 10 5.469070566570312 20 16.95958245341307 30 0.0 10 5.267636505705929 20 17.54055421365802 30 0.0 10 5.163415732532213 20 18.11370027731435 30 0.0 10 4.976480546337979 20 18.59872097664202 30 0.0 10 4.85069889377601 20 19.14234447403376 30 0.0 10 4.951098550695868 20 19.6813466501966 30 0.0 10 4.821111164373094 20 20.32886534605195 30 0.0 10 4.58813202019983 20 20.90095154378445 30 0.0 10 4.461538148077604 20 21.39696972769073 30 0.0 10 4.281570594358203 20 21.74199842251212 30 0.0 10 4.384444201448026 20 22.06591227166371 30 0.0 10 4.377738987359957 20 22.39593407516706 30 0.0 10 4.525083491623031 20 22.59380997636043 30 0.0 10 4.668186249773683 20 22.69273240689754 30 0.0 10 4.604695597031717 20 22.860229027028 30 0.0 10 4.737683851691408 20 22.98209933522101 30 0.0 10 4.854725060208812 20 23.12457819080361 30 0.0 10 4.819031804235986 20 23.33526018902387 30 0.0 10 4.980286095329105 20 23.51030113920101 30 0.0 10 5.073879671780284 20 23.77341935581819 30 0.0 10 4.988358897901441 20 24.06217287230973 30 0.0 10 4.803968640820889 20 24.26004189639083 30 0.0 10 4.638851040189623 20 24.34031596124804 30 0.0 10 4.578768662916489 20 24.50176570653099 30 0.0 10 4.688161883499152 20 24.52860549565397 30 0.0 10 4.700610358588472 20 24.65898726350263 30 0.0 10 4.567085237748273 20 24.72666300377255 30 0.0 10 4.449755822686825 20 24.78524646116218 30 0.0 10 4.361153390432376 20 24.92646796654784 30 0.0 10 4.507840880479206 20 25.10267527095787 30 0.0 10 4.661849636266689 20 25.12101894176066 30 0.0 10 4.764567382105497 20 25.1332534443098 30 0.0 11 0.0 21 0.1380891832031388 31 0.0 11 0.1949363254094294 21 0.5921203665774897 31 0.0 11 0.4386066270038356 21 1.094797711517358 31 0.0 11 0.5523194905038338 21 1.386674927219722 31 0.0 11 0.584808807960485 21 1.419105728964428 31 0.0 11 0.6822770127321576 21 1.435321129836783 31 0.0 11 0.7472557317793616 21 1.548828894891713 31 0.0 11 0.79598979209824 21 1.856921511466428 31 0.0 11 0.8284791936887927 21 1.921783073904297 31 0.0 11 1.02341543496432 21 2.035290880010773 31 0.0 11 1.055904836554873 21 2.051506280883124 31 0.0 11 1.234596419102075 21 2.440675860768063 31 0.0 11 1.429532660377603 21 2.829845440653002 31 0.0 11 1.510756122287034 21 2.862276242397708 31 0.0 11 1.640713644515358 21 2.927137845887124 31 0.0 11 1.738181765153115 21 3.073076453738305 31 0.0 11 2.144298990566397 21 3.767072589369242 31 0.0 11 2.534171557251355 21 4.934581329024059 31 0.0 11 2.647884420751339 21 5.339966309781349 31 0.0 11 2.631639677889111 21 5.648058885304518 31 0.0 11 2.55041621597968 21 5.891289898389825 31 0.0 11 2.582905617570233 21 6.085874667806518 31 0.0 11 2.631639677889111 21 6.231813275657703 31 0.0 11 2.810331260436313 21 6.766921463393817 31 0.0 11 2.875310063617419 21 6.847998426704041 31 0.0 11 2.97277818425519 21 6.91286003019346 31 0.0 11 3.1027357064835 21 7.075014038916993 31 0.0 11 3.183959168392945 21 7.302029610078395 31 0.0 11 3.427629469987351 21 7.882517980654402 31 0.0 11 3.849991438262861 21 8.41762612733898 31 0.0 11 3.979948960491171 21 8.693287942168982 31 0.0 11 4.028683020810049 21 9.050026720309215 31 0.0 11 3.89872549858174 21 9.536488705428279 31 0.0 11 3.768767976353416 21 10.41212027043227 31 0.0 11 3.89872549858174 21 11.09316702496802 31 0.0 11 4.223619262085577 21 11.62500919292697 31 0.0 11 4.337332125585575 21 11.80337856147132 31 0.0 11 4.353576784313901 21 12.09525573612213 31 0.0 11 4.402310844632779 21 12.93845649938143 31 0.0 11 4.48353430654221 21 13.37627228188342 31 0.0 11 4.564757768451656 21 13.52221088973461 31 0.0 11 4.727204608136617 21 13.79787266351307 31 0.0 11 4.840917471636615 21 14.02488827572602 31 0.0 11 4.840917471636615 21 14.30055004950449 31 0.0 11 4.878280498007214 21 14.73338069672749 31 0.0 11 5.008238020235538 21 15.0090425115575 31 0.0 11 5.089461482144969 21 15.36578128969773 31 0.0 11 5.154440201192173 21 15.64144310452775 31 0.0 11 5.316887125011049 21 15.8846740765615 31 0.0 11 5.430599988511048 21 16.35492070185975 31 0.0 11 5.430599988511048 21 16.95489049308529 31 0.0 11 5.284397723420497 21 17.53864488343847 31 0.0 11 5.138195542463847 21 18.13683853856778 31 0.0 11 4.975748618644971 21 18.63951592455919 31 0.0 11 4.894525156735539 21 19.04490094636803 31 0.0 11 4.910769899597767 21 19.75837854370003 31 0.0 11 4.829546437688335 21 20.22862512794674 31 0.0 11 4.585876051960028 21 20.95831812615111 31 0.0 11 4.3909398106845 21 21.52585711563193 31 0.0 11 4.32596100750338 21 21.68801112435546 31 0.0 11 4.358450409093947 21 22.0447499024957 31 0.0 11 4.439673871003378 21 22.46308426434817 31 0.0 11 4.537141991641135 21 22.59280747132699 31 0.0 11 4.634610112278906 21 22.70631527743347 31 0.0 11 4.634610112278906 21 22.85225384423311 31 0.0 11 4.715833574188337 21 22.96576165033958 31 0.0 11 4.829546437688335 21 23.14413105993547 31 0.0 11 4.845791096416661 21 23.32250046953136 31 0.0 11 4.943259301188319 21 23.48465443720335 31 0.0 11 5.04072742182609 21 23.77653165290571 31 0.0 11 4.959503959916645 21 24.06840886860807 31 0.0 11 4.797057036097783 21 24.24677823715241 31 0.0 11 4.61836545355058 21 24.40893224587595 31 0.0 11 4.602120794822255 21 24.49000925023772 31 0.0 11 4.667099513869459 21 24.53865545285478 31 0.0 11 4.683344256731686 21 24.6359478580889 31 0.0 11 4.585876051960028 21 24.71702486245066 31 0.0 11 4.439673871003378 21 24.81431722663324 31 0.0 11 4.3909398106845 21 24.91160963186736 31 0.0 11 4.472163272593931 21 25.04133283884619 31 0.0 11 4.764567382105497 21 25.1332534443098 31 0.0 0 SPLINE 5 467 330 462 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 80 73 76 74 74 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.2615818146816531 40 0.6401542034951651 40 1.079173775584518 40 1.680022560504279 40 2.418522667416653 40 3.381965360821156 40 4.243834479133075 40 4.810093465744062 40 5.463775272879302 40 6.083377100579744 40 6.806702711037903 40 7.467178208529706 40 7.785797551723199 40 8.056824198802903 40 8.365344739496224 40 8.909257239005926 40 9.36328842238028 40 9.955123851253233 40 10.57472564695177 40 11.14109915149165 40 11.74118297575861 40 11.98457222404504 40 12.13762564786416 40 12.26734885484298 40 12.41418878878039 40 12.59909590132632 40 12.80567071822814 40 13.04905993369469 40 13.16372428612283 40 13.6916918194023 40 14.08159618695172 40 14.50946852363196 40 14.76122940162039 40 15.00500223581995 40 15.35437975050022 40 15.73276553474217 40 15.9942382515404 40 16.19483300994681 40 16.3799251233505 40 16.52501252904693 40 16.70412010372083 40 17.80790184972586 40 18.2748832481991 40 18.41445852947903 40 18.7122630694597 40 19.39753624006881 40 19.74420381050905 40 19.97011082648197 40 20.24197415828435 40 20.4049398424506 40 20.55445113465037 40 20.91061365662746 40 21.34587579933223 40 21.57806339199149 40 21.80739204429087 40 21.99722852956817 40 22.05572646780413 40 22.20256636094197 40 22.36958530605329 40 22.75125690161003 40 23.01738791230234 40 23.46040897759925 40 23.77365469787856 40 24.21667576317548 40 24.75016918962081 40 24.96102577412676 40 25.33454745107991 40 25.81676450926009 40 26.21132148457629 40 26.42461064872368 40 26.50574044869117 40 26.81899117300881 40 27.45027561876258 40 27.45027561876258 40 27.45027561876258 40 27.45027561876258 10 5.950429656754778 20 25.99266960844145 30 0.0 10 5.99964499844178 20 25.91919875112266 30 0.0 10 6.120086887323576 20 25.73939772709408 30 0.0 10 6.144540293358538 20 25.36962258297197 30 0.0 10 6.194445404410872 20 24.90273786443685 30 0.0 10 6.152465435492517 20 24.30663138765003 30 0.0 10 6.00969363253603 20 23.55304205786215 30 0.0 10 5.914849982302124 20 22.70256685968907 30 0.0 10 5.858582839386526 20 21.9075361782116 30 0.0 10 5.814941179227953 20 21.2148000880418 30 0.0 10 5.688569716448403 20 20.61001525604598 30 0.0 10 5.770206538162063 20 19.93878881322344 30 0.0 10 6.006418340699396 20 19.31068021639872 30 0.0 10 6.28740068372896 20 18.813477085793 30 0.0 10 6.392690992282449 20 18.40764487324987 30 0.0 10 6.428361081562823 20 18.10998551189067 30 0.0 10 6.425589295158715 20 17.73362853510576 30 0.0 10 6.558090603538456 20 17.31210227098064 30 0.0 10 6.547890995910659 20 16.77585408409269 30 0.0 10 6.42282516550504 20 16.23424831699027 30 0.0 10 6.368396308710523 20 15.64191817244056 30 0.0 10 6.346957331740814 20 15.05015677244264 30 0.0 10 6.210559919096964 20 14.57887028356852 30 0.0 10 6.004606595370564 20 14.32356936480272 30 0.0 10 5.88523701842601 20 14.18159383446005 30 0.0 10 5.900575731206964 20 14.03126725005076 30 0.0 10 5.930179670186871 20 13.88257512417687 30 0.0 10 5.883567292372439 20 13.69389871663354 30 0.0 10 5.710561992656482 20 13.56690582839112 30 0.0 10 5.571046120556655 20 13.42077369154729 30 0.0 10 5.553278713013714 20 13.11997851661665 30 0.0 10 5.481621169768409 20 12.78517784589658 30 0.0 10 5.348564077999499 20 12.35457563732071 30 0.0 10 5.225890828492033 20 12.02403844337745 30 0.0 10 5.11134929262232 20 11.72846412180367 30 0.0 10 5.190421673301443 20 11.44149132494461 30 0.0 10 5.02825773555722 20 11.13880779740489 30 0.0 10 4.812315574410575 20 10.87791910708524 30 0.0 10 4.789428016693642 20 10.59794800883736 30 0.0 10 4.812422604851329 20 10.35806538954288 30 0.0 10 4.99824083342535 20 10.28957191731842 30 0.0 10 5.077127412793305 20 10.12377080059663 30 0.0 10 4.970940198867992 20 9.64679654540491 30 0.0 10 4.912632879190383 20 9.081199071497984 30 0.0 10 4.755039423231032 20 8.515423315629679 30 0.0 10 4.56724944227159 20 8.278045841359157 30 0.0 10 4.384917050380186 20 7.947929634054428 30 0.0 10 4.287925393302837 20 7.51064407289127 30 0.0 10 4.234873286336019 20 7.091103996865684 30 0.0 10 4.12872247224326 20 6.832830831580857 30 0.0 10 4.023269399703442 20 6.623975786625562 30 0.0 10 4.080969376610386 20 6.428392993123971 30 0.0 10 4.019135427174788 20 6.20732044107822 30 0.0 10 3.832300628521131 20 5.952667369482447 30 0.0 10 3.672846233868468 20 5.650925720216591 30 0.0 10 3.592281842792411 20 5.354890881737563 30 0.0 10 3.64065519796018 20 5.140278895841642 30 0.0 10 3.676493669055386 20 4.981896067167427 30 0.0 10 3.766908893622201 20 4.878879760914897 30 0.0 10 3.728222149876691 20 4.738899647708804 30 0.0 10 3.601172293589839 20 4.554014082488352 30 0.0 10 3.50525010694637 20 4.289954757147751 30 0.0 10 3.247531200213466 20 4.025428696773768 30 0.0 10 3.141330164482782 20 3.692828867865963 30 0.0 10 2.998288293030204 20 3.321435973682298 30 0.0 10 2.808411417757538 20 2.933629368535356 30 0.0 10 2.691023219708198 20 2.55637032258199 30 0.0 10 2.561888020393332 20 2.203734626811304 30 0.0 10 2.31047784060708 20 1.938727450588434 30 0.0 10 2.201768715036641 20 1.523155115612996 30 0.0 10 2.122443474546368 20 1.17729005867613 30 0.0 10 2.135996246071308 20 0.9292969654796683 30 0.0 10 1.997885735813012 20 0.7747685077001055 30 0.0 10 1.830058634766871 20 0.4766667655156992 30 0.0 10 1.592907304431082 20 0.2640063522632434 30 0.0 10 1.434406116889832 20 0.121873782330784 30 0.0 11 5.950429656754778 21 25.99266960844145 31 0.0 11 6.080387178983102 21 25.76565399622849 31 0.0 11 6.145365898030306 21 25.39269981721591 31 0.0 11 6.177855299620858 21 24.95488407576546 31 0.0 11 6.145365898030306 21 24.35491432559147 31 0.0 11 6.031653118664223 21 23.62522136843864 31 0.0 11 5.917940255164225 21 22.66851284012443 31 0.0 11 5.852961536117021 21 21.80909667599278 31 0.0 11 5.804227475798143 21 21.24493869166345 31 0.0 11 5.723004013888697 21 20.5963227388724 31 0.0 11 5.787982732935915 21 19.98013754677451 31 0.0 11 6.031653118664223 21 19.29909079223876 31 0.0 11 6.307812821849182 21 18.69912104206477 31 0.0 11 6.389036283758613 21 18.3910284665416 31 0.0 11 6.42152568534918 21 18.12195620447887 31 0.0 11 6.437770344077506 21 17.8138636289557 31 0.0 11 6.535238464715263 21 17.27875544121958 31 0.0 11 6.535238464715263 21 16.82472425784522 31 0.0 11 6.437770344077506 21 16.24096990854359 31 0.0 11 6.372791540896386 21 15.62478475749725 31 0.0 11 6.324057480577508 21 15.06051182884514 31 0.0 11 6.12912123930198 21 14.49297288041585 31 0.0 11 5.982919058345345 21 14.29838806994762 31 0.0 11 5.901695596435899 21 14.16866490402033 31 0.0 11 5.901695596435899 21 14.03894169704151 31 0.0 11 5.917940255164225 21 13.89300308919032 31 0.0 11 5.869206194845347 21 13.71463372064598 31 0.0 11 5.723004013888697 21 13.5686951127948 31 0.0 11 5.576801832932062 21 13.3741103433781 31 0.0 11 5.560557090069835 21 13.26060253727163 31 0.0 11 5.463088969432064 21 12.74170979145941 31 0.0 11 5.349376190065981 21 12.36875561244682 31 0.0 11 5.203174009109332 21 11.9666366514667 31 0.0 11 5.138195290062128 21 11.72340567943294 31 0.0 11 5.154439948790454 21 11.48017470739919 31 0.0 11 5.024482426562144 21 11.15586668995212 31 0.0 11 4.829546185286616 21 10.83155871355659 31 0.0 11 4.797056783696064 21 10.57211234065048 31 0.0 11 4.845790844014942 21 10.37752753018224 31 0.0 11 4.991993024971577 21 10.26401976512731 31 0.0 11 5.056971828152697 21 10.13429655814848 31 0.0 11 5.04072708529047 21 9.955927189604143 31 0.0 11 4.845790844014942 21 8.869495413259546 31 0.0 11 4.683343920196065 21 8.431679671809096 31 0.0 11 4.602120542420536 21 8.31817186570262 31 0.0 11 4.455918277329985 21 8.058725451744965 31 0.0 11 4.277226694782783 21 7.397160158910278 31 0.0 11 4.212247975735579 21 7.056636781642399 31 0.0 11 4.131024513826147 21 6.845836570301809 31 0.0 11 4.049801051916702 21 6.586390197395697 31 0.0 11 4.066045794778943 21 6.424236188672164 31 0.0 11 4.033556393188376 21 6.278297621872521 31 0.0 11 3.854864810641174 21 5.97020500529781 31 0.0 11 3.659928485231745 21 5.581035425412867 31 0.0 11 3.611194424912866 21 5.354019854251465 31 0.0 11 3.643683826503419 21 5.127004283090062 31 0.0 11 3.708662629684539 21 4.948634873494174 31 0.0 11 3.74115194714119 21 4.89998867087711 31 0.0 11 3.724907288412865 21 4.754050104077474 31 0.0 11 3.643683826503419 21 4.608111496226296 31 0.0 11 3.464992243956231 21 4.27085413873559 31 0.0 11 3.302545320137355 21 4.060053968446538 31 0.0 11 3.123853737590152 21 3.654668987689248 31 0.0 11 3.01014095822407 21 3.36279181303843 31 0.0 11 2.831449375676868 21 2.957406832281137 31 0.0 11 2.652757793129666 21 2.454729446289725 31 0.0 11 2.571534331220235 21 2.260144635821482 31 0.0 11 2.36035334708248 21 1.95205206029831 31 0.0 11 2.197906507397505 21 1.498020876923959 31 0.0 11 2.132927704216399 21 1.10885129703902 31 0.0 11 2.100438386759748 21 0.8980511267499693 31 0.0 11 2.051704242306954 21 0.8331895232605575 31 0.0 11 1.873012743893667 21 0.5759049246535924 31 0.0 11 1.434406116889832 21 0.121873782330784 31 0.0 0 SPLINE 5 468 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 30 73 26 74 24 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.8646921392024005 40 1.257064804698549 40 2.596203702109575 40 3.829928464764604 40 4.796876671495843 40 4.994155138908431 40 5.258138945894107 40 6.131109280850921 40 6.98879645023925 40 8.021082459592193 40 8.964796802719533 40 9.500750196824515 40 9.957389399465773 40 10.41604673278263 40 10.98381815995919 40 11.74813111592784 40 12.13269171211411 40 12.88394569932595 40 13.66173788290515 40 14.69273571626348 40 15.6576046125303 40 16.66275503766778 40 17.21081260649907 40 17.21081260649907 40 17.21081260649907 40 17.21081260649907 10 0.8495973930632629 20 0.2270156122129485 30 0.0 10 0.9525173103625753 20 0.4972977761698713 30 0.0 10 1.102139354872878 20 0.8902262882312969 30 0.0 10 1.552482042998384 20 1.630625392557413 30 0.0 10 1.980731958115298 20 2.525357415824089 30 0.0 10 2.445085657095797 20 3.601598224285498 30 0.0 10 2.851437233888835 20 4.313059949443732 30 0.0 10 2.912633170285868 20 4.78670343260301 30 0.0 10 3.015629426407737 20 5.220955387709592 30 0.0 10 2.934922348873456 20 5.894851569852115 30 0.0 10 3.197045781936646 20 6.802334613012373 30 0.0 10 3.763213729625642 20 7.571946585628737 30 0.0 10 4.079906929946233 20 8.341299666516992 30 0.0 10 4.323091531985072 20 8.959871698783162 30 0.0 10 4.225398001434414 20 9.446252153030696 30 0.0 10 4.144825676069985 20 9.931606070337466 30 0.0 10 4.159032561122893 20 10.53437559663971 30 0.0 10 4.330735685358746 20 11.09185338813847 30 0.0 10 4.664531417331279 20 11.63367728132606 30 0.0 10 4.791434225370445 20 12.27417624907776 30 0.0 10 4.787072100895013 20 13.13080603806114 30 0.0 10 5.13100962583986 20 14.0112561373981 30 0.0 10 5.680499014806579 20 14.85686580946883 30 0.0 10 5.801435155897011 20 15.71110295637039 30 0.0 10 5.79149173995566 20 16.22761566440252 30 0.0 10 5.787983153605438 20 16.40986987641648 30 0.0 11 0.8495973930632629 21 0.2270156122129485 31 0.0 11 1.190735899429327 21 1.021570213906723 31 0.0 11 1.385672140704855 21 1.362093591174602 31 0.0 11 1.986725691527567 21 2.558767153848496 31 0.0 11 2.506555780440834 21 3.677629731937795 31 0.0 11 2.880183604263564 21 4.569476738865692 31 0.0 11 2.912673005854117 21 4.764061508282384 31 0.0 11 2.961407066172995 21 5.023507922240039 31 0.0 11 2.993896467763548 21 5.895873467466866 31 0.0 11 3.221322110629628 21 6.722858870905351 31 0.0 11 3.741152199542909 21 7.614705877833241 31 0.0 11 4.131024766227866 21 8.474122041964886 31 0.0 11 4.277226947184502 21 8.98974880905148 31 0.0 11 4.228492886865623 21 9.443780033477377 31 0.0 11 4.163514167818419 21 9.897811216851732 31 0.0 11 4.179758826546745 21 10.46535020633255 31 0.0 11 4.407184469412825 21 11.19504320453691 31 0.0 11 4.585876051960028 21 11.53556658180479 31 0.0 11 4.764567634507216 21 12.26525958000915 31 0.0 11 4.829546437688335 21 13.0403327610534 31 0.0 11 5.1706849440544 21 14.01325673129152 31 0.0 11 5.609291571058236 21 14.87267293647471 31 0.0 11 5.787983153605438 21 15.86181230758518 31 0.0 11 5.787983153605438 21 16.40986987641648 31 0.0 0 SPLINE 5 469 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 17 73 13 74 11 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.7431954814413845 40 1.687014615741653 40 2.51809357164889 40 3.006990574913911 40 3.433568997169387 40 3.879799833740266 40 5.467774033435581 40 6.846634752672837 40 7.609260830205672 40 8.658750453126108 40 8.658750453126108 40 8.658750453126108 40 8.658750453126108 10 4.553386734503376 20 7.84172144899465 30 0.0 10 4.402873215938353 20 7.644672055498002 30 0.0 10 4.061215452904813 20 7.19738030635126 30 0.0 10 3.65072107705664 20 6.461890625718813 30 0.0 10 3.406112427570959 20 5.736649354286019 30 0.0 10 3.374669937523657 20 5.154368571588409 30 0.0 10 3.318738878404654 20 4.70121268104408 30 0.0 10 3.017005797721107 20 3.934193019428804 30 0.0 10 2.575523145738075 20 2.886999196661132 30 0.0 10 1.980461895505691 20 1.793583418680286 30 0.0 10 1.438524331809179 20 0.877307961184019 30 0.0 10 1.199316160948936 20 0.3217514287688764 30 0.0 10 1.060778377201017 20 0.0 30 0.0 11 4.553386734503376 21 7.84172144899465 31 0.0 11 4.114780107499541 21 7.241751657769118 31 0.0 11 3.659928737633464 21 6.414766295382175 31 0.0 11 3.416258436039058 21 5.6202116936884 31 0.0 11 3.367524291586278 21 5.133749708569343 31 0.0 11 3.302545572539074 21 4.712149285888155 31 0.0 11 3.156343391582424 21 4.290548904258507 31 0.0 11 2.522800439169159 21 2.834428927626959 31 0.0 11 1.873012828027569 21 1.618273944303538 31 0.0 11 1.499385004204853 21 0.953442549588594 31 0.0 11 1.060778377201017 21 0.0 31 0.0 0 LWPOLYLINE 5 46A 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 18 70 0 43 0.0 10 5.934391715033811 20 19.41216907604193 10 5.895267177070692 20 19.42518709531843 10 5.90830868972506 20 19.19086311780538 10 5.97351625299693 20 19.22991709353178 10 5.999599278305666 20 19.29500710781118 10 5.986557765651298 20 19.15180914207897 10 6.025682303614416 20 19.08671912779958 10 6.09088978275237 20 19.09973714707608 10 6.077848270098002 20 19.12577314457753 10 6.051765328923153 20 18.91748516456593 10 6.130014320715488 20 18.81334117456013 10 6.208263396641726 20 18.81334117456013 10 6.208263396641726 20 18.86541316956303 10 6.208263396641726 20 18.80032319633518 10 6.169138858678607 20 18.77428719883372 10 6.169138858678607 20 18.52694524309573 10 6.325637010531082 20 18.48789122631778 10 6.33867852318545 20 18.53996322132068 0 LWPOLYLINE 5 46B 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 22 70 0 43 0.0 10 4.784130029689634 20 13.69303568239554 10 4.849337592961504 20 13.54983771666334 10 4.771088517035266 20 13.26344178519893 10 4.679797928454661 20 13.26344178519893 10 4.575465827219673 20 13.27645976342389 10 4.731963979072148 20 13.19835181197109 10 4.705880953763397 20 13.09420782196528 10 4.614590365182792 20 13.01609982946093 10 4.65371490314591 20 12.97704585373453 10 4.65371490314591 20 12.85988384445224 10 4.601548852528424 20 12.83384784695079 10 4.640673390491542 20 12.76875787372294 10 4.614590365182792 20 12.61254188871424 10 4.497216751293436 20 12.53443389620989 10 4.575465827219673 20 12.45632594475708 10 4.536341289256554 20 12.35218195475129 10 4.484175238639068 20 12.27407396224694 10 4.549382801910937 20 12.28709198152343 10 4.549382801910937 20 12.14389397473969 10 4.536341289256554 20 12.02673200650894 10 4.497216751293436 20 11.96164203328109 10 4.432009188021581 20 11.96164203328109 0 LWPOLYLINE 5 46C 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 36 70 0 43 0.0 10 4.471133725984699 20 11.87838211307508 10 4.471133725984699 20 11.69613013056494 10 4.40592616271283 20 11.65707615483853 10 4.353760112095343 20 11.67009413306349 10 4.40592616271283 20 11.60500415983564 10 4.392884650058462 20 11.50086016982984 10 4.314635574132225 20 11.46180619410344 10 4.223344985551619 20 11.52689616733129 10 4.288552548823474 20 11.42275217732549 10 4.249428010860356 20 11.34464418482114 10 4.132054396971 20 11.33162620659619 10 4.132054396971 20 11.38369820159909 10 4.132054396971 20 11.20144621908894 10 4.132054396971 20 11.13635624586109 10 4.053805321044777 20 11.14937422408604 10 4.092929859007895 20 11.08428425085819 10 4.119012884316632 20 10.98014026085239 10 4.027722295736026 20 10.90203226834804 10 3.897307169192302 20 10.78487030011729 10 4.001639270427276 20 10.81090629761874 10 4.014680783081658 20 10.66770833188654 10 3.962514732464157 20 10.55054636365579 10 3.871224143883551 20 10.57658236115724 10 3.975556245118539 20 10.51149234687784 10 3.949473219809789 20 10.27716841041634 10 3.806016580611697 20 10.27716841041634 10 3.936431707155421 20 10.26415039113984 10 3.949473219809789 20 10.04284443290329 10 3.832099605920433 20 10.00379045717689 10 3.949473219809789 20 9.990772437900393 10 3.975556245118539 20 9.860592491444695 10 3.923390194501038 20 9.821538474666741 10 3.858182631229183 20 9.847574472168194 10 3.975556245118539 20 9.756448501438892 10 3.975556245118539 20 9.691358487159494 10 3.923390194501038 20 9.652304511433097 0 LWPOLYLINE 5 46D 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 21 70 0 43 0.0 10 5.365621269463829 20 17.93904522153529 10 5.430599988511048 20 17.84175281630118 10 5.446844731373275 20 17.76067581193941 10 5.495578791692153 20 17.77689121281176 10 5.576802253601584 20 17.76067581193941 10 5.59304691232991 20 17.66338344775683 10 5.560557510739357 20 17.58230644339507 10 5.511823450420479 20 17.54987564165036 10 5.414355329782722 20 17.58230644339507 10 5.641780972648803 20 17.46879863728859 10 5.625536313920477 20 17.32286002943741 10 5.560557510739357 20 17.19313682245858 10 5.641780972648803 20 17.04719821460741 10 5.658025631377128 20 16.98233661111799 10 5.609291571058236 20 16.77153644082894 10 5.674270374239355 20 16.73910563908423 10 5.739249093286559 20 16.67424403559482 10 5.804227896467665 20 16.56400229031706 10 5.739249093286559 20 16.35320212002801 10 5.59304691232991 20 16.41806368246588 10 5.609291571058236 20 16.49914068682764 0 LWPOLYLINE 5 46E 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 16 70 0 43 0.0 10 5.625536313920477 20 16.09375570607035 10 5.511823450420479 20 15.88295549472976 10 5.414355329782722 20 15.73701688687858 10 5.316887209144951 20 15.68837068426152 10 5.284397807554398 20 15.75323228775093 10 5.349376526601602 20 15.65593988251681 10 5.284397807554398 20 15.59107832007894 10 5.23566374723552 20 15.59107832007894 10 5.365621269463829 20 15.51000131571718 10 5.365621269463829 20 15.33163190612129 10 5.251908405963845 20 15.02353928954657 10 5.105706225007196 20 15.05597009129128 10 5.251908405963845 20 14.97489308692951 10 5.1706849440544 20 14.84516987995068 10 5.04072742182609 20 14.82895447907833 10 5.024482763097765 20 14.89381608256775 0 LWPOLYLINE 5 46F 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 4.910769899597767 20 21.58424423383147 10 4.894525240869441 20 21.40587486528713 10 4.829546437688335 20 21.40587486528713 10 4.699588915460012 20 21.5031672294697 10 4.845791180550563 20 21.29236705918065 10 4.894525240869441 20 21.16264385220183 0 LWPOLYLINE 5 470 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 44 70 0 43 0.0 10 5.186929602782726 20 20.40051997014967 10 5.203174345644967 20 20.29027822487192 10 5.186929686916641 20 20.11190881527603 10 5.154440285326074 20 20.01461645109345 10 5.105706225007196 20 19.94975484760404 10 5.056972164688318 20 19.96597024847639 10 5.138195626597763 20 19.93353944673168 10 5.186929686916641 20 19.88489324411462 10 5.1706849440544 20 19.7876008388805 10 5.1706849440544 20 19.69030843364638 10 5.219419004373293 20 19.65787763190168 10 5.1706849440544 20 19.56058522666755 10 5.089461482144969 20 19.5443698257952 10 5.203174345644967 20 19.49572362317814 10 5.219419004373293 20 19.41464661881638 10 5.186929686916641 20 19.36600041619931 10 5.121950883735522 20 19.34978501532696 10 5.203174345644967 20 19.34978501532696 10 5.23566374723552 20 19.3335696144546 10 5.268153064692171 20 19.25249265114439 10 5.300642466282724 20 19.15520024591026 10 5.23566374723552 20 19.1065540432932 10 5.300642466282724 20 19.0741232415485 10 5.381865928192155 20 19.05790784067614 10 5.398110586920481 20 18.97683083631438 10 5.333131867873277 20 18.83089222846319 10 5.23566374723552 20 18.66873821973966 10 5.105706225007196 20 18.68495362061201 10 5.300642466282724 20 18.6525228188673 10 5.365621269463829 20 18.53901501276084 10 5.268153064692171 20 18.45793804945061 10 5.381865928192155 20 18.50658421101613 10 5.479334048829926 20 18.53901501276084 10 5.511823450420479 20 18.44172264857825 10 5.381865928192155 20 18.39307644596119 10 5.479334048829926 20 18.37686104508884 10 5.528068109148804 20 18.36064564421649 10 5.528068109148804 20 18.31199944159942 10 5.511823450420479 20 18.23092243723766 10 5.544312852011032 20 18.32821484247178 10 5.625536313920477 20 18.32821484247178 10 5.641780972648803 20 18.24713783811001 10 5.641780972648803 20 18.11741463113118 10 5.625536313920477 20 17.95526062240765 0 LWPOLYLINE 5 471 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 4.829546437688335 20 20.81409883905946 10 4.927014642459994 20 20.65194487138746 10 4.959503959916645 20 20.52222166440863 10 4.894525240869441 20 20.47357546179158 0 LWPOLYLINE 5 472 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 4.959503959916645 20 20.26277525045098 10 5.008238104369439 20 20.14926744434451 10 4.975748702778886 20 19.92225183213156 10 4.891719904386659 20 19.94621676641979 0 LWPOLYLINE 5 473 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 4.862035839278888 20 21.01670524435065 10 5.04072742182609 20 20.91941283911653 10 4.975748702778886 20 20.7896896321377 0 LWPOLYLINE 5 474 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 6.247387934604844 20 18.47487324809283 10 6.260429447259213 20 18.30563928485918 10 6.312595497876714 20 18.26658526808124 10 6.390844573802937 20 18.29262126558268 0 LWPOLYLINE 5 475 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 6.312595497876714 20 18.25356728985628 10 6.286512472567963 20 18.14942329985048 10 6.312595497876714 20 18.08433332662263 10 6.390844573802937 20 18.07131530734613 10 6.403886086457319 20 18.13640528057398 0 ARC 5 476 330 462 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 5.080561228586828 20 27.181885784649 30 0.0 40 2.813116939741829 100 AcDbArc 50 260.568134042521 51 292.7554644515362 0 ARC 5 477 330 462 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 5.28180264505271 20 22.83820988617229 30 0.0 40 1.961468541058641 100 AcDbArc 50 63.11858001809762 51 92.29740210447749 0 ARC 5 478 330 462 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 5.37783582918065 20 26.10571392967445 30 0.0 40 1.319225559759235 100 AcDbArc 50 262.3918694972948 51 307.0820951730664 0 LINE 5 479 330 462 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 5.787983153605438 20 25.17105604582502 30 0.0 11 6.168728120693869 21 25.12038158274991 31 0.0 0 SPLINE 5 47A 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 0.5 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 11 71 3 72 16 73 12 74 10 42 0.0000000001 43 0.0000000001 44 0.0000000001 12 0.9823133051512078 22 -0.1872446808935042 32 0.0 13 0.9823133051512078 23 -0.1872446808935042 33 0.0 40 0.0 40 0.0 40 0.0 40 0.0 40 0.544832035746112 40 1.098102834263622 40 1.421723108651637 40 1.581473887023942 40 1.690407295901642 40 1.938885997029459 40 2.393737366895536 40 2.874774988101354 40 3.100350237211792 40 3.100350237211792 40 3.100350237211792 40 3.100350237211792 10 4.309716348775054 20 25.98663913664986 30 0.0 10 4.488114934703729 20 25.95263350309191 30 0.0 10 4.846716159120219 20 25.87453975244721 30 0.0 10 5.320628722089086 20 25.84814996824654 30 0.0 10 5.668943971209285 20 25.86759809521359 30 0.0 10 5.820817307744352 20 26.10707408183988 30 0.0 10 5.61525108298012 20 26.16658263918506 30 0.0 10 5.379274940112018 20 26.21766487354508 30 0.0 10 4.918767209575126 20 26.19437312118424 30 0.0 10 4.713050709658574 20 26.18493586547427 30 0.0 10 4.235854492603727 20 26.00071839182891 30 0.0 10 4.309716348775054 20 25.98663913664986 30 0.0 11 4.309716348775054 21 25.98663913664986 31 0.0 11 4.845791096416661 21 25.88934673141574 31 0.0 11 5.398110586920481 21 25.85691592967103 31 0.0 11 5.706759691696007 21 25.95420833490515 31 0.0 11 5.771738410743211 21 26.10014694275633 31 0.0 11 5.674270290105454 21 26.14879314537339 31 0.0 11 5.430599988511048 21 26.1974393069389 31 0.0 11 4.975748618644971 21 26.1974393069389 31 0.0 11 4.504652674184484 21 26.10014694275633 31 0.0 11 4.309716348775054 21 25.98663913664986 31 0.0 0 LWPOLYLINE 5 47B 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 10 70 0 43 0.0 10 4.748323059912806 20 22.45987583988701 10 4.894525240869441 20 22.3950142363976 10 4.894525240869441 20 22.24907562854642 10 4.797057120231684 20 22.18421402505701 10 4.699588915460012 20 22.21664482680171 10 4.780812377369457 20 22.13556786349149 10 4.748323059912806 20 21.9571984538956 10 4.683344256731686 20 21.89233685040619 10 4.585876136093929 20 21.98962925564031 10 4.520897332912809 20 22.05449085912972 0 LWPOLYLINE 5 47C 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 4.748323059912806 20 22.75175305558938 10 4.862035839278888 20 22.65446065035525 10 4.81330177896001 20 22.57338364599349 10 4.699588915460012 20 22.55716824512113 0 SPLINE 5 47D 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 0.5 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 11 71 3 72 30 73 26 74 24 42 0.0000000001 43 0.0000000001 44 0.0000000001 12 -0.9953205945278781 22 -0.0966277088037964 32 0.0 13 -0.9953205945278781 23 -0.0966277088037964 33 0.0 40 0.0 40 0.0 40 0.0 40 0.0 40 0.8286378663811371 40 1.15393611638921 40 1.350160891352761 40 1.41702582444835 40 1.534102964926489 40 1.638046595668222 40 1.761574044772734 40 1.870389580204972 40 2.004332532559794 40 2.183758341457719 40 2.459918044642678 40 2.759429960391264 40 2.86215187354742 40 2.885104611132531 40 2.95207604649468 40 3.149691569833398 40 3.460039888205275 40 3.605284383189697 40 3.663782321425668 40 3.790563662798378 40 3.988179269130306 40 4.354643738525597 40 4.529560949415305 40 4.529560949415305 40 4.529560949415305 40 4.529560949415305 10 5.917940675833762 20 25.0461459271049 30 0.0 10 5.643020564562166 20 25.01945613428608 30 0.0 10 5.229016334711039 20 25.03452776130108 30 0.0 10 4.837711838773645 20 25.02681423377078 30 0.0 10 4.563556099131979 20 24.98760579695168 30 0.0 10 4.60096592934943 20 24.84188080150851 30 0.0 10 4.701496174343366 20 24.81027416028813 30 0.0 10 4.785737100432718 20 24.73957189820687 30 0.0 10 4.866991352891527 20 24.63136094747927 30 0.0 10 4.726827425621088 20 24.50188833950511 30 0.0 10 4.949316850846098 20 24.49532575324218 30 0.0 10 5.109886254710903 20 24.47369795854756 30 0.0 10 5.378838282022003 20 24.46053006802734 30 0.0 10 5.595380718714372 20 24.53918207612316 30 0.0 10 5.730775243805855 20 24.55315245814778 30 0.0 10 5.790553868858127 20 24.60566045042054 30 0.0 10 5.626705063663924 20 24.60806252057651 30 0.0 10 5.489349040169703 20 24.6589579548547 30 0.0 10 5.295413433474466 20 24.64696224274947 30 0.0 10 5.037680619683504 20 24.70867785718339 30 0.0 10 5.124238835503035 20 24.80888552519024 30 0.0 10 5.211026370854917 20 24.89420751453455 30 0.0 10 5.48199678204663 20 24.89970747717701 30 0.0 10 5.583337018817403 20 24.9252746876248 30 0.0 10 5.975973576612395 20 25.05177987687778 30 0.0 10 5.917940675833762 20 25.0461459271049 30 0.0 11 5.917940675833762 21 25.0461459271049 31 0.0 11 5.089461482144969 21 25.02993052623255 31 0.0 11 4.764567634507216 21 25.01371512536019 31 0.0 11 4.585876051960028 21 24.93263812099843 31 0.0 11 4.602120794822255 21 24.86777651750902 31 0.0 11 4.699588915460012 21 24.80291495507115 31 0.0 11 4.780812377369457 21 24.73805335158173 31 0.0 11 4.829546437688335 21 24.62454554547526 31 0.0 11 4.780812377369457 21 24.52725314024114 31 0.0 11 4.910769899597767 21 24.49482233849643 31 0.0 11 5.089461482144969 21 24.47860693762407 31 0.0 11 5.365621185329928 21 24.47860693762407 31 0.0 11 5.658025631377128 21 24.54346854111348 31 0.0 11 5.755493752014885 21 24.57589934285819 31 0.0 11 5.771738410743211 21 24.59211474373055 31 0.0 11 5.706759691696007 21 24.6083301446029 31 0.0 11 5.511823450420479 21 24.6407609463476 31 0.0 11 5.203174261511051 21 24.67319174809231 31 0.0 11 5.073216823416643 21 24.73805335158173 31 0.0 11 5.105706140873294 21 24.78669955419879 31 0.0 11 5.203174261511051 21 24.86777651750902 31 0.0 11 5.398110586920481 21 24.90020731925372 31 0.0 11 5.755493752014885 21 24.98128432361548 31 0.0 11 5.917940675833762 21 25.0461459271049 31 0.0 0 SPLINE 5 47E 330 462 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 12 73 8 74 6 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.2183323161183257 40 0.5833029728893546 40 0.7898777897911656 40 0.9393890819909389 40 1.134650797137966 40 1.134650797137966 40 1.134650797137966 40 1.134650797137966 10 4.114779770963906 20 25.91159260407967 30 0.0 10 4.158974015507308 20 25.85025177167326 30 0.0 10 4.277044646026316 20 25.68637181776495 30 0.0 10 4.568566465079254 20 25.67582114136396 30 0.0 10 4.757633629111142 20 25.4991509259944 30 0.0 10 4.790525939178312 20 25.31164767142237 30 0.0 10 4.773953282984932 20 25.19775589444388 30 0.0 10 4.764567382105497 20 25.1332534443098 30 0.0 11 4.114779770963906 21 25.91159260407967 31 0.0 11 4.260981951920555 21 25.74943859535614 31 0.0 11 4.602120458286634 21 25.61971542942886 31 0.0 11 4.748322639243269 21 25.47377682157768 31 0.0 11 4.780812040833822 21 25.32783825477804 31 0.0 11 4.764567382105497 21 25.1332534443098 31 0.0 0 LWPOLYLINE 5 47F 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 4.81330177896001 20 22.00584465651266 10 4.927014642459994 20 21.9571984538956 10 4.910769899597767 20 21.87612144953383 10 4.845791180550563 20 21.79504444517207 0 LWPOLYLINE 5 480 330 462 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 5.04072742182609 20 23.51387673238381 10 5.138195542463847 20 23.49766133151146 10 5.186929602782726 20 23.36793812453263 10 5.154440201192173 20 23.09227635075417 10 5.089461482144969 20 23.09227635075417 10 4.991993361507212 20 23.14092255337123 0 LINE 5 481 330 462 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 4.764567382105497 20 25.1332534443098 30 0.0 11 5.787983153605438 21 25.17105604582502 31 0.0 0 ENDBLK 5 483 330 462 100 AcDbEntity 8 0 48 0.1 100 AcDbBlockEnd 0 BLOCK 5 4DE 330 492 100 AcDbEntity 8 0 48 0.1 100 AcDbBlockBegin 2 A$C44E76109 70 0 10 0.0 20 0.0 30 0.0 3 A$C44E76109 1 0 SPLINE 5 493 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 12 73 8 74 6 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.9384441384113387 40 2.507174684709848 40 3.39508229963135 40 4.037717335459672 40 4.876998552705477 40 4.876998552705477 40 4.876998552705477 40 4.876998552705477 10 63.57733129210113 20 286.484209947106 30 0.0 10 63.76728864921905 20 286.2205524838385 30 0.0 10 64.27478425545377 20 285.5161575281004 30 0.0 10 65.52781425656906 20 285.4708082156356 30 0.0 10 66.34046982220517 20 284.7114376790469 30 0.0 10 66.48184878126237 20 283.9055041676248 30 0.0 10 66.41061556971085 20 283.4159702661899 30 0.0 10 66.37027273901765 20 283.1387234191922 30 0.0 11 63.57733129210113 21 286.484209947106 31 0.0 11 64.20574298204705 21 285.7872335136034 31 0.0 11 65.67203728688169 21 285.2296525432507 31 0.0 11 66.30044897682755 21 284.6023737530984 31 0.0 11 66.44009613958025 21 283.9750951393953 31 0.0 11 66.37027273901765 21 283.1387234191922 31 0.0 0 SPLINE 5 494 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 80 73 76 74 74 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 1.124340752973842 40 2.751534773367501 40 4.638545140865429 40 7.221135891993442 40 10.39538471081 40 14.53649017973524 40 18.24100830392926 40 20.67492388846346 40 23.48460351445049 40 26.14779929642223 40 29.25682452624394 40 32.09570504656786 40 33.46520664083647 40 34.63014352616404 40 35.95623806929268 40 38.29410314601787 40 40.24563698337581 40 42.78948618996325 40 45.45268183438322 40 47.88708964416849 40 50.46639241276828 40 51.51253719549005 40 52.17039715410928 40 52.72797830091133 40 53.35913120460512 40 54.15390588113652 40 55.04181349605804 40 56.08795813771223 40 56.58081275188031 40 58.85014257756266 40 60.52604413337927 40 62.36514103614073 40 63.44726907119298 40 64.49506259725317 40 65.99677011620214 40 67.62316206583729 40 68.74703389020256 40 69.60923779372603 40 70.40480764787314 40 71.02842776904357 40 71.79827465468147 40 76.54259069565869 40 78.54978763258329 40 79.14971533413932 40 80.42974996165495 40 83.37521676932702 40 84.86527630444705 40 85.83627830147115 40 87.00481145641035 40 87.70527666370075 40 88.34791169952911 40 89.87878279096229 40 91.74964283475125 40 92.74764024171702 40 93.73334924415118 40 94.54931153517797 40 94.80074956424623 40 95.43190229257378 40 96.14978937786633 40 97.79030452475934 40 98.93419880240871 40 100.8384085378806 40 102.1848130248794 40 104.0890227603514 40 106.3821041870023 40 107.2884158558064 40 108.8939007173158 40 110.9665841374189 40 112.6624837061944 40 113.5792511799214 40 113.9279663247225 40 115.2743923202664 40 117.9878027687079 40 117.9878027687079 40 117.9878027687079 40 117.9878027687079 10 71.46739038240245 20 286.8326981638573 30 0.0 10 71.6789296073198 20 286.5169029732017 30 0.0 10 72.19661744506095 20 285.7440754775754 30 0.0 10 72.30172399074183 20 284.1546941038006 30 0.0 10 72.5162280081794 20 282.1479127202069 30 0.0 10 72.33578813348507 20 279.5857055355112 30 0.0 10 71.72212102273848 20 276.3465996537896 30 0.0 10 71.31446049309286 20 272.6910553038766 30 0.0 10 71.07261095202139 20 269.273824652206 30 0.0 10 70.88502873380244 20 266.2962804441672 30 0.0 10 70.34185417945167 20 263.6967716280788 30 0.0 10 70.69274862411191 20 260.8116809918757 30 0.0 10 71.70804304069569 20 258.1119210962471 30 0.0 10 72.91577187122886 20 255.9748239783663 30 0.0 10 73.36833461892581 20 254.2304607626469 30 0.0 10 73.52165313263423 20 252.9510501473196 30 0.0 10 73.50973933649943 20 251.3333784938818 30 0.0 10 74.07926142279208 20 249.5215585178584 30 0.0 10 74.03542108727703 20 247.2166364766979 30 0.0 10 73.49785845089617 20 244.8886862836005 30 0.0 10 73.26391030008022 20 242.3427106715625 30 0.0 10 73.17176048630805 20 239.7991796586584 30 0.0 10 72.58549201874533 20 237.7734784209327 30 0.0 10 71.70025572906742 20 236.6761344500249 30 0.0 10 71.18717694265654 20 236.0658899080501 30 0.0 10 71.25310637241748 20 235.4197505527114 30 0.0 10 71.3803511317069 20 234.7806364882655 30 0.0 10 71.18000006359631 20 233.9696604868035 30 0.0 10 70.43638220473315 20 233.4238148982538 30 0.0 10 69.83670985794012 20 232.7957042745371 30 0.0 10 69.76034132139054 20 231.5028151878701 30 0.0 10 69.45234018520018 20 230.0637624055823 30 0.0 10 68.88042920992832 20 228.2129318651961 30 0.0 10 68.35315045437401 20 226.7922045184717 30 0.0 10 67.86082373493728 20 225.5217558992416 30 0.0 10 68.20069560309597 20 224.2882786756961 30 0.0 10 67.50367649230482 20 222.9872730011198 30 0.0 10 66.57550580751198 20 221.8659114612386 30 0.0 10 66.47712964971788 20 220.6625292009005 30 0.0 10 66.57596584976108 20 219.6314567422469 30 0.0 10 67.37465671932877 20 219.3370555346232 30 0.0 10 67.71372996933294 20 218.6244029649263 30 0.0 10 67.25731210937472 20 216.5742543569884 30 0.0 10 67.00669340413336 20 214.1431821111348 30 0.0 10 66.32931930932963 20 211.7113435670773 30 0.0 10 65.52215337981028 20 210.6910388165917 30 0.0 10 64.73844546402796 20 209.2721209704043 30 0.0 10 64.3215522909179 20 207.3925637936138 30 0.0 10 64.09352173777522 20 205.5892809256691 30 0.0 10 63.63726033294057 20 204.4791615334526 30 0.0 10 63.18399798698159 20 203.5814529569095 30 0.0 10 63.43200618877907 20 202.7407916686547 30 0.0 10 63.1662291914279 20 201.7905693455491 30 0.0 10 62.36316886226993 20 200.6960099756115 30 0.0 10 61.67779601107635 20 199.3990527175084 30 0.0 10 61.33151112794878 20 198.1266246872683 30 0.0 10 61.53943129487396 20 197.2041714115577 30 0.0 10 61.69347355360532 20 196.5234044053862 30 0.0 10 62.08209965818937 20 196.0806158595483 30 0.0 10 61.91581484727516 20 195.4789480942448 30 0.0 10 61.36972439654324 20 194.6842660332349 30 0.0 10 60.95742806130726 20 193.5492763511557 30 0.0 10 59.84969100395749 20 192.4122805310753 30 0.0 10 59.39321373459774 20 190.9826874894936 30 0.0 10 58.77838580532634 20 189.386352641814 30 0.0 10 57.96224990850871 20 187.7194677669239 30 0.0 10 57.45768755907451 20 186.0979188060009 30 0.0 10 56.90263380883652 20 184.5822068510593 30 0.0 10 55.82201315793164 20 183.4431430808178 30 0.0 10 55.35475552288637 20 181.6569145060599 30 0.0 10 55.01379680321694 20 180.1703043645369 30 0.0 10 55.07204983338178 20 179.1043711631935 30 0.0 10 54.47841806549155 20 178.4401711583606 30 0.0 10 53.75705733409173 20 177.1588590852016 30 0.0 10 52.73772460393619 20 176.24479413212 30 0.0 10 52.05644886324962 20 175.6338745966987 30 0.0 11 71.46739038240245 21 286.8326981638573 31 0.0 11 72.02597867178578 21 285.8569311569537 31 0.0 11 72.30527263566367 21 284.253885536347 31 0.0 11 72.44491979841637 21 282.3720495187887 31 0.0 11 72.30527263566367 21 279.7932370677277 31 0.0 11 71.81650810847049 21 276.6568434698647 31 0.0 11 71.32774321964976 21 272.5446830415474 31 0.0 11 71.04844925577189 21 268.8507082968824 31 0.0 11 70.83897869245659 21 266.4258233190447 31 0.0 11 70.48986096638855 21 263.637917937933 31 0.0 11 70.7691549302665 21 260.9894076670725 31 0.0 11 71.81650810847049 21 258.0621069992603 31 0.0 11 73.00350808779969 21 255.4832945481993 31 0.0 11 73.35262581386766 21 254.1590395009937 31 0.0 11 73.49227297662041 21 253.0025030265444 31 0.0 11 73.56209637718301 21 251.6782479793388 31 0.0 11 73.98103750381359 21 249.3782259252296 31 0.0 11 73.98103750381359 21 247.4266920878716 31 0.0 11 73.56209637718301 21 244.917577280161 31 0.0 11 73.28280205167757 21 242.2690671857498 31 0.0 11 73.07333148836228 21 239.8436881499189 31 0.0 11 72.23544923510107 21 237.4042709855584 31 0.0 11 71.6070375451552 21 236.5678992653554 31 0.0 11 71.25791981908716 21 236.0103182950026 31 0.0 11 71.25791981908716 21 235.4527371482006 31 0.0 11 71.32774321964976 21 234.8254583580482 31 0.0 11 71.11827265633448 21 234.0587844576447 31 0.0 11 70.48986096638855 21 233.4315056674924 31 0.0 11 69.86144927644268 21 232.5951341237386 31 0.0 11 69.7916255142526 21 232.1072506202868 31 0.0 11 69.37268438762195 21 229.8769263859771 31 0.0 11 68.88391986042877 21 228.2738807653704 31 0.0 11 68.25550817048285 21 226.5454779865929 31 0.0 11 67.97621420660497 21 225.5000135127883 31 0.0 11 68.04603760716756 21 224.4545490389837 31 0.0 11 67.48744931778429 21 223.0605961719786 31 0.0 11 66.64956706452308 21 221.6666434814228 31 0.0 11 66.50991990177039 21 220.5514813642679 31 0.0 11 66.71939046508568 21 219.7151096440648 31 0.0 11 67.34780215503154 21 219.2272263170623 31 0.0 11 67.62709648053697 21 218.6696451702603 31 0.0 11 67.5572727183469 21 217.9029712698567 31 0.0 11 66.71939046508568 21 213.233229518288 31 0.0 11 66.02115501294966 21 211.3513935007297 31 0.0 11 65.67203764850917 21 210.8635099972778 31 0.0 11 65.04362559693575 21 209.7483477036738 31 0.0 11 64.27556674423716 21 206.9047829841906 31 0.0 11 63.99627278035925 21 205.4411326502845 31 0.0 11 63.64715505429128 21 204.5350632867312 31 0.0 11 63.29803732822324 21 203.4199011695764 31 0.0 11 63.36786109041338 21 202.7229247360738 31 0.0 11 63.22821392766064 21 202.0956461223707 31 0.0 11 62.46015507496203 21 200.7713908987159 31 0.0 11 61.62227246007332 21 199.098647634759 31 0.0 11 61.41280189675804 21 198.1228808043047 31 0.0 11 61.55244905951072 21 197.1471139738504 31 0.0 11 61.83174338501615 21 196.3804398969975 31 0.0 11 61.97139018614136 21 196.1713469669467 31 0.0 11 61.90156678557876 21 195.5440683532437 31 0.0 11 61.55244905951072 21 194.9167895630914 31 0.0 11 60.78439020681216 21 193.4671773577148 31 0.0 11 60.08615475467615 21 192.5611081706108 31 0.0 11 59.31809590197753 21 190.8186672633036 31 0.0 11 58.82933137478435 21 189.5641098594483 31 0.0 11 58.06127252208574 21 187.8216689521411 31 0.0 11 57.29321366938712 21 185.6610421847325 31 0.0 11 56.94409594331915 21 184.8246704645294 31 0.0 11 56.03638992786784 21 183.5004154173238 31 0.0 11 55.33815483735931 21 181.5488815799658 31 0.0 11 55.05886051185393 21 179.876138316009 31 0.0 11 54.91921371072873 21 178.9700691289049 31 0.0 11 54.7097427857859 21 178.6912785555039 31 0.0 11 53.94168429471483 21 177.5854082576073 31 0.0 11 52.05644886324962 21 175.6338745966987 31 0.0 0 SPLINE 5 495 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 87 73 83 74 81 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 2.12380121355216 40 4.524895794769534 40 5.871300577457054 40 6.068613210146448 40 6.493312788757621 40 7.055482922280981 40 8.39620280886165 40 8.708012711682878 40 9.677588383443733 40 11.03449273858428 40 12.64359155070634 40 13.59577677582961 40 13.87466932660585 40 14.49896497840353 40 15.25327946729887 40 18.70945218506634 40 24.00008713158684 40 25.80978087142272 40 27.13587543359234 40 28.23809116637125 40 29.08604086373894 40 29.74737028049779 40 32.17224467943012 40 32.61884207585449 40 33.12206752374025 40 34.0152623658067 40 35.05160405370203 40 37.75758935260765 40 40.68774659747698 40 41.99767558304663 40 43.54526530136732 40 45.70952163527787 40 49.51441988902199 40 52.49453902704485 40 55.17331719712207 40 56.0825366349389 40 57.33903557518289 40 60.96936096335552 40 62.88330731781063 40 63.60119440310323 40 64.9764852427737 40 66.06782037384277 40 67.25268013434789 40 69.12000765679398 40 70.42993664236367 40 72.00252660990485 40 73.21985901662788 40 74.4770498186174 40 76.55653738252334 40 79.13535001003356 40 81.72196163729784 40 84.36882005378221 40 86.63946770911371 40 88.41653949073009 40 91.4840304063521 40 93.53519102543115 40 96.8418380564036 40 99.42114099188312 40 100.1719948186147 40 101.7116887328136 40 103.5433678299021 40 104.24079768505 40 104.8838699831029 40 105.5111485968059 40 106.1110765088047 40 107.0202960954075 40 107.7901431239685 40 108.603339209473 40 109.9259980429907 40 111.2282260986533 40 112.265203251815 40 113.3023582788321 40 113.6577726067377 40 114.0066636666058 40 114.4306386320875 40 114.9755753328137 40 115.7304134068882 40 116.1981284167868 40 116.8559885249587 40 118.1734495665001 40 118.1734495665001 40 118.1734495665001 40 118.1734495665001 10 45.89103076835273 20 175.7035722400489 30 0.0 10 46.15015450691178 20 176.3625667171339 30 0.0 10 46.70223438493846 20 177.7665970562779 30 0.0 10 47.77500035634719 20 179.4385053972595 30 0.0 10 48.00488265378979 20 180.7589993162702 30 0.0 10 48.44341478654865 20 181.2949454798478 30 0.0 10 48.93277614339933 20 181.1756223745091 30 0.0 10 49.22800032155947 20 182.0860817055469 30 0.0 10 49.15768646303302 20 182.761987540729 30 0.0 10 49.52609579795019 20 183.599643137286 30 0.0 10 50.53491279044301 20 183.7747979767847 30 0.0 10 51.09605965510846 20 185.0987969692258 30 0.0 10 51.65997799368914 20 186.1695624678744 30 0.0 10 51.89624197368173 20 187.2418096303472 30 0.0 10 52.4961603204953 20 187.4509421452433 30 0.0 10 53.03483176397364 20 187.652510737261 30 0.0 10 53.7617895838393 20 189.178774875545 30 0.0 10 55.65514501320557 20 191.6862065122017 30 0.0 10 56.35317852881487 20 195.2430676515942 30 0.0 10 57.33818665362337 20 197.8772727842707 30 0.0 10 57.33670165079342 20 199.3401882676746 30 0.0 10 56.72850707194392 20 200.3320548243883 30 0.0 10 56.96483268215976 20 201.2197678811296 30 0.0 10 57.41376894723821 20 202.4362017099084 30 0.0 10 57.56553621585431 20 203.6514109715229 30 0.0 10 58.23784275046027 20 204.5880577730145 30 0.0 10 58.80893769575661 20 204.8539645512583 30 0.0 10 59.30305160701765 20 205.5463091623611 30 0.0 10 59.7215337836112 20 207.028686889027 30 0.0 10 60.4550460692308 20 209.1887779973534 30 0.0 10 62.25261421381276 20 210.7678388366565 30 0.0 10 63.08528193522239 20 212.526071701217 30 0.0 10 63.3620786455198 20 214.2354044195486 30 0.0 10 62.36888490475336 20 216.6040406379636 30 0.0 10 61.90506941564055 20 219.5732009759819 30 0.0 10 62.4248194200383 20 222.7882649959275 30 0.0 10 63.65315029700455 20 224.6030208668797 30 0.0 10 64.70706075559042 20 225.9055395564706 30 0.0 10 64.48603679479024 20 227.9435386546244 30 0.0 10 64.79881209449151 20 230.1128880020121 30 0.0 10 64.91678762862964 20 232.2742908861755 30 0.0 10 65.63429663540301 20 233.4193094803148 30 0.0 10 66.13803612499395 20 234.332455660053 30 0.0 10 66.84290728144691 20 235.3922967993804 30 0.0 10 66.64173582229913 20 236.8101927940459 30 0.0 10 66.65351236915421 20 238.3079813023864 30 0.0 10 67.54934813114835 20 239.6715575848411 30 0.0 10 67.75658308683038 20 241.0297197786426 30 0.0 10 67.92556025389638 20 242.4087743001686 30 0.0 10 69.04452790496366 20 243.5459311051886 30 0.0 10 69.2715894523781 20 245.591687798766 30 0.0 10 69.39839471247228 20 248.0063446349494 30 0.0 10 68.53258328768932 20 250.5034992141595 30 0.0 10 68.08461765701934 20 252.9670170911939 30 0.0 10 67.28112583837471 20 255.0517512266828 30 0.0 10 66.74048642839148 20 257.3883741036805 30 0.0 10 67.1720279940656 20 259.7051334446882 30 0.0 10 66.61331134171298 20 262.488322554943 30 0.0 10 65.61191165838348 20 264.9472848765681 30 0.0 10 65.067781135866 20 267.0792888121652 30 0.0 10 64.29423785608573 20 268.562304070719 30 0.0 10 64.736413047038 20 269.9545627087936 30 0.0 10 64.70759244471209 20 271.3730747850261 30 0.0 10 65.3409141114775 20 272.2235923946462 30 0.0 10 65.95600374623498 20 272.648784490555 30 0.0 10 65.68310584468332 20 273.3687247365053 30 0.0 10 66.25472094171415 20 273.8925522596291 30 0.0 10 66.75779184774629 20 274.5049602130013 30 0.0 10 66.60437375809272 20 275.4105214684933 30 0.0 10 67.29748299157883 20 276.1628890364107 30 0.0 10 67.69977040727205 20 277.2938336097271 30 0.0 10 67.33218181394858 20 278.5349647890909 30 0.0 10 66.53962870493636 20 279.3854528392495 30 0.0 10 65.82991404969956 20 279.7304898313496 30 0.0 10 65.57166572541932 20 280.4244391733547 30 0.0 10 66.04186376326772 20 280.5398029602026 30 0.0 10 66.09537026513345 20 281.1002147580006 30 0.0 10 65.52144758977814 20 281.3911011595103 30 0.0 10 65.01713790358414 20 281.642906770208 30 0.0 10 64.63630361081214 20 282.2499103338717 30 0.0 10 65.266801274466 20 283.0072911692367 30 0.0 10 65.92876747673201 20 283.0861366221127 30 0.0 10 66.37027273901765 20 283.1387234191922 30 0.0 11 45.89103076835273 21 175.7035722400489 31 0.0 11 46.72891338324143 21 177.6551060774068 31 0.0 11 47.77626619981794 21 179.8157326683662 31 0.0 11 48.26503108863867 21 181.0702902486709 31 0.0 11 48.40467788976387 21 181.2096855353714 31 0.0 11 48.82361937802199 21 181.2793831787216 31 0.0 11 49.10291334189988 21 181.7672665057241 31 0.0 11 49.31238390521517 21 183.091521729379 31 0.0 11 49.45203106796786 21 183.3703121263308 31 0.0 11 50.28991332122908 21 183.8581956297826 31 0.0 11 51.06093293115896 21 184.9747609839393 31 0.0 11 51.69312429838419 21 186.4544680706218 31 0.0 11 52.12911839313369 21 187.3009701983726 31 0.0 11 52.38461931600958 21 187.4127750877471 31 0.0 11 52.9432076053929 21 187.6915656611482 31 0.0 11 53.36214873202348 21 188.3188444513005 31 0.0 11 55.107737000736 21 191.3018046339334 31 0.0 11 56.78350186888592 21 196.3200344258041 31 0.0 11 57.27226675770658 21 198.0624753331112 31 0.0 11 57.2024429955165 21 199.3867303803168 31 0.0 11 56.85332526944852 21 200.4321950305707 31 0.0 11 56.99297243220121 21 201.2685665743244 31 0.0 11 57.2024429955165 21 201.8958453644768 31 0.0 11 57.97050184821511 21 204.195867418586 31 0.0 11 58.2497961737205 21 204.544355458888 31 0.0 11 58.66873730035113 21 204.823146032289 31 0.0 11 59.22732558973439 21 205.5201224657916 31 0.0 11 59.57644331580244 21 206.4958892962459 31 0.0 11 60.62379613237894 21 208.9909661518763 31 0.0 11 62.43920816328155 21 211.2909880295362 31 0.0 11 62.99779645266482 21 212.4758479664906 31 0.0 11 63.20726701598011 21 214.009195943747 31 0.0 11 62.64867872659684 21 216.1001250678054 31 0.0 11 62.09009043721351 21 219.8637974558207 31 0.0 11 62.64867872659684 21 222.791098123633 31 0.0 11 64.04514926924132 21 225.0770820492126 31 0.0 11 64.53391415806205 21 225.8437559496162 31 0.0 11 64.60373755862464 21 227.0983133534715 31 0.0 11 64.81320812193994 21 230.7225904547863 31 0.0 11 65.16232584800791 21 232.6044266487939 31 0.0 11 65.51144357407595 21 233.2317054389462 31 0.0 11 66.20967866458442 21 234.4165651994513 31 0.0 11 66.69844355340515 21 235.392332206355 31 0.0 11 66.69844355340515 21 236.57719196686 31 0.0 11 66.85903871272088 21 238.4376008657016 31 0.0 11 67.41762700210421 21 239.622460802656 31 0.0 11 67.76674472817219 21 241.1558087799124 31 0.0 11 68.04603869205009 21 242.3406687168668 31 0.0 11 68.74427414418611 21 243.3861331906713 31 0.0 11 69.23303903300683 21 245.4073648478288 31 0.0 11 69.23303903300683 21 247.986177475339 31 0.0 11 68.60462698143341 21 250.495292459499 31 0.0 11 67.97621529148748 21 253.0664708323182 31 0.0 11 67.27797983935147 21 255.2270975997269 31 0.0 11 66.92886211328349 21 256.9695386834833 31 0.0 11 66.99868587547358 21 260.0362348144453 31 0.0 11 66.64956814940561 21 262.0574662951535 31 0.0 11 65.60221497120162 21 265.1938600694658 31 0.0 11 64.76433271794039 21 267.6332774102756 31 0.0 11 64.48503839243496 21 268.3302538437781 31 0.0 11 64.62468555518771 21 269.8636018210345 31 0.0 11 64.97380328125569 21 271.6617022431623 31 0.0 11 65.39274440788625 21 272.2192833899644 31 0.0 11 65.81168553451689 21 272.7071668934162 31 0.0 11 65.81168553451689 21 273.3344455071192 31 0.0 11 66.16080326058488 21 273.8223290105711 31 0.0 11 66.64956814940561 21 274.5890030874239 31 0.0 11 66.7193915499682 21 275.3556771642767 31 0.0 11 67.13833303822626 21 276.0526534213299 31 0.0 11 67.5572741648569 21 277.3072110016346 31 0.0 11 67.20815643878887 21 278.5617685819392 31 0.0 11 66.50992098665291 21 279.3284424823427 31 0.0 11 65.7418621339543 21 280.0254189158453 31 0.0 11 65.6720387333917 21 280.3739071325967 31 0.0 11 65.95133269726959 21 280.5830000626474 31 0.0 11 66.02115645945968 21 281.0011859227489 31 0.0 11 65.60221497120162 21 281.3496741395002 31 0.0 11 64.97380328125569 21 281.7678598231525 31 0.0 11 64.76433271794039 21 282.186045683254 31 0.0 11 65.11345044400838 21 282.743626830056 31 0.0 11 66.37027273901765 21 283.1387234191922 31 0.0 0 LINE 5 496 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 66.37027273901765 20 283.1387234191922 30 0.0 11 70.769156738404 21 283.3012079768581 31 0.0 0 LINE 5 497 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 70.769156738404 20 283.3012079768581 30 0.0 11 72.40568901610917 21 283.0833971017415 31 0.0 0 ARC 5 498 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 69.00624614717961 20 287.3185894992669 30 0.0 40 5.670344710343114 100 AcDbArc 50 262.3918694972948 51 307.0820951730664 0 ARC 5 499 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 68.59347271839869 20 273.2740812405893 30 0.0 40 8.430857546700464 100 AcDbArc 50 63.11858001809762 51 92.29740210447749 0 ARC 5 49A 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 67.72848932498449 20 291.9442316725346 30 0.0 40 12.0914445909863 100 AcDbArc 50 260.568134042521 51 292.7554644515362 0 SPLINE 5 49B 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 0.5 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 11 71 3 72 30 73 26 74 24 42 0.0000000001 43 0.0000000001 44 0.0000000001 12 -0.9953205945278781 22 -0.0966277088037964 32 0.0 13 -0.9953205945278781 23 -0.0966277088037964 33 0.0 40 0.0 40 0.0 40 0.0 40 0.0 40 3.561682312524186 40 4.959891434210542 40 5.803312111229501 40 6.090713470975139 40 6.593938821106682 40 7.040713227795547 40 7.571663536050523 40 8.039378545949148 40 8.615097160369803 40 9.38631189226832 40 10.5733118715975 40 11.86068520558573 40 12.30220837999091 40 12.4008646963356 40 12.68872382811225 40 13.53812227188549 40 14.87207303748847 40 15.49636836572004 40 15.74780639478826 40 16.29274270465946 40 17.14214150515722 40 18.71729281282558 40 19.46912851990319 40 19.46912851990319 40 19.46912851990319 40 19.46912851990319 10 71.32774502778733 20 282.7643146262758 30 0.0 10 70.14607310884699 20 282.6495955591605 30 0.0 10 68.3665846222652 20 282.7143769908789 30 0.0 10 66.68466498217191 20 282.6812224179509 30 0.0 10 65.5062785139996 20 282.5126952463286 30 0.0 10 65.66707484736285 20 281.886334613029 30 0.0 10 66.0991777115879 20 281.7504817639617 30 0.0 10 66.4612652152081 20 281.446586653049 30 0.0 10 66.8105152863686 20 280.9814702917716 30 0.0 10 66.20805744456944 20 280.424966278997 30 0.0 10 67.16436982504074 20 280.3967587249313 30 0.0 10 67.85453525059077 20 280.3037973277417 30 0.0 10 69.0105549275275 20 280.2471986075265 30 0.0 10 69.94130573915332 20 280.5852636145034 30 0.0 10 70.52326355787688 20 280.6453116337587 30 0.0 10 70.78020628298496 20 280.8710034527447 30 0.0 10 70.07594521181636 20 280.8813281206544 30 0.0 10 69.4855564071935 20 281.1000887824726 30 0.0 10 68.65197511896241 20 281.0485283634223 30 0.0 10 67.54417828577477 20 281.3137967288374 30 0.0 10 67.91622605090342 20 281.7445130805748 30 0.0 10 68.28925948583479 20 282.111247250767 30 0.0 10 69.45395465596236 20 282.1348873961886 30 0.0 10 69.88953905717952 20 282.2447813377124 30 0.0 10 71.57718421543926 20 282.7885306801998 30 0.0 10 71.32774502778733 20 282.7643146262758 30 0.0 11 71.32774502778733 21 282.7643146262758 31 0.0 11 67.76674472817219 21 282.6946169829255 31 0.0 11 66.37027382390016 21 282.6249193395753 31 0.0 11 65.60221497120162 21 282.276431122824 31 0.0 11 65.6720387333917 21 281.997640549423 31 0.0 11 66.09097986002227 21 281.7188501524713 31 0.0 11 66.44009758609032 21 281.4400595790703 31 0.0 11 66.64956814940561 21 280.9521760756184 31 0.0 11 66.44009758609032 21 280.5339902155169 31 0.0 11 66.99868587547358 21 280.3945949288164 31 0.0 11 67.76674472817219 21 280.3248972854661 31 0.0 11 68.95374470750138 21 280.3248972854661 31 0.0 11 70.21056844902074 21 280.6036878588671 31 0.0 11 70.62950957565131 21 280.7430831455677 31 0.0 11 70.69933297621391 21 280.8127807889179 31 0.0 11 70.42003901233602 21 280.8824784322682 31 0.0 11 69.58215675907481 21 281.0218737189687 31 0.0 11 68.25550925536538 21 281.1612690056692 31 0.0 11 67.6969213276096 21 281.4400595790703 31 0.0 11 67.8365681287348 21 281.649152509121 31 0.0 11 68.25550925536538 21 281.997640549423 31 0.0 11 69.09339187025408 21 282.1370358361235 31 0.0 11 70.62950957565131 21 282.4855240528748 31 0.0 11 71.32774502778733 21 282.7643146262758 31 0.0 0 SPLINE 5 49C 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 0.5 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 11 71 3 72 16 73 12 74 10 42 0.0000000001 43 0.0000000001 44 0.0000000001 12 0.9823133051512076 22 -0.1872446808935042 32 0.0 13 0.9823133051512076 23 -0.1872446808935042 33 0.0 40 0.0 40 0.0 40 0.0 40 0.0 40 2.341817461816209 40 4.71990672983618 40 6.110903513866635 40 6.797550292664583 40 7.265771950621265 40 8.333792410162832 40 10.28885160381819 40 12.35646552374425 40 13.32604150801423 40 13.32604150801423 40 13.32604150801423 40 13.32604150801423 10 64.41521499187236 20 286.8067777641415 30 0.0 10 65.18201447553153 20 286.6606134763586 30 0.0 10 66.7233676891273 20 286.3249479924667 30 0.0 10 68.7603564168822 20 286.2115184336303 30 0.0 10 70.25749806621544 20 286.295111101357 30 0.0 10 70.91028572947218 20 287.3244357562466 30 0.0 10 70.02671328305159 20 287.580217666221 30 0.0 10 69.01243178768431 20 287.7997812391468 30 0.0 10 67.03306021274413 20 287.699667756796 30 0.0 10 66.14884184803553 20 287.6591041908467 30 0.0 10 64.09773919530454 20 286.867293746067 30 0.0 10 64.41521499187236 20 286.8067777641415 30 0.0 11 64.41521499187236 21 286.8067777641415 31 0.0 11 66.7193915499682 21 286.3885919040399 31 0.0 11 69.09339187025408 21 286.2491966173394 31 0.0 11 70.42003901233602 21 286.6673824774409 31 0.0 11 70.69933297621391 21 287.2946612675933 31 0.0 11 70.28039184958334 21 287.503754197644 31 0.0 11 69.23303903300683 21 287.7128469512455 31 0.0 11 67.27797983935147 21 287.7128469512455 31 0.0 11 65.25309760676106 21 287.2946612675933 31 0.0 11 64.41521499187236 21 286.8067777641415 31 0.0 0 SPLINE 5 49D 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 35 73 31 74 0 42 0.0000000001 43 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.4057103296205168 40 0.9629849029868964 40 1.76809730051688 40 2.742241099131404 40 3.163841480761049 40 3.908081168070752 40 4.605532530031975 40 5.222573693407821 40 6.050993754872664 40 6.459297593382808 40 6.726757224623026 40 7.270619989431057 40 8.143952697752174 40 9.085707659840476 40 10.28284328996549 40 11.53658606103946 40 12.12135770050248 40 12.37779205173307 40 13.18867696006987 40 13.70788165185422 40 13.98354346668423 40 14.16191283522857 40 14.63103775494241 40 15.20457831786864 40 15.59005834871798 40 15.92869639253631 40 16.18287435334491 40 16.41551334987229 40 16.41551334987229 40 16.41551334987229 40 16.41551334987229 10 69.44250959632211 20 285.6916154705373 30 0.0 10 69.45403671979716 20 285.1096615501324 30 0.0 10 69.48139724052069 20 283.7283488285455 30 0.0 10 69.89618053109698 20 281.2275626037565 30 0.0 10 70.68428465399107 20 277.9366450672229 30 0.0 10 70.17471425365958 20 274.7736956921343 30 0.0 10 70.19475990203995 20 271.7070462248057 30 0.0 10 70.44235043467685 20 269.0476251446339 30 0.0 10 70.563039330305 20 266.0951894647331 30 0.0 10 70.23761708228125 20 263.0298423933537 30 0.0 10 70.52263229637249 20 260.3816305115089 30 0.0 10 70.67925190508431 20 258.2237685509455 30 0.0 10 71.17820752502201 20 256.5432075442964 30 0.0 10 71.54873001858366 20 254.1541695119112 30 0.0 10 72.75642654275724 20 250.9575108552247 30 0.0 10 72.81720135578324 20 246.5891131557941 30 0.0 10 72.16701626979352 20 241.737210010643 30 0.0 10 70.43426427697115 20 237.7162090807495 30 0.0 10 69.45490298148072 20 234.8821845649657 30 0.0 10 68.68847654892667 20 232.6401596991708 30 0.0 10 68.15979493451038 20 230.4409687350081 30 0.0 10 67.34412051018779 20 228.2432739642838 30 0.0 10 67.41570316842994 20 226.8387713413501 30 0.0 10 67.45474301289212 20 225.5146141860667 30 0.0 10 66.88960487620889 20 223.8001528450281 30 0.0 10 65.69480533556782 20 222.1257286942564 30 0.0 10 65.11826543892692 20 220.3386951714166 30 0.0 10 65.42562203165741 20 218.7902790800047 30 0.0 10 66.62323518448324 20 218.2579985057371 30 0.0 10 67.31149837283296 20 218.3330684239585 30 0.0 10 67.63843343916983 20 218.4114424630564 30 0.0 0 SPLINE 5 49E 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 17 73 13 74 0 42 0.0000000001 43 0.0000000001 40 2.154718926049851 40 2.154718926049851 40 2.154718926049851 40 2.154718926049851 40 3.715977407206922 40 8.435073078708272 40 12.59046785824444 40 15.03495287456955 40 17.16784498584694 40 19.39899916870133 40 27.3388701671779 40 34.23317376336418 40 38.04630415102835 40 43.29375226563054 40 43.29375226563054 40 43.29375226563054 40 43.29375226563054 10 64.34801243365504 20 207.3348759213432 30 0.0 10 64.0840544397164 20 206.973669263476 30 0.0 10 63.04514125026951 20 205.5050587180461 30 0.0 10 61.58269683340702 20 202.8847724476716 30 0.0 10 60.53131077477998 20 199.7675132521009 30 0.0 10 60.39616348643281 20 197.2647321835576 30 0.0 10 60.15575851332329 20 195.3169605626243 30 0.0 10 58.8588380850216 20 192.0201279256315 30 0.0 10 56.96124081527409 20 187.5190402157191 30 0.0 10 54.40352626250183 20 182.8192795667434 30 0.0 10 52.07414992885681 20 178.8809100777688 30 0.0 10 51.04597640972352 20 176.4929961827017 30 0.0 10 50.45050811891734 20 175.1100321409059 30 0.0 0 SPLINE 5 49F 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 30 73 26 74 24 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 3.716652138316993 40 5.403163024814194 40 11.15909998887297 40 16.46194197081349 40 20.61811496841285 40 21.46606466578054 40 22.60072975203818 40 26.35296354139275 40 30.03950665609549 40 34.47651704404153 40 38.53282537891313 40 40.83648033069276 40 42.79922405414271 40 44.77064218244819 40 47.21105859566732 40 50.4962571690746 40 52.14918992667613 40 55.37825795147114 40 58.72139344583605 40 63.15286694747559 40 67.30010257495968 40 71.62047777851292 40 73.97615934744282 40 73.97615934744282 40 73.97615934744282 40 73.97615934744282 10 49.54280210346603 20 176.0857991478095 30 0.0 10 49.98517634669523 20 177.2475360678954 30 0.0 10 50.62828742225274 20 178.9364361149177 30 0.0 10 52.56396723118562 20 182.1188472755418 30 0.0 10 54.40468705572518 20 185.9646179686375 30 0.0 10 56.40058951627397 20 190.590556520365 30 0.0 10 58.14718508286421 20 193.6485879540486 30 0.0 10 58.41021974867733 20 195.684420112888 30 0.0 10 58.85292211429278 20 197.5509381305075 30 0.0 10 58.5060239308864 20 200.4475039402463 30 0.0 10 59.63269268827318 20 204.3480815446167 30 0.0 10 62.06621696590318 20 207.656056549845 30 0.0 10 63.42743954073505 20 210.9629187769512 30 0.0 10 64.47270470529075 20 213.6216882536182 30 0.0 10 64.0527947133302 20 215.7122669386311 30 0.0 10 63.70647572674717 20 217.7984333241179 30 0.0 10 63.7675402921767 20 220.3892798777942 30 0.0 10 64.50556109162045 20 222.785451800612 30 0.0 10 65.94029440854544 20 225.1143395514183 30 0.0 10 66.48575281099169 20 227.8673562034258 30 0.0 10 66.46700336419536 20 231.5493544460696 30 0.0 10 67.94532851551778 20 235.333738038825 30 0.0 10 70.30716438738015 20 238.9683692022147 30 0.0 10 70.82697663847591 20 242.64008330105 30 0.0 10 70.78423747566275 20 244.8601775678329 30 0.0 10 70.769156738404 20 245.6435494479379 30 0.0 11 49.54280210346603 21 176.0857991478095 31 0.0 11 51.0090964083006 21 179.5009834955228 31 0.0 11 51.84697866156182 21 180.9646338294289 31 0.0 11 54.43044954516304 21 186.1082209559198 31 0.0 11 56.66480270269623 21 190.917357994189 31 0.0 11 58.27074380865607 21 194.7507282020039 31 0.0 11 58.41039097140875 21 195.5870997457576 31 0.0 11 58.61986153472404 21 196.7022620393618 31 0.0 11 58.75950869747673 21 200.4518962988475 31 0.0 11 59.73703811349063 21 204.0064759332614 31 0.0 11 61.97139127102388 21 207.8398461410762 31 0.0 11 63.6471561391738 21 211.5338208857413 31 0.0 11 64.27556782911967 21 213.7501071679706 31 0.0 11 64.06609726580438 21 215.7016411817779 31 0.0 11 63.78680330192649 21 217.6531750191358 31 0.0 11 63.85662670248909 21 220.0925923599455 31 0.0 11 64.83415611850299 21 223.2289861342578 31 0.0 11 65.60221497120162 21 224.6926364681639 31 0.0 11 66.37027382390016 21 227.8290302424762 31 0.0 11 66.64956814940561 21 231.1604788183097 31 0.0 11 68.11586245424017 21 235.3423370664265 31 0.0 11 70.00109788570537 21 239.0363119875408 31 0.0 11 70.769156738404 21 243.287867879008 31 0.0 11 70.769156738404 21 245.6435494479379 31 0.0 0 SPLINE 5 4A0 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 15 73 11 74 9 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 4.469383965063614 40 9.697173171898244 40 12.93052033018366 40 16.69484052515508 40 19.95659128118904 40 22.55892826060985 40 25.92258170228972 40 29.08683162527734 40 29.08683162527734 40 29.08683162527734 40 29.08683162527734 10 69.02356846969147 20 257.2690170531041 30 0.0 10 69.11338423695994 20 258.7539553362975 30 0.0 10 69.30825651814621 20 261.9758095771207 30 0.0 10 69.62991488631925 20 266.3085538892976 30 0.0 10 68.77265694993439 20 270.3298755381575 30 0.0 10 69.04112484952436 20 273.7584672310155 30 0.0 10 69.14647859889242 20 276.9777668525355 30 0.0 10 68.58560302761218 20 280.0135561556871 30 0.0 10 68.37309017327166 20 283.0512262179782 30 0.0 10 68.05875741385314 20 285.2051378525256 30 0.0 10 67.90639189092487 20 286.2491966173394 30 0.0 11 69.02356846969147 21 257.2690170531041 31 0.0 11 69.30286243356943 21 261.729665874622 31 0.0 11 69.37268583413203 21 266.9569887729927 31 0.0 11 68.95374470750138 21 270.1630801906553 31 0.0 11 69.02356846969147 21 273.9267527551199 31 0.0 11 69.02356846969147 21 277.1885035111539 31 0.0 11 68.6744507436235 21 279.7673161386641 31 0.0 11 68.32533301755552 21 283.1128028430271 31 0.0 11 67.90639189092487 21 286.2491966173394 31 0.0 0 LWPOLYLINE 5 4A1 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 67.5572741648569 20 276.1782577849468 10 67.97621529148748 20 276.1085601415966 10 68.18568585480277 20 275.5509789947945 10 68.04603869205009 20 274.3661192342894 10 67.76674472817219 20 274.3661192342894 10 67.34780360154161 20 274.5752121643401 0 LWPOLYLINE 5 4A2 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 49 70 0 43 0.0 10 67.6969213276096 20 274.2267239475889 10 67.8365681287348 20 273.8085380874873 10 67.48745040266682 20 273.4600498707361 10 67.13833303822626 20 273.3206545840356 10 67.97621529148748 20 273.2509569406853 10 68.25550925536538 20 272.7630734372335 10 68.11586245424017 20 272.2054922904315 10 67.8365681287348 20 271.6479113200787 10 67.27797983935147 20 271.6479113200787 10 67.8365681287348 20 271.3691207466776 10 67.76674472817219 20 270.9509348865761 10 67.6270975654195 20 270.8115395998756 10 67.34780360154161 20 270.4630513831243 10 67.8365681287348 20 270.5327490264746 10 68.11586245424017 20 270.5327490264746 10 68.18568585480277 20 270.393353739774 10 68.25550925536538 20 270.114563166373 10 68.04603869205009 20 269.4872843762207 10 67.6270975654195 20 269.4175867328705 10 68.25550925536538 20 269.208493979269 10 68.25550925536538 20 268.7206104758172 10 68.18568585480277 20 268.3024246157156 10 68.04603869205009 20 267.9539363989643 10 67.6270975654195 20 267.9539363989643 10 67.90639189092487 20 267.8145411122638 10 68.04603869205009 20 267.605448182213 10 67.97621529148748 20 267.326657608812 10 67.6969213276096 20 267.047867035411 10 67.6969213276096 20 267.047867035411 10 68.11586245424017 20 266.9084717487105 10 68.32533301755552 20 266.6993788186597 10 68.32533301755552 20 265.8630072749059 10 68.04603869205009 20 265.6539143448551 10 67.6270975654195 20 265.6539143448551 10 68.04603869205009 20 265.4448214148044 10 68.25550925536538 20 265.3054261281038 10 67.97621529148748 20 265.0963331980531 10 67.76674472817219 20 265.0963331980531 10 68.11586245424017 20 264.8872402680023 10 68.4649801803082 20 264.6781473379515 10 68.39515641811812 20 264.3296591212002 10 68.32533301755552 20 263.8417756177485 10 67.97621529148748 20 263.7023803310479 10 67.48745040266682 20 263.8417756177485 10 67.8365681287348 20 263.7023803310479 10 68.04603869205009 20 263.3538922907459 10 68.04603869205009 20 263.0751017173449 10 67.76674472817219 20 262.8660087872941 10 68.18568585480277 20 262.7963111439439 0 LWPOLYLINE 5 4A3 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 44 70 0 43 0.0 10 68.18568585480277 20 262.7963111439439 10 68.25550961699292 20 262.3224659454709 10 68.18568621643033 20 261.5557918686181 10 68.04603905367757 20 261.1376061849658 10 67.83656849036228 20 260.8588156115648 10 67.62709792704701 20 260.928513254915 10 67.97621565311503 20 260.7891179682146 10 68.18568621643033 20 260.5800250381637 10 68.11586245424017 20 260.1618391780622 10 68.11586245424017 20 259.7436533179607 10 68.32533301755552 20 259.6042580312602 10 68.11586245424017 20 259.1860721711586 10 67.76674472817219 20 259.1163745278084 10 68.25550961699292 20 258.9072815977576 10 68.32533301755552 20 258.5587933810063 10 68.18568621643033 20 258.3497004509556 10 67.90639189092487 20 258.2800028076053 10 68.25550961699292 20 258.2800028076053 10 68.3951567797456 20 258.210305164255 10 68.53480358087082 20 257.861817123953 10 68.6744507436235 20 257.4436312638515 10 68.3951567797456 20 257.2345383338007 10 68.6744507436235 20 257.0951430471002 10 69.02356846969147 20 257.0254454037499 10 69.09339187025408 20 256.6769571869987 10 68.81409790637619 20 256.0496783968464 10 68.3951567797456 20 255.3527019633438 10 67.83656849036228 20 255.422399606694 10 68.6744507436235 20 255.2830043199935 10 68.95374506912887 20 254.7951208165418 10 68.53480358087082 20 254.4466327762397 10 69.02356846969147 20 254.6557255298412 10 69.44250959632211 20 254.7951208165418 10 69.58215675907481 20 254.3769351328895 10 69.02356846969147 20 254.1678422028387 10 69.44250959632211 20 254.0981445594884 10 69.6519801596374 20 254.0284469161382 10 69.6519801596374 20 253.8193539860874 10 69.58215675907481 20 253.4708657693361 10 69.7218039218275 20 253.8890516294376 10 70.07092164789553 20 253.8890516294376 10 70.14074504845813 20 253.5405634126864 10 70.14074504845813 20 252.9829822658843 10 70.07092164789553 20 252.2860058323817 0 LWPOLYLINE 5 4A4 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 21 70 0 43 0.0 10 68.95374506912887 20 252.2163081890315 10 69.23303903300683 20 251.79812232893 10 69.30286279519691 20 251.4496341121786 10 69.5123333585122 20 251.5193317555289 10 69.86145108458018 20 251.4496341121786 10 69.93127448514278 20 251.0314484285264 10 69.7916273223901 20 250.6829602117751 10 69.58215675907481 20 250.5435649250746 10 69.16321563244423 20 250.6829602117751 10 70.14074504845813 20 250.1950767083233 10 70.07092164789553 20 249.567797918171 10 69.7916273223901 20 249.0102167713689 10 70.14074504845813 20 248.3829379812167 10 70.21056844902074 20 248.1041474078156 10 70.00109788570537 20 247.1980782207115 10 70.28039221121082 20 247.058682934011 10 70.55968617508871 20 246.77989236061 10 70.83898050059409 20 246.306047162137 10 70.55968617508871 20 245.399977975033 10 69.93127448514278 20 245.6787683719847 10 70.00109788570537 20 246.027256588736 0 LWPOLYLINE 5 4A5 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 16 70 0 43 0.0 10 70.07092164789553 20 244.2848156814289 10 69.58215675907481 20 243.3787463178755 10 69.16321563244423 20 242.7514675277232 10 68.74427450581359 20 242.5423745976725 10 68.60462734306089 20 242.8211651710735 10 68.88392130693879 20 242.4029793109719 10 68.60462734306089 20 242.1241889140202 10 68.3951567797456 20 242.1241889140202 10 68.95374506912887 20 241.7757006972689 10 68.95374506912887 20 241.0090266204161 10 68.4649801803082 20 239.6847713967612 10 67.83656849036228 20 239.8241666834617 10 68.4649801803082 20 239.4756784667104 10 68.11586245424017 20 238.9180973199084 10 67.5572741648569 20 238.8483996765581 10 67.48745076429431 20 239.1271902499591 0 LWPOLYLINE 5 4A6 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 66.30045078496511 20 272.9024692532818 10 66.78921531215829 20 272.4842833931803 10 66.579744748843 20 272.1357951764291 10 66.09097986002227 20 272.0660975330788 0 LWPOLYLINE 5 4A7 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 10 70 0 43 0.0 10 66.30045078496511 20 271.6479116729772 10 66.92886247491097 20 271.3691210995762 10 66.92886247491097 20 270.7418423094239 10 66.5099213482804 20 270.4630517360229 10 66.09097986002227 20 270.6024470227234 10 66.44009758609032 20 270.2539589824214 10 66.30045078496511 20 269.4872849055685 10 66.02115645945968 20 269.2084943321675 10 65.6022153328291 20 269.6266801922691 10 65.32292100732366 20 269.9054707656701 0 LWPOLYLINE 5 4A8 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 66.579744748843 20 269.6963778356193 10 67.06850963766367 20 269.4872849055685 10 66.99868587547358 20 269.1387966888173 10 66.7193919115957 20 268.790308472066 0 LWPOLYLINE 5 4A9 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 66.99868587547358 20 267.8842391085126 10 66.92886247491097 20 267.1175652081091 10 66.64956814940561 20 267.1175652081091 10 66.09097986002227 20 267.5357508917613 10 66.7193919115957 20 266.6296817046573 10 66.92886247491097 20 266.0721005578552 0 LWPOLYLINE 5 4AA 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 66.78921531215829 20 265.444821767703 10 67.5572741648569 20 265.0266359076014 10 67.27798020097901 20 264.4690547607993 0 LWPOLYLINE 5 4AB 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 66.64956814940561 20 264.5739713281964 10 67.06850963766367 20 263.8769950711432 10 67.20815643878887 20 263.3194139243411 10 66.92886247491097 20 263.1103209942903 0 LWPOLYLINE 5 4AC 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 67.20815643878887 20 262.204251630737 10 67.41762736373171 20 261.7163681272852 10 67.27798020097901 20 260.7406011203816 10 66.9168044725715 20 260.8436080985057 0 LWPOLYLINE 5 4AD 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 22 70 0 43 0.0 10 66.45435764355003 20 233.9659509607183 10 66.73463523424533 20 233.3504521011679 10 66.39830212541098 20 232.1194543820672 10 66.00591349843758 20 232.1194543820672 10 65.55746935332507 20 232.1754087436403 10 66.2301355709938 20 231.8396822213032 10 66.11802453471566 20 231.3920466229214 10 65.72563590774226 20 231.0563199241351 10 65.89380246215942 20 230.8884566629665 10 65.89380246215942 20 230.3848665265623 10 65.66958038960321 20 230.2729576269669 10 65.83774694402039 20 229.9931854662029 10 65.72563590774226 20 229.3217320686302 10 65.22113624449071 20 228.9860053698438 10 65.55746935332507 20 228.6502788475067 10 65.38930279890789 20 228.2026432491249 10 65.16508072635166 20 227.8669165503385 10 65.44535831704698 20 227.9228710883609 10 65.44535831704698 20 227.3073720523613 10 65.38930279890789 20 226.8037820924064 10 65.22113624449071 20 226.5240099316424 10 64.94085865379545 20 226.5240099316424 0 LWPOLYLINE 5 4AE 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 36 70 0 43 0.0 10 65.10902520821263 20 226.166139024252 10 65.10902520821263 20 225.3827767270838 10 64.8287476175173 20 225.2149134659153 10 64.60452554496107 20 225.2708678274884 10 64.8287476175173 20 224.9910956667244 10 64.77269209937826 20 224.5434600683426 10 64.43635899054391 20 224.375596807174 10 64.0439703635705 20 224.655368967938 10 64.32424795426576 20 224.2077333695562 10 64.15608139984858 20 223.8720066707699 10 63.65158173659704 20 223.8160523091968 10 63.65158173659704 20 224.0398701083877 10 63.65158173659704 20 223.2565078112195 10 63.65158173659704 20 222.9767356504555 10 63.31524862776273 20 223.0326900120286 10 63.48341518217991 20 222.7529178512646 10 63.59552621845799 20 222.3052822528828 10 63.20313759148459 20 221.9695555540964 10 62.642582410094 20 221.4659655941416 10 63.09102655520645 20 221.577874493737 10 63.14708207334554 20 220.9623756341867 10 62.92286000078927 20 220.4587856742318 10 62.53047137381586 20 220.5706945738272 10 62.97891551892837 20 220.2909222366139 10 62.86680448265022 20 219.2837423167041 10 62.2501937831206 20 219.2837423167041 10 62.81074896451119 20 219.2277877786818 10 62.86680448265022 20 218.2765622203451 10 62.36230481939868 20 218.1086989591765 10 62.86680448265022 20 218.0527444211541 10 62.97891551892837 20 217.4932000996262 10 62.75469344637208 20 217.3253366620083 10 62.47441585567682 20 217.4372455616038 10 62.97891551892837 20 217.0455645012443 10 62.97891551892837 20 216.765792164031 10 62.75469344637208 20 216.5979289028626 0 LWPOLYLINE 5 4AF 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 18 70 0 43 0.0 10 71.39845550062313 20 258.548144313861 10 71.23028894620595 20 258.6040988518834 10 71.28634446434498 20 257.5969187555243 10 71.56662205504031 20 257.7647820166928 10 71.67873309131838 20 258.0445543539061 10 71.62267757317934 20 257.4290554943558 10 71.79084412759653 20 257.1492831571425 10 72.07112135666431 20 257.2052376951649 10 72.01506583852526 20 257.3171465947603 10 71.90295516387461 20 256.4218753979967 10 72.23928791108147 20 255.9742397996149 10 72.57562101991585 20 255.9742397996149 10 72.57562101991585 20 256.1980575988058 10 72.57562101991585 20 255.9182854380418 10 72.40745446549865 20 255.8063765384463 10 72.40745446549865 20 254.7432420805142 10 73.08012068316739 20 254.5753786428964 10 73.13617620130642 20 254.7991964420873 0 LWPOLYLINE 5 4B0 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 72.74378757433303 20 254.5194242813232 10 72.79984309247208 20 253.7920165221775 10 73.02406516502834 20 253.6241530845596 10 73.36039827386265 20 253.7360619841551 0 LWPOLYLINE 5 4B1 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 73.02406516502834 20 253.5681987229865 10 72.91195412875021 20 253.1205631246047 10 73.02406516502834 20 252.8407909638407 10 73.36039827386265 20 252.7848364258184 10 73.41645379200176 20 253.0646085865823 0 SPLINE 5 4B2 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 131 73 127 74 125 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 2.400068926135913 40 4.967707532493673 40 6.631218212931797 40 7.422893144111503 40 9.697663703329332 40 10.94853844408098 40 12.46638073472563 40 15.67279005987053 40 19.42125301031971 40 21.84598430954983 40 24.66666955774336 40 27.23829420492746 40 29.15305455977433 40 29.43223491045012 40 29.57945477033989 40 30.2271527430516 40 31.60935045296595 40 33.46894375725744 40 36.17214860865315 40 37.73504990839892 40 39.96587661134358 40 44.12656794352425 40 46.90137782078577 40 48.7433924944613 40 49.86298247598877 40 52.04870887385457 40 56.7417321123815 40 59.63269057401038 40 61.02738467566193 40 61.88228812961804 40 62.85338302140125 40 63.89349858297043 40 66.02700994325184 40 68.55634951266821 40 71.71802790155081 40 73.23610195046216 40 75.05465068281103 40 76.69848767695912 40 77.59326461967892 40 78.39625087421852 40 79.04767285539058 40 79.70554247139114 40 80.31172503827257 40 81.22764867589316 40 82.12242506523642 40 84.08528273531313 40 85.50464185266703 40 86.09999339967531 40 86.78648498719395 40 87.52156965465397 40 89.16649295465775 40 90.42255821221557 40 91.77805320666443 40 92.83861774168004 40 93.13274096757641 40 93.34068002054449 40 93.87074104412263 40 95.58135762312197 40 97.6825369155955 40 99.12657270576032 40 100.850786864508 40 102.7484797274351 40 104.3603393692924 40 105.4625892092672 40 106.466628787016 40 107.487375265692 40 109.0707244457487 40 110.8069646903181 40 111.5766426024577 40 112.1828258376543 40 113.1885881094538 40 114.8400983911545 40 117.7342797022469 40 121.4575452960625 40 123.4656238687392 40 124.0078213963085 40 124.4236990577867 40 124.6209316695102 40 125.182774803464 40 126.6250955552054 40 127.1037857404519 40 127.3411268051791 40 127.7623911107949 40 128.1165230709735 40 129.2419092429808 40 130.8066518694781 40 132.3846357710752 40 134.5383734440767 40 135.2645529114025 40 136.0644038890981 40 136.9587604202674 40 138.7234997593689 40 141.2056758838041 40 143.4408930377466 40 144.2784360760184 40 144.8402797034564 40 145.382477571935 40 145.9892402134184 40 146.8479779170221 40 147.4726960262035 40 148.9221201590972 40 150.3563732218369 40 151.0428645575335 40 151.8099334618725 40 152.7810289562485 40 153.7693882909034 40 154.7469453323076 40 156.7435480102924 40 158.7215968838047 40 160.4623782598756 40 161.792024793247 40 163.1746744804663 40 164.1160625765518 40 166.2133846495504 40 170.1719921348543 40 172.3574866515652 40 173.1892417695549 40 173.7960044110383 40 174.826551574975 40 177.3827253579285 40 178.7524225722332 40 182.1169578253664 40 184.7388465357289 40 187.5396953591578 40 187.5396953591578 40 187.5396953591578 40 187.5396953591578 10 45.89103076835273 20 175.7035722400489 30 0.0 10 45.77303543326538 20 174.9043661977706 30 0.0 10 45.52880648278422 20 173.2501545903429 30 0.0 10 46.09258144257279 20 171.0749636769579 30 0.0 10 46.89339823571315 20 169.5403477992733 30 0.0 10 46.72388892540669 20 167.934073039335 30 0.0 10 45.92287048573308 20 166.6563897879801 30 0.0 10 45.98038804325904 20 164.9471757568138 30 0.0 10 45.82379762778043 20 162.9597138052855 30 0.0 10 44.84271226280809 20 160.2754484144606 30 0.0 10 44.15422573066325 20 157.2526348518132 30 0.0 10 43.19034457562116 20 154.3428511782756 30 0.0 10 43.89051864779563 20 151.7121989629592 30 0.0 10 43.24779594539241 20 149.3237128684013 30 0.0 10 43.67977826425387 20 147.6677096018707 30 0.0 10 42.62882351754279 20 147.0480829032495 30 0.0 10 43.08225009400097 20 146.9246873681419 30 0.0 10 43.16726898287133 20 146.0843746341285 30 0.0 10 43.04431622059807 20 144.8696039139937 30 0.0 10 42.84338995247689 20 142.849056877292 30 0.0 10 42.0120957069952 20 140.9760499408049 30 0.0 10 41.43803383356022 20 138.8765808110209 30 0.0 10 41.30621343019406 20 136.220554603258 30 0.0 10 41.24246099296418 20 133.1420437961326 30 0.0 10 40.1886299227344 20 130.3522060050299 30 0.0 10 40.2402636492012 20 128.4268382322068 30 0.0 10 40.1933550569046 20 126.702965530934 30 0.0 10 39.21522832103618 20 124.1831302304126 30 0.0 10 38.66101808202022 20 120.9744041007533 30 0.0 10 37.40099742626071 20 118.2050960159758 30 0.0 10 37.38802304087903 20 116.4503015350472 30 0.0 10 36.91624599223708 20 115.4727367148714 30 0.0 10 36.4935527108311 20 114.6158217067275 30 0.0 10 35.60026681304329 20 113.5418516038368 30 0.0 10 35.09288793375304 20 111.6509703945521 30 0.0 10 34.872873145224 20 109.05619598495 30 0.0 10 34.03959533937422 20 106.780837196079 30 0.0 10 33.3512349037238 20 104.7224181786146 30 0.0 10 33.01216097905748 20 103.1136064551153 30 0.0 10 32.77829859125607 20 101.6195039967469 30 0.0 10 32.01783475365644 20 100.7802736345301 30 0.0 10 31.62837032210851 20 100.0902183243949 30 0.0 10 31.09617660461973 20 99.63172234923728 30 0.0 10 30.65021963786714 20 99.13533951110787 30 0.0 10 30.59244661623967 20 98.38948756143384 30 0.0 10 30.29256851642863 20 97.62635719560758 30 0.0 10 29.48098121914188 20 96.65865625633873 30 0.0 10 28.71661886405544 20 95.43078262514091 30 0.0 10 28.40190398211709 20 94.12516133229615 30 0.0 10 28.36894510451972 20 93.21838870894032 30 0.0 10 28.10875286514137 20 92.58915380484735 30 0.0 10 27.94580409111136 20 91.57499455600392 30 0.0 10 27.98152008679866 20 90.35669497727475 30 0.0 10 27.82820564056958 20 88.95290532961576 30 0.0 10 27.5687149728363 20 87.72040004824644 30 0.0 10 27.14081067378437 20 86.97425374623724 30 0.0 10 26.77146030244273 20 86.51322646019076 30 0.0 10 26.95773016458498 20 86.18531035493743 30 0.0 10 26.94744344298234 20 85.36588023196177 30 0.0 10 27.00663658316972 20 83.90431383200791 30 0.0 10 26.30781879889 20 82.24169573505697 30 0.0 10 25.36955525340585 20 80.76610470834658 30 0.0 10 24.62414178985185 20 79.23458698633773 30 0.0 10 24.27252427207429 20 77.51360986725392 30 0.0 10 23.96690903247934 20 76.01880185256217 30 0.0 10 23.68868737616576 20 74.78628900864734 30 0.0 10 22.99006010786542 20 73.9716593605162 30 0.0 10 22.72699792156243 20 72.77070937293562 30 0.0 10 22.81472480931749 20 71.28121909996867 30 0.0 10 23.57619979125993 20 70.10687056944781 30 0.0 10 23.91074002285127 20 69.13248335209319 30 0.0 10 24.14811031140016 20 68.35160965184527 30 0.0 10 23.73445317283974 20 67.29035844309253 30 0.0 10 23.65460014680011 20 65.43722967212739 30 0.0 10 22.47664144463205 20 62.87905170648555 30 0.0 10 20.88723382823848 20 60.45350362796877 30 0.0 10 19.71761760042714 20 58.80423449541628 30 0.0 10 19.29181558878498 20 57.81296889115776 30 0.0 10 19.52778998845166 20 57.46235132213029 30 0.0 10 19.51653495547953 20 57.06293366493412 30 0.0 10 19.15612519266797 20 56.38322271403116 30 0.0 10 18.97449705723852 20 55.73393972221941 30 0.0 10 18.45340406779171 20 54.90184033244941 30 0.0 10 18.87151268928118 20 54.74285366155388 30 0.0 10 19.05131113832315 20 54.45184530905113 30 0.0 10 19.28793371898311 20 53.8613843624477 30 0.0 10 19.3397811662381 20 52.82718967357026 30 0.0 10 19.25148272059361 20 51.41716156154786 30 0.0 10 19.43442082316795 20 49.63136226262832 30 0.0 10 18.92034600960565 20 48.21439105485395 30 0.0 10 18.71938729107134 20 46.98519103966093 30 0.0 10 19.03706274670992 20 46.18770754906478 30 0.0 10 18.52653581381607 20 45.08100511231678 30 0.0 10 17.78325930619239 20 43.57763112478493 30 0.0 10 16.65675320197795 20 41.70420553724784 30 0.0 10 15.41263741149063 20 40.32530799068063 30 0.0 10 14.45072982489556 20 39.56644509641172 30 0.0 10 14.18058850934823 20 38.93608015215137 30 0.0 10 14.33292020389441 20 38.35156777859517 30 0.0 10 14.8855841791508 20 37.86384828393634 30 0.0 10 15.62436806627398 20 38.0164263661425 30 0.0 10 16.57247277658269 20 37.6710331905048 30 0.0 10 17.31456367028803 20 36.75988285078817 30 0.0 10 18.49480601436602 20 36.15164964271428 30 0.0 10 18.60489624162241 20 35.13524243197729 30 0.0 10 19.10181466541055 20 34.48425831031441 30 0.0 10 19.58881424587561 20 33.70543171249394 30 0.0 10 19.66424258542475 20 32.67234855807201 30 0.0 10 19.07598080032285 20 31.46866684872565 30 0.0 10 18.67081967424162 20 29.86805502000633 30 0.0 10 18.12690812397867 20 28.03974947102872 30 0.0 10 17.76488739154379 20 26.40061035612717 30 0.0 10 17.73562544350085 20 24.87509625738627 30 0.0 10 16.96124378863305 20 23.85506701637046 30 0.0 10 16.78534447604913 20 22.37112073565102 30 0.0 10 16.03709846791446 20 20.16493762957908 30 0.0 10 15.48436055186819 20 17.4350222855396 30 0.0 10 15.31542712257506 20 15.16150700168391 30 0.0 10 15.06429529704433 20 13.91497805437337 30 0.0 10 14.37531079703069 20 13.40050869235055 30 0.0 10 13.07875752024469 20 12.89085460233676 30 0.0 10 11.78490188425632 20 11.8173606580674 30 0.0 10 9.802564769117676 20 10.41956686547102 30 0.0 10 7.662085125131481 20 9.209409494694869 30 0.0 10 5.07480681901767 20 7.839278904496826 30 0.0 10 3.507066041898903 20 6.938805195504857 30 0.0 10 2.697326517595456 20 6.473709713261314 30 0.0 11 45.89103076835273 21 175.7035722400489 31 0.0 11 45.69263575167087 21 173.3117172554065 31 0.0 11 46.28540215828661 21 170.8134386480356 31 0.0 11 46.81230547492009 21 169.2355791236 31 0.0 11 46.74644238493806 21 168.446648676706 31 0.0 11 46.02194979835803 21 166.2903343236779 31 0.0 11 45.95608811159922 21 165.0411946776544 31 0.0 11 45.82436193163516 21 163.5290791289011 31 0.0 11 44.96814316509108 21 160.439103371036 31 0.0 11 43.98019962180592 21 156.8231744383589 31 0.0 11 43.45329630517244 21 154.4563844670292 31 0.0 11 43.65088557511876 21 151.6426283031481 31 0.0 11 43.45329630517244 21 149.0786057200949 31 0.0 11 42.92639298853896 21 147.2377689235771 31 0.0 11 42.72880512181586 21 147.0405363118536 31 0.0 11 42.8605298985567 21 146.9747923361711 31 0.0 11 43.12398225848506 21 146.3830951856768 31 0.0 11 43.05811916850302 21 145.0024675882884 31 0.0 11 42.79466680857467 21 143.1616307917706 31 0.0 11 41.9384494452538 21 140.5976088933936 31 0.0 11 41.54327230858439 21 139.0854926599641 31 0.0 11 41.34568303863807 21 136.8634336465775 31 0.0 11 40.95050590196888 21 132.7215515390885 31 0.0 11 40.29187640537111 21 130.0260410046703 31 0.0 11 40.22601331538885 21 128.1852042081525 31 0.0 11 40.16015022540682 21 127.0675531981701 31 0.0 11 39.56738381879108 21 124.9637404989225 31 0.0 11 38.31598931880103 21 120.4406354898885 31 0.0 11 37.45977055225694 21 117.6793802951118 31 0.0 11 37.26218268553384 21 116.2987533823995 31 0.0 11 36.93286723562346 21 115.5098229355055 31 0.0 11 36.47182700897178 21 114.6551491976052 31 0.0 11 35.87906060235627 21 113.8004747750287 31 0.0 11 35.18750447204888 21 111.7821534817049 31 0.0 11 34.79232593215624 21 109.2838755590103 31 0.0 11 33.87024547885335 21 106.2596437768275 31 0.0 11 33.4092052522019 21 104.8132722037568 31 0.0 11 33.01402811553248 21 103.0381793829213 31 0.0 11 32.55298648565781 21 101.4603198584857 31 0.0 11 32.0260831690241 21 100.7371333872741 31 0.0 11 31.56504294237265 21 100.0796922610973 31 0.0 11 31.10400271572121 21 99.61948306196791 31 0.0 11 30.70882557905179 21 99.09352920247977 31 0.0 11 30.57709939908773 21 98.5018320519855 31 0.0 11 30.24778535240034 21 97.64715762940898 31 0.0 11 29.72088203576686 21 96.92397184287358 31 0.0 11 28.73293708925848 21 95.2278660042988 31 0.0 11 28.40362304257132 21 93.8472384069105 31 0.0 11 28.33775995258929 21 93.25554125641611 31 0.0 11 28.14017208586619 21 92.59809944556309 31 0.0 11 28.00844590590191 21 91.8749136590277 31 0.0 11 27.94258281591988 21 90.23130947423339 31 0.0 11 27.81085663595558 21 88.98217051288611 31 0.0 11 27.48154258926843 21 87.6672868911802 31 0.0 11 26.95463927263495 21 86.74686849292129 31 0.0 11 26.82291309267066 21 86.48389190551529 31 0.0 11 26.88877618265269 21 86.28665929379179 31 0.0 11 26.95463927263495 21 85.76070611897989 31 0.0 11 26.88877618265269 21 84.05135795850311 31 0.0 11 26.16428359607289 21 82.07903321062042 31 0.0 11 25.43979100949309 21 80.82989356459689 31 0.0 11 24.71529982613628 21 79.26527636206322 31 0.0 11 24.25425959948483 21 77.42443956554541 31 0.0 11 23.92494414957445 21 75.84657935643349 31 0.0 11 23.59563010288707 21 74.79467300680972 31 0.0 11 23.06872678625359 21 73.93999858423319 31 0.0 11 22.80527442632524 21 72.9538362102918 31 0.0 11 22.9370006062893 21 71.37597600117999 31 0.0 11 23.66149319286932 21 69.79811647674421 31 0.0 11 23.92494414957445 21 69.07493069020882 31 0.0 11 24.05667032953852 21 68.4832328550383 31 0.0 11 23.85908105959242 21 67.49707048109701 31 0.0 11 23.59563010288707 21 65.8667086182046 31 0.0 11 22.54182346962011 21 63.17119808378652 31 0.0 11 20.5659349798268 21 60.0154776655628 31 0.0 11 19.51212834655962 21 58.30612950508601 31 0.0 11 19.38040356981855 21 57.78017633027412 31 0.0 11 19.51212834655962 21 57.3857111068271 31 0.0 11 19.51212834655962 21 57.1884784951036 31 0.0 11 19.31454047983652 21 56.66252532029159 31 0.0 11 18.72177407322078 21 55.34764238326193 31 0.0 11 18.59004789325672 21 54.88743318413241 31 0.0 11 18.78763716320304 21 54.7559445480914 31 0.0 11 19.05108811990817 21 54.42722398500302 31 0.0 11 19.18281429987246 21 54.09850273723839 31 0.0 11 19.31454047983652 21 52.98085241193212 31 0.0 11 19.29478309638762 21 51.41623452472231 31 0.0 11 19.31454047983652 21 49.83837431561039 31 0.0 11 18.85350025318507 21 47.73456161636284 31 0.0 11 18.78763716320304 21 47.01137514515119 31 0.0 11 18.91936193994388 21 46.2224453829333 31 0.0 11 18.65591098323875 21 45.36777164503303 31 0.0 11 17.86555530667692 21 43.78991143592111 31 0.0 11 16.54829771670461 21 41.68609805199742 31 0.0 11 15.03345085678597 21 40.042493867203 31 0.0 11 14.44068445017023 21 39.45079603203248 31 0.0 11 14.24309518022391 21 38.92484285722059 31 0.0 11 14.3748213601882 21 38.3988896824087 31 0.0 11 14.83586158683965 21 38.00442445896169 31 0.0 11 15.69207895016052 21 37.93868048327931 31 0.0 11 16.28484535677603 21 37.7414478715558 31 0.0 11 17.40451508002524 21 36.82102947329679 31 0.0 11 18.45832171329243 21 35.8481094212575 31 0.0 11 18.65591098323875 21 35.19066829508074 31 0.0 11 19.05108811990817 21 34.53322648422772 31 0.0 11 19.51212834655962 21 33.6785520616512 31 0.0 11 19.57799143654165 21 32.69238968770991 31 0.0 11 19.24867738985449 21 31.77197128945101 31 0.0 11 18.65591098323875 21 29.86539051725071 31 0.0 11 18.12900766660527 21 27.95880974505041 31 0.0 11 17.79969221669466 21 26.24946158457362 31 0.0 11 17.60210434997157 21 24.9345779628677 31 0.0 11 17.00933794335606 21 23.68543900152042 31 0.0 11 16.81174867340973 21 22.76502060326151 31 0.0 11 16.26508797332712 21 20.74019420159834 31 0.0 11 15.47473369998829 21 16.86128799683911 31 0.0 11 15.21128134005994 21 14.69173063723292 31 0.0 11 14.94783038335481 21 13.90280087501503 31 0.0 11 14.48679015670336 21 13.50833565156801 31 0.0 11 13.56470830017724 21 13.04812645243862 31 0.0 11 11.45709503364287 21 11.60175487936783 31 0.0 11 10.33742531039365 21 10.81282511714994 31 0.0 11 7.439456367297452 21 9.10347627199701 31 0.0 11 5.13425523404021 21 7.854337310649725 31 0.0 11 2.697326517595456 21 6.473709713261314 31 0.0 0 SPLINE 5 4B3 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 120 73 116 74 114 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 1.83878674820247 40 3.841186303379308 40 5.725452323543146 40 7.704763622866873 40 9.918994540609398 40 11.67530212343774 40 13.61436369819853 40 15.40071387987186 40 17.42160089756709 40 18.19416717556214 40 19.05891766853946 40 20.08948390547368 40 20.86186706337815 40 21.79047393130373 40 22.76345452520908 40 24.02279260450034 40 25.10297021416521 40 27.26061045739731 40 29.01691829927504 40 30.90795385814101 40 32.48062794498009 40 34.34090668481064 40 36.4885761530879 40 41.35993051911405 40 45.08699349475102 40 48.4393329024708 40 50.85682077389331 40 52.68126984768357 40 55.24024450649141 40 57.94118080571896 40 59.04195498368557 40 60.03238884523319 40 61.13856468252141 40 62.16572820453063 40 63.83252669541784 40 65.17627774030789 40 66.85390134719096 40 68.45412923603898 40 70.45465769292171 40 71.89657180677264 40 75.95494642340764 40 80.47892756035288 40 82.33881390469218 40 84.36394970864105 40 86.64428747899403 40 87.74506152259098 40 88.69651033087349 40 90.04902079427658 40 91.39739409794508 40 92.42760307936682 40 93.6543550427608 40 94.36985989178042 40 95.71540358947107 40 96.97960405731748 40 97.65971104476005 40 98.58158868148935 40 99.75643500034649 40 101.7088782259508 40 103.4422860652614 40 103.8678871973725 40 104.3676977415956 40 104.9997976331807 40 106.4568407733055 40 108.1827370281423 40 110.4871333976346 40 112.3982450593506 40 114.6233046238712 40 117.9471052677933 40 121.8391825145453 40 125.6270953226658 40 128.3520105491526 40 129.7003845267957 40 131.7009123076319 40 133.3677109317959 40 135.3682396107649 40 137.8025148090955 40 138.919961504259 40 139.9471250262681 40 140.9745627627772 40 142.0361591201449 40 143.7350310828071 40 144.7990973891254 40 145.7641418635799 40 146.8034327891292 40 148.1117469900023 40 150.5016282233964 40 152.3754714079774 40 152.934194317276 40 153.2876771804402 40 154.4190540415785 40 155.7993498313651 40 156.4509733975757 40 156.9316112814642 40 157.9618194724183 40 159.8401428893457 40 164.4191879130967 40 167.3563020902647 40 168.2663778380532 40 168.9034153432014 40 170.1301669444274 40 170.5330815177727 40 170.8869479091689 40 171.3874801607823 40 173.4054115222007 40 175.8010090689053 40 176.9032586797551 40 178.1532885583422 40 179.4317634355612 40 180.4956276402926 40 182.3769110548634 40 185.0058845326384 40 186.7507869207994 40 187.8840289961578 40 187.8840289961578 40 187.8840289961578 40 187.8840289961578 10 52.05644886324962 20 175.6338745966987 30 0.0 10 51.80806741494461 20 175.0710166166789 30 0.0 10 51.28920386637087 20 173.8952182998198 30 0.0 10 51.12805173977786 20 171.9402899493518 30 0.0 10 51.63724646672583 20 170.0420680797756 30 0.0 10 52.47321302175842 20 168.1516035298746 30 0.0 10 52.20344866132816 20 166.1209836273453 30 0.0 10 51.83636541752161 20 164.2004260512624 30 0.0 10 51.43033174102313 20 162.4116172048892 30 0.0 10 50.61964911182962 20 160.6494494140855 30 0.0 10 49.65722605800993 20 159.4745892996781 30 0.0 10 49.05146359575171 20 158.3781429362353 30 0.0 10 49.11522988979008 20 157.462897095773 30 0.0 10 48.97951984336298 20 156.5959370418269 30 0.0 10 48.87442656566456 20 155.6618488680398 30 0.0 10 48.2465068917018 20 154.9882326829111 30 0.0 10 47.60362149281174 20 154.138021402611 30 0.0 10 47.46836002542168 20 152.9932789052156 30 0.0 10 47.6403082312633 20 151.5090835458969 30 0.0 10 47.40954591720487 20 149.8387562597519 30 0.0 10 46.95354948193857 20 147.9546704916875 30 0.0 10 46.93953424639922 20 146.2096977772826 30 0.0 10 46.83003565055876 20 144.4245945301469 30 0.0 10 46.11224630939098 20 142.6844213262442 30 0.0 10 45.67464098073786 20 139.7494341734392 30 0.0 10 44.76125388736273 20 136.2699581186898 30 0.0 10 44.64652930548682 20 132.2694268155361 30 0.0 10 44.13196739014056 20 129.1465687652326 30 0.0 10 43.71740495240914 20 126.6412299034608 30 0.0 10 42.95400692960962 20 124.5018553492165 30 0.0 10 42.2991743197767 20 122.231438718289 30 0.0 10 41.44379616091417 20 120.2850074150061 30 0.0 10 41.00283669317029 20 118.7466650646639 30 0.0 10 40.27615022089071 20 117.8755660541302 30 0.0 10 40.48036706772684 20 116.7785072360716 30 0.0 10 40.42302613866726 20 115.5321395386177 30 0.0 10 40.43120378129225 20 114.1561463575066 30 0.0 10 39.67466201168716 20 112.7189783908628 30 0.0 10 38.30470021094311 20 111.8522987653379 30 0.0 10 37.83886724153914 20 110.0601215152451 30 0.0 10 37.62227062688253 20 108.4188644687114 30 0.0 10 37.24533802849963 20 105.9367017226576 30 0.0 10 36.09196778916193 20 102.7774216588154 30 0.0 10 34.56566672833142 20 99.64219661159717 30 0.0 10 34.400478650837 20 96.70773602061364 30 0.0 10 32.77255000508199 20 95.27238146854909 30 0.0 10 31.79737103075679 20 93.76846927270753 30 0.0 10 31.20896172825569 20 92.42783764705659 30 0.0 10 31.14264004740628 20 91.27904674563811 30 0.0 10 31.32954997888486 20 90.0708157584869 30 0.0 10 31.55774201181976 20 88.86022486190515 30 0.0 10 31.76309762221671 20 87.64070873111583 30 0.0 10 31.30815609075288 20 86.71172606426248 30 0.0 10 31.25734637031928 20 85.60845923970635 30 0.0 10 31.07590203991815 20 84.53423543634048 30 0.0 10 31.40261796551309 20 83.33778705589942 30 0.0 10 30.70252612720766 20 82.60995787505692 30 0.0 10 30.2248427110619 20 81.81952460460637 30 0.0 10 29.91934571393222 20 80.47536428779716 30 0.0 10 28.82263577807475 20 79.22179265518351 30 0.0 10 28.33025793254275 20 77.92935154861971 30 0.0 10 28.00549209162653 20 77.10964787122716 30 0.0 10 27.79492901678039 20 76.6221467442664 30 0.0 10 27.92445199443986 20 75.74114253382323 30 0.0 10 27.52706505146667 20 74.51401091269651 30 0.0 10 26.80740948039057 20 72.77130913834845 30 0.0 10 27.46603958122189 20 70.79522720943358 30 0.0 10 27.75367702745809 20 68.67393131112637 30 0.0 10 27.44530978890418 20 66.17342351998715 30 0.0 10 26.37283464887458 20 63.20073919511554 30 0.0 10 24.8342226323797 20 59.87728298922418 30 0.0 10 23.35018412337498 20 56.72389378003437 30 0.0 10 22.62720372640042 20 54.2182629440861 30 0.0 10 22.12865143136985 20 52.21666917553354 30 0.0 10 22.63139461573144 20 50.5723081372858 30 0.0 10 22.85119170342474 20 48.68451836619309 30 0.0 10 22.42609347662438 20 46.67043469257768 30 0.0 10 21.93565004139669 20 44.89309435167463 30 0.0 10 21.7124669436237 20 43.37430981520536 30 0.0 10 21.66140939385031 20 42.3314273978038 30 0.0 10 22.00970333237102 20 41.23034139185358 30 0.0 10 23.30985142849637 20 40.85394885561639 30 0.0 10 24.45018586958369 20 40.28095345262369 30 0.0 10 25.33762063515702 20 39.43942797485306 30 0.0 10 26.10667065794221 20 38.62779898071087 30 0.0 10 25.75518384610667 20 37.45122155757211 30 0.0 10 25.04930680366159 20 36.09163761053507 30 0.0 10 24.21242296561481 20 34.38334316223186 30 0.0 10 23.36865507130922 20 33.08630315253707 30 0.0 10 23.05967002077565 20 32.1124607781688 30 0.0 10 23.51953199066673 20 31.53228387627097 30 0.0 10 22.99623402367085 20 30.51470205186422 30 0.0 10 22.61100378492304 20 29.62617571088759 30 0.0 10 22.29527181256988 20 28.80053275574221 30 0.0 10 22.52250331026631 20 28.09172241930133 30 0.0 10 22.31820999344371 20 26.95248987868931 30 0.0 10 21.68186081970267 20 24.55553169695355 30 0.0 10 20.43633277853982 20 21.65181176838129 30 0.0 10 19.3327048141255 20 19.09309755439569 30 0.0 10 18.68255074475145 20 17.72233280608078 30 0.0 10 18.67525659484085 20 16.77560576903172 30 0.0 10 18.2863106869244 20 16.1146595221236 30 0.0 10 18.32925634736971 20 15.38179228549538 30 0.0 10 18.77985596135815 20 15.1738487230573 30 0.0 10 19.65012209087639 20 15.70456863505598 30 0.0 10 21.32323008520186 20 15.78516469957491 30 0.0 10 23.07173346545595 20 16.01637400419759 30 0.0 10 24.76757393631174 20 16.35422481026303 30 0.0 10 25.09344345778555 20 17.80701754069183 30 0.0 10 26.56785079107448 20 17.76301308664563 30 0.0 10 27.21462718402786 20 19.25157444372812 30 0.0 10 29.50903984007223 20 18.91715657881972 30 0.0 10 30.55394408840282 20 21.06920117983769 30 0.0 10 32.19691897752329 20 21.99848689697245 30 0.0 10 33.14708979007479 20 22.15610303611107 30 0.0 10 33.52121053252153 20 22.21816289547234 30 0.0 11 52.05644886324962 21 175.6338745966987 31 0.0 11 51.40542985347952 21 173.9141912088964 31 0.0 11 51.24331406745318 21 171.9183649513045 31 0.0 11 51.67562329793145 21 170.0843619076899 31 0.0 11 52.27004831443605 21 168.1964180209751 31 0.0 11 52.16197065601068 21 165.9848263369529 31 0.0 11 51.83773908395778 21 164.2587063488916 31 0.0 11 51.35139032265533 21 162.3816275883988 31 0.0 11 50.59484952012417 21 160.7633899712146 31 0.0 11 49.4600362114927 21 159.0912108262538 31 0.0 11 49.13580463943981 21 158.3899743885388 31 0.0 11 49.08176510861562 21 157.5269140521701 31 0.0 11 48.97368885341347 21 156.5020305018239 31 0.0 11 48.81157166416369 21 155.7468525363321 31 0.0 11 48.27118477526028 21 154.9916752555167 31 0.0 11 47.73079788635664 21 154.1825564469246 31 0.0 11 47.51464397272911 21 152.9419074701481 31 0.0 11 47.56868210033007 21 151.8630823920253 31 0.0 11 47.35252818670278 21 149.7162966773257 31 0.0 11 47.02829521142667 21 147.9901766892644 31 0.0 11 46.92021755300129 21 146.1022321178734 31 0.0 11 46.75810176697473 21 144.5379360284657 31 0.0 11 46.21771487807132 21 142.7578745126279 31 0.0 11 45.78540564759305 21 140.6541651994828 31 0.0 11 44.87207569451652 21 135.8691968865035 31 0.0 11 44.55545380218268 21 132.155607113567 31 0.0 11 44.08052306851686 21 128.8370802863784 31 0.0 11 43.60559093162783 21 126.4667032965675 31 0.0 11 43.05150437407269 21 124.7284275676939 31 0.0 11 42.25995174807303 21 122.2949535602934 31 0.0 11 41.31008747429496 21 119.7665519399244 31 0.0 11 40.91431116129524 21 118.7393884179151 31 0.0 11 40.43938042762943 21 117.8702508958165 31 0.0 11 40.43938042762943 21 116.7640750585283 31 0.0 11 40.43938042762943 21 115.736911536519 31 0.0 11 40.28107018307401 21 114.0776481229247 31 0.0 11 39.64782780162977 21 112.8924599703574 31 0.0 11 38.4604988626304 21 111.7072718177901 31 0.0 11 37.90641090185204 21 110.2060337194301 31 0.0 11 37.58979041274142 21 108.230719675367 31 0.0 11 37.3523243442969 21 106.8084938922861 31 0.0 11 36.08583958140821 21 102.9527941018047 31 0.0 11 34.58189015329821 21 98.68611606788613 31 0.0 11 34.1861138402985 21 96.86882733905736 31 0.0 11 32.9196290774098 21 95.28857692541828 31 0.0 11 31.65314571774433 21 93.39227519663438 31 0.0 11 31.25736800152117 21 92.36511235930141 31 0.0 11 31.1782135808553 21 91.41696183724741 31 0.0 11 31.33652382541049 21 90.07374836944576 31 0.0 11 31.57398989385501 21 88.74645019933348 31 0.0 11 31.65314571774433 21 87.71928667732424 31 0.0 11 31.33652382541049 21 86.53409852475693 31 0.0 11 31.25736800152117 21 85.82298563321648 31 0.0 11 31.1782135808553 21 84.47977216541472 31 0.0 11 31.1782135808553 21 83.21557169756829 31 0.0 11 30.78243726785535 21 82.66248343658606 31 0.0 11 30.30750513096632 21 81.87235822976651 31 0.0 11 29.9117288179666 21 80.76618239247819 31 0.0 11 28.88271012352243 21 79.10691897888387 31 0.0 11 28.17031332141209 21 77.52666788056865 31 0.0 11 28.01200307685667 21 77.13160561949701 31 0.0 11 27.85369142907825 21 76.65752967379387 31 0.0 11 27.85369142907825 21 76.02542978220879 31 0.0 11 27.53707093996763 21 74.60320399912792 31 0.0 11 27.06213880307859 21 72.94393990085734 31 0.0 11 27.42625278652281 21 70.66849189336744 31 0.0 11 27.66371885496733 21 68.77219084925958 31 0.0 11 27.42625278652281 21 66.55983917468302 31 0.0 11 26.39723549530185 21 63.39933697805259 31 0.0 11 24.81412884007932 21 59.84377252035051 31 0.0 11 23.31017941196932 21 56.36721969325129 31 0.0 11 22.51862678596967 21 53.75980575760308 31 0.0 11 22.28116071752515 21 52.43250690281468 31 0.0 11 22.59778120663577 21 50.45719354342771 31 0.0 11 22.75609285441419 21 48.79793012983339 31 0.0 11 22.43947096208057 21 46.82261608577038 31 0.0 11 21.88538440452544 21 44.45223978063563 31 0.0 11 21.72707415997001 21 43.3460639433473 31 0.0 11 21.72707415997001 21 42.31890042133819 31 0.0 11 22.12285047296995 21 41.3707498992843 31 0.0 11 23.07271334352481 21 40.89667463825731 31 0.0 11 24.57666417485802 21 40.10654943143777 31 0.0 11 25.36821680085768 21 39.39543653989733 31 0.0 11 25.92230335841282 21 38.60531064840165 31 0.0 11 25.76399311385739 21 37.57814781106867 31 0.0 11 25.20990515307903 21 36.3929589738251 31 0.0 11 24.10173203796898 21 34.27553491221715 31 0.0 11 23.23102358808 21 32.61627149862283 31 0.0 11 23.15186916741413 21 32.06318392231674 31 0.0 11 23.31017941196932 21 31.74713329184806 31 0.0 11 23.07271334352481 21 30.64095813923586 31 0.0 11 22.51862678596967 21 29.3767569867133 31 0.0 11 22.36031654141447 21 28.74465641045196 31 0.0 11 22.43947096208057 21 28.27058114942497 31 0.0 11 22.36031654141447 21 27.24341831209199 31 0.0 11 21.88538440452544 21 25.42612958326333 31 0.0 11 20.2231233286368 21 21.15945154934456 31 0.0 11 19.03579438963743 21 18.47302461374113 31 0.0 11 18.71917390052681 21 17.61980170465574 31 0.0 11 18.64001807663771 21 16.9877011283944 31 0.0 11 18.32339758752709 21 15.80251297582708 31 0.0 11 18.40255200819319 21 15.40745003007919 31 0.0 11 18.71917390052681 21 15.24942471484485 31 0.0 11 19.19410603741607 21 15.40745003007919 31 0.0 11 21.1729876024151 21 15.80251297582708 31 0.0 11 23.54764548041385 21 16.11856292161962 31 0.0 11 24.57666417485802 21 16.51362586736752 31 0.0 11 25.28906238019158 21 17.5407887047005 31 0.0 11 26.47639131919118 21 18.01486465040363 31 0.0 11 27.18878812130151 21 18.80498985722317 31 0.0 11 29.00935944174511 21 19.27906511825005 31 0.0 11 30.90908658607827 21 21.09635384707883 31 0.0 11 32.41303601418826 21 21.9811252649589 31 0.0 11 33.52121053252153 21 22.21816289547234 31 0.0 0 SPLINE 5 4B4 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 21 73 17 74 15 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.5064848378296932 40 1.757814027327156 40 3.110119838801372 40 3.68020394421255 40 4.458619051105813 40 5.166350272610583 40 5.956990312805805 40 7.337286102592426 40 7.843770513179138 40 8.496432687594108 40 9.279323344280888 40 10.79011931214547 40 11.93108087026645 40 12.56923356329784 40 12.56923356329784 40 12.56923356329784 40 12.56923356329784 10 24.65581999874734 20 13.60579451235582 30 0.0 10 24.78397048120398 20 13.71856481837824 30 0.0 10 25.22873150630454 20 14.10994716783136 30 0.0 10 26.25700373204281 20 14.32802075422375 30 0.0 10 27.38707932661441 20 14.5292736452604 30 0.0 10 27.89394239288891 20 15.30273735659811 30 0.0 10 27.99987086103087 20 16.07916780413537 30 0.0 10 28.87180414761548 20 16.21468416262706 30 0.0 10 29.38728875639487 20 17.09622582551204 30 0.0 10 29.54247233884868 20 17.99673730913356 30 0.0 10 30.2122321685462 20 18.59405390240382 30 0.0 10 30.92634723182535 20 18.56735254742946 30 0.0 10 31.52788867314949 20 19.45480577729426 30 0.0 10 32.29006722771687 20 20.23392316103286 30 0.0 10 33.17644982848551 20 20.99566964692985 30 0.0 10 33.77974571947788 20 21.02312628677251 30 0.0 10 33.9961426694108 20 21.03297474290502 30 0.0 11 24.65581999874734 21 13.60579451235582 31 0.0 11 25.05159631174706 21 13.92184514282462 31 0.0 11 26.23892525074643 21 14.31690808857251 31 0.0 11 27.50541001363512 21 14.7909833495994 31 0.0 11 27.82203050274574 21 15.26505861062639 31 0.0 11 28.13865099185636 21 15.97617150216683 31 0.0 11 28.7718933733006 21 16.29222144795937 31 0.0 11 29.24682551018964 21 16.92432202422071 31 0.0 11 29.80091206774477 21 18.18852317674327 31 0.0 11 30.19668838074471 21 18.50457312253593 31 0.0 11 30.82993076218895 21 18.66259843777027 31 0.0 11 31.38401731974409 21 19.21568601407637 31 0.0 11 32.41303601418826 21 20.32186185136458 31 0.0 11 33.36290028796634 21 20.95396242762592 31 0.0 11 33.9961426694108 21 21.03297474290502 31 0.0 0 SPLINE 5 4B5 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 26 73 22 74 20 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.3950629457478953 40 1.047725120162865 40 2.650151563638109 40 3.613071154702335 40 4.889375148338655 40 5.635156636739743 40 6.870689340884716 40 8.888083691313596 40 11.94484476080339 40 14.49297243880977 40 18.31932988727992 40 19.10222102766881 40 19.5762962886958 40 20.40133405127397 40 21.30232869950363 40 21.72793046716221 40 22.62942559070882 40 24.19520838090793 40 25.90546147648133 40 25.90546147648133 40 25.90546147648133 40 25.90546147648133 10 23.54764548041385 20 13.52678219707672 30 0.0 10 23.57317470930638 20 13.67562401468175 30 0.0 10 23.64087939965252 20 14.07035936739946 30 0.0 10 22.44960911688678 20 14.15327831687741 30 0.0 10 21.64816246546174 20 13.50962934982893 30 0.0 10 20.39034576952304 20 13.29800033350811 30 0.0 10 19.17970739588961 20 13.51918076865905 30 0.0 10 18.78682075030541 20 12.3542885688628 30 0.0 10 17.6271145016062 20 11.62540713678054 30 0.0 10 15.7245088520782 20 10.75200899568439 30 0.0 10 13.33086227052797 20 9.920131753082529 30 0.0 10 10.40970177907286 20 8.59988062798566 30 0.0 10 8.73523914346711 20 7.093422047181929 30 0.0 10 7.143963995770485 20 6.065407420066827 30 0.0 10 7.220727240699472 20 5.315530189412863 30 0.0 10 7.430630668568509 20 4.649391959375452 30 0.0 10 7.810471278175031 20 3.939830478489534 30 0.0 10 7.469953079437842 20 3.239813725381886 30 0.0 10 6.855118854926122 20 2.504963382213119 30 0.0 10 5.766177807091893 20 1.605120514121534 30 0.0 10 5.211815314733408 20 0.6543661514250239 30 0.0 10 4.922410619032916 20 0.1580252538807372 30 0.0 11 23.54764548041385 21 13.52678219707672 31 0.0 11 23.54764548041385 21 13.92184514282462 31 0.0 11 22.91440309896961 21 14.07987045805896 31 0.0 11 21.41045367085962 21 13.52678219707672 31 0.0 11 20.46058939708132 21 13.36875688184238 31 0.0 11 19.19410603741607 21 13.21073225128418 31 0.0 11 18.79832972441613 21 12.57863167502284 31 0.0 11 17.84846545063806 21 11.78850578352717 31 0.0 11 16.02789413019422 21 10.91936826142853 31 0.0 11 13.17830411530644 21 9.813192424140311 31 0.0 11 10.88280206119679 21 8.707016586851977 31 0.0 11 7.772000633920697 21 6.479029647141601 31 0.0 11 7.217914076365786 21 5.925941386159365 31 0.0 11 7.217914076365786 21 5.451866125132369 31 0.0 11 7.455378741586855 21 4.661740918312943 31 0.0 11 7.692844810031601 21 3.792602711538052 31 0.0 11 7.534534565476178 21 3.39753976579027 31 0.0 11 6.98044800792104 21 2.686426874249832 31 0.0 11 5.872273489587769 21 1.580251036961499 31 0.0 11 4.922410619032916 21 0.1580252538807372 31 0.0 0 SPLINE 5 4B6 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 16 73 12 74 10 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.7285218749888851 40 2.111337900584205 40 3.866788725615823 40 4.468699018538718 40 5.027422804404284 40 5.3809050553966 40 6.233221386322168 40 7.968705398690653 40 10.98200663466385 40 10.98200663466385 40 10.98200663466385 40 10.98200663466385 10 3.418459787699703 20 -0.0000000613537168 30 0.0 10 3.458719673480639 20 0.2415100381234447 30 0.0 10 3.57539732674092 20 0.9414333265048298 30 0.0 10 4.366416069257276 20 2.016909453367392 30 0.0 10 5.125279727519835 20 2.953021389083052 30 0.0 10 5.625165274705524 20 3.854177214702508 30 0.0 10 5.511638127210755 20 4.341931636028423 30 0.0 10 5.277490819223957 20 4.996229934065448 30 0.0 10 4.163456306593002 20 4.085646853482947 30 0.0 10 2.614061260953364 20 3.66129890831083 30 0.0 10 1.120695796762666 20 2.968200959571091 30 0.0 10 0.1730934598119802 20 2.528401559015492 30 0.0 11 3.418459787699703 21 -0.0000000613537168 31 0.0 11 3.576771435478121 21 0.7111128301867212 31 0.0 11 4.289168237588455 21 1.896300982754155 31 0.0 11 5.318186932032631 21 3.318527450511169 31 0.0 11 5.55565300047715 21 3.871615026817153 31 0.0 11 5.476497176587827 21 4.424703287799388 31 0.0 11 5.318186932032631 21 4.740753233591931 31 0.0 11 4.526634306032974 21 4.424703287799388 31 0.0 11 2.943529054033888 21 3.713589711582812 31 0.0 11 0.1730934598119802 21 2.528401559015492 31 0.0 0 LWPOLYLINE 5 4B7 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 0.1790188284389842 20 2.621625671105789 10 -0.0000004816131423 20 2.830104167598278 10 0.6265671035689593 20 3.217279481203718 10 0.92493123880854 20 3.127931746730723 10 0.8950946871332234 20 2.919452576154753 0 LWPOLYLINE 5 4B8 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 1.044277445509806 20 3.038583338174362 10 0.8652581354579069 20 3.247062508750332 10 1.491825720639781 20 3.664020175818905 10 1.909536062580855 20 3.515106386252682 10 1.820026407554678 20 3.336410243223326 0 LWPOLYLINE 5 4B9 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2.088555372632754 20 3.455541005242935 10 1.790189855879361 20 3.634237822355771 10 2.26757468268488 20 3.991630108414483 10 2.774794679651677 20 3.991630108414483 10 2.774794679651677 20 3.693803203365519 0 LWPOLYLINE 5 4BA 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2.98365054137912 20 3.84271631884826 10 2.74495812797636 20 4.140543223897338 10 3.431197434995283 20 4.468153156492917 10 4.087600190338889 20 4.319240041010061 10 3.968255365151435 20 4.170326251443952 0 LWPOLYLINE 5 4BB 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 4.236782948715699 20 4.319240041010061 10 3.819072606774625 20 4.617066946059139 10 4.206946397040383 20 5.153155375147321 10 4.773840878871624 20 5.391416899186538 10 4.982695359085255 20 4.974459232117851 10 4.80367743054694 20 4.646849299522273 0 LWPOLYLINE 5 4BC 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 7.500896452244887 20 6.490273304864558 10 7.321877142192988 20 6.609404066884167 10 7.978279897536594 20 7.264623257991956 10 8.276645414289987 20 7.145492495972348 10 8.037953000887227 20 6.728534828903775 0 LWPOLYLINE 5 4BD 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 8.515336446178935 20 7.145492495972348 10 8.157299207588494 20 7.324189313085184 10 8.694355756230834 20 7.919843123183113 10 9.291085408223807 20 7.800712361163505 10 8.992721272984226 20 7.562450837124288 0 LWPOLYLINE 5 4BE 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 9.529777821626339 20 7.919843123183113 10 9.052394376334859 20 8.038973885202722 10 10.06683575178249 20 8.515496933281156 10 10.12650747361931 20 8.277235409241939 0 LWPOLYLINE 5 4BF 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 10.30552678367143 20 8.575062314290903 10 10.06683575178249 20 8.575062314290903 10 10.90225781717799 20 9.349412941501668 10 11.3796412624697 20 9.23028217948206 10 11.14094884906694 20 8.932455274433095 0 LWPOLYLINE 5 4C0 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 11.5586605725216 20 9.170716798472312 10 11.31996815911907 20 9.468543703521277 10 12.2150633278652 20 9.825935989580102 10 12.45375574126796 20 9.587674465540885 0 LWPOLYLINE 5 4C1 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 12.5134288446186 20 9.706805227560494 10 12.5134288446186 20 10.06419751361931 10 13.46819573520178 20 10.36202509275165 10 13.40852263185115 20 10.00463213260945 0 LWPOLYLINE 5 4C2 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 13.82623435530581 20 10.12376356871254 10 13.52786883855242 20 10.42159047376151 10 14.30361780059752 20 10.95767890284969 10 14.42296400729878 20 10.42159047376151 0 LWPOLYLINE 5 4C3 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 14.54231021400005 20 10.48115585477126 10 14.48263711064942 20 10.95767890284969 10 15.13903986599302 20 11.3150711889084 10 15.49707848609705 20 11.01724428385944 10 15.31805917604515 20 10.77898275982022 0 LWPOLYLINE 5 4C4 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 15.79544400285044 20 10.89811352183983 10 15.25838607269429 20 11.3150711889084 10 16.21315434479129 20 11.73202953006045 10 16.57119296489531 20 11.43420195092801 10 16.33250055149278 20 11.13637504587905 0 LWPOLYLINE 5 4C5 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 16.80988399678426 20 11.37463656991826 10 16.63086606824595 20 11.73202953006045 10 17.04857641018702 20 12.26811795914864 10 17.76465226888126 20 12.08942181611928 10 17.64530606217999 20 11.79159491107031 0 LINE 5 4C6 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 23.5472611279913 20 13.2980331575909 30 0.0 11 23.5472611279913 21 12.61743539997326 31 0.0 0 LINE 5 4C7 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 24.5762001083508 20 13.40940387133128 30 0.0 11 24.45223273827696 21 12.84017682745423 31 0.0 0 LINE 5 4C8 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 34.10194577305992 20 22.30289105759834 30 0.0 11 35.04410773251902 21 22.45138489319674 31 0.0 0 LINE 5 4C9 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 34.74658217610363 20 21.16443629576076 30 0.0 11 35.58956941059568 21 21.36242875064192 31 0.0 0 LWPOLYLINE 5 4CA 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 52 70 0 43 0.0 10 15.79426695316624 20 17.73927892638766 10 15.94302973137405 20 17.64028236190529 10 16.24055390627563 20 18.28375699766502 10 16.04220445634132 20 18.33325494286441 10 16.19096585303509 20 18.38275288806391 10 16.38931530296963 20 19.66970148549989 10 16.19096585303509 20 19.81819599518166 10 16.43890335621017 20 19.76869737589879 10 16.7860155843523 20 20.26367817606012 10 16.43890335621017 20 20.56066584725681 10 16.73642753111175 20 20.51116790205742 10 16.93477836255988 20 21.15464253781703 10 16.73642753111175 20 21.30313637341544 10 16.98436503428661 20 21.30313637341544 10 17.23230253746169 20 21.84761444469279 10 17.03395308752715 20 22.14460278997296 10 17.430651987396 20 22.04560689957407 10 17.38106393415569 20 22.54058702565191 10 17.57941476560381 20 22.63958291605092 10 17.62900143733054 20 23.18406098732828 10 17.430651987396 20 23.48104933260833 10 17.72817616229781 20 23.43155138740894 10 17.97611366547266 20 24.0255274038858 10 17.62900143733054 20 24.07502602316856 10 18.12487644368025 20 24.17402191356757 10 18.22405116864752 20 24.71849998484492 10 18.0257017187132 20 24.86699382044321 10 18.27363784037425 20 24.86699382044321 10 18.52157534354932 20 25.21348011092277 10 18.37281394685533 20 25.75795885628361 10 18.07528839043993 20 25.75795885628361 10 18.67033812175691 20 25.8569547466825 10 19.16621174659303 20 26.1044444726798 10 19.16621174659303 20 26.40143281795985 10 19.51332397473515 20 26.40143281795985 10 19.61249869970242 20 27.09440539891909 10 19.36456257804115 20 27.39139307011578 10 19.66208675294296 20 27.21298880520521 10 19.95961230935836 20 27.95545933136384 10 19.76126147791001 20 28.25244767664401 10 19.51332535624897 20 28.2029497314445 10 20.0587870343254 20 28.3019456218434 10 20.30672315598667 20 28.74742780272185 10 20.15796175929267 20 29.09391409320153 10 20.45548593419448 20 28.99491820280252 10 20.65383538412879 20 29.63839216447889 10 20.5050739874348 20 29.93538050975894 10 20.85218621557692 20 29.93538050975894 10 21.00094761227091 20 30.62835309071818 10 20.75301010909606 20 30.82634487151597 10 21.00094761227091 20 30.92534076191487 10 21.19929706220545 20 31.42032156207619 0 LWPOLYLINE 5 4CB 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 32 70 0 43 0.0 10 18.37281394685533 20 25.97553815296874 10 18.67033812175691 20 26.1240326626505 10 18.71992617499745 20 26.61901278872846 10 18.57116339678964 20 26.71800867912736 10 18.76951284672418 20 26.71800867912736 10 19.01745034989903 20 27.06449496960692 10 18.81910089996472 20 27.21298880520521 10 19.06703840313957 20 27.21298880520521 10 19.16621312810684 20 27.60897304088428 10 18.81910089996472 20 27.65847098608378 10 19.26538785307388 20 27.70796960536666 10 19.36456257804115 20 28.15345178624511 10 19.01745034989903 20 28.4504394574418 10 19.51332535624897 20 28.4504394574418 10 19.61250008121623 20 28.79692574792136 10 19.46373730300843 20 29.09391409320153 10 19.71167480618328 20 29.19290998360043 10 19.81084953115055 20 29.88588256455955 10 19.51332535624897 20 29.93538050975894 10 19.81084953115055 20 29.93538050975894 10 19.91002425611782 20 30.4303606358369 10 19.66208675294296 20 30.67785103591757 10 19.95961230935836 20 30.57885514551867 10 20.15796175929267 20 31.12333321679602 10 19.91002425611782 20 31.32132499759382 10 20.2075484310194 20 31.37082294279332 10 20.30672315598667 20 31.66781128807338 10 19.95961230935836 20 31.86580374295465 10 20.10837370605213 20 31.96479963335355 10 20.0587870343254 20 32.36078386903261 10 19.81084953115055 20 32.55877564983041 10 19.51332535624897 20 32.31128592383311 0 LWPOLYLINE 5 4CC 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 50 70 0 43 0.0 10 17.87693894050539 20 16.18489986735733 10 17.57941476560381 20 16.531386157837 10 17.87693894050539 20 17.02636628391485 10 18.0257017187132 20 17.02636628391485 10 17.87693894050539 20 17.07586422911435 10 17.92652699374593 20 17.62034230039171 10 18.17446449692079 20 17.71933886487397 10 17.97611366547266 20 17.81833475527287 10 18.0257017187132 20 18.26381693615144 10 18.22405116864752 20 18.36281282655034 10 18.17446449692079 20 18.5113073362321 10 18.32322589361479 20 18.95678951711056 10 18.71992617499745 20 19.45176964318852 10 18.9678636781723 20 19.45176964318852 10 18.76951284672418 20 19.50126758838791 10 18.81910089996472 20 20.44172989534434 10 19.21579979983357 20 20.44172989534434 10 19.06703840313957 20 20.49122784054373 10 19.06703840313957 20 21.13470247630345 10 19.36456257804115 20 21.43169082158363 10 19.5629120279757 20 21.23369836670235 10 19.4141506312817 20 21.48118876678302 10 19.5629120279757 20 21.92667094766147 10 19.81084953115055 20 21.92667094766147 10 19.5629120279757 20 22.07516478325988 10 19.56291340948928 20 22.60967248673876 10 19.95961230935836 20 23.10465328690008 10 20.20754981253321 20 23.05515534170058 10 19.95961230935836 20 23.25314712249837 10 20.15796175929267 20 23.50063752257915 10 20.45548731570807 20 23.50063752257915 10 20.25713648425994 20 23.59963341297805 10 20.40589926246752 20 24.39160188433607 10 20.6538367656426 20 24.34210393913656 10 20.45548731570807 20 24.49059777473496 10 20.55466204067533 20 24.83708406521452 10 21.00094899378473 20 24.83708406521452 10 20.60424871240206 20 24.93607995561342 10 20.8025981623366 20 25.18357035569408 10 21.00094899378473 20 25.18357035569408 10 20.85218621557692 20 25.33206419129248 10 20.85218621557692 20 25.87654293665321 10 21.248885115446 20 26.074534717451 10 21.19929844371904 20 26.32202511753177 10 21.44723594689412 20 26.76750729841023 10 21.64558539682843 20 26.76750729841023 10 21.49682261862085 20 26.86650318880913 10 21.89352290000351 20 27.60897371496764 10 22.29022179987237 20 27.70796960536666 10 22.24063512814564 20 27.41098126008648 0 LWPOLYLINE 5 4CD 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 43 70 0 43 0.0 10 16.83560363759261 20 41.8540886786551 10 17.03395308752715 20 42.00258251425339 10 17.38106531566927 20 41.65609622377383 10 17.281890590702 20 40.66613597161802 10 16.93477836255988 20 40.66613597161802 10 17.281890590702 20 40.51764146193625 10 17.281890590702 20 40.02266133585829 10 17.03395308752715 20 39.87416750026 10 17.43065336890981 20 39.87416750026 10 17.82735226877866 20 39.47818326458093 10 17.62900281884412 20 39.18119491930076 10 17.87694032201921 20 39.18119491930076 10 18.0257017187132 20 38.8842065740207 10 17.87694032201921 20 38.68621479322291 10 18.17446449692079 20 38.68621479322291 10 18.52157672506291 20 38.33972850274335 10 18.52157672506291 20 38.04274015746318 10 18.67033950327072 20 38.19123466714495 10 19.26538785307388 20 37.79525043146588 10 19.11662645638011 20 37.49826208618583 10 19.31497590631443 20 37.64675592178412 10 19.71167480618328 20 37.34976757650406 10 19.66208813445655 20 37.15177579570627 10 19.81084953115055 20 37.15177579570627 10 20.15796175929267 20 36.80528950522671 10 20.0587870343254 20 36.60729772442891 10 20.40589926246752 20 36.9042853956256 10 20.6538367656426 20 36.26081143394924 10 20.30672453750048 20 36.06281897906808 10 21.00094899378473 20 36.31030937914875 10 21.54641067186116 20 35.36984707219232 10 21.248885115446 20 35.41934501739183 10 21.64558539682843 20 35.07285872691227 10 21.49682261862085 20 34.28089025555414 10 21.248885115446 20 34.23139231035475 10 21.54641067186116 20 34.18189436515524 10 21.54641067186116 20 33.48892178419612 10 21.29847316868631 20 33.48892178419612 10 21.44723594689412 20 33.38992589379722 10 21.44723594689412 20 33.14243549371656 10 21.248885115446 20 32.94444303883528 10 21.248885115446 20 32.74645125803749 10 21.248885115446 20 32.5484594772397 0 LWPOLYLINE 5 4CE 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 41 70 0 43 0.0 10 20.55466204067533 20 41.90358662385449 10 20.10837508756594 20 41.30960993329426 10 20.20754981253321 20 40.86412775241581 10 20.55466204067533 20 40.81462980721631 10 20.0587870343254 20 40.81462980721631 10 20.0587870343254 20 40.17115517145668 10 20.5050739874348 20 40.22065379073956 10 20.30672453750048 20 39.97316339065889 10 20.60424871240206 20 39.72567299057823 10 21.14971039047873 20 39.77517093577762 10 20.8025981623366 20 39.52768120978044 10 21.39764789365358 20 38.9337045192201 10 21.7447601217957 20 38.98320313850297 10 21.69517206855516 20 38.58721890282402 10 22.09187234993783 20 38.48822233834164 10 22.33980985311268 20 38.48822233834164 10 22.19104707490509 20 38.43872439314225 10 22.33980985311268 20 38.24073261234445 10 22.88527153118934 20 37.99324221226379 10 22.8356834779488 20 37.74575181218301 10 23.03403292788334 20 37.59725797658473 10 23.82743210913486 20 37.84474837666539 10 23.23238375933147 20 37.64675592178412 10 23.2819704310582 20 36.8547874504261 10 23.48031988099273 20 36.55779910514604 10 23.38114515602546 20 36.26081143394924 10 23.52990793423328 20 36.06281897906808 10 23.77784543740813 20 35.96382308866918 10 23.430733209266 20 35.91432514346968 10 23.48031988099273 20 35.56783885299012 10 23.62908265920032 20 34.9243642172305 10 23.48031988099273 20 34.97386283651326 10 23.33155848429874 20 34.47888203635193 10 23.57949460596 20 34.28089025555414 10 23.2819704310582 20 34.13239574587237 10 23.2819704310582 20 33.88490601987518 10 23.38114515602546 20 33.48892178419612 10 23.13320903436419 20 33.34042727451435 10 23.03403292788334 20 32.89494509363589 10 23.2819704310582 20 32.6474553676386 10 23.38114515602546 20 32.99394165811816 0 LWPOLYLINE 5 4CF 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 22.29022179987237 20 40.27015173593895 10 22.14145902166456 20 39.82466955506049 10 22.8356834779488 20 39.82466955506049 10 22.68692208125503 20 40.27015173593895 0 LWPOLYLINE 5 4D0 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 23.67867071244086 20 39.77517093577762 10 23.430733209266 20 39.37918737418204 10 23.62908265920032 20 39.13169697410137 10 23.8770201623754 20 39.13169697410137 10 23.92660683410213 20 39.47818326458093 0 LWPOLYLINE 5 4D1 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.14137918130836 20 40.36914762633784 10 16.48849140945048 20 40.36914762633784 10 16.38931668448344 20 39.87416750026 10 16.04220445634132 20 40.31964968113846 0 LWPOLYLINE 5 4D2 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 16.04220445634132 20 39.52768120978044 10 16.29014195951617 20 39.57717915497983 10 16.29014195951617 20 39.37918737418204 10 16.09179250958163 20 39.37918737418204 10 16.04220445634132 20 39.42868531938143 0 LWPOLYLINE 5 4D3 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 16.88519169083315 20 37.94374426706429 10 16.78601696586588 20 38.14173604786208 10 16.98436641580042 20 38.33972850274335 10 17.23230391897527 20 38.24073261234445 10 16.83560363759261 20 37.94374426706429 0 LWPOLYLINE 5 4D4 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 17.97611504698625 20 37.79525043146588 10 17.92652699374593 20 37.94374426706429 10 18.07528977195352 20 38.04274015746318 10 18.22405255016133 20 37.74575181218301 10 17.97611504698625 20 37.64675592178412 0 LWPOLYLINE 5 4D5 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 19.36456257804115 20 36.06281897906808 10 19.36456257804115 20 35.86482719827029 10 19.61250008121623 20 35.96382308866918 10 19.46373730300843 20 36.16181554355034 0 LWPOLYLINE 5 4D6 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 19.95961230935836 20 34.97386283651326 10 20.0587870343254 20 34.82536832683149 10 20.45548731570807 20 34.7758703816321 10 20.35631120922721 20 35.02336078171277 10 20.00920036259867 20 35.02336078171277 0 LWPOLYLINE 5 4D7 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 21.94310957173024 20 40.66613597161802 10 21.94310957173024 20 41.11161815249647 10 21.69517206855516 20 41.16111609769598 10 21.69517206855516 20 40.51764146193625 0 SPLINE 5 4D8 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 55 73 51 74 49 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 2.427100854630739 40 4.626531313681701 40 6.616363059570479 40 9.98806875152986 40 12.86579821014651 40 15.43969540501847 40 17.88530476815589 40 21.7438084247194 40 26.47428657126928 40 29.17645811762823 40 31.60355897225902 40 34.30572985183824 40 36.39408841442755 40 39.46526043071942 40 42.56544794330987 40 47.25583336387807 40 50.08373808582558 40 53.25781550427229 40 56.45385933831185 40 59.93479806024724 40 64.8713544831618 40 70.37405455203303 40 73.91114246577441 40 75.9494189186701 40 76.79018692920116 40 77.28573994361224 40 78.83583400125779 40 80.56488950584219 40 82.74280313911857 40 84.38200889881203 40 86.24258608088799 40 88.73530690391117 40 91.72126513242794 40 97.00345520851033 40 100.6930141198773 40 106.5213941055092 40 110.6774750529695 40 114.6541253628294 40 117.828202781276 40 120.9960773407917 40 123.6622922260441 40 127.1517404696671 40 128.7909462293607 40 131.6549840271402 40 134.7382506038492 40 137.7881927854537 40 140.2710296651484 40 142.6010621917543 40 142.6010621917543 40 142.6010621917543 40 142.6010621917543 10 17.82735365029248 20 40.41838470125549 30 0.0 10 17.87551186074431 20 41.2601915976298 30 0.0 10 17.96731087611738 20 42.86484101247313 30 0.0 10 19.92459453762387 20 44.38270136764121 30 0.0 10 19.71180498365638 20 47.06953044444536 30 0.0 10 20.15107881194385 20 49.74821331636099 30 0.0 10 19.8055968714042 20 52.680785892117 30 0.0 10 19.58553960527451 20 55.36337978366599 30 0.0 10 20.87777322954931 20 58.108934071265 30 0.0 10 22.84800130665038 20 61.19234857576985 30 0.0 10 24.39038412569561 20 64.63463803131637 30 0.0 10 25.09737867004394 20 67.94331215501611 30 0.0 10 24.2927616292053 20 70.47631174453695 30 0.0 10 23.87720353211375 20 72.85419030750299 30 0.0 10 24.11744261229358 20 75.49960732578266 30 0.0 10 25.22130239236796 20 78.05582230615252 30 0.0 10 27.0143474107424 20 81.20485085308422 30 0.0 10 27.92441800254234 20 84.67079700976439 30 0.0 10 28.41954625581722 20 88.20630545430779 30 0.0 10 28.40625049405325 20 91.2667824086343 30 0.0 10 29.21393592551062 20 94.56326627444495 30 0.0 10 31.98985074709997 20 97.41274558459421 30 0.0 10 33.53212359998959 20 101.8530146506155 30 0.0 10 35.24578136171124 20 106.2192283645044 30 0.0 10 35.89212509615016 20 109.7874934337863 30 0.0 10 36.01525172263391 20 112.0766227502342 30 0.0 10 36.86300927838058 20 112.8709678489224 30 0.0 10 37.68837060081971 20 113.3891501623928 30 0.0 10 38.0752497451093 20 114.6903205403901 30 0.0 10 38.65036030603844 20 116.3999600233274 30 0.0 10 38.1670372281034 20 118.3491887916342 30 0.0 10 39.20579669490104 20 120.0153739341926 30 0.0 10 40.18239560126586 20 121.7816382510462 30 0.0 10 40.12305740633713 20 124.3049173198303 30 0.0 10 41.11608486951798 20 127.7568465462257 30 0.0 10 41.79255245549434 20 131.6907232164274 30 0.0 10 42.52708188328416 20 136.5691008031475 30 0.0 10 43.78243888604609 20 140.9768299165791 30 0.0 10 43.54843904123773 20 145.7407713633992 30 0.0 10 45.45999901937618 20 149.1592805947624 30 0.0 10 45.49532101812522 20 152.649127668134 30 0.0 10 45.14272346460383 20 155.6838778576798 30 0.0 10 46.42898033784458 20 158.6304002320441 30 0.0 10 48.20675769499065 20 160.5651035394397 30 0.0 10 49.26957915119779 20 163.0150106344358 30 0.0 10 50.15742138703378 20 165.4440790333743 30 0.0 10 49.63710533565848 20 168.4931090734247 30 0.0 10 48.90476214023703 20 171.2137112548706 30 0.0 10 48.43419572522349 20 173.9100105295582 30 0.0 10 49.18117192223563 20 175.3760514431421 30 0.0 10 49.54280210346603 20 176.0857991478095 30 0.0 11 17.82735365029248 21 40.41838470125549 31 0.0 11 18.32322865664218 21 42.79429011532966 31 0.0 11 19.61250146272982 21 44.57621883884359 31 0.0 11 19.81085091266436 21 46.5561400172387 31 0.0 11 20.00920174411248 21 49.92200635755216 31 0.0 11 19.81085091266436 21 52.79289189770418 31 0.0 11 19.81085091266436 21 55.36678909257614 31 0.0 11 20.70342481888292 21 57.64369861625141 31 0.0 11 22.61959587354317 21 60.99277893135229 31 0.0 11 24.47207127520619 21 65.34545148752044 31 0.0 11 24.86877017507504 21 68.01834524687468 31 0.0 11 24.3728951687251 21 70.39425066094884 31 0.0 11 23.97619626885625 21 73.0671437462197 31 0.0 11 24.17454571879079 21 75.14606148909718 31 0.0 11 25.26546907494389 21 78.01694702924919 31 0.0 11 26.65391798751238 21 80.78883667900242 31 0.0 11 27.96875480497192 21 85.29116047199329 31 0.0 11 28.33989107498268 21 88.0946053145924 31 0.0 11 28.53824052491722 21 91.26247920002469 31 0.0 11 29.43081443113578 21 94.33135652097451 31 0.0 11 31.45733665670741 21 97.16157595683695 31 0.0 11 33.49698506236063 21 101.6570652180781 31 0.0 11 35.2715191865484 21 106.8657825928306 31 0.0 11 35.89171108594155 21 110.3480739243339 31 0.0 11 36.3730562309513 21 112.3286995198982 31 0.0 11 36.96810458075447 21 112.9226762104584 31 0.0 11 37.36480486213713 21 113.2196638816551 31 0.0 11 38.05902931842138 21 114.6056090435735 31 0.0 11 38.45572821829046 21 116.2885418766884 31 0.0 11 38.45572821829046 21 118.4664555099648 31 0.0 11 39.1499526745747 21 119.9513958881985 31 0.0 11 39.94335185582622 21 121.634329395397 31 0.0 11 40.2408760307278 21 124.10923069987 31 0.0 11 40.86567804138371 21 127.0290884001574 31 0.0 11 41.86106191676344 21 132.2166449483308 31 0.0 11 42.48125381615659 21 135.8537051579472 31 0.0 11 43.56659033085157 21 141.5801401664656 31 0.0 11 43.94010004142251 21 145.7194033059569 31 0.0 11 45.22937422902373 21 149.4812538819493 31 0.0 11 45.42772367895827 21 152.6491277673815 31 0.0 11 45.42772367895827 21 155.8170023268971 31 0.0 11 46.4194723101441 21 158.2919036313702 31 0.0 11 48.40296957251599 21 161.1627898456057 31 0.0 11 49.09719402880046 21 162.6477302238395 31 0.0 11 49.89059321005197 21 165.3996804861624 31 0.0 11 49.59306903515017 21 168.4685584811957 31 0.0 11 48.89884457886592 21 171.4384405858301 31 0.0 11 48.70049512893138 21 173.9133418903031 31 0.0 11 49.54280210346603 21 176.0857991478095 31 0.0 0 SPLINE 5 4D9 330 492 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 59 73 55 74 53 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 1.419149961505264 40 3.105003103307208 40 5.318750146460386 40 7.960536364638111 40 10.33851080451821 40 12.59625089864217 40 13.88354404943536 40 16.00991308760419 40 18.59275943236281 40 21.19201674252261 40 22.58150571977908 40 24.3881021357875 40 27.09027368214656 40 29.72120975984688 40 33.23679711625784 40 37.71913371468896 40 40.96218330289251 40 49.35750086054468 40 52.08176864250599 40 54.3780346579437 40 56.32322666927469 40 58.14372399596314 40 59.950321076851 40 61.84167573510863 40 63.37869266478306 40 64.86459973193746 40 66.88652193431735 40 67.92022560081533 40 70.34732645544607 40 73.30095633445911 40 76.68500213139923 40 80.12920768583976 40 83.18819201658591 40 85.38762302176399 40 86.98735178303868 40 88.38741838721645 40 92.93861930252026 40 96.47234480903044 40 100.2296605315074 40 104.1830792402009 40 107.0693413751788 40 110.1637529931845 40 113.2143034596623 40 116.3840817498917 40 121.3478073187905 40 125.3337623385643 40 127.4126794073584 40 131.2849727939315 40 134.6522999011378 40 138.380611746886 40 139.5771557704434 40 140.4681201322003 40 140.4681201322003 40 140.4681201322003 40 140.4681201322003 10 50.45050811891734 20 175.1100321409059 30 0.0 10 50.33744537236572 20 174.64719430931 30 0.0 10 50.09007181183035 20 173.6345367731684 30 0.0 10 50.29607570668214 20 171.8493114659946 30 0.0 10 50.65411428515862 20 169.7068350160901 30 0.0 10 51.4320806028213 20 167.391239528892 30 0.0 10 51.26519378733916 20 164.9245121780212 30 0.0 10 50.72843914470867 20 163.018579671868 30 0.0 10 49.99488155103688 20 161.2743953919339 30 0.0 10 49.0405636507481 20 159.5091502645116 30 0.0 10 47.75554276246563 20 157.467160257253 30 0.0 10 46.3464642338151 20 155.6731709552451 30 0.0 10 46.24115944535613 20 153.6808914549939 30 0.0 10 46.83269849468611 20 151.7782029792916 30 0.0 10 46.3152707777345 20 149.3571755923499 30 0.0 10 45.09888063637869 20 146.6748645955973 30 0.0 10 44.65768425799036 20 143.1162383532242 30 0.0 10 44.45066942875785 20 139.3714451235098 30 0.0 10 42.97467505014487 20 134.1812823412938 30 0.0 10 43.20116306419746 20 129.2346580028044 30 0.0 10 41.21897304851595 20 125.1275349230663 30 0.0 10 41.15962646301629 20 122.7767096654113 30 0.0 10 40.65641222422053 20 120.8041999202215 30 0.0 10 39.76180231410606 20 119.1502431377808 30 0.0 10 39.56650000821871 20 117.2905330341151 30 0.0 10 39.4221925421207 20 115.5760445792497 30 0.0 10 39.1248563780886 20 113.903246122876 30 0.0 10 37.91324145669814 20 112.6750499310358 30 0.0 10 37.16023202859803 20 111.3392814383186 30 0.0 10 36.66364046210279 20 109.575234286548 30 0.0 10 36.28342060545211 20 107.4729853557701 30 0.0 10 35.67584496125866 20 104.6024516659071 30 0.0 10 34.31364325014355 20 101.6226388259453 30 0.0 10 33.51033636299132 20 98.41072811916163 30 0.0 10 32.08454296305936 20 95.84405025405024 30 0.0 10 30.56416139180645 20 94.11710077072346 30 0.0 10 29.90267193531424 20 92.47818903733145 30 0.0 10 29.64274789153655 20 89.96655137223113 30 0.0 10 29.51423076672789 20 86.80496262613434 30 0.0 10 28.7110342128202 20 82.92591311339711 30 0.0 10 27.56082687263833 20 79.35144507917127 30 0.0 10 25.87596663556055 20 76.20318987689381 30 0.0 10 25.52745044344741 20 72.82957506003218 30 0.0 10 26.22965271994037 20 69.87836617299518 30 0.0 10 26.09047693940888 20 66.74610103825749 30 0.0 10 25.1547812813118 20 63.09073852397743 30 0.0 10 23.07321391682535 20 59.66297133921803 30 0.0 10 20.82076154057235 20 56.50036282998709 30 0.0 10 21.0650501781405 20 53.11303426734172 30 0.0 10 21.41911165158085 20 50.04531632613187 30 0.0 10 21.25296688168866 20 46.39701085464484 30 0.0 10 20.97488665334084 20 43.58180345781875 30 0.0 10 19.84368917636945 20 41.89772153237443 30 0.0 10 19.91103575230457 20 41.18673210369641 30 0.0 10 19.93977978009707 20 40.88327643999969 30 0.0 11 50.45050811891734 21 175.1100321409059 31 0.0 11 50.18811786656647 21 173.7153501095053 31 0.0 11 50.28729259153374 21 172.0324166023069 31 0.0 11 50.6839928729164 21 169.854503643114 31 0.0 11 51.27904260423338 21 167.2806057741586 31 0.0 11 51.17986649775253 21 164.9047003600845 31 0.0 11 50.58481814794913 21 162.7267867268082 31 0.0 11 50.08894314159943 21 161.5388340197711 31 0.0 11 49.09719451041337 21 159.6579087317749 31 0.0 11 47.70874559784488 21 157.479995772582 31 0.0 11 46.41947279175724 21 155.2230256363369 31 0.0 11 46.32029806678997 21 153.8370804744185 31 0.0 11 46.61782224169155 21 152.0551517509047 31 0.0 11 46.2211233418227 21 149.3822579915504 31 0.0 11 45.32854943560391 21 146.9073566870773 31 0.0 11 44.73349970428694 21 143.4424944563651 31 0.0 11 44.23762469793723 21 138.9876712994134 31 0.0 11 43.54340162316657 21 135.8197974139812 31 0.0 11 42.25412743556534 21 127.524067852152 31 0.0 11 41.36155352934657 21 124.95017065728 31 0.0 11 41.06402935444475 21 122.6732611336047 31 0.0 11 40.56815434809505 21 120.7923358456086 31 0.0 11 39.8739298918108 21 119.1094030124935 31 0.0 11 39.57640571690899 21 117.3274736148962 31 0.0 11 39.37805626697468 21 115.4465483269 31 0.0 11 38.98135598559202 21 113.9616072745828 31 0.0 11 38.08878207937323 21 112.7736545675458 31 0.0 11 37.0970334481874 21 111.0116659055454 31 0.0 11 36.79950927328559 21 110.0217049793062 31 0.0 11 36.30363426693588 21 107.6457995652321 31 0.0 11 35.60941119216522 21 104.7749140250799 31 0.0 11 34.41931172953104 21 101.6070394655644 31 0.0 11 33.32838837337794 21 98.34016968973333 31 0.0 11 31.84076473584218 21 95.66727593037899 31 0.0 11 30.55149192975454 21 93.88534653278169 31 0.0 11 29.95644219843757 21 92.40040615454791 31 0.0 11 29.75809274850303 21 91.01446099262966 31 0.0 11 29.36139246712036 21 86.48058200679281 31 0.0 11 28.66716939234993 21 83.01571977608046 31 0.0 11 27.47706992971575 21 79.4518616549692 31 0.0 11 25.98944767369357 21 75.78900764345917 31 0.0 11 25.69192211727841 21 72.91812142922367 31 0.0 11 26.08862239866084 21 69.84924343419038 31 0.0 11 25.98944767369357 21 66.80030550067067 31 0.0 11 25.19604849244228 21 63.73142750563738 31 0.0 11 22.81585094868773 21 59.37560023908464 31 0.0 11 21.03070313625016 21 55.8117421179735 31 0.0 11 21.03070313625016 21 53.73282504917949 31 0.0 11 21.32822731115197 21 49.87197858278808 31 0.0 11 21.2290525861847 21 46.50611224247472 31 0.0 11 20.43565340493319 21 42.86319761839479 31 0.0 11 19.93977978009707 21 41.77424080175661 31 0.0 11 19.93977978009707 21 40.88327643999969 31 0.0 0 LWPOLYLINE 5 4DA 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 30.75961973375479 20 87.90260546127489 10 30.02314029902254 20 88.01868195133897 10 29.86809301493099 20 86.43230482665876 10 30.44952240254451 20 86.31622833659481 10 30.75961973375479 20 87.90260546127489 0 LWPOLYLINE 5 4DB 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 13 70 0 43 0.0 10 30.33323763023281 20 86.16145945848165 10 30.02314029902254 20 86.16145945848165 10 30.02314029902254 20 84.72985121191459 10 30.33323763023281 20 84.76854292588029 10 29.90685552671084 20 84.65246643581634 10 29.86809301493099 20 83.60777937340708 10 30.10066532258178 20 83.5303952713922 10 29.82933050315137 20 83.5303952713922 10 29.7518068611057 20 82.67916812697842 10 29.71304434932585 20 82.29224694282061 10 29.90685552671084 20 81.94401747262862 10 30.25571260667334 20 82.02140224872687 10 30.52704742610399 20 82.40832343288468 0 LWPOLYLINE 5 4DC 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 16 70 0 43 0.0 10 46.90012351698169 20 148.3196827775443 10 46.74507623289037 20 148.7839880637169 10 46.27993161758854 20 148.3196827775443 10 46.27993161758854 20 146.8493821429282 10 46.59002756728523 20 146.6946132648149 10 46.20240797554288 20 146.6946132648149 10 46.12488433349722 20 145.6112338143566 10 46.43498028319368 20 145.2243126301988 10 46.12488433349722 20 145.3016967322137 10 45.89231202584642 20 144.0635484036421 10 46.20240797554288 20 143.8313960975975 10 45.73726336024129 20 143.9087801996124 10 45.73726336024129 20 143.2897060353266 10 45.81478700228695 20 142.6706318710408 10 45.96983566789208 20 142.7480159730557 10 46.04735930993775 20 143.1349378312969 0 LWPOLYLINE 5 4DD 330 492 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 32 70 0 43 0.0 10 44.80697551115144 20 136.681418924662 10 44.34183089584985 20 136.8361878027751 10 44.10925858819882 20 135.0563494119326 10 44.41935453789551 20 134.7468130038731 10 44.18678223024471 20 134.824197105888 10 44.10925858819882 20 134.050354063489 10 44.26430725380396 20 134.050354063489 10 44.03173494615316 20 134.050354063489 10 43.9542113041075 20 132.734822306986 10 44.10925858819882 20 132.502669326858 10 43.87668628054803 20 132.502669326858 10 43.87668628054803 20 132.2705163467301 10 44.26430725380396 20 132.0383640406854 10 43.87668628054803 20 132.1157481427003 10 43.79916263850236 20 131.1097527942567 10 43.9542113041075 20 130.8002157121138 10 43.64411397289723 20 130.8002157121138 10 43.56659033085157 20 130.1037574458132 10 43.56659033085157 20 129.4846832815275 10 43.25649438115488 20 128.7108409132119 10 43.41154304676002 20 127.936997870813 10 43.10144571554974 20 127.936997870813 10 42.86887478941252 20 127.2405396045123 10 43.17897073910922 20 126.9310025223694 10 42.86887478941252 20 127.0083872984678 10 42.55877745820225 20 126.0023919500242 10 42.63630248176172 20 125.6154707658664 10 42.24868150850579 20 125.3059336837236 10 42.32620653206526 20 124.3773224372948 10 42.32620653206526 20 124.067785355152 10 42.63630248176172 20 123.835632375024 10 42.71382612380739 20 124.3773224372948 0 ENDBLK 5 4DF 330 492 100 AcDbEntity 8 0 48 0.1 100 AcDbBlockEnd 0 BLOCK 5 4F6 330 4E6 100 AcDbEntity 8 0 48 0.1 100 AcDbBlockBegin 2 A$C2DFF248B 70 0 10 0.0 20 0.0 30 0.0 3 A$C2DFF248B 1 0 SPLINE 5 4E7 330 4E6 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 26 73 22 74 20 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.3950629457478953 40 1.047725120162865 40 2.650151563638109 40 3.613071154702335 40 4.889375148338655 40 5.635156636739743 40 6.870689340884716 40 8.888083691313596 40 11.94484476080339 40 14.49297243880977 40 18.31932988727992 40 19.10222102766881 40 19.5762962886958 40 20.40133405127397 40 21.30232869950363 40 21.72793046716221 40 22.62942559070882 40 24.19520838090793 40 25.90546147648133 40 25.90546147648133 40 25.90546147648133 40 25.90546147648133 10 18.62523465640288 20 13.36875717915086 30 0.0 10 18.65076388529541 20 13.51759899675589 30 0.0 10 18.71846857564156 20 13.91233434947359 30 0.0 10 17.52719829287582 20 13.99525329895154 30 0.0 10 16.72575164145077 20 13.35160433190307 30 0.0 10 15.46793494551207 20 13.13997531558224 30 0.0 10 14.25729657187864 20 13.36115575073318 30 0.0 10 13.86440992629444 20 12.19626355093694 30 0.0 10 12.70470367759523 20 11.46738211885467 30 0.0 10 10.80209802806724 20 10.59398397775853 30 0.0 10 8.408451446517009 20 9.762106735156663 30 0.0 10 5.487290955061903 20 8.441855610059795 30 0.0 10 3.812828319456141 20 6.935397029256064 30 0.0 10 2.221553171759519 20 5.907382402140962 30 0.0 10 2.298316416688504 20 5.157505171486998 30 0.0 10 2.508219844557543 20 4.491366941449586 30 0.0 10 2.888060454164063 20 3.781805460563669 30 0.0 10 2.547542255426875 20 3.08178870745602 30 0.0 10 1.932708030915154 20 2.346938364287254 30 0.0 10 0.843766983080928 20 1.447095496195668 30 0.0 10 0.2894044907224416 20 0.4963411334991581 30 0.0 10 -0.0000002049780505 20 0.0000002359548716 30 0.0 11 18.62523465640288 21 13.36875717915086 31 0.0 11 18.62523465640288 21 13.76382012489875 31 0.0 11 17.99199227495864 21 13.92184544013309 31 0.0 11 16.48804284684865 21 13.36875717915086 31 0.0 11 15.53817857307035 21 13.21073186391652 31 0.0 11 14.27169521340511 21 13.05270723335832 31 0.0 11 13.87591890040516 21 12.42060665709698 31 0.0 11 12.92605462662709 21 11.6304807656013 31 0.0 11 11.10548330618325 21 10.76134324350266 31 0.0 11 8.255893291295478 21 9.655167406214445 31 0.0 11 5.960391237185831 21 8.548991568926112 31 0.0 11 2.84958980990973 21 6.321004629215735 31 0.0 11 2.295503252354819 21 5.7679163682335 31 0.0 11 2.295503252354819 21 5.293841107206503 31 0.0 11 2.532967917575888 21 4.503715900387078 31 0.0 11 2.770433986020634 21 3.634577693612186 31 0.0 11 2.612123741465211 21 3.239514747864404 31 0.0 11 2.058037183910073 21 2.528401856323966 31 0.0 11 0.9498626655768021 21 1.422226019035633 31 0.0 11 -0.0000002049780505 21 0.0000002359548716 31 0.0 0 LWPOLYLINE 5 4E8 330 4E6 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2.57848562823392 20 6.332248286938693 10 2.399466318182021 20 6.451379048958301 10 3.055869073525627 20 7.106598240066091 10 3.35423459027902 20 6.987467478046482 10 3.11554217687626 20 6.57050981097791 0 LWPOLYLINE 5 4E9 330 4E6 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 3.592925622167967 20 6.987467478046482 10 3.234888383577526 20 7.166164295159319 10 3.771944932219867 20 7.761818105257248 10 4.36867458421284 20 7.642687343237639 10 4.070310448973259 20 7.404425819198422 0 LWPOLYLINE 5 4EA 330 4E6 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 4.607366997615372 20 7.761818105257248 10 4.129983552323892 20 7.880948867276856 10 5.144424927771524 20 8.35747191535529 10 5.204096649608345 20 8.119210391316073 0 LWPOLYLINE 5 4EB 330 4E6 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 5.383115959660472 20 8.417037296365037 10 5.144424927771524 20 8.417037296365037 10 5.979846993167029 20 9.191387923575803 10 6.457230438458736 20 9.072257161556194 10 6.218538025055977 20 8.77443025650723 0 LWPOLYLINE 5 4EC 330 4E6 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 6.636249748510635 20 9.012691780546447 10 6.397557335108103 20 9.310518685595411 10 7.292652503854242 20 9.667910971654237 10 7.531344917257001 20 9.42964944761502 0 LWPOLYLINE 5 4ED 330 4E6 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 7.591018020607634 20 9.548780209634628 10 7.591018020607634 20 9.906172495693454 10 8.545784911190821 20 10.20400007482578 10 8.486111807840188 20 9.846607114683592 0 LWPOLYLINE 5 4EE 330 4E6 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 8.903823531294847 20 9.965738550786682 10 8.605458014541454 20 10.26356545583564 10 9.381206976586554 20 10.79965388492382 10 9.50055318328782 20 10.26356545583564 0 LWPOLYLINE 5 4EF 330 4E6 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 9.619899389989086 20 10.32313083684539 10 9.560226286638453 20 10.79965388492382 10 10.21662904198205 20 11.15704617098254 10 10.57466766208608 20 10.85921926593357 10 10.39564835203418 20 10.62095774189435 0 LWPOLYLINE 5 4F0 330 4E6 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 10.87303317883947 20 10.74008850391396 10 10.33597524868332 20 11.15704617098254 10 11.29074352078032 20 11.57400451213459 10 11.64878214088435 20 11.27617693300214 10 11.41008972748181 20 10.97835002795318 0 LWPOLYLINE 5 4F1 330 4E6 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 11.88747317277329 20 11.2166115519924 10 11.70845524423498 20 11.57400451213459 10 12.12616558617605 20 12.11009294122277 10 12.84224144487029 20 11.93139679819341 10 12.72289523816903 20 11.63356989314445 0 LINE 5 4F2 330 4E6 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 18.62485030398033 20 13.14000813966504 30 0.0 11 18.62485030398033 21 12.45941038204739 31 0.0 0 LINE 5 4F3 330 4E6 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 19.65378928433983 20 13.25137885340541 30 0.0 11 19.52982191426599 21 12.68215180952836 31 0.0 0 LINE 5 4F4 330 4E6 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 10.48307492939829 20 13.52749399868946 30 0.0 11 11.59385483161372 21 12.1526104840932 31 0.0 0 LINE 5 4F5 330 4E6 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 11.8160108120569 20 13.35008958360288 30 0.0 11 10.3053501450438 21 12.37436600295143 31 0.0 0 ENDBLK 5 4F7 330 4E6 100 AcDbEntity 8 0 48 0.1 100 AcDbBlockEnd 0 BLOCK 5 733 330 54C 100 AcDbEntity 8 0 48 0.1 100 AcDbBlockBegin 2 A$C62997DD1 70 0 10 0.0 20 0.0 30 0.0 3 A$C62997DD1 1 0 SPLINE 5 54D 330 54C 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 32 73 28 74 26 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.1664268404075033 40 0.3921703701131155 40 0.57667997169816 40 0.7706771388818266 40 1.059787441040855 40 1.360240485731902 40 1.613003957487388 40 1.82804126806214 40 2.038330213409665 40 2.223263808536056 40 2.453266898942048 40 2.598081228416975 40 2.757899577798225 40 2.872335955706965 40 2.980300563737142 40 3.07094271577603 40 3.143297742942929 40 3.239880767933684 40 3.317979901871244 40 3.454796911328203 40 3.594074193026398 40 3.76279547197326 40 3.94085443852871 40 4.145718160526639 40 4.2896022870394 40 4.2896022870394 40 4.2896022870394 40 4.2896022870394 10 12.24989620510105 20 6.463186057337974 30 0.0 10 12.20757751017111 20 6.499708357160826 30 0.0 10 12.10785718733893 20 6.585769979215536 30 0.0 10 11.92183352857202 20 6.647649299508335 30 0.0 10 11.72659645071936 20 6.695301712159528 30 0.0 10 11.50424143272026 20 6.717086591236453 30 0.0 10 11.25501391414128 20 6.806106104245073 30 0.0 10 10.96888909172995 20 6.790371987245077 30 0.0 10 10.72378338416904 20 6.872528384964637 30 0.0 10 10.50109393054244 20 6.9113220836307 30 0.0 10 10.30788736146211 20 6.979975600451511 30 0.0 10 10.12832000527176 20 7.086784180584399 30 0.0 10 9.968608499861325 20 7.182122066616665 30 0.0 10 9.818507535723059 20 7.280739696595603 30 0.0 10 9.679165316770962 20 7.311804879234729 30 0.0 10 9.549375391149602 20 7.303543033730885 30 0.0 10 9.455994350458363 20 7.248347771979203 30 0.0 10 9.361088888256537 20 7.261167866847136 30 0.0 10 9.286877278883387 20 7.316418868896315 30 0.0 10 9.202175619690908 20 7.281398255210005 30 0.0 10 9.097472992505812 20 7.292867938015616 30 0.0 10 8.992382454930787 20 7.350686231527516 30 0.0 10 8.856638472397101 20 7.409007146992093 30 0.0 10 8.716989119808307 20 7.493971853848099 30 0.0 10 8.540532886297928 20 7.545298243265063 30 0.0 10 8.373116230831966 20 7.610955379375789 30 0.0 10 8.256119314846086 20 7.598423609348957 30 0.0 10 8.207849485703903 20 7.593253332910926 30 0.0 11 12.24989620510105 21 6.463186057337974 31 0.0 11 12.11811636257014 21 6.564832337695658 31 0.0 11 11.90846665886079 21 6.648541016687321 31 0.0 11 11.72876688884858 21 6.690395356183149 31 0.0 11 11.53708712298026 21 6.720291312965887 31 0.0 11 11.25555750007741 21 6.786062417887904 31 0.0 11 10.95605788339039 21 6.809979183314091 31 0.0 11 10.71046819211273 21 6.869771124175947 31 0.0 11 10.50081848840338 21 6.917604655028327 31 0.0 11 10.30314872460702 21 6.989354951306893 31 0.0 11 10.14141894837897 21 7.0790428216551 31 0.0 11 9.944947262488582 21 7.198626676082426 31 0.0 11 9.819157417885726 21 7.270376972360992 31 0.0 11 9.66341763958573 21 7.306252120500275 31 0.0 11 9.549607790838976 21 7.294293737787178 31 0.0 11 9.447777882005205 21 7.258418589647895 31 0.0 11 9.357928024970661 21 7.270376972360992 31 0.0 11 9.292038103705209 21 7.30027292914373 31 0.0 11 9.196198248742611 21 7.288314546430633 31 0.0 11 9.11832833162105 21 7.294293737787178 31 0.0 11 8.992538487018194 21 7.348106459996103 31 0.0 11 8.866748642415338 21 7.407898400857959 31 0.0 11 8.716998862043389 21 7.485627888493077 31 0.0 11 8.549279087887285 21 7.545419802058546 31 0.0 11 8.351609324090922 21 7.59923252426747 31 0.0 11 8.207849485703903 21 7.593253332910926 31 0.0 0 SPLINE 5 54E 330 54C 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 41 73 37 74 35 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.2261652796457251 40 0.4952080666177468 40 0.8323802945137932 40 1.263824382127599 40 1.690037675033662 40 2.100488703404546 40 2.291508301428749 40 2.452582951785172 40 2.68531450042063 40 2.851521940839138 40 3.004771963712004 40 3.143038780526828 40 3.226898639633318 40 3.310310222908508 40 3.420406111452831 40 3.651589073567547 40 3.876103604903067 40 4.059349438566427 40 4.241203484408321 40 4.4514923771698 40 4.665509051259247 40 4.752712764699741 40 4.878502609302597 40 5.004434478718122 40 5.109014957498794 40 5.304511757997229 40 5.594140368353301 40 5.823361620729414 40 6.210492549942644 40 6.59256949998316 40 6.899205868062617 40 7.239932684588283 40 7.383816811101044 40 7.671398596150143 40 7.671398596150143 40 7.671398596150143 40 7.671398596150143 10 5.378776367732754 20 6.344806464846524 30 0.0 10 5.43700691824674 20 6.394445890248878 30 0.0 10 5.564507648612108 20 6.50313562335036 30 0.0 10 5.843312281579168 20 6.560104548390784 30 0.0 10 6.178258640288271 20 6.634696580973827 30 0.0 10 6.569282967353831 20 6.718028921884141 30 0.0 10 6.965561909887989 20 6.869899903201257 30 0.0 10 7.280232247328549 20 6.997532778069452 30 0.0 10 7.511181313365895 20 7.117836599988081 30 0.0 10 7.620404742027083 20 7.285008807031291 30 0.0 10 7.689619766127507 20 7.459085801667942 30 0.0 10 7.785720488477144 20 7.613159581930784 30 0.0 10 7.868422060663984 20 7.752360412636718 30 0.0 10 7.998032007517991 20 7.780839078767154 30 0.0 10 8.10122828639049 20 7.787746658823577 30 0.0 10 8.18600297711472 20 7.745369533260749 30 0.0 10 8.316424272173867 20 7.692774458620979 30 0.0 10 8.497994106487539 20 7.636442397639579 30 0.0 10 8.709712383410852 20 7.611415005589508 30 0.0 10 8.903185962458426 20 7.574907061073827 30 0.0 10 9.086023090923504 20 7.516071820373948 30 0.0 10 9.274403433925995 20 7.442008653936143 30 0.0 10 9.437408790249715 20 7.394646691503407 30 0.0 10 9.573225023583328 20 7.346325627335845 30 0.0 10 9.687057816722811 20 7.357034134483685 30 0.0 10 9.808809685208686 20 7.361663678256661 30 0.0 10 9.936187051638729 20 7.292521748821975 30 0.0 10 10.11258108038537 20 7.208932724403469 30 0.0 10 10.31077911432092 20 7.071980298548226 30 0.0 10 10.60001333070659 20 6.979201415417003 30 0.0 10 10.92269461411164 20 6.897290952599369 30 0.0 10 11.28022403641865 20 6.857454919939714 30 0.0 10 11.61350591121055 20 6.776563673080068 30 0.0 10 11.87243979799667 20 6.718969528557701 30 0.0 10 12.13016804635461 20 6.713206924666974 30 0.0 10 12.27389727278948 20 6.710282275227479 30 0.0 10 12.36969605177585 20 6.70833293025279 30 0.0 11 5.378776367732754 21 6.344806464846524 31 0.0 11 5.561470996851184 21 6.478123403787186 31 0.0 11 5.819040683984951 21 6.555852918718684 31 0.0 11 6.148490234369106 21 6.62760321499725 31 0.0 11 6.567789697730923 21 6.729249468058551 31 0.0 11 6.969119167308583 21 6.872750087912066 31 0.0 11 7.346488701117159 21 7.03418825453884 31 0.0 11 7.508218477345209 21 7.135834534896524 31 0.0 11 7.602860310344944 21 7.266172428211916 31 0.0 11 7.704690163235596 21 7.475444152987449 31 0.0 11 7.788550078285204 21 7.618944772840968 31 0.0 11 7.884389933247803 21 7.738528599971907 31 0.0 11 8.016169775778713 21 7.780382939467742 31 0.0 11 8.100029634885203 21 7.780382939467742 31 0.0 11 8.177899552006763 21 7.750486982685004 31 0.0 11 8.279729404897416 21 7.708632643189176 31 0.0 11 8.501359104462864 21 7.642861538267155 31 0.0 11 8.722988859971444 21 7.606986390127872 31 0.0 11 8.90268862998365 21 7.571111214692201 31 0.0 11 9.076398402067809 21 7.517298492483277 31 0.0 11 9.274068109921053 21 7.445548196204711 31 0.0 11 9.47772787164547 21 7.379777091282697 31 0.0 11 9.561587730751959 21 7.355860325856504 31 0.0 11 9.687377575354815 21 7.355860325856504 31 0.0 11 9.813167419957672 21 7.349881134499959 31 0.0 11 9.909007330863396 21 7.308026767707744 31 0.0 11 10.08271710294754 21 7.218338897359537 31 0.0 11 10.33429673621014 21 7.074838304802405 31 0.0 11 10.54993649379066 21 6.997108789870907 31 0.0 11 10.92610794969326 21 6.90564627231523 31 0.0 11 11.30347742755871 21 6.845854358749761 31 0.0 11 11.60297704424572 21 6.780083226531356 31 0.0 11 11.93841659255792 21 6.720291312965887 31 0.0 11 12.08217643094494 21 6.714312121609339 31 0.0 11 12.36969605177585 21 6.70833293025279 31 0.0 0 SPLINE 5 54F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 27 73 23 74 21 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.1267432161504286 40 0.2520882050032708 40 0.3878224430731362 40 0.4616583584246363 40 0.5715710209243309 40 0.6983142324059602 40 0.8404110376274756 40 0.9128412740008721 40 0.9399704910412149 40 0.9836657636210574 40 1.093462445864209 40 1.187182784671114 40 1.257764599656069 40 1.318444915885091 40 1.386446581982712 40 1.478745852681592 40 1.58174234597878 40 1.686576029833777 40 1.795298581780526 40 1.974549735512091 40 1.974549735512091 40 1.974549735512091 40 1.974549735512091 10 11.74297806424915 20 2.923187317298605 30 0.0 10 11.70142835249778 20 2.912498801584585 30 0.0 10 11.6187873041487 20 2.89123968553613 30 0.0 10 11.49027132308575 20 2.921751046673763 30 0.0 10 11.3765773707833 20 2.900318357499426 30 0.0 10 11.27512943310032 20 2.937986050809972 30 0.0 10 11.17994676752963 20 2.977669757706494 30 0.0 10 11.05379827870318 20 2.999700371462353 30 0.0 10 10.93993701609474 20 2.990048604404107 30 0.0 10 10.86193099317855 20 3.039242966713938 30 0.0 10 10.81521082137832 20 3.007764564836756 30 0.0 10 10.83975310233095 20 2.941931504105049 30 0.0 10 10.8747863430945 20 2.862155791554434 30 0.0 10 10.97611034484895 20 2.854418754742625 30 0.0 10 11.05171358545633 20 2.866529521540477 30 0.0 10 11.11031225053547 20 2.830474964437393 30 0.0 10 11.17207458488746 20 2.78473561092999 30 0.0 10 11.26557347039812 20 2.810304076238354 30 0.0 10 11.35831817631447 20 2.765635733240784 30 0.0 10 11.45454041697045 20 2.719207425591548 30 0.0 10 11.5881629521759 20 2.724983572818518 30 0.0 10 11.68358313502971 20 2.720212841260566 30 0.0 10 11.74297806424915 20 2.717243267584066 30 0.0 11 11.74297806424915 21 2.923187317298605 31 0.0 11 11.61810255403625 21 2.901508991966068 31 0.0 11 11.49322709976647 21 2.912348140984143 31 0.0 11 11.35749286169661 21 2.912348140984143 31 0.0 11 11.28691104671165 21 2.934026466316684 31 0.0 11 11.18375304815581 21 2.971963528824531 31 0.0 11 11.05887753794291 21 2.993641826860685 31 0.0 11 10.91771396391612 21 3.009900591332378 31 0.0 11 10.84713214893117 21 3.026159328507684 31 0.0 11 10.82541469321724 21 3.009900591332378 31 0.0 11 10.83084402917416 21 2.9665439406673 31 0.0 11 10.89056711630215 21 2.874411078476299 31 0.0 11 10.98286638700104 21 2.858152341300989 31 0.0 11 11.05344820198599 21 2.858152341300989 31 0.0 11 11.10774189721393 21 2.831054455107604 31 0.0 11 11.1674649283988 21 2.798536980756988 31 0.0 11 11.25976419909768 21 2.798536980756988 31 0.0 11 11.35749286169661 21 2.766019506406372 31 0.0 11 11.45522146835242 21 2.728082443898525 31 0.0 11 11.5638088588083 21 2.722662855741294 31 0.0 11 11.74297806424915 21 2.717243267584066 31 0.0 0 SPLINE 5 550 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 41 73 37 74 0 42 0.0000000001 43 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.0492075763061202 40 0.0984151799086242 40 0.1158283861672313 40 0.1606827831311935 40 0.2829015884213555 40 0.4657405084179999 40 0.5667380870327331 40 0.7044762698502474 40 0.8176622866509466 40 0.96299987084528 40 1.155972555623567 40 1.389218402010593 40 1.476359993153975 40 1.521214336319971 40 1.724934042862191 40 1.805979936026732 40 1.913585502123902 40 1.96656125283226 40 2.098282746344252 40 2.277405413908695 40 2.445590368539394 40 2.655190655408855 40 2.827837912408944 40 2.900550153375198 40 2.984350190706051 40 3.066554804319763 40 3.156263536963328 40 3.266454070509125 40 3.379712559706034 40 3.50921969930179 40 3.681765909654364 40 3.944313979284611 40 4.261390589351395 40 4.384996906982817 40 4.384996906982817 40 4.384996906982817 40 4.384996906982817 10 7.713814989961726 20 2.051851752484111 30 0.0 10 7.714950562046025 20 2.067876073543637 30 0.0 10 7.717221706844549 20 2.099924724551685 30 0.0 10 7.70385673994793 20 2.142985413467652 30 0.0 10 7.732788659643294 20 2.170507986558671 30 0.0 10 7.798567811135827 20 2.171954296811694 30 0.0 10 7.873648342916118 20 2.277064557737823 30 0.0 10 7.969592842438557 20 2.36568847030395 30 0.0 10 8.076996527183656 20 2.45931796872983 30 0.0 10 8.19612661609168 20 2.490978021527794 30 0.0 10 8.277949123620468 20 2.599137332092617 30 0.0 10 8.40080695413847 20 2.691602061185269 30 0.0 10 8.591089714778242 20 2.728564784728655 30 0.0 10 8.755072402879054 20 2.776428621956961 30 0.0 10 8.877671640749339 20 2.783838388901077 30 0.0 10 8.983954251797271 20 2.821398400902287 30 0.0 10 9.098198532583662 20 2.803013557759491 30 0.0 10 9.224860898347353 20 2.830661241494702 30 0.0 10 9.310289158273725 20 2.83437325797618 30 0.0 10 9.383266044798364 20 2.904788371234293 30 0.0 10 9.513380426750307 20 2.906500827343798 30 0.0 10 9.669438241773248 20 2.913526325863053 30 0.0 10 9.852967113763739 20 2.954540876558946 30 0.0 10 10.03735193325245 20 2.938093881771907 30 0.0 10 10.18779527795839 20 2.926869295091918 30 0.0 10 10.29916472529026 20 2.937806154925329 30 0.0 10 10.37337611200837 20 2.903335317788503 30 0.0 10 10.45722376402189 20 2.888949466812501 30 0.0 10 10.5492631784267 20 2.865967793600296 30 0.0 10 10.63888665604115 20 2.810435575036741 30 0.0 10 10.74998106128939 20 2.771163100694369 30 0.0 10 10.87637051685353 20 2.713490279867345 30 0.0 10 11.02909787804415 20 2.601401814009406 30 0.0 10 11.21464853748569 20 2.435251282007516 30 0.0 10 11.41930719229257 20 2.305734927805502 30 0.0 10 11.56330149134671 20 2.278246773568001 30 0.0 10 11.60422909738911 20 2.272373932705722 30 0.0 0 SPLINE 5 551 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 79 73 75 74 0 42 0.0000000001 43 0.0000000001 40 0.1299051378784147 40 0.1299051378784147 40 0.1299051378784147 40 0.1299051378784147 40 0.3324636260571012 40 0.749503389935499 40 1.140154567354398 40 1.398846366872269 40 1.795217578260624 40 2.167726411330376 40 2.413050799578025 40 2.686870367582006 40 2.939379887779641 40 3.104186943064563 40 3.252969111251137 40 3.325946245973674 40 3.403118375042127 40 3.528967973657764 40 3.79438008766108 40 4.097116629967735 40 4.34774309534399 40 4.463523964031293 40 4.506327775775144 40 4.585234003838783 40 4.673511977125097 40 4.809060180915539 40 4.876974359786382 40 4.954249359937932 40 5.044628779246023 40 5.160409647933326 40 5.333205618970985 40 5.496151430847255 40 5.669740293702799 40 5.737514367906592 40 5.828429717177685 40 5.972112220498405 40 6.230133409419566 40 6.525381505309391 40 6.888194232267527 40 7.17650663416102 40 7.395052094322826 40 7.464132556124631 40 7.633568794814753 40 7.813596676687828 40 8.057951543271649 40 8.207927246313172 40 8.418079997106893 40 8.677582830087082 40 8.975914732832563 40 9.191201257147708 40 9.539872627266799 40 9.797571953918147 40 10.13503632803048 40 10.39309025806436 40 10.46086433226815 40 10.60747721930212 40 10.7748571164095 40 11.11991888174771 40 11.42678966626581 40 11.47566062861047 40 11.57340255329977 40 11.7105961594289 40 11.90154572676786 40 12.16104855974805 40 12.39814441097398 40 12.64969847705168 40 12.91141841220283 40 13.10037758521659 40 13.21615846518233 40 13.28393253938612 40 13.37229486010977 40 13.46321020938086 40 13.61147304632747 40 13.70732358642641 40 13.79568585253448 40 13.82946660469998 40 13.82946660469998 40 13.82946660469998 40 13.82946660469998 10 4.589465392736538 20 4.861163290203915 30 0.0 10 4.536800742568232 20 4.818186139785473 30 0.0 10 4.381428705936087 20 4.647155564097445 30 0.0 10 4.240422564063313 20 4.366008330347155 30 0.0 10 4.022899797983709 20 4.084853342435758 30 0.0 10 3.797687656490804 20 3.81861402735045 30 0.0 10 3.606776218430991 20 3.532843601408409 30 0.0 10 3.360732376111458 20 3.297062351084415 30 0.0 10 3.114547168126464 20 3.128303393329947 30 0.0 10 2.956325421792693 20 2.918485688278286 30 0.0 10 2.891029504231965 20 2.688671839266765 30 0.0 10 2.726178794398918 20 2.573634220078663 30 0.0 10 2.600143284599975 20 2.554037415679482 30 0.0 10 2.500558460300468 20 2.52427621108535 30 0.0 10 2.452719402183663 20 2.433922370966641 30 0.0 10 2.501306262682892 20 2.277078527923205 30 0.0 10 2.618314132606769 20 2.087650798300597 30 0.0 10 2.794326020114397 20 1.837192649286247 30 0.0 10 2.887200330166827 20 1.682817695373731 30 0.0 10 3.02201794017872 20 1.619268598121287 30 0.0 10 3.066957162163724 20 1.58562498409012 30 0.0 10 3.084366020631885 20 1.488094476835861 30 0.0 10 3.15668829671659 20 1.400834977254092 30 0.0 10 3.263478418057902 20 1.412501447250662 30 0.0 10 3.353114235223618 20 1.397447544834049 30 0.0 10 3.435617529009336 20 1.372125961922815 30 0.0 10 3.509109080096576 20 1.446191267138974 30 0.0 10 3.625984852598125 20 1.496972615565875 30 0.0 10 3.779862595946843 20 1.489590682800633 30 0.0 10 3.948952091357157 20 1.495502752316996 30 0.0 10 4.082984994333012 20 1.482447783805755 30 0.0 10 4.169091103032272 20 1.458526816881615 30 0.0 10 4.273949213073123 20 1.50338498712076 30 0.0 10 4.44996110058075 20 1.589363169492781 30 0.0 10 4.663422321094842 20 1.682817695373731 30 0.0 10 4.963016985146545 20 1.761319479644043 30 0.0 10 5.262611649198255 20 1.81739220609117 30 0.0 10 5.51961857991151 20 1.897583206719383 30 0.0 10 5.716319033585508 20 1.920348850647799 30 0.0 10 5.843766556487975 20 2.006984138063849 30 0.0 10 5.958420231843369 20 2.116446710747325 30 0.0 10 6.126942230372456 20 2.179995780703386 30 0.0 10 6.325423728872578 20 2.224853978238918 30 0.0 10 6.492748055912445 20 2.306206642565086 30 0.0 10 6.67816431821875 20 2.408535013811713 30 0.0 10 6.941774035074005 20 2.382910464552946 30 0.0 10 7.193606352828613 20 2.46373099928124 30 0.0 10 7.431237122158398 20 2.626282528582892 30 0.0 10 7.653705966655325 20 2.787561945421522 30 0.0 10 7.879650963131264 20 3.005067053849844 30 0.0 10 8.108323894266646 20 3.18488383450385 30 0.0 10 8.328095572489759 20 3.235266202215857 30 0.0 10 8.48413576386838 20 3.255196624054462 30 0.0 10 8.6089132231406 20 3.28046596471594 30 0.0 10 8.821169421383702 20 3.343313907723649 30 0.0 10 9.097018365952347 20 3.31638226199681 30 0.0 10 9.332696531302199 20 3.309586737738216 30 0.0 10 9.480176431478106 20 3.342607478757837 30 0.0 10 9.575437532438773 20 3.353621601229093 30 0.0 10 9.69857290511676 20 3.428170164760198 30 0.0 10 9.887722974857254 20 3.492887296568369 30 0.0 10 10.12064721102322 20 3.459085153368466 30 0.0 10 10.36076896867269 20 3.396508660620368 30 0.0 10 10.59986669978624 20 3.321898761066195 30 0.0 10 10.81714011522212 20 3.231853426953122 30 0.0 10 10.97549305045224 20 3.127875115377181 30 0.0 10 11.08634000504153 20 3.072194256688959 30 0.0 10 11.17794347157557 20 3.05232192462134 30 0.0 10 11.25767673059235 20 3.094757000877489 30 0.0 10 11.36341996884256 20 3.044575063600573 30 0.0 10 11.45429224459884 20 2.974833207935663 30 0.0 10 11.56990313838091 20 2.981552595134383 30 0.0 10 11.64019680242474 20 2.998125271584527 30 0.0 10 11.67903838791222 20 3.009987331929549 30 0.0 10 11.68975066236205 20 3.013410133200057 30 0.0 0 SPLINE 5 552 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 11 71 3 72 86 73 82 74 80 42 0.0000000001 43 0.0000000001 44 0.0000000001 12 -0.9957243303896692 22 0.0923745520695224 32 0.0 13 -0.9957243303896692 23 0.0923745520695224 33 0.0 40 0.0 40 0.0 40 0.0 40 0.0 40 0.083022811599041 40 0.1693191343067199 40 0.2126842434426587 40 0.2925833125462466 40 0.3880226864250686 40 0.5841309136016909 40 0.7437171098603855 40 1.044241343079608 40 1.29967188157504 40 1.619044603616648 40 1.787492801772482 40 1.978759598722159 40 2.162214530834225 40 2.412814006727353 40 2.605568719689594 40 2.651544885833842 40 2.692645599788577 40 2.725854291550166 40 2.80337243163134 40 2.872176712637766 40 2.981956559793833 40 3.13196763831595 40 3.317626050276685 40 3.445137269840713 40 3.599218127921574 40 3.703279425345359 40 3.737966542881502 40 3.791739423719681 40 3.855475718521719 40 3.992461300896287 40 4.237747887461289 40 4.403227124243742 40 4.472601304131384 40 4.561832111719089 40 4.642796665133852 40 4.71232402008979 40 4.758281083721085 40 4.860259172729173 40 4.920833409789922 40 4.96228124706775 40 5.008177068273918 40 5.036658206305873 40 5.080077305155239 40 5.123496414740788 40 5.158124361489004 40 5.20715189856841 40 5.281288283597637 40 5.452372365239261 40 5.635216869636911 40 5.827581703059779 40 5.975615709775366 40 6.17650837917845 40 6.256550286897817 40 6.368975028747997 40 6.501574704093271 40 6.629085863738971 40 6.841314597664842 40 7.133546910507272 40 7.396410871032522 40 7.560986207302887 40 7.650217014890594 40 7.727692055026905 40 7.764182162856354 40 7.789649067438997 40 7.890688487560671 40 7.98279721583194 40 8.049271031566991 40 8.210564815619688 40 8.342567381413536 40 8.421979793964927 40 8.491354029037214 40 8.554342597495251 40 8.651956450927567 40 8.783244388500733 40 8.888389942305988 40 8.967802354857372 40 9.044463832425959 40 9.108200139417693 40 9.180502278677808 40 9.180502278677808 40 9.180502278677808 40 9.180502278677808 10 8.831299164142855 20 7.359589012117012 30 0.0 10 8.803743219647348 20 7.362145410461351 30 0.0 10 8.756329927320866 20 7.379547129018018 30 0.0 10 8.666540633563066 20 7.417854505449815 30 0.0 10 8.641927756210771 20 7.339414810455965 30 0.0 10 8.653381146439574 20 7.269118768380854 30 0.0 10 8.692676029562786 20 7.150619846092038 30 0.0 10 8.754839017938774 20 7.012267929177058 30 0.0 10 8.898044177765569 20 6.84491963033434 30 0.0 10 8.957571351420872 20 6.596039249288155 30 0.0 10 9.220908629964551 20 6.441492845606041 30 0.0 10 9.409195142519141 20 6.28409592989588 30 0.0 10 9.617533910802205 20 6.187348364691975 30 0.0 10 9.798288440910889 20 6.163093985752825 30 0.0 10 10.00566058008264 20 6.144232361002356 30 0.0 10 10.21515881325175 20 6.146782384445224 30 0.0 10 10.37765834280766 20 6.14899599034164 30 0.0 10 10.47156066338129 20 6.145627024606595 30 0.0 10 10.50879760740878 20 6.123473592706316 30 0.0 10 10.52602328852582 20 6.072800140522934 30 0.0 10 10.59857165223459 20 6.059175956434322 30 0.0 10 10.60558129680761 20 5.953071898430181 30 0.0 10 10.74691181857287 20 5.965074654821731 30 0.0 10 10.87974326877226 20 5.988579122904223 30 0.0 10 11.03616051004073 20 6.01599217207617 30 0.0 10 11.18739127627332 20 6.05149980199754 30 0.0 10 11.31836674350508 20 6.044558834989988 30 0.0 10 11.41251423647915 20 6.058671561917814 30 0.0 10 11.47816256705008 20 6.079812083664267 30 0.0 10 11.51777004872949 20 6.038338472887644 30 0.0 10 11.59435572018284 20 6.000017673126446 30 0.0 10 11.748272788241 20 6.032994699703089 30 0.0 10 11.92810163265247 20 6.032168419891687 30 0.0 10 12.08898394421335 20 6.01481817196703 30 0.0 10 12.19615675140981 20 6.030730564602023 30 0.0 10 12.27158285473882 20 6.065491693879213 30 0.0 10 12.32022175369388 20 6.130124473456918 30 0.0 10 12.34984898112347 20 6.191775712268452 30 0.0 10 12.41791801279369 20 6.223065824644841 30 0.0 10 12.47924564682926 20 6.250499612495188 30 0.0 10 12.53903727219026 20 6.291441314490398 30 0.0 10 12.55087491695399 20 6.341433417947608 30 0.0 10 12.54758224403284 20 6.381371612498308 30 0.0 10 12.5733545325648 20 6.414620886222351 30 0.0 10 12.60993777370472 20 6.426426317118434 30 0.0 10 12.6550665109435 20 6.433412543943542 30 0.0 10 12.66389325899299 20 6.486027082642456 30 0.0 10 12.60710765425115 20 6.514153641471365 30 0.0 10 12.51140113811829 20 6.498302174339889 30 0.0 10 12.36737258633613 20 6.506238126353643 30 0.0 10 12.18534367138308 20 6.51060379605575 30 0.0 10 12.01447915602732 20 6.550049530943279 30 0.0 10 11.84227099859971 20 6.605738867647972 30 0.0 10 11.70073665454173 20 6.622055803417313 30 0.0 10 11.56516149546727 20 6.616058679855198 30 0.0 10 11.47838551574117 20 6.690577283905197 30 0.0 10 11.36586986957694 20 6.744660278965857 30 0.0 10 11.20832594281406 20 6.765312284389353 30 0.0 10 10.99963250428507 20 6.789021988578122 30 0.0 10 10.74354153986592 20 6.801143938582489 30 0.0 10 10.50875564072106 20 6.863669938437864 30 0.0 10 10.34524213409682 20 6.899800551947476 30 0.0 10 10.23168443058639 20 6.936152129204712 30 0.0 10 10.20923882886749 20 7.00831982725174 30 0.0 10 10.1631720959123 20 7.028471022748213 30 0.0 10 10.14787994572728 20 7.086066653556315 30 0.0 10 10.05226222489846 20 7.07630505337649 30 0.0 10 9.977537430421994 20 7.113234986500007 30 0.0 10 9.888817698178211 20 7.177023084736826 30 0.0 10 9.762595738572066 20 7.174226996792283 30 0.0 10 9.638949627568276 20 7.183372035287562 30 0.0 10 9.554266729635166 20 7.241271661268072 30 0.0 10 9.48346727173064 20 7.20877576916395 30 0.0 10 9.407127731675124 20 7.2298852665808 30 0.0 10 9.311020587265007 20 7.205851520933375 30 0.0 10 9.198080728333721 20 7.1975747551193 30 0.0 10 9.097072355928251 20 7.226144792064687 30 0.0 10 9.009532426082714 20 7.248139809328199 30 0.0 10 8.964039604392828 20 7.311196527735713 30 0.0 10 8.896625317318495 20 7.336079284441707 30 0.0 10 8.855296830543029 20 7.357362719541072 30 0.0 10 8.831299164142855 20 7.359589012117012 30 0.0 11 8.831299164142855 21 7.359589012117012 31 0.0 11 8.751459881288937 21 7.382359083684356 31 0.0 11 8.665917868439684 21 7.393744133116229 31 0.0 11 8.648809454681206 21 7.353896487401073 31 0.0 11 8.654512240619659 21 7.274201195970775 31 0.0 11 8.683026282198156 21 7.183120882404992 31 0.0 11 8.768568295047408 21 7.006652752692978 31 0.0 11 8.859813149778233 21 6.875724793412047 31 0.0 11 8.996680403902907 21 6.608176350134247 31 0.0 11 9.196278527123034 21 6.448785794570031 31 0.0 11 9.458607407552356 21 6.266625167438469 31 0.0 11 9.612583075435509 21 6.198314925440037 31 0.0 11 9.800775570835611 21 6.164159804440817 31 0.0 11 9.983595736320353 21 6.148911879717289 31 0.0 11 10.23418853290655 21 6.147082230293019 31 0.0 11 10.42694324586879 21 6.147082230293019 31 0.0 11 10.47256564526264 21 6.14138973287347 31 0.0 11 10.50678247277959 21 6.118619634009736 31 0.0 11 10.52389088653806 21 6.090157037726452 31 0.0 11 10.58662169969039 21 6.044616867295367 31 0.0 11 10.61513574126889 21 5.981999150012867 31 0.0 11 10.72348895381507 21 5.964358396839251 31 0.0 11 10.87176183575977 21 5.987128468406599 31 0.0 11 11.05425148927829 21 6.021283589405815 31 0.0 11 11.17971317152606 21 6.044053688269549 31 0.0 11 11.33368883940921 21 6.049746185689098 31 0.0 11 11.43633926601694 21 6.0668237598369 31 0.0 11 11.47055609353389 21 6.072516284552833 31 0.0 11 11.51617849292774 21 6.044053688269549 31 0.0 11 11.57320652014162 21 6.015591091986269 31 0.0 11 11.71007377426629 21 6.021283589405815 31 0.0 11 11.95529429688026 21 6.026976114121751 31 0.0 11 12.12067559258344 21 6.021283589405815 31 0.0 11 12.18910919167422 21 6.032668638837684 31 0.0 11 12.26894841858501 21 6.072516284552833 31 0.0 11 12.32027365986044 21 6.135134001835332 31 0.0 11 12.36019327331584 21 6.192059194401899 31 0.0 11 12.40011288677124 21 6.214829265969246 31 0.0 11 12.49135774150207 21 6.260369436400331 31 0.0 11 12.53698014089592 21 6.30021708211548 31 0.0 11 12.54838576871594 21 6.340064727830633 31 0.0 11 12.55408855465439 21 6.38560487096533 31 0.0 11 12.57119696841287 21 6.408374969829065 31 0.0 11 12.61111658186827 21 6.425452516680479 31 0.0 11 12.65103619532367 21 6.442530090828281 31 0.0 11 12.65673903720524 21 6.476685211827497 31 0.0 11 12.61681936780671 21 6.50514780811078 31 0.0 11 12.54268298277749 21 6.50514780811078 31 0.0 11 12.37159890113586 21 6.50514780811078 31 0.0 11 12.18910919167422 21 6.516532830246262 31 0.0 11 12.00091675221724 21 6.556380475961411 31 0.0 11 11.85834665621099 21 6.596228121676563 31 0.0 11 11.65874858893399 21 6.618998193243911 31 0.0 11 11.57890936202319 21 6.624690717959847 31 0.0 11 11.48196172135391 21 6.68161591052641 31 0.0 11 11.36220282504459 21 6.738541130389361 31 0.0 11 11.23674119873994 21 6.761311201956711 31 0.0 11 11.02573750364292 21 6.784081273524058 31 0.0 11 10.73489458163509 21 6.812543869807342 31 0.0 11 10.47826843120109 21 6.869469089670293 31 0.0 11 10.31858997737949 21 6.909316708089058 31 0.0 11 10.23875075046869 21 6.94916435380421 31 0.0 11 10.19312835107484 21 7.01178207108671 31 0.0 11 10.16461430949634 21 7.034552169950444 31 0.0 11 10.15320873761944 21 7.057322241517795 31 0.0 11 10.05626109695016 21 7.085784837801071 31 0.0 11 9.970719028157795 21 7.119939958800294 31 0.0 11 9.91369100094392 21 7.15409507979951 31 0.0 11 9.754012547122322 21 7.176865151366854 31 0.0 11 9.623988703255534 21 7.199635250230592 31 0.0 11 9.549852262283181 21 7.228097846513875 31 0.0 11 9.481418607249281 21 7.21671279708201 31 0.0 11 9.41868779409696 21 7.222405321797943 31 0.0 11 9.321740153427683 21 7.21102027236607 31 0.0 11 9.190575685241462 21 7.205327747650137 31 0.0 11 9.087925258633731 21 7.228097846513875 31 0.0 11 9.013788817661385 21 7.256560442797159 31 0.0 11 8.956760790447511 21 7.307793110647786 31 0.0 11 8.899732763233636 21 7.336255734227457 31 0.0 11 8.831299164142855 21 7.359589012117012 31 0.0 0 SPLINE 5 553 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 87 73 83 74 81 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.2026196736361399 40 0.4135922015859272 40 0.5679924062662956 40 0.6411553296862931 40 0.6779336260303889 40 0.7488659223548328 40 0.8470206992991819 40 0.9816319939573119 40 1.105980075327443 40 1.259671276175449 40 1.438364702505657 40 1.626216205006278 40 1.808668019073759 40 1.960724263712758 40 2.048286885881035 40 2.126932747726559 40 2.182608148368408 40 2.254755385240045 40 2.324249869419196 40 2.370033753744341 40 2.43482766246124 40 2.494066099552568 40 2.53706521679464 40 2.559869499851581 40 2.601913655418704 40 2.650389749349708 40 2.695270447777112 40 2.740409166680794 40 2.783635056354901 40 2.818339065448879 40 2.867416418401889 40 2.940973034174928 40 2.950084185455769 40 2.968899201666799 40 3.078430779710741 40 3.19848087895644 40 3.359830293727291 40 3.50694352527339 40 3.581175837150305 40 3.679685485408048 40 3.766262148590855 40 3.872656940591758 40 4.032650010319101 40 4.15595709777566 40 4.219508956074609 40 4.233917610779018 40 4.28238206589831 40 4.321072381780231 40 4.34385030657477 40 4.414691190709848 40 4.484185762682526 40 4.553593780870476 40 4.612923314026933 40 4.677717283276945 40 4.769107115994669 40 4.830445839036667 40 4.871520109185806 40 4.913592872814155 40 4.986755799135286 40 5.102297111459705 40 5.221895878002274 40 5.46093066614465 40 5.569443138926205 40 5.624866920036617 40 5.796181813751719 40 6.051128189805194 40 6.317862632726131 40 6.492265435581968 40 6.63194746005458 40 6.700325648480375 40 6.716760222607483 40 6.76769615753554 40 6.839028082107145 40 6.974586069731937 40 7.059424415241474 40 7.087183716313465 40 7.143628927681081 40 7.239545933657063 40 7.285184043430469 40 7.349077416211209 40 7.349077416211209 40 7.349077416211209 40 7.349077416211209 10 11.03798727039932 20 3.937086395850442 30 0.0 10 11.09436453770125 20 3.974634086850243 30 0.0 10 11.20944318571387 20 4.051277346146785 30 0.0 10 11.39204804084043 20 4.111530786966012 30 0.0 10 11.52374808413147 20 4.164450754199428 30 0.0 10 11.61714673915412 20 4.184155209934323 30 0.0 10 11.66885700097038 20 4.149749719625955 30 0.0 10 11.72071536067086 20 4.102525014729518 30 0.0 10 11.74628799364099 20 4.000945781096193 30 0.0 10 11.79499551644915 20 3.893508456125258 30 0.0 10 11.81955680901827 20 3.754453748209459 30 0.0 10 11.77661624281382 20 3.605061802717236 30 0.0 10 11.71568582454916 20 3.444545778282494 30 0.0 10 11.65918215867639 20 3.266518778383208 30 0.0 10 11.68068535804351 20 3.091701827428956 30 0.0 10 11.69614444538725 20 2.950553616204155 30 0.0 10 11.7269231734942 20 2.851489250434946 30 0.0 10 11.72324285653786 20 2.7673582411684 30 0.0 10 11.65707152214036 20 2.731614100752297 30 0.0 10 11.60098581062011 20 2.711951254156211 30 0.0 10 11.51986841816432 20 2.702365538395035 30 0.0 10 11.53336881456546 20 2.628609223885452 30 0.0 10 11.57744808442789 20 2.596539855051804 30 0.0 10 11.60909472377847 20 2.540214091739138 30 0.0 10 11.58602717822648 20 2.501923317761255 30 0.0 10 11.54392905263307 20 2.482784394035337 30 0.0 10 11.59610744446102 20 2.45548815604252 30 0.0 10 11.63808428408357 20 2.432022486786638 30 0.0 10 11.61235583055624 20 2.380886107258708 30 0.0 10 11.56414141032269 20 2.358401990804975 30 0.0 10 11.58935779144107 20 2.313612423502441 30 0.0 10 11.61063872562131 20 2.278339344163045 30 0.0 10 11.58960565283672 20 2.216668949338646 30 0.0 10 11.52347475247575 20 2.224523826325789 30 0.0 10 11.52002120428323 20 2.184557780817521 30 0.0 10 11.58008486751528 20 2.185821562072046 30 0.0 10 11.64912464648471 20 2.19118752764889 30 0.0 10 11.78274572352522 20 2.155206304623747 30 0.0 10 11.92559599777436 20 2.180960192864957 30 0.0 10 12.04223998469256 20 2.239154514246005 30 0.0 10 12.11115179746543 20 2.327799703678235 30 0.0 10 12.20410608371982 20 2.330623905051484 30 0.0 10 12.29713578046345 20 2.359383546048658 30 0.0 10 12.3885375911109 20 2.442019893583422 30 0.0 10 12.53613139061346 20 2.422154931399006 30 0.0 10 12.62702238466266 20 2.428208379296448 30 0.0 10 12.72929213329664 20 2.436104131437773 30 0.0 10 12.71488256544145 20 2.47954605073488 30 0.0 10 12.66351420375954 20 2.502884248836797 30 0.0 10 12.71785884251793 20 2.523178826093516 30 0.0 10 12.71362298731396 20 2.575473963946874 30 0.0 10 12.64202700832139 20 2.567746214868484 30 0.0 10 12.56763786892223 20 2.584578297920708 30 0.0 10 12.57115802168127 20 2.685977434799923 30 0.0 10 12.48065579288616 20 2.641328367932294 30 0.0 10 12.46067566049259 20 2.749442568216748 30 0.0 10 12.35657526368389 20 2.675428086465545 30 0.0 10 12.33222214955905 20 2.764393241348956 30 0.0 10 12.27765922875866 20 2.755106390388844 30 0.0 10 12.22870811815461 20 2.739660855991013 30 0.0 10 12.1538146982934 20 2.756303059216957 30 0.0 10 12.02856216292127 20 2.742312779844782 30 0.0 10 12.0108393175909 20 2.934937468243387 30 0.0 10 11.98564705781989 20 3.073257324893976 30 0.0 10 11.97393652920113 20 3.20976272004402 30 0.0 10 11.99098061232781 20 3.321398404542507 30 0.0 10 12.09268113477365 20 3.453075922372459 30 0.0 10 12.18248544074199 20 3.663862029642865 30 0.0 10 12.23592165004318 20 3.900127641455316 30 0.0 10 12.16482738234113 20 4.087999916521095 30 0.0 10 12.08238995660746 20 4.186685084091628 30 0.0 10 12.0397186196722 20 4.246483909408807 30 0.0 10 12.01019620031974 20 4.283167154972439 30 0.0 10 12.03218817206194 20 4.332956826894151 30 0.0 10 12.06554004557597 20 4.409417689686271 30 0.0 10 12.13945050608055 20 4.468869073163243 30 0.0 10 12.2001106522152 20 4.546545536194241 30 0.0 10 12.25717104005262 20 4.530731830734419 30 0.0 10 12.31619337114266 20 4.522789485780092 30 0.0 10 12.37069908489375 20 4.473070615084952 30 0.0 10 12.4409618342142 20 4.480769637146094 30 0.0 10 12.47724327509445 20 4.479778869790233 30 0.0 10 12.49840745157713 20 4.479200922094001 30 0.0 11 11.03798727039932 21 3.937086395850442 31 0.0 11 11.21141222122401 21 4.041864821949843 31 0.0 11 11.4076561791905 21 4.119309747614288 31 0.0 11 11.5536981877593 21 4.169421172843776 31 0.0 11 11.62671914429881 21 4.1739767484842 31 0.0 11 11.65866583068918 21 4.155754445922518 31 0.0 11 11.70886778008686 21 4.10564302069303 31 0.0 11 11.74537830610152 21 4.014531321514887 31 0.0 11 11.79101641587492 21 3.887892608690378 31 0.0 11 11.80927167888226 21 3.764891833436863 31 0.0 11 11.77732499249189 21 3.614557557748391 31 0.0 11 11.71799536384563 21 3.446000932905796 31 0.0 11 11.67235725407221 21 3.263777581141951 31 0.0 11 11.68148493332078 21 3.081554229378106 31 0.0 11 11.70430394046258 21 2.931219953689634 31 0.0 11 11.72255920346991 21 2.845581421628899 31 0.0 11 11.70886778008686 21 2.768136495964455 31 0.0 11 11.66322967031346 21 2.736247419889082 31 0.0 11 11.59477245790844 21 2.713469495094543 31 0.0 11 11.5308790851277 21 2.686135994659586 31 0.0 11 11.53544292475198 21 2.640580145070515 31 0.0 11 11.5765171949011 21 2.590468719841027 31 0.0 11 11.59933629753272 21 2.535801718971114 31 0.0 11 11.5765171949011 21 2.499357067255324 31 0.0 11 11.55826193189378 21 2.485690293741626 31 0.0 11 11.59020861828415 21 2.45835679330667 31 0.0 11 11.62671914429881 21 2.426467717231297 31 0.0 11 11.60846388129147 21 2.385467443282642 31 0.0 11 11.5765171949011 21 2.353578367207269 31 0.0 11 11.59020861828415 21 2.312578093258622 31 0.0 11 11.60390004166719 21 2.280689017183242 31 0.0 11 11.58564487414967 21 2.235133167594177 31 0.0 11 11.52175150136894 21 2.19868851587838 31 0.0 11 11.52175150136894 21 2.189577364597539 31 0.0 11 11.54000666888647 21 2.185021742364682 31 0.0 11 11.64953824693041 21 2.185021742364682 31 0.0 11 11.76819731324332 21 2.166799439803007 31 0.0 11 11.92793084068497 21 2.189577364597539 31 0.0 11 12.05571758624645 21 2.262466668029126 31 0.0 11 12.11048327977862 21 2.312578093258622 31 0.0 11 12.20632333894972 21 2.335356018053154 31 0.0 11 12.28847197473779 21 2.36268951848811 31 0.0 11 12.37974828977441 21 2.417356565950456 31 0.0 11 12.53948172172626 21 2.426467717231297 31 0.0 11 12.66270462766345 21 2.431023292871714 31 0.0 11 12.72203425630971 21 2.453801217666253 31 0.0 11 12.71747041668543 21 2.467467991179951 31 0.0 11 12.68552373029506 21 2.503912642895741 31 0.0 11 12.71290657706115 21 2.531246143330697 31 0.0 11 12.71290657706115 21 2.554024068125237 31 0.0 11 12.64444946014593 21 2.572246417279352 31 0.0 11 12.58055599187539 21 2.599579917714308 31 0.0 11 12.5531731451093 21 2.663358069865054 31 0.0 11 12.49384361195284 21 2.663358069865054 31 0.0 11 12.45276924631391 21 2.713469495094543 31 0.0 11 12.3614930267671 21 2.708913919454126 31 0.0 11 12.32041866112816 21 2.754469769043197 31 0.0 11 12.27934439097902 21 2.754469769043197 31 0.0 11 12.23827002534009 21 2.745358571169916 31 0.0 11 12.16524906880059 21 2.749914193402773 31 0.0 11 12.05115374662216 21 2.768136495964455 31 0.0 11 12.01464322060751 21 2.88202611993713 31 0.0 11 11.98269653421714 21 3.118916472570887 31 0.0 11 11.97813269459286 21 3.227332929426161 31 0.0 11 11.98726037384143 21 3.281999930296066 31 0.0 11 12.06940900962949 21 3.432334205984538 31 0.0 11 12.17437665255936 21 3.664668982977879 31 0.0 11 12.210887178574 21 3.928892836046593 31 0.0 11 12.15155764541756 21 4.092893885248756 31 0.0 11 12.06940900962949 21 4.205865871152013 31 0.0 11 12.02833473948036 21 4.260532872021919 31 0.0 11 12.0192070602318 21 4.274199645535617 31 0.0 11 12.02833473948036 21 4.324311070765105 31 0.0 11 12.06028142587073 21 4.388089222915859 31 0.0 11 12.15155764541756 21 4.488312073374835 31 0.0 11 12.22001485782256 21 4.538423498604331 31 0.0 11 12.24739780007846 21 4.533867922963906 31 0.0 11 12.30216349361064 21 4.520201149450208 31 0.0 11 12.38887596902298 21 4.479200922094001 31 0.0 11 12.43451407879639 21 4.479200922094001 31 0.0 11 12.49840745157713 21 4.479200922094001 31 0.0 0 SPLINE 5 554 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 50 73 46 74 44 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.0917298325597873 40 0.2486718141265181 40 0.4023630149745242 40 0.5527665462073466 40 0.7999238599675643 40 0.971694694130598 40 1.10392016719071 40 1.261220123427946 40 1.425679465820946 40 1.552961912582539 40 1.726446591206738 40 1.886439663587396 40 2.010418150615921 40 2.108039976328513 40 2.208547170910448 40 2.251835464553856 40 2.289405760894848 40 2.35394548635879 40 2.492067120738993 40 2.756618368885014 40 3.065418778245767 40 3.3036057426438 40 3.350144446862713 40 3.418753073318829 40 3.508407326578379 40 3.642610436844332 40 3.670369643721161 40 3.769045270630507 40 3.914438706062234 40 4.037973523178322 40 4.088381750852548 40 4.147695539343461 40 4.217103600344619 40 4.326644046514936 40 4.431581875541086 40 4.549267551249105 40 4.611268893780058 40 4.702380546365761 40 4.857084799648878 40 5.056969179404657 40 5.174606794506013 40 5.286821311534096 40 5.421626228105112 40 5.421626228105112 40 5.421626228105112 40 5.421626228105112 10 8.324344501263603 20 3.746669437690307 30 0.0 10 8.293713889233423 20 3.74739286972581 30 0.0 10 8.210676891903402 20 3.749354032759094 30 0.0 10 8.083639397777263 20 3.835062509260642 30 0.0 10 8.069880740409526 20 3.998026102134865 30 0.0 10 8.078639129021372 20 4.178956990570193 30 0.0 10 8.09565646898857 20 4.369425937060055 30 0.0 10 8.157243928331896 20 4.546248020783547 30 0.0 10 8.266184839729378 20 4.661709913561907 30 0.0 10 8.409122576589131 20 4.717631929463397 30 0.0 10 8.521663463884603 20 4.822301097611908 30 0.0 10 8.677717638094348 20 4.857212982046752 30 0.0 10 8.830965105979483 20 4.844378091171187 30 0.0 10 8.983312404047644 20 4.829837657558946 30 0.0 10 9.110050481541373 20 4.842445554578966 30 0.0 10 9.215376687225877 20 4.875781703966275 30 0.0 10 9.28900772461732 20 4.878171292758846 30 0.0 10 9.363221146489632 20 4.871702570121364 30 0.0 10 9.355537804702819 20 4.806106214439126 30 0.0 10 9.464805960723648 20 4.822012952746066 30 0.0 10 9.598591155262752 20 4.834157618038455 30 0.0 10 9.838366923171422 20 4.907692504969514 30 0.0 10 10.09130911060427 20 4.989914990472817 30 0.0 10 10.27333281325177 20 5.070557329947888 30 0.0 10 10.38872558714052 20 5.098166816423005 30 0.0 10 10.45771509881904 20 5.089807225596615 30 0.0 10 10.55173956351493 20 5.067867594536889 30 0.0 10 10.62887063611816 20 5.018591842385903 30 0.0 10 10.71619126664269 20 5.033469072230722 30 0.0 10 10.79023015547887 20 5.093826916836533 30 0.0 10 10.85989003387203 20 5.190563426104909 30 0.0 10 10.94480714565505 20 5.26692808461477 30 0.0 10 11.02329198108823 20 5.27480983970082 30 0.0 10 11.08626789926461 20 5.253372638735681 30 0.0 10 11.1063216633376 20 5.169034493708646 30 0.0 10 11.12863126165819 20 5.080764171109018 30 0.0 10 11.18885834908953 20 4.979188597513833 30 0.0 10 11.28375350258015 20 4.949561871645745 30 0.0 10 11.34326926189381 20 4.873726990464415 30 0.0 10 11.32754869843771 20 4.765618460064728 30 0.0 10 11.29521577554928 20 4.622648824217928 30 0.0 10 11.2264493531288 20 4.481698794254272 30 0.0 10 11.15341907068094 20 4.350948779434874 30 0.0 10 11.033652146445 20 4.309391678650885 30 0.0 10 10.95969081978876 20 4.274835500009187 30 0.0 10 10.9193282040864 20 4.255977296381502 30 0.0 11 8.324344501263603 21 3.746669437690307 31 0.0 11 8.233068281716775 21 3.755780635563581 31 0.0 11 8.105281536155295 21 3.846892288149284 31 0.0 11 8.073334849764925 21 3.997226563837756 31 0.0 11 8.077898593899412 21 4.147560839526228 31 0.0 11 8.109845280289782 21 4.392644798556275 31 0.0 11 8.173738748560317 21 4.552090225525589 31 0.0 11 8.265014968107145 21 4.647757500344148 31 0.0 11 8.401929392917189 21 4.725202426008593 31 0.0 11 8.538843722237423 21 4.816314125186735 31 0.0 11 8.662066723664416 21 4.848203201262109 31 0.0 11 8.835491578999302 21 4.843647625621692 31 0.0 11 8.995225010951152 21 4.83453642774841 31 0.0 11 9.118447916888349 21 4.848203201262109 31 0.0 11 9.213375189036632 21 4.870981126056648 31 0.0 11 9.313779087832024 21 4.875536701697065 31 0.0 11 9.354853357981149 21 4.861869928183367 31 0.0 11 9.363981037229713 21 4.825425276467576 31 0.0 11 9.427874410010453 21 4.816314125186735 31 0.0 11 9.564788739330687 21 4.83453642774841 31 0.0 11 9.820362325943442 21 4.902870202132021 31 0.0 11 10.11244634308105 21 5.003093052591005 31 0.0 11 10.33607314781362 21 5.085093553895866 31 0.0 11 10.38171125758703 21 5.09420475176914 31 0.0 11 10.45016846999205 21 5.089649129536283 31 0.0 11 10.53688094540441 21 5.066871251334191 31 0.0 11 10.66466769096587 21 5.025870977385537 31 0.0 11 10.69205053773196 21 5.030426553025954 31 0.0 11 10.77419917352003 21 5.085093553895866 31 0.0 11 10.87003923269113 21 5.194427602228124 31 0.0 11 10.97044303599673 21 5.266399314182727 31 0.0 11 11.02064498539441 21 5.270954936415584 31 0.0 11 11.07541077441638 21 5.248177011621045 31 0.0 11 11.10279362118247 21 5.184398812877859 31 0.0 11 11.13474030757284 21 5.079620386778458 31 0.0 11 11.1940698407293 21 4.993064309833172 31 0.0 11 11.29356085701207 21 4.930203702566977 31 0.0 11 11.33007128753691 21 4.880092277337482 31 0.0 11 11.33007128753691 21 4.788980624751779 31 0.0 11 11.29356085701207 21 4.638646349063307 31 0.0 11 11.21141222122401 21 4.456422950707022 31 0.0 11 11.14295500881899 21 4.360755722480902 31 0.0 11 11.0425511100236 21 4.310644297251414 31 0.0 11 10.9193282040864 21 4.255977296381502 31 0.0 0 SPLINE 5 555 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 160 73 156 74 154 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.09214258750514 40 0.3839274585131942 40 0.6401497514025221 40 1.152690774060011 40 1.377288766558349 40 1.439294841652598 40 1.567162764176623 40 1.653875239588963 40 1.759221601966865 40 1.869131377456453 40 1.934470052910114 40 2.002302176150097 40 2.093578491186721 40 2.153082665611536 40 2.218421341065196 40 2.338195956814018 40 2.439012403740983 40 2.655685650417444 40 2.775735851118733 40 2.926341699311814 40 2.992782779179566 40 3.037717728572859 40 3.188392460294448 40 3.263652850607783 40 3.397855960873749 40 3.60597192027467 40 3.715676624853709 40 3.839655201653979 40 3.978451337879579 40 4.106319355832777 40 4.186015369562883 40 4.290257104994458 40 4.351465044783576 40 4.447737211164008 40 4.586547940826248 40 4.702089260498882 40 4.759807071059346 40 4.883029976996543 40 4.943913343033931 40 5.007465112187188 40 5.159299041849342 40 5.282123627338994 40 5.413691111990159 40 5.504609611967686 40 5.58338893218595 40 5.670220992287915 40 5.768730640545674 40 5.904868771030674 40 6.089456279082749 40 6.259952404784005 40 6.366068625851776 40 6.423229416341025 40 6.455176102731395 40 6.494160704924326 40 6.529778846824273 40 6.585297362419387 40 6.644801536844202 40 6.688089906383618 40 6.755922029623601 40 6.875365550655624 40 6.920300568440091 40 7.013519503161387 40 7.077412875942127 40 7.113923401956779 40 7.195533981406689 40 7.256417264849993 40 7.288363951240363 40 7.369223301062882 40 7.421252284793777 40 7.453198971184147 40 7.551482142283999 40 7.602504184589169 40 7.645537257859105 40 7.73365826293043 40 7.917549919935524 40 8.045342969078186 40 8.179624213582389 40 8.348453269929994 40 8.568728258834559 40 8.781803551576711 40 8.938039540798119 40 9.049076462500581 40 9.112969835281321 40 9.19821789813195 40 9.343347024188126 40 9.401064834748602 40 9.511445659028836 40 9.645044803516023 40 9.832144911337229 40 9.918976876080908 40 9.96102103164803 40 10.0074822866575 40 10.07869547397418 40 10.18282289891688 40 10.32450475946363 40 10.34331985704195 40 10.38895796681536 40 10.52707970199762 40 10.64884625842541 40 10.77506443590672 40 10.92610486894644 40 10.98382258890102 40 11.07101242385225 40 11.13051659827707 40 11.23066752603446 40 11.37386374938943 40 11.59924552894719 40 11.81873408419225 40 11.94723350279944 40 12.14353032984401 40 12.19782773206868 40 12.22442643259431 40 12.30254438522021 40 12.37613166650001 40 12.43180706714186 40 12.47741560533258 40 12.50068490606022 40 12.63498126214242 40 12.78166135269695 40 12.87026781805239 40 12.91790832352792 40 12.97358380244449 40 13.04219233052781 40 13.10954900042639 40 13.17528711337448 40 13.2272352858888 40 13.2791834584031 40 13.33849715872609 40 13.41621558826313 40 13.50760551635196 40 13.6051625301983 40 13.67160361006606 40 13.76333353764343 40 13.81823372143522 40 13.86384225962594 40 13.91404420902363 40 13.98140077275356 40 14.18477266771609 40 14.30799214941355 40 14.57367284484895 40 14.82708805664069 40 15.00702964089643 40 15.15019644955803 40 15.32069257525931 40 15.44977203276469 40 15.58279482411718 40 15.72154475450467 40 15.80419710740222 40 15.88647196158779 40 15.96238890125583 40 16.04306411996364 40 16.17034647428091 40 16.31644330835537 40 16.31644330835537 40 16.31644330835537 40 16.31644330835537 10 15.39533879069455 20 6.369309092230508 30 0.0 10 15.36489290990875 20 6.373606272398603 30 0.0 10 15.238035069807 20 6.391511190258847 30 0.0 10 15.02373856354801 20 6.378437390014557 30 0.0 10 14.67090728942623 20 6.408266071101541 30 0.0 10 14.34508976978878 20 6.464344301056736 30 0.0 10 14.07291855000916 20 6.440955838633204 30 0.0 10 13.94216248195635 20 6.492912599475157 30 0.0 10 13.8486002781383 20 6.476560485394696 30 0.0 10 13.74043386766756 20 6.467042797160911 30 0.0 10 13.6479460278925 20 6.525689838340265 30 0.0 10 13.55238147094598 20 6.490117508819059 30 0.0 10 13.47256469683513 20 6.51105533605633 30 0.0 10 13.4042382975699 20 6.54417677478899 30 0.0 10 13.32923747059419 20 6.537662383202689 30 0.0 10 13.25761027913226 20 6.52681148618545 30 0.0 10 13.17746534907745 20 6.548407715373643 30 0.0 10 13.08945997201327 20 6.58725517935516 30 0.0 10 12.94168339850419 20 6.58825452295071 30 0.0 10 12.79956587110623 20 6.62021335760208 30 0.0 10 12.63949696096884 20 6.653811872522854 30 0.0 10 12.52548271962329 20 6.634109988542572 30 0.0 10 12.44036247970075 20 6.658234669419547 30 0.0 10 12.36275255841662 20 6.701732194578331 30 0.0 10 12.26602910700001 20 6.672852204879612 30 0.0 10 12.15081333405652 20 6.71011562685 30 0.0 10 12.019425357815 20 6.755293659997247 30 0.0 10 11.87157166199898 20 6.785707244443154 30 0.0 10 11.73301604581819 20 6.839692152423614 30 0.0 10 11.60722018504485 20 6.840025436600714 30 0.0 10 11.48065588243516 20 6.876140480996249 30 0.0 10 11.36363609433315 20 6.864986436663208 30 0.0 10 11.26211381836789 20 6.89162302406918 30 0.0 10 11.18681214958812 20 6.922485034599124 30 0.0 10 11.11163296856352 20 6.971457589337289 30 0.0 10 11.00698251384879 20 6.956664196647139 30 0.0 10 10.90349656965463 20 7.024358161840176 30 0.0 10 10.79585853968688 20 7.01933941435595 30 0.0 10 10.70455899308572 20 7.063899069403575 30 0.0 10 10.62045670524296 20 7.039789852001868 30 0.0 10 10.54032623215383 20 7.062774468625035 30 0.0 10 10.45330520958763 20 7.093897779404636 30 0.0 10 10.36485234631026 20 7.167056529704689 30 0.0 10 10.24439700979033 20 7.228623598044917 30 0.0 10 10.1558123794643 20 7.306440529892785 30 0.0 10 10.05701640875714 20 7.331595022709352 30 0.0 10 9.973318901546623 20 7.349269615725562 30 0.0 10 9.884225065319773 20 7.345262532503884 30 0.0 10 9.78096189206408 20 7.377370655243765 30 0.0 10 9.645597696709208 20 7.411997610071571 30 0.0 10 9.481785205811915 20 7.42529162804568 30 0.0 10 9.332744348793422 20 7.468761641294716 30 0.0 10 9.230725582015271 20 7.509262000783569 30 0.0 10 9.177216801443915 20 7.555680575724601 30 0.0 10 9.133134427572423 20 7.547325658294135 30 0.0 10 9.09819791015397 20 7.56096887842119 30 0.0 10 9.069493677049088 20 7.595721911322497 30 0.0 10 9.014764623994089 20 7.599198145746407 30 0.0 10 8.962675643628545 20 7.585218469129707 30 0.0 10 8.908821292956369 20 7.608686058803675 30 0.0 10 8.838226012968307 20 7.639334831151065 30 0.0 10 8.755835079287109 20 7.628015255226247 30 0.0 10 8.678612490116117 20 7.666786766233698 30 0.0 10 8.618229099799302 20 7.702452482915312 30 0.0 10 8.552788202378707 20 7.697126118212706 30 0.0 10 8.490708210046047 20 7.691991273986859 30 0.0 10 8.442448572208217 20 7.73580696384881 30 0.0 10 8.384281305815466 20 7.748307320938507 30 0.0 10 8.325991151495783 20 7.743680210914338 30 0.0 10 8.274199985302995 20 7.766116190058109 30 0.0 10 8.221985281273264 20 7.785849536700049 30 0.0 10 8.159667545135235 20 7.777401344384458 30 0.0 10 8.109655698850016 20 7.825065984638722 30 0.0 10 8.041645710908339 20 7.821689475902967 30 0.0 10 7.994127116654071 20 7.863953206027693 30 0.0 10 7.889413791088358 20 7.886638946045392 30 0.0 10 7.777305101254394 20 7.962771609368333 30 0.0 10 7.65809356085926 20 8.050903682322848 30 0.0 10 7.530461489970156 20 8.118790948537387 30 0.0 10 7.363773173850048 20 8.171658559407934 30 0.0 10 7.167696085478853 20 8.217605475355526 30 0.0 10 6.974583840899253 20 8.244732817089978 30 0.0 10 6.814258065061061 20 8.281916255693387 30 0.0 10 6.706839779119937 20 8.249589318478269 30 0.0 10 6.618576617012393 20 8.247155236795999 30 0.0 10 6.527189200611173 20 8.285824149683843 30 0.0 10 6.425590693324783 20 8.287428778296689 30 0.0 10 6.328896419804633 20 8.247152836704191 30 0.0 10 6.226764339905969 20 8.236357772694679 30 0.0 10 6.084345178512526 20 8.26330263579149 30 0.0 10 5.954537880353531 20 8.291416153072205 30 0.0 10 5.847779773511549 20 8.320597554312925 30 0.0 10 5.790841349989026 20 8.280270422150351 30 0.0 10 5.812490922962616 20 8.221585725920618 30 0.0 10 5.860217341813461 20 8.167965249643573 30 0.0 10 5.96240855284141 20 8.117592310787172 30 0.0 10 6.030959337713278 20 8.103428146243379 30 0.0 10 6.120019657595651 20 8.084007166827481 30 0.0 10 5.995459718839542 20 8.089730793193194 30 0.0 10 5.934720732955513 20 8.100768323592401 30 0.0 10 5.798309452846942 20 8.136124983400987 30 0.0 10 5.667923615637132 20 8.152946831527069 30 0.0 10 5.571358549593517 20 8.214849258425353 30 0.0 10 5.4775828287162 20 8.247277035392883 30 0.0 10 5.409649255106022 20 8.252328407367372 30 0.0 10 5.324779824246176 20 8.24983274147053 30 0.0 10 5.244811304063738 20 8.322149340951231 30 0.0 10 5.094134645836586 20 8.365891487695447 30 0.0 10 4.914682594369041 20 8.445295142004923 30 0.0 10 4.732891971932407 20 8.504896336303108 30 0.0 10 4.568620468169966 20 8.583620222679398 30 0.0 10 4.408333580378938 20 8.508835956228148 30 0.0 10 4.360343444319576 20 8.598666740408772 30 0.0 10 4.313359535038522 20 8.625524301543338 30 0.0 10 4.252450202804599 20 8.624816112491934 30 0.0 10 4.180489122801204 20 8.623826352215049 30 0.0 10 4.133962673963917 20 8.589237509282618 30 0.0 10 4.103843714237163 20 8.550435769426945 30 0.0 10 4.035028408247673 20 8.574300943462493 30 0.0 10 3.937590606343884 20 8.585972323329142 30 0.0 10 3.812258411660907 20 8.590179818830502 30 0.0 10 3.721695071653558 20 8.613795143794298 30 0.0 10 3.656963115651183 20 8.624619505180472 30 0.0 10 3.616823110352318 20 8.674661320191219 30 0.0 10 3.544977046274498 20 8.656013994436754 30 0.0 10 3.488879317028564 20 8.693915012856667 30 0.0 10 3.437955081463537 20 8.747338045160798 30 0.0 10 3.473768507932943 20 8.800945872473732 30 0.0 10 3.457586987645272 20 8.861872195084707 30 0.0 10 3.389770519918892 20 8.881169507742043 30 0.0 10 3.315605317325524 20 8.869198305229236 30 0.0 10 3.226211137432202 20 8.861588297036423 30 0.0 10 3.141248971878721 20 8.879995999233457 30 0.0 10 3.063461593448865 20 8.908102490147729 30 0.0 10 2.97959323501829 20 8.911163220860665 30 0.0 10 2.945079744582794 20 8.853132862706578 30 0.0 10 2.905254288512106 20 8.818780845640517 30 0.0 10 2.846298387659816 20 8.822050853428695 30 0.0 10 2.755217942575435 20 8.880945823350396 30 0.0 10 2.667154365196664 20 8.979462687246055 30 0.0 10 2.511309166711542 20 9.100737219369976 30 0.0 10 2.335518622236105 20 9.226442952705131 30 0.0 10 2.110827813570583 20 9.29760644473521 30 0.0 10 1.947705647832437 20 9.399912950841713 30 0.0 10 1.810234396619072 20 9.492283130644857 30 0.0 10 1.664410436715692 20 9.528583624426818 30 0.0 10 1.519500967918252 20 9.536743907212567 30 0.0 10 1.395417740021917 20 9.591011153320955 30 0.0 10 1.296726944858249 20 9.660505410567701 30 0.0 10 1.194306335091502 20 9.672765584563045 30 0.0 10 1.111127218228554 20 9.649324242420464 30 0.0 10 1.044057847786863 20 9.703199581150236 30 0.0 10 0.9829219994792149 20 9.777988514476666 30 0.0 10 0.8559075114018252 20 9.786187637336603 30 0.0 10 0.7697920009558158 20 9.812474518817673 30 0.0 10 0.7237709284854433 20 9.82652251634326 30 0.0 11 15.39533879069455 21 6.369309092230508 31 0.0 11 15.30390520395308 21 6.380717670044234 31 0.0 11 15.0121555921041 21 6.385253630268195 31 0.0 11 14.75658210098115 21 6.40347597942231 31 0.0 11 14.24616162836328 21 6.450051091223908 31 0.0 11 14.02196139827383 21 6.463412044113599 31 0.0 11 13.9624786853564 21 6.480920905086755 31 0.0 11 13.83469193979492 21 6.476365329446338 31 0.0 11 13.74797946438258 21 6.476365329446338 31 0.0 11 13.64757556558719 21 6.508254405521711 31 0.0 11 13.53804408303305 21 6.49914325424087 31 0.0 11 13.47415071025231 21 6.512809981162128 31 0.0 11 13.41025733747157 21 6.535587905956667 31 0.0 11 13.31898102243494 21 6.535587905956667 31 0.0 11 13.25965148927849 21 6.531032330316243 31 0.0 11 13.19575811649775 21 6.544699057237501 31 0.0 11 13.08166279431932 21 6.581143755545738 31 0.0 11 12.98125889552393 21 6.590254906826572 31 0.0 11 12.76767265255254 21 6.62669955854237 31 0.0 11 12.64901349074981 21 6.644921907696485 31 0.0 11 12.49840764255673 21 6.644921907696485 31 0.0 11 12.43451426977599 21 6.6631442568506 31 0.0 11 12.39343999962687 21 6.681366606004715 31 0.0 11 12.24283415143379 21 6.685922181645139 31 0.0 11 12.16981309940448 21 6.704144484206814 31 0.0 11 12.042026353843 21 6.745144758155468 31 0.0 11 11.84121855625223 21 6.799811759025374 31 0.0 11 11.73625091332237 21 6.831700881693187 31 0.0 11 11.61302791189536 21 6.845367608614445 31 0.0 11 11.47611358257513 21 6.868145533408984 31 0.0 11 11.34832674152385 21 6.872701109049401 31 0.0 11 11.27074194536007 21 6.890923458203516 31 0.0 11 11.17490188618897 21 6.931923732152171 31 0.0 11 11.12013609716698 21 6.959257232587127 31 0.0 11 11.02429603799588 21 6.968368383867968 31 0.0 11 10.89285843081254 21 7.013006641980048 31 0.0 11 10.77876310863411 21 7.031228991134163 31 0.0 11 10.72399731961214 21 7.049451340288278 31 0.0 11 10.60077441367494 21 7.049451340288278 31 0.0 11 10.54144478502869 21 7.063118067209536 31 0.0 11 10.48211525187223 21 7.085895992004076 31 0.0 11 10.35432850631075 21 7.167896539901377 31 0.0 11 10.24936076789108 21 7.231674692052123 31 0.0 11 10.13982928533693 21 7.304564042076151 31 0.0 11 10.05311680992459 21 7.331897542511107 31 0.0 11 9.975532013760805 21 7.345564316024805 31 0.0 11 9.888819538348464 21 7.350119891665222 31 0.0 11 9.792979479177354 21 7.372897816459762 31 0.0 11 9.660628893991606 21 7.404786892535135 31 0.0 11 9.478076359408142 21 7.432120392970091 31 0.0 11 9.313779087832024 21 7.477676242559162 31 0.0 11 9.217939028660914 21 7.523232092148234 31 0.0 11 9.167737079263226 21 7.55056559258319 31 0.0 11 9.135790392872856 21 7.55056559258319 31 0.0 11 9.099279866858204 21 7.564232366096881 31 0.0 11 9.071897020092116 21 7.58701024429898 31 0.0 11 9.017131231070145 21 7.596121442172254 31 0.0 11 8.957801697913687 21 7.591565866531837 31 0.0 11 8.916727332274753 21 7.605232593453095 31 0.0 11 8.852833959494013 21 7.628010518247634 31 0.0 11 8.734174893181098 21 7.641677291761325 31 0.0 11 8.693100527542164 21 7.659899594323007 31 0.0 11 8.607301030132241 21 7.696344292631238 31 0.0 11 8.543407657351501 21 7.696344292631238 31 0.0 11 8.506897131336849 21 7.696344292631238 31 0.0 11 8.433876079307559 21 7.732788944347035 31 0.0 11 8.374546546151101 21 7.746455717860726 31 0.0 11 8.342599859760731 21 7.746455717860726 31 0.0 11 8.265015063596955 21 7.769233642655265 31 0.0 11 8.214813114199252 21 7.782900369576523 31 0.0 11 8.182866427808882 21 7.782900369576523 31 0.0 11 8.091590112772259 21 7.819345067884754 31 0.0 11 8.04138816337457 21 7.828456219165595 31 0.0 11 8.004877732849713 21 7.851234143960127 31 0.0 11 7.922729097061655 21 7.883123220035507 31 0.0 11 7.762995569620009 21 7.97423491921365 31 0.0 11 7.658027926690131 21 8.04712426923767 31 0.0 11 7.53936876488742 21 8.109984876503872 31 0.0 11 7.379635332935585 21 8.164651877373785 31 0.0 11 7.165136111961764 21 8.214763302603273 31 0.0 11 6.955200730612226 21 8.251208000911503 31 0.0 11 6.800031042794849 21 8.269430303473185 31 0.0 11 6.690499560240702 21 8.251208000911503 31 0.0 11 6.626606187459962 21 8.251208000911503 31 0.0 11 6.544457551671904 21 8.273985925706043 31 0.0 11 6.399328425615728 21 8.273985925706043 31 0.0 11 6.344562636593742 21 8.255763576551927 31 0.0 11 6.235031154039596 21 8.242096803038229 31 0.0 11 6.102680568853834 21 8.260319152192344 31 0.0 11 5.920128034270383 21 8.301319426140999 31 0.0 11 5.833415654347838 21 8.305875001781416 31 0.0 11 5.801468967957468 21 8.27854150134646 31 0.0 11 5.810596551716237 21 8.232985651757388 31 0.0 11 5.856234661489644 21 8.178318650887476 31 0.0 11 5.947510976526281 21 8.128207225657988 31 0.0 11 6.084425305846515 21 8.091762527349757 31 0.0 11 6.102680568853834 21 8.08720695170934 31 0.0 11 6.057042459080427 21 8.08720695170934 31 0.0 11 5.920128034270383 21 8.105429300863455 31 0.0 11 5.801468967957468 21 8.132762801298405 31 0.0 11 5.678245966530475 21 8.160096301733361 31 0.0 11 5.541331541720445 21 8.223874453884114 31 0.0 11 5.48656584818827 21 8.242096803038229 31 0.0 11 5.399853372775915 21 8.251208000911503 31 0.0 11 5.340523839619457 21 8.255763576551927 31 0.0 11 5.253811364207116 21 8.305875001781416 31 0.0 11 5.121460779021354 21 8.360542002651328 31 0.0 11 4.911525397671816 21 8.44254250395619 31 0.0 11 4.706153760456764 21 8.519987429620634 31 0.0 11 4.582930854519567 21 8.556432127928871 31 0.0 11 4.386686896553079 21 8.560987703569288 31 0.0 11 4.351089348540845 21 8.601987977517936 31 0.0 11 4.328270245909244 21 8.615654704439201 31 0.0 11 4.250685449745454 21 8.624765902312475 31 0.0 11 4.177664397716149 21 8.615654704439201 31 0.0 11 4.132026287942743 21 8.583765628363821 31 0.0 11 4.095515761928091 21 8.556432127928871 31 0.0 11 4.072696754786285 21 8.560987703569288 31 0.0 11 3.940346169600523 21 8.583765628363821 31 0.0 11 3.794304161031725 21 8.597432401877519 31 0.0 11 3.707591685619384 21 8.615654704439201 31 0.0 11 3.661953575845977 21 8.629321477952892 31 0.0 11 3.616315370582761 21 8.661210554028272 31 0.0 11 3.547858253667534 21 8.665766129668689 31 0.0 11 3.488528625021281 21 8.697655252336502 31 0.0 11 3.452018099006629 21 8.752322253206408 31 0.0 11 3.465709617879475 21 8.802433678435903 31 0.0 11 3.452018099006629 21 8.852545103665391 31 0.0 11 3.397252405474453 21 8.875323028459931 31 0.0 11 3.319667609310677 21 8.870767406227066 31 0.0 11 3.228391294274054 21 8.866211830586649 31 0.0 11 3.132551235102944 21 8.884434179740765 31 0.0 11 3.068657862322204 21 8.90265652889488 31 0.0 11 2.977381547285581 21 8.893545331021606 31 0.0 11 2.940871116760725 21 8.852545103665391 31 0.0 11 2.904360590746073 21 8.825211603230435 31 0.0 11 2.854158641348384 21 8.825211603230435 31 0.0 11 2.794829108191926 21 8.857100679305808 31 0.0 11 2.644223259998845 21 8.993768181480589 31 0.0 11 2.548383200827736 21 9.071213153737467 31 0.0 11 2.325669278607769 21 9.216074262308538 31 0.0 11 2.092914794626629 21 9.316297112767514 31 0.0 11 1.937745106809266 21 9.407408811945657 31 0.0 11 1.814522200872069 21 9.480298115377244 31 0.0 11 1.650224929295937 21 9.525853964966316 31 0.0 11 1.522438183734472 21 9.544076314120431 31 0.0 11 1.399215182307479 21 9.594187739349926 31 0.0 11 1.275992276370281 21 9.657965938093113 31 0.0 11 1.193843640582223 21 9.667077089373954 31 0.0 11 1.11169500479415 21 9.66252151373353 31 0.0 11 1.04780163201341 21 9.703521741089744 31 0.0 11 0.988472003367157 21 9.758188788552089 31 0.0 11 0.8652490974299595 21 9.79007786462747 31 0.0 11 0.7237709284854433 21 9.82652251634326 31 0.0 0 LINE 5 556 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 0.7374748667791664 20 9.809998723396603 30 0.0 11 0.7306085198411623 21 9.759736442050808 31 0.0 0 SPLINE 5 557 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 13 73 9 74 0 42 0.0000000001 43 0.0000000001 40 0.0836675388902218 40 0.0836675388902218 40 0.0836675388902218 40 0.0836675388902218 40 0.3130178533300536 40 0.3957434326342095 40 0.4775327348112532 40 0.5657498294538627 40 0.855338235698505 40 1.044721185441895 40 1.044721185441895 40 1.044721185441895 40 1.044721185441895 10 3.896836620143547 20 8.419259532047879 30 0.0 10 3.971312650372895 20 8.406425418770083 30 0.0 10 4.073453425741243 20 8.388370269920308 30 0.0 10 4.20751347729918 20 8.361780797066668 30 0.0 10 4.283558311789867 20 8.411851167879072 30 0.0 10 4.440601872697925 20 8.382063554243867 30 0.0 10 4.620164406366018 20 8.334946644334955 30 0.0 10 4.771892810780363 20 8.286152729569428 30 0.0 10 4.831892297939663 20 8.266206885299343 30 0.0 0 LWPOLYLINE 5 558 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 4.19635196272938 20 5.624937096511953 10 4.094522109838734 20 5.618957905155404 10 3.992692256948082 20 5.636895479225046 10 3.986702259020034 20 5.523290816154265 10 4.070562118126524 20 5.487415668014982 10 4.106502105694836 20 5.487415668014982 0 SPLINE 5 559 330 54C 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 22 73 18 74 16 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.233657455546888 40 0.4798776817553668 40 0.7567188597123053 40 1.082930211216321 40 1.403313947247783 40 1.737165115946173 40 2.086977742456676 40 2.492354061486947 40 2.845716463678714 40 3.216112518033769 40 3.527067859478375 40 3.797641965151603 40 4.123508583946119 40 4.428974211084658 40 4.586057582720297 40 4.586057582720297 40 4.586057582720297 40 4.586057582720297 10 0.0000000145159476 20 4.615983228328317 30 0.0 10 0.0736523089216073 20 4.588919034426654 30 0.0 10 0.224916869312488 20 4.533335519671219 30 0.0 10 0.4825993290454471 20 4.539885961738446 30 0.0 10 0.7562989588825581 20 4.615620413954222 30 0.0 10 1.041347238324469 20 4.732594495652823 30 0.0 10 1.330254881490454 20 4.889786189359279 30 0.0 10 1.661576974341347 20 4.956715290939929 30 0.0 10 2.021483412402749 20 4.999124950680211 30 0.0 10 2.389318368781738 20 5.034481988887811 30 0.0 10 2.762239151357886 20 5.093251403551276 30 0.0 10 3.083440456310769 20 5.2380943909863 30 0.0 10 3.317729216878908 20 5.454193441481677 30 0.0 10 3.581969395083975 20 5.608319945932221 30 0.0 10 3.876390677506646 20 5.68060296203623 30 0.0 10 4.136171220230554 20 5.720595882497946 30 0.0 10 4.290140483096468 20 5.729965900585109 30 0.0 10 4.342429021182873 20 5.733147993806195 30 0.0 11 0.0000000145159476 21 4.615983228328317 31 0.0 11 0.2238365583676867 21 4.548953323292174 31 0.0 11 0.4700567845761654 21 4.548953323292174 31 0.0 11 0.7386606371982581 21 4.615983228328317 31 0.0 11 1.04083998538389 21 4.738871337517871 31 0.0 11 1.331827464419596 21 4.87293112029377 31 0.0 11 1.656390439018842 21 4.951132644323486 31 0.0 11 2.003337095974821 21 4.995819229483327 31 0.0 11 2.40624287490796 21 5.040505841939548 31 0.0 11 2.753189531863938 21 5.107535719679304 31 0.0 11 3.088944375613117 21 5.263938795035123 31 0.0 11 3.33516454587847 21 5.45385680926082 31 0.0 11 3.570192902937016 21 5.587916564740336 31 0.0 11 3.883564064329462 21 5.677289762356398 31 0.0 11 4.185743412515094 21 5.721976347516235 31 0.0 11 4.342429021182873 21 5.733147993806195 31 0.0 0 SPLINE 5 55A 330 54C 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 19 73 15 74 13 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.3054656271385389 40 0.6478459998394828 40 1.040123303302057 40 1.520328109551878 40 1.875978866803285 40 2.324904745519833 40 2.755444093772738 40 3.16575510052747 40 3.618748509884873 40 3.915854464943955 40 4.247425181787192 40 4.532805560236619 40 4.532805560236619 40 4.532805560236619 40 4.532805560236619 10 0.0111918277227545 20 4.705356398647992 30 0.0 10 0.1116462228015497 20 4.683188738908157 30 0.0 10 0.3246946715835692 20 4.636174514025363 30 0.0 10 0.6726400920638483 20 4.718241421602998 30 0.0 10 1.027096364164645 20 4.916082122470712 30 0.0 10 1.42607733706277 20 5.018309648688923 30 0.0 10 1.841544967702269 20 5.128311674065604 30 0.0 10 2.254261049549795 20 5.133578582276733 30 0.0 10 2.68717921186236 20 5.180692999164683 30 0.0 10 3.074918381461321 20 5.38436057861974 30 0.0 10 3.382454538757379 20 5.621679333712555 30 0.0 10 3.717054589941895 20 5.760031378987054 30 0.0 10 4.007455862909256 20 5.858998958087527 30 0.0 10 4.213530485748778 20 5.872249963204868 30 0.0 10 4.308853525619333 20 5.878379422872054 30 0.0 11 0.0111918277227545 21 4.705356398647992 31 0.0 11 0.3133711759083866 21 4.660669813488155 31 0.0 11 0.6491260196575582 21 4.727699691227911 31 0.0 11 1.007280209837695 21 4.887721748670873 31 0.0 11 1.466129390730642 21 5.029334195649589 31 0.0 11 1.813076047686621 21 5.107535719679304 31 0.0 11 2.260749135390106 21 5.141050658549183 31 0.0 11 2.686038596679978 21 5.208080536288942 31 0.0 11 3.05536888004957 21 5.38682690422468 31 0.0 11 3.435890976625977 21 5.632603149900173 31 0.0 11 3.707568512213526 21 5.752866465955587 31 0.0 11 4.025038122684698 21 5.84853352766034 31 0.0 11 4.308853525619333 21 5.878379422872054 31 0.0 0 LWPOLYLINE 5 55B 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 8 70 1 43 0.0 10 4.073167892817536 20 1.227401633164117 10 4.073167892817536 20 1.286011121902117 10 4.153234304747769 20 1.317979938904006 10 4.249313931932306 20 1.328636202139175 10 4.270664960195531 20 1.312651793638231 10 4.254651688998109 20 1.286011121902117 10 4.195936361274227 20 1.248714186930836 10 4.115870005287113 20 1.222073515194725 0 SPLINE 5 55C 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 38 73 34 74 0 42 0.0000000001 43 0.0000000001 40 4.460462991802819 40 4.460462991802819 40 4.460462991802819 40 4.460462991802819 40 4.486616471141893 40 4.536747161885845 40 4.641141691608413 40 4.641141691608413 40 4.641141691608413 40 4.772307580877577 40 4.893261619061449 40 5.031087195159988 40 5.154138972892059 40 5.2491344668073 40 5.400557612710001 40 5.507056709582599 40 5.659489971821401 40 5.795902018579912 40 5.969582306838276 40 6.173842991148235 40 6.295904365872127 40 6.393433762073481 40 6.525203471996657 40 6.614105727361041 40 6.684298477703681 40 6.790755527308057 40 6.943593569241467 40 7.052039827251478 40 7.18773346324505 40 7.363394876900159 40 7.610773920030297 40 7.743785388921621 40 7.854042863525418 40 8.002396641643679 40 8.222994539481357 40 8.222994539481357 40 8.222994539481357 40 8.222994539481357 10 3.169857415627201 20 0.5493346521797911 30 0.0 10 3.173329296181591 20 0.557318759566126 30 0.0 10 3.182873256968253 20 0.5809889468643253 30 0.0 10 3.204133941496861 20 0.6394398678420981 30 0.0 10 3.253446987812139 20 0.662838557852389 30 0.0 10 3.286762017318186 20 0.6786463025841166 30 0.0 10 3.301093047705252 20 0.7192243116247799 30 0.0 10 3.328639373671903 20 0.7972211502275819 30 0.0 10 3.382917267006336 20 0.9261876091362264 30 0.0 10 3.518844514627629 20 0.9556197348219459 30 0.0 10 3.629735912130615 20 0.985487318846669 30 0.0 10 3.746318980770008 20 1.04158325943295 30 0.0 10 3.787847367107451 20 1.158848188040025 30 0.0 10 3.867155684099633 20 1.273423280842393 30 0.0 10 3.991661375428033 20 1.3275661074349 30 0.0 10 4.123946040875758 20 1.407748285525007 30 0.0 10 4.298032785748654 20 1.431075457675595 30 0.0 10 4.432166181244852 20 1.554815297262761 30 0.0 10 4.592330217744322 20 1.509690452950144 30 0.0 10 4.665241342950421 20 1.631109231704929 30 0.0 10 4.781607808484162 20 1.597070927479609 30 0.0 10 4.884905041246305 20 1.602849499923552 30 0.0 10 4.936907932491799 20 1.511048713589843 30 0.0 10 4.867962154832933 20 1.403737238011759 30 0.0 10 4.751341388271752 20 1.360385523482932 30 0.0 10 4.617289993978999 20 1.340652795587335 30 0.0 10 4.513152493396735 20 1.238579258231604 30 0.0 10 4.339085038288785 20 1.169332602532074 30 0.0 10 4.171284226634033 20 1.090367207276193 30 0.0 10 4.040964218025114 20 0.986491008499005 30 0.0 10 3.906426206721255 20 0.9661460559053978 30 0.0 10 3.794001524489993 20 0.8429533895285512 30 0.0 10 3.709594961969458 20 0.7557129692516043 30 0.0 10 3.63891233785242 20 0.6698790377057211 30 0.0 0 SPLINE 5 55D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 38 73 34 74 0 42 0.0000000001 43 0.0000000001 40 7.961494442791797 40 7.961494442791797 40 7.961494442791797 40 7.961494442791797 40 8.021719130355629 40 8.189869773116932 40 8.463086095275819 40 8.582753653402033 40 8.722321048563514 40 8.934105390569762 40 9.488282895318347 40 9.799458268639396 40 10.0307213989621 40 10.2880252842984 40 10.56905036710794 40 10.77587859979547 40 10.83897497388472 40 10.90471203790235 40 10.95305798274278 40 11.07214505809708 40 11.24670582300817 40 11.3333146152555 40 11.34861124854837 40 11.44162973582554 40 11.61648723364278 40 11.86638571907495 40 12.11061206171743 40 12.36054857446306 40 12.51211398886744 40 12.5883456077656 40 12.73557354284583 40 12.848584491872 40 12.8810628309221 40 12.90526196616912 40 12.95360796047001 40 12.95360796047001 40 12.95360796047001 40 12.95360796047001 10 3.792413857387808 20 0.8312812186930162 30 0.0 10 3.810833580804436 20 0.8392771053064933 30 0.0 10 3.880262774282092 20 0.8703791160118399 30 0.0 10 4.029037947058855 20 0.9445830283079388 30 0.0 10 4.22459597467328 20 0.9806612098509965 30 0.0 10 4.336937912149467 20 1.131441659544787 30 0.0 10 4.441347593991935 20 1.133688173770227 30 0.0 10 4.770532117388766 20 1.293461124095353 30 0.0 10 5.145351291599077 20 1.262854492036147 30 0.0 10 5.505983553345712 20 1.311614048542478 30 0.0 10 5.768374145478516 20 1.362255445165647 30 0.0 10 6.016604450564372 20 1.422440530251478 30 0.0 10 6.25253179220997 20 1.520035424738214 30 0.0 10 6.439643864477872 20 1.525444233513077 30 0.0 10 6.548557704501501 20 1.550197788539893 30 0.0 10 6.556152693551921 20 1.616439045205755 30 0.0 10 6.520782106956557 20 1.695318576861247 30 0.0 10 6.379805054248295 20 1.650115173047394 30 0.0 10 6.271215677748518 20 1.657901226775525 30 0.0 10 6.181243477921903 20 1.63758965911094 30 0.0 10 6.116424089854685 20 1.673343984080089 30 0.0 10 6.22852306618271 20 1.764633498617476 30 0.0 10 6.409684420449949 20 1.820760525470188 30 0.0 10 6.551991919440389 20 1.87309506651465 30 0.0 10 6.769198028500625 20 1.932905978364438 30 0.0 10 7.042025163459374 20 1.964614829342597 30 0.0 10 7.196120413585681 20 1.936644136470711 30 0.0 10 7.309636625120592 20 2.013036603289283 30 0.0 10 7.426955630978136 20 2.021564626793145 30 0.0 10 7.515724392710572 20 2.063464705396134 30 0.0 10 7.57340370260387 20 2.067787613164879 30 0.0 10 7.606984552641711 20 2.051641920965044 30 0.0 10 7.614283058269258 20 2.027031405696446 30 0.0 10 7.619146975580775 20 2.01063030698269 30 0.0 0 SPLINE 5 55E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 47 73 43 74 0 42 0.0000000001 43 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.3680589156064665 40 0.6831822155875978 40 0.9732321653685634 40 1.232438526097306 40 1.448580451002229 40 1.634261902246296 40 1.765853728382748 40 1.882628344388356 40 1.968813921881029 40 2.140771394754277 40 2.287481994053551 40 2.40155342462499 40 2.506852454597134 40 2.557868943822881 40 2.655729573043654 40 2.824746254919459 40 3.015897960979632 40 3.267874936752294 40 3.459026589014497 40 3.620418114051956 40 3.769226315733411 40 3.894546369388043 40 3.977573697692406 40 4.105008150466527 40 4.2928786664131 40 4.672762288891299 40 4.874817330140541 40 5.041456295193386 40 5.313229873211783 40 5.53181303174419 40 5.650676391402837 40 5.779738533025907 40 5.949601024871439 40 6.105344120056352 40 6.19142557195572 40 6.255045224189812 40 6.318132093677936 40 6.447322522411916 40 6.603065617596827 40 6.664413201512174 40 6.664413201512174 40 6.664413201512174 40 6.664413201512174 10 0.0157235562832625 20 4.441394045312801 30 0.0 10 0.1381853399728294 20 4.434722673180135 30 0.0 10 0.3654959936707343 20 4.422339430711756 30 0.0 10 0.6905816446789928 20 4.417159784981789 30 0.0 10 0.9768521349340524 20 4.448866851320378 30 0.0 10 1.23177361282444 20 4.477609947095617 30 0.0 10 1.450064763746993 20 4.578888832537511 30 0.0 10 1.619708645649566 20 4.563013391207519 30 0.0 10 1.773448345443092 20 4.555075684190715 30 0.0 10 1.855619617347763 20 4.576242939297372 30 0.0 10 1.937790833309314 20 4.623869235990966 30 0.0 10 2.109370481837751 20 4.646534590622906 30 0.0 10 2.247792400047974 20 4.68539258669525 30 0.0 10 2.357651158519965 20 4.746927450422119 30 0.0 10 2.40508010848318 20 4.826779742892679 30 0.0 10 2.47945538930144 20 4.872379206105812 30 0.0 10 2.589464638870994 20 4.871685249753105 30 0.0 10 2.724094009382681 20 4.952829122799617 30 0.0 10 2.92674442658687 20 4.988202121899378 30 0.0 10 3.119380158126391 20 5.080070637397321 30 0.0 10 3.314972012557329 20 5.126962513360971 30 0.0 10 3.476783176326164 20 5.177445512670425 30 0.0 10 3.623754273375014 20 5.158570817148451 30 0.0 10 3.740775790089968 20 5.183173970404356 30 0.0 10 3.845461885766703 20 5.236345749495699 30 0.0 10 3.97694070411067 20 5.174531463749572 30 0.0 10 4.176334834846433 20 5.06912698694242 30 0.0 10 4.394879328660707 20 4.933551323980042 30 0.0 10 4.632589927568164 20 4.834901389357712 30 0.0 10 4.85013460421185 20 4.876756638405215 30 0.0 10 5.036216592869228 20 5.006720711367385 30 0.0 10 5.156821863455746 20 5.165954416115463 30 0.0 10 5.226694192401257 20 5.319353991020526 30 0.0 10 5.139615410140673 20 5.450558910967393 30 0.0 10 5.006993147412628 20 5.519926518745404 30 0.0 10 4.889464162235136 20 5.595656418437949 30 0.0 10 4.836675800668523 20 5.689923029684445 30 0.0 10 4.856084236722773 20 5.767455544672327 30 0.0 10 4.937401617822015 20 5.80564669364704 30 0.0 10 5.039503301389939 20 5.85670216419075 30 0.0 10 5.129105015312918 20 5.931652840080712 30 0.0 10 5.182757880196382 20 5.980432041406718 30 0.0 10 5.197792256113301 20 5.994307058329333 30 0.0 0 SPLINE 5 55F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 46 73 42 74 0 42 0.0000000001 43 0.0000000001 40 0.0568607579300499 40 0.0568607579300499 40 0.0568607579300499 40 0.0568607579300499 40 0.1528575310130081 40 0.3155780155581305 40 0.5729805737251659 40 0.7895053453507615 40 0.9219645752702387 40 1.053265936276589 40 1.248987139674217 40 1.434668650154612 40 1.617418357949452 40 1.849954554936749 40 1.975244878588514 40 2.080648707130039 40 2.203507803698307 40 2.343562585042213 40 2.449297987926155 40 2.55608380524114 40 2.622729281630756 40 2.741770177330919 40 2.883150928790901 40 3.032696286862063 40 3.171075187935906 40 3.364805564233349 40 3.537176821492036 40 3.681526687335287 40 3.840054445886204 40 4.001445970923663 40 4.253020895811549 40 4.363723988268645 40 4.407491145899513 40 4.560348670671254 40 4.711447972368859 40 4.825577455822497 40 4.913054932027192 40 4.939315193039844 40 4.983082294727585 40 5.08551695314573 40 5.196220045602826 40 5.292507725258984 40 5.383882575241122 40 5.383882575241122 40 5.383882575241122 40 5.383882575241122 10 5.090032020657845 20 6.34720970173749 30 0.0 10 5.057937267598886 20 6.34190760708575 30 0.0 10 4.974486857579457 20 6.321112882029822 30 0.0 10 4.852048548994571 20 6.185606523313091 30 0.0 10 4.632699943049894 20 6.153896647385674 30 0.0 10 4.441278331734388 20 6.094952078478804 30 0.0 10 4.28189814616157 20 6.069815947736754 30 0.0 10 4.127718066670661 20 6.084295943006675 30 0.0 10 3.961822263801876 20 6.033029347460309 30 0.0 10 3.772633936968186 20 6.023559773669393 30 0.0 10 3.583416713703003 20 5.953484306859811 30 0.0 10 3.409234371064882 20 5.906946690967537 30 0.0 10 3.27525986628573 20 5.822284939963088 30 0.0 10 3.154101901257797 20 5.820167288587223 30 0.0 10 3.033525121110512 20 5.830595724688199 30 0.0 10 2.907230902241014 20 5.844695011210237 30 0.0 10 2.798604323613643 20 5.790458867165352 30 0.0 10 2.728571014960502 20 5.728254073795893 30 0.0 10 2.636976170681541 20 5.692075683603079 30 0.0 10 2.531063817570856 20 5.666078144342247 30 0.0 10 2.40612540855206 20 5.609457490242224 30 0.0 10 2.271675015809791 20 5.560494317972356 30 0.0 10 2.119600533711058 20 5.509228004538588 30 0.0 10 1.956831659156255 20 5.464320953057152 30 0.0 10 1.806656444337037 20 5.381741657433636 30 0.0 10 1.651042791777391 20 5.344630354104112 30 0.0 10 1.496019664269249 20 5.337876016863807 30 0.0 10 1.310303249826212 20 5.291118611895193 30 0.0 10 1.14433587205479 20 5.241514767733607 30 0.0 10 1.019038637835764 20 5.181839981152728 30 0.0 10 0.9153853038252561 20 5.183509965858628 30 0.0 10 0.8038699697653157 20 5.227388408594755 30 0.0 10 0.6710167743093667 20 5.233556181639327 30 0.0 10 0.5403143822513519 20 5.284468125111517 30 0.0 10 0.492874578226008 20 5.196315315065087 30 0.0 10 0.4384803609682324 20 5.203122997353966 30 0.0 10 0.38093534284 20 5.196611483615268 30 0.0 10 0.3023411162537712 20 5.240682758008902 30 0.0 10 0.2058940110112957 20 5.276511445235426 30 0.0 10 0.1035447464477617 20 5.277241914591625 30 0.0 10 0.0444818828108744 20 5.255730989020077 30 0.0 10 0.0157235562832625 20 5.245257094200127 30 0.0 0 SPLINE 5 560 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 152 73 148 74 146 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.0721472221617434 40 0.1588596975740844 40 0.2168951878550097 40 0.2684823426965497 40 0.3625422493030499 40 0.6591110154217555 40 0.8337561041470987 40 0.9958113093370076 40 1.131201855129262 40 1.255718842553955 40 1.371260162226589 40 1.413304317793712 40 1.442506465892896 40 1.488115004083615 40 1.537192392555793 40 1.7446702212614 40 1.878815177925384 40 1.915325703940036 40 1.947214826607849 40 1.981962077860277 40 2.120951046218564 40 2.487518343305818 40 2.568916852086629 40 2.620893860605637 40 2.645464684189666 40 2.674666728597332 40 2.713879267809433 40 2.88119624861144 40 3.024117843148198 40 3.060911386148633 40 3.125395347033721 40 3.226549065840181 40 3.334133068096357 40 3.412251015288004 40 3.442821839946186 40 3.51130784839774 40 3.559772303517032 40 3.650049774240486 40 3.689034360099602 40 3.813012847128127 40 3.940880769652137 40 4.047694434171681 40 4.111067968238684 40 4.133845893033216 40 4.167066426577803 40 4.278941358742006 40 4.299321950911007 40 4.395548523646244 40 4.665381367868246 40 4.965352329444105 40 5.200942784369623 40 5.317289578055346 40 5.413237846467729 40 5.453998988039633 40 5.500921584815317 40 5.55855608500034 40 5.599317226572238 40 5.685599224807225 40 5.808906407688403 40 5.837765260310732 40 5.876977855091428 40 5.934695560336075 40 5.989823317240151 40 6.076655377342117 40 6.173341800377016 40 6.244555048889905 40 6.320075178850625 40 6.446293356331938 40 6.538683561466318 40 6.575461880895285 40 6.628659305886305 40 6.702948206754587 40 6.799220373135033 40 6.890496688171656 40 6.988053702018002 40 7.102480715847926 40 7.215371312599059 40 7.276254596042365 40 7.292689078389357 40 7.365852097113846 40 7.490415087429195 40 7.66933414131647 40 7.760610456353093 40 7.821002970670133 40 7.905148394613052 40 8.04327003514019 40 8.267019805978934 40 8.421698463339078 40 8.554261226738558 40 8.62199869153224 40 8.745759128616235 40 8.860045416680719 40 9.019502007991743 40 9.094269413101319 40 9.145275990340291 40 9.192916482449746 40 9.272712549985252 40 9.476738923573913 40 9.729770266922857 40 9.799264838895535 40 9.832485372440119 40 9.873811501434968 40 9.973718835493286 40 10.14738295569723 40 10.33538443380297 40 10.46606179445591 40 10.59743623455923 40 10.85687797362027 40 11.04753337022571 40 11.18182972630791 40 11.34119070320807 40 11.4901408856325 40 11.58041832343987 40 11.66259101051504 40 11.78081875583706 40 11.85924390750777 40 11.91848230781575 40 11.95717262369767 40 12.03686863742778 40 12.14908315445586 40 12.22279550197168 40 12.31906767276162 40 12.49249012957881 40 12.65989958039221 40 12.83881863427948 40 13.01773768816675 40 13.2646981022364 40 13.49433694479712 40 13.80030167282042 40 14.01512299339675 40 14.21258365885968 40 14.35063588586931 40 14.66818983640607 40 14.91522836832944 40 14.96078421791851 40 15.12507103325037 40 15.32847264232576 40 15.4336479299408 40 15.73850149125064 40 16.0703231025362 40 16.38420427547161 40 16.4984906016682 40 16.84621253687634 40 17.14990436665197 40 17.24374955447713 40 17.24374955447713 40 17.24374955447713 40 17.24374955447713 10 0.6598774602149078 20 9.703521741089744 30 0.0 10 0.6818574392393307 20 9.69273306472038 30 0.0 10 0.7302547678665731 20 9.66897766826978 30 0.0 10 0.8129959469081448 20 9.700012473756164 30 0.0 10 0.8542988010858774 20 9.639768662077528 30 0.0 10 0.9002371470915045 20 9.590220963809398 30 0.0 10 1.047750322144125 20 9.549107465859382 30 0.0 10 1.215010035911165 20 9.469578401092011 30 0.0 10 1.40946955912944 20 9.382314438693015 30 0.0 10 1.575984283687122 20 9.385855929949688 30 0.0 10 1.685697743961575 20 9.295122261626051 30 0.0 10 1.798085816674299 20 9.218303325564246 30 0.0 10 1.882785292757267 20 9.238461055960465 30 0.0 10 1.961078740123231 20 9.190867668249691 30 0.0 10 1.917801097164541 20 9.166486863976947 30 0.0 10 1.87383602178027 20 9.147251914774523 30 0.0 10 1.938204041912083 20 9.036991685561956 30 0.0 10 2.077090445669302 20 9.012476873895167 30 0.0 10 2.139682045905085 20 8.916321215499715 30 0.0 10 2.23642686950523 20 8.893246096061719 30 0.0 10 2.214937712568616 20 8.953342362448852 30 0.0 10 2.303232468620616 20 8.891331357429471 30 0.0 10 2.437321603861427 20 8.864374341886268 30 0.0 10 2.646830383044928 20 8.744785259284251 30 0.0 10 2.78972286884403 20 8.729546100609489 30 0.0 10 2.853385903769408 20 8.669640224155108 30 0.0 10 2.810527629497902 20 8.66271924285972 30 0.0 10 2.778471908435553 20 8.641628318684142 30 0.0 10 2.854977386747158 20 8.570937537950218 30 0.0 10 2.953488897110188 20 8.548090256764456 30 0.0 10 3.064102196392246 20 8.493537042356429 30 0.0 10 3.147685645374246 20 8.498883238165493 30 0.0 10 3.200421746815904 20 8.556139752412072 30 0.0 10 3.183273249381049 20 8.65032171442715 30 0.0 10 3.239985377488918 20 8.745918669363664 30 0.0 10 3.333151306681283 20 8.742908621387602 30 0.0 10 3.359897059141548 20 8.685982647265628 30 0.0 10 3.342149259469432 20 8.630618032476053 30 0.0 10 3.402152529893611 20 8.584972074149936 30 0.0 10 3.433449155506155 20 8.532120358760669 30 0.0 10 3.516346762879027 20 8.505940401786464 30 0.0 10 3.611686277671541 20 8.497854894144072 30 0.0 10 3.73713763878608 20 8.51022707134912 30 0.0 10 3.820155554229291 20 8.461711107368827 30 0.0 10 3.896029275652724 20 8.447930611711431 30 0.0 10 3.898709424572882 20 8.398036673147659 30 0.0 10 3.834224944461288 20 8.394846397784025 30 0.0 10 3.734180266126253 20 8.405746174276977 30 0.0 10 3.775587924352912 20 8.330103284400733 30 0.0 10 3.901489372276681 20 8.28602963946958 30 0.0 10 4.107349676922213 20 8.211266474272242 30 0.0 10 4.369175398134268 20 8.150290409488897 30 0.0 10 4.589092015860098 20 8.122542561222914 30 0.0 10 4.727687027500588 20 8.095167311790309 30 0.0 10 4.8258930197328 20 8.071135958982754 30 0.0 10 4.863188620805176 20 8.136658568910675 30 0.0 10 4.824995119183769 20 8.175494025886401 30 0.0 10 4.803909488354223 20 8.222139600180241 30 0.0 10 4.834952801138419 20 8.286202013368253 30 0.0 10 4.934244860992787 20 8.267058940660444 30 0.0 10 5.00551473788974 20 8.276321765703999 30 0.0 10 5.073379744197071 20 8.263529925759304 30 0.0 10 5.087006216666512 20 8.214996319240393 30 0.0 10 5.146733173093008 20 8.216657661806863 30 0.0 10 5.201689283729514 20 8.175021686484758 30 0.0 10 5.284295267832332 20 8.189885848110453 30 0.0 10 5.374391028119218 20 8.166084584454006 30 0.0 10 5.412699757284049 20 8.087732146658348 30 0.0 10 5.503726055462929 20 8.056733993350814 30 0.0 10 5.599181697758506 20 8.043488377838743 30 0.0 10 5.680762698623196 20 8.014922761377221 30 0.0 10 5.733426105380515 20 7.984877237515613 30 0.0 10 5.778274855036981 20 7.951277636233778 30 0.0 10 5.855189898887057 20 7.946422108571102 30 0.0 10 5.940934853587233 20 7.933333788936925 30 0.0 10 6.036469757069614 20 7.940940011282253 30 0.0 10 6.137113261195117 20 7.92222578932296 30 0.0 10 6.234429175886651 20 7.868772747688979 30 0.0 10 6.32146824886083 20 7.844242515712122 30 0.0 10 6.398073421535546 20 7.843472008995149 30 0.0 10 6.420753295638366 20 7.893509685143809 30 0.0 10 6.511027682153873 20 7.854472668172307 30 0.0 10 6.623597634885634 20 7.851168072209682 30 0.0 10 6.756342401098842 20 7.837447827392455 30 0.0 10 6.871522574814727 20 7.819519505164102 30 0.0 10 6.937566772882508 20 7.867903240156816 30 0.0 10 7.033166987846546 20 7.885551764748696 30 0.0 10 7.178682050649545 20 7.849953648016398 30 0.0 10 7.354058952271095 20 7.834591898855488 30 0.0 10 7.500502962868585 20 7.747298094247787 30 0.0 10 7.604711621673637 20 7.679753250743193 30 0.0 10 7.641054318318079 20 7.573492400391385 30 0.0 10 7.622684918720267 20 7.469439149237997 30 0.0 10 7.566914127803362 20 7.348692990640051 30 0.0 10 7.503874936858672 20 7.252855980287045 30 0.0 10 7.453886292873846 20 7.167988160252204 30 0.0 10 7.399329414543034 20 7.143617296369965 30 0.0 10 7.340619891840538 20 7.131898953922893 30 0.0 10 7.251163112270739 20 7.062512482996646 30 0.0 10 7.084838254822702 20 6.996401312045204 30 0.0 10 6.928769695347677 20 6.913659210092328 30 0.0 10 6.820965821278656 20 6.867054100870809 30 0.0 10 6.774819834054774 20 6.849318915011759 30 0.0 10 6.716518941924488 20 6.866071804634802 30 0.0 10 6.612362201950801 20 6.835654356795137 30 0.0 10 6.458278385926286 20 6.86984388306404 30 0.0 10 6.294850780374482 20 6.843345466044628 30 0.0 10 6.146608013804279 20 6.817639415159989 30 0.0 10 5.986685985763429 20 6.746893945174973 30 0.0 10 5.79699981228563 20 6.704059361179252 30 0.0 10 5.622340464564671 20 6.609935452131954 30 0.0 10 5.456658104229489 20 6.60436685820448 30 0.0 10 5.327423750122764 20 6.528333150528335 30 0.0 10 5.200805528625558 20 6.481577428237467 30 0.0 10 5.125568515311387 20 6.402302441047055 30 0.0 10 5.071997886678073 20 6.32210041667423 30 0.0 10 5.035041314223716 20 6.233072905019874 30 0.0 10 4.986201995000936 20 6.17096810516565 30 0.0 10 4.942448085153593 20 6.111267762585912 30 0.0 10 4.996591472258223 20 6.066262991871766 30 0.0 10 5.07516625230126 20 6.06942421575469 30 0.0 10 5.149985734882426 20 6.015511438221858 30 0.0 10 5.236575296420138 20 5.974897828475912 30 0.0 10 5.356333148367724 20 5.992275167444351 30 0.0 10 5.475749427695675 20 6.079292452301345 30 0.0 10 5.64489725939449 20 6.126388592942242 30 0.0 10 5.819623624074253 20 6.145970759886034 30 0.0 10 6.021492550976066 20 6.123097796774942 30 0.0 10 6.230968466825206 20 6.057832367937102 30 0.0 10 6.472037094578054 20 5.959054948958598 30 0.0 10 6.710867931146203 20 5.879628753623091 30 0.0 10 6.946406157394379 20 5.841974838136771 30 0.0 10 7.124177604831119 20 5.778527594273052 30 0.0 10 7.277934732000106 20 5.618407041151932 30 0.0 10 7.408428224465859 20 5.436318849914266 30 0.0 10 7.565732606266381 20 5.270641146377593 30 0.0 10 7.551976294680901 20 5.115450854068665 30 0.0 10 7.62614199618479 20 4.991093279505916 30 0.0 10 7.667639431507201 20 4.838550637943149 30 0.0 10 7.679818939626406 20 4.633892168324457 30 0.0 10 7.70633710787129 20 4.388990988412634 30 0.0 10 7.669759958421959 20 4.064805575503818 30 0.0 10 7.530282909825276 20 3.848442371245908 30 0.0 10 7.43431911628408 20 3.608100911696635 30 0.0 10 7.301505121281912 20 3.388836551861211 30 0.0 10 7.205090687557008 20 3.159292606538553 30 0.0 10 7.139536820766774 20 3.04407385259909 30 0.0 10 7.12406174632283 20 3.01687456014153 30 0.0 11 0.6598774602149078 21 9.703521741089744 31 0.0 11 0.7283346726199298 21 9.680743862887645 31 0.0 11 0.8150471480322707 21 9.680743862887645 31 0.0 11 0.8561214181813951 21 9.639743588938998 31 0.0 11 0.8926319441960473 21 9.60329889063076 31 0.0 11 0.9793444196084024 21 9.56685423891497 31 0.0 11 1.253173173738666 21 9.452964614942288 31 0.0 11 1.417470445314798 21 9.393742038431959 31 0.0 11 1.577203877266647 21 9.36640853799701 31 0.0 11 1.691299199445076 21 9.293519187972982 31 0.0 11 1.800830777489032 21 9.234296611462653 31 0.0 11 1.914926099667461 21 9.216074262308538 31 0.0 11 1.946872786057831 21 9.188740761873582 31 0.0 11 1.924053683426215 21 9.170518412719466 31 0.0 11 1.887543157411563 21 9.14318491228451 31 0.0 11 1.905798420418896 21 9.097629062695439 31 0.0 11 2.079223371243578 21 8.983739485315197 31 0.0 11 2.188754853797739 21 8.906294513058313 31 0.0 11 2.225265379812391 21 8.906294513058313 31 0.0 11 2.225265379812391 21 8.938183635726126 31 0.0 11 2.257212066202761 21 8.924516862212428 31 0.0 11 2.384998811764226 21 8.869849861342522 31 0.0 11 2.727284682809731 21 8.738655479692717 31 0.0 11 2.803956691950695 21 8.71132197925776 31 0.0 11 2.83590337834105 21 8.670321751901546 31 0.0 11 2.813084275709449 21 8.661210554028272 31 0.0 11 2.790265268567644 21 8.64298825146659 31 0.0 11 2.813084275709449 21 8.611099128798777 31 0.0 11 2.96369012390253 21 8.538209825367189 31 0.0 11 3.100604548712574 21 8.497209551418542 31 0.0 11 3.137114979237416 21 8.501765127058959 31 0.0 11 3.182753184500633 21 8.54732097664803 31 0.0 11 3.196444607883684 21 8.647543827107007 31 0.0 11 3.260337980664424 21 8.734099904052293 31 0.0 11 3.3379227768282 21 8.724988752771459 31 0.0 11 3.351614200211237 21 8.697655252336502 31 0.0 11 3.356178039835519 21 8.629321477952892 31 0.0 11 3.388124726225889 21 8.592876826237102 31 0.0 11 3.452018099006629 21 8.529098627493915 31 0.0 11 3.488528625021281 21 8.515431900572657 31 0.0 11 3.611751530958478 21 8.501765127058959 31 0.0 11 3.739538276519944 21 8.497209551418542 31 0.0 11 3.839942175315336 21 8.460764853110305 31 0.0 11 3.894707964337321 21 8.428875777034932 31 0.0 11 3.894707964337321 21 8.406097852240399 31 0.0 11 3.862761277946951 21 8.396986700959558 31 0.0 11 3.753229699902995 21 8.374208776165019 31 0.0 11 3.762357379151559 21 8.355986427010904 31 0.0 11 3.844506014939618 21 8.305875001781416 31 0.0 11 4.100079506062577 21 8.21931892483613 31 0.0 11 4.392163523200174 21 8.150985150452527 31 0.0 11 4.624918007181314 21 8.11454049873673 31 0.0 11 4.739013329359757 21 8.091762573942197 31 0.0 11 4.834853388530852 21 8.096318149582614 31 0.0 11 4.853108651538185 21 8.132762847890845 31 0.0 11 4.83028954890657 21 8.173763075247059 31 0.0 11 4.812034285899251 21 8.228430076116971 31 0.0 11 4.83028954890657 21 8.264874774425202 31 0.0 11 4.916089141806303 21 8.273985925706043 31 0.0 11 5.039312143233296 21 8.269430350065618 31 0.0 11 5.066694989999383 21 8.260319198784785 31 0.0 11 5.089514092630999 21 8.228430076116971 31 0.0 11 5.14427978616316 21 8.210207773555289 31 0.0 11 5.194481735560863 21 8.187429848760757 31 0.0 11 5.281194210973204 21 8.18287427312034 31 0.0 11 5.372470430520031 21 8.150985150452527 31 0.0 11 5.418108635783248 21 8.096318149582614 31 0.0 11 5.48656575269846 21 8.064429073507241 31 0.0 11 5.609788754125453 21 8.037095573072285 31 0.0 11 5.696501134047998 21 8.005206496996912 31 0.0 11 5.728447820438368 21 7.986984147842797 31 0.0 11 5.774086025701585 21 7.959650647407841 31 0.0 11 5.847106982241079 21 7.945983873894142 31 0.0 11 5.942947041412189 21 7.936872722613301 31 0.0 11 6.034223356448812 21 7.936872722613301 31 0.0 11 6.130063415619922 21 7.918650373459186 31 0.0 11 6.235031058549786 21 7.873094523870115 31 0.0 11 6.344562636593742 21 7.845761023435159 31 0.0 11 6.4038921697502 21 7.859427796948857 31 0.0 11 6.413019753508969 21 7.873094523870115 31 0.0 11 6.486040805538259 21 7.868538948229698 31 0.0 11 6.609263711475456 21 7.850316599075583 31 0.0 11 6.787252406434625 21 7.832094296513901 31 0.0 11 6.878528721471248 21 7.832094296513901 31 0.0 11 6.93238162798061 21 7.859427796948857 31 0.0 11 7.014530263768669 21 7.877650146102972 31 0.0 11 7.151444593088918 21 7.859427796948857 31 0.0 11 7.37050765368702 21 7.813871947359785 31 0.0 11 7.50742207849705 21 7.741900235405189 31 0.0 11 7.607825881802646 21 7.655344111867464 31 0.0 11 7.630644984434248 21 7.591565959716717 31 0.0 11 7.616953561051211 21 7.468565184463194 31 0.0 11 7.57131545127779 21 7.363786758363794 31 0.0 11 7.489166815489731 21 7.22711925618902 31 0.0 11 7.443528610226515 21 7.167896633086257 31 0.0 11 7.397890500453108 21 7.145118708291718 31 0.0 11 7.352252390679687 21 7.13145198137046 31 0.0 11 7.283795178274665 21 7.090451707421806 31 0.0 11 7.101242643691215 21 6.999340054836103 31 0.0 11 6.873052094824153 21 6.890006006503845 31 0.0 11 6.809158626553617 21 6.862672506068889 31 0.0 11 6.777211940163248 21 6.853561354788055 31 0.0 11 6.736137670014123 21 6.858116930428472 31 0.0 11 6.636646653731354 21 6.849005779147631 31 0.0 11 6.463221702906658 21 6.858116930428472 31 0.0 11 6.27610542418872 21 6.839894581274357 31 0.0 11 6.148318678627255 21 6.812561080839401 31 0.0 11 6.025095677200248 21 6.76700523125033 31 0.0 11 5.778649769836057 21 6.685922368014892 31 0.0 11 5.600661074876889 21 6.617588593631282 31 0.0 11 5.468310489691141 21 6.59481066883675 31 0.0 11 5.322268481122343 21 6.531032516685996 31 0.0 11 5.189917991426376 21 6.462698742302393 31 0.0 11 5.126024618645637 21 6.398920590151639 31 0.0 11 5.080386413382434 21 6.330586815768036 31 0.0 11 5.025620719850259 21 6.225808389668635 31 0.0 11 4.979982514587042 21 6.162030190925449 31 0.0 11 4.957163507445237 21 6.107363190055536 31 0.0 11 4.984546354211325 21 6.08002968962058 31 0.0 11 5.062131150375101 21 6.061807340466465 31 0.0 11 5.162535049170493 21 6.011695915236977 31 0.0 11 5.230992261575515 21 5.984362414802021 31 0.0 11 5.326832320746625 21 5.993473612675302 31 0.0 11 5.482002008563988 21 6.070918538339746 31 0.0 11 5.641735440515823 21 6.121029963569235 31 0.0 11 5.819724135474992 21 6.13925226613091 31 0.0 11 5.99771283043416 21 6.121029963569235 31 0.0 11 6.235031058549786 21 6.052696189185631 31 0.0 11 6.449530279523607 21 5.970695687880763 31 0.0 11 6.741614296661218 21 5.87958398870262 31 0.0 11 6.951549678010756 21 5.834028139113549 31 0.0 11 7.133189425571394 21 5.756583213449104 31 0.0 11 7.233593228876976 21 5.661833576699969 31 0.0 11 7.434401026467746 21 5.41583207278537 31 0.0 11 7.557623932404943 21 5.201719598353712 31 0.0 11 7.557623932404943 21 5.15616374876464 31 0.0 11 7.612389721426929 21 5.001273897435751 31 0.0 11 7.6671555104489 21 4.805383818750648 31 0.0 11 7.676283094207654 21 4.700605346058807 31 0.0 11 7.694538357214987 21 4.39629885711087 31 0.0 11 7.644336407817284 21 4.06829680529897 31 0.0 11 7.50742207849705 21 3.785850603076141 31 0.0 11 7.461783873233834 21 3.681072176976748 31 0.0 11 7.302050441281998 21 3.372210112388387 31 0.0 11 7.169699856096237 21 3.098875061446399 31 0.0 11 7.12406174632283 21 3.01687456014153 31 0.0 0 ARC 5 561 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 2.20033234925167 20 2.429481188027647 30 0.0 40 0.3202515208610288 100 AcDbArc 50 173.8269138384965 51 4.357607192828583 0 SPLINE 5 562 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 47 73 43 74 0 42 0.0000000001 43 0.0000000001 40 0.10983182385225 40 0.10983182385225 40 0.10983182385225 40 0.10983182385225 40 0.2601526676151707 40 0.9347602429137161 40 1.70017988569464 40 1.964523402418906 40 2.102291411013352 40 2.290286180853265 40 2.406442522298647 40 2.497594700282016 40 2.910683011412874 40 3.047411218485075 40 3.193197369764633 40 3.295182131948711 40 3.424980295593762 40 3.715211339110005 40 4.000527954069828 40 4.178768690100375 40 4.303925262433868 40 4.417146192881356 40 4.579016347941351 40 4.717651291815696 40 4.808936445894712 40 4.891031420745579 40 4.973464692007814 40 5.211906712672615 40 5.315780682715857 40 5.406932821105773 40 5.510089616702152 40 5.671266097583767 40 5.801237424843262 40 5.89896185695879 40 6.010991630621304 40 6.11331432300313 40 6.158890431278845 40 6.327278452883255 40 6.439136550233722 40 6.685832119946926 40 6.931359740097688 40 7.058603501103985 40 7.289504634135078 40 7.432721115377778 40 7.432721115377778 40 7.432721115377778 40 7.432721115377778 10 3.962574217627098 20 5.180240864523838 30 0.0 10 3.944510669898809 20 5.133448892454557 30 0.0 10 3.840421483316152 20 4.879085229443192 30 0.0 10 3.527583879822849 20 4.490904884461922 30 0.0 10 3.17556016075072 20 4.072228610698967 30 0.0 10 2.867138242232526 20 3.743218979657356 30 0.0 10 2.679337599762884 20 3.68772326628007 30 0.0 10 2.534937310362789 20 3.623609953482226 30 0.0 10 2.480890275204509 20 3.497170705317012 30 0.0 10 2.315626976485549 20 3.366527103371714 30 0.0 10 2.187646747089317 20 3.149650824298912 30 0.0 10 2.071553803580655 20 3.007599942776153 30 0.0 10 2.067808915034511 20 2.870040190153929 30 0.0 10 1.962950749050541 20 2.840134734229035 30 0.0 10 1.921756471554807 20 2.604629326825325 30 0.0 10 1.881987561334736 20 2.409024098992748 30 0.0 10 2.001945343632903 20 2.169296878390806 30 0.0 10 2.071553803580655 20 1.950447645658659 30 0.0 10 2.163898435970496 20 1.884468432050422 30 0.0 10 2.157283139618533 20 1.726402179440773 30 0.0 10 2.31497446812267 20 1.699632896664024 30 0.0 10 2.359913690107674 20 1.542629300827009 30 0.0 10 2.493980819338746 20 1.547189582164088 30 0.0 10 2.476006633616336 20 1.434222060631803 30 0.0 10 2.637038743166876 20 1.426745689826486 30 0.0 10 2.760621575654077 20 1.269742093989474 30 0.0 10 2.652091705550867 20 1.132497187354077 30 0.0 10 2.588354632635727 20 1.097785756541821 30 0.0 10 2.51104390572489 20 0.9676358842509031 30 0.0 10 2.398482831108137 20 0.8929835457912744 30 0.0 10 2.282319246338134 20 0.8385745225404335 30 0.0 10 2.193700077246974 20 0.7591046382258054 30 0.0 10 2.079595963061997 20 0.7266349466243902 30 0.0 10 1.992910193078458 20 0.658939173560146 30 0.0 10 2.091383906179437 20 0.6521123748407796 30 0.0 10 2.228841024585051 20 0.6925827875913129 30 0.0 10 2.386128245589446 20 0.6514628027548284 30 0.0 10 2.539670522104572 20 0.6365100884405735 30 0.0 10 2.754255158044633 20 0.5841190244753314 30 0.0 10 2.955716971137241 20 0.60225486846063 30 0.0 10 3.117448875418798 20 0.6457197363219738 30 0.0 10 3.239916040859049 20 0.6694309924758031 30 0.0 10 3.286762017318186 20 0.6786463025841166 30 0.0 0 SPLINE 5 563 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 22 73 18 74 0 42 0.0000000001 43 0.0000000001 40 0.096252882958258 40 0.096252882958258 40 0.096252882958258 40 0.096252882958258 40 0.2989881400471583 40 0.4153212311417059 40 0.5251226242603675 40 0.6728775912003217 40 0.8552928324286247 40 1.014659668274564 40 1.144208417121597 40 1.291963331366827 40 1.457329029106612 40 1.551065660219041 40 1.631071047673593 40 1.725363557393037 40 1.85497828969289 40 2.009287156871294 40 2.141388273730327 40 2.141388273730327 40 2.141388273730327 40 2.141388273730327 10 2.386530422359396 20 0.6555624157569149 30 0.0 10 2.449579100202029 20 0.6792776876231699 30 0.0 10 2.548604600262949 20 0.7180315559117627 30 0.0 10 2.680382952386139 20 0.7795207917950542 30 0.0 10 2.807665055712381 20 0.7743040740837284 30 0.0 10 2.947873179584251 20 0.8257932240437586 30 0.0 10 3.074810526459174 20 0.9485582965790371 30 0.0 10 3.251114684700946 20 0.899983284780653 30 0.0 10 3.358564008529149 20 1.018418914158136 30 0.0 10 3.513458938274898 20 1.034574005888273 30 0.0 10 3.610584971300199 20 1.136715539157478 30 0.0 10 3.726994889229759 20 1.168836854109436 30 0.0 10 3.747668234825297 20 1.28791704111485 30 0.0 10 3.619030194283238 20 1.304021829395994 30 0.0 10 3.504076196662849 20 1.274725025502299 30 0.0 10 3.362892759002658 20 1.31568384982928 30 0.0 10 3.28296501818162 20 1.374436566254647 30 0.0 10 3.254928766601417 20 1.407874235032117 30 0.0 0 SPLINE 5 564 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 44 73 40 74 0 42 0.0000000001 43 0.0000000001 40 0.0309099851096616 40 0.0309099851096616 40 0.0309099851096616 40 0.0309099851096616 40 0.0715979249205426 40 0.1325901698524337 40 0.2543992137626451 40 0.3345364712856724 40 0.4215001202085561 40 0.4688148557949897 40 0.5390793863481013 40 0.5946464330222035 40 0.6504522527757433 40 0.6905209116395217 40 0.7710762708722067 40 0.9292596961054991 40 1.179881306358543 40 1.397385523892929 40 1.71189922783662 40 1.874886365949232 40 1.937877756999647 40 1.985155460545822 40 2.02067362818396 40 2.098068224988732 40 2.2069949613713 40 2.385906128546602 40 2.530347850312898 40 2.589249469753365 40 2.64041586588689 40 2.705436809579715 40 2.801758146026834 40 3.030621674963491 40 3.225013330902676 40 3.358667881697464 40 3.512112179443011 40 3.644162679273175 40 3.758342588267608 40 3.871737726523529 40 3.958271820690071 40 4.004253697866303 40 4.037701713238726 40 4.037701713238726 40 4.037701713238726 40 4.037701713238726 10 1.948237214767131 20 0.2272836940755329 30 0.0 10 1.953212974167932 20 0.2404828964185519 30 0.0 10 1.969358927363462 20 0.2694193778472105 30 0.0 10 2.052067663475433 20 0.2815092560077801 30 0.0 10 2.135862332238684 20 0.2615981056358194 30 0.0 10 2.232578731771372 20 0.3070987632609885 30 0.0 10 2.296639991729672 20 0.2585343353570515 30 0.0 10 2.368429448922034 20 0.2639826513733023 30 0.0 10 2.412860874914275 20 0.3082584365155867 30 0.0 10 2.481760402962664 20 0.2949589699548074 30 0.0 10 2.510734760611086 20 0.3493047035363084 30 0.0 10 2.576723487011113 20 0.3436565499025317 30 0.0 10 2.626393603812576 20 0.4425526015755992 30 0.0 10 2.809883535597387 20 0.4359925896479897 30 0.0 10 3.003117882386518 20 0.4992443631140589 30 0.0 10 3.252981726340024 20 0.5810743457621328 30 0.0 10 3.482828971870785 20 0.613815953519195 30 0.0 10 3.652642903586336 20 0.6796382474909777 30 0.0 10 3.744608201366373 20 0.6844457073221549 30 0.0 10 3.792304214719453 20 0.6502381764272443 30 0.0 10 3.77808302705754 20 0.5935976221882165 30 0.0 10 3.742359032178466 20 0.5263449525743571 30 0.0 10 3.618370132772437 20 0.4881657581176438 30 0.0 10 3.485658122720271 20 0.4402648096379629 30 0.0 10 3.366103884643259 20 0.3976907400881231 30 0.0 10 3.290369834500909 20 0.352760029107106 30 0.0 10 3.269870515407319 20 0.2928722724912092 30 0.0 10 3.195564227882101 20 0.2713208552775725 30 0.0 10 3.071085080421758 20 0.2478645465338936 30 0.0 10 2.898798242992457 20 0.2190753417446238 30 0.0 10 2.721643331042682 20 0.151018866464419 30 0.0 10 2.56056500808174 20 0.1684033382438503 30 0.0 10 2.417962392316718 20 0.1705077097545917 30 0.0 10 2.29606238477266 20 0.1109435554969771 30 0.0 10 2.192306677933369 20 0.0504457701483077 30 0.0 10 2.088176967895163 20 0.0284102969404412 30 0.0 10 2.007892934031822 20 0.0186163919988527 30 0.0 10 1.949295911183801 20 0.0341891285304392 30 0.0 10 1.936343515772617 20 0.0561975070642848 30 0.0 10 1.932259040256659 20 0.0667863429628835 30 0.0 0 SPLINE 5 565 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 11 71 3 72 28 73 24 74 22 42 0.0000000001 43 0.0000000001 44 0.0000000001 12 -0.527900310903169 22 0.8493063415213249 32 0.0 13 -0.527900310903169 23 0.8493063415213249 33 0.0 40 0.0 40 0.0 40 0.0 40 0.0 40 0.0130152441672245 40 0.0501414194599779 40 0.1914611669511217 40 0.3479335236817931 40 0.4681346740777527 40 0.5929300969865567 40 0.6502842994919491 40 0.6702851102596972 40 0.6988177571000094 40 0.7356636803433894 40 0.8124396277067608 40 0.9194218531609553 40 1.031418544586941 40 1.101262417683645 40 1.220863051703444 40 1.296953351622051 40 1.327377123564596 40 1.372930505446267 40 1.408848886595491 40 1.450576241936782 40 1.473226824009578 40 1.473226824009578 40 1.473226824009578 40 1.473226824009578 10 1.445311836081131 20 0.1476094682381515 30 0.0 10 1.443021585600345 20 0.1512941113740422 30 0.0 10 1.445008487526261 20 0.1717648806909899 30 0.0 10 1.523932865648217 20 0.1764479968443545 30 0.0 10 1.622962467036509 20 0.1733891751863705 30 0.0 10 1.764337358373814 20 0.1973121464145789 30 0.0 10 1.89568588004826 20 0.2412527568203842 30 0.0 10 1.98841765706737 20 0.2194329961502599 30 0.0 10 2.068722008937128 20 0.2055275494147169 30 0.0 10 2.074526905936679 20 0.1684519309938716 30 0.0 10 2.071811864119871 20 0.1388830136864015 30 0.0 10 2.032161241350414 20 0.1068777527220315 30 0.0 10 1.963662422482248 20 0.0825558764289636 30 0.0 10 1.874961410250838 20 0.0390349595703794 30 0.0 10 1.783506576110935 20 0.005074261809798 30 0.0 10 1.683461479029934 20 -0.0019948870700413 30 0.0 10 1.59112961125625 20 0.001382512145371 30 0.0 10 1.525019048761036 20 0.0120100579270731 30 0.0 10 1.459069899693375 20 -0.0019517568749095 30 0.0 10 1.483388533762705 20 0.0536630864273866 30 0.0 10 1.452506911268703 20 0.0844833155846517 30 0.0 10 1.453850954348857 20 0.1196688460355257 30 0.0 10 1.44929758585392 20 0.1411970405736267 30 0.0 10 1.445311836081131 20 0.1476094682381515 30 0.0 11 1.445311836081131 21 0.1476094682381515 31 0.0 11 1.445311836081131 21 0.1606247124053759 31 0.0 11 1.480081885133955 21 0.1736399565726003 31 0.0 11 1.621335024099451 21 0.1779783621962103 31 0.0 11 1.775626994395771 21 0.2040088505306592 31 0.0 11 1.892975749112565 21 0.2300393388651081 31 0.0 11 2.016843947466334 21 0.2148549055342706 31 0.0 11 2.068998937130885 21 0.1909936063634348 31 0.0 11 2.073345214241157 21 0.1714707401125999 31 0.0 11 2.068998937130885 21 0.1432710626145379 31 0.0 11 2.042921442298613 21 0.117240574280089 31 0.0 11 1.973381400136091 21 0.0847024638620298 31 0.0 11 1.87559075255772 21 0.0413182984403591 31 0.0 11 1.769107606701922 21 0.0066109715622993 31 0.0 11 1.6995675645394 21 0.0001033494786853 31 0.0 11 1.580045643295903 21 0.0044417823986862 31 0.0 11 1.50398626938265 21 0.0066109715622993 31 0.0 11 1.473562497440106 21 0.0066109715622993 31 0.0 11 1.473562497440106 21 0.0521643534439704 31 0.0 11 1.45835061146883 21 0.0847024638620298 31 0.0 11 1.451831223774981 21 0.1259173855273161 31 0.0 11 1.445311836081131 21 0.1476094682381515 31 0.0 0 SPLINE 5 566 330 54C 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 10 73 6 74 4 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.0908275041736089 40 0.1515653193861139 40 0.1996196590927135 40 0.1996196590927135 40 0.1996196590927135 40 0.1996196590927135 10 1.948237214767131 20 0.2272836940755329 30 0.0 10 1.926163129768152 20 0.2063769446177099 30 0.0 10 1.889327748531302 20 0.1714895150033979 30 0.0 10 1.881012314242998 20 0.0912068775715557 30 0.0 10 1.91655816286958 20 0.0742682613105172 30 0.0 10 1.93225904025666 20 0.0667863429628852 30 0.0 11 1.948237214767131 21 0.2272836940755329 31 0.0 11 1.892975805055691 21 0.155201712199954 31 0.0 11 1.892975805055691 21 0.094463896987449 31 0.0 11 1.93225904025666 21 0.0667863429628852 31 0.0 0 LINE 5 567 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3.215909561203846 20 0.922927616029332 30 0.0 11 3.218988470890153 21 0.9567343594708539 31 0.0 0 LINE 5 568 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3.136776264725703 20 0.92329338779059 30 0.0 11 3.134454105558766 21 0.9511089019741163 31 0.0 0 LINE 5 569 330 54C 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 0.1 100 AcDbLine 10 3.286762017318186 20 0.6786463025841166 30 0.0 11 3.547734480568962 21 0.7396656132494286 31 0.0 0 SPLINE 5 56A 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 11 71 3 72 15 73 11 74 9 42 0.0000000001 43 0.0000000001 44 0.0000000001 12 0.0041293933044449 22 0.9999914740191226 32 0.0 13 0.0041293933044449 23 0.9999914740191226 33 0.0 40 0.0 40 0.0 40 0.0 40 0.0 40 0.0501382402766406 40 0.1432621276363378 40 0.199379934664707 40 0.2372929312768618 40 0.3137280762808819 40 0.3974936021687323 40 0.4152399842445076 40 0.4402928252355733 40 0.4402928252355733 40 0.4402928252355733 40 0.4402928252355733 10 3.264126235016007 20 0.4803689492000985 30 0.0 10 3.264195248520572 20 0.4970815534664194 30 0.0 10 3.307638186514044 20 0.5368771056540677 30 0.0 10 3.364016494573097 20 0.5413224225841748 30 0.0 10 3.449520886167601 20 0.5482441457372231 30 0.0 10 3.435654578232382 20 0.4734285686351568 30 0.0 10 3.356577152463902 20 0.4663071805234893 30 0.0 10 3.310021699973409 20 0.4538922235883563 30 0.0 10 3.256667815296862 20 0.4515158427123359 30 0.0 10 3.264091750671392 20 0.4720180734030909 30 0.0 10 3.264126235016007 20 0.4803689492000985 30 0.0 11 3.264126235016007 21 0.4803689492000985 31 0.0 11 3.294243942136752 21 0.5204534456523078 31 0.0 11 3.384596951612763 21 0.5430009970849881 31 0.0 11 3.439812757324659 21 0.5329798661478407 31 0.0 11 3.434793148795051 21 0.4954006319576294 31 0.0 11 3.364518517494346 21 0.4653372391461801 31 0.0 11 3.28169489284118 21 0.4528108459470346 31 0.0 11 3.264126235016007 21 0.4553161082090327 31 0.0 11 3.264126235016007 21 0.4803689492000985 31 0.0 0 SPLINE 5 56B 330 54C 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 15 73 11 74 9 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.1196352067037719 40 0.2352835418161828 40 0.3528584293995808 40 0.5331380528068883 40 0.6010878423232439 40 0.6532507233272648 40 0.7285766002619108 40 0.8000156129183112 40 0.8000156129183112 40 0.8000156129183112 40 0.8000156129183112 10 3.63891233785242 20 0.6698790377057194 30 0.0 10 3.612219554530246 20 0.6400393880506677 30 0.0 10 3.55972353121059 20 0.5813545021309338 30 0.0 10 3.518519145735583 20 0.4655563773856299 30 0.0 10 3.389715509322722 20 0.3959759140205708 30 0.0 10 3.279295945095703 20 0.3635351639983204 30 0.0 10 3.168270087593042 20 0.3519046916908206 30 0.0 10 3.128159259105812 20 0.4146651277083572 30 0.0 10 3.140671704150545 20 0.4831027706257898 30 0.0 10 3.160302140079459 20 0.5276506209784249 30 0.0 10 3.169857415627201 20 0.5493346521797911 30 0.0 11 3.63891233785242 21 0.6698790377057194 31 0.0 11 3.565303082451023 21 0.5755696521584355 31 0.0 11 3.507577556389009 21 0.4753583700833311 31 0.0 11 3.409695050203907 21 0.4102210599364398 31 0.0 11 3.236518360131618 21 0.3601154052506956 31 0.0 11 3.168753561067269 21 0.365125984367463 31 0.0 11 3.138635853946517 21 0.4077157703780579 31 0.0 11 3.143655462476125 21 0.4828742114620966 31 0.0 11 3.169857415627201 21 0.5493346521797911 31 0.0 0 LINE 5 56C 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2.601811513443449 20 0.7431190905475429 30 0.0 11 2.593434324078621 21 0.7598432106030764 31 0.0 0 LINE 5 56D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2.541268958463248 20 0.7168102231988858 30 0.0 11 2.531442519571143 21 0.7429668381128636 31 0.0 0 LINE 5 56E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2.458179406680145 20 0.7148395233327847 30 0.0 11 2.473031799079134 21 0.6888947171248106 31 0.0 0 LINE 5 56F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2.832466041508269 20 0.7882490231628978 30 0.0 11 2.824494859248879 21 0.8160978401632341 31 0.0 0 LINE 5 570 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2.751231802301006 20 0.7775393616716571 30 0.0 11 2.751231802301006 21 0.8048469251697554 31 0.0 0 LINE 5 571 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2.672847588625824 20 0.7685261527755749 30 0.0 11 2.666697436969613 21 0.799221440376634 31 0.0 0 LINE 5 572 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3.05308782720812 20 0.9071700057461811 30 0.0 11 3.049919796170499 21 0.9229815871940374 31 0.0 0 LINE 5 573 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2.982052115034855 20 0.8636160103044225 30 0.0 11 2.9766566832795 21 0.8779778999237421 31 0.0 0 LINE 5 574 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2.914033902371818 20 0.8198552914513257 30 0.0 11 2.897757972139871 21 0.844225154943313 31 0.0 0 LINE 5 575 330 54C 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 0.1 100 AcDbLine 10 3.547734480568962 20 0.7396656132494286 30 0.0 11 3.792413857387808 21 0.8312812186930162 31 0.0 0 LINE 5 576 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3.294101555390066 20 0.9530410681709291 30 0.0 11 3.280980331340757 21 0.9792362167541952 31 0.0 0 LINE 5 577 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3.367435755808229 20 1.323232879061899 30 0.0 11 3.35424338828863 21 1.294262054942635 31 0.0 0 LINE 5 578 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3.439704169124427 20 1.296573902199298 30 0.0 11 3.427506501179628 21 1.266134740162556 31 0.0 0 LINE 5 579 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3.50802928242962 20 1.287063977507612 30 0.0 11 3.495133959878863 21 1.254883825169081 31 0.0 0 LINE 5 57A 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3.499665185760796 20 1.048946592511644 30 0.0 11 3.483862707438468 21 1.080494506288257 31 0.0 0 LINE 5 57B 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3.428418339208012 20 1.025004696898944 30 0.0 11 3.416235248739234 21 1.052367218804565 31 0.0 0 LINE 5 57C 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3.355356177262614 20 0.996426129445215 30 0.0 11 3.342972191791361 21 1.024239904024486 31 0.0 0 LINE 5 57D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3.583332816984196 20 1.293153159630763 30 0.0 11 3.579668325210249 21 1.249258367672339 31 0.0 0 LINE 5 57E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3.666595302776586 20 1.29580157351099 30 0.0 11 3.652931438101248 21 1.254883825169081 31 0.0 0 LINE 5 57F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3.734211016156297 20 1.247581266019924 30 0.0 11 3.686745139479306 21 1.243632910175602 31 0.0 0 LINE 5 580 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3.69238558861776 20 1.164170242493264 30 0.0 11 3.664202634598517 21 1.181752823118706 31 0.0 0 LINE 5 581 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3.62709943134241 20 1.132065344025726 30 0.0 11 3.619117680780064 21 1.14800005084189 31 0.0 0 LINE 5 582 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3.567576826227763 20 1.091930356815163 30 0.0 11 3.557125820329467 21 1.108621821068336 31 0.0 0 LWPOLYLINE 5 583 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 3.728189650560835 20 1.108429654514353 10 3.678484186446873 20 1.108429654514353 10 3.678484186446873 20 1.048890614664237 0 LWPOLYLINE 5 584 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 3.946893860491655 20 1.356509005420768 10 3.877306154788982 20 1.366432169630325 10 3.777895170617924 20 1.21758457000503 10 3.787836263440716 20 1.177891858574028 0 POINT 5 585 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 3.85742396914339 20 1.167968694364471 30 0.0 0 POINT 5 586 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 3.946893860491655 20 1.237430898424147 30 0.0 0 POINT 5 587 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 3.936952711725737 20 1.177891858574028 30 0.0 0 POINT 5 588 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 3.897188340434567 20 1.088583298798852 30 0.0 0 POINT 5 589 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 3.917070526080152 20 1.009197903233236 30 0.0 0 POINT 5 58A 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 3.847482876320597 20 0.9695052190986181 30 0.0 0 POINT 5 58B 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 3.797777356263509 20 0.9695052190986181 30 0.0 0 POINT 5 58C 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 4.026422603073996 20 1.167968694364471 30 0.0 0 POINT 5 58D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 3.986658231782826 20 1.029044258948736 30 0.0 0 LWPOLYLINE 5 58E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 8 70 0 43 0.0 10 0.6047527742403034 20 4.929576088166705 10 0.5748028405431569 20 5.031222341228005 10 0.598762776312249 20 5.055139133950579 10 0.736532616771207 20 5.079055899376768 10 0.9282123826395221 20 5.126889430229145 10 0.9401923225525052 20 5.114931047516051 10 0.9821223080488721 20 4.995347193088722 10 0.7604926084834176 20 4.911638514097063 0 LWPOLYLINE 5 58F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 0.4490129959403007 20 4.857825791888139 10 0.682622691361857 20 4.947513662236346 10 0.7485126126273159 20 4.917617705453608 10 0.7545026105553703 20 4.887721748670873 10 0.652672701721599 20 4.762158730183383 10 0.4490129959403007 20 4.821950643748856 0 LWPOLYLINE 5 590 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 0.2633232280000399 20 4.720304390687555 10 0.2573332300719855 20 4.786075495609573 10 0.4370330000841989 20 4.768137921539931 10 0.4669829897244569 20 4.720304390687555 0 LWPOLYLINE 5 591 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 0 43 0.0 10 0.0057535968093916 20 4.863804983244683 10 0.1794633688935505 20 4.929576088166705 10 0.3292131492654988 20 5.019263958514912 10 0.4130730643151069 20 5.085035090733313 10 0.4609929917964096 20 5.07307670802022 10 0.5149029172057596 20 4.971430427662532 10 0.5149029172057596 20 4.887721748670873 0 LWPOLYLINE 5 592 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 0.0357035305065381 20 4.690408406608433 10 0.0117435387943274 20 4.720304390687555 10 0.0716434621317248 20 4.762158730183383 10 0.2513432321439382 20 4.77411711289648 0 LWPOLYLINE 5 593 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 0.4430229980122462 20 4.762158730183383 10 0.4789629296374401 20 4.792054686966121 10 0.4849529275654945 20 4.809992261035763 0 LINE 5 594 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 0.6184585594745187 20 9.714043493750033 30 0.0 11 0.5772605897327168 21 9.730036036573856 31 0.0 0 LWPOLYLINE 5 595 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2.175927669955363 20 5.427623754449513 10 2.175927669955363 20 5.487415668014982 10 2.523347214123674 20 5.523290816154265 10 2.529337212051721 20 5.46947809394534 0 LWPOLYLINE 5 596 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 8 70 0 43 0.0 10 2.37958743167978 20 5.385769414953681 10 2.403547367448865 20 5.439582137162606 10 2.535327209979776 20 5.463498902588796 10 2.64913705872653 20 5.463498902588796 10 2.709036982063935 20 5.439582137162606 10 2.70304698413588 20 5.397727797666775 10 2.673097050438741 20 5.290102353248929 10 2.445477297002113 20 5.296081544605474 0 LWPOLYLINE 5 597 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 2.217857599508604 20 5.24226882239655 10 2.199887661667567 20 5.355873458170947 10 2.373597433751726 20 5.379790223597137 10 2.46344729078627 20 5.272164779179288 10 2.43349735708913 20 5.254227205109646 10 2.295727516630165 20 5.230310439683456 0 ELLIPSE 5 598 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbEllipse 10 2.803089370356143 20 3.292470604056873 30 0.0 11 -0.3745341405723117 21 0.1212515134517957 31 0.0 210 0.0 220 0.0 230 1.0 40 0.1625947767763328 41 0.0 42 6.283185307179586 0 LWPOLYLINE 5 599 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 14 70 0 43 0.0 10 1.467311636733029 20 4.65453325846915 10 1.479291632589131 20 4.624637301686416 10 1.515231620157443 20 4.600720536260226 10 1.581121485479776 20 4.624637301686416 10 1.796761243060302 20 4.696387597964982 10 1.970471015144461 20 4.75020034747029 10 2.090270861819263 20 4.762158730183383 10 2.102250801732246 20 4.792054686966121 10 2.096260859747317 20 4.857825791888139 10 2.078290865963161 20 4.87576336595778 10 1.898591095950948 20 4.87576336595778 10 1.694931334226531 20 4.85184660053159 10 1.533201557998481 20 4.833909026461949 10 1.479291632589131 20 4.792054686966121 0 LWPOLYLINE 5 59A 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 12 70 1 43 0.0 10 0.9941023039049809 20 4.983388810375629 10 1.030042235530174 20 5.055139133950579 10 1.227711943383418 20 5.168743769724972 10 1.353501787986274 20 5.270390022786276 10 1.485281630517185 20 5.234514874646993 10 1.569141545566793 20 5.210598109220804 10 1.670971398457446 20 5.186681343794614 10 1.658991402601337 20 5.168743769724972 10 1.353501787986274 20 5.061118325307127 10 1.155832080133031 20 4.965451236305987 10 1.07796216301147 20 4.929576088166705 10 0.9821223080488721 20 4.965451236305987 0 LWPOLYLINE 5 59B 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 1 43 0.0 10 0.9222223847114747 20 4.594741344903678 10 0.9521723184086141 20 4.672470832538792 10 1.083952160939524 20 4.67845002389534 10 1.173802017974061 20 4.648554067112602 10 1.155832080133031 20 4.576803770834036 10 1.125882090492765 20 4.540928622694753 10 1.006082243817964 20 4.55288700540785 0 LWPOLYLINE 5 59C 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 0.8144025338927676 20 4.899680131383966 10 0.874302457230172 20 4.85184660053159 10 0.9701423121927703 20 4.959472044949439 10 0.8922723950712097 20 5.013284767158364 0 LWPOLYLINE 5 59D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 0.9821223080488721 20 5.102972664802955 10 1.018062239674065 20 5.061118325307127 10 1.095932156795626 20 5.108951856159503 10 1.036032233458222 20 5.168743769724972 0 LWPOLYLINE 5 59E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 1.155832080133031 20 4.558866196764395 10 1.179792015902116 20 4.52897023998166 10 1.443351700963937 20 4.594741344903678 10 1.449341698891991 20 4.65453325846915 0 LWPOLYLINE 5 59F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 0 43 0.0 10 1.13187208842082 20 4.684429215251885 10 1.143852084276922 20 4.7262835820441 10 1.473301634661076 20 4.821950643748856 10 1.473301634661076 20 4.672470832538792 10 1.323551854289135 20 4.636595684399509 10 1.227711943383418 20 4.594741344903678 10 1.167812075989132 20 4.594741344903678 0 LWPOLYLINE 5 5A0 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2.044147827424453 20 5.272164779179288 10 1.990237902015103 20 5.355873458170947 10 2.026177889583415 20 5.385769414953681 10 2.217857599508604 20 5.433602945806057 10 2.241817591220815 20 5.373811032240588 0 LWPOLYLINE 5 5A1 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 1.912368040836661 20 5.266185587822739 10 2.211867657523676 20 5.260206396466191 10 2.205877659595621 20 5.200414455604335 10 1.924347980749644 20 5.188456072891241 0 LWPOLYLINE 5 5A2 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 2 70 0 43 0.0 10 1.912368040836661 20 5.260206396466191 10 2.032167887511469 20 5.284123161892381 0 LWPOLYLINE 5 5A3 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1.874631104238737 20 4.696387597964982 10 1.880621102166792 20 4.642574875756057 10 1.928541029648094 20 4.624637301686416 10 2.1082407996603 20 4.672470832538792 10 2.05433087425095 20 4.738241964757197 0 LWPOLYLINE 5 5A4 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 10 70 0 43 0.0 10 1.624848420005754 20 5.206393646960883 10 1.624848420005754 20 5.224331248326908 10 1.702718281184189 20 5.272164779179288 10 1.810538132002889 20 5.314019118675116 10 1.870438055340294 20 5.308039927318571 10 1.912368040836661 20 5.248248013753098 10 1.906378042908606 20 5.200414455604335 10 1.756628206593539 20 5.176497690178148 10 1.636828359918737 20 5.116705776612676 10 1.642818357846785 20 5.152580924751958 0 LWPOLYLINE 5 5A5 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 2.114230797588355 20 4.756179538826838 10 2.138190789300558 20 4.714325199331007 10 2.246010640119266 20 4.7262835820441 10 2.299920565528616 20 4.75020034747029 10 2.323880557240819 20 4.821950643748856 10 2.192100714709908 20 4.792054686966121 0 ARC 5 5A6 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 2.674436933914825 20 3.115929971381353 30 0.0 40 0.644924277858129 100 AcDbArc 50 359.5258836847897 51 83.95495783028088 0 LWPOLYLINE 5 5A7 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 8 70 0 43 0.0 10 3.080416517944456 20 5.660812244651236 10 3.080416517944456 20 5.696687392790519 10 3.212196304532241 20 5.744520923642895 10 3.43981600202575 20 5.864104750773837 10 3.505705923291202 20 5.762458497712536 10 3.272096227869646 20 5.61297871379886 10 3.158286379122891 20 5.577103565659577 10 3.104376453713541 20 5.571124374303028 0 LWPOLYLINE 5 5A8 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2.67908699242367 20 5.553186800233387 10 2.667107052510687 20 5.630916287868501 10 2.912696687845226 20 5.672770627364329 10 2.906706745860297 20 5.583082757016121 0 LWPOLYLINE 5 5A9 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 0 43 0.0 10 2.631167064942374 20 5.475457285301889 10 2.631167064942374 20 5.535249198867361 10 2.81086683495458 20 5.571124374303028 10 2.91868668577328 20 5.571124374303028 10 2.930666681629389 20 5.541228390223906 10 2.894726750004195 20 5.499374050728079 10 2.715026979991982 20 5.385769414953681 0 LWPOLYLINE 5 5AA 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 2.91868668577328 20 5.58906194837267 10 2.936656679557437 20 5.678749818720877 10 3.110366451641596 20 5.642874670581594 10 3.086406459929385 20 5.547207581580455 10 2.996556602894841 20 5.577103565659577 10 2.91868668577328 20 5.583082757016121 0 LWPOLYLINE 5 5AB 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 3.998682254876136 20 5.379790223597137 10 3.848932418561069 20 5.379790223597137 10 3.830962480720032 20 5.319998310031664 10 3.944772329466786 20 5.278143970535833 0 LWPOLYLINE 5 5AC 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 3.836952478648086 20 5.397727797666775 10 3.771062557382627 20 5.427623754449513 10 3.645272712779771 20 5.385769414953681 10 3.663242650620809 20 5.331956692744757 10 3.812992486935876 20 5.337935884101305 0 LWPOLYLINE 5 5AD 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 3.759082561526525 20 5.445561328519154 10 3.549432801874054 20 5.361852649527495 10 3.495522876464704 20 5.361852649527495 10 3.483542936551721 20 5.385769414953681 10 3.501512874392759 20 5.421644563092964 10 3.627302718995615 20 5.51731162479772 0 LWPOLYLINE 5 5AE 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 3.747102565670424 20 5.559165991589935 10 3.747102565670424 20 5.61297871379886 10 3.956752269379769 20 5.666791436007784 10 3.98071226109198 20 5.51731162479772 10 3.860912414417171 20 5.547207581580455 0 LINE 5 5AF 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 0.7306085198411623 20 9.759736442050808 30 0.0 11 0.7008544430149968 21 9.76430574779944 31 0.0 0 LINE 5 5B0 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 0.7397636117964268 20 9.750597857849932 30 0.0 11 0.7008544430149968 21 9.76430574779944 31 0.0 0 LINE 5 5B1 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 0.7351860658187946 20 9.695766298051886 30 0.0 11 0.7397636117964268 21 9.750597857849932 31 0.0 0 LINE 5 5B2 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 0.7008544430149968 20 9.695766298051886 30 0.0 11 0.7351860658187946 21 9.695766298051886 31 0.0 0 LINE 5 5B3 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2.012728715450933 20 9.161576934425305 30 0.0 11 1.940772773391547 21 9.180589750684106 31 0.0 0 LINE 5 5B4 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2.224477194036078 20 8.931941253901536 30 0.0 11 2.162498411574397 21 9.01532726829081 31 0.0 0 LINE 5 5B5 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2.123428070657787 20 9.106327057519344 30 0.0 11 2.012728715450933 21 9.161576934425305 31 0.0 0 LINE 5 5B6 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2.162498411574397 20 9.01532726829081 30 0.0 11 2.123428070657787 21 9.106327057519344 31 0.0 0 ARC 5 5B7 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 2.834058196851973 20 8.595358581995382 30 0.0 40 0.0870668617775043 100 AcDbArc 50 303.1347159301218 51 111.705173889276 0 ARC 5 5B8 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 2.669465348791857 20 8.671185517706293 30 0.0 40 0.2507245744454387 100 AcDbArc 50 359.2749756003573 51 46.15974913490235 0 ARC 5 5B9 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 2.960186937900965 20 8.445447128186657 30 0.0 40 0.1690918998844882 100 AcDbArc 50 0.0343938168921199 51 116.627775832417 0 ARC 5 5BA 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 3.103925681443746 20 8.63420123618965 30 0.0 40 0.0739948223116368 100 AcDbArc 50 69.96258017461937 51 147.9147161019589 0 ARC 5 5BB 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 3.006163032901702 20 8.586351168028642 30 0.0 40 0.1148638137319528 100 AcDbArc 50 359.6346569511752 51 123.8501098004481 0 ARC 5 5BC 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 3.149785356197182 20 8.484536836949041 30 0.0 40 0.1337697959754991 100 AcDbArc 50 56.90497799753524 51 142.2714346953103 0 ARC 5 5BD 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 2.984981170581813 20 8.732711830786803 30 0.0 40 0.0695463694806006 100 AcDbArc 50 14.74032247078687 51 112.2122633983608 0 ARC 5 5BE 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 2.829778913901328 20 8.691585879666652 30 0.0 40 0.1871149875798203 100 AcDbArc 50 356.1428484584444 51 68.5652712917566 0 ARC 5 5BF 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 2.898814902765708 20 8.598294955196163 30 0.0 40 0.1132077202039067 100 AcDbArc 50 352.1700463376367 51 101.5506161184251 0 SPLINE 5 5C0 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 11 71 3 72 41 73 37 74 35 42 0.0000000001 43 0.0000000001 44 0.0000000001 12 0.7177597139498585 22 -0.6962908824841938 32 0.0 13 0.7177597139498585 23 -0.6962908824841938 33 0.0 40 0.0 40 0.0 40 0.0 40 0.0 40 0.0666628537566311 40 0.1173492218655758 40 0.1897116349972885 40 0.2600032986060816 40 0.3698046941916167 40 0.4414512405274515 40 0.5413562602301081 40 0.643662632782268 40 0.7291271056036565 40 0.7957900094153791 40 0.868152422547085 40 1.058904831775334 40 1.248670741512336 40 1.41403640691104 40 1.609325212386042 40 1.775941701051475 40 1.883336908595974 40 1.953506894426627 40 2.025153394189143 40 2.136291841983123 40 2.370258520974384 40 2.541859111261771 40 2.631877615956828 40 2.779542140429873 40 2.934049979449919 40 3.053343149266562 40 3.158935911233786 40 3.307880365722583 40 3.447409034094718 40 3.523097043229137 40 3.579281728394063 40 3.648869378153618 40 3.72898153677372 40 3.782502663424517 40 3.782502663424517 40 3.782502663424517 40 3.782502663424517 10 5.056320211117224 20 1.535126124971121 30 0.0 10 5.072269514731704 20 1.519653879214081 30 0.0 10 5.110680567106513 20 1.496885479985827 30 0.0 10 5.173061700169059 20 1.518043283903592 30 0.0 10 5.234211039075399 20 1.536401143837887 30 0.0 10 5.316766742672724 20 1.55025055169964 30 0.0 10 5.408273406513315 20 1.536223291862975 30 0.0 10 5.476911470241745 20 1.608939170808465 30 0.0 10 5.578762599180588 20 1.615921199752094 30 0.0 10 5.658872026065738 20 1.557562101505765 30 0.0 10 5.725913999922248 20 1.509721493049264 30 0.0 10 5.791830214633077 20 1.463632011505681 30 0.0 10 5.90728147388735 20 1.507192421497662 30 0.0 10 5.968308936826782 20 1.655289586900227 30 0.0 10 6.112659327458924 20 1.769113983403433 30 0.0 10 6.263127780837923 20 1.878893208106777 30 0.0 10 6.436790150108308 20 1.912190808377882 30 0.0 10 6.599554672792343 20 1.933834708689119 30 0.0 10 6.674888897593136 20 2.035509977975434 30 0.0 10 6.667056845843774 20 2.126872441330251 30 0.0 10 6.58431102919186 20 2.177804031846629 30 0.0 10 6.447404731461086 20 2.119752204254941 30 0.0 10 6.278868980540259 20 2.099431913611437 30 0.0 10 6.119668295054468 20 2.057341079921326 30 0.0 10 5.976312650395332 20 2.061277772922342 30 0.0 10 5.887498029189968 20 1.95470624073376 30 0.0 10 5.805631831014013 20 1.812924953220243 30 0.0 10 5.658959925305431 20 1.866599194743673 30 0.0 10 5.56798343793775 20 1.767113949020972 30 0.0 10 5.514046917711397 20 1.613947437845002 30 0.0 10 5.374091873652277 20 1.68036359573664 30 0.0 10 5.284777731988334 20 1.64621583429398 30 0.0 10 5.249115813460148 20 1.577256029901473 30 0.0 10 5.161095708636621 20 1.611955040343511 30 0.0 10 5.137152736751391 20 1.54872676365756 30 0.0 10 5.043515108265507 20 1.547548215806865 30 0.0 10 5.056320211117224 20 1.535126124971121 30 0.0 11 5.056320211117224 21 1.535126124971121 31 0.0 11 5.115966768053979 21 1.505356605046063 31 0.0 11 5.165672288111068 21 1.51527976925562 31 0.0 11 5.235259937870623 21 1.535126124971121 31 0.0 11 5.304847643573296 21 1.545049289180678 31 0.0 11 5.41419972056714 21 1.554972480686622 31 0.0 11 5.473846333447021 21 1.59466516482124 31 0.0 11 5.573257317618079 21 1.604588329030796 31 0.0 11 5.662727208966337 21 1.554972480686622 31 0.0 11 5.732314858725892 21 1.505356605046063 31 0.0 11 5.791961471605773 21 1.475587085121002 31 0.0 11 5.861549121365321 21 1.495433440836503 31 0.0 11 5.980842347125083 21 1.644281040461798 31 0.0 11 6.120017702587311 21 1.773282284371592 31 0.0 11 6.25919305804954 21 1.862590871443153 31 0.0 11 6.448073933568849 21 1.912206719787327 31 0.0 11 6.607131530619788 21 1.961822595427889 31 0.0 11 6.666778087556544 21 2.051131155203066 31 0.0 11 6.656836994733751 21 2.120593386559125 31 0.0 11 6.597190437796996 21 2.160286070693743 31 0.0 11 6.487838360803145 21 2.140439714978242 31 0.0 11 6.25919305804954 21 2.090823866634067 31 0.0 11 6.090194424118934 21 2.061054346709006 31 0.0 11 6.000724532770668 21 2.051131155203066 31 0.0 11 5.891372455776824 21 1.951899431218329 31 0.0 11 5.782020378782981 21 1.842744515727652 31 0.0 11 5.662727208966337 21 1.842744515727652 31 0.0 11 5.583198410440871 21 1.773282284371592 31 0.0 11 5.493728519092613 21 1.654204204671355 31 0.0 11 5.354553163630384 21 1.664127396177299 31 0.0 11 5.284965457927711 21 1.634357848955854 31 0.0 11 5.245201030693415 21 1.59466516482124 31 0.0 11 5.17561338093386 21 1.59466516482124 31 0.0 11 5.106025675231187 21 1.554972480686622 31 0.0 11 5.056320211117224 21 1.535126124971121 31 0.0 0 POINT 5 5C1 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 4.384302168467037 20 1.386278525345826 30 0.0 0 POINT 5 5C2 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 4.443948725403799 20 1.277123609855149 30 0.0 0 POINT 5 5C3 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 4.453889818226592 20 1.455740729405501 30 0.0 0 ELLIPSE 5 5C4 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbEllipse 10 6.880511723104401 20 2.135478146521656 30 0.0 11 0.4324377895355519 21 -0.1339628396627646 31 0.0 210 0.0 220 0.0 230 1.0 40 0.0994212947325383 41 0.0 42 6.283185307179586 0 POINT 5 5C5 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 7.621123557975906 20 2.090823866634067 30 0.0 0 POINT 5 5C6 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 7.65094683644429 20 2.051131155203066 30 0.0 0 POINT 5 5C7 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 7.670829022089876 20 2.100747030843624 30 0.0 0 LWPOLYLINE 5 5C8 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 61 70 0 43 0.0 10 7.58249130764959 20 6.961030392845128 10 7.556543880576533 20 6.98323095262522 10 7.489821861310822 20 6.942529940009908 10 7.497235443870621 20 6.916629273284939 10 7.489821861310822 20 6.938829833065032 10 7.426806633325007 20 6.912929166340063 10 7.415686315428423 20 6.883328419966606 10 7.430513424604903 20 6.864827939835002 10 7.415686315428423 20 6.879628340318117 10 7.341550769546032 20 6.831527113813056 10 7.37861857045879 20 6.813026633681452 10 7.334137186986232 20 6.82412692721969 10 7.28224233284012 20 6.794526153549849 10 7.289655859456793 20 6.779725780363119 10 7.263708432383737 20 6.794526153549849 10 7.219227104854304 20 6.768625514121264 10 7.2229338961342 20 6.746424954341172 10 7.204399995677825 20 6.768625514121264 10 7.141384767692009 20 6.742724847396296 10 7.145091558971905 20 6.7020238074846 10 7.130264449795426 20 6.742724847396296 10 7.093196648882674 20 6.746424954341172 10 7.074662804369417 20 6.727924474209569 10 7.074662804369417 20 6.698323727836111 10 7.059835695192937 20 6.713124101022838 10 6.989406884647323 20 6.7020238074846 10 7.011647576383602 20 6.683523354649381 10 6.97087298419094 20 6.683523354649381 10 6.948632348397786 20 6.642822314737681 10 6.974579775470843 20 6.616921648012716 10 6.996820467207122 20 6.631722021199443 10 6.97087298419094 20 6.598421167881109 10 6.993113675927219 20 6.54661986172756 10 7.022767894280178 20 6.572520528452528 10 7.011647576383602 20 6.554020048320925 10 7.052422112633138 20 6.517019115354102 10 7.100610231442473 20 6.513319008409226 10 7.11173054933905 20 6.531819488540829 10 7.100610231442473 20 6.498518635222499 10 7.167332194765066 20 6.491118448629134 10 7.171038986044962 20 6.509618928760737 10 7.171038986044962 20 6.476318075442403 10 7.263708432383737 20 6.47261796849753 10 7.25258811448716 20 6.502218742167372 10 7.271122014943536 20 6.47261796849753 10 7.304482968633273 20 6.468917888849041 10 7.319310077809753 20 6.505918821815861 10 7.319310077809753 20 6.47261796849753 10 7.367498196619088 20 6.491118448629134 10 7.404565997531847 20 6.524419301947467 10 7.39344567963527 20 6.554020048320925 10 7.411979524148527 20 6.524419301947467 10 7.471287960854439 20 6.509618928760737 10 7.478701543414238 20 6.550319968672436 10 7.489821861310822 20 6.520719195002591 10 7.534303188840254 20 6.520719195002591 10 7.563957407193214 20 6.568820421507652 10 7.560250671856437 20 6.539219675134194 10 7.634386217738828 20 6.542919782079071 10 7.656626853531989 20 6.583620794694382 10 7.615852317282453 20 6.591020981287748 0 LWPOLYLINE 5 5C9 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 17 70 0 43 0.0 10 7.571789500250524 20 7.729277336291652 10 7.58027920470981 20 7.771649379035039 10 7.639707191867962 20 7.771649379035039 10 7.639707191867962 20 7.712328519194294 10 7.648196952270374 20 7.754700561937681 10 7.716114643887813 20 7.729277336291652 10 7.707624939428527 20 7.686905293548257 10 7.682155770107534 20 7.695379702096936 10 7.724604404290225 20 7.678430884999585 10 7.716114643887813 20 7.627584433707511 10 7.682155770107534 20 7.627584433707511 10 7.716114643887813 20 7.619110025158839 10 7.690645530509947 20 7.559789165318093 10 7.639707191867962 20 7.559789165318093 10 7.673666065648241 20 7.551314756769414 10 7.665176361188954 20 7.491993896928669 10 7.631217487408676 20 7.475045079831311 0 SPLINE 5 5CA 330 54C 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 21 73 17 74 15 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.0568158131257976 40 0.1761460604471479 40 0.3238951572437394 40 0.5353798609344049 40 0.711153476215938 40 0.9557707311209401 40 1.183724201017602 40 1.441716846205754 40 1.782246423842391 40 2.094866213027545 40 2.410759554220579 40 2.656594642457007 40 2.931039128166487 40 3.180240693103635 40 3.180240693103635 40 3.180240693103635 40 3.180240693103635 10 8.100029634885203 20 7.641086863763298 30 0.0 10 8.082410879310232 20 7.648680734023541 30 0.0 10 8.02778745294756 20 7.67222400932485 30 0.0 10 7.908724045805874 20 7.629900777184093 30 0.0 10 7.850740037293311 20 7.47343426990697 30 0.0 10 7.75050289445681 20 7.327687431081923 30 0.0 10 7.680251044473597 20 7.124214964428587 30 0.0 10 7.507884698373159 20 6.98061988389259 30 0.0 10 7.299673518535414 20 6.856009478072633 30 0.0 10 7.040344896882141 20 6.758614494274088 30 0.0 10 6.7488373430647 20 6.673879518159539 30 0.0 10 6.447491819074406 20 6.55753149130579 30 0.0 10 6.172669989719941 20 6.457774532573425 30 0.0 10 5.899683467577952 20 6.402993465851279 30 0.0 10 5.647588352345987 20 6.342819660105898 30 0.0 10 5.497922039085803 20 6.250987623589518 30 0.0 10 5.42669629521405 20 6.207285036349553 30 0.0 11 8.100029634885203 21 7.641086863763298 31 0.0 11 8.046119709475853 21 7.65902443783294 31 0.0 11 7.932309860729098 21 7.623149289693657 31 0.0 11 7.854439943607538 21 7.497586271206166 31 0.0 11 7.752610090716892 21 7.31223131185682 31 0.0 11 7.676537234511179 21 7.153772218151708 31 0.0 11 7.501030401511179 21 6.983375759950344 31 0.0 11 7.305157698630658 21 6.86677100574106 31 0.0 11 7.065558005281047 21 6.771103916739921 31 0.0 11 6.741499469815082 21 6.666478590756963 31 0.0 11 6.447989851056121 21 6.558853146339114 31 0.0 11 6.148490234369106 21 6.45841120980646 31 0.0 11 5.908890541019495 21 6.403394143772501 31 0.0 11 5.645330911900792 21 6.326868999962425 31 0.0 11 5.42669629521405 21 6.207285036349553 31 0.0 0 SPLINE 5 5CB 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 11 71 3 72 43 73 39 74 37 42 0.0000000001 43 0.0000000001 44 0.0000000001 12 -0.9655973172373407 22 0.2600419599680991 32 0.0 13 -0.9655973172373407 23 0.2600419599680991 33 0.0 40 0.0 40 0.0 40 0.0 40 0.0 40 0.0955810268462984 40 0.2007266352671292 40 0.281373529220215 40 0.4423263982156377 40 0.6192571046428441 40 0.8308637572908512 40 1.024890207956564 40 1.258850697456018 40 1.368320899448095 40 1.42080782542015 40 1.469455563888242 40 1.554164668874028 40 1.663855481301902 40 1.796981714155379 40 1.935730124635681 40 2.067018062208847 40 2.139140414109626 40 2.299729545395481 40 2.427240709915579 40 2.564226293424463 40 2.634758610469639 40 2.683104898598055 40 2.745981764654903 40 2.803191897640242 40 2.843480460755009 40 2.874143267755578 40 2.912343661887084 40 2.976010985655878 40 3.05088753623982 40 3.144780956407872 40 3.213091198406305 40 3.264025032626222 40 3.34392410172981 40 3.418146276642975 40 3.50284087154476 40 3.62269585495141 40 3.62269585495141 40 3.62269585495141 40 3.62269585495141 10 8.363669318611833 20 7.501901993533422 30 0.0 10 8.332905057577974 20 7.510187019385714 30 0.0 10 8.27010635676266 20 7.531441394056145 30 0.0 10 8.1779087800553 20 7.560839343707502 30 0.0 10 8.063665831102598 20 7.53725577551019 30 0.0 10 7.922823899666564 20 7.493739113086991 30 0.0 10 7.834386980938729 20 7.32001178301631 30 0.0 10 7.774946310286829 20 7.136922972282268 30 0.0 10 7.628684934838439 20 6.971734329546775 30 0.0 10 7.480689209298309 20 6.878916137233425 30 0.0 10 7.35528868966363 20 6.813598087517154 30 0.0 10 7.337063976955423 20 6.739403250558499 30 0.0 10 7.36284448409593 20 6.681119698114402 30 0.0 10 7.42578797187561 20 6.620441330163979 30 0.0 10 7.540677067438742 20 6.627056909057246 30 0.0 10 7.663770342842265 20 6.580691367274981 30 0.0 10 7.795488436604824 20 6.627050336226963 30 0.0 10 7.912872132572829 20 6.626334294981687 30 0.0 10 8.025233041238985 20 6.572557940847923 30 0.0 10 8.148760185328207 20 6.607508596900059 30 0.0 10 8.286291957397786 20 6.636682754000364 30 0.0 10 8.397975877761947 20 6.631956521772588 30 0.0 10 8.484879381426285 20 6.644248787105656 30 0.0 10 8.53234972090463 20 6.689472133140696 30 0.0 10 8.534608426923906 20 6.747530089093718 30 0.0 10 8.50931465254029 20 6.807711112521948 30 0.0 10 8.552865957445986 20 6.830429360435985 30 0.0 10 8.569559946804204 20 6.867629482732999 30 0.0 10 8.53993929305343 20 6.905800447800372 30 0.0 10 8.506949606433131 20 6.957067669036185 30 0.0 10 8.531911419382982 20 7.037230757130915 30 0.0 10 8.55153005681428 20 7.110078773568885 30 0.0 10 8.562166475117143 20 7.185622228739013 30 0.0 10 8.51525141062507 20 7.24110336843601 30 0.0 10 8.539078636722702 20 7.311880788554228 30 0.0 10 8.538088124682683 20 7.395513867808237 30 0.0 10 8.463905099361799 20 7.462622372459126 30 0.0 10 8.402246535423495 20 7.491512885267752 30 0.0 10 8.363669318611833 20 7.501901993533422 30 0.0 11 8.363669318611833 21 7.501901993533422 31 0.0 11 8.272424519824134 21 7.530364589816706 31 0.0 11 8.169774037273285 21 7.553134688680444 31 0.0 11 8.089934810362485 21 7.541749639248571 31 0.0 11 7.941661928417786 21 7.479131921966072 31 0.0 11 7.844714287748509 21 7.331126415833729 31 0.0 11 7.759172274899256 21 7.13758071197391 31 0.0 11 7.633710592651482 21 6.989575205841561 31 0.0 11 7.439815311312933 21 6.858647246560629 31 0.0 11 7.354273298463681 21 6.790337004562196 31 0.0 11 7.342867670643663 21 6.739104309415179 31 0.0 11 7.359976084402134 21 6.693564166280481 31 0.0 11 7.422706897554462 21 6.636638973713914 31 0.0 11 7.531060166043758 21 6.619561399566116 31 0.0 11 7.662224634229986 21 6.596791327998765 31 0.0 11 7.799091888354659 21 6.619561399566116 31 0.0 11 7.93025635654088 21 6.613868874850179 31 0.0 11 7.998689955631661 21 6.591098803282832 31 0.0 11 8.158368465396385 21 6.608176350134247 31 0.0 11 8.283830091701034 21 6.630946448997981 31 0.0 11 8.420697345825708 21 6.636638973713914 31 0.0 11 8.489131000859607 21 6.653716520565332 31 0.0 11 8.523347828376557 21 6.687871641564548 31 0.0 11 8.529050614315011 21 6.750489358847048 31 0.0 11 8.523347828376557 21 6.807414551413611 31 0.0 11 8.551861814011935 21 6.835877174993282 31 0.0 11 8.56326744183196 21 6.864339771276565 31 0.0 11 8.546159028073482 21 6.898494892275781 31 0.0 11 8.517644986494985 21 6.955420084842344 31 0.0 11 8.529050614315011 21 7.029422851556709 31 0.0 11 8.551861814011935 21 7.120503165122492 31 0.0 11 8.551861814011935 21 7.188813407120925 31 0.0 11 8.529050614315011 21 7.234353550255626 31 0.0 11 8.534753400253457 21 7.314048841685924 31 0.0 11 8.529050614315011 21 7.388051608400289 31 0.0 11 8.472022587101136 21 7.450669325682788 31 0.0 11 8.363669318611833 21 7.501901993533422 31 0.0 0 SPLINE 5 5CC 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 19 73 15 74 13 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.2454456073597434 40 0.54957775962326 40 0.8039546770860734 40 0.8760728252817163 40 0.9092933588263031 40 0.9421624153003508 40 1.072655888315084 40 1.197050135656931 40 1.307385070858946 40 1.458266264477036 40 1.588943625129989 40 1.625737168130425 40 1.625737168130425 40 1.625737168130425 40 1.625737168130425 10 7.274667594515911 20 2.934874012244229 30 0.0 10 7.317997769092578 20 3.004618244354321 30 0.0 10 7.41501845128807 20 3.160782696601086 30 0.0 10 7.540783158181132 20 3.391606995783249 30 0.0 10 7.656545039530424 20 3.583186165732519 30 0.0 10 7.747377686040938 20 3.647273000473775 30 0.0 10 7.798500221335031 20 3.673164994662184 30 0.0 10 7.827799159600317 20 3.598586212981577 30 0.0 10 7.868441575679678 20 3.52472567147796 30 0.0 10 7.912700772747609 20 3.402710819854895 30 0.0 10 8.034820150140859 20 3.336128368766546 30 0.0 10 8.16862813430912 20 3.359768520404621 30 0.0 10 8.270287034914888 20 3.387286751116724 30 0.0 10 8.325832520048278 20 3.393600789389414 30 0.0 10 8.338035924646639 20 3.394987990590486 30 0.0 11 7.274667594515911 21 2.934874012244229 31 0.0 11 7.402454340077376 21 3.14443091103547 31 0.0 11 7.553060188270471 21 3.408654764104184 31 0.0 11 7.703665940973742 21 3.613656040662561 31 0.0 11 7.762995569620009 21 3.654656314611216 31 0.0 11 7.794942256010379 21 3.663767465892057 31 0.0 11 7.813197519017698 21 3.636433965457101 31 0.0 11 7.867963212549874 21 3.517988765844002 31 0.0 11 7.927292841196127 21 3.408654764104184 31 0.0 11 8.023132900367237 21 3.353987763234272 31 0.0 11 8.173738748560317 21 3.363098914515113 31 0.0 11 8.301525494121797 21 3.390432414950062 31 0.0 11 8.338035924646639 21 3.394987990590486 31 0.0 0 LWPOLYLINE 5 5CD 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 5.42669629521405 20 6.207285036349553 10 5.396746305573785 20 6.207285036349553 10 5.348826378092489 20 6.314910508063785 10 5.378776367732754 20 6.344806464846524 0 LWPOLYLINE 5 5CE 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 5.396746305573785 20 6.19532665363646 10 5.324866442323404 20 6.165430696853722 10 5.294916452683139 20 6.261097758558477 10 5.354816376020544 20 6.326868890776882 0 LWPOLYLINE 5 5CF 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 5.043336763477427 20 6.027909295653138 10 4.989426838068077 20 6.015950885643661 10 4.971456900227039 20 6.081722017862063 10 5.019376827708335 20 6.117597166001345 0 SPLINE 5 5D0 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 11 71 3 72 18 73 14 74 12 42 0.0000000001 43 0.0000000001 44 0.0000000001 12 -0.9760540619589198 22 -0.2175280858498356 32 0.0 13 -0.9760540619589198 23 -0.2175280858498356 33 0.0 40 0.0 40 0.0 40 0.0 40 0.0 40 0.1441229817145547 40 0.2520626859480677 40 0.4095281927979333 40 0.6387733800067848 40 0.7293430975610575 40 0.8582922238437202 40 0.9867745391223451 40 1.107461514557709 40 1.287233851471192 40 1.514795334919147 40 1.642467663022996 40 1.642467663022996 40 1.642467663022996 40 1.642467663022996 10 4.555607337327771 20 5.52744603573473 30 0.0 10 4.508716730086397 20 5.516995770288284 30 0.0 10 4.411062494043918 20 5.463372741166192 30 0.0 10 4.460794377526979 20 5.312151533766161 30 0.0 10 4.581739319097758 20 5.202757356774311 30 0.0 10 4.713483192609199 20 5.111267381419501 30 0.0 10 4.851823207513696 20 5.049365911750513 30 0.0 10 4.976696091068451 20 5.06754824890107 30 0.0 10 5.065699513976888 20 5.183773415065487 30 0.0 10 5.009976582380329 20 5.332457831278668 30 0.0 10 4.874644982529197 20 5.441559854442536 30 0.0 10 4.719983592506348 20 5.555530533956067 30 0.0 10 4.597145702142942 20 5.536703474784204 30 0.0 10 4.555607337327771 20 5.52744603573473 30 0.0 11 4.555607337327771 21 5.52744603573473 31 0.0 11 4.438977172016201 21 5.442777042604483 31 0.0 11 4.460182692218474 21 5.336940821663969 31 0.0 11 4.566210069457348 21 5.22052097317012 31 0.0 11 4.757059415619067 21 5.093517497122945 31 0.0 11 4.841881328598795 21 5.061766641759344 31 0.0 11 4.968890173835355 21 5.084051847630902 31 0.0 11 5.043333406890091 21 5.188770090510136 31 0.0 11 5.011525154558242 21 5.30518993900398 31 0.0 11 4.884292257117095 21 5.432193415051155 31 0.0 11 4.682840234768917 21 5.538029663288057 31 0.0 11 4.555607337327771 21 5.52744603573473 31 0.0 0 LINE 5 5D1 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 4.514323941816924 20 5.513675723195715 30 0.0 11 4.619223786048344 21 5.36869167702757 31 0.0 0 LINE 5 5D2 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 4.767662147748644 20 5.231104600723451 30 0.0 11 4.992704454527144 21 5.101506588925383 31 0.0 0 LINE 5 5D3 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 4.619223786048344 20 5.36869167702757 30 0.0 11 4.767662147748644 21 5.231104600723451 31 0.0 0 LWPOLYLINE 5 5D4 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 4.695318292242369 20 5.858125559417292 10 4.611458377192754 20 5.84018798534765 10 4.581508443495614 20 5.965751031131524 10 4.647398364761066 20 5.971730222488073 0 LWPOLYLINE 5 5D5 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 4.371858683843143 20 5.917917500279148 10 4.305968762577684 20 5.894000734852959 10 4.341908750146004 20 5.792354454495271 10 4.401808673483401 20 5.816271219921461 0 LWPOLYLINE 5 5D6 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 4.455718598892758 20 5.953792648418431 10 4.377848681771197 20 5.941834265705335 10 4.419778611324439 20 5.822250411278009 10 4.473688592676914 20 5.846167176704195 0 LWPOLYLINE 5 5D7 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 4.569528447639505 20 5.953792648418431 10 4.485668532589897 20 5.953792648418431 10 4.485668532589897 20 5.84018798534765 10 4.593488383408597 20 5.852146368060743 0 LWPOLYLINE 5 5D8 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 4.869626991393268 20 6.027909295653138 10 4.803737070127816 20 6.015950885643661 10 4.785767132286778 20 6.003992502930564 10 4.827697061840019 20 5.896367058512716 10 4.863636993465213 20 5.896367058512716 10 4.887596985177424 20 5.926263015295454 0 LWPOLYLINE 5 5D9 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 4.785168149276906 20 5.995646987914259 10 4.731258223867556 20 5.983688605201166 10 4.761208213507821 20 5.888021516200026 10 4.821108136845225 20 5.894000734852959 0 LWPOLYLINE 5 5DA 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 4.749228217651719 20 5.882042324843478 10 4.701308290170416 20 5.870083942130385 10 4.665368302602104 20 5.977709413844618 10 4.731258223867556 20 5.983688605201166 10 4.73724822179561 20 5.953792648418431 0 LWPOLYLINE 5 5DB 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 4.95947690437093 20 6.063784443792421 10 4.923536916802618 20 6.057805252435876 10 4.947496908514828 20 5.956158972078188 10 4.995416835996124 20 5.962138163434737 0 LWPOLYLINE 5 5DC 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 4.965466902298985 20 5.932242206651999 10 4.887596985177424 20 5.932242206651999 10 4.863636993465213 20 6.033888487009686 10 4.887596985177424 20 6.063784443792421 10 4.917546918874563 20 6.057805252435876 0 LWPOLYLINE 5 5DD 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 5.188080383229261 20 5.238345698916905 10 5.265990949440535 20 5.146435607593204 10 5.350812862420262 20 4.987681276182428 10 5.467442971788706 20 4.839510545028595 10 5.276593681570112 20 4.924179538158842 10 5.067412180712565 20 5.057055014956325 0 LWPOLYLINE 5 5DE 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 5.312886446467295 20 6.135534740070987 10 5.258976521057945 20 6.117597166001345 10 5.217046535561578 20 6.225222610419194 10 5.288926454755085 20 6.255118567201929 0 LWPOLYLINE 5 5DF 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 5.258976521057945 20 6.105638783288252 10 5.169126608080283 20 6.087701209218611 10 5.151156670239245 20 6.19532665363646 10 5.199076597720541 20 6.207285036349553 0 LWPOLYLINE 5 5E0 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 5.163136610152228 20 6.075742826505518 10 5.121206680598987 20 6.063784443792421 10 5.097246688886777 20 6.153472314140628 10 5.139176674383143 20 6.177389079566818 0 LWPOLYLINE 5 5E1 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 5.121206680598987 20 6.051826061079328 10 5.049326761405474 20 6.051826061079328 10 5.043336763477427 20 6.141513931427535 10 5.085266748973793 20 6.141513931427535 0 LINE 5 5E2 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 7.260491031537227 20 2.871701284397683 30 0.0 11 7.206197336309287 21 2.763309712327757 31 0.0 0 LINE 5 5E3 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 7.086751217996429 20 2.936736260395299 30 0.0 11 7.04331630656857 21 2.839183810047067 31 0.0 0 LWPOLYLINE 5 5E4 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 6.727355705876817 20 5.935144849694236 10 6.727355705876817 20 5.959831564266469 10 6.77681832089712 20 5.968060469123884 10 6.809793378929612 20 5.926915944836824 0 LWPOLYLINE 5 5E5 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 6.64491797688089 20 5.959831564266469 10 6.702624370395099 20 5.968060469123884 10 6.694380591901193 20 6.009204993410943 10 6.661405533868702 20 6.009204993410943 0 LWPOLYLINE 5 5E6 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 6.587211639309806 20 5.935144849694236 10 6.562480303828095 20 5.968060469123884 10 6.595455361860587 20 5.976289373981295 10 6.611942918848399 20 5.943373754551647 0 LWPOLYLINE 5 5E7 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 7.139544183027048 20 5.885771420549765 10 7.180763019553452 20 5.852855801120117 10 7.189006798047358 20 5.795253467118236 10 7.147787905577835 20 5.787024562260825 0 LWPOLYLINE 5 5E8 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 7.048862675537229 20 5.836397991405295 10 7.040618952986442 20 5.869313610834939 10 6.958181223990521 20 5.877542515692354 10 6.974668780978333 20 5.852855801120117 10 7.024131395998637 20 5.836397991405295 0 LWPOLYLINE 5 5E9 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 6.908718608970218 20 5.935144849694236 10 6.974668780978333 20 5.984518278838706 10 6.991156337966138 20 5.943373754551647 10 6.966425002484427 20 5.926915944836824 0 LWPOLYLINE 5 5EA 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 6.84276843696211 20 5.910458135121999 10 6.875743550937727 20 5.910458135121999 10 6.875743550937727 20 5.877542515692354 10 6.851012215456009 20 5.869313610834939 0 LWPOLYLINE 5 5EB 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 6.809793378929612 20 5.984518278838706 10 6.818037157423518 20 5.951602659409058 10 6.875743550937727 20 5.959831564266469 10 6.875743550937727 20 5.992747183696117 10 6.851012215456009 20 5.984518278838706 0 LWPOLYLINE 5 5EC 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 7.114812847545337 20 5.885771420549765 10 7.090081568006745 20 5.910458135121999 10 7.048862675537229 20 5.910458135121999 10 7.057106454031128 20 5.877542515692354 0 LWPOLYLINE 5 5ED 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 7.123056626039243 20 5.959831564266469 10 7.172519241059546 20 5.968060469123884 10 7.197250520598139 20 5.935144849694236 10 7.172519241059546 20 5.910458135121999 0 LWPOLYLINE 5 5EE 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 7.07359401101894 20 5.992747183696117 10 7.114812847545337 20 5.943373754551647 10 7.07359401101894 20 5.926915944836824 0 LWPOLYLINE 5 5EF 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 2 70 0 43 0.0 10 7.007643839010825 20 5.951602659409058 10 7.032375174492543 20 5.959831564266469 0 LWPOLYLINE 5 5F0 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 7.296175750638745 20 5.811711276833058 10 7.329150864614362 20 5.811711276833058 10 7.329150864614362 20 5.770566752545999 10 7.304419529132651 20 5.770566752545999 10 7.31266330762655 20 5.819940181690469 0 LWPOLYLINE 5 5F1 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 7.337394643108268 20 5.803482371975647 10 7.353882144152954 20 5.844626896262706 10 7.378613479634665 20 5.852855801120117 10 7.403344759173258 20 5.811711276833058 10 7.362125922646853 20 5.795253467118236 0 LWPOLYLINE 5 5F2 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 2 70 0 43 0.0 10 7.329150864614362 20 5.721193323401529 10 7.31266330762655 20 5.737651133116351 0 LWPOLYLINE 5 5F3 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 7.370369701140759 20 5.72942222825894 10 7.362125922646853 20 5.696506608829292 10 7.378613479634665 20 5.696506608829292 10 7.378613479634665 20 5.737651133116351 0 LWPOLYLINE 5 5F4 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 7.22198185607985 20 5.770566752545999 10 7.238469413067662 20 5.745880037973766 10 7.254956914112348 20 5.754108942831177 10 7.254956914112348 20 5.795253467118236 0 LWPOLYLINE 5 5F5 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 7.436319873148875 20 5.531928484384671 10 7.477538709675272 20 5.52369957952726 10 7.444563651642781 20 5.515470674669849 0 LWPOLYLINE 5 5F6 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 7.428076094654969 20 5.704735513686706 10 7.444563651642781 20 5.688277676675497 10 7.469294931181366 20 5.688277676675497 10 7.452807374193561 20 5.737651133116351 10 7.428076094654969 20 5.712964418544117 0 LWPOLYLINE 5 5F7 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 7.31266330762655 20 5.894000325407176 10 7.337394643108268 20 5.885771420549765 10 7.337394643108268 20 5.861084705977528 10 7.304419529132651 20 5.844626896262706 0 LWPOLYLINE 5 5F8 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 7.238469413067662 20 5.885771420549765 10 7.238469413067662 20 5.869313610834939 10 7.254956914112348 20 5.869313610834939 10 7.246713135618442 20 5.894000325407176 0 LWPOLYLINE 5 5F9 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 5.896910545163386 20 6.705332702632361 10 5.914880538947542 20 6.639561597710343 10 6.052650379406507 20 6.681415937206175 10 6.052650379406507 20 6.753166233484737 0 LINE 5 5FA 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 6.949057460183716 20 8.09630936730327 30 0.0 11 6.983230148577213 21 7.922652901780587 31 0.0 0 LINE 5 5FB 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 6.896245082889677 20 8.077703332048905 30 0.0 11 6.908671504861288 21 7.966067011337166 31 0.0 0 LINE 5 5FC 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 6.827899650159558 20 8.059097269498153 30 0.0 11 6.840326072131169 21 7.925753907656321 31 0.0 0 LINE 5 5FD 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 6.756447639908095 20 8.052895257746698 30 0.0 11 6.762660850893901 21 7.941258937034959 31 0.0 0 LINE 5 5FE 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 6.69120878469932 20 8.052895257746698 30 0.0 11 6.69120878469932 21 7.916450862732752 31 0.0 0 LINE 5 5FF 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 6.622863407912319 20 8.046693245995243 30 0.0 11 6.629076618898125 21 7.900945833354107 31 0.0 0 LINE 5 600 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 6.5545179751822 20 8.043592240119515 30 0.0 11 6.551411341717738 21 7.910248850981297 31 0.0 0 LINE 5 601 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 6.489279175916543 20 8.0404912069474 30 0.0 11 6.479959331466275 21 7.904046839229842 31 0.0 0 LINE 5 602 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 6.405400687750351 20 8.037390201071673 30 0.0 11 6.399187476764538 21 7.925753907656321 31 0.0 0 LINE 5 603 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 6.327735410569957 20 8.043592240119515 30 0.0 11 6.29356272217646 21 7.931955919407776 31 0.0 0 LINE 5 604 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 6.200364445503112 20 8.052895257746698 30 0.0 11 6.1786181231381 21 7.981572068012191 31 0.0 0 LINE 5 605 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 6.110272746351107 20 8.068400287125335 30 0.0 11 6.085419846464759 21 7.962966005461439 31 0.0 0 LINE 5 606 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 6.038820680156518 20 8.052895257746698 30 0.0 11 6.035714102635182 21 7.975370028964348 31 0.0 0 LINE 5 607 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 5.958048825454788 20 8.068400287125335 30 0.0 11 5.948728981004514 21 8.009481120893738 31 0.0 0 LWPOLYLINE 5 608 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 30 70 0 43 0.0 10 6.95604587501446 20 6.679823247704504 10 6.915271338764924 20 6.68722343429787 10 6.904151020868347 20 6.653922580979536 10 6.904151020868347 20 6.676123168056015 10 6.837429001602636 20 6.650222501331047 10 6.863376428675692 20 6.624321834606078 10 6.826308683706052 20 6.642822314737681 10 6.770707038280036 20 6.616921648012716 10 6.789240882793293 20 6.591020981287748 10 6.755879929103564 20 6.602121274825986 10 6.733639237367285 20 6.557720155265798 10 6.774413773616821 20 6.554020048320925 10 6.729932446087381 20 6.542919782079071 10 6.744759555263861 20 6.509618928760737 10 6.785534147456516 20 6.494818555574006 10 6.804067991969773 20 6.520719195002591 10 6.7966544653531 20 6.491118448629134 10 6.830015474985955 20 6.4578175953108 10 6.841135792882532 20 6.487418368980645 10 6.844842584162435 20 6.465217781904165 10 6.900444229588451 20 6.450417408717434 10 6.893030702971771 20 6.480018182387279 10 6.90785781214825 20 6.450417408717434 10 6.97087298419094 20 6.4578175953108 10 6.981993358030642 20 6.487418368980645 10 6.978286566750739 20 6.461517702255676 10 7.045008586016457 20 6.483718262035768 10 7.033888212176755 20 6.509618928760737 10 7.052422112633138 20 6.491118448629134 10 7.067249221809611 20 6.509618928760737 0 LINE 5 609 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 5.948728981004514 20 8.009481120893738 30 0.0 11 5.933195981511559 21 7.975370028964348 31 0.0 0 LINE 5 60A 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 6.246963555868227 20 8.009481120893738 30 0.0 11 6.234537133896608 21 7.966067011337166 31 0.0 0 SPLINE 5 60B 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 13 73 9 74 7 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.1542321160195623 40 0.3264690193103569 40 0.5256786571409841 40 0.7248882391370389 40 0.8617197327707566 40 1.017718686344571 40 1.017718686344571 40 1.017718686344571 40 1.017718686344571 10 5.951835614468983 20 8.108713418102567 30 0.0 10 6.002532626952384 20 8.100073152254676 30 0.0 10 6.109844932421383 20 8.081783971046892 30 0.0 10 6.283596927151137 20 8.060362690945371 30 0.0 10 6.473939961381027 20 8.042370734453806 30 0.0 10 6.651431727614873 20 8.065387138713102 30 0.0 10 6.816480145628242 20 8.062083049713988 30 0.0 10 6.911085153544552 20 8.088459783798933 30 0.0 10 6.961483882155334 20 8.102511406351112 30 0.0 11 5.951835614468983 21 8.108713418102567 31 0.0 11 6.104059479422176 21 8.08390534380036 31 0.0 11 6.274923033275918 21 8.06219827537388 31 0.0 11 6.47374612048047 21 8.04979425187097 31 0.0 11 6.672569151741896 21 8.06219827537388 31 0.0 11 6.809260017202134 21 8.068400287125335 31 0.0 11 6.961483882155334 21 8.102511406351112 31 0.0 0 LWPOLYLINE 5 60C 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 70 70 0 43 0.0 10 8.723437411925594 20 7.075733325986853 10 8.716023885308921 20 7.086833592228707 10 8.704903567412337 20 7.023931992536915 10 8.738264521102074 20 7.005431539701699 10 8.719730676588817 20 6.986931059570096 10 8.716023885308921 20 6.957330313196639 10 8.741971312381977 20 6.953630206251762 10 8.719730676588817 20 6.942529940009908 10 8.727144203205497 20 6.883328419966606 10 8.760505212838353 20 6.898128793153336 10 8.730850994485393 20 6.857427753241637 10 8.734557785765296 20 6.827827006868179 10 8.753091630278554 20 6.816726740626325 10 8.730850994485393 20 6.801926340143211 10 8.730850994485393 20 6.768625514121264 10 8.760505212838353 20 6.757525220583026 10 8.738264521102074 20 6.757525220583026 10 8.741971312381977 20 6.724224367264692 10 8.764212004118256 20 6.698323727836111 10 8.745678103661873 20 6.705723914429473 10 8.745678103661873 20 6.642822314737681 10 8.77162553073493 20 6.639122207792809 10 8.749384894941776 20 6.616921648012716 10 8.760505212838353 20 6.579920715045894 10 8.779039113294736 20 6.587320901639255 10 8.764212004118256 20 6.576220608101017 10 8.767918795398152 20 6.524419301947467 10 8.793866222471208 20 6.513319008409226 10 8.801279749087889 20 6.531819488540829 10 8.797573013751112 20 6.509618928760737 10 8.827227232104071 20 6.468917888849041 10 8.856881450457024 20 6.483718262035768 10 8.834640758720745 20 6.465217781904165 10 8.849467867897224 20 6.43931714247558 10 8.886535668809983 20 6.435617035530707 10 8.89765598670656 20 6.454117515662311 10 8.893949195426664 20 6.417116582695488 10 8.916189887162943 20 6.391215915970519 10 8.938430522956096 20 6.394915995619008 10 8.942137314235999 20 6.417116582695488 10 8.949550896795798 20 6.383815729377154 10 8.997738959662015 20 6.365315249245551 10 9.02368644267819 20 6.387515809025646 10 9.016272860118391 20 6.361615169597062 10 9.049633869751254 20 6.346814796410331 10 9.049633869751254 20 6.369015356190427 10 9.057047396367927 20 6.335714502872093 10 9.082994879384109 20 6.332014395927217 10 9.094115197280686 20 6.354214983003696 10 9.094115197280686 20 6.324614209333855 10 9.108942306457166 20 6.313513943092001 10 9.138596524810125 20 6.309813836147124 10 9.142303316090021 20 6.332014395927217 10 9.146010107369924 20 6.309813836147124 10 9.160837216546404 20 6.287613276367032 10 9.190491434899357 20 6.29871356990527 10 9.20161175279594 20 6.320914129685366 10 9.212732070692517 20 6.287613276367032 10 9.246093080325373 20 6.287613276367032 10 9.253506662885172 20 6.309813836147124 10 9.253506662885172 20 6.283913196718543 10 9.283160881238131 20 6.272812903180302 10 9.309108308311188 20 6.291313383311905 10 9.312815099591091 20 6.272812903180302 10 9.357296427120523 20 6.261712609642064 10 9.364709953737204 20 6.287613276367032 10 9.364709953737204 20 6.243212156806844 10 9.412898072546539 20 6.254312423048698 10 9.412898072546539 20 6.269112796235429 10 9.398070963370059 20 6.291313383311905 0 LWPOLYLINE 5 60D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 19 70 0 43 0.0 10 9.288613601420152 20 5.374014635980099 10 9.261443984955427 20 5.369494545614539 10 9.265972245042362 20 5.328813595842575 10 9.302198381680952 20 5.333333713504522 10 9.333896258232613 20 5.355934219925089 10 9.320311477971813 20 5.315253297449512 10 9.333896258232613 20 5.297172881394502 10 9.388235491162063 20 5.292652791028942 10 9.40182027142287 20 5.306213089422008 10 9.352009354523474 20 5.220331126808908 10 9.392763751248999 20 5.197730620388337 10 9.447102928235331 20 5.220331126808908 10 9.451631244265385 20 5.283612583001438 10 9.447102928235331 20 5.215811036443348 10 9.483329120817046 20 5.224851244470851 10 9.474272544700056 20 5.193210502726394 10 9.515026997368707 20 5.166089905940268 10 9.555781394094232 20 5.202250710753897 10 9.546724873920368 20 5.233891452498358 0 LWPOLYLINE 5 60E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 8 70 1 43 0.0 10 9.290104541571082 20 5.909604386072441 10 9.290104541571082 20 5.935869841693349 10 9.316417445061759 20 5.962135297314258 10 9.360272265565185 20 5.962135297314258 10 9.386585169055862 20 5.927114689819713 10 9.374890595009446 20 5.89793084114213 10 9.336883061529228 20 5.880420537394858 10 9.304722815072224 20 5.900849234198805 0 SPLINE 5 60F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 11 71 3 72 41 73 37 74 0 42 0.0000000001 43 0.0000000001 40 5.214627008202147 40 5.214627008202147 40 5.214627008202147 40 5.214627008202147 40 5.369459256922151 40 5.581075413096524 40 5.743350773380074 40 5.897326441263219 40 6.061901784142699 40 6.284582069359757 40 6.379445594535702 40 6.440771213065467 40 6.514793775362544 40 6.650138478694737 40 6.708771548051832 40 6.765981708197605 40 6.814327996326021 40 6.886450348226801 40 7.001073220735701 40 7.10065896866441 40 7.187497177099322 40 7.2730392458917 40 7.378184793785703 40 7.480973009656056 40 7.627577254361662 40 7.703655156041293 40 7.826051676992888 40 7.957709325626004 40 8.109865225761478 40 8.236079387862636 40 8.328837869966365 40 8.414984068328173 40 8.514610143612948 40 8.61540482088262 40 8.728514745357264 40 8.850478881367425 40 9.009303664027243 40 9.088021499519225 40 9.088021499519225 40 9.088021499519225 40 9.088021499519225 10 9.051712835386787 20 5.998631512705171 30 0.0 10 9.051712835386787 20 5.998631512705171 30 0.0 10 8.947973181957891 20 6.031624840088941 30 0.0 10 8.797948914051424 20 6.125766241261211 30 0.0 10 8.630650254115483 20 6.187304657973815 30 0.0 10 8.466586929251741 20 6.186475070042548 30 0.0 10 8.295140148310135 20 6.126841081568297 30 0.0 10 8.134132634689754 20 6.110464514294439 30 0.0 10 8.017772961989157 20 6.052026356454875 30 0.0 10 7.980335484670598 20 5.973585250117448 30 0.0 10 8.039451645410084 20 5.893738719050729 30 0.0 10 8.051300101797927 20 5.804916436296143 30 0.0 10 8.110642420971066 20 5.738012117658525 30 0.0 10 8.096107485937114 20 5.67641889080339 30 0.0 10 8.14753939379219 20 5.634897343565562 30 0.0 10 8.222896822992947 20 5.614745152319372 30 0.0 10 8.31899791253976 20 5.612467063320911 30 0.0 10 8.418589604731359 20 5.594472987268938 30 0.0 10 8.497776953592502 20 5.540836632150137 30 0.0 10 8.593696188635503 20 5.56009575985509 30 0.0 10 8.68868761568391 20 5.530818381794469 30 0.0 10 8.798631983176145 20 5.48805348849306 30 0.0 10 8.904420309387569 20 5.464008720553324 30 0.0 10 9.019811044893597 20 5.446972274802435 30 0.0 10 9.108248465209886 20 5.37211428129894 30 0.0 10 9.251295494120045 20 5.369192487852462 30 0.0 10 9.381077482005007 20 5.409452615246673 30 0.0 10 9.502497435152797 20 5.436662052152474 30 0.0 10 9.587598759755659 20 5.503757893334118 30 0.0 10 9.601133817319995 20 5.606616055424004 30 0.0 10 9.538252838002787 20 5.684796590518203 30 0.0 10 9.469058743316372 20 5.762067033069559 30 0.0 10 9.382463410984676 20 5.831710629556964 30 0.0 10 9.278914128694964 20 5.922817158373456 30 0.0 10 9.177071225672211 20 5.944139640493362 30 0.0 10 9.075939968461714 20 5.987788533596733 30 0.0 10 9.051712835386787 20 5.998631512705171 30 0.0 0 LINE 5 610 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 8.400658575380958 20 3.391980928600304 30 0.0 11 8.509245909893728 21 3.402820104914766 31 0.0 0 LINE 5 611 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 8.400658575380958 20 3.738834024735385 30 0.0 11 8.476669726322839 21 3.738834024735385 31 0.0 0 LWPOLYLINE 5 612 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 28 70 0 43 0.0 10 9.075784985732397 20 5.206770828415844 10 9.075784985732397 20 5.251971841256981 10 9.125595958574919 20 5.256491958918925 10 9.125595958574919 20 5.247451750891421 10 9.130124218661848 20 5.247451750891421 10 9.175406875474315 20 5.242931660525862 10 9.179935135561244 20 5.229371334836411 10 9.179935135561244 20 5.242931660525862 10 9.211633012112905 20 5.238411542863918 10 9.211633012112905 20 5.206770828415844 10 9.202576491939041 20 5.179650204333331 10 9.202576491939041 20 5.166089905940268 10 9.18446339564818 20 5.157049697912761 10 9.161822095213508 20 5.166089905940268 10 9.161822095213508 20 5.148009489885257 10 9.14823725900959 20 5.148009489885257 10 9.143708998922654 20 5.166089905940268 10 9.134652478748783 20 5.148009489885257 10 9.121067698487983 20 5.148009489885257 10 9.112011122370994 20 5.179650204333331 10 9.102954602197122 20 5.138969281857754 10 9.084841505906268 20 5.138969281857754 10 9.062200205471597 20 5.166089905940268 10 9.075784985732397 20 5.184170294698891 10 9.062200205471597 20 5.184170294698891 10 9.044087109180736 20 5.202250710753897 10 9.057671945384662 20 5.224851244470851 10 9.080313245819333 20 5.197730620388337 0 LWPOLYLINE 5 613 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 8.930494935122638 20 6.116809665279419 10 8.948036852135381 20 6.087625816601835 10 8.977273399137665 20 6.084707423545161 10 8.983120742103992 20 6.12264642409638 0 LWPOLYLINE 5 614 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 8.810625047658781 20 6.12264642409638 10 8.819395978193597 20 6.169340576521232 10 8.880792771652885 20 6.145993486660614 10 8.86909814166335 20 6.102217727292433 10 8.836937951149458 20 6.108054513405782 0 LWPOLYLINE 5 615 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 9.091295999578314 20 6.052605209107291 10 9.176081997073559 20 6.058441967924252 10 9.176081997073559 20 6.023421360429708 10 9.149769093582875 20 6.000074297865474 10 9.10299057362473 20 6.014666208556072 0 LWPOLYLINE 5 616 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 9.272562624558339 20 5.970890449187894 10 9.266715337535131 20 5.991319145991838 10 9.304722815072224 20 6.014666208556072 10 9.336883061529228 20 6.005911056682439 0 LWPOLYLINE 5 617 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 9.187776627063094 20 6.000074297865474 10 9.18192928409676 20 6.023421360429708 10 9.211165831099044 20 6.052605209107291 10 9.237478734589721 20 6.035094905360018 10 9.225784160543312 20 6.011747815499401 0 LINE 5 618 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 10.68996744336449 20 4.173959400666188 30 0.0 11 10.62177630176552 21 4.162614695292102 31 0.0 0 LINE 5 619 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 10.96273217758974 20 3.913031177062226 30 0.0 11 10.87181061816236 21 3.90168647168814 31 0.0 0 LINE 5 61A 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 10.82634983844867 20 3.890341793610442 30 0.0 11 10.74679345996394 21 3.867652382862271 31 0.0 0 LINE 5 61B 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 10.87181061816236 20 4.230682900240228 30 0.0 11 10.76952382184922 21 4.196648784117975 31 0.0 0 LWPOLYLINE 5 61C 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 10.22742864573018 20 5.678474589265793 10 10.11925338825586 20 5.599678222403067 10 10.14556629174654 20 5.558820856091561 10 10.27713080919993 20 5.62886207108065 0 LWPOLYLINE 5 61D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 10.34729853319403 20 5.684311375379138 10 10.35314587616037 20 5.757270983424902 10 10.24497061868604 20 5.792291590919447 10 10.21573401574064 20 5.763107742241864 10 10.25081790570925 20 5.722250375930357 10 10.31221469916854 20 5.681392982322464 0 LWPOLYLINE 5 61E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 10.24497061868604 20 6.122068996357327 10 10.25666519273246 20 6.084129995806108 10 10.36776414966151 20 6.084129995806108 10 10.37945872370792 20 6.136660907047925 10 10.24497061868604 20 6.127905755174289 0 LWPOLYLINE 5 61F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 10.15726092173608 20 5.993660084013075 10 10.2040393857511 20 6.052027781368238 10 10.28297809622314 20 6.002415235886711 10 10.27420716568833 20 5.941129172771258 10 10.24789426219765 20 5.929455627840948 0 LWPOLYLINE 5 620 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 10.18942111224996 20 5.859414412851858 10 10.24789426219765 20 5.879843109655805 10 10.25666519273246 20 5.917782110207024 10 10.18649746873836 20 5.941129172771258 10 10.10755875826632 20 5.944047565827933 10 10.10171147124312 20 5.929455627840948 0 LWPOLYLINE 5 621 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 10.18065018171515 20 5.792291590919447 10 10.21573401574064 20 5.780618045989136 10 10.25081790570925 20 5.824393805357317 10 10.24497061868604 20 5.871087957782169 10 10.22742864573018 20 5.871087957782169 0 LWPOLYLINE 5 622 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 11 70 0 43 0.0 10 9.519555257455643 20 5.261012049284484 10 9.555781394094232 20 5.238411542863918 10 9.582951010558957 20 5.265532166946428 10 9.569366174355039 20 5.306213089422008 10 9.596535790819764 20 5.283612583001438 10 9.619177147197554 20 5.283612583001438 10 9.614648887110618 20 5.324293505477015 10 9.632761927458354 20 5.292652791028942 10 9.687101160387811 20 5.346894011897585 10 9.673516324183886 20 5.392095052035106 10 9.641818447632225 20 5.396615142400666 0 LWPOLYLINE 5 623 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 9.808176398363535 20 5.944624993566986 10 9.814023685386743 20 5.880420537394858 10 9.834489245911093 20 5.854155081773949 10 9.85787850589017 20 5.848318322956988 10 9.919275299349457 20 5.842481536843642 10 9.930969929338999 20 5.862910233647586 0 LWPOLYLINE 5 624 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 9.770168864883324 20 6.035094905360018 10 9.749703248415848 20 6.014666208556072 10 9.776016151906532 20 5.973808842244565 10 9.814023685386743 20 5.94754338662366 10 9.837412945365819 20 5.973808842244565 0 LWPOLYLINE 5 625 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 9.76432152191699 20 6.105136120349108 10 9.831565602399493 20 6.11097287916607 10 9.85787850589017 20 6.09054420965851 10 9.831565602399493 20 6.04093166417698 10 9.770168864883324 20 6.038013298416693 10 9.74385596139264 20 6.070115512854563 0 LWPOLYLINE 5 626 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 9.637290187545289 20 5.48701722267571 10 9.664459804010014 20 5.523178027489343 10 9.65540328383615 20 5.568379067626867 10 9.596535790819764 20 5.563858977261308 10 9.592007530732828 20 5.51413781946184 0 LWPOLYLINE 5 627 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 9.650875023749215 20 5.432775974510683 10 9.682572900300876 20 5.428255884145126 10 9.714270776852536 20 5.44181618253819 10 9.718799036939465 20 5.505097611434333 10 9.673516324183886 20 5.518657937123784 10 9.628233667371425 20 5.48701722267571 0 LWPOLYLINE 5 628 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 9.579546479968549 20 6.064278754037601 10 9.597088396981291 20 6.026339753486382 10 9.63801957397311 20 6.014666208556072 10 9.667256120975395 20 6.052605209107291 10 9.646790560451044 20 6.09054420965851 10 9.635095930461503 20 6.105136120349108 0 LWPOLYLINE 5 629 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 9.600012040492892 20 6.157667031590925 10 9.597088396981291 20 6.108054513405782 10 9.63801957397311 20 6.11097287916607 10 9.661408833952187 20 6.145993486660614 10 9.640943217484711 20 6.181014094155159 0 LWPOLYLINE 5 62A 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 9.585393766991749 20 6.099299361532146 10 9.564928206467406 20 6.073033905911238 10 9.538615302976722 20 6.081789057784874 0 LWPOLYLINE 5 62B 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 9.570775493490614 20 6.172258942281523 10 9.523997029475587 20 6.178095728394868 10 9.500607769496511 20 6.157667031590925 10 9.521073330020861 20 6.131401575970016 0 LWPOLYLINE 5 62C 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 9.773092508394924 20 5.959216904257583 10 9.732161331403105 20 5.927114689819713 10 9.676611880910144 20 5.950461752383947 10 9.650298977419467 20 5.950461752383947 10 9.635680703918325 20 5.965053690370933 10 9.641527990941533 20 6.014666208556072 0 LWPOLYLINE 5 62D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 9.658485190440579 20 6.084707423545161 10 9.73450020145789 20 6.09054420965851 10 9.760813104948567 20 6.113891272222744 10 9.766660447914901 20 6.157667031590925 10 9.68187439447653 20 6.163503790407887 10 9.667256120975395 20 6.15474863853425 0 LWPOLYLINE 5 62E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 10.05785665073969 20 5.809801894666719 10 10.15141363471287 20 5.80396510855337 10 10.19526845521629 20 5.853577654034896 10 10.12510073122219 20 5.865251198965207 10 10.07247492424083 20 5.853577654034896 0 LWPOLYLINE 5 62F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 10.07247492424083 20 5.80396510855337 10 10.07247492424083 20 5.745597438494591 10 10.16603190821401 20 5.733923893564281 10 10.18357382522675 20 5.830230564174279 0 LWPOLYLINE 5 630 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 10.05493295128496 20 5.827312198413988 10 10.05493295128496 20 5.809801894666719 10 10.02862004779429 20 5.783536439045811 10 9.993536213768798 20 5.809801894666719 10 9.993536213768798 20 5.841904109104589 0 LWPOLYLINE 5 631 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 10.0607802942513 20 5.65804591975823 10 10.12217703176747 20 5.602596615459741 10 10.07539856775244 20 5.544228945400963 10 9.970146953789729 20 5.567576007965197 10 10.00523084375834 20 5.649290767884593 0 LWPOLYLINE 5 632 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 10.02569640428269 20 5.774781287172174 10 9.990612570257198 20 5.768944501058825 10 9.955528680288587 20 5.669719437392156 10 10.07247492424083 20 5.66096428551852 10 10.08709319774197 20 5.745597438494591 0 LWPOLYLINE 5 633 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 0 43 0.0 10 10.00815448726994 20 5.944047565827933 10 10.09001684125357 20 5.935292413954297 10 10.10171147124312 20 5.91486371715035 10 10.05785665073969 20 5.871087957782169 10 10.06955128072923 20 5.84482250216126 10 10.04908566426176 20 5.833148957230953 10 10.00230720024673 20 5.874006350838843 0 LWPOLYLINE 5 634 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 10.03037420033538 20 6.081789057784874 10 10.09469463730627 20 6.105136120349108 10 10.0771526643504 20 6.143075120900327 10 9.995290310366769 20 6.140156727843653 0 LWPOLYLINE 5 635 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 9.999383500792006 20 5.932374020897622 10 10.00230720024673 20 5.976149780265803 10 9.967223310278122 20 6.017007146577309 0 LWPOLYLINE 5 636 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 9.92921577679791 20 5.917782110207024 10 9.940910406787445 20 5.856496047091571 10 9.984765227290871 20 5.838985716047915 10 10.00230720024673 20 5.856496047091571 10 9.990612570257198 20 5.923618869023986 10 9.946757693810653 20 5.932374020897622 0 LWPOLYLINE 5 637 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 9.960206476341276 20 6.09054420965851 10 9.986519379831953 20 6.105136120349108 10 10.03037420033538 20 6.081789057784874 10 10.01283228332263 20 6.052605209107291 10 9.980672036865627 20 6.055523602163965 0 LWPOLYLINE 5 638 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 9.849107575355354 20 6.052605209107291 10 9.869573135879704 20 6.020502994669421 10 9.957282832829676 20 6.017584601612746 10 9.980672036865627 20 6.046768450290329 10 9.945588202840134 20 6.087625816601835 10 9.863725848856496 20 6.087625816601835 0 LWPOLYLINE 5 639 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 9.922198942861065 20 5.912522779129115 10 9.852031218866962 20 5.918359537946077 10 9.86080214940177 20 5.935869841693349 0 LWPOLYLINE 5 63A 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 9.828641958887885 20 5.953380145440622 10 9.875420478846038 20 5.935869841693349 10 9.898809682881989 20 5.991319145991838 0 LWPOLYLINE 5 63B 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 10.11632974474426 20 6.043272629494602 10 10.05200930777336 20 6.040354236437927 10 10.05200930777336 20 6.008251994703673 10 10.08709319774197 20 5.964476235335492 0 LWPOLYLINE 5 63C 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 10.16895555172561 20 5.952802717701569 10 10.16895555172561 20 5.981986539082765 10 10.11632974474426 20 5.990741690956401 10 10.08124585477565 20 5.949884324644894 0 LWPOLYLINE 5 63D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 10.69228992208446 20 5.777699652932462 10 10.65428238860424 20 5.742679045437917 10 10.68936622262973 20 5.707658437943372 10 10.74491572906581 20 5.736842286620955 10 10.76245764607856 20 5.801046742793083 10 10.74491572906581 20 5.821475412300642 0 LWPOLYLINE 5 63E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 10.7098318390972 20 5.871087957782169 10 10.73322109907628 20 5.836067350287624 10 10.68936622262973 20 5.783536439045811 10 10.66890066210538 20 5.798128349736408 10 10.68936622262973 20 5.862332805908533 0 LWPOLYLINE 5 63F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 10.71275548260881 20 5.955721083461856 10 10.7098318390972 20 5.87692471659913 10 10.62796948511356 20 5.879843109655805 10 10.62504584160196 20 5.894435020346403 0 LWPOLYLINE 5 640 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 10.57826732164381 20 5.871087957782169 10 10.68059529209492 20 5.862332805908533 10 10.64843504563791 20 5.766026135298538 10 10.55780176111946 20 5.780618045989136 10 10.55487811760786 20 5.847740867921551 10 10.57534367813221 20 5.862332805908533 0 LWPOLYLINE 5 641 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 10.47593940713582 20 5.798128349736408 10 10.4057716271986 20 5.865251198965207 10 10.47301570768109 20 5.944047565827933 10 10.55195441815313 20 5.882761502712479 10 10.54025978816359 20 5.830230564174279 0 LWPOLYLINE 5 642 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 10.54610713112992 20 5.792291590919447 10 10.55780176111946 20 5.731005527803993 10 10.49640496766017 20 5.698903286069736 10 10.41746625718813 20 5.6901481341961 10 10.41746625718813 20 5.745597438494591 10 10.47886305064743 20 5.789373197862772 0 LWPOLYLINE 5 643 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 1 43 0.0 10 10.38530606667425 20 6.022843932690655 10 10.44962650364514 20 5.976149780265803 10 10.51979422763925 20 5.98782332519611 10 10.55195441815313 20 6.034517477620966 10 10.48471033767064 20 6.116232210243978 10 10.38530606667425 20 6.122068996357327 10 10.37653508019632 20 6.046190995254889 0 LWPOLYLINE 5 644 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 0 43 0.0 10 10.28297809622314 20 5.917782110207024 10 10.28882543918947 20 5.976149780265803 10 10.38530606667425 20 6.011170387760348 10 10.46716842065789 20 5.94696593158822 10 10.41746625718813 20 5.894435020346403 10 10.37068779317311 20 5.911945324093675 10 10.28882543918947 20 5.91486371715035 0 LWPOLYLINE 5 645 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 10.26543617921039 20 5.906108565276714 10 10.37653508019632 20 5.903190172220039 10 10.35606951967196 20 5.821475412300642 10 10.25666519273246 20 5.827312198413988 10 10.25666519273246 20 5.87692471659913 0 LWPOLYLINE 5 646 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 10.27420716568833 20 6.014088780817019 10 10.28297809622314 20 6.046190995254889 10 10.35606951967196 20 6.043272629494602 10 10.36191680669517 20 6.014088780817019 10 10.300520069179 20 5.984904932139439 10 10.27713080919993 20 6.011170387760348 0 LWPOLYLINE 5 647 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 1 43 0.0 10 10.55487811760786 20 5.900271806459752 10 10.51102324116131 20 5.935292413954297 10 10.55780176111946 20 5.993660084013075 10 10.59873293811128 20 5.970313021448841 10 10.63089312862517 20 5.941129172771258 10 10.62796948511356 20 5.903190172220039 10 10.59873293811128 20 5.888598261529441 0 LWPOLYLINE 5 648 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 1 43 0.0 10 10.89109846407723 20 5.806883501610045 10 10.87940389003081 20 5.862332805908533 10 10.90864043703309 20 5.894435020346403 10 10.92618235404584 20 5.944047565827933 10 10.95834254455972 20 5.941129172771258 10 10.99342643452833 20 5.92653726208066 10 10.9788081610272 20 5.885679868472767 0 LWPOLYLINE 5 649 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 10.7741522760681 20 5.833148957230953 10 10.7741522760681 20 5.768944501058825 10 10.83262537007267 20 5.766026135298538 10 10.86770926004128 20 5.789373197862772 10 10.87648019057608 20 5.856496047091571 10 10.81508345305991 20 5.850659260978225 0 LWPOLYLINE 5 64A 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 10.72737375610995 20 5.856496047091571 10 10.71860282557514 20 5.87692471659913 10 10.72152646908674 20 5.938210779714584 10 10.83554901358427 20 5.923618869023986 10 10.83262537007267 20 5.903190172220039 10 10.76245764607856 20 5.830230564174279 0 LWPOLYLINE 5 64B 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 25 70 0 43 0.0 10 7.809501560769369 20 7.297082473012686 10 7.784032391448377 20 7.330980134503782 10 7.826480969687949 20 7.381826585795856 10 7.851950139008941 20 7.373352177247177 10 7.834970674147236 20 7.390300994344528 10 7.868929547927521 20 7.458096262733953 10 7.88590901278922 20 7.458096262733953 10 7.868929547927521 20 7.466570671282632 10 7.9028884217078 20 7.517417122574698 10 7.928357591028792 20 7.517417122574698 10 7.911378126167093 20 7.525891531123377 10 7.945336999947372 20 7.585212390964123 10 7.953826704406665 20 7.576737982415444 10 7.945336999947372 20 7.585212390964123 10 7.970806169268364 20 7.619110025158839 10 7.996275282646237 20 7.619110025158839 10 8.021744451967222 20 7.585212390964123 10 8.021744451967222 20 7.619110025158839 10 8.11513131290566 20 7.61063561661016 10 8.11513131290566 20 7.593686799512802 10 8.123621017364946 20 7.619110025158839 10 8.166069651547644 20 7.61063561661016 10 8.166069651547644 20 7.576737982415444 10 8.19153876492551 20 7.602161208061481 10 8.233987343165082 20 7.593686799512802 0 LINE 5 64C 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 0.6779667131268426 20 9.837414503295619 30 0.0 11 0.6115922125365075 21 9.855691671697378 31 0.0 0 LINE 5 64D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 0.6985656979977435 20 9.832845197546987 30 0.0 11 0.7374748667791664 21 9.809998723396603 31 0.0 0 ARC 5 64E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 18.01018459078863 20 1.099637009593415 30 0.0 40 0.1025170428577521 100 AcDbArc 50 290.4159594805502 51 63.54757508686972 0 LWPOLYLINE 5 64F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 10 70 1 43 0.0 10 17.83611888621449 20 3.831433846193288 10 17.87907246301855 20 3.917186123678835 10 17.94350288416779 20 3.924332153626725 10 18.01509217884124 20 3.945770216174018 10 18.08668147351468 20 3.938624213522512 10 18.07952254404735 20 3.917186123678835 10 18.02941003777593 20 3.802849753698104 10 17.98645646097186 20 3.774265661202921 10 17.90770818088795 20 3.788557693802321 10 17.85043674514918 20 3.802849753698104 0 SPLINE 5 650 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 106 73 102 74 100 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.1907630312902977 40 0.5453336615363842 40 0.6282545522682456 40 0.7879558837919652 40 0.945993195715588 40 1.028819819508357 40 1.114561222531141 40 1.196610375654832 40 1.283543269660843 40 1.326744862404803 40 1.378553047247502 40 1.417182577196006 40 1.515645631613997 40 1.635941135061088 40 1.771144426919725 40 1.937243504482635 40 2.153141602455396 40 2.259035139529895 40 2.3909035403176 40 2.439792950648542 40 2.526725786276832 40 2.674034127694914 40 2.898941870451385 40 3.0721631660036 40 3.200732876545115 40 3.239404206198906 40 3.31773426900337 40 3.440063535309274 40 3.491965326402545 40 3.607364154854977 40 3.80250653127661 40 4.010293127072756 40 4.140911903570451 40 4.239528155485018 40 4.396188228500767 40 4.5744703294666 40 4.654161244158383 40 4.919464576268961 40 5.01614297483792 40 5.106441326861816 40 5.168784942735473 40 5.221400091130094 40 5.325562128276398 40 5.410732377416371 40 5.49459451913414 40 5.603159315029504 40 5.654305937140871 40 5.728363461851065 40 5.906639334656865 40 6.022808260112878 40 6.12389616322322 40 6.24478197335016 40 6.362244977033094 40 6.454105009599692 40 6.523843993411346 40 6.562515385309919 40 6.589825626687666 40 6.626492664895502 40 6.712939520166427 40 6.738843626235967 40 6.785354489663994 40 6.862613499451655 40 6.923725262621685 40 6.98606881679964 40 7.030100367119807 40 7.125082071177207 40 7.160687627697497 40 7.203911077724733 40 7.271400173242557 40 7.425918242278338 40 7.617758510729337 40 7.793810440216717 40 7.936952220505785 40 8.049406063912455 40 8.129151110809717 40 8.203042850796467 40 8.270553951217596 40 8.320969352717344 40 8.394303429133007 40 8.492766483550997 40 8.547386974477891 40 8.586058366376464 40 8.637960157469736 40 8.70547121488242 40 8.83744694758638 40 9.02889491558715 40 9.133057008484023 40 9.289717137101948 40 9.524707272922158 40 9.786662625643634 40 10.04281520600929 40 10.23597391516228 40 10.40107763828047 40 10.66446381082808 40 10.86871378435421 40 11.21136566837338 40 11.39911258849897 40 11.56760599398816 40 11.62683135203113 40 11.62683135203113 40 11.62683135203113 40 11.62683135203113 10 16.73328403396735 20 3.13029099935872 30 0.0 10 16.72648578920306 20 3.066448637225194 30 0.0 10 16.70705166884831 20 2.883942682754241 30 0.0 10 16.77229285310176 20 2.683914963638009 30 0.0 10 16.86982759727687 20 2.495706862092948 30 0.0 10 17.02518078192533 20 2.503653375967338 30 0.0 10 17.14515559463207 20 2.449901988414636 30 0.0 10 17.25412340026293 20 2.437449119574339 30 0.0 10 17.33963805319368 20 2.442421803996224 30 0.0 10 17.41438526508271 20 2.480350431451857 30 0.0 10 17.49638431862476 20 2.482281752564491 30 0.0 10 17.53497861607048 20 2.429860163729897 30 0.0 10 17.5358319258314 20 2.381425851472852 30 0.0 10 17.49372766818824 20 2.328382275449518 30 0.0 10 17.54860194133726 20 2.240729769020191 30 0.0 10 17.57466160608036 20 2.13126607203461 30 0.0 10 17.66115009592659 20 2.011486452735262 30 0.0 10 17.65432451072546 20 1.831728394454313 30 0.0 10 17.73256037133182 20 1.684577077801994 30 0.0 10 17.73599225482992 20 1.52809306472199 30 0.0 10 17.79634554035167 20 1.451091599248309 30 0.0 10 17.85480698363388 20 1.378068481732663 30 0.0 10 17.95965936677725 20 1.387965040776896 30 0.0 10 18.10657101680003 20 1.395084767418322 30 0.0 10 18.2903404685552 20 1.403359529253767 30 0.0 10 18.46731330041141 20 1.36872704727704 30 0.0 10 18.57598357720395 20 1.412895861762825 30 0.0 10 18.64708776498815 20 1.454300301047094 30 0.0 10 18.73032955980663 20 1.458261142484238 30 0.0 10 18.81136676070716 20 1.435777189767809 30 0.0 10 18.90882351953491 20 1.435378778318564 30 0.0 10 19.02516492149125 20 1.47020537033467 30 0.0 10 19.19268116529497 20 1.524804613029265 30 0.0 10 19.37287190205555 20 1.483003965418121 30 0.0 10 19.51581360917614 20 1.519054095944582 30 0.0 10 19.63850165535935 20 1.5596412200362 30 0.0 10 19.78437283471883 20 1.556876174135132 30 0.0 10 19.9202578472807 20 1.608226507123717 30 0.0 10 20.04182675486599 20 1.737574540202874 30 0.0 10 20.20829681478599 20 1.744742936423262 30 0.0 10 20.33311034032159 20 1.81327809344165 30 0.0 10 20.42115052987174 20 1.864611302286433 30 0.0 10 20.47137919150745 20 1.801201457872704 30 0.0 10 20.54685990947432 20 1.799170842018209 30 0.0 10 20.62925815146727 20 1.79753589164698 30 0.0 10 20.70852974456351 20 1.847749247859213 30 0.0 10 20.80060200759941 20 1.865631263708175 30 0.0 10 20.88237148193345 20 1.861445275995172 30 0.0 10 20.95573815488669 20 1.907874484636073 30 0.0 10 20.94102576794941 20 2.022068744702091 30 0.0 10 20.89214444866254 20 2.129676036062713 30 0.0 10 20.82375836986372 20 2.242742003190588 30 0.0 10 20.7761475571137 20 2.348353306177575 30 0.0 10 20.79919926896165 20 2.465495789644092 30 0.0 10 20.76298188901766 20 2.568077462325597 30 0.0 10 20.70599201457304 20 2.658092125307931 30 0.0 10 20.63408686209285 20 2.64853932590174 30 0.0 10 20.58915568858155 20 2.664666674659404 30 0.0 10 20.57415872436677 20 2.703045549606205 30 0.0 10 20.62199348479192 20 2.735474411221549 30 0.0 10 20.67925495315978 20 2.752085647665933 30 0.0 10 20.67717602677641 20 2.809391989961712 30 0.0 10 20.6533115285795 20 2.853040004092165 30 0.0 10 20.62991370668381 20 2.911380889830723 30 0.0 10 20.58737822783487 20 2.961191471898358 30 0.0 10 20.51477249988646 20 2.979817688148111 30 0.0 10 20.54982779169064 20 3.054163801114646 30 0.0 10 20.53925071343754 20 3.107410568349088 30 0.0 10 20.53383142618055 20 3.170274551341565 30 0.0 10 20.48346567212325 20 3.190953275635779 30 0.0 10 20.43326682490557 20 3.265463583169418 30 0.0 10 20.38405687553761 20 3.395298878816794 30 0.0 10 20.27256177467516 20 3.530798002706377 30 0.0 10 20.16519774970487 20 3.665259826929881 30 0.0 10 20.03067156047917 20 3.73051270143874 30 0.0 10 19.91595095480862 20 3.732430788676635 30 0.0 10 19.83079243541172 20 3.697045347831335 30 0.0 10 19.75703168029941 20 3.720826962484885 30 0.0 10 19.71418853280454 20 3.794178946358415 30 0.0 10 19.65606013042983 20 3.741541148055667 30 0.0 10 19.59911767788631 20 3.697124412123149 30 0.0 10 19.58844384482633 20 3.618888195220205 30 0.0 10 19.57872297404353 20 3.54919932458492 30 0.0 10 19.530214288308 20 3.530006597692765 30 0.0 10 19.4737199454278 20 3.52608474043811 30 0.0 10 19.41787300991924 20 3.598483567011562 30 0.0 10 19.30112698479049 20 3.65604191278012 30 0.0 10 19.16633349240574 20 3.707038381673487 30 0.0 10 19.01471002897172 20 3.720029510677116 30 0.0 10 18.85114775707167 20 3.690595212486743 30 0.0 10 18.6338608200867 20 3.676225385399132 30 0.0 10 18.38651036643009 20 3.624869134261996 30 0.0 10 18.15765932491099 20 3.57969231316257 30 0.0 10 17.94836339616205 20 3.530542182937902 30 0.0 10 17.82118298338009 20 3.357408160723504 30 0.0 10 17.68409433490928 20 3.200659098520462 30 0.0 10 17.48796907168765 20 3.011566634553236 30 0.0 10 17.38376064591411 20 2.783000897591381 30 0.0 10 17.21206200609793 20 2.622963679045589 30 0.0 10 17.10339688207722 20 2.536072448209666 30 0.0 10 17.03621629053078 20 2.500559440844798 30 0.0 10 17.01874388498035 20 2.491323177026469 30 0.0 11 16.73328403396735 21 3.13029099935872 31 0.0 11 16.72219705817163 21 2.939850423128842 31 0.0 11 16.81759401143541 21 2.598354078871551 31 0.0 11 16.86364773230177 21 2.529398086281137 31 0.0 11 17.01874388498035 21 2.491323177026469 31 0.0 11 17.17122061284608 21 2.449770326108584 31 0.0 11 17.25345935215618 21 2.439919470024239 31 0.0 11 17.33880483681699 21 2.448149685108155 31 0.0 11 17.4166575234569 21 2.474053791177698 31 0.0 11 17.50316052726006 21 2.465419070956926 31 0.0 11 17.52911142280669 21 2.430880271962998 31 0.0 11 17.52911142280669 21 2.379072087120299 31 0.0 11 17.51181078848019 21 2.34453328812637 31 0.0 11 17.53776168402683 21 2.249551584068971 31 0.0 11 17.58101321389998 21 2.137300466866417 31 0.0 11 17.64156526621337 21 2.016414656739474 31 0.0 11 17.66751616176001 21 1.852355354694218 31 0.0 11 17.72806827001653 21 1.645122560730648 31 0.0 11 17.74536884839992 21 1.540651841475209 31 0.0 11 17.81457121787657 21 1.428400751569039 31 0.0 11 17.84917243058646 21 1.393861925278727 31 0.0 11 17.9356753784465 21 1.385227232354342 31 0.0 11 18.08273043456307 21 1.393861925278727 31 0.0 11 18.30763817731954 21 1.393861925278727 31 0.0 11 18.48064412898274 21 1.385227232354342 31 0.0 11 18.60174828955267 21 1.428400751569039 31 0.0 11 18.63634944631944 21 1.44567013741781 31 0.0 11 18.71420213295935 21 1.454304830342199 31 0.0 11 18.83530629352928 21 1.437035444493425 31 0.0 11 18.88720808462255 21 1.437035444493425 31 0.0 11 18.99966192802922 21 1.462939550562968 31 0.0 11 19.18996851401894 21 1.506113042481281 31 0.0 11 19.39757562244891 21 1.497478349556896 31 0.0 11 19.52560000318356 21 1.523382455626439 31 0.0 11 19.62075326820685 21 1.549286534399595 31 0.0 11 19.77645858554355 21 1.566555947544753 31 0.0 11 19.94081427598662 21 1.635633545532609 31 0.0 11 20.00136632830002 21 1.687441757671695 31 0.0 11 20.25222496660313 21 1.773788741508322 31 0.0 11 20.33872791446317 21 1.81696226072302 31 0.0 11 20.42523091826633 21 1.842866366792563 31 0.0 11 20.47713270935961 21 1.808327540502251 31 0.0 11 20.52903450045288 21 1.799692847577865 31 0.0 11 20.6328380266963 21 1.808327540502251 31 0.0 11 20.71069071333622 21 1.842866366792563 31 0.0 11 20.79255608824845 21 1.861057551579968 31 0.0 11 20.90003362310214 21 1.876383816929909 31 0.0 11 20.94097749918272 21 1.907036320333407 31 0.0 11 20.94424871731281 21 1.981021562768276 31 0.0 11 20.87956174100497 21 2.147147665235102 31 0.0 11 20.82314455674289 21 2.248697261795317 31 0.0 11 20.78854339997612 21 2.343678965852717 31 0.0 11 20.78854339997612 21 2.464564775979656 31 0.0 11 20.75394218726623 21 2.576815893182214 31 0.0 11 20.69339013495283 21 2.64589349117007 31 0.0 11 20.62418776547617 21 2.654528184094456 31 0.0 11 20.58958655276629 21 2.671797597239613 31 0.0 11 20.58093623560303 21 2.697701676012769 31 0.0 11 20.60688713114967 21 2.723605782082312 31 0.0 11 20.67608950062633 21 2.775413994221398 31 0.0 11 20.67608950062633 21 2.801318100290938 31 0.0 11 20.65878892224294 21 2.844491592209255 31 0.0 11 20.62418776547617 21 2.913569190197108 31 0.0 11 20.58093623560303 21 2.956742709411809 31 0.0 11 20.52903450045288 21 2.991281508405737 31 0.0 11 20.53768476167302 21 3.034455000324051 31 0.0 11 20.53768476167302 21 3.129436704381451 31 0.0 11 20.52903450045288 21 3.163975503375379 31 0.0 11 20.49443328774299 21 3.189879609444922 31 0.0 11 20.45118181381297 21 3.241687794287621 31 0.0 11 20.38197944433632 21 3.379843017559718 31 0.0 11 20.26952554498652 21 3.535267626680589 31 0.0 11 20.14842138441659 21 3.663048940529222 31 0.0 11 20.0186669066834 21 3.723491845592693 31 0.0 11 19.90621306327673 21 3.723491845592693 31 0.0 11 19.82836037663682 21 3.706222459743923 31 0.0 11 19.75915800716016 21 3.732126538517078 31 0.0 11 19.70725621606689 21 3.775300057731779 31 0.0 11 19.66400474213688 21 3.749395951662236 31 0.0 11 19.61210295104361 21 3.69758773952315 31 0.0 11 19.58615205549696 21 3.60260603546575 31 0.0 11 19.56885147711358 21 3.550797850623052 31 0.0 11 19.53425026440369 21 3.533528437477894 31 0.0 11 19.48234847331042 21 3.533528437477894 31 0.0 11 19.43044673816027 21 3.576701956692595 31 0.0 11 19.31799283881046 21 3.645779554680451 31 0.0 11 19.13633662592714 21 3.706222459743923 31 0.0 11 19.03253304374059 21 3.714857152668308 31 0.0 11 18.87682767046078 21 3.69758773952315 31 0.0 11 18.64326966648417 21 3.671683633453607 31 0.0 11 18.38549086395946 21 3.625092907033447 31 0.0 11 18.13463222565634 21 3.573284722190749 31 0.0 11 17.95297595682988 21 3.507624331408351 31 0.0 11 17.84052211342322 21 3.386738548577795 31 0.0 11 17.66751616176001 21 3.188140420242227 31 0.0 11 17.52911142280669 21 3.037933296840282 31 0.0 11 17.33880483681699 21 2.752988184668083 31 0.0 11 17.20576090349585 21 2.620518498237231 31 0.0 11 17.07064562013049 21 2.519851284634974 31 0.0 11 17.01874388498035 21 2.491323177026469 31 0.0 0 SPLINE 5 651 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 91 73 87 74 85 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.1907015444327555 40 0.3898653738778695 40 0.6428227101061999 40 0.8863124546734574 40 1.048176975370818 40 1.170659897518058 40 1.345344188921823 40 1.577005385951489 40 1.750046830718428 40 1.957876818365662 40 2.117400591139584 40 2.192225381147579 40 2.257861680426485 40 2.305773248356763 40 2.349547552176623 40 2.479640390097795 40 2.721859226486945 40 2.834594078312637 40 2.998077390233399 40 3.126048567501851 40 3.211841817922016 40 3.305848562657788 40 3.413003685701667 40 3.570947655195117 40 3.754660423318024 40 3.907810691865368 40 4.147296492749717 40 4.299850429386664 40 4.424310611062721 40 4.542620982211412 40 4.658065598956492 40 4.720684224373381 40 4.811937565538757 40 5.017281210162609 40 5.218914409499125 40 5.344759641928133 40 5.442566080261427 40 5.487724769320756 40 5.527315402409421 40 5.709222042769712 40 5.996601416205812 40 6.266350505950345 40 6.542096006489531 40 6.800164690747926 40 7.150787127926665 40 7.360324700562647 40 7.472062372425678 40 7.51172161258396 40 7.564922433876676 40 7.62555800122868 40 7.836754297166176 40 8.023196887970776 40 8.199185770432681 40 8.289777301728832 40 8.358008791226366 40 8.414061098489387 40 8.486956937868438 40 8.507168814217667 40 8.530292333626752 40 8.58884192794115 40 8.701158930358582 40 8.779263262487967 40 8.815138083532987 40 8.962678223577761 40 9.080559009021964 40 9.148097870158542 40 9.246163095678474 40 9.33135411557706 40 9.439287872669229 40 9.528585962647042 40 9.628775753811291 40 9.708094289510723 40 9.791408117681887 40 9.934057919191344 40 10.10449844672872 40 10.25842987197361 40 10.38617614148336 40 10.52370891460765 40 10.64824188958261 40 10.80127164467569 40 10.88052155188632 40 11.00705217199661 40 11.19888109044838 40 11.35319299292036 40 11.35319299292036 40 11.35319299292036 40 11.35319299292036 10 12.60325427952494 20 2.511059200751745 30 0.0 10 12.66714227117989 20 2.514566659983549 30 0.0 10 12.79775325195066 20 2.521737220184493 30 0.0 10 13.0064765445906 20 2.461048029598729 30 0.0 10 13.24230108074614 20 2.485286075925322 30 0.0 10 13.45094729879096 20 2.552389041730067 30 0.0 10 13.62336560762555 20 2.588653238903878 30 0.0 10 13.76860788988585 20 2.6385316432466 30 0.0 10 13.94621599625526 20 2.65172172780759 30 0.0 10 14.13977874573343 20 2.62858929145231 30 0.0 10 14.33309026820738 20 2.563423882711928 30 0.0 10 14.5169972762929 20 2.543879800140791 30 0.0 10 14.66050843121129 20 2.600526240169528 30 0.0 10 14.75962049110057 20 2.578359839603305 30 0.0 10 14.81661378653359 20 2.540644130777741 30 0.0 10 14.86946969015004 20 2.56369320549164 30 0.0 10 14.91967130029913 20 2.620522625579895 30 0.0 10 15.07562947339441 20 2.600157028617864 30 0.0 10 15.22724189133293 20 2.642484345068992 30 0.0 10 15.40258636935343 20 2.626400085990565 30 0.0 10 15.52794827789501 20 2.570462680592015 30 0.0 10 15.63100030652737 20 2.501386921025964 30 0.0 10 15.73606842837275 20 2.469931137096136 30 0.0 10 15.82433298145876 20 2.526785470498044 30 0.0 10 15.94569756273868 20 2.490678616580529 30 0.0 10 16.09384248126137 20 2.487792553677186 30 0.0 10 16.25651325026174 20 2.451453308115835 30 0.0 10 16.43542234404014 20 2.378437899709891 30 0.0 10 16.57110167112288 20 2.244685199747053 30 0.0 10 16.74952213969619 20 2.224446664231608 30 0.0 10 16.85534816726378 20 2.140164153124017 30 0.0 10 16.93249113670789 20 2.047453959480426 30 0.0 10 17.04168546281289 20 2.024439238581758 30 0.0 10 17.07645256747665 20 1.936006096014271 30 0.0 10 17.10200243414764 20 1.820538436705414 30 0.0 10 17.1343648990152 20 1.658973810946762 30 0.0 10 17.16059414439266 20 1.474912511644695 30 0.0 10 17.09335528533697 20 1.346122028342203 30 0.0 10 17.06904675526215 20 1.26022761765708 30 0.0 10 17.02570928959693 20 1.211343726479469 30 0.0 10 17.04695183768886 20 1.115828087743841 30 0.0 10 17.23210985925557 20 1.054374944672999 30 0.0 10 17.45208833756491 20 0.97137325871415 30 0.0 10 17.73687606136078 20 0.9583658103519805 30 0.0 10 18.00139824054363 20 0.9968457588627511 30 0.0 10 18.29715425685047 20 0.9872468720324979 30 0.0 10 18.56900233559486 20 1.028267676052035 30 0.0 10 18.78562462688291 20 1.075341727787349 30 0.0 10 18.89798006670096 20 1.136305188410621 30 0.0 10 18.96610542086218 20 1.123265004005046 30 0.0 10 19.0160465053956 20 1.109562253213387 30 0.0 10 19.09983313136031 20 1.037057221412395 30 0.0 10 19.26558539159547 20 1.025090967328902 30 0.0 10 19.4496216122958 20 1.059567915746296 30 0.0 10 19.60475358854092 20 1.069386990433813 30 0.0 10 19.70155086339725 20 1.13100864402634 30 0.0 10 19.77996883683576 20 1.123032400172494 30 0.0 10 19.82469811324411 20 1.180526186658419 30 0.0 10 19.87833357807908 20 1.180373897614493 30 0.0 10 19.90819396825453 20 1.213165010176641 30 0.0 10 19.94299900060244 20 1.191472067030802 30 0.0 10 20.00283494842477 20 1.24093817364998 30 0.0 10 20.08605988271177 20 1.200760854715686 30 0.0 10 20.16665706992573 20 1.225850686195406 30 0.0 10 20.21173688999629 20 1.307308272861322 30 0.0 10 20.34132186133601 20 1.261014716307801 30 0.0 10 20.42788762856005 20 1.352764130655135 30 0.0 10 20.52322698844071 20 1.337867397685287 30 0.0 10 20.6170565938472 20 1.2971615907355 30 0.0 10 20.66684313804744 20 1.407785831654519 30 0.0 10 20.65131862176272 20 1.498357377203661 30 0.0 10 20.6559650635234 20 1.596361137763278 30 0.0 10 20.68595697490491 20 1.692721216139385 30 0.0 10 20.79244667367704 20 1.708765782800626 30 0.0 10 20.85616564259923 20 1.618868735741132 30 0.0 10 20.95367378346563 20 1.533620042187608 30 0.0 10 21.06170705891347 20 1.421737177287102 30 0.0 10 21.18524553781401 20 1.32679001314372 30 0.0 10 21.32911344389706 20 1.314289119823721 30 0.0 10 21.45723349309674 20 1.331987783327698 30 0.0 10 21.59593459521333 20 1.340893822337569 30 0.0 10 21.70803111822838 20 1.395572293931298 30 0.0 10 21.78053584708243 20 1.498785144023219 30 0.0 10 21.92622501094948 20 1.498938974028016 30 0.0 10 22.07210307357349 20 1.550790641431657 30 0.0 10 22.18154751428984 20 1.588415228412073 30 0.0 10 22.23033858093391 20 1.605188521955366 30 0.0 11 12.60325427952494 21 2.511059200751745 31 0.0 11 12.7939558239577 21 2.511059200751745 31 0.0 11 12.99026622582665 21 2.477466685554247 31 0.0 11 13.24266531394388 21 2.494262943152996 31 0.0 11 13.47823777380937 21 2.555849239212658 31 0.0 11 13.63528606173866 21 2.595040543338249 31 0.0 11 13.75307234761454 21 2.628633058535744 31 0.0 11 13.92694726379556 21 2.64542934343088 31 0.0 11 14.15691086622485 21 2.617435562568708 31 0.0 11 14.3240550975393 21 2.572645524107791 31 0.0 11 14.53158321428066 21 2.561448000844372 31 0.0 11 14.68863155815307 21 2.58944178170654 31 0.0 11 14.76154681670996 21 2.572645524107791 31 0.0 11 14.82324436039443 21 2.550250504877336 31 0.0 11 14.8681153317703 21 2.567046762476081 31 0.0 11 14.90176853233064 21 2.595040543338249 31 0.0 11 15.03077253307891 21 2.611836800936998 31 0.0 11 15.27195385038061 21 2.634231820167457 31 0.0 11 15.38413122287716 21 2.623034324200421 31 0.0 11 15.53557070931337 21 2.561448000844372 31 0.0 11 15.64774802586678 21 2.499861704784706 31 0.0 11 15.7318810552392 21 2.483065419889573 31 0.0 11 15.82162299799094 21 2.511059200751745 31 0.0 11 15.92819145710815 21 2.499861704784706 31 0.0 11 16.08523980098057 21 2.483065419889573 31 0.0 11 16.26472357459779 21 2.443874143060369 31 0.0 11 16.40494529021848 21 2.38228781970432 31 0.0 11 16.60686454952363 21 2.253516465953282 31 0.0 11 16.75269512258052 21 2.208726427492365 31 0.0 11 16.85365478020464 21 2.13594260816928 31 0.0 11 16.9422748395829 21 2.057560027214485 31 0.0 11 17.04323449720703 21 2.001572465490145 31 0.0 11 17.07127884033117 21 1.945584903765809 31 0.0 11 17.09371427007599 21 1.857132522418499 31 0.0 11 17.13297638401566 21 1.655577322047992 31 0.0 11 17.13858524145186 21 1.454022148973869 31 0.0 11 17.09371427007599 21 1.33644826389348 31 0.0 11 17.05445221207945 21 1.246868186971649 31 0.0 11 17.03201672639151 21 1.207676910142442 31 0.0 11 17.03762563977083 21 1.168485606016851 31 0.0 11 17.18906507026392 21 1.067708005831597 31 0.0 11 17.46389964406908 21 0.9837266905414772 31 0.0 11 17.73312530449492 21 0.9669304056463445 31 0.0 11 18.00795987830008 21 0.9893254521731869 31 0.0 11 18.26596782385351 21 0.9949241865085127 31 0.0 11 18.61371765621555 21 1.039714224969429 31 0.0 11 18.81563691552071 21 1.095701786693766 31 0.0 11 18.92220543058106 21 1.129294329187647 31 0.0 11 18.96146748857759 21 1.123695567555934 31 0.0 11 19.01194731738966 21 1.106899309957189 31 0.0 11 19.06242714620174 21 1.073306767463307 31 0.0 11 19.2699552629431 21 1.034115490634103 31 0.0 11 19.45504794993964 21 1.056510509864562 31 0.0 11 19.6278010386903 21 1.090103025062056 31 0.0 11 19.71193406806271 21 1.123695567555934 31 0.0 11 19.77924046918339 21 1.134893090819357 31 0.0 11 19.82411144055926 21 1.168485606016851 31 0.0 11 19.89141784167993 21 1.196479386879019 31 0.0 11 19.90824446993165 21 1.207676910142442 31 0.0 11 19.93067995561959 21 1.202078148510732 31 0.0 11 19.98676864186786 21 1.218874406109478 31 0.0 11 20.09894601436441 21 1.213275644477768 31 0.0 11 20.1718612729213 21 1.241269425339936 31 0.0 11 20.19429675860922 21 1.269263206202108 31 0.0 11 20.34012733166611 21 1.291658225432563 31 0.0 11 20.44669584672645 21 1.342047025525193 31 0.0 11 20.51400224784713 21 1.33644826389348 31 0.0 11 20.61121231770286 21 1.323525772844217 31 0.0 11 20.65446379163287 21 1.396920730942458 31 0.0 11 20.65446379163287 21 1.504854488034627 31 0.0 11 20.65983282090401 21 1.593991025988326 31 0.0 11 20.70470379227988 21 1.68357110291016 31 0.0 11 20.78322796421609 21 1.694768626173583 31 0.0 11 20.84492550790057 21 1.638781064449243 31 0.0 11 20.94588510958158 21 1.53800346426399 31 0.0 11 21.06928025289366 21 1.420429606479988 31 0.0 11 21.19828419769881 21 1.33644826389348 31 0.0 11 21.32486183334911 21 1.319208440030216 31 0.0 11 21.46190105663157 21 1.330849529558154 31 0.0 11 21.58529614400052 21 1.347645787156903 31 0.0 11 21.71990900218499 21 1.420429606479988 31 0.0 11 21.77599768843326 21 1.476417168204324 31 0.0 11 21.89939277580222 21 1.504410921770109 31 0.0 11 22.08448546279876 21 1.554799721862735 31 0.0 11 22.23033858093391 21 1.605188521955366 31 0.0 0 SPLINE 5 652 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 104 73 100 74 0 42 0.0000000001 43 0.0000000001 40 0.0688032279335064 40 0.0688032279335064 40 0.0688032279335064 40 0.0688032279335064 40 0.1384434055815895 40 0.2387483608881845 40 0.3213912329725603 40 0.4446324208122208 40 0.6049640009843947 40 0.7591382208176992 40 0.9687385068861171 40 1.062993372921326 40 1.275729068662945 40 1.446148786515145 40 1.559761875163948 40 1.726137503921895 40 1.854785942576828 40 2.009938652050263 40 2.172030378941145 40 2.406188596676309 40 2.628022712410442 40 2.825304535828437 40 3.01721756894338 40 3.155026033993464 40 3.19399125367529 40 3.225409582490052 40 3.385741106760291 40 3.53414132812054 40 3.622361608771242 40 3.694471478718967 40 3.733436751482664 40 3.805263831443651 40 3.910199268093658 40 4.015134703143646 40 4.121502551014455 40 4.280730091082104 40 4.392327296212916 40 4.659853680711137 40 4.927358308518429 40 5.252815671546574 40 5.591509042312534 40 5.712987551067576 40 5.822624438217025 40 5.953223661276337 40 6.177474459242554 40 6.461705330564971 40 6.645518952722984 40 6.791951638114547 40 6.848758152175539 40 6.953693643072456 40 7.164643381744794 40 7.331132616516824 40 7.414932653847671 40 7.529419233317899 40 7.610465071187543 40 7.770420469881832 40 7.826219072447231 40 7.895109007956492 40 8.000583875700828 40 8.084383921045928 40 8.219949210886612 40 8.31930665496041 40 8.389517223212557 40 8.511704742180604 40 8.636410573931275 40 8.761025572936951 40 8.841132319858324 40 8.926939981876929 40 8.989776519097379 40 9.094711954147367 40 9.130625477143626 40 9.177482843677879 40 9.245143295219271 40 9.319488503492648 40 9.478415785321477 40 9.608394871269734 40 9.829173785219039 40 9.999985609684966 40 10.14040444272481 40 10.23001605566485 40 10.36433642747459 40 10.4462899396278 40 10.54723643246006 40 10.59029306855201 40 10.68422983394096 40 10.74732761028145 40 10.81278799275251 40 10.92146592482988 40 10.99670819409495 40 11.13106525848634 40 11.27728847918122 40 11.36362196958118 40 11.42905869901698 40 11.50527109819574 40 11.57188701499463 40 11.6338138122096 40 11.73631687896633 40 11.83828425652315 40 11.98979623894897 40 12.13622887254918 40 12.22203653456778 40 12.22203653456778 40 12.22203653456778 40 12.22203653456778 10 11.98121598671057 20 3.132522568947479 30 0.0 10 12.00276474243009 20 3.14128450199038 30 0.0 10 12.05640236539427 20 3.159055556202806 30 0.0 10 12.14379765777272 20 3.159114917405531 30 0.0 10 12.22900106846068 20 3.227141916187306 30 0.0 10 12.35767835166387 20 3.199303060894807 30 0.0 10 12.50106099815561 20 3.215942602430782 30 0.0 10 12.67597243499106 20 3.224350871535387 30 0.0 10 12.82995329292758 20 3.211162878595597 30 0.0 10 12.99795708159345 20 3.263607783716983 30 0.0 10 13.15570400720606 20 3.205772602558704 30 0.0 10 13.31732257656354 20 3.177488225601086 30 0.0 10 13.462349417465 20 3.138939563954368 30 0.0 10 13.60295038085024 20 3.132909130572048 30 0.0 10 13.74259998714423 20 3.195204621535779 30 0.0 10 13.89328610997214 20 3.196422280099238 30 0.0 10 14.07312951278457 20 3.239173241044412 30 0.0 10 14.28064783079183 20 3.222747447163378 30 0.0 10 14.49798701443518 20 3.228547126116707 30 0.0 10 14.70177792223336 20 3.223136177529717 30 0.0 10 14.87685973508535 20 3.204996005663694 30 0.0 10 14.9981174866055 20 3.188824810496301 30 0.0 10 15.06304195290911 20 3.154180832608425 30 0.0 10 15.13897038444661 20 3.181003422691349 30 0.0 10 15.25308971469724 20 3.164866598638599 30 0.0 10 15.38482992740991 20 3.179520451570869 30 0.0 10 15.48688800368304 20 3.197167850141523 30 0.0 10 15.54758037566053 20 3.224942827331204 30 0.0 10 15.6074151822825 20 3.23918439637776 30 0.0 10 15.6628755947977 20 3.293120788513748 30 0.0 10 15.76387801268716 20 3.277145532778192 30 0.0 10 15.86642978287384 20 3.288720843077214 30 0.0 10 15.99277410221513 20 3.298899032231553 30 0.0 10 16.09341370660389 20 3.390705980473452 30 0.0 10 16.27843209087281 20 3.389005805011359 30 0.0 10 16.4886910278299 20 3.426753785309225 30 0.0 10 16.7717392692162 20 3.487730421179358 30 0.0 10 17.0421713877762 20 3.6499573886214 30 0.0 10 17.23640030389353 20 3.827927840006811 30 0.0 10 17.40582983333686 20 3.915538516994383 30 0.0 10 17.50204972167104 20 3.988953020643252 30 0.0 10 17.59910881313703 20 4.115376203714154 30 0.0 10 17.81921415072192 20 4.163534841422557 30 0.0 10 18.03667104504627 20 4.225316156590071 30 0.0 10 18.24181349359291 20 4.257978130658587 30 0.0 10 18.35599915783985 20 4.320696615868492 30 0.0 10 18.45697778958769 20 4.345057796070963 30 0.0 10 18.58163922049385 20 4.328052937235605 30 0.0 10 18.74188299673934 20 4.302234261836124 30 0.0 10 18.89102146945613 20 4.309456018443103 30 0.0 10 19.02288824945237 20 4.326403290109284 30 0.0 10 19.04732956835405 20 4.448131386906354 30 0.0 10 19.18247241709782 20 4.435072891579592 30 0.0 10 19.26815006094087 20 4.482543199064389 30 0.0 10 19.36427581906377 20 4.49731302870304 30 0.0 10 19.43864515421135 20 4.471516561665451 30 0.0 10 19.52632235427151 20 4.486408868805102 30 0.0 10 19.62749506015496 20 4.532119029485768 30 0.0 10 19.73435277090801 20 4.500389664265842 30 0.0 10 19.84136659747103 20 4.549419623167761 30 0.0 10 19.91715022008935 20 4.472728451212701 30 0.0 10 19.97603403520088 20 4.389341230717543 30 0.0 10 20.08367667493285 20 4.316964225464064 30 0.0 10 20.19449814333611 20 4.303049633480757 30 0.0 10 20.29370370550314 20 4.31698123462915 30 0.0 10 20.36119431821535 20 4.276513877879918 30 0.0 10 20.44674321998587 20 4.256257952586203 30 0.0 10 20.50808832963383 20 4.286148150031605 30 0.0 10 20.58279098420396 20 4.253257000278413 30 0.0 10 20.53471490078311 20 4.202548490185306 30 0.0 10 20.54729663666048 20 4.139228600620318 30 0.0 10 20.58523560567434 20 4.042681184562484 30 0.0 10 20.70777761355674 20 3.994477967894521 30 0.0 10 20.82980448830896 20 3.876555041163715 30 0.0 10 20.93601292430351 20 3.737848001557482 30 0.0 10 21.06818156938919 20 3.618667975148785 30 0.0 10 21.15460868273352 20 3.517094045077989 30 0.0 10 21.22542318254911 20 3.416339243934954 30 0.0 10 21.3297248220579 20 3.37813270567112 30 0.0 10 21.36594349757598 20 3.265942815337186 30 0.0 10 21.32882319396341 20 3.196893751743097 30 0.0 10 21.32606228347999 20 3.114206231321965 30 0.0 10 21.37496407534336 20 3.063774619882494 30 0.0 10 21.41711596413974 20 2.996671291538245 30 0.0 10 21.38543407207288 20 2.916882394003698 30 0.0 10 21.41997098028927 20 2.833209458353872 30 0.0 10 21.48699319501286 20 2.753097944487082 30 0.0 10 21.52634634885862 20 2.629079998073439 30 0.0 10 21.47443998684741 20 2.518168625335153 30 0.0 10 21.45133152306741 20 2.410766525760314 30 0.0 10 21.50779498153434 20 2.353534799187917 30 0.0 10 21.58480095128742 20 2.32301883766024 30 0.0 10 21.63237477910854 20 2.39036151057712 30 0.0 10 21.71788500563246 20 2.372309696314234 30 0.0 10 21.78190225907042 20 2.448848065340717 30 0.0 10 21.87244984086882 20 2.494542812993618 30 0.0 10 21.96457350610698 20 2.5456303459625 30 0.0 10 22.09252303494408 20 2.601826615850438 30 0.0 10 22.20310170271117 20 2.62589437862889 30 0.0 10 22.22977769519029 20 2.636191864425303 30 0.0 0 LWPOLYLINE 5 653 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 0 43 0.0 10 11.22175862362674 20 2.619690844532218 10 11.32491662218259 20 2.744341181073835 10 11.42807467668156 20 2.68472579323345 10 11.41721589288148 20 2.663047495197297 10 11.33577535003956 20 2.598012519199677 10 11.31405789432563 20 2.565495044849061 10 11.26519359099773 20 2.576334221163524 0 SPLINE 5 654 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 10 73 6 74 4 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.1128826019891859 40 0.2784071916324231 40 0.592638262729915 40 0.592638262729915 40 0.592638262729915 40 0.592638262729915 10 13.83359838823713 20 2.875453309067793 30 0.0 10 13.7948516169539 20 2.864940536890462 30 0.0 10 13.69928879692944 20 2.839012437018679 30 0.0 10 13.65714945830983 20 2.617296568987469 30 0.0 10 13.52188350053254 20 2.522895127917668 30 0.0 10 13.4332868037687 20 2.461063932648997 30 0.0 11 13.83359838823713 21 2.875453309067793 31 0.0 11 13.72981388265527 21 2.831054455107604 31 0.0 11 13.65568214090519 21 2.683058257042716 31 0.0 11 13.4332868037687 21 2.461063932648997 31 0.0 0 SPLINE 5 655 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 21 73 17 74 15 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.2430524404227268 40 0.4824210126489614 40 0.6931304142032643 40 0.8357606247636862 40 0.962678394597226 40 1.112869630584571 40 1.183683222554386 40 1.307779626836437 40 1.465872321128725 40 1.639266102977608 40 1.82645259918744 40 2.104289215443342 40 2.306414812186007 40 2.363256353472992 40 2.363256353472992 40 2.363256353472992 40 2.363256353472992 10 16.64986948211392 20 3.399632815164444 30 0.0 10 16.57117510634772 20 3.379557550019492 30 0.0 10 16.41497910032992 20 3.339711294110355 30 0.0 10 16.17459299882408 20 3.37026425078491 30 0.0 10 16.00352305759309 20 3.249672096288822 30 0.0 10 15.84227481660179 20 3.236879871763076 30 0.0 10 15.69635775051023 20 3.262813463918874 30 0.0 10 15.60375440348717 20 3.175132467045127 30 0.0 10 15.48544115187097 20 3.158948661752479 30 0.0 10 15.41794228840548 20 3.036192345906731 30 0.0 10 15.46418775879997 20 2.889122136836986 30 0.0 10 15.51807745454582 20 2.713536102220989 30 0.0 10 15.74388076420152 20 2.636561613211359 30 0.0 10 15.95652582174412 20 2.683309382308211 30 0.0 10 16.14351171736582 20 2.731105584547742 30 0.0 10 16.22202083950551 20 2.692652914216581 30 0.0 10 16.23925306264186 20 2.684212812260582 30 0.0 11 16.64986948211392 21 3.399632815164444 31 0.0 11 16.41096538554629 21 3.354919042804642 31 0.0 11 16.17206128897866 21 3.340014479314426 31 0.0 11 15.97795174548191 21 3.258039257284501 31 0.0 11 15.83610242066266 21 3.243134693794285 31 0.0 11 15.70918465082913 21 3.243134693794285 31 0.0 11 15.57480110350272 21 3.176064062550963 31 0.0 11 15.50760932983952 21 3.15370717637106 31 0.0 11 15.44041755617632 21 3.049375095457623 31 0.0 11 15.46281483271175 21 2.89287697408746 31 0.0 11 15.53747232792469 21 2.736378852717301 31 0.0 11 15.70918465082913 21 2.661855953377067 31 0.0 11 15.98541752297477 21 2.691665107653882 31 0.0 11 16.18699284396437 21 2.706569698440485 31 0.0 11 16.23925306264186 21 2.684212812260582 31 0.0 0 LINE 5 656 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 16.43814070820948 20 2.742023963611607 30 0.0 11 16.46199379261509 21 2.702340505655293 31 0.0 0 LINE 5 657 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 16.29502225771899 20 2.73673283224458 30 0.0 11 16.31887534212459 21 2.683821573167083 31 0.0 0 LWPOLYLINE 5 658 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 15.33428349540332 20 2.790843822057958 10 15.3051092130961 20 2.744249110365512 10 15.36929264536061 20 2.636498784983963 10 15.4538981703435 20 2.624850107060851 10 15.4626504718186 20 2.668532676568904 10 15.401384417436 20 2.787931652577182 0 SPLINE 5 659 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 23 73 19 74 17 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.1675606874363481 40 0.2821209587850524 40 0.4539493528454988 40 0.5975852379203193 40 0.6881230166915293 40 0.7875326106894294 40 0.8554359426133771 40 0.9627502794748 40 1.09895758044101 40 1.300550801261028 40 1.46520623495309 40 1.63045564514552 40 1.769286795489011 40 1.946088468272408 40 2.105887659535587 40 2.30040204614179 40 2.30040204614179 40 2.30040204614179 40 2.30040204614179 10 16.58187402955656 20 3.094686385696213 30 0.0 10 16.53750697258043 20 3.056171822856081 30 0.0 10 16.4628064157608 20 2.991325076510682 30 0.0 10 16.45991544639358 20 2.827298031933767 30 0.0 10 16.52334236584274 20 2.706923867400002 30 0.0 10 16.53959896071498 20 2.542653837456565 30 0.0 10 16.4068070996492 20 2.495801338204264 30 0.0 10 16.34527033277366 20 2.571982692552601 30 0.0 10 16.24978706804789 20 2.581467792648463 30 0.0 10 16.18164611601575 20 2.677575076903313 30 0.0 10 16.01842263772254 20 2.654689747283046 30 0.0 10 15.85754261458899 20 2.635511117245118 30 0.0 10 15.68156056182963 20 2.630741492140391 30 0.0 10 15.51547313777512 20 2.664146160069063 30 0.0 10 15.43204361014912 20 2.812657752448376 30 0.0 10 15.38827546319928 20 2.965466681637036 30 0.0 10 15.41910668512689 20 3.149169701902931 30 0.0 10 15.49962514362299 20 3.238556583191656 30 0.0 10 15.54382892113281 20 3.287629030510984 30 0.0 11 16.58187402955656 21 3.094686385696213 31 0.0 11 16.47449008754638 21 2.966057955819699 31 0.0 11 16.46733115807904 21 2.851721585838969 31 0.0 11 16.51744366435045 21 2.687363033519382 31 0.0 11 16.50312580541576 21 2.544442543747084 31 0.0 11 16.41721865180763 21 2.515858451251901 31 0.0 11 16.33131144225636 21 2.565880633590762 31 0.0 11 16.26688107705025 21 2.587318696138051 31 0.0 11 16.180973867499 21 2.651632911076308 31 0.0 11 16.04495415167632 21 2.658778941024198 31 0.0 11 15.84450407064754 21 2.637340851180525 31 0.0 11 15.67984863695548 21 2.637340851180525 31 0.0 11 15.52235213273077 21 2.687363033519382 31 0.0 11 15.44360390858999 21 2.801699403500112 31 0.0 11 15.40065033178591 21 2.973203985767593 31 0.0 11 15.42928604965529 21 3.13041650813929 31 0.0 11 15.54382892113281 21 3.287629030510984 31 0.0 0 ARC 5 65A 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 16.07785375741657 20 3.249041579087322 30 0.0 40 0.5973542083205914 100 AcDbArc 50 289.9018383617647 51 336.2997616964236 0 ARC 5 65B 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 16.11554099141655 20 3.23162426519296 30 0.0 40 0.6259991193161074 100 AcDbArc 50 265.4036153555213 51 350.6842869749489 0 SPLINE 5 65C 330 54C 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 12 73 8 74 6 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.2474063218496278 40 0.4551739465375323 40 0.6982152353964103 40 0.8973201993858157 40 1.038076456544275 40 1.038076456544275 40 1.038076456544275 40 1.038076456544275 10 11.60422909738911 20 2.272373932705722 30 0.0 10 11.68781329860443 20 2.26757949105983 30 0.0 10 11.84159009157776 20 2.258758758796041 30 0.0 10 12.05973881744857 20 2.350455561279113 30 0.0 10 12.25129017440843 20 2.455415966132862 30 0.0 10 12.44659612302647 20 2.47866426254901 30 0.0 10 12.55737451701657 20 2.501571842388572 30 0.0 10 12.60325427952494 20 2.511059200751745 30 0.0 11 11.60422909738911 21 2.272373932705722 31 0.0 11 11.85156545470504 21 2.278257336554368 31 0.0 11 12.04702272395977 21 2.348711873412828 31 0.0 11 12.26962684082848 21 2.446264296464676 31 0.0 11 12.46508416602633 21 2.484201358972523 31 0.0 11 12.60325427952494 21 2.511059200751745 31 0.0 0 LINE 5 65D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 11.9414078153612 20 2.354294066138535 30 0.0 11 12.07602061760256 21 2.399084104599452 31 0.0 0 LINE 5 65E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 12.07041176016635 20 2.673423124293048 30 0.0 11 11.96945215848533 21 2.662225601029625 31 0.0 0 LWPOLYLINE 5 65F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 11.47693898000947 20 2.52213842148037 10 11.48779770786643 20 2.478781770815292 10 11.55295013095134 20 2.489620947129754 10 11.57466758666527 20 2.527557982341217 10 11.55837952285138 20 2.532977570498445 0 LWPOLYLINE 5 660 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 11.46065086025246 20 2.549236307673755 10 11.47693898000947 20 2.527557982341217 10 11.58009697856531 20 2.543816719516524 10 11.5638088588083 20 2.592592958338833 10 11.53123267523741 20 2.598012519199677 0 LWPOLYLINE 5 661 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 11.2923404386117 20 2.489620947129754 10 11.28691104671165 20 2.543816719516524 10 11.33034601408264 20 2.570914633006292 10 11.40635716502451 20 2.560075483988217 10 11.40092782906759 20 2.467942621797217 0 LWPOLYLINE 5 662 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 11.42264528478152 20 2.554655895830986 10 11.41178655692456 20 2.581753782024371 10 11.4660802521525 20 2.663047495197297 10 11.52037394738044 20 2.635949581707524 10 11.52580328333736 20 2.603432107356908 10 11.43893340453853 20 2.543816719516524 0 LINE 5 663 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 11.76192398580086 20 2.326300285276367 30 0.0 11 11.83483930030086 21 2.309504000381235 31 0.0 0 LINE 5 664 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 11.82923044286466 20 2.606238039305289 30 0.0 11 11.73387964267672 21 2.539052981613913 31 0.0 0 LINE 5 665 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 11.69461758468018 20 2.404682866231162 30 0.0 11 11.76192398580086 21 2.326300285276367 31 0.0 0 LINE 5 666 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 11.69461758468018 20 2.483065419889573 30 0.0 11 11.69461758468018 21 2.404682866231162 31 0.0 0 LINE 5 667 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 11.73387964267672 20 2.539052981613913 30 0.0 11 11.69461758468018 21 2.483065419889573 31 0.0 0 LINE 5 668 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 11.88531912911293 20 2.315102762012944 30 0.0 11 11.9414078153612 21 2.354294066138535 31 0.0 0 LINE 5 669 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 11.83483930030086 20 2.309504000381235 30 0.0 11 11.88531912911293 21 2.315102762012944 31 0.0 0 LINE 5 66A 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 11.96945215848533 20 2.662225601029625 30 0.0 11 11.82923044286466 21 2.606238039305289 31 0.0 0 LINE 5 66B 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 12.23306896147497 20 2.572645524107791 30 0.0 11 12.19380690347843 21 2.606238039305289 31 0.0 0 LINE 5 66C 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 12.1769802752267 20 2.449472904692079 30 0.0 11 12.24428667634738 21 2.505460439120032 31 0.0 0 LINE 5 66D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 12.19380690347843 20 2.606238039305289 30 0.0 11 12.15454478953876 21 2.639830581799166 31 0.0 0 LINE 5 66E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 12.07602061760256 20 2.399084104599452 30 0.0 11 12.1769802752267 21 2.449472904692079 31 0.0 0 LINE 5 66F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 12.15454478953876 20 2.639830581799166 30 0.0 11 12.07041176016635 21 2.673423124293048 31 0.0 0 LINE 5 670 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 12.24428667634738 20 2.505460439120032 30 0.0 11 12.23306896147497 21 2.572645524107791 31 0.0 0 LINE 5 671 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 16.27428548493802 20 2.499510236524894 30 0.0 11 16.34392197304328 21 2.429999253824316 31 0.0 0 LINE 5 672 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 16.06537590873595 20 2.607638398474659 30 0.0 11 16.20078025021395 21 2.549712602304499 31 0.0 0 LINE 5 673 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 16.25791747840244 20 2.652074812261311 30 0.0 11 16.27381953467283 21 2.604454657254454 31 0.0 0 LINE 5 674 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 16.20078025021395 20 2.549712602304499 30 0.0 11 16.27428548493802 21 2.499510236524894 31 0.0 0 LWPOLYLINE 5 675 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 17.21404009398614 20 2.052813895480525 10 17.18976508655257 20 2.052813895480525 10 17.20797132814196 20 2.070987283024578 0 LWPOLYLINE 5 676 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 17.17762761080734 20 1.556074353880458 10 17.22010880388718 20 1.483380776407862 10 17.21404009398614 20 1.440976169076559 10 17.18976508655257 20 1.440976169076559 10 17.1533526593169 20 1.489438581354676 0 LWPOLYLINE 5 677 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 17.16549013506212 20 1.659056956087113 10 17.24438375537762 20 1.646941346193486 10 17.24438375537762 20 1.598478961211757 10 17.18369637665152 20 1.598478961211757 10 17.17155890090629 20 1.61665234875581 0 LWPOLYLINE 5 678 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 17.13514641772751 20 1.749923948400141 10 17.17762761080734 20 1.749923948400141 10 17.20797132814196 20 1.683288148577975 10 17.1533526593169 20 1.646941346193486 10 17.12907770782645 20 1.707519341068842 0 LWPOLYLINE 5 679 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 1 43 0.0 10 17.15942142516107 20 1.858964328257226 10 17.22010880388718 20 1.840790913416789 10 17.15942142516107 20 1.79838633338187 0 LWPOLYLINE 5 67A 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.22010880388718 20 1.931657905729817 10 17.23831504547658 20 1.907426713238955 10 17.17762761080734 20 1.877137715801278 10 17.1533526593169 20 1.919542323132578 0 LWPOLYLINE 5 67B 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 17.12907770782645 20 2.016467093096036 10 17.22010880388718 20 2.022524898042849 10 17.22010880388718 20 1.949831320570257 10 17.12907770782645 20 1.931657905729817 10 17.08659651474661 20 1.955889098220684 0 LWPOLYLINE 5 67C 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 17.1533526593169 20 1.416744976585697 10 17.18976508655257 20 1.410687171638883 10 17.18976508655257 20 1.434918391426133 0 LWPOLYLINE 5 67D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 16.74067826020684 20 2.252721267650638 10 16.79529692903192 20 2.289068070035128 10 16.8438468320128 20 2.246663462703828 0 LWPOLYLINE 5 67E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 16.64357839830195 20 2.252721267650638 10 16.64964710820299 20 2.295125874981941 10 16.68605953543867 20 2.313299262525994 10 16.7649532116973 20 2.295125874981941 10 16.71640325277329 20 2.240605657757015 0 LINE 5 67F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 16.32947667567612 20 2.678530441800056 30 0.0 11 16.34802909330596 21 2.633555852476717 31 0.0 0 LINE 5 680 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 16.38778423398197 20 2.710277202705832 30 0.0 11 16.41428762380388 21 2.652074812261311 31 0.0 0 LINE 5 681 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 16.34392197304328 20 2.429999253824316 30 0.0 11 16.36210540715538 21 2.405495885193387 31 0.0 0 LWPOLYLINE 5 682 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.93487798401665 20 2.234547880106589 10 16.97129041125232 20 2.276952460141504 10 17.05018403156782 20 2.246663462703828 10 17.02590908007738 20 2.216374465266149 0 LWPOLYLINE 5 683 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 16.99556536274276 20 2.13156527789993 10 16.98342788699754 20 2.101276280462254 10 16.94094669391771 20 2.107334085409068 10 16.94701545976187 20 2.137623082846744 10 16.97129041125232 20 2.143680887793557 0 LWPOLYLINE 5 684 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 17.01984037017633 20 2.173969885231233 10 17.01984037017633 20 2.210316687615723 10 16.97129041125232 20 2.222432270212962 10 16.9591529355071 20 2.180027690178047 0 LWPOLYLINE 5 685 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.8438468320128 20 2.173969885231233 10 16.85598430775802 20 2.222432270212962 10 16.91667174242725 20 2.240605657757015 10 16.92274045232831 20 2.198201077722099 0 LWPOLYLINE 5 686 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.98949665284172 20 2.107334085409068 10 17.01377160433216 20 2.077045087971391 10 17.04411532166678 20 2.089160697865015 10 17.0380465558226 20 2.13156527789993 0 LWPOLYLINE 5 687 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 17.09873399049183 20 2.14973869274037 10 17.1533526593169 20 2.14973869274037 10 17.11087146623705 20 2.16185427533761 10 17.09873399049183 20 2.143680887793557 0 LWPOLYLINE 5 688 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 17.11694023208123 20 2.028582702989663 10 17.08659651474661 20 2.101276280462254 10 17.04411532166678 20 2.058871700427339 10 17.06839027315722 20 1.98617809565836 0 ARC 5 689 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 17.5162024108091 20 1.113455884903366 30 0.0 40 0.1622793944271299 100 AcDbArc 50 309.7719307275888 51 54.6412094575227 0 ARC 5 68A 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 17.54579362857324 20 1.423721853963172 30 0.0 40 0.1086001044278269 100 AcDbArc 50 329.9836384298889 51 133.2096366911978 0 ARC 5 68B 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 17.24657809702627 20 1.314098927966835 30 0.0 40 0.1555908385606107 100 AcDbArc 50 282.7045623761515 51 22.77906737449997 0 ARC 5 68C 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 17.38779090082663 20 1.433707816508491 30 0.0 40 0.0872134636954272 100 AcDbArc 50 0.7953251496101288 51 122.0706689629636 0 LWPOLYLINE 5 68D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 17.25652128706598 20 1.683288148577975 10 17.2504525212218 20 1.713577146015651 10 17.27472747271224 20 1.719634950962465 10 17.27472747271224 20 1.701461536122028 10 17.26258999696702 20 1.689345953524789 0 LWPOLYLINE 5 68E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 17.25652128706598 20 1.755981726050571 10 17.25652128706598 20 1.786270723488247 10 17.28079623855641 20 1.786270723488247 10 17.27472747271224 20 1.755981726050571 10 17.25652128706598 20 1.749923948400141 0 ARC 5 68F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 17.72558650630449 20 1.353116074606607 30 0.0 40 0.073412591353996 100 AcDbArc 50 337.397883962934 51 124.1246217249593 0 ARC 5 690 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 17.74405156143189 20 1.23224640169602 30 0.0 40 0.1482919189241016 100 AcDbArc 50 250.4003732876421 51 20.98436651614103 0 ARC 5 691 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 17.83755859840904 20 1.061250710617626 30 0.0 40 0.0861588555478936 100 AcDbArc 50 286.964431082239 51 69.55789767149781 0 ARC 5 692 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 17.89773863456183 20 1.190898930916096 30 0.0 40 0.1153387240510162 100 AcDbArc 50 320.3264026278914 51 64.7750444515469 0 SPLINE 5 693 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 13 73 9 74 7 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.1415197241996364 40 0.2677378084571434 40 0.3350944783557118 40 0.4258786991937696 40 0.4903625924964611 40 0.5684805396881093 40 0.5684805396881093 40 0.5684805396881093 40 0.5684805396881093 10 14.24999886286973 20 5.983429121673374 30 0.0 10 14.29385531155491 20 6.002626329422962 30 0.0 10 14.37682628626596 20 6.03894507128343 30 0.0 10 14.48417051778416 20 6.050892184937206 30 0.0 10 14.58405960273923 20 6.088268685623248 30 0.0 10 14.57746229649404 20 6.176302986265739 30 0.0 10 14.63914457792549 20 6.236127243853456 30 0.0 10 14.68848100991353 20 6.234743996896106 30 0.0 10 14.71550773534222 20 6.23398624782083 30 0.0 11 14.24999886286973 21 5.983429121673374 31 0.0 11 14.38234944805548 21 6.03354054690287 31 0.0 11 14.50557235399268 21 6.060874047337826 31 0.0 11 14.56490198263893 21 6.092763170005632 31 0.0 11 14.59228482940502 21 6.179319246950917 31 0.0 11 14.63792293917844 21 6.224875096539989 31 0.0 11 14.71550773534222 21 6.23398624782083 31 0.0 0 SPLINE 5 694 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 25 73 21 74 19 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.1024267330545027 40 0.1297602800818919 40 0.197497712707453 40 0.2569262051151798 40 0.334895393167218 40 0.4630065379550806 40 0.643081788279204 40 0.7670603702155669 40 1.112782894039607 40 1.401599492651631 40 1.688199605323197 40 1.851085187748075 40 1.896020137141381 40 1.92373202769659 40 1.988525936413504 40 2.088187549825836 40 2.213730447448866 40 2.273158939856593 40 2.273158939856593 40 2.273158939856593 40 2.273158939856593 10 12.84069341811242 20 6.202097171745457 30 0.0 10 12.8157785682669 20 6.228699961320543 30 0.0 10 12.7842149539863 20 6.262401958087207 30 0.0 10 12.78497765484775 20 6.330179958937721 30 0.0 10 12.80732024915193 20 6.376768777085067 30 0.0 10 12.8382640485074 20 6.44141602550405 30 0.0 10 12.93229729128316 20 6.466247588678753 30 0.0 10 13.05826702297858 20 6.445442683016324 30 0.0 10 13.20075235568714 20 6.420993361248202 30 0.0 10 13.4164613718591 20 6.402178642395536 30 0.0 10 13.66513634244144 20 6.345424975594482 30 0.0 10 13.96856061289883 20 6.331588452084327 30 0.0 10 14.22355122233503 20 6.287611861944333 30 0.0 10 14.36261169443426 20 6.256265959451277 30 0.0 10 14.46300605840581 20 6.239239494250869 30 0.0 10 14.44752914119374 20 6.186956363101507 30 0.0 10 14.40509545810078 20 6.137804673570466 30 0.0 10 14.30626910152478 20 6.123414968152568 30 0.0 10 14.20154774655513 20 6.108988495070751 30 0.0 10 14.17259005350649 20 6.051886536966928 30 0.0 10 14.16328638745738 20 6.03354054690287 30 0.0 11 12.84069341811242 21 6.202097171745457 31 0.0 11 12.78592772458025 21 6.288653248690742 31 0.0 11 12.78592772458025 21 6.315986795718131 31 0.0 11 12.80874673172206 21 6.379764947868885 31 0.0 11 12.84069341811242 21 6.429876373098373 31 0.0 11 12.91371447014173 21 6.457209873533329 31 0.0 11 13.04150121570321 21 6.448098722252488 31 0.0 11 13.21948991066238 21 6.420765221817532 31 0.0 11 13.34271291208937 21 6.407098448303834 31 0.0 11 13.68408599611205 21 6.352431447433929 31 0.0 11 13.97160626911517 21 6.325097946998972 31 0.0 11 14.25456260700421 21 6.279542097409901 31 0.0 11 14.41429613444585 21 6.247653021334528 31 0.0 11 14.45537040459499 21 6.229430672180413 31 0.0 11 14.45080656497071 21 6.202097171745457 31 0.0 11 14.40973229482157 21 6.151985746515961 31 0.0 11 14.31389223565046 21 6.124652246081012 31 0.0 11 14.19523307384775 21 6.083651972132358 31 0.0 11 14.16328638745738 21 6.03354054690287 31 0.0 0 LWPOLYLINE 5 695 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 11.34346624265632 20 4.528481389013585 10 11.38324443189869 20 4.483102567517242 10 11.337783652185 20 4.420706715256159 10 11.28095769152867 20 4.437723773317287 10 11.29232287247131 20 4.488774920204285 0 SPLINE 5 696 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 9 73 5 74 3 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.225484337789478 40 0.4721140248503555 40 0.4721140248503555 40 0.4721140248503555 40 0.4721140248503555 10 12.18787312838823 20 3.260243467710722 30 0.0 10 12.16624534542379 20 3.184379217461156 30 0.0 10 12.12096158086599 20 3.025536359998403 30 0.0 10 11.97013631327192 20 2.956116651859186 30 0.0 10 11.89134604950166 20 2.91985219032437 30 0.0 11 12.18787312838823 21 3.260243467710722 31 0.0 11 12.09891500472226 21 3.053048779501324 31 0.0 11 11.89134604950166 21 2.91985219032437 31 0.0 0 LINE 5 697 330 54C 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 0.1 100 AcDbLine 10 11.68975066236205 20 3.013410133200059 30 0.0 11 11.98121598671057 21 3.132522568947479 31 0.0 0 LWPOLYLINE 5 698 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 11.29800546294264 20 4.426379067943202 10 11.26390986417159 20 4.363983188385731 10 11.21276649398658 20 4.363983188385731 10 11.20708390351526 20 4.409362009882073 0 LWPOLYLINE 5 699 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 11.31505329029972 20 4.579532563196966 10 11.32073588077104 20 4.534153741700627 10 11.36619666048473 20 4.53982609438767 10 11.36619666048473 20 4.579532563196966 0 LWPOLYLINE 5 69A 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 11.36619666048473 20 4.596549621258095 10 11.39460966878445 20 4.613566679319223 10 11.47416604726919 20 4.60789432663218 10 11.45143562944078 20 4.53982609438767 10 11.37756184142737 20 4.53982609438767 10 11.37187925095605 20 4.590877268571052 0 LWPOLYLINE 5 69B 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 11.41165744019841 20 4.698651969624862 10 11.47416604726919 20 4.704324322311904 10 11.47984863774051 20 4.653273148128523 10 11.4571182199121 20 4.624911384693309 10 11.38892702237001 20 4.630583737380352 10 11.4059748497271 20 4.692979616937819 0 LWPOLYLINE 5 69C 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 2 70 0 43 0.0 10 11.44575303896946 20 4.732686085747118 10 11.44575303896946 20 4.709996674998947 0 LWPOLYLINE 5 69D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 11.38892702237001 20 4.81209899606933 10 11.43438785802682 20 4.817771348756373 10 11.46848340085475 20 4.766720201869375 10 11.43438785802682 20 4.727013733060076 10 11.38324443189869 20 4.744030791121204 10 11.38892702237001 20 4.783737259930504 0 LWPOLYLINE 5 69E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 11.34346624265632 20 4.85180546487863 10 11.337783652185 20 4.891511933687926 10 11.36619666048473 20 4.897184286374969 10 11.41165744019841 20 4.868822522939758 10 11.39460966878445 20 4.823443701443416 10 11.36619666048473 20 4.823443701443416 0 SPLINE 5 69F 330 54C 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 14 73 10 74 8 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.2357504692265236 40 0.3718886106253852 40 0.4376267235734807 40 0.5060049693593293 40 0.6407181188777717 40 0.7908089388698034 40 0.9540300331368531 40 0.9540300331368531 40 0.9540300331368531 40 0.9540300331368531 10 12.7996191479633 20 5.291897911218335 30 0.0 10 12.72490431716076 20 5.266157110557623 30 0.0 10 12.60704412917713 20 5.225551844211794 30 0.0 10 12.45650175958235 20 5.230477259510246 30 0.0 10 12.38353343418609 20 5.14378394827499 30 0.0 10 12.46380370745246 20 5.069965117335367 30 0.0 10 12.56381655802489 20 5.023178821171926 30 0.0 10 12.71064719537179 20 4.981111972890087 30 0.0 10 12.8021515421158 20 4.930854873266479 30 0.0 10 12.84982109736099 20 4.904673236303672 30 0.0 11 12.7996191479633 21 5.291897911218335 31 0.0 11 12.57142850360643 21 5.232675334708005 31 0.0 11 12.43907791842067 21 5.200786212040192 31 0.0 11 12.40256739240603 21 5.14611921117028 31 0.0 11 12.44364175804495 21 5.091452210300374 31 0.0 11 12.56230082435787 21 5.027674011557188 31 0.0 11 12.70377908879219 21 4.977562586327692 31 0.0 11 12.84982109736099 21 4.904673236303672 31 0.0 0 SPLINE 5 6A0 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 18 73 14 74 12 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.1324289646128412 40 0.2541956140935166 40 0.3277522529514504 40 0.3733081025405218 40 0.4390462154886251 40 0.5289161826663575 40 0.7039935308276688 40 0.8310970691341672 40 0.9882135992284235 40 1.034078513194385 40 1.094961796637691 40 1.094961796637691 40 1.094961796637691 40 1.094961796637691 10 12.3843121293987 20 5.506010339057552 30 0.0 10 12.33930079337474 20 5.501687234236161 30 0.0 10 12.2529021400648 20 5.49338909275271 30 0.0 10 12.15425013851377 20 5.522659960189838 30 0.0 10 12.06132150697201 20 5.549956368265496 30 0.0 10 12.06687941538712 20 5.620158254921214 30 0.0 10 12.10676287547423 20 5.678165606630739 30 0.0 10 12.21925382122991 20 5.705040827287496 30 0.0 10 12.3243228402293 20 5.785576144295906 30 0.0 10 12.4748446297656 20 5.823563559488883 30 0.0 10 12.56494995250251 20 5.894174146928875 30 0.0 10 12.65445803372183 20 5.904839842531953 30 0.0 10 12.68877202506535 20 5.893964526961001 30 0.0 10 12.70834283292666 20 5.887761846854814 30 0.0 11 12.3843121293987 21 5.506010339057552 31 0.0 11 12.25196154421293 21 5.501454763417136 31 0.0 11 12.13330238241022 21 5.528788263852092 31 0.0 11 12.06940900962949 21 5.565232962160322 31 0.0 11 12.06940900962949 21 5.610788811749394 31 0.0 11 12.10591953564414 21 5.665455812619306 31 0.0 11 12.18806817143221 21 5.701900464335096 31 0.0 11 12.34323785924957 21 5.782983420755414 31 0.0 11 12.46189692556247 21 5.828539270344485 31 0.0 11 12.6033751899968 21 5.896873044728096 31 0.0 11 12.64901329977021 21 5.901428620368513 31 0.0 11 12.70834283292666 21 5.887761846854814 31 0.0 0 SPLINE 5 6A1 330 54C 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 9 73 5 74 3 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.2040881775408536 40 0.3580330951395847 40 0.3580330951395847 40 0.3580330951395847 40 0.3580330951395847 10 12.73572577518256 20 5.574344113441163 30 0.0 10 12.66868093936188 20 5.56274991042756 30 0.0 10 12.55106378793625 20 5.542410131609132 30 0.0 10 12.43445211528543 20 5.516955268186429 30 0.0 10 12.3843121293987 20 5.506010339057553 30 0.0 11 12.73572577518256 21 5.574344113441163 31 0.0 11 12.53491797759178 21 5.537899461725366 31 0.0 11 12.3843121293987 21 5.506010339057553 31 0.0 0 SPLINE 5 6A2 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 12 73 8 74 6 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.2389617326044314 40 0.3786519912869321 40 0.452698231492872 40 0.5282928864127942 40 0.5614336817610949 40 0.5614336817610949 40 0.5614336817610949 40 0.5614336817610949 10 13.40363409588004 20 3.201044977566212 30 0.0 10 13.48151257725714 20 3.169745144183715 30 0.0 10 13.60491661241559 20 3.120148314984076 30 0.0 10 13.67420429017436 20 2.987314471187367 30 0.0 10 13.72192135133681 20 2.890368781845788 30 0.0 10 13.79271251376435 20 2.89978741517938 30 0.0 10 13.82404787897005 20 2.881137499730744 30 0.0 10 13.83359838823712 20 2.875453309067793 30 0.0 11 13.40363409588004 21 3.201044977566212 31 0.0 11 13.61120305110064 21 3.082648024573579 31 0.0 11 13.68533484879384 21 2.964251044284559 31 0.0 11 13.72981388265527 21 2.905052554140048 31 0.0 11 13.80394568034847 21 2.890252945252115 31 0.0 11 13.83359838823712 21 2.875453309067793 31 0.0 0 LWPOLYLINE 5 6A3 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 11 70 0 43 0.0 10 13.89480301707151 20 6.335647926987839 10 13.88811042947119 20 6.364039962114581 10 13.90986122728597 20 6.369050322860264 10 13.96507473932986 20 6.364039962114581 10 13.95670906077258 20 6.328967436894799 10 13.96674788622994 20 6.355689342674185 10 13.98849862810161 20 6.362369832767225 10 14.01861510447367 20 6.359029601368895 10 14.03200016778806 20 6.345668648479204 10 14.02028819543063 20 6.320616844750787 10 13.99351801285872 20 6.323957076149113 0 LWPOLYLINE 5 6A4 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 8 70 0 43 0.0 10 13.74422074709745 20 6.34900887987753 10 13.73920130639721 20 6.362369832767225 10 13.79943420319821 20 6.370720424911233 10 13.79943420319821 20 6.347338750530173 10 13.80612679079852 20 6.37239055425859 10 13.87639851305688 20 6.37239055425859 10 13.88811042947119 20 6.345668648479204 10 13.85632086214217 20 6.337318029038808 0 LWPOLYLINE 5 6A5 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.41005966639716 20 3.116124448243503 10 16.40290073692982 20 3.051810233305246 10 16.28119893598494 20 3.073248323148924 10 16.28119893598494 20 3.123270478191397 0 ARC 5 6A6 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 16.43547222996543 20 3.369318945041499 30 0.0 40 0.2033409246739714 100 AcDbArc 50 205.9050948384297 51 322.2224697706052 0 LWPOLYLINE 5 6A7 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 15.27593487484575 20 2.8490872389699 10 15.3051092130961 20 2.796668188315901 10 15.25551289401363 20 2.776282974654069 10 15.23509085723839 20 2.828702052604455 10 15.25843027189554 20 2.854911577931456 0 LWPOLYLINE 5 6A8 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 1 43 0.0 10 15.14280786598809 20 2.915377439255141 10 15.15370983787855 20 3.06772992207615 10 15.1973177813835 20 3.089494558579669 10 15.30633755623122 20 3.002436012565596 10 15.31723952812167 20 2.893612802751622 10 15.27363164055984 20 2.850083502448203 10 15.21912172516442 20 2.882730470851672 0 LWPOLYLINE 5 6A9 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 15.3051092130961 20 2.81122903571979 10 15.37512751301069 20 2.817053374681346 10 15.38387981448579 20 2.89859414743951 10 15.32261376010319 20 2.904418486401066 0 LWPOLYLINE 5 6AA 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 16.31699358332167 20 3.116124448243503 10 16.20245065590103 20 3.13756253808718 10 16.20245065590103 20 3.230460845520621 10 16.23108637377041 20 3.230460845520621 0 ARC 5 6AB 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 16.99334924167074 20 3.533777995882086 30 0.0 40 0.1623301329476528 100 AcDbArc 50 250.7463194283861 51 30.57349358221618 0 ARC 5 6AC 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 17.0140083937573 20 3.42720917865836 30 0.0 40 0.1547992803049185 100 AcDbArc 50 263.726253912521 51 17.37097629089793 0 ARC 5 6AD 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 17.17801136284671 20 3.524455119613428 30 0.0 40 0.1012058320239614 100 AcDbArc 50 248.1048371703011 51 56.86162728840218 0 ARC 5 6AE 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 17.22543258075438 20 3.81189180416119 30 0.0 40 0.1099805580527939 100 AcDbArc 50 212.9202343489387 51 43.71411817807977 0 ARC 5 6AF 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 17.15154421231936 20 3.669922615389909 30 0.0 40 0.1420449419267032 100 AcDbArc 50 226.8308593284818 51 38.97519660080225 0 ARC 5 6B0 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 16.95162242724218 20 3.669941291518389 30 0.0 40 0.1610763510673785 100 AcDbArc 50 273.4435369110472 51 30.67637578666996 0 ARC 5 6B1 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 16.67909489745388 20 3.568865729114017 30 0.0 40 0.2264550997229468 100 AcDbArc 50 261.6743665526308 51 21.55832221092706 0 ARC 5 6B2 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 16.8217042145543 20 3.156870230854631 30 0.0 40 0.1136255097916843 100 AcDbArc 50 214.6753318868159 51 349.8976583599319 0 ARC 5 6B3 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 16.64229268054041 20 3.205782538937056 30 0.0 40 0.1021611288511514 100 AcDbArc 50 216.7139481672672 51 18.150310335586 0 ARC 5 6B4 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 16.75993997900091 20 3.305993123447969 30 0.0 40 0.1299977962211054 100 AcDbArc 50 233.2169880022155 51 38.92630015716633 0 ARC 5 6B5 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 16.49269851911991 20 3.226561537579128 30 0.0 40 0.1399479546873447 100 AcDbArc 50 181.3293524689056 51 340.7572232495228 0 LINE 5 6B6 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 16.53090268447245 20 2.821390879524237 30 0.0 11 16.57065782514846 21 2.776416290200895 31 0.0 0 LINE 5 6B7 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 16.48054621024494 20 2.781707421567922 30 0.0 11 16.51500062820206 21 2.734087266561065 31 0.0 0 LINE 5 6B8 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 16.45669312583933 20 2.834618680645416 30 0.0 11 16.48584687702069 21 2.794935222689101 31 0.0 0 LINE 5 6B9 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 16.40898695702813 20 2.794935222689101 30 0.0 11 16.44079106956893 21 2.755251792029174 31 0.0 0 LINE 5 6BA 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 16.34802909330596 20 2.765834027466841 30 0.0 11 16.37453253907101 21 2.720859465439886 31 0.0 0 LINE 5 6BB 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 16.57595854786734 20 2.869011007234703 30 0.0 11 16.61836399395966 21 2.829327549278392 31 0.0 0 LINE 5 6BC 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 16.61041296582445 20 2.919276727925073 30 0.0 11 16.65546877327622 21 2.887529967019297 31 0.0 0 LINE 5 6BD 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 16.64221707836526 20 2.977479118369597 30 0.0 11 16.68727288581702 21 2.956314620197876 31 0.0 0 ARC 5 6BE 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 16.58157202352414 20 3.368372377768716 30 0.0 40 0.1083698228811047 100 AcDbArc 50 217.8205352485205 51 6.439951993915755 0 ARC 5 6BF 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 16.61571382722453 20 3.330894681064133 30 0.0 40 0.1232022843832495 100 AcDbArc 50 193.6017093246627 51 27.44244905046913 0 ARC 5 6C0 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 16.46442711106761 20 3.327750944973896 30 0.0 40 0.0759712809389227 100 AcDbArc 50 183.3140353409487 51 314.2547573177127 0 ARC 5 6C1 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 16.94583713200231 20 3.261912653948929 30 0.0 40 0.1247142893057796 100 AcDbArc 50 235.6070018717064 51 29.51807762570092 0 ARC 5 6C2 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 16.85260556861009 20 3.379328112734553 30 0.0 40 0.1422063597414475 100 AcDbArc 50 243.6483350916746 51 15.05157605803323 0 ARC 5 6C3 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 16.89110070443318 20 3.522765794066286 30 0.0 40 0.1168738724708039 100 AcDbArc 50 226.7090436935508 51 14.50162958254331 0 ARC 5 6C4 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 17.27701776265076 20 3.756662110045494 30 0.0 40 0.1040595055288882 100 AcDbArc 50 249.4532064763183 51 35.05822504752487 0 ARC 5 6C5 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 17.32672684479094 20 3.930779574727734 30 0.0 40 0.1528435074219888 100 AcDbArc 50 259.0780186004003 51 37.42664638543161 0 SPLINE 5 6C6 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 14 73 10 74 0 42 0.0000000001 43 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.2570080014988499 40 0.5689580648009818 40 0.7764751904338273 40 0.84210057580066 40 0.9706493430526158 40 1.088972798810176 40 1.20735832564968 40 1.20735832564968 40 1.20735832564968 40 1.20735832564968 10 22.21535455129953 20 2.402585275486739 30 0.0 10 22.15905674966032 20 2.397476538567683 30 0.0 10 21.96418256212719 20 2.342578255365335 30 0.0 10 21.71531476068035 20 2.269523805086235 30 0.0 10 21.52819426581802 20 2.216295602002809 30 0.0 10 21.38866177745257 20 2.221197969209059 30 0.0 10 21.320021636486 20 2.328561765670665 30 0.0 10 21.36156286933713 20 2.461334625044715 30 0.0 10 21.43288933737349 20 2.490760372373724 30 0.0 10 21.47328257844022 20 2.499458018579023 30 0.0 0 ARC 5 6C7 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 18.84781825526683 20 1.128718648417267 30 0.0 40 0.1372026067781706 100 AcDbArc 50 335.8486668612359 51 72.68426804261665 0 ARC 5 6C8 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 19.49392652215085 20 0.8856745248028357 30 0.0 40 0.682557255206732 100 AcDbArc 50 101.5466942811572 51 165.734222771695 0 ARC 5 6C9 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 18.39258952122429 20 1.182676700116147 30 0.0 40 0.1126694947573545 100 AcDbArc 50 282.7184004146737 51 92.49801050690171 0 ARC 5 6CA 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 18.23976700936391 20 1.291284409030726 30 0.0 40 0.1384344854053794 100 AcDbArc 50 290.6671447617841 51 67.12546689828669 0 ARC 5 6CB 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 18.14512744691881 20 1.143712720592056 30 0.0 40 0.1355624431548692 100 AcDbArc 50 274.1357912059709 51 18.38858816808015 0 ARC 5 6CC 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 18.01337856142329 20 1.277340251101083 30 0.0 40 0.1546803700077893 100 AcDbArc 50 308.8135712238714 51 43.71020285240297 0 ARC 5 6CD 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 18.49189738054032 20 1.322429590946761 30 0.0 40 0.1493722472319169 100 AcDbArc 50 308.9430341836152 51 51.05696581638385 0 ARC 5 6CE 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 18.62237671846299 20 1.251241027141993 30 0.0 40 0.128302494914303 100 AcDbArc 50 291.7787678072784 51 8.64234307221546 0 ARC 5 6CF 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 18.57569153588773 20 1.108264378039473 30 0.0 40 0.0855275868782646 100 AcDbArc 50 276.7774522140741 51 76.47750189154933 0 ARC 5 6D0 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 19.30382884162212 20 1.13715622662923 30 0.0 40 0.0880936055292437 100 AcDbArc 50 348.3469272248842 51 120.6754878347363 0 ARC 5 6D1 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 19.39040253979863 20 1.000688236677952 30 0.0 40 0.1411803721863959 100 AcDbArc 50 6.408496523720872 51 129.2568527456782 0 ARC 5 6D2 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 19.18026215938672 20 0.9557512370138407 30 0.0 40 0.2153217897481084 100 AcDbArc 50 17.67432917528538 51 92.77360729629791 0 ARC 5 6D3 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 19.22551489125235 20 1.492421885445958 30 0.0 40 0.110349000981764 100 AcDbArc 50 236.8400165463349 51 31.29381297719834 0 ARC 5 6D4 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 19.12473156866168 20 1.308859710599698 30 0.0 40 0.1596669997688124 100 AcDbArc 50 327.1625048568583 51 41.22239446339433 0 ARC 5 6D5 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 19.01600339520422 20 1.437204746090481 30 0.0 40 0.1882216174286093 100 AcDbArc 50 276.9018507894152 51 23.51926752223028 0 ARC 5 6D6 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 19.0995018331195 20 1.207849548397891 30 0.0 40 0.1128754145033374 100 AcDbArc 50 299.9085275024687 51 73.08084414251038 0 ARC 5 6D7 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 19.04517696696136 20 1.019673972381587 30 0.0 40 0.1752621816150802 100 AcDbArc 50 348.1554478840495 51 95.21433106943366 0 ARC 5 6D8 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 18.89073781887388 20 1.202634488248685 30 0.0 40 0.1683956216419361 100 AcDbArc 50 306.8622072414302 51 57.02777495690167 0 ARC 5 6D9 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbCircle 10 19.20409096617049 20 1.155319848272894 30 0.0 40 0.1070375592153118 100 AcDbArc 50 334.9543794125319 51 111.3305110353353 0 SPLINE 5 6DA 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 16 73 12 74 0 42 0.0000000001 43 0.0000000001 40 0.1076468400089118 40 0.1076468400089118 40 0.1076468400089118 40 0.1076468400089118 40 0.1717118582229463 40 0.2758821037042777 40 0.5523490998586884 40 0.7318472352653992 40 0.9529160119933701 40 1.126627757685696 40 1.34473339324684 40 1.535258087202309 40 1.644480112693463 40 1.644480112693463 40 1.644480112693463 40 1.644480112693463 10 20.73461276417844 20 2.609707256308276 30 0.0 10 20.75565643304142 20 2.610896070307621 30 0.0 10 20.80869936109598 20 2.605452276275347 30 0.0 10 20.92435161528947 20 2.496219200379277 30 0.0 10 21.00253161127249 20 2.3193973689458 30 0.0 10 20.99202915588804 20 2.088995440063904 30 0.0 10 21.08075385112438 20 1.913242269300102 30 0.0 10 21.09325333557265 20 1.705325114959258 30 0.0 10 21.19345856333822 20 1.535146590806473 30 0.0 10 21.29816141154595 20 1.392311882294055 30 0.0 10 21.38156559344043 20 1.341449353203625 30 0.0 10 21.41399825655294 20 1.325765058544966 30 0.0 0 POINT 5 6DB 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.04953630270314 20 1.762911950774629 30 0.0 0 POINT 5 6DC 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.08233463641246 20 1.566476842619547 30 0.0 0 POINT 5 6DD 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.06265563618687 20 1.612311704828584 30 0.0 0 POINT 5 6DE 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.0364169692194 20 1.671242226356554 30 0.0 0 POINT 5 6DF 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.00361863551007 20 1.658146567037622 30 0.0 0 POINT 5 6E0 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.01017830225194 20 1.60576387516912 30 0.0 0 POINT 5 6E1 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.0364169692194 20 1.540285496685296 30 0.0 0 POINT 5 6E2 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.96426069100201 20 1.553381156004231 30 0.0 0 POINT 5 6E3 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.93802202403455 20 1.677790083312409 30 0.0 0 POINT 5 6E4 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.8921043568415 20 1.756364121115161 30 0.0 0 POINT 5 6E5 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.9839396912276 20 1.802198983324199 30 0.0 0 POINT 5 6E6 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.23320691553223 20 1.389685223442867 30 0.0 0 POINT 5 6E7 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.21352791530664 20 1.370041734464468 30 0.0 0 POINT 5 6E8 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.14793130383111 20 1.546833326344764 30 0.0 0 POINT 5 6E9 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.19384891508104 20 1.461711458882543 30 0.0 0 POINT 5 6EA 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.18072958159732 20 1.415876596673506 30 0.0 0 POINT 5 6EB 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.12825230360552 20 1.42242442633297 30 0.0 0 POINT 5 6EC 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.10857330337992 20 1.474807118201475 30 0.0 0 POINT 5 6ED 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.93146235729268 20 2.253999748458717 30 0.0 0 POINT 5 6EE 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.8921043568415 20 2.214712743205531 30 0.0 0 POINT 5 6EF 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.95770102426014 20 2.188521369974893 30 0.0 0 POINT 5 6F0 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.93802202403455 20 2.129590848446923 30 0.0 0 POINT 5 6F1 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.97738002448573 20 2.103399502512672 30 0.0 0 POINT 5 6F2 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.94458169077641 20 2.057564640303635 30 0.0 0 POINT 5 6F3 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.99049935796946 20 1.998634091479278 30 0.0 0 POINT 5 6F4 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.96426069100201 20 1.952799229270244 30 0.0 0 POINT 5 6F5 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.00361863551007 20 1.887320878082807 30 0.0 0 POINT 5 6F6 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.82650768942285 20 2.509365405438153 30 0.0 0 POINT 5 6F7 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.85930602313217 20 2.470078372888583 30 0.0 0 POINT 5 6F8 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.83962702290658 20 2.430791367635396 30 0.0 0 POINT 5 6F9 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.88554469009963 20 2.41114785136061 30 0.0 0 POINT 5 6FA 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.85930602313217 20 2.37186081881104 30 0.0 0 POINT 5 6FB 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.86586568987404 20 2.286738951348819 30 0.0 0 POINT 5 6FC 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 20.91834302380895 20 2.326025956602006 30 0.0 0 POINT 5 6FD 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.50871286274746 20 2.240904089139782 30 0.0 0 POINT 5 6FE 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.47591452903812 20 2.280191094392968 30 0.0 0 POINT 5 6FF 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.4234371951032 20 2.280191094392968 30 0.0 0 POINT 5 700 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.43655652858693 20 2.306382440327219 30 0.0 0 POINT 5 701 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.38407919465201 20 2.319478126942538 30 0.0 0 POINT 5 702 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.4234371951032 20 2.365312989151576 30 0.0 0 POINT 5 703 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.37751952791015 20 2.398052164745294 30 0.0 0 POINT 5 704 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.4234371951032 20 2.417695681020077 30 0.0 0 POINT 5 705 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.71862208660088 20 2.319478126942538 30 0.0 0 POINT 5 706 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.69238347557655 20 2.339121643217321 30 0.0 0 POINT 5 707 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.63334647489976 20 2.280191094392968 30 0.0 0 POINT 5 708 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.59398847444858 20 2.326025956602006 30 0.0 0 POINT 5 709 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.54807080725552 20 2.286738951348819 30 0.0 0 POINT 5 70A 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.92197169965558 20 2.404600021701146 30 0.0 0 POINT 5 70B 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.90885236617185 20 2.45043488391018 30 0.0 0 POINT 5 70C 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.90885236617185 20 2.37186081881104 30 0.0 0 POINT 5 70D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.82357675447073 20 2.391504335085826 30 0.0 0 POINT 5 70E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.79733808750327 20 2.332573813557857 30 0.0 0 POINT 5 70F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.75798008705208 20 2.358765159492108 30 0.0 0 POINT 5 710 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 22.11220197922655 20 2.41114785136061 30 0.0 0 POINT 5 711 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 22.00724736729984 20 2.41114785136061 30 0.0 0 POINT 5 712 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 22.12532131271028 20 2.463530543229115 30 0.0 0 POINT 5 713 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 22.19091798012894 20 2.555200267647187 30 0.0 0 POINT 5 714 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 22.08596331225909 20 2.548652437987723 30 0.0 0 POINT 5 715 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 22.05316503449289 20 2.489721889163366 30 0.0 0 POINT 5 716 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 22.00724736729984 20 2.483174059503898 30 0.0 0 POINT 5 717 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPoint 10 21.98100870033238 20 2.45043488391018 30 0.0 0 SPLINE 5 718 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 10 73 6 74 0 42 0.0000000001 43 0.0000000001 40 0.0883721737458494 40 0.0883721737458494 40 0.0883721737458494 40 0.0883721737458494 40 0.2142683423381722 40 0.4139050387732545 40 0.5341666284258798 40 0.5341666284258798 40 0.5341666284258798 40 0.5341666284258798 10 19.94080491937845 20 4.439677731556057 30 0.0 10 19.89904468129255 20 4.430988051696711 30 0.0 10 19.79593371679809 20 4.39956063961812 30 0.0 10 19.69653768989638 20 4.279611773613258 30 0.0 10 19.61149385896163 20 4.2158707468719 30 0.0 10 19.5795227395679 20 4.191908138957504 30 0.0 0 LWPOLYLINE 5 719 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 11 70 1 43 0.0 10 18.25849583667408 20 3.845725906089072 10 18.30144946942128 20 3.902894091079435 10 18.36587983462739 20 3.924332153626725 10 18.42315127036614 20 3.974354308669198 10 18.45894597364599 20 3.981500338617092 10 18.53053526831944 20 3.967208306017692 10 18.5734888451235 20 3.888602031183651 10 18.55917098618881 20 3.867163968636361 10 18.4016744819641 20 3.824287816245394 10 18.32292625782331 20 3.767119631255031 10 18.27997262507612 20 3.774265661202921 0 LWPOLYLINE 5 71A 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 1 43 0.0 10 18.40883341143145 20 4.067252643399026 10 18.4016744819641 20 4.153004920884573 10 18.48758169151537 20 4.174442983431863 10 18.65939605467477 20 4.174442983431863 10 18.71666749041352 20 4.167296953483969 10 18.70950856094619 20 4.045814553555349 10 18.49474062098271 20 4.045814553555349 0 LWPOLYLINE 5 71B 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 8 70 1 43 0.0 10 18.12963510626188 20 3.938624213522512 10 18.27997262507612 20 3.895748061131545 10 18.32292625782331 20 3.981500338617092 10 18.39451555249677 20 4.060106613451132 10 18.38735662302942 20 4.160150950832463 10 18.35872090516004 20 4.174442983431863 10 18.29429053995393 20 4.131566831040895 10 18.13679403572922 20 3.967208306017692 0 LWPOLYLINE 5 71C 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 9 70 1 43 0.0 10 18.70234963147884 20 3.931478183574618 10 18.72382641988087 20 3.902894091079435 10 18.85984613570355 20 3.895748061131545 10 18.87416399463823 20 3.917186123678835 10 18.85268720623621 20 3.945770216174018 10 18.85984613570355 20 3.981500338617092 10 18.83836934730152 20 4.002938428460769 10 18.76677999668494 20 3.995792398512875 10 18.70950856094619 20 3.952916246121908 0 LWPOLYLINE 5 71D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 19.51875021540973 20 3.59752492248883 10 19.52207760043458 20 3.614131879654074 10 19.49878584931758 20 3.614131879654074 10 19.49878584931758 20 3.587560759108239 10 19.51875021540973 20 3.590882128704176 0 LWPOLYLINE 5 71E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 19.57531587271826 20 3.614131879654074 10 19.54869673657641 20 3.617453276546399 10 19.54536935155158 20 3.58423936221591 10 19.56866104672546 20 3.574275171538936 0 LWPOLYLINE 5 71F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 19.48880369424306 20 3.574275171538936 10 19.48214892419338 20 3.587560759108239 10 19.46551194312606 20 3.574275171538936 10 19.46883932815089 20 3.55434684477775 10 19.48547630921821 20 3.557668214373691 0 LWPOLYLINE 5 720 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 19.50876800439209 20 3.580917965323585 10 19.52873237048426 20 3.587560759108239 10 19.53538714053394 20 3.560989611266016 10 19.51209544536006 20 3.557668214373691 0 LWPOLYLINE 5 721 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 2 70 0 43 0.0 10 19.29914241216843 20 3.713773622645536 10 19.29248764211875 20 3.720416416430186 0 LWPOLYLINE 5 722 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 19.31910672231747 20 3.663952751149803 10 19.30579718221811 20 3.667274148042132 10 19.31577933729263 20 3.677238311422723 0 LWPOLYLINE 5 723 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 2 70 0 43 0.0 10 19.3590354545018 20 3.647345793984559 10 19.34572585845931 20 3.647345793984559 0 LWPOLYLINE 5 724 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 2 70 0 43 0.0 10 19.35570806947696 20 3.700488062372617 10 19.36236283952664 20 3.707130828860883 0 LWPOLYLINE 5 725 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 19.33241631835996 20 3.710452225753211 10 19.33241631835996 20 3.720416416430186 10 19.34239847343448 20 3.717095019537861 0 LWPOLYLINE 5 726 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 2 70 0 43 0.0 10 19.30579718221811 20 3.75030893386835 10 19.30246979719328 20 3.763594494141266 0 LWPOLYLINE 5 727 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 19.34239847343448 20 3.77355865752186 10 19.34239847343448 20 3.786844245091163 10 19.33241631835996 20 3.78020145130651 0 SPLINE 5 728 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 10 73 6 74 0 42 0.0000000001 43 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.2291437570364742 40 0.3792320592723002 40 0.4815124343960929 40 0.4815124343960929 40 0.4815124343960929 40 0.4815124343960929 10 19.5795227395679 20 4.191908138957504 30 0.0 10 19.63891306151671 20 4.134103556591281 30 0.0 10 19.70460009256586 20 3.995792398512875 30 0.0 10 19.6999189124411 20 3.867597107243309 30 0.0 10 19.72242029018441 20 3.788163431742539 30 0.0 10 19.73581675957376 20 3.756998565566249 30 0.0 0 LWPOLYLINE 5 729 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 19.43889280698421 20 3.866557634025053 10 19.42225588186001 20 3.859914840240403 10 19.42558326688485 20 3.873200400513322 0 LWPOLYLINE 5 72A 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 2 70 0 43 0.0 10 19.5154228303849 20 3.916378505520786 10 19.50211323434241 20 3.913057108628461 0 LWPOLYLINE 5 72B 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 2 70 0 43 0.0 10 19.44887501800185 20 3.73702337359543 10 19.45885717307636 20 3.743666140083696 0 LWPOLYLINE 5 72C 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 2 70 0 43 0.0 10 19.46551194312606 20 3.796808408471754 10 19.47549409820057 20 3.800129805364079 0 LWPOLYLINE 5 72D 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 19.47216671317574 20 3.823379529017589 10 19.47882153916853 20 3.836665116586893 10 19.47882153916853 20 3.826700925909914 0 LWPOLYLINE 5 72E 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 19.53538714053394 20 3.839986486182834 10 19.54536935155158 20 3.823379529017589 10 19.52873237048426 20 3.823379529017589 10 19.51875021540973 20 3.836665116586893 0 LWPOLYLINE 5 72F 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 19.49878584931758 20 3.703809459264942 10 19.51209544536006 20 3.683881105207372 10 19.53871452555878 20 3.670595544934457 10 19.56200627667579 20 3.680559708315048 10 19.55202412160126 20 3.717095019537861 0 LWPOLYLINE 5 730 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 19.43556542195936 20 3.663952751149803 10 19.45552978805153 20 3.660631354257478 10 19.45885717307636 20 3.673916914530398 10 19.43889280698421 20 3.683881105207372 0 LWPOLYLINE 5 731 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 19.64186368510131 20 3.849950676859812 10 19.65517322520067 20 3.836665116586893 10 19.67513759129283 20 3.843307883075159 10 19.66515538027519 20 3.856593443348078 0 LWPOLYLINE 5 732 330 54C 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 19.61857193398431 20 3.78020145130651 10 19.63188147408367 20 3.78020145130651 10 19.63520885910851 20 3.796808408471754 10 19.61524454895946 20 3.793487011579429 10 19.61857193398431 20 3.78020145130651 0 ENDBLK 5 734 330 54C 100 AcDbEntity 8 0 48 0.1 100 AcDbBlockEnd 0 BLOCK 5 1AF2 330 1A01 100 AcDbEntity 8 0 48 0.1 100 AcDbBlockBegin 2 A$C20A84848 70 0 10 0.0 20 0.0 30 0.0 3 A$C20A84848 1 0 SPLINE 5 1A02 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 99 73 95 74 93 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 21.12942074999109 40 35.93752274333123 40 64.26816025381477 40 77.73367095005434 40 86.45624008040506 40 109.0185487539368 40 134.4425659286196 40 155.9770158989111 40 170.8756959524833 40 188.6295240773183 40 210.2003630405114 40 251.663692518559 40 291.2516135186009 40 306.3416016946865 40 311.7504189221321 40 332.9713760532342 40 336.7582941825066 40 339.2643372208327 40 344.2143871741532 40 349.379174727292 40 372.7610556080161 40 394.1509756195594 40 408.9027673767168 40 421.4939013160281 40 425.2771686473256 40 431.2368715992061 40 443.458261217636 40 455.7633943415678 40 470.8203939780214 40 482.5427532470723 40 491.7881596823503 40 496.1494405635313 40 513.7021477360231 40 534.0665797052362 40 543.9010416985074 40 548.2866283849337 40 559.0123655708888 40 569.3541557605059 40 577.5961760260407 40 591.1001208918613 40 606.4795948038214 40 627.007506868402 40 645.5578501519688 40 670.356561843189 40 686.3360879731791 40 696.532598495215 40 711.5811308943504 40 740.7579755422979 40 772.3130703641746 40 809.3000897078097 40 826.9451997119892 40 849.2073825621289 40 867.3862226087221 40 893.6181604396736 40 915.2544316520847 40 942.5226917219703 40 966.3301298557422 40 1006.115217599333 40 1037.16907905373 40 1062.888199330001 40 1094.44327989508 40 1136.376398653212 40 1153.747238643382 40 1161.584490944449 40 1174.865310175221 40 1196.271224274284 40 1223.646895935727 40 1233.233034630361 40 1237.662347716478 40 1244.599221523934 40 1251.184615556964 40 1262.189975261701 40 1280.829285691863 40 1291.775964271044 40 1304.716599561785 40 1309.76848844786 40 1316.984479541121 40 1327.490529784547 40 1349.292134229355 40 1377.056259261791 40 1404.013455247461 40 1423.639284247198 40 1444.449860856297 40 1477.557318634935 40 1501.280157849974 40 1508.544882610009 40 1514.451986428381 40 1519.221155544904 40 1526.739304013406 40 1540.838890796365 40 1551.56462798232 40 1554.14702968124 40 1554.14702968124 40 1554.14702968124 40 1554.14702968124 10 -0.0000005450347089 20 84.91953272488899 30 0.0 10 3.238406659264616 20 91.37877476689505 30 0.0 10 8.746382194122748 20 102.3648382532484 30 0.0 10 27.96224346610369 20 113.3792480413791 30 0.0 10 35.22300270232852 20 132.703583110347 30 0.0 10 36.15335245849105 20 149.491765604186 30 0.0 10 42.43133909249286 20 163.3666224296977 30 0.0 10 57.22446605459732 20 175.8063840446492 30 0.0 10 74.18205521159295 20 191.4324160240409 30 0.0 10 90.29972518864358 20 204.2258244722356 30 0.0 10 107.0564163570572 20 212.4548834801992 30 0.0 10 125.5546595118749 20 209.7848961884285 30 0.0 10 151.8017403692869 20 203.7495585080054 30 0.0 10 185.9951091887281 20 209.863855022651 30 0.0 10 218.0586893092081 20 218.6677598750352 30 0.0 10 232.2092517081444 20 233.2957253951398 30 0.0 10 243.7481168004221 20 241.0172158560584 30 0.0 10 252.2617293121407 20 246.9955858534081 30 0.0 10 261.2695664532858 20 249.1395129396618 30 0.0 10 264.230996451375 20 251.8652436696171 30 0.0 10 263.495054014704 20 256.6094054758925 30 0.0 10 271.1555233662569 20 265.4183750008117 30 0.0 10 275.799755875576 20 281.4774867722768 30 0.0 10 284.406790603144 20 299.7191487709218 30 0.0 10 295.3063599080292 20 311.6402366452319 30 0.0 10 303.5600193375739 20 318.7461254458492 30 0.0 10 305.3385680404895 20 326.2022095702251 30 0.0 10 311.0329612716197 20 331.2179576080467 30 0.0 10 319.0802177093079 20 337.5537091400419 30 0.0 10 324.5012792458552 20 349.8325359383376 30 0.0 10 332.4414203483142 20 360.5886483511994 30 0.0 10 333.2263323387341 20 372.8886924815764 30 0.0 10 335.7864553821319 20 380.9322329654575 30 0.0 10 339.8265115983889 20 390.5756792804016 30 0.0 10 350.9929364060454 20 399.9572085405631 30 0.0 10 363.3195854605679 20 410.1000626735414 30 0.0 10 369.2066157727363 20 420.1829680890517 30 0.0 10 375.136888684668 20 426.0657023733822 30 0.0 10 382.5206134119581 20 430.4901066238702 30 0.0 10 388.2689747810784 20 438.6750426857165 30 0.0 10 397.5216602697335 20 444.2766791202541 30 0.0 10 406.5227129950343 20 452.7881589630398 30 0.0 10 418.4141945926762 20 464.314449990959 30 0.0 10 434.8864100149873 20 472.4937794077918 30 0.0 10 450.5718006059698 20 487.0851061314483 30 0.0 10 465.2800487523685 20 500.116313621177 30 0.0 10 478.6205244624684 20 511.0273422776677 30 0.0 10 485.4627973575126 20 523.1138557225765 30 0.0 10 498.5318149198404 20 535.867940733252 30 0.0 10 517.02124513724 20 553.0402374194466 30 0.0 10 543.9243029146551 20 571.6696192961692 30 0.0 10 563.3551432714163 20 593.1029204841798 30 0.0 10 583.8526331691602 20 608.5396757573051 30 0.0 10 598.3358583806573 20 621.4523443769149 30 0.0 10 612.4319775518232 20 638.8502597830121 30 0.0 10 631.4740783647314 20 650.4630456464179 30 0.0 10 649.6727173803178 20 667.7644058376819 30 0.0 10 665.6606311411767 20 685.9973021441952 30 0.0 10 687.4591395506286 20 707.041692631692 30 0.0 10 709.4482425947854 20 729.6955384033092 30 0.0 10 733.8361729065484 20 750.7177086402962 30 0.0 10 755.088650175473 20 771.1490451395639 30 0.0 10 782.0297382745482 20 790.4665815156914 30 0.0 10 804.3899529249266 20 810.912841603905 30 0.0 10 823.7108246273194 20 822.7095844912678 30 0.0 10 831.4360213880007 20 833.389322446858 30 0.0 10 845.6482697404348 20 837.5788007805844 30 0.0 10 863.5580705426033 20 847.7881725606273 30 0.0 10 879.947622502091 20 857.6861859354247 30 0.0 10 893.115966430742 20 863.547275756588 30 0.0 10 896.339556749719 20 870.2559309452965 30 0.0 10 903.1096916557114 20 871.1902956215332 30 0.0 10 907.5559186000862 20 878.5373798852928 30 0.0 10 917.4075998340798 20 885.6556753420603 30 0.0 10 929.1305128111277 20 892.5097108935194 30 0.0 10 943.0435870140339 20 896.3908402047254 30 0.0 10 950.2448296107973 20 902.9154719848525 30 0.0 10 956.480450347048 20 909.0244501199267 30 0.0 10 964.7258626046689 20 908.5252400433118 30 0.0 10 975.5618256168846 20 916.8205744739957 30 0.0 10 994.1518324270955 20 924.1291277260895 30 0.0 10 1016.108095851097 20 937.3074045988937 30 0.0 10 1038.136856319676 20 948.6538599125957 30 0.0 10 1058.538949655063 20 958.0488221058224 30 0.0 10 1080.501271274753 20 969.0332140814954 30 0.0 10 1103.014764028069 20 981.3948971975337 30 0.0 10 1122.533759909702 20 991.2082063476116 30 0.0 10 1130.558174076732 20 1000.680876900294 30 0.0 10 1132.420992509598 20 1006.79325243648 30 0.0 10 1129.794090401499 20 1012.659660821354 30 0.0 10 1122.616643003138 20 1017.963347863739 30 0.0 10 1116.643751596226 20 1027.195143789562 30 0.0 10 1107.687603942746 20 1031.204849308394 30 0.0 10 1105.545889018229 20 1035.135766923079 30 0.0 10 1105.130296101178 20 1035.898548887882 30 0.0 11 -0.0000005450347089 21 84.91953272488899 31 0.0 11 11.5256238745751 21 102.6286378114891 31 0.0 11 23.05126641643801 21 111.9259195993217 31 0.0 11 35.02017920388971 21 137.6041233612049 31 0.0 11 37.23663916534496 21 150.8859637287823 31 0.0 11 40.78300047482116 21 158.8550624040653 31 0.0 11 56.2982564494996 21 175.2359843781159 31 0.0 11 75.35987373365788 21 192.0596402177616 31 0.0 11 92.64831942419915 21 204.8987282355374 31 0.0 11 106.3904219275173 21 210.6541853092203 31 0.0 11 124.1221559859004 21 209.7687360622512 31 0.0 11 145.4002332315103 21 206.226911348087 31 0.0 11 186.6265226192081 21 210.6541853092203 31 0.0 11 223.4198739617495 21 225.2642087893473 31 0.0 11 234.9454983813593 21 235.0042152006644 31 0.0 11 239.3784364265193 21 238.1033060492336 31 0.0 11 257.9967290983331 21 248.2860463261313 31 0.0 11 261.5430904078093 21 249.6142294386809 31 0.0 11 263.3162620014227 21 251.385137174715 31 0.0 11 264.2028387371065 21 256.2551450014143 31 0.0 11 266.8626051886494 21 260.6824097204371 31 0.0 11 276.6150580146495 21 281.9333395212015 31 0.0 11 286.3675108406459 21 300.9706277203367 31 0.0 11 296.119963666646 21 312.038826486314 31 0.0 11 304.0992448990291 21 321.7788328976166 31 0.0 11 305.4291281248042 21 325.3206576117809 31 0.0 11 309.4187778021223 21 329.7479315729142 31 0.0 11 318.2846357701892 21 338.1597641137777 31 0.0 11 324.4907454089589 21 348.7852290141599 31 0.0 11 331.5834317834124 21 362.0670601396414 31 0.0 11 333.7999098671171 21 373.5779650448676 31 0.0 11 336.4596763186637 21 382.4325222092156 31 0.0 11 338.232847912277 21 386.4170715468644 31 0.0 11 350.2017606997287 21 399.2561780488613 31 0.0 11 364.830439938727 21 413.4234584212972 31 0.0 11 370.5932612096585 21 421.3925570965803 31 0.0 11 373.6963160290433 21 424.4916571872599 31 0.0 11 382.1188856292683 21 431.1325727500079 31 0.0 11 389.2115901259712 21 438.6589375596959 31 0.0 11 395.8609518880839 21 443.5289361442992 31 0.0 11 406.0567112041753 21 452.3834840665513 31 0.0 11 417.5823356237851 21 462.5662243434489 31 0.0 11 434.8707813143301 21 473.6344138673157 31 0.0 11 449.0561721854865 21 485.5880711223435 31 0.0 11 467.6744829795498 21 501.9689930963941 31 0.0 11 479.2001255214127 21 513.0371826202608 31 0.0 11 484.9629286700946 21 521.4490151611244 31 0.0 11 495.1586879861824 21 532.5172046849911 31 0.0 11 516.8800535996342 21 551.9972082655149 31 0.0 11 541.7044921547203 21 571.4772303302452 31 0.0 11 568.7453906712617 21 596.7127094686438 31 0.0 11 582.4874750523304 21 607.7809082346211 31 0.0 11 598.8893077626889 21 622.8336378540116 31 0.0 11 611.301527040232 21 636.115468979493 31 0.0 11 632.1363159180036 21 652.053666330059 31 0.0 11 648.0948783827734 21 666.6636805680755 31 0.0 11 666.7132072990898 21 686.5864272562903 31 0.0 11 683.5583464995397 21 703.410083095936 31 0.0 11 711.9290919973536 21 731.3019099752128 31 0.0 11 734.9803589588264 21 752.1101151524926 31 0.0 11 754.0419762429847 21 769.3764956156228 31 0.0 11 778.8663966758213 21 788.8565176803531 31 0.0 11 811.6701164632941 21 814.9774368236103 31 0.0 11 825.4122189666086 21 825.6029109660884 31 0.0 11 830.7317337474486 21 831.3583680397714 31 0.0 11 842.7006465349004 21 837.1138251134398 31 0.0 11 861.7622638190587 21 846.8538407668528 31 0.0 11 885.7001075162115 21 860.1356718923343 31 0.0 11 893.6793887485983 21 865.4484043425181 31 0.0 11 896.3391552001448 21 868.9902198145718 31 0.0 11 902.5452648389146 21 872.0893199052662 31 0.0 11 906.9781666395719 21 876.959309247759 31 0.0 11 915.4007543620501 21 884.0429494339769 31 0.0 11 931.8026051946617 21 892.897506598325 31 0.0 11 941.9983463885001 21 896.8820559359738 31 0.0 11 952.1941057045879 21 904.8511546112568 31 0.0 11 956.1837372596565 21 907.9502547019364 31 0.0 11 963.2764417563594 21 909.2784378144861 31 0.0 11 972.5855880922681 21 914.1484363990894 31 0.0 11 992.0905118665141 21 923.8884520525026 31 0.0 11 1016.471643931512 21 937.170283177984 31 0.0 11 1040.409487628665 21 949.5666558143858 31 0.0 11 1058.141221687048 21 957.9784791131533 31 0.0 11 1076.759514358866 21 967.27575165889 31 0.0 11 1106.016890959112 21 982.7712243859714 31 0.0 11 1125.965084978946 21 995.6103308879683 31 0.0 11 1130.398023024106 21 1001.365787961636 31 0.0 11 1131.727906249878 21 1007.121245035305 31 0.0 11 1129.954734656265 21 1011.548528238534 31 0.0 11 1124.635201753175 21 1016.861260688732 31 0.0 11 1114.882748927175 21 1027.043991723519 31 0.0 11 1106.46017932695 21 1033.684907286267 31 0.0 11 1105.130296101178 21 1035.898548887882 31 0.0 0 SPLINE 5 1A03 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 29 73 25 74 0 42 0.0000000001 43 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 11.97106397744258 40 28.93576581549516 40 41.15636329885484 40 49.32587509183927 40 55.98999597355068 40 66.64633492573229 40 85.74063645799649 40 107.5422205606598 40 127.2139872659279 40 142.8821209515811 40 167.6774446280823 40 208.9426084043383 40 252.9982931422126 40 313.9907504768675 40 328.9888035579033 40 347.4219160848417 40 372.7947190848851 40 409.6948685026145 40 426.1650426389579 40 457.4219572563114 40 492.7012383792273 40 525.6557252678056 40 525.6557252678056 40 525.6557252678056 40 525.6557252678056 10 1121.975453423881 20 1042.9821890741 30 0.0 10 1124.85931292042 20 1040.108145403733 30 0.0 10 1131.830011865291 20 1033.16117270803 30 0.0 10 1147.209140879385 20 1032.386179013206 30 0.0 10 1154.581270103848 20 1021.847089113289 30 0.0 10 1160.9731906991 20 1014.737458119678 30 0.0 10 1170.071806617666 20 1014.787569537526 30 0.0 10 1181.287209941769 20 1019.270636906832 30 0.0 10 1197.551106006689 20 1025.044845512151 30 0.0 10 1214.97253316973 20 1035.43956654577 30 0.0 10 1233.245747695353 20 1041.29744652794 30 0.0 10 1250.293997639812 20 1052.02904840745 30 0.0 10 1275.677149433446 20 1062.109297499016 30 0.0 10 1308.891676642182 20 1077.709574972919 30 0.0 10 1353.821191226765 20 1096.663635900535 30 0.0 10 1389.892361910544 20 1114.240463759211 30 0.0 10 1420.35527646913 20 1122.802114136997 30 0.0 10 1437.009892232552 20 1133.598288612192 30 0.0 10 1463.399259373512 20 1140.128292399924 30 0.0 10 1486.798029879977 20 1152.165903254295 30 0.0 10 1512.419972159561 20 1164.118539639646 30 0.0 10 1539.60817841209 20 1170.046117133461 30 0.0 10 1568.766607397097 20 1188.088813559312 30 0.0 10 1588.055290796575 20 1195.97780774768 30 0.0 10 1599.96430988394 20 1199.178126298895 30 0.0 0 LINE 5 1A04 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 1105.10021316546 20 1043.952933721142 30 0.0 11 1104.421426153243 21 1051.410121364344 31 0.0 0 LINE 5 1A05 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 1103.516364722119 20 1058.641348747856 30 0.0 11 1102.837577709902 21 1064.064755422339 31 0.0 0 LINE 5 1A06 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 1119.128592858865 20 1048.698422648158 30 0.0 11 1118.223549549991 21 1055.251713799996 31 0.0 0 LINE 5 1A07 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 1116.639701106651 20 1061.127077962257 30 0.0 11 1115.282108959967 21 1067.002442124532 31 0.0 0 SPLINE 5 1A08 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 129 73 125 74 0 42 0.0000000001 43 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 18.60618391089663 40 44.57408319819707 40 56.98514945518996 40 73.16901095670243 40 92.99157566562186 40 98.61036058860079 40 103.7365371587022 40 113.4056030562645 40 119.7633386842884 40 127.8663719260514 40 138.3221664538733 40 146.2693337994618 40 158.9959542379718 40 172.0754508721891 40 181.1377354641891 40 182.7271671817646 40 185.2872365565636 40 191.1440286495489 40 199.6981041231433 40 207.2322558784766 40 213.9747888233895 40 224.3299891372456 40 238.5558890926083 40 250.4144053631811 40 264.3769716217637 40 271.2085558872494 40 280.4444403817639 40 293.7095371189021 40 314.2191254155316 40 330.1089116782303 40 350.1010283133181 40 377.0128724740539 40 391.7802392433374 40 396.0745332296763 40 406.1282684691221 40 413.1837662267706 40 418.1569323625106 40 428.0323544030261 40 444.1183344105893 40 456.685498929336 40 467.6632950941724 40 479.3839045726967 40 493.5395022736646 40 511.3117135648819 40 520.915390096398 40 529.9741505280588 40 544.4681723407824 40 553.2586154156827 40 563.8245207073902 40 577.3427203449421 40 583.6395382385105 40 591.7425760612244 40 598.4488123842303 40 604.1757744705653 40 609.5155392520645 40 621.175042375583 40 642.5016859439375 40 669.5245273022461 40 703.0795571278909 40 733.1600070047264 40 757.4192081359739 40 775.5437587135501 40 792.3212639758432 40 812.4537890564944 40 831.52698718281 40 849.7369039732618 40 856.9326631213963 40 860.9541717149742 40 866.8144686817665 40 874.371469316844 40 884.6238046858495 40 908.4653038033653 40 927.806319748554 40 936.2319234236714 40 946.8952548308331 40 970.9497030905682 40 983.6651685081088 40 993.263313170042 40 1005.665022946802 40 1025.67371661009 40 1051.279193364456 40 1077.924010417155 40 1101.352525918404 40 1127.952134302497 40 1148.461682523965 40 1171.385708381368 40 1180.292436162707 40 1185.633126930281 40 1193.574440379754 40 1200.574913324422 40 1208.864826432019 40 1216.984537895435 40 1232.104408965226 40 1244.681597389797 40 1249.807773959902 40 1258.452599816274 40 1268.050744478207 40 1277.223605405607 40 1289.298536530704 40 1298.967602428267 40 1321.08781046261 40 1353.240682163512 40 1380.261047635415 40 1405.537873206562 40 1419.119705847895 40 1433.417021458021 40 1466.080911594874 40 1489.464039863332 40 1507.290437757372 40 1517.785742494024 40 1527.542153445392 40 1541.072756236197 40 1561.899399794774 40 1578.676922975333 40 1591.870284073097 40 1603.340925052262 40 1611.189045612445 40 1629.785964174842 40 1644.846193904843 40 1659.068095525829 40 1670.530099711913 40 1671.05210815214 40 1671.05210815214 40 1671.05210815214 40 1671.05210815214 10 1375.534352014474 20 1369.619172306745 30 0.0 10 1369.35549749781 20 1369.61514051001 30 0.0 10 1354.553065327178 20 1369.605481697464 30 0.0 10 1335.167980100752 20 1373.365511389682 30 0.0 10 1320.471109404272 20 1384.380722230518 30 0.0 10 1305.243860618709 20 1390.158588617647 30 0.0 10 1293.743694031731 20 1397.864994554227 30 0.0 10 1284.814450854446 20 1403.028013155344 30 0.0 10 1277.99989221289 20 1403.995388352894 30 0.0 10 1270.995337826996 20 1404.737606934708 30 0.0 10 1263.299858279755 20 1407.282725520941 30 0.0 10 1256.079006929569 20 1411.461399389285 30 0.0 10 1249.441978145325 20 1417.570768052086 30 0.0 10 1239.24065061301 20 1420.367680665687 30 0.0 10 1228.260892585643 20 1422.134790694064 30 0.0 10 1216.203965084576 20 1422.380175563172 30 0.0 10 1209.111050146464 20 1422.318359756842 30 0.0 10 1203.879341086274 20 1421.48370734544 30 0.0 10 1205.786062652143 20 1417.31511953719 30 0.0 10 1208.270758966035 20 1413.10247691287 30 0.0 10 1213.915448574895 20 1407.905462984679 30 0.0 10 1217.23478464274 20 1400.534262782181 30 0.0 10 1226.041474408637 20 1398.586920667541 30 0.0 10 1231.064908460713 20 1388.609120628316 30 0.0 10 1239.551581611947 20 1380.016762396553 30 0.0 10 1249.955313125719 20 1371.614099730766 30 0.0 10 1261.159660955145 20 1368.215659149282 30 0.0 10 1266.084653355454 20 1359.09830392932 30 0.0 10 1273.50340129347 20 1352.737945954257 30 0.0 10 1284.372436733519 20 1342.754758789233 30 0.0 10 1301.672656989405 20 1341.567459177269 30 0.0 10 1318.206978507736 20 1330.65234880193 30 0.0 10 1325.110768214297 20 1309.692199448676 30 0.0 10 1331.241994436695 20 1291.886080250173 30 0.0 10 1331.436165775852 20 1273.056313339562 30 0.0 10 1341.329139261 20 1269.925546148966 30 0.0 10 1348.081056905743 20 1270.477937464456 30 0.0 10 1356.421767116266 20 1271.649320110198 30 0.0 10 1360.587729064343 20 1264.63066844808 30 0.0 10 1371.962697025344 20 1263.974408024951 30 0.0 10 1384.315662011922 20 1264.013241787979 30 0.0 10 1397.655008457884 20 1264.811738087504 30 0.0 10 1409.342475315705 20 1262.083277568701 30 0.0 10 1418.886571230334 20 1252.544620214379 30 0.0 10 1434.378701626741 20 1257.50994383209 30 0.0 10 1447.436005040948 20 1259.325630877894 30 0.0 10 1460.250514259103 20 1259.296698546531 30 0.0 10 1468.849860835176 20 1251.681245745465 30 0.0 10 1478.035314549775 20 1246.248512092366 30 0.0 10 1487.406464696781 20 1239.892658169468 30 0.0 10 1498.285238700493 20 1236.746234023376 30 0.0 10 1504.233266933235 20 1227.587810019162 30 0.0 10 1512.994290742666 20 1224.098249375369 30 0.0 10 1518.373544445025 20 1219.175911281199 30 0.0 10 1526.262759949382 20 1219.757131687234 30 0.0 10 1529.153531740528 20 1213.964402578072 30 0.0 10 1533.923601479327 20 1207.68373194155 30 0.0 10 1548.324319959487 20 1209.39582618323 30 0.0 10 1567.161910159477 20 1204.776119339716 30 0.0 10 1594.406657813335 20 1200.522990033001 30 0.0 10 1624.2518543238 20 1196.339712099899 30 0.0 10 1653.058106793258 20 1190.953079920247 30 0.0 10 1677.078350552426 20 1187.794534780157 30 0.0 10 1696.882275781445 20 1188.853009282029 30 0.0 10 1714.841374451192 20 1192.806721350279 30 0.0 10 1733.815039886321 20 1191.905846856563 30 0.0 10 1752.030119327428 20 1185.440493695175 30 0.0 10 1764.968574344908 20 1178.258366229943 30 0.0 10 1773.439121256349 20 1173.172595027048 30 0.0 10 1779.519771314349 20 1172.793981850176 30 0.0 10 1783.855282850454 20 1177.571892387844 30 0.0 10 1792.353161535374 20 1176.887210748303 30 0.0 10 1805.629594781549 20 1173.975165507552 30 0.0 10 1822.872453058484 20 1168.511191483266 30 0.0 10 1837.98231577126 20 1160.269537302738 30 0.0 10 1850.223482006724 20 1156.231241313988 30 0.0 10 1864.631314716833 20 1155.010201083016 30 0.0 10 1879.967035824087 20 1151.59082238037 30 0.0 10 1895.305116238916 20 1148.112603211586 30 0.0 10 1904.292158512518 20 1139.913861994253 30 0.0 10 1908.009143594961 20 1126.064718602399 30 0.0 10 1913.643228390909 20 1107.731157986418 30 0.0 10 1923.209083881171 20 1085.389532453642 30 0.0 10 1941.652398463608 20 1066.542185388854 30 0.0 10 1966.471803990887 20 1059.067127045476 30 0.0 10 1987.638147634137 20 1048.82648056827 30 0.0 10 2010.294820075858 20 1042.715070143996 30 0.0 10 2026.734365443317 20 1037.401080537398 30 0.0 10 2039.31826188675 20 1035.394938773868 30 0.0 10 2045.079893885915 20 1030.413153471628 30 0.0 10 2047.543731738576 20 1023.4178974862 30 0.0 10 2055.726917801192 20 1021.562224117064 30 0.0 10 2063.200358495753 20 1019.958975871937 30 0.0 10 2072.928959040349 20 1015.889065442053 30 0.0 10 2083.743251797637 20 1009.859388013981 30 0.0 10 2094.904378382652 20 1011.203103521547 30 0.0 10 2103.730000449868 20 1009.771160880685 30 0.0 10 2109.942789690481 20 1004.707696598343 30 0.0 10 2115.677339219586 20 996.8796504415513 30 0.0 10 2126.70773266274 20 996.5405336923723 30 0.0 10 2136.773135818588 20 996.4115848464571 30 0.0 10 2151.388682492517 20 994.2390762196591 30 0.0 10 2170.92616433142 20 985.3218472272565 30 0.0 10 2194.936826952125 20 972.5201884447741 30 0.0 10 2222.160841802426 20 965.463612084175 30 0.0 10 2242.637372120505 20 955.9506634424034 30 0.0 10 2260.511442718576 20 956.9260909919394 30 0.0 10 2280.799389885949 20 953.6712016755044 30 0.0 10 2299.421175371779 20 938.0432193118904 30 0.0 10 2321.347749644246 20 926.9738281142782 30 0.0 10 2337.091816212632 20 919.8961861693824 30 0.0 10 2349.920445285289 20 917.7172721647657 30 0.0 10 2358.643914565942 20 910.1896067655179 30 0.0 10 2371.277457389536 20 902.7463276161579 30 0.0 10 2387.440550465627 20 896.4763796227053 30 0.0 10 2404.512549728562 20 895.5966797624132 30 0.0 10 2417.657335954627 20 891.1268180907354 30 0.0 10 2427.523391823644 20 886.3618674538592 30 0.0 10 2436.456785774909 20 876.9884001404861 30 0.0 10 2451.02245730237 20 875.2673877494526 30 0.0 10 2465.60359244834 20 868.5277238176059 30 0.0 10 2475.384536710375 20 858.3952502853644 30 0.0 10 2485.30068276645 20 859.3071262945596 30 0.0 10 2489.866529396284 20 858.3951244758646 30 0.0 10 2499.128666614568 20 858.2648385017673 30 0.0 0 SPLINE 5 1A09 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 70 73 66 74 0 42 0.0000000001 43 0.0000000001 40 1671.05210815214 40 1671.05210815214 40 1671.05210815214 40 1671.05210815214 40 1675.268099827416 40 1680.951720031629 40 1695.233452964533 40 1715.55685490969 40 1726.708964224892 40 1737.29974269828 40 1747.950004302596 40 1762.551880923899 40 1780.990193356472 40 1789.759846883383 40 1812.707011365442 40 1843.397724395248 40 1864.280191899412 40 1877.372033251463 40 1890.280467292683 40 1907.866427527175 40 1933.812477404038 40 1960.07244544746 40 1987.333365122553 40 2006.098936576199 40 2018.085329449858 40 2035.743719609937 40 2064.611576089978 40 2082.060490847216 40 2105.449628636847 40 2131.206754561552 40 2156.972446590163 40 2181.35474743053 40 2199.514030622564 40 2216.093834777573 40 2229.202205916734 40 2246.759122864586 40 2272.035965735017 40 2308.727394603336 40 2325.93631577674 40 2345.359002570455 40 2348.537868924843 40 2351.466257048973 40 2356.89884635147 40 2368.369487330635 40 2373.804743589632 40 2378.975183622568 40 2385.409502544025 40 2392.390777843978 40 2399.002404728928 40 2417.16168792096 40 2451.080341428562 40 2484.72789064933 40 2524.940978099525 40 2550.420210069138 40 2569.121777541861 40 2586.889195683131 40 2603.422094425463 40 2612.903363804054 40 2633.163245007013 40 2656.604484259576 40 2691.027763937405 40 2718.966717641399 40 2740.638003526049 40 2752.091916563867 40 2766.789413999416 40 2781.357410375 40 2789.951191946723 40 2789.951191946723 40 2789.951191946723 40 2789.951191946723 10 2488.803210872516 20 856.6585337744763 30 0.0 10 2489.63133759602 20 855.6094327408791 30 0.0 10 2490.978348946813 20 852.3140556347497 30 0.0 10 2497.201920147777 20 847.1181848295964 30 0.0 10 2508.291316272774 20 839.2693259585648 30 0.0 10 2516.605963942074 20 826.5897190808319 30 0.0 10 2527.05294048414 20 816.0535834273614 30 0.0 10 2526.543461114845 20 804.8146775339263 30 0.0 10 2526.949093319326 20 792.2621824448287 30 0.0 10 2539.999664854175 20 783.080482726029 30 0.0 10 2545.313906487201 20 770.0402525346726 30 0.0 10 2552.699734040368 20 754.959381232853 30 0.0 10 2554.208223079236 20 733.8690710704977 30 0.0 10 2558.392530345383 20 709.0951454380847 30 0.0 10 2552.826622133321 20 687.8834499209769 30 0.0 10 2551.241673817196 20 672.5171404116554 30 0.0 10 2553.643286490183 20 657.0485159912786 30 0.0 10 2571.752342699092 20 647.5377831290243 30 0.0 10 2592.602111637082 20 638.1105767226836 30 0.0 10 2619.630266800552 20 636.5724618175882 30 0.0 10 2643.609020583015 20 638.2205432294285 30 0.0 10 2662.492289603189 20 643.9659922167775 30 0.0 10 2674.960138406699 20 655.2471723499475 30 0.0 10 2695.765920974158 20 654.0683086931967 30 0.0 10 2716.494315666026 20 651.9238053297158 30 0.0 10 2739.186100032187 20 646.2909197531407 30 0.0 10 2761.406972448869 20 644.526444907955 30 0.0 10 2785.189897950345 20 636.2987543127965 30 0.0 10 2808.587104186841 20 626.9668644658523 30 0.0 10 2830.590161631706 20 620.1029627936513 30 0.0 10 2850.60221334012 20 620.8968054328288 30 0.0 10 2865.706192061665 20 614.7111561891652 30 0.0 10 2881.6618628984 20 615.1582727944187 30 0.0 10 2899.721709126686 20 609.9645819877041 30 0.0 10 2924.708940337572 20 600.8714192184706 30 0.0 10 2950.922785782426 20 598.109593917441 30 0.0 10 2975.541376094835 20 594.2054727501381 30 0.0 10 2987.839820700781 20 595.2363939392089 30 0.0 10 2996.989078340863 20 589.4607727898837 30 0.0 10 2998.478358674012 20 594.1078885609895 30 0.0 10 3002.048836276135 20 599.3006700672558 30 0.0 10 3009.420714699826 20 601.9991315586667 30 0.0 10 3016.322829370598 20 605.4252210213889 30 0.0 10 3017.9547324669 20 611.3843385241052 30 0.0 10 3023.61756879932 20 614.5295830106188 30 0.0 10 3029.011456105763 20 618.6059712147398 30 0.0 10 3039.892489076072 20 619.5433060017239 30 0.0 10 3059.130381041945 20 616.583844667417 30 0.0 10 3087.78670527902 20 614.6530533535406 30 0.0 10 3122.602323294184 20 605.2114412585797 30 0.0 10 3153.906918521719 20 594.69139633351 30 0.0 10 3180.55181554989 20 585.1503240176826 30 0.0 10 3197.998822501023 20 574.0659582129155 30 0.0 10 3213.008696730245 20 564.4631850078294 30 0.0 10 3227.794642776167 20 561.7778014211217 30 0.0 10 3240.195486899301 20 552.2220977918041 30 0.0 10 3257.6049214472 20 547.4267433988861 30 0.0 10 3279.205934268932 20 532.5072112406924 30 0.0 10 3303.145592777709 20 517.144434325688 30 0.0 10 3326.112390762155 20 500.5796454488009 30 0.0 10 3339.461164861248 20 485.5398944861372 30 0.0 10 3351.097811345738 20 473.7061985885374 30 0.0 10 3351.057462142351 20 459.2584188936889 30 0.0 10 3351.206184192207 20 446.8432886083319 30 0.0 10 3352.224031820592 20 439.1655244974681 30 0.0 10 3352.601686774869 20 436.3168214368488 30 0.0 0 SPLINE 5 1A0A 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 19 73 15 74 13 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 7.099060406323136 40 10.36133906190022 40 13.58055451744265 40 20.46512524922158 40 25.78516141735733 40 32.60841488788308 40 39.42435266626066 40 43.22177265606924 40 49.84006666804253 40 59.8058108387605 40 72.30246637552497 40 88.73783316051374 40 88.73783316051374 40 88.73783316051374 40 88.73783316051374 10 2499.128666614568 20 858.2648385017673 30 0.0 10 2501.527397711678 20 858.0167602720152 30 0.0 10 2505.028433735171 20 857.6546809959962 30 0.0 10 2509.305452121337 20 860.5255727752858 30 0.0 10 2508.796312403839 20 865.3726706777122 30 0.0 10 2508.706219942908 20 870.222708582566 30 0.0 10 2508.802170740326 20 876.9904175141924 30 0.0 10 2514.052670604457 20 881.2465527558574 30 0.0 10 2518.711073203566 20 884.8936501313827 30 0.0 10 2520.663378026054 20 890.4165417455246 30 0.0 10 2524.559219455991 20 896.070738310979 30 0.0 10 2532.392710238582 20 902.1042742315174 30 0.0 10 2544.833818704739 20 906.3991658945569 30 0.0 10 2554.474803559571 20 907.1471456067866 30 0.0 10 2559.951542119204 20 907.572049223323 30 0.0 11 2499.128666614568 21 858.2648385017673 31 0.0 11 2506.213197976325 21 858.7187922845478 31 0.0 11 2508.739349075429 21 860.7830167517823 31 0.0 11 2508.969012355166 21 863.99402950902 31 0.0 11 2508.739349075429 21 870.8747684910486 31 0.0 11 2509.428302670138 21 876.1500057155354 31 0.0 11 2514.021332675623 21 881.1958815851685 31 0.0 11 2518.84400783859 21 886.0123960999626 31 0.0 11 2520.451560185498 21 889.452770212025 31 0.0 11 2524.125973316535 21 894.9573595492402 31 0.0 11 2531.93410801583 21 901.1500237088622 31 0.0 11 2543.646319125899 21 905.5078339981847 31 0.0 11 2559.951542119204 21 907.572049223323 31 0.0 0 SPLINE 5 1A0B 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 86 73 82 74 80 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 13.55134976424186 40 24.63590133636076 40 37.50803191347159 40 62.47591798934741 40 73.04065913818582 40 79.14174501039695 40 89.01940354819126 40 98.58755008170572 40 113.0460194714257 40 122.9635405799013 40 131.3501275226108 40 149.6985142711361 40 153.8576093709431 40 164.5797240302224 40 174.3392283974221 40 198.8602088405427 40 207.3247424721149 40 215.1306758648228 40 224.328163762427 40 231.1514050340856 40 236.2813252750679 40 243.9227856350664 40 248.2542602348793 40 265.5348365311374 40 282.4729254094951 40 295.2067154363192 40 302.5698623063965 40 307.8041767556565 40 313.979102901504 40 320.8061345955915 40 326.7770717904945 40 334.3515004865334 40 342.0499451156919 40 367.6115046059565 40 386.9935402796175 40 416.5022305475579 40 443.9678400868139 40 481.6601523329142 40 497.2550544915808 40 512.4571798644548 40 526.4225405022433 40 539.2326552358624 40 570.3120421495307 40 605.858306664986 40 634.3833459764318 40 659.1297822684459 40 676.7618761989972 40 690.5638900902536 40 702.0317914743477 40 714.7200002341778 40 738.3091400367602 40 759.7716261452578 40 794.7440999135655 40 833.9550067176988 40 880.6338403186014 40 893.1111266373514 40 905.061789763735 40 910.0077625975204 40 918.0395413639258 40 932.7134530972442 40 941.54802521922 40 954.2509003552028 40 963.1684625597028 40 970.1940937350014 40 979.1116382050175 40 999.7513772916567 40 1028.796486282028 40 1051.315147095629 40 1068.334069214434 40 1082.421583993936 40 1099.74756904649 40 1121.023176306124 40 1153.291922212982 40 1182.690842537444 40 1209.19457680441 40 1226.621618126378 40 1247.47267329098 40 1270.19597696158 40 1293.050953694703 40 1293.050953694703 40 1293.050953694703 40 1293.050953694703 10 2554.899221798747 20 929.1317115887942 30 0.0 10 2550.406850092599 20 929.206022918224 30 0.0 10 2542.239868349501 20 929.3411184335685 30 0.0 10 2529.441911060385 20 927.2709186605489 30 0.0 10 2517.559792940809 20 915.1250602398718 30 0.0 10 2507.835331845207 20 903.0486587276241 30 0.0 10 2501.943369693462 20 889.0634490384515 30 0.0 10 2493.038269069219 20 886.7238614011496 30 0.0 10 2484.09538644952 20 885.5956235299105 30 0.0 10 2474.992741943686 20 893.2062925898959 30 0.0 10 2464.304415335955 20 897.5993652465309 30 0.0 10 2452.860896326105 20 896.5108528835012 30 0.0 10 2442.639305927994 20 903.8170574341434 30 0.0 10 2434.646686853354 20 911.4018817124184 30 0.0 10 2423.558278638231 20 912.2296710267628 30 0.0 10 2414.746744869402 20 912.3845235967248 30 0.0 10 2404.699336017594 20 924.6039797967622 30 0.0 10 2392.274264995005 20 931.6810962264218 30 0.0 10 2382.453504291079 20 940.8953283205168 30 0.0 10 2375.118175830508 20 946.0672086462849 30 0.0 10 2366.116563667764 20 943.1182422502145 30 0.0 10 2361.296929405224 20 949.5038380788498 30 0.0 10 2359.383204794654 20 955.9372627845382 30 0.0 10 2353.506253849553 20 958.1699408722135 30 0.0 10 2345.38906446586 20 963.3775822823182 30 0.0 10 2336.242803530242 20 972.6706226277604 30 0.0 10 2322.605271570588 20 980.6703228954008 30 0.0 10 2312.134889500768 20 986.6891762915077 30 0.0 10 2302.963599435674 20 988.461404082437 30 0.0 10 2298.063093447241 20 983.9455178185732 30 0.0 10 2294.708989984652 20 978.7319628568413 30 0.0 10 2288.186401422391 20 976.9138712744101 30 0.0 10 2281.394163955533 20 976.9215405616872 30 0.0 10 2274.555003894764 20 979.0381633507834 30 0.0 10 2261.574152848561 20 983.0115337902066 30 0.0 10 2245.094761062899 20 989.2347404668347 30 0.0 10 2220.548420258144 20 993.6502326585124 30 0.0 10 2197.359737291263 20 1004.601281225355 30 0.0 10 2167.306500175054 20 1014.165513423707 30 0.0 10 2143.447377187102 20 1027.535614104369 30 0.0 10 2120.597530204731 20 1030.925750789336 30 0.0 10 2107.236217853124 20 1037.813367618725 30 0.0 10 2095.224393754886 20 1045.267197381163 30 0.0 10 2076.047276861689 20 1048.718386908726 30 0.0 10 2050.982521023537 20 1057.618598905514 30 0.0 10 2023.422021102216 20 1073.517473570705 30 0.0 10 1998.355135849612 20 1089.250062345506 30 0.0 10 1980.025852332151 20 1104.435304667012 30 0.0 10 1967.963102079943 20 1118.726697765811 30 0.0 10 1961.595332359494 20 1132.245459569914 30 0.0 10 1963.489737509772 20 1145.035578064062 30 0.0 10 1959.866869321743 20 1161.028329210355 30 0.0 10 1946.302175550868 20 1175.449479124169 30 0.0 10 1927.160669612496 20 1194.30628817943 30 0.0 10 1895.869479489683 20 1203.996627681881 30 0.0 10 1858.28596796414 20 1217.859482155264 30 0.0 10 1826.111926662063 20 1224.582926946585 30 0.0 10 1802.706588904168 20 1229.062944295454 30 0.0 10 1792.643187976591 20 1226.321742680602 30 0.0 10 1784.876498210593 20 1229.81447047193 30 0.0 10 1777.358667408116 20 1235.065864607879 30 0.0 10 1767.214879509346 20 1238.835380911264 30 0.0 10 1755.202145227661 20 1239.67241909111 30 0.0 10 1745.367744064393 20 1244.103165568812 30 0.0 10 1736.005612299392 20 1241.073638247976 30 0.0 10 1727.891670522199 20 1238.794939890922 30 0.0 10 1715.843524541946 20 1242.524226553635 30 0.0 10 1698.049747583147 20 1250.095453315434 30 0.0 10 1675.120881385818 20 1257.171581973523 30 0.0 10 1652.822309496259 20 1264.33374948042 30 0.0 10 1634.733704093283 20 1259.880094407123 30 0.0 10 1619.118875137035 20 1265.997699573922 30 0.0 10 1605.47606989302 20 1277.528679560202 30 0.0 10 1581.362000819938 20 1281.038929765421 30 0.0 10 1554.074408874716 20 1284.156429460623 30 0.0 10 1524.629740006634 20 1281.629631438546 30 0.0 10 1500.08603974952 20 1284.936896101418 30 0.0 10 1480.116937976016 20 1293.811054584788 30 0.0 10 1459.496790622898 20 1294.310106935946 30 0.0 10 1437.959848368563 20 1300.030583724852 30 0.0 10 1424.062098361652 20 1306.199301139032 30 0.0 10 1417.093148453117 20 1309.292570383186 30 0.0 11 2554.899221798747 21 929.1317115887942 31 0.0 11 2541.349813184282 21 928.9023502339551 31 0.0 11 2530.556200826409 21 926.3794122991384 31 0.0 11 2520.681205342985 21 918.1225236722676 31 0.0 11 2505.983534696588 21 897.9390201937349 31 0.0 11 2500.012615623935 21 889.2234088571859 31 0.0 11 2494.271341708769 21 887.1591843899514 31 0.0 11 2484.396346225345 21 886.9298322772083 31 0.0 11 2476.128903088826 21 891.7463467920024 31 0.0 11 2462.579494474361 21 896.7922226616355 31 0.0 11 2452.704498990934 21 897.7096588388958 31 0.0 11 2445.470495307607 21 901.9527745876402 31 0.0 11 2429.854225909013 21 911.5858128593391 31 0.0 11 2425.720504340752 21 912.0445263269067 31 0.0 11 2415.156555262616 21 913.8793894393165 31 0.0 11 2407.807710878293 21 920.3014149537775 31 0.0 11 2388.517028348665 21 935.4390518047877 31 0.0 11 2382.086800838787 21 940.9436411419884 31 0.0 11 2375.197264891689 21 944.6133673667937 31 0.0 11 2366.011223002973 21 945.0720808343758 31 0.0 11 2361.41821111974 21 950.117956704009 31 0.0 11 2359.121687055874 21 954.7051191060745 31 0.0 11 2352.691459545996 21 958.8335680405579 31 0.0 11 2349.017064537209 21 961.1271446205355 31 0.0 11 2335.697301080235 21 972.1363325370475 31 0.0 11 2321.458938871062 21 981.3106388569577 31 0.0 11 2309.976391040731 21 986.815228194173 31 0.0 11 2302.627546656407 21 987.2739416617404 31 0.0 11 2298.493843210395 21 984.0629381466133 31 0.0 11 2294.360121642137 21 979.4757757445623 31 0.0 11 2287.929894132259 21 977.1821899224741 31 0.0 11 2281.958956937356 21 977.1821899224741 31 0.0 11 2274.610130675286 21 979.0170530348841 31 0.0 11 2267.261286290962 21 981.3106388569577 31 0.0 11 2242.918283440875 21 989.1088140162464 31 0.0 11 2224.086891226219 21 993.6959671762014 31 0.0 11 2196.528765560073 21 1004.24644162516 31 0.0 11 2170.807873642818 21 1013.879479896844 31 0.0 11 2135.900903592344 21 1028.099671328498 31 0.0 11 2120.743924508726 21 1031.769406795414 31 0.0 11 2106.964870736777 21 1038.191423067764 31 0.0 11 2094.563706031996 21 1044.613448582225 31 0.0 11 2082.162559449469 21 1047.824461339463 31 0.0 11 2052.767236278927 21 1057.916203836619 31 0.0 11 2021.53469748174 21 1074.888694557928 31 0.0 11 1997.650984946631 21 1090.485044876506 31 0.0 11 1978.819592731971 21 1106.540099420555 31 0.0 11 1967.796335216615 21 1120.301586626737 31 0.0 11 1962.744014896157 21 1133.145637655674 31 0.0 11 1962.744014896157 21 1144.613539039768 31 0.0 11 1959.988200517316 21 1156.998858116901 31 0.0 11 1945.749838308143 21 1175.806211950606 31 0.0 11 1929.674260472329 21 1190.026412624371 31 0.0 11 1897.523122922947 21 1203.787890588442 31 0.0 11 1860.31964693086 21 1216.173228149797 31 0.0 11 1814.848764046754 21 1226.723693356631 31 0.0 11 1802.447599341972 21 1228.099843001458 31 0.0 11 1790.505743074416 21 1227.641129533891 31 0.0 11 1785.912713068934 21 1229.475992646301 31 0.0 11 1779.023195244084 21 1233.604432338674 31 0.0 11 1765.244123349886 21 1238.650308208307 31 0.0 11 1756.517389898392 21 1240.026457853135 31 0.0 11 1744.116261438113 21 1242.778738658584 31 0.0 11 1735.389509864369 21 1240.943875546174 31 0.0 11 1728.49997391727 21 1239.567725901346 31 0.0 11 1719.773240465776 21 1241.402589013756 31 0.0 11 1700.4825398139 21 1248.742050705477 31 0.0 11 1672.92441414775 21 1257.916366267483 31 0.0 11 1650.877917239282 21 1262.503528669549 31 0.0 11 1633.883740651268 21 1261.586101734399 31 0.0 11 1620.563977194291 21 1266.173254894354 31 0.0 11 1605.866306547897 21 1275.347579698471 31 0.0 11 1585.197716828846 21 1280.393455568104 31 0.0 11 1553.046561157214 21 1283.14575485776 31 0.0 11 1523.651219864423 21 1282.687032148082 31 0.0 11 1497.471001387693 21 1286.815481082565 31 0.0 11 1480.936151359157 21 1292.32007041978 31 0.0 11 1460.267543517857 21 1295.072369709436 31 0.0 11 1438.221046609389 21 1300.576959046637 31 0.0 11 1417.093148453117 21 1309.292570383186 31 0.0 0 LINE 5 1A0C 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2563.511150793747 20 929.0170262903266 30 0.0 11 2573.615791434658 21 929.0170262903266 31 0.0 0 LINE 5 1A0D 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2580.046018944536 20 929.0170262903266 30 0.0 11 2587.854153643831 21 929.4757397578942 31 0.0 0 LINE 5 1A0E 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2596.121596780351 20 929.9344532254762 30 0.0 11 2604.38903991687 21 929.9344532254762 31 0.0 0 LINE 5 1A0F 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2609.900668674552 20 929.4757397578942 30 0.0 11 2618.168111811072 21 929.4757397578942 31 0.0 0 LINE 5 1A10 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2625.516938073142 20 929.4757397578942 30 0.0 11 2633.784381209661 21 929.0170262903266 31 0.0 0 LINE 5 1A11 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2565.807656735364 20 907.457373166966 30 0.0 11 2575.912297376275 21 907.457373166966 31 0.0 0 LINE 5 1A12 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2582.342524886153 20 907.457373166966 30 0.0 11 2590.150659585448 21 907.9160866345336 31 0.0 0 LINE 5 1A13 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2598.418102721967 20 908.3748001021158 30 0.0 11 2606.685545858486 21 908.3748001021158 31 0.0 0 LINE 5 1A14 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2612.197174616169 20 907.9160866345336 30 0.0 11 2620.464617752688 21 907.9160866345336 31 0.0 0 LINE 5 1A15 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2627.813444014758 20 907.9160866345336 30 0.0 11 2636.080887151278 21 907.457373166966 31 0.0 0 SPLINE 5 1A16 330 1A01 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 5.0 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 16 73 12 74 10 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 10.43604233639596 40 13.72971112697131 40 25.94916069415745 40 40.81380356394259 40 49.63661789535919 40 58.28003491184321 40 77.00996612788138 40 101.1798550701769 40 121.2167184872494 40 121.2167184872494 40 121.2167184872494 40 121.2167184872494 10 1599.96430988394 20 1199.178126298895 30 0.0 10 1603.840710610201 20 1200.171137065917 30 0.0 10 1608.940523400184 20 1201.477547152971 30 0.0 10 1610.605066243001 20 1210.368916271276 30 0.0 10 1609.215478196769 20 1220.993022139564 30 0.0 10 1595.97843147629 20 1228.530211198103 30 0.0 10 1601.41548234361 20 1240.447018173131 30 0.0 10 1592.174586911545 20 1250.149728411618 30 0.0 10 1579.203565364533 20 1260.342179656296 30 0.0 10 1561.755436666054 20 1272.550283562058 30 0.0 10 1548.693523461229 20 1279.327964839882 30 0.0 10 1542.77316612027 20 1282.399972322906 30 0.0 11 1599.96430988394 21 1199.178126298895 31 0.0 11 1609.15587556874 21 1204.120403092951 31 0.0 11 1609.955664847097 21 1207.315491700835 31 0.0 11 1607.556297012022 21 1219.297060117241 31 0.0 11 1598.758578705583 21 1231.278619291522 31 0.0 11 1599.558367983943 21 1240.065108342154 31 0.0 11 1594.759632313795 21 1247.254043846726 31 0.0 11 1580.3633709366 21 1259.235612263131 31 0.0 11 1560.3685846109 21 1272.814715741362 31 0.0 11 1542.77316612027 21 1282.399972322906 31 0.0 0 SPLINE 5 1A17 330 1A01 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 5.0 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 25 73 21 74 19 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 18.43658673614729 40 43.15436101804696 40 75.25761729621021 40 99.53353313659148 40 117.2694881799941 40 133.7964146777181 40 153.3717224985398 40 178.9844824656783 40 205.7839703882273 40 222.8908563991738 40 262.7787101323125 40 292.9174584119919 40 321.2213197641395 40 353.491074498933 40 378.0829067989793 40 394.6154813805369 40 408.0112820904106 40 423.2523688910797 40 423.2523688910797 40 423.2523688910797 40 423.2523688910797 10 1593.4120617716 20 1278.915753658017 30 0.0 10 1597.649818772969 20 1274.432477354909 30 0.0 10 1607.569100371081 20 1263.938510825378 30 0.0 10 1619.853334909031 20 1241.977968644315 30 0.0 10 1639.149313540187 20 1221.91193046927 30 0.0 10 1661.464048328046 20 1211.475775667377 30 0.0 10 1680.506992797834 20 1204.497685666613 30 0.0 10 1698.298135151055 20 1210.264897272592 30 0.0 10 1716.436500122943 20 1219.863758077032 30 0.0 10 1738.280763188439 20 1228.340887401587 30 0.0 10 1762.959961741255 20 1235.469810073183 30 0.0 10 1786.345389348857 20 1217.767750410593 30 0.0 10 1812.868104673095 20 1207.005594308219 30 0.0 10 1844.068769706293 20 1195.192290947889 30 0.0 10 1874.528400025273 20 1196.277657510022 30 0.0 10 1903.10363627151 20 1191.725921071881 30 0.0 10 1924.093654623167 20 1177.422620606752 30 0.0 10 1933.453250712936 20 1161.188660135381 30 0.0 10 1947.40035685509 20 1154.347451228081 30 0.0 10 1956.460769415191 20 1151.49128430672 30 0.0 10 1961.28289033275 20 1149.97117888501 30 0.0 11 1593.4120617716 21 1278.915753658017 31 0.0 11 1605.600543745298 21 1265.082871179795 31 0.0 11 1619.451107917455 21 1244.61020067583 31 0.0 11 1642.166025910894 21 1221.924267496593 31 0.0 11 1663.77289514611 21 1210.857954120336 31 0.0 11 1680.947587470684 21 1206.431438011946 31 0.0 11 1697.014249159285 21 1210.304638451533 31 0.0 11 1714.742956801848 21 1218.604373483715 31 0.0 11 1738.565923553509 21 1228.010739853547 31 0.0 11 1765.158985017351 21 1231.330624624315 31 0.0 11 1780.11759794773 21 1223.030898834229 31 0.0 11 1816.12902855084 21 1205.878122343128 31 0.0 11 1844.938187531126 21 1197.025071642128 31 0.0 11 1873.193331193429 21 1195.365124635689 31 0.0 11 1904.772603008146 21 1188.725345852028 31 0.0 11 1924.717408167154 21 1174.339138462906 31 0.0 11 1935.243844186894 21 1161.590798687975 31 0.0 11 1946.878310842607 21 1154.951019904328 31 0.0 11 1961.28289033275 21 1149.97117888501 31 0.0 0 SPLINE 5 1A18 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 40 73 36 74 34 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 32.65171601233508 40 78.02545103874956 40 107.5547676728306 40 121.9234309405584 40 159.8359486630978 40 175.7055736635166 40 208.2170642814115 40 225.3979277270168 40 230.9356067014563 40 235.3979873934935 40 243.5756845516412 40 258.2942732209504 40 284.634067361688 40 298.4832363888646 40 306.866932408924 40 314.316283051184 40 323.4848968655853 40 331.9593968569443 40 338.8992433583101 40 346.3475945769536 40 358.0854885569652 40 370.3865018473562 40 392.6576341905952 40 409.8576641567332 40 432.2904453265665 40 456.6696135347203 40 490.8679941661776 40 527.5979134370709 40 562.5327024217173 40 575.1747571439402 40 597.607538313772 40 605.3947935814589 40 613.7667815204011 40 613.7667815204011 40 613.7667815204011 40 613.7667815204011 10 1961.282890332746 20 1149.97117888501 30 0.0 10 1971.830080487708 20 1147.281951104513 30 0.0 10 1997.033940178314 20 1140.855697414202 30 0.0 10 2031.285866989781 20 1130.170945473862 30 0.0 10 2058.884540348427 20 1118.839445974018 30 0.0 10 2082.741089738278 20 1105.5880285092 30 0.0 10 2104.166981893981 20 1097.613652713326 30 0.0 10 2128.771298846216 20 1082.66859878666 30 0.0 10 2149.21680240633 20 1074.284294666077 30 0.0 10 2166.660968543927 20 1069.133842359587 30 0.0 10 2174.850302237307 20 1064.351952485887 30 0.0 10 2176.813072755397 20 1058.138027314732 30 0.0 10 2186.464742401342 20 1055.258176559201 30 0.0 10 2201.181554939327 20 1049.416014094862 30 0.0 10 2219.076291350702 20 1044.282844650067 30 0.0 10 2233.877571460874 20 1037.81096072627 30 0.0 10 2244.762877095336 20 1038.923880441128 30 0.0 10 2249.892096668072 20 1031.357558770934 30 0.0 10 2257.963839747544 20 1028.207054388047 30 0.0 10 2266.13848864793 20 1027.57676294891 30 0.0 10 2273.252153637512 20 1024.039500492072 30 0.0 10 2277.864836770991 20 1016.078808201365 30 0.0 10 2289.109505706033 20 1014.075902383315 30 0.0 10 2304.045007651565 20 1011.922299898685 30 0.0 10 2321.558575382085 20 1011.453154395224 30 0.0 10 2341.442397129677 20 1005.618007092281 30 0.0 10 2361.304467312475 20 997.8586509959933 30 0.0 10 2386.685388746251 20 988.5590239466134 30 0.0 10 2415.032476180994 20 974.0895605941199 30 0.0 10 2447.762195267963 20 960.9097867809117 30 0.0 10 2473.609167148205 20 949.7504589695195 30 0.0 10 2493.446344223595 20 937.2058356810118 30 0.0 10 2507.999894084129 20 934.7183173113169 30 0.0 10 2518.805428510748 20 927.6058283667019 30 0.0 10 2523.257903460184 20 924.5855808883886 30 0.0 10 2525.564698778409 20 923.0208123446063 30 0.0 11 1961.282890332746 21 1149.97117888501 31 0.0 11 1992.862144025217 21 1141.671462337035 31 0.0 11 2036.07588249565 21 1127.838579858813 31 0.0 11 2063.222977399727 21 1116.218950813752 31 0.0 11 2075.965492813662 21 1109.579162787995 31 0.0 11 2110.314877462813 21 1093.533017634515 31 0.0 11 2124.16544163497 21 1085.786607513248 31 0.0 11 2154.082649373482 21 1073.060347130551 31 0.0 11 2170.149292939834 21 1066.973884015707 31 0.0 11 2174.581469850472 21 1063.653990002829 31 0.0 11 2176.797567366917 21 1059.780780321147 31 0.0 11 2183.99985711199 21 1055.90757063945 31 0.0 11 2197.850421284147 21 1050.927738862243 31 0.0 11 2222.781400549531 21 1042.428854921076 31 0.0 11 2236.077931281452 21 1038.555645239379 31 0.0 11 2244.388269784747 21 1037.449013901758 31 0.0 11 2249.928495453608 21 1032.469182124536 31 0.0 11 2258.238833956904 21 1028.595972442854 31 0.0 11 2266.549172460199 21 1026.936025436414 31 0.0 11 2272.643413447047 21 1023.616131423536 31 0.0 11 2277.629605675672 21 1018.0829747354 31 0.0 11 2288.710057013398 21 1014.209765053718 31 0.0 11 2300.898557109347 21 1012.549827289389 31 0.0 11 2323.05944166255 21 1010.336564614132 31 0.0 11 2339.680118669141 21 1005.910039263631 31 0.0 11 2360.732972586367 21 998.1636199002387 31 0.0 11 2383.447890579806 21 989.3105784413492 31 0.0 11 2414.47314707654 21 974.9243802943093 31 0.0 11 2448.268480163202 21 960.5381913893943 31 0.0 11 2479.847751977922 21 945.5986775735508 31 0.0 11 2490.928203315649 21 939.5122052165971 31 0.0 11 2511.981057232878 21 931.7657858532184 31 0.0 11 2518.62498231986 21 927.7038153901667 31 0.0 11 2525.564698778409 21 923.0208123446063 31 0.0 0 SPLINE 5 1A19 330 1A01 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 5.0 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 9 73 5 74 3 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 15.81131756041192 40 32.03508278114592 40 32.03508278114592 40 32.03508278114592 40 32.03508278114592 10 2525.564698778409 20 923.0208123446063 30 0.0 10 2530.289245238553 20 920.6666003132715 30 0.0 10 2539.861580774526 20 915.8967652239425 30 0.0 10 2548.611097568958 20 909.7455063559104 30 0.0 10 2553.042180430129 20 906.6302785798907 30 0.0 11 2525.564698778409 21 923.0208123446063 31 0.0 11 2539.537896219244 21 915.6216558875749 31 0.0 11 2553.042180430129 21 906.6302785798907 31 0.0 0 SPLINE 5 1A1A 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 67 73 63 74 61 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 45.34478447530274 40 73.41160839091203 40 105.2017370432803 40 143.7323407111593 40 167.9215677527816 40 182.2367684010521 40 198.8249332975345 40 223.7326612006858 40 238.4549247903289 40 266.6168735668267 40 282.3732882279733 40 317.2469816488473 40 355.3301016171745 40 369.8844774113288 40 389.6704536004834 40 401.1328240593805 40 408.5550669341984 40 422.498709316272 40 453.7083751970808 40 490.8828530577699 40 542.07910530799 40 581.5449573097903 40 606.5111837268249 40 633.6823633709074 40 647.6260272044762 40 661.4101860808351 40 678.1817681983749 40 689.3284275032953 40 716.1682589319124 40 741.6366826831047 40 770.9716401535922 40 804.3766270210516 40 836.8215108053218 40 876.5863673659234 40 912.2957471446564 40 937.7434498578946 40 999.5511140486085 40 1052.585353603721 40 1073.056954363808 40 1134.176827568084 40 1195.226591392078 40 1276.072830592245 40 1371.338361391301 40 1451.231047175951 40 1516.349393056539 40 1605.305289096865 40 1661.675076940758 40 1725.203159546316 40 1854.050400808998 40 1902.718527288089 40 1950.656141725879 40 1966.693715140699 40 1976.444976608922 40 1986.453766549503 40 2004.707227981104 40 2035.503493603838 40 2070.891862433444 40 2102.966975384302 40 2145.518090051146 40 2174.995326132525 40 2174.995326132525 40 2174.995326132525 40 2174.995326132525 10 335.9371393496803 20 -0.0000001308362698 30 0.0 10 322.543596771113 20 7.391081391597122 30 0.0 10 300.8599232434481 20 19.35698195962631 30 0.0 10 279.8101428373399 20 48.90830315548159 30 0.0 10 275.9360469178192 20 82.8317237897111 30 0.0 10 285.1521008007468 20 113.2180467089622 30 0.0 10 294.6852778119609 20 137.3615414506302 30 0.0 10 294.3123030309291 20 156.1098736810901 30 0.0 10 303.1636554982001 20 173.1236029141735 30 0.0 10 302.1750633074113 20 192.3698292783239 30 0.0 10 308.2621654772697 20 214.30342237169 30 0.0 10 317.8515510730428 20 231.462087387614 30 0.0 10 328.7802357158822 20 255.3124877788624 30 0.0 10 342.0876624122448 20 281.8940628945372 30 0.0 10 360.9004951277775 20 304.434214155001 30 0.0 10 374.4664741626896 20 324.2900739287644 30 0.0 10 382.767963019212 20 337.4745856708347 30 0.0 10 381.8289479784299 20 351.8544773859041 30 0.0 10 391.51439092735 20 358.4249163921791 30 0.0 10 399.1495842264095 20 374.809393718044 30 0.0 10 426.6792025092534 20 385.5082110791252 30 0.0 10 452.227300344297 20 416.9660390095233 30 0.0 10 491.7365036026082 20 434.884261047726 30 0.0 10 522.9753320712687 20 458.2947796414932 30 0.0 10 540.5410176510446 20 483.7581578768354 30 0.0 10 560.8641986838412 20 494.6240773489762 30 0.0 10 570.3399685836423 20 510.4452834234273 30 0.0 10 580.5231613017981 20 521.8050737791651 30 0.0 10 594.595709936846 20 525.4674793125126 30 0.0 10 607.7795123219732 20 538.6053754590118 30 0.0 10 618.6176569555741 20 556.6742352801437 30 0.0 10 636.5665381105986 20 577.8544170016088 30 0.0 10 663.9055997687138 20 590.2788401853646 30 0.0 10 685.7492143055717 20 613.9380553389523 30 0.0 10 707.3610635674924 20 641.6474685504478 30 0.0 10 734.5659844063343 20 665.5930385532916 30 0.0 10 753.8675746028707 20 693.3651475229963 30 0.0 10 783.2282091488263 20 722.1546808227697 30 0.0 10 822.023052035559 20 748.8369800881278 30 0.0 10 862.0593871172742 20 769.5921916616164 30 0.0 10 901.5879464659763 20 790.8397783651298 30 0.0 10 942.3684814952562 20 815.3811569307952 30 0.0 10 1003.673768107991 20 844.1715138907806 30 0.0 10 1074.854616342691 20 878.5146849768423 30 0.0 10 1150.958605456618 20 917.1893869766895 30 0.0 10 1224.331564741579 20 949.3468263033291 30 0.0 10 1295.128372359655 20 982.0576580025628 30 0.0 10 1359.377465456957 20 1010.228201022064 30 0.0 10 1421.950268710407 20 1040.816258470923 30 0.0 10 1498.597960921643 20 1072.414456231251 30 0.0 10 1573.789416765289 20 1101.453146077463 30 0.0 10 1641.797930562038 20 1132.398914499563 30 0.0 10 1676.163843281078 20 1149.762441871759 30 0.0 10 1701.16215987253 20 1150.285121038248 30 0.0 10 1711.785847362825 20 1157.950104495081 30 0.0 10 1724.372451198076 20 1152.233214073581 30 0.0 10 1743.680539602749 20 1150.348018610688 30 0.0 10 1771.952095288756 20 1149.486662731747 30 0.0 10 1804.705381731439 20 1147.550839049734 30 0.0 10 1840.456529630018 20 1138.951326118986 30 0.0 10 1875.135137274147 20 1135.614910665689 30 0.0 10 1898.233874074398 20 1128.912554631869 30 0.0 10 1907.686914589274 20 1126.169649524949 30 0.0 11 335.9371393496803 21 -0.0000001308362698 31 0.0 11 298.4252045329703 21 25.47556120583613 31 0.0 11 282.6702093073145 21 48.70327590507804 31 0.0 11 278.1687691555198 21 80.17309186091006 31 0.0 11 287.1716313368597 21 117.6371531938057 31 0.0 11 293.9237825034251 21 140.8648771351436 31 0.0 11 295.4242504725225 21 155.1012237688119 31 0.0 11 300.6759336699942 21 170.8361225046246 31 0.0 11 303.6768877304384 21 195.5624077902175 31 0.0 11 307.4280848365597 21 209.7987544238858 31 0.0 11 319.4319010783474 21 235.2743065184622 31 0.0 11 326.1840341226634 21 249.5106439100054 31 0.0 11 342.6892905162458 21 280.2311745726619 31 0.0 11 365.1964550307202 21 310.951714477429 31 0.0 11 373.4490741663867 21 322.9402144736377 31 0.0 11 381.7016933020531 21 340.9229598468955 31 0.0 11 383.9524224390734 21 352.1621837920247 31 0.0 11 389.204087514292 21 357.4071531180088 31 0.0 11 397.456688527709 21 368.6463585789169 31 0.0 11 422.9648071026312 21 386.6291039521748 31 0.0 11 450.7236366923243 21 411.3553892377821 31 0.0 11 494.2374615076732 21 438.3295119187387 31 0.0 11 524.9972451578141 21 463.0557972043316 31 0.0 11 541.5025015513966 21 481.7878278707794 31 0.0 11 562.5091799745205 21 499.0212971929577 31 0.0 11 570.7618172324364 21 510.2605026538803 31 0.0 11 580.5149043372002 21 520.001156012644 31 0.0 11 595.5196927616852 21 527.4939719760732 31 0.0 11 603.7723118973517 21 534.9867879394878 31 0.0 11 619.5273252452571 21 556.7159412944602 31 0.0 11 636.7828065622634 21 575.447971960908 31 0.0 11 661.5406820915086 21 591.1828799388313 31 0.0 11 685.5483145750841 21 614.4105946380586 31 0.0 11 706.5550111204611 21 639.1368799236661 31 0.0 11 734.3138044656516 21 667.6095547067671 31 0.0 11 756.820968980126 21 695.332962680899 31 0.0 11 774.8266933428058 21 713.3157172962674 31 0.0 11 825.0926874469733 21 749.2812172848934 31 0.0 11 871.6074844450231 21 774.7567786215804 31 0.0 11 889.6132088077029 21 784.4974319803441 31 0.0 11 942.8801207278157 21 814.4686681077001 31 0.0 11 997.6475368615282 21 841.4428000307525 31 0.0 11 1070.420695480174 21 876.6590147262032 31 0.0 11 1155.947895264023 21 918.6187508497678 31 0.0 11 1228.721017638166 21 951.5871281498839 31 0.0 11 1287.989855801424 21 978.5612600729219 31 0.0 11 1369.015633555733 21 1015.276036112642 31 0.0 11 1420.031870705577 21 1039.253036105059 31 0.0 11 1478.550483945411 21 1063.979321390666 31 0.0 11 1597.838385195351 21 1112.68258818447 31 0.0 11 1642.102471178623 21 1132.913189437284 31 0.0 11 1687.116763963073 21 1149.397373466286 31 0.0 11 1702.871795433231 21 1152.394496154811 31 0.0 11 1711.874657614571 21 1156.140904136526 31 0.0 11 1721.627762841584 21 1153.89305749908 31 0.0 11 1739.633487204264 21 1150.895934810541 31 0.0 11 1770.393270854405 21 1149.397373466286 31 0.0 11 1805.654494656341 21 1146.400250777762 31 0.0 11 1837.164521352155 21 1140.405996158602 31 0.0 11 1879.177878198406 21 1133.662465488363 31 0.0 11 1907.686914589274 21 1126.169649524949 31 0.0 0 SPLINE 5 1A1B 330 1A01 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 5.0 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 25 73 21 74 19 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 44.60664097309171 40 89.36734902068677 40 129.7618305861434 40 173.7158670635257 40 193.8417411939996 40 211.9818986211503 40 238.3219302576331 40 272.0354998174558 40 314.976945189569 40 345.904139609495 40 408.3034995037709 40 447.5704928397501 40 506.977910731224 40 530.5161202289731 40 554.3576115759754 40 579.5073373901472 40 610.3947560967246 40 642.8951839426191 40 642.8951839426191 40 642.8951839426191 40 642.8951839426191 10 1907.686914589274 20 1126.169649524949 30 0.0 10 1921.481569075594 20 1120.502881882303 30 0.0 10 1949.118523466362 20 1109.149774123194 30 0.0 10 1983.995905984344 20 1082.572327937291 30 0.0 10 2025.625908023945 20 1070.022095354712 30 0.0 10 2056.427323607573 20 1053.689165044192 30 0.0 10 2081.360744937641 20 1042.275903454216 30 0.0 10 2099.422891504214 20 1030.259717615798 30 0.0 10 2124.844318078867 20 1023.375780165824 30 0.0 10 2156.350098886745 20 1009.790233532658 30 0.0 10 2190.76711227586 20 999.3883587084141 30 0.0 10 2232.381873904123 20 981.1173288949161 30 0.0 10 2272.700065805747 20 962.9198744100307 30 0.0 10 2318.696602433821 20 934.8647839035553 30 0.0 10 2358.216192151924 20 923.165932537975 30 0.0 10 2387.07072554736 20 900.7463274062734 30 0.0 10 2411.759743783116 20 898.381868174091 30 0.0 10 2437.247135461357 20 890.3690087251229 30 0.0 10 2462.816905516008 20 875.2240669494948 30 0.0 10 2479.995397325764 20 862.951146454818 30 0.0 10 2488.803210872516 20 856.6585337744763 30 0.0 11 1907.686914589274 21 1126.169649524949 31 0.0 11 1948.169793019711 21 1107.437618858501 31 0.0 11 1986.431970882095 21 1084.209904159259 31 0.0 11 2023.943905698801 21 1069.224281474526 31 0.0 11 2063.706551530282 21 1050.492241565982 31 0.0 11 2081.712275892961 21 1041.500873500393 31 0.0 11 2097.467289240867 21 1032.509496192709 31 0.0 11 2122.225164770116 21 1023.518118885025 31 0.0 11 2153.735173343677 21 1011.529618888816 31 0.0 11 2194.248062220831 21 997.2932722551631 31 0.0 11 2222.757134856201 21 985.3047722589545 31 0.0 11 2279.025037081261 21 958.3306495780124 31 0.0 11 2313.536017837523 21 939.5986189115646 31 0.0 11 2367.553172803313 21 914.8723521101638 31 0.0 11 2387.809608180763 21 902.8838521139551 31 0.0 11 2411.067015740911 21 897.6388827879855 31 0.0 11 2435.074648224487 21 890.1460668245709 31 0.0 11 2462.083234768506 21 875.160444139823 31 0.0 11 2488.803210872516 21 856.6585337744763 31 0.0 0 SPLINE 5 1A1C 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 22 73 18 74 16 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 12.58680017013203 40 31.89493313664621 40 51.89144539348605 40 64.54096486664418 40 77.58817181405934 40 88.78535162982835 40 106.371911133312 40 111.406635242685 40 120.3468908531314 40 134.3097604344524 40 147.142684872124 40 158.0725867794782 40 178.5193469547286 40 198.3849214736875 40 214.6797050175186 40 214.6797050175186 40 214.6797050175186 40 214.6797050175186 10 1338.799734885586 20 1334.931800182326 30 0.0 10 1342.385768162365 20 1332.733406922367 30 0.0 10 1351.472771216569 20 1327.162681631848 30 0.0 10 1363.31985472545 20 1314.123835540867 30 0.0 10 1379.463326484229 20 1307.110648897693 30 0.0 10 1394.998084868658 20 1304.33734605407 30 0.0 10 1406.439246297916 20 1309.636110389043 30 0.0 10 1420.819178878278 20 1310.995713204082 30 0.0 10 1430.906941059027 20 1304.572565514152 30 0.0 10 1443.172919822959 20 1311.361739625367 30 0.0 10 1429.72516450053 20 1317.296238241782 30 0.0 10 1422.248280909298 20 1323.535373401569 30 0.0 10 1413.863224784502 20 1333.93576588921 30 0.0 10 1400.18852075789 20 1340.230914065399 30 0.0 10 1383.345677754695 20 1341.388732354056 30 0.0 10 1362.819970348816 20 1341.620259262516 30 0.0 10 1355.409786783279 20 1351.916716557729 30 0.0 10 1352.070568266394 20 1356.55656394537 30 0.0 11 1338.799734885586 21 1334.931800182326 31 0.0 11 1349.276697161647 21 1327.956070830579 31 0.0 11 1363.944447972575 21 1315.399754300597 31 0.0 11 1382.104537664443 21 1307.028873533243 31 0.0 11 1394.676885146814 21 1305.633731359732 31 0.0 11 1407.249250751432 21 1309.121600656668 31 0.0 11 1418.424680803677 21 1309.819167122361 31 0.0 11 1435.886284597108 21 1307.726449241046 31 0.0 11 1440.077073131982 21 1310.516742830164 31 0.0 11 1433.092431614608 21 1316.0973300084 31 0.0 11 1421.917001562364 21 1324.468201533658 31 0.0 11 1412.83695671643 21 1333.536648766719 31 0.0 11 1403.058462216558 21 1338.419660237152 31 0.0 11 1382.80298731838 21 1341.20995382627 31 0.0 11 1363.245998318642 21 1344.697823123191 31 0.0 11 1352.070568266394 21 1356.55656394537 31 0.0 0 SPLINE 5 1A1D 330 1A01 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 5.0 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 10 73 6 74 4 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 20.29839734147715 40 46.62319553480955 40 76.70652463268172 40 76.70652463268172 40 76.70652463268172 40 76.70652463268172 10 1346.482844179146 20 1339.117235944955 30 0.0 10 1352.483439808095 20 1335.977022568396 30 0.0 10 1366.266150759473 20 1328.764296370689 30 0.0 10 1390.315953817209 20 1319.954574947703 30 0.0 10 1407.77954463396 20 1313.001012876217 30 0.0 10 1417.093148453117 20 1309.292570383186 30 0.0 11 1346.482844179146 21 1339.117235944955 31 0.0 11 1364.642915748765 21 1330.048788711894 31 0.0 11 1389.089179181817 21 1320.282765771029 31 0.0 11 1417.093148453117 21 1309.292570383186 31 0.0 0 SPLINE 5 1A1E 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 14 73 10 74 8 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 25.75654381862786 40 42.31016953592923 40 56.838106062924 40 81.58923934099963 40 113.6316874938598 40 149.3011299089578 40 159.5086175676822 40 159.5086175676822 40 159.5086175676822 40 159.5086175676822 10 1395.375352923001 20 1339.814811652759 30 0.0 10 1403.931161578285 20 1338.505003116434 30 0.0 10 1417.985753579105 20 1336.353385973165 30 0.0 10 1434.971396159371 20 1327.477496503371 30 0.0 10 1449.193437972135 20 1314.957307565093 30 0.0 10 1473.631003759541 20 1311.443803226601 30 0.0 10 1502.542033613331 20 1301.842734833221 30 0.0 10 1527.594057026716 20 1293.374192808075 30 0.0 10 1540.010534804707 20 1284.397304642577 30 0.0 10 1542.773166120267 20 1282.39997232292 30 0.0 11 1395.375352923001 21 1339.814811652759 31 0.0 11 1420.520066009991 21 1334.234224474523 31 0.0 11 1435.187816820922 21 1326.560919414973 31 0.0 11 1447.061714649353 21 1318.190047889715 31 0.0 11 1470.809510306218 21 1311.214318537968 31 0.0 11 1501.541929358205 21 1302.145862062811 31 0.0 11 1534.369751738752 21 1288.194403359317 31 0.0 11 1542.773166120267 21 1282.39997232292 31 0.0 0 LINE 5 1A1F 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 1352.769017920331 20 1370.508022648864 30 0.0 11 1317.84581033347 21 1404.689102941891 31 0.0 0 LINE 5 1A20 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 1303.178059522539 20 1419.338137353188 30 0.0 11 1298.987270987669 21 1424.22114882362 31 0.0 0 LINE 5 1A21 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 1295.494950228982 20 1428.406593828345 30 0.0 11 1290.605693917921 21 1434.684747472289 31 0.0 0 LINE 5 1A22 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 1329.021240385718 20 1432.592029590974 30 0.0 11 1324.131984074658 21 1438.17261676921 31 0.0 0 LINE 5 1A23 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 1319.242745885847 20 1443.055628239642 30 0.0 11 1315.750407004911 21 1448.636206175782 31 0.0 0 SPLINE 5 1A24 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 32 73 28 74 26 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 38.61625992278573 40 74.92559184813848 40 91.52654108553885 40 108.1275055296438 40 114.3731597199381 40 122.7790539760702 40 129.7984425605736 40 144.729237990324 40 160.4863265992371 40 173.3584126580414 40 182.1015424798472 40 185.224367510507 40 187.7417345464522 40 191.6903232565206 40 196.1072373634892 40 198.6245944369482 40 215.5243495206911 40 223.6898315605866 40 232.1566474766037 40 244.4116403137114 40 252.2203911805985 40 263.122540599288 40 274.5727813999435 40 287.1595815700725 40 302.9291046558662 40 302.9291046558662 40 302.9291046558662 40 302.9291046558662 10 1342.292055644273 20 1419.338137353188 30 0.0 10 1352.195276394348 20 1411.298490919577 30 0.0 10 1371.410101377031 20 1395.699484995842 30 0.0 10 1393.161615210315 20 1372.074597485851 30 0.0 10 1416.430129385758 20 1367.845721513028 30 0.0 10 1429.155720338902 20 1364.837556233291 30 0.0 10 1438.972510278299 20 1361.118501067901 30 0.0 10 1443.237739146548 20 1353.382618960587 30 0.0 10 1454.230475403022 20 1357.614293229799 30 0.0 10 1465.986341685286 20 1351.910777534849 30 0.0 10 1480.715325877646 20 1351.515852988191 30 0.0 10 1491.60954745707 20 1342.951166437587 30 0.0 10 1493.17903335938 20 1334.716361335162 30 0.0 10 1497.932122238505 20 1331.471617684198 30 0.0 10 1500.642776968217 20 1333.781001862304 30 0.0 10 1502.684660376858 20 1337.516304840205 30 0.0 10 1506.723967657389 20 1335.245313781566 30 0.0 10 1513.034246839693 20 1330.973829035181 30 0.0 10 1520.224157547007 20 1324.782781311543 30 0.0 10 1528.950088301118 20 1317.99420918299 30 0.0 10 1537.872767915735 20 1313.372790313046 30 0.0 10 1547.344090986679 20 1315.081037726861 30 0.0 10 1558.523173145045 20 1314.266523376391 30 0.0 10 1563.06456205529 20 1303.840004621227 30 0.0 10 1573.077443723348 20 1297.719273785898 30 0.0 10 1584.730213430903 20 1291.052728045944 30 0.0 10 1590.309376629297 20 1283.253218288608 30 0.0 10 1593.4120617716 20 1278.915753658017 30 0.0 11 1342.292055644273 21 1419.338137353188 31 0.0 11 1371.627557266136 21 1394.225513535318 31 0.0 11 1400.264609234062 21 1371.903174064471 31 0.0 11 1416.329277475117 21 1367.717729059746 31 0.0 11 1432.393963838421 21 1363.532293297117 31 0.0 11 1437.981669803419 21 1360.741999707999 31 0.0 11 1444.267861666856 21 1355.161421771859 31 0.0 11 1451.252503184226 21 1355.858988237567 31 0.0 11 1465.920253995158 21 1353.068694648449 31 0.0 11 1481.286472582276 21 1349.580834593623 31 0.0 11 1491.064967082147 21 1341.20995382627 31 0.0 11 1495.255755617021 21 1333.536648766719 31 0.0 11 1498.049608599518 21 1332.141506593208 31 0.0 11 1500.145011928081 21 1333.536648766719 31 0.0 11 1502.938864910578 21 1336.326942355837 31 0.0 11 1507.129653445452 21 1334.931800182326 31 0.0 11 1509.225038651762 21 1333.536648766719 31 0.0 11 1522.49587203257 21 1323.073059360147 31 0.0 11 1529.066710083556 21 1318.225463641487 31 0.0 11 1536.782566283647 21 1314.739415039526 31 0.0 11 1549.037502549683 21 1314.702178592793 31 0.0 11 1556.720611843244 21 1313.307036419282 31 0.0 11 1563.705253360614 21 1304.936155651928 31 0.0 11 1572.785298206548 21 1297.960426300182 31 0.0 11 1583.262260482606 21 1290.984696948435 31 0.0 11 1593.4120617716 21 1278.915753658017 31 0.0 0 SPLINE 5 1A25 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 33 73 29 74 27 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 38.26896825228894 40 68.04458498396536 40 83.48189652529311 40 89.63599337486142 40 98.59736497179385 40 104.1073791562145 40 120.316492877405 40 145.4512387989852 40 189.0217731381268 40 216.245938592654 40 233.8901194422842 40 237.7867862702005 40 240.2484213131865 40 244.1411129602528 40 249.6469158028166 40 254.0886264172985 40 269.0627140248648 40 293.8022000574052 40 311.724934365631 40 322.3174219688497 40 329.8044718221544 40 336.4338076586232 40 353.1766132878619 40 398.9829723788294 40 439.6187257233462 40 469.3888711196457 40 469.3888711196457 40 469.3888711196457 40 469.3888711196457 10 1712.834774442508 20 1488.105360979083 30 0.0 10 1723.638727314655 20 1480.77398283252 30 0.0 10 1742.848821627234 20 1467.738340479826 30 0.0 10 1764.983323317117 20 1455.896337214981 30 0.0 10 1786.997492343107 20 1451.257676181787 30 0.0 10 1785.060293608739 20 1440.385057624643 30 0.0 10 1786.285045133236 20 1432.63482617519 30 0.0 10 1796.514580839583 20 1428.738849447642 30 0.0 10 1811.9025175005 20 1428.130144507029 30 0.0 10 1839.660334320393 20 1421.001870591398 30 0.0 10 1870.76241751055 20 1416.312603445875 30 0.0 10 1901.68111761356 20 1415.961220696267 30 0.0 10 1915.261686124438 20 1410.846264634296 30 0.0 10 1925.29907231176 20 1410.254205242215 30 0.0 10 1924.894478393808 20 1406.198463277468 30 0.0 10 1922.626996217802 20 1402.831907662269 30 0.0 10 1925.461932494942 20 1397.950430157803 30 0.0 10 1933.500900763702 20 1394.724799605692 30 0.0 10 1931.769643441117 20 1376.227703395613 30 0.0 10 1930.001023403973 20 1359.285297253889 30 0.0 10 1928.159025253676 20 1340.387052264538 30 0.0 10 1917.008904483808 20 1332.054603060631 30 0.0 10 1919.697049190239 20 1323.248483525357 30 0.0 10 1923.725400963793 20 1314.058776049778 30 0.0 10 1930.413076299326 20 1291.650910140245 30 0.0 10 1932.736116926344 20 1257.209142408491 30 0.0 10 1932.231461175789 20 1218.405388516205 30 0.0 10 1935.674406348379 20 1195.154843904912 30 0.0 10 1937.130207356713 20 1185.323677681619 30 0.0 11 1712.834774442508 21 1488.105360979083 31 0.0 11 1744.876979144537 21 1467.181426145311 31 0.0 11 1771.989623650545 21 1454.873223204078 31 0.0 11 1785.54593684242 21 1447.488308833024 31 0.0 11 1785.54593684242 21 1441.334211983456 31 0.0 11 1788.010726001557 21 1432.718470848805 31 0.0 11 1792.940286197583 21 1430.256826563723 31 0.0 11 1808.961388548596 21 1427.795191520737 31 0.0 11 1833.609243895465 21 1422.871912192669 31 0.0 11 1876.742972630232 21 1416.717815343101 31 0.0 11 1903.855617136239 21 1414.256171058005 31 0.0 11 1921.109105005696 21 1410.563709251437 31 0.0 11 1924.806279683278 21 1409.332891729937 31 0.0 11 1924.806279683278 21 1406.87125668695 31 0.0 11 1923.573894164834 21 1403.178794880368 31 0.0 11 1926.038683323971 21 1398.2555155523 31 0.0 11 1929.735858001549 21 1395.793871267218 31 0.0 11 1932.200647160687 21 1381.024033282999 31 0.0 11 1929.735858001549 21 1356.407636642645 31 0.0 11 1924.806279683278 21 1339.17616361544 31 0.0 11 1918.644315846559 21 1330.56042248079 31 0.0 11 1919.876719487252 21 1323.175498867625 31 0.0 11 1922.34150864639 21 1317.021402018072 31 0.0 11 1927.271068842415 21 1301.020746512367 31 0.0 11 1932.200647160687 21 1255.480415038226 31 0.0 11 1933.433032679131 21 1214.863353650056 31 0.0 11 1937.130207356713 21 1185.323677681619 31 0.0 0 SPLINE 5 1A26 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 27 73 23 74 21 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 50.17007344833575 40 95.02253759407267 40 113.3407355687599 40 124.5003420645155 40 133.8841121727678 40 153.0434102404455 40 176.8184795184725 40 196.5501201887651 40 209.4016166089924 40 231.2140178352112 40 248.6208865214944 40 262.215872493011 40 277.7866417892162 40 290.6381382094425 40 303.956721668918 40 318.9308092764842 40 324.5423131813236 40 348.6431006496396 40 397.6673851123584 40 442.2384797821668 40 442.2384797821668 40 442.2384797821668 40 442.2384797821668 10 1811.426177707733 20 1489.336187742679 30 0.0 10 1826.478340718566 20 1481.766111196218 30 0.0 10 1854.98726301548 20 1467.428323073049 30 0.0 10 1890.883419575861 20 1457.969713013581 30 0.0 10 1913.581858920785 20 1443.96215538782 30 0.0 10 1926.854444612425 20 1449.080189379438 30 0.0 10 1939.170678335593 20 1442.351596911755 30 0.0 10 1951.323901451645 20 1429.882031548555 30 0.0 10 1960.035207212407 20 1409.629769247987 30 0.0 10 1956.953994959719 20 1390.457616457394 30 0.0 10 1966.432549361761 20 1373.281737756027 30 0.0 10 1955.171823643885 20 1356.72550654926 30 0.0 10 1955.197510427898 20 1339.288899218121 30 0.0 10 1951.333457540253 20 1323.507589388459 30 0.0 10 1958.813629983727 20 1310.789814341134 30 0.0 10 1960.290241158797 20 1296.539658652043 30 0.0 10 1971.553133167352 20 1286.59496627545 30 0.0 10 1970.410613588617 20 1274.375815141081 30 0.0 10 1975.231318631652 20 1260.238143922016 30 0.0 10 1973.03951698467 20 1233.393746512968 30 0.0 10 1972.812177653691 20 1194.519889171218 30 0.0 10 1973.685909953048 20 1163.277187419522 30 0.0 10 1974.101990377013 20 1148.399087342128 30 0.0 11 1811.426177707733 21 1489.336187742679 31 0.0 11 1857.024695601637 21 1468.412243666796 31 0.0 11 1898.926038817964 21 1452.411588161092 31 0.0 11 1916.179544809674 21 1446.257491311524 31 0.0 11 1927.271068842415 21 1447.488308833024 31 0.0 11 1935.897821838269 21 1443.795847026442 31 0.0 11 1949.454135030144 21 1430.256826563723 31 0.0 11 1958.080888026001 21 1408.102074208451 31 0.0 11 1959.313273544441 21 1388.408956896164 31 0.0 11 1963.010448222023 21 1376.100753954931 31 0.0 11 1956.848484385307 21 1355.176819121145 31 0.0 11 1954.383713348419 21 1337.945336851844 31 0.0 11 1953.151309707726 21 1324.406325631222 31 0.0 11 1958.080888026001 21 1309.636487647018 31 0.0 11 1961.778062703579 21 1297.328284705785 31 0.0 11 1969.172412058738 21 1286.250908528149 31 0.0 11 1971.637201217876 21 1271.48107054393 31 0.0 11 1973.092889106156 21 1266.06166570152 31 0.0 11 1973.939089467872 21 1241.975738242923 31 0.0 11 1973.092889106156 21 1192.958757389045 31 0.0 11 1974.101990377013 21 1148.399087342128 31 0.0 0 SPLINE 5 1A27 330 1A01 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 10.0 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 14 73 10 74 8 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 14.86188537138251 40 35.19658686167444 40 48.96474591398763 40 59.39478483848784 40 67.14716721085817 40 74.12281115373923 40 75.93525353937707 40 75.93525353937707 40 75.93525353937707 40 75.93525353937707 10 1937.130207356713 20 1185.323677681604 30 0.0 10 1937.734658064852 20 1180.419394301061 30 0.0 10 1939.16614547853 20 1168.804849330211 30 0.0 10 1940.443504828601 20 1152.264955565562 30 0.0 10 1940.458831703323 20 1138.074731532209 30 0.0 10 1938.349072927817 20 1125.87304464948 30 0.0 10 1928.871640125344 20 1124.195331396651 30 0.0 10 1923.121339809304 20 1127.729542305384 30 0.0 10 1920.829242971254 20 1125.705085489872 30 0.0 10 1920.356524189715 20 1125.287564404716 30 0.0 11 1937.130207356713 21 1185.323677681604 31 0.0 11 1938.852038614848 21 1170.561871087877 31 0.0 11 1940.302670395256 21 1150.278977996975 31 0.0 11 1939.940007919591 21 1136.515596158977 31 0.0 11 1936.313437529697 21 1126.736347763842 31 0.0 11 1928.697634274245 21 1125.287564404716 31 0.0 11 1921.807137847874 21 1126.374149613533 31 0.0 11 1920.356524189715 21 1125.287564404716 31 0.0 0 SPLINE 5 1A28 330 1A01 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 10.0 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 15 73 11 74 9 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 15.74063806591607 40 29.84530757944829 40 42.98263485759981 40 55.66616358964326 40 77.67903982211739 40 89.22408290127862 40 97.17157672822633 40 116.0883485211446 40 116.0883485211446 40 116.0883485211446 40 116.0883485211446 10 1920.356524189715 20 1125.287564404701 30 0.0 10 1924.813689709535 20 1122.433720817617 30 0.0 10 1933.264775066715 20 1117.022641591762 30 0.0 10 1947.555959098042 20 1114.176615917894 30 0.0 10 1959.071478431676 20 1107.282767258786 30 0.0 10 1972.570805523957 20 1098.833288720993 30 0.0 10 1986.644232603712 20 1092.431327269677 30 0.0 10 1998.597085354153 20 1085.434673161239 30 0.0 10 2010.3047431537 20 1080.227064763708 30 0.0 10 2018.261824938912 20 1076.116570952343 30 0.0 10 2023.864892686913 20 1073.222120961188 30 0.0 11 1920.356524189715 21 1125.287564404701 31 0.0 11 1934.137498920212 21 1117.681486427216 31 0.0 11 1947.555811175043 21 1113.335154834043 31 0.0 11 1959.16084729605 21 1107.177841731449 31 0.0 11 1970.040558465731 21 1100.658348962766 31 0.0 11 1989.593796159632 21 1090.547087136859 31 0.0 11 1999.748200500235 21 1085.053810137906 31 0.0 11 2006.940903574828 21 1081.673324875388 31 0.0 11 2023.864892686913 21 1073.222120961188 31 0.0 0 SPLINE 5 1A29 330 1A01 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO07W100 48 10.0 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 13 73 9 74 7 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 18.13320689817566 40 29.15230971460684 40 42.00746291630153 40 57.84336778331446 40 80.23164356917879 40 94.44969843896034 40 94.44969843896034 40 94.44969843896034 40 94.44969843896034 10 1974.10199037701 20 1148.399087342128 30 0.0 10 1974.212718359124 20 1142.370794855503 30 0.0 10 1974.390733006329 20 1132.679257632819 30 0.0 10 1974.379149974476 20 1118.541047559952 30 0.0 10 1980.838942003949 20 1106.13006681325 30 0.0 10 1996.045379334535 20 1097.352458802647 30 0.0 10 2012.881950433705 20 1092.496078701996 30 0.0 10 2023.230336768793 20 1085.918375477899 30 0.0 10 2027.249694133781 20 1083.363567506647 30 0.0 11 1974.10199037701 21 1148.399087342128 31 0.0 11 1974.362189648731 21 1130.267747381964 31 0.0 11 1975.208390010448 21 1119.281184141946 31 0.0 11 1981.131792542466 21 1107.87205331253 31 0.0 11 1994.247898149074 21 1098.998291051044 31 0.0 11 2014.979807011135 21 1090.547087136859 31 0.0 11 2027.249694133781 21 1083.363567506647 31 0.0 0 SPLINE 5 1A2A 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 11 71 3 72 19 73 15 74 13 42 0.0000000001 43 0.0000000001 44 0.0000000001 12 -0.7752113611314688 22 0.6317019436195329 32 0.0 13 -0.7752113611314688 23 0.6317019436195329 33 0.0 40 0.0 40 0.0 40 0.0 40 0.0 40 4.085045371315981 40 9.309520427978169 40 11.35445108278535 40 16.1994603168026 40 33.21294214119386 40 41.48045964649802 40 53.1584816378324 40 60.2935802409123 40 67.51747623421647 40 78.42638025665303 40 98.87183523560466 40 114.1390470976535 40 114.1390470976535 40 114.1390470976535 40 114.1390470976535 10 2025.083523417277 20 1073.213562770659 30 0.0 10 2024.027932223083 20 1074.073739804271 30 0.0 10 2023.955522098352 20 1077.796090521373 30 0.0 10 2025.875258469957 20 1081.567015092161 30 0.0 10 2030.104539343303 20 1082.370957572684 30 0.0 10 2037.156083523715 20 1077.6779322504 30 0.0 10 2044.345867912676 20 1070.527244120449 30 0.0 10 2056.749258071734 20 1068.076295220006 30 0.0 10 2065.51878820647 20 1067.106016509206 30 0.0 10 2073.247170966634 20 1059.920779727742 30 0.0 10 2066.387040234777 20 1050.449975837786 30 0.0 10 2053.335526041283 20 1059.520485072131 30 0.0 10 2040.089543388762 20 1064.496103998298 30 0.0 10 2029.02862878003 20 1069.998786968356 30 0.0 10 2025.083523417277 20 1073.213562770659 30 0.0 11 2025.083523417277 21 1073.213562770659 31 0.0 11 2024.281396368613 21 1077.219082447743 31 0.0 11 2027.088841038938 21 1081.625145774654 31 0.0 11 2029.094158660598 21 1082.025698666577 31 0.0 11 2033.505857428248 21 1080.022943449075 31 0.0 11 2047.543098902115 21 1070.409701769327 31 0.0 11 2055.564369388754 21 1068.406937309715 31 0.0 11 2066.794148070046 21 1065.202523416461 31 0.0 11 2071.205846837699 21 1059.594801413797 31 0.0 11 2067.195211594378 21 1053.586517277115 31 0.0 11 2056.76755996175 21 1056.790931170369 31 0.0 11 2038.31863784248 21 1065.603076308383 31 0.0 11 2025.083523417277 21 1073.213562770659 31 0.0 0 SPLINE 5 1A2B 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 53 73 49 74 47 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 18.49249041593028 40 32.20101005638068 40 38.48216312285888 40 47.8202864087808 40 55.55800041254226 40 71.36058662160822 40 87.70000078566249 40 106.5533048617293 40 119.143417975103 40 130.331344473931 40 145.5015107685396 40 157.1857670812555 40 177.2771810927941 40 191.1138016963264 40 201.1102681781167 40 209.6905230689119 40 222.0578674790993 40 243.4784395542299 40 274.9003195481264 40 299.9217741301785 40 322.9638284985939 40 342.1864614416156 40 350.747438154163 40 358.9300309175347 40 392.00119548493 40 430.1298549642146 40 461.6016355161067 40 486.7195493842322 40 529.1280127486453 40 542.8671829163593 40 577.2085372160673 40 603.7377710081663 40 623.1438834845304 40 640.0450457593426 40 664.3920312759623 40 680.0780065757244 40 705.1451026935548 40 738.7032019518215 40 770.6717667131875 40 800.8648565331835 40 822.4805349907281 40 846.9994999847925 40 872.8769216529141 40 901.8233119819669 40 931.4823933043697 40 990.5106463870763 40 990.5106463870763 40 990.5106463870763 40 990.5106463870763 10 2553.042180430129 20 906.6302785798907 30 0.0 10 2557.622508813122 20 902.5196257474116 30 0.0 10 2565.598243665753 20 895.3617378577998 30 0.0 10 2573.651665309908 20 885.0605570086583 30 0.0 10 2573.020308226755 20 873.3490075196195 30 0.0 10 2583.460993185424 20 874.2499647805727 30 0.0 10 2591.677113654846 20 866.1059855289073 30 0.0 10 2592.017556743013 20 851.7466104444556 30 0.0 10 2602.817469895514 20 838.2605140028282 30 0.0 10 2608.897792123142 20 822.7239785917458 30 0.0 10 2621.962158965125 20 815.8127031199933 30 0.0 10 2630.42370965253 20 805.976571001392 30 0.0 10 2642.841793953615 20 800.1826327310272 30 0.0 10 2647.335582469272 20 784.4337814350354 30 0.0 10 2654.809848587447 20 771.0922159895887 30 0.0 10 2665.273033673605 20 760.793999884469 30 0.0 10 2676.765606838068 20 756.9746440347925 30 0.0 10 2677.797124535437 20 745.4490662305024 30 0.0 10 2689.694005526647 20 736.1783415289554 30 0.0 10 2710.080020735036 20 729.1931616440323 30 0.0 10 2734.472456602248 20 719.9838351070278 30 0.0 10 2757.832972832364 20 707.3284814550354 30 0.0 10 2778.941052372323 20 699.8250473111722 30 0.0 10 2794.463389855474 20 692.534004855424 30 0.0 10 2806.584521403692 20 691.5238434111292 30 0.0 10 2822.976202546273 20 694.5537506127728 30 0.0 10 2849.596666090051 20 693.322040006615 30 0.0 10 2883.779032865564 20 692.0816913688033 30 0.0 10 2914.989954455498 20 687.1795731514565 30 0.0 10 2947.892888033551 20 683.5675471147467 30 0.0 10 2973.626552987825 20 675.138623364235 30 0.0 10 3004.127084577133 20 671.4848711505434 30 0.0 10 3026.945417117866 20 684.8836061850331 30 0.0 10 3053.3926030168 20 688.0450961486476 30 0.0 10 3073.823018235911 20 694.9206382354088 30 0.0 10 3093.929507840888 20 689.8922887811949 30 0.0 10 3112.7100249194 20 688.5399134644313 30 0.0 10 3134.138863430303 20 683.3566165790359 30 0.0 10 3153.933307547935 20 667.7180230119136 30 0.0 10 3179.481273409104 20 651.8733507544839 30 0.0 10 3204.06197813272 20 631.148282301717 30 0.0 10 3230.108709569061 20 620.1012904953999 30 0.0 10 3249.45999779843 20 603.3538083146875 30 0.0 10 3270.201121413948 20 591.0319283017778 30 0.0 10 3294.850510441266 20 581.2513504047826 30 0.0 10 3318.895404656518 20 566.4662153261895 30 0.0 10 3353.017641396756 20 547.1106001745365 30 0.0 10 3380.351719573302 20 535.7342579406699 30 0.0 10 3398.544654282756 20 528.1624258065712 30 0.0 11 2553.042180430129 21 906.6302785798907 31 0.0 11 2566.375263741174 21 893.816181217844 31 0.0 11 2573.036241865811 21 881.8347421909274 31 0.0 11 2574.269587863527 21 875.675867172351 31 0.0 11 2583.169805618418 21 872.84979738931 31 0.0 11 2589.047884402102 21 867.817858616152 31 0.0 11 2593.592056820416 21 852.6827263759768 31 0.0 11 2601.643790810034 21 838.4649194077791 31 0.0 11 2611.720523185278 21 822.5304743524175 31 0.0 11 2621.797237438273 21 814.9825754347693 31 0.0 11 2630.077021827339 21 807.4582900990208 31 0.0 11 2642.002622436259 21 798.0820437539951 31 0.0 11 2646.823594107685 21 787.4387323461414 31 0.0 11 2656.719303323356 21 769.953313961043 31 0.0 11 2667.122471795654 21 760.8304769317474 31 0.0 11 2675.539767821003 21 755.4380313137372 31 0.0 11 2678.540595025697 21 747.3996353245747 31 0.0 11 2687.295943510624 21 738.6649297961849 31 0.0 11 2706.959020164398 21 730.1676170130958 31 0.0 11 2736.138634188035 21 718.5106591002258 31 0.0 11 2758.672746488904 21 707.6346776634309 31 0.0 11 2780.034929098776 21 698.9979292209027 31 0.0 11 2798.139909027075 21 692.5388798281492 31 0.0 11 2806.67719247254 21 691.9023944437358 31 0.0 11 2814.796758045529 21 692.9160409487376 31 0.0 11 2847.863558542536 21 693.4532845944922 31 0.0 11 2885.923945146347 21 691.172573026648 31 0.0 11 2917.133450563233 21 687.1179777645011 31 0.0 11 2941.999552172063 21 683.5702196180209 31 0.0 11 2983.358514555184 21 674.1939732730097 31 0.0 11 2997.060240684535 21 673.1803175258974 31 0.0 11 3029.79216011579 21 683.5702196180209 31 0.0 11 3055.673216482373 21 689.3986985744559 31 0.0 11 3074.703409784277 21 693.1998752787767 31 0.0 11 3091.449982064623 21 690.9191729530284 31 0.0 11 3115.556670769063 21 687.5069502970873 31 0.0 11 3130.671769331933 21 683.3136679861199 31 0.0 11 3151.839101505145 21 669.8859594530367 31 0.0 11 3179.496319636662 21 650.8800574472552 31 0.0 11 3205.407458938963 21 632.155688487037 31 0.0 11 3231.765891626448 21 617.4296673293138 31 0.0 11 3249.073275068694 21 604.4800714451557 31 0.0 11 3270.080007858574 21 591.835039935715 31 0.0 11 3293.578803794487 21 580.9977182300499 31 0.0 11 3318.770616610352 21 566.7405768569587 31 0.0 11 3344.67834892957 21 552.3027615456085 31 0.0 11 3398.544654282756 21 528.1624258065712 31 0.0 0 SPLINE 5 1A2C 330 1A01 100 AcDbEntity 8 Hbowl Outline 6 ACAD_ISO03W100 48 5.0 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 10 73 6 74 4 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 46.51384452128304 40 82.20394904935863 40 118.4402492197651 40 118.4402492197651 40 118.4402492197651 40 118.4402492197651 10 3352.601686774866 20 436.3168214368488 30 0.0 10 3353.752267714583 20 420.7536380940953 30 0.0 10 3355.785690191678 20 393.2488135903251 30 0.0 10 3370.194949136141 20 356.1606317186607 30 0.0 10 3380.187574447498 20 334.4004608134636 30 0.0 10 3385.221828165457 20 323.4377540302521 30 0.0 11 3352.601686774866 21 436.3168214368488 31 0.0 11 3358.604337908033 21 390.1919267321063 31 0.0 11 3370.434343645916 21 356.519467281294 31 0.0 11 3385.221828165457 21 323.4377540302521 31 0.0 0 SPLINE 5 1A2D 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 12 73 8 74 6 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 13.30851820174241 40 25.72313411740827 40 55.47318965882713 40 80.61347792719482 40 101.4902747264522 40 101.4902747264522 40 101.4902747264522 40 101.4902747264522 10 3385.221828165461 20 323.4377540302521 30 0.0 10 3386.917767376113 20 319.2611984232533 30 0.0 10 3390.195733495954 20 311.1886167579571 30 0.0 10 3388.088907000723 20 292.3335165325688 30 0.0 10 3379.888407843273 20 271.4765179262907 30 0.0 10 3372.323710872353 20 247.3210262566137 30 0.0 10 3369.35106239398 20 232.2650882840834 30 0.0 10 3368.002446371312 20 225.4345870210672 30 0.0 11 3385.221828165461 21 323.4377540302521 31 0.0 11 3389.170702779301 21 310.7285823023121 31 0.0 11 3388.440756654112 21 298.3354444031429 31 0.0 11 3379.681475640842 21 269.9041095620196 31 0.0 11 3372.382086877947 21 245.846823391199 31 0.0 11 3368.002446371312 21 225.4345870210672 31 0.0 0 LINE 5 1A2E 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3365.812626117996 20 219.6025221273302 30 0.0 11 3362.892859739488 21 209.3963993212091 31 0.0 0 LINE 5 1A2F 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3362.892859739488 20 200.6483019806328 30 0.0 11 3360.703039486172 21 191.1711872862215 31 0.0 0 LINE 5 1A30 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 3358.513219232853 20 181.6940818339207 30 0.0 11 3355.593452854347 21 171.4879590277851 31 0.0 0 SPLINE 5 1A31 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 9 73 5 74 0 42 0.0000000001 43 0.0000000001 40 7.523244663292762 40 7.523244663292762 40 7.523244663292762 40 7.523244663292762 40 26.11363603578523 40 53.54398055140991 40 53.54398055140991 40 53.54398055140991 40 53.54398055140991 10 3369.738974125619 20 234.0958657919836 30 0.0 10 3373.046088010527 20 228.7031579277245 30 0.0 10 3381.903017142704 20 216.1157641260361 30 0.0 10 3396.518132887522 20 210.0787110335659 30 0.0 10 3405.229372555462 20 206.4803668743552 30 0.0 0 LWPOLYLINE 5 1A32 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 3369.24204454543 20 433.0487017040868 10 3365.989154959464 20 435.6476929325727 10 3372.494934131395 20 442.1451710037945 10 3388.108811392929 20 437.5969363539479 10 3383.554762348129 20 428.5004670542402 0 LWPOLYLINE 5 1A33 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 3388.759400183473 20 426.5512236328795 10 3392.662860437733 20 422.6527367901435 10 3399.819210277957 20 423.9522324043937 10 3399.819210277957 20 435.6476929325727 10 3392.662860437733 20 440.1959275824338 10 3386.157081265803 20 438.2466841610585 0 LWPOLYLINE 5 1A34 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 3362.085694705205 20 431.7492060898512 10 3363.38685416404 20 436.2974407396977 10 3369.892633335974 20 431.7492060898512 10 3374.446682380774 20 423.3024845972686 10 3369.892633335974 20 419.4039977545326 0 LWPOLYLINE 5 1A35 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 1325.006486669506 20 1410.337960778793 10 1321.47632022847 20 1416.38196709055 10 1332.066850934741 20 1426.958980136754 10 1336.605640842241 20 1416.885636283827 0 LWPOLYLINE 5 1A36 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1308.868542589276 20 1412.856298742641 10 1306.346983923122 20 1429.980987293878 10 1311.39010125543 20 1429.980987293878 10 1320.46769676201 20 1418.900305054412 10 1321.980631961702 20 1408.323292008208 0 LWPOLYLINE 5 1A37 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 1312.398724721894 20 1431.491986871202 10 1319.459073295547 20 1421.922312211536 10 1323.493551469815 20 1425.951649752707 10 1323.997863203047 20 1434.513994028326 10 1317.946138095853 20 1438.039670378726 10 1312.398724721894 20 1436.528662798926 0 LWPOLYLINE 5 1A38 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 1312.903036455125 20 1437.536001185464 10 1305.84267218989 20 1441.565338726635 10 1306.346983923122 20 1449.120352618207 10 1317.946138095853 20 1442.572669110683 10 1318.954761562316 20 1438.543331569511 0 LWPOLYLINE 5 1A39 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1767.000861998556 20 1458.215223093269 10 1763.06618228172 20 1465.513148748563 10 1774.870205740652 20 1470.565565588956 10 1781.615373211167 20 1461.583498319363 10 1780.491181248013 20 1454.846947867161 0 LWPOLYLINE 5 1A3A 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 1775.994397703805 20 1468.881423974657 10 1776.556501531176 20 1474.495224020662 10 1781.615373211167 20 1477.302116041158 10 1790.046820780629 20 1475.056599223753 10 1792.857308534312 20 1468.320048771565 10 1792.295204706941 20 1464.39039033986 0 LWPOLYLINE 5 1A3B 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 0 43 0.0 10 1781.053269383799 20 1459.899356705063 10 1792.295204706941 20 1464.39039033986 10 1797.354076386935 20 1464.951773545457 10 1804.099228165872 20 1458.776598296361 10 1801.850844239561 20 1447.549014209377 10 1787.23633302695 20 1445.303497391971 10 1783.863757137482 20 1450.355914232364 0 LWPOLYLINE 5 1A3C 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1804.099228165872 20 1449.794531026767 10 1804.66133199324 20 1459.337981501972 10 1845.132289741603 20 1454.285564661564 10 1845.694377877393 20 1443.619355777671 10 1811.968587599545 20 1449.794531026767 0 LWPOLYLINE 5 1A3D 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1801.288756103771 20 1434.075913304972 10 1797.916164522721 20 1438.566946939769 10 1801.288756103771 20 1446.426255800673 10 1813.092779562703 20 1444.180738983268 10 1809.158099845866 20 1435.198671713675 0 LWPOLYLINE 5 1A3E 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1809.720203673234 20 1434.075913304972 10 1815.903267316382 20 1426.777979647187 10 1828.269394602681 20 1426.216604444082 10 1831.64197049215 20 1431.830396487581 10 1820.962138996375 20 1447.549014209377 0 LWPOLYLINE 5 1A3F 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1814.216971525857 20 1475.61798242935 10 1808.033907882709 20 1482.915908084658 10 1813.65488339007 20 1487.406941719455 10 1820.962138996375 20 1483.477291290255 10 1819.27584320585 20 1478.986257655458 0 LWPOLYLINE 5 1A40 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 0 43 0.0 10 1815.903267316382 20 1468.881423974657 10 1816.465355452172 20 1476.740740838053 10 1824.334714885844 20 1481.231774472849 10 1832.766162455307 20 1476.179357632456 10 1833.890354418461 20 1468.320048771565 10 1826.020994984788 20 1462.706256728066 10 1823.772611058477 20 1468.320048771565 0 LINE 5 1A41 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 1815.903267316382 20 1468.881423974657 30 0.0 11 1823.772611058477 21 1468.320048771565 31 0.0 0 LWPOLYLINE 5 1A42 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 1834.452442554247 20 1470.00418238336 10 1839.511314234241 20 1461.583498319363 10 1849.629057594229 20 1461.022115113766 10 1845.694377877393 20 1472.811082406362 0 LWPOLYLINE 5 1A43 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 1846.818569840547 20 1449.794531026767 10 1848.504865631072 20 1457.092464684567 10 1868.178248523676 20 1450.91728943547 10 1864.243568806839 20 1437.44418853108 0 LWPOLYLINE 5 1A44 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1834.452442554247 20 1426.777979647187 10 1839.511314234241 20 1433.514530099375 10 1860.87099291737 20 1429.023496464578 10 1864.805672634207 20 1422.286946012376 10 1860.87099291737 20 1418.918670786282 0 LWPOLYLINE 5 1A45 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 1867.054056560519 20 1417.234529171983 10 1865.929864597364 20 1428.462121261487 10 1892.910487404689 20 1425.655221238485 10 1892.910487404689 20 1421.164187603688 0 LWPOLYLINE 5 1A46 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1860.87099291737 20 1459.337981501972 10 1854.125825446852 20 1455.969706275864 10 1849.629057594229 20 1461.022115113766 10 1851.315353384754 20 1466.07453195416 10 1858.060505163688 20 1467.758665565954 0 LWPOLYLINE 5 1A47 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 1861.433081053157 20 1453.724189458473 10 1859.746800954213 20 1458.215223093269 10 1869.302440486833 20 1461.583498319363 10 1868.740336659462 20 1454.285564661564 0 LWPOLYLINE 5 1A48 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1870.426632449987 20 1455.969706275864 10 1872.675016376298 20 1444.180738983268 10 1886.165335625755 20 1447.549014209377 10 1883.354847872073 20 1457.092464684567 10 1873.799208339456 20 1460.460739910661 0 LWPOLYLINE 5 1A49 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 1883.354847872073 20 1443.619355777671 10 1883.354847872073 20 1445.864880597568 10 1890.662103478378 20 1446.987639006271 10 1902.466142628891 20 1445.303497391971 10 1902.466142628891 20 1439.689705348471 10 1889.537911515224 20 1439.128322142875 0 LWPOLYLINE 5 1A4A 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1902.466142628891 20 1445.864880597568 10 1903.590334592045 20 1440.812463757174 10 1910.335486370982 20 1441.935222165877 10 1910.335486370982 20 1446.426255800673 10 1905.276614690988 20 1447.549014209377 0 LWPOLYLINE 5 1A4B 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1917.642741977288 20 1420.602812400582 10 1921.015317866757 20 1411.620737128483 10 1926.07418954675 20 1414.427637151486 10 1928.322573473062 20 1419.480053991879 10 1923.263717484649 20 1423.971087626676 0 LWPOLYLINE 5 1A4C 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1935.067740943581 20 1418.357295583176 10 1931.695165054112 20 1427.339362852784 10 1933.381445153056 20 1431.830396487581 10 1936.754021042521 20 1432.953154896269 10 1943.49918851304 20 1421.164187603688 0 LWPOLYLINE 5 1A4D 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1937.316124869892 20 1417.79591237758 10 1945.185484303565 20 1416.111770763294 10 1939.002420660417 20 1400.393153041499 10 1932.819357017266 20 1402.077294655784 10 1934.50563711621 20 1413.304878742783 0 LWPOLYLINE 5 1A4E 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1940.688700759361 20 1395.340744203596 10 1942.374996549886 20 1388.042810545797 10 1946.871764402509 20 1388.042810545797 10 1949.12014832882 20 1393.656602589297 10 1944.623380476197 20 1395.902119406702 0 LWPOLYLINE 5 1A4F 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1944.061276648826 20 1380.183501684907 10 1944.623380476197 20 1386.920052137095 10 1950.806444119345 20 1387.4814273402 10 1956.427403935125 20 1372.324192824002 10 1948.558060193034 20 1369.517292801014 0 LWPOLYLINE 5 1A50 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1943.49918851304 20 1373.446951232705 10 1942.374996549886 20 1380.744876887998 10 1938.440316833046 20 1379.62211847931 10 1937.316124869892 20 1375.131084844499 10 1941.250804586729 20 1371.762809618405 0 LWPOLYLINE 5 1A51 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1940.688700759361 20 1363.342117551918 10 1937.87822869726 20 1368.955917597908 10 1933.943548980423 20 1366.710400780517 10 1932.819357017266 20 1361.657983940109 10 1938.440316833046 20 1361.096600734512 0 LWPOLYLINE 5 1A52 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 1940.688700759361 20 1365.587642371814 10 1946.309676266722 20 1352.114533464919 10 1953.054828045656 20 1358.289708714015 10 1946.309676266722 20 1366.710400780517 0 LWPOLYLINE 5 1A53 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 1939.564508796203 20 1296.537996235536 10 1935.067740943581 20 1298.783513052942 10 1931.695165054112 20 1298.783513052942 10 1931.133061226741 20 1293.731104215039 10 1935.067740943581 20 1286.43317055724 10 1938.440316833046 20 1287.555928965943 0 LWPOLYLINE 5 1A54 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1935.629829079367 20 1284.749028942955 10 1939.002420660417 20 1286.43317055724 10 1942.374996549886 20 1283.064895331146 10 1941.250804586729 20 1276.88972008205 10 1937.316124869892 20 1278.012478490753 0 LWPOLYLINE 5 1A55 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1940.126612623571 20 1276.328344878944 10 1940.688700759361 20 1269.030411221159 10 1943.49918851304 20 1265.10076079196 10 1947.995956365666 20 1267.907652812457 10 1946.309676266722 20 1274.082828061553 0 LWPOLYLINE 5 1A56 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 1768.125053961713 20 1169.104904844396 10 1771.497629851182 20 1157.877320757412 10 1780.491181248013 20 1162.929737597805 10 1777.118605358544 20 1169.104904844396 0 LWPOLYLINE 5 1A57 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 1780.491181248013 20 1158.438703963009 10 1788.922628817472 20 1163.491112800897 10 1791.733116571155 20 1159.0000791661 10 1787.23633302695 20 1153.947662325707 10 1780.491181248013 20 1158.438703963009 0 LWPOLYLINE 5 1A58 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 1795.105692460623 20 1155.070420734409 10 1797.354076386935 20 1164.613871209599 10 1788.360524990104 20 1175.841455296598 0 LWPOLYLINE 5 1A59 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 1808.596011710077 20 1171.911804867399 10 1803.537140030083 20 1164.613871209599 10 1813.092779562703 20 1156.193187145603 10 1820.400035169008 20 1167.420771232602 0 LWPOLYLINE 5 1A5A 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 1817.589547415325 20 1162.368354392208 10 1824.896803021631 20 1153.386287122615 10 1810.844395636388 20 1146.088353464816 10 1801.288756103771 20 1155.631803940006 10 1807.471819746922 20 1159.561462371697 0 LWPOLYLINE 5 1A5B 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 1831.079866664782 20 1164.052496006508 10 1831.64197049215 20 1148.895253487804 10 1840.635506197399 20 1147.772495079116 10 1844.008097778449 20 1154.509045531303 10 1841.759698160553 20 1160.122837574803 0 LWPOLYLINE 5 1A5C 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 1847.942761803704 20 1142.158703035616 10 1845.694377877393 20 1146.649736670413 10 1847.942761803704 20 1149.45662869091 10 1851.315353384754 20 1148.895253487804 10 1853.563737311065 20 1144.404219853007 0 LWPOLYLINE 5 1A5D 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 1856.374209373163 20 1147.211111873519 10 1861.433081053157 20 1141.597319830019 10 1876.609696093139 20 1147.211111873519 10 1875.485504129981 20 1151.702145508315 0 LINE 5 1A5E 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 1856.374209373163 20 1147.211111873519 30 0.0 11 1864.243568806839 21 1153.947662325707 31 0.0 0 LWPOLYLINE 5 1A5F 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 1883.916951699444 20 1150.018011896507 10 1886.165335625755 20 1139.351803012614 10 1896.845167121529 20 1137.66766940082 10 1898.531462912054 20 1143.281461444319 0 LWPOLYLINE 5 1A60 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 1 43 0.0 10 1964.296739774694 20 1129.246976334456 10 1970.479799348708 20 1137.106285799134 10 1976.100765857689 20 1137.106285799134 10 1980.035444206904 20 1132.053872245276 10 1974.414477697926 20 1123.071806245003 10 1972.728189538164 20 1118.019392691145 10 1969.355613218638 20 1118.580770958942 0 LWPOLYLINE 5 1A61 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 1980.597537271936 20 1118.580770958942 10 1985.656410715881 20 1126.440080423621 10 1990.153182130132 20 1123.6331845128 10 1994.08786047935 20 1117.458009851499 10 1990.153182130132 20 1108.475943851226 10 1982.283834396355 20 1111.844218029844 0 LWPOLYLINE 5 1A62 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 1996.336241704146 20 1118.580770958942 10 1995.212055574076 20 1128.124219798861 10 1999.146724958634 20 1128.124219798861 10 2003.643496372886 20 1123.071806245003 10 2003.643496372886 20 1117.458009851499 10 2000.270920053361 20 1115.212492208462 0 LWPOLYLINE 5 1A63 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2002.51931024282 20 1126.440080423621 10 2007.5781747221 20 1120.26490576232 10 2015.447531420537 20 1127.001458691418 10 2014.88542939084 20 1133.176633352719 10 2005.329793497305 20 1134.860768156111 0 LWPOLYLINE 5 1A64 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 2012.637048166045 20 1117.458009851499 10 2014.88542939084 20 1124.75594104838 10 2023.878972219343 20 1123.6331845128 10 2026.689455473835 20 1118.019392691145 10 2016.571717550603 20 1109.037322119009 10 2014.323336325807 20 1111.844218029844 0 LWPOLYLINE 5 1A65 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2006.300746716249 20 1116.844114667328 10 2013.724739170557 20 1117.108916599652 10 2014.255025626527 20 1109.694398488456 10 2011.338454601005 20 1104.133507619131 10 2002.323611743439 20 1105.722332928679 0 LWPOLYLINE 5 1A66 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 1996.490478657047 20 1098.572621321669 10 1994.899619289128 20 1107.575964742398 10 2003.119036945066 20 1107.840766674737 0 LWPOLYLINE 5 1A67 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 0 43 0.0 10 2015.050450828159 20 1104.663116055642 10 2012.39902751295 20 1099.367031690504 10 2012.929313968925 20 1093.541338888855 10 2029.368149280802 20 1087.186037650695 10 2033.345293218273 20 1093.276536956531 10 2033.61043196393 20 1099.89664012703 10 2019.292733511287 20 1104.927922559829 0 LWPOLYLINE 5 1A68 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 2011.86874105698 20 1104.927922559829 10 2020.883592879207 20 1105.192724492167 10 2021.148731624863 20 1112.607247175212 0 LWPOLYLINE 5 1A69 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2029.63329699112 20 1115.520091290105 10 2020.883592879207 20 1107.575964742398 10 2027.777298877543 20 1103.074290746109 10 2036.261864243795 20 1108.370375111248 10 2029.63329699112 20 1115.520091290105 0 LWPOLYLINE 5 1A6A 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2024.860727852017 20 1122.405000964791 10 2027.247012421565 20 1125.317849651546 10 2032.549868016642 20 1125.053043147359 10 2033.080145507956 20 1115.520091290105 10 2025.125875562331 20 1116.049699726616 0 LWPOLYLINE 5 1A6B 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2033.080145507956 20 1106.251941365189 10 2039.443574014975 20 1104.133507619131 10 2043.95099544376 20 1107.840766674737 10 2044.216134189416 20 1114.72568092127 10 2033.080145507956 20 1112.077638738701 0 LWPOLYLINE 5 1A6C 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2039.443574014975 20 1103.074290746109 10 2035.466430077507 20 1101.485465436562 10 2034.671004875876 20 1094.335753829553 10 2038.383001103029 20 1092.482122015833 10 2042.36013607584 20 1096.983796012122 0 LWPOLYLINE 5 1A6D 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2031.754433850354 20 1083.213976662766 10 2031.489295104696 20 1090.098886337451 10 2037.322428191084 20 1093.011730452344 10 2040.504137962263 20 1088.774862960228 10 2039.973860470948 20 1084.008387031615 0 LWPOLYLINE 5 1A6E 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2094.593213036994 20 1081.09554748857 10 2101.221780289673 20 1082.684372798117 10 2101.486919035331 20 1071.032987194805 10 2094.328074291337 20 1072.357010572013 0 LWPOLYLINE 5 1A6F 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2101.752066745644 20 1072.621812504352 10 2103.077778403251 20 1073.681029377374 10 2114.478905830368 20 1073.945835881561 10 2116.069765198288 20 1064.942492460832 10 2107.054913376061 20 1060.705620396867 0 LWPOLYLINE 5 1A70 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2094.593213036994 20 1050.378258170763 10 2093.532640125049 20 1056.998361341262 10 2097.50978406252 20 1057.527969777773 10 2102.017205491301 20 1053.820710722182 10 2098.305209264148 20 1049.319041297742 0 LWPOLYLINE 5 1A71 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2093.267501379388 20 1055.144734099391 10 2087.169220582687 20 1059.646403523831 10 2073.912095041992 20 1056.203950972427 10 2076.033231901226 20 1049.054234793555 10 2084.782936013136 20 1047.465409484022 0 LWPOLYLINE 5 1A72 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2083.722363101191 20 1058.851993154996 10 2081.070939785982 20 1068.384945012236 10 2087.434359328344 20 1069.708968389459 10 2091.676642011468 20 1065.207294393156 10 2089.290357441921 20 1058.587186650809 0 LWPOLYLINE 5 1A73 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 2110.501770857557 20 1055.144734099391 10 2112.888046462449 20 1059.911210028018 10 2117.660615601551 20 1055.93914446824 10 2121.107473083048 20 1055.409536031729 10 2115.009192286339 20 1050.113451666591 10 2110.501770857557 20 1051.172668539613 0 LWPOLYLINE 5 1A74 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2120.577186627073 20 1039.786089440502 10 2120.84232537273 20 1043.228541991906 10 2126.675467423777 20 1042.963740059582 10 2128.00117908138 20 1040.050891372826 10 2124.289182854226 20 1036.873240753746 0 LWPOLYLINE 5 1A75 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2141.78859107805 20 1034.490005075364 10 2143.379450445969 20 1042.434131623071 10 2150.008008733988 20 1038.99167449979 10 2148.947435822043 20 1033.960396638838 10 2144.440014393258 20 1032.371571329305 0 LWPOLYLINE 5 1A76 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 2157.96228764427 20 1019.660968852971 10 2157.166862442641 20 1028.134703837189 10 2160.613710959478 20 1029.723529146736 10 2170.689126728994 20 1026.545878527657 10 2170.158849237679 20 1017.542535106913 10 2167.507416957811 20 1015.688903293194 0 LWPOLYLINE 5 1A77 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2179.438839805563 20 1010.657625432242 10 2187.658257461502 20 1016.748120166215 10 2192.695965346258 20 1014.100077983646 10 2198.529098432645 20 1005.096734562917 10 2195.87767511744 20 1004.831928058731 0 LWPOLYLINE 5 1A78 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2178.908553349593 20 1030.782746019758 10 2183.681113524031 20 1031.577156388608 10 2182.620549576746 20 1034.754807007688 10 2178.643405639272 20 1036.873240753746 10 2175.991982324067 20 1034.225198571177 0 LWPOLYLINE 5 1A79 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 2162.204570327398 20 1037.667655694444 10 2160.878858669795 20 1037.932457626768 10 2160.878858669795 20 1039.786089440502 0 LWPOLYLINE 5 1A7A 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 2137.281169649268 20 1061.764841841752 10 2138.076594850896 20 1062.294450278262 10 2138.076594850896 20 1065.736902829667 0 LWPOLYLINE 5 1A7B 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 2170.423987983336 20 1048.789432861231 10 2170.689126728994 20 1046.935801047497 10 2172.014847351256 20 1046.935801047497 0 LWPOLYLINE 5 1A7C 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2193.491390547889 20 1028.134703837189 10 2195.87767511744 20 1028.929114206039 10 2200.119957800565 20 1022.30901103554 10 2197.203386775043 20 1020.190577289482 10 2192.430817635944 20 1023.368227908562 0 LWPOLYLINE 5 1A7D 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 2208.339366491847 20 1009.598403987358 10 2211.786215008684 20 1014.364884487833 10 2217.884495805388 20 1011.187233868753 10 2217.884495805388 20 1007.215168308976 10 2214.702786034209 20 1006.950361804789 10 2209.399930439136 20 1006.950361804789 0 LWPOLYLINE 5 1A7E 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2215.23307249018 20 1022.30901103554 10 2213.377074376603 20 1024.692246713923 10 2217.089070603757 20 1029.45872264255 10 2221.596492032545 20 1025.751463586959 10 2220.80106683091 20 1022.573812967864 0 LWPOLYLINE 5 1A7F 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 2226.103913461327 20 1019.925770785295 10 2225.308488259699 20 1031.047547952097 10 2232.997619459664 20 1032.901179765816 10 2235.914190485186 20 1019.396162348785 10 2234.323331117266 20 1014.894492924344 10 2230.346196144455 20 1017.012926670402 0 LWPOLYLINE 5 1A80 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 2227.429625118933 20 1006.420753368263 10 2232.467333003689 20 1010.657625432242 10 2233.527905915634 20 1006.68555987245 10 2232.202194258032 20 1002.978300816859 0 LWPOLYLINE 5 1A81 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2223.717628891779 20 995.2989762014768 10 2222.657064944487 20 998.2118248882326 10 2227.694772829246 20 1000.859867070801 10 2231.671907802057 20 993.9749573961307 10 2229.020484486853 20 993.1805424554331 0 LWPOLYLINE 5 1A82 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 2247.580465622621 20 1011.981644237588 10 2245.45931979873 20 1014.364884487833 10 2248.906177280227 20 1018.866553912274 10 2255.799883278559 20 1022.044204531354 10 2258.981593049739 20 1013.835276051322 10 2255.534744532902 20 1009.333602055019 0 LWPOLYLINE 5 1A83 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 2241.747323571573 20 1003.243102749183 10 2252.353025797063 20 1001.389475507312 10 2249.701602481855 20 996.0933911421744 10 2243.868469395467 20 996.0933911421744 0 LWPOLYLINE 5 1A84 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2245.45931979873 20 988.4140665268059 10 2248.641029569909 20 995.8285846379876 10 2255.004458076928 20 990.5325002728641 10 2255.534744532902 20 985.5012224118981 0 LWPOLYLINE 5 1A85 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2259.511879505713 20 994.7693677649658 10 2257.921020137793 20 1001.654277439651 10 2266.405585504045 20 998.2118248882326 10 2272.503866300754 20 992.9157405230943 10 2266.140446758388 20 988.4140665268059 0 LWPOLYLINE 5 1A86 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2275.420437326276 20 1009.068795550847 10 2270.117581731199 20 1007.215168308976 10 2268.526722363279 20 1009.598403987358 10 2275.685576071933 20 1019.13136041646 10 2279.13243355343 20 1015.159294856683 0 LWPOLYLINE 5 1A87 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2269.057008819257 20 1002.713494312673 10 2273.034152756725 20 1004.30231962222 10 2275.685576071933 20 1000.859867070801 10 2274.359864414331 20 998.2118248882326 10 2271.443293388805 20 999.8006501977798 0 LWPOLYLINE 5 1A88 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 0 43 0.0 10 2278.602147097455 20 998.2118248882326 10 2278.602147097455 20 993.1805424554331 10 2293.450132006073 20 995.2989762014768 10 2293.450132006073 20 997.6822164517216 10 2290.268413270231 20 1001.654277439651 10 2283.639854982215 20 1004.567126126407 10 2278.336999387142 20 1003.243102749183 0 LWPOLYLINE 5 1A89 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2292.389541164808 20 985.5012269837606 10 2292.389541164808 20 989.4732925435382 10 2296.631823847936 20 991.0621178530854 10 2300.608967785407 20 988.6788776028406 10 2300.343820075089 20 986.2956419244582 0 LWPOLYLINE 5 1A8A 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2334.016924865133 20 982.8531848011916 10 2335.607784233052 20 982.5883828688674 10 2338.524355258578 20 983.9124016742134 10 2335.607784233052 20 985.5012269837606 10 2334.016924865133 20 983.6475997418892 0 LWPOLYLINE 5 1A8B 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 2352.04661954493 20 964.8464979597193 10 2351.516342053615 20 970.1425823248573 10 2354.698051824798 20 973.3202329439519 10 2360.796332621499 20 972.2610160709155 10 2361.591757823131 20 964.581696027395 10 2356.554049938375 20 962.9928707178478 0 LWPOLYLINE 5 1A8C 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 2350.455769141666 20 988.4140756705164 10 2350.455769141666 20 990.0029009800636 10 2351.781480799272 20 990.7973113488989 0 LWPOLYLINE 5 1A8D 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 2372.197460048617 20 953.4599142887454 10 2373.258032960566 20 953.9895227252564 10 2374.053458162193 20 953.1951123564212 0 LWPOLYLINE 5 1A8E 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 2377.500306679034 20 953.1951123564212 10 2376.439742731748 20 954.254329229443 10 2377.765454389347 20 954.7839376659686 0 LWPOLYLINE 5 1A8F 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2383.742192343426 20 966.0491568325232 10 2388.824095995562 20 974.6773611345561 10 2397.97150822596 20 964.0189919211989 10 2396.446942509115 20 961.9888270098744 10 2391.873227429259 20 961.4812869250018 0 LWPOLYLINE 5 1A90 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 2383.742192343426 20 952.3455379662483 10 2386.791332741777 20 950.8229131397966 10 2383.742192343426 20 940.1645439264248 0 LWPOLYLINE 5 1A91 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2396.955131081395 20 942.7022534944844 10 2394.92236782761 20 944.2248783209361 10 2396.446942509115 20 956.9134124456322 10 2405.594363704171 20 948.2852081435995 10 2404.069789022665 20 944.2248783209361 0 LWPOLYLINE 5 1A92 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2394.414179255327 20 933.5665045357309 10 2397.463319653677 20 936.104214103776 10 2407.118929421016 20 932.5514243659855 10 2407.118929421016 20 928.4910899714741 10 2401.020648624315 20 926.4609250601496 0 LWPOLYLINE 5 1A93 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2407.627117993299 20 920.8779704110494 10 2413.217210217724 20 928.4910899714741 10 2416.266350616075 20 921.3855104959074 10 2410.676258391653 20 917.3251806732586 0 LWPOLYLINE 5 1A94 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2418.299104905203 20 933.5665045357309 10 2414.74177593457 20 939.1494637566939 10 2416.774539188354 20 945.2399584906816 10 2426.938337527976 20 937.1192942735069 10 2423.381008557342 20 931.0287995395338 0 LWPOLYLINE 5 1A95 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 2 70 0 43 0.0 10 2423.381008557342 20 931.0287995395338 10 2418.299104905203 20 933.5665045357309 0 LWPOLYLINE 5 1A96 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2427.446526100259 20 912.7573061938747 10 2424.905574274188 20 924.4307601488253 10 2439.134890156729 20 924.9383002336982 10 2450.315074605573 20 903.1140217221109 10 2447.265934207218 20 901.083852238924 0 LWPOLYLINE 5 1A97 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2446.249557062652 20 915.2950157619343 10 2453.364215003923 20 926.968469716885 10 2463.019815806601 20 923.4156754072319 10 2463.019815806601 20 912.2497661090164 10 2450.315074605573 20 910.2196011976921 0 LWPOLYLINE 5 1A98 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2465.052579060389 20 897.0235224162752 10 2465.052579060389 20 901.083852238924 10 2468.609908031027 20 903.1140217221109 10 2476.740952081516 20 897.5310625011479 10 2475.216377400011 20 892.4556479369057 0 LWPOLYLINE 5 1A99 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 2473.691811683162 20 904.1291018918418 10 2473.183623110883 20 909.2045164560985 10 2477.249140653799 20 910.2196011976921 10 2480.806469624432 20 908.1894362863531 10 2477.249140653799 20 904.1291018918418 10 2473.691811683162 20 903.6215618069837 0 LWPOLYLINE 5 1A9A 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 1 43 0.0 10 2469.11809660331 20 928.9986346282093 10 2467.59353088646 20 926.968469716885 10 2473.691811683162 20 917.8327207581315 10 2487.41293899342 20 925.9533849752916 10 2486.904750421137 20 932.0438797092647 10 2478.773706370648 20 936.6117541886488 10 2475.216377400011 20 931.5363396244064 0 LWPOLYLINE 5 1A9B 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 2444.216793808864 20 933.0589644508581 10 2437.61032443988 20 946.7625833171332 10 2440.151276265951 20 950.3153730549238 10 2452.3478288947 20 935.0891293621826 0 LWPOLYLINE 5 1A9C 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 2408.135306565582 20 963.0039071796055 10 2410.676258391653 20 966.556696917396 10 2420.840056731274 20 969.6019465703139 10 2427.446526100259 20 965.5416167476506 10 2427.446526100259 20 959.4511174418148 10 2408.135306565582 20 963.0039071796055 0 LWPOLYLINE 5 1A9D 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2434.052995469246 20 956.4058723607596 10 2452.85601746698 20 942.7022534944844 10 2460.987061517473 20 945.7474985755398 10 2437.61032443988 20 959.9586620985501 0 LINE 5 1A9E 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbLine 10 2434.052995469246 20 956.4058723607596 30 0.0 11 2437.61032443988 21 959.9586620985501 31 0.0 0 LWPOLYLINE 5 1A9F 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2494.019408362404 20 927.9835498866159 10 2491.478456536337 20 929.5061747130676 10 2492.494833680899 20 932.5514243659855 10 2495.543974079253 20 932.5514243659855 10 2499.101303049886 20 928.9986346282093 0 LWPOLYLINE 5 1AA0 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2492.494833680899 20 911.7422260241438 10 2494.527596934688 20 921.3855104959074 10 2500.117680194449 20 923.4156754072319 10 2503.675018129743 20 917.3251806732586 10 2500.117680194449 20 910.7271412825502 0 LWPOLYLINE 5 1AA1 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2506.215960991157 20 898.5461472427415 10 2499.101303049886 20 906.1592668031808 10 2490.462079391771 20 902.0989369805175 10 2497.068548760759 20 887.3802379445114 0 LWPOLYLINE 5 1AA2 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 2486.396552884198 20 897.0235224162752 10 2483.855610022783 20 893.4707326784845 10 2484.871987167349 20 891.4405677671602 0 LWPOLYLINE 5 1AA3 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 2489.445693282549 20 900.5763121540658 10 2491.478456536337 20 910.2196011976921 10 2487.921127565703 20 912.2497661090164 0 LWPOLYLINE 5 1AA4 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2532.58088775261 20 897.5310716448584 10 2549.35115546122 20 900.5763212977763 10 2545.285637918303 20 878.2444981294684 10 2534.613651006399 20 878.2444981294684 10 2535.630028150964 20 889.4104074276983 0 LWPOLYLINE 5 1AA5 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2521.400712268427 20 889.4104074276983 10 2529.53174735426 20 886.3651577747805 10 2525.974418383626 20 879.7671229559346 10 2517.33519472551 20 882.3048279521172 0 LWPOLYLINE 5 1AA6 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2509.204150675021 20 871.64645873876 10 2521.400712268427 20 871.1389186539017 10 2521.400712268427 20 849.3146355704521 10 2509.71234821196 20 847.7920107440004 10 2506.663207813606 20 857.9428398724848 0 LWPOLYLINE 5 1AA7 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2508.695962102738 20 838.6562663570948 10 2516.318817580944 20 845.2543057478033 10 2529.023558781981 20 830.5356021399347 10 2522.925277985272 20 828.5054372286104 10 2519.367949014642 20 824.9526474908197 0 LWPOLYLINE 5 1AA8 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2530.548133463486 20 822.9224825794954 10 2534.105462434116 20 824.4451074059616 10 2540.203743230824 20 816.8319832736596 10 2540.711931803107 20 810.7414885396865 10 2535.121839578682 20 809.2188637132203 0 LWPOLYLINE 5 1AA9 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 2527.498993065131 20 866.5710441745178 10 2530.548133463486 20 874.1841637349571 10 2543.252883629175 20 877.7369534727476 10 2543.252883629175 20 871.1389186539017 10 2539.187357121602 20 862.0031696951482 10 2530.039944891203 20 864.0333391783206 0 LWPOLYLINE 5 1AAA 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2522.417089412993 20 853.882510049836 10 2524.449852666777 20 850.3297203120455 10 2536.138216723248 20 857.9428398724848 10 2535.630028150964 20 862.510714351869 0 LWPOLYLINE 5 1AAB 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 2536.138216723248 20 844.2392210062099 10 2560.531339910063 20 847.7920107440004 10 2551.383918715008 20 824.9526474908197 10 2534.613651006399 20 836.1185567890498 0 LWPOLYLINE 5 1AAC 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2531.564510608048 20 845.7618458326759 10 2537.662791404753 20 845.7618458326759 10 2539.695545693881 20 854.3900501347089 10 2534.613651006399 20 855.9126749611605 0 LWPOLYLINE 5 1AAD 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2540.711931803107 20 862.0031696951482 10 2540.711931803107 20 856.4202150460332 10 2544.77744934602 20 855.4051348762877 10 2554.433059113359 20 863.5257945215998 10 2549.859344033502 20 869.6162938274355 0 LWPOLYLINE 5 1AAE 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2552.908484431853 20 860.9880895254027 10 2556.97401093943 20 856.4202150460332 10 2555.449436257924 20 850.8372603969183 10 2550.367541570445 20 851.3448004817764 10 2547.318401172091 20 856.4202150460332 0 LWPOLYLINE 5 1AAF 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2553.416681968796 20 866.0635040896449 10 2552.908484431853 20 874.6917083916779 10 2558.498576656278 20 877.229413387875 10 2564.59685745298 20 870.1238339123083 10 2561.547717054629 20 862.0031696951482 0 LWPOLYLINE 5 1AB0 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 2 70 0 43 0.0 10 2561.547717054629 20 862.0031696951482 10 2553.416681968796 20 866.0635040896449 0 LWPOLYLINE 5 1AB1 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2551.892107287287 20 880.7822031256655 10 2552.40029585957 20 887.8877826012322 10 2556.46581340249 20 890.9330322541499 10 2562.564094199191 20 883.8274527785834 10 2559.006765228557 20 878.2444981294684 0 LWPOLYLINE 5 1AB2 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2566.121423169828 20 859.9730047838093 10 2563.072282771474 20 862.510714351869 10 2566.121423169828 20 871.1389186539017 10 2574.252467220318 20 863.018254436727 10 2569.678752140462 20 857.9428398724848 0 LWPOLYLINE 5 1AB3 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2573.236081111096 20 854.8975902195671 10 2576.793410081732 20 853.882510049836 10 2579.3343619078 20 854.3900501347089 10 2579.3343619078 20 858.9579246140784 0 LWPOLYLINE 5 1AB4 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 2572.727892538813 20 847.7920107440004 10 2568.154186423617 20 837.1336415306432 10 2583.908076987656 20 833.0733117079944 10 2585.432642704505 20 848.2995508288732 0 LWPOLYLINE 5 1AB5 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2555.449436257924 20 835.1034766193189 10 2572.219703966529 20 829.5205219702038 10 2567.645997851334 20 813.7867336207419 10 2545.285637918303 20 814.8018183623353 10 2547.318401172091 20 827.4903524870168 0 LWPOLYLINE 5 1AB6 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2574.252467220318 20 820.3847730114503 10 2576.793410081732 20 825.4601875756925 10 2585.432642704505 20 828.5054372286104 10 2593.563677790338 20 823.9375627492263 10 2590.006348819701 20 809.2188637132203 0 LWPOLYLINE 5 1AB7 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2568.154186423617 20 813.2791935358691 10 2574.252467220318 20 808.2037789716268 10 2569.678752140462 20 799.0680345847358 10 2552.40029585957 20 805.1585293187089 10 2554.941247685641 20 813.7867336207419 0 LWPOLYLINE 5 1AB8 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 2557.990388083995 20 802.6208243225118 10 2551.892107287287 20 789.4247455411096 10 2552.908484431853 20 783.3342508071218 10 2560.531339910063 20 781.8116259806702 10 2567.137809279051 20 795.0077001902245 10 2567.137809279051 20 799.0680345847358 0 LWPOLYLINE 5 1AB9 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 2571.711515394246 20 810.7414885396865 10 2578.317984763238 20 806.6811541451752 10 2585.432642704505 20 811.2490286245447 0 LWPOLYLINE 5 1ABA 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2578.826173335517 20 804.6509892338363 10 2579.3343619078 20 799.0680345847358 10 2583.908076987656 20 801.6057395809184 10 2582.891690878434 20 808.7113190564997 0 LWPOLYLINE 5 1ABB 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2583.908076987656 20 804.1434491489781 10 2597.629204297914 20 802.1132842376538 10 2605.252050811465 20 797.0378696733969 10 2604.235673666899 20 784.3493309768673 10 2581.875313733868 20 799.575574669594 0 LWPOLYLINE 5 1ABC 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2602.20291041311 20 799.575574669594 10 2618.973178121716 20 795.5152448469452 10 2623.038695664636 20 799.575574669594 10 2605.252050811465 20 812.2641133661382 10 2591.022734928927 20 811.2490286245447 0 LWPOLYLINE 5 1ABD 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2549.859344033502 20 766.0778467749187 10 2559.514953800841 20 773.6909709072206 10 2576.28522150945 20 754.9119374767033 10 2566.629611742111 20 746.2837331746705 10 2556.46581340249 20 759.9873520409455 0 LWPOLYLINE 5 1ABE 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 2575.777032937167 20 775.721135818545 10 2583.908076987656 20 764.555221948467 10 2592.547300645772 20 766.0778467749187 10 2605.252050811465 20 764.555221948467 10 2600.678335731605 20 776.2286759034177 10 2588.989971675138 20 775.721135818545 0 LWPOLYLINE 5 1ABF 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 2574.252467220318 20 786.8870451167749 10 2574.760655792601 20 782.3191752092534 10 2584.416265559939 20 781.8116305525181 0 LWPOLYLINE 5 1AC0 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 2562.055905626908 20 776.2286759034177 10 2567.645997851334 20 777.7513007298693 10 2571.203326821967 20 773.1834262504999 0 LWPOLYLINE 5 1AC1 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 2615.924037723369 20 779.2739255563356 10 2622.02231852007 20 771.6608014240336 10 2638.792586228675 20 777.7513007298693 10 2640.825340517807 20 782.8267152941116 10 2635.743445830325 20 787.9021298583684 10 2625.071458918424 20 784.3493401205778 0 LWPOLYLINE 5 1AC2 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 1 43 0.0 10 2601.186533268545 20 758.4647272144793 10 2613.891274469581 20 764.555221948467 10 2631.169730750469 20 763.5401417787216 10 2635.235257258045 20 747.8063580011221 10 2618.973178121716 20 748.3138980859949 10 2610.333945498943 20 745.7761885179498 10 2607.284805100593 20 754.404392819968 0 LWPOLYLINE 5 1AC3 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 2574.760655792601 20 752.3742279086437 10 2597.121006760971 20 754.9119374767033 10 2596.104629616409 20 748.3138980859949 0 LWPOLYLINE 5 1AC4 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 0 43 0.0 10 2608.809379782098 20 749.3289828275883 10 2590.006348819701 20 746.7912732595286 10 2592.039112073489 20 739.1781536990893 10 2596.612818188688 20 736.1329040461714 10 2604.235673666899 20 739.685693783962 10 2617.448603440211 20 741.2083186104137 10 2616.940414867931 20 746.7912732595286 0 LWPOLYLINE 5 1AC5 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2617.956800977154 20 743.7460236066108 10 2625.071458918424 20 742.2233987801591 10 2626.596024635269 20 736.1329040461714 10 2615.415849151086 20 733.5951944781263 10 2610.842134071226 20 740.1932338688347 0 LWPOLYLINE 5 1AC6 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2642.349915199313 20 759.9873520409455 10 2643.874480916162 20 766.0778467749187 10 2647.939998459074 20 766.0778467749187 10 2650.480950285146 20 762.0175169522699 10 2650.480950285146 20 758.4647272144793 0 LWPOLYLINE 5 1AC7 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2651.497336394368 20 745.268648433077 10 2644.382669488441 20 750.3440629973193 10 2634.727068685762 20 742.2233987801591 10 2640.317151945524 20 736.1329040461714 0 LWPOLYLINE 5 1AC8 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2657.08741965413 20 736.1329040461714 10 2659.120182907918 20 741.2083186104137 10 2667.759406566034 20 732.0725742235226 10 2666.234840849189 20 728.0122398290114 0 LWPOLYLINE 5 1AC9 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 2622.530507092353 20 726.4896150025597 10 2628.120599316775 20 736.1329040461714 10 2644.890867025384 20 718.3689553572476 10 2632.694305431974 20 711.7709159665391 10 2625.579647490707 20 713.2935407930053 10 2623.038695664636 20 720.399120268572 0 LWPOLYLINE 5 1ACA 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2640.825340517807 20 707.7105815720279 10 2648.956384568297 20 714.816165619457 10 2653.5300906835 20 715.3237057043297 10 2660.644748624767 20 710.2482911400875 10 2650.480950285146 20 701.1125467531819 0 LWPOLYLINE 5 1ACB 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2639.808963373241 20 700.6050020964612 10 2639.300774800958 20 707.2030414871696 10 2634.218871148819 20 711.7709159665391 10 2625.579647490707 20 708.7256663136213 10 2629.64516503362 20 698.5748371851368 0 LWPOLYLINE 5 1ACC 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 2619.989555266282 20 700.6050020964612 10 2620.497743838565 20 714.816165619457 10 2615.415849151086 20 715.3237057043297 10 2612.366708752732 20 718.3689553572476 10 2600.678335731605 20 715.8312457892025 10 2600.170147159322 20 701.6200868380547 0 LWPOLYLINE 5 1ACD 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 2607.793002637536 20 739.1781536990893 10 2590.514537391984 20 729.0273245706048 10 2590.006348819701 20 723.9519100063626 10 2594.58006389956 20 721.4142004383029 10 2613.891274469581 20 730.0424047403358 10 2613.383085897297 20 734.6102792197198 0 LWPOLYLINE 5 1ACE 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2611.350331608166 20 728.5197799138841 10 2617.448603440211 20 722.4292851798963 10 2616.432226295648 20 717.3538706156541 10 2613.891274469581 20 715.8312457892025 0 LWPOLYLINE 5 1ACF 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 2593.055489218055 20 721.9217450950382 10 2599.15377001476 20 716.3387858740606 10 2598.645581442477 20 706.1879567455762 10 2592.039112073489 20 698.0672971002641 10 2586.449019849071 20 698.0672971002641 10 2585.940831276788 20 710.2482911400875 0 LWPOLYLINE 5 1AD0 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 2585.432642704505 20 707.7105815720279 10 2579.3343619078 20 700.0974620115885 10 2586.449019849071 20 699.082377269995 0 LWPOLYLINE 5 1AD1 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 2561.039528482346 20 708.7256663136213 10 2566.121423169828 20 702.1276269229129 10 2586.449019849071 20 716.3387858740606 10 2577.809796190955 20 725.4745348328142 0 LWPOLYLINE 5 1AD2 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 2562.564094199191 20 728.5197799138841 10 2567.645997851334 20 719.8915756118513 10 2585.432642704505 20 733.0876543932536 10 2577.809796190955 20 742.2233987801591 0 LWPOLYLINE 5 1AD3 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2581.875313733868 20 751.3591477389127 10 2581.367125161585 20 740.7007785255554 10 2584.924454132222 20 737.1479842159169 10 2591.022734928927 20 740.1932338688347 0 LWPOLYLINE 5 1AD4 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 2588.481783102856 20 697.0522123586706 10 2585.432642704505 20 679.7958037546195 10 2591.022734928927 20 679.2882636697468 10 2604.235673666899 20 685.8863030604553 10 2601.694721840827 20 697.5597524435434 10 2594.58006389956 20 699.5899219267303 0 LWPOLYLINE 5 1AD5 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 2574.252467220318 20 688.9315481415105 10 2571.711515394246 20 680.8108884961984 10 2561.039528482346 20 673.1977643639111 10 2557.990388083995 20 677.7656388432806 10 2562.564094199191 20 685.8863030604553 10 2564.088668880696 20 688.9315481415105 42 -1.480164489059326 0 LWPOLYLINE 5 1AD6 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 2563.072282771474 20 672.1826841941801 10 2596.104629616409 20 662.0318550656811 10 2601.694721840827 20 658.4790653278905 10 2598.645581442477 20 648.3282361994061 10 2582.383502306151 20 650.3584011107305 10 2565.613234597545 20 654.9262755901145 0 LWPOLYLINE 5 1AD7 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2574.760655792601 20 677.2580987584224 10 2575.268844364884 20 672.1826841941801 10 2579.3343619078 20 673.1977643639111 10 2581.367125161585 20 677.7656388432806 10 2578.826173335517 20 679.2882636697468 0 LWPOLYLINE 5 1AD8 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2586.95720842135 20 679.7958037546195 10 2582.383502306151 20 673.1977643639111 10 2583.908076987656 20 666.5997295450652 10 2608.301191209815 20 665.5846448034717 10 2609.317568354377 20 673.1977643639111 0 LWPOLYLINE 5 1AD9 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 2604.743862239182 20 676.2430140168289 10 2610.842134071226 20 672.1826841941801 10 2624.055072809202 20 677.2580987584224 10 2622.530507092353 20 681.3184285810712 10 2618.464989549436 20 686.9013832301861 10 2610.842134071226 20 684.363678233989 0 LWPOLYLINE 5 1ADA 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2622.02231852007 20 682.3335133226646 10 2636.251634402608 20 694.0069627057527 10 2642.858103771596 20 683.8561381491163 10 2630.661542178186 20 671.6751395374449 10 2622.530507092353 20 678.780723584874 0 LWPOLYLINE 5 1ADB 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2609.82575692666 20 667.6148097147961 10 2627.104213207553 20 663.5544798921473 10 2625.579647490707 20 652.3885660220549 10 2600.678335731605 20 653.4036507636483 0 SPLINE 5 1ADC 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 11 71 3 72 31 73 27 74 25 42 0.0000000001 43 0.0000000001 44 0.0000000001 12 -0.0863522673659782 22 0.9962646666025824 32 0.0 13 -0.0863522673659782 23 0.9962646666025824 33 0.0 40 0.0 40 0.0 40 0.0 40 0.0 40 9.763056046282189 40 19.84299139215565 40 43.93859488620297 40 58.6671570640733 40 73.90040249342941 40 84.12492164002451 40 94.8089705722192 40 106.0923608761081 40 117.5106628533334 40 134.4008644966511 40 150.5503964658727 40 166.0593273581445 40 176.0317623547398 40 185.026335477463 40 198.8932110629427 40 220.2613089273351 40 238.2280749630068 40 257.0584857499587 40 272.1658767717092 40 287.3909698244777 40 302.8689398654707 40 319.7616444194697 40 324.1313765917036 40 328.946956018823 40 328.946956018823 40 328.946956018823 40 328.946956018823 10 2627.104213207553 20 652.8961106787901 30 0.0 10 2626.823192532213 20 656.1383066044474 30 0.0 10 2627.6409217887 20 663.208596540632 30 0.0 10 2638.607153095869 20 673.775978482875 30 0.0 10 2652.887688015472 20 681.3817993966763 30 0.0 10 2666.618761196709 20 693.4672275192795 30 0.0 10 2672.586407332306 20 706.0735558992954 30 0.0 10 2684.074897417586 20 711.6348077461041 30 0.0 10 2694.90443127502 20 711.3842400653588 30 0.0 10 2706.075568276002 20 710.317834314392 30 0.0 10 2718.216596355661 20 704.94874364144 30 0.0 10 2731.917705863069 20 698.8195915221447 30 0.0 10 2747.742886381922 20 697.0319605087521 30 0.0 10 2761.827129137598 20 690.5909617955262 30 0.0 10 2764.601475859768 20 678.6172888497961 30 0.0 10 2761.777765756955 20 667.1857721794176 30 0.0 10 2746.345145972322 20 661.3211487055584 30 0.0 10 2728.828091095765 20 661.3946550789344 30 0.0 10 2709.765154163772 20 664.6443722205004 30 0.0 10 2692.108996582256 20 667.3871534727765 30 0.0 10 2676.766941224947 20 660.5777087064193 30 0.0 10 2663.099107538637 20 653.7164331429464 30 0.0 10 2648.968877894041 20 647.5767836411867 30 0.0 10 2635.91428144115 20 643.1423322346883 30 0.0 10 2628.050164493005 20 648.0773570391625 30 0.0 10 2627.242825274957 20 651.296913467971 30 0.0 10 2627.104213207553 20 652.8961106787901 30 0.0 11 2627.104213207553 21 652.8961106787901 31 0.0 11 2628.628787889057 21 662.5393951505539 31 0.0 11 2635.235257258045 21 670.1525192828412 31 0.0 11 2655.054665365005 21 683.8561381491163 31 0.0 11 2665.726652276906 21 694.0069627057527 31 0.0 11 2674.874064507301 21 706.1879567455762 31 0.0 11 2684.02148570236 21 710.7558312249457 31 0.0 11 2694.693472614261 21 711.2633713098184 31 0.0 11 2705.873657063104 21 709.7407510552147 31 0.0 11 2716.545643975008 21 705.6804166607035 31 0.0 11 2732.299525574392 21 699.5899219267303 31 0.0 11 2748.053416138438 21 696.0371321889397 31 0.0 11 2761.26635487641 21 687.9164679717796 31 0.0 11 2763.807306702478 21 678.2731789281533 31 0.0 11 2761.26635487641 21 669.6449746261205 31 0.0 11 2749.069793283001 21 663.046935235412 31 0.0 11 2727.725819459196 21 662.0318550656811 31 0.0 11 2709.939174606024 21 664.5695600618783 31 0.0 11 2691.13614364363 21 665.5846448034717 31 0.0 11 2676.906827761089 21 660.5092302392295 31 0.0 11 2663.185700450838 21 653.911190848521 31 0.0 11 2648.956384568297 21 647.8206961145333 31 0.0 11 2632.186116859691 21 645.7905266313609 31 0.0 11 2628.628787889057 21 648.3282361994061 31 0.0 11 2627.104213207553 21 652.8961106787901 31 0.0 0 LWPOLYLINE 5 1ADD 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2788.20040299532 20 644.2679109486053 10 2783.626696880121 20 641.2226612956874 10 2785.151271561626 20 637.1623314730386 10 2798.872398871881 20 632.5944569936545 10 2805.987056813148 20 637.6698715579114 0 LWPOLYLINE 5 1ADE 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2819.199995551123 20 628.0265870861476 10 2818.691798014184 20 634.6246264768415 10 2836.986640404295 20 639.7000364692358 10 2839.527592230366 20 631.5793768239236 10 2832.921122861378 20 625.4888775180879 0 LWPOLYLINE 5 1ADF 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 2834.445688578224 20 627.0115023445542 10 2834.953877150507 20 622.9511725218908 10 2854.773285257466 20 619.3983827841147 10 2860.363377481888 20 627.0115023445542 10 2857.82242565582 20 630.5642920823302 10 2838.511206121144 20 635.1321665617142 0 LWPOLYLINE 5 1AE0 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 2860.363377481888 20 627.5190424294123 10 2862.904329307955 20 629.0416672558786 10 2875.609070508991 20 621.4285476954391 10 2870.527175821509 20 615.3380483896035 0 LWPOLYLINE 5 1AE1 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 1 43 0.0 10 2908.641417353923 20 607.7249288291641 10 2897.969430442019 20 614.322968219858 10 2898.985807586581 20 617.8757579576486 10 2905.08408838329 20 618.3832980425213 10 2916.264263867473 20 610.2626338253612 0 LWPOLYLINE 5 1AE2 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 1 43 0.0 10 2912.198746324557 20 613.8154235631373 10 2926.428062207094 20 604.6796791762463 10 2935.06729482987 20 606.2023040026979 10 2938.6246238005 20 613.8154235631373 10 2924.395307917966 20 618.3832980425213 10 2913.215123469123 20 617.8757579576486 0 LWPOLYLINE 5 1AE3 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2937.100049118995 20 608.7400089988951 10 2946.755658886333 20 607.2173887442914 10 2945.739281741771 20 599.0967245271312 10 2934.050917685304 20 601.6344295233284 10 2932.526343003799 20 605.6947639178397 0 LWPOLYLINE 5 1AE4 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2876.625456618214 20 679.79581289833 10 2888.31382067468 20 675.227938418946 10 2887.805632102401 20 661.5243195526709 10 2880.182785588848 20 657.4639897300222 10 2872.051741538355 20 660.0016947262193 0 LWPOLYLINE 5 1AE5 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 2888.31382067468 20 661.5243195526709 10 2889.330197819242 20 678.2731880718638 10 2893.903912899102 20 682.3335178945272 10 2919.821592838107 20 673.1977735076216 10 2919.313404265824 20 663.0469443791371 0 LWPOLYLINE 5 1AE6 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 7 70 1 43 0.0 10 2894.412101471385 20 651.3734904241864 10 2896.444855760513 20 665.0771092904615 10 2897.969430442019 20 670.6600639395765 10 2911.182369179991 20 665.5846493753196 10 2921.854356091895 20 661.5243195526709 10 2916.264263867473 20 649.8508655977202 10 2914.231509578345 20 645.2829956901987 0 LWPOLYLINE 5 1AE7 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 1 43 0.0 10 2919.313404265824 20 665.0771092904615 10 2934.559106257587 20 669.1374436849728 10 2948.788422140122 20 657.4639897300222 10 2938.116435228221 20 648.3282407712685 0 LWPOLYLINE 5 1AE8 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 554.7679617301619 20 533.7669789592037 10 546.5450209633527 20 525.5545301496022 10 548.3723411337559 20 521.9045473130681 10 553.854301644962 20 522.8170441651745 10 561.1635823265678 20 528.2920115621818 0 LWPOLYLINE 5 1AE9 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 579.4368019599024 20 563.8793065005593 10 583.0914423007016 20 563.8793065005593 10 583.0914423007016 20 562.0543173682235 10 583.0914423007016 20 558.4043391035375 0 LWPOLYLINE 5 1AEA 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 3 70 0 43 0.0 10 494.4663602482797 20 500.9171700052684 10 500.861989809342 20 503.654655989696 10 501.7756498945418 20 499.0921808729181 0 LWPOLYLINE 5 1AEB 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 516.3942202224133 20 489.0547383591329 10 522.7898408188157 20 484.4922678142174 10 522.7898408188157 20 480.842289549546 10 517.3078803076132 20 477.1923112848744 0 LWPOLYLINE 5 1AEC 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 6 70 0 43 0.0 10 493.5527001630762 20 474.4548253004323 10 489.8980598222733 20 474.4548253004323 10 491.7253799926729 20 485.4047600944613 10 497.207340503879 20 485.4047600944613 10 499.0346696389387 20 485.4047600944613 10 499.0346696389387 20 480.842289549546 0 LWPOLYLINE 5 1AED 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 493.5527001630762 20 465.3298796387534 10 490.8117199074731 20 469.8923501836689 10 487.1570795666703 20 469.8923501836689 10 484.4160993110672 20 466.2423719189828 10 482.5887791406676 20 461.6799013740673 0 LWPOLYLINE 5 1AEE 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 467.970208812796 20 440.6925194944051 10 473.4521693239985 20 447.0799837435188 10 478.0204697500048 20 447.0799837435188 10 476.1931495796052 20 440.6925194944051 10 470.711189068399 20 436.1300489494897 0 LWPOLYLINE 5 1AEF 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 463.4018994221333 20 447.9924805956106 10 463.4018994221333 20 450.7299620081903 10 467.970208812796 20 455.2924371249682 10 471.6248491535989 20 455.2924371249682 0 LWPOLYLINE 5 1AF0 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 5 70 0 43 0.0 10 472.5385092387987 20 474.4548253004323 10 471.6248491535989 20 468.0673610513331 10 479.8477899204044 20 468.979857903425 10 480.7614500056079 20 475.3673175806762 10 477.106809664805 20 478.1048035651183 0 LWPOLYLINE 5 1AF1 330 1A01 100 AcDbEntity 8 Hbowl Outline 48 0.1 100 AcDbPolyline 90 4 70 0 43 0.0 10 477.106809664805 20 494.5297103280027 10 475.2794894944018 20 489.0547383591329 10 478.9341298352046 20 486.3172569465532 10 481.6751190554677 20 489.9672352112393 0 ENDBLK 5 1AF3 330 1A01 100 AcDbEntity 8 0 48 0.1 100 AcDbBlockEnd 0 BLOCK 5 2236 330 2231 100 AcDbEntity 8 0 48 0.5 100 AcDbBlockBegin 2 A$C5DA63FB3 70 0 10 0.0 20 0.0 30 0.0 3 A$C5DA63FB3 1 0 SPLINE 5 2232 330 2231 100 AcDbEntity 8 Hbowl Outline 48 0.5 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 105 73 101 74 99 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 3.817816214647502 40 8.052230593703999 40 12.93731559251566 40 16.92819938498185 40 22.11951569284603 40 25.05056897403719 40 26.73365469432118 40 27.97655671882863 40 30.22287016669335 40 31.14797503686941 40 33.9277185363659 40 36.51435201984236 40 38.27623848211107 40 40.1891892336853 40 40.97519847728416 40 43.10389455168889 40 44.73850486647174 40 45.79350464024442 40 46.93491250782688 40 48.75493469611237 40 49.9024083507761 40 50.51914461048364 40 51.29006280760282 40 52.95645605648149 40 54.96471995587483 40 56.35237818712519 40 57.27975472920604 40 58.80629335134107 40 60.79181781787895 40 62.78228660861465 40 63.87267344256462 40 64.70272304178689 40 65.38186286359783 40 66.61533634424291 40 68.12906825534489 40 69.60342931404674 40 71.37101262541965 40 73.75282311963478 40 75.30249791487588 40 77.71245051867996 40 79.10725570608583 40 80.83702042420402 40 83.92070268396755 40 89.17232292259976 40 93.28326536188034 40 96.02899152143159 40 98.00390511342637 40 100.2021942801353 40 100.9116018772254 40 101.7156598133419 40 103.5916600355558 40 104.2458903988588 40 104.7332766183264 40 105.6912214155203 40 106.292171461799 40 107.0328271478068 40 108.6048456349956 40 111.9855048390939 40 114.9361925081779 40 115.4235817127288 40 115.8425940031129 40 115.9967759405251 40 117.5386170704052 40 119.4815489135921 40 121.1608592256532 40 122.3353840872358 40 124.2775920974472 40 125.5361459231352 40 126.6581323663386 40 128.1334768538333 40 130.2815327365795 40 131.9208186018669 40 133.2991044622756 40 134.4688319637101 40 135.3680937773417 40 136.458166993687 40 137.0136923278194 40 137.5388555998965 40 139.9936412710132 40 141.5674592460718 40 144.441047940849 40 147.2833453357704 40 149.8893554852217 40 152.2070754963735 40 155.2858557472099 40 160.0883281187029 40 165.2567814358969 40 169.9141481798075 40 173.2960076352709 40 175.0254335348502 40 178.0982176831385 40 186.9196815734063 40 190.3663316614679 40 196.026365331506 40 200.5219985687682 40 204.8092166198528 40 208.5868887933236 40 212.1416234117231 40 212.1416234117231 40 212.1416234117231 40 212.1416234117231 10 -194.1182094384967 20 97.19932660213089 30 0.0 10 -192.9312599082591 20 96.73671265935094 30 0.0 10 -190.4278415184757 20 95.76100457554245 30 0.0 10 -186.222477728735 20 94.758470042731 30 0.0 10 -182.1507065363439 20 93.1467642491483 30 0.0 10 -177.6165248557119 20 91.93229680825444 30 0.0 10 -174.0234146448669 20 89.90479301654323 30 0.0 10 -171.7412382006034 20 87.52869380294541 30 0.0 10 -170.0857165820677 20 86.49571414077492 30 0.0 10 -168.7153090644007 20 85.40532917758923 30 0.0 10 -167.1739139764644 20 85.26283535356686 30 0.0 10 -165.4445100429914 20 84.27361859429577 30 0.0 10 -163.4708527945218 20 83.55133139832117 30 0.0 10 -161.3135894312801 20 82.54729442577318 30 0.0 10 -159.6458568807705 20 81.21575393872845 30 0.0 10 -158.0161073633669 20 81.20339401892758 30 0.0 10 -156.8442035974187 20 80.0286798769533 30 0.0 10 -155.3048892978914 20 79.70582058759875 30 0.0 10 -153.9986048837418 20 78.66638013072907 30 0.0 10 -152.6855434797617 20 78.60116480066313 30 0.0 10 -151.4720376124827 20 77.97369981577858 30 0.0 10 -150.4557570851064 20 77.05344054302056 30 0.0 10 -149.4516779563403 20 76.39512516412286 30 0.0 10 -148.6878529118695 20 76.03209248611687 30 0.0 10 -147.780301117068 20 75.57409342108262 30 0.0 10 -146.4470277786175 20 74.89869507921827 30 0.0 10 -144.7868706837961 20 74.58809789144186 30 0.0 10 -143.4194789700736 20 74.02431584057343 30 0.0 10 -142.5823270426347 20 72.98657895762097 30 0.0 10 -141.0209954083242 20 72.79679936219834 30 0.0 10 -139.3777385623775 20 71.97712742279977 30 0.0 10 -137.74312237309 20 71.62738550796075 30 0.0 10 -136.3946711968213 20 71.38686844072172 30 0.0 10 -135.8542571684788 20 70.63773826694481 30 0.0 10 -134.9599610506888 20 70.35930251247773 30 0.0 10 -133.9490637887703 20 69.84597304629463 30 0.0 10 -132.8019675925439 20 68.94600368601405 30 0.0 10 -131.1559336903733 20 68.90922847740785 30 0.0 10 -129.4477163856939 20 68.09520769268406 30 0.0 10 -127.6881984787862 20 67.38810668704203 30 0.0 10 -125.6959869001928 20 66.68631818139623 30 0.0 10 -124.0918034759688 20 65.84321970801621 30 0.0 10 -122.252397718043 20 65.60369801462205 30 0.0 10 -120.134599911146 20 65.66235571558244 30 0.0 10 -117.3088533288865 20 63.55039303053638 30 0.0 10 -113.3526464305133 20 62.36043470906 30 0.0 10 -109.7387032410683 20 60.45362098501765 30 0.0 10 -106.8253327703283 20 59.94495924731486 30 0.0 10 -104.5121079837482 20 59.69024758948886 30 0.0 10 -103.1198691046427 20 58.58050419287602 30 0.0 10 -102.691614280596 20 57.36126008693529 30 0.0 10 -101.5877851009167 20 56.87600950536392 30 0.0 10 -100.5852039325632 20 56.55350016766482 30 0.0 10 -99.52995238257265 20 56.37940321457293 30 0.0 10 -99.11673549200237 20 55.77212929451814 30 0.0 10 -98.39935714832472 20 55.55774193208955 30 0.0 10 -97.63673159983506 20 55.65520055806959 30 0.0 10 -96.68491364063557 20 55.32064094755267 30 0.0 10 -95.31721362714112 20 53.98012390478048 30 0.0 10 -93.1625535516928 20 52.39098805033055 30 0.0 10 -91.56541734295684 20 50.95659397652169 30 0.0 10 -90.32871740209538 20 50.23416422198727 30 0.0 10 -90.46613868908611 20 49.75645446107853 30 0.0 10 -89.74143506934076 20 49.50764333348891 30 0.0 10 -88.745026963128 20 48.90636108519214 30 0.0 10 -87.20689203281599 20 48.11935911315717 30 0.0 10 -85.71287079062157 20 47.41932088388908 30 0.0 10 -84.08422680305399 20 47.63767692536712 30 0.0 10 -82.70170180964928 20 47.84690912058448 30 0.0 10 -81.11020124175903 20 47.7997506308658 30 0.0 10 -80.40211880189451 20 46.63043361200071 30 0.0 10 -79.10983943151537 20 45.57865109392117 30 0.0 10 -77.31300559480771 20 45.76062828488388 30 0.0 10 -75.43962953592466 20 45.50168326821962 30 0.0 10 -74.77740022877847 20 44.22501379238306 30 0.0 10 -74.02430381990587 20 43.16553505433103 30 0.0 10 -72.88793596781045 20 43.39171432827247 30 0.0 10 -72.08900448457817 20 42.86069233681034 30 0.0 10 -71.88062253884584 20 42.0921618604622 30 0.0 10 -70.61234246775896 20 41.83819949252979 30 0.0 10 -69.73291215374627 20 40.45533690678194 30 0.0 10 -67.59668184137796 20 39.52270150366565 30 0.0 10 -65.47566976226244 20 38.32686432137906 30 0.0 10 -63.39864254757112 20 36.46602431127418 30 0.0 10 -61.35351586687377 20 34.89467922314691 30 0.0 10 -59.08685420253927 20 33.41518554828821 30 0.0 10 -55.66099957003623 20 32.89778115134907 30 0.0 10 -51.75790280299615 20 30.90772924298354 30 0.0 10 -46.96394511045773 20 29.79769595321472 30 0.0 10 -43.15915218037337 20 27.47724053192171 30 0.0 10 -40.0022062233786 20 26.61841932047497 30 0.0 10 -37.56281436312017 20 25.33500947376542 30 0.0 10 -32.9511184981439 20 25.04626572420158 30 0.0 10 -27.87869481645667 20 24.33187079409393 30 0.0 10 -22.26585846045093 20 22.22783644531995 30 0.0 10 -18.13829125543867 20 20.35967463610588 30 0.0 10 -13.50217721477046 20 18.95485606752388 30 0.0 10 -9.945712605603711 20 16.68119642210895 30 0.0 10 -6.286258444878781 20 15.36966073810974 30 0.0 10 -3.95977981593198 20 14.62533330176907 30 0.0 10 -2.831908114862017 20 14.26448500454716 30 0.0 11 -194.1182094384967 21 97.19932660213089 31 0.0 11 -190.5317302470903 21 95.89055326100789 31 0.0 11 -186.4624541572848 21 94.71954632742564 31 0.0 11 -181.8414113889775 21 93.13524232279451 31 0.0 11 -178.0480186384229 21 91.89535326122131 31 0.0 11 -173.5649154303137 21 89.27780657897528 31 0.0 11 -171.3578529351616 21 87.34908978284511 31 0.0 11 -169.9784362389073 21 86.38473138478003 31 0.0 11 -168.9438726620064 21 85.6959036502376 31 0.0 11 -166.8057799469534 21 85.00707591568062 31 0.0 11 -165.9781299292007 21 84.59377884463174 31 0.0 11 -163.4262100958476 21 83.49165403902588 31 0.0 11 -161.1198231859125 21 82.32064925700251 31 0.0 11 -159.6024669294602 21 81.42517513848725 31 0.0 11 -157.7706079694871 21 80.87410950835328 31 0.0 11 -157.1498715108864 21 80.39193030931347 31 0.0 11 -155.218688136134 21 79.49645403923932 31 0.0 11 -153.7703016597843 21 78.73874202513253 31 0.0 11 -152.7357380828798 21 78.53209564117424 31 0.0 11 -151.7011787248302 21 78.04991429059009 31 0.0 11 -150.2527964673281 21 76.94779378810199 31 0.0 11 -149.2872068893775 21 76.32784818153595 31 0.0 11 -148.7354402108758 21 76.05231751802785 31 0.0 11 -148.0457339721761 21 75.7079047265288 31 0.0 11 -146.5283734968725 21 75.01907699197182 31 0.0 11 -144.5971943409713 21 74.46801351339672 31 0.0 11 -143.3557172049149 21 73.84807005838957 31 0.0 11 -142.6660109662152 21 73.22812445182353 31 0.0 11 -141.2176244898619 21 72.74594525278371 31 0.0 11 -139.3554151140597 21 72.05711751822673 31 0.0 11 -137.4242317393072 21 71.57493831920146 31 0.0 11 -136.3896681624064 21 71.23052337614353 31 0.0 11 -135.7689317038057 21 70.67946204912733 31 0.0 11 -135.1481952452049 21 70.40393138561921 31 0.0 11 -134.0446618882015 21 69.85286790702957 31 0.0 11 -132.734219190901 21 69.0951580444962 31 0.0 11 -131.2858327145477 21 68.8196273809881 31 0.0 11 -129.6305326790425 21 68.19968177442206 31 0.0 11 -127.4234659650392 21 67.30420550433336 31 0.0 11 -125.9750794886895 21 66.75314417731716 31 0.0 11 -123.7376707965522 21 65.85767005880189 31 0.0 11 -122.3582583191528 21 65.65102367482904 31 0.0 11 -120.6339885035486 21 65.51325726730283 31 0.0 11 -117.8751551110435 21 64.13560179818887 31 0.0 11 -113.0471987835881 21 62.06911859453248 31 0.0 11 -109.2538060330298 21 60.48481458990136 31 0.0 11 -106.563946639475 21 59.93375326287059 31 0.0 11 -104.6327632647225 21 59.52045619183627 31 0.0 11 -102.9774674480686 21 58.07391859473137 31 0.0 11 -102.6326101098711 21 57.45397298816533 31 0.0 11 -101.9429038711678 21 57.04067591713101 31 0.0 11 -100.1496642754646 21 56.48961459010024 31 0.0 11 -99.52892781686387 21 56.28296605458309 31 0.0 11 -99.184074697514 21 55.93855111152516 31 0.0 11 -98.28534969289467 21 55.60696160544466 31 0.0 11 -97.68439964661594 21 55.60696160544466 31 0.0 11 -96.97700798351071 21 55.38748978450894 31 0.0 11 -95.73553506630924 21 54.42313138644386 31 0.0 11 -93.11464545285344 21 52.28776390323765 31 0.0 11 -90.76963917865214 21 50.49681351463369 31 0.0 11 -90.42478184045103 21 50.15239857157576 31 0.0 11 -90.35581206034839 21 49.73910150054144 31 0.0 11 -90.21787250015041 21 49.67021937255049 31 0.0 11 -88.83845580389971 21 48.98139163799351 31 0.0 11 -87.11418598829551 21 48.08591536791936 31 0.0 11 -85.52786417059179 21 47.53485619244748 31 0.0 11 -84.35536103349296 21 47.6037404719973 31 0.0 11 -82.42417765874051 21 47.81038685597013 31 0.0 11 -81.18270474153906 21 47.6037404719973 31 0.0 11 -80.42402450388545 21 46.7771463299141 31 0.0 11 -79.25152136678298 21 45.88167005983996 31 0.0 11 -77.11342865172992 21 45.67502152430825 31 0.0 11 -75.52709839632735 21 45.26172445327392 31 0.0 11 -74.69945259742599 21 44.15960179922694 31 0.0 11 -73.87180257967338 21 43.33300765714375 31 0.0 11 -72.97518278182178 21 43.26412552915281 31 0.0 11 -72.07856298397382 21 42.64417992258677 31 0.0 11 -71.80267964472296 21 42.16200072354695 31 0.0 11 -71.31988274632021 21 41.95535218802979 31 0.0 11 -69.38869937156778 21 40.43993031138962 31 0.0 11 -68.00928689416469 21 39.68222044884169 31 0.0 11 -65.52633684091052 21 38.23568285175133 31 0.0 11 -63.31927012690721 21 36.4447303115885 31 0.0 11 -61.25014719195315 21 34.86042630695738 31 0.0 11 -59.2500024748042 21 33.68942367649288 31 0.0 11 -56.28425974199854 21 32.86282953439513 31 0.0 11 -51.80115653389293 21 31.14075912223779 31 0.0 11 -46.9042304263312 21 29.48757298961572 31 0.0 11 -42.69701477632771 21 27.4899740654946 31 0.0 11 -39.52436270322141 21 26.31896928347123 31 0.0 11 -37.93803666667008 21 25.63014154891425 31 0.0 11 -34.90331993491418 21 25.14796234988898 31 0.0 11 -26.2129968579502 21 23.63253832167538 31 0.0 11 -22.97137078589366 21 22.46153138809313 31 0.0 11 -17.72959577783694 21 20.32616820800467 31 0.0 11 -13.52237590898221 21 18.74186420337355 31 0.0 11 -9.728983158423943 21 16.74426312769355 31 0.0 11 -6.211473747116542 21 15.36660765857959 31 0.0 11 -2.831908114862017 21 14.26448500454716 31 0.0 0 SPLINE 5 2233 330 2231 100 AcDbEntity 8 Hbowl Outline 48 0.5 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 12 73 8 74 6 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 1.174173064144889 40 2.125799153646261 40 3.400080298396663 40 4.531540611259646 40 5.168495013697341 40 5.168495013697341 40 5.168495013697341 40 5.168495013697341 10 13.96179036005924 20 7.774424460323643 30 0.0 10 14.2220801853545 20 7.451462937305113 30 0.0 10 14.69332578552365 20 6.866752426343857 30 0.0 10 15.91076226226263 20 6.873131554589543 30 0.0 10 16.98272598762793 20 7.157420816284775 30 0.0 10 18.02452452770274 20 6.939731075401469 30 0.0 10 18.52372905788604 20 6.624950644839588 30 0.0 10 18.70353446239096 20 6.511571820679819 30 0.0 11 13.96179036005924 21 7.774424460323643 31 0.0 11 14.83110997152471 21 6.985142636331147 31 0.0 11 15.77945710445055 21 6.906212732676067 31 0.0 11 17.04392276092039 21 7.064070388412801 31 0.0 11 18.15032915561823 21 6.827284980594413 31 0.0 11 18.70353446239096 21 6.511571820679819 31 0.0 0 LINE 5 2234 330 2231 100 AcDbEntity 8 Hbowl Outline 48 0.5 100 AcDbLine 10 18.70353446239096 20 6.511571820665267 30 0.0 11 17.83421485092549 21 7.695494556683115 31 0.0 0 LINE 5 2235 330 2231 100 AcDbEntity 8 Hbowl Outline 48 0.5 100 AcDbLine 10 18.70353446239096 20 6.511571820665267 30 0.0 11 17.36004128446438 21 6.353716316501959 31 0.0 0 ENDBLK 5 2237 330 2231 100 AcDbEntity 8 0 48 0.5 100 AcDbBlockEnd 0 BLOCK 5 2247 330 2243 100 AcDbEntity 8 0 48 0.5 100 AcDbBlockBegin 2 A$C317150F8 70 0 10 0.0 20 0.0 30 0.0 3 A$C317150F8 1 0 SPLINE 5 2244 330 2243 100 AcDbEntity 8 Hbowl Outline 48 0.5 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 12 73 8 74 6 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 1.174173064144889 40 2.125799153646261 40 3.400080298396663 40 4.531540611259646 40 5.168495013697341 40 5.168495013697341 40 5.168495013697341 40 5.168495013697341 10 -0.000000000003638 20 1.420708143821684 30 0.0 10 0.260289825291627 20 1.097746620803153 30 0.0 10 0.7315354254607761 20 0.5130361098418984 30 0.0 10 1.948971902199762 20 0.5194152380875867 30 0.0 10 3.020935627565052 20 0.8037044997828129 30 0.0 10 4.062734167639865 20 0.5860147588995117 30 0.0 10 4.561938697823163 20 0.2712343283376293 30 0.0 10 4.741744102328084 20 0.15785550417786 30 0.0 11 -0.000000000003638 21 1.420708143821684 31 0.0 11 0.8693196114618331 21 0.6314263198291883 31 0.0 11 1.817666744387679 21 0.5524964161741082 31 0.0 11 3.082132400857517 21 0.7103540719108424 31 0.0 11 4.188538795555359 21 0.4735686640924542 31 0.0 11 4.741744102328084 21 0.15785550417786 31 0.0 0 LINE 5 2245 330 2243 100 AcDbEntity 8 Hbowl Outline 48 0.5 100 AcDbLine 10 4.741744102328084 20 0.1578555041633081 30 0.0 11 3.872424490862613 21 1.341778240181156 31 0.0 0 LINE 5 2246 330 2243 100 AcDbEntity 8 Hbowl Outline 48 0.5 100 AcDbLine 10 4.741744102328084 20 0.1578555041633081 30 0.0 11 3.398250924401509 21 0.0 31 0.0 0 ENDBLK 5 2248 330 2243 100 AcDbEntity 8 0 48 0.5 100 AcDbBlockEnd 0 BLOCK 5 22B1 330 22AD 100 AcDbEntity 8 0 48 0.5 100 AcDbBlockBegin 2 A$C70CC784A 70 0 10 0.0 20 0.0 30 0.0 3 A$C70CC784A 1 0 SPLINE 5 22AE 330 22AD 100 AcDbEntity 8 Hbowl Outline 48 0.5 100 AcDbSpline 210 0.0 220 0.0 230 1.0 70 8 71 3 72 11 73 7 74 5 42 0.0000000001 43 0.0000000001 44 0.0000000001 40 0.0 40 0.0 40 0.0 40 0.0 40 0.253064936120665 40 0.6002352279966197 40 0.9542633191781552 40 1.361086226299139 40 1.361086226299139 40 1.361086226299139 40 1.361086226299139 10 0.0 20 0.0 30 0.0 10 0.0693351967062261 20 0.0544209406877801 30 0.0 10 0.2337887485934313 20 0.1834999282482886 30 0.0 10 0.5693590748729741 20 0.1035078943624971 30 0.0 10 0.9365375605912715 20 0.1865560332579397 30 0.0 10 1.149831242418815 20 0.3272762245000351 30 0.0 10 1.263878218640456 20 0.4025185484497343 30 0.0 11 0.0 21 0.0 31 0.0 11 0.2162927698736894 21 0.1313746535452083 31 0.0 11 0.5634630617496442 21 0.1313746535452083 31 0.0 11 0.9106333536255988 21 0.2007192840828793 31 0.0 11 1.263878218640456 21 0.4025185484497343 31 0.0 0 LINE 5 22AF 330 22AD 100 AcDbEntity 8 Hbowl Outline 48 0.5 100 AcDbLine 10 1.263878218647732 20 0.4025185484497343 30 0.0 11 0.8119363046862417 21 0.3380359805596527 31 0.0 0 LINE 5 22B0 330 22AD 100 AcDbEntity 8 Hbowl Outline 48 0.5 100 AcDbLine 10 1.263878218625904 20 0.4025185484497343 30 0.0 11 1.037666247517336 21 0.0059865330113098 31 0.0 0 ENDBLK 5 22B2 330 22AD 100 AcDbEntity 8 0 48 0.5 100 AcDbBlockEnd 0 BLOCK 5 2AC7 330 2AC6 100 AcDbEntity 8 S_L_JT_MadGil 48 2.0 100 AcDbBlockBegin 2 AVE_RENDER 70 0 10 0.0 20 0.0 30 0.0 3 AVE_RENDER 1 AVE_RENDER 0 ENDBLK 5 2AC8 330 2AC6 100 AcDbEntity 8 0 48 2.0 100 AcDbBlockEnd 0 BLOCK 5 2AD5 330 2AD4 100 AcDbEntity 8 S_L_JT_MadGil 48 2.0 100 AcDbBlockBegin 2 AVE_GLOBAL 70 0 10 0.0 20 0.0 30 0.0 3 AVE_GLOBAL 1 AVE_GLOBAL 0 ENDBLK 5 2AD6 330 2AD4 100 AcDbEntity 8 0 48 2.0 100 AcDbBlockEnd 0 ENDSEC 0 SECTION 2 ENTITIES 0 POLYLINE 5 77 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 78 330 77 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17139.84 20 80873.35000000001 30 237.02 70 32 0 VERTEX 5 79 330 77 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17154.15 20 80880.10999999999 30 232.5099999999999 70 32 0 VERTEX 5 7A 330 77 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17151.61 20 80886.0 30 230.9299999999999 70 32 0 VERTEX 5 7B 330 77 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17148.52999999999 20 80885.37 30 230.1899999999999 70 32 0 SEQEND 5 7C 330 77 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 AA 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 AB 330 AA 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17044.08 20 80711.11999999999 30 193.29 70 32 0 VERTEX 5 AC 330 AA 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17047.06 20 80714.08999999999 30 193.44 70 32 0 VERTEX 5 AE 330 AA 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17051.3 20 80716.49999999999 30 187.99 70 32 0 VERTEX 5 AF 330 AA 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17048.87 20 80713.13000000001 30 186.4499999999999 70 32 0 VERTEX 5 B0 330 AA 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17047.77999999999 20 80693.4 30 185.6899999999999 70 32 0 VERTEX 5 B1 330 AA 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17050.97 20 80691.83 30 186.81 70 32 0 VERTEX 5 B2 330 AA 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17058.75999999999 20 80690.36 30 191.1999999999999 70 32 0 VERTEX 5 B3 330 AA 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17063.52 20 80698.47000000001 30 192.1199999999999 70 32 0 VERTEX 5 B4 330 AA 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17068.97999999999 20 80707.74 30 192.14 70 32 0 VERTEX 5 B5 330 AA 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17076.43999999999 20 80721.65 30 193.12 70 32 0 SEQEND 5 B6 330 AA 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 B7 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 B8 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17076.43999999999 20 80721.65 30 193.12 70 32 0 VERTEX 5 B9 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17084.33 20 80727.16000000001 30 193.55 70 32 0 VERTEX 5 BA 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17088.82 20 80727.72999999999 30 193.73 70 32 0 VERTEX 5 BB 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17097.11999999999 20 80736.71 30 194.05 70 32 0 VERTEX 5 BC 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17103.93 20 80741.6 30 194.1999999999999 70 32 0 VERTEX 5 BD 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17104.63 20 80743.88 30 195.31 70 32 0 VERTEX 5 BE 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17111.46 20 80748.61 30 193.77 70 32 0 VERTEX 5 BF 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17111.39 20 80755.50999999999 30 193.11 70 32 0 VERTEX 5 C0 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17118.00999999999 20 80763.08 30 192.7599999999999 70 32 0 VERTEX 5 C1 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17126.50999999999 20 80764.06 30 192.61 70 32 0 VERTEX 5 C2 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17132.2 20 80759.52 30 192.74 70 32 0 VERTEX 5 C3 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17140.0 20 80768.36 30 193.6699999999999 70 32 0 VERTEX 5 C4 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17149.02 20 80774.0 30 194.2299999999999 70 32 0 VERTEX 5 C5 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17153.91 20 80778.02 30 194.1699999999999 70 32 0 VERTEX 5 C6 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17163.86 20 80781.62 30 193.43 70 32 0 VERTEX 5 C7 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17174.27999999999 20 80784.11 30 192.96 70 32 0 VERTEX 5 C8 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17185.22 20 80789.17 30 192.0099999999999 70 32 0 VERTEX 5 C9 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17193.68 20 80800.02999999999 30 191.4099999999999 70 32 0 VERTEX 5 CA 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17204.43 20 80805.46000000001 30 190.73 70 32 0 VERTEX 5 CB 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17212.18 20 80815.41000000001 30 190.2899999999999 70 32 0 VERTEX 5 CC 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17217.02 20 80823.33999999999 30 189.15 70 32 0 VERTEX 5 CD 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17222.16999999999 20 80832.47 30 188.2299999999999 70 32 0 VERTEX 5 CE 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17234.66999999999 20 80836.57999999999 30 187.94 70 32 0 SEQEND 5 CF 330 B7 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 D0 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 D1 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17234.66999999999 20 80836.57999999999 30 187.94 70 32 0 VERTEX 5 D2 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17242.31999999999 20 80844.74 30 187.5999999999999 70 32 0 VERTEX 5 D3 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17244.54 20 80848.63 30 187.05 70 32 0 VERTEX 5 D4 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17249.68999999999 20 80845.43 30 187.05 70 32 0 VERTEX 5 D5 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17258.32 20 80850.72 30 185.8999999999999 70 32 0 VERTEX 5 D6 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17260.88 20 80858.55999999999 30 185.8999999999999 70 32 0 VERTEX 5 D7 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17269.33 20 80866.47000000001 30 185.8 70 32 0 VERTEX 5 D8 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17276.7 20 80868.75 30 185.1299999999999 70 32 0 VERTEX 5 D9 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17283.75999999999 20 80874.64 30 185.4499999999999 70 32 0 VERTEX 5 DA 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17289.77999999999 20 80879.18 30 187.2299999999999 70 32 0 VERTEX 5 DB 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17301.72999999999 20 80884.91000000001 30 186.1299999999999 70 32 0 VERTEX 5 DC 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17313.95 20 80893.25 30 185.74 70 32 0 VERTEX 5 DD 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17320.11999999999 20 80904.17 30 184.75 70 32 0 VERTEX 5 DE 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17333.9 20 80916.16999999999 30 182.1799999999999 70 32 0 VERTEX 5 DF 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17340.5 20 80913.21999999999 30 181.74 70 32 0 VERTEX 5 E0 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17346.86 20 80917.32 30 182.0 70 32 0 VERTEX 5 E3 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17355.47 20 80922.47 30 180.46 70 32 0 VERTEX 5 E4 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17357.59 20 80921.03999999999 30 180.21 70 32 0 VERTEX 5 E5 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17357.59 20 80921.03999999999 30 179.9799999999999 70 32 0 VERTEX 5 E6 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17354.66999999999 20 80915.73 30 179.2899999999999 70 32 0 VERTEX 5 E7 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17341.77 20 80900.78 30 180.67 70 32 0 VERTEX 5 E8 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17319.77 20 80881.46000000001 30 182.7199999999999 70 32 0 VERTEX 5 E9 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17321.25 20 80878.30999999999 30 183.0899999999999 70 32 0 VERTEX 5 EA 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17317.86999999999 20 80874.1 30 183.33 70 32 0 VERTEX 5 EB 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17321.23 20 80868.95 30 182.52 70 32 0 VERTEX 5 EC 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17331.71 20 80862.54 30 181.23 70 32 0 VERTEX 5 ED 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17337.38999999999 20 80861.63 30 181.1299999999999 70 32 0 VERTEX 5 EE 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17344.27 20 80860.02999999999 30 180.01 70 32 0 VERTEX 5 EF 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17348.9 20 80863.0 30 179.96 70 32 0 VERTEX 5 F0 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17349.89 20 80866.19 30 180.25 70 32 0 VERTEX 5 F1 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17360.31999999999 20 80865.25999999999 30 179.4299999999999 70 32 0 VERTEX 5 F2 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17365.14 20 80866.58999999999 30 179.4299999999999 70 32 0 SEQEND 5 F3 330 D0 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 F4 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 F5 330 F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17355.47 20 80922.47 30 180.46 70 32 0 VERTEX 5 F6 330 F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17358.66999999999 20 80926.82000000001 30 179.41 70 32 0 VERTEX 5 F7 330 F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17361.38 20 80928.07 30 179.0999999999999 70 32 0 SEQEND 5 F8 330 F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 F9 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 FA 330 F9 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17333.9 20 80916.16999999999 30 182.1799999999999 70 32 0 VERTEX 5 FB 330 F9 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17337.43 20 80920.22999999999 30 180.4299999999999 70 32 0 VERTEX 5 FC 330 F9 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17341.82 20 80925.75999999999 30 179.4999999999999 70 32 0 SEQEND 5 FE 330 F9 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 FF 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 100 330 FF 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17289.77999999999 20 80879.18 30 187.2299999999999 70 32 0 VERTEX 5 101 330 FF 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17290.6 20 80877.61 30 186.92 70 32 0 VERTEX 5 102 330 FF 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17277.40999999999 20 80868.78 30 197.6299999999999 70 32 0 SEQEND 5 103 330 FF 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 104 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 105 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16882.02999999999 20 80532.57 30 196.65 70 32 0 VERTEX 5 106 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16882.77 20 80533.24000000001 30 196.65 70 32 0 VERTEX 5 107 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16890.41 20 80526.27000000001 30 195.2299999999999 70 32 0 VERTEX 5 108 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16911.89 20 80516.69 30 191.08 70 32 0 VERTEX 5 109 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16919.88999999999 20 80503.16999999999 30 188.3099999999999 70 32 0 VERTEX 5 10A 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16925.49 20 80496.44 30 187.41 70 32 0 VERTEX 5 10B 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16929.15 20 80491.39 30 187.1399999999999 70 32 0 VERTEX 5 10C 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16931.97 20 80483.39999999999 30 187.07 70 32 0 VERTEX 5 10D 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16933.4 20 80483.57000000001 30 188.3899999999999 70 32 0 VERTEX 5 10E 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16941.45999999999 20 80480.85 30 188.91 70 32 0 VERTEX 5 10F 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16957.5 20 80484.74999999999 30 186.3 70 32 0 VERTEX 5 110 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16952.91 20 80474.63 30 185.9099999999999 70 32 0 VERTEX 5 111 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16948.16999999999 20 80463.14999999999 30 185.2599999999999 70 32 0 VERTEX 5 112 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16940.88 20 80452.1 30 185.6099999999999 70 32 0 VERTEX 5 113 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16937.4 20 80444.25999999999 30 185.6099999999999 70 32 0 VERTEX 5 114 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16934.13 20 80437.18 30 185.6099999999999 70 32 0 VERTEX 5 115 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16926.23 20 80428.00999999998 30 185.6099999999999 70 32 0 VERTEX 5 116 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16918.49 20 80418.71 30 185.6099999999999 70 32 0 VERTEX 5 117 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16911.93 20 80408.89999999999 30 185.6099999999999 70 32 0 VERTEX 5 118 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16907.4 20 80406.56 30 185.6099999999999 70 32 0 VERTEX 5 119 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16909.18 20 80400.83 30 185.6099999999999 70 32 0 SEQEND 5 11A 330 104 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 11B 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 11C 330 11B 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16957.5 20 80484.74999999999 30 186.3 70 32 0 VERTEX 5 11D 330 11B 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16972.75 20 80490.78999999998 30 185.0099999999999 70 32 0 VERTEX 5 11E 330 11B 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16986.77 20 80496.49 30 182.75 70 32 0 VERTEX 5 11F 330 11B 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16993.45 20 80497.92999999999 30 182.21 70 32 0 VERTEX 5 120 330 11B 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16999.54 20 80499.98 30 182.04 70 32 0 VERTEX 5 121 330 11B 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17004.75 20 80501.64 30 181.47 70 32 0 SEQEND 5 122 330 11B 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 123 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 124 330 123 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16954.48 20 80580.74000000001 30 194.6399999999999 70 32 0 VERTEX 5 125 330 123 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16932.13 20 80574.08 30 194.5599999999999 70 32 0 VERTEX 5 126 330 123 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16922.86 20 80573.85000000001 30 196.25 70 32 0 VERTEX 5 127 330 123 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16916.41 20 80573.36000000001 30 199.2499999999999 70 32 0 VERTEX 5 128 330 123 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16909.89 20 80571.87 30 199.65 70 32 0 VERTEX 5 129 330 123 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16907.00999999999 20 80571.44 30 198.15 70 32 0 VERTEX 5 12A 330 123 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16890.72 20 80568.25999999999 30 199.4799999999999 70 32 0 VERTEX 5 12B 330 123 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16884.52 20 80564.56 30 199.6999999999999 70 32 0 VERTEX 5 12C 330 123 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16885.72 20 80553.21000000001 30 196.71 70 32 0 VERTEX 5 12D 330 123 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16882.77 20 80533.24000000001 30 196.65 70 32 0 SEQEND 5 12E 330 123 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 12F 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 130 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16884.52 20 80564.56 30 199.6999999999999 70 32 0 VERTEX 5 131 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16884.36999999999 20 80564.39000000001 30 199.6599999999999 70 32 0 VERTEX 5 132 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16876.21 20 80565.89999999999 30 191.92 70 32 0 VERTEX 5 133 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16874.54 20 80565.28999999999 30 191.43 70 32 0 VERTEX 5 134 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16868.11999999999 20 80564.91000000001 30 194.57 70 32 0 VERTEX 5 135 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16863.02 20 80564.07000000001 30 195.86 70 32 0 VERTEX 5 136 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16856.11 20 80563.3 30 195.25 70 32 0 VERTEX 5 137 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16856.09999999999 20 80566.36000000001 30 195.96 70 32 0 VERTEX 5 138 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16851.91999999999 20 80567.28999999998 30 193.28 70 32 0 VERTEX 5 139 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16846.3 20 80569.38999999999 30 191.0899999999999 70 32 0 VERTEX 5 13A 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16846.3 20 80569.38999999999 30 192.65 70 32 0 VERTEX 5 13B 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16837.27 20 80570.66 30 196.33 70 32 0 VERTEX 5 13C 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16836.00999999999 20 80576.17 30 197.02 70 32 0 VERTEX 5 13D 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16829.45 20 80580.94999999999 30 197.7299999999999 70 32 0 VERTEX 5 13E 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16823.58 20 80590.86999999999 30 199.35 70 32 0 VERTEX 5 13F 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16822.61 20 80597.99000000001 30 200.3 70 32 0 VERTEX 5 140 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16821.95 20 80598.77999999999 30 200.1399999999999 70 32 0 VERTEX 5 141 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16817.61999999999 20 80604.08999999999 30 188.74 70 32 0 SEQEND 5 142 330 12F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 145 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 146 330 145 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16890.72 20 80568.25999999999 30 199.4800000000001 70 32 0 VERTEX 5 147 330 145 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16884.95999999999 20 80571.38 30 200.87 70 32 0 VERTEX 5 148 330 145 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16877.99 20 80570.69999999999 30 201.8499999999999 70 32 0 VERTEX 5 149 330 145 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16868.6 20 80569.62 30 202.51 70 32 0 VERTEX 5 14A 330 145 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16862.3 20 80569.45 30 203.73 70 32 0 SEQEND 5 14B 330 145 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 14E 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 14F 330 14E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17044.08 20 80711.11999999999 30 193.29 70 32 0 VERTEX 5 150 330 14E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17031.09 20 80696.24000000001 30 193.97 70 32 0 VERTEX 5 151 330 14E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17013.41999999999 20 80673.87 30 193.96 70 32 0 VERTEX 5 152 330 14E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17006.43 20 80656.22000000001 30 193.7599999999999 70 32 0 VERTEX 5 153 330 14E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16999.34999999999 20 80642.8 30 193.93 70 32 0 VERTEX 5 154 330 14E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16990.56999999999 20 80641.92 30 195.2199999999999 70 32 0 VERTEX 5 155 330 14E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16991.89 20 80629.49000000001 30 194.86 70 32 0 VERTEX 5 156 330 14E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16988.03 20 80621.64 30 193.86 70 32 0 VERTEX 5 157 330 14E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16981.9 20 80609.06000000001 30 194.1399999999999 70 32 0 SEQEND 5 158 330 14E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 159 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 15A 330 159 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16999.34999999999 20 80642.8 30 193.93 70 32 0 VERTEX 5 15B 330 159 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16997.39 20 80639.49 30 194.34 70 32 0 VERTEX 5 15C 330 159 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16997.36 20 80639.53999999998 30 199.3999999999999 70 32 0 VERTEX 5 15D 330 159 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16999.29 20 80642.32999999999 30 200.0 70 32 0 VERTEX 5 15E 330 159 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17002.84 20 80650.53 30 199.53 70 32 0 VERTEX 5 15F 330 159 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17004.12 20 80652.01 30 199.87 70 32 0 VERTEX 5 160 330 159 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17006.63 20 80658.6 30 199.86 70 32 0 VERTEX 5 161 330 159 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17006.58 20 80658.66000000001 30 193.93 70 32 0 VERTEX 5 162 330 159 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16999.34999999999 20 80642.8 30 193.93 70 32 0 SEQEND 5 163 330 159 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 164 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 165 330 164 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16997.39 20 80639.49 30 194.34 70 32 0 VERTEX 5 166 330 164 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16994.35 20 80625.33 30 193.17 70 32 0 VERTEX 5 167 330 164 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16991.87 20 80622.1 30 193.2599999999999 70 32 0 VERTEX 5 168 330 164 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16990.89 20 80626.51 30 194.84 70 32 0 VERTEX 5 169 330 164 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16985.31 20 80616.67999999999 30 194.81 70 32 0 VERTEX 5 16A 330 164 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16981.9 20 80609.06000000001 30 194.1399999999999 70 32 0 SEQEND 5 16B 330 164 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 173 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 174 330 173 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17055.13999999999 20 80736.74999999999 30 199.27 70 32 0 VERTEX 5 175 330 173 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17055.13999999999 20 80736.74999999999 30 201.3399999999999 70 32 0 VERTEX 5 176 330 173 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17050.6 20 80736.0 30 201.18 70 32 0 VERTEX 5 177 330 173 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17047.34 20 80731.80999999999 30 203.83 70 32 0 VERTEX 5 178 330 173 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17044.85 20 80730.49000000001 30 205.0 70 32 0 VERTEX 5 179 330 173 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17038.0 20 80727.91999999999 30 205.6999999999999 70 32 0 VERTEX 5 17A 330 173 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17034.68 20 80725.53 30 206.99 70 32 0 VERTEX 5 17B 330 173 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17032.22 20 80724.64 30 206.99 70 32 0 VERTEX 5 17C 330 173 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17031.19 20 80724.94 30 206.99 70 32 0 VERTEX 5 17D 330 173 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17029.45 20 80722.93 30 210.3899999999999 70 32 0 VERTEX 5 17E 330 173 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17025.32 20 80722.61000000001 30 210.21 70 32 0 VERTEX 5 17F 330 173 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17021.25 20 80721.43 30 208.32 70 32 0 VERTEX 5 180 330 173 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17016.29 20 80719.57000000001 30 208.32 70 32 0 SEQEND 5 181 330 173 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 182 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 183 330 182 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17049.99 20 80721.24999999999 30 197.4 70 32 0 VERTEX 5 184 330 182 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17054.54 20 80725.2 30 198.77 70 32 0 VERTEX 5 185 330 182 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17058.38 20 80728.14000000001 30 198.0 70 32 0 VERTEX 5 186 330 182 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17063.8 20 80727.37 30 197.82 70 32 0 VERTEX 5 187 330 182 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17069.84 20 80729.07999999999 30 197.9499999999999 70 32 0 VERTEX 5 188 330 182 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17077.78 20 80739.19999999999 30 198.6699999999999 70 32 0 VERTEX 5 189 330 182 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17084.3 20 80736.91 30 198.4399999999999 70 32 0 VERTEX 5 18A 330 182 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17090.36999999999 20 80728.86999999999 30 197.86 70 32 0 VERTEX 5 18B 330 182 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17091.5 20 80728.1 30 197.2299999999999 70 32 0 VERTEX 5 18C 330 182 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17091.05 20 80729.38999999999 30 194.6399999999999 70 32 0 VERTEX 5 18D 330 182 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17088.07 20 80726.94 30 193.84 70 32 0 VERTEX 5 18E 330 182 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17084.33 20 80727.16000000001 30 193.55 70 32 0 SEQEND 5 18F 330 182 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 195 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 196 330 195 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17058.38 20 80728.14000000001 30 198.0 70 32 0 VERTEX 5 197 330 195 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17062.22 20 80734.05000000001 30 198.5 70 32 0 VERTEX 5 198 330 195 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17057.99 20 80738.64 30 199.8199999999999 70 32 0 VERTEX 5 199 330 195 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17055.13999999999 20 80736.74999999999 30 201.3399999999999 70 32 0 SEQEND 5 19A 330 195 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 19B 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 19C 330 19B 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17062.22 20 80734.05000000001 30 198.5 70 32 0 VERTEX 5 19D 330 19B 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17066.74 20 80734.77999999999 30 199.05 70 32 0 SEQEND 5 19E 330 19B 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 1AB 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1AC 330 1AB 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17068.97999999999 20 80707.74 30 192.14 70 32 0 VERTEX 5 1AD 330 1AB 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17064.02999999999 20 80699.48 30 192.44 70 32 0 VERTEX 5 1AE 330 1AB 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17062.04 20 80694.66 30 197.1399999999999 70 32 0 VERTEX 5 1AF 330 1AB 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17060.23 20 80690.39 30 199.2499999999999 70 32 0 VERTEX 5 1B0 330 1AB 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17060.66 20 80689.32 30 200.4 70 32 0 VERTEX 5 1B1 330 1AB 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17060.66 20 80689.32 30 202.09 70 32 0 VERTEX 5 1B2 330 1AB 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17057.52 20 80684.19 30 206.8799999999999 70 32 0 VERTEX 5 1B3 330 1AB 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17053.84999999999 20 80680.57000000001 30 210.62 70 32 0 SEQEND 5 1B4 330 1AB 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 1B5 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1B6 330 1B5 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17153.91 20 80778.02 30 194.1699999999999 70 32 0 VERTEX 5 1B7 330 1B5 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17160.58 20 80785.80999999999 30 192.2299999999999 70 32 0 VERTEX 5 1B8 330 1B5 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17164.18 20 80788.89 30 191.72 70 32 0 VERTEX 5 1B9 330 1B5 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17168.22 20 80789.95 30 191.66 70 32 0 VERTEX 5 1BA 330 1B5 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17174.15 20 80796.08 30 190.96 70 32 0 VERTEX 5 1BB 330 1B5 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17175.11999999999 20 80799.0 30 190.8699999999999 70 32 0 VERTEX 5 1BC 330 1B5 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17175.64 20 80800.21 30 191.37 70 32 0 VERTEX 5 1BD 330 1B5 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17175.65 20 80800.21 30 192.9299999999999 70 32 0 VERTEX 5 1BE 330 1B5 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17186.22 20 80810.75999999999 30 191.3 70 32 0 VERTEX 5 1BF 330 1B5 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17208.15 20 80820.93 30 188.6899999999999 70 32 0 VERTEX 5 1C0 330 1B5 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17208.15 20 80820.91999999999 30 189.2599999999999 70 32 0 VERTEX 5 1C1 330 1B5 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17217.02 20 80823.33999999999 30 189.15 70 32 0 SEQEND 5 1C2 330 1B5 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 1C3 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1C4 330 1C3 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17104.63 20 80743.88 30 195.31 70 32 0 VERTEX 5 1C5 330 1C3 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17109.11999999999 20 80746.63000000001 30 198.8899999999999 70 32 0 VERTEX 5 1C6 330 1C3 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17111.48 20 80745.33 30 198.84 70 32 0 VERTEX 5 1C7 330 1C3 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17114.08 20 80746.85 30 198.9499999999999 70 32 0 VERTEX 5 1C8 330 1C3 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17119.64 20 80743.96000000001 30 198.7899999999999 70 32 0 VERTEX 5 1C9 330 1C3 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17125.75 20 80748.39 30 198.6599999999999 70 32 0 VERTEX 5 1CA 330 1C3 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17129.99 20 80753.07999999999 30 196.72 70 32 0 VERTEX 5 1CB 330 1C3 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17131.36999999999 20 80756.63 30 194.5999999999999 70 32 0 VERTEX 5 1CC 330 1C3 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17132.57 20 80759.31 30 193.86 70 32 0 VERTEX 5 1CD 330 1C3 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17132.2 20 80759.52 30 192.74 70 32 0 SEQEND 5 1CE 330 1C3 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 1D1 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1D2 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17242.31999999999 20 80844.74 30 187.5999999999999 70 32 0 VERTEX 5 1D3 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17244.56 20 80853.78999999999 30 186.87 70 32 0 VERTEX 5 1D4 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17242.43999999999 20 80859.03999999999 30 187.56 70 32 0 VERTEX 5 1D5 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17242.79 20 80870.23 30 187.9499999999999 70 32 0 VERTEX 5 1D6 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17244.77999999999 20 80885.75 30 187.68 70 32 0 VERTEX 5 1D7 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17250.04 20 80900.64999999999 30 187.68 70 32 0 VERTEX 5 1D9 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17261.16 20 80923.47 30 186.7899999999999 70 32 0 VERTEX 5 1DA 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17267.31 20 80927.39999999999 30 186.41 70 32 0 VERTEX 5 1DB 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17280.33 20 80932.17 30 184.4599999999999 70 32 0 VERTEX 5 1DC 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17297.04 20 80937.02 30 182.9399999999999 70 32 0 VERTEX 5 1DD 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17307.16 20 80935.55999999999 30 182.22 70 32 0 VERTEX 5 1DE 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17307.16 20 80935.55999999999 30 182.22 70 32 0 VERTEX 5 1DF 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17312.77 20 80938.00999999999 30 182.01 70 32 0 VERTEX 5 1E0 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17321.16999999999 20 80941.85000000001 30 181.93 70 32 0 VERTEX 5 1E1 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17323.96 20 80947.57000000001 30 181.71 70 32 0 VERTEX 5 1E2 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17336.63 20 80949.05999999999 30 180.48 70 32 0 VERTEX 5 1E3 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17342.43 20 80949.53 30 180.2299999999999 70 32 0 VERTEX 5 1E4 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17344.55 20 80942.1 30 179.42 70 32 0 SEQEND 5 1E5 330 1D1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 1E6 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1E7 330 1E6 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17261.16 20 80923.47 30 186.7899999999999 70 32 0 VERTEX 5 1E8 330 1E6 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17257.97 20 80924.96 30 187.1 70 32 0 VERTEX 5 1E9 330 1E6 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17254.3 20 80923.82999999999 30 186.3499999999999 70 32 0 VERTEX 5 1EA 330 1E6 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17248.86 20 80921.24 30 187.4699999999999 70 32 0 VERTEX 5 1EB 330 1E6 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17246.93 20 80920.82000000001 30 189.3799999999999 70 32 0 VERTEX 5 1EC 330 1E6 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17249.66999999999 20 80919.22999999999 30 189.71 70 32 0 VERTEX 5 1ED 330 1E6 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17251.84999999999 20 80920.76 30 189.52 70 32 0 VERTEX 5 1EE 330 1E6 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17260.78 20 80925.41999999999 30 188.6399999999999 70 32 0 VERTEX 5 1EF 330 1E6 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17270.71 20 80930.06 30 186.81 70 32 0 VERTEX 5 1F0 330 1E6 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17278.13 20 80929.96000000001 30 186.03 70 32 0 VERTEX 5 1F1 330 1E6 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17290.2 20 80934.5 30 184.67 70 32 0 VERTEX 5 1F2 330 1E6 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17296.73 20 80935.97 30 183.7899999999999 70 32 0 SEQEND 5 1F3 330 1E6 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 1F4 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1F5 330 1F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17261.16 20 80923.47 30 186.7899999999999 70 32 0 VERTEX 5 1F6 330 1F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17274.24 20 80929.64 30 185.04 70 32 0 VERTEX 5 1F7 330 1F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17277.15 20 80930.16999999999 30 182.7299999999999 70 32 0 VERTEX 5 1F8 330 1F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17274.84 20 80929.21 30 182.55 70 32 0 VERTEX 5 1F9 330 1F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17274.32 20 80930.28 30 182.3 70 32 0 VERTEX 5 1FA 330 1F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17265.4 20 80939.38000000001 30 182.97 70 32 0 VERTEX 5 1FB 330 1F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17262.77 20 80937.13000000001 30 182.97 70 32 0 VERTEX 5 1FC 330 1F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17256.23 20 80937.16 30 182.8 70 32 0 VERTEX 5 1FD 330 1F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17250.93999999999 20 80937.74000000001 30 182.15 70 32 0 VERTEX 5 1FE 330 1F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17238.0 20 80934.6 30 181.69 70 32 0 VERTEX 5 1FF 330 1F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17227.98 20 80932.35000000001 30 182.05 70 32 0 VERTEX 5 200 330 1F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17222.86 20 80933.84 30 182.0999999999999 70 32 0 VERTEX 5 202 330 1F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17216.43 20 80933.08999999999 30 182.0999999999999 70 32 0 VERTEX 5 203 330 1F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17209.12 20 80933.38000000001 30 182.0999999999999 70 32 0 VERTEX 5 204 330 1F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17200.25 20 80931.55000000001 30 181.9399999999999 70 32 0 VERTEX 5 205 330 1F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17180.25999999999 20 80926.7 30 181.9399999999999 70 32 0 SEQEND 5 206 330 1F4 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 207 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 208 330 207 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17256.23 20 80937.16 30 182.8 70 32 0 VERTEX 5 209 330 207 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17252.62 20 80935.52999999999 30 182.8 70 32 0 VERTEX 5 20A 330 207 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17250.03 20 80933.01 30 183.37 70 32 0 VERTEX 5 20B 330 207 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17246.61 20 80929.56 30 183.8 70 32 0 VERTEX 5 20C 330 207 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17240.02999999999 20 80925.72 30 184.07 70 32 0 VERTEX 5 20D 330 207 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17239.54 20 80924.27999999999 30 184.12 70 32 0 VERTEX 5 20E 330 207 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17236.91 20 80922.74000000001 30 184.1699999999999 70 32 0 VERTEX 5 20F 330 207 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17236.84999999999 20 80917.87 30 183.83 70 32 0 VERTEX 5 210 330 207 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17232.91999999999 20 80914.03999999998 30 183.83 70 32 0 VERTEX 5 211 330 207 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17234.03 20 80911.2 30 183.83 70 32 0 VERTEX 5 212 330 207 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17231.68999999999 20 80910.56 30 184.0899999999999 70 32 0 SEQEND 5 213 330 207 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 214 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 215 330 214 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17236.91 20 80922.74000000001 30 184.1699999999999 70 32 0 VERTEX 5 216 330 214 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17231.62 20 80919.78000000001 30 184.81 70 32 0 SEQEND 5 217 330 214 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 22E 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 22F 330 22E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17053.88 20 80874.43 30 205.2299999999999 70 32 0 VERTEX 5 230 330 22E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17049.36999999999 20 80874.03999999999 30 206.03 70 32 0 VERTEX 5 231 330 22E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17049.36999999999 20 80874.03999999999 30 198.53 70 32 0 SEQEND 5 232 330 22E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 23A 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 23B 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16971.31 20 80601.28 30 194.27 70 32 0 VERTEX 5 23C 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16962.61 20 80604.51 30 194.7599999999999 70 32 0 VERTEX 5 23D 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16958.32 20 80604.18 30 194.84 70 32 0 VERTEX 5 23E 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16956.31 20 80604.06 30 194.88 70 32 0 VERTEX 5 23F 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16953.52 20 80602.66999999999 30 195.3699999999999 70 32 0 VERTEX 5 240 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16946.41999999999 20 80605.2 30 195.8999999999999 70 32 0 VERTEX 5 241 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16941.33 20 80605.86 30 196.76 70 32 0 VERTEX 5 242 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16941.14 20 80611.14999999999 30 197.13 70 32 0 VERTEX 5 243 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16941.86 20 80615.28 30 197.3499999999999 70 32 0 VERTEX 5 244 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16942.52999999999 20 80622.52 30 197.7299999999999 70 32 0 VERTEX 5 245 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16942.04 20 80625.58000000001 30 197.8099999999999 70 32 0 VERTEX 5 246 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16942.66999999999 20 80633.57000000001 30 199.0099999999999 70 32 0 VERTEX 5 247 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16943.13 20 80637.89999999999 30 199.09 70 32 0 VERTEX 5 248 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16944.96 20 80640.00999999999 30 200.2699999999999 70 32 0 VERTEX 5 249 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16945.12 20 80647.17999999999 30 201.2799999999999 70 32 0 VERTEX 5 24A 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16947.96 20 80655.47999999999 30 202.05 70 32 0 VERTEX 5 24B 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16948.38 20 80666.03999999999 30 203.7199999999999 70 32 0 VERTEX 5 24C 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16947.46 20 80671.64999999999 30 203.8199999999999 70 32 0 VERTEX 5 24D 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16948.3 20 80680.3 30 205.12 70 32 0 VERTEX 5 24E 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16953.9 20 80690.31 30 204.52 70 32 0 VERTEX 5 24F 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16954.75 20 80695.16999999999 30 203.74 70 32 0 VERTEX 5 250 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16955.84 20 80697.42999999999 30 203.74 70 32 0 VERTEX 5 251 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16958.06 20 80698.08 30 203.86 70 32 0 VERTEX 5 252 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16958.91 20 80700.61 30 203.2599999999999 70 32 0 VERTEX 5 253 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16958.98 20 80702.78999999999 30 203.2599999999999 70 32 0 VERTEX 5 254 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16957.08 20 80708.52 30 203.2599999999999 70 32 0 VERTEX 5 255 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16956.54999999999 20 80717.87 30 203.2599999999999 70 32 0 VERTEX 5 256 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16959.36 20 80721.96000000001 30 203.61 70 32 0 VERTEX 5 257 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16963.41 20 80729.83 30 199.8499999999999 70 32 0 VERTEX 5 258 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16962.09 20 80732.80999999999 30 198.4 70 32 0 VERTEX 5 259 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16962.24 20 80736.17 30 198.28 70 32 0 VERTEX 5 25A 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16962.61999999999 20 80745.52999999999 30 198.61 70 32 0 VERTEX 5 25B 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16966.0 20 80751.50999999999 30 200.07 70 32 0 VERTEX 5 25C 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16971.16999999999 20 80751.63000000001 30 198.6299999999999 70 32 0 VERTEX 5 25D 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16973.56 20 80758.5 30 196.5399999999999 70 32 0 VERTEX 5 25E 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16975.81 20 80761.41000000001 30 195.96 70 32 0 VERTEX 5 25F 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16977.25 20 80764.17000000001 30 196.12 70 32 0 VERTEX 5 260 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16985.56 20 80773.39999999999 30 196.34 70 32 0 VERTEX 5 261 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16981.27 20 80784.33 30 197.16 70 32 0 VERTEX 5 262 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16979.8 20 80790.93 30 197.5099999999999 70 32 0 VERTEX 5 263 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16986.41999999999 20 80800.04999999999 30 197.5099999999999 70 32 0 VERTEX 5 264 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16993.71 20 80802.82 30 195.8499999999999 70 32 0 VERTEX 5 265 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16995.56999999999 20 80805.98 30 195.91 70 32 0 VERTEX 5 266 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16998.48 20 80809.77 30 196.84 70 32 0 VERTEX 5 267 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17001.81 20 80810.7 30 197.08 70 32 0 SEQEND 5 268 330 23A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 269 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 26A 330 269 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16953.9 20 80690.31 30 204.52 70 32 0 VERTEX 5 26B 330 269 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16958.21 20 80690.22 30 204.82 70 32 0 VERTEX 5 26C 330 269 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16963.50999999999 20 80692.16 30 204.82 70 32 0 VERTEX 5 26D 330 269 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16966.0 20 80693.67999999998 30 204.95 70 32 0 VERTEX 5 26E 330 269 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16968.32 20 80695.27 30 204.8 70 32 0 SEQEND 5 26F 330 269 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 270 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 271 330 270 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16954.75 20 80695.16999999999 30 203.74 70 32 0 VERTEX 5 272 330 270 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16948.14 20 80692.55999999999 30 204.11 70 32 0 VERTEX 5 273 330 270 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16943.64 20 80690.81 30 204.4499999999999 70 32 0 VERTEX 5 274 330 270 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16941.38 20 80689.31 30 204.19 70 32 0 VERTEX 5 275 330 270 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16939.74 20 80688.06 30 204.52 70 32 0 SEQEND 5 276 330 270 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 277 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 278 330 277 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16947.46 20 80671.64999999999 30 203.8199999999999 70 32 0 VERTEX 5 279 330 277 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16937.81 20 80672.01 30 202.4599999999999 70 32 0 VERTEX 5 27A 330 277 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16937.81 20 80672.01 30 202.74 70 32 0 VERTEX 5 27B 330 277 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16926.25999999999 20 80672.73 30 203.55 70 32 0 VERTEX 5 27C 330 277 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16917.04999999999 20 80673.7 30 205.02 70 32 0 VERTEX 5 27D 330 277 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16903.56 20 80661.71999999999 30 204.55 70 32 0 VERTEX 5 27E 330 277 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16897.31 20 80656.89 30 204.38 70 32 0 VERTEX 5 27F 330 277 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16878.24 20 80633.28999999999 30 204.91 70 32 0 VERTEX 5 280 330 277 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16865.63999999999 20 80624.54999999999 30 206.7899999999999 70 32 0 VERTEX 5 281 330 277 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16858.72999999999 20 80613.89 30 208.0099999999999 70 32 0 VERTEX 5 282 330 277 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16845.34999999999 20 80607.41 30 210.0999999999999 70 32 0 VERTEX 5 283 330 277 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16846.36999999999 20 80603.28999999999 30 209.2799999999999 70 32 0 VERTEX 5 284 330 277 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16843.25999999999 20 80598.21000000001 30 210.3299999999999 70 32 0 SEQEND 5 285 330 277 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 286 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 287 330 286 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16917.04999999999 20 80673.7 30 205.02 70 32 0 VERTEX 5 288 330 286 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16920.97 20 80678.61999999999 30 205.1299999999999 70 32 0 VERTEX 5 289 330 286 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16927.34999999999 20 80681.88000000001 30 205.3799999999999 70 32 0 VERTEX 5 28A 330 286 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16930.47 20 80687.39 30 209.4899999999999 70 32 0 SEQEND 5 28B 330 286 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 28C 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 28D 330 28C 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16927.34999999999 20 80681.88000000001 30 205.3799999999998 70 32 0 VERTEX 5 28E 330 28C 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16926.0 20 80683.43 30 202.93 70 32 0 VERTEX 5 28F 330 28C 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16927.11 20 80685.56 30 200.53 70 32 0 SEQEND 5 290 330 28C 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 291 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 292 330 291 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16920.97 20 80678.62000000001 30 205.1300000000002 70 32 0 VERTEX 5 293 330 291 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16918.37 20 80679.14999999999 30 204.4399999999999 70 32 0 VERTEX 5 294 330 291 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16918.37 20 80679.14999999999 30 201.55 70 32 0 VERTEX 5 295 330 291 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16921.00999999999 20 80680.96999999999 30 199.55 70 32 0 SEQEND 5 296 330 291 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 297 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 298 330 297 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16918.37 20 80679.14999999999 30 201.55 70 32 0 VERTEX 5 299 330 297 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16915.58 20 80678.39000000001 30 202.0599999999999 70 32 0 VERTEX 5 29A 330 297 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16911.38999999999 20 80677.00999999999 30 199.8099999999999 70 32 0 VERTEX 5 29B 330 297 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16911.18 20 80677.35 30 199.8099999999999 70 32 0 VERTEX 5 29C 330 297 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16910.97 20 80677.88 30 191.6299999999999 70 32 0 VERTEX 5 29D 330 297 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16918.86 20 80681.03 30 189.9 70 32 0 VERTEX 5 29E 330 297 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16922.93999999999 20 80683.69999999999 30 192.02 70 32 0 VERTEX 5 29F 330 297 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16925.7 20 80684.8 30 192.3099999999999 70 32 0 VERTEX 5 2A0 330 297 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16933.54 20 80687.92999999999 30 190.8199999999999 70 32 0 SEQEND 5 2A1 330 297 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 2A2 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 2A3 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16966.0 20 80751.50999999999 30 200.07 70 32 0 VERTEX 5 2A4 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16961.39 20 80750.03999999999 30 200.41 70 32 0 VERTEX 5 2A5 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16957.74 20 80749.83000000001 30 198.55 70 32 0 VERTEX 5 2A6 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16951.6 20 80748.16 30 199.7899999999999 70 32 0 VERTEX 5 2A7 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16947.07 20 80750.53999999999 30 200.6899999999999 70 32 0 VERTEX 5 2A8 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16939.24 20 80753.50999999999 30 201.5699999999999 70 32 0 VERTEX 5 2A9 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16933.38999999999 20 80753.28 30 202.2899999999999 70 32 0 VERTEX 5 2AA 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16932.68 20 80755.88000000001 30 202.2899999999999 70 32 0 VERTEX 5 2AB 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16925.63999999999 20 80760.07 30 203.01 70 32 0 VERTEX 5 2AC 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16920.72 20 80761.64 30 203.6399999999999 70 32 0 VERTEX 5 2AD 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16917.7 20 80763.89999999999 30 204.0999999999999 70 32 0 VERTEX 5 2AE 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16916.00999999999 20 80766.47000000001 30 204.4799999999999 70 32 0 VERTEX 5 2AF 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16912.7 20 80766.91999999999 30 205.1299999999999 70 32 0 VERTEX 5 2B0 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16909.2 20 80768.38999999999 30 205.56 70 32 0 VERTEX 5 2B1 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16906.0 20 80776.02 30 206.4999999999999 70 32 0 VERTEX 5 2B2 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16902.02999999999 20 80776.0 30 206.99 70 32 0 VERTEX 5 2B3 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16898.16999999999 20 80776.69999999999 30 207.58 70 32 0 VERTEX 5 2B4 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16894.79 20 80781.48 30 207.7799999999999 70 32 0 VERTEX 5 2B5 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16890.93 20 80784.69 30 208.04 70 32 0 VERTEX 5 2B6 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16886.84 20 80787.53 30 208.4799999999999 70 32 0 VERTEX 5 2B7 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16889.12 20 80790.82000000001 30 208.4799999999999 70 32 0 SEQEND 5 2B8 330 2A2 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 LINE 5 423 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17094.89 20 80878.44999999999 30 200.8399999999998 11 17100.12 21 80884.37 31 200.8399999999999 0 LINE 5 424 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17094.89 20 80878.44999999999 30 200.8399999999998 11 17092.66999999999 21 80879.99000000001 31 201.5699999999999 0 LINE 5 425 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17092.66999999999 20 80879.99000000001 30 201.5699999999999 11 17089.63 21 80883.16999999999 31 200.2299999999999 0 LINE 5 426 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17089.63 20 80883.16999999999 30 200.2299999999999 11 17089.63 21 80883.16999999999 31 200.6299999999999 0 LINE 5 427 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17089.63 20 80883.16999999999 30 200.6299999999999 11 17088.68 21 80886.11 31 201.4 0 LINE 5 428 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17094.89 20 80878.44999999999 30 200.8399999999999 11 17083.47 21 80876.06 31 201.5299999999999 0 LINE 5 429 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17083.47 20 80876.06 30 201.5299999999999 11 17074.54 21 80873.55 31 200.8799999999999 0 LINE 5 42A 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17074.54 20 80873.55 30 200.8799999999999 11 17069.05 21 80874.41999999999 31 201.1699999999999 0 LINE 5 42B 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17069.05 20 80874.41999999999 30 201.1699999999999 11 17053.88 21 80874.43 31 205.2299999999999 0 LINE 5 42C 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17053.88 20 80874.43 30 205.2299999999999 11 17044.66 21 80873.64 31 206.8599999999999 0 LINE 5 42D 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17148.52999999999 20 80885.37 30 230.1899999999999 11 17139.59 21 80883.89000000001 31 222.0299999999999 0 LINE 5 42E 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17139.59 20 80883.89000000001 30 222.0299999999999 11 17135.56999999999 21 80882.80000000001 31 220.2799999999999 0 LINE 5 42F 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17135.56999999999 20 80882.80000000001 30 220.2799999999999 11 17123.68999999999 21 80878.25 31 208.74 0 LINE 5 430 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17123.68999999999 20 80878.25 30 208.74 11 17118.91 21 80877.17999999998 31 205.8199999999999 0 LINE 5 431 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17118.91 20 80877.17999999998 30 205.8199999999999 11 17114.29 21 80878.03 31 204.53 0 LINE 5 432 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17114.29 20 80878.03 30 204.53 11 17103.13 21 80879.91999999999 31 203.3799999999999 0 LINE 5 433 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17103.13 20 80879.91999999999 30 203.3799999999999 11 17094.89 21 80878.44999999999 31 200.8399999999999 0 LINE 5 434 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17094.89 20 80878.44999999999 30 200.8399999999999 11 17101.95 21 80876.07 31 199.2499999999999 0 LINE 5 435 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17101.95 20 80876.07 30 199.2499999999999 11 17104.66 21 80868.64 31 198.17 0 LINE 5 436 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17104.66 20 80868.64 30 198.17 11 17105.87 21 80855.87 31 197.6299999999999 0 LINE 5 437 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17105.87 20 80855.87 30 197.6299999999999 11 17107.63999999999 21 80850.08999999999 31 197.2899999999999 0 LINE 5 438 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17107.63999999999 20 80850.08999999999 30 197.2899999999999 11 17105.29 21 80838.77000000001 31 197.6299999999999 0 LINE 5 439 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17105.29 20 80838.77000000001 30 197.6299999999999 11 17105.12 21 80835.58999999999 31 197.5 0 LINE 5 43A 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17105.12 20 80835.58999999999 30 197.5 11 17101.37 21 80824.09 31 198.28 0 LINE 5 43B 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17101.37 20 80824.09 30 198.28 11 17098.88 21 80800.42999999999 31 197.6999999999999 0 LINE 5 43C 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17098.88 20 80800.42999999999 30 197.6999999999999 11 17094.13999999999 21 80781.01 31 196.05 0 LINE 5 43D 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17094.13999999999 20 80781.01 30 196.05 11 17094.34 21 80777.33999999999 31 195.62 0 LINE 5 43E 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17094.34 20 80777.33999999999 30 195.62 11 17093.18999999999 21 80768.63000000001 31 196.58 0 LINE 5 43F 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17093.18999999999 20 80768.63000000001 30 196.58 11 17094.08 21 80765.53999999999 31 198.4799999999999 0 LINE 5 440 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17094.08 20 80765.53999999999 30 198.4799999999999 11 17092.52999999999 21 80757.24000000001 31 197.9 0 LINE 5 441 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17092.52999999999 20 80757.24000000001 30 197.9 11 17077.68999999999 21 80747.30999999999 31 198.62 0 LINE 5 442 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17077.68999999999 20 80747.30999999999 30 198.62 11 17055.13999999999 21 80736.74999999999 31 199.27 0 LINE 5 443 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17055.13999999999 20 80736.74999999999 30 199.27 11 17055.88 21 80731.25 31 198.1899999999999 0 LINE 5 444 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17055.88 20 80731.25 30 198.1899999999999 11 17049.99 21 80721.24999999999 31 197.4 0 LINE 5 445 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17049.99 20 80721.24999999999 30 197.4 11 17044.08 21 80711.11999999999 31 193.29 0 LINE 5 446 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17044.08 20 80711.11999999999 30 193.29 11 17024.93 21 80691.12 31 193.5599999999999 0 LINE 5 447 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17024.93 20 80691.12 30 193.5599999999999 11 17011.87 21 80669.48 31 193.1599999999999 0 LINE 5 448 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17011.87 20 80669.48 30 193.1599999999999 11 16999.33 21 80642.32 31 193.27 0 LINE 5 449 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 16999.33 20 80642.32 30 193.27 11 16990.32 21 80642.07000000001 31 194.69 0 LINE 5 44A 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 16990.32 20 80642.07000000001 30 194.69 11 16991.31 21 80638.00999999999 31 196.87 0 LINE 5 44B 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 16991.31 20 80638.00999999999 30 196.87 11 16991.0 21 80629.49000000001 31 194.69 0 LINE 5 44C 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 16991.0 20 80629.49000000001 30 194.69 11 16987.75999999999 21 80621.16000000001 31 193.8899999999999 0 LINE 5 44D 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 16987.75999999999 20 80621.16000000001 30 193.8899999999999 11 16981.9 21 80609.06000000001 31 194.1399999999999 0 LINE 5 44E 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 16981.9 20 80609.06000000001 30 194.1399999999999 11 16971.31 21 80601.28 31 194.27 0 LINE 5 44F 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 16971.31 20 80601.28 30 194.27 11 16954.48 21 80580.74000000001 31 194.6399999999999 0 LINE 5 450 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 16954.48 20 80580.74000000001 30 194.6399999999999 11 16928.01 21 80572.61 31 194.29 0 LINE 5 451 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 16928.01 20 80572.61 30 194.29 11 16904.84999999999 21 80556.64999999999 31 194.33 0 LINE 5 452 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 16904.84999999999 20 80556.64999999999 30 194.33 11 16886.63999999999 21 80553.93 31 196.76 0 LINE 5 453 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 16886.63999999999 20 80553.93 30 196.76 11 16882.02999999999 21 80532.57 31 196.65 0 LINE 5 454 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17094.89 20 80878.44999999999 30 200.8399999999999 11 17101.65 21 80875.71999999999 31 199.32 0 LINE 5 455 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17101.65 20 80875.71999999999 30 199.32 11 17102.86 21 80871.04 31 200.3499999999999 0 LINE 5 456 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17102.86 20 80871.04 30 200.3499999999999 11 17110.22999999999 21 80874.72999999999 31 198.2899999999999 0 LINE 5 457 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17110.22999999999 20 80874.72999999999 30 198.2899999999999 11 17114.23 21 80875.93 31 198.8 0 LINE 5 458 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17114.23 20 80875.93 30 198.8 11 17115.04 21 80877.99 31 200.59 0 LINE 5 459 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17115.04 20 80877.99 30 200.59 11 17118.82 21 80878.24000000001 31 202.52 0 LINE 5 45A 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbLine 10 17118.82 20 80878.24000000001 30 202.52 11 17124.61 21 80879.33000000001 31 205.27 0 POLYLINE 5 736 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 737 330 736 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17063.8 20 80727.37 30 197.82 70 32 0 VERTEX 5 738 330 736 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17067.3 20 80720.79 30 197.56 70 32 0 VERTEX 5 739 330 736 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17068.34999999999 20 80714.07 30 197.56 70 32 0 VERTEX 5 73A 330 736 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17068.34999999999 20 80714.07 30 197.56 70 32 0 SEQEND 5 73B 330 736 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 73C 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 73D 330 73C 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17077.78 20 80739.19999999999 30 198.6699999999999 70 32 0 VERTEX 5 73E 330 73C 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17077.78 20 80739.19999999999 30 198.6699999999999 70 32 0 VERTEX 5 73F 330 73C 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17080.83 20 80744.61000000001 30 198.9499999999999 70 32 0 VERTEX 5 740 330 73C 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17080.58 20 80749.08 30 199.43 70 32 0 VERTEX 5 741 330 73C 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17081.00999999999 20 80748.78999999999 30 199.42 70 32 0 VERTEX 5 742 330 73C 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17081.0 20 80748.8 30 200.6399999999999 70 32 0 VERTEX 5 743 330 73C 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17068.52999999999 20 80742.27999999999 30 200.18 70 32 0 VERTEX 5 744 330 73C 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17057.99 20 80738.64 30 199.8199999999999 70 32 0 SEQEND 5 745 330 73C 100 AcDbEntity 8 S_L_JB_MAIN 48 0.1 0 POLYLINE 5 1B92 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1B93 330 1B92 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16865.63 20 80624.56 30 206.8 70 32 0 VERTEX 5 1B94 330 1B92 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16866.25 20 80624.44000000001 30 205.96 70 32 0 VERTEX 5 1B95 330 1B92 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16865.57 20 80621.07000000001 30 207.94 70 32 0 VERTEX 5 1B96 330 1B92 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16868.57 20 80625.13 30 213.35 70 32 0 VERTEX 5 1B97 330 1B92 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16870.02999999999 20 80625.23 30 214.9799999999999 70 32 0 VERTEX 5 1B98 330 1B92 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16870.02999999999 20 80625.23 30 220.2799999999999 70 32 0 VERTEX 5 1B99 330 1B92 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16871.41 20 80624.77000000001 30 219.9199999999999 70 32 0 VERTEX 5 1B9A 330 1B92 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16871.41 20 80624.77000000001 30 220.69 70 32 0 SEQEND 5 1B9B 330 1B92 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 1BF5 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1BF6 330 1BF5 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16804.72 20 80434.38 30 223.11 70 32 0 VERTEX 5 1BF7 330 1BF5 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16802.24 20 80433.61 30 222.4699999999999 70 32 0 VERTEX 5 1BF8 330 1BF5 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16794.40999999999 20 80434.66 30 211.98 70 32 0 SEQEND 5 1BF9 330 1BF5 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 1BFA 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1BFB 330 1BFA 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16804.72 20 80434.38 30 223.11 70 32 0 VERTEX 5 1BFC 330 1BFA 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16802.89 20 80435.46 30 223.87 70 32 0 SEQEND 5 1BFD 330 1BFA 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 1C1A 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1C1B 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16920.97 20 80678.61999999999 30 205.1299999999999 70 32 0 VERTEX 5 1C1C 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16924.68 20 80681.44999999999 30 205.71 70 32 0 VERTEX 5 1C1D 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16931.34 20 80685.66 30 210.2599999999999 70 32 0 VERTEX 5 1C1E 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16932.38 20 80686.47999999999 30 211.68 70 32 0 VERTEX 5 1C1F 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16932.38 20 80686.47999999999 30 212.88 70 32 0 VERTEX 5 1C20 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16933.00999999999 20 80686.63 30 213.33 70 32 0 VERTEX 5 1C21 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16933.36999999999 20 80687.02 30 213.7599999999999 70 32 0 VERTEX 5 1C22 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16933.36999999999 20 80687.02 30 216.88 70 32 0 VERTEX 5 1C23 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16932.93 20 80687.06 30 217.26 70 32 0 VERTEX 5 1C24 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16932.93 20 80687.06 30 219.68 70 32 0 VERTEX 5 1C25 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16934.32 20 80684.94000000001 30 223.4399999999999 70 32 0 VERTEX 5 1C26 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16934.32 20 80684.94000000001 30 224.52 70 32 0 VERTEX 5 1C27 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16938.38 20 80688.49 30 232.5099999999999 70 32 0 VERTEX 5 1C28 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16942.26 20 80692.27000000001 30 238.3199999999999 70 32 0 VERTEX 5 1C29 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16942.65 20 80692.05 30 238.35 70 32 0 VERTEX 5 1C2A 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16943.69 20 80690.45 30 237.8099999999999 70 32 0 VERTEX 5 1C2B 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16947.91999999999 20 80691.38 30 237.5099999999999 70 32 0 VERTEX 5 1C2C 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16951.34999999999 20 80692.78 30 236.98 70 32 0 VERTEX 5 1C2D 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16956.50999999999 20 80696.85000000001 30 236.7599999999999 70 32 0 VERTEX 5 1C2E 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16959.11 20 80706.08999999999 30 236.7599999999999 70 32 0 VERTEX 5 1C2F 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16961.93 20 80711.23 30 236.65 70 32 0 SEQEND 5 1C30 330 1C1A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 1C31 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1C32 330 1C31 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16942.65 20 80692.05 30 238.5299999999999 70 32 0 VERTEX 5 1C33 330 1C31 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16937.06 20 80687.63999999999 30 240.1899999999999 70 32 0 VERTEX 5 1C34 330 1C31 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16934.45999999999 20 80683.27 30 238.3399999999999 70 32 0 SEQEND 5 1C35 330 1C31 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 1C36 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1C37 330 1C36 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16942.65 20 80692.05 30 238.35 70 32 0 VERTEX 5 1C38 330 1C36 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16945.06 20 80693.95 30 242.91 70 32 0 SEQEND 5 1C39 330 1C36 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 1C3A 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1C3B 330 1C3A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16959.12 20 80706.08999999999 30 236.7599999999999 70 32 0 VERTEX 5 1C3C 330 1C3A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16959.11 20 80706.08999999999 30 236.94 70 32 0 SEQEND 5 1C3D 330 1C3A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 1C3E 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1C3F 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17261.16 20 80923.47 30 186.7899999999999 70 32 0 VERTEX 5 1C40 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17258.2 20 80924.58999999999 30 187.2899999999999 70 32 0 VERTEX 5 1C41 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17254.11999999999 20 80923.77 30 187.88 70 32 0 VERTEX 5 1C42 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17246.18 20 80921.13000000001 30 189.13 70 32 0 VERTEX 5 1C43 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17243.27 20 80920.88999999999 30 188.93 70 32 0 VERTEX 5 1C44 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17239.74 20 80921.95 30 189.78 70 32 0 VERTEX 5 1C45 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17229.58 20 80919.34 30 190.88 70 32 0 VERTEX 5 1C46 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17221.75999999999 20 80917.56 30 191.58 70 32 0 VERTEX 5 1C47 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17220.98 20 80914.47999999999 30 190.68 70 32 0 VERTEX 5 1C48 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17219.49 20 80911.31 30 190.7899999999999 70 32 0 VERTEX 5 1C49 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17213.83 20 80905.67999999999 30 191.21 70 32 0 VERTEX 5 1C4A 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17213.22 20 80905.86999999999 30 191.75 70 32 0 VERTEX 5 1C4B 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17208.93999999999 20 80905.19999999999 30 192.1999999999999 70 32 0 VERTEX 5 1C4C 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17204.9 20 80906.45 30 193.1 70 32 0 VERTEX 5 1C4D 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17199.66 20 80908.38000000001 30 193.1 70 32 0 VERTEX 5 1C4E 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17197.93 20 80908.09 30 192.53 70 32 0 VERTEX 5 1C4F 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17194.16999999999 20 80907.7 30 192.9299999999999 70 32 0 VERTEX 5 1C50 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17190.95999999999 20 80906.97 30 192.75 70 32 0 VERTEX 5 1C51 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17190.34999999999 20 80904.27 30 194.42 70 32 0 VERTEX 5 1C52 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17188.84 20 80901.06 30 194.9099999999999 70 32 0 VERTEX 5 1C53 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17184.36 20 80899.69999999999 30 194.9099999999999 70 32 0 VERTEX 5 1C54 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17180.93 20 80899.04999999999 30 195.34 70 32 0 VERTEX 5 1C55 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17179.47 20 80899.0 30 196.49 70 32 0 VERTEX 5 1C56 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17173.22 20 80898.09 30 197.72 70 32 0 VERTEX 5 1C57 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17169.50999999999 20 80897.24 30 201.65 70 32 0 SEQEND 5 1C58 330 1C3E 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 1C59 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1C5A 330 1C59 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17154.15 20 80880.10999999999 30 232.5099999999999 70 32 0 VERTEX 5 1C5B 330 1C59 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17171.91 20 80893.91 30 228.15 70 32 0 SEQEND 5 1C5C 330 1C59 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 1C74 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1C75 330 1C74 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17221.75999999999 20 80917.56 30 191.58 70 32 0 VERTEX 5 1C76 330 1C74 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17219.45999999999 20 80916.57000000001 30 191.84 70 32 0 VERTEX 5 1C77 330 1C74 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17214.74 20 80917.08 30 191.9299999999999 70 32 0 VERTEX 5 1C78 330 1C74 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17214.2 20 80918.7 30 192.3499999999999 70 32 0 VERTEX 5 1C79 330 1C74 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17211.18999999999 20 80921.56000000001 30 194.8499999999999 70 32 0 SEQEND 5 1C7A 330 1C74 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 1C7B 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1C7C 330 1C7B 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17214.2 20 80918.7 30 192.3499999999999 70 32 0 VERTEX 5 1C7D 330 1C7B 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17219.25999999999 20 80920.98 30 195.8199999999999 70 32 0 SEQEND 5 1C7E 330 1C7B 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 1C7F 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1C80 330 1C7F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17188.84 20 80901.06 30 194.9099999999999 70 32 0 VERTEX 5 1C81 330 1C7F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17201.13999999999 20 80900.58 30 197.08 70 32 0 VERTEX 5 1C82 330 1C7F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17203.68999999999 20 80900.44999999999 30 196.99 70 32 0 VERTEX 5 1C83 330 1C7F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17210.33 20 80901.89 30 198.69 70 32 0 SEQEND 5 1C84 330 1C7F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 1C85 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 1C86 330 1C85 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17190.95999999999 20 80906.97 30 192.75 70 32 0 VERTEX 5 1C87 330 1C85 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17184.68 20 80905.17 30 194.9699999999999 70 32 0 SEQEND 5 1C88 330 1C85 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 282B 330 19 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 282C 330 282B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16845.34999999999 20 80607.41 30 210.0999999999999 70 32 0 VERTEX 5 282E 330 282B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16842.45 20 80604.54 30 209.2 70 32 0 VERTEX 5 282F 330 282B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16840.64 20 80605.02000000001 30 209.2 70 32 0 VERTEX 5 2830 330 282B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16834.96 20 80599.48 30 209.3399999999999 70 32 0 VERTEX 5 2831 330 282B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16827.63 20 80590.67 30 210.34 70 32 0 VERTEX 5 2832 330 282B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16816.56 20 80588.47 30 210.93 70 32 0 VERTEX 5 2833 330 282B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16805.87 20 80573.61999999999 30 211.2499999999999 70 32 0 VERTEX 5 2834 330 282B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16801.47999999999 20 80567.94 30 213.7299999999999 70 32 0 VERTEX 5 2835 330 282B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16795.66999999999 20 80563.67999999999 30 213.98 70 32 0 VERTEX 5 2836 330 282B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16782.9 20 80555.93 30 212.67 70 32 0 VERTEX 5 2837 330 282B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16770.50999999999 20 80552.32000000001 30 212.9 70 32 0 VERTEX 5 2838 330 282B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16767.54 20 80553.95 30 212.6599999999999 70 32 0 VERTEX 5 2839 330 282B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16761.4 20 80548.38 30 212.3699999999999 70 32 0 SEQEND 5 283A 330 282B 100 AcDbEntity 8 S_L full moon 48 2.0 0 POLYLINE 5 283B 330 19 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 283C 330 283B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16795.66999999999 20 80563.67999999999 30 213.98 70 32 0 VERTEX 5 283D 330 283B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16798.91999999999 20 80562.32000000001 30 211.5099999999999 70 32 0 VERTEX 5 283E 330 283B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16802.26 20 80560.98 30 209.35 70 32 0 VERTEX 5 283F 330 283B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16805.4 20 80560.1 30 207.83 70 32 0 VERTEX 5 2840 330 283B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16809.06 20 80562.69 30 207.4399999999999 70 32 0 VERTEX 5 2841 330 283B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16829.15 20 80567.79 30 205.62 70 32 0 VERTEX 5 2842 330 283B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16836.06 20 80567.03 30 204.77 70 32 0 VERTEX 5 2843 330 283B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16844.96 20 80561.94000000001 30 203.8699999999999 70 32 0 VERTEX 5 2844 330 283B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16850.24 20 80564.77 30 203.4499999999999 70 32 0 VERTEX 5 2845 330 283B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16855.65 20 80564.32 30 202.59 70 32 0 SEQEND 5 2846 330 283B 100 AcDbEntity 8 S_L full moon 48 2.0 0 POLYLINE 5 2847 330 19 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 2848 330 2847 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16850.24 20 80564.77 30 203.4499999999999 70 32 0 VERTEX 5 2849 330 2847 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16857.81 20 80566.98 30 203.8699999999999 70 32 0 SEQEND 5 284A 330 2847 100 AcDbEntity 8 S_L full moon 48 2.0 0 POLYLINE 5 284B 330 19 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 284C 330 284B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16770.50999999999 20 80552.32000000001 30 212.9 70 32 0 VERTEX 5 284D 330 284B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16775.66 20 80549.61 30 211.06 70 32 0 VERTEX 5 284E 330 284B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16779.29999999999 20 80540.26 30 208.3699999999999 70 32 0 VERTEX 5 284F 330 284B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16780.17999999999 20 80528.41 30 207.96 70 32 0 VERTEX 5 2850 330 284B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16778.84 20 80522.49000000001 30 209.1399999999999 70 32 0 VERTEX 5 2851 330 284B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16777.75 20 80518.61 30 207.1699999999999 70 32 0 VERTEX 5 2852 330 284B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16778.83 20 80511.94999999999 30 206.0999999999999 70 32 0 VERTEX 5 2853 330 284B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16781.16999999999 20 80495.82 30 204.96 70 32 0 VERTEX 5 2854 330 284B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16783.95 20 80481.2 30 203.92 70 32 0 VERTEX 5 2855 330 284B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16788.43 20 80463.55 30 202.17 70 32 0 VERTEX 5 2856 330 284B 100 AcDbEntity 8 S_L full moon 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16789.86 20 80454.69999999999 30 202.17 70 32 0 SEQEND 5 2857 330 284B 100 AcDbEntity 8 S_L full moon 48 2.0 0 POLYLINE 5 2900 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 2901 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16804.72 20 80434.38 30 223.11 70 32 0 VERTEX 5 2902 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16804.72 20 80434.38 30 223.11 70 32 0 VERTEX 5 2903 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16799.4 20 80425.77000000001 30 222.7599999999999 70 32 0 VERTEX 5 2904 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16819.92 20 80413.11 30 218.5099999999999 70 32 0 VERTEX 5 2905 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16821.49 20 80403.59000000002 30 218.8499999999999 70 32 0 VERTEX 5 2906 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16831.3 20 80393.20000000001 30 215.28 70 32 0 VERTEX 5 2907 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16834.25 20 80390.47 30 214.3899999999999 70 32 0 VERTEX 5 2908 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16837.43 20 80388.73 30 214.58 70 32 0 VERTEX 5 2909 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16838.79 20 80383.43000000001 30 214.58 70 32 0 VERTEX 5 290A 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16839.28 20 80377.59000000001 30 212.68 70 32 0 VERTEX 5 290B 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16837.15 20 80378.06000000001 30 212.09 70 32 0 VERTEX 5 290C 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16835.13 20 80374.50000000001 30 210.5199999999999 70 32 0 VERTEX 5 290D 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16830.37 20 80362.52000000001 30 209.62 70 32 0 VERTEX 5 290E 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16815.41 20 80345.41 30 210.0099999999999 70 32 0 VERTEX 5 290F 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16810.62 20 80337.34 30 209.36 70 32 0 VERTEX 5 2910 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16808.18 20 80333.87000000001 30 208.9799999999999 70 32 0 VERTEX 5 2911 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16800.41 20 80328.76000000001 30 209.6299999999999 70 32 0 VERTEX 5 2912 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16797.15 20 80329.74000000001 30 210.3 70 32 0 VERTEX 5 2913 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16792.67 20 80326.32000000001 30 210.0 70 32 0 VERTEX 5 2914 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16785.51 20 80314.71000000001 30 209.8799999999999 70 32 0 VERTEX 5 2915 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16777.15 20 80311.02 30 211.66 70 32 0 VERTEX 5 2916 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16765.32 20 80303.52 30 211.7799999999999 70 32 0 VERTEX 5 2917 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16759.11 20 80294.55 30 212.0699999999999 70 32 0 VERTEX 5 2918 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16739.49 20 80282.37 30 214.09 70 32 0 SEQEND 5 2919 330 2900 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 LINE 5 2921 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbLine 10 16801.71 20 80436.56000000002 30 223.11 11 16804.72 21 80434.38 31 223.11 0 POLYLINE 5 2932 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 2933 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16871.41 20 80624.77000000001 30 219.9199999999999 70 32 0 VERTEX 5 2934 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16875.41999999999 20 80625.50999999999 30 219.4999999999999 70 32 0 VERTEX 5 2935 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16880.53 20 80627.3 30 218.5599999999999 70 32 0 VERTEX 5 2936 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16885.31 20 80629.16000000001 30 217.49 70 32 0 VERTEX 5 2937 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16890.27999999999 20 80629.72999999999 30 216.08 70 32 0 VERTEX 5 2938 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16898.7 20 80626.33999999999 30 213.86 70 32 0 VERTEX 5 293A 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16908.13 20 80626.3 30 211.3799999999999 70 32 0 VERTEX 5 293B 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16908.14 20 80626.3 30 211.89 70 32 0 VERTEX 5 293C 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16908.14 20 80626.30999999999 30 211.4399999999999 70 32 0 VERTEX 5 293D 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16915.18 20 80624.66999999999 30 209.54 70 32 0 VERTEX 5 293E 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16915.62 20 80622.86999999999 30 208.8 70 32 0 VERTEX 5 293F 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16911.09999999999 20 80615.77000000001 30 208.8 70 32 0 VERTEX 5 2940 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16909.08 20 80613.34 30 209.0899999999999 70 32 0 VERTEX 5 2941 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16905.86 20 80611.08 30 209.37 70 32 0 VERTEX 5 2942 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16900.8 20 80609.25000000001 30 210.7299999999999 70 32 0 VERTEX 5 2943 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16900.33 20 80607.98 30 211.66 70 32 0 VERTEX 5 2944 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16901.9 20 80602.83999999999 30 215.5499999999999 70 32 0 VERTEX 5 2945 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16901.63 20 80589.38000000001 30 223.9799999999999 70 32 0 VERTEX 5 2946 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16900.75999999999 20 80588.32 30 224.82 70 32 0 VERTEX 5 2947 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16900.77 20 80588.32 30 224.3199999999999 70 32 0 VERTEX 5 2948 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16896.84999999999 20 80590.48 30 225.9799999999999 70 32 0 VERTEX 5 2949 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16884.44 20 80587.73 30 229.9399999999999 70 32 0 VERTEX 5 294A 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16882.45 20 80586.85 30 230.6599999999999 70 32 0 VERTEX 5 294B 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16881.09 20 80585.09 30 231.0999999999999 70 32 0 VERTEX 5 294D 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16885.77 20 80581.7 30 229.57 70 32 0 VERTEX 5 294E 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16890.20999999999 20 80580.41000000001 30 228.0 70 32 0 VERTEX 5 294F 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16885.16 20 80570.82000000001 30 228.6 70 32 0 VERTEX 5 2950 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16881.81 20 80564.7 30 228.83 70 32 0 VERTEX 5 2951 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16889.41999999999 20 80565.02 30 229.22 70 32 0 VERTEX 5 2952 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16898.72999999999 20 80562.81 30 231.91 70 32 0 SEQEND 5 2953 330 2932 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 0 CIRCLE 5 2954 330 19 100 AcDbEntity 8 Radio Locations 48 0.5 100 AcDbCircle 10 16806.84 20 80435.4 30 279.1399999999999 40 1.08971110511666 0 LINE 5 2955 330 19 100 AcDbEntity 8 Radio Locations 48 0.5 100 AcDbLine 10 16806.10961871474 20 80436.2087109933 30 279.1399999999999 11 16807.57038128526 21 80434.59128900664 31 279.1399999999999 0 LINE 5 2956 330 19 100 AcDbEntity 8 Radio Locations 48 0.5 100 AcDbLine 10 16806.05501764875 20 80434.64417396123 30 279.1399999999999 11 16807.67161525131 21 80436.10419199538 31 279.1399999999999 0 LINE 5 2957 330 19 100 AcDbEntity 8 Radio Locations 62 3 48 2.0 100 AcDbLine 10 16898.72999999999 20 80562.81 30 231.91 11 16891.37 21 80563.99999999998 31 278.5199999999999 0 POLYLINE 5 2958 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 2959 330 2958 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16901.9 20 80602.83999999999 30 215.5499999999999 70 32 0 VERTEX 5 295A 330 2958 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16908.28 20 80593.81 30 211.08 70 32 0 VERTEX 5 295B 330 2958 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16915.95 20 80593.02999999999 30 213.8799999999999 70 32 0 SEQEND 5 295C 330 2958 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 295D 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 295E 330 295D 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16908.28 20 80593.81 30 211.08 70 32 0 VERTEX 5 295F 330 295D 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16915.42 20 80588.47999999999 30 204.61 70 32 0 SEQEND 5 2960 330 295D 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 2961 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 2962 330 2961 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16901.9 20 80602.83999999999 30 215.5499999999999 70 32 0 VERTEX 5 2963 330 2961 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16902.59 20 80590.63 30 211.81 70 32 0 VERTEX 5 2964 330 2961 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16905.94 20 80585.31 30 210.59 70 32 0 SEQEND 5 2965 330 2961 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 2966 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 2967 330 2966 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16901.9 20 80602.83999999999 30 215.5499999999999 70 32 0 VERTEX 5 2968 330 2966 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16902.59 20 80590.63 30 211.81 70 32 0 SEQEND 5 2969 330 2966 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 296A 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 296B 330 296A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16901.9 20 80602.83999999999 30 215.5499999999999 70 32 0 VERTEX 5 296C 330 296A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16902.6 20 80595.2 30 212.13 70 32 0 VERTEX 5 296D 330 296A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16891.14 20 80605.79999999999 30 223.0599999999999 70 32 0 SEQEND 5 296E 330 296A 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 296F 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 2970 330 296F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16901.9 20 80602.83999999999 30 215.5499999999999 70 32 0 VERTEX 5 2971 330 296F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16893.51 20 80603.99 30 217.66 70 32 0 SEQEND 5 2972 330 296F 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 CIRCLE 5 2974 330 19 100 AcDbEntity 8 Radio Locations 48 0.5 100 AcDbCircle 10 16915.83 20 80590.46 30 277.421 40 1.08971110511666 0 LINE 5 2975 330 19 100 AcDbEntity 8 Radio Locations 48 0.5 100 AcDbLine 10 16915.09961871475 20 80591.26871099332 30 277.421 11 16916.56038128526 21 80589.65128900664 31 277.421 0 LINE 5 2976 330 19 100 AcDbEntity 8 Radio Locations 48 0.5 100 AcDbLine 10 16915.02170119873 20 80589.72999098291 30 277.421 11 16916.63829880128 21 80591.19000901707 31 277.421 0 POLYLINE 5 29C1 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 29C2 330 29C1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16898.72999999999 20 80562.81 30 231.91 70 32 0 VERTEX 5 29C3 330 29C1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16907.48 20 80561.0 30 230.6599999999999 70 32 0 VERTEX 5 29C4 330 29C1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16924.22999999999 20 80564.06 30 229.47 70 32 0 VERTEX 5 29C5 330 29C1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16938.43 20 80568.22 30 228.1699999999999 70 32 0 VERTEX 5 29C6 330 29C1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16942.2 20 80573.68 30 226.88 70 32 0 VERTEX 5 29C7 330 29C1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16942.50999999999 20 80577.42000000001 30 226.8199999999999 70 32 0 VERTEX 5 29C8 330 29C1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16948.34 20 80580.82999999999 30 226.8199999999999 70 32 0 VERTEX 5 29C9 330 29C1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16965.05999999999 20 80590.81 30 225.8 70 32 0 VERTEX 5 29CA 330 29C1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16976.56999999999 20 80609.84999999998 30 225.8 70 32 0 VERTEX 5 29CB 330 29C1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16980.59999999999 20 80634.87999999999 30 227.57 70 32 0 VERTEX 5 29CC 330 29C1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16992.46 20 80648.67999999998 30 227.57 70 32 0 VERTEX 5 29CD 330 29C1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17013.93999999999 20 80658.63 30 227.78 70 32 0 VERTEX 5 29CE 330 29C1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17019.32 20 80655.57 30 227.78 70 32 0 VERTEX 5 29CF 330 29C1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 100 AcDbVertex 100 AcDb3dPolylineVertex 10 17025.52 20 80655.07 30 228.1 70 32 0 SEQEND 5 29D0 330 29C1 100 AcDbEntity 8 S_L_JB_MAIN 48 0.5 0 POLYLINE 5 29D2 330 19 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDb3dPolyline 66 1 10 0.0 20 0.0 30 0.0 70 8 0 VERTEX 5 29D3 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16881.81 20 80564.7 30 228.83 70 32 0 VERTEX 5 29D4 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16880.45 20 80562.17999999999 30 228.5299999999999 70 32 0 VERTEX 5 29D5 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16877.74 20 80562.38 30 228.46 70 32 0 VERTEX 5 29D6 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16869.43999999999 20 80545.22999999999 30 226.8 70 32 0 VERTEX 5 29D7 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16866.36 20 80539.5 30 226.12 70 32 0 VERTEX 5 29D8 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16864.15 20 80528.94999999999 30 225.4599999999999 70 32 0 VERTEX 5 29D9 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16853.9 20 80507.31 30 223.7899999999999 70 32 0 VERTEX 5 29DA 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16851.27999999999 20 80498.94 30 222.56 70 32 0 VERTEX 5 29DB 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16847.86 20 80490.84 30 221.9399999999999 70 32 0 VERTEX 5 29DC 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16844.65 20 80482.41 30 221.6299999999999 70 32 0 VERTEX 5 29DD 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16839.02999999999 20 80476.89999999999 30 221.9 70 32 0 VERTEX 5 29DE 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16845.22 20 80465.88000000001 30 218.6399999999999 70 32 0 VERTEX 5 29DF 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16843.43 20 80463.88 30 217.74 70 32 0 VERTEX 5 29E0 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16841.84 20 80461.49000000001 30 217.3399999999999 70 32 0 VERTEX 5 29E1 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16839.72999999999 20 80460.86 30 219.12 70 32 0 VERTEX 5 29E3 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16822.53 20 80442.82 30 221.05 70 32 0 VERTEX 5 29E4 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16817.5 20 80437.72 30 221.5399999999999 70 32 0 VERTEX 5 29E5 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 100 AcDbVertex 100 AcDb3dPolylineVertex 10 16804.72 20 80434.38 30 223.11 70 32 0 SEQEND 5 29E6 330 29D2 100 AcDbEntity 8 S_L_JB_MAIN 48 2.0 0 CIRCLE 5 2A56 330 19 100 AcDbEntity 8 Radio Locations 48 0.5 100 AcDbCircle 10 16891.36999999999 20 80564.0 30 278.5199999999999 40 1.08971110511666 0 LINE 5 2A57 330 19 100 AcDbEntity 8 Radio Locations 48 0.5 100 AcDbLine 10 16890.63961871474 20 80564.80871099331 30 278.5199999999999 11 16892.10038128526 21 80563.19128900664 31 278.5199999999999 0 LINE 5 2A58 330 19 100 AcDbEntity 8 Radio Locations 48 0.5 100 AcDbLine 10 16890.56170119872 20 80563.2699909829 30 278.5199999999999 11 16892.17829880128 21 80564.73000901705 31 278.5199999999999 0 CIRCLE 5 2A6F 330 19 100 AcDbEntity 8 Radio Locations 48 0.5 100 AcDbCircle 10 16784.18 20 80472.3 30 284.48 40 1.08971110511666 0 LINE 5 2A70 330 19 100 AcDbEntity 8 Radio Locations 48 0.5 100 AcDbLine 10 16783.44961871474 20 80473.10871099332 30 284.48 11 16784.91038128526 21 80471.49128900665 31 284.48 0 LINE 5 2A71 330 19 100 AcDbEntity 8 Radio Locations 48 0.5 100 AcDbLine 10 16783.37170119872 20 80471.56999098289 30 284.48 11 16784.98829880128 21 80473.03000901706 31 284.48 0 LINE 5 2A72 330 19 100 AcDbEntity 8 Radio Locations 62 3 48 2.0 100 AcDbLine 10 16784.18 20 80472.3 30 284.48 11 16788.43 21 80463.55 31 202.17 0 CIRCLE 5 2A73 330 19 100 AcDbEntity 8 Radio Locations 48 0.5 100 AcDbCircle 10 16791.36999999999 20 80573.39 30 288.99 40 1.08971110511666 0 LINE 5 2A74 330 19 100 AcDbEntity 8 Radio Locations 48 0.5 100 AcDbLine 10 16790.63961871474 20 80574.1987109933 30 288.99 11 16792.10038128526 21 80572.58128900665 31 288.99 0 LINE 5 2A75 330 19 100 AcDbEntity 8 Radio Locations 48 0.5 100 AcDbLine 10 16790.56170119872 20 80572.65999098289 30 288.99 11 16792.17829880128 21 80574.12000901706 31 288.99 0 LINE 5 2A76 330 19 100 AcDbEntity 8 Radio Locations 62 3 48 2.0 100 AcDbLine 10 16791.36999999999 20 80573.39 30 288.99 11 16795.66999999999 21 80563.67999999999 31 213.98 0 LINE 5 2A9E 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16739.49 20 80282.37 30 214.09 11 16744.39335211381 21 80286.06494084446 31 214.9528732259524 0 LINE 5 2A9F 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16739.49 20 80282.37 30 214.09 11 16739.63827904932 21 80273.87509895362 31 213.0467984204519 0 LINE 5 2AA0 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16739.63827904932 20 80273.87509895362 30 213.0467984204519 11 16738.90313240106 21 80272.86325639805 31 212.3535206634997 0 LINE 5 2AA1 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16738.90313240106 20 80272.86325639805 30 212.3535206634997 11 16737.11131583209 21 80271.1923604159 31 212.3535206634997 0 LINE 5 2AA2 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16737.11131583209 20 80271.1923604159 30 212.3535206634997 11 16736.25297602157 21 80268.83409116827 31 212.309715123342 0 LINE 5 2AA3 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16736.25297602157 20 80268.83409116827 30 212.309715123342 11 16736.04445779801 21 80267.65152555794 31 211.8962435671814 0 LINE 5 2AA4 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16736.04445779801 20 80267.65152555794 30 211.8962435671814 11 16735.87084224692 21 80264.33874349649 31 211.6060149438318 0 LINE 5 2AA5 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16735.87084224692 20 80264.33874349649 30 211.6060149438318 11 16735.78212001161 21 80263.06995641981 31 211.2171605765505 0 LINE 5 2AA6 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16735.78212001161 20 80263.06995641981 30 211.2171605765505 11 16733.5950246209 21 80261.48093860564 31 211.0281205327039 0 LINE 5 2AA7 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16733.5950246209 20 80261.48093860564 30 211.0281205327039 11 16733.76272820755 21 80259.08266558282 31 210.8600074309806 0 LINE 5 2AA8 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16733.76272820755 20 80259.08266558282 30 210.8600074309806 11 16733.48503344182 21 80255.90859988627 31 210.1244174832761 0 LINE 5 2AA9 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16733.48503344182 20 80255.90859988627 30 210.1244174832761 11 16733.27453651642 21 80254.71481250013 31 209.6832114983861 0 LINE 5 2AAA 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16733.27453651642 20 80254.71481250013 30 209.6832114983861 11 16736.41456464869 21 80246.94297015061 31 207.2796537556618 0 LINE 5 2AAE 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16736.41456464869 20 80246.94297015061 30 207.2796537556618 11 16737.50444862871 21 80244.3753643978 31 207.0356176759684 0 LINE 5 2AAF 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16737.50444862871 20 80244.3753643978 30 207.0356176759684 11 16739.82332039736 21 80240.66439383799 31 206.5756924375907 0 LINE 5 2AB0 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16739.82332039736 20 80240.66439383799 30 206.5756924375907 11 16742.07266872923 21 80235.3652612488 31 205.8688502458408 0 LINE 5 2AB1 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16742.07266872923 20 80235.3652612488 30 205.8688502458408 11 16745.13569773029 21 80236.18599739604 31 205.3097031137533 0 LINE 5 2AB2 330 19 100 AcDbEntity 8 S_L Bens R 6 ACAD_ISO07W100 62 3 48 2.0 100 AcDbLine 10 16745.13569773029 20 80236.18599739604 30 205.3097031137533 11 16746.82335618787 21 80237.16036746082 31 204.8598010050656 0 LINE 5 2AB6 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16739.82332039736 20 80240.66439383799 30 206.5756924375907 11 16741.25506903629 21 80235.98135505338 31 206.4046849037485 0 LINE 5 2AB7 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16741.25506903629 20 80235.98135505338 30 206.4046849037485 11 16737.67786991042 21 80233.4297637144 31 206.1744066962795 0 LINE 5 2AB8 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16737.67786991042 20 80233.4297637144 30 206.1744066962795 11 16725.17074668713 21 80225.30754292414 31 207.4791281652119 0 LINE 5 2AB9 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16725.17074668713 20 80225.30754292414 30 207.4791281652119 11 16719.58969560312 21 80223.81210479327 31 207.9846314731483 0 LINE 5 2ABA 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16719.58969560312 20 80223.81210479327 30 207.9846314731483 11 16714.02813157626 21 80214.55610789358 31 208.173117462671 0 LINE 5 2ABB 330 19 100 AcDbEntity 8 S_L Bens R 62 3 48 2.0 100 AcDbLine 10 16714.02813157626 20 80214.55610789358 30 208.173117462671 11 16712.98488327747 21 80209.64801053541 31 207.822242399738 0 INSERT 5 2AC9 330 19 100 AcDbEntity 8 S_L_JT_MadGil 62 1 48 2.0 100 AcDbBlockReference 2 AVE_RENDER 10 0.0 20 0.0 30 0.0 1001 AVE_RENDER 1002 { 1070 7 1000 Pref 1070 30 1070 20 1070 1 1070 0 1000 1070 10 1070 1 1070 10 1040 1.0 1070 1 1040 0.3 1040 0.7 1040 0.0 1040 10.0 1010 -1.0 1020 -1.0 1030 -1.0 1040 0.3 1070 49 1070 0 1070 0 1010 1.0 1020 1.0 1030 1.0 1040 45.0 1070 1 1070 0 1000 WCS 1040 0.0 1070 0 1040 10.0 1002 } 0 INSERT 5 2ACA 330 19 100 AcDbEntity 8 S_L_JT_MadGil 62 3 48 2.0 100 AcDbBlockReference 2 AVE_RENDER 10 0.0 20 0.0 30 0.0 1001 AVE_RENDER 1002 { 1070 0 1000 Full Opt 1070 0 1070 1 1070 1 1070 1 1070 0 1070 0 1070 0 1070 1 1070 1 1040 0.0001 1040 0.0001 1002 } 0 INSERT 5 2ACB 330 19 100 AcDbEntity 8 S_L_JT_MadGil 62 4 48 2.0 100 AcDbBlockReference 2 AVE_RENDER 10 0.0 20 0.0 30 0.0 1001 AVE_RENDER 1002 { 1070 0 1000 Quick Opt 1070 0 1070 1 1070 1 1070 1 1070 0 1070 0 1070 1 1002 } 0 INSERT 5 2ACC 330 19 100 AcDbEntity 8 S_L_JT_MadGil 62 5 48 2.0 100 AcDbBlockReference 2 AVE_RENDER 10 0.0 20 0.0 30 0.0 1001 AVE_RENDER 1002 { 1070 1 1000 Scanl Opt 1070 2 1070 0 1070 2 1040 2.0 1040 4.0 1070 0 1070 1 1070 0 1040 0.03 1002 } 0 INSERT 5 2ACD 330 19 100 AcDbEntity 8 S_L_JT_MadGil 62 6 48 2.0 100 AcDbBlockReference 2 AVE_RENDER 10 0.0 20 0.0 30 0.0 1001 AVE_RENDER 1002 { 1070 2 1000 Raytr Opt 1070 2 1070 0 1070 2 1040 2.0 1040 4.0 1070 0 1070 1 1070 1 1040 0.03 1070 3 1040 0.03 1002 } 0 INSERT 5 2ACE 330 19 100 AcDbEntity 8 S_L_JT_MadGil 62 7 48 2.0 100 AcDbBlockReference 2 AVE_RENDER 10 0.0 20 0.0 30 0.0 1001 AVE_RENDER 1002 { 1070 0 1000 RFile Opt 1070 1 1070 640 1070 480 1070 10000 1070 1 1070 8 1070 8 1070 0 1070 0 1070 0 1070 0 1070 0 1070 0 1070 0 1002 } 0 INSERT 5 2ACF 330 19 100 AcDbEntity 8 S_L_JT_MadGil 62 8 48 2.0 100 AcDbBlockReference 2 AVE_RENDER 10 0.0 20 0.0 30 0.0 1001 AVE_RENDER 1002 { 1070 0 1000 Fog Opt 1070 0 1070 0 1040 0.0 1040 1.0 1040 0.0 1040 1.0 1010 0.5 1020 0.5 1030 0.5 1002 } 0 INSERT 5 2AD0 330 19 100 AcDbEntity 8 S_L_JT_MadGil 62 9 48 2.0 100 AcDbBlockReference 2 AVE_RENDER 10 0.0 20 0.0 30 0.0 1001 AVE_RENDER 1002 { 1070 0 1000 BG Opt 1070 0 1070 1 1010 0.0 1020 0.0 1030 0.0 1010 1.0 1020 0.0 1030 0.0 1010 0.0 1020 1.0 1030 0.0 1010 0.0 1020 0.0 1030 1.0 1040 0.5 1040 0.33 1040 0.0 1000 1070 1 1000 1070 1 1070 1 1040 1.0 1040 1.0 1040 0.0 1040 0.0 1070 0 1002 } 0 INSERT 5 2AD7 330 19 100 AcDbEntity 8 S_L_JT_MadGil 62 1 48 2.0 100 AcDbBlockReference 2 AVE_GLOBAL 10 0.0 20 0.0 30 0.0 1001 AVE_MATERIAL 1002 { 1000 *GLOBAL* 1000 2 1000 Global finish. 1002 { 1002 } 1002 { 1070 63 1002 { 1002 { 1010 -1.0 1020 -1.0 1030 -1.0 1002 } 1040 0.1000000014901161 1000 1040 0.0 1002 { 1002 } 1040 0.0 1002 { 1002 } 1040 0.0 1002 } 1002 { 1002 { 1010 -1.0 1020 -1.0 1030 -1.0 1002 } 1040 0.6999999880790711 1000 1040 0.0 1002 { 1002 } 1040 0.0 1002 { 1002 } 1040 0.0 1002 } 1002 { 1002 { 1010 -1.0 1020 -1.0 1030 -1.0 1002 } 1040 0.2000000029802322 1000 1040 0.0 1002 { 1002 } 1040 0.0 1002 { 1002 } 1040 0.0 1002 } 1002 { 1070 0 1002 { 1070 1 1002 { 1040 1.0 1040 1.0 1000 1040 0.0 1002 { 1002 } 1040 0.0 1002 { 1002 } 1040 0.0 1002 } 1002 } 1040 1.0 1040 0.0 1040 0.0 1002 } 1002 { 1040 1.0 1040 1.0 1000 1040 0.0 1002 { 1002 } 1040 0.0 1002 { 1002 } 1040 0.0 1002 } 1002 { 1040 0.5 1040 1.0 1000 1040 0.0 1002 { 1002 } 1040 0.0 1002 { 1002 } 1040 0.0 1002 } 1002 { 1070 0 1040 0.0 1002 { 1002 } 1040 1.0 1002 { 1002 } 1040 0.0 1002 } 1002 { 1040 0.0 1002 { 1002 { 1010 0.0 1020 0.0 1030 0.0 1002 } 1040 1.0 1000 1040 0.0 1002 { 1002 } 1040 0.0 1002 { 1002 } 1040 0.0 1002 } 1002 } 1002 { 1002 { 1070 1 1002 { 1040 0.0 1040 1.0 1000 1040 0.0 1002 { 1002 } 1040 0.0 1002 { 1002 } 1040 0.0 1002 } 1002 } 1040 0.0 1002 { 1002 } 1010 1.0 1020 0.0 1030 0.0 1010 0.0 1020 1.0 1030 0.0 1010 0.0 1020 0.0 1030 1.0 1070 0 1002 } 1002 { 1002 { 1040 1.0 1040 1.0 1002 { 1070 1 1002 { 1040 1.0 1040 1.0 1000 1040 0.0 1002 { 1002 } 1040 0.0 1002 { 1002 } 1040 0.0 1002 } 1002 } 1002 } 1070 0 1040 0.0 1002 { 1002 } 1002 } 1002 { 1002 } 1002 } 1002 { 1071 3 1070 3 1070 0 1002 { 1070 2 1070 0 1070 0 1040 0.0 1002 } 1070 0 1070 2 1002 { 1002 } 1002 } 1002 { 1040 8030.0 1040 190.3000030517578 1040 0.3050000071525574 1040 228.0 1040 545.0 1040 14.0 1040 17.39999961853027 1040 0.4560000002384186 1002 } 1002 } 0 LINE 5 2AF1 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 48 2.0 100 AcDbLine 10 16933.4 20 80483.57000000001 30 188.3899999999999 11 16940.93661728342 21 80480.21448179524 31 188.9668860378639 0 LINE 5 2AF2 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 48 2.0 100 AcDbLine 10 16940.93661728342 20 80480.21448179524 30 188.9668860378639 11 16952.14401789083 21 80481.3924270654 31 186.6741547920661 0 LINE 5 2AF3 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 48 2.0 100 AcDbLine 10 16952.14401789083 20 80481.3924270654 30 186.6741547920661 11 16943.78087114754 21 80462.60849193441 31 185.416554877648 0 LINE 5 2AF4 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 48 2.0 100 AcDbLine 10 16943.78087114754 20 80462.60849193441 30 185.416554877648 11 16934.0250614916 21 80448.93135122601 31 185.416554877648 0 LINE 5 2AF5 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 48 2.0 100 AcDbLine 10 16934.0250614916 20 80448.93135122601 30 185.416554877648 11 16930.12897985779 21 80443.04501397645 31 185.2933408882008 0 LINE 5 2AF6 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 48 2.0 100 AcDbLine 10 16930.12897985779 20 80443.04501397645 30 185.2933408882008 11 16925.18561627919 21 80434.12695000899 31 185.0263360154605 0 LINE 5 2AF7 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 48 2.0 100 AcDbLine 10 16925.18561627919 20 80434.12695000899 30 185.0263360154605 11 16912.04525429228 21 80419.01069271981 31 184.8515435094281 0 LINE 5 2AF8 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 48 2.0 100 AcDbLine 10 16912.04525429228 20 80419.01069271981 30 184.8515435094281 11 16903.20931699626 21 80406.1543241773 31 184.8515435094281 0 LINE 5 2AF9 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 48 2.0 100 AcDbLine 10 16903.20931699626 20 80406.1543241773 30 184.8515435094281 11 16899.36162987423 21 80401.48670645688 31 184.9571305683736 0 LINE 5 2AFA 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 48 2.0 100 AcDbLine 10 16903.20931699626 20 80406.1543241773 30 184.8515435094281 11 16897.58451233634 21 80400.32966844281 31 185.0635767907218 0 LINE 5 2AFB 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 48 2.0 100 AcDbLine 10 16899.36162987423 20 80401.48670645688 30 184.9571305683736 11 16897.64671344321 21 80400.28590904448 31 185.1218946694021 0 LINE 5 2AFC 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 48 2.0 100 AcDbLine 10 16899.36162987423 20 80401.48670645688 30 184.9571305683736 11 16899.69845396307 21 80400.56128987849 31 184.7834823907067 0 LINE 5 2AFE 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 48 2.0 100 AcDbLine 10 16899.36162987423 20 80401.48670645688 30 184.9571305683736 11 16894.91770927528 21 80402.19055433379 31 185.0356663973414 0 LINE 5 2AFF 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 48 2.0 100 AcDbLine 10 16894.91770927528 20 80402.19055433379 30 185.0356663973414 11 16893.88727896346 21 80406.32338458177 31 185.1100136487642 0 LINE 5 2B00 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 48 2.0 100 AcDbLine 10 16893.88727896346 20 80406.32338458177 30 185.1100136487642 11 16893.10834160532 21 80409.03986197537 31 186.3095582132263 0 LINE 5 2B01 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 48 2.0 100 AcDbLine 10 16893.10834160532 20 80409.03986197537 30 186.3095582132263 11 16892.00014010565 21 80410.22826258803 31 186.5960777063767 0 LINE 5 2B0B 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 62 4 48 2.0 100 AcDbLine 10 16894.91770927528 20 80402.19055433379 30 185.0356663973414 11 16894.31068130648 21 80407.13440040317 31 185.4714451110797 0 LINE 5 2B0C 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 62 4 48 2.0 100 AcDbLine 10 16894.31068130648 20 80407.13440040317 30 185.4714451110797 11 16890.62026109573 21 80412.21382806019 31 187.1537689042461 0 LINE 5 2B0D 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 62 4 48 2.0 100 AcDbLine 10 16890.62026109573 20 80412.21382806019 30 187.1537689042461 11 16892.1150810554 21 80412.97547687205 31 189.1531449007866 0 LINE 5 2B0E 330 19 100 AcDbEntity 8 S_L_ST_Stream 6 Continuous 62 4 48 2.0 100 AcDbLine 10 16892.1150810554 20 80412.97547687205 30 189.1531449007866 11 16892.69325688921 21 80414.56400191993 31 192.7783760489332 0 LINE 5 2B11 330 19 100 AcDbEntity 8 S_L_JT_MadGil 48 2.0 100 AcDbLine 10 16802.89 20 80435.46 30 223.87 11 16798.64475709578 21 80435.90619300896 31 209.9079505629396 0 LINE 5 2B12 330 19 100 AcDbEntity 8 S_L_JT_MadGil 48 2.0 100 AcDbLine 10 16798.64475709578 20 80435.90619300896 30 209.9079505629396 11 16797.99841100332 21 80436.7334782815 31 209.9262755896988 0 LINE 5 2B13 330 19 100 AcDbEntity 8 S_L_JT_MadGil 48 2.0 100 AcDbLine 10 16797.99841100332 20 80436.7334782815 30 209.9262755896988 11 16803.72686566782 21 80436.38311098481 31 206.8747104315905 0 LINE 5 2B14 330 19 100 AcDbEntity 8 S_L_JT_MadGil 48 2.0 100 AcDbLine 10 16803.72686566782 20 80436.38311098481 30 206.8747104315905 11 16804.54506601059 21 80439.54685696446 31 211.906733839263 0 LINE 5 2B16 330 19 100 AcDbEntity 8 S_L_JT_MadGil 48 2.0 100 AcDbLine 10 16803.72686566782 20 80436.38311098481 30 206.8747104315905 11 16811.08487148462 21 80438.28602067483 31 205.1200922077083 0 LINE 5 2B18 330 19 100 AcDbEntity 8 S_L_JT_MadGil 48 2.0 100 AcDbLine 10 16811.08487148462 20 80438.28602067483 30 205.1200922077083 11 16813.5275027923 21 80442.43278575999 31 205.7964734783743 0 LINE 5 2B19 330 19 100 AcDbEntity 8 S_L_JT_MadGil 48 2.0 100 AcDbLine 10 16813.5275027923 20 80442.43278575999 30 205.7964734783743 11 16815.06486739225 21 80442.81609380533 31 205.5737965168382 0 LINE 5 2B1A 330 19 100 AcDbEntity 8 S_L_JT_MadGil 48 2.0 100 AcDbLine 10 16803.72686566782 20 80436.38311098481 30 206.8747104315905 11 16805.55079606972 21 80436.51065262302 31 205.1697145314343 0 LINE 5 2B1B 330 19 100 AcDbEntity 8 S_L_JT_MadGil 48 2.0 100 AcDbLine 10 16805.55079606972 20 80436.51065262302 30 205.1697145314343 11 16801.13629830823 21 80434.0130499602 31 204.6366193687692 0 LINE 5 2B1C 330 19 100 AcDbEntity 8 S_L_JT_MadGil 48 2.0 100 AcDbLine 10 16801.13629830823 20 80434.0130499602 30 204.6366193687692 11 16801.95694487969 21 80427.32941998728 31 203.6902422822408 0 LINE 5 2B1D 330 19 100 AcDbEntity 8 S_L_DaveA_MadGil 62 2 48 2.0 100 AcDbLine 10 16811.08487148462 20 80438.28602067483 30 205.1200922077083 11 16800.66451722331 21 80435.29803217243 31 203.9807319580909 0 LINE 5 2B1E 330 19 100 AcDbEntity 8 S_L_DaveA_MadGil 62 2 48 2.0 100 AcDbLine 10 16800.66451722331 20 80435.29803217243 30 203.9807319580909 11 16805.11330939672 21 80429.80423136748 31 200.6843095165135 0 LINE 5 2B1F 330 19 100 AcDbEntity 8 S_L_DaveA_MadGil 62 2 48 2.0 100 AcDbLine 10 16805.11330939672 20 80429.80423136748 30 200.6843095165135 11 16808.79787967502 21 80428.38985735309 31 199.2478249145457 0 LINE 5 2B20 330 19 100 AcDbEntity 8 S_L_DaveA_MadGil 62 2 48 2.0 100 AcDbLine 10 16808.79787967502 20 80428.38985735309 30 199.2478249145457 11 16809.90894890077 21 80426.61177490696 31 197.8862273270081 0 LINE 5 2B21 330 19 100 AcDbEntity 8 S_L_DaveA_MadGil 62 2 48 2.0 100 AcDbLine 10 16805.11330939672 20 80429.80423136748 30 200.6843095165135 11 16806.96414255352 21 80429.13058318982 31 200.3370131611796 0 LINE 5 2B22 330 19 100 AcDbEntity 8 S_L_DaveA_MadGil 62 2 48 2.0 100 AcDbLine 10 16806.96414255352 20 80429.13058318982 30 200.3370131611796 11 16813.07483525808 21 80434.25806318445 31 198.9304629220775 0 LINE 5 2B23 330 19 100 AcDbEntity 8 S_L_DaveA_MadGil 62 2 48 2.0 100 AcDbLine 10 16813.07483525808 20 80434.25806318445 30 198.9304629220775 11 16816.26425777514 21 80431.06864066738 31 197.2887662341142 0 LINE 5 2B24 330 19 100 AcDbEntity 8 S_L_DaveA_MadGil 62 2 48 2.0 100 AcDbLine 10 16816.26425777514 20 80431.06864066738 30 197.2887662341142 11 16819.80015462755 21 80423.12688630815 31 194.9593948281916 0 LINE 5 2B25 330 19 100 AcDbEntity 8 S_L_DaveA_MadGil 62 2 48 2.0 100 AcDbLine 10 16819.80015462755 20 80423.12688630815 30 194.9593948281916 11 16817.2351782864 21 80415.67765411722 31 193.5702094068561 0 LINE 5 2B26 330 19 100 AcDbEntity 8 S_L_DaveA_MadGil 62 2 48 2.0 100 AcDbLine 10 16817.2351782864 20 80415.67765411722 30 193.5702094068561 11 16820.56649440062 21 80409.66780075928 31 192.2345464392203 0 LINE 5 2B27 330 19 100 AcDbEntity 8 S_L_DaveA_MadGil 62 2 48 2.0 100 AcDbLine 10 16820.56649440062 20 80409.66780075928 30 192.2345464392203 11 16822.33914835604 21 80409.35523403947 31 192.2345464392203 0 LINE 5 2B28 330 19 100 AcDbEntity 8 S_L_DaveA_MadGil 62 2 48 2.0 100 AcDbLine 10 16822.33914835604 20 80409.35523403947 30 192.2345464392203 11 16830.65262351033 21 80406.81354961526 31 189.9051750332976 0 ENDSEC 0 SECTION 2 OBJECTS 0 DICTIONARY 5 C 330 0 100 AcDbDictionary 281 1 3 ACAD_GROUP 350 D 3 ACAD_LAYOUT 350 AA6 3 ACAD_MLINESTYLE 350 E 3 ACAD_PLOTSETTINGS 350 AA7 3 ACAD_PLOTSTYLENAME 350 AA4 3 ACDBVARIABLEDICTIONARY 350 932 0 DICTIONARY 5 D43 330 19 100 AcDbDictionary 280 1 281 1 3 ACAD_SORTENTS 360 D44 0 DICTIONARY 5 D 102 {ACAD_REACTORS 330 C 102 } 330 C 100 AcDbDictionary 281 1 3 *A1 350 1B8C 3 *A2 350 2276 3 *A3 350 24E0 3 *A4 350 24F6 3 *A5 350 261A 3 *A6 350 2626 3 *A7 350 281C 3 *A8 350 2825 0 DICTIONARY 5 AA6 102 {ACAD_REACTORS 330 C 102 } 330 C 100 AcDbDictionary 281 1 3 Layout1 350 AA9 3 Model 350 AA8 0 DICTIONARY 5 E 102 {ACAD_REACTORS 330 C 102 } 330 C 100 AcDbDictionary 281 1 3 STANDARD 350 1C 0 DICTIONARY 5 AA7 102 {ACAD_REACTORS 330 C 102 } 330 C 100 AcDbDictionary 281 1 0 ACDBDICTIONARYWDFLT 5 AA4 102 {ACAD_REACTORS 330 C 102 } 330 C 100 AcDbDictionary 281 1 3 Normal 350 AA5 100 AcDbDictionaryWithDefault 340 AA5 0 DICTIONARY 5 932 102 {ACAD_REACTORS 330 C 102 } 330 C 100 AcDbDictionary 281 1 3 SORTENTS 350 933 0 SORTENTSTABLE 5 D44 102 {ACAD_REACTORS 330 D43 102 } 330 D43 100 AcDbSortentsTable 330 19 331 2038 5 203B 331 2602 5 2622 331 19BF 5 19C5 331 230A 5 230B 331 40C 5 413 331 1E83 5 1E86 331 8E0 5 8E7 331 20CD 5 20D0 331 D22 5 D28 331 2474 5 2475 331 1F18 5 1F1B 331 B65 5 B6C 331 1CDB 5 1CE2 331 7B8 5 7BF 331 273C 5 273D 331 1697 5 16A8 331 239F 5 23A0 331 536 5 53D 331 1FA5 5 1FA8 331 2557 5 2558 331 84D 5 854 331 BFA 5 C15 331 227F 5 2281 331 27D1 5 27D1 331 C8F 5 C97 331 192C 5 1933 331 379 5 380 331 203A 5 203D 331 1E85 5 1E88 331 8E2 5 8E9 331 19C1 5 19C7 331 20CF 5 20D2 331 D24 5 D2A 331 230C 5 230D 331 40E 5 415 331 26A1 5 26A5 331 1F1A 5 1F1D 331 B67 5 B6E 331 217C 5 217F 331 273E 5 273F 331 7BA 5 7C1 331 23A1 5 23A2 331 2476 5 2477 331 538 5 53F 331 1FA7 5 1FAA 331 2559 5 255A 331 192E 5 1934 331 37B 5 382 331 27D3 5 27D3 331 84F 5 856 331 203C 5 203F 331 19C3 5 19C9 331 230E 5 230F 331 410 5 417 331 8E4 5 8EB 331 C91 5 C99 331 D26 5 D2C 331 20D1 5 20D4 331 1F1C 5 1F1F 331 217E 5 2181 331 7BC 5 7C3 331 B69 5 B70 331 2740 5 2741 331 53A 5 541 331 1FA9 5 1FAC 331 255B 5 255C 331 851 5 858 331 11B 5 173 331 1930 5 1936 331 37D 5 384 331 203E 5 2041 331 8E6 5 8ED 331 C93 5 C9B 331 19C5 5 19CB 331 2310 5 2311 331 412 5 419 331 20D3 5 20D6 331 26A5 5 26A6 331 D28 5 D2E 331 1F1E 5 1F21 331 B6B 5 B72 331 7BE 5 7C5 331 23A5 5 23A8 331 247A 5 247B 331 1CE1 5 1CE5 331 C00 5 C16 331 53C 5 543 331 1FAB 5 1FAE 331 853 5 85A 331 1932 5 1938 331 37F 5 386 331 1DF6 5 1DF9 331 255D 5 255E 331 2180 5 2183 331 2040 5 2043 331 19C7 5 19CD 331 2312 5 2313 331 414 5 41B 331 1E8B 5 1E8F 331 8E8 5 8EF 331 C95 5 C9D 331 20D5 5 20D8 331 247C 5 24AD 331 26A7 5 26AA 331 1F20 5 1F23 331 1CE3 5 1CE7 331 7C0 5 7C7 331 B6D 5 B74 331 D2A 5 D30 331 53E 5 545 331 1FAD 5 1FB0 331 255F 5 2560 331 1DF8 5 1DFB 331 855 5 85C 331 1934 5 193A 331 381 5 388 331 2042 5 2045 331 1E8D 5 1E91 331 8EA 5 8F1 331 C97 5 C9E 331 19C9 5 19CF 331 2314 5 2315 331 416 5 41D 331 20D7 5 20DA 331 1F22 5 1F25 331 B6F 5 B76 331 D2C 5 D32 331 7C2 5 7C9 331 23A9 5 23AA 331 1CE5 5 1CE9 331 1699 5 16AA 331 540 5 73C 331 1FAF 5 1FB2 331 857 5 85E 331 1936 5 1942 331 383 5 38A 331 1DFA 5 1DFD 331 2561 5 2562 331 2281 5 2283 331 2044 5 2047 331 19CB 5 19D1 331 2316 5 2317 331 418 5 41F 331 1E8F 5 1E92 331 8EC 5 8F3 331 C99 5 CA0 331 20D9 5 20DC 331 23AB 5 23AC 331 1F24 5 1F27 331 1CE7 5 1CEB 331 7C4 5 7CB 331 B71 5 B78 331 D2E 5 D34 331 169B 5 16AB 331 542 5 747 331 1FB1 5 1FB4 331 2563 5 2564 331 1DFC 5 1DFF 331 859 5 860 331 123 5 182 331 385 5 38C 331 1938 5 1944 331 2046 5 2049 331 1E91 5 1E94 331 8EE 5 8F5 331 C9B 5 CA2 331 2283 5 228B 331 19CD 5 19D3 331 41A 5 421 331 20DB 5 20DE 331 26AD 5 26AE 331 1F26 5 1F29 331 B73 5 B7A 331 D30 5 D36 331 7C6 5 7CD 331 23AD 5 23AF 331 1CE9 5 1CED 331 544 5 749 331 1FB3 5 1FB6 331 85B 5 862 331 387 5 38E 331 1DFE 5 1E01 331 2565 5 2566 331 193A 5 1946 331 2048 5 204B 331 19CF 5 19D5 331 41C 5 423 331 1E93 5 1E96 331 2622 5 2623 331 C9D 5 CA4 331 20DD 5 20E0 331 23AF 5 23B0 331 B75 5 B7C 331 D32 5 D3B 331 1CEB 5 1CEF 331 1FB5 5 1FB8 331 2567 5 2568 331 274C 5 274C 331 7C8 5 7CF 331 85D 5 864 331 1E00 5 1E03 331 204A 5 204D 331 1E95 5 1E98 331 2624 5 2625 331 C9F 5 CA6 331 389 5 390 331 41E 5 425 331 20DF 5 20E2 331 26B1 5 26B2 331 D34 5 D3D 331 19D1 5 19D7 331 B77 5 B7E 331 24AE 5 24AF 331 7CA 5 7D1 331 23B1 5 23B2 331 1CED 5 1CF1 331 1FB7 5 1FBA 331 85F 5 866 331 2569 5 256A 331 218C 5 218F 331 38B 5 392 331 1E02 5 1E05 331 1E97 5 1E9A 331 204C 5 204F 331 CA1 5 CA8 331 420 5 427 331 24B0 5 24B1 331 20E1 5 20E4 331 B79 5 B80 331 D36 5 D3F 331 19D3 5 19D9 331 1CEF 5 1CF3 331 218E 5 2191 331 7CC 5 7D3 331 1FB9 5 1FBC 331 256B 5 256C 331 C0E 5 C19 331 23B3 5 23B4 331 1E04 5 1E07 331 861 5 868 331 204E 5 2051 331 CA3 5 CAA 331 228B 5 2294 331 38D 5 394 331 1E99 5 1E9C 331 19D5 5 19DB 331 20E3 5 20E6 331 2320 5 2321 331 B7B 5 B82 331 24B2 5 24B3 331 422 5 429 331 7CE 5 7D5 331 23B5 5 23B7 331 2190 5 2194 331 1CF1 5 1CF8 331 1FBB 5 1FBE 331 256D 5 256E 331 1942 5 1948 331 38F 5 396 331 1E06 5 1E09 331 863 5 86A 331 2050 5 2053 331 CA5 5 CAC 331 424 5 42B 331 1E9B 5 1E9E 331 8F0 5 8F7 331 2322 5 2323 331 24B4 5 24B5 331 20E5 5 20E8 331 B7D 5 B84 331 D3A 5 D40 331 19D7 5 19DD 331 1F28 5 1F2B 331 1CF3 5 1CFA 331 7D0 5 7D7 331 1FBD 5 1FC0 331 256F 5 2570 331 12F 5 195 331 23B7 5 23B8 331 1E08 5 1E0B 331 865 5 86C 331 2052 5 2055 331 CA7 5 CAE 331 1944 5 194A 331 391 5 398 331 1E9D 5 1EA0 331 8F2 5 8F9 331 23F1 5 23F2 331 19D9 5 19DF 331 2324 5 2325 331 20E7 5 20EA 331 D3C 5 D42 331 269 5 2A2 331 B7F 5 B8D 331 24B6 5 24B7 331 426 5 42D 331 7D2 5 7D9 331 2194 5 2197 331 2756 5 2756 331 C14 5 C1C 331 16A9 5 16AF 331 23B9 5 23BA 331 1F2A 5 1F2D 331 1FBF 5 1FC2 331 2571 5 2572 331 1946 5 194C 331 CA9 5 CB0 331 2291 5 2295 331 393 5 39A 331 1E0A 5 1E0D 331 2054 5 2057 331 867 5 86E 331 23F3 5 23F4 331 428 5 42F 331 1E9F 5 1EA2 331 8F4 5 8FB 331 2326 5 2327 331 20E9 5 20EC 331 D3E 5 D46 331 19DB 5 19E1 331 1F2C 5 1F2F 331 B81 5 B8F 331 7D4 5 7DB 331 2196 5 2199 331 2758 5 2758 331 C16 5 C1E 331 16AB 5 16B1 331 23BB 5 23BC 331 24B8 5 24B9 331 1FC1 5 1FC4 331 2573 5 2574 331 1E0C 5 1E0F 331 869 5 870 331 2056 5 2059 331 CAB 5 CB2 331 1948 5 194E 331 395 5 39C 331 2628 5 2629 331 1EA1 5 1EA4 331 8F6 5 8FD 331 23F5 5 23F6 331 20EB 5 20EE 331 19DD 5 19E3 331 42A 5 431 331 B83 5 B91 331 24BA 5 24BB 331 7D6 5 7DD 331 23BD 5 23BE 331 275A 5 275A 331 16AD 5 16B4 331 1CF9 5 1CFD 331 1F2E 5 1F31 331 1FC3 5 1FC6 331 2575 5 2576 331 194A 5 1950 331 CAD 5 CB4 331 2295 5 2298 331 397 5 39E 331 1E0E 5 1E11 331 86B 5 872 331 C18 5 C1F 331 2058 5 205B 331 262A 5 262B 331 42C 5 433 331 1EA3 5 1EA6 331 8F8 5 8FF 331 232A 5 232B 331 1C66 5 1C74 331 20ED 5 20F0 331 26BF 5 26C1 331 19DF 5 19E5 331 1F30 5 1F33 331 1CFB 5 1CFF 331 7D8 5 7DF 331 275C 5 275C 331 16AF 5 16B6 331 23BF 5 23C0 331 24BC 5 24BD 331 1FC5 5 1FC8 331 2577 5 2578 331 C1A 5 C22 331 1E10 5 1E13 331 86D 5 874 331 1B01 5 1B06 331 CAF 5 CB6 331 194C 5 1952 331 399 5 3A0 331 205A 5 205D 331 1EA5 5 1EA8 331 8FA 5 901 331 19E1 5 19E7 331 232C 5 232D 331 42E 5 435 331 20EF 5 20F2 331 1C68 5 1C7F 331 26C1 5 26C4 331 7DA 5 7E1 331 24BE 5 24BF 331 275E 5 275E 331 16B1 5 16B8 331 1CFD 5 1D01 331 C1C 5 C25 331 1FC7 5 1FCA 331 1B03 5 1B0B 331 2579 5 257A 331 194E 5 1954 331 39B 5 3A2 331 1E12 5 1E15 331 86F 5 876 331 205C 5 205F 331 262E 5 262F 331 430 5 437 331 1EA7 5 1EAA 331 8FC 5 903 331 CB1 5 CB8 331 232E 5 232F 331 1C6A 5 1C8A 331 19E3 5 19E9 331 20F1 5 20F4 331 1F34 5 1F37 331 1CFF 5 1D03 331 7DC 5 7E3 331 16B3 5 16B9 331 24C0 5 24C1 331 2760 5 2760 331 1FC9 5 1FCC 331 257B 5 257C 331 C1E 5 C27 331 1E14 5 1E17 331 871 5 878 331 1B05 5 1B0D 331 1950 5 1956 331 39D 5 3A4 331 205E 5 2061 331 2630 5 2631 331 CB3 5 CBA 331 1EA9 5 1EAC 331 8FE 5 905 331 23FD 5 23FE 331 19E5 5 19EB 331 2330 5 2331 331 432 5 439 331 20F3 5 20F6 331 26C5 5 26C6 331 D40 5 D48 331 24C2 5 24C3 331 7DE 5 7E5 331 16B5 5 16BB 331 1D01 5 1D05 331 1F36 5 1F39 331 2198 5 219B 331 C20 5 C29 331 1FCB 5 1FCE 331 257D 5 2582 331 2762 5 2762 331 1952 5 1958 331 229D 5 229F 331 39F 5 3A6 331 1E16 5 1E19 331 873 5 87A 331 1B71 5 1B76 331 2060 5 2063 331 2632 5 2633 331 434 5 43B 331 1EAB 5 1EAE 331 900 5 907 331 CB5 5 CBC 331 2332 5 2333 331 277 5 375 331 19E7 5 19ED 331 20F5 5 20F8 331 26C7 5 26C9 331 D42 5 D4A 331 1F38 5 1F3B 331 1D03 5 1D07 331 7E0 5 7E7 331 B8D 5 B94 331 16B7 5 16BD 331 AA 5 11B 331 219A 5 219D 331 2764 5 2764 331 1FCD 5 1FD0 331 1E18 5 1E1B 331 875 5 87C 331 C22 5 C2A 331 1954 5 195A 331 229F 5 22A1 331 3A1 5 3A8 331 2062 5 2065 331 2634 5 2635 331 1EAD 5 1EB0 331 902 5 909 331 CB7 5 CBE 331 19E9 5 19EF 331 2334 5 2335 331 436 5 43D 331 1B73 5 1B78 331 20F7 5 20FA 331 26C9 5 26CD 331 B8F 5 B96 331 24C6 5 24C7 331 7E2 5 7E9 331 1D05 5 1D09 331 1F3A 5 1F3D 331 16B9 5 16BF 331 219C 5 219F 331 C24 5 C2B 331 1B0B 5 1B10 331 1FCF 5 1FD2 331 2766 5 2766 331 1956 5 195C 331 3A3 5 3AA 331 1E1A 5 1E1F 331 877 5 87E 331 22A1 5 22A3 331 1B75 5 1B7A 331 2064 5 2067 331 2636 5 2637 331 19EB 5 19F1 331 2336 5 2337 331 1EAF 5 1EB2 331 904 5 90B 331 CB9 5 CC0 331 24C8 5 24CB 331 20F9 5 20FC 331 1F3C 5 1F3F 331 1D07 5 1D0B 331 7E4 5 7EB 331 B91 5 B98 331 D46 5 D4D 331 219E 5 21A1 331 2768 5 2768 331 1FD1 5 1FD4 331 C26 5 C2D 331 16BB 5 16C1 331 1E1C 5 1E21 331 1B0D 5 1B12 331 3A5 5 3AC 331 1958 5 195E 331 22A3 5 22A5 331 2066 5 2069 331 2638 5 2639 331 906 5 90D 331 CBB 5 CC2 331 19ED 5 19F3 331 1B77 5 1B7C 331 2338 5 2339 331 20FB 5 20FE 331 26CD 5 26CE 331 B93 5 B9A 331 D48 5 D4F 331 1C74 5 1C8B 331 7E6 5 7ED 331 1F3E 5 1F41 331 16BD 5 16C3 331 1D09 5 1D0D 331 21A0 5 21A5 331 C28 5 C2F 331 145 5 19B 331 1FD3 5 1FD6 331 1B0F 5 1B14 331 3A7 5 3AE 331 2585 5 258A 331 276A 5 276A 331 22A5 5 22A7 331 1B79 5 1B7E 331 2068 5 206B 331 263A 5 263B 331 19EF 5 19F5 331 908 5 90F 331 CBD 5 CC4 331 195A 5 1960 331 20FD 5 2100 331 24CC 5 24CD 331 26CF 5 26D4 331 1F40 5 1F43 331 B95 5 B9C 331 D4A 5 D51 331 233A 5 233B 331 23D7 5 23D8 331 1D0B 5 1D0F 331 7E8 5 7EF 331 276C 5 276C 331 1FD5 5 1FD8 331 C2A 5 C31 331 16BF 5 16C5 331 1B11 5 1B16 331 1E20 5 1E23 331 195C 5 1962 331 22A7 5 22B5 331 3A9 5 3B0 331 206A 5 206D 331 263C 5 263D 331 90A 5 911 331 CBF 5 CC6 331 1B7B 5 1B81 331 19F1 5 19F7 331 20FF 5 2102 331 D4C 5 D52 331 233C 5 233D 331 B97 5 B9E 331 24CE 5 24CF 331 1F42 5 1F45 331 23D9 5 23DA 331 16C1 5 16C7 331 1D0D 5 1D11 331 21A4 5 21C5 331 C2C 5 C33 331 1B13 5 1B1A 331 1FD7 5 1FDA 331 276E 5 276E 331 7EA 5 7F1 331 3AB 5 3B2 331 1E22 5 1E25 331 1B7D 5 1B85 331 206C 5 206F 331 2413 5 2414 331 263E 5 263F 331 90C 5 913 331 CC1 5 CC8 331 195E 5 1964 331 438 5 43F 331 24D0 5 24D1 331 2101 5 2104 331 1F44 5 1F47 331 B99 5 BA0 331 D4E 5 D54 331 19F3 5 19F9 331 1D0F 5 1D13 331 7EC 5 7F3 331 2770 5 2770 331 1FD9 5 1FDC 331 C2E 5 C35 331 16C3 5 16C9 331 1B15 5 1B1C 331 23DB 5 23DC 331 1E24 5 1E27 331 879 5 880 331 1B7F 5 1B87 331 206E 5 2071 331 2640 5 2644 331 90E 5 915 331 CC3 5 CCA 331 1960 5 1966 331 3AD 5 3B4 331 19F5 5 19FB 331 2103 5 2106 331 D50 5 101F 331 2340 5 2341 331 B9B 5 BA3 331 24D2 5 24D3 331 43A 5 441 331 1EB1 5 1EB4 331 1F46 5 1F49 331 23DD 5 23DE 331 16C5 5 16CB 331 1D11 5 1D15 331 C30 5 C37 331 1B17 5 1B1E 331 1FDB 5 1FDE 331 2772 5 2772 331 7EE 5 7F5 331 1962 5 1968 331 3AF 5 3B6 331 1B81 5 1B88 331 1E26 5 1E29 331 87B 5 882 331 2070 5 2073 331 CC5 5 CCC 331 43C 5 443 331 1EB3 5 1EB6 331 910 5 917 331 19F7 5 19FE 331 24D4 5 24D5 331 2105 5 2108 331 B9D 5 BA5 331 D52 5 154E 331 2342 5 2343 331 1F48 5 1F4B 331 1D13 5 1D17 331 7F0 5 7F7 331 2774 5 2774 331 1FDD 5 1FE0 331 C32 5 C39 331 16C7 5 16CD 331 23DF 5 23E0 331 1E28 5 1E2B 331 87D 5 884 331 2072 5 2075 331 2644 5 2645 331 CC7 5 CCE 331 1964 5 196A 331 3B1 5 3B8 331 912 5 919 331 2419 5 241B 331 19F9 5 1A00 331 2107 5 210A 331 D54 5 15A0 331 2344 5 2345 331 B9F 5 BA7 331 24D6 5 24D7 331 43E 5 445 331 1EB5 5 1EB8 331 23E1 5 23E2 331 1F4A 5 1F4D 331 16C9 5 16CF 331 1D15 5 1D19 331 21C4 5 21C7 331 C34 5 C3B 331 1FDF 5 1FE2 331 2776 5 2776 331 7F2 5 7F9 331 1B1B 5 1B20 331 1966 5 196C 331 1E6 5 270 331 3B3 5 3BA 331 1E2A 5 1E2D 331 2074 5 2077 331 2646 5 2647 331 87F 5 886 331 241B 5 241C 331 440 5 447 331 1EB7 5 1EBA 331 914 5 91B 331 19FB 5 1AFE 331 26DB 5 26DD 331 2346 5 2347 331 1F4C 5 1F4F 331 BA1 5 BA9 331 1D17 5 1D1B 331 7F4 5 7FB 331 21C6 5 21C9 331 2778 5 2778 331 C36 5 C3D 331 16CB 5 16D1 331 23E3 5 23E4 331 24D8 5 24D9 331 1FE1 5 1FE4 331 258B 5 258D 331 1E2C 5 1E2F 331 881 5 888 331 1B1D 5 1B22 331 2076 5 2079 331 1968 5 196E 331 3B5 5 3BC 331 2648 5 2649 331 916 5 91D 331 26DD 5 26DE 331 2348 5 2349 331 442 5 449 331 1EB9 5 1EBC 331 BA3 5 BAA 331 24DA 5 24DB 331 23E5 5 23E6 331 1F4E 5 1F51 331 16CD 5 16D3 331 1D19 5 1D1D 331 21C8 5 21CB 331 277A 5 277A 331 7F6 5 7FD 331 1FE3 5 1FE6 331 1B1F 5 1B24 331 258D 5 258E 331 196A 5 1970 331 22B5 5 22B9 331 3B7 5 3BE 331 1E2E 5 1E31 331 883 5 88A 331 C38 5 C3F 331 241F 5 2420 331 2078 5 207B 331 444 5 44B 331 1EBB 5 1EBE 331 918 5 91F 331 19FF 5 1B02 331 26DF 5 26E1 331 234A 5 234B 331 1F50 5 1F53 331 BA5 5 BAC 331 1D1B 5 1D1F 331 7F8 5 7FF 331 21CA 5 21CD 331 277C 5 277C 331 16CF 5 16D5 331 23E7 5 23E8 331 24DC 5 24DD 331 1FE5 5 1FE8 331 C3A 5 C41 331 1E30 5 1E33 331 885 5 88D 331 1B21 5 1B26 331 196C 5 1972 331 3B9 5 3C0 331 207A 5 207D 331 91A 5 921 331 234C 5 234D 331 291 5 378 331 446 5 44D 331 1EBD 5 1EC0 331 BA7 5 BAE 331 24DE 5 24DF 331 23E9 5 23EA 331 1F52 5 1F55 331 26E1 5 26E2 331 16D1 5 16D7 331 1D1D 5 1D22 331 21CC 5 21CF 331 277E 5 277E 331 7FA 5 801 331 1B23 5 1B28 331 1FE7 5 1FEA 331 196E 5 1974 331 22B9 5 22BB 331 3BB 5 3C2 331 1E32 5 1E35 331 887 5 88F 331 C3C 5 C43 331 207C 5 207F 331 264E 5 264F 331 448 5 44F 331 1EBF 5 1EC2 331 91C 5 923 331 CC9 5 CD0 331 D9E 5 15A1 331 234E 5 234F 331 2109 5 210C 331 26E3 5 26E4 331 1F54 5 1F57 331 BA9 5 BB0 331 1D1F 5 1D24 331 7FC 5 803 331 21CE 5 21D1 331 16D3 5 16D9 331 23EB 5 23EC 331 2780 5 2780 331 1FE9 5 1FEC 331 C3E 5 C45 331 1E34 5 1E37 331 889 5 891 331 1B25 5 1B2A 331 1970 5 1976 331 22BB 5 22BD 331 3BD 5 3C4 331 207E 5 2081 331 1EC1 5 1EC4 331 91E 5 925 331 CCB 5 CD2 331 2350 5 2353 331 44A 5 451 331 210B 5 210E 331 BAB 5 BB2 331 24E2 5 24E3 331 23ED 5 23EE 331 1F56 5 1F59 331 26E5 5 26E7 331 16D5 5 16DB 331 1D21 5 1D27 331 7FE 5 805 331 21D0 5 21D6 331 2782 5 2782 331 1B27 5 1B2E 331 1FEB 5 1FEE 331 1972 5 1978 331 22BD 5 22C1 331 3BF 5 3C6 331 1E36 5 1E39 331 88B 5 893 331 C40 5 C47 331 2080 5 2083 331 2652 5 2653 331 297 5 379 331 44C 5 453 331 1EC3 5 1EC6 331 920 5 927 331 CCD 5 CD4 331 210D 5 2110 331 26E7 5 26E8 331 1F58 5 1F5B 331 BAD 5 BB4 331 1D23 5 1D2B 331 16D7 5 16DD 331 23EF 5 23F0 331 24E4 5 24E5 331 21D2 5 21DC 331 2784 5 2784 331 1FED 5 1FF0 331 C42 5 C49 331 88D 5 894 331 1974 5 197A 331 1B29 5 1B31 331 2082 5 2085 331 2654 5 265F 331 1EC5 5 1EC8 331 922 5 929 331 CCF 5 CD6 331 1F4 5 277 331 2354 5 2355 331 44E 5 455 331 1C90 5 1C94 331 210F 5 2112 331 BAF 5 BB6 331 24E6 5 24E7 331 1F5A 5 1F5D 331 26E9 5 26EA 331 16D9 5 16DF 331 159 5 1B5 331 2786 5 2786 331 1B2B 5 1B34 331 1FEF 5 1FF2 331 1976 5 197C 331 88F 5 896 331 C44 5 C4B 331 242B 5 242E 331 2084 5 2087 331 450 5 457 331 1EC7 5 1ECA 331 924 5 92B 331 CD1 5 CD8 331 22C1 5 22C3 331 2356 5 2357 331 1C92 5 1C96 331 2111 5 2114 331 26EB 5 26EC 331 1D27 5 1D2E 331 1F5C 5 1F5F 331 BB1 5 BB8 331 24E8 5 24E9 331 21D6 5 21DD 331 2788 5 2788 331 1FF1 5 1FF4 331 891 5 898 331 C46 5 C4D 331 16DB 5 16E1 331 1978 5 197E 331 2086 5 2089 331 1EC9 5 1ECC 331 926 5 92E 331 CD3 5 CDA 331 22C3 5 22C5 331 452 5 459 331 2358 5 2359 331 1C94 5 1C98 331 2113 5 2116 331 D0 5 12F 331 BB3 5 BBA 331 24EA 5 24EB 331 1F5E 5 1F61 331 26ED 5 26EE 331 16DD 5 16E4 331 21D8 5 21DE 331 278A 5 278A 331 1FF3 5 1FF6 331 25AD 5 25B3 331 893 5 89A 331 C48 5 C4F 331 197A 5 1980 331 242F 5 2432 331 2088 5 208B 331 454 5 45B 331 1ECB 5 1ECE 331 928 5 981 331 CD5 5 CDC 331 22C5 5 22C7 331 1C96 5 1C9A 331 2115 5 2118 331 26EF 5 26F0 331 235A 5 235B 331 1F60 5 1F63 331 BB5 5 BBC 331 24EC 5 24ED 331 1D2B 5 1D30 331 800 5 807 331 278C 5 278C 331 C4A 5 C51 331 16DF 5 16E6 331 895 5 89C 331 1B31 5 1B37 331 1E38 5 1E3B 331 197C 5 1982 331 208A 5 208D 331 1ECD 5 1ED0 331 92A 5 A09 331 CD7 5 CDE 331 22C7 5 22C9 331 3C1 5 3C8 331 456 5 485 331 235C 5 235D 331 1C98 5 1C9C 331 2117 5 211A 331 BB7 5 BBE 331 24EE 5 24EF 331 1F62 5 1F65 331 26F1 5 26F2 331 16E1 5 16E8 331 21DC 5 21E0 331 278E 5 278E 331 802 5 809 331 1B33 5 1B38 331 1FF7 5 1FFA 331 897 5 89E 331 C4C 5 C53 331 3C3 5 3CA 331 1E3A 5 1E3D 331 197E 5 1984 331 2433 5 243E 331 208C 5 208F 331 1ECF 5 1ED2 331 92C 5 B56 331 CD9 5 CE0 331 22C9 5 22CB 331 458 5 4FE 331 1C9A 5 1C9E 331 2119 5 211C 331 26F3 5 26F4 331 154E 5 15A4 331 235E 5 235F 331 1F64 5 1F67 331 BB9 5 BC0 331 24F0 5 24F1 331 1D2F 5 1D35 331 21DE 5 21E2 331 2790 5 2790 331 804 5 80B 331 1FF9 5 1FFC 331 25B3 5 25B4 331 C4E 5 C55 331 1B35 5 1B3A 331 1E3C 5 1E3F 331 899 5 8A0 331 1980 5 1986 331 208E 5 2091 331 92E 5 B5A 331 CDB 5 CE2 331 22CB 5 22CD 331 3C5 5 3CC 331 2360 5 2361 331 45A 5 500 331 1C9C 5 1CA0 331 1ED1 5 1ED4 331 211B 5 211E 331 BBB 5 BC2 331 24F2 5 24F3 331 1F66 5 1F69 331 26F5 5 26F6 331 2510 5 2511 331 16E5 5 16EB 331 1D31 5 1D37 331 21E0 5 21E4 331 1FFB 5 1FFE 331 1B37 5 1B3C 331 25B5 5 25B6 331 2792 5 2792 331 806 5 80D 331 3C7 5 3CE 331 1E3E 5 1E41 331 89B 5 8A2 331 1982 5 1988 331 2662 5 2666 331 CDD 5 CE4 331 22CD 5 22CF 331 45C 5 502 331 1ED3 5 1ED6 331 1C9E 5 1CA2 331 211D 5 2120 331 26F7 5 26F8 331 2362 5 2363 331 BBD 5 BC4 331 24F4 5 24F5 331 1F68 5 1F6B 331 2512 5 2513 331 808 5 80F 331 21E2 5 21E6 331 1FFD 5 2000 331 25B7 5 25B8 331 2794 5 2794 331 16E7 5 16ED 331 1E40 5 1E43 331 89D 5 8A4 331 1B39 5 1B3E 331 1984 5 198A 331 CDF 5 CE6 331 22CF 5 22D1 331 3C9 5 3D0 331 2364 5 2365 331 211F 5 2122 331 26F9 5 26FA 331 BBF 5 BC6 331 1CA0 5 1CA4 331 1ED5 5 1ED8 331 1F6A 5 1F6D 331 2514 5 2515 331 16E9 5 16EF 331 1D35 5 1D3B 331 21E4 5 21E7 331 1FFF 5 2002 331 2796 5 2796 331 80A 5 811 331 1B3B 5 1B40 331 25B9 5 25BE 331 3CB 5 3D2 331 1E42 5 1E45 331 89F 5 8A6 331 22D1 5 22D3 331 1BF5 5 1C0D 331 2666 5 266A 331 CE1 5 CE8 331 1986 5 198C 331 1ED7 5 1EDA 331 1CA2 5 1CA6 331 2121 5 2124 331 26FB 5 26FC 331 2366 5 2367 331 1F6C 5 1F6F 331 BC1 5 BC8 331 24F8 5 24F9 331 2516 5 251D 331 1D37 5 1D3F 331 80C 5 813 331 747 5 74F 331 21E6 5 21E9 331 16EB 5 16F1 331 4FD 5 504 331 2001 5 2004 331 1E44 5 1E47 331 8A1 5 8A8 331 1B3D 5 1B42 331 1988 5 198E 331 CE3 5 CEA 331 22D3 5 22DE 331 3CD 5 3D4 331 2368 5 2369 331 2123 5 2126 331 26FD 5 26FE 331 15A0 5 15A6 331 1CA4 5 1CA8 331 1ED9 5 1EDC 331 24FA 5 24FB 331 4FF 5 506 331 1F6E 5 1F71 331 16ED 5 16F3 331 1D39 5 1D40 331 749 5 751 331 21E8 5 21EB 331 80E 5 815 331 BC3 5 BCA 331 1B3F 5 1B44 331 2003 5 2006 331 3CF 5 3D6 331 1E46 5 1E49 331 8A3 5 8AA 331 C50 5 C57 331 CE5 5 CEC 331 198A 5 1990 331 2090 5 2093 331 266A 5 266B 331 1EDB 5 1EDE 331 1CA6 5 1CAA 331 2125 5 2128 331 26FF 5 2700 331 15A2 5 15A8 331 236A 5 236B 331 243F 5 2440 331 1F70 5 1F73 331 BC5 5 BCC 331 810 5 817 331 74B 5 753 331 21EA 5 21ED 331 16EF 5 16F5 331 501 5 508 331 2005 5 2008 331 25BF 5 25C0 331 C52 5 C59 331 1E48 5 1E4B 331 8A5 5 8AC 331 1B41 5 1B46 331 CE7 5 CEE 331 198C 5 1992 331 3D1 5 3D8 331 2092 5 2095 331 2441 5 2442 331 236C 5 236D 331 2127 5 212A 331 15A4 5 15AA 331 1CA8 5 1CAC 331 1EDD 5 1EE0 331 24FE 5 24FF 331 2701 5 2702 331 503 5 50A 331 1F72 5 1F75 331 16F1 5 16F7 331 74D 5 755 331 21EC 5 21EF 331 812 5 819 331 BC7 5 BCE 331 1B43 5 1B48 331 2007 5 200A 331 3D3 5 3DA 331 1E4A 5 1E4D 331 8A7 5 8AE 331 C54 5 C5B 331 198E 5 1994 331 2094 5 2097 331 CE9 5 CF0 331 1EDF 5 1EE2 331 1CAA 5 1CAE 331 15A6 5 15AC 331 236E 5 236F 331 2443 5 2444 331 2129 5 212C 331 2703 5 2704 331 1F74 5 1F77 331 BC9 5 BD0 331 2500 5 2501 331 251E 5 251F 331 1D3F 5 1D42 331 814 5 81B 331 74F 5 756 331 21EE 5 21F1 331 16F3 5 16FB 331 505 5 50C 331 2798 5 2798 331 2009 5 200C 331 C56 5 C5D 331 1E4C 5 1E4F 331 8A9 5 8B0 331 1B45 5 1B4A 331 173 5 1D1 331 3D5 5 3DC 331 2096 5 2099 331 CEB 5 CF2 331 2445 5 2446 331 1CAC 5 1CB0 331 1EE1 5 1EE4 331 15A8 5 15AE 331 212B 5 212E 331 2502 5 2503 331 2705 5 2706 331 507 5 50E 331 1F76 5 1F79 331 16F5 5 16FD 331 816 5 81D 331 BCB 5 BD2 331 751 5 758 331 21F0 5 21F3 331 279A 5 279A 331 1B47 5 1B4C 331 200B 5 200E 331 3D7 5 3DE 331 1E4E 5 1E51 331 8AB 5 8B2 331 C58 5 C5F 331 2098 5 209B 331 2672 5 2673 331 CED 5 CF4 331 1CAE 5 1CB2 331 1EE3 5 1EE6 331 9B0 5 B5D 331 2447 5 2448 331 212D 5 2130 331 2707 5 2708 331 15AA 5 15B0 331 1F78 5 1F7B 331 BCD 5 BD4 331 2504 5 2505 331 2522 5 2523 331 818 5 81F 331 16F7 5 16FF 331 509 5 510 331 21F2 5 21F5 331 279C 5 279C 331 200D 5 2010 331 C5A 5 C61 331 1E50 5 1E53 331 8AD 5 8B4 331 1B49 5 1B4E 331 22DF 5 22E0 331 3D9 5 3E0 331 753 5 75A 331 209A 5 209D 331 2674 5 2675 331 CEF 5 CF9 331 214 5 28C 331 2449 5 244A 331 1EE5 5 1EE8 331 15AC 5 15B2 331 1CB0 5 1CB4 331 212F 5 2132 331 BCF 5 BD6 331 2506 5 2507 331 50B 5 512 331 1F7A 5 1F7D 331 2709 5 270C 331 81A 5 821 331 755 5 75C 331 21F4 5 21F7 331 279E 5 279E 331 200F 5 2012 331 1B4B 5 1B50 331 25D1 5 25D2 331 3DB 5 3E2 331 1E52 5 1E55 331 8AF 5 8B6 331 C5C 5 C63 331 16F9 5 1700 331 209C 5 209F 331 244B 5 244C 331 1EE7 5 1EEA 331 2676 5 2677 331 CF1 5 CFC 331 22E1 5 22E2 331 1CB2 5 1CB6 331 2131 5 2134 331 15AE 5 15C9 331 1F7C 5 1F7F 331 BD1 5 BD8 331 2508 5 2509 331 81C 5 823 331 50D 5 514 331 21F6 5 21FB 331 16FB 5 1705 331 27A0 5 27A0 331 2011 5 2014 331 C5E 5 C65 331 1E54 5 1E57 331 8B1 5 8B8 331 1B4D 5 1B52 331 3DD 5 3E4 331 757 5 75E 331 1990 5 1996 331 209E 5 20A1 331 2678 5 2679 331 CF3 5 CFF 331 22E3 5 22E4 331 244D 5 244E 331 1EE9 5 1EEC 331 2370 5 2371 331 15B0 5 15CB 331 1CB4 5 1CB8 331 2133 5 2136 331 BD3 5 BDA 331 250A 5 250B 331 50F 5 516 331 1F7E 5 1F81 331 2528 5 2529 331 270D 5 270E 331 81E 5 825 331 1D41 5 1D44 331 759 5 760 331 27A2 5 27A2 331 2013 5 2016 331 1B4F 5 1B54 331 25D5 5 25DB 331 3DF 5 3E6 331 1E56 5 1E59 331 8B3 5 8BA 331 C60 5 C67 331 16FD 5 1911 331 1992 5 1998 331 20A0 5 20A3 331 1EEB 5 1EEE 331 267A 5 267B 331 22E5 5 22E6 331 1CB6 5 1CBA 331 2135 5 2138 331 270F 5 2710 331 15B2 5 15CD 331 2372 5 2373 331 1F80 5 1F83 331 BD5 5 BDC 331 250C 5 250D 331 252A 5 252B 331 511 5 518 331 820 5 827 331 21FA 5 21FD 331 16FF 5 1913 331 27A4 5 27A4 331 2015 5 2018 331 C62 5 C69 331 8B5 5 8BC 331 1B51 5 1B56 331 75B 5 762 331 1994 5 199A 331 20A2 5 20A5 331 267C 5 267D 331 22E7 5 22E8 331 2451 5 2452 331 3E1 5 3E8 331 1E58 5 1E5B 331 1EED 5 1EF0 331 2374 5 2375 331 1CB8 5 1CBC 331 2137 5 213A 331 BD7 5 BDE 331 250E 5 250F 331 513 5 51A 331 1F82 5 1F85 331 2711 5 2714 331 78D 5 794 331 1D45 5 1D49 331 75D 5 764 331 21FC 5 21FF 331 27A6 5 27A6 331 822 5 829 331 1B53 5 1B58 331 2017 5 201A 331 8B7 5 8BE 331 C64 5 C6B 331 3E3 5 3EA 331 1E5A 5 1E5D 331 1996 5 199C 331 22E9 5 22EB 331 20A4 5 20A7 331 2453 5 2454 331 1EEF 5 1EF2 331 267E 5 267F 331 CF9 5 D01 331 22E 5 291 331 1CBA 5 1CBE 331 1F84 5 1F87 331 2139 5 213C 331 78F 5 79A 331 2376 5 2377 331 515 5 51C 331 1D47 5 1D4A 331 21FE 5 227E 331 824 5 82B 331 27A8 5 27A8 331 25DB 5 25DE 331 C66 5 C6D 331 1B55 5 1B5A 331 75F 5 766 331 8B9 5 8C0 331 1998 5 199E 331 20A6 5 20A9 331 2680 5 2681 331 22EB 5 22EC 331 2455 5 2456 331 3E5 5 3EC 331 1E5C 5 1E5F 331 2378 5 2379 331 1EF1 5 1EF4 331 1CBC 5 1CC0 331 213B 5 213E 331 517 5 51E 331 1F86 5 1F89 331 2715 5 2716 331 791 5 79D 331 2530 5 2531 331 1D49 5 1D4D 331 826 5 82D 331 761 5 768 331 27AA 5 27AA 331 1B57 5 1B5C 331 C68 5 C6F 331 1705 5 1916 331 3E7 5 3EE 331 1E5E 5 1E61 331 8BB 5 8C2 331 199A 5 19A0 331 20A8 5 20AB 331 2457 5 2458 331 2682 5 2683 331 22ED 5 22EE 331 1CBE 5 1CC2 331 1EF3 5 1EF6 331 213D 5 2152 331 2717 5 2718 331 15CA 5 15D0 331 1F88 5 1F8B 331 828 5 82F 331 519 5 520 331 27AC 5 27AC 331 C6A 5 C71 331 763 5 76A 331 8BD 5 8C4 331 1B59 5 1B5E 331 199C 5 19A2 331 20AA 5 20AD 331 2684 5 2685 331 CFF 5 D05 331 22EF 5 22F0 331 3E9 5 3F0 331 1E60 5 1E63 331 2459 5 245A 331 15CC 5 15D2 331 1CC0 5 1CC4 331 1EF5 5 1EF8 331 F4 5 145 331 213F 5 2154 331 51B 5 522 331 1F8A 5 1F8D 331 2534 5 2535 331 765 5 76C 331 27AE 5 27AE 331 82A 5 831 331 C6C 5 C73 331 25E1 5 25E2 331 3EB 5 3F2 331 1E62 5 1E65 331 8BF 5 8C6 331 199E 5 19A4 331 20AC 5 20AF 331 2686 5 2687 331 D01 5 D07 331 22F1 5 22F2 331 1B5B 5 1B60 331 1EF7 5 1EFA 331 1CC2 5 1CC6 331 15CE 5 1647 331 237E 5 237F 331 245B 5 245C 331 1F8C 5 1F8F 331 BD9 5 BE0 331 82C 5 833 331 1913 5 1919 331 51D 5 524 331 27B0 5 27B0 331 C6E 5 C75 331 767 5 76E 331 2019 5 201C 331 25E3 5 25E4 331 8C1 5 8C8 331 1B5D 5 1B62 331 19A0 5 19A6 331 20AE 5 20B1 331 D03 5 D09 331 22F3 5 22F4 331 3ED 5 3F4 331 1E64 5 1E67 331 245D 5 245E 331 2380 5 2381 331 1EF9 5 1EFC 331 2688 5 2689 331 15D0 5 1697 331 1CC4 5 1CC8 331 2153 5 2156 331 799 5 7A4 331 51F 5 526 331 1F8E 5 1F91 331 1915 5 191B 331 769 5 770 331 1D59 5 1D5C 331 27B2 5 27B2 331 82E 5 835 331 BDB 5 BE2 331 201B 5 201E 331 25E5 5 25E6 331 C70 5 C77 331 3EF 5 3F6 331 1E66 5 1E69 331 8C3 5 8CA 331 19A2 5 19A8 331 23A 5 297 331 1C31 5 1C63 331 D05 5 D0B 331 22F5 5 22F6 331 1B5F 5 1B64 331 20B0 5 20B3 331 1EFB 5 1EFE 331 268A 5 268B 331 1CC6 5 1CCA 331 2155 5 2158 331 15D2 5 1699 331 2382 5 2383 331 1F90 5 1F93 331 BDD 5 BE4 331 253A 5 253C 331 1D5B 5 1D60 331 830 5 837 331 1917 5 191D 331 521 5 528 331 27B4 5 27B4 331 76B 5 772 331 201D 5 2020 331 25E7 5 25E8 331 C72 5 C7A 331 8C5 5 8CC 331 1B61 5 1B66 331 19A4 5 19AA 331 D07 5 D0D 331 22F7 5 22F8 331 3F1 5 3F8 331 1E68 5 1E6B 331 20B2 5 20B5 331 2461 5 2462 331 1EFD 5 1F00 331 268C 5 268E 331 2157 5 215A 331 79D 5 7A5 331 523 5 52A 331 1F92 5 1F95 331 253C 5 253D 331 76D 5 774 331 1D5D 5 1DB9 331 27B6 5 27B6 331 832 5 839 331 BDF 5 BE6 331 201F 5 2022 331 25E9 5 25EA 331 C74 5 C7C 331 3F3 5 3FA 331 1E6A 5 1E6D 331 8C7 5 8CE 331 19A6 5 19AC 331 1B63 5 1B68 331 20B4 5 20B7 331 268E 5 268F 331 D09 5 D0F 331 1EFF 5 1F02 331 79F 5 7A6 331 2386 5 2387 331 2463 5 2464 331 2159 5 215C 331 271B 5 271C 331 BE1 5 BE8 331 253E 5 253F 331 834 5 83B 331 525 5 52C 331 76F 5 776 331 27B8 5 27B8 331 2021 5 2024 331 25EB 5 25EC 331 C76 5 C7E 331 8C9 5 8D0 331 1B65 5 1B6F 331 19A8 5 19AE 331 3F5 5 3FC 331 1E6C 5 1E6F 331 D0B 5 D11 331 20B6 5 20B9 331 2465 5 2466 331 1F01 5 1F04 331 2690 5 2691 331 7A1 5 7A8 331 215B 5 215E 331 271D 5 271E 331 527 5 52E 331 1F96 5 1F99 331 2540 5 2541 331 836 5 83D 331 BE3 5 BEA 331 771 5 778 331 195 5 1F4 331 27BA 5 27BA 331 2023 5 2026 331 25ED 5 25EE 331 C78 5 C80 331 3F7 5 3FE 331 1E6E 5 1E71 331 8CB 5 8D2 331 19AA 5 19B0 331 1B67 5 1B71 331 20B8 5 20BB 331 2692 5 2693 331 D0D 5 D13 331 1F03 5 1F06 331 7A3 5 7AA 331 2467 5 2468 331 215D 5 2160 331 271F 5 2720 331 1F98 5 1F9B 331 BE5 5 BEC 331 2542 5 2543 331 838 5 83F 331 529 5 530 331 27BC 5 27BC 331 2025 5 2028 331 25EF 5 25F0 331 8CD 5 8D4 331 C7A 5 C81 331 773 5 77A 331 19AC 5 19B2 331 3F9 5 400 331 1E70 5 1E73 331 D0F 5 D15 331 20BA 5 20BD 331 B5A 5 B61 331 2469 5 246A 331 238C 5 238D 331 1F05 5 1F08 331 2694 5 2695 331 7A5 5 7AC 331 1CC8 5 1CCC 331 215F 5 2162 331 104 5 164 331 2721 5 2722 331 52B 5 532 331 1F9A 5 1F9D 331 2544 5 2545 331 83A 5 841 331 BE7 5 BEE 331 775 5 77C 331 27BE 5 27BE 331 2027 5 202A 331 25F1 5 25F2 331 3FB 5 402 331 1E72 5 1E75 331 8CF 5 8D6 331 C7C 5 C83 331 1919 5 191F 331 19AE 5 19B4 331 20BC 5 20BF 331 2696 5 2697 331 D11 5 D17 331 22F9 5 22FA 331 1F07 5 1F0A 331 B5C 5 B63 331 7A7 5 7AE 331 238E 5 238F 331 246B 5 246C 331 1CCA 5 1CCE 331 2161 5 2164 331 1F9C 5 1F9F 331 BE9 5 BF0 331 2546 5 2547 331 83C 5 843 331 52D 5 534 331 191B 5 1921 331 27C0 5 27C0 331 2029 5 202C 331 25F3 5 25F4 331 1E74 5 1E77 331 8D1 5 8D8 331 C7E 5 C85 331 19B 5 207 331 3FD 5 404 331 777 5 77E 331 19B0 5 19B6 331 D13 5 D19 331 22FB 5 22FC 331 20BE 5 20C1 331 B5E 5 B65 331 246D 5 246E 331 1F09 5 1F0C 331 2698 5 2699 331 2390 5 2391 331 1648 5 16A4 331 1CCC 5 1CD0 331 2163 5 2166 331 7A9 5 7B0 331 52F 5 536 331 1F9E 5 1FA1 331 2548 5 2549 331 83E 5 845 331 BEB 5 BF5 331 1DB9 5 1DDA 331 779 5 780 331 27C2 5 27C2 331 1B6F 5 1B74 331 202B 5 202E 331 3FF 5 406 331 1E76 5 1E79 331 8D3 5 8DA 331 C80 5 C87 331 191D 5 1923 331 19B2 5 19B8 331 20C0 5 20C3 331 269A 5 269B 331 D15 5 D1B 331 22FD 5 22FE 331 1F0B 5 1F0E 331 246F 5 2470 331 1CCE 5 1CD2 331 2165 5 2168 331 7AB 5 7B2 331 254A 5 254B 331 BED 5 BF7 331 2392 5 2393 331 840 5 847 331 191F 5 1925 331 27C4 5 27C4 331 202D 5 2030 331 25F7 5 25F8 331 8D5 5 8DC 331 C82 5 C89 331 77B 5 782 331 19B4 5 19BA 331 D17 5 D1D 331 22FF 5 2300 331 401 5 408 331 1E78 5 1E7B 331 20C2 5 20C5 331 1F0D 5 1F10 331 269C 5 269D 331 2394 5 2395 331 1CD0 5 1CD4 331 2167 5 216A 331 2731 5 2732 331 7AD 5 7B4 331 254C 5 254D 331 BEF 5 BF9 331 1DBD 5 1DDB 331 842 5 849 331 77D 5 784 331 27C6 5 27C6 331 202F 5 2032 331 25F9 5 25FA 331 8D7 5 8DE 331 C84 5 C8B 331 1921 5 1927 331 403 5 40A 331 1E7A 5 1E7D 331 19B6 5 19BC 331 1F0F 5 1F12 331 20C4 5 20C7 331 D19 5 D1F 331 2301 5 2302 331 1CD2 5 1CD6 331 2169 5 216C 331 254E 5 254F 331 2733 5 2734 331 7AF 5 7B6 331 2396 5 2397 331 844 5 84B 331 1923 5 1929 331 27C8 5 27C8 331 2031 5 2034 331 25FB 5 25FC 331 C86 5 C8D 331 1AB 5 214 331 77F 5 786 331 8D9 5 8E0 331 19B8 5 19BE 331 D1B 5 D21 331 2303 5 2304 331 405 5 40C 331 1E7C 5 1E7F 331 20C6 5 20C9 331 2398 5 2399 331 1F11 5 1F14 331 1CD4 5 1CD8 331 216B 5 217D 331 7B1 5 7B8 331 1DD9 5 1DF6 331 846 5 84D 331 781 5 788 331 27CA 5 27CA 331 2033 5 2036 331 25FD 5 25FE 331 C88 5 C8F 331 1925 5 192B 331 407 5 40E 331 1E7E 5 1E81 331 8DB 5 8E2 331 19BA 5 19C0 331 20C8 5 20CB 331 D1D 5 D23 331 2305 5 2306 331 1F13 5 1F16 331 B60 5 B67 331 1CD6 5 1CDA 331 7B3 5 7BA 331 BF5 5 C01 331 239A 5 239B 331 1FA0 5 1FA3 331 2552 5 2553 331 1DDB 5 1DF8 331 848 5 84F 331 1927 5 192E 331 374 5 37B 331 531 5 538 331 27CC 5 27CC 331 2035 5 2038 331 25FF 5 2600 331 C8A 5 C91 331 783 5 78A 331 8DD 5 8E4 331 19BC 5 19C2 331 D1F 5 D25 331 2307 5 2308 331 409 5 410 331 1E80 5 1E83 331 20CA 5 20CD 331 2471 5 2472 331 239C 5 239D 331 1F15 5 1F18 331 1CD8 5 1CDC 331 7B5 5 7BC 331 B62 5 B69 331 BF7 5 C0F 331 533 5 53A 331 1FA2 5 1FA5 331 2554 5 2555 331 376 5 37D 331 785 5 78C 331 227C 5 227F 331 27CE 5 27CE 331 84A 5 851 331 2037 5 203A 331 C8C 5 C93 331 2601 5 2602 331 40B 5 412 331 1E82 5 1E85 331 8DF 5 8E6 331 19BE 5 19C4 331 20CC 5 20CF 331 D21 5 D27 331 2309 5 230A 331 1F17 5 1F1A 331 B64 5 B6B 331 1CDA 5 1CE1 331 273B 5 273C 331 7B7 5 7BE 331 239E 5 239F 331 2473 5 2474 331 1FA4 5 1FA7 331 BF9 5 C14 331 2556 5 2557 331 84C 5 853 331 227E 5 2280 331 192B 5 1932 331 378 5 37F 331 535 5 53C 331 27D0 5 27D0 331 C8E 5 C95 331 787 5 791 331 8E1 5 8E8 331 19C0 5 19C6 331 20CE 5 20D1 331 D23 5 D29 331 230B 5 230C 331 40D 5 414 331 1E84 5 1E87 331 2039 5 203C 331 2475 5 2476 331 26A0 5 26A1 331 23A0 5 23A1 331 1F19 5 1F1C 331 1CDC 5 1CE3 331 273D 5 273E 331 7B9 5 7C0 331 B66 5 B6D 331 537 5 53E 331 1FA6 5 1FA9 331 2558 5 2559 331 37A 5 381 331 1B5 5 22E 331 27D2 5 27D2 331 84E 5 855 331 203B 5 203E 331 40F 5 416 331 1E86 5 1E8C 331 8E3 5 8EA 331 C90 5 C98 331 19C2 5 19C8 331 D25 5 D2B 331 230D 5 230E 331 20D0 5 20D3 331 1F1B 5 1F1E 331 B68 5 B6F 331 217D 5 2180 331 273F 5 2740 331 7BB 5 7C2 331 23A2 5 23A4 331 2477 5 2479 331 1FA8 5 1FAB 331 255A 5 255B 331 850 5 857 331 27D4 5 27D4 331 192F 5 1935 331 37C 5 383 331 539 5 540 331 C92 5 C9A 331 8E5 5 8EC 331 19C4 5 19CA 331 D27 5 D2D 331 230F 5 2310 331 411 5 418 331 203D 5 2040 331 2479 5 247A 331 20D2 5 20D5 331 23A4 5 23A5 331 1F1D 5 1F20 331 1CE0 5 1CE4 331 217F 5 2182 331 7BD 5 7C4 331 B6A 5 B71 331 53B 5 542 331 1FAA 5 1FAD 331 255C 5 255D 331 2741 5 2742 331 37E 5 385 331 852 5 859 331 1931 5 1937 331 203F 5 2042 331 413 5 41A 331 1E8A 5 1E8D 331 8E7 5 8EE 331 C94 5 C9C 331 19C6 5 19CC 331 2311 5 2312 331 20D4 5 20D7 331 26A6 5 26A7 331 D29 5 D2F 331 1F1F 5 1F22 331 1CE2 5 1CE6 331 7BF 5 7C6 331 B6C 5 B73 331 247B 5 247C 331 1FAC 5 1FAF 331 C01 5 C17 331 255E 5 255F 331 1DF7 5 1DFA 331 854 5 85B 331 1933 5 1939 331 380 5 387 331 53D 5 544 331 8E9 5 8F0 331 19C8 5 19CE 331 2313 5 2314 331 415 5 41C 331 2041 5 2044 331 D2B 5 D31 331 20D6 5 20D9 331 23A8 5 23A9 331 1F21 5 1F24 331 1CE4 5 1CE8 331 7C1 5 7C8 331 B6E 5 B75 331 53F 5 736 331 1FAE 5 1FB1 331 2560 5 2561 331 382 5 389 331 1DF9 5 1DFC 331 856 5 85D 331 1698 5 16A9 331 1935 5 193B 331 2043 5 2046 331 417 5 41E 331 8EB 5 8F2 331 C98 5 C9F 331 19CA 5 19D0 331 2280 5 2282 331 2315 5 2316 331 20D8 5 20DB 331 26AA 5 26AC 331 1F23 5 1F26 331 B70 5 B77 331 D2D 5 D33 331 1CE6 5 1CEA 331 7C3 5 7CA 331 23AA 5 23AB 331 1FB0 5 1FB3 331 2562 5 2563 331 1DFB 5 1DFE 331 858 5 85F 331 1937 5 1943 331 384 5 38B 331 541 5 746 331 2045 5 2048 331 8ED 5 8F4 331 C9A 5 CA1 331 2282 5 2284 331 19CC 5 19D2 331 2317 5 2319 331 419 5 420 331 1E90 5 1E93 331 D2F 5 D35 331 20DA 5 20DD 331 26AC 5 26AD 331 23AC 5 23AD 331 1F25 5 1F28 331 7C5 5 7CC 331 B72 5 B79 331 1CE8 5 1CEC 331 543 5 748 331 1FB2 5 1FB5 331 2564 5 2565 331 386 5 38D 331 1DFD 5 1E00 331 85A 5 861 331 169C 5 16AC 331 1939 5 1945 331 2047 5 204A 331 41B 5 422 331 1E92 5 1E95 331 8EF 5 8F6 331 C9C 5 CA3 331 19CE 5 19D4 331 2284 5 2291 331 20DC 5 20DF 331 26AE 5 26B1 331 1F27 5 1F2A 331 7C7 5 7CE 331 B74 5 B7B 331 D31 5 D3A 331 2319 5 2320 331 1CEA 5 1CEE 331 1FB4 5 1FB7 331 274B 5 274B 331 2566 5 2567 331 1DFF 5 1E02 331 85C 5 863 331 545 5 74A 331 2049 5 204C 331 2623 5 2624 331 C9E 5 CA5 331 1C3 5 23A 331 388 5 38F 331 41D 5 424 331 1E94 5 1E97 331 D33 5 D3C 331 19D0 5 19D6 331 B76 5 B7D 331 24AD 5 24AE 331 20DE 5 20E1 331 23B0 5 23B1 331 1CEC 5 1CF0 331 218B 5 218E 331 1FB6 5 1FB9 331 2568 5 2569 331 274D 5 274D 331 7C9 5 7D0 331 85E 5 865 331 38A 5 391 331 1E01 5 1E04 331 204B 5 204E 331 41F 5 426 331 1E96 5 1E99 331 2625 5 2627 331 CA0 5 CA7 331 1C59 5 1C68 331 20E0 5 20E3 331 26B2 5 26B4 331 D35 5 D3E 331 19D2 5 19D8 331 B78 5 B7F 331 24AF 5 24B0 331 1CEE 5 1CF2 331 1FB8 5 1FBB 331 256A 5 256B 331 218D 5 2190 331 7CB 5 7D2 331 23B2 5 23B3 331 860 5 867 331 204D 5 2050 331 2627 5 2628 331 CA2 5 CA9 331 38C 5 393 331 1E03 5 1E06 331 19D4 5 19DA 331 421 5 428 331 1E98 5 1E9B 331 20E2 5 20E5 331 B7A 5 B81 331 24B1 5 24B2 331 26B4 5 26BC 331 23B4 5 23B5 331 1CF0 5 1CF7 331 7CD 5 7D4 331 218F 5 2193 331 1FBA 5 1FBD 331 256C 5 256D 331 C0F 5 C1A 331 16A4 5 16AD 331 38E 5 395 331 1E05 5 1E08 331 862 5 869 331 204F 5 2052 331 CA4 5 CAB 331 1941 5 1947 331 1E9A 5 1E9D 331 19D6 5 19DC 331 20E4 5 20E7 331 2321 5 2322 331 B7C 5 B83 331 24B3 5 24B4 331 423 5 42A 331 1CF2 5 1CF9 331 1FBC 5 1FBF 331 256E 5 256F 331 2191 5 2195 331 7CF 5 7D6 331 864 5 86B 331 2051 5 2054 331 CA6 5 CAD 331 1943 5 1949 331 390 5 397 331 1E07 5 1E0A 331 8F1 5 8F8 331 23F0 5 23F1 331 19D8 5 19DE 331 D3B 5 D41 331 2323 5 2324 331 425 5 42C 331 1E9C 5 1E9F 331 B7E 5 B86 331 24B5 5 24B6 331 20E6 5 20E9 331 23B8 5 23B9 331 1F29 5 1F2C 331 7D1 5 7D8 331 2193 5 2196 331 1FBE 5 1FC1 331 C13 5 C1B 331 16A8 5 16AE 331 2570 5 2571 331 392 5 399 331 1E09 5 1E0C 331 866 5 86D 331 2053 5 2056 331 CA8 5 CAF 331 1945 5 194B 331 1E9E 5 1EA1 331 8F3 5 8FA 331 23F2 5 23F3 331 19DA 5 19E0 331 20E8 5 20EB 331 D3D 5 D45 331 2325 5 2326 331 24B7 5 24B8 331 427 5 42E 331 1F2B 5 1F2E 331 B80 5 B8E 331 7D3 5 7DA 331 2195 5 2198 331 2757 5 2757 331 C15 5 C1D 331 16AA 5 16B0 331 23BA 5 23BB 331 1FC0 5 1FC3 331 2572 5 2573 331 868 5 86F 331 2055 5 2058 331 CAA 5 CB1 331 1947 5 194D 331 394 5 39B 331 1E0B 5 1E0E 331 8F5 5 8FC 331 23F4 5 23F5 331 19DC 5 19E2 331 2327 5 2329 331 429 5 430 331 D3F 5 D47 331 1C63 5 1C69 331 1EA0 5 1EA3 331 20EA 5 20ED 331 77 5 104 331 26BC 5 26BE 331 24B9 5 24BA 331 23BC 5 23BD 331 1CF8 5 1CFC 331 7D5 5 7DC 331 B82 5 B90 331 2197 5 219A 331 2759 5 2759 331 16AC 5 16B3 331 1FC2 5 1FC5 331 2574 5 2575 331 396 5 39D 331 1E0D 5 1E10 331 86A 5 871 331 1949 5 194F 331 2057 5 205A 331 CAC 5 CB3 331 2294 5 2296 331 1AFE 5 1B04 331 2629 5 262A 331 1EA2 5 1EA5 331 8F7 5 8FE 331 23F6 5 23FD 331 19DE 5 19E4 331 1C65 5 1C6A 331 20EC 5 20EF 331 26BE 5 26BF 331 2329 5 232A 331 42B 5 432 331 1F2F 5 1F32 331 B84 5 B92 331 1CFA 5 1CFE 331 7D7 5 7DE 331 275B 5 275B 331 16AE 5 16B5 331 23BE 5 23BF 331 24BB 5 24BC 331 1FC4 5 1FC7 331 2576 5 2577 331 C19 5 C20 331 86C 5 873 331 1B00 5 1B05 331 194B 5 1951 331 CAE 5 CB5 331 2296 5 229A 331 398 5 39F 331 1E0F 5 1E12 331 2059 5 205C 331 8F9 5 900 331 19E0 5 19E6 331 232B 5 232C 331 42D 5 434 331 270 5 374 331 1C67 5 1C7B 331 1EA4 5 1EA7 331 262B 5 262D 331 20EE 5 20F1 331 24BD 5 24BE 331 23C0 5 23D7 331 1F31 5 1F34 331 16B0 5 16B7 331 1CFC 5 1D00 331 275D 5 275D 331 7D9 5 7E0 331 B86 5 B93 331 1FC6 5 1FC9 331 2578 5 2579 331 C1B 5 C24 331 39A 5 3A1 331 1E11 5 1E14 331 86E 5 875 331 194D 5 1953 331 2298 5 229C 331 1B02 5 1B0A 331 205B 5 205E 331 262D 5 262E 331 1EA6 5 1EA9 331 8FB 5 902 331 CB0 5 CB7 331 19E2 5 19E8 331 1C69 5 1C85 331 232D 5 232E 331 42F 5 436 331 20F0 5 20F3 331 1F33 5 1F36 331 1CFE 5 1D02 331 275F 5 275F 331 7DB 5 7E2 331 24BF 5 24C0 331 1FC8 5 1FCB 331 257A 5 257B 331 C1D 5 C26 331 870 5 877 331 1B04 5 1B0C 331 194F 5 1955 331 229A 5 229D 331 39C 5 3A3 331 1E13 5 1E16 331 CB2 5 CB9 331 205D 5 2060 331 8FD 5 904 331 19E4 5 19EA 331 232F 5 2330 331 431 5 438 331 1EA8 5 1EAB 331 262F 5 2630 331 20F2 5 20F5 331 24C1 5 24C2 331 1F35 5 1F38 331 26C4 5 26C5 331 16B4 5 16BA 331 1D00 5 1D04 331 7DD 5 7E4 331 2761 5 2761 331 1FCA 5 1FCD 331 257C 5 257D 331 C1F 5 C28 331 39E 5 3A5 331 1E15 5 1E18 331 872 5 879 331 1951 5 1957 331 229C 5 229E 331 1B06 5 1B0E 331 1B70 5 1B75 331 205F 5 2062 331 2631 5 2632 331 CB4 5 CBB 331 1D1 5 269 331 1EAA 5 1EAD 331 8FF 5 906 331 23FE 5 2412 331 19E6 5 19EC 331 2331 5 2332 331 433 5 43A 331 20F4 5 20F7 331 26C6 5 26C7 331 D41 5 D49 331 1F37 5 1F3A 331 1D02 5 1D06 331 7DF 5 7E6 331 16B6 5 16BC 331 24C3 5 24C5 331 2199 5 219C 331 1FCC 5 1FCF 331 2763 5 2763 331 874 5 87B 331 1953 5 1959 331 229E 5 22A0 331 3A0 5 3A7 331 1E17 5 1E1A 331 CB6 5 CBD 331 1B72 5 1B77 331 2061 5 2064 331 901 5 908 331 19E8 5 19EE 331 2333 5 2334 331 435 5 43C 331 1EAC 5 1EAF 331 2633 5 2634 331 24C5 5 24C6 331 20F6 5 20F9 331 1F39 5 1F3C 331 1D04 5 1D08 331 7E1 5 7E8 331 B8E 5 B95 331 219B 5 219E 331 1FCE 5 1FD1 331 2765 5 2765 331 16B8 5 16BE 331 3A2 5 3A9 331 1E19 5 1E1C 331 876 5 87D 331 1955 5 195B 331 1B0A 5 1B0F 331 1B74 5 1B79 331 2063 5 2066 331 2635 5 2636 331 1EAE 5 1EB1 331 903 5 90A 331 CB8 5 CBF 331 22A0 5 22A2 331 19EA 5 19F0 331 2335 5 2336 331 437 5 43E 331 20F8 5 20FB 331 D45 5 D4C 331 1F3B 5 1F3E 331 1D06 5 1D0A 331 7E3 5 7EA 331 B90 5 B97 331 24C7 5 24C8 331 219D 5 21A0 331 2767 5 2767 331 1FD0 5 1FD3 331 2582 5 2585 331 C25 5 C2C 331 16BA 5 16C0 331 1B0C 5 1B11 331 1957 5 195D 331 3A4 5 3AB 331 1E1B 5 1E20 331 22A2 5 22A4 331 CBA 5 CC1 331 1B76 5 1B7B 331 2065 5 2068 331 905 5 90C 331 19EC 5 19F2 331 2337 5 2338 331 2637 5 2638 331 D47 5 D4E 331 20FA 5 20FD 331 1F3D 5 1F40 331 7E5 5 7EC 331 B92 5 B99 331 1D08 5 1D0C 331 219F 5 21A2 331 2769 5 2769 331 1FD2 5 1FD5 331 C27 5 C2E 331 16BC 5 16C2 331 3A6 5 3AD 331 1B0E 5 1B13 331 1959 5 195F 331 1B78 5 1B7D 331 2067 5 206A 331 2639 5 263A 331 907 5 90E 331 CBC 5 CC3 331 19EE 5 19F4 331 22A4 5 22A6 331 20FC 5 20FF 331 26CE 5 26CF 331 D49 5 D50 331 2339 5 233A 331 1F3F 5 1F42 331 7E7 5 7EE 331 B94 5 B9B 331 24CB 5 24CC 331 21A1 5 21A6 331 276B 5 276B 331 1FD4 5 1FD7 331 C29 5 C30 331 16BE 5 16C4 331 1B10 5 1B15 331 1D0A 5 1D0E 331 1E1F 5 1E22 331 195B 5 1961 331 22A6 5 22A8 331 3A8 5 3AF 331 CBE 5 CC5 331 1B7A 5 1B7F 331 2069 5 206C 331 909 5 910 331 263B 5 263C 331 19F0 5 19F6 331 233B 5 233C 331 24CD 5 24CE 331 20FE 5 2101 331 1F41 5 1F44 331 B96 5 B9D 331 23D8 5 23D9 331 1D0C 5 1D10 331 7E9 5 7F0 331 276D 5 276D 331 1FD6 5 1FD9 331 C2B 5 C32 331 16C0 5 16C6 331 1B12 5 1B17 331 1E21 5 1E24 331 195D 5 1963 331 1B7C 5 1B84 331 206B 5 206E 331 263D 5 263E 331 CC0 5 CC7 331 22A8 5 22B6 331 90B 5 912 331 2412 5 2413 331 3AA 5 3B1 331 19F2 5 19F8 331 2100 5 2103 331 D4D 5 D53 331 233D 5 233F 331 1F43 5 1F46 331 B98 5 B9F 331 24CF 5 24D0 331 7EB 5 7F2 331 23DA 5 23DB 331 21A5 5 21C6 331 276F 5 276F 331 1FD8 5 1FDB 331 C2D 5 C34 331 16C2 5 16C8 331 1B14 5 1B1B 331 1D0E 5 1D12 331 878 5 87F 331 195F 5 1965 331 3AC 5 3B3 331 CC2 5 CC9 331 1B7E 5 1B86 331 1E23 5 1E26 331 206D 5 2070 331 90D 5 914 331 2414 5 2418 331 263F 5 2640 331 19F4 5 19FA 331 233F 5 2340 331 439 5 440 331 D4F 5 D9E 331 1C7B 5 1C91 331 1EB0 5 1EB3 331 2102 5 2105 331 B7 5 123 331 24D1 5 24D2 331 26D4 5 26D6 331 1F45 5 1F48 331 B9A 5 BA1 331 23DC 5 23DD 331 1D10 5 1D14 331 7ED 5 7F4 331 2771 5 2771 331 1B16 5 1B1D 331 1FDA 5 1FDD 331 C2F 5 C36 331 16C4 5 16CA 331 1E25 5 1E28 331 87A 5 881 331 206F 5 2072 331 90F 5 916 331 CC4 5 CCB 331 1961 5 1967 331 3AE 5 3B5 331 1EB2 5 1EB5 331 19F6 5 19FC 331 2341 5 2342 331 2104 5 2107 331 26D6 5 26DA 331 D51 5 154D 331 286 5 376 331 1F47 5 1F4A 331 B9C 5 BA4 331 24D3 5 24D4 331 43B 5 442 331 7EF 5 7F6 331 23DE 5 23DF 331 2773 5 2773 331 16C6 5 16CC 331 1FDC 5 1FDF 331 C31 5 C38 331 14E 5 1AB 331 1D12 5 1D16 331 87C 5 883 331 CC6 5 CCD 331 1963 5 1969 331 3B0 5 3B7 331 1E27 5 1E2A 331 2071 5 2074 331 2418 5 2419 331 19F8 5 19FF 331 2343 5 2344 331 43D 5 444 331 D53 5 159F 331 1C7F 5 1C92 331 1EB4 5 1EB7 331 24D5 5 24D6 331 2106 5 2109 331 911 5 918 331 B9E 5 BA6 331 23E0 5 23E1 331 1F49 5 1F4C 331 1D14 5 1D18 331 7F1 5 7F8 331 2775 5 2775 331 1FDE 5 1FE1 331 C33 5 C3A 331 16C8 5 16CE 331 3B2 5 3B9 331 1E29 5 1E2C 331 87E 5 885 331 2073 5 2076 331 2645 5 2646 331 1965 5 196B 331 1B1A 5 1B1F 331 1EB6 5 1EB9 331 913 5 91A 331 19FA 5 1AFD 331 26DA 5 26DB 331 2345 5 2346 331 24D7 5 24D8 331 43F 5 446 331 1F4B 5 1F4E 331 BA0 5 BA8 331 7F3 5 7FA 331 23E2 5 23E3 331 21C5 5 21C8 331 2777 5 2777 331 C35 5 C3C 331 16CA 5 16D0 331 1D16 5 1D1A 331 1FE0 5 1FE3 331 880 5 887 331 1B1C 5 1B21 331 1967 5 196D 331 3B4 5 3BB 331 1E2B 5 1E2E 331 258A 5 258B 331 2075 5 2078 331 2647 5 2648 331 241C 5 241F 331 19FC 5 1B00 331 2347 5 2348 331 28C 5 377 331 441 5 448 331 1EB8 5 1EBB 331 915 5 91C 331 24D9 5 24DA 331 23E4 5 23E5 331 1F4D 5 1F50 331 1D18 5 1D1C 331 7F5 5 7FC 331 21C7 5 21CA 331 2779 5 2779 331 C37 5 C3E 331 16CC 5 16D2 331 1FE2 5 1FE5 331 3B6 5 3BD 331 1E2D 5 1E30 331 882 5 889 331 2077 5 207A 331 1969 5 196F 331 1B1E 5 1B23 331 2649 5 264A 331 1EBA 5 1EBD 331 917 5 91E 331 19FE 5 1B01 331 1C85 5 1C93 331 26DE 5 26DF 331 2349 5 234A 331 443 5 44A 331 1F4F 5 1F52 331 BA4 5 BAB 331 1D1A 5 1D1E 331 7F7 5 7FE 331 21C9 5 21CC 331 277B 5 277B 331 16CE 5 16D4 331 23E6 5 23E7 331 24DB 5 24DC 331 C39 5 C40 331 1FE4 5 1FE7 331 884 5 88B 331 1B20 5 1B25 331 196B 5 1971 331 22B6 5 22BA 331 3B8 5 3BF 331 1E2F 5 1E32 331 258E 5 2590 331 2079 5 207C 331 2420 5 2422 331 264B 5 264C 331 1A00 5 1B03 331 234B 5 234C 331 445 5 44C 331 1EBC 5 1EBF 331 919 5 920 331 24DD 5 24DE 331 23E8 5 23E9 331 1F51 5 1F54 331 1D1C 5 1D21 331 7F9 5 800 331 BA6 5 BAD 331 21CB 5 21CE 331 277D 5 277D 331 16D0 5 16D6 331 1FE6 5 1FE9 331 2590 5 2591 331 C3B 5 C42 331 3BA 5 3C1 331 1E31 5 1E34 331 886 5 88E 331 196D 5 1973 331 1B22 5 1B27 331 207B 5 207E 331 264D 5 264E 331 CC8 5 CCF 331 1EBE 5 1EC1 331 91B 5 922 331 2422 5 242A 331 234D 5 234E 331 447 5 44E 331 2108 5 210B 331 26E2 5 26E3 331 1F53 5 1F56 331 BA8 5 BAF 331 1D1E 5 1D23 331 7FB 5 802 331 21CD 5 21D0 331 277F 5 277F 331 16D2 5 16D8 331 23EA 5 23EB 331 24DF 5 24E1 331 C3D 5 C44 331 888 5 890 331 1B24 5 1B29 331 196F 5 1975 331 22BA 5 22BC 331 3BC 5 3C3 331 1E33 5 1E36 331 1FE8 5 1FEB 331 CCA 5 CD1 331 207D 5 2080 331 264F 5 2651 331 234F 5 2350 331 449 5 450 331 1EC0 5 1EC3 331 91D 5 924 331 210A 5 210D 331 24E1 5 24E2 331 26E4 5 26E5 331 23EC 5 23ED 331 1F55 5 1F58 331 7FD 5 804 331 BAA 5 BB1 331 21CF 5 21D2 331 16D4 5 16DA 331 2781 5 2781 331 1FEA 5 1FED 331 C3F 5 C46 331 3BE 5 3C5 331 1E35 5 1E38 331 88A 5 892 331 1971 5 1977 331 22BC 5 22C0 331 1B26 5 1B2B 331 207F 5 2082 331 2651 5 2652 331 1EC2 5 1EC5 331 91F 5 926 331 CCC 5 CD3 331 44B 5 452 331 210C 5 210F 331 1F57 5 1F5A 331 BAC 5 BB3 331 1D22 5 1D28 331 7FF 5 806 331 16D6 5 16DC 331 23EE 5 23EF 331 24E3 5 24E4 331 21D1 5 21D8 331 2783 5 2783 331 C41 5 C48 331 1B28 5 1B30 331 1973 5 1979 331 1E37 5 1E3A 331 1FEC 5 1FEF 331 CCE 5 CD5 331 1B92 5 1BFE 331 2081 5 2084 331 2653 5 2654 331 2353 5 2354 331 44D 5 454 331 1EC4 5 1EC7 331 921 5 928 331 210E 5 2111 331 24E5 5 24E6 331 26E8 5 26E9 331 1D24 5 1D2C 331 1F59 5 1F5C 331 BAE 5 BB5 331 2785 5 2785 331 1FEE 5 1FF1 331 C43 5 C4A 331 16D8 5 16DE 331 88E 5 895 331 1975 5 197B 331 1B2A 5 1B33 331 2083 5 2086 331 CD0 5 CD7 331 22C0 5 22C2 331 1EC6 5 1EC9 331 923 5 92A 331 242A 5 242B 331 2355 5 2356 331 44F 5 456 331 1C91 5 1C95 331 2110 5 2113 331 26EA 5 26EB 331 1F5B 5 1F5E 331 BB0 5 BB7 331 24E7 5 24E8 331 16DA 5 16E0 331 2787 5 2787 331 C45 5 C4C 331 736 5 74B 331 890 5 897 331 1977 5 197D 331 1FF0 5 1FF3 331 CD2 5 CD9 331 22C2 5 22C4 331 2085 5 2088 331 2357 5 2358 331 451 5 458 331 1EC8 5 1ECB 331 925 5 92C 331 1C93 5 1C97 331 2112 5 2115 331 24E9 5 24EA 331 26EC 5 26ED 331 1F5D 5 1F60 331 BB2 5 BB9 331 101F 5 15A2 331 1D28 5 1D2F 331 2789 5 2789 331 1FF2 5 1FF5 331 C47 5 C4E 331 16DC 5 16E2 331 892 5 899 331 1B2E 5 1B35 331 1979 5 197F 331 2087 5 208A 331 CD4 5 CDB 331 22C4 5 22C6 331 1ECA 5 1ECD 331 927 5 931 331 242E 5 242F 331 453 5 45A 331 1C95 5 1C99 331 2114 5 2117 331 26EE 5 26EF 331 2359 5 235A 331 1F5F 5 1F62 331 BB4 5 BBB 331 24EB 5 24EC 331 278B 5 278B 331 1FF4 5 1FF8 331 C49 5 C50 331 16DE 5 16E5 331 894 5 89B 331 1B30 5 1B36 331 197B 5 1981 331 CD6 5 CDD 331 22C6 5 22C8 331 3C0 5 3C7 331 2089 5 208C 331 455 5 45C 331 1ECC 5 1ECF 331 929 5 9B0 331 235B 5 235C 331 1C97 5 1C9B 331 2116 5 2119 331 24ED 5 24EE 331 26F0 5 26F1 331 1F61 5 1F64 331 BB6 5 BBD 331 1D2C 5 1D31 331 801 5 808 331 73C 5 74C 331 278D 5 278D 331 1FF6 5 1FF9 331 896 5 89D 331 C4B 5 C52 331 16E0 5 16E7 331 1E39 5 1E3C 331 197D 5 1983 331 208B 5 208E 331 CD8 5 CDF 331 22C8 5 22CA 331 1ECE 5 1ED1 331 92B 5 A0F 331 2432 5 2433 331 3C2 5 3C9 331 457 5 486 331 1C99 5 1C9D 331 235D 5 235E 331 2118 5 211B 331 26F2 5 26F3 331 154D 5 15A3 331 2A2 5 37A 331 1F63 5 1F66 331 BB8 5 BBF 331 24EF 5 24F0 331 803 5 80A 331 21DD 5 21E1 331 278F 5 278F 331 1FF8 5 1FFB 331 C4D 5 C54 331 16E2 5 16E9 331 1B34 5 1B39 331 1D2E 5 1D34 331 197F 5 1985 331 CDA 5 CE1 331 22CA 5 22CC 331 3C4 5 3CB 331 1E3B 5 1E3E 331 208D 5 2090 331 265F 5 2661 331 898 5 89F 331 235F 5 2360 331 459 5 4FF 331 1C9B 5 1C9F 331 1ED0 5 1ED3 331 211A 5 211D 331 24F1 5 24F2 331 26F4 5 26F5 331 1F65 5 1F68 331 BBA 5 BC1 331 1D30 5 1D36 331 805 5 80C 331 2791 5 2791 331 16E4 5 16EA 331 1FFA 5 1FFD 331 25B4 5 25B5 331 C4F 5 C56 331 1B36 5 1B3B 331 164 5 1C3 331 1E3D 5 1E40 331 89A 5 8A1 331 1981 5 1987 331 208F 5 2092 331 2661 5 2662 331 CDC 5 CE3 331 22CC 5 22CE 331 3C6 5 3CD 331 1ED2 5 1ED5 331 1C9D 5 1CA1 331 211C 5 211F 331 26F6 5 26F7 331 2361 5 2362 331 1F67 5 1F6A 331 BBC 5 BC3 331 24F3 5 24F4 331 45B 5 501 331 2511 5 2512 331 807 5 80E 331 21E1 5 21E5 331 1FFC 5 1FFF 331 25B6 5 25B7 331 2793 5 2793 331 16E6 5 16EC 331 1B38 5 1B3D 331 1983 5 1989 331 CDE 5 CE5 331 22CE 5 22D0 331 3C8 5 3CF 331 1E3F 5 1E42 331 89C 5 8A3 331 2363 5 2364 331 1C9F 5 1CA3 331 1ED4 5 1ED7 331 211E 5 2121 331 24F5 5 24F7 331 26F8 5 26F9 331 931 5 B5B 331 BBE 5 BC5 331 1F69 5 1F6C 331 2513 5 2514 331 1D34 5 1D39 331 809 5 810 331 1FFE 5 2001 331 2795 5 2795 331 16E8 5 16EE 331 25B8 5 25B9 331 1E41 5 1E44 331 89E 5 8A5 331 1B3A 5 1B3F 331 1985 5 198B 331 CE0 5 CE7 331 22D0 5 22D2 331 3CA 5 3D1 331 1ED6 5 1ED9 331 1CA1 5 1CA5 331 2120 5 2123 331 26FA 5 26FB 331 2365 5 2366 331 24F7 5 24F8 331 1F6B 5 1F6E 331 BC0 5 BC7 331 2515 5 2516 331 80B 5 812 331 4FC 5 503 331 21E5 5 21E8 331 16EA 5 16F0 331 2797 5 2797 331 746 5 74D 331 1D36 5 1D3E 331 1B3C 5 1B41 331 2000 5 2003 331 1987 5 198D 331 22D2 5 22DD 331 CE2 5 CE9 331 207 5 286 331 3CC 5 3D3 331 1E43 5 1E46 331 8A0 5 8A7 331 2367 5 2368 331 1CA3 5 1CA7 331 1ED8 5 1EDB 331 2122 5 2125 331 26FC 5 26FD 331 159F 5 15A5 331 24F9 5 24FA 331 4FE 5 505 331 1F6D 5 1F70 331 80D 5 814 331 BC2 5 BC9 331 748 5 750 331 21E7 5 21EA 331 16EC 5 16F2 331 2002 5 2005 331 1E45 5 1E48 331 8A2 5 8A9 331 1B3E 5 1B43 331 CE4 5 CEB 331 1989 5 198F 331 3CE 5 3D5 331 1EDA 5 1EDD 331 1CA5 5 1CA9 331 2124 5 2127 331 26FE 5 26FF 331 15A1 5 15A7 331 2369 5 236A 331 243E 5 243F 331 1F6F 5 1F72 331 BC4 5 BCB 331 24FB 5 24FD 331 80F 5 816 331 21E9 5 21EC 331 16EE 5 16F4 331 500 5 507 331 74A 5 752 331 C51 5 C58 331 2004 5 2007 331 8A4 5 8AB 331 1B40 5 1B45 331 198B 5 1991 331 3D0 5 3D7 331 CE6 5 CED 331 1BFA 5 1C11 331 1E47 5 1E4A 331 25BE 5 25BF 331 2091 5 2094 331 2440 5 2441 331 266B 5 266C 331 236B 5 236C 331 1CA7 5 1CAB 331 1EDC 5 1EDF 331 981 5 B5C 331 2126 5 2129 331 15A3 5 15A9 331 24FD 5 24FE 331 2700 5 2701 331 502 5 509 331 1F71 5 1F74 331 811 5 818 331 BC6 5 BCD 331 74C 5 754 331 21EB 5 21EE 331 16F0 5 16F6 331 2006 5 2009 331 25C0 5 25D1 331 C53 5 C5A 331 1E49 5 1E4C 331 8A6 5 8AD 331 1B42 5 1B47 331 198D 5 1993 331 3D2 5 3D9 331 2093 5 2096 331 CE8 5 CEF 331 1EDE 5 1EE1 331 1CA9 5 1CAD 331 15A5 5 15AB 331 236D 5 236E 331 2442 5 2443 331 2128 5 212B 331 2702 5 2703 331 1F73 5 1F76 331 BC8 5 BCF 331 24FF 5 2500 331 251D 5 251E 331 813 5 81A 331 504 5 50B 331 21ED 5 21F0 331 16F2 5 16F9 331 1D3E 5 1D41 331 C55 5 C5C 331 8A8 5 8AF 331 1B44 5 1B49 331 198F 5 1995 331 3D4 5 3DB 331 1E4B 5 1E4E 331 2008 5 200B 331 2095 5 2098 331 2444 5 2445 331 236F 5 2370 331 1CAB 5 1CAF 331 1EE0 5 1EE3 331 266F 5 2671 331 CEA 5 CF1 331 15A7 5 15AD 331 212A 5 212D 331 2501 5 2502 331 2704 5 2705 331 506 5 50D 331 1F75 5 1F78 331 251F 5 2521 331 815 5 81C 331 BCA 5 BD1 331 21EF 5 21F2 331 16F4 5 16FC 331 750 5 757 331 2799 5 2799 331 200A 5 200D 331 C57 5 C5E 331 1E4D 5 1E50 331 8AA 5 8B1 331 1B46 5 1B4B 331 3D6 5 3DD 331 2097 5 209A 331 2671 5 2672 331 CEC 5 CF3 331 1CAD 5 1CB1 331 1EE2 5 1EE5 331 2446 5 2447 331 212C 5 212F 331 2706 5 2707 331 15A9 5 15AF 331 1F77 5 1F7A 331 BCC 5 BD3 331 2503 5 2504 331 2521 5 2522 331 817 5 81E 331 16F6 5 16FE 331 508 5 50F 331 752 5 759 331 21F1 5 21F4 331 C59 5 C60 331 8AC 5 8B3 331 1B48 5 1B4D 331 22DE 5 22DF 331 3D8 5 3DF 331 1E4F 5 1E52 331 200C 5 200F 331 279B 5 279B 331 1C1A 5 1C59 331 2099 5 209C 331 2448 5 2449 331 1CAF 5 1CB3 331 1EE4 5 1EE7 331 2673 5 2674 331 CEE 5 CF8 331 212E 5 2131 331 2505 5 2506 331 2708 5 2709 331 50A 5 511 331 1F79 5 1F7C 331 2523 5 2527 331 819 5 820 331 BCE 5 BD5 331 15AB 5 15B1 331 754 5 75B 331 21F3 5 21F6 331 279D 5 279D 331 200E 5 2011 331 C5B 5 C62 331 1E51 5 1E54 331 8AE 5 8B5 331 1B4A 5 1B4F 331 3DA 5 3E1 331 209B 5 209E 331 2675 5 2676 331 CF0 5 CFA 331 22E0 5 22E1 331 1EE6 5 1EE9 331 244A 5 244B 331 2130 5 2133 331 15AD 5 15B3 331 1F7B 5 1F7E 331 BD0 5 BD7 331 2507 5 2508 331 81B 5 822 331 50C 5 513 331 1CB1 5 1CB5 331 21F5 5 21FA 331 279F 5 279F 331 C5D 5 C64 331 756 5 75D 331 2010 5 2013 331 8B0 5 8B7 331 1B4C 5 1B51 331 3DC 5 3E3 331 1E53 5 1E56 331 25D2 5 25D5 331 22E2 5 22E3 331 209D 5 20A0 331 244C 5 244D 331 1EE8 5 1EEB 331 2677 5 2678 331 CF2 5 CFE 331 1CB3 5 1CB7 331 788 5 792 331 2132 5 2135 331 2509 5 250A 331 270C 5 270D 331 50E 5 515 331 1F7D 5 1F80 331 2527 5 2528 331 81D 5 824 331 BD2 5 BD9 331 15AF 5 15CA 331 1D40 5 1D43 331 758 5 75F 331 21F7 5 21FC 331 27A1 5 27A1 331 2012 5 2015 331 C5F 5 C66 331 16FC 5 1706 331 1E55 5 1E58 331 8B2 5 8B9 331 1B4E 5 1B53 331 3DE 5 3E5 331 1991 5 1997 331 209F 5 20A2 331 2679 5 267A 331 CF4 5 D00 331 22E4 5 22E5 331 1EEA 5 1EED 331 244E 5 2450 331 2371 5 2372 331 2134 5 2137 331 270E 5 270F 331 15B1 5 15CC 331 1F7F 5 1F82 331 BD4 5 BDB 331 250B 5 250C 331 2529 5 252A 331 81F 5 826 331 510 5 517 331 1CB5 5 1CB9 331 16FE 5 1912 331 27A3 5 27A3 331 C61 5 C68 331 75A 5 761 331 1D42 5 1D47 331 8B4 5 8BB 331 1B50 5 1B55 331 1E57 5 1E5A 331 2014 5 2017 331 1993 5 1999 331 22E6 5 22E7 331 3E0 5 3E7 331 20A1 5 20A4 331 2450 5 2451 331 267B 5 267C 331 1EEC 5 1EEF 331 A09 5 B5E 331 2373 5 2374 331 1CB7 5 1CBB 331 78C 5 793 331 2136 5 2139 331 250D 5 250E 331 2710 5 2711 331 512 5 519 331 1F81 5 1F84 331 252B 5 252F 331 BD6 5 BDD 331 15B3 5 15CE 331 1D44 5 1D48 331 821 5 828 331 75C 5 763 331 21FB 5 21FE 331 27A5 5 27A5 331 2016 5 2019 331 C63 5 C6A 331 1700 5 1915 331 8B6 5 8BD 331 1B52 5 1B57 331 1E59 5 1E5C 331 1995 5 199B 331 20A3 5 20A6 331 267D 5 267E 331 22E8 5 22E9 331 1EEE 5 1EF1 331 2452 5 2453 331 3E2 5 3E9 331 78E 5 795 331 2375 5 2376 331 2138 5 213B 331 1F83 5 1F86 331 250F 5 2510 331 514 5 51B 331 1CB9 5 1CBD 331 21FD 5 2204 331 823 5 82A 331 27A7 5 27A7 331 C65 5 C6C 331 1B54 5 1B59 331 182 5 1E6 331 75E 5 765 331 CFA 5 D02 331 1997 5 199D 331 3E4 5 3EB 331 1E5B 5 1E5E 331 20A5 5 20A8 331 2454 5 2455 331 267F 5 2680 331 8B8 5 8BF 331 2377 5 2378 331 1EF0 5 1EF3 331 1CBB 5 1CBF 331 213A 5 213D 331 516 5 51D 331 1F85 5 1F88 331 252F 5 2530 331 2714 5 2715 331 790 5 79C 331 760 5 767 331 1D48 5 1D4C 331 27A9 5 27A9 331 825 5 82C 331 C67 5 C6E 331 1B56 5 1B5B 331 1E5D 5 1E60 331 8BA 5 8C1 331 1999 5 199F 331 20A7 5 20AA 331 2681 5 2682 331 CFC 5 D03 331 22EC 5 22ED 331 A0F 5 B5F 331 2456 5 2457 331 3E6 5 3ED 331 1EF2 5 1EF5 331 2379 5 237B 331 213C 5 213F 331 1F87 5 1F8A 331 2716 5 2717 331 15C9 5 15CF 331 1CBD 5 1CC1 331 518 5 51F 331 827 5 82E 331 1706 5 1917 331 27AB 5 27AB 331 C69 5 C70 331 762 5 769 331 1D4A 5 1D5A 331 2531 5 2533 331 25DE 5 25E0 331 1B58 5 1B5D 331 199B 5 19A1 331 CFE 5 D04 331 22EE 5 22EF 331 3E8 5 3EF 331 1E5F 5 1E62 331 20A9 5 20AC 331 2683 5 2684 331 8BC 5 8C3 331 2458 5 2459 331 237B 5 237E 331 1CBF 5 1CC3 331 1EF4 5 1EF7 331 213E 5 2153 331 15CB 5 15D1 331 51A 5 521 331 1F89 5 1F8C 331 2533 5 2534 331 764 5 76B 331 27AD 5 27AD 331 829 5 830 331 C6B 5 C72 331 25E0 5 25E1 331 1E61 5 1E64 331 8BE 5 8C5 331 1B5A 5 1B5F 331 199D 5 19A3 331 20AB 5 20AE 331 2685 5 2686 331 D00 5 D06 331 22F0 5 22F1 331 3EA 5 3F1 331 1EF6 5 1EF9 331 796 5 7A1 331 245A 5 245B 331 15CD 5 15D3 331 1CC1 5 1CC5 331 BD8 5 BDF 331 51C 5 523 331 1F8B 5 1F8E 331 82B 5 832 331 1912 5 1918 331 27AF 5 27AF 331 C6D 5 C74 331 766 5 76D 331 2535 5 2537 331 2018 5 201B 331 1B5C 5 1B61 331 25E2 5 25E3 331 199F 5 19A5 331 D02 5 D08 331 22F2 5 22F3 331 3EC 5 3F3 331 1E63 5 1E66 331 20AD 5 20B0 331 2687 5 2688 331 8C0 5 8C7 331 245C 5 245D 331 237F 5 2380 331 1EF8 5 1EFB 331 1CC3 5 1CC7 331 798 5 7A3 331 2152 5 2155 331 15CF 5 1648 331 51E 5 525 331 1F8D 5 1F90 331 2537 5 2539 331 1D58 5 1D5B 331 82D 5 834 331 BDA 5 BE1 331 768 5 76F 331 27B1 5 27B1 331 C6F 5 C76 331 1914 5 191A 331 201A 5 201D 331 25E4 5 25E5 331 1E65 5 1E68 331 8C2 5 8C9 331 1B5E 5 1B63 331 19A1 5 19A7 331 20AF 5 20B2 331 D04 5 D0A 331 22F4 5 22F5 331 3EE 5 3F5 331 2689 5 268A 331 1EFA 5 1EFD 331 2381 5 2382 331 245E 5 2460 331 2154 5 2157 331 15D1 5 1698 331 1CC5 5 1CC9 331 BDC 5 BE3 331 F9 5 14E 331 520 5 527 331 1F8F 5 1F92 331 82F 5 836 331 1916 5 191C 331 27B3 5 27B3 331 76A 5 771 331 1D5A 5 1D5D 331 2539 5 253A 331 C71 5 C78 331 1B60 5 1B65 331 201C 5 201F 331 19A3 5 19A9 331 D06 5 D0C 331 22F6 5 22F7 331 3F0 5 3F7 331 1E67 5 1E6A 331 8C4 5 8CB 331 20B1 5 20B4 331 2460 5 2461 331 2383 5 2385 331 1CC7 5 1CCB 331 1EFC 5 1EFF 331 268B 5 268C 331 2156 5 2159 331 15D3 5 169B 331 2718 5 271A 331 522 5 529 331 1F91 5 1F94 331 76C 5 773 331 1D5C 5 1DB8 331 27B5 5 27B5 331 831 5 838 331 BDE 5 BE5 331 201E 5 2021 331 25E8 5 25E9 331 C73 5 C7B 331 1E69 5 1E6C 331 8C6 5 8CD 331 1B62 5 1B67 331 19A5 5 19AB 331 3F2 5 3F9 331 20B3 5 20B6 331 D08 5 D0E 331 1EFE 5 1F01 331 2385 5 2386 331 2462 5 2463 331 2158 5 215B 331 271A 5 271B 331 BE0 5 BE7 331 524 5 52B 331 1F93 5 1F97 331 833 5 83A 331 27B7 5 27B7 331 76E 5 775 331 253D 5 253E 331 C75 5 C7D 331 2020 5 2023 331 1B64 5 1B6E 331 25EA 5 25EB 331 19A7 5 19AD 331 3F4 5 3FB 331 1C36 5 1C65 331 1E6B 5 1E6E 331 8C8 5 8CF 331 20B5 5 20B8 331 2464 5 2465 331 2387 5 2389 331 1F00 5 1F03 331 268F 5 2690 331 7A0 5 7A7 331 D0A 5 D10 331 215A 5 215D 331 271C 5 271D 331 526 5 52D 331 1F95 5 1F98 331 253F 5 2540 331 1D60 5 1DBD 331 835 5 83C 331 BE2 5 BE9 331 FF 5 159 331 770 5 777 331 27B9 5 27B9 331 2022 5 2025 331 25EC 5 25ED 331 C77 5 C7F 331 1E6D 5 1E70 331 8CA 5 8D1 331 1B66 5 1B70 331 19A9 5 19AF 331 3F6 5 3FD 331 20B7 5 20BA 331 2691 5 2692 331 D0C 5 D12 331 1F02 5 1F05 331 7A2 5 7A9 331 2389 5 238B 331 2466 5 2467 331 215C 5 215F 331 271E 5 271F 331 BE4 5 BEB 331 528 5 52F 331 1F97 5 1F9A 331 837 5 83E 331 2541 5 2542 331 772 5 779 331 2024 5 2027 331 1B68 5 1B72 331 25EE 5 25EF 331 27BB 5 27BB 331 19AB 5 19B1 331 3F8 5 3FF 331 1E6F 5 1E72 331 8CC 5 8D3 331 1C3A 5 1C66 331 20B9 5 20BC 331 2468 5 2469 331 2693 5 2694 331 238B 5 238C 331 1F04 5 1F07 331 7A4 5 7AB 331 B59 5 B60 331 D0E 5 D14 331 215E 5 2161 331 2720 5 2721 331 52A 5 531 331 1F99 5 1F9C 331 2543 5 2544 331 839 5 840 331 BE6 5 BED 331 774 5 77B 331 27BD 5 27BD 331 2026 5 2029 331 25F0 5 25F1 331 1E71 5 1E74 331 8CE 5 8D5 331 C7B 5 C82 331 1918 5 191E 331 19AD 5 19B3 331 3FA 5 401 331 20BB 5 20BE 331 2695 5 2696 331 D10 5 D16 331 22F8 5 22F9 331 1F06 5 1F09 331 B5B 5 B62 331 7A6 5 7AD 331 238D 5 238E 331 246A 5 246B 331 2160 5 2163 331 2722 5 2724 331 BE8 5 BEF 331 1CC9 5 1CCD 331 52C 5 533 331 1F9B 5 1F9E 331 83B 5 842 331 2545 5 2546 331 191A 5 1920 331 776 5 77D 331 C7D 5 C84 331 2028 5 202B 331 25F2 5 25F3 331 27BF 5 27BF 331 19AF 5 19B5 331 3FC 5 403 331 1E73 5 1E76 331 8D0 5 8D7 331 22FA 5 22FB 331 1C3E 5 1C67 331 20BD 5 20C0 331 246C 5 246D 331 2697 5 2698 331 238F 5 2390 331 1F08 5 1F0B 331 B5D 5 B64 331 D12 5 D18 331 1CCB 5 1CCF 331 7A8 5 7AF 331 2162 5 2165 331 52E 5 535 331 1F9D 5 1FA0 331 2547 5 2548 331 83D 5 844 331 BEA 5 BF4 331 1647 5 169C 331 1DB8 5 1DD9 331 778 5 77F 331 27C1 5 27C1 331 202A 5 202D 331 25F4 5 25F6 331 C7F 5 C86 331 191C 5 1922 331 1E75 5 1E78 331 8D2 5 8D9 331 1B6E 5 1B73 331 3FE 5 405 331 19B1 5 19B7 331 20BF 5 20C2 331 2699 5 269A 331 D14 5 D1A 331 22FC 5 22FD 331 1F0A 5 1F0D 331 B5F 5 B66 331 246E 5 246F 331 7AA 5 7B1 331 2391 5 2392 331 2164 5 2167 331 BEC 5 BF6 331 1CCD 5 1CD1 331 1F9F 5 1FA2 331 83F 5 846 331 2549 5 254A 331 191E 5 1924 331 77A 5 781 331 C81 5 C88 331 202C 5 202F 331 25F6 5 25F7 331 27C3 5 27C3 331 1E77 5 1E7A 331 8D4 5 8DB 331 19B3 5 19B9 331 22FE 5 22FF 331 400 5 407 331 20C1 5 20C4 331 1F0C 5 1F0F 331 269B 5 269C 331 D16 5 D1C 331 1CCF 5 1CD3 331 2166 5 2169 331 7AC 5 7B3 331 254B 5 254C 331 BEE 5 BF8 331 2393 5 2394 331 841 5 848 331 77C 5 783 331 27C5 5 27C5 331 202E 5 2031 331 25F8 5 25F9 331 8D6 5 8DD 331 C83 5 C8A 331 1920 5 1926 331 1E79 5 1E7C 331 19B5 5 19BB 331 20C3 5 20C6 331 1F0E 5 1F11 331 269D 5 269F 331 D18 5 D1E 331 2300 5 2301 331 402 5 409 331 7AE 5 7B5 331 2395 5 2396 331 2168 5 216B 331 254D 5 254E 331 2732 5 2733 331 1CD1 5 1CD5 331 1922 5 1928 331 77E 5 785 331 C85 5 C8C 331 2030 5 2033 331 25FA 5 25FB 331 27C7 5 27C7 331 843 5 84A 331 19B7 5 19BD 331 2302 5 2303 331 404 5 40B 331 1E7B 5 1E7E 331 8D8 5 8DF 331 20C5 5 20C8 331 269F 5 26A0 331 D1A 5 D20 331 1F10 5 1F13 331 1CD3 5 1CD7 331 216A 5 217C 331 7B0 5 7B7 331 254F 5 2551 331 BF2 5 BFA 331 2397 5 2398 331 845 5 84C 331 780 5 787 331 27C9 5 27C9 331 2032 5 2035 331 25FC 5 25FD 331 C87 5 C8E 331 1924 5 192A 331 1E7D 5 1E80 331 8DA 5 8E1 331 19B9 5 19BF 331 20C7 5 20CA 331 D1C 5 D22 331 2304 5 2305 331 406 5 40D 331 7B2 5 7B9 331 2399 5 239A 331 216C 5 217E 331 BF4 5 C00 331 1CD5 5 1CD9 331 1F12 5 1F15 331 530 5 537 331 2551 5 2552 331 1926 5 192D 331 782 5 789 331 1DDA 5 1DF7 331 C89 5 C90 331 2034 5 2037 331 25FE 5 25FF 331 27CB 5 27CB 331 847 5 84E 331 19BB 5 19C1 331 2306 5 2307 331 408 5 40F 331 1E7F 5 1E82 331 8DC 5 8E3 331 20C9 5 20CC 331 D1E 5 D24 331 2470 5 2471 331 1F14 5 1F17 331 B61 5 B68 331 1CD7 5 1CDB 331 7B4 5 7BB 331 BF6 5 C0D 331 239B 5 239C 331 1FA1 5 1FA4 331 2553 5 2554 331 849 5 850 331 784 5 78B 331 27CD 5 27CD 331 2036 5 2039 331 C8B 5 C92 331 1928 5 192F 331 375 5 37C 331 532 5 539 331 2600 5 2601 331 1E81 5 1E84 331 8DE 5 8E5 331 19BD 5 19C3 331 20CB 5 20CE 331 D20 5 D26 331 2308 5 2309 331 40A 5 411 331 B63 5 B6A 331 2472 5 2473 331 7B6 5 7BD 331 239D 5 239E 331 273A 5 273B 331 1CD9 5 1CE0 331 1F16 5 1F19 331 BF8 5 C10 331 534 5 53B 331 1FA3 5 1FA6 331 2555 5 2556 331 192A 5 1931 331 377 5 37E 331 786 5 790 331 C8D 5 C94 331 27CF 5 27CF 331 84B 5 852 0 GROUP 5 1B8C 102 {ACAD_REACTORS 330 D 102 } 330 D 100 AcDbGroup 300 70 1 71 1 0 GROUP 5 2276 102 {ACAD_REACTORS 330 D 102 } 330 D 100 AcDbGroup 300 70 1 71 1 0 GROUP 5 24E0 102 {ACAD_REACTORS 330 D 102 } 330 D 100 AcDbGroup 300 70 1 71 1 0 GROUP 5 24F6 102 {ACAD_REACTORS 330 D 102 } 330 D 100 AcDbGroup 300 70 1 71 1 0 GROUP 5 261A 102 {ACAD_REACTORS 330 D 102 } 330 D 100 AcDbGroup 300 70 1 71 1 0 GROUP 5 2626 102 {ACAD_REACTORS 330 D 102 } 330 D 100 AcDbGroup 300 70 1 71 1 0 GROUP 5 281C 102 {ACAD_REACTORS 330 D 102 } 330 D 100 AcDbGroup 300 70 1 71 1 0 GROUP 5 2825 102 {ACAD_REACTORS 330 D 102 } 330 D 100 AcDbGroup 300 70 1 71 1 0 LAYOUT 5 AA9 102 {ACAD_REACTORS 330 AA6 102 } 330 AA6 100 AcDbPlotSettings 1 2 CAPTURE FAX BVRP 4 6 40 0.0 41 0.0 42 0.0 43 0.0 44 0.0 45 0.0 46 0.0 47 0.0 48 0.0 49 0.0 140 0.0 141 0.0 142 1.0 143 1.0 70 688 72 0 73 0 74 5 7 75 16 147 1.0 148 0.0 149 0.0 100 AcDbLayout 1 Layout1 70 1 71 1 10 0.0 20 0.0 11 12.0 21 9.0 12 0.0 22 0.0 32 0.0 14 1.000000000000000E+20 24 1.000000000000000E+20 34 1.000000000000000E+20 15 -1.000000000000000E+20 25 -1.000000000000000E+20 35 -1.000000000000000E+20 146 0.0 13 0.0 23 0.0 33 0.0 16 1.0 26 0.0 36 0.0 17 0.0 27 1.0 37 0.0 76 0 330 16 0 LAYOUT 5 AA8 102 {ACAD_REACTORS 330 AA6 102 } 330 AA6 100 AcDbPlotSettings 1 2 Epson Stylus COLOR 600.pc3 4 A4 6 40 3.757083177566528 41 14.7637300491333 42 3.757080078125 43 3.757080078125 44 209.9733276367187 45 296.9683227539062 46 0.0 47 0.0 48 16814.80616863765 49 80519.05767779187 140 17036.17437121394 141 80664.16464409989 142 1.0 143 0.7950087270957532 70 11952 72 1 73 1 74 4 7 75 0 147 1.257847827222099 148 -16814.80616863765 149 -80519.05767779187 100 AcDbLayout 1 Model 70 1 71 0 10 0.0 20 0.0 11 12.0 21 9.0 12 0.0 22 0.0 32 0.0 14 0.0 24 0.0 34 0.0 15 0.0 25 0.0 35 0.0 146 0.0 13 0.0 23 0.0 33 0.0 16 1.0 26 0.0 36 0.0 17 0.0 27 1.0 37 0.0 76 0 330 19 0 MLINESTYLE 5 1C 102 {ACAD_REACTORS 330 E 102 } 330 E 100 AcDbMlineStyle 2 STANDARD 70 0 3 62 0 51 90.0 52 90.0 71 2 49 0.5 62 256 6 BYLAYER 49 -0.5 62 256 6 BYLAYER 0 ACDBPLACEHOLDER 5 AA5 102 {ACAD_REACTORS 330 AA4 102 } 330 AA4 0 DICTIONARYVAR 5 933 102 {ACAD_REACTORS 330 932 102 } 330 932 100 DictionaryVariables 280 0 1 112 0 ENDSEC 0 EOF CaveConverter_src/test/data/regression/Riesending_lrou_200909_in.svx0000644000000000000000000024315312560565266024471 0ustar rootroot*begin Riesending *units compass clino degrees *entrance Hauptzug.1 ;*fix Hauptzug.1 4573897.0 5284922.2 1843 *fix Hauptzug.1 423765.70 284479.95 1843 *data normal from to length bearing gradient ignoreall *begin Hauptzug ;Johann Westhauser, Ulrich Meyer: 4.8.2002 *calibrate declination -1.9 ;2002 BMN-M31 ;*calibrate declination -0.8 ;2002 Gauss-Krueger 1 2 10.00 0 -90 ;Eingangsdoline 2 3 7.80 205 -33 3 4 23.24 0 -90 4 5 2.35 220 +29 5 6 2.47 137 -50 6 7 8.62 135 -55 7 8 7.31 0 -90 8 9 5.91 0 -42 ;Johann Westhauser, Marcus Preissner, Ulrich Meyer: 11.8.2002 *calibrate declination -1.9 ;2002 BMN-M31 ;*calibrate declination -0.8 ;2002 Gauss-Krueger 9 10 14.50 0 -90 ;Eselsohr, P60 10 11 28.50 0 -90 11 12 17.10 0 -90 12 13 4.30 60 0 13 14 31.00 0 -90 14 15 19.00 0 -90 15 16 1.50 0 0 16 17 14.00 0 -90 17 18 115.00 0 -90 ;Grund 180er 18 19 19.70 82 -20 19 20 14.20 15 -38 ;Johann Westhauser, Ulrich Meyer: 1.6.2003 *calibrate declination -2.0 ;2003 BMN-M31 ;*calibrate declination -0.9 ;2003 Gauss-Krueger 20 21 9.40 0 -90 ;Rapido 21 22 4.17 37 17 22 23 7.35 329 -16 23 24 3.80 310 -59 24 25 2.06 95 8 25 26 8.53 65 -75 26 27 4.65 0 -90 27 28 4.70 0 -90 28 29 23.90 0 -90 ;Grund 40m-Gumpen 29 30 7.95 0 25 ;Thomas Matthalm, Marcus Preissner, Ulrich Meyer: 19.6.2003 *calibrate declination -2.0 ;2003 BMN-M31 ;*calibrate declination -0.9 ;2003 Gauss-Krueger 30 31 11.35 318 43 31 32 3.67 306 -16 32 33 13.70 334 -59 ;Fondue-Kammer ;Johann Westhauser, Ulrich Meyer: 21.6.2003 *calibrate declination -2.0 ;2003 BMN-M31 ;*calibrate declination -0.9 ;2003 Gauss-Krueger 33 34 4.10 96 -20 ;Riesencanyon 34 35 2.43 30 -28 35 36 1.99 286 -11 36 37 2.56 343 -3 37 38 2.00 268 -2 38 39 2.70 318 0 39 40 3.65 96 3 40 41 2.13 42 -12 41 42 3.41 94 1 42 43 2.93 10 -2 43 44 6.30 72 -1 44 45 1.78 18 -10 45 46 1.73 305 13 46 47 1.30 37 4 47 48 2.54 124 22 48 49 3.60 193 10 49 50 2.52 140 -16 50 51 1.38 63 0 51 52 0.97 0 2 52 53 3.98 57 -43 53 54 3.18 116 5 54 55 1.76 70 -1 55 56 2.42 332 -5 56 57 1.00 68 -23 57 58 7.65 0 90 ;Schraege Halle ;Johann Westhauser, Marcus Preissner, Thomas Matthalm: 18.10.2003 *calibrate declination -2.0 ;2003 BMN-M31 ;*calibrate declination -0.9 ;2003 Gauss-Krueger 58 59 3.59 57 -27 59 60 10.27 132 -4 60 61 1.99 113 -49 61 62 6.70 132 1 62 63 0.58 275 -20 63 64 6.88 115 -11 64 65 3.95 139 -38 65 66 2.36 231 -22 66 67 3.59 150 -8 67 68 0.88 75 0 ;Nirvana oben 68 69 24.10 0 -90 69 70 2.85 176 -5 70 71 5.30 358 -42 71 72 13.60 10 -78 ;Vereinigung mit Sammler 72 73 1.40 165 -1 73 74 6.45 114 -4 74 75 3.24 185 -4 75 76 3.18 265 -10 76 77 2.60 180 -9 77 78 4.50 98 -7 78 79 0.20 110 -45 ;Johann Westhauser, Wolfgang Zillig: 28.8.2004 *calibrate declination -2.1 ;2004 BMN-M31 ;*calibrate declination -1.0 ;2004 Gauss-Krueger 79 80 5.02 106 -18 80 81 4.81 0 -90 81 82 0.78 70 0 82 83 5.25 186 15 83 84 3.02 90 36 84 85 2.95 146 -22 85 86 2.66 165 -13 86 87 4.88 162 -18 87 88 2.06 61 -8 88 89 4.42 104 -4 89 90 2.53 185 -5 90 91 5.91 263 -36 91 92 3.12 193 -19 92 93 3.91 140 8 93 94 3.61 182 -2 94 95 6.75 105 2 95 96 2.18 67 -5 96 97 1.61 164 1 97 98 4.29 227 -6 98 99 3.55 136 -2 99 100 2.42 95 3 100 101 3.62 132 0 101 102 4.40 198 0 102 103 5.62 77 3 ;Waschsalon ;Johann Westhauser, Thomas Matthalm: 17.7.2004 *calibrate declination -2.1 ;2004 BMN-M31 ;*calibrate declination -1.0 ;2004 Gauss-Krueger 103 104 2.70 35 -24 104 105 1.32 52 -19 105 106 3.34 169 4 106 107 3.40 0 90 107 108 3.47 180 6 108 109 4.13 148 38 109 110 3.89 213 7 110 111 5.09 103 -2 111 112 4.14 184 -3 112 113 2.22 74 -7 113 114 5.58 139 -7 114 115 3.58 181 -20 115 116 3.31 92 -3 116 117 6.74 52 -11 117 118 1.68 154 0 118 119 6.93 206 -26 119 120 3.03 130 -13 120 121 3.68 179 -10 121 122 3.92 130 -17 122 123 2.41 152 -18 123 124 6.28 99 7 124 125 3.34 177 -39 125 126 5.12 129 -13 126 127 2.30 65 13 ;Exzentriques-Schacht ;Johann Westhauser, Florian Schwarz, Thomas Matthalm: 16.10.2004 *calibrate declination -2.1 ;2004 BMN-M31 ;*calibrate declination -1.0 ;2004 Gauss-Krueger 127 128 20.10 0 -90 128 129 2.65 259 6 129 130 7.65 98 -4 130 131 3.28 219 -11 131 132 2.70 240 -71 132 133 9.30 0 -90 133 134 1.20 141 21 134 135 7.65 143 14 135 136 2.09 240 14 136 137 10.70 144 0 ;Johann Westhauser, Wolfgang Zillig, Thomas Matthalm: 31.10.2004 *calibrate declination -2.1 ;2004 BMN-M31 ;*calibrate declination -1.0 ;2004 Gauss-Krueger 137 138 14.10 0 -90 138 139 4.10 210 20 139 140 16.56 0 -90 ;Lagune 140 141 1.05 0 90 141 142 5.75 325 24 142 143 7.25 258 -7 143 144 5.53 198 -19 144 145 3.25 123 -14 145 146 1.45 25 -48 146 147 6.90 111 -60 ;-500m-Gumpen 147 148 2.40 150 1 148 149 4.03 98 25 0 1.3 10 5 ;Marcus Preissner, Ulrich Meyer: 18.6.2005 *calibrate declination -2.1 ;2005 BMN-M31 ;*calibrate declination -1.0 ;2005 Gauss-Krueger 149 150 2.23 135 -53 0.5 0.5 10 5 150 151 4.45 36 5 0 0.7 10 5 151 152 2.36 353 -9 1 1 8 2 152 153 3.00 0 -90 0.5 1.2 9 3 ;Riviera 153 154 5.30 26 12 0.7 0 7 2.5 154 155 2.70 111 -14 2 0 5 2.5 155 156 5.79 39 1 0 2.5 3 2 156 157 6.05 148 19 2 1 0 60 157 158 7.54 57 0 2 2 0 60 ;Schluss mit Lustig 158 159 16.37 0 -90 1 0 16 44 159 160 1.80 60 33 5 0 16 44 160 161 17.30 0 -90 6 0 33 27 161 162 11.15 60 -61 0 5 40 20 ;Johann Westhauser, Thomas Matthalm, Ulrich Meyer: 2.7.2005 *calibrate declination -2.1 ;2005 BMN-M31 ;*calibrate declination -1.0 ;2005 Gauss-Krueger 162 163 20.30 0 -90 0 2 60 10 163 165 1.27 355 10 0 2 60 10 165 166 6.15 35 -73 1 1 50 6 166 167 2.11 128 -3 2 0 40 6 167 168 4.92 108 -71 0.8 0 15 3.5 168 169 1.90 104 -52 0 0.5 10 3 169 170 7.64 123 -1 1 0 10 3.5 170 171 3.93 68 -12 0 0.8 10 4 171 172 2.54 141 -10 0.7 0 10 4 172 173 5.12 71 +2 0 1 10 20 173 174 5.24 50 -61 0 1 10 20 174 175 1.50 140 -10 4 0 10 15 175 176 14.30 0 -90 4.5 0 20 3.5 ;-600m-Gumpen ;Johann Westhauser, Olivier Roche, Ulrich Meyer: 9.7.2005 *calibrate declination -2.1 ;2005 BMN-M31 ;*calibrate declination -1.0 ;2005 Gauss-Krueger 176 177 4.74 78 -3 1 1.5 10 4 177 178 5.98 115 -2 0.9 0 8 4 178 179 4.35 32 -24 0 0.7 7 2 179 180 5.98 112 -10 0 0.6 6 3 180 181 3.45 38 -6 1.6 0 5 3 181 182 10.10 319 2 0 1.3 4 4 182 183 6.99 329 -2 0 0.5 6 4 183 184 3.65 44 9 0.7 0 5 6 184 185 3.35 349 22 0 0.9 4 8 185 186 1.78 70 35 0 1.4 3 9 186 187 3.49 132 -3 1 0 3 9 187 188 4.32 183 -70 1.1 0 6 5 188 189 5.33 68 -17 0.9 0 7 5 189 190 3.81 25 -57 0 0.7 9 2.5 190 191 6.45 38 5 1 0 9 8 191 192 2.57 57 30 0 1.4 8 10 ;Schleierfaelle 192 193 7.95 93 -80 2 0 15 15 193 194 9.70 90 -75 4 0.5 20 10 194 195 1.87 86 -25 4 0 20 10 195 196 7.25 26 -72 3 0 25 4 196 197 5.73 50 -12 3 0 20 2 ;Grosse Schlucht ;Marcus Preissner, Ulrich Meyer: 16.7.2005 *calibrate declination -2.1 ;2005 BMN-M31 ;*calibrate declination -1.0 ;2005 Gauss-Krueger 197 198 3.23 39 -4 5 0 15 75 198 199 9.28 350 -80 6 0 25 65 199 200 10.07 0 -90 5 0 35 55 200 201 9.30 50 -40 0 4 40 50 201 202 6.06 0 -90 0 5 45 45 202 203 1.41 313 -27 0 5 45 45 203 204 9.55 0 -90 0 6 55 35 204 205 12.97 0 -90 0 7 67 23 205 206 13.05 0 -90 3 6 80 10 206 207 12.78 188 -33 ;lrou fehlt ;Schluchtgrund ;Johann Westhauser, Wolfgang Zillig, Ulrich Meyer: 30.10.2005 *calibrate declination -2.1 ;2005 BMN-M31 ;*calibrate declination -1.0 ;2005 Gauss-Krueger 207 208 1.95 283 2 3 3 15 2 208 209 4.09 225 -46 1 3.5 15 2 209 210 2.41 234 -36 0.5 3 12 0.5 210 211 5.45 244 -60 1 0 5 2 211 212 3.13 198 -18 0 0.5 5 7 212 213 10.51 219 -43 1 0 5 4 213 214 2.05 192 -43 0 1 6 3 214 215 8.52 235 4 0 0.5 5 7 215 216 5.12 242 16 1 0 20 4 216 217 5.00 215 -17 0 1 20 3 217 218 4.71 72 -26 1.5 0 7 2 218 219 5.99 224 -13 0 0.8 10 2.5 219 220 3.70 229 -25 2.5 0 10 1.8 220 221 5.42 136 -33 0 1 3 1.5 221 222 3.15 198 -31 1.5 0 2 1 222 223 8.35 224 2 0 0.5 0.5 3 223 224 7.63 232 -1 0 0.7 0.5 1 224 225 6.68 133 -50 0 1 3 9 ;Johanns freier Abstieg 225 226 9.55 0 -90 0.5 1.5 12 0 226 227 3.02 331 -9 0.8 0 14 5 227 228 9.06 312 -15 1.2 0 7 4 228 229 2.08 274 -29 0 0.5 3 6 229 230 6.88 302 -13 0 1.3 1.5 10 230 231 1.90 8 -34 1 0 3 8 231 232 5.38 312 -25 0.6 0 1 12 232 233 16.06 345 -76 1.6 0 15 10 233 234 7.46 0 -90 8 3 22 0 234 235 6.52 38 -41 2 7 3.5 2 ;Grosse Schraege 235 236 13.08 70 -54 5 4 3 2 236 237 7.98 37 -49 4 5 2.5 1 237 238 15.41 56 -55 2 7 2 0 ;Johann Westhauser, Wolfgang Zillig, Ulrich Meyer: 30.10.2005 *calibrate declination -2.1 ;2005 BMN-M31 ;*calibrate declination -1.0 ;2005 Gauss-Krueger 238 239 3.05 355 -18 0 2 1.5 1.5 239 240 17.16 25 -56 0.5 5.5 6 0 240 241 14.02 100 -51 0 6 6 1.5 241 242 8.15 38 -55 2 2 4 4 242 243 16.18 55 -73 0 5 5 2 243 244 14.52 45 -61 2 1.5 3.5 1.5 244 245 13.66 343 -50 1.5 3 8 0 245 246 3.49 341 -33 5 3.5 7 0 246 247 19.41 30 -54 5 2 5 0 247 248 14.77 9 -41 1 4 5 1.5 ;Grund Grosse Schraege 248 249 12.82 328 5 3 9.5 1 4 249 250 14.56 347 -19 2 7 6 2 ;Wolfgang Zillig, Marcus Preissner, Ulrich Meyer: 14.8.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 250 251 8.64 357 -9 2 5 3.5 1.5 251 252 20.10 2 -23 3.5 2.5 4 0.5 252 253 2.70 355 -5 3.5 2 2.5 1 253 254 9.47 339 -10 1 2 0 2 254 255 18.33 337 -1 3 1 2.5 1.5 255 256 7.90 324 -6 1.5 2 2 1.5 256 257 4.90 330 23 2.5 0 0 2.5 257 258 1.61 0 -90 2 0.5 1 1.5 258 259 18.10 333 -6 1.5 0.5 0 1.5 259 260 7.90 286 43 1.5 0.5 0 1.5 260 261 18.80 290 38 2.5 1.5 3 1 261 262 10.00 291 44 2 5 5 1 262 263 14.95 319 23 3 2.5 3 1 263 264 12.45 307 23 1.5 2.5 4.5 0.5 ;Wolfgang Zillig, Marcus Preissner, Thomas Matthalm: 2.11.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 264 265 30.0 264 40 265 266 4.90 312 16 266 267 11.87 310 -3 267 268 4.25 348 -13.5 268 269 3.72 301 1 269 270 6.54 309 -25 270 271 6.32 309 24 271 272 21.95 310 2 272 273 16.66 329 0 273 274 13.77 326 6 274 275 8.90 349 -22 275 276 4.40 64 41 276 277 6.45 341 -1 277 278 21.80 323 4 278 279 28.70 321 7 279 280 21.95 307 22 280 281 15.04 304 35 281 282 2.16 9 -6 282 283 7.70 4 -29 283 284 7.08 9 -37 284 285 7.00 0 -90 285 286 15.53 351 -39 286 287 9.35 105 -22.5 287 288 16.75 333 -8 288 289 1.34 332 9 289 290 1.55 0 90 290 291 8.15 302 22 291 292 22.35 336 6 292 293 25.75 315 2.5 293 294 8.10 317 1.5 294 295 22.25 316 1 295 296 16.45 310 0 296 297 11.00 315 -5 297 298 30.10 309 3 298 299 15.09 319 -2 299 300 24.15 314 2 300 301 15.00 307 -2 301 302 20.30 297 4 302 303 9.37 298 -3 303 304 7.35 294 13 304 305 25.25 326 2.5 305 306 2.72 287 -1.5 ;Abzweig Schoener Canyon ;Johann Westhauser, Florian Schwarz, Ulrich Meyer: 3.11.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 306 307 4.09 312 -22 3 1 1.5 1.5 307 308 10.24 340 1 5 0 4 2 308 309 11.83 327 -54 0 5 14 20 309 310 19.60 25 -67 ;lrou fehlt 310 311 3.07 35 -48 0.7 3 30 4 311 312 18.35 314 -30 0 2 8 1.5 312 313 19.85 309 -9 2 0 8 1 313 314 19.05 277 25 0 6 30 2 314 315 7.60 327 14 2 2 30 0.5 315 316 6.55 295 35 1.3 0 30 2 316 317 19.75 253 52 0 1.2 30 2 317 318 1.14 310 7 0 0.8 30 2 318 319 17.15 338 -40 0 0.8 30 1.6 319 320 16.75 296 42 0.5 0.5 30 1.5 320 321 5.27 307 -17 0.5 2 30 0.5 321 322 11.55 330 -36 0 1.5 30 2 322 323 11.00 0 -43 1.5 0 30 1.7 323 324 17.10 320 16 1.5 2.5 25 1.2 324 325 16.00 323 20 2 2 20 0.5 325 326 18.14 2 69 2.5 3 6 17 ;P17 326 327 2.55 41 -5 1.8 0.2 8 1 327 328 10.75 327 -2 2 8 6 3 ;Barbarossas Thronsaal ;Wolfgang Zillig, Torsten Weinreich, Ulrich Meyer: 16.8.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 328 329 15.68 276 1 3.5 1.5 7 2 329 330 7.52 306 2 0.5 1.5 7 2 330 331 3.76 8 -16 0.5 1 7 2 331 332 2.78 305 7 0 2 7 2 332 333 8.11 49 -1 1 1 7 2 333 334 4.21 333 -17 0 1.5 7 2 334 335 4.66 48 0 1 0 7 2 335 336 9.03 344 -6 0 3.5 4 1.5 336 337 7.07 85 27 2.5 0 6 3 337 338 16.33 55 -7.5 1.5 0 7 2 338 339 4.48 23 -7 1.5 0 22 2.5 339 340 8.04 294 -4.5 0 1.5 7 3 340 341 8.62 49 2 3.5 0 2.5 1.5 341 342 4.60 322 -4 0 4 21 1.5 342 343 15.32 26 -20 7 0 3 2 343 344 8.80 279 3.5 0 7 7 1 ;Wolfgang Zillig, Torsten Weinreich, Ulrich Meyer: 17.8.2007 344 345 14.54 283 46 0 6 6.7 1.5 345 346 16.50 319 -26 1.5 3.8 10 2.6 346 347 10.21 305 -35 1 4 8.5 3.5 347 348 12.77 259 -12 0.5 5 5 1 348 349 12.54 304 -22 5 4 2.5 0 349 350 9.66 16 33 0 4.5 4 1 350 351 14.99 79 2.5 7 3 8 0.5 351 352 16.36 354 37 0 1.5 5 1.5 352 353 6.17 350 -7 3 1 5 1 *end Hauptzug *equate Hauptzug.15 Ursprung.1 *begin Ursprung ;Thomas Matthalm, Ulrich Meyer: 17.9.2005 *calibrate declination -2.1 ;2005 BMN-M31 ;*calibrate declination -1.0 ;2005 Gauss-Krueger 1 2 7.83 313 -8 0 2.5 14 4 2 3 9.40 304 -42 2.5 0 16 40 3 4 6.92 250 -47 0 3 18 30 4 5 5.92 351 -69 2 0 20 20 5 6 5.74 252 -29 0 2.5 21 15 6 7 13.45 273 -38 0 2 30 4 7 8 4.07 7 62 3.5 0 27 7.5 ;8 9 6.90 231 -17 1 0 27 1 ;Wolfgang Zillig, Florian Schwarz: 29.7.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 8 10 11.52 233 58 ;lrou fehlt 10 11 3.07 191 -37 ;lrou fehlt 11 12 18.70 0 90 ;lrou fehlt 12 13 4.82 211 -18 ;lrou fehlt 13 14 2.22 302 -32 ;lrou fehlt 14 15 3.37 343 -52 ;lrou fehlt 15 16 3.78 252 -23 ;lrou fehlt 12 17 2.00 0 90 ;lrou fehlt 17 18 3.64 117 45 ;lrou fehlt 18 19 2.21 89 15 ;lrou fehlt 19 20 5.48 0 90 ;lrou fehlt 20 21 1.03 301 1 ;lrou fehlt 21 22 6.10 0 90 ;lrou fehlt 22 23 5.15 303 80 ;lrou fehlt 23 24 6.37 189 85 ;lrou fehlt 24 25 1.92 230 3 ;lrou fehlt 25 26 2.26 269 -3 ;lrou fehlt 26 27 4.17 271 14.5 ;lrou fehlt 27 28 2.65 322 2 ;lrou fehlt 28 29 5.53 260 23 ;lrou fehlt 29 30 3.08 318 -14 ;lrou fehlt 30 31 4.19 262 -28 ;lrou fehlt 31 32 4.11 334 -27 ;lrou fehlt 32 33 5.19 305 41 ;lrou fehlt 33 34 5.31 274 -19 ;lrou fehlt 33 34 5.31 274 -19 1.5 0 10 17 ;Johann Westhauser, Ulrich Meyer: 6.7.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 34 35 4.83 278 37 0 4 7 20 35 36 4.10 243 -16 0 3 7 0 36 37 2.87 349 -23 2.5 0 7 15 37 38 20.25 252 -50 4 0 15 6 38 39 10.15 215 -34 2.5 1 25 2 39 40 8.00 238 -10 0 1 25 1 40 41 2.22 273 -22 0.8 0.5 18 0 41 42 16.20 0 90 0.6 0 2 16 42 43 1.81 170 50 0.8 0 0.5 1 43 44 4.47 60 60 0 1.5 6 20 44 45 5.41 110 53 1 0.5 7 1 45 46 6.46 0 90 0 0.6 0.7 6.5 46 47 4.36 278 5 0 1 6 0 47 48 3.90 250 68 0.6 0 5 1.5 ;Wolfgan Zillig, Ulrich Meyer: 16.6.2009 48 49 1.50 152 0 0 1 4 20 49 50 7.69 273 41 1.2 0 3 1 50 51 6.69 146 32 0 2 2 2 51 51a 5.45 17 -21 1.8 0.5 0.6 1 51a 51b 4.05 11 29 0 1.5 0.7 0.7 51b 51c 12.02 95 37 0.5 0.3 0.4 0 51 52 5.60 263 30 0 1.7 3 2 52 53 4.65 256 14 0 1 3 5 53 54 4.47 177 -24 0 3 2.5 1.5 54 54a 1.32 87 -35 0.2 0.5 3 0.2 54a 54b 3.55 0 90 0.5 0.3 0.8 3 54b 54c 4.12 94 -1 0.6 0 2 2.5 54c 54d 1.70 133 1 0 0.5 2 2 54d 54e 2.50 216 -6 0.5 0 2.5 2 54e 54f 4.24 132 0 0.7 0.7 1 0 54f 54g 5.01 220 -23 1.8 0 3 4 54g 54h 5.15 117 35 0 1.8 4 4 54h 54i 5.54 266 13 0.8 0 1.5 2 54i 54j 2.39 320 21 0.8 0 1 2.5 54j 54k 6.67 296 -30 2.5 0 7 4 54k 54k1 7.95 251 -22 1.3 0 3 2.5 54k 54l 2.86 163 -5 0 0.5 7 3 54l 54m 7.89 145 -13 2 0 6 1.5 54 55 3.02 342 -42 2.5 0.5 4 16 ;Lars Bohg, Torsten Weinreich, Ulrich Meyer: 15.6.2009 55 56 7.91 296 -40 3 0 6 8 56 57 10.05 302 -47 1 2.5 10 0 57 58 8.40 0 90 0 0.6 2 8 58 59 1.90 4 9 0 0.6 2 8 59 60 2.00 86 60 0.8 0 4 6 60 61 4.91 29 -30 1 1 3.5 3.5 61 62 3.85 309 12 1 0 5 3 62 63 2.36 295 7 1 0 7 1.8 63 64 2.01 269 30 0.8 0 4 1.5 64 65 3.70 211 25 0 1 6 2 65 66 4.47 255 -33 0.5 0.5 8 0 66 67 7.20 0 90 0.6 0 2 6 67 68 1.85 288 6 0.5 0 3 1 68 69 2.38 315 4 0 0.5 3.5 2 69 70 2.06 289 3 0.5 0 4 1.5 70 71 1.52 306 -8 0.5 0 4 1 71 72 2.64 223 20 0 0.5 3.5 1.5 72 73 3.57 298 8 0.5 0 3.5 1.5 73 74 3.57 257 2 0.5 0 1.5 1.5 74 75 2.46 269 -2 0 0.5 3.5 1 75 76 2.00 320 18 1.2 0 3 1.5 76 77 3.09 247 -4 0 0.5 2.5 1.6 77 78 1.13 313 -1 0 0.5 3 1 78 79 2.35 226 33 0.5 0 2.5 1.6 79 80 4.06 188 -22 0 1.7 0.7 0.5 80 81 5.91 291 18 0 0.5 1.5 1.6 81 82 4.82 250 -6 1.5 0.3 4 1.6 ;Wolfgan Zillig, Ulrich Meyer: 16.6.2009 82 83 1.24 132 -42 2 1 1.3 2 83 84 3.45 252 30 1 0 1.3 0.4 84 85 10.89 282 -2 0 1 1 1.5 85 86 7.73 319 -26 2 0 1 1 86 87 7.00 202 3 0 1.3 1.2 0.2 87 88 5.42 249 20 0 0.8 2 2 88 89 5.82 320 12 1 0 1 2 89 90 5.74 307 -5 0 1.2 1 1.7 90 91 9.35 290 0.5 0.8 0 1 1.5 91 92 2.40 205 6 1 0 3 0.6 92 93 5.08 192 5 0.7 1.2 1 2 93 94 5.37 247 -15 1.1 0.7 0 0.5 *end Ursprung *equate Hauptzug.33 Hochsammler.1 *begin Hochsammler ;Thomas Matthalm, Marcus Preissner, Ulrich Meyer: 19.6.2003 *calibrate declination -2.0 ;2003 BMN-M31 ;*calibrate declination -0.9 ;2003 Gauss-Krueger 1 2 4.90 302 26 ;Fossiler RD2-Maeander 2 3 2.67 344 1 3 4 3.03 292 0 4 5 2.55 8 7 5 6 3.50 281 -1 6 7 3.40 337 4 7 8 2.67 325 0 8 9 7.80 315 -2 9 10 4.87 282 2 ;Grund RD2-Zubringer 10 11 7.70 345 11 11 12 9.20 349 -36 12 13 17.80 317 -5 ;Lehmroehre 13 14 6.88 323 -25 14 15 7.83 333 -16 15 16 7.17 272 37 16 17 18.38 331 -31 17 18 11.95 6 -54 18 19 6.08 305 2 19 20 1.67 343 -5 20 21 14.28 0 -90 ;Abstieg zum Sammler 21 22 3.23 350 13 22 23 2.30 250 12 23 24 2.00 177 6 24 25 9.33 305 -3 25 26 2.27 28 1 26 27 4.98 329 -1 27 28 2.73 292 -2 28 29 3.15 322 3 29 30 3.02 280 29 30 31 5.45 332 -3 31 32 4.87 248 12 32 33 3.40 229 3 ;Tosfall unten ;Ulrich Meyer, Juergen Kuehlwein: 22.8.2003 *calibrate declination -2.0 ;2003 BMN-M31 ;*calibrate declination -0.9 ;2003 Gauss-Krueger 33 34 6.96 315 -16 34 35 18.13 280 68 35 36 2.20 75 52 36 37 4.20 340 27 37 38 2.06 312 -22 38 39 4.72 21 54 39 40 3.27 304 40 40 41 3.45 234 17 41 42 4.35 326 -10 42 43 3.19 80 -2 43 44 2.12 13 24 44 45 2.95 28 7 45 46 7.55 266 33 ;Turm ;Wolfgang Zillig, Marcus Preissner, Ulrich Meyer: 5.6.2004 *calibrate declination -2.1 ;2004 BMN-M31 ;*calibrate declination -1.0 ;2004 Gauss-Krueger 46 47 8.60 293 -10 ;Endloser Maeander 47 48 1.42 5 12 48 49 3.28 88 -1 49 50 2.64 45 -4 50 51 2.52 95 2 51 52 1.30 17 0 52 53 5.98 287 12 53 54 4.54 213 -7 54 55 4.75 308 4 55 56 3.70 292 3 56 57 1.52 8 -1 57 58 2.33 57 -9 58 59 1.80 302 -14 59 60 3.93 250 14 60 61 4.44 301 -1 61 62 2.51 307 1 62 63 1.89 44 3 63 64 3.12 90 -5 64 65 7.45 324 5 65 66 2.04 338 0 66 67 2.88 283 -3 67 68 6.30 292 4 68 69 3.02 352 -3 69 70 1.90 35 -6 70 71 3.07 293 7 71 72 3.19 16 6 72 73 2.40 312 14 73 74 4.53 244 -6 74 75 4.74 281 4 75 76 4.40 49 -1 76 77 7.70 37 9 77 78 1.44 320 -10 78 79 3.45 259 -5 79 80 3.94 194 -5 80 81 4.18 242 12 81 82 4.34 313 -8 82 83 6.38 26 6 83 84 3.32 255 1 84 85 2.32 177 12 85 86 3.17 244 -3 86 87 3.63 298 2 87 88 2.15 61 -3 88 89 2.19 101 3 89 90 7.00 355 -3 90 91 7.31 292 5 91 92 3.55 16 -3 92 93 4.73 317 8 93 94 1.53 259 7 94 95 7.35 169 2 95 96 1.69 249 -26 96 97 3.60 321 0 97 98 5.00 342 -2 98 99 3.44 323 -7 99 100 6.70 306 2 100 101 1.78 273 11 101 102 4.67 330 6 ;Lars Bohg, Ulrich Meyer: 17.7.2004 *calibrate declination -2.1 ;2004 BMN-M31 ;*calibrate declination -1.0 ;2004 Gauss-Krueger 102 103 4.80 240 -5 103 104 4.34 283 -5 104 105 4.00 15 -15 105 106 2.15 263 0 106 107 4.20 332 0 107 108 7.43 307 2 108 109 3.53 258 4 ;Aufstieg Champs Elysees ;Marcus Preissner, Ulrich Meyer: 28.8.2004 *calibrate declination -2.1 ;2004 BMN-M31 ;*calibrate declination -1.0 ;2004 Gauss-Krueger 109 110 4.98 332 -1 ;Maeander unter Champs Elysees 110 111 3.80 306 -6 111 112 1.50 354 -10 112 113 3.90 294 32 113 114 8.65 315 -8 114 115 2.88 3 -1 115 116 8.43 243 0 116 117 2.30 205 4 117 118 1.96 269 6 118 119 8.55 335 4 119 120 5.04 275 -7 120 121 3.77 350 -1 121 122 2.48 251 5 122 123 3.46 323 -3 123 124 3.95 302 2.5 124 125 3.20 354 1 125 126 8.93 2 0 126 127 3.13 260 -1 127 128 2.25 11 13 128 129 5.35 326 9 129 130 3.24 254 -18 130 131 3.55 0 60 131 132 3.90 270 -5 132 133 3.85 325 19 133 134 6.30 300 34 134 135 2.20 343 33 135 136 2.65 299 -33 136 137 3.45 172 8 137 138 3.16 272 5 138 139 4.47 276 -6 139 140 0.85 180 -1 140 141 5.10 286 3 141 142 3.20 348 7 142 143 3.90 259 19 143 144 3.76 239 -18 144 145 2.56 339 20 145 146 2.42 215 27 146 147 2.55 244 -4 147 148 2.92 259 40 148 149 6.33 255 55 149 150 5.33 241 15 ;Wasserfallschlot, Ende bachauf *end Hochsammler *equate Hochsammler.109 Champs_Elysees.1 *equate Hochsammler.125 Champs_Elysees.13 *begin Champs_Elysees ;Lars Bohg, Ulrich Meyer: 17.7.2004 *calibrate declination -2.1 ;2004 BMN-M31 ;*calibrate declination -1.0 ;2004 Gauss-Krueger 1 2 7.96 327 31 2 3 4.10 288 60 3 4 3.37 210 45 4 5 5.15 10 24 ;Marcus Preissner, Ulrich Meyer: 28.8.2004 *calibrate declination -2.1 ;2004 BMN-M31 ;*calibrate declination -1.0 ;2004 Gauss-Krueger 5 6 11.10 292 0 6 7 11.90 300 2 7 8 11.13 303 -13.5 8 9 3.38 278 -14 9 10 1.98 351 -5 10 11 5.10 315 -35 11 12 1.65 29 -13 12 13 4.20 0 -90 *end Champs_Elysees *equate Hochsammler.19 Traumtaenzer.1 *begin Traumtaenzer ;Marcus Preissner, Ulrich Meyer: 26.7.2003 *calibrate declination -2.0 ;2003 BMN-M31 ;*calibrate declination -0.9 ;2003 Gauss-Krueger 1 2 8.70 275 52 2 3 5.10 317 57 3 4 15.65 315 -7.5 4 5 9.50 317 -22 *end Traumtaenzer *equate Hochsammler.21 Normalweg.1 *equate Hochsammler.18 Normalweg.20 *begin Normalweg ;Johann Westhauser, Marcus Preissner, Ulrich Meyer: 20.6.2003 *calibrate declination -2.0 ;2003 BMN-M31 ;*calibrate declination -0.9 ;2003 Gauss-Krueger 1 2 2.70 160 12 2 3 4.63 61 1 3 4 9.43 125 0 4 5 3.61 53 -10 5 6 6.44 154 3 6 7 3.68 80 66 ;Schotterbalkon 7 8 3.22 83 -11 8 9 9.05 141 19 9 10 6.25 130 26 10 11 8.90 148 3 11 12 4.17 183 31 12 13 9.83 320 10 13 14 1.73 268 9 14 15 3.20 321 16 15 16 3.67 257 36 16 17 1.96 319 34 17 18 4.52 298 26 18 19 13.80 314 -26 19 20 7.63 306 9 *end Normalweg *equate Normalweg.17 Rampe.1 *equate Hochsammler.13 Rampe.4 *begin Rampe ;Johann Westhauser, Marcus Preissner, Thomas Matthalm, Ulrich Meyer: 20.6.2003 *calibrate declination -2.0 ;2003 BMN-M31 ;*calibrate declination -0.9 ;2003 Gauss-Krueger 1 2 22.00 167 51 2 3 3.80 225 6 3 4 1.50 120 26 *end Rampe *equate Rampe.4 Biwakroehre.1 *equate Hauptzug.46 Biwakroehre.15 *begin Biwakroehre ;Johann Westhauser, Ulrich Meyer: 21.6.2003 *calibrate declination -2.0 ;2003 BMN-M31 ;*calibrate declination -0.9 ;2003 Gauss-Krueger 1 2 3.23 60 10 2 3 5.40 106 19 3 4 15.64 144 51 4 5 11.48 130 23 5 6 1.32 208 -31 6 7 19.15 115 1 7 8 5.23 133 32 8 9 3.60 55 22 9 10 9.04 140 12 ;Johann Westhauser, Marcus Preissner, Thomas Matthalm: 27.7.2003 *calibrate declination -2.0 ;2003 BMN-M31 ;*calibrate declination -0.9 ;2003 Gauss-Krueger 10 11 6.80 141 5 ;Abstieg zum Riesencanyon 11 12 2.31 350 -60 12 13 15.00 0 -90 13 14 1.00 315 0 14 15 4.00 0 -90 *end Biwakroehre *equate Hochsammler.9 RD2.1 *equate Hauptzug.72 RD2.29 *begin RD2 ;Thomas Matthalm, Marcus Preissner, Ulrich Meyer: 26.7.2003 *calibrate declination -2.0 ;2003 BMN-M31 ;*calibrate declination -0.9 ;2003 Gauss-Krueger 1 2 2.99 114 -23 2 3 19.80 44 -61 3 4 8.30 350 -74 4 5 9.49 85 -61 5 6 4.40 80 -52.5 ;Johann Westhauser, Juergen Kuehlwein, Lars Bohg, Ulrich Meyer: 23.8.2003 *calibrate declination -2.0 ;2003 BMN-M31 ;*calibrate declination -0.9 ;2003 Gauss-Krueger 6 7 5.68 154 12 7 8 7.25 109 1 8 9 5.21 0 -90 9 10 2.08 144 10 10 11 3.54 82 7 11 12 3.17 204 -36 12 13 4.60 168 -10 13 14 1.65 85 -7 14 15 2.65 205 0 15 16 3.10 127 9 16 17 3.30 47 -8 17 18 1.78 145 -2 18 19 4.22 229 -12 19 20 3.45 114 -8 20 21 8.45 70 4 21 22 3.24 190 -10 22 23 2.83 229 -26 23 24 5.28 132 -6 24 25 3.60 55 16 25 26 1.97 23 6 26 27 3.30 117 6 27 28 3.77 84 -22 28 29 15.35 115 2 ;Grund vom Nirvana *end RD2 *equate Normalweg.12 Mitteletage.1 *equate RD2.6 Mitteletage.7 *begin Mitteletage ;Johann Westhauser, Marcus Preissner, Ulrich Meyer: 26.7.2003 *calibrate declination -2.0 ;2003 BMN-M31 ;*calibrate declination -0.9 ;2003 Gauss-Krueger 1 2 2.20 201 28 2 3 19.30 138 -0.5 3 4 3.80 194 49 4 5 7.80 112 -28 5 6 5.40 102 -50 6 7 10.35 152 -8.5 *end Mitteletage *equate Normalweg.6 Siphon_vorn.1 *equate Normalweg.11 Siphon_vorn.17 *begin Siphon_vorn ;Johann Westhauser, Marcus Preissner, Ulrich Meyer: 26.7.2003 *calibrate declination -2.0 ;2003 BMN-M31 ;*calibrate declination -0.9 ;2003 Gauss-Krueger 1 2 5.37 68 -3 ;Schotterbalkon 2 3 7.54 148 3.5 3 4 3.80 96 -1 4 5 2.12 156 7 5 6 7.04 122 -2 6 7 3.61 165 -5 7 8 5.28 117 -3 8 9 5.10 168 -8 9 10 2.12 67 -2 10 11 4.60 120 -7.5 11 12 3.50 43 8.5 12 12S 5.50 120 -33 ;Siphon 12 13 5.73 240 48 13 14 9.90 287 25 14 15 3.90 334 6 15 16 3.27 240 50 16 17 0.50 260 -60 *end Siphon_vorn *equate RD2.9 Siphon_hinten.1 *begin Siphon_hinten ;Johann Westhauser, Juergen Kuehlwein, Lars Bohg, Ulrich Meyer: 23.8.2003 *calibrate declination -2.0 ;2003 BMN-M31 ;*calibrate declination -0.9 ;2003 Gauss-Krueger 1 2 0.46 260 2 2 3 3.70 353 -5 3 4 8.45 329 -9 4 5 7.43 344 -3 ;Siphon *end Siphon_hinten *equate Hauptzug.103 Waschsalon.1 *begin Waschsalon ;Thomas Matthalm, Florian Schwarz: 16.10.2004 *calibrate declination -2.1 ;2004 BMN-M31 ;*calibrate declination -1.0 ;2004 Gauss-Krueger 1 2 13.89 205 48 2 3 0.80 332 0 3 4 4.90 282 75 *end Waschsalon *equate Hauptzug.142 Lagune.1 *begin Lagune ;Johann Westhauser, Wolfgang Zillig, Thomas Matthalm: 31.10.2004 *calibrate declination -2.1 ;2004 BMN-M31 ;*calibrate declination -1.0 ;2004 Gauss-Krueger 1 2 6.65 312 3 2 3 5.90 74 17 *end Lagune *equate Hauptzug.207 Lehmetage.1 *begin Lehmetage ;Johann Westhauser, Wolfgang Zillig, Ulrich Meyer: 30.10.2005 *calibrate declination -2.1 ;2005 BMN-M31 ;*calibrate declination -1.0 ;2005 Gauss-Krueger 1 2 13.94 244 11 1 2.5 4 1.8 2 3 7.14 222 -17 0.8 1.6 1 1.5 3 4 3.97 202 -11 1.5 1.5 2.5 1 ;Biwak 3 4 5 3.64 245 -2 1 0.5 1.5 1 5 6 0.68 251 48 1 0.5 1.5 1 6 7 18.70 233 -36 5 1 7 1.5 7 8 8.25 219 -18 6 0.7 9.5 1.4 8 9 4.91 210 -4 8 0 7 1.3 9 10 5.21 102 -25 2 2 5 1.4 ;Ulrich Meyer, Florian Schwarz: 24.6.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 10 11 8.25 166 17 0 4 2.5 1.5 11 12 7.00 262 -13 2 0.2 1.3 0 12 13 7.85 185 2 2 3.5 3.5 0 13 14 5.65 90 11 0 2.5 2.5 1.5 14 15 7.85 125 20 1 2.5 3 0.5 15 16 5.65 125 -45 0 2.5 10 7 16 17 7.30 0 -90 2 0.3 10 0 17 18 2.30 305 -30 0 1.5 0.5 1.2 18 19 1.23 289 -5 0.5 0 2 0.5 19 20 4.60 194 -32 2 0 2 1 20 21 2.40 197 -15 0 2 1 25 21 22 25.24 0 -90 0 6 10 2 22 23 3.77 175 -25 2 4 10 0.5 23 24 9.27 81 -8 1 1 0 2.5 24 25 2.88 87 -47 1 0.3 1.5 2 25 26 3.72 332 -48 0 2 3 2 26 27 6.50 0 -90 0 2 10 2 27 28 2.95 330 -35 0 6 10 2 28 29 13.80 0 -90 0 5 10 15 29 30 4.20 58 -3 2.5 3 10 2.5 *end Lehmetage *equate Lehmetage.17 Tropfsteinkammer.1 *begin Tropfsteinkammer ;Ulrich Meyer, Florian Schwarz: 24.6.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 1 2 4.96 132 9 0.5 1 1 0.5 2 3 6.60 145 15 0.6 0 0.8 0.2 3 4 3.10 80 40 1.3 0.4 1.4 0.4 4 5 2.20 182 8 0 1.2 0.3 1.3 5 6 4.80 115 20 1.2 0.3 2.3 0.3 6 7 4.30 75 40 1.2 0.8 3 0.5 *end Tropfsteinkammer *equate Lehmetage.30 fossile_Schraege.1 *equate Hauptzug.244 fossile_Schraege.17 *begin fossile_Schraege ;Wolfgang Zillig, Marcus Preissner, Ulrich Meyer: 13.8.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 1 2 5.75 69 -23 0.5 1.5 0 0.5 2 3 9.78 89 -48.5 1.5 1 1 3 3 4 8.14 67 -42 0.5 2 0.5 0.7 4 5 3.30 4 -17 0 2 0.7 1 5 6 3.71 50 -32 2 3 0 0.5 6 7 9.94 91 -49 4 2 0.5 0.2 7 8 13.54 54 -52 5 2.5 1 1 8 9 16.11 56 -49 4 8 0 3 9 10 3.35 131 -5 6 6 0 2 10 11 17.08 62 -58 6 6 3 1.5 11 12 19.18 333 -39 2.5 1.5 6 0 12 13 11.98 335 -32 2 0.3 6 1 13 14 12.04 290 21 0.6 1.8 2.5 1 14 15 6.73 287 -37 1 0 0.5 1.8 15 16 4.91 310 -1 0 1 0.5 5 16 17 13.38 332 -25 ;lrou fehlt *end fossile_Schraege *equate Lehmetage.30 Dreieckshalle.1 *begin Dreieckshalle ;Wolfgang Zillig, Marcus Preissner, Ulrich Meyer: 14.8.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 1 2 3.43 39 10 6 0 0 2 2 3 2.18 296 10 0 0.8 0.6 0.4 3 4 8.79 45 -38 2 1.5 0.6 0.3 4 5 7.30 55 -39 4 4 0 1.5 5 5a 6.86 75 -50 1 0.5 0.5 1 5 6 5.92 303 -37 0.1 0.1 1 0 6 7 4.50 349 -52 1 0 0 8 7 8 7.30 0 -90 ;lrou fehlt 8 8a 10.70 340 3 ;lrou fehlt 8 9 7.65 162 9 ;lrou fehlt 9 9a 15.70 41 -34 ;lrou fehlt 9 10 4.47 245 43 1.5 0.5 1 0.3 10 11 1.95 0 90 0 5 0 2 11 12 10.95 198 53 2 4 0.3 1.9 12 13 6.20 218 52 ;lrou fehlt 13 14 0.53 0 90 ;lrou fehlt 14 1 4.11 135 39 ;lrou fehlt *end Dreieckshalle *equate fossile_Schraege.9 Verbruchgang.1 *begin Verbruchgang ;Wolfgang Zillig, Marcus Preissner, Ulrich Meyer: 13.8.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 1 2 14.03 264 +36 3.5 2 3 1 2 3 6.37 277 -7 0 1.5 2 1 3 4 8.22 276 40 1 1 1.5 1.5 *end Verbruchgang *equate fossile_Schraege.13 Donnerbach.1 *begin Donnerbach ;Wolfgang Zillig, Marcus Preissner, Ulrich Meyer: 13+14.8.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 1 2 2.45 169 11 0 0.6 6 1 2 3 0.80 0 -90 0.1 0.5 1 0 3 4 2.53 153 -49 0.5 2 0.5 0.3 4 5 3.97 160 18 ;lrou fehlt 5 5a 4.65 326 -35 1 2 1.5 1 5a 5b 3.60 295 3 0.2 0.4 0.4 0 5 6 3.10 115 -4 0 2 1 1 6 7 4.80 113 -32 0.5 2 1 1.8 7 8 4.11 183 24 4 0 0 1 8 8a 5.30 192 0 4 1 15 0 8a 8b 15.40 0 90 0 1 4 15 8b 8c 3.20 43 24 2 3 4 1 8c 8d 4.30 91 -12 0 1.5 3 15 8 9 18.80 180 29 1 2 1 0 9 10 6.50 172 32 0 3 0 1 10 11 9.85 133 -31 1.5 0 3 1 ;Johann Westhauser, Florian Schwarz, Juergen Kuehlwein, Ulrich Meyer: 2.11.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 11 12 14.40 120 -25 0 1.5 4 9 12 12a 5.65 306 6 0 1.5 5 0 12a 12b 2.75 333 -12 0 1.5 6 0 12b 12c 9.73 341 -18 0.5 0.5 3.5 0 ;ruecklaeufiger Gang 12 13 3.50 199 -4 ;lrou fehlt 13 14 13.30 140 -7 2.5 0.2 3 3 14 15 6.80 140 7 1 1.3 2 1.5 15 16 4.30 210 39 0.4 0.5 0.2 0.4 16 17 2.80 171 -3 1.2 0.5 1 0.8 17 17a 6.50 149 0 0.4 0.2 1 1.2 17a 17b 4.80 142 10 1 0.3 0.5 1 ;Versturz 17 18 3.35 224 80 0 2 6 3.6 18 19 3.67 194 33 0.3 0 2.5 2.5 19 20 3.37 162 22 1.2 0.8 2.5 1.5 20 21 6.90 145 11 0.5 0.5 3 2.5 21 22 4.55 103 -19 0 2.5 10 6 22 22a 6.34 182 -23 2 0.2 10 5 22a 22b 6.97 80 -64 0 2 10 0.4 ;untere Gumpen 22 23 11.35 158 25 3 2 6 2 23 24 8.35 208 -9 3 0 6 0.5 ;oberer Gumpen *end Donnerbach *equate fossile_Schraege.11 Toter_Mann.1 *equate Donnerbach.8d Toter_Mann.2 *begin Toter_Mann ;Wolfgang Zillig, Marcus Preissner, Ulrich Meyer: 13.8.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 1 2 6.70 25 -52 ;lrou fehlt 2 2a 17.50 25 -68 1 1 15 0 2 3 11.30 84 -46 0 2.5 0 1 3 4 2.20 123 11 0 1 2 1 4 5 3.05 235 48 1 1.5 2 3 5 6 10.30 136 19 1 1.5 3 1 6 7 10.20 138 7 0 1.5 0 1 7 8 6.73 196 37 0.3 1 0 0.3 8 9 9.80 321 2 0.7 0.8 1 0 9 10 2.45 206 35 1.3 0.7 3 0 10 11 10.72 171 38 0 1.3 0 1.5 11 12 16.65 133 -8 0 1 0.5 1.5 12 13 13.55 135 -9 2 3 0 2.0 13 14 8.77 128 -20 3 2 0 1.5 14 15 8.10 122 -4 0.5 2.5 1 0 ;Johann Westhauser, Florian Schwarz, Juergen Kuehlwein, Ulrich Meyer: 2.11.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 15 16 3.98 107 -46 0.1 0.4 0.4 0.1 16 17 1.95 170 0 0.6 0.3 0.2 0.1 17 18 7.80 160 34 4 5 0.5 2.5 18 19 18.59 253 39 ;lrou fehlt 19 20 19.20 265 45 0.4 0.4 0 0.3 ;Cardita-Halde *end Toter_Mann *equate Hauptzug.240 Verbruchetage.1 *begin Verbruchetage ;Johann Westhauser, Wolfgang Zillig, Ulrich Meyer: 31.10.2005 *calibrate declination -2.1 ;2005 BMN-M31 ;*calibrate declination -1.0 ;2005 Gauss-Krueger 1 2 2.55 338 33 2.5 3.5 5 0 2 3 11.05 316 13 2.5 2 1 1 3 4 7.83 295 4 0.5 1.5 2.5 0 *end Verbruchetage *equate Hauptzug.244 Seitengang.1 *begin Seitengang ;Johann Westhauser, Wolfgang Zillig, Ulrich Meyer: 31.10.2005 *calibrate declination -2.1 ;2005 BMN-M31 ;*calibrate declination -1.0 ;2005 Gauss-Krueger 1 2 18.93 135 2 1 0 1 1.5 2 3 4.58 108 -9 0 0.8 1.5 1 3 4 3.26 148 -3 0.5 0 1 1.5 4 5 2.86 114 -1 0 0.5 1.5 1 *end Seitengang *equate Hauptzug.248 Wasserfallhalle.1 *begin Wasserfallhalle ;Johann Westhauser, Florian Schwarz, Juergen Kuehlwein, Ulrich Meyer: 2.11.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 1 2 3.17 39 20 0 4 5 5 2 3 6.22 72 -60 0 1 0 1 3 4 6.15 132 -20 0 0.5 2 2 4 5 5.60 80 -45 0 0.8 0.6 0.8 5 6 7.20 163 30 0.4 0.8 1.5 1.5 6 7 4.90 196 27 0.5 0 1.5 1.5 7 8 6.05 175 20 3 3 4 3 8 9 10.07 155 37 2.5 2 2 1 9 10 9.20 172 27 ;lrou fehlt 10 11 9.50 125 -5 ;lrou fehlt *end Wasserfallhalle *equate Hauptzug.252 Abfluss.1 *begin Abfluss ;Wolfgang Zillig, Marcus Preissner, Ulrich Meyer: 14.8.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 1 2 12.95 170 7.5 4 0 5 0 2 3 13.50 104 -31 1 2.5 1.5 2 3 4 6.74 164 -14 3 1.5 1.5 1 4 5 6.77 114 -41 3 0 1 1.5 ;Wolfgang Zillig, Marcus Preissner, Thomas Matthalm: 1.+3.11.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 5 6 4.43 340 -7 6 7 8.90 8 -49 7 8 2.20 10 -22 8 9 7.10 4 -42 9 10 3.82 27 -19 10 11 4.83 53 -53 11 12 5.80 32 -37 12 13 5.38 348 -14 13 14 5.90 24 -47 14 14a 5.40 133 -4 14a 14b 12.02 84 -48 14b 14c 13.13 34 -41 14c 14W1 0.51 0 -90 ;Wasser 14c 14d 2.09 314 35 14d 14e 4.86 331 -19 14e 14f 3.73 321 -9 14f 14W2 0.7 0 -90 ;Wasser 14 15 4.70 28 -28 15 16 3.71 0 -90 16 17 4.90 5 -6 17 18 4.66 31 -42 18 19 6.27 331 -21 19 20 2.11 340 8 20 20a 5.60 82 -53 20a 20b 2.74 130 -10 20b 20W3 4.60 81 -51 ;Wasser 20 21 1.03 290 25 21 22 11.65 322 -4 22 23 16.30 348 -34 23 24 5.00 75 -54 ;Schaumbad *end Abfluss *equate Hauptzug.262 Kleiner_Spritzer.1 *begin Kleiner_Spritzer ;Johann Westhauser, Florian Schwarz, Ulrich Meyer: 4.11.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 1 2 3.15 294 21 1 5 6 0 2 3 6.42 36 -31 0.7 0.7 1.5 0 3 4 3.80 345 -54 ;lrou fehlt 4 5 0.70 87 2 1 1 0.5 0 5 6 2.15 0 -90 2 0 0.3 4 6 7 3.63 358 -63 1 1 0 1.5 7 8 7.80 37 -57 0.5 2 1 1 8 9 6.30 40 -70 2 1.5 1 1 9 10 13.72 59 -59 2 3 1 1 10 11 16.37 70 -55 0.5 0 0 5 11 12 8.14 135 -7 0 1.6 0 1.6 12 13 14.06 97 -47 1 1 0 1 13 14 7.14 117 -42 0.2 1.7 0 6 14 15 7.70 355 -37 0.4 0 0 3 15 16 17.84 10 -52 0.5 0.5 0.6 0.2 *end Kleiner_Spritzer *equate Hauptzug.286 Leopardengang.1 *equate Hauptzug.279 Leopardengang.11 *begin Leopardengang ;Wolfgang Zillig, Marcus Preissner, Thomas Matthalm: 2.11.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 1 2 22.05 141 6 2 3 7.95 130 -4 3 3a 12.56 182 -6.5 3 4 4.40 123 -1 4 5 9.95 154 0 5 6 5.25 147 1.5 6 7 3.45 161 -4 7 8 6.20 152 6 8 9 9.60 139 3 9 10 5.78 258 -18 10 11 14.25 332 29 *end Leopardengang *equate Hauptzug.306 Schoener_Canyon.1 *begin Schoener_Canyon ;Wolfgang Zillig, Marcus Preissner, Thomas Matthalm: 2.11.2006 *calibrate declination -2.2 ;2006 BMN-M31 ;*calibrate declination -1.1 ;2006 Gauss-Krueger 1 2 7.5 71 3 2 3 2.1 29 -7 3 4 3.76 78 10 4 5 5.11 49 -0.5 5 6 5.28 91 5 6 7 13.8 73 3 7 8 6.4 77 9 8 9 6.74 79 -12 9 10 7.85 58 -4 10 11 7.47 79 3 11 12 4.22 111 -5 12 13 5.48 102 -18 ;Johann Westhauser, Marcus Preissner: 16.8.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 13 14 5.7 175 31 ;lrou fehlt 14 14a 10.7 245 -32 0 1.5 2 0.5 14 15 3.1 141 -15 0 10 10 1 15 16 4.7 28 1 0 1 10 1 16 17 4.58 71 -5 0.4 0.7 0.5 0.5 17 18 3.91 132 12 0.6 2.5 8 1.8 18 19 5.83 72 5 0.3 0.5 12 2 19 20 6.47 94 -7 0.8 0 5 1.8 20 21 5.5 130 0 1 0 13 1 21 22 12.17 84 -0.5 0.3 1 6 1.5 22 23 5.48 108 -7 4 0 10 5 23 24 6.07 2 -53 0.5 2.5 7 0.5 24 25 8.67 95 5 2.5 5 7 0.5 25 26 6.97 67 24 0 3.5 4 1 26 27 9.74 124 26 0 1.2 6 1.5 27 28 2.97 92 0 0.5 4 7 1.2 28 29 5.55 138 23 1.2 2 7 2 29 30 5.26 84 -6 1.2 0 6 1.2 30 31 3.06 31 -8 0 1.2 5 1 31 32 9.17 80 -24 2 1 0 0.5 32 33 13.32 78 -9 0 3.5 6 1.2 33 34 8.33 133 4 2 2 2.5 0.5 34 35 7.60 36 42 0.2 3.5 5 1 35 36 6.35 80 7 0 2.8 2 1.5 36 37 12.7 140 30 2.5 1 3 2 37 38 4.46 121 19 2.5 1 5 1.5 38 39 4.5 112 20 ;lrou fehlt 39 40 5.37 100 42 0 1 7 1.8 40 41 6.13 141 16 0 2 9 1 41 42 3.9 188 -32 2 0 12 2 42 43 4.82 75 16 0 2 14 1.5 43 44 12.88 141 5 0 1.2 10 2 44 45 9.62 142 -1 2 0.5 4 1 45 46 7.35 75 9 1.5 2 10 2 46 47 5.30 182 -10 1 3 12 1.8 47 48 4.15 129 8 2.5 0.5 15 1.8 48 49 3.3 98 -3 1.5 0.5 15 1.5 49 50 8.77 115 0 3 2.5 1 1.8 50 51 3.15 206 -30 3 0 1.5 1.5 51 52 4.7 106 17 1.5 3 3 5 52 53 10.05 67 -27 1.5 2 0 1.2 53 54 7.72 141 -5 ;lrou fehlt ;Johann Westhauser, Florian Schwarz, Ulrich Meyer: 2.10.2007 54 55 4.43 242 -10 0 3 1 1.5 55 56 7.62 222 -57 0 2.5 7 6 56 57 6.38 197 -80 0 1.5 6 1.6 57 58 3.01 80 -28 2 0 4 1.6 58 59 7.10 75 -4 1 2 0 1.6 59 60 10.07 98 7 3 0 4 1 60 61 8.22 66 30 2 1.5 3.5 0 61 62 11.91 89 22 1 1 5 2 62 63 5.10 91 1 0 1 4 1.6 63 64 6.05 86 -3 0 1 4 1.6 64 65 6.90 113 3 4 1 4 1.5 65 66 8.29 70 -1 0.8 0.5 6 1.5 66 67 3.86 81 4 0 1 6 1.5 67 68 4.48 152 -5 1.5 1 5 1.5 68 69 13.95 135 -38 2 0 2 1 69 70 8.09 122 -23 1.5 0 0.5 1 70 71 9.05 128 -9 0 3.5 3 0.5 71 72 5.69 199 -12 0 2 2 0.5 ;Johann Westhauser, Rainer Vogelpohl, Ulrich Meyer: 17.8.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 72 73 5.76 166 -6 0 2.5 1 1.5 73 74 3.53 219 -10 2.5 0 1.5 1 74 75 4.30 247 -3 2.5 0 1.5 1 75 76 5.53 149 17 0.5 0.5 0.5 0.5 76 77 4.82 82 25 0 3 1 1 77 78 2.56 171 38 1.5 1.5 0 2 78 78a 7.05 67 19 4 0 1.5 1.5 78a 78b 8.42 312 -17 0 1.5 1.5 1.5 78 79 9.11 187 26 3 0 4 1 79 79a 5.69 111 33 3 0 2 1.5 79a 79b 7.31 3 -16 2 0 2 1.5 79 80 6.36 136 24 0.5 1.5 2 0 80 80a 4.64 188 27 0 1 0.5 0.5 80a 80b 6.01 266 34 1.5 0 4 1 80 81 3.78 117 -30 0 1.5 0.6 1.6 81 82 6.84 158 -27 0 1 3 4 82 82a 3.60 172 -6 0 2 1 3 82a 82b 8.57 107 39 0 0.6 0.5 1 82b 82c 2.65 92 -8 1.5 0 2 0 82c 82d 9.92 35 0 0.6 0.6 0.5 0 82 83 11.45 124 47 2 0 1 2.5 83 84 7.49 131 27 4 3 10 0 84 84a 12.76 80 30 3 3 30 2 84 85 18.75 232 -1 4 4 1.5 1 85 86 14.64 237 24 5 2 10 0 86 86a 12.14 167 -10 0.7 0 1.5 1 86a 86b 8.53 137 -8 1 0 4 0.5 86 87 9.74 115 3 0 3 10 1.7 *end Schoener_Canyon *equate Schoener_Canyon.82a Schoener_Bach.0 *begin Schoener_Bach ;Johann Westhauser, Rainer Vogelpohl, Ulrich Meyer: 17.8.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 0 1 2.89 297 -37 0 1.5 1 1.5 1 2 4.79 10 -2 1.3 0 1.5 1 2 3 4.99 309 -12 0 1 1 2 3 4 2.46 356 -15 0 0.7 0.3 2.3 4 5 2.18 332 1 0 0.8 0.5 2.5 5 6 3.41 303 -2 0 0.7 3 3 6 7 5.11 330 -38 0 1.3 2 1 7 8 2.62 77 -40 0.8 0 2 1.6 8 9 4.40 53 -24 0 0.5 1 0.5 9 10 2.70 320 2 0 0.5 0.3 0.7 10 11 2.15 10 -8 0.4 0 0.5 0.4 11 12 3.36 224 40 0.6 0.6 2 2 *end Schoener_Bach *equate Schoener_Canyon.26 Seitencanyon_Nord.0 *begin Seitencanyon_Nord ;Johann Westhauser, Marcus Preissner: 17.8.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 1.15 79 1 0 3.5 4 0.5 1 2 2.47 25 -58 0 2 5 1.5 2 3 9.26 350 -32 2.2 0 3 2 3 4 9.12 299 -33 1 2 0 2.5 4 5 6.3 308 -49 0 2 3 1 5 6 10.3 40 3 2.5 0.5 3 1.8 6 7 4.8 45 35 0 2.5 0.5 1.8 7 8 8.6 76 6 2.5 0 3 0.5 8 9 1.63 40 19 2.5 1 3 0 9 10 8.63 69 -3 0 2 1.5 1 10 11 3.46 128 -6 2 0 0.7 1.5 11 12 10.71 85 -26 3 0 1.5 1 12 13 3.0 52 -26 0.5 2.5 4 1 13 14 9.88 111 -29 ;lrou fehlt *end Seitencanyon_Nord *equate Seitencanyon_Nord.13 Seitenseitencanyon.0 *begin Seitenseitencanyon ;Johann Westhauser, Marcus Preissner: 17.8.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 10.85 158 14 0 2 1.2 1.5 1 2 13.59 160 10 2 0 15 3 2 3 5.3 116 -32 0.3 0.5 4 1 3 4 6.07 121 -26 1 1.2 15 0.1 4 5 0.6 0 90 1 1.2 15 0.7 5 6 2.17 161 -16 2 0.1 3 0.5 6 7 12.17 123 -50 2 0.1 3 0.5 7 8 10.23 120 -35 1.8 0.2 0 0.5 8 9 4.72 103 -43 1 1 0 0.4 *end Seitenseitencanyon *equate Schoener_Canyon.10 Gewurschtel1.0 *begin Gewurschtel1 ;Johann Westhauser, Marcus Preissner, Ulrich Meyer: 18.8.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 6.78 156 56 1 1 5 2 1 2 9.0 145 47 1 3 5 1 2 3 5.93 59 51 0 3 2 1.5 3 4 10.63 79 -2 0 4.5 2 1 4 4a 8.83 134 -27 3.5 0 8 1.6 4 5 3.13 295 33 0 3 1 1 5 5a 4.82 11 -27 3 1 2 1 5a 5b 12.5 253 -26 2 1 2 0 5 6 8.75 46 25 ;lrou fehlt 6 7 5.95 92 -22 1.5 0 0.2 0.3 7 8 7.23 355 18 0.1 2.3 0.6 1 8 9 3.21 78 -5 1.2 1.6 1.3 0.4 9 10 10.14 27 -2 0.2 0 0.4 0.3 *end Gewurschtel1 *equate Gewurschtel1.2 Gewurschtel2.0 *begin Gewurschtel2 ;Johann Westhauser, Marcus Preissner, Ulrich Meyer: 18.8.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 2.7 310 -55 1.5 2.5 4 1 1 2 1.6 134 -22 0.1 0.6 0 0.8 2 3 1.83 93 -21 1 0 0 4 3 4 4.05 194 -70 0.2 0.7 4 0.3 4 5 2.13 245 -3 1 0 0.3 1 5 6 5.85 67 -17 1.5 0 1.4 0.3 *end Gewurschtel2 *equate Gewurschtel1.6 Gewurschtel3.0 *begin Gewurschtel3 ;Johann Westhauser, Marcus Preissner, Ulrich Meyer: 18.8.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 3.66 336 30 0 3 6 2 1 2 6.56 4 49 1.4 0 1.3 0.7 2 3 3.68 336 34 0 2 4 1 3 3a 5.15 90 57 ;lrou fehlt 3 4 3.52 192 18 0 1.2 0.8 0.4 4 5 4.12 250 39 1.2 0 2 0.4 5 6 1.25 147 13 0 2 2 0.4 6 7 4.96 240 -40 0.7 0.7 0 1.5 7 8 7.48 209 -25 4 0 2 1 8 9 3.83 190 -27 0.5 2 3 2.2 9 10 5.0 298 -25 2 0 0.5 1.5 10 11 7.08 250 -44 1.5 1.5 0.5 0.8 *end Gewurschtel3 *equate Hauptzug.318 Kongretionencanyon.0 *begin Kongretionencanyon ;Wolfgang Zillig, Torsten Weinreich, Ulrich Meyer: 18.8.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 9.12 302 34 2 1 5 0 1 2 3.67 279 -9 2 2 5 0 2 3 11.50 281 28 2.5 0 2 1 ;3 4 14.34 172 48 1.5 0 0 1 ;Torsten Weinreich, Florian Schwarz, Ulrich Meyer: 24.7.2009 *calibrate declination -2.5 ;2009 BMN-M31 ;*calibrate declination -1.4 ;2009 Gauss-Krueger 3 4 10.97 179 44 2 1 3 1 4 5 4.80 25 18 0 2.5 1 0.5 5 6 7.97 164 45 2 3 10 0 6 7 6.53 198 46 2 3 8 2 *end Kongretionencanyon *equate Hauptzug.341 Roehrln.0 *begin Roehrln ;Ulrich Meyer, Florian Schwarz: 1.10.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 5.40 220 -3 0 4 5 1 1 2 5.01 135 -68 0 1.5 3 12 2 3 13.07 140 -75 1.2 0 4 7 3 4 5.85 107 -87 1 0 5 2 4 5 2.85 236 -64 1 0.6 2 1.8 5 6 5.28 246 -46 0 0.7 0.8 0.4 6 7 5.68 260 2 0 1 0.5 0.7 7 8 4.17 329 -20 0.6 0 0.4 0.2 8 9 2.12 263 -20 0 0.8 0.6 0.4 9 10 3.05 285 -2 0.4 0.4 1 0 10 11 3.91 269 5 0 0.7 0.5 0.5 ;Florian Schwarz, Ulrich Meyer: 19.7.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 11 12 1.80 263 -46 0.4 0.7 4 1.5 12 13 2.69 108 -32 0.8 0.6 0.5 1 13 14 3.96 305 -4 0.3 0.7 2.5 0.5 14 15 2.27 0 90 0 1.5 1 2.5 15 15a 2.32 278 -1 0 1 0.5 1 15a 15b 2.56 265 33 0 1 0.3 1 15b 15c 2.88 280 0 1 0 2 0.5 15c 15d 1.41 130 53 0.3 1 1.5 0 15d 15e 1.40 198 -33 0.5 0.5 0 1 15e 15f 1.64 197 26 1.5 0 5 0.7 15 16 2.38 3 17 0.3 0.8 0 1.6 16 17 2.87 301 29 0.5 0.6 1.5 1 17 18 3.77 270 -20 1.3 0 2 4 18 19 8.77 85 -59 1.2 0 6 1 19 20 1.27 65 -6 1.2 0 0.4 1 20 21 4.12 358 39 0 1.3 1 1.5 *end Roehrln *equate Hauptzug.344 Odlgrubn1.0 *equate Schacht6.14 Odlgrubn1.31 *begin Odlgrubn1 ;Wolfgang Zillig, Torsten Weinreich, Ulrich Meyer: 18.8.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 6.93 348 -4 1 1 0.5 1 1 2 3.74 280 24 3 1 7 1 2 3 2.11 320 11 4 0 7 15 3 4 6.67 296 -67 4 0 6 7 4 5 6.82 0 -90 1 1.5 12 0 5 6 0.72 16 15 1 1.5 12 0 6 7 4.01 62 -38 1 1 8 0.5 7 8 8.57 109 -5 1.5 0 1 1.5 8 9 4.35 343 -28 0 2 0.5 1.5 9 10 4.12 123 -5 1 1.5 2 0.5 10 11 3.94 149 28 1 0 1.5 1 11 12 4.46 35 -26 1 1 4 1 12 13 3.56 345 -3 0 1 4 1 13 14 3.40 350 -29 0 1.5 3 1 14 15 9.94 67 -15.5 0 2.5 1 1 15 16 7.75 133 27 3.5 0 11 1 16 17 7.21 67 12 5 0 5 1 17 18 7.41 289 -31 0 1.5 3 1.5 18 19 3.12 26 -13 0 1.5 0.5 1.5 ;Ulrich Meyer, Florian Schwarz: 2.11.2007 19 20 1.27 118 1 1.5 0 1 1.4 20 21 2.00 20 3 0 1.5 2.5 1.5 21 22 5.68 75 -50 2 2 5 25 22 23 7.89 17 -65 0 4 13 17 23 24 17.15 0 -90 2.5 1 30 0 24 25 4.20 255 25 0 4 8 1.8 25 26 8.81 341 -49 0 2 4 1.6 26 27 8.87 329 -2 3.5 0.3 6 1.6 27 28 10.45 261 14 0 4 8 1.6 28 28a 12.05 12 19 2.5 0.5 3.5 0 28a 28b 6.59 353 23 1.3 0.5 0 0.7 28b 28c 4.68 21 8 2 0 0.6 1.2 28c 28d 6.81 301 2 ;lrou fehlt 28 29 4.75 294 21 2.5 0.5 3.5 0 29 30 5.68 266 -11 ;lrou fehlt 30 31 5.87 255 -49 ;siehe Schacht6.14 *end Odlgrubn1 *equate Odlgrubn1.17 Odlgrubn2.0 *equate Zweig3.6 Odlgrubn2.29 *begin Odlgrubn2 ;Wolfgang Zillig, Torsten Weinreich, Ulrich Meyer: 16.8.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 5.22 39 26 0 1.5 1 0.5 1 2 5.14 170 8 3.5 0 8 1 2 2a 9.46 50 27 0 3.5 6 1 2a 2b 4.72 136 8 2 0 1 1.5 2b 2c 3.22 89 -18 0.5 0.5 0.5 0.5 2 3 6.38 110 3 1.5 2.5 3 0 3 4 3.76 155 0 0 0.7 0.3 1.4 4 5 5.70 185 -16 2.5 0 10 1.5 ;Ulrich Meyer, Florian Schwarz: 3.11.2007 5 6 2.56 37 11 0 2.5 5 1.5 6 7 2.70 105 -75 0.3 0.2 6 1.2 7 8 3.92 132 -72 3 0 3 1.5 8 9 9.04 95 -45 0 2.5 0.5 1.5 9 10 7.59 60 -44 2 0 5 1 10 11 4.65 18 -16 0 5 5 2 11 12 7.17 100 -52 5 0 8 8 12 13 7.70 0 -90 1 5 10 1 13 14 13.35 75 -2 8 8 10 2 14 14a 19.11 300 -25 ;lrou fehlt 14 14b 15.09 50 25 ;lrou fehlt 14 15 9.00 163 -18 ;lrou fehlt ;Johann Westhauser, Wolfgang Zillig: 3.11.2007 15 16 0.17 303 0 ;lrou fehlt 16 17 3.05 0 -90 0.4 0 0 0.7 17 18 2.10 10 -38 0.7 0 1.2 0.4 18 19 3.90 280 -9 2 2 1.2 1.8 19 20 1.76 0 -90 1.2 1.5 0.8 0 20 21 0.81 163 -26 0.3 0 1.1 1.5 21 22 1.50 0 -90 1.2 0.6 2.6 0 22 23 3.88 268 -20 2.5 1.1 0.15 0.6 23 24 4.97 228 12 0 3 1.5 0.7 24 25 4.43 345 -4 1 0.3 0.2 2 25 26 8.42 345 -49 3 1 2 0 26 27 2.35 341 -6 0.5 1 0 0.5 27 28 2.75 304 22 0 6 1.3 1.4 28 29 4.40 99 33 4 0.5 0.5 1 *end Odlgrubn2 *equate Odlgrubn2.5 Odlgrubn2a.0 *begin Odlgrubn2a ;Ulrich Meyer, Florian Schwarz: 3.11.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 6.46 116 10 0.3 0.3 3 1 1 1a 6.46 0 -90 0.5 0.5 10 0.5 1a 1b 5.20 175 -5 1 3 10 0.5 1 2 5.39 105 50 0 5 6 10 2 3 10.67 120 45 1 2 3 0 3 4 4.56 140 0 1 2 1 2 4 5 7.55 188 5 1.5 1.5 5 1 *end Odlgrubn2a *equate Odlgrubn2.15 HDB.0 *begin HDB ;Wolfgang Zillig, Ulrich Meyer, Florian Schwarz, Johann Westhauser: 3.11.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 7.10 84 -14 6 0 3 1 1 2 7.20 18 -3 0 6 3 1 2 3 8.12 82 -15 1 5 1 1.5 3 4 9.89 110 -38 2 5 0.5 1.5 4 5 5.62 40 -14 1.5 1.5 0 1.5 5 6 6.83 325 -31 2.5 2 3 0.5 6 7 5.54 10 -4 1 1 0 0.5 7 8 3.68 333 1 1 1.5 0 1 8 9 6.58 59 -1 1.5 1.5 6 1.5 *end HDB *equate HDB.4 SH.0 *begin SH ;Wolfgang Zillig, Ulrich Meyer, Florian Schwarz, Johann Westhauser: 3.11.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 4.70 221 3 5 0 3 1 1 2 7.68 204 -40 3 4 6 1 2 2a 9.48 216 7 5 3 0.5 0.5 2 3 10.05 72 -6 3 0 0.3 1.8 3 4 4.32 20 11 0.5 1 0 0.5 4 5 4.26 111 0 1.5 1.5 0.5 0 5 6 11.42 126 17 4 6 2.5 1.5 6 7 14.25 154 35 5 4 1.5 2 7 8 11.67 122 38 2.5 2 8 0.5 *end SH *equate Hauptzug.349 Droehnung.0 *begin Droehnung ;Wolfgang Zillig, Torsten Weinreich, Ulrich Meyer: 17.8.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 14.23 287 29 0.5 3 5 1 1 2 3.38 189 -11 1.3 2.6 7 4 2 3 11.11 215 -62 1 3 5 1.5 3 4 10.31 272 -56 2 2 5 1.5 4 5 14.13 243 -57 2 1 4 0 5 6 6.34 155 -50 0 3 2 1.5 6 7 11.29 127 -36 0 2 1.5 1.5 ;Florian Schwarz, Ulrich Meyer: 19.7.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 7 8 8.76 132 -44 0 2.5 4 0.8 8 9 6.13 107 4 0 2 4 0.8 9 10 6.88 93 0 1.3 0 2 1 10 11 3.37 121 -14 0.5 1.3 0.5 1 11 12 6.79 135 -1 0.5 0.8 0 0.7 12 13 0.91 213 7 0.3 0.3 0.5 0.4 13 14 2.22 73 74 0.5 1 4 1.5 14 15 3.26 115 49 0.5 1.5 0.5 0.5 13 13a 2.90 295 -27 0.5 0 1 0.4 13a 13b 2.86 177 5 0 1.5 0.5 0.4 13b 13c 4.45 283 5 1 0.5 0 0.2 *end Droehnung *equate Droehnung.8 Kluftlabyrinth1.0 *begin Kluftlabyrinth1 ;Florian Schwarz, Ulrich Meyer: 19.7.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 0 1 7.26 204 -9 1.3 0 1 1 1 1a 3.85 171 5 1.5 0 1 1.5 1a 1b 1.88 133 3 0.6 0 0.7 1.7 1b 1c 4.46 114 -59 0.7 0 0.4 0.7 1c 1d 3.88 78 -10 0 1 0.4 0.8 1d 1e 4.09 107 -25 0 1.5 0.5 0.5 1 2 3.88 300 -33 2.5 0 3 11 2 3 11.27 0 -90 1 0.6 14 0 3 4 3.23 101 -14 0 2.5 1.3 0.5 4 5 4.73 94 -7 1.5 1 7 1 5 6 6.54 93 -35 0.3 1.5 1 1 6 6a 7.52 123 -13 0.5 1 1 1.5 6 7 2.61 312 -29 2 0 1 1.3 7 8 9.98 57 -7 2 0 0.5 1.7 8 9 4.22 67 -55 0.1 0.3 0.6 0.4 9 10 2.90 81 0 2 1 1.5 0.5 *end Kluftlabyrinth1 *equate Kluftlabyrinth1.7 Kluftlabyrinth2.0 *begin Kluftlabyrinth2 ;Florian Schwarz, Ulrich Meyer: 19.7.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 0 1 4.08 293 -4 2 0 1.4 0.2 1 2 3.37 304 8 0.5 0.2 1.3 0.5 2 3 10.27 323 11 2.5 0.5 5 0.4 3 4 3.00 25 72 1.2 0 2 1.5 4 5 4.72 304 -6 0.6 1 0 0.5 5 6 4.57 268 5 0 3 3 0.8 6 7 10.45 46 42 4 0 3 0.5 7 8 7.83 290 11 1 2 5 1.3 8 9 6.40 270 53 0 3 2 1.5 9 10 2.65 332 -11 2.7 0.3 5 1 10 11 7.14 212 -12 1 1 0 0.4 11 12 3.37 267 -3 0.6 1 0.3 0.1 12 13 3.15 308 47 1.8 0 0.3 0.5 13 14 5.60 270 30 2 0.5 0 1.3 14 15 5.26 328 2 0.5 0.6 0 0.2 *end Kluftlabyrinth2 *equate Hauptzug.353 Schacht6.0 *begin Schacht6 ;Ulrich Meyer, Florian Schwarz: 30.9.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 0.83 34 35 5 3 5 37 1 2 8.90 351 -17 0 6 4 34 2 3 5.67 198 -50 0 4.5 9 29 3 4 6.00 310 -75 0 8 14 24 4 5 6.60 25 -79 0 4 20 18 5 6 9.25 0 -90 0 4.5 27 11 6 7 5.41 320 -78 0 5 36 2 7 8 8.14 109 -48 0 2 8 2 8 9 10.67 108 -49 1.5 0 15 1.5 9 10 10.07 70 -52 1.5 2.5 3.5 1.5 ;Johann Westhauser, Florian Schwarz, Ulrich Meyer: 1.10.2007 10 11 9.11 116 -14 2 2 1 0.5 11 12 5.75 129 -5 2 1 0.3 0.8 12 13 6.88 159 1 2.5 2 4 1 13 14 3.80 164 -16 ;lrou fehlt 14 15 7.22 170 -68 0.5 0.5 0 1.5 15 16 6.80 105 -61 1.5 0 3 1.5 16 17 15.93 0 -90 10 5 15 0 *end Schacht6 *equate Schacht6.17 Halle.0 *begin Halle ;Johann Westhauser, Florian Schwarz, Ulrich Meyer: 1.10.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 3.26 298 51 5 15 10 1 1 2 7.11 298 4 1.5 15 0 1 2 3 8.62 19 24 1 15 0 2 3 4 11.53 80 0 0 15 2 1.5 4 5 19.96 122 -23 2 15 5 0.5 5 6 15.07 155 -14 6 6 5 1.5 6 7 13.70 228 -8 3 15 1.5 1 7 8 7.38 313 11 2 15 2 1.5 8 9 5.64 330 12 3 15 4 1.5 9 10 7.05 317 35 2 15 2 2 10 0 7.45 307 12 ;siehe Schacht6.17 *end Halle *equate Halle.1 Zweig1.0 *begin Zweig1 ;Johann Westhauser, Florian Schwarz, Juergen Kuehlwein, Ulrich Meyer: 1.10.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 11.95 262 12 1 2 2 1 1 2 12.17 270 -26 3.5 2 5 0.3 2 3 7.14 261 20 3 2 0 1.8 3 4 11.32 251 -7 2 1 0 1.6 4 5 3.78 248 -3 0.5 0.5 0.5 0.5 5 6 4.26 228 -30 0.5 0.8 1.5 0 6 7 6.00 248 -45 1 0 1 1 *end Zweig1 *equate Halle.2 Zweig2.0 *begin Zweig2 ;Johann Westhauser, Florian Schwarz, Juergen Kuehlwein, Ulrich Meyer: 1.10.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 16.00 325 -33 2 2 1 0 1 2 3.90 296 -12 1.5 0 0.5 1 2 3 2.59 265 -47 0.6 0.6 0.7 0 3 4 2.04 284 22 0.8 0.8 0.8 0 4 5 2.68 270 36 0.4 0.8 0 0.6 5 6 5.52 285 48 1 1.2 2.5 0 6 7 5.51 290 41 1 1 0.5 0 7 8 4.50 357 39 2 2 15 1 8 9 2.61 256 -8 0.4 0 3 0.2 9 10 3.75 0 90 0.5 0.5 0 3 10 11 3.29 246 -10 1.8 0.5 1 0.5 11 12 3.91 262 -26 0.5 1 3 0.5 12 13 2.30 0 17 1 0.5 0.5 1 13 14 4.45 294 29 1 0.5 1.5 1.5 14 15 6.23 300 30 0.5 1 1 0.5 15 16 7.29 271 -13 1 0 1 1.5 16 17 3.61 259 -1 0 0.8 1.5 1.5 17 18 2.06 301 3 0.8 0 1.5 1.5 18 19 6.75 237 7 0 1.4 2.5 1 19 20 5.82 308 11 1.2 0 1.5 1 20 21 6.17 256 -3 0.6 0.5 3 1 21 22 5.07 222 -19 0.3 0.5 1 1 ;Florian Schwarz, Ulrich Meyer: 20.7.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 22 23 3.81 201 -33 1 0 1.5 1.5 23 24 4.17 110 -20 1 0 1.5 1.5 24 25 2.31 76 1 0 1.7 1.5 1.5 25 26 5.42 122 -42 0 1.5 4 1.5 26 27 4.31 201 -29 1.3 0.2 0.1 0.6 27 28 7.24 251 -29 1.5 1 0 2 28 29 11.05 263 -63 0 5 5 2 29 30 4.54 25 0 1 0 1.5 1.3 30 31 3.30 308 -23 1.7 0 5 5 31 32 6.02 255 -38 4 0 3 1.7 32 33 4.18 217 -57 0 0.5 1 0 33 34 2.23 259 3 0 0.5 0.5 0.5 34 34a 4.94 0 -90 ;lrou fehlt 34 35 2.30 177 41 0.3 0.2 0.5 0.5 35 36 2.39 340 41 1 0 5 0.5 ;Florian Schwarz, Ulrich Meyer: 21.7.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 36 37 3.91 231 42 0 2 6 1 37 38 3.18 296 -38 2 0 8 1.5 38 39 4.49 211 -41 1 2 1 1.7 39 40 1.49 250 -25 0.2 0.3 0 0.4 40 41 3.32 292 -11 0.3 0.4 0.5 0.5 41 42 3.09 298 -2 0.6 0 0.3 0.3 42 43 1.76 272 -44 0.3 0 2 8 43 44 7.93 0 -90 6 3 8 0 44 45 3.76 289 -23 8 0.5 4 0 45 46 11.89 230 -45 0 7 8 1.6 46 47 5.54 326 -3 7 3 6 2 47 48 8.41 269 -18 3 0 2 1.5 48 49 8.00 242 -20 5 2 0.7 0 49 50 5.34 218 -1 0 4 0.4 1 50 51 7.46 267 2 0 4 3 1 51 52 5.58 259 -51 0 5 2 6 52 53 16.82 224 -55 3 1.5 3 1.5 53 54 10.66 247 -28 1 10 8 2 ;54 55 11.62 274 -27 8 8 10 2 ;55 56 11.90 273 -8 8 10 8 2 ;56 57 21.02 270 -22 8 6 5 0 ;57 58 11.07 275 -12 2 1 0 1 58 59 4.38 240 -58 2 3 0.5 0.5 59 60 11.05 348 -10 3 4 0 0.7 60 61 8.89 253 -2 2 2 0 0.3 61 62 3.06 136 4 1 2 0.6 0 62 63 12.26 214 17 2.5 5 4.5 1.5 ;Juergen Kuehlwein, Werner Vogel, Rainer Vogelpohl: 16.8.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 58 58a 15.84 60 15 ;lrou fehlt ;Hallenrundzug 58a 58b 20.32 95 18 ;lrou fehlt 58b 58c 9.40 65 4 ;lrou fehlt 58c 58d 7.08 123 11 ;lrou fehlt 58d 58e 17.83 187 13 ;lrou fehlt 58e 54 3.93 38 29 ;lrou fehlt 58e 58f 16.70 312 -25 ;lrou fehlt 58f 58g 7.25 285 4 ;lrou fehlt 58g 58h 19.10 230 -20 ;lrou fehlt 58h 58 19.10 317 -14 ;lrou fehlt 58c 58c1 8.71 215 -3 ;lrou fehlt ;Wasserloch 58c1 58c2 7.22 192 -44 ;lrou fehlt 58c2 58c3 10.10 55 -46 ;lrou fehlt *end Zweig2 *equate Halle.6 Zweig3.0 *begin Zweig3 ;Johann Westhauser, Florian Schwarz, Juergen Kuehlwein, Ulrich Meyer: 1.10.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 3.97 205 -18 8 5 3 1 1 2 12.43 63 27 5 4 8 0 2 3 12.05 57 27 3 5 5 0 3 4 16.38 117 27 5 5 4 0 4 5 5.00 136 60 2 4 3 1 5 6 8.41 150 39 3 2 1 1.5 *end Zweig3 *equate Halle.9 Zweig4.0 *begin Zweig4 ;Johann Westhauser, Florian Schwarz, Juergen Kuehlwein, Ulrich Meyer: 1.10.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 14.25 192 -24 5 3 0 2 1 2 11.38 184 -28 2 2 1 1 2 3 2.95 184 -38 1 1 0 2 3 4 4.90 298 -13 1 1 1 2 4 5 5.56 313 -33 5 5 0 2 5 6 10.58 268 -22 2 2 0 0.5 *end Zweig4 *equate Halle.8 Zweig5.0 *begin Zweig5 ;Johann Westhauser, Florian Schwarz, Juergen Kuehlwein, Ulrich Meyer: 1.10.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 10.04 292 -5 2 2 4 1 1 2 10.89 270 -22 2 2 1 1.5 *end Zweig5 *equate Hauptzug.346 Schacht1.0 *begin Schacht1 ;Ulrich Meyer, Florian Schwarz: 2.11.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 4.20 65 -28 0 3 6 6 1 2 8.23 107 -53 1 1 2.5 1.5 2 3 4.45 267 -11 0 1 1 1 3 4 4.27 284 -42 2 2.5 1.5 0.3 4 5 4.17 349 18 1.5 1 2.5 0.3 *end Schacht1 *equate Hauptzug.347 Schacht23.0 *equate Hauptzug.350 Schacht23.10 *begin Schacht23 ;Ulrich Meyer, Florian Schwarz: 2.11.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 3.90 45 -40 0 4 7 12 1 2 11.94 122 -79 4 0 10 1.5 2 3 5.70 228 -34 1.5 4.5 0 1 3 4 4.76 331 -17 1 0 2 1.5 4 5 8.02 337 56 1 0 1 0.5 5 6 11.37 310 -55 0 3 25 4 6 7 5.35 18 -20 2 0 25 5 7 8 14.54 235 60 5 0 8 15 8 9 6.48 222 68 0 6 4 21 9 10 6.68 300 18 ;siehe Hauptzug.350 *end Schacht23 *equate Schacht23.9 Schacht4.0 *begin Schacht4 ;Ulrich Meyer, Florian Schwarz: 2.11.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 6.30 24 -25 0.5 1 6 0 1 2 8.88 43 -60 0.5 2.5 12 6 2 3 5.60 30 -80 1 0 4 1 3 4 4.00 0 -90 0.5 0.5 4 0 *end Schacht4 *equate Hauptzug.348 Gully.0 *equate Schacht23.2 Gully.5d *begin Gully ;Johann Westhauser, Wolfgang Zillig: 2.11.2007 *calibrate declination -2.3 ;2007 BMN-M31 ;*calibrate declination -1.2 ;2007 Gauss-Krueger 0 1 11.37 82 1 1.2 0.5 7 1 1 2 2.46 90 -32 0.6 0.4 0.4 0.6 2 3 3.50 220 -45 0.2 0.7 0.6 0.7 3 4 13.72 102 -46 0.5 2 3 1.5 4 5 4.22 225 -13 1 0 1.2 0.2 5 5a 3.46 350 -34 0.2 0.2 0 1 5a 5b 1.84 330 10 0.8 0.8 2 1 5b 5c 2.15 270 21 0 3 1.5 1 5c 5d 6.77 15 38 0 2.5 1.8 0.6 5 6 2.89 152 -23 0.5 0.7 0 2.2 6 7 1.49 0 -90 2 1 1.5 0.4 7 8 0.71 281 -24 0 0.8 1.8 0.1 8 9 0.88 0 -90 0 0.8 1.4 0.1 9 10 3.18 217 7 0.5 1 0.8 0.5 10 11 13.15 88 23 2 1 0.5 0.5 11 12 2.67 182 42 0.5 0.5 3 0 12 13 4.52 137 1 0 0.9 0.4 0.4 ;Johann Westhauser, Florian Schwarz, Torsten Weinreich: 30.10.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 13 14 1.75 196 -23 0.8 0 0.4 0.8 14 15 3.54 170 -66 0.5 0.5 1.2 1.3 15 16 4.23 322 -68 1.3 0 3 0.5 16 17 3.88 177 -15 0 1.5 0.5 0.6 17 18 7.28 287 -27 1 1 1.5 3 18 19 3.22 193 -60 1.3 0 0.4 0.4 19 20 3.25 123 -10 0 1.2 1 5 20 21 4.68 227 34 1 1 1.8 1.8 21 21.1 2.31 92 28 1.5 2 3.6 2.7 21.1 21.2 5.36 76 -42 1 2.2 1 1.8 21.2 21.3 4.14 221 -30 2 2.5 0.9 1.2 21.3 21.4 3.50 138 9 1 0.2 1 1 21.4 21.5 6.70 85 20 ;lrou fehlt 21.5 21.6 3.53 68 25 ;lrou fehlt 21 22 16.26 271 -18 1.7 0.9 2.7 0 22 23 5.56 225 4 1 1.2 1.3 0.5 23 24 4.32 278 36 1 2 5 0 24 25 4.33 308 -30 0.5 2.3 9 1.2 25 26 3.04 238 -34 0 1.8 0.8 0.6 26 27 4.44 274 -13 0.5 2 1.5 1 27 28 3.76 246 -5 0 1.5 1.7 0.6 28 29 7.59 307 4 1.3 0 1.2 0.7 29 30 3.60 250 27 0 0.8 0.7 1.2 30 31 1.80 304 0 2 0 0.4 1.5 31 32 2.53 227 -20 0 0.5 1.2 0.2 32 33 0.67 250 -27 0.8 0 0.4 0.7 33 34 1.34 301 9 0 0.2 2 0.6 34 35 2.94 319 74 0.8 1 1.8 1 35 36 1.47 357 -35 1 2 2 0.8 36 37 2.31 281 -4 0 1.2 0 0.4 37 38 2.86 233 15 0 0.7 0.2 0.8 38 39 2.65 253 5 0 0.7 0.5 0.5 39 40 2.22 311 21 1.1 0 0.4 0.5 40 41 2.92 227 -2 0 0.6 1.3 1 41 42 2.11 303 36 0.6 0.2 0 1.3 *end Gully *equate Hauptzug.352 Schachtumgehung.0 *equate Schacht6.2 Schachtumgehung.8 *begin Schachtumgehung ;Florian Schwarz, Ulrich Meyer: 20.7.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 0 1 10.26 31 52 1 4 5 0 1 2 10.91 10 44 5 1 5 0 2 3 5.52 320 11 0 4 3 1.6 3 4 8.41 35 -24 5 0 5 1.6 4 5 6.48 253 -11 0 4 4 1 5 6 19.60 281 -41 2 0 5 2 6 7 5.54 194 -1 2 0 5 1.6 7 8 13.68 100 -14 0 6 3 2 *end Schachtumgehung *equate Schachtumgehung.8 Parallelschacht.0 *equate Odlgrubn1.28d Parallelschacht.11 *begin Parallelschacht ;Florian Schwarz, Ulrich Meyer: 20.7.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 0 1 8.65 104 -35 3 0 1.5 2 1 2 9.07 70 -60 0 4 7 6 2 3 6.07 65 -57 0 3 7 8 3 4 12.06 112 -54 2.5 2 0 2 4 5 2.03 17 -20 0 2 0.5 1.5 5 6 6.06 116 -29 4 0 3.5 1.5 6 7 9.10 57 -43 3 1 5 2 7 8 6.87 30 -32 5 3 3.5 1.5 8 9 4.43 44 5 0 1.5 1.3 1.7 9 10 4.58 152 -40 0.4 0 1 2 10 11 4.50 125 -68 0.6 0 1 1.6 *end Parallelschacht *equate Schacht6.9 Windschacht.0 *equate Zweig2.8 Windschacht.7 *begin Windschacht ;Florian Schwarz, Ulrich Meyer: 20.7.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 0 1 1.81 295 -38 1 0.5 5 0 1 2 4.45 277 -45 1 1.5 1 20 2 3 18.63 0 -90 0 2.5 18 2 3 4 2.80 3 -25 2.5 0 1.5 10 4 5 4.43 275 -63 0 2.5 2 8 5 6 9.70 0 -90 2.5 0.5 10 0 6 7 2.14 321 50 2 2 10 1 *end Windschacht *equate Schachtumgehung.6 Seengang.0 *begin Seengang ;Johann Westhauser, Ulrich Meyer: 15.8.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 0 1 0.47 65 -70 0 2.5 7 1.5 1 2 21.03 321 3 5 1 10 0 2 3 1.38 315 24 4 1 10 1 3 4 14.78 289 3 3 0 10 1.8 4 5 10.93 228 -2 0 1.5 10 1.5 5 6 9.60 243 1 0 1.5 4 1.6 6 7 6.66 293 0 1.5 0 10 1.5 7 8 8.24 260 0 0 1.5 10 1.6 8 9 6.15 298 0 1.5 0 10 1.6 9 10 12.93 272 0 2 3 8 1.8 10 11 12.70 276 -5 5 3 10 1 11 12 5.22 248 15 0 2 10 1.5 12 13 9.84 283 -2 0 2 10 1.5 13 14 7.05 346 1 2 0 10 1.5 14 15 6.79 266 0 0 2 10 1.5 15 16 16.37 289 0 0 2 10 1.5 16 17 5.39 6 0 0 2 10 1.5 17 18 3.69 84 1 2 0 10 1.5 18 19 8.91 1 0 2 0 10 1.5 19 20 6.87 359 -2 2 0 10 1.5 20 21 5.69 280 -3 0 2.5 10 1 ;Johann Westhauser, Ulrich Meyer: 16.8.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 21 22 12.27 322 -22 0 5 10 1 22 23 12.26 339 20 2.5 0 10 0.5 23 24 2.86 329 11 2 0 6 1 24 25 8.54 316 2 2 5 10 2.5 25 26 5.90 332 10 2 3.5 5 1.7 26 27 7.38 294 -11 0.5 2.5 2.5 1 27 28 5.45 320 5 3 0 3 1.5 28 29 13.25 287 -5 4 0 10 2.5 29 30 8.91 223 -13 0 1.5 10 1 30 31 5.60 243 -6 0 1 10 0 31 32 6.24 305 -1 0 1.5 10 1.5 32 33 5.67 347 0 4 0 4 1 33 34 9.73 265 0 6 0 3 1 34 35 6.95 171 6 0 2 10 1 35 36 6.35 256 -7 0 1.8 10 1 36 37 17.74 328 4 0.7 0.7 10 1.7 37 38 10.77 353 -7 1.5 0 3 1.5 38 39 4.20 316 -1 2.5 0 10 11.5 ;Torsten Weinreich, Florian Schwarz, Ulrich Meyer: 24.7.2009 *calibrate declination -2.5 ;2009 BMN-M31 ;*calibrate declination -1.4 ;2009 Gauss-Krueger ;38 40 5.18 75 33 1 0 1 2 ;R fraglich ;40 41 3.49 318 -18 1 0 25 1 ;41 42 8.46 270 -5 0 2 25 1.6 ;42 43 9.55 317 0 1.8 0 25 1.8 ;43 44 8.46 303 -3 0 1.6 25 1.7 ;44 45 10.32 334 -3 0 2 25 1.8 ;45 46 5.98 314 -9 2 0 4 1.7 ;46 47 3.49 312 26 2 2 0 1.6 ;R fraglich ;47 48 1.68 350 -15 4 1.3 25 0 ;R fraglich ;48 49 7.70 74 -5 0 1 15 1.5 ;49 50 5.18 120 12 2 0 12 1.6 ;50 51 4.33 97 0 1.8 0 8 1.6 ;51 52 16.27 65 0 0 6 3 1.6 ;52 53 4.50 81 -14 1.8 0 10 1.5 ;53 54 5.84 348 0 0 1.8 8 1.6 ;54 55 0.90 2 -8 0 3 8 2 ;Nachvermessung Johann Westhauser, Tanja Shabarova, Ulrich Meyer: 13.9.2009 38 40 5.18 325 33 40 42 11.75 295.5 -14 42 43 9.53 316.5 3 43 44 8.37 292 -1 44 45 10.30 331 -2 45 46 5.96 313 -8 46 47 3.44 343.5 28 47 48 1.69 40 -23.5 48 49 7.67 78 -5 49 51 9.12 111 7 51 52 16.34 66 1 52 53 4.49 64 -12 53 55 6.67 350 0 ;Johann Westhauser, Florian Schwarz: 25.7.2009 *calibrate declination -2.5 ;2009 BMN-M31 ;*calibrate declination -1.4 ;2009 Gauss-Krueger 55 56 36.23 92 -41.6 5.9 11.9 9.5 1.6 56 57 13.85 106.2 -15.4 4.0 3.8 0.5 0 57 58 14.13 88.1 -1.7 4.8 0.5 2.0 1.3 58 59 11.69 25.7 -20.6 0 2.2 0.2 0.3 59 60 8.57 89.2 2.3 2.2 4.4 1.5 0 60 61 7.96 110 -2.0 3.3 0 0.2 0.2 61 62 11.53 54.5 13.4 0 6.6 2.4 2.1 62 63 14.20 73 10 9.2 0.5 0.3 1.0 63 64 10.40 327 -15 0 7.9 1.0 1.5 64 65 20.53 36.5 0 4.2 1.0 0 0.6 ;Wolfgang Zillig, Florian Schwarz: 25.7.2009 65 66 9.63 18.6 -14.6 3.0 1.2 0 0.7 66 67 9.41 20.9 -12.9 0.4 3.0 0.7 0.5 67 68 23.25 41.3 -0.7 3.5 0.7 0.6 0.5 68 69 13.55 23.1 2.8 1.5 1.2 0 1.2 69 70 6.64 21.5 -6.6 2.5 3.5 1.2 0 70 71 14.86 22.3 0.5 2.0 2.5 0 0.5 71 72 0.48 0 -90 2.0 2.5 0.5 0 72 73 6.25 25.6 3.4 2.0 2.0 0.3 0 ;73 74 4.30 25.6 0 2.0 2.0 0.2 0 66 66.1 11.44 168 21 1.0 3.0 4.3 0.5 66.1 66.2 4.78 160 34 0 3.5 2.7 2.0 66.2 66.2.1 22.0 126 40 ;Fledermausschlot 66.2 66.2.2 15.0 0 23 ;anderer Schlot ;Marcus Preissner, Florian Schwarz, Juergen Kuehlwein: 13.9.2009 *calibrate declination -2.5 ;2009 BMN-M31 ;*calibrate declination -1.4 ;2009 Gauss-Krueger 73 74 5.65 28 -3 1.5 1.5 0.4 0 74 75 0.40 0 90 1.5 1.5 0 0.4 75 76 1.43 50 -2 0.8 0.3 0 0.5 76 77 2.75 9 -5 0.4 0.1 0 0.5 77 78 1.75 8 1 0.5 0 0 0.4 78 79 3.52 55 11 2.0 1.0 0 0.5 79 80 0.25 0 -90 2.0 1.0 0.25 0.25 80 81 7.05 30 -3 1.0 2.5 1.0 0 81 82 3.86 24 17 0 1.5 0.3 1.2 82 83 6.84 70 20 2.5 7.0 2.5 2.0 83 84 9.45 100 6 12.0 2.0 4.0 2.0 84 85 15.70 10 12 0.5 4.0 5.0 1.5 85 86 6.15 12 -16 5.0 0.8 2.0 1.5 86 86.1 12.35 228 -13 1.5 1.5 0.0 0.8 86.1 86.2 3.78 185 -16 0.4 2.0 0.0 0.6 86.2 86.3 7.76 233 -12 0.5 0.4 0.0 0.5 86.3 86.4 2.30 144 -3 ;lrou fehlt 86.4 83 2.00 0 90 ;siehe oben ;Johann Westhauser, Tanja Shabarova: 13.9.2009 86 87 7.34 4.5 11 1.5 3.0 2.5 1.8 87 88 2.22 83.2 -40.5 ;siehe unten 86 87a 6.74 350 -11.3 3.5 1.0 2.5 1.5 87a 88 4.04 73 17.6 0.1 1.5 0.2 0.1 88 89 15.64 137 24.5 1.5 2.0 5.0 0.5 89 90 20.36 42 26.8 2.5 0 2.0 2.0 90 91 17.72 343 0.4 3.0 2.0 5.0 2.0 91 92 11.70 349 7.9 2.0 1.2 0 1.0 ;Johann Westhauser, Tanja Shabarova, Florian Schwarz: 13.9.2009 90 90.1 8.44 148 23 2.5 1.8 3.0 0 90.1 90.2 18.13 92 40 0.5 0.5 0.2 0.5 92 93 14.74 94 12.5 1.4 5.0 11.0 0 93 93.1 13.40 124 38 ;lrou fehlt 93 94 6.22 353 69 0 2.0 8.0 1.5 94 95 0.69 40 -16 0 2.0 8.0 1.5 95 96 2.42 17 3 0 2.0 8.0 1.5 ;Marcus Preissner, Ulrich Meyer: 13.9.2009 96 96.1 20.20 330 -38 2 1 7 0 96 97 15.50 14 -26 2 4 3 1.3 97 98 8.38 354 3 2.5 2 7 0.5 98 98.1 7.62 316 28 3 1 10 1.6 98 99 13.71 126 25 2 0 7 1.7 99 100 10.07 61 -1 0 2 8 1.6 100 101 6.11 94 -2 1.5 0 5 1.6 101 101.1 13.45 358 -33 1.6 0 0.6 1.8 101 102 20.88 66 -3 2.5 2 3 0.7 102 103 10.20 31 -1 5 0 3 1.5 103 104 18.70 336 -22 4 0 3 1 104 105 11.82 266 -22 0 5 3.5 0.3 105 106 9.36 349 -5 4.5 0 3.5 0.3 106 106.1 10.26 250 -10 4 0 0 0.8 106 107 3.59 19 0 3.5 0 1 1.5 107 108 20.42 42 -1 4 0 3.5 0.8 108 109 2.36 45 17 5 0 4 1.5 109 110 13.95 8 -9 1 3.5 5 0.2 110 111 17.66 345 -13 0.7 3 9 0 ;Johann Westhauser, Ulrich Meyer: 13.9.2009 111 112 7.30 313 -31.5 1 3 1.6 1.3 112 112.1 5.42 215 12 0 1.2 0.2 0.4 112.1 112.2 2.32 227 -1 1.5 0 0.8 0.7 112.2 112.3 6.50 221 -40 0.5 0.5 2.5 0 112 113 7.29 310 -33.5 0 2 5 1 113 114 4.24 31 -31 2.5 0 2 0.3 114 115 8.65 16 3.5 0.2 1.5 0.3 0.6 115 116 7.79 2 -18 2 2 0 1.5 116 117 14.50 337 -20 4 1.5 0.3 1.7 117 118 10.31 315 -61 0.5 3 6 0.7 118 119 6.24 309 -23.5 3 3 1 0 119 120 5.18 201 -15 1.1 1.3 0.8 0.2 120 121 9.05 239 -16 1.7 0 0.2 0.7 121 121.1 6.70 14 -13 0.4 0.4 0.2 0 121 122 2.46 167 8 0 2.5 0.1 0.2 122 123 4.45 228 3 1.5 1.2 0.2 0.8 123 124 3.72 242 -19 0.5 0.5 0 0.3 119 119.1 8.24 287 -33.5 0 3 0.2 1 119.1 119.2 4.65 357 -12 1.6 2.5 0 1 119.2 119.3 6.67 336 -35 0.8 0.6 0.3 0 119 119.4 3.53 34 -1 0.8 0 2 1 119.4 119.5 4.97 336 -30 0.5 1.5 0.7 0 119.5 119.6 3.47 7 2 1 0 0 1 119.6 119.7 5.15 106 34 1.5 0 1 0.5 119.7 119.7.1 4.40 36 30 0.4 0.4 0 0.2 119.7 119.8 3.56 205.5 13 0.3 0 0.2 0.3 119.8 119 6.88 198 -8.5 ;siehe oben *end Seengang *equate Seengang.4 Kluftschlot.0 *begin Kluftschlot ;Johann Westhauser, Ulrich Meyer: 16.8.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 0 1 3.85 94 52 2.5 0 10 5 1 2 21.62 288 31 1.5 0 50 1.5 *end Kluftschlot *equate Seengang.11 Gipsgang.0 *equate Kluftlabyrinth2.14 Gipsgang.21 ;Ring nicht geschlossen (fake) *begin Gipsgang ;Johann Westhauser, Ulrich Meyer: 16.8.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 0 1 13.30 145 24 0 1.5 1 1 1 2 3.94 183 28 2 0 1 1.5 2 3 4.28 104 7 3 2.5 1 1 3 4 14.20 171 38 0 3.5 4 1.7 4 5 4.20 208 -14 1.5 2 6 0 5 5.1 5.24 174 26 0 2 3 1 5.1 5.2 9.50 194 3 0 4 1.5 1 5.2 5.3 9.98 318 -7 3.5 0 3 1 5.3 5.4 3.16 298 -2 3.5 0 2.5 1.5 5.4 9 5.44 244 -39 0 2 5 6 5 6 5.56 261 -23 2.5 0 2 1 6 7 5.32 192 -2 0 1.5 1.5 1 7 8 7.19 273 0 2 0 4 1 8 9 2.13 228 9 0 2 5 6 9 10 3.77 274 -40 3.5 0 8 1.7 10 11 7.10 152 -63 2 0 8 0 11 12 11.43 117 -40 0 3 5 1.7 12 13 18.91 185 -63 2 0 2 1.7 13 14 6.47 67 -12 0 3 1 1.7 ;Martin Schneider, Florian Schwarz, Joel Corrigan, Ulrich Meyer: 31.10.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger *units compass clino grads 14 15 17.63 152 -60 0 1.5 3.5 0.8 15 16 7.96 188 -24 3 0 2.5 1.3 16 17 18.02 114 -42 3 1 3.5 0.5 17 18 8.63 109 -19 1.5 0.8 2.5 0.5 18 19 3.43 198 -58 0.3 0.4 0.4 0 19 20 2.63 246 -26 0.2 0.2 0.1 0.1 *equate 20 surface.20 *begin surface *flags surface 20 21 4.00 200 -10 ;Ring nicht geschlossen (fake) *end surface 16 16.1 5.62 0 -100 2.5 1 4 0 16.1 16.2 6.66 331 31 4 2 3 1 16.2 16.3 11.22 347 15 1 1 1.5 1 *units compass clino degrees *end Gipsgang *equate Gipsgang.10 Gipsseitengang.0 *begin Gipsseitengang ;Marcus Preissner, Tanja Shabarova, Ulrich Meyer: 12.9.2009 *calibrate declination -2.5 ;2009 BMN-M31 ;*calibrate declination -1.4 ;2009 Gauss-Krueger 0 1 1.05 236 5 0.3 0.3 7 1 1 2 2.01 317 1 0 0.5 5 1.4 2 3 1.97 239 -7 0 1 0.5 3.5 3 4 3.53 0 -90 1 1 4 0 4 5 2.84 175 3 0 2.5 1 0.6 5 6 4.08 259 11 2.5 0 1.6 0.8 6 7 4.09 254 -46 1.3 0 1.3 2 7 8 5.30 68 -43 1.3 0 1.5 0.2 8 9 5.21 92 59 1 0.5 0.4 1.6 9 6 5.30 271 32 0 2.5 1.6 0.8 3 10 3.46 17 33 0.8 0 2 1 10 11 2.26 293 74 1.8 0.2 7 2 11 12 7.77 293 67 0 1 4 6 12 13 2.37 345 45 1.6 0 1.8 1.5 13 14 3.40 282 -6 0 1 1.5 0.3 14 15 7.20 240 30 0.2 0.2 0.5 0.5 *end Gipsseitengang *equate Seengang.11 Rutschpartie.0 *begin Rutschpartie ;Johann Westhauser, Ulrich Meyer: 16.8.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 0 1 9.20 77 -1 0 2 5 0.5 1 2 4.12 71 -4 1.5 0 0.5 1.5 2 3 6.17 317 -21 0 3 2.5 0.5 3 4 3.28 52 -15 2 0 0 0.5 4 5 5.48 304 10 0 2.5 4 1 5 6 7.10 322 -30 1 2 3 1 ;Florian Schwarz, Martin Schneider, Joel Corrigan, Ulrich Meyer: 31.10.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger *units compass clino grads 6 7 16.61 363 -38 0.7 1.6 0 1.2 7 8 5.95 34 -35 1 1 0 0.6 8 9 5.99 398 -34 0.8 0.3 0.1 0.8 9 10 3.92 303 -16 0.8 1.6 0 1.3 10 11 6.58 333 -34 0.3 2.5 3 1.6 11 12 3.46 0 -100 2 0 15 0 12 13 8.42 82 -39 2 0.8 0 5 13 14 2.46 0 -100 1.6 0.5 3 2 *units compass clino degrees *end Rutschpartie *equate Seengang.26 Steile_Halde.0 *begin Steile_Halde ;Johann Westhauser, Ulrich Meyer: 16.8.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 0 1 15.59 280 34 4 2 10 0 ;Wolfgang Zillig, Torsten Weinreich, Ulrich Meyer: 26.7.2009 *calibrate declination -2.5 ;2009 BMN-M31 ;*calibrate declination -1.4 ;2009 Gauss-Krueger 1 2 16.14 237.9 42.0 10 0 15 1 2 3 5.11 154.6 42.8 8 2 15 1 3 4 4.55 147.0 7.5 4 3 15 1 *end Steile_Halde *equate Seengang.27 Brausecanyon.0 *equate Seengang.22 Brausecanyon.17 *begin Brausecanyon ;Johann Westhauser, Ulrich Meyer: 16.8.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 0 1 2.68 202 -6 0 1 2 1.5 1 2 2.73 293 10 1 0 1.5 1.7 2 3 5.63 213 6 1 0 2 1.7 3 4 3.27 138 -4 0 1.5 4 1 4 5 3.26 198 0 1 0 4 10 ;Joel Corrigan, Ulrich Meyer: 31.10.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 5 6 2.09 172 2 0 0.7 5 11 6 7 2.95 241 1 0 1.2 5 8 7 8 9.50 0 -90 0.3 1 14 0.5 8 9 2.23 58 32 0.8 0 13 5 9 10 2.75 0 -90 0.3 0.3 16 3 10 11 7.33 29 -18 0 2.5 5 1.5 11 12 9.45 112 -13 2.5 0 0.8 3 12 13 5.29 75 -19 1.2 2 1.8 0.2 13 14 5.42 104 13 0 3 1.3 1 14 15 7.15 167 27 1.8 0 0.6 1 ;Torsten Weinreich, Florian Schwarz, Ulrich Meyer: 24.7.2009 *calibrate declination -2.5 ;2009 BMN-M31 ;*calibrate declination -1.4 ;2009 Gauss-Krueger 15 16 7.61 139 50 4 4 10 0 16 17 5.57 159 8 6 0 10 1 *end Brausecanyon *equate Brausecanyon.16 Missing_Link.0 *equate Brauseschacht.10 Missing_Link.14 ;Marcus Preissner, Tanja Shabarova, Ulrich Meyer: 12.9.2009 *calibrate declination -2.5 ;2009 BMN-M31 ;*calibrate declination -1.4 ;2009 Gauss-Krueger *begin Missing_Link 0 1 3.25 157 -22 1 0 1 1.3 1 2 5.20 97 -27 0 1.6 1 1.7 2 3 2.24 271 -60 1 0 1 1 3 4 3.42 312 -37 1.2 0 0.2 1.8 4 5 4.80 303 -49 0.8 0.6 3 1.6 5 6 3.95 85 -23 0 1 0.4 1.7 6 7 1.95 14 -42 0 1 0.8 0.8 7 8 4.18 103 -10 0 0.5 0.8 0.5 8 9 4.45 96 -63 1 0 1 1.6 9 10 5.40 86 -26 0.3 0.6 2 0 10 11 3.40 8 -40 0.5 0 1 0.5 11 12 2.47 303 -52 0 3 6 10 12 13 9.45 0 -73 1.5 0 15 1.8 13 14 6.95 23 -4 2.5 2 1 1 10 10.1 1.20 179 57 0.6 0 0.8 1 10.1 10.2 3.77 152 -6 0.6 0 0.1 0.6 10.2 10.3 3.10 97 -30 0 0.6 0.6 0.4 10.3 10.4 4.45 120 -7 1 0 0.4 0.6 10.4 10.5 2.75 34 -2 0 1 0.4 0.4 10.5 10.6 3.85 100 42 0 0.6 0.2 1 10.6 10.7 2.80 192 -4 0.5 0 0.3 0.2 *end Missing_Link *equate Brausecanyon.14 Brauseschacht.0 *begin Brauseschacht ;Wolfgang Zillig, Torsten Weinreich, Ulrich Meyer: 25.7.2009 *calibrate declination -2.5 ;2009 BMN-M31 ;*calibrate declination -1.4 ;2009 Gauss-Krueger 0 1 2.56 116.4 -12.2 0.8 0 3 8 1 2 14.68 44 -57 0 0.6 8 1.5 2 3 2.73 116.9 -42.9 0 0.6 3 1 3 4 0.83 226.9 -20.8 1 0 3 1 4 5 5.88 120.7 -48.3 1 0 6 3 5 6 5.00 43.2 -16.8 0 1.3 1 1.5 6 7 2.23 101.9 -51.1 0.5 0 2.5 1 7 8 3.68 81.9 -16.7 0 0.5 2 0.8 8 9 2.67 167.9 46.7 1 0 2 1 9 10 4.33 120.2 -9.3 2 2 5 0 ;10 10a 7.98 209.7 -0.2 0 0.6 14 1.5 10 10.1 4.15 144.9 -42.7 1 1 0.5 0.4 10.1 10.2 4.16 227.8 -19.0 1.6 2 0 0.8 10.2 10.3 4.42 356.5 -15.0 0.6 0.5 0.5 0.3 10 11 4.11 85.8 9.1 1 0 1 1 11 12 8.16 82.6 -65.9 1.7 0 8 1.8 12 13 5.35 73.4 -42.6 1.2 0 4 1.5 13 14 12.22 356.7 -41.4 1 2 10 0 14 15 3.57 346.9 -39.5 1 5 3 0 *end Brauseschacht *equate Brausecanyon.7 Monsterschacht.0 *equate Nebelschacht.17 Monsterschacht.18 *begin Monsterschacht ;Joel Corrigan, Ulrich Meyer: 31.10.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger 0 1 4.49 211 27 0 1 6 1.7 1 2 4.50 238 51 0 1.7 25 1.7 2 3 14.29 244 26 6 0 25 1.6 3 4 10.32 149 28 4 5 25 2.5 4 5 14.82 187 -27 0.2 2.5 35 1.5 ;;Wolfgang Zillig, Johann Westhauser: 27.7.2009 ;*calibrate declination -2.5 ;2009 BMN-M31 ;;*calibrate declination -1.4 ;2009 Gauss-Krueger ;;alternative Vermessung mit DistoX, passt gut zu Flo+Uli ;5 6w 2.93 271.7 -25.9 ;6w 7w 23.99 188.6 -62.8 ;7w 8w 5.37 96.4 -18.4 ;8w 9w 11.68 0.7 -58.5 ;9w 10w 9.18 308.6 -37.8 ;10w 10 6.71 347.4 -10.9 ;Florian Schwarz, Ulrich Meyer, Torsten Weinreich: 27.7.2009 *calibrate declination -2.5 ;2009 BMN-M31 ;*calibrate declination -1.4 ;2009 Gauss-Krueger 5 6 17.21 210 -65 5 0 40 20 6 7 11.16 140 -50 6 0 50 10 7 8 9.37 355 -74 4 0 60 2 8 9 15.40 334 -29 0 1 6 4 9 10 3.03 353 -9 0 0.8 3 4 10 11 6.01 4 -54 0 2 8 10 11 12 13.86 18 -78 0 2 15 1 12 13 8.66 314 -36 1.5 0 10 10 13 14 10.50 354 -71 5 0 15 65 ;14 15 16.80 137 -78 6 0.5 30 50 ;Ulrich Meyer, Tanja Shabarova: 12.9.2009 *calibrate declination -2.5 ;2009 BMN-M31 ;*calibrate declination -1.4 ;2009 Gauss-Krueger 14 15 12.65 50 -77 0 6 ;Schacht-Schlot 15 16 8.59 56 -78 0 6 ;Schacht-Schlot 16 17 7.29 44 -88 1 0 ;Schacht-Schlot 17 18 5.20 334 10 4 3 4 0 *end Monsterschacht *equate Seengang.39 Nebelschacht.0 *begin Nebelschacht ;Martin Schneider, Florian Schwarz: 31.10.2008 *calibrate declination -2.4 ;2008 BMN-M31 ;*calibrate declination -1.3 ;2008 Gauss-Krueger *units compass clino grads 0 1 1.98 224 -44 1 2 2.57 390 -41 2 3 7.93 0 -100 3 4 10.62 0 -100 4 5 4.92 156 37 5 6 7.27 22 -85 6 7 8.74 169 -54 7 8 7.36 226 -68 8 9 2.54 132 -4 9 10 8.60 163 -28 ;Wolfgang Zillig, Florian Schwarz: 26.7.2009 *calibrate declination -2.5 ;2008 BMN-M31 ;*calibrate declination -1.4 ;2008 Gauss-Krueger *units compass clino degrees 10 11 10.57 132.0 -41.1 0 2.8 1.5 5 11 12 13.39 152.6 -53.6 2.5 0 1 1.5 12 13 4.88 143.7 -28.1 1.8 0.2 1.5 2.5 13 14 5.88 163.6 -47.8 1 0 1 5 14 15 7.02 100.5 -48.7 1 2.5 2.5 2 ;Ulrich Meyer, Tanja Shabarova: 12.9.2009 *calibrate declination -2.5 ;2009 BMN-M31 ;*calibrate declination -1.4 ;2009 Gauss-Krueger 15 16 4.45 125 -55 2 2 0 1.5 16 17 11.82 134 -59 3 4 4 0 17 18 14.33 140 -47 0 6 ;Schacht-Schlot *end Nebelschacht *equate Seengang.46 Eckschacht.0 *begin Eckschacht ;Torsten Weinreich, Johann Westhauser, Ulrich Meyer: 26.7.2009 *calibrate declination -2.5 ;2009 BMN-M31 ;*calibrate declination -1.4 ;2009 Gauss-Krueger ;0 1 5.20 331 -30 0 2 2 2 ;1 2 4.03 348 -42 0.5 1 3 14 2 3 13.67 0 -90 5 4 17 0 ;Nachvermessung Johann Westhauser, Ulrich Meyer: 13.9.2009 0 1 3.51 256 -12.5 1 2 6.21 345 -35 ;0 1a 3.80 261 -20 ;zu Spit ;1a 2a 5.65 351 -34 ;von Spit ;Johann Westhauser, Torsten Weinreich, Ulrich Meyer: 26.7.2009 3 4 10.59 184.2 36 1 0.8 0.3 0.6 4 5 1.92 202.5 27.8 0.8 0 0.4 0.3 5 6 5.72 158.1 27.8 0 0.6 0.5 0.5 6 7 4.63 197.0 15.7 0 1.3 0.5 0.3 7 8 1.83 300.8 59.4 0.6 0.6 0 2 8 9 5.32 155.7 -35.5 2 0 1 0.6 9 10 5.98 110.8 -35.8 0.7 0.3 0 0.6 10 11 1.57 338.9 -28.8 0 0.7 1 0.6 11 12 7.31 318 -24 0.1 1 0 0.6 12 13 3.50 27.9 -36.7 1.2 0 0.3 0.6 13 14 3.51 339.5 -20.3 0.4 0.4 0 0.7 *end Eckschacht *equate Seengang.48 Kristallkluft.0 *begin Kristallkluft ;Johann Westhauser, Torsten Weinreich, Ulrich Meyer: 26.7.2009 *calibrate declination -2.5 ;2009 BMN-M31 ;*calibrate declination -1.4 ;2009 Gauss-Krueger 0 1 6.80 293.3 -20 3 4 15 2 1 2 12.63 315.1 -34.7 3 1 5 1 2 3 13.65 314.0 -30.7 4 4 6 2 3 4 8.84 302.7 -12.6 1 5 0.5 2 4 4.1 9.51 325.9 -30.6 1.5 0 0.4 0.1 4 5 2.37 269.3 -7.1 0 0.5 0.3 0.5 5 6 9.38 302.0 -30.4 0 1 6 1 6 7 5.30 317.4 -9.1 2.5 1 1.5 0.5 7 8 23.55 296.4 -21.3 0.5 0.5 0.5 0 *end Kristallkluft *equate Seengang.89 Maulwurf1.0 *begin Maulwurf1 ;Johann Westhauser, Tanja Shabarova, Florian Schwarz: 13.9.2009 *calibrate declination -2.5 ;2009 BMN-M31 ;*calibrate declination -1.4 ;2009 Gauss-Krueger 0 1 6.87 146 -11 0.9 0.7 2.0 1.5 1 2 3.22 132 -26 0.5 0 1.0 0.4 2 3 3.00 111 -26 1.0 0.5 0.4 0.4 3 4 3.03 121 -23 0.1 0.5 0.9 0.4 4 5 0.60 159 27 0.2 0.2 0 1.05 5 6 3.94 130 -40 0.1 0.4 0 1.6 6 7 3.20 117 -70 0.5 0.3 0.5 0.1 7 8 4.18 144 -26 2.0 0.5 3.0 1.0 8 9 2.85 198 -14 2.5 2.0 1.8 1.6 9 10 2.55 131 1 2.0 0.2 1.5 0 10 11 15.89 130 10 1.2 3.0 2.0 0.5 11 12 13.07 120 16 0.4 1.0 1.0 1.0 12 13 3.62 150 -44 0 1.6 0.5 0.6 *end Maulwurf1 *equate Seengang.89 Maulwurf2.0 *begin Maulwurf2 ;Johann Westhauser, Tanja Shabarova, Florian Schwarz: 13.9.2009 *calibrate declination -2.5 ;2009 BMN-M31 ;*calibrate declination -1.4 ;2009 Gauss-Krueger 0 1 4.84 113 16.5 4.0 0 ? 2.5 1 2 7.25 115 13 0 2.5 8.0 1.0 2 3 5.31 135 26.5 0.4 0.4 0 1.0 3 4 3.28 149 10 0.6 0.2 0.5 3.0 4 5 3.12 130 -57 0 1.0 1.2 1.5 5 6 25.50 142 89 ;Schlot *end Maulwurf2 *end Riesending CaveConverter_src/test/data/regression/2596_Petirrojo_ref.svx0000644000000000000000000000026112114041272023272 0ustar rootroot*BEGIN 2596_Petirrojo *CALIBRATE declination 2.28 2 1 6.20 0.00 -90.00 3 2 2.04 41.00 -7.00 4 3 4.59 340.00 -26.00 5 4 6.81 22.00 -56.00 *END 2596_Petirrojo CaveConverter_src/test/data/regression/3218_Piedrashitas_in.svx0000644000000000000000000000104112560565222023567 0ustar rootroot*BEGIN 3218_Piedrashitas ;DistoX and PocketTopo on PDA ;Paul Dold, Nick Fincham, Alister Smith ;Date 2009/04/16 *DATE 2009.04.16 *CALIBRATE declination 2.08 *ENTRANCE 0 *FIX 0 454192 4800255 271 0 1 0.74 239.05 -45.95 1 2 4.54 255.22 -73.00 2 3 2.66 215.41 -63.52 3 4 2.12 233.67 -49.68 4 5 2.17 235.74 -60.93 *data passage station left right up down 0 0.0 0.3 0.6 1.07 1 0.0 0.23 0.25 3.64 2 0.51 0.2 2.19 2.28 3 0.33 0.49 2.8 1.02 4 0.0 0.36 0.83 1.21 5 0.12 0.1 0.5 0.0 *END 3218_Piedrashitas CaveConverter_src/test/data/regression/0114_Llueva_in.svx0000644000000000000000000015467612560565164022423 0ustar rootroot*BEGIN 0114_Llueva ;declination is 2 41' (2.68) for 2004 changing by 8'E per year. ; 2.55 used for 2005 ; 2.42 used for 2006 ; 2.28 used for 2007 ; 2.15 used for 2008 *EXPORT RestOfCave.172 RestOfCave.290 RestOfCave.414 ;Created from Survey file on Sat,19 Jun 2004.20:27:25 ;Dates surveyed : 76/7&77/8?&900601&961231&961231&970802&971207&990402&990803&990803&990807&010411 ;Surveyors : Naish/Lank&Juan/FA/JT/PP/JP/TW/+PP+PP+JD+++PP SO JD TW+JD PP JCh SO TW+PP TW SO JD JCh+TW+TW ;No of stations : 711 ;Plan length : 7849.37241m ;Traverse length: 8171.7707m ;Original compass bearings corrected by 1.89 degrees ;*equate Part1.EntrancePassage.0 Other_Entrances.0 *equate Part1.MainUpstream.11 RestOfCave.109 ;*BEGIN Other_Entrances ; ;*EXPORT 0 ; ;*ENTRANCE 8 ;*ENTRANCE 11 ; ;;*FIX 11 454739 4798421 153 ;GPS WAAS Fix - Footleg August 2007 ; ;;*FIX Entrance 454657 4798398 0128 ;Old GPS fix from top of scar, elevation adjusted from maps ; ;;*FIX Col 454711 4798403 0192 ;GPS fix of col at enter point to entrance depression ;;*ENTRANCE Col ; ;*CALIBRATE declination 1.89 ; ;*flags surface ;0 1 20.9 110 25 ;1 2 8.9 195 0 ;2 3 20.4 092 15 ;3 4 9.0 063 -20 ;4 5 12.3 114 15 ;5 6 10.0 075 10 ;6 7 10.0 076 -8 ;7 8 8.9 330 -20 ;7 9 9.6 055 -5 ;9 10 21.0 081 -15 ;10 11 9.0 298 -10 ;10 12 21.0 101 -4 ;12 13 18.5 050 14 ;13 14 8.8 022 17 ;14 15 10.2 122 10 ;15 16 21.7 169 0 ;16 17 23.7 140 0 ;17 18 8.0 051 0 ; ;*END Other_Entrances *BEGIN Part1 *EXPORT EntrancePassage.0 MainUpstream.11 *FIX EntrancePassage.0 454646 4798417 0146 ;Fixed using surface survey legs from shakehole where good GPS fix was obtained *ENTRANCE EntrancePassage.0 *EQUATE EntrancePassage.12 MainPassage.12 *EQUATE Chamber_Up_From_Ladder.13 MainPassage.12 *EQUATE Downstream.13 MainPassage.13 *EQUATE MainPassage.26 FaultPassage.26 *EQUATE MainPassage.22 LeftHandBypass.68a *EQUATE LeftHandBypass.90 MainUpstream.1 *EQUATE RHBypass.0 LeftHandBypass.68 *EQUATE MainPassage.26 FaultPassage.26 *EQUATE RHBypass.19 FaultPassageLink.12 *EQUATE FaultPassage.43 FaultPassageLink.9 *EQUATE Downstream.493 Downstream_sump.14 *EQUATE Chamber_Up_From_Ladder.11 RoofOxbow.1 *EQUATE FaultPassage.37 LifeUandE.UpperLevels.2007-07-30.36 *EQUATE LifeUandE.LowerLevels.2007-08-09PStD.51 FaultPassageLink.0 *EQUATE RHBypass.17 RHBypassExtn.0 *EQUATE RHBypass.14 RHBypassExtn.16 *BEGIN EntrancePassage *EXPORT 0 12 0 1 7.00 228.11 0 ;* 1 2 15.50 253.11 0 ;* 2 3 16.50 243.11 2 ;* 3 4 4.60 238.11 0 ;* 4 5 3.00 148.11 -45 ;* 5 6 5.80 240.11 0 ;* 6 7 9.80 243.11 0 ;* 7 8 4.00 238.11 0 ;* 8 9 4.00 240.11 0 ;* 9 10 8.00 233.11 -1 ;* 10 11 16.00 233.11 -45 ;* 11 12 10.00 - -V ;* *data passage station left right up down ;stn left right up down (LRUD estimated from drawn up survey and memory after 6 trips down in 6 days!) 0 .4 .4 .5 .5 1 .6 1 .7 .5 2 1 .5 1 .5 3 .4 .1 1.5 .3 4 .3 .3 1.5 .5 5 .5 .5 .2 .2 6 .3 .3 1.5 .5 7 1 0 1 .5 8 .3 .3 .2 .3 9 .25 .25 0 .35 10 .6 .9 1 .5 11 2 1.5 12 1.5 *END EntrancePassage *begin RoofOxbow *EXPORT 1 ;0114_Llueva ;Oxbow up in wall of chamber up from ladder into entrance ladder chamber ;surveyors: Footleg, Paul Dold, Dave Garman, Pete Adams, Nigel Cass *date 2007.07.30 *CALIBRATE declination 2.28 ;From To Tape Compass Clino 2 1 8.22 - -v 3 2 7.06 057 4 4 3 4.00 084 8 4 5 5.59 295 8 4 6 2.95 175 -22 *data passage station left right up down ;stn left right up down 2 0 1.5 0.8 1.3 3 0.5 1 0.2 1.5 4 0 1.5 1.1 0.6 5 1 1.6 0.5 1.6 *data passage station left right up down 4 0 1 0.3 1.2 6 0 0.5 0.15 0.15 *end RoofOxbow *BEGIN Chamber_Up_From_Ladder ;Chamber up slope from bottom of ladder ;surveyors: Footleg, Badger (Tony Radmall) *date 2007.04.09 *EXPORT 11 13 *CALIBRATE declination 2.28 ;From To Tape Compass Clino L R U D ; ;1 .5 .5 0 .3 2 1 4.88 092 56;2 1.2 .5 3 1 3 2 1.51 192 36; .6 1.2 .4 1 4 3 5.58 092 -2; 2 2.5 .5 1 5 4 12.60 111 2; 4 2 1.5 1.5 6 5 14.52 048 -21; 1 2.5 0 1.5 7 6 20.23 058 17; 15 3 4.5 .5 6 8 20.68 142 38; 10 16 1 .8 9 8 12.69 207 10;9 2 4 1.5 1.5 10 9 14.44 260 11; 3 1 3 1.2 11 7 10.61 041 21; 4 6 6 1.6 12 11 14.23 118 21; 18 5 6 1.5 13 12 6.69 153 38; 20 3 12 .5 *data passage station left right up down ;stn left right up down 1 .5 .5 0 .3 2 1.2 .5 3 1 3 .6 1.2 .4 1 4 2 2.5 .5 1 5 4 2 1.5 1.5 6 1 2.5 0 1.5 7 15 3 4.5 .5 11 4 6 10 1.6 12 2 5 6 1.5 ;(L was 18) 13 2 3 12 .5 ;(L was 20) *data passage station left right up down 6 1 20 0 1.5 8 10 4 1 .8 *data passage station left right up down 8 1 5 1 .8 7 15 3 4.5 .5 *data passage station left right up down 8 10 1 1 .8 9 2 4 1.5 1.5 10 3 1 3 1.2 *data passage station left right up down 11 0 6 10 1.6 12 18 5 14 1.5 13 20 3 12 .5 *END Chamber_Up_From_Ladder *BEGIN Downstream *EXPORT 13 493 13 472 10.06 276.79 -1 ;Taken from published survey 472 473 7.07 261.87 0 ;* 473 474 10.44 253.30 0 ;* 474 475 7.61 336.80 0 ;* 475 476 10.00 53.13 0 ;* 476 477 8.54 69.44 0 ;* 477 478 42.52 48.81 0 ;* 478 479 16.27 317.49 0 ;* 479 480 13.89 59.74 0 ;* 480 481 7.28 164.05 0 ;* 481 482 5.00 270.00 0 ;* 482 483 12.16 170.53 0 ;* 481 484 23.02 92.49 0 ;* 484 485 34.13 148.17 0 ;* 13 486 22.01 89.50 - ;Downstream at pool lip? 486 487 16.40 37.56 0 ;* 487 488 10.63 138.81 0 ;* 487 489 13.34 102.99 0 ;* 486 490 17.72 73.61 0 ;* 490 491 16.97 45.00 0 ;* 491 492 12.53 61.39 0 ;* 492 493 40.42 55.12 5 ;* ;493 494 21.90 338.19 -10 ;* ;493 495 57.46 70.61 -5 ;* ;495 496 55.57 59.74 -1 ;* ;496 497 23.87 146.97 2 ;* ;496 498 34.01 61.92 -1 ;* ;498 499 37.41 344.47 -3 ;* ;499 500 17.83 308.15 -3 ;Start of sump pool ;500 501 17.26 349.99 0 ;Far end of sump pool 474 474a 42 241 0 ;Estimated leg to show position of canal passage *data passage station left right up down ;stn left right up down (LRUD estimated from drawn up survey and memory after 6 trips down in 6 days!) 474a 2 2 2 0 474 2 2 5 0 473 0 3 5 0 472 0 3 5 0 13 3 0 8 0 486 1.5 3.5 5 0 490 3 2 3 0 491 3 0 2 0 492 2 2.5 1 0 493 2 1 0 3.5 *data passage station left right up down 478 1 1 2 0 479 0 2.5 2 0 480 1 1 2 0 481 1.5 1 2 0 *data passage station left right up down 474 1 1 5 0 475 1 1 5 0 476 0 2 5 0 477 3 0 5 0 478 2 2 2 0 482 1 2 2 0 481 1.5 1.5 2 0 484 0 3 2 0 485 1 1 1 0 *data passage station left right up down 486 1.5 3.5 5 0 487 0 2 3 0 489 0 1.5 2 0 *data passage station left right up down 487 0 1 3 0 488 0 1 3 0 *END Downstream *BEGIN Downstream_sump *EXPORT 14 *CALIBRATE declination 1.89 15 14 6.7 062 0 14 13 6.5 016 38 13 12 18.5 331 -20 12 11 30.0 103 -3 11 10 30.0 083 -3 10 9 30.0 062 -3 9 8 30.0 074 -3 8 7 30.0 076 -3 7 6 14.5 011 0 6 5 30.0 342 5 5 4 7.7 359 0 4 3 6.7 006 15 3 2 6.9 271 0 2 1 6.2 340 -40 1 0a 5 340 0 ;Made up legs across sump pool to apply passage height 0a 0b 5 340 0 ;Made up legs across sump pool to apply passage height *data passage station left right up down ;stn left right up down (LRUD estimated from drawn up survey and memory after 6 trips down in 6 days!) 14 5 10 4 0.5 12 0 5 5 1.6 11 5 8 5 1.6 *data passage station left right up down 14 20 3.5 4 0.5 11 5 15 5 1.6 10 1.5 9 3 1.6 9 7.5 8 3 1.6 8 9.5 4 3 1.6 7 7 0 2 1.6 6 3 4 2 1.6 5 2.5 3 2 1.6 4 1 2.5 3 1.6 3 6 1 3 1.6 2 7 5 2 1.6 1 9 2 5 1.6 0a 7 12 12 1.6 0b 5 8 3 1.6 *END Downstream_sump *BEGIN MainPassage *EXPORT 12 13 22 26 12 13 24.50 303.11 -37 ;* 13 14 29.80 231.11 25 ;* 14 15 30.00 247.11 8 ;* 15 16 16.00 279.11 -15 ;* 16 17 30.00 267.11 -8 ;* 17 18 30.00 272.11 -2 ;* 18 19 30.00 285.11 11 ;* 19 20 30.00 277.11 7 ;* 20 21 30.00 266.11 8 ;* 21 22 30.00 276.11 6 ;* 22 23 30.00 303.11 -6 ;* 23 24 13.70 309.11 -15 ;* 24 25 30.00 303.11 -35 ;* 25 26 28.80 320.11 0 ;* *data passage station left right up down ;stn left right up down (LRUD estimated from drawn up survey and memory after 6 trips down in 6 days!) 12 20 3 12 .5 13 5 3 8 1.6 *data passage station left right up down 13 3 3 8 1.6 14 4 5 8 1.6 15 4.5 10 6 1.6 16 5 12 10 1.6 17 6 10 14 1.6 18 5 10 15 1.6 19 8 7 10 1.6 20 7 11 15 1.6 21 4 12 12 1.6 22 4 16.5 8 1.6 23 2 10 6 1.6 24 3 9 8 1.6 25 6 12 13 1.6 26 7 8 10 1.6 *END MainPassage *begin RHBypass *EXPORT 0 14 17 19 ;surveyors: Ali Neill Dan Hibberts Carolina Smith ;date 2007-08-13 *CALIBRATE declination 2.28 ;stn 0 should be equated with 0114_Llueva.part1.mainpassage.22 or lefthandbypass.68?? Probably the latter. 0 1 11 346.5 21; 0 orange tag at top of LH Bypass 1 2 11.95 355.5 -12;foot of pitch up to RHBypass 2 3 5.92 - +v 3 4 17.4 312.5 -1 4 5 8.25 285 -3 5 6 20.6 312.5 0; stn6 marked junction 6 7 2.9 280.5 57 7 8 2.85 214 49 8 9 8.8 284.5 9 9 10 5.75 300.5 -7 10 11 2.35 50 -23 11 12 2.7 295.5 -43 12 13 5.7 269 9 13 14 18.45 302 -4 14 15 9.65 25 -25 15 16 2.55 60 -54 16 17 5.9 305.5 -12 17 18 6.5 24 2 18 19 2.25 26 -41; stn 19 is bolt at top of p4 into Fault Passage ;stn 19 has been equated with Biggo2007-08-11BiggoLink.12 19 20 6 - -v;pitch *data passage station left right up down 3 2 4 .8 1.5 4 3 0 .5 1.5 5 .5 3 4 1 6 2.5 2 4 1 7 2 0 2 3 8 0 1 1.5 1.5 9 .5 .8 .8 3 10 0 1.5 1 2 11 1.5 0 .5 2 12 1 2 .3 1.5 13 1.5 1.5 1 1.5 14 2.5 0 .6 2 15 1.5 0 1.5 3 16 3 1.5 4 0 17 0 4 .5 1.5 18 .5 1.5 0 1.6 19 0 1.5 1.5 0 *end RHBypass *begin RHBypassExtn *EXPORT 0 16 *calibrate tape +1.0 *CALIBRATE declination 2.15 1 0 2.85 317 -3 2 1 6.7 40 -4 3 2 2.8 153 -63 4 3 2.95 35 -22 5 4 4.45 130 -7 6 5 8.1 119 3 7 6 5.4 42 -8 8 7 4.75 90 9 9 8 3.15 39 2 10 9 3.65 94 -11 11 10 6.4 51 -8 12 11 9.0 59 7; Pitch is 1.5m beyond on same bearing 14 5 3.7 353 -24 15 14 6.95 322 -3.5 15 16 3.45 111 6.5 *data passage station left right up down 1 0 .8 .7 .7 2 .4 .8 3 2 3 1 0 1 2 4 .5 1 1 2 5 1.5 .5 2 1 6 0 2 1.5 1.5 7 1.5 0 1.5 1.5 8 0 1.5 1 1.5 9 0 2 2 1 10 0 2 1.5 1.5 11 1.5 0 1 1.5 12 2 .5 3 1.5 *data passage station left right up down 5 2 0 1.5 .5 14 .5 1.5 .5 1.5 15 0 1.5 .5 1 16 0 2 1 1.5 *end RHBypassExtn *begin FaultPassageLink *EXPORT 0 9 12 ;surveyors: Paul Stacey Ali Neill Dan Hibberts ;date 2007-08-11 *CALIBRATE declination 2.28 0 1 4.87 226.5 .5 1 2 8.4 229 .5 2 3 4.16 198 12 3 4 2.01 59 22 4 5 4.22 182 38 5 6 1.18 359.5 60 6 7 4.72 322 32 7 8 9.32 233 36.5 8 9 4.91 198 -14.5 9 10 4.35 201 -1 10 11 11.86 201 -31.5 11 12 8.16 209 -6 ;stn12 is bolt at top of p6 at N end of RH Bypass ;Tie this in with the edge of the Lake?? ;Need to resurvey the RH Bypass? or find original notes? *data passage station left right up down 0 .5 3 .5 1.5 1 .5 3 .5 1.5 2 3 1.5 .8 .1 3 .3 3 4 0 4 2 .5 3 0 5 .5 .5 2 .5 6 1 1 1 1 8 10 3 6 0 9 5 2 .5 .5 10 5 5 1.5 .5 11 8 8 3 0 12 5 2.5 2 6 *end FaultPassageLink *BEGIN FaultPassage *EXPORT 26 37 43 26 27 8.90 64.11 30 ;* 27 28 15.00 2.11 53 ;* 28 29 2.00 116.11 35 ;* 29 30 6.50 24.11 40 ;* 30 31 3.00 48.11 0 ;* 31 32 3.90 82.11 0 ;* 32 33 2.90 68.11 0 ;* 33 34 5.10 9.11 30 ;* 34 35 5.50 43.11 10 ;* 35 36 16.00 48.11 0 ;* 36 37 7.10 72.11 0 ;* 37 38 16.30 63.11 0 ;* 38 39 8.40 58.11 0 ;* 39 40 4.30 112.11 0 ;* 40 41 8.20 81.11 0 ;* 31 42 8.00 318.11 -20 ;* 42 43 7.00 41.11 30 ;* 43 44 12.50 26.11 0 ;* 44 45 14.80 69.11 10 ;* 39 46 8.10 76.20 0 ;* 46 47 11.60 89.20 0 ;* 47 48 17.80 56.20 0 ;* 48 49 4.70 64.20 28 ;* 49 50 6.40 42.20 5 ;* 50 51 3.50 - +V ;* 51 52 11.20 .20 50 ;* 52 53 10.60 79.20 0 ;* 53 54 3.40 - +V ;* 54 55 9.40 54.20 30 ;* 55 56 9.30 254.20 6 ;* 56 57 6.60 326.20 10 ;* 57 58 4.40 277.20 17 ;* 58 59 3.40 - +V ;* 59 60 6.40 52.20 22 ;* 60 61 2.70 41.20 32 ;* 61 62 4.00 - +V ;* 62 63 5.90 87.20 0 ;* 63 64 4.20 50.20 0 ;* 64 65 3.00 12.20 21 ;* 62 66 14.50 251.20 0 ;* 52 67 9.80 243.20 -3 ;* *data passage station left right up down ;stn left right up down (LRUD estimated from drawn up survey and memory after 6 trips down in 6 days!) 26 0 2 1 1.6 27 7 2 1 1.6 28 8 3 3 1 30 9 3 3 1 31 9 3 3 1 32 1 1.5 1 0.5 33 0.5 0.5 0.5 0 34 1 1.5 0.2 1.4 35 2.5 1 0.2 1.6 36 0.5 1 0.5 0.3 37 4 1 1.2 0.3 38 4 1 1.2 0.3 39 1.5 1 1.2 0.3 46 1 1 1 0.3 47 2 1 0.2 0.3 48 0.5 1 1 0.3 49 0.7 0.5 1 1.6 50 0.5 1 2 1.6 51 0.5 1 2 2 52 1 2 1 1.6 *data passage station left right up down 31 10 3 3 1 42 8 2 3 1 43 3 1 1 0.5 44 4 11 7 3 45 1 4 3 1.6 *END FaultPassage *begin LifeUandE *EXPORT UpperLevels.2007-07-30.36 LowerLevels.2007-08-09PStD.51 *equate UpperLevels.2007-08-07.33 LowerLevels.2007-08-09PStA.0 *equate UpperLevels.2007-07-31.14 LowerLevels.2007-08-02b.1 *equate UpperLevels.2007-07-31.44 LowerLevels.2008-03-27.1 *begin UpperLevels *EXPORT 2007-07-30.36 2007-07-31.14 2007-07-31.44 2007-08-07.33 *equate 2007-07-30.1 2007-07-31.1 *equate 2007-07-31.9 2007-08-02a.1 *equate 2007-07-30.11 2007-08-04a.1 *equate 2007-07-31.9 2007-08-04b.30 *equate 2007-08-04b.15 2007-08-04c.7 *equate 2007-08-04b.23 2007-08-04d.1 *equate 2007-08-04b.19 2007-08-07.0 *equate CrapCompassChamber.0 2007-08-07.16 *begin 2007-07-30 ;0114_Llueva ;Big Bang Burger Bar down to bottom of scaled aven in fault chamber extension ;surveyors: Footleg, Paul Dold, Dave Garman, Pete Adams, Nigel Cass *date 2007.07.30 *EXPORT 1 11 36 *CALIBRATE declination 2.28 ;From To Tape Compass Clino 1 2 11.75 070 +19 2 3 11.10 177 -8 4 3 19.58 050 +23 5 3 20.40 010 +20 6 3 11.07 276 -37 7 6 8.45 294 -16 7 8 10.19 219 +5 7 9 11.11 161 -30 9 10 9.34 207 -42 11 10 5.30 355 0 10 12 11.81 252 -42 12 13 20.10 207 -60 13 14 5.40 274 -54 15 14 8.80 015 -12 15 16 6.30 135 +14 14 17 2.30 033 0 17 18 7.45 - -v 18 19 1.93 245 -12 19 20 5.55 - -v 21 20 3.24 267 -40 21 22 2.35 328 -37 22 23 2.79 210 -68 23 24 3.25 032 -42 24 25 2.04 350 +14 25 26 2.28 - -v 26 27 2.20 025 -36 27 28 3.47 095 -35 28 29 3.26 046 -42 29 30 4.85 070 -10 30 31 2.00 137 -19 31 32 4.22 136 -67 32 33 0.66 130 0 33 34 6.18 - -v 34 35 5.52 150 +10 35 36 10.30 195 -13 *data passage station left right up down ;stn left right up down 1 2 1 1 0 3 4 12 4 2 5 4 0 5 2 *data passage station left right up down 2 4 10 2 1 3 9 11 4 2 *data passage station left right up down 4 2 2 3 2 3 12 7 4 2 6 4 6 5 0 8 10 0 3 2 *data passage station left right up down 6 4 6 5 0 7 1 2 4 1 9 2.5 2 8 1.5 10 5 5 5 0 12 3 14 7 1 13 4 2 10 1 *data passage station left right up down 13 0 1.5 0 1.5 14 2 2.5 2.5 1.6 15 3 0 1.5 1 16 0.8 0.8 0.4 0 *data passage station left right up down 14 2 1 2.5 1.6 17 2 0 2.5 3 18 2 0.5 3 0 19 2 0 2 3 20 0.5 2 2 0 21 3 2 2.5 1 22 0.3 0.3 0.5 0.3 23 0.6 1 1.2 1 24 1.5 1 1.8 1.6 25 1.2 1 0 0.4 26 0.6 0.3 0.8 0 27 0 1 1 0.3 28 1.5 0 1 1.2 29 0 0.3 2 2 30 0 1.2 2 0.5 31 0.2 0.2 1.6 0.2 32 0.4 0.4 2 1 33 0.4 0.4 0 3 34 0.6 0.6 3 0 35 12 8 2 1 36 2 4 1.2 0.3 *end 2007-07-30 *begin 2007-07-31 ;0114_Llueva ;Horizontal passages off top of Big Bang Burger Bar chamber ;surveyors: Footleg, Paul Dold, Dave Garman, Pete Adams, Nigel Cass, Gary Cullen *date 2007.07.31 *EXPORT 1 9 14 44 *CALIBRATE declination 2.28 *CALIBRATE tape +0.1 ;From To Tape Compass Clino 1 2 5.95 252 -8 2 3 10.20 344 -6 3 4 9.50 028 -8 4 5 14.35 351 +5 5 6 11.31 025 +3 6 7 18.31 357 -17 7 8 8.68 008 -7 8 9 8.65 335 +5 9 10 9.10 007 -8 10 11 19.22 289 +3 11 12 7.45 303 +10 12 13 18.30 270 -4 13 14 11.44 255 -10 14 15 8.55 303 +5 15 16 3.48 007 -11 16 17 10.86 275 -3 17 18 13.66 015 -3 18 19 5.65 019 +10 18 20 7.85 272 -2 19 21 23.16 042 0 21 22 7.81 012 +2 22 23 7.86 071 -4 23 24 18.62 005 +3 24 25 10.55 022 +5 25 26 4.72 057 +9 26 27 3.35 025 +13 27 28 10.15 070 +4 28 29 13.91 051 +2 29 30 4.37 037 +5 30 31 12.60 053 +3 31 32 12.73 065 +6 32 33 7.96 055 0 20 34 4.70 237 0 34 35 6.06 283 -4 35 36 5.42 289 +13 36 37 5.47 282 -10 37 38 2.25 297 +1 38 39 4.15 325 +2 39 40 8.91 254 +3 40 41 6.04 286 +3 41 42 6.16 241 -3 42 43 6.34 241 +1 43 44 6.53 279 0 44 45 1.28 167 -62 45 46 8.75 - -v 44 47 5.74 268 -3 47 48 2.00 312 +13 48 49 5.55 268 0 49 50 4.10 203 -11 ;start pp 080317 pp6 50 2.8 34 0 pp5 pp6 10.8 116 0 pp4 pp5 5.54 50 -2 pp3 pp4 6.05 51 4 pp2 pp3 15.7 58 0 pp2 pp1 1.9 131 -14 pp0 pp1 5.91 37 0 pp0 pp1a 4 190 0 ;end pp 080317 *data passage station left right up down ;stn left right up down 1 1 2 1 0 2 1 2 2 2.5 3 0.3 4 3 2.3 4 3 0 3 1.6 5 0 3 1.5 1.8 6 3 1 1.5 1 7 0 1.5 4.3 1.7 8 2 0 5 1.7 9 3.5 2 3 2 10 3 3 4 1.8 11 1 2 6 2 12 5 0 5 4 13 3 1.5 6 1 14 0.8 3.5 5 1 15 0.4 3 5 1.7 16 1.4 2 5 0.5 17 0.5 2 5 0.4 18 1.5 0.4 6 0.2 19 3 1 5 1 21 1.6 0 5 1 22 0 1.7 5.5 1.5 23 1 1.5 6 0.2 24 1 0.3 6 0.5 25 0 1.2 6 1 26 1.2 0 5 1.4 27 0.2 1 4 1.6 28 0.2 1.3 4 1.6 29 0.2 1.5 3 1.6 30 2 0 3.5 1.6 31 1 0.5 1.8 1.6 32 0.2 1 0.8 1.7 33 0.5 1 0.7 0 *data passage station left right up down ;stn left right up down 18 0.7 0.3 1 0 20 0.7 0.3 1 0 34 0 1 1 0.2 35 1.2 0.3 1 0.2 36 0.3 1 1 0.4 37 1.5 1 0.3 0.4 38 0 1.5 1 0.4 39 2.5 0 0.4 0.6 40 2 1 0.5 0.5 41 0.5 1 0.3 0.7 42 1.5 0.3 0.7 0.3 43 0.5 1.5 0.5 1.8 44 0.3 1.2 1 0.5 47 0.8 1.4 0.4 0.5 48 1 0.2 0.4 0.5 49 1.2 1.4 0.4 0.5 50 0.5 1.5 0.3 0 pp6 .2 1.8 .5 .5 pp5 1 .5 .5 .5 pp4 1.7 1.6 4.6 .7 pp3 1 .5 .75 2 pp2 1.5 1 .5 .5 pp1 .6 .7 1 .3 pp0 .7 .2 .6 .3 pp1a .1 .4 .5 .7 *end 2007-07-31 *begin 2007-08-02a *EXPORT 1 ;0114_Llueva ;Side passage off left at mini porno palace formation ;surveyors: Footleg, Pete Adams, Nigel Cass *date 2007.08.02 *CALIBRATE declination 2.28 ;Stn 1 = Stn 9 from 31/07/07 ;From To Tape Compass Clino 1 2 8.89 217 8 2 3 13.62 208 5 3 4 7.90 197 -24 3 5 2.78 169 -1 5 6 10.17 215 9 6 7 8.27 217 -11 7 8 3.98 - -v 9 8 6.50 358 -18 9 10 2.52 259 -13 10 11 4.26 328 -13 11 12 10.46 198 2 12 13 4.30 214 10 13 14 6.23 147 -6 13 15 8.77 162 33 15 16 8.35 262 -13 16 17 4.00 188 -23 17 18 4.63 224 -13 18 19 4.89 185 14 21 20 3.35 - +v 21 22 0.67 267 0 19 20 0.28 270 0 19 23 4.26 202 17 23 24 3.00 153 13 24 25 4.20 172 0 *data passage station left right up down ;stn left right up down 1 2 3.5 3 2 2 1 1 3 1.4 3 1.5 .6 2 1.6 5 0 2.5 2 1.7 6 2.2 .2 .7 1.5 7 1.4 0 2.4 1.2 8 1.4 .4 4 0 9 .5 1 .6 1.6 10 .5 1 1.6 .8 11 1.2 .5 1 1.6 12 1.2 0 3 1.7 13 1 0 2 1.8 15 1 2 0 1.7 16 2.2 0 1.2 1.6 17 0 1.2 1.4 2 18 1 0 1.5 3.5 19 1.5 1.8 1.7 4.5 23 1.5 1 1 1 24 1.4 1.2 1 0.2 25 0.7 1.8 0.6 1.5 *data passage station left right up down 3 1.5 .6 2 1.6 4 1.6 .8 4 1.3 *data passage station left right up down 13 1 0 2 1.8 14 0 1 2.5 1.5 *end 2007-08-02a *begin 2007-08-04a *EXPORT 1 ;0114_Llueva ;Pretty passage off Big Bang Burger Bar ;surveyors: Dan Hibberts Dave Paul Dold *date 2007.08.04 *CALIBRATE declination 2.28 ;Stn 1 = Stn 11 from 30-07-07 ;From To Tape Compass Clino 1 2 7.57 123 2 2 3 7.65 54 2 3 4 3.97 142 -26 4 5 5.55 162 5 5 6 3.26 112 42 6 7 3.85 174 63 *data passage station left right up down ;stn left right up down 1 2 0 1 0.7 2 1.3 1 0.3 0.4 3 4 0 2 2 4 2.2 0.5 0.4 2 5 2 2 4 0.2 6 0.5 0.5 0.5 0 7 0 2 1.5 3 *end 2007-08-04a *begin 2007-08-04b ;0114_Llueva ;Backdraft passage ;surveyors: Dan Hibberts Dave Paul Dold *date 2007.08.04 *EXPORT 15 19 23 30 *CALIBRATE declination 2.28 ;Stn 26 is closest to stn 6 from 31-07-07, but needs properly connecting to an actual stn. ;From To Tape Compass Clino 1 2 4.5 285 -11 2 3 3.22 259 0 3 4 10 223 -13 4 5 6.92 253 -4 5 6 6.55 242 -2 6 7 9.5 213 0 7 8 8.66 197 3 8 9 15.87 244 3 9 10 11.66 203 -3 10 11 10.76 231 -23 11 12 5.8 294 12 12 13 9.32 244 1 13 14 7.15 201 1 14 15 4.19 250 -20 15 16 4.32 192 -5 16 17 13.52 285 -5 17 18 6.8 259 -17 18 19 10.37 271 -10 19 20 3.08 162 70 20 21 7.30 244 16 21 22 6.3 291 -11 22 23 8.43 244 0 23 24 16.6 276 7 24 25 8.95 016 -5 25 26 3.03 322 30 ;Legs to tie side passage into known marked station *flags duplicate 26 27 11.71 0 -30 27 28 4.36 20 -7 28 29 11.57 350 -10 29 30 3.02 330 35 *flags not duplicate *data passage station left right up down ;stn left right up down 1 0 2 4 1 2 2 2 0.6 0 3 2 2 0 0.5 4 2 2 2 0 5 2 2 2 0 6 1.5 1.5 1 0 7 3 2 0.5 0.7 8 4 3 5 0 9 3.5 0 1 1.5 10 0 1.5 1.5 2.5 11 1 1 4 0.5 12 3 2 3 1.5 13 2.5 0 2.5 1.5 14 3 2 4 0 15 3 2 1 0.5 16 2 2 0.3 1 17 1 1 3 2 18 2 2 4 0 19 1.5 3 1.5 0 20 0 1.5 2 0.5 21 0.2 1.5 2 0.5 22 1 1 4 1 23 1 2 3 0 24 0.2 3 1 2 25 1 2 1 0 *end 2007-08-04b *begin 2007-08-04c ;0114_Llueva ;Roof oxbox in Backdraft Passage ;surveyors: Dan Hibberts Dave Paul Dold *date 2007.08.04 *EXPORT 7 *CALIBRATE declination 2.28 ;Stn 7 is stn 15 from 2007-08-04b ;From To Tape Comp. Clino 1 2 6.53 213 -5 2 3 3.11 082 7 3 4 8.84 099 0 4 5 8.66 042 -14 5 6 3.30 097 15 6 7 6.45 093 -33 *data passage station left right up down ;stn left right up down 1 0.7 0.4 1 0 2 1 1 1 0 3 1 5 1.2 0.2 4 3 0 1.2 0.7 5 2 3 3 0 6 2 2 2 1 7 2 3 1 0.5 *end 2007-08-04c *begin 2007-08-04d ;0114_Llueva ;Side passage and Red Room off Backdraft Passage ;surveyors: Dan Hibberts Dave Paul Dold *date 2007.08.04 *EXPORT 1 *CALIBRATE declination 2.28 ;Stn 1 is stn 23 from 2007-08-04b ;From To Tape Comp. Clino 1 2 11.61 187 0 2 3 4.23 195 5 3 4 3.87 168 -2 4 5 6.00 200 -4 5 6 3.75 102 -5 6 7 16.58 066 1 *data passage station left right up down ;stn left right up down 1 1 1 2 0 2 1 1 2 0 3 0.5 0.5 2 0.2 4 0.5 0.5 2 0.5 5 2 2 2 1 6 2 3 1 1 7 2 2 1 0.5 *end 2007-08-04d *begin 2007-08-07 *EXPORT 0 16 13 33 ;0114_Llueva ;Ward's link series ;surveyors: Allan Berry Paul Dold *date 2007.08.07 *CALIBRATE declination 2.28 ;stn 0 is 08-04b.19 0 1 3.64 351 -20; 1 2 11.67 - -v 2 3 3.09 0 40 3 4 5.76 280 0 4 5 5.65 16 0 5 6 9.6 100 0 6 6a 12.2 - +v 5 7 6.62 45 0 7 8 7.5 - +v; possible passage above?? 4 9 11.03 190 -10 9 10 4.61 250 -2 10 11 2.51 330 3 11 12 7.78 250 3 12 13 1.45 315 0 13 14 6.6 265 -3 14 15 1.7 205 -55 15 16 5.16 - -v ;crawl to pitch into big stuff!! 9 21 1.5 280 -30 21 22 7.23 350 -20 22 23 4.7 350 -10 23 24 1.69 260 -10 24 25 3.36 280 -8 25 26 1.2 350 0 26 27 4.66 280 -15 27 28 4.22 0 -20 ; stn 9 (29) not used 28 30 10.98 5 -12 30 31 10.82 340 -10 31 32 18.13 20 -15 32 33 20.4 9.5 15; 2m before head of p26m *data passage station left right up down ;stn left right up down 0 1.5 3 1.5 0 1 2 2.5 2 2 2 2 2.5 5 0 3 4 0 12 1 4 0 2 1 1.3 5 .5 5.2 9 .5 6 6 3.5 10.8 .5 7 1 7 10.8 .5 9 0 1 1.5 .5 10 0 1.5 1.5 .4 11 2 0 .7 .5 12 0 .5 1 .8 13 .7 0 .9 .8 14 0 .4 1 1 15 .7 .2 1.4 .5 *data passage station left right up down 21 0 1 1.5 0 ; Needs changing to use real dimensions for stn 21 if recorded (these were copied from stn 9) 22 .5 0 .3 .4 23 0 .3 .4 .7 24 0 .6 .3 .6 25 0 .5 .6 .5 26 .5 0 .5 .6 27 0 1.4 .25 1.4 28 0 .6 1 2.3 30 .5 1.2 1.2 .6 31 0 3.4 .8 1 32 0 3.4 .8 1 33 2 4 1.2 3 *end 2007-08-07 *begin CrapCompassChamber *EXPORT 0 ;0114_Llueva ;Chamber off Ward's link series ;surveyors: Dan Hibberts Paul Dold *date 2007.08.06 *CALIBRATE declination 2.28 ;From To Tape Compass Clino 0 1 5.34 292 36 1 2 17.65 202 15 2 3 14.90 132 1 3 4 8.56 92 -26 4 5 18.77 0 -8 5 0 8.38 304 -28 *data passage station left right up down ;stn left right up down 0 12 1 2.5 1.5 1 12 0 6 1.5 2 12 2 5 2 3 12 0 4.5 3 4 12 0 0 1 5 12 3 5 0 0 12 1 2.5 1.5 *end CrapCompassChamber *end UpperLevels *begin LowerLevels *EXPORT 2007-08-02b.1 2007-08-09PStA.0 2007-08-09PStD.51 2008-03-27.1 *equate 2007-08-02b.29 2007-08-04e.1 *equate 2007-08-04f.1 2007-08-04e.10 *equate 2007-08-09PStA.9 2007-08-13.0 *equate 2007-08-09PStA.17 2007-08-09PStB.17 *equate 2007-08-09PStA.13 2007-08-09PStC.13 *equate 2007-08-09PStC.30 2007-08-09PStD.30 *equate 2007-08-09PStA.8 2007-08-09PStE.8 *equate 2007-08-09PStE.72 2007-08-09PStF.72 *equate 2007-08-09PStE.64 2007-08-11_Connection.0 *equate 2007-08-02b.17 2007-08-11_Connection.9 *equate 2007-08-09PStA.6 2008-03-18Ali.0 *equate 2007-08-09PStA.8 2008-03-18Ali2.8 *begin 2007-08-02b *EXPORT 1 17 29 ;0114_Llueva ;Down the pit in the northerly heading passage off Big Bang Burger Bar ;surveyors: Footleg, Paul Dold, Dave Garman, Pete Adams, Nigel Cass *date 2007.08.02 *CALIBRATE declination 2.28 ;From To Tape Comp. Clino 1 2 3.43 306 6 2 3 3.20 235 -41 3 4 18.90 - -v 4 5 2.44 355 1 5 6 2.37 046 -31 6 7 2.31 064 32 7 8 6.23 351 -24 8 9 0.91 056 -19 9 10 11.34 - -v 11 10 6.50 204 -22 11 12 10.52 - -v 13 12 3.56 172 -49 13 14 11.03 062 -9 14 15 18.03 130 45 ;15 16 30.55 022 -24 16 17 30.80 253 -21 17 18 22.95 345 33 17 19 30.68 241 21 17 20 24.65 280 5 17 13 19.23 199 26;Resurveyed to correct loop closure Easter 2008 20 21 5.42 272 -33 21 22 12.16 269 -40 22 23 30.80 239 -25 23 24 5.20 006 30 22 25 19.67 316 -32 25 26 30.37 271 -3 26 27 23.44 283 -2 27 28 30.80 253 1 27 29 9.80 306 24 28 30 30.80 277 -1 30 31 30.80 264 0 31 32 8.90 285 -16 32 33 3.76 264 -34 33 34 18.00 266 0; Horizontal along water surface of canal. 13 20 28.60 318 -14 *data passage station left right up down ;stn left right up down 2 2 1 3 0.5 3 0 3 3 1 4 0.8 1 12 1.0; 1.2 5 0 0.3 18 1.6 6 0.11 0.11 4 1 7 0.2 0.2 1 2.5 8 0.3 0.3 4 1 9 0.4 0.4 2 6; 6 12 10 2 2 5 0 11 1 0.5 2 1.6; 10 12 1.5 1.6 6 0 13 1 1.7 7 1.7 *data passage station left right up down 15 2.5 1 0 1.7 14 3 10 12 1 17 18 17 18 1.5 18 18 2 0 1.5 *data passage station left right up down 15 15 1 0 1.7 16 15 1.5 1.8 0 *data passage station left right up down 16 2.5 3 1.8 0 17 8 8 18 1.5 *data passage station left right up down 15 2.5 5 0 1.7 13 0 30 7 10 19 0 18 5 0.5 *data passage station left right up down 16 10 3 1.8 0 18 10 0 0 1.5 20 5 10 10 1 21 1 2 1 1 22 6.3 9.8 4 0 23 2 2 6 1 ;24 0 0 2.5 0.5 *data passage station left right up down 22 6.3 9.8 4 0 25 6 0 6 1.7 26 0 3.5 6 1.6 27 0 4.5 6 1.6 28 0 4 2.5 1.7 30 4 0 1 1.6 31 0 2.5 0.5 1.7 32 2.5 0 3 0.6 33 2 1 1.8 0 34 1.5 1.5 1 0 *data passage station left right up down 27 0 4.5 6 1.6 29 3.6 0 3.5 0 *end 2007-08-02b *begin 2007-08-04e *EXPORT 1 10 ;0114_Llueva ;Route over static sump passage ;surveyors: Dan Hibberts Dave Paul Dold *date 2007.08.04 *CALIBRATE declination 2.28 ;Stn 1 is stn 29 from 2007-08-02b ;From To Tape Comp. Clino 1 2 23.07 270 15 2 3 27.44 267 -5 3 4 30.80 274 -2 4 5 11.61 274 -2 5 6 11.70 263 -4 6 7 23.55 264 5 7 8 15.70 272 0 8 9 13.95 273 -13 9 10 9.80 254 5 10 11 11.50 233 8 6 2a 4.81 198 3; notes said 298 but this was meant to be 198 2a 3a 6.23 199 -23 3a 4a 19.65 269 13 4a 5a 2.88 202 4 5a 6a 9.22 121 0 6a 7a 4.15 126 -6 7a 8a 2.96 199 -29 *data passage station left right up down ;stn left right up down 1 3.6 0 3.5 0 2 4 0 5 0 3 1 3 0 1.5 4 1 4 0.5 0.2 5 1 1 1 0.5 6 2 2 2 0 7 2 4 5 0 8 1.5 2 3 1 9 2 2 4 0 10 1.5 2 3 0 11 3 2 2 1 *data passage station left right up down ;stn left right up down 6 1 1 1 0 2a 1 1 1 0 3a 2 2 4 1 4a 2 0 2.5 2 5a 1.5 0 2 2 6a 1.5 0 2 2 7a 3 2.5 4 0 8a 2 2 4 0 *end 2007-08-04e *begin 2007-08-04f *EXPORT 1 ;0114_Llueva ;End of route over static sump passage ;surveyors: Dan Hibberts Dave Paul Dold *date 2007.08.04 *CALIBRATE declination 2.28 ;Stn 1 is stn 10 from 2007-08-04e ;From To Tape Comp. Clino 1 2 3.33 309 -28 2 3 9.17 270 -7 3 4 10.01 260 0 3 2a 3.05 031 -18 2a 3a 2.87 308 10 *data passage station left right up down ;stn left right up down 1 1.5 2 3 0 2 1 0 2.5 1 3 1.5 0 1 1 4 1.5 0 0.5 0.5 *data passage station left right up down 3 1.5 0 1 1 2a 1 1 2 0 3a 1 1 2 0 *end 2007-08-04f *begin 2007-08-09PStA *EXPORT 0 6 8 9 13 17 ;surveyors: Paul Stacey Peter T Eagan Dan Hibberts ;date 2007-08-09 *CALIBRATE declination 2.28 ;From To Tape Compass Clino 1 0 5.3 221 34 2 1 3.35 341 8 3 2 23.5 - +v 4 3 3.29 114 10 5 4 10.8 86 72 6 5 3.7 204 6 6 7 11.3 273 8 7 8 8.7 290 -40 8 9 19.16 211 1 9 10 27.5 227 -7 10 11 14.5 199 1 11 12 20.2 215 -1 12 13 12.9 219 11 13 14 11.3 238 7 14 15 10.2 263 -3 15 16 16.7 281 -7 16 17 6.1 269 -3 17 18 8.8 252 30 18 19 7.3 259 2 19 20 8.5 269 0 20 21 6.9 257 1; strongly draughting choke *data passage station left right up down ;stn left right up down 1 .5 10.1 3.8 .5 2 3.7 3.4 4.5 8; P 23.5 3 1.6 1.4 5 0 4 2.6 .7 3.9 10.8 5 2.3 .3 2.6 1 6 1.9 2.9 6.1 .6 7 0 1.3 .5 2.1 8 4.9 6.8 9.9 0.4 9 5.2 6.1 8.6 4.6 10 4.4 2.6 5.6 7.4 11 3.3 3.1 7.5 1.9 12 3.6 3.1 7.9 1.6 13 5.6 5 6.0 3.3 14 2 7.5 4.8 .7 15 2.4 5.7 4.2 2.3 16 3.9 2 4.8 1 17 2.4 3 4.8 0 18 .8 3.4 .8 .2 19 6.3 .9 1 .6 20 .7 .6 .5 .6 21 7.2 1.7 3.0 1.5 *END 2007-08-09PStA *begin 2007-08-09PStB *EXPORT 17 ;surveyors: Paul Stacey Peter T Eagan Dan Hibberts ;date 2007-08 -09 *CALIBRATE declination 2.28 17 22 9.8 347 6 22 23 5.5 0 -10 23 24 18.5 279 0 24 25 5.1 267 -6 25 26 9.9 272 5 26 27 16.9 265 3 27 28 12.8 265 13; strongly draughting boulder choke *data passage station left right up down 17 2.4 3 4.8 0 22 1.5 4.2 1.7 1.3 23 3.3 1.5 2.4 2.0 24 3.3 1.3 0 2.0 25 1 3.1 0 1.1 26 2.1 2.1 1.8 0 27 5 4.4 2.6 1.2 28 1.5 2.5 .7 2.9 *END 2007-08-09PStB *begin 2007-08-09PStC *EXPORT 13 30 ;surveyors: Paul Stacey Peter T Eagan Dan Hibberts ;date 2007-08 -09 *CALIBRATE declination 2.28 13 29 10.55 165 25 29 30 16.5 181 1 30 31 16.8 260 0 31 32 9 239 7 32 33 8.3 243 1 33 34 7.8 279 -3 34 35 9.95 270 -9 35 36 1.7 178 -6 36 37 4.7 253 11 37 38 4.4 258 4 38 39 4.2 251 -4; climb up into choke *data passage station left right up down 13 3.4 8 6.0 3.3 29 3.4 10.4 4.5 1.3 30 4 16.7 4.1 4 31 3.6 7.7 2.6 1.5 32 2.2 8.3 .8 1.2 33 .6 3 1 1.3 34 .9 1.5 1.2 2 35 1.7 0 1.4 1 36 1.7 0 1.4 .6 37 .9 .6 .6 .5 38 .6 1 0 .7 39 .6 1 0 .7 *END 2007-08-09PStC *begin 2007-08-09PStD *EXPORT 30 51 ;surveyors: Paul Stacey Peter T Eagan Dan Hibberts ;date 2007-08 -09 *CALIBRATE declination 2.28 30 40 5.3 84 15 40 41 9.2 100 -13 41 42 10.19 88 2 42 43 14.65 101 -12 43 44 4.3 104 7 44 45 6.3 65 16 45 46 7.2 84 2 46 47 5.7 115 -36 47 48 10.2 139 -29 48 49 3.3 124 -6 49 50 13.2 220 -1 50 51 10.2 224 2; flashbulb *data passage station left right up down 30 1.7 1.8 4.1 4 40 1.7 1.8 0 1.6 41 3 2.7 1.2 1.3 42 2.5 2.3 1.2 1.7 43 3.4 1.3 .8 1.6 44 5.3 .7 1.8 .9 45 5.6 1.8 0 1.2 46 4.4 2.8 0 1.5 47 8 4.5 1 4 48 3.2 3.1 1.3 .4 49 1.5 5.5 .6 0 50 1.5 1.4 .7 0 51 .5 3 .5 1.5 *END 2007-08-09PStD *begin 2007-08-09PStE *EXPORT 8 64 72 ;surveyors: Paul Stacey Peter T Eagan Dan Hibberts ;date 2007-08 -09 *CALIBRATE declination 2.28 8 60 12.99 353 4 60 61 16.08 354 -7 61 62 7.08 0 2 62 63 14 262 38 63 64 14.67 286 35 64 65 12.8 42 29 65 66 19.5 26 -7 66 67 26.3 37 -3 67 68 34 48 4 68 69 21.5 48 -2 69 70 10.19 26 -21 70 71 15.6 33 -26 71 72 21.2 54 -13 72 73 14.95 84 16 73 74 26.4 84 15 74 75 22.5 70 9 75 76 24.6 92 1 76 77 28.1 62 4 *data passage station left right up down 8 5 4 9.9 0.4 60 12 4.16 3.6 3.5 61 8.8 8.0 7.6 1.2 62 11.7 1.2 6.3 .6 63 5 5.7 5.6 1 64 4.4 2.6 1.8 3.4 65 13 10.5 6 3.6 66 10.5 14.3 7.6 1.7 67 13.4 20.2 7.5 1.3 68 11.9 12.3 4.5 .7 69 12.8 12 5.2 1.4 70 15 18.3 8.6 1.5 71 8 30.7 15 2.1 72 12 26.6 18.8 2.8 73 18.6 32 15.4 2 74 16.8 16 7.6 .6 75 9.5 14.5 4.6 .9 76 15.9 8.5 3.8 1 77 7.6 7 1 0 *END 2007-08-09PStE *begin 2007-08-09PStF *EXPORT 72 ;surveyors: Paul Stacey Peter T Eagan Dan Hibberts ;date 2007-08 -09 *CALIBRATE declination 2.28 72 78 9.5 271 -17 78 79 15.95 293 -27 79 80 20.56 291 -6 80 81 10.66 277 7 81 82 9.6 282 5 82 83 10.2 310 -1 83 84 12.39 288 -10 84 85 6.96 294 11 85 86 22.2 299 -4 86 87 23.3 277 -3 87 88 30 298 5 88 89 14.1 293 8 89 90 12.4 301 -15; finishes? *data passage station left right up down 78 13.9 8 20.9 1.2 79 6.8 7.8 2.1 .7 80 4.4 6.4 3.5 .9 81 1 7.8 1.4 0 82 .86 7.2 0 1.8 83 1.7 1.2 0 2.3 84 1.8 2.3 2.2 .4 85 1.7 2.7 1.1 2.2 86 6.7 0 3.4 1.4 87 2.8 5.6 2.8 2.7 88 3.7 3.8 2.7 2.1 89 7.6 5.6 0 1.8 90 1 2 1 0 *END 2007-08-09PStF *begin 2007-08-11_Connection *EXPORT 0 9 ;surveyors: Paul Stacey Ali Neill Dan Hibberts ;date 2007-08 -11 *CALIBRATE declination 2.28 0 1 12.77 238 -26 1 2 4.97 242 -17 2 3 5.18 230.5 30 3 4 2.77 253 46 4 5 .82 - +v 5 6 2.42 333 10 6 7 2.71 281.5 -2; 7 connects into Big Chamber. Left floating. 7 8 8.1 306 3; Resurveyed to connect to real station, Easter 2008 8 9 9.48 245 -22 *data passage station left right up down 0 8 3 6 0 1 1.5 8 5 0 2 1 3 2 0 3 1 2 0 .5 4 .5 .5 .5 .5 5 .5 .5 .5 .5 6 .5 .5 .5 .5 7 .5 .5 .5 0 *end 2007-08-11_Connection *begin 2007-08-13 *EXPORT 0 ;surveyors: Ali Neill Dan Hibberts Carolina Smith ;date 2007-08-13 *CALIBRATE declination 2.28 0 1 10 322 18 1 2 13.2 303 5 2 3 17.25 41 -8 4 2 5.9 154 22; Stn 4 is start of PALAEOKARST PASSAGE 5 4 10.2 109 0 6 5 5.15 74 3 7 6 2.5 2 -1 8 7 4.6 92 -6 9 8 14.15 70 1 10 9 10.35 69 0 11 10 10 39 1 12 11 1.6 73 -2 13 12 9.2 64.5 -2 14 13 10.14 72 1 15 14 3.4 43 -4 16 15 3.92 54.5 0 17 16 4.65 38 0 18 17 7.4 24 1 19 18 5.4 60 -3 20 19 7.6 14.5 0 21 20 11.65 72 -1 22 21 2.9 0 11 23 22 5.85 63.5 -2 24 23 3.45 20 .2 25 24 11.64 69.5 -1 26 25 2.7 126 0 27 26 15.8 68 -1 28 27 15.9 109 -41 *data passage station left right up down 0 6 3 2 0 1 6 3 2 0 2 4 6 .2 1.5 3 3 6 2 1 ;PALAEOKARST PASSAGE *data passage station left right up down 2 1.5 4 .2 1.5 4 1.5 1.5 3 0 5 .8 .4 1.2 .3 6 .8 1 1.2 .2 7 1 1 1.2 .2 8 .8 .8 .2 1.2 9 1.5 0 .3 1.2 10 1.5 0 .4 1 11 1.8 0 1 .4 12 0 1.5 1 .4 13 1.5 0 .8 1 14 0 1.2 .4 1 15 1.2 0 .4 1.2 16 1.2 0 .5 1 17 1.5 .8 1 .4 18 1 .6 1.2 .2 19 0 1.2 1 .4 20 0 1.5 1 .2 21 1.5 0 .4 1.2 22 1 .3 1.2 .3 23 1.5 0 .8 .4 24 0 1.5 1.2 .4 25 .4 1.8 .4 1.2 26 1.8 .6 1.2 .8 27 1.5 .5 1.5 .4 28 5 10 4 2; conts 10m up into large choke with void *end 2007-08-13 *begin 2008-03-18Ali *EXPORT 0 *calibrate tape +1.0 *CALIBRATE declination 2.15 0 1 7.8 110 15 2 1 11.8 264 -1 3 2 3.0 - -V 4 3 5.0 251 -4 5 4 3.6 260 -2 6 5 3.4 320 -1 7 6 3.95 238 -4 8 7 2.2 303 -3 9 8 2.7 267 -1 10 9 3.4 216 0 11 10 3.25 268 -1 12 11 6.75 204 -1 13 12 2.65 164 -22.5 14 13 9.9 202 +6 0 15 9.85 008 -11 *data passage station left right up down 0 .5 .5 0 1.5 1 .5 .5 0 1.5 2 .5 .5 3 .5 3 .5 .5 2 1 4 1 .5 .5 1 5 0 1.5 1.5 .5 6 .5 .5 2 .5 7 0 .5 .5 1 8 .5 .5 .5 1 9 .5 .5 .5 1 10 .5 .5 2 .5 11 .5 .5 2 .5 12 1 0 4 1 13 0 1 5 1.5 14 2 2 6 2 *data passage station left right up down 0 .5 .5 .5 .5 15 .5 .5 .5 .5 *end 2008-03-18Ali *begin 2008-03-18Ali2 *EXPORT 8 *calibrate tape +1.0 *CALIBRATE declination 2.15 0 1 6.5 72 -16 0 2 11 195 -16 0 3 7 273 -40 4 3 9 81 -4 3 5 6.7 - -V 5 6 5 278 -5 6 7 7.57 246 12 7 8 10.8 236 -16 *data passage station left right up down 0 1 .5 8 4 1 .5 .5 8 0 *data passage station left right up down 0 2 5 8 4 2 .3 .3 .3 1.5 *data passage station left right up down 0 .5 1 8 4 3 2 0 6 .5 4 .75 .75 6 2 *data passage station left right up down 3 2 0 6 .5 5 1 3 9 1 6 1 .5 .5 1.5 7 1 2 6 1 8 1 2 6 1 *end 2008-03-18Ali2 *begin 2008-03-27 *export 1 ;Shitty Muddy Chamber ;Surveyors: Footleg, Paul Dold, Dave Garman, Torben Redder, Pete Eagan *date 2008.03.27 *CALIBRATE declination 2.15 1 2 7.62 000 -90 2 3 5.60 266 -17 3 4 2.66 026 -64 4 5 2.83 157 -23 5 6 0.90 098 -10 6 7 15.70 000 -90 6 8 4.30 180 -71 8 9 2.00 131 -42 9 10 4.41 085 -5 10 11 2.16 067 2 11 12 15.77 000 -90 12 13 4.16 252 29 13 14 12.64 110 -16 14 15 26.87 086 8 14 16 15.27 017 -10 14 17 17.30 057 -28 14 19 6.67 171 -18 17 18 5.43 101 -55 19 20 6.27 000 -90 19 21 20.01 000 90 13 31 9.52 262 18 31 32 19.88 245 -15 32 33 16.73 259 -3 33 34 17.63 273 10 34 35 14.55 164 42 35 36 7.58 230 20 36 37 16.13 085 5 *data passage station left right up down 1 0.2 0.2 0.4 3 ;D=7.6 2 1.1 0.8 3 0.3 3 0.9 1.6 3.7 2.6 4 0.6 0.8 3.7 0.3 5 0.4 0.4 1.3 1.4 8 1.4 0.6 1.3 1.5 9 0.2 0.1 0.8 1.1 10 0.9 0.0 3.9 1.5 11 1.4 0.0 3.5 6 ;D=15.0 12 12.6 6.6 6 0.0 13 7.3 9.0 1.7 1.3 14 12.2 6.0 5.4 0.0 17 0.9 1.6 1.5 1.3 *data passage station left right up down 14 12.2 6.0 5.4 0.0 15 5 2 2 1 *data passage station left right up down 14 12.2 6.0 5.4 0.0 16 1.5 15 1 1 *data passage station left right up down 13 10.0 7.0 2.0 1.5 31 12.0 7.0 3.0 1.5 32 5.0 13.0 6.0 1.0 33 5.0 12.0 8.0 2.0 34 15.0 5.0 4.5 1.0 35 13.0 12.0 13.0 1.0 36 12.0 2.0 3.0 1.0 *end 2008-03-27 *end LowerLevels *end LifeUandE *BEGIN LeftHandBypass *EXPORT 68 68a 78a 90 *EQUATE 78a SandstoneInlet1.14 *EQUATE 85 Boulder_Chambers.101 *EQUATE 89 Boulder_Chambers.89 ;22 68 21.25 133.39 -11 ;Leg in survex data file but not in notes! 68a 68 5.40 148.11 -47 ;Actual leg from survey data in notes 68 69 8.40 251.11 -19 ;* 69 70 17.20 253.11 1 ;* 70 71 6.60 269.11 -16 ;* 71 72 9.60 252.11 -2 ;* 72 73 5.40 301.11 -3 ;* 73 74 5.00 338.11 -40 ;* 74 75 8.30 67.11 0 ;* 74 76 13.90 255.11 0 ;* 76 77 7.40 219.11 4 ;* 77 78 18.90 244.11 0 ;* 78 78a 2.40 - -V ;This was missing from file on computer, but confirmed in orignal notes 78a 79 12.30 261.11 -4 ;* 79 80 30.00 319.11 -5 ;* 80 81 30.00 297.11 -4 ;* 81 82 10.80 297.11 2 ;* 82 83 4.70 315.11 -23 ;* 83 84 7.30 333.11 30 ;* 84 85 13.10 17.11 17 ;* 85 86 10.70 56.11 -19 ;Original notes 20-21 86 86a 1 53.11 0 ;Original notes 21-22 no compass 86a 87 2.3 - -V ;Original notes vertical drop 87 88 9.40 53.11 0 ;22-23 88 89 5.30 63.11 25 ;23-24 89 90 16.00 56.11 0 ;24-25 90 91 15.60 90.11 -9 ;25-26 91 92 18.10 113.11 0 ;26-27 92 93 8.90 91.11 18 ;27-28 Stn 93 on right hand wall looking out over lake 90 94 11.10 278.11 -19 ;25-29 94 95 4.40 - -V ;* 95 96 9.20 116.11 0 ;29a-30 *BEGIN Boulder_Chambers ;Inlet off muddy area just before chamber where stream is rejoined *EXPORT 89 101 89 97 6.50 320.11 17 ;24-31 97 98 7.20 12.11 13 ;31-32 98 99 11.80 230.11 -8 ;32-33 99 100 14.80 228.11 10 ;33-34 100 101 7.40 161.11 0 ;34-20 100 102 8.20 277.11 12 ;34-35 102 103 4.60 319.11 48 ;35-36 103 104 15.70 260.11 35 ;36-37 *END Boulder_Chambers *BEGIN SandstoneInlet1 *EXPORT 14 ;First inlet on left hand bypass ;surveyors: Footleg, Badger (Tony Radmall), Gary Cullen *date 2007.04.09 *CALIBRATE declination 2.28 ;From To Tape Compass Clino L R U D 15 14 19.00 296 -9; 1.5 4 1.4 .4 16 15 9.11 288 -3; .2 1 .5 1 17 16 3.59 307 -6; 0 .8 .5 1 18 17 10.19 291 -4; 1 .2 .6 1.2 19 18 13.93 286 -3; .1 .8 .6 1 20 19 8.04 295 -3; .1 .7 .7 1 21 20 9.85 032 0; .3 1.8 3 .5 22 21 4.24 350 -8; 2 .5 2 .2 23 22 14.09 288 -3; 3 1 .5 .1 *END SandstoneInlet1 *END LeftHandBypass *BEGIN MainUpstream *EXPORT 1 11 ;Main stream passage (old data taken off printed survey? Did not match printed survey well) ;90 105 15.57 268.91 -2 ;* ;90 106 42.38 294.29 0 ;* ;106 107 38.47 266.02 0 ;* ;107 108 41.01 262.32 1 ;* ;108 109 71.84 283.80 0 ;* ;From lake overlook back up flood overflow ;93 15 24.9 283.11 -8 ; ;15 14 18.2 271.11 8 ; ;14 13 22.7 339.11 1 ; ;New data extracted off published survey 1 2 17.68 310.43 -26.90 2 3 42.09 298.55 0 3 4 6.28 267.88 0 4 5 10.74 287.65 0 5 6 23.49 269.15 0 6 7 15.01 247.21 0 7 8 24.76 275.39 0 8 9 38.28 289.70 0 9 10 21.07 285.03 0 10 11 11.98 292.83 0 ;14 13 19.58 331.41 0 13 12 39.62 301.50 0 12 3 12.73 227.68 -45 *END MainUpstream *END Part1 *BEGIN RestOfCave *EXPORT 109 172 290 414 ;compass calibration of 6.14 already applied 109 110 7.00 273.86 0 ;* 110 111 13.10 258.86 10 ;* 111 112 7.30 246.86 57 ;* 112 113 18.40 286.86 -4 ;* 113 114 25.60 261.86 -2 ;* 114 115 14.50 299.86 -11 ;* 115 116 8.30 305.86 47 ;* 116 117 10.30 301.86 -9 ;* 117 118 1.70 - -V ;* 118 119 6.00 223.86 -12 ;* 119 120 20.00 291.86 -4 ;* 120 121 2.10 - +V ;* 121 122 1.50 297.86 42 ;* 122 123 1.10 - +V ;* 123 124 2.50 288.86 26 ;* 124 125 3.20 238.86 55 ;* 125 126 3.10 352.86 6 ;* 126 127 3.50 307.86 -29 ;* 127 128 2.80 271.86 6 ;* 128 129 2.00 208.86 25 ;* 129 130 3.60 258.86 52 ;* 130 131 1.60 229.86 3 ;* 131 132 1.00 - +V ;* 132 133 12.00 257.86 30 ;* 133 134 3.80 288.86 31 ;* 134 135 1.20 - -V ;* 135 136 7.30 105.86 -9 ;* 136 137 3.70 107.86 10 ;* 137 138 3.70 120.86 0 ;* 138 139 3.60 135.36 -5 ;* 139 140 4.90 133.86 8 ;* 140 141 9.00 231.86 10 ;* 141 142 3.90 117.86 -4 ;* 142 143 5.30 269.86 -77 ;* 143 144 3.80 151.86 4 ;* 144 145 6.50 212.86 22 ;* 145 146 35.10 131.86 1 ;* 146 147 13.10 237.86 7 ;* 147 148 7.40 255.86 -11 ;* 148 149 4.40 142.86 -23 ;* 149 150 30.00 154.86 2 ;* 150 151 13.50 67.86 -27 ;* 151 152 8.80 150.86 0 ;* 152 153 19.10 122.86 2 ;* 153 154 6.00 147.86 0 ;* 154 155 30.00 151.86 12 ;* 155 156 12.70 260.86 -16 ;* 156 157 24.60 225.86 0 ;* 157 158 30.00 227.86 4 ;* 158 159 30.00 218.86 2 ;* 159 160 30.00 235.86 -2 ;* 160 161 30.00 203.86 10 ;* 161 162 13.20 222.86 23 ;* 162 163 31.50 254.86 0 ;* 163 164 27.20 277.86 2 ;* 164 165 27.80 263.86 -1 ;* 165 166 30.00 264.86 0 ;* 166 167 13.00 203.86 -3 ;* 167 168 30.00 291.86 3 ;* 168 169 24.20 339.36 5 ;* 169 170 10.70 265.86 -12 ;* 170 171 30.00 231.86 0 ;* 171 172 30.00 257.86 - ;* 172 173 30.00 261.86 5 ;* 173 174 28.10 308.86 23 ;* 174 175 10.80 324.86 -42 ;* 175 176 17.40 46.86 -12 ;* 176 177 30.00 45.86 -11 ;* 177 178 22.20 51.86 -18 ;* 178 179 30.00 39.86 -5 ;* 179 180 30.00 43.86 -5 ;* 180 181 30.00 1.86 0 ;* 181 182 25.60 275.86 -3 ;* 182 183 25.30 314.86 -10 ;* 183 184 7.50 14.86 22 ;* 184 185 29.00 54.86 13 ;* 132 186 10.40 258.95 28 ;* 186 187 3.10 204.95 -33 ;* 187 188 1.60 272.95 -14 ;* 188 189 3.70 253.95 -37 ;* 189 190 8.10 293.95 15 ;* 190 191 4.90 294.95 -7 ;* 191 192 3.30 312.95 -11 ;* 192 193 2.90 304.95 28 ;* 193 194 16.20 323.95 -8 ;* 194 195 16.40 288.95 -32 ;* 195 196 5.40 31.95 -8 ;* 196 197 3.80 - -V ;* 197 198 12.00 335.95 -5 ;* 198 199 7.30 318.95 5 ;* 199 200 10.00 284.95 -7 ;* 200 201 4.00 262.95 0 ;* 201 202 8.70 226.95 0 ;* 194 203 17.00 289.95 0 ;* 199 204 12.40 209.95 0 ;* 185 205 3.10 112.95 18 ;* 205 206 30.70 73.45 -1 ;* 206 207 17.60 85.45 2 ;* 207 208 22.70 33.95 -8 ;* 208 209 30.70 61.45 13 ;* 209 210 27.40 57.95 5 ;* 210 211 30.70 66.95 -17 ;* 211 212 30.40 76.95 -2 ;* 145 213 5.40 217.95 7 ;* 213 214 22.00 322.95 8 ;* 162 215 7.14 289.45 20 ;* 215 216 23.40 316.95 -1 ;* 216 217 30.70 248.95 2 ;* 217 218 27.30 333.95 -3 ;* 218 219 19.30 274.95 0 ;* 219 220 30.70 281.95 2 ;* 220 221 17.40 351.95 2 ;* 221 222 30.70 14.95 -3 ;* 222 223 30.70 36.95 0 ;* 223 224 30.70 32.95 0 ;* 224 225 30.70 31.95 3 ;* 225 226 29.70 38.95 -4 ;* 226 227 24.60 23.95 0 ;* 227 228 21.00 37.95 -2 ;* 228 229 13.90 90.95 -5 ;* 229 230 19.40 61.45 1 ;* 220 231 30.70 159.95 1 ;* 231 232 13.60 150.95 6 ;* 232 233 25.50 252.95 -8 ;* 228 234 17.00 7.95 0 ;* 234 235 0.0 - +V ;* 235 236 0.0 - +V ;* 236 237 0.0 - +V ;* 162 238 18.00 101.95 11 ;* 238 239 2.70 93.95 -10 ;* 239 240 13.40 186.95 -5 ;* 240 241 5.00 84.95 0 ;* 241 242 2.60 121.95 15 ;* 242 243 2.40 208.95 25 ;* 243 244 2.50 113.95 -1 ;* 244 245 4.40 193.95 0 ;* 245 246 2.60 96.95 10 ;* 246 247 4.30 165.95 -6 ;* 247 248 4.00 87.95 -4 ;* 248 249 7.30 188.95 -3 ;* 249 250 5.00 80.95 1 ;* 250 251 2.70 187.95 -2 ;* 251 252 3.70 83.95 0 ;* 252 253 6.00 188.95 1 ;* 253 254 9.50 77.95 -1 ;* 254 255 5.90 153.95 -1 ;* 255 256 3.30 91.95 1 ;* 256 257 7.90 193.95 2 ;* 257 258 7.60 68.95 2 ;* 258 259 2.50 43.95 4 ;* 259 260 1.80 133.95 2 ;* 260 261 3.40 13.95 -3 ;* 261 262 8.40 27.95 -10 ;* 262 263 2.10 168.95 24 ;* 263 264 22.50 191.95 0 ;* 264 265 12.30 193.95 5 ;* 265 266 7.30 55.95 4 ;* 266 267 6.40 188.95 6 ;* 267 268 6.70 163.95 4 ;* 268 269 4.30 66.95 1 ;* 269 270 4.60 171.95 1 ;* 270 271 20.00 65.95 0 ;* 271 272 6.70 53.95 0 ;* 272 273 1.30 148.95 2 ;* 273 274 4.00 214.95 3 ;* 274 275 5.20 173.95 4 ;* 275 276 9.40 104.95 2 ;* 276 277 3.30 123.95 5 ;* 277 278 3.90 49.95 -4 ;* 278 279 5.20 119.95 2 ;* 279 280 6.60 143.95 2 ;* 280 281 8.60 119.95 1 ;* 281 282 6.00 53.95 5 ;* 282 283 6.40 109.95 0 ;* 283 284 2.60 73.95 -4 ;* 284 285 3.20 113.95 1 ;* 285 286 6.90 143.95 4 ;* 286 287 7.30 122.95 10 ;* 287 288 2.20 159.95 -45 ;* 288 289 5.00 178.95 5 ;* 289 290 7.50 233.95 -4 ;* 162 291 11.35 83.96 19 ;* 291 292 6.00 85.95 -10 ;* 292 293 15.75 12.95 -1 ;* 293 294 4.80 81.95 23 ;* 294 295 5.00 154.95 -32 ;* 295 296 7.30 203.95 10 ;* 175 297 16.80 280.94 17 ;* 297 298 6.70 193.95 43 ;* 298 299 3.30 133.95 70 ;* 299 300 3.30 271.95 15 ;* 300 301 3.30 - +V ;* 301 302 9.00 83.95 10 ;* 302 303 6.30 178.95 11 ;* 303 304 30.70 262.95 6 ;* 304 305 16.20 246.95 19 ;* 305 306 16.80 285.95 10 ;* 306 307 30.70 258.95 0 ;* 307 308 30.70 268.95 -1 ;* 308 309 30.70 278.95 3 ;* 309 310 28.10 222.95 16 ;* 310 311 30.70 221.95 11 ;* 311 312 22.00 260.95 -8 ;* 312 313 20.40 273.95 -26 ;* 313 314 12.50 358.95 -29 ;* 314 315 8.70 268.95 -42 ;* 315 316 9.80 215.95 -50 ;* 316 317 6.20 142.95 -40 ;* 317 318 10.70 207.95 -45 ;* 318 319 18.60 126.95 -30 ;* 319 320 30.70 163.95 -9 ;* 320 321 21.40 153.95 10 ;* 321 322 12.50 218.95 10 ;* 318 323 28.40 263.95 8 ;* 323 324 19.00 268.95 -6 ;* 312 325 16.60 203.95 28 ;* 324 326 8.60 15.95 -31 ;* 326 327 6.30 74.95 -33 ;* 327 328 2.50 341.95 -15 ;* 328 329 19.20 284.95 0 ;* 329 330 13.50 252.95 2 ;* 330 331 5.00 346.95 3 ;* 331 332 8.10 289.95 14 ;* 332 333 23.50 302.95 -3 ;* 333 334 2.10 277.95 30 ;* 334 335 2.20 240.95 -8 ;* 335 336 2.90 147.95 12 ;* 336 337 9.20 204.95 -4 ;* 337 338 4.70 265.95 -19 ;* 338 339 3.70 358.95 -3 ;* 339 340 6.50 318.95 5 ;* 340 341 3.00 1.95 35 ;* 341 342 8.90 285.95 2 ;* 342 343 10.20 273.95 -21 ;* 343 344 16.50 275.95 20 ;* 344 345 20.30 303.95 -8 ;* 345 346 20.40 286.95 18 ;* 346 347 4.60 27.95 -9 ;* 347 348 13.00 3.95 1 ;* 348 349 6.20 14.95 3 ;* 349 350 8.00 4.95 -8 ;* 350 351 4.90 26.95 -3 ;* 351 352 8.70 29.95 0 ;* 352 353 4.10 342.95 12 ;* 353 354 4.40 29.95 -19 ;* 354 355 4.70 51.95 -14 ;* 355 356 12.60 19.95 -2 ;* 356 357 4.50 52.95 -2 ;* 357 358 6.30 357.95 0 ;* 358 359 8.50 330.95 0 ;* 346 360 1.23 42.03 -17 ;* 360 361 3.70 285.03 22 ;* 361 362 0.70 - -V ;* 362 363 7.10 278.03 32 ;* 363 364 9.40 204.03 59 ;* 364 365 9.57 78.03 2 ;* 365 366 10.71 141.03 0 ;* 364 367 3.20 264.03 4 ;* 367 368 0.0 - +V ;* 325 369 30.00 - +V ;* 369 370 3.50 110.35 55 ;* 370 371 7.50 125.35 70 ;* 371 372 6.20 129.35 -32 ;* 372 373 10.30 60.35 45 ;* 371 374 1.70 210.35 20 ;* 374 375 5.50 201.35 10 ;* 375 376 0.0 - +V ;* 199 377 1.09 - +V ;* 377 378 3.60 311.95 0 ;* 378 379 3.20 285.95 59 ;* 379 380 4.00 329.95 -6 ;* 380 381 1.80 223.95 0 ;* 381 382 1.60 - +V ;* 382 383 1.70 176.95 32 ;* 383 384 1.00 298.95 15 ;* 384 385 2.00 6.95 12 ;* 385 386 1.40 328.95 20 ;* 386 387 1.80 275.95 0 ;* 387 388 1.30 - +V ;* 388 389 1.70 303.95 -5 ;* 389 390 0.90 - +V ;* 390 391 2.90 308.95 4 ;* 391 392 2.40 331.95 -12 ;* 392 393 3.20 331.95 19 ;* 393 394 2.80 321.95 50 ;* 394 395 3.90 3.95 52 ;* 395 396 5.50 278.95 25 ;* 396 397 6.50 299.95 -28 ;* 397 398 6.90 283.95 -7 ;* 398 399 2.40 236.95 0 ;* 399 400 2.80 271.95 -48 ;* 400 401 6.30 308.95 -10 ;* 401 402 7.10 348.95 -5 ;* 402 403 9.80 293.95 4 ;* 403 404 4.50 275.95 38 ;* 404 405 3.40 285.95 0 ;* 405 406 1.30 218.95 0 ;* 406 407 3.60 273.95 2 ;* 407 408 2.00 271.95 30 ;* 408 409 2.90 204.95 50 ;* 409 410 3.80 193.95 42 ;* 410 411 9.20 283.95 2 ;* 411 412 1.20 233.95 0 ;* 412 413 2.70 321.95 0 ;* 413 414 3.80 288.95 0 ;* 396 415 3.90 258.95 -1 ;* 197 416 2.89 81.02 28 ;* 416 417 9.00 111.95 0 ;* 417 418 6.70 182.95 -1 ;* 417 419 1.30 - -V ;* 419 420 1.20 111.95 0 ;* 420 421 3.90 14.95 7 ;* 421 422 6.60 30.95 9 ;* 422 423 1.60 110.95 20 ;* 423 424 7.30 134.95 12 ;* 424 425 4.40 113.95 28 ;* 425 426 4.60 162.95 10 ;* 426 427 2.70 186.95 -32 ;* 427 428 2.40 205.95 10 ;* 428 429 6.10 254.95 11 ;* 429 430 4.80 198.95 8 ;* 212 431 9.30 285.06 6 ;* 431 432 5.50 59.03 -14 ;* 432 433 2.80 309.03 -42 ;* 433 434 2.10 56.03 -17 ;* 434 435 4.40 285.03 -26 ;* 435 436 3.15 - -V ;* 436 437 19.70 69.03 2 ;* 320 438 1.50 - +V ;* 438 439 22.34 341.35 6 ;* 439 440 8.50 248.35 -35 ;* 440 441 15.72 275.35 -8 ;* 441 442 8.16 4.35 -3 ;* 442 443 27.47 274.35 -4 ;* 443 444 30.00 282.35 -2 ;* 444 445 15.03 276.35 3 ;* 445 446 24.34 244.35 1 ;* 446 447 22.25 213.35 0 ;* 447 448 25.24 225.35 3 ;* 448 449 5.97 173.35 1 ;* 446 450 30.00 247.35 -2 ;* 450 451 11.07 209.35 4 ;* 451 452 15.27 217.35 1 ;* 452 453 7.65 229.35 20 ;* 453 454 5.60 266.35 47 ;* 452 455 10.62 242.35 5 ;* 455 456 5.72 278.35 1 ;* 456 457 3.37 221.35 1 ;* 184 458 6.10 242.50 -5 ;* 458 459 8.00 268.50 -8 ;* 459 460 4.30 284.50 0 ;* 460 461 7.20 265.50 -7 ;* 461 462 6.60 265.50 8 ;* 462 463 25.80 265.50 1 ;* 463 464 3.00 - -V ;* 464 465 2.60 263.50 -14 ;* 465 466 8.50 278.50 0 ;* 466 467 2.50 245.50 -24 ;* 467 468 5.50 260.50 0 ;* 468 469 5.20 315.50 30 ;* 469 470 16.10 259.50 0 ;* 470 471 10.00 269.50 5 ;* 185 502 29.35 272.40 -3 ;stn 13 502 503 7.90 253.40 -27 ;* 503 504 10.45 286.40 1 ;stn 11 504 505 6.30 266.40 3 ;* 505 506 4.45 278.90 22 ;stn 9 506 507 20.20 261.40 1 ;* 507 508 4.60 281.90 -28 ;* 508 509 3.65 240.40 -47 ;stn 6 509 510 8.25 280.90 2 ;* 510 511 3.40 250.40 -21 ;* 511 512 5.55 268.90 1 ;stn 3 512 513 5.30 320.40 33 ;* 513 514 16.35 264.40 -1 ;* 514 515 15.50 270.40 2 ;stn 0 359 516 3.60 185.55 0 ;from chk 516 517 9.90 143.55 -1 ;* 517 518 3.70 106.55 8 ;* 518 519 3.40 152.55 -3 ;* 519 520 3.00 102.55 -1 ;* 520 521 1.70 181.55 -2 ;* 521 522 4.00 90.55 0 ;* 522 523 15.00 100.55 -2 ;* 523 524 3.60 342.55 3 ;* 524 525 19.00 100.55 0 ;* 525 526 3.10 157.55 0 ;* 526 527 14.20 92.55 -1 ;* 527 528 4.10 137.55 6 ;* 528 529 5.40 167.55 -3 ;stn22 529 530 6.00 97.55 1 ;* 530 531 17.00 80.55 -2 ;* 531 532 9.70 91.55 -2 ;* 532 533 9.00 88.55 -8 ;sideways walking 533 534 6.20 117.55 1 ;* 534 535 3.60 179.55 3 ;* 535 536 5.70 79.55 0 ;* 536 537 12.60 82.55 0 ;* 537 538 9.50 83.55 -2 ;* 538 539 9.00 84.55 -1 ;* 539 540 6.50 86.55 0 ;* 540 541 7.30 81.55 -1 ;rift below 541 542 5.10 79.55 -5 ;* 542 543 3.40 63.55 -61 ;cl down 543 544 4.30 92.55 -13 ;* 544 545 5.20 87.55 2 ;* 545 546 4.00 108.55 -5 ;* 546 547 11.80 81.55 0 ;* 547 548 6.30 69.55 -1 ;* 548 549 1.50 - -V ;* 549 550 10.60 80.55 0 ;* 215 551 2.00 - -V ;not surveyed 551 552 9.40 123.85 1 ;opposite Straw pass oxbow 552 553 5.00 216.85 58 ;* 553 554 14.60 210.85 2 ;* 554 555 6.70 204.85 4 ;* 555 556 2.60 234.85 0 ;* 556 557 7.90 193.85 7 ;* 557 558 2.50 186.85 4 ;junct: stn 7 and stn27 558 559 5.20 176.85 4 ;* 559 560 3.30 95.85 8 ;marked stn9: junction 560 561 30.00 74.85 -1 ;* 561 562 8.20 68.85 -4 ;rift below 562 563 6.80 79.85 27 ;shale run-in 563 564 9.30 66.85 -4 ;* 564 565 7.00 71.85 -20 ;junction: 4 ways 560 566 3.30 176.85 1 ;* 566 567 15.60 273.85 1 ;* 567 568 3.00 292.85 -5 ;junction: stn17 568 569 22.20 271.85 -2 ;* 569 570 8.00 265.85 0 ;* 570 571 1.60 234.85 -9 ;* 571 572 21.90 272.85 -1 ;* 572 573 3.00 29.85 -5 ;* 573 574 29.00 327.85 -7 ;?hole in floor? 574 575 12.00 338.85 -8 ;joins Rhinocerous opp Straw Pass 575 576 5.40 338.85 -8 ;* 576 577 5.30 95.85 0 ;* 568 578 2.50 333.85 -7 ;* 578 579 4.80 1.85 -8 ;* 579 580 15.60 86.85 -5 ;pass off at 6m from stn 27/7 552 581 8.15 60.85 8 ;entr to new pass 581 582 17.25 78.85 2 ;* 582 583 11.70 82.85 4 ;stn JD3 583 584 4.22 160.85 -7 ;stnJD4 584 585 7.00 209.85 -8 ;jd5 585 586 3.50 162.85 30 ;jd6 586 587 1.60 146.85 46 ;jd7 587 588 3.00 126.85 -17 ;jd8 588 589 4.55 167.85 2 ;jd9 589 590 2.70 85.85 10 ;jd10 590 591 3.10 91.85 27 ;cnt chmbr JD11 591 592 9.10 177.85 7 ;jd12 592 593 1.60 - -V ;JD13=JD14 2/4/99 591 594 11.68 352.85 6 ;stnjd14 594 595 10.50 31.85 -4 ;dig in floor; JD15 593 596 6.50 152.85 10 ;jd16 596 597 5.30 186.85 -28 ;jd17 597 598 5.30 78.85 17 ;jd18 598 599 5.30 159.85 22 ;jd19 598 600 2.00 - -V ;jd20 600 601 10.00 78.85 -5 ;jd21 601 602 10.80 195.85 1 ;jd22 602 603 1.30 - -V ;jd23 603 604 24.00 186.85 3 ;jd24 604 605 13.70 195.85 5 ;jd25; =265? 605 606 5.50 186.85 19 ;jd26 606 607 2.90 170.85 4 ;jd27 607 608 1.50 86.85 1 ;jd28 608 609 6.40 176.85 9 ;jd29 609 610 4.00 - +V ;jd30 610 611 12.30 119.85 2 ;jd31 611 612 4.65 130.85 -2 ;jd32 612 613 0.90 61.85 0 ;jd33 613 614 8.90 105.85 10 ;* 614 615 13.50 171.85 4 ;jd35; narr rifts in calcite chk 610 616 9.50 268.85 -4 ;jd36 616 617 0.40 - -V ;stnjd37 PP28?? 610 618 5.55 352.85 -14 ;jd38 618 619 7.60 346.85 -15 ;jd39 619 620 4.90 1.85 -5 ;jd40 620 621 6.80 13.85 1 ;jd41 621 622 4.20 250.85 -3 ;jd42 622 623 4.55 6.85 1 ;jd43 623 624 3.35 233.85 8 ;jd44 624 625 1.40 278.85 8 ;jd45 552 626 15.40 28.35 2 ;* 626 627 16.20 46.85 -10 ;PP2 start of pass 627 628 8.00 160.85 0 ;* 628 629 4.95 185.85 3 ;* 629 630 4.67 93.85 2 ;* 630 631 4.95 190.85 1 ;JD2? 583 632 7.17 49.85 17 ;* 632 633 15.85 13.85 -11 ;start crkd mud flr 633 634 5.13 339.85 -19 ;* 634 635 4.63 326.85 0 ;above Rhino Pass 593 636 11.18 93.85 9 ;* 636 637 2.89 70.85 -7 ;* 637 638 4.90 194.85 -11 ;holes down to JD pass 638 639 9.42 204.35 13 ;jd19 599 640 7.77 204.85 2 ;PP13 high and low routes 640 641 11.95 191.85 10 ;high level chk 640 642 4.49 202.85 -35 ;fall from pass above on L 642 643 18.00 195.85 0 ;* 643 644 2.60 150.85 20 ;PP17 644 645 6.90 10.85 37 ;high level chk; connects to PP14? 644 646 8.60 197.85 0 ;PP19 646 647 7.75 195.85 10 ;* 647 648 7.25 182.85 21 ;blind in front; window to pass on L 648 649 0.90 113.85 -25 ;PP22 649 650 3.15 27.85 -29 ;PP23 650 651 3.34 345.85 -2 ;* 651 652 5.31 12.85 -7 ;* 652 653 3.04 342.85 -1 ;PP19 650 654 6.22 182.85 23 ;* 654 655 1.50 260.85 9 ;* 655 656 3.12 348.85 -11 ;* 654 657 1.94 68.85 -8 ;* 657 658 3.88 2.85 -24 ;tight junct PP29 658 659 2.86 227.85 10 ;between 23 & 26 658 660 5.00 8.85 -7 ;* 660 661 3.30 232.85 2 ;near stn 23 155 662 5.40 359.85 -22 ;stn1 662 663 19.47 349.35 -7 ;entering side passage 663 664 29.40 34.85 0 ;* 664 665 10.25 20.85 -3 ;side fissure 665 666 6.50 29.85 -4 ;pass to W 666 667 14.25 39.85 -11 ;* 667 668 11.67 25.85 -11 ;not surveyed into small chmbr; bldr chk 665 669 6.13 252.85 -16 ;* 669 670 7.30 263.85 - ;narr fissure below heads S 670 671 2.65 4.85 -9 ;* 671 672 12.50 31.85 -12 ;pass conts 2m sq; marker left stn TMW11 155 673 17.20 254.15 -22 ;STN1 FROM AQ FOOT 673 674 8.50 318.15 -24 ;into new pass 674 675 2.70 11.15 -2 ;* 675 676 6.50 327.15 -5 ;* 676 677 5.00 38.15 -3 ;* 677 678 17.10 329.15 -5 ;* 678 679 3.30 49.15 -11 ;fissure to side of Rhin Pass 679 680 6.10 8.15 21 ;* 680 681 18.10 316.15 6 ;* 681 682 5.70 49.15 -31 ;base hole in Rhono pass 682 683 2.90 88.15 0 ;thro low arch to drop 683 684 17.90 47.15 -10 ;middle chmbr near small inlet 684 685 12.50 47.15 -15 ;end *END RestOfCave *END 0114_Llueva CaveConverter_src/test/data/regression/Uzu-Gour_pt_ref.text0000644000000000000000000001562213030252172023204 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.Uzu-Gour090410.153 1 -1 1 1 1 1 0 1 79 79 3 0 1 0 1 1 1 0.00 0.00 0.00 0.63 1.14 1.61 1.31 1 1 1 1 1 4.01 53.11 2.88 0.66 1.24 6.16 1.27 1 2 1 1 1 6.67 107.19 -1.37 0.70 0.96 2.42 1.16 1 3 1 1 1 7.57 80.81 -1.46 1.00 0.64 5.66 0.88 1 4 1 1 1 15.71 15.49 1.20 1.94 0.40 5.60 1.04 1 5 1 1 1 2.73 242.53 2.61 0.00 2.10 5.39 1.23 1 6 1 1 1 4.22 316.29 0.41 0.00 4.73 0.72 1.79 1 7 1 1 1 4.92 27.57 -2.12 1.68 3.80 1.48 0.88 1 8 1 1 1 9.81 56.71 0.94 0.53 1.36 1.84 1.17 1 9 1 1 1 8.60 126.69 -6.68 1.21 1.00 1.17 0.26 1 10 1 1 1 5.68 80.91 5.68 1.18 0.93 1.56 0.76 1 11 1 1 1 6.56 42.64 4.54 1.04 1.22 3.26 1.16 1 12 1 1 1 9.03 70.18 1.22 1.21 0.38 9.07 1.17 1 13 1 1 1 3.05 44.21 1.28 0.94 1.07 9.09 1.45 1 14 1 1 1 6.89 84.26 -0.51 1.05 0.00 7.58 1.29 1 15 1 1 1 6.61 59.47 0.09 1.53 0.23 6.33 1.07 1 16 1 1 1 5.13 16.52 -1.21 0.55 1.29 1.39 1.10 1 17 1 1 1 6.85 60.62 2.01 0.00 1.37 4.99 1.18 1 18 1 1 1 5.38 100.17 1.22 1.27 0.00 10.77 1.38 1 19 1 1 1 2.60 103.48 -1.05 0.00 1.40 5.11 1.11 1 20 1 1 1 6.94 176.16 -2.10 0.40 0.69 2.87 1.04 1 21 1 1 1 4.01 194.06 3.14 1.43 0.63 5.22 1.07 1 22 1 1 1 4.15 137.27 -0.15 0.34 3.29 0.96 1.17 1 23 1 1 1 4.71 203.75 -0.38 0.65 0.89 2.02 1.13 1 24 1 1 1 6.52 196.44 5.52 0.67 0.94 4.72 1.25 1 25 1 1 1 8.69 222.00 -4.26 1.68 1.09 1.82 1.05 1 26 1 1 1 5.69 244.23 2.28 2.71 0.00 1.70 1.17 1 27 1 1 1 2.46 151.09 -9.56 0.00 1.16 2.03 0.82 1 28 1 1 1 16.85 202.23 -2.08 1.79 0.86 1.05 0.00 1 29 1 1 1 10.28 137.19 5.65 1.60 0.39 7.89 0.83 1 30 1 1 1 5.84 103.82 5.86 1.89 0.41 3.22 1.28 1 31 1 1 1 10.74 77.30 -0.95 2.83 0.38 1.29 1.16 1 32 1 1 1 5.99 19.28 2.80 0.00 1.89 1.71 1.26 1 33 1 1 1 8.26 122.61 -0.97 2.09 0.75 3.36 1.26 1 34 1 1 1 11.46 84.23 0.14 0.51 0.89 12.86 1.36 1 35 1 1 1 10.25 102.60 -0.15 2.27 0.00 1.54 1.12 1 36 1 1 1 6.54 34.45 2.80 1.07 0.26 4.68 1.61 1 37 1 1 1 7.85 350.55 0.36 0.00 1.97 3.79 1.44 1 38 1 1 1 12.49 57.57 -0.29 0.00 3.34 0.99 1.13 1 39 1 1 1 6.47 142.29 -0.66 0.00 1.76 5.37 1.40 1 40 1 1 1 12.19 174.61 2.78 0.00 0.93 8.25 1.85 1 41 1 1 1 8.03 215.49 -3.13 0.76 0.38 10.05 1.48 1 42 1 1 1 5.06 195.68 0.74 0.80 0.80 9.18 1.47 1 43 1 1 1 5.14 162.35 -5.75 1.21 1.12 1.88 0.88 1 44 1 1 1 4.12 88.66 -11.48 2.31 1.24 1.17 0.00 1 45 1 1 1 12.39 171.98 6.86 1.41 0.89 3.40 1.43 1 46 1 1 1 7.38 102.90 0.82 0.98 0.00 3.88 1.19 1 47 1 1 1 4.77 59.94 -3.61 0.85 0.48 4.88 0.90 1 48 1 1 1 5.77 21.57 0.32 0.95 0.85 8.94 0.87 1 49 1 1 1 10.87 4.03 2.73 3.04 1.44 4.15 0.25 1 50 1 1 1 1.56 15.63 -9.69 2.95 1.81 2.82 0.87 1 51 1 1 1 11.64 49.09 1.00 0.82 0.00 2.62 1.33 1 52 1 1 1 6.84 24.56 -5.79 0.98 2.03 1.05 0.69 1 53 1 1 1 6.43 117.08 2.67 2.44 0.34 1.31 0.75 1 54 1 1 1 16.81 343.83 -2.23 0.00 8.84 1.32 0.22 1 55 1 1 1 11.67 98.36 4.88 0.66 0.00 5.21 1.00 1 56 1 1 1 1.66 94.24 -19.79 0.40 1.04 2.31 0.56 1 57 1 1 1 5.39 158.70 -4.01 1.81 0.52 2.26 0.20 1 58 1 1 1 4.72 71.22 10.43 0.33 1.17 4.00 0.93 1 59 1 1 1 5.12 137.82 -5.11 1.10 0.92 1.38 0.48 1 60 1 1 1 8.82 73.01 2.73 0.97 0.25 7.44 0.88 1 61 1 1 1 1.71 15.47 9.12 0.00 0.50 6.39 1.14 1 62 1 1 1 7.73 49.93 -4.40 1.60 0.22 4.81 0.53 1 63 1 1 1 2.97 346.13 3.86 0.00 0.92 4.94 0.77 1 64 1 1 1 10.87 21.31 -1.96 0.00 1.15 9.24 0.43 1 65 1 1 1 4.53 53.62 4.73 1.38 0.00 8.34 0.56 1 66 1 1 1 3.19 342.39 -3.15 0.88 0.24 10.28 0.51 1 67 1 1 1 2.48 282.80 17.86 0.00 1.18 9.49 1.18 1 68 1 1 1 5.47 3.25 0.23 0.00 0.90 10.36 1.29 1 69 1 1 1 3.21 71.51 0.24 0.85 0.00 4.42 1.19 1 70 1 1 1 6.88 25.73 1.39 2.12 1.23 2.09 1.17 1 71 1 1 1 5.88 102.60 4.12 0.60 0.97 3.44 1.23 1 72 1 1 1 7.57 97.28 -5.44 1.44 1.07 11.06 0.19 1 73 1 1 1 5.64 86.58 15.15 0.00 2.62 4.98 1.34 1 74 1 1 1 2.17 129.36 8.68 2.07 4.24 12.05 1.55 1 75 1 1 1 4.57 25.38 14.39 0.00 0.80 8.30 1.10 1 76 1 1 1 8.47 58.79 19.30 0.40 0.86 1.18 1.27 1 77 1 1 1 5.73 102.57 0.98 0.42 2.02 2.09 0.34 1 78 1 1 1 5.19 82.18 24.31 0.00 1.83 0.42 0.45 1 79 1 1 1 1.27 100.93 2.43 0.00 0.00 0.00 0.00CaveConverter_src/test/data/regression/Sloppy2ZigZags_in.txt0000644000000000000000000007005213030252172023336 0ustar rootrootuzu110810sloppypt2 (m, 360) [1]: 2009/01/07 0.00 [2]: 2012/04/10 2.00 158.12 161.0 0.000 0.00 0.00 161.0 1.288 125.73 0.46 [1] 161.0 1.608 306.94 3.61 [1] 161.0 8.580 203.24 85.39 [1] 161.0 1.790 169.15 -88.07 [1] 161.0 2.530 190.96 4.20 [1] 161.0 2.307 237.87 9.54 [1] 161.0 2.833 253.54 9.73 [1] 161.0 2.159 277.70 11.01 [1] 161.0 1.314 43.80 6.31 [1] 161.0 161.1 8.842 224.91 74.30 [1] 161.0 161.1 8.842 224.85 74.25 [1] 161.0 161.1 8.837 225.09 74.32 [1] 161.1 0.773 135.02 -4.75 [1] 161.1 1.853 55.20 85.87 [1] 161.1 0.675 190.60 -87.21 [1] 161.1 161.2 1.295 177.75 16.22 [1] 161.1 161.2 1.291 177.72 16.10 [1] 161.1 161.2 1.291 177.82 16.10 [1] 161.2 0.722 31.98 -4.09 [1] 161.2 2.252 349.48 77.56 [1] 161.2 0.816 175.67 -88.21 [1] 161.2 161.3 9.445 62.83 8.43 [1] 161.2 161.3 9.453 62.80 8.48 [1] 161.2 161.3 9.462 62.77 8.44 [1] 161.3 0.757 207.08 2.14 [1] 161.3 4.881 114.75 84.07 [1] 161.3 1.066 299.88 -83.79 [1] 161.3 1.447 243.11 1.63 [1] 161.3 2.051 261.73 3.02 [1] 161.3 161.4 3.088 174.37 77.16 [1] 161.3 161.4 3.091 174.44 77.16 [1] 161.3 161.4 3.096 174.50 77.16 [1] 161.4 0.794 15.24 0.85 [1] 161.4 4.206 52.64 86.09 [1] 161.4 1.247 226.64 -88.43 [1] 161.4 161.5 3.047 80.68 -0.76 [1] 161.4 161.5 3.045 80.67 -0.79 [1] 161.4 161.5 3.041 80.74 -0.77 [1] 161.5 0.488 313.79 -1.74 [1] 161.5 4.398 124.69 83.71 [1] 161.5 0.974 67.93 -87.52 [1] 161.5 161.6 7.451 29.60 5.19 [1] 161.5 161.6 7.431 29.73 5.15 [1] 161.5 161.6 7.431 29.54 5.26 [1] 161.6 0.767 127.34 17.64 [1] 161.6 4.969 41.63 85.19 [1] 161.6 0.727 257.84 -82.51 [1] 161.6 161.7 5.860 34.90 1.18 [1] 161.6 161.7 5.857 35.16 1.02 [1] 161.6 161.7 5.847 35.10 1.08 [1] 161.7 0.576 282.01 8.71 [1] 161.7 8.620 351.28 81.03 [1] 161.7 0.551 153.97 -74.30 [1] 161.7 3.167 349.34 3.84 [1] 161.7 3.042 20.21 3.70 [1] 161.7 161.8 9.453 8.00 51.33 [1] 161.7 161.8 9.445 7.86 51.33 [1] 161.7 161.8 9.448 7.68 51.27 [1] 161.8 0.686 134.64 -0.49 [1] 161.8 4.513 93.69 78.99 [1] 161.8 1.882 52.36 -82.29 [1] 161.8 161.9 2.595 65.65 -6.32 [1] 161.8 161.9 2.594 65.79 -6.30 [1] 161.8 161.9 2.597 65.76 -6.27 [1] 161.9 0.619 298.10 5.15 [1] 161.9 4.364 19.40 82.85 [1] 161.9 1.078 191.79 -82.85 [1] 161.9 161.10 4.486 6.88 7.32 [1] 161.9 161.10 4.476 6.83 7.19 [1] 161.9 161.10 4.478 6.61 7.25 [1] 161.10 0.671 115.96 -1.72 [1] 161.10 4.298 115.63 80.16 [1] 161.10 0.741 273.75 -86.19 [1] 161.10 161.11 3.867 56.46 1.90 [1] 161.10 161.11 3.863 56.54 1.96 [1] 161.10 161.11 3.845 56.53 1.88 [1] 161.11 0.670 323.14 -8.75 [1] 161.11 4.241 25.54 78.35 [1] 161.11 0.558 60.57 -78.89 [1] 161.11 2.619 20.06 7.07 [1] 161.11 161.12 7.659 28.53 10.32 [1] 161.11 161.12 7.658 28.22 10.32 [1] 161.11 161.12 7.662 28.20 10.32 [1] 161.12 0.470 241.61 -4.41 [1] 161.12 3.688 68.94 85.50 [1] 161.12 0.816 238.09 -83.13 [1] 161.12 161.13 1.090 289.22 11.34 [1] 161.12 161.13 1.090 289.21 11.40 [1] 161.12 161.13 1.091 289.20 11.34 [1] 161.13 0.634 170.24 -3.66 [1] 161.13 3.367 228.42 84.55 [1] 161.13 0.971 278.10 -82.95 [1] 161.13 161.14 3.877 230.98 3.41 [1] 161.13 161.14 3.864 230.88 3.40 [1] 161.13 161.14 3.867 231.00 3.41 [1] 161.14 0.702 333.35 5.84 [1] 161.14 3.415 255.12 80.83 [1] 161.14 0.941 291.68 -80.13 [1] 161.14 161.15 4.603 249.76 2.42 [1] 161.14 161.15 4.603 249.79 2.53 [1] 161.14 161.15 4.604 249.88 2.52 [1] 161.15 0.755 354.29 2.52 [1] 161.15 3.435 282.49 80.49 [1] 161.15 0.844 294.69 -76.37 [1] 161.15 161.16 4.448 260.96 6.92 [1] 161.15 161.16 4.454 260.82 6.90 [1] 161.15 161.16 4.466 260.83 6.90 [1] 161.16 0.605 149.22 -7.74 [1] 161.16 2.276 213.07 85.82 [1] 161.16 0.939 293.42 -82.12 [1] 161.16 161.17 7.414 236.79 0.94 [1] 161.16 161.17 7.412 236.87 0.95 [1] 161.16 161.17 7.413 236.93 0.93 [1] 161.17 1.145 336.21 12.30 [1] 161.17 7.298 273.47 83.19 [1] 161.17 0.815 344.65 -74.47 [1] 161.17 161.18 1.792 282.61 9.16 [1] 161.17 161.18 1.789 282.91 9.27 [1] 161.17 161.18 1.787 282.88 9.28 [1] 161.18 1.401 148.94 -7.89 [1] 161.18 6.314 248.22 83.95 [1] 161.18 1.079 124.24 -85.92 [1] 161.18 161.19 14.746 240.77 9.51 [1] 161.18 161.19 14.739 240.74 9.54 [1] 161.18 161.19 14.758 240.77 9.63 [1] 161.19 0.593 2.64 1.55 [1] 161.19 1.246 157.25 -8.40 [1] 161.19 48.307 69.00 85.56 [1] 161.19 1.906 72.56 -82.37 [1] 161.19 4.574 16.43 28.14 [1] 161.19 7.144 49.84 15.92 [1] 161.19 7.110 72.91 15.16 [1] 161.4 165.1 0.000 0.00 0.00 [2] 165.1 0.571 195.52 4.07 [2] 165.1 0.494 9.16 1.22 [2] 165.1 3.841 348.92 79.39 [2] 165.1 1.625 119.01 -75.94 [2] 165.1 165.2 3.481 281.39 27.53 [2] 165.1 165.2 3.487 281.22 27.49 [2] 165.1 165.2 3.487 281.18 27.55 [2] 165.2 0.968 136.15 5.76 [2] 165.2 1.761 127.66 70.72 [2] 165.2 1.464 148.72 -73.46 [2] 165.2 165.3 2.129 190.96 1.71 [2] 165.2 165.3 2.136 191.00 1.17 [2] 165.2 165.3 2.138 191.11 1.38 [2] 165.3 0.520 307.04 3.20 [2] 165.3 1.696 163.78 88.49 [2] 165.3 1.486 307.66 -88.82 [2] 165.3 165.4 7.427 222.17 -1.27 [2] 165.3 165.4 7.429 222.20 -1.22 [2] 165.3 165.4 7.429 222.29 -1.14 [2] 165.4 0.421 135.38 -2.58 [2] 165.4 1.496 120.01 74.02 [2] 165.4 1.523 141.14 -83.93 [2] 165.4 165.5 2.229 224.30 -4.11 [2] 165.4 165.5 2.232 224.31 -4.20 [2] 165.4 165.5 2.232 224.24 -4.19 [2] 165.5 0.429 123.66 -2.22 [2] 165.5 1.489 167.01 79.72 [2] 165.5 1.391 129.13 -67.70 [2] 165.5 165.6 3.407 205.97 2.48 [2] 165.5 165.6 3.408 205.97 2.53 [2] 165.5 165.6 3.408 205.87 2.50 [2] 165.6 0.600 306.67 2.25 [2] 165.6 1.440 286.64 87.04 [2] 165.6 1.425 254.09 -86.11 [2] 165.6 165.7 3.125 212.11 -3.18 [2] 165.6 165.7 3.123 211.89 -3.15 [2] 165.6 165.7 3.124 212.29 -3.19 [2] 165.7 0.465 300.23 3.93 [2] 165.7 1.636 295.43 79.84 [2] 165.7 1.288 330.51 -77.32 [2] 165.7 165.8 3.006 223.51 -0.84 [2] 165.7 165.8 3.009 223.52 -0.83 [2] 165.7 165.8 3.007 223.47 -0.83 [2] 165.8 165.9 1.527 226.98 0.65 [2] 165.8 165.9 1.527 227.11 0.71 [2] 165.8 165.9 1.525 226.94 0.76 [2] 165.9 0.495 135.95 1.21 [2] 165.9 1.596 213.07 84.96 [2] 165.9 1.279 103.24 -86.61 [2] 165.9 165.10 4.129 230.73 -1.54 [2] 165.9 165.10 4.129 230.77 -1.50 [2] 165.9 165.10 4.127 230.71 -1.51 [2] 165.10 0.520 325.70 -0.62 [2] 165.10 1.626 297.20 82.81 [2] 165.10 1.230 73.64 -86.45 [2] 165.10 165.11 3.150 233.36 3.20 [2] 165.10 165.11 3.152 233.42 3.63 [2] 165.10 165.11 3.153 233.25 3.63 [2] 165.11 0.593 131.07 4.86 [2] 165.11 1.556 120.17 77.10 [2] 165.11 1.270 116.04 -80.16 [2] 165.11 165.12 7.287 213.32 -3.92 [2] 165.11 165.12 7.287 213.20 -3.92 [2] 165.11 165.12 7.285 213.24 -3.93 [2] 165.12 1.694 146.32 87.47 [2] 165.12 0.423 126.70 -0.32 [2] 165.12 1.279 252.88 -86.19 [2] 165.12 165.13 6.475 212.17 -46.93 [2] 165.12 165.13 6.484 212.36 -47.01 [2] 165.12 165.13 6.483 212.26 -46.99 [2] 165.13 4.120 42.62 77.87 [2] 165.13 1.061 314.62 6.76 [2] 165.13 0.202 124.55 9.65 [2] 165.13 1.604 286.44 -72.64 [2] 165.13 165.14 2.543 235.41 -15.58 [2] 165.13 165.14 2.543 235.64 -15.49 [2] 165.13 165.14 2.545 235.40 -15.74 [2] 165.14 0.631 107.29 -5.03 [2] 165.14 1.496 136.97 79.16 [2] 165.14 1.640 119.00 -83.97 [2] 165.14 165.15 1.922 201.91 -38.93 [2] 165.14 165.15 1.919 201.84 -38.84 [2] 165.14 165.15 1.920 202.91 -38.50 [2] 165.15 0.894 53.89 -6.97 [2] 165.15 2.581 44.23 83.91 [2] 165.15 1.544 98.15 -88.39 [2] 165.15 165.16 3.086 81.60 -16.59 [2] 165.15 165.16 3.079 81.67 -16.59 [2] 165.15 165.16 3.084 81.62 -16.61 [2] 165.16 0.438 352.06 0.95 [2] 165.16 1.294 359.99 78.22 [2] 165.16 1.026 228.83 -82.68 [2] 165.16 165.17 2.891 92.50 -62.03 [2] 165.16 165.17 2.891 92.73 -61.97 [2] 165.16 165.17 2.888 92.79 -62.07 [2] 165.17 0.754 321.88 -5.34 [2] 165.17 3.736 21.79 78.45 [2] 165.17 1.448 2.70 -78.49 [2] 165.17 165.18 4.259 53.40 -27.30 [2] 165.17 165.18 4.265 53.64 -27.54 [2] 165.17 165.18 4.269 53.70 -27.53 [2] 165.18 0.324 136.32 6.59 [2] 165.18 8.446 197.33 81.96 [2] 165.18 0.886 342.97 -73.79 [2] 165.18 165.19 4.318 46.41 -3.24 [2] 165.18 165.19 4.321 46.36 -3.24 [2] 165.18 165.19 4.318 46.54 -3.29 [2] 165.19 0.417 306.43 -0.14 [2] 165.19 1.112 259.87 88.38 [2] 165.19 0.187 125.54 0.08 [2] 165.19 0.578 205.77 -87.87 [2] 165.19 165.20 1.579 52.53 -1.32 [2] 165.19 165.20 1.579 52.84 -1.32 [2] 165.19 165.20 1.578 52.77 -1.33 [2] 165.20 0.454 166.31 -2.61 [2] 165.20 1.006 159.34 77.94 [2] 165.20 0.525 232.63 -86.75 [2] 165.20 0.938 312.95 2.07 [2] 165.20 2.520 351.69 -10.78 [2] 165.20 165.21 2.123 80.39 -1.16 [2] 165.20 165.21 2.132 80.02 -0.93 [2] 165.20 165.21 2.133 79.94 -0.76 [2] 165.21 0.410 332.70 -0.54 [2] 165.21 0.428 132.90 6.63 [2] 165.21 0.936 342.23 -80.06 [2] 165.21 165.22 1.406 48.93 -4.75 [2] 165.21 165.22 1.400 48.82 -4.55 [2] 165.21 165.22 1.402 48.97 -4.41 [2] 165.22 0.998 290.40 -3.78 [2] 165.22 0.371 99.12 -88.04 [2] 165.22 1.325 324.20 59.29 [2] 165.22 165.23 3.088 6.43 -5.04 [2] 165.22 165.23 3.085 6.49 -4.93 [2] 165.22 165.23 3.087 5.87 -4.69 [2] 165.23 0.426 256.35 2.38 [2] 165.23 1.002 238.69 83.28 [2] 165.23 0.219 190.83 -84.72 [2] 165.23 165.24 3.180 42.18 4.86 [2] 165.23 165.24 3.192 42.09 4.76 [2] 165.23 165.24 3.196 42.17 4.75 [2] 165.24 0.779 125.57 -5.13 [2] 165.24 0.802 142.71 55.91 [2] 165.24 0.485 280.12 -86.86 [2] 165.24 165.25 3.059 29.62 -4.14 [2] 165.24 165.25 3.043 29.67 -4.14 [2] 165.24 165.25 3.029 29.84 -4.28 [2] 165.25 0.344 112.86 -4.40 [2] 165.25 1.464 127.38 85.25 [2] 165.25 0.439 170.35 -87.52 [2] 165.25 165.26 5.159 27.66 -2.10 [2] 165.25 165.26 5.160 27.79 -2.05 [2] 165.25 165.26 5.160 27.66 -2.03 [2] 165.26 0.771 171.11 -0.62 [2] 165.26 1.707 170.49 74.14 [2] 165.26 0.779 178.54 -63.02 [2] 165.26 165.27 0.891 133.41 21.01 [2] 165.26 165.27 0.889 132.96 21.29 [2] 165.26 165.27 0.890 133.34 21.13 [2] 165.27 0.441 357.20 -2.32 [2] 165.27 1.196 355.05 86.80 [2] 165.27 0.997 115.85 -87.48 [2] 165.27 165.28 3.494 84.49 -0.37 [2] 165.27 165.28 3.493 84.49 -0.49 [2] 165.27 165.28 3.494 84.66 -0.60 [2] 165.28 0.370 344.06 -1.58 [2] 165.28 1.231 19.15 79.45 [2] 165.28 1.098 354.08 -82.52 [2] 165.28 165.29 4.488 57.42 0.17 [2] 165.28 165.29 4.490 57.39 0.21 [2] 165.28 165.29 4.490 57.43 0.18 [2] 165.29 0.541 322.47 -0.38 [2] 165.29 0.868 358.54 75.77 [2] 165.29 1.226 333.67 -79.23 [2] 165.29 165.30 4.197 52.63 -1.90 [2] 165.29 165.30 4.197 52.81 -1.97 [2] 165.29 165.30 4.195 52.70 -1.97 [2] 165.30 0.559 140.60 -1.62 [2] 165.30 1.112 146.54 80.67 [2] 165.30 1.189 240.45 -85.53 [2] 165.30 165.31 3.190 71.01 1.41 [2] 165.30 165.31 3.187 70.82 1.30 [2] 165.30 165.31 3.187 70.90 1.28 [2] 165.31 0.352 314.08 -0.84 [2] 165.31 0.997 0.39 80.18 [2] 165.31 1.465 312.34 -75.60 [2] 165.31 165.32 1.955 41.95 -0.80 [2] 165.31 165.32 1.955 41.95 -0.83 [2] 165.31 165.32 1.953 42.06 -0.90 [2] 165.32 0.388 186.52 -0.46 [2] 165.32 1.138 178.57 73.45 [2] 165.32 1.444 169.78 -83.20 [2] 165.32 165.33 1.183 108.77 -27.61 [2] 165.32 165.33 1.182 108.89 -27.76 [2] 165.32 165.33 1.182 108.67 -27.65 [2] 165.33 0.594 334.23 -1.87 [2] 165.33 0.242 158.16 0.40 [2] 165.33 0.822 320.62 -85.87 [2] 165.33 1.845 7.88 79.12 [2] 165.33 165.34 2.027 41.01 -1.29 [2] 165.33 165.34 2.028 40.95 -1.24 [2] 165.33 165.34 2.029 41.22 -1.36 [2] 165.34 0.534 325.09 5.51 [2] 165.34 1.803 189.89 84.38 [2] 165.34 0.815 37.21 -83.66 [2] 165.34 165.35 4.690 61.94 0.93 [2] 165.34 165.35 4.688 61.72 1.07 [2] 165.34 165.35 4.647 61.63 1.10 [2] 165.35 0.445 143.45 -4.62 [2] 165.35 1.376 128.03 79.97 [2] 165.35 0.980 108.51 -80.68 [2] 165.35 165.36 3.567 48.00 1.36 [2] 165.35 165.36 3.568 48.06 1.36 [2] 165.35 165.36 3.573 48.10 1.36 [2] 165.36 0.490 160.34 -9.61 [2] 165.36 0.761 117.65 78.72 [2] 165.36 1.261 168.57 -78.98 [2] 165.36 165.37 2.145 86.70 -1.39 [2] 165.36 165.37 2.118 86.93 -1.57 [2] 165.36 165.37 2.117 86.41 -1.30 [2] 165.37 0.509 323.59 5.31 [2] 165.37 0.835 327.69 77.28 [2] 165.37 1.067 336.30 -83.29 [2] 165.37 165.38 2.368 49.92 -8.75 [2] 165.37 165.38 2.368 49.92 -8.73 [2] 165.37 165.38 2.368 49.89 -8.72 [2] 165.38 0.476 142.08 14.04 [2] 165.38 1.350 145.26 78.67 [2] 165.38 0.804 318.62 -84.61 [2] 165.38 165.39 3.649 63.08 4.42 [2] 165.38 165.39 3.648 63.19 4.35 [2] 165.38 165.39 3.650 63.17 4.33 [2] 165.39 0.442 300.17 0.71 [2] 165.39 1.040 328.75 82.92 [2] 165.39 1.049 30.60 -77.32 [2] 165.39 165.40 2.660 25.53 -2.59 [2] 165.39 165.40 2.641 25.69 -2.57 [2] 165.39 165.40 2.639 25.54 -2.44 [2] 165.40 0.411 141.83 0.73 [2] 165.40 1.019 117.47 80.38 [2] 165.40 0.955 102.40 -69.23 [2] 165.40 165.41 7.849 65.65 1.88 [2] 165.40 165.41 7.847 65.56 1.84 [2] 165.40 165.41 7.845 65.53 1.84 [2] 165.41 0.826 225.24 7.58 [2] 165.41 0.874 171.67 86.94 [2] 165.41 1.534 219.66 -55.51 [2] 165.41 165.42 3.982 215.97 -4.62 [2] 165.41 165.42 3.983 215.76 -4.75 [2] 165.41 165.42 3.982 215.82 -4.76 [2] 165.42 0.483 316.97 -2.80 [2] 165.42 1.055 300.08 80.57 [2] 165.42 0.986 285.35 -78.94 [2] 165.42 165.43 2.216 233.48 0.55 [2] 165.42 165.43 2.215 233.81 0.53 [2] 165.42 165.43 2.214 233.82 0.57 [2] 165.43 0.486 125.18 -0.62 [2] 165.43 1.252 162.06 78.16 [2] 165.43 1.045 121.55 -82.42 [2] 165.43 165.44 4.040 203.86 -0.21 [2] 165.43 165.44 4.041 203.87 -0.27 [2] 165.43 165.44 4.039 203.85 -0.28 [2] 165.44 0.428 299.26 1.05 [2] 165.44 1.074 200.85 78.05 [2] 165.44 1.168 304.96 -85.05 [2] 165.44 165.45 5.659 233.81 0.62 [2] "Disto batteries changed and disto recalibrated before this leg." 165.44 165.45 5.651 233.76 0.62 [2] 165.44 165.45 5.656 233.73 0.51 [2] 165.45 0.463 114.52 -12.27 [2] 165.45 0.955 123.34 64.03 [2] 165.45 1.363 146.04 -73.97 [2] 165.45 165.46 2.155 186.82 -5.64 [2] 165.45 165.46 2.152 186.77 -5.80 [2] 165.45 165.46 2.155 186.77 -5.56 [2] 165.46 0.343 284.71 6.20 [2] 165.46 1.033 303.37 79.18 [2] 165.46 1.227 216.15 -83.25 [2] 165.46 165.47 2.686 210.05 -0.95 [2] 165.46 165.47 2.687 210.16 -1.01 [2] 165.46 165.47 2.687 210.02 -0.82 [2] 165.47 0.421 132.35 2.41 [2] 165.47 0.941 148.66 82.13 [2] 165.47 1.031 152.70 -87.23 [2] 165.47 165.48 1.426 230.00 -1.49 [2] 165.47 165.48 1.424 231.50 -1.33 [2] 165.47 165.48 1.424 230.20 -1.28 [2] 165.48 0.415 143.81 -1.72 [2] 165.48 1.208 164.82 72.39 [2] 165.48 1.169 178.23 -82.45 [2] 165.48 165.49 2.099 240.45 0.17 [2] 165.48 165.49 2.100 240.68 0.32 [2] 165.48 165.49 2.101 240.63 0.34 [2] 165.49 0.338 144.54 -2.81 [2] 165.49 1.067 140.06 72.28 [2] 165.49 1.137 148.33 -84.52 [2] 165.49 165.50 3.472 237.35 -2.93 [2] 165.49 165.50 3.471 237.42 -2.92 [2] 165.49 165.50 3.473 237.32 -3.07 [2] 165.50 0.387 342.06 4.00 [2] 165.50 1.001 213.59 85.36 [2] 165.50 1.123 355.33 -83.46 [2] 165.50 165.51 2.902 256.55 4.58 [2] 165.50 165.51 2.901 256.50 4.58 [2] 165.50 165.51 2.903 256.54 4.61 [2] 165.51 0.345 148.28 -8.51 [2] 165.51 0.885 141.02 77.66 [2] 165.51 1.431 132.19 -87.31 [2] 165.51 165.52 3.164 240.12 -3.09 [2] 165.51 165.52 3.167 240.09 -3.07 [2] 165.51 165.52 3.165 240.16 -3.06 [2] 165.52 0.419 319.87 -2.28 [2] 165.52 0.871 109.67 87.31 [2] 165.52 1.361 303.04 -83.50 [2] 165.52 165.53 2.599 232.29 -0.79 [2] 165.52 165.53 2.599 232.12 -0.80 [2] 165.52 165.53 2.599 232.14 -0.80 [2] 165.53 0.354 305.99 3.07 [2] 165.53 1.006 139.41 87.41 [2] 165.53 1.662 309.66 -77.10 [2] 165.53 165.54 4.538 221.11 -21.77 [2] 165.53 165.54 4.539 221.13 -21.78 [2] 165.53 165.54 4.540 221.11 -21.78 [2] 165.54 0.564 125.43 -3.35 [2] 165.54 2.112 135.69 69.41 [2] 165.54 1.128 232.20 -85.00 [2] 165.54 165.55 1.202 181.29 -8.15 [2] 165.54 165.55 1.203 181.14 -8.10 [2] 165.54 165.55 1.204 181.22 -8.10 [2] 165.55 0.622 284.76 -5.11 [2] 165.55 2.015 219.37 82.06 [2] 165.55 3.358 237.83 -84.61 [2] 165.55 165.56 1.948 153.95 -70.77 [2] 165.55 165.56 1.942 154.40 -70.67 [2] 165.55 165.56 1.943 154.12 -70.69 [2] 165.56 1.450 280.79 0.23 [2] 165.56 3.918 286.08 82.18 [2] 165.56 1.940 266.28 -63.29 [2] 165.56 165.57 5.593 228.31 -7.01 [2] 165.56 165.57 5.610 228.21 -6.94 [2] 165.56 165.57 5.607 228.22 -6.88 [2] 165.57 0.662 140.56 -17.36 [2] 165.57 0.657 148.24 53.81 [2] 165.57 1.176 95.03 -74.03 [2] 165.57 165.58 6.312 217.05 -41.17 [2] 165.57 165.58 6.316 217.04 -41.17 [2] 165.57 165.58 6.329 217.07 -41.13 [2] 165.58 1.042 141.20 -11.06 [2] 165.58 1.979 317.32 -13.13 [2] 165.58 2.963 289.31 83.86 [2] 165.58 0.375 164.39 -87.86 [2] 165.58 4.156 41.63 18.73 [2] CaveConverter_src/test/data/regression/2595_PrizeCock_in.svx0000644000000000000000000000105412560565204023053 0ustar rootroot*begin 2595_Prize_Cock_Pot ;surveyors: Dave Garman Paul Dold Chris Agnew Tony Radmall (Badger) ;name: Prize Cock Pot ;date 070405 *CALIBRATE declination 2.28 ;declination is 2 41' (2.68) for 2004 changing by 8'E per year. ; 2.55 used for 2005 ; 2.42 used for 2006 ; 2.28 used for 2007 ; 2.15 used for 2008 *FIX 1 452276 4800512 286 ;Altitude fixed using surface mesh *entrance 1 2 1 1.98 228 66; 1 0 1.7 3 2 7.5 - +V; .5 0 4 3 3.71 24 1; 1.2 1.2 4 3.9 4 5 3.9 - -V ;chamber dimensions ;4 backwall 1.66 *end 2595_Prize_Cock_Pot CaveConverter_src/test/data/regression/Sloppy2ZigZags_pt_ref.text0000644000000000000000000001560313030252172024355 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.uzu110810sloppypt2.161 1 -1 1 1 1 1 0 1 19 19 3 0 1 0 1 1 1 0.00 0.00 0.00 1.41 1.69 8.55 1.79 1 1 1 1 1 8.84 224.95 74.29 0.71 0.00 1.85 0.67 1 2 1 1 1 1.29 177.76 16.14 0.72 0.00 2.20 0.82 1 3 1 1 1 9.45 62.80 8.45 0.00 0.76 4.85 1.06 1 4 1 1 1 3.09 174.44 77.16 0.73 0.00 4.20 1.25 1 5 1 1 1 3.04 80.70 -0.77 0.48 0.00 4.37 0.97 1 6 1 1 1 7.44 29.62 5.20 0.00 0.73 4.95 0.72 1 7 1 1 1 5.85 35.05 1.09 1.68 0.00 8.51 0.53 1 8 1 1 1 9.45 7.85 51.31 0.00 0.68 4.43 1.86 1 9 1 1 1 2.60 65.73 -6.30 0.61 0.00 4.33 1.07 1 10 1 1 1 4.48 6.77 7.25 0.00 0.67 4.23 0.74 1 11 1 1 1 3.86 56.51 1.91 0.99 0.00 4.15 0.55 1 12 1 1 1 7.66 28.32 10.32 0.46 0.00 3.68 0.81 1 13 1 1 1 1.09 289.21 11.36 0.63 0.00 3.35 0.96 1 14 1 1 1 3.87 230.95 3.41 0.00 0.70 3.37 0.93 1 15 1 1 1 4.60 249.81 2.49 0.00 0.75 3.39 0.82 1 16 1 1 1 4.46 260.87 6.91 0.59 0.00 2.27 0.93 1 17 1 1 1 7.41 236.86 0.94 0.00 1.09 7.25 0.79 1 18 1 1 1 1.79 282.80 9.24 1.28 0.00 6.28 1.08 1 19 1 1 1 14.75 240.76 9.56 1.44 2.82 48.16 1.89 2 -2 1 1 1 Series 2-root.uzu110810sloppypt2.165 2 -1 1 1 1 1 4 2 57 57 3 0 2 0 1 1 1 0.00 0.00 0.00 0.57 0.49 3.78 1.58 2 1 1 1 1 3.48 279.26 27.52 0.95 0.00 1.66 1.40 2 2 1 1 1 2.13 189.02 1.42 0.00 0.51 1.70 1.49 2 3 1 1 1 7.43 220.22 -1.21 0.42 0.00 1.44 1.51 2 4 1 1 1 2.23 222.28 -4.17 0.53 0.00 1.47 1.29 2 5 1 1 1 3.41 203.94 2.50 0.00 0.59 1.44 1.42 2 6 1 1 1 3.12 210.10 -3.17 0.00 0.46 1.61 1.26 2 7 1 1 1 3.01 221.50 -0.83 0.00 0.00 0.00 0.00 2 8 1 1 1 1.53 225.01 0.71 0.49 0.00 1.59 1.28 2 9 1 1 1 4.13 228.74 -1.52 0.00 0.52 1.61 1.23 2 10 1 1 1 3.15 231.34 3.49 0.59 0.00 1.52 1.25 2 11 1 1 1 7.29 211.25 -3.92 0.42 0.00 1.69 1.28 2 12 1 1 1 6.48 210.26 -46.98 0.20 1.05 4.03 1.53 2 13 1 1 1 2.54 233.48 -15.60 0.58 0.00 1.47 1.63 2 14 1 1 1 1.92 200.22 -38.76 0.89 0.00 2.57 1.54 2 15 1 1 1 3.08 79.63 -16.60 0.44 0.00 1.27 1.02 2 16 1 1 1 2.89 90.67 -62.02 0.70 0.00 3.66 1.42 2 17 1 1 1 4.26 51.58 -27.46 0.00 0.32 8.36 0.85 2 18 1 1 1 4.32 44.44 -3.26 0.41 0.18 1.11 0.58 2 19 1 1 1 1.58 50.71 -1.32 2.39 0.45 0.98 0.52 2 20 1 1 1 2.13 78.12 -0.95 0.41 0.40 0.00 0.92 2 21 1 1 1 1.40 46.91 -4.57 0.99 0.00 1.14 0.37 2 22 1 1 1 3.09 4.26 -4.89 0.34 0.00 1.00 0.22 2 23 1 1 1 3.19 40.15 4.79 0.00 0.78 0.66 0.48 2 24 1 1 1 3.04 27.71 -4.19 0.00 0.34 1.46 0.44 2 25 1 1 1 5.16 25.70 -2.06 0.00 0.77 1.64 0.69 2 26 1 1 1 0.89 131.24 21.14 0.41 0.00 1.19 1.00 2 27 1 1 1 3.49 82.55 -0.49 0.37 0.00 1.21 1.09 2 28 1 1 1 4.49 55.41 0.19 0.54 0.00 0.84 1.20 2 29 1 1 1 4.20 50.71 -1.95 0.00 0.55 1.10 1.19 2 30 1 1 1 3.19 68.91 1.33 0.34 0.00 0.98 1.42 2 31 1 1 1 1.95 39.99 -0.84 0.00 0.36 1.09 1.43 2 32 1 1 1 1.18 106.78 -27.67 0.58 0.24 1.81 0.82 2 33 1 1 1 2.03 39.06 -1.30 0.53 0.00 1.79 0.81 2 34 1 1 1 4.67 59.76 1.03 0.00 0.44 1.35 0.97 2 35 1 1 1 3.57 46.05 1.36 0.00 0.48 0.75 1.24 2 36 1 1 1 2.13 84.68 -1.42 0.49 0.00 0.81 1.06 2 37 1 1 1 2.37 47.91 -8.73 0.00 0.46 1.32 0.80 2 38 1 1 1 3.65 61.15 4.37 0.43 0.00 1.03 1.02 2 39 1 1 1 2.65 23.59 -2.53 0.00 0.41 1.00 0.89 2 40 1 1 1 7.85 63.58 1.85 0.00 0.85 0.87 1.26 2 41 1 1 1 3.98 213.85 -4.71 0.00 0.48 1.04 0.97 2 42 1 1 1 2.21 231.70 0.55 0.49 0.00 1.23 1.04 2 43 1 1 1 4.04 201.86 -0.25 0.00 0.42 1.05 1.16 2 44 1 1 1 5.66 231.77 0.58 0.45 0.00 0.86 1.31 2 45 1 1 1 2.15 184.79 -5.67 0.00 0.34 1.01 1.22 2 46 1 1 1 2.69 208.08 -0.93 0.42 0.00 0.93 1.03 2 47 1 1 1 1.42 228.57 -1.37 0.41 0.00 1.15 1.16 2 48 1 1 1 2.10 238.59 0.28 0.34 0.00 1.02 1.13 2 49 1 1 1 3.47 235.36 -2.97 0.00 0.38 1.00 1.12 2 50 1 1 1 2.90 254.53 4.59 0.34 0.00 0.86 1.43 2 51 1 1 1 3.17 238.12 -3.07 0.00 0.42 0.87 1.35 2 52 1 1 1 2.60 230.18 -0.80 0.00 0.35 1.00 1.62 2 53 1 1 1 4.54 219.12 -21.78 0.68 0.00 1.98 1.12 2 54 1 1 1 1.20 179.22 -8.12 0.00 0.55 2.00 3.34 2 55 1 1 1 1.94 152.16 -70.71 0.00 1.45 3.88 1.73 2 56 1 1 1 5.60 226.25 -6.94 0.63 0.00 0.53 1.13 2 57 1 1 1 6.32 215.05 -41.16 0.99 1.90 2.95 0.37CaveConverter_src/test/data/regression/0106_Torcon_ss_ref.svx0000644000000000000000000000153512560565162023272 0ustar rootroot*BEGIN 0106_Torcon entr 0 20.00 220.00 -15.00 0 1 93.00 0.00 -90.00 1 2 5.00 224.03 1.00 1 3 13.70 44.03 1.00 3 4 5.00 270.00 -5.00 4 5 4.70 32.03 -1.00 5 6 2.50 62.03 -1.00 6 7 4.10 19.03 -1.00 7 8 2.30 36.03 -1.00 8 9 3.90 29.03 -1.00 9 10 4.20 42.03 -1.00 10 11 1.10 293.03 -1.00 11 12 3.20 54.03 -1.00 12 13 2.00 345.03 -1.00 13 14 4.10 65.03 -1.00 14 15 2.70 31.03 -1.00 15 16 1.50 80.03 -1.00 16 17 1.60 358.03 -1.00 17 18 2.90 37.03 -1.00 18 19 2.30 339.03 -1.00 19 20 4.70 59.03 -1.00 20 21 2.40 352.03 -1.00 21 22 2.70 64.03 -1.00 22 23 3.30 28.03 -1.00 23 24 8.00 34.03 -1.00 24 25 1.40 45.03 -1.00 25 26 9.80 23.03 -1.00 26 27 2.00 43.03 -1.00 27 28 2.80 47.03 -1.00 28 29 2.30 12.03 -1.00 29 30 6.00 16.03 -1.00 *END 0106_Torcon CaveConverter_src/test/data/regression/2595_PrizeCock_ss_ref.svx0000644000000000000000000000027312560565204023730 0ustar rootroot*BEGIN 2595_Prize_Cock_Pot *CALIBRATE declination 2.28 2 1 1.98 228.00 66.00 3 2 7.50 0.00 90.00 4 3 3.71 24.00 1.00 4 5 3.90 0.00 -90.00 *END 2595_Prize_Cock_Pot CaveConverter_src/test/data/regression/units_test_ss_ref.svx0000644000000000000000000000606013036507614023554 0ustar rootroot*BEGIN units *EQUATE tapefeet.5 lengthyards.5 *EQUATE lengthyards.10 compclinodeg.10 *EQUATE compgrads.15 compclinodeg.15 *EQUATE compgrads.20 clinpercentage.20 *EQUATE clinpercentage.25 compminclinperc.25 *EQUATE compdeg.30 compminclinperc.30 *EQUATE compdeg.35 clindeg.35 *EQUATE clindeg.40 compmilsclimmintapem.40 *EQUATE tapemetcompclindeg.45 compmilsclimmintapem.45 *EQUATE lenmcompclinmils.50 tapemetcompclindeg.50 *EQUATE lenmcompclinmils.55 lenybeardeggradgrads.55 *EQUATE lenmcompclindegs.60 lenybeardeggradgrads.60 *EQUATE lenmcompclindegs.65 tapeYcompDegGradMils.65 *BEGIN tapefeet 1 2 1.11 54.96 -0.43 2 3 1.68 118.65 3.60 3 4 1.50 124.12 0.26 4 5 2.26 75.30 -0.34 *END tapefeet *BEGIN lengthyards 5 6 6.51 126.62 -0.65 6 7 8.44 70.15 1.17 7 8 4.33 110.68 -2.15 8 9 3.40 161.27 -2.79 9 10 2.66 154.27 1.80 *END lengthyards *BEGIN compclinodeg 10 11 4.42 247.67 1.30 11 12 7.75 174.50 1.95 12 13 6.87 205.58 -1.32 13 14 2.80 93.80 1.73 14 15 4.88 189.66 -0.48 *END compclinodeg *BEGIN compgrads 15 16 8.98 139.90 -0.29 16 17 2.42 225.15 -3.33 16 18 7.14 202.68 -2.03 18 19 5.34 224.31 -6.95 19 20 6.80 206.56 -0.03 *END compgrads *BEGIN clinpercentage 20 21 8.87 323.99 26.59 21 22 6.17 262.88 13.37 22 23 8.38 77.91 2.35 23 24 5.17 129.84 20.02 24 25 4.71 106.94 2.58 *END clinpercentage *BEGIN compminclinperc 25 26 3.05 0.53 33.97 26 27 2.59 5.21 22.21 27 28 5.56 1.13 9.69 28 29 4.90 0.48 36.15 29 30 7.64 1.08 22.39 *END compminclinperc *BEGIN compdeg 30 31 5.73 357.61 5.39 31 32 6.85 321.98 -0.03 32 33 1.47 359.42 15.89 33 34 5.44 112.14 2.87 34 35 3.81 112.46 4.11 *END compdeg *BEGIN clindeg 35 36 0.82 116.06 36.00 35 37 4.26 170.83 28.04 37 38 1.96 213.05 33.22 38 39 0.61 281.22 51.89 39 40 16.80 242.61 10.51 *END clindeg *BEGIN compmilsclimmintapem 40 41 1.54 141.23 0.35 41 42 1.23 169.58 0.90 42 43 7.82 244.67 -0.18 43 44 1.58 122.25 -0.91 44 45 4.22 254.84 -0.06 *END compmilsclimmintapem *BEGIN tapemetcompclindeg 45 47 4.08 278.14 -22.89 47 48 1.62 127.59 7.41 48 49 2.40 265.00 1.41 49 50 2.06 297.62 28.08 *END tapemetcompclindeg *BEGIN lenmcompclinmils 50 51 2.38 285.52 15.07 51 52 2.80 301.51 -4.82 52 53 8.00 69.82 86.23 53 54 2.99 226.61 -10.03 54 55 2.75 258.92 -12.88 *END lenmcompclinmils *BEGIN lenybeardeggradgrads 55 56 6.04 280.29 -10.04 56 57 4.72 167.79 -62.83 57 58 6.26 266.27 3.58 58 59 5.34 221.34 -25.59 59 60 3.64 249.87 -16.44 *END lenybeardeggradgrads *BEGIN lenmcompclindegs 60 61 3.32 25.03 -14.33 61 62 5.70 255.27 -30.20 62 63 3.09 201.53 -10.26 63 64 4.55 164.72 -15.91 64 65 2.38 199.29 -26.79 *END lenmcompclindegs *BEGIN tapeYcompDegGradMils 65 66 5.75 239.56 -8.81 66 67 7.00 284.16 -6.43 67 68 2.36 224.20 -7.69 68 69 6.22 205.89 -5.86 69 70 1.91 108.56 -4.78 *END tapeYcompDegGradMils *END units CaveConverter_src/test/data/regression/Stomps_ref.svx0000644000000000000000000001603412114372110022120 0ustar rootroot*BEGIN Stomps2010 *EQUATE 155.1 156.1 *EQUATE 156.9 127.0 *BEGIN 156 *DATE 2010.08.11 *CALIBRATE declination 1.92 *EQUATE 28 32 *FLAGS SPLAY 1 1a 3.12 97.12 86.67 1 1b 0.74 77.17 -89.50 1 1c 1.68 37.77 8.97 1 1d 9.67 232.64 2.24 1 1e 15.03 226.71 -13.08 1 1f 6.82 210.56 28.68 *FLAGS NOT SPLAY 1 2 9.08 189.31 -7.43 2 3 18.55 116.98 -0.10 3 4 3.94 109.34 5.39 4 5 14.13 96.76 -0.61 *FLAGS SPLAY 5 5a 3.34 152.86 86.38 5 5b 1.68 93.35 -86.43 5 5c 0.89 21.68 11.66 5 5d 4.92 187.59 1.55 5 5e 10.70 195.39 -17.40 *FLAGS NOT SPLAY 5 6 14.76 107.42 10.11 6 7 9.56 79.43 -2.48 7 8 12.97 128.55 -9.80 *FLAGS SPLAY 8 8a 5.02 174.58 84.02 8 8b 4.13 271.01 46.40 8 8c 1.51 132.53 -81.84 8 8d 5.12 354.01 2.57 8 8e 5.91 181.07 -1.30 8 8f 13.39 235.87 7.15 *FLAGS NOT SPLAY 8 9 5.84 89.36 1.83 9 10 11.81 117.66 18.69 *FLAGS SPLAY 10 10a 2.39 262.28 85.82 10 10b 5.38 40.87 -12.73 10 10c 15.76 211.64 3.96 10 10d 8.08 203.51 -24.97 *FLAGS NOT SPLAY 10 11 17.53 168.45 -7.51 11 12 16.73 148.86 -11.30 12 13 15.14 118.78 -5.89 *FLAGS SPLAY 13 13a 6.90 69.83 84.81 13 13b 0.44 268.26 -88.34 13 13c 1.67 61.44 5.64 13 13d 3.61 348.94 1.85 13 13e 7.80 233.20 3.15 13 13f 6.12 304.49 0.88 13 13g 5.07 331.32 -2.18 *FLAGS NOT SPLAY 13 14 12.56 158.08 3.43 14 15 20.99 142.22 1.02 15 16 14.28 159.69 1.84 *FLAGS SPLAY 16 16a 6.76 212.56 82.75 16 16b 2.16 75.37 -85.02 16 16c 3.99 50.15 5.15 16 16d 7.35 53.81 -19.26 16 16e 6.30 223.94 0.27 *FLAGS NOT SPLAY 16 17 10.37 162.98 2.49 *FLAGS SPLAY 17 17a 7.08 117.31 85.78 17 17b 1.67 30.75 -87.87 17 17c 8.03 85.24 5.30 17 17d 11.57 65.79 -12.79 17 17e 4.58 268.81 4.80 *FLAGS NOT SPLAY 17 18 7.85 126.63 -11.48 *FLAGS SPLAY 18 18a 5.78 227.99 82.52 18 18b 1.20 269.82 -79.45 18 18c 9.04 57.55 -6.54 18 18d 9.67 145.31 -10.88 18 18e 8.33 104.33 -11.12 18 18f 12.85 221.83 12.63 18 18g 10.53 166.40 -10.22 *FLAGS NOT SPLAY 18 19 23.70 157.35 -4.37 *FLAGS SPLAY 19 19a 1.17 287.39 83.26 19 19b 9.34 73.19 10.78 19 19c 2.42 51.41 38.56 19 19d 11.84 245.81 12.69 *FLAGS NOT SPLAY 19 20 13.16 101.93 26.51 *FLAGS SPLAY 20 20a 1.90 168.29 81.35 20 20b 8.13 59.17 2.11 20 20c 12.67 132.37 13.97 20 20d 3.99 319.43 -1.32 20 20e 19.28 269.18 2.35 20 20f 21.11 255.42 1.62 20 20g 9.96 233.12 -18.11 *FLAGS NOT SPLAY 20 21 14.46 145.32 8.27 *FLAGS SPLAY 21 21a 1.58 137.96 69.16 21 21b 0.84 62.80 -88.10 21 21c 14.26 78.44 8.06 21 21d 21.27 136.38 4.37 21 21e 18.97 113.75 8.27 21 21f 9.40 19.51 12.23 21 21g 3.68 250.66 -18.99 21 21h 7.18 227.58 -16.64 21 21i 12.39 206.43 -26.43 21 21j 16.36 186.99 -21.04 21 21k 17.98 167.17 -10.43 *FLAGS NOT SPLAY 21 22 11.00 140.41 13.34 *FLAGS SPLAY 22 22a 18.00 237.95 -37.04 22 22b 13.79 35.24 -1.65 22 22c 12.64 198.26 -39.64 22 22d 15.78 148.75 -25.36 22 22e 16.36 126.26 -16.70 22 22f 11.77 93.31 -5.76 22 22g 13.48 67.73 -1.47 *FLAGS NOT SPLAY 22 23 19.39 47.07 -3.39 *FLAGS SPLAY 23 23a 7.24 83.01 -21.44 23 23b 10.48 171.25 -0.49 23 23c 7.11 147.60 -3.96 23 23d 8.47 183.50 1.18 *FLAGS NOT SPLAY 23 24 12.26 182.57 0.88 24 25 9.37 136.99 -31.89 25 26 16.12 66.28 8.82 26 27 20.53 208.25 -0.25 27 28 23.08 217.47 -11.66 *FLAGS SPLAY 28 28a 8.32 349.65 84.55 28 28b 28.39 23.01 54.31 28 28c 13.96 7.70 59.65 28 28d 6.22 310.56 2.64 28 28e 2.88 128.79 -0.08 28 28f 12.78 4.70 10.78 28 28g 8.89 49.16 13.35 *FLAGS NOT SPLAY 28 29 9.44 337.56 -7.14 29 30 11.12 26.64 -1.45 *FLAGS SPLAY 30 30a 4.37 251.83 1.05 30 30b 8.10 252.77 -8.28 30 30c 13.30 274.36 -5.31 30 30d 6.48 357.65 15.32 30 30e 5.94 168.28 4.29 30 30f 3.36 125.62 9.29 30 30g 11.33 60.91 17.00 *FLAGS NOT SPLAY 30 31 7.38 59.13 18.23 31 25 7.67 9.40 10.35 32 33 26.57 219.45 -1.21 *FLAGS SPLAY 33 33a 5.20 170.50 89.34 33 33b 3.24 328.02 -70.36 33 33c 3.36 124.91 2.33 33 33d 2.53 307.33 4.40 33 33e 6.56 290.15 -24.69 *FLAGS NOT SPLAY 33 34 30.49 226.77 -3.52 *FLAGS SPLAY 34 34a 9.61 62.57 84.14 34 34b 1.35 158.37 -84.56 34 34c 8.40 95.41 4.69 34 34d 5.86 236.75 -3.69 34 34e 4.04 262.63 -3.89 *FLAGS NOT SPLAY 34 35 24.02 125.74 -0.07 35 36 4.42 104.65 6.02 *FLAGS SPLAY 36 36a 5.82 217.21 86.87 36 36b 1.89 140.80 -83.24 36 36c 2.49 21.29 -22.90 36 36d 2.24 260.57 -1.29 36 36e 9.41 213.65 -13.20 *FLAGS NOT SPLAY 36 37 10.68 164.02 12.16 *FLAGS SPLAY 37 37a 6.08 146.27 82.26 37 37b 3.80 53.48 -4.48 37 37c 8.28 10.38 -30.58 37 37d 6.19 229.59 9.87 *FLAGS NOT SPLAY 37 38 12.55 153.02 -2.14 38 39 26.21 114.84 -7.27 *FLAGS SPLAY 39 39a 13.28 207.48 46.99 39 39b 3.40 52.39 6.37 39 39c 20.50 219.16 10.44 39 39d 9.50 182.35 -22.41 *FLAGS NOT SPLAY 39 40 26.69 165.92 -1.74 40 41 29.35 157.64 4.26 *FLAGS SPLAY 41 41a 7.88 18.58 78.68 41 41b 12.75 22.64 8.50 41 41c 22.88 13.29 8.03 41 41d 12.85 343.23 -24.55 41 41e 10.62 252.68 11.74 *FLAGS NOT SPLAY 41 42 25.13 123.62 -2.35 *FLAGS SPLAY 42 42a 10.42 232.44 63.69 42 42b 4.46 66.37 20.49 42 42c 21.37 242.80 10.60 42 42d 7.43 221.79 -41.05 42 42e 13.88 308.37 1.63 *FLAGS NOT SPLAY 42 43 24.15 168.91 -8.72 43 44 13.32 168.35 10.48 *FLAGS SPLAY 44 44a 10.21 26.26 77.78 44 44b 4.83 75.77 6.03 44 44c 18.29 275.87 11.43 44 44d 7.37 297.13 -41.78 44 44e 6.22 274.92 -17.88 *FLAGS NOT SPLAY 44 45 28.90 189.31 16.45 45 46 22.48 194.04 5.14 *FLAGS SPLAY 46 46a 1.68 238.04 77.50 46 46b 14.53 63.91 5.51 46 46c 12.99 117.87 8.99 46 46d 6.66 255.94 -22.06 *FLAGS NOT SPLAY *data passage station left right up down 1 1.685 9.668 3.115 0.745 2 8.061 7.472 4.407 1.255 3 2.098 8.884 3.688 1.646 4 1.715 5.781 3.62 1.77 5 0.893 10.695 3.344 1.684 6 2.772 6.301 1.207 2.024 7 0.0 12.221 1.677 1.712 8 5.115 5.906 5.017 1.511 9 4.619 14.511 4.472 0.0 10 5.381 15.757 2.391 0.0 11 11.161 5.811 4.416 2.043 12 10.776 2.977 5.149 2.27 13 1.673 7.796 6.896 0.445 14 3.844 3.119 5.528 1.627 15 3.368 6.875 7.308 1.806 16 7.348 6.304 6.757 2.158 17 11.569 4.577 7.078 1.673 18 9.038 12.852 5.779 1.204 19 2.42 11.843 1.166 0.0 20 8.13 9.955 1.902 0.0 21 14.256 7.179 1.58 0.839 22 13.786 16.363 0.0 0.0 23 7.241 8.473 0.0 0.0 24 1.92 0.0 1.151 0.925 25 2.938 1.155 3.686 0.328 26 0.0 4.087 1.485 0.596 27 0.0 1.974 3.695 1.849 28 6.224 8.894 8.322 0.0 29 2.879 10.427 0.851 1.758 30 6.484 5.945 0.0 0.0 31 6.381 3.277 1.653 0.814 32 2.868 6.256 7.767 1.774 33 3.357 2.532 5.201 3.235 34 8.402 5.858 9.614 1.348 35 2.683 2.813 0.727 1.575 36 2.493 2.244 5.819 1.892 37 3.803 6.189 6.078 0.0 38 2.415 10.27 6.308 5.415 39 3.396 20.495 13.281 0.0 40 8.666 15.33 10.782 2.294 41 12.751 10.618 7.88 0.0 42 4.459 21.374 10.424 0.0 43 10.067 14.396 12.51 2.0 44 4.831 18.29 10.208 0.0 45 10.63 9.581 3.411 4.305 46 12.99 6.659 1.685 0.0 *END 156 *END Stomps2010 CaveConverter_src/test/data/regression/GourAven_in.txt0000644000000000000000000003202613030252172022214 0ustar rootrootGourAven2010 (m, 360) [1]: 2010/08/09 1.92 153.58 154.0 0.000 0.00 0.00 [1] 154.0 154.1 2.241 139.84 28.25 [1] 154.0 154.1 2.243 140.02 28.37 [1] 154.0 154.1 2.243 139.99 28.33 [1] 154.1 154.2 5.911 71.00 27.67 [1] 154.1 154.2 5.911 70.74 27.67 [1] 154.1 154.2 5.911 70.85 27.69 [1] 154.2 1.168 8.87 6.87 [1] 154.2 1.113 175.45 -0.10 [1] 154.2 5.951 98.10 6.04 [1] 154.2 5.008 277.41 17.22 [1] 154.2 1.035 47.72 83.13 [1] 154.2 1.094 153.35 -85.85 [1] 154.2 154.3 5.082 327.58 56.79 [1] 154.2 154.3 5.086 327.41 56.75 [1] 154.2 154.3 5.084 327.41 56.75 [1] 154.3 1.825 181.36 -15.46 [1] 154.3 1.334 327.55 17.32 [1] 154.3 1.039 351.41 82.16 [1] 154.3 3.638 226.41 -81.95 [1] 154.3 154.4 4.911 69.77 23.92 [1] 154.3 154.4 4.911 69.80 23.86 [1] 154.3 154.4 4.926 69.93 23.79 [1] 154.4 0.954 165.48 0.82 [1] 154.4 3.803 331.85 24.88 [1] 154.4 2.960 27.78 70.94 [1] 154.4 1.755 85.45 -85.86 [1] 154.4 13.104 71.82 16.81 [1] 154.4 7.755 33.32 29.66 [1] 154.4 5.735 289.73 15.19 [1] 154.4 5.017 257.83 -9.98 [1] 154.4 2.805 233.18 -16.44 [1] 154.4 154.5 1.996 337.60 33.03 [1] 154.4 154.5 1.996 337.69 33.12 [1] 154.4 154.5 1.997 337.46 33.11 [1] 154.5 1.670 169.43 -3.02 [1] 154.5 1.996 339.94 5.13 [1] 154.5 1.854 274.03 82.17 [1] 154.5 0.754 63.40 -83.13 [1] 154.5 154.6 11.329 256.77 -5.07 [1] 154.5 154.6 11.329 256.87 -4.98 [1] 154.5 154.6 11.329 256.88 -5.02 [1] 154.6 1.214 159.96 0.46 [1] 154.6 3.669 337.52 19.11 [1] 154.6 0.922 247.84 78.92 [1] 154.6 1.131 41.95 -84.98 [1] 154.6 154.7 4.828 315.30 34.34 [1] 154.6 154.7 4.828 315.54 34.36 [1] 154.6 154.7 4.828 315.38 34.37 [1] 154.7 2.040 300.83 20.04 [1] 154.7 3.282 141.10 -6.14 [1] 154.7 5.227 73.82 81.18 [1] 154.7 1.337 110.40 -86.27 [1] 154.7 4.046 103.53 3.40 [1] 154.7 4.140 69.26 18.44 [1] 154.7 4.706 21.66 32.61 [1] 154.7 3.117 254.93 11.55 [1] 154.7 7.307 221.39 2.77 [1] 154.7 7.078 196.12 -0.28 [1] 154.7 154.8 10.949 55.60 35.29 [1] 154.7 154.8 10.955 55.76 35.30 [1] 154.7 154.8 10.960 55.76 35.37 [1] 154.8 2.211 141.89 4.58 [1] 154.8 3.299 91.35 82.63 [1] 154.8 1.359 275.45 -87.94 [1] 154.8 154.9 9.780 65.87 3.29 [1] 154.8 154.9 9.776 65.81 3.28 [1] 154.8 154.9 9.774 65.85 3.24 [1] 154.9 1.711 329.31 8.11 [1] 154.9 0.795 142.99 2.96 [1] 154.9 1.702 334.25 82.05 [1] 154.9 0.611 34.54 -85.87 [1] 154.9 3.983 233.45 -1.12 [1] 154.9 154.10 4.019 65.15 22.02 [1] 154.9 154.10 4.020 65.03 22.06 [1] 154.9 154.10 4.020 64.92 22.13 [1] 154.10 0.323 331.55 9.28 [1] 154.10 0.250 189.16 11.19 [1] 154.10 0.532 224.81 78.61 [1] 154.10 0.365 85.36 -83.64 [1] 154.10 154.11 2.664 124.88 6.25 [1] 154.10 154.11 2.659 124.74 6.23 [1] 154.10 154.11 2.660 124.70 6.20 [1] 154.11 1.635 326.77 17.05 [1] 154.11 0.422 169.26 -0.39 [1] 154.11 0.981 164.51 86.78 [1] 154.11 0.261 25.57 -86.76 [1] 154.11 6.436 244.26 -33.76 [1] 154.11 154.12 4.676 28.05 41.17 [1] 154.11 154.12 4.684 28.16 41.13 [1] 154.11 154.12 4.685 28.49 41.17 [1] 154.12 0.488 163.24 -3.84 [1] 154.12 2.054 326.35 6.05 [1] 154.12 6.639 296.93 79.59 [1] 154.12 3.007 156.92 -82.68 [1] 154.12 3.452 44.58 36.15 [1] 154.12 7.313 45.38 40.15 [1] 154.12 7.437 59.56 40.31 [1] 154.12 5.499 20.21 43.16 [1] 154.12 2.856 2.96 33.73 [1] 154.12 2.892 291.62 14.24 [1] 154.12 2.349 256.10 14.98 [1] 154.12 12.698 20.35 69.18 [1] 154.12 154.13 4.741 257.83 20.69 [1] 154.12 154.13 4.732 257.83 20.73 [1] 154.12 154.13 4.739 257.83 20.68 [1] 154.13 0.326 143.07 -2.33 [1] 154.13 0.613 117.22 76.36 [1] 154.13 0.841 289.69 -81.40 [1] 154.13 154.14 3.646 238.11 -5.08 [1] 154.13 154.14 3.645 238.15 -5.03 [1] 154.13 154.14 3.647 238.15 -5.07 [1] 154.14 0.398 134.05 0.55 [1] 154.14 0.451 325.26 7.61 [1] 154.14 8.219 65.42 88.46 [1] 154.14 0.277 75.71 -85.74 [1] 154.14 154.15 1.183 304.19 22.56 [1] 154.14 154.15 1.184 304.15 22.51 [1] 154.14 154.15 1.184 304.10 22.54 [1] 154.15 0.293 177.36 -2.22 [1] 154.15 4.625 186.26 82.17 [1] 154.15 0.801 117.91 -84.94 [1] 154.15 154.16 3.004 254.39 20.66 [1] 154.15 154.16 3.009 254.36 20.55 [1] 154.15 154.16 3.009 254.20 20.48 [1] 154.16 0.306 186.04 14.63 [1] 154.16 0.354 13.09 -6.44 [1] 154.16 0.759 28.25 88.09 [1] 154.16 0.942 254.97 -82.68 [1] 154.16 154.17 2.799 262.32 32.14 [1] 154.16 154.17 2.801 262.28 32.09 [1] 154.16 154.17 2.798 262.23 32.07 [1] 154.17 1.871 272.52 88.42 [1] 154.17 1.015 46.41 -85.96 [1] 154.17 0.820 86.30 -3.90 [1] 154.17 154.18 2.505 130.44 27.50 [1] 154.17 154.18 2.506 130.46 27.58 [1] 154.17 154.18 2.506 130.49 27.59 [1] 154.18 1.108 346.65 2.19 [1] 154.18 0.508 253.02 6.82 [1] 154.18 1.912 43.25 -1.46 [1] 154.18 1.806 40.33 85.61 [1] 154.18 0.479 47.06 -88.61 [1] 154.18 154.19 1.599 82.86 -6.48 [1] 154.18 154.19 1.598 82.85 -6.44 [1] 154.18 154.19 1.599 82.79 -6.41 [1] 154.19 0.645 247.70 3.08 [1] 154.19 1.366 325.71 78.59 [1] 154.19 0.481 21.99 -87.43 [1] 154.19 154.20 2.616 206.21 -3.63 [1] 154.19 154.20 2.615 206.09 -3.57 [1] 154.19 154.20 2.616 206.10 -3.51 [1] 154.20 0.709 324.21 6.09 [1] 154.20 3.671 28.83 83.37 [1] 154.20 0.472 22.70 -85.65 [1] 154.20 154.21 2.743 273.17 46.72 [1] 154.20 154.21 2.740 273.15 46.90 [1] 154.20 154.21 2.739 273.19 46.83 [1] 154.21 0.766 150.79 -11.23 [1] 154.21 3.231 324.73 31.68 [1] 154.21 1.447 67.41 10.21 [1] 154.21 9.983 19.22 82.51 [1] 154.21 154.22 5.183 26.76 41.33 [1] 154.21 154.22 5.179 26.81 41.35 [1] 154.21 154.22 5.180 26.77 41.29 [1] 154.22 1.733 308.53 4.45 [1] 154.22 2.167 133.73 2.41 [1] 154.22 11.689 263.63 88.10 [1] 154.22 0.845 270.34 -88.39 [1] 154.22 8.279 215.65 -4.87 [1] 154.22 8.345 236.94 -5.86 [1] 154.22 16.081 233.79 -2.48 [1] 154.22 5.264 1.49 37.58 [1] 154.22 5.752 61.72 37.02 [1] 154.22 6.381 77.99 35.97 [1] 154.22 154.23 6.090 69.38 35.14 [1] 154.22 154.23 6.087 69.41 35.07 [1] 154.22 154.23 6.088 69.51 35.04 [1] 154.23 0.593 337.77 0.96 [1] 154.23 0.895 158.22 11.19 [1] 154.23 1.967 131.11 80.39 [1] 154.23 1.371 52.83 -84.85 [1] 154.23 154.24 2.803 330.54 -45.59 [1] 154.23 154.24 2.803 330.33 -45.47 [1] 154.23 154.24 2.804 330.29 -45.41 [1] 154.24 0.855 96.82 1.32 [1] 154.24 0.838 81.63 84.42 [1] 154.24 0.808 97.55 -86.69 [1] 154.24 154.25 3.965 24.86 -39.94 [1] 154.24 154.25 3.947 24.80 -39.93 [1] 154.24 154.25 3.954 24.26 -39.55 [1] 154.25 0.951 319.89 3.51 [1] 154.25 0.666 156.49 -5.81 [1] 154.25 0.693 60.41 -86.00 [1] 154.25 154.26 2.563 117.61 -45.70 [1] 154.25 154.26 2.561 117.77 -45.75 [1] 154.25 154.26 2.558 117.77 -45.69 [1] 154.26 1.178 13.93 -5.75 [1] 154.26 1.029 32.39 84.20 [1] 154.26 0.405 312.35 -76.72 [1] 154.26 154.27 2.203 86.00 -7.92 [1] 154.26 154.27 2.203 85.96 -7.95 [1] 154.26 154.27 2.204 85.86 -7.84 [1] 154.27 0.976 329.16 1.13 [1] 154.27 0.384 237.47 -79.56 [1] 154.27 0.269 125.51 -0.87 [1] 154.27 154.28 1.360 72.44 62.52 [1] 154.27 154.28 1.359 72.33 62.62 [1] 154.27 154.28 1.360 72.22 62.55 [1] 154.28 1.453 186.85 -3.82 [1] 154.28 0.320 24.31 -0.28 [1] 154.28 0.591 261.97 -84.55 [1] 154.28 154.29 1.405 121.83 -18.92 [1] 154.28 154.29 1.389 122.13 -18.81 [1] 154.28 154.29 1.387 121.92 -18.80 [1] 154.29 0.898 115.27 -1.66 [1] 154.29 1.599 299.34 0.63 [1] 154.29 1.871 125.54 73.79 [1] 154.29 6.929 84.61 -64.07 [1] 154.29 154.30 0.858 110.18 6.30 [1] 154.29 154.30 0.860 110.37 6.41 [1] 154.29 154.30 0.860 110.40 6.34 [1] 154.30 154.31 8.547 169.23 -79.60 [1] 154.30 154.31 8.511 168.81 -79.71 [1] 154.30 154.31 8.502 168.00 -79.83 [1] CaveConverter_src/test/data/regression/0935_Dormouse_ref.svx0000644000000000000000000000037212114041276023114 0ustar rootroot*BEGIN 0935_Dormouse *CALIBRATE declination 2.42 1 2 6.29 78.00 4.00 3 2 1.82 324.00 24.00 3 4 2.74 27.00 -41.00 5 4 1.79 176.00 5.00 5 6 2.89 66.00 -38.00 7 6 2.02 219.00 -5.00 7 8 3.60 35.00 0.00 *END 0935_Dormouse CaveConverter_src/test/data/regression/GourAven_ref.svx0000644000000000000000000000741712114372110022366 0ustar rootroot*BEGIN GourAven2010 *EQUATE 153.58 154.0 *BEGIN 154 *DATE 2010.08.09 *CALIBRATE declination 1.92 0 1 2.24 139.95 28.32 1 2 5.91 70.86 27.68 *FLAGS SPLAY 2 2a 1.04 47.72 83.13 2 2b 1.09 153.35 -85.85 2 2c 1.11 175.45 -0.10 2 2d 5.01 277.41 17.22 2 2e 1.17 8.87 6.87 2 2f 5.95 98.10 6.04 *FLAGS NOT SPLAY 2 3 5.08 327.47 56.76 3 4 4.92 69.83 23.86 *FLAGS SPLAY 4 4a 2.96 27.78 70.94 4 4b 1.76 85.45 -85.86 4 4c 0.95 165.48 0.82 4 4d 3.80 331.85 24.88 4 4e 5.74 289.73 15.19 4 4f 5.02 257.83 -9.98 4 4g 2.80 233.18 -16.44 4 4h 13.10 71.82 16.81 4 4i 7.76 33.32 29.66 *FLAGS NOT SPLAY 4 5 2.00 337.58 33.09 5 6 11.33 256.84 -5.02 6 7 4.83 315.41 34.36 *FLAGS SPLAY 7 7a 5.23 73.82 81.18 7 7b 1.34 110.40 -86.27 7 7c 2.04 300.83 20.04 7 7d 4.71 21.66 32.61 7 7e 3.12 254.93 11.55 7 7f 3.28 141.10 -6.14 7 7g 4.05 103.53 3.40 7 7h 4.14 69.26 18.44 7 7i 7.31 221.39 2.77 7 7j 7.08 196.12 -0.28 *FLAGS NOT SPLAY 7 8 10.95 55.71 35.32 8 9 9.78 65.84 3.27 *FLAGS SPLAY 9 9a 1.70 334.25 82.05 9 9b 0.61 34.54 -85.87 9 9c 1.71 329.31 8.11 9 9d 0.80 142.99 2.96 9 9e 3.98 233.45 -1.12 *FLAGS NOT SPLAY 9 10 4.02 65.03 22.07 10 11 2.66 124.77 6.23 *FLAGS SPLAY 11 11a 0.98 164.51 86.78 11 11b 0.26 25.57 -86.76 11 11c 1.64 326.77 17.05 11 11d 6.44 244.26 -33.76 11 11e 0.42 169.26 -0.39 *FLAGS NOT SPLAY 11 12 4.68 28.23 41.16 *FLAGS SPLAY 12 12a 6.64 296.93 79.59 12 12b 12.70 20.35 69.18 12 12c 3.01 156.92 -82.68 12 12d 0.49 163.24 -3.84 12 12e 2.35 256.10 14.98 12 12f 2.05 326.35 6.05 12 12g 3.45 44.58 36.15 12 12h 7.31 45.38 40.15 12 12i 7.44 59.56 40.31 12 12j 5.50 20.21 43.16 12 12k 2.86 2.96 33.73 12 12l 2.89 291.62 14.24 *FLAGS NOT SPLAY 12 13 4.74 257.83 20.70 13 14 3.65 238.14 -5.06 14 15 1.18 304.15 22.54 15 16 3.01 254.32 20.56 16 17 2.80 262.28 32.10 17 18 2.51 130.46 27.56 *FLAGS SPLAY 18 18a 1.81 40.33 85.61 18 18b 0.48 47.06 -88.61 18 18c 1.11 346.65 2.19 18 18d 1.91 43.25 -1.46 18 18e 0.51 253.02 6.82 *FLAGS NOT SPLAY 18 19 1.60 82.83 -6.44 19 20 2.62 206.13 -3.57 20 21 2.74 273.17 46.82 *FLAGS SPLAY 21 21a 9.98 19.22 82.51 21 21b 3.23 324.73 31.68 21 21c 0.77 150.79 -11.23 21 21d 1.45 67.41 10.21 *FLAGS NOT SPLAY 21 22 5.18 26.78 41.32 *FLAGS SPLAY 22 22a 11.69 263.63 88.10 22 22b 0.84 270.34 -88.39 22 22c 1.73 308.53 4.45 22 22d 5.26 1.49 37.58 22 22e 5.75 61.72 37.02 22 22f 2.17 133.73 2.41 22 22g 8.28 215.65 -4.87 22 22h 8.34 236.94 -5.86 22 22i 16.08 233.79 -2.48 22 22j 6.38 77.99 35.97 *FLAGS NOT SPLAY 22 23 6.09 69.43 35.08 23 24 2.80 330.39 -45.49 24 25 3.96 24.64 -39.81 25 26 2.56 117.72 -45.71 26 27 2.20 85.94 -7.90 27 28 1.36 72.33 62.56 28 29 1.39 121.96 -18.84 29 30 0.86 110.32 6.35 30 31 8.52 168.68 -79.71 *data passage station left right up down 2 5.008 5.951 1.035 1.094 3 1.334 1.825 1.039 3.638 4 5.017 13.104 2.96 1.755 5 1.67 1.996 1.854 0.754 6 1.214 3.669 0.922 1.131 7 2.04 3.282 5.227 1.337 8 0.0 2.211 3.299 1.359 9 1.711 0.795 1.702 0.611 10 0.323 0.25 0.532 0.365 11 1.635 0.422 0.981 0.261 12 0.488 2.856 6.639 3.007 13 0.326 0.0 0.613 0.841 14 0.398 0.451 8.219 0.277 15 0.293 0.0 4.625 0.801 16 0.306 0.354 0.759 0.942 17 0.82 0.0 1.871 1.015 18 1.108 0.508 1.806 0.479 19 0.0 0.645 1.366 0.481 20 0.0 0.709 3.671 0.472 21 3.231 0.766 9.983 0.0 22 5.264 2.167 11.689 0.845 23 0.895 0.593 1.967 1.371 24 0.0 0.855 0.838 0.808 25 0.951 0.666 0.0 0.693 26 1.178 0.0 1.029 0.405 27 0.976 0.269 0.0 0.384 28 0.32 1.453 0.0 0.591 29 1.599 0.898 1.871 6.929 *END 154 *END GourAven2010 CaveConverter_src/test/data/regression/NightMare_ss_ref.svx0000644000000000000000000000322513030271632023221 0ustar rootroot*BEGIN NightMare *DATE 2007.07.01 *CALIBRATE declination 2.28 *EQUATE 25 Mares090408a.0 *EQUATE 7 2007a.7 *EQUATE Mares090408a.4 Mares090408b.4 1 2 1.72 145.00 -47.00 2 3 2.90 353.00 -49.00 3 4 4.22 0.00 -90.00 4 5 4.95 103.00 11.00 5 6 2.17 72.00 40.00 6 7 2.51 100.00 -35.00 7 9 2.98 68.00 19.00 9 10 3.00 110.00 -2.00 10 11 2.58 98.00 -11.00 11 12 4.80 0.00 -90.00 11 13 4.40 48.00 -11.00 13 14 2.30 20.00 -43.00 14 15 7.35 50.00 -4.00 15 16 7.35 35.00 -5.00 16 17 4.10 25.00 14.00 17 18 5.90 73.00 -5.00 18 19 7.40 32.00 -3.00 19 20 5.63 49.00 -3.00 20 21 3.91 110.00 -4.00 21 22 4.02 85.00 2.00 22 23 3.00 38.00 -3.00 23 24 3.30 150.00 -11.00 24 25 6.57 99.00 0.00 25 26 1.82 182.00 3.00 26 27 1.91 28.00 7.00 26 28 2.50 202.00 20.00 *BEGIN 2007a *DATE 2007.07.01 *data normal from to length bearing gradient 7 8 6.90 222.00 -11.00 *END 2007a *BEGIN Mares090408a *DATE 2009.04.08 *CALIBRATE declination 2.08 *data normal from to length bearing gradient 0 1 3.00 91.06 6.73 1 2 2.91 20.29 3.57 2 3 4.11 19.88 -2.27 3 4 2.03 331.14 4.87 4 5 2.43 28.98 -37.75 *END Mares090408a *BEGIN Mares090408b *DATE 2009.04.08 *CALIBRATE declination 2.08 *EQUATE 6 6a *data normal from to length bearing gradient 4 6a 1.91 63.99 -6.15 6a 7 3.35 32.37 -4.35 6 8 8.17 104.93 -1.38 8 9 1.78 139.35 4.60 9 10 2.70 100.81 0.36 10 11 4.72 56.33 -3.82 11 12 1.25 69.40 -4.66 12 13 2.95 112.51 -3.77 12 14 3.97 136.09 3.99 14 15 1.44 68.87 -26.54 15 16 2.30 131.94 -17.98 *END Mares090408b *END NightMare CaveConverter_src/test/data/regression/flags_in.svx0000644000000000000000000000577213030252172021573 0ustar rootroot*BEGIN Swildons *EQUATE Ent EntranceZigZags.3 *EQUATE surfacegps.4 EntranceZigZags.3 *EQUATE EntranceZigZags.5 LongDryWay.0 *EQUATE LongDryWay.5 EntranceZigZags.21 *EQUATE LongDryWay.5 ShortDryWay.0 *BEGIN surfacegps *FLAGS SURFACE 0 1 9.84 94.37 -5.88 1 2 7.84 97.65 -8.05 2 3 11.76 94.27 -17.67 3 4 4.38 7.38 -23.29 3 5 5.45 262.93 13.06 5 6 8.80 174.95 11.61 6 7 13.78 168.31 12.55 *END surfacegps *BEGIN EntranceZigZags *FLAGS SURFACE 0 1 2.98 10.26 -2.01 0 2 5.24 3.23 -5.04 2 3 2.64 166.70 -60.11 *FLAGS NOT SURFACE 3 4 3.10 330.76 -25.13 4 5 4.51 275.80 -12.10 5 6 2.41 50.67 -22.33 6 7 1.08 37.30 11.53 7 8 2.00 6.10 11.51 8 9 1.01 56.60 0.18 9 10 3.07 336.52 5.81 9 11 2.42 64.64 5.29 11 12 4.50 106.56 19.29 10 13 0.94 80.55 -45.63 13 14 5.31 65.16 19.50 10 15 3.27 329.15 -18.16 15 16 3.57 334.08 -6.33 16 17 2.41 207.98 -9.43 17 18 4.05 308.01 -19.25 18 19 2.06 211.48 -16.06 19 20 2.94 233.55 -35.84 20 21 2.04 14.57 -39.09 *END EntranceZigZags *BEGIN LongDryWay 0 1 4.08 270.72 -25.50 1 2 3.77 354.35 -29.81 2 3 4.33 336.10 -24.79 3 4 2.77 337.70 -4.41 4 5 3.14 343.71 -25.59 *END LongDryWay *BEGIN ShortDryWay 0 1 1.43 131.61 -13.25 *FLAGS SPLAY 1 1a 1.42 311.07 12.80 1 1b 0.58 327.33 -0.57 1 1c 0.50 258.56 -34.18 1 1d 0.94 171.13 -6.41 *FLAGS NOT SPLAY DUPLICATE 1 2 3.89 73.29 -51.63 *FLAGS SPLAY 2 2a 3.91 252.77 52.00 2 2b 2.44 239.99 47.81 2 2c 0.91 252.72 -4.04 2 2d 0.80 250.31 -35.24 *FLAGS NOT SPLAY NOT DUPLICATE 2 3 4.50 170.72 19.68 *FLAGS SPLAY 3 3a 1.54 358.12 82.08 3 3b 0.94 170.44 -79.46 3 3c 0.46 71.39 -4.30 3 3d 0.45 220.38 -6.59 3 3e 4.46 350.50 -20.39 3 3f 0.39 251.63 -13.19 *FLAGS NOT SPLAY 3 4 1.11 246.49 -14.16 *FLAGS SPLAY 4 4a 0.60 345.93 65.79 4 4b 0.68 212.13 -85.64 4 4c 0.28 4.71 4.35 4 4d 2.84 294.88 -9.50 *FLAGS NOT SPLAY 2 5 4.91 323.66 2.34 *FLAGS SPLAY 5 5a 1.68 227.27 67.16 5 5b 0.87 46.77 -82.61 5 5c 4.91 143.73 -2.57 5 5d 0.74 236.15 -6.85 5 5e 1.03 103.39 -8.81 5 5f 2.18 148.83 -2.53 *FLAGS NOT SPLAY 5 6 5.05 279.35 -25.23 *FLAGS SPLAY 6 6a 2.83 16.27 74.62 6 6b 1.16 111.26 -85.03 6 6c 5.05 99.27 25.32 6 6d 0.58 34.79 1.49 6 6e 2.60 99.05 2.63 6 6f 2.79 105.09 4.91 *FLAGS NOT SPLAY 6 7 5.02 336.36 -13.85 *FLAGS SPLAY DUPLICATE 7 7a 3.73 254.43 80.33 7 7b 0.54 182.41 -84.02 7 7c 2.55 328.39 -82.67 7 7d 5.00 156.87 13.29 7 7e 0.41 231.77 -3.06 *FLAGS NOT SPLAY NOT DUPLICATE 7 8 3.19 303.08 -33.11 *FLAGS SPLAY NOT DUPLICATE 8 8a 4.46 353.35 80.60 8 8b 1.45 224.40 -78.95 8 8c 3.21 123.01 33.05 8 8d 0.53 23.07 -5.56 8 8e 1.87 72.08 1.35 *FLAGS NOT SPLAY 8 9 6.71 295.69 -12.15 *FLAGS SPLAY 9 9a 1.16 244.84 81.25 9 9b 1.09 201.63 -76.54 9 9c 6.72 115.55 11.83 9 9d 0.56 196.48 2.10 9 9e 3.56 117.58 -4.92 *FLAGS NOT SPLAY 9 10 1.11 265.93 2.35 *END ShortDryWay *END Swildons CaveConverter_src/test/data/regression/TripComment_ps_ref7.svx0000644000000000000000000000373513030252172023674 0ustar rootroot*BEGIN TrainingRoom *BEGIN 1 ;WSCC DistoX - Footleg ;Dell PDA drawing - Bob *DATE 2012.11.24 *FLAGS SPLAY 0 0a 1.17 8.87 6.87 0 0b 1.11 175.45 -0.10 0 0c 5.95 98.10 6.04 0 0d 5.01 277.41 17.22 0 0e 1.04 47.72 83.13 0 0f 1.09 153.35 -85.85 *FLAGS NOT SPLAY 0 1 5.08 327.47 56.76 *FLAGS SPLAY 1 1a 0.86 248.16 84.61 1 1b 1.97 36.72 85.36 1 1c 2.90 0.21 79.16 1 1d 3.57 0.44 76.99 1 1e 3.33 6.81 73.92 1 1f 3.08 9.73 72.19 1 1g 1.51 33.34 73.27 1 1h 1.13 41.39 63.01 1 1i 0.91 55.93 43.46 1 1j 0.95 54.38 25.70 1 1k 0.71 50.23 15.55 1 1l 0.80 52.99 -17.45 1 1m 0.78 47.54 -32.25 1 1n 0.80 49.21 -38.08 1 1o 1.22 48.37 -40.44 1 1p 1.44 44.13 -46.36 1 1q 1.83 42.45 -54.49 1 1r 1.84 35.11 -63.47 1 1s 1.51 111.18 -81.34 1 1t 1.56 208.58 -80.33 1 1u 0.80 65.58 -74.77 1 1v 0.63 17.58 -85.44 1 1w 0.55 281.21 -80.62 1 1x 0.86 174.05 0.08 1 1y 1.51 155.18 1.24 1 1z 1.96 140.40 -3.29 1 1aa 2.58 131.69 -4.78 1 1ab 2.68 130.29 -4.55 1 1ac 0.58 315.38 2.25 1 1ad 1.05 326.37 2.41 1 1ae 1.28 112.92 -6.48 1 1af 1.03 99.66 -5.08 1 1ag 0.74 82.81 -4.14 1 1ah 0.62 62.72 -5.29 1 1ai 0.71 34.15 -9.16 1 1aj 1.52 4.78 -10.78 1 1ak 1.62 348.65 -11.00 1 1al 1.85 336.13 -6.26 1 1am 2.39 329.33 -3.53 *FLAGS NOT SPLAY 1 2 4.92 69.83 23.86 *FLAGS SPLAY 2 2a 0.95 165.48 0.82 2 2b 3.80 331.85 24.88 2 2c 2.96 27.78 70.94 2 2d 1.76 85.45 -85.86 2 2e 13.10 71.82 16.81 2 2f 7.76 33.32 29.66 2 2g 5.74 289.73 15.19 2 2h 5.02 257.83 -9.98 2 2i 2.80 233.18 -16.44 *FLAGS NOT SPLAY 2 3 2.00 337.58 33.09 *FLAGS SPLAY 3 3a 1.67 169.43 -3.02 3 3b 2.00 339.94 5.13 3 3c 1.85 274.03 82.17 3 3d 0.75 63.40 -83.13 *FLAGS NOT SPLAY *data passage station left right up down 0 3.67 4.49 1.03 1.09 1 1.81 2.48 1.96 0.63 2 5.52 9.34 2.80 1.75 3 0.34 0.00 1.84 0.75 *END 1 *END TrainingRoom CaveConverter_src/test/data/regression/0098_Bollon_ref.svx0000644000000000000000000001107312114041272022540 0ustar rootroot*BEGIN 0098_Bollon 0 1 7.50 278.20 -42.00 1 2 5.40 286.20 3.00 2 3 9.70 285.20 7.00 3 4 3.60 271.20 -18.00 4 5 7.00 323.20 -12.00 5 6 3.40 23.20 -5.00 6 7 6.80 350.20 8.00 7 8 3.30 322.20 3.00 8 9 2.30 6.20 -4.00 9 10 11.10 355.20 3.00 10 11 2.30 327.20 0.00 11 12 5.20 43.20 -17.00 12 13 11.60 68.20 -16.00 13 14 5.40 69.20 -2.00 14 15 2.30 36.20 -32.00 15 16 1.00 31.20 0.00 16 17 7.50 348.20 23.00 17 18 2.20 49.20 -7.00 18 19 3.40 65.20 -4.00 19 20 4.30 107.20 -5.00 20 21 11.90 62.20 30.00 21 22 6.60 83.20 -8.00 22 23 4.70 122.20 -13.00 23 24 8.70 105.20 -7.00 24 25 6.30 84.20 -6.00 22 26 3.40 8.20 -23.00 26 27 2.40 18.20 -46.00 27 28 9.00 74.20 -19.00 28 29 3.00 87.20 -4.00 29 30 4.10 137.20 0.00 30 31 4.10 57.20 -11.00 31 32 2.10 96.20 -24.00 32 33 5.20 82.20 -2.00 33 34 4.30 97.20 -1.00 34 35 4.20 84.20 -2.00 35 36 7.20 61.20 -7.00 36 37 2.60 76.20 -19.00 37 38 2.90 77.20 2.00 38 39 2.70 115.20 25.00 39 40 2.50 114.20 -6.00 40 41 2.00 76.20 -18.00 41 42 2.00 109.20 34.00 42 43 1.70 98.20 0.00 43 44 2.10 155.20 9.00 44 45 2.60 182.20 36.00 45 46 4.30 97.20 -12.00 46 47 5.80 85.20 -4.00 47 48 6.80 22.20 -3.00 48 49 3.40 74.20 0.00 49 50 4.00 77.20 -12.00 12 51 6.90 326.20 -11.00 51 52 11.30 262.20 -23.00 52 53 3.70 262.20 -7.00 53 54 4.70 296.20 5.00 54 55 3.40 237.20 -9.00 55 56 6.10 235.20 -12.00 56 57 8.40 308.20 -3.00 57 58 6.90 278.20 0.00 58 59 10.30 275.20 -1.00 59 60 7.80 264.20 0.00 60 61 3.50 301.20 0.00 61 62 10.60 276.20 -1.00 62 63 7.70 276.20 0.00 63 64 5.30 301.10 0.00 64 65 5.60 284.10 10.00 65 66 10.70 278.10 8.00 66 67 3.30 358.10 3.00 67 68 11.30 307.10 5.00 68 69 6.60 276.10 -12.00 69 70 19.10 277.10 -9.00 70 71 5.28 33.10 -18.00 71 72 3.30 28.85 0.00 72 73 8.10 291.85 21.00 73 74 7.40 253.85 1.00 74 75 9.50 284.85 4.00 75 76 8.60 241.85 -3.00 76 77 3.30 277.85 -1.00 77 78 6.15 271.85 -1.00 78 79 10.50 288.85 1.00 79 80 8.45 274.85 -2.00 80 81 24.50 235.85 -1.00 81 82 12.40 250.85 1.00 82 83 4.65 227.85 -13.00 83 84 16.10 277.85 -6.00 84 85 1.20 0.00 90.00 85 86 14.20 268.85 -3.00 86 87 14.20 275.85 0.00 87 88 6.50 10.85 0.00 88 89 3.95 318.85 0.00 89 90 17.80 276.85 1.00 90 91 12.95 254.35 7.00 91 92 1.50 0.00 -90.00 92 93 3.05 296.85 16.00 93 94 9.75 271.85 0.00 94 95 9.60 235.85 25.00 95 96 2.00 218.85 19.00 96 97 2.75 247.85 -12.00 97 98 7.30 255.85 12.00 98 99 2.90 270.85 -26.00 99 100 2.10 225.85 0.00 100 101 4.65 195.85 8.00 101 102 7.60 148.85 26.00 102 103 13.05 226.85 39.00 103 104 11.05 215.85 33.00 104 105 3.00 105.85 38.00 105 106 20.75 168.85 36.00 106 107 3.30 290.85 34.00 107 108 13.20 254.85 2.00 108 109 2.70 193.85 -43.00 109 110 6.80 271.85 -23.00 110 111 5.60 199.85 -36.00 111 112 2.75 198.85 -14.00 112 113 17.05 250.85 15.00 113 114 16.10 245.85 -6.00 114 115 14.75 168.85 38.00 115 116 8.95 132.85 29.00 116 117 11.60 127.85 6.00 117 118 15.50 126.85 20.00 104 119 10.05 299.85 -35.00 104 120 10.80 308.15 -27.00 120 121 5.90 204.15 -41.00 121 122 4.40 186.15 -57.00 122 123 4.40 296.15 -65.00 123 124 3.60 0.00 -90.00 124 125 3.90 211.15 7.00 125 126 16.60 269.65 0.00 126 127 9.50 217.15 21.00 127 128 5.40 189.65 14.00 128 129 1.70 249.65 13.00 129 130 4.00 293.65 31.00 130 131 3.60 272.15 7.00 131 132 1.90 0.00 90.00 132 133 6.60 217.65 13.00 133 134 1.20 195.45 0.00 134 135 3.20 281.45 -71.00 135 136 1.80 109.45 -44.00 136 137 1.60 161.45 -70.00 137 138 6.20 247.45 3.00 138 139 4.60 272.45 -6.00 139 140 3.60 133.45 -45.00 140 141 4.10 235.45 2.00 141 142 5.60 209.45 -9.00 142 143 3.70 256.45 49.00 143 144 4.80 272.45 8.00 144 145 5.00 146.45 -34.00 145 146 2.80 208.45 -52.00 146 147 2.50 212.45 15.00 147 148 10.30 237.45 19.00 148 149 10.80 287.45 -8.00 149 150 14.70 206.45 0.00 150 151 3.50 249.45 0.00 151 152 5.60 224.45 0.00 152 153 4.30 257.45 0.00 153 154 2.30 173.45 0.00 154 155 13.30 227.45 0.00 155 156 18.00 244.45 6.00 156 157 5.60 262.45 -35.00 157 158 12.90 220.45 0.00 158 159 19.30 242.45 1.00 159 160 13.50 240.45 14.00 160 161 12.00 278.45 -4.00 161 162 10.90 254.45 0.00 162 163 10.40 237.45 -9.00 163 164 18.00 194.45 -1.00 164 165 6.20 289.45 6.00 165 166 4.40 245.45 13.00 166 167 5.20 222.45 -2.00 *END 0098_Bollon CaveConverter_src/test/data/regression/Crossover_ref.text0000644000000000000000000000345212120777670023005 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.CrossTest.Leg1 1 -1 1 1 1 1 0 1 5 5 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 1.10 350.00 0.00 0.00 0.00 0.00 0.00 1 2 1 1 1 1.20 0.00 0.00 0.00 0.00 0.00 0.00 1 3 1 1 1 1.30 10.00 0.00 0.00 0.00 0.00 0.00 1 4 1 1 1 1.40 5.00 0.00 0.00 0.00 0.00 0.00 1 5 1 1 1 1.50 355.00 0.00 0.00 0.00 0.00 0.00 2 -2 1 1 1 Series 2-root.CrossTest.Leg2 2 -1 1 1 1 2 0 1 2 3 3 0 2 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 1 1 1 1 2.10 90.00 0.00 0.00 0.00 0.00 0.00 2 2 1 1 1 2.20 80.00 0.00 0.00 0.00 0.00 0.00 2 3 1 1 1 2.30 100.00 0.00 0.00 0.00 0.00 0.00 3 -2 1 1 1 Series 3-root.CrossTest.Leg2 3 -1 1 1 1 1 2 3 2 2 3 0 3 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 1 1 1 1 2.40 95.00 0.00 0.00 0.00 0.00 0.00 3 2 1 1 1 2.50 85.00 0.00 0.00 0.00 0.00 0.00CaveConverter_src/test/data/regression/HSC_ps_testgen.svx0000644000000000000000000002411512604500012022644 0ustar rootroot*BEGIN new090417 *EQUATE 1.20 118.0 *BEGIN 118 *DATE 2009.04.17 *CALIBRATE declination 2.08 *FLAGS SPLAY 0 0a 0.96 22.53 -1.72 0 0b 0.23 209.86 13.47 0 0c 4.62 344.93 83.50 0 0d 1.33 234.49 -86.05 *FLAGS NOT SPLAY 0 1 4.41 85.63 56.45 *FLAGS SPLAY 1 1a 5.21 286.13 -1.99 1 1b 1.25 97.37 3.15 1 1c 1.56 321.06 80.51 1 1d 4.37 145.94 -88.53 *FLAGS NOT SPLAY 1 2 2.57 17.44 8.88 *FLAGS SPLAY 2 2a 1.22 287.61 0.03 2 2b 0.40 105.36 4.08 2 2c 0.31 293.53 87.17 2 2d 0.38 21.24 -85.59 *FLAGS NOT SPLAY 2 3 6.09 17.23 -0.36 *FLAGS SPLAY 3 3a 1.34 209.51 15.20 3 3b 0.20 26.53 2.06 3 3c 0.33 19.33 83.86 3 3d 0.44 187.04 -85.42 *FLAGS NOT SPLAY 3 4 6.26 288.72 0.89 *FLAGS SPLAY 4 4a 0.48 196.35 -3.11 4 4b 0.44 12.77 10.01 4 4c 0.34 324.14 88.50 4 4d 0.37 218.56 -87.98 *FLAGS NOT SPLAY 3 5 2.08 143.25 1.29 *FLAGS SPLAY 5 5a 0.82 10.33 3.35 5 5b 0.21 95.58 86.04 5 5c 0.19 205.48 -87.92 *FLAGS NOT SPLAY 5 6 2.63 92.99 -6.53 *FLAGS SPLAY 6 6a 0.36 355.91 0.44 6 6b 0.31 168.00 6.41 6 6c 0.21 76.60 85.20 6 6d 1.94 132.41 -84.27 *FLAGS NOT SPLAY 1 7 1.92 171.25 38.92 *FLAGS SPLAY 7 7a 0.99 23.62 1.01 7 7b 0.96 219.73 0.84 7 7c 2.06 276.93 84.38 7 7d 0.48 160.02 -83.30 *FLAGS NOT SPLAY 7 8 4.09 118.81 8.07 *FLAGS SPLAY 8 8a 0.59 14.54 -1.30 8 8b 1.16 64.30 86.33 8 8c 0.81 4.19 -88.04 *FLAGS NOT SPLAY 8 9 6.84 102.75 6.73 *FLAGS SPLAY 9 9a 0.64 9.27 -0.28 9 9b 0.40 186.72 9.03 9 9c 0.22 28.87 85.75 9 9d 0.22 217.52 -85.24 *FLAGS NOT SPLAY 7 10 3.61 220.79 21.43 *FLAGS SPLAY 10 10a 1.23 116.25 2.68 10 10b 0.76 285.24 7.71 10 10c 0.74 109.40 86.98 10 10d 0.22 100.33 -89.49 *FLAGS NOT SPLAY 10 11 1.78 180.39 16.50 *FLAGS SPLAY 11 11a 0.31 103.13 -2.29 11 11b 1.00 282.91 1.18 11 11c 0.24 314.51 86.50 11 11d 0.20 162.79 -79.23 *FLAGS NOT SPLAY 11 12 15.03 195.29 0.32 *FLAGS SPLAY 12 12a 6.01 17.32 2.01 12 12b 3.08 347.79 3.07 12 12c 2.20 320.84 4.71 12 12d 3.83 49.89 -0.50 12 12e 0.74 110.79 8.92 12 12f 0.69 198.64 10.54 *FLAGS NOT SPLAY 12 13 7.30 264.09 2.57 *FLAGS SPLAY 13 13a 0.70 182.13 3.06 13 13b 0.21 11.63 19.31 13 13c 0.23 184.92 77.90 *FLAGS NOT SPLAY 13 14 3.71 279.82 4.77 *FLAGS SPLAY 14 14a 0.43 188.00 1.46 14 14b 0.85 13.90 -0.77 14 14c 0.34 176.03 -80.18 *FLAGS NOT SPLAY 14 15 6.69 266.26 -26.44 *FLAGS SPLAY 15 15a 0.98 170.84 8.55 15 15b 2.49 64.23 11.72 15 15c 2.61 244.87 21.84 15 15d 3.37 292.48 11.33 15 15e 2.00 342.97 10.72 *FLAGS NOT SPLAY 15 16 2.92 52.57 0.50 *FLAGS SPLAY 16 16a 1.13 335.93 -3.42 16 16b 0.31 152.53 2.42 16 16c 0.62 333.07 87.23 16 16d 0.38 146.54 -87.21 *FLAGS NOT SPLAY 16 17 7.37 58.25 0.39 *FLAGS SPLAY 17 17a 0.98 324.42 3.22 17 17b 0.31 144.32 3.31 17 17c 0.28 300.73 87.16 17 17d 0.05 126.22 -81.67 *FLAGS NOT SPLAY 17 18 3.30 34.06 -4.56 *FLAGS SPLAY 18 18a 2.98 85.15 -2.52 18 18b 2.97 124.59 0.62 18 18c 7.76 126.15 1.14 18 18d 6.42 141.39 0.59 18 18e 3.29 164.25 2.96 18 18f 2.76 240.68 7.36 18 18g 0.87 282.27 12.06 *FLAGS NOT SPLAY 18 19 4.75 270.79 2.04 *FLAGS SPLAY 19 19a 0.20 182.59 2.55 19 19b 1.54 11.61 -0.79 19 19c 0.63 297.61 84.85 19 19d 0.40 87.62 -85.16 *FLAGS NOT SPLAY 19 20 5.16 306.51 4.31 *FLAGS SPLAY 20 20a 1.60 212.01 -0.93 20 20b 0.26 50.02 -84.91 *FLAGS NOT SPLAY 20 21 2.77 223.43 -6.75 *FLAGS SPLAY 21 21a 1.60 180.63 6.26 21 21b 0.60 338.00 1.74 21 21c 0.76 212.74 88.20 *FLAGS NOT SPLAY 21 22 4.11 249.43 5.41 *FLAGS SPLAY 22 22a 0.39 162.23 -0.01 22 22b 0.58 347.00 0.42 22 22c 0.46 271.51 75.36 22 22d 0.26 90.53 -87.49 *FLAGS NOT SPLAY 22 23 4.04 274.31 6.76 21 24 2.04 127.67 8.49 *FLAGS SPLAY 24 24a 1.05 1.79 1.44 24 24b 0.23 100.12 86.02 24 24c 0.27 278.61 -83.60 *FLAGS NOT SPLAY 24 25 4.17 85.93 -6.08 15 26 4.82 275.34 11.68 *FLAGS SPLAY 26 26a 0.67 193.39 11.97 26 26b 0.45 359.40 1.02 26 26c 0.32 29.04 -85.64 *FLAGS NOT SPLAY 26 27 9.44 283.93 -1.80 *FLAGS SPLAY 27 27a 0.33 200.74 4.08 27 27b 0.29 18.18 10.78 27 27c 0.35 6.27 85.39 27 27d 0.24 165.10 -87.87 *FLAGS NOT SPLAY 15 28 5.33 258.07 15.05 *FLAGS SPLAY 28 28a 0.60 161.13 4.17 28 28b 0.85 353.50 8.71 28 28c 2.12 50.09 81.34 *FLAGS NOT SPLAY 28 29 2.15 242.34 48.01 *FLAGS SPLAY 29 29a 2.97 33.03 0.82 29 29b 2.22 320.50 -0.21 29 29c 2.01 217.71 7.64 29 29d 1.67 157.78 9.94 29 29e 1.40 89.26 -9.57 *FLAGS NOT SPLAY 29 30 4.36 106.01 -31.30 *FLAGS SPLAY 30 30a 0.30 9.95 1.38 30 30b 0.48 199.82 0.95 30 30c 0.46 287.87 78.94 *FLAGS NOT SPLAY 29 31 2.09 225.82 5.69 *FLAGS SPLAY 31 31a 0.24 157.70 0.95 31 31b 1.25 331.67 1.19 31 31c 0.20 175.76 86.96 31 31d 0.36 317.54 -83.62 *FLAGS NOT SPLAY 31 32 4.45 242.34 0.48 *FLAGS SPLAY 32 32a 0.52 203.42 5.06 32 32b 3.19 303.43 6.37 32 32c 4.63 339.31 2.41 32 32d 3.02 0.72 5.70 32 32e 3.10 30.34 2.17 32 32f 3.63 67.71 3.17 32 32g 3.21 100.79 -1.01 *FLAGS NOT SPLAY 32 33 3.28 101.68 1.33 *FLAGS SPLAY 33 33a 0.95 34.52 0.59 33 33b 0.34 214.65 16.64 33 33c 0.29 122.89 84.71 33 33d 0.19 292.02 -83.48 *FLAGS NOT SPLAY 33 34 4.79 105.83 -13.72 *FLAGS SPLAY 34 34a 0.29 207.59 -3.35 34 34b 0.20 173.84 86.48 34 34c 1.47 178.88 -87.03 *FLAGS NOT SPLAY 34 35 2.37 121.27 -61.00 *FLAGS SPLAY 35 35a 1.02 20.04 -5.91 35 35b 0.72 201.68 6.82 35 35c 1.17 125.10 82.70 35 35d 1.64 292.70 -81.73 *FLAGS NOT SPLAY 35 36 2.97 70.89 10.56 *FLAGS SPLAY 36 36a 0.79 325.76 2.66 36 36b 0.42 139.95 3.69 36 36c 0.85 34.54 84.25 *FLAGS NOT SPLAY 36 37 2.40 81.43 2.75 *FLAGS SPLAY 37 37a 0.52 358.49 2.72 37 37b 0.50 166.22 5.62 37 37c 0.49 352.29 88.26 *FLAGS NOT SPLAY 36 38 3.44 199.73 3.19 *FLAGS SPLAY 38 38a 0.24 135.39 -2.25 38 38b 0.31 318.27 11.13 38 38c 0.41 119.61 80.85 38 38d 0.19 318.28 -81.47 *FLAGS NOT SPLAY 36 39 3.24 245.65 -25.94 *FLAGS SPLAY 39 39a 0.43 25.03 1.52 39 39b 0.56 7.33 84.71 39 39c 1.47 236.88 -81.55 *FLAGS NOT SPLAY 39 40 3.12 126.45 -36.45 39 41 2.46 288.54 -19.63 *FLAGS SPLAY 41 41a 0.36 200.49 1.35 41 41b 0.28 23.85 4.36 41 41c 0.55 300.08 85.86 *FLAGS NOT SPLAY 41 42 2.83 297.90 27.96 *FLAGS SPLAY 42 42a 0.74 181.72 3.85 42 42b 0.48 340.78 0.38 42 42c 2.69 269.10 86.13 42 42d 0.52 115.64 -84.70 *FLAGS NOT SPLAY 42 43 1.84 310.43 50.44 43 44 7.35 226.90 12.38 *FLAGS SPLAY 44 44a 0.56 328.97 6.99 44 44b 1.05 212.94 78.82 44 44c 0.35 301.67 -85.91 *FLAGS NOT SPLAY 44 45 1.07 265.82 18.38 *FLAGS SPLAY 45 45a 0.51 15.60 4.39 45 45b 0.57 194.98 0.17 45 45c 0.54 180.85 83.08 45 45d 0.50 224.46 -88.24 *FLAGS NOT SPLAY 45 46 2.40 112.23 14.37 *FLAGS SPLAY 46 46a 0.79 17.98 6.40 46 46b 0.53 207.16 5.75 46 46c 0.50 243.62 84.24 46 46d 0.91 125.65 -81.45 *FLAGS NOT SPLAY 46 47 2.52 132.69 26.44 *FLAGS SPLAY 47 47a 3.85 1.01 2.48 47 47b 5.83 317.39 2.51 47 47c 10.34 296.43 3.28 47 47d 10.79 286.75 3.18 47 47e 2.68 266.70 5.84 47 47f 0.50 172.45 13.22 *FLAGS NOT SPLAY 47 48 2.50 63.09 0.33 *FLAGS SPLAY 48 48a 2.01 358.17 2.41 48 48b 0.55 162.50 4.70 48 48c 0.36 41.60 84.49 48 48d 2.61 87.26 -2.01 *FLAGS NOT SPLAY 48 49 4.48 87.14 -2.01 *FLAGS SPLAY 49 49a 2.83 350.35 0.10 49 49b 1.18 152.31 4.71 49 49c 0.40 118.05 77.67 *FLAGS NOT SPLAY 49 50 3.82 87.50 -4.52 *FLAGS SPLAY 50 50a 3.98 347.14 2.28 50 50b 0.34 177.04 4.50 50 50c 0.56 350.94 87.59 50 50d 0.67 224.41 -87.87 *FLAGS NOT SPLAY 43 51 1.80 310.46 50.33 *FLAGS SPLAY 51 51a 0.83 211.09 -1.29 51 51b 0.35 27.20 5.53 51 51c 1.20 241.74 87.79 51 51d 0.38 131.38 -84.70 *FLAGS NOT SPLAY 51 52 8.85 287.98 -2.46 *data passage station left right up down 0 0.86 0.18 4.59 1.33 1 5.10 1.25 1.54 4.37 2 1.22 0.40 0.31 0.38 3 0.20 1.28 0.33 0.44 5 0.78 0.00 0.21 0.19 6 0.36 0.30 0.21 1.93 *data passage station left right up down 3 1.28 0.20 0.33 0.44 4 0.48 0.43 0.34 0.37 *data passage station left right up down 1 1.25 5.10 1.54 4.37 7 0.84 0.93 2.05 0.48 8 0.59 0.00 1.16 0.81 9 0.64 0.39 0.22 0.22 *data passage station left right up down 7 0.13 0.00 2.05 0.48 10 1.22 0.75 0.74 0.22 11 0.31 1.00 0.24 0.20 12 0.64 2.71 0.00 0.00 13 0.70 0.20 0.22 0.00 14 0.43 0.83 0.00 0.34 15 2.42 0.93 0.97 0.00 16 1.11 0.31 0.62 0.38 17 0.97 0.31 0.28 0.05 18 2.74 3.43 0.00 0.00 19 0.19 1.53 0.63 0.40 20 1.28 0.00 0.00 0.26 21 1.32 0.59 0.76 0.00 22 0.38 0.58 0.45 0.26 *data passage station left right up down 21 0.52 1.58 0.76 0.00 24 1.01 0.00 0.23 0.27 *data passage station left right up down 15 1.06 1.87 0.97 0.00 26 0.65 0.44 0.00 0.32 27 0.33 0.28 0.35 0.24 *data passage station left right up down 15 0.97 1.94 0.97 0.00 28 0.60 0.82 2.10 0.00 29 1.60 2.22 0.00 0.00 31 0.23 1.24 0.20 0.36 32 3.51 2.38 0.00 0.00 33 0.89 0.30 0.29 0.19 34 0.00 0.29 0.20 1.47 35 0.98 0.69 1.16 1.62 36 0.38 0.75 0.85 0.00 39 0.00 0.43 0.56 1.45 41 0.36 0.28 0.55 0.00 42 0.62 0.29 2.68 0.52 43 0.00 0.00 0.00 0.00 44 0.00 0.55 1.03 0.35 45 0.00 0.06 0.54 0.50 46 0.76 0.53 0.50 0.90 47 3.82 0.52 0.00 0.00 48 1.96 0.55 0.36 0.00 49 2.81 1.07 0.39 0.00 50 3.91 0.34 0.56 0.67 *data passage station left right up down 29 2.02 1.63 0.00 0.00 30 0.30 0.48 0.45 0.00 *data passage station left right up down 38 0.22 0.27 0.40 0.19 36 0.38 0.75 0.85 0.00 39 0.00 0.43 0.56 1.45 *data passage station left right up down 36 0.74 0.38 0.85 0.00 37 0.52 0.50 0.49 0.00 *data passage station left right up down 43 0.00 0.00 0.00 0.00 51 0.83 0.35 1.20 0.38 *END 118 *END new090417 CaveConverter_src/test/data/regression/GourAven_ps_ref.svx0000644000000000000000000001427713030252172023075 0ustar rootroot*BEGIN GourAven2010 *EQUATE 153.58 154.0 *BEGIN 154 *DATE 2010.08.09 *CALIBRATE declination 1.92 0 1 2.24 139.95 28.32 1 2 5.91 70.86 27.68 *FLAGS SPLAY 2 2a 1.17 8.87 6.87 2 2b 1.11 175.45 -0.10 2 2c 5.95 98.10 6.04 2 2d 5.01 277.41 17.22 2 2e 1.03 47.72 83.13 2 2f 1.09 153.35 -85.85 *FLAGS NOT SPLAY 2 3 5.08 327.47 56.76 *FLAGS SPLAY 3 3a 1.82 181.36 -15.46 3 3b 1.33 327.55 17.32 3 3c 1.04 351.41 82.16 3 3d 3.64 226.41 -81.95 *FLAGS NOT SPLAY 3 4 4.92 69.83 23.86 *FLAGS SPLAY 4 4a 0.95 165.48 0.82 4 4b 3.80 331.85 24.88 4 4c 2.96 27.78 70.94 4 4d 1.75 85.45 -85.86 4 4e 13.10 71.82 16.81 4 4f 7.75 33.32 29.66 4 4g 5.74 289.73 15.19 4 4h 5.02 257.83 -9.98 4 4i 2.81 233.18 -16.44 *FLAGS NOT SPLAY 4 5 2.00 337.58 33.09 *FLAGS SPLAY 5 5a 1.67 169.43 -3.02 5 5b 2.00 339.94 5.13 5 5c 1.85 274.03 82.17 5 5d 0.75 63.40 -83.13 *FLAGS NOT SPLAY 5 6 11.33 256.84 -5.02 *FLAGS SPLAY 6 6a 1.21 159.96 0.46 6 6b 3.67 337.52 19.11 6 6c 0.92 247.84 78.92 6 6d 1.13 41.95 -84.98 *FLAGS NOT SPLAY 6 7 4.83 315.41 34.36 *FLAGS SPLAY 7 7a 2.04 300.83 20.04 7 7b 3.28 141.10 -6.14 7 7c 5.23 73.82 81.18 7 7d 1.34 110.40 -86.27 7 7e 4.05 103.53 3.40 7 7f 4.14 69.26 18.44 7 7g 4.71 21.66 32.61 7 7h 3.12 254.93 11.55 7 7i 7.31 221.39 2.77 7 7j 7.08 196.12 -0.28 *FLAGS NOT SPLAY 7 8 10.95 55.71 35.32 *FLAGS SPLAY 8 8a 2.21 141.89 4.58 8 8b 3.30 91.35 82.63 8 8c 1.36 275.45 -87.94 *FLAGS NOT SPLAY 8 9 9.78 65.84 3.27 *FLAGS SPLAY 9 9a 1.71 329.31 8.11 9 9b 0.80 142.99 2.96 9 9c 1.70 334.25 82.05 9 9d 0.61 34.54 -85.87 9 9e 3.98 233.45 -1.12 *FLAGS NOT SPLAY 9 10 4.02 65.03 22.07 *FLAGS SPLAY 10 10a 0.32 331.55 9.28 10 10b 0.25 189.16 11.19 10 10c 0.53 224.81 78.61 10 10d 0.36 85.36 -83.64 *FLAGS NOT SPLAY 10 11 2.66 124.77 6.23 *FLAGS SPLAY 11 11a 1.64 326.77 17.05 11 11b 0.42 169.26 -0.39 11 11c 0.98 164.51 86.78 11 11d 0.26 25.57 -86.76 11 11e 6.44 244.26 -33.76 *FLAGS NOT SPLAY 11 12 4.68 28.23 41.16 *FLAGS SPLAY 12 12a 0.49 163.24 -3.84 12 12b 2.05 326.35 6.05 12 12c 6.64 296.93 79.59 12 12d 3.01 156.92 -82.68 12 12e 3.45 44.58 36.15 12 12f 7.31 45.38 40.15 12 12g 7.44 59.56 40.31 12 12h 5.50 20.21 43.16 12 12i 2.86 2.96 33.73 12 12j 2.89 291.62 14.24 12 12k 2.35 256.10 14.98 12 12l 12.70 20.35 69.18 *FLAGS NOT SPLAY 12 13 4.74 257.83 20.70 *FLAGS SPLAY 13 13a 0.33 143.07 -2.33 13 13b 0.61 117.22 76.36 13 13c 0.84 289.69 -81.40 *FLAGS NOT SPLAY 13 14 3.65 238.14 -5.06 *FLAGS SPLAY 14 14a 0.40 134.05 0.55 14 14b 0.45 325.26 7.61 14 14c 8.22 65.42 88.46 14 14d 0.28 75.71 -85.74 *FLAGS NOT SPLAY 14 15 1.18 304.15 22.54 *FLAGS SPLAY 15 15a 0.29 177.36 -2.22 15 15b 4.62 186.26 82.17 15 15c 0.80 117.91 -84.94 *FLAGS NOT SPLAY 15 16 3.01 254.32 20.56 *FLAGS SPLAY 16 16a 0.31 186.04 14.63 16 16b 0.35 13.09 -6.44 16 16c 0.76 28.25 88.09 16 16d 0.94 254.97 -82.68 *FLAGS NOT SPLAY 16 17 2.80 262.28 32.10 *FLAGS SPLAY 17 17a 1.87 272.52 88.42 17 17b 1.01 46.41 -85.96 17 17c 0.82 86.30 -3.90 *FLAGS NOT SPLAY 17 18 2.51 130.46 27.56 *FLAGS SPLAY 18 18a 1.11 346.65 2.19 18 18b 0.51 253.02 6.82 18 18c 1.91 43.25 -1.46 18 18d 1.81 40.33 85.61 18 18e 0.48 47.06 -88.61 *FLAGS NOT SPLAY 18 19 1.60 82.83 -6.44 *FLAGS SPLAY 19 19a 0.65 247.70 3.08 19 19b 1.37 325.71 78.59 19 19c 0.48 21.99 -87.43 *FLAGS NOT SPLAY 19 20 2.62 206.13 -3.57 *FLAGS SPLAY 20 20a 0.71 324.21 6.09 20 20b 3.67 28.83 83.37 20 20c 0.47 22.70 -85.65 *FLAGS NOT SPLAY 20 21 2.74 273.17 46.82 *FLAGS SPLAY 21 21a 0.77 150.79 -11.23 21 21b 3.23 324.73 31.68 21 21c 1.45 67.41 10.21 21 21d 9.98 19.22 82.51 *FLAGS NOT SPLAY 21 22 5.18 26.78 41.32 *FLAGS SPLAY 22 22a 1.73 308.53 4.45 22 22b 2.17 133.73 2.41 22 22c 11.69 263.63 88.10 22 22d 0.84 270.34 -88.39 22 22e 8.28 215.65 -4.87 22 22f 8.35 236.94 -5.86 22 22g 16.08 233.79 -2.48 22 22h 5.26 1.49 37.58 22 22i 5.75 61.72 37.02 22 22j 6.38 77.99 35.97 *FLAGS NOT SPLAY 22 23 6.09 69.43 35.08 *FLAGS SPLAY 23 23a 0.59 337.77 0.96 23 23b 0.90 158.22 11.19 23 23c 1.97 131.11 80.39 23 23d 1.37 52.83 -84.85 *FLAGS NOT SPLAY 23 24 2.80 330.39 -45.49 *FLAGS SPLAY 24 24a 0.85 96.82 1.32 24 24b 0.84 81.63 84.42 24 24c 0.81 97.55 -86.69 *FLAGS NOT SPLAY 24 25 3.96 24.64 -39.81 *FLAGS SPLAY 25 25a 0.95 319.89 3.51 25 25b 0.67 156.49 -5.81 25 25c 0.69 60.41 -86.00 *FLAGS NOT SPLAY 25 26 2.56 117.72 -45.71 *FLAGS SPLAY 26 26a 1.18 13.93 -5.75 26 26b 1.03 32.39 84.20 26 26c 0.41 312.35 -76.72 *FLAGS NOT SPLAY 26 27 2.20 85.94 -7.90 *FLAGS SPLAY 27 27a 0.98 329.16 1.13 27 27b 0.38 237.47 -79.56 27 27c 0.27 125.51 -0.87 *FLAGS NOT SPLAY 27 28 1.36 72.33 62.56 *FLAGS SPLAY 28 28a 1.45 186.85 -3.82 28 28b 0.32 24.31 -0.28 28 28c 0.59 261.97 -84.55 *FLAGS NOT SPLAY 28 29 1.39 121.96 -18.84 *FLAGS SPLAY 29 29a 0.90 115.27 -1.66 29 29b 1.60 299.34 0.63 29 29c 1.87 125.54 73.79 29 29d 6.93 84.61 -64.07 *FLAGS NOT SPLAY 29 30 0.86 110.32 6.35 30 31 8.52 168.68 -79.71 *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 0.00 0.00 0.00 0.00 2 4.68 5.81 1.03 1.09 3 0.99 0.00 1.03 3.60 4 5.52 9.34 2.80 1.75 5 1.32 1.35 1.84 0.75 6 0.98 2.71 0.90 1.13 7 4.27 4.00 5.17 1.33 8 0.00 2.18 3.27 1.36 9 1.68 0.83 1.69 0.61 10 0.27 0.24 0.52 0.36 11 1.47 1.13 0.98 0.26 12 2.09 5.63 6.53 2.98 13 0.31 0.00 0.60 0.83 14 0.27 0.36 8.22 0.28 15 0.29 0.00 4.58 0.80 16 0.28 0.32 0.76 0.93 17 0.77 0.00 1.87 1.01 18 1.71 0.28 1.80 0.48 19 0.00 0.63 1.34 0.48 20 0.00 0.70 3.65 0.47 21 0.25 1.41 9.90 0.00 22 3.03 2.57 11.68 0.84 23 0.00 0.58 1.94 1.37 24 0.00 0.84 0.83 0.81 25 0.88 0.66 0.00 0.69 26 1.17 0.00 1.02 0.39 27 0.92 0.19 0.00 0.38 28 0.31 1.45 0.00 0.59 29 1.58 0.00 1.80 6.23 30 0.00 0.00 0.00 0.00 *END 154 *END GourAven2010 CaveConverter_src/test/data/regression/2649_Mares_from3d_ref.text0000644000000000000000000001320312115122656024010 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.SurveyFromDXF.SeriesFromLines1 1 -1 1 1 1 1 0 1 7 7 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 1.72 142.64 -47.12 0.00 0.00 0.00 0.00 1 2 1 1 1 2.90 350.59 -49.12 0.00 0.00 0.00 0.00 1 3 1 1 1 4.22 0.00 -90.00 0.00 0.00 0.00 0.00 1 4 1 1 1 4.96 100.66 11.05 0.00 0.00 0.00 0.00 1 5 1 1 1 2.17 69.61 39.87 0.00 0.00 0.00 0.00 1 6 1 1 1 2.50 97.85 -35.10 0.00 0.00 0.00 0.00 1 7 1 1 1 6.89 219.66 -10.95 0.00 0.00 0.00 0.00 2 -2 1 1 1 Series 2-root.SurveyFromDXF.SeriesFromLines2 2 -1 1 1 1 1 6 2 4 4 3 0 2 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 1 1 1 1 2.98 65.71 18.98 0.00 0.00 0.00 0.00 2 2 1 1 1 3.00 107.65 -1.91 0.00 0.00 0.00 0.00 2 3 1 1 1 2.58 95.89 -10.95 0.00 0.00 0.00 0.00 2 4 1 1 1 4.80 0.00 -90.00 0.00 0.00 0.00 0.00 3 -2 1 1 1 Series 3-root.SurveyFromDXF.SeriesFromLines3 3 -1 1 1 1 2 3 3 15 15 3 0 3 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 1 1 1 1 4.40 45.66 -11.00 0.00 0.00 0.00 0.00 3 2 1 1 1 2.30 17.68 -43.07 0.00 0.00 0.00 0.00 3 3 1 1 1 7.35 47.76 -3.98 0.00 0.00 0.00 0.00 3 4 1 1 1 7.35 32.74 -5.07 0.00 0.00 0.00 0.00 3 5 1 1 1 4.10 22.63 14.12 0.00 0.00 0.00 0.00 3 6 1 1 1 5.90 70.73 -5.05 0.00 0.00 0.00 0.00 3 7 1 1 1 7.40 29.69 -2.94 0.00 0.00 0.00 0.00 3 8 1 1 1 5.64 46.73 -3.05 0.00 0.00 0.00 0.00 3 9 1 1 1 3.91 107.78 -3.96 0.00 0.00 0.00 0.00 3 10 1 1 1 4.02 82.72 1.99 0.00 0.00 0.00 0.00 3 11 1 1 1 3.00 35.76 -3.06 0.00 0.00 0.00 0.00 3 12 1 1 1 3.30 147.73 -11.00 0.00 0.00 0.00 0.00 3 13 1 1 1 6.57 96.74 0.00 0.00 0.00 0.00 0.00 3 14 1 1 1 1.81 179.68 3.16 0.00 0.00 0.00 0.00 3 15 1 1 1 1.90 25.75 6.95 0.00 0.00 0.00 0.00 4 -2 1 1 1 Series 4-root.SurveyFromDXF.SeriesFromLines4 4 -1 1 1 1 3 14 4 1 1 3 0 4 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4 1 1 1 1 2.50 199.59 19.84 0.00 0.00 0.00 0.00 5 -2 1 1 1 Series 5-root.SurveyFromDXF.SeriesFromLines5 5 -1 1 1 1 3 13 5 5 5 3 0 5 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 5 1 1 1 1 3.00 88.85 6.70 0.00 0.00 0.00 0.00 5 2 1 1 1 2.91 18.25 3.54 0.00 0.00 0.00 0.00 5 3 1 1 1 4.11 17.73 -2.23 0.00 0.00 0.00 0.00 5 4 1 1 1 2.03 328.99 4.81 0.00 0.00 0.00 0.00 5 5 1 1 1 2.42 26.97 -37.65 0.00 0.00 0.00 0.00 6 -2 1 1 1 Series 6-root.SurveyFromDXF.SeriesFromLines6 6 -1 1 1 1 5 4 6 2 2 3 0 6 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6 1 1 1 1 1.92 61.82 -5.99 0.00 0.00 0.00 0.00 6 2 1 1 1 3.34 30.26 -4.29 0.00 0.00 0.00 0.00 7 -2 1 1 1 Series 7-root.SurveyFromDXF.SeriesFromLines7 7 -1 1 1 1 6 1 7 6 6 3 0 7 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 7 1 1 1 1 8.17 102.88 -1.40 0.00 0.00 0.00 0.00 7 2 1 1 1 1.78 137.05 4.83 0.00 0.00 0.00 0.00 7 3 1 1 1 2.69 98.76 0.21 0.00 0.00 0.00 0.00 7 4 1 1 1 4.73 54.32 -3.76 0.00 0.00 0.00 0.00 7 5 1 1 1 1.25 67.34 -4.59 0.00 0.00 0.00 0.00 7 6 1 1 1 2.94 110.53 -3.90 0.00 0.00 0.00 0.00 8 -2 1 1 1 Series 8-root.SurveyFromDXF.SeriesFromLines8 8 -1 1 1 1 7 5 8 3 3 3 0 8 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 8 1 1 1 1 3.96 134.08 3.91 0.00 0.00 0.00 0.00 8 2 1 1 1 1.44 67.21 -26.37 0.00 0.00 0.00 0.00 8 3 1 1 1 2.30 129.81 -17.99 0.00 0.00 0.00 0.00CaveConverter_src/test/data/regression/Stomps_ref.text0000644000000000000000000012733212115304544022277 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.Stomps2010.156 1 -1 1 1 1 2 0 1 1 1 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 3.12 95.20 86.67 0.00 0.00 0.00 0.00 2 -2 1 1 1 Series 2-root.Stomps2010.156 2 -1 1 1 1 2 0 2 1 1 3 0 2 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 1 1 1 1 0.74 75.25 -89.50 0.00 0.00 0.00 0.00 3 -2 1 1 1 Series 3-root.Stomps2010.156 3 -1 1 1 1 2 0 3 1 1 3 0 3 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 1 1 1 1 1.68 35.85 8.97 0.00 0.00 0.00 0.00 4 -2 1 1 1 Series 4-root.Stomps2010.156 4 -1 1 1 1 2 0 4 1 1 3 0 4 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4 1 1 1 1 9.67 230.72 2.24 0.00 0.00 0.00 0.00 5 -2 1 1 1 Series 5-root.Stomps2010.156 5 -1 1 1 1 2 0 5 1 1 3 0 5 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 5 1 1 1 1 15.03 224.79 -13.08 0.00 0.00 0.00 0.00 6 -2 1 1 1 Series 6-root.Stomps2010.156 6 -1 1 1 1 2 0 6 1 1 3 0 6 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6 1 1 1 1 6.82 208.64 28.68 0.00 0.00 0.00 0.00 7 -2 1 1 1 Series 7-root.Stomps2010.156 7 -1 1 1 1 2 0 7 5 5 3 0 7 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 7 1 1 1 1 9.08 187.39 -7.43 1.68 9.67 3.12 0.74 7 2 1 1 1 18.55 115.06 -0.10 8.06 7.47 4.41 1.26 7 3 1 1 1 3.94 107.42 5.39 2.10 8.88 3.69 1.65 7 4 1 1 1 14.13 94.84 -0.61 1.72 5.78 3.62 1.77 7 5 1 1 1 3.34 150.94 86.38 0.00 0.00 0.00 0.00 8 -2 1 1 1 Series 8-root.Stomps2010.156 8 -1 1 1 1 7 4 8 1 1 3 0 8 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 8 1 1 1 1 1.68 91.43 -86.43 0.00 0.00 0.00 0.00 9 -2 1 1 1 Series 9-root.Stomps2010.156 9 -1 1 1 1 7 4 9 1 1 3 0 9 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 9 1 1 1 1 0.89 19.76 11.66 0.00 0.00 0.00 0.00 10 -2 1 1 1 Series 10-root.Stomps2010.156 10 -1 1 1 1 7 4 10 1 1 3 0 10 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 10 1 1 1 1 4.92 185.67 1.55 0.00 0.00 0.00 0.00 11 -2 1 1 1 Series 11-root.Stomps2010.156 11 -1 1 1 1 7 4 11 1 1 3 0 11 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 11 1 1 1 1 10.70 193.47 -17.40 0.00 0.00 0.00 0.00 12 -2 1 1 1 Series 12-root.Stomps2010.156 12 -1 1 1 1 7 4 12 4 4 3 0 12 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 12 1 1 1 1 14.76 105.50 10.11 0.89 10.70 3.34 1.68 12 2 1 1 1 9.56 77.51 -2.48 2.77 6.30 1.21 2.02 12 3 1 1 1 12.97 126.63 -9.80 0.00 12.22 1.68 1.71 12 4 1 1 1 5.02 172.66 84.02 0.00 0.00 0.00 0.00 13 -2 1 1 1 Series 13-root.Stomps2010.156 13 -1 1 1 1 12 3 13 1 1 3 0 13 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 13 1 1 1 1 4.13 269.09 46.40 0.00 0.00 0.00 0.00 14 -2 1 1 1 Series 14-root.Stomps2010.156 14 -1 1 1 1 12 3 14 1 1 3 0 14 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 14 1 1 1 1 1.51 130.61 -81.84 0.00 0.00 0.00 0.00 15 -2 1 1 1 Series 15-root.Stomps2010.156 15 -1 1 1 1 12 3 15 1 1 3 0 15 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 15 1 1 1 1 5.12 352.09 2.57 0.00 0.00 0.00 0.00 16 -2 1 1 1 Series 16-root.Stomps2010.156 16 -1 1 1 1 12 3 16 1 1 3 0 16 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 16 1 1 1 1 5.91 179.15 -1.30 0.00 0.00 0.00 0.00 17 -2 1 1 1 Series 17-root.Stomps2010.156 17 -1 1 1 1 12 3 17 1 1 3 0 17 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 17 1 1 1 1 13.39 233.95 7.15 0.00 0.00 0.00 0.00 18 -2 1 1 1 Series 18-root.Stomps2010.156 18 -1 1 1 1 12 3 18 3 3 3 0 18 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 18 1 1 1 1 5.84 87.44 1.83 5.12 5.91 5.02 1.51 18 2 1 1 1 11.81 115.74 18.69 4.62 14.51 4.47 0.00 18 3 1 1 1 2.39 260.36 85.82 0.00 0.00 0.00 0.00 19 -2 1 1 1 Series 19-root.Stomps2010.156 19 -1 1 1 1 18 2 19 1 1 3 0 19 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 19 1 1 1 1 5.38 38.95 -12.73 0.00 0.00 0.00 0.00 20 -2 1 1 1 Series 20-root.Stomps2010.156 20 -1 1 1 1 18 2 20 1 1 3 0 20 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 20 1 1 1 1 15.76 209.72 3.96 0.00 0.00 0.00 0.00 21 -2 1 1 1 Series 21-root.Stomps2010.156 21 -1 1 1 1 18 2 21 1 1 3 0 21 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 21 1 1 1 1 8.08 201.59 -24.97 0.00 0.00 0.00 0.00 22 -2 1 1 1 Series 22-root.Stomps2010.156 22 -1 1 1 1 18 2 22 4 4 3 0 22 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 22 1 1 1 1 17.53 166.53 -7.51 5.38 15.76 2.39 0.00 22 2 1 1 1 16.73 146.94 -11.30 11.16 5.81 4.42 2.04 22 3 1 1 1 15.14 116.86 -5.89 10.78 2.98 5.15 2.27 22 4 1 1 1 6.90 67.91 84.81 0.00 0.00 0.00 0.00 23 -2 1 1 1 Series 23-root.Stomps2010.156 23 -1 1 1 1 22 3 23 1 1 3 0 23 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 23 1 1 1 1 0.44 266.34 -88.34 0.00 0.00 0.00 0.00 24 -2 1 1 1 Series 24-root.Stomps2010.156 24 -1 1 1 1 22 3 24 1 1 3 0 24 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 24 1 1 1 1 1.67 59.52 5.64 0.00 0.00 0.00 0.00 25 -2 1 1 1 Series 25-root.Stomps2010.156 25 -1 1 1 1 22 3 25 1 1 3 0 25 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 25 1 1 1 1 3.61 347.02 1.85 0.00 0.00 0.00 0.00 26 -2 1 1 1 Series 26-root.Stomps2010.156 26 -1 1 1 1 22 3 26 1 1 3 0 26 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 26 1 1 1 1 7.80 231.28 3.15 0.00 0.00 0.00 0.00 27 -2 1 1 1 Series 27-root.Stomps2010.156 27 -1 1 1 1 22 3 27 1 1 3 0 27 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 27 1 1 1 1 6.12 302.57 0.88 0.00 0.00 0.00 0.00 28 -2 1 1 1 Series 28-root.Stomps2010.156 28 -1 1 1 1 22 3 28 1 1 3 0 28 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 28 1 1 1 1 5.07 329.40 -2.18 0.00 0.00 0.00 0.00 29 -2 1 1 1 Series 29-root.Stomps2010.156 29 -1 1 1 1 22 3 29 4 4 3 0 29 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 29 1 1 1 1 12.56 156.16 3.43 1.67 7.80 6.90 0.44 29 2 1 1 1 20.99 140.30 1.02 3.84 3.12 5.53 1.63 29 3 1 1 1 14.28 157.77 1.84 3.37 6.88 7.31 1.81 29 4 1 1 1 6.76 210.64 82.75 0.00 0.00 0.00 0.00 30 -2 1 1 1 Series 30-root.Stomps2010.156 30 -1 1 1 1 29 3 30 1 1 3 0 30 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 30 1 1 1 1 2.16 73.45 -85.02 0.00 0.00 0.00 0.00 31 -2 1 1 1 Series 31-root.Stomps2010.156 31 -1 1 1 1 29 3 31 1 1 3 0 31 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 31 1 1 1 1 3.99 48.23 5.15 0.00 0.00 0.00 0.00 32 -2 1 1 1 Series 32-root.Stomps2010.156 32 -1 1 1 1 29 3 32 1 1 3 0 32 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 32 1 1 1 1 7.35 51.89 -19.26 0.00 0.00 0.00 0.00 33 -2 1 1 1 Series 33-root.Stomps2010.156 33 -1 1 1 1 29 3 33 1 1 3 0 33 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 33 1 1 1 1 6.30 222.02 0.27 0.00 0.00 0.00 0.00 34 -2 1 1 1 Series 34-root.Stomps2010.156 34 -1 1 1 1 29 3 34 2 2 3 0 34 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 34 1 1 1 1 10.37 161.06 2.49 7.35 6.30 6.76 2.16 34 2 1 1 1 7.08 115.39 85.78 0.00 0.00 0.00 0.00 35 -2 1 1 1 Series 35-root.Stomps2010.156 35 -1 1 1 1 34 1 35 1 1 3 0 35 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 35 1 1 1 1 1.67 28.83 -87.87 0.00 0.00 0.00 0.00 36 -2 1 1 1 Series 36-root.Stomps2010.156 36 -1 1 1 1 34 1 36 1 1 3 0 36 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 36 1 1 1 1 8.03 83.32 5.30 0.00 0.00 0.00 0.00 37 -2 1 1 1 Series 37-root.Stomps2010.156 37 -1 1 1 1 34 1 37 1 1 3 0 37 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 37 1 1 1 1 11.57 63.87 -12.79 0.00 0.00 0.00 0.00 38 -2 1 1 1 Series 38-root.Stomps2010.156 38 -1 1 1 1 34 1 38 1 1 3 0 38 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 38 1 1 1 1 4.58 266.89 4.80 0.00 0.00 0.00 0.00 39 -2 1 1 1 Series 39-root.Stomps2010.156 39 -1 1 1 1 34 1 39 2 2 3 0 39 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 39 1 1 1 1 7.85 124.71 -11.48 11.57 4.58 7.08 1.67 39 2 1 1 1 5.78 226.07 82.52 0.00 0.00 0.00 0.00 40 -2 1 1 1 Series 40-root.Stomps2010.156 40 -1 1 1 1 39 1 40 1 1 3 0 40 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 40 1 1 1 1 1.20 267.90 -79.45 0.00 0.00 0.00 0.00 41 -2 1 1 1 Series 41-root.Stomps2010.156 41 -1 1 1 1 39 1 41 1 1 3 0 41 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 41 1 1 1 1 9.04 55.63 -6.54 0.00 0.00 0.00 0.00 42 -2 1 1 1 Series 42-root.Stomps2010.156 42 -1 1 1 1 39 1 42 1 1 3 0 42 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 42 1 1 1 1 9.67 143.39 -10.88 0.00 0.00 0.00 0.00 43 -2 1 1 1 Series 43-root.Stomps2010.156 43 -1 1 1 1 39 1 43 1 1 3 0 43 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 43 1 1 1 1 8.33 102.41 -11.12 0.00 0.00 0.00 0.00 44 -2 1 1 1 Series 44-root.Stomps2010.156 44 -1 1 1 1 39 1 44 1 1 3 0 44 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 44 1 1 1 1 12.85 219.91 12.63 0.00 0.00 0.00 0.00 45 -2 1 1 1 Series 45-root.Stomps2010.156 45 -1 1 1 1 39 1 45 1 1 3 0 45 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 45 1 1 1 1 10.53 164.48 -10.22 0.00 0.00 0.00 0.00 46 -2 1 1 1 Series 46-root.Stomps2010.156 46 -1 1 1 1 39 1 46 2 2 3 0 46 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 46 1 1 1 1 23.70 155.43 -4.37 9.04 12.85 5.78 1.20 46 2 1 1 1 1.17 285.47 83.26 0.00 0.00 0.00 0.00 47 -2 1 1 1 Series 47-root.Stomps2010.156 47 -1 1 1 1 46 1 47 1 1 3 0 47 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 47 1 1 1 1 9.34 71.27 10.78 0.00 0.00 0.00 0.00 48 -2 1 1 1 Series 48-root.Stomps2010.156 48 -1 1 1 1 46 1 48 1 1 3 0 48 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 48 1 1 1 1 2.42 49.49 38.56 0.00 0.00 0.00 0.00 49 -2 1 1 1 Series 49-root.Stomps2010.156 49 -1 1 1 1 46 1 49 1 1 3 0 49 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 49 1 1 1 1 11.84 243.89 12.69 0.00 0.00 0.00 0.00 50 -2 1 1 1 Series 50-root.Stomps2010.156 50 -1 1 1 1 46 1 50 2 2 3 0 50 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 50 1 1 1 1 13.16 100.01 26.51 2.42 11.84 1.17 0.00 50 2 1 1 1 1.90 166.37 81.35 0.00 0.00 0.00 0.00 51 -2 1 1 1 Series 51-root.Stomps2010.156 51 -1 1 1 1 50 1 51 1 1 3 0 51 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 51 1 1 1 1 8.13 57.25 2.11 0.00 0.00 0.00 0.00 52 -2 1 1 1 Series 52-root.Stomps2010.156 52 -1 1 1 1 50 1 52 1 1 3 0 52 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 52 1 1 1 1 12.67 130.45 13.97 0.00 0.00 0.00 0.00 53 -2 1 1 1 Series 53-root.Stomps2010.156 53 -1 1 1 1 50 1 53 1 1 3 0 53 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 53 1 1 1 1 3.99 317.51 -1.32 0.00 0.00 0.00 0.00 54 -2 1 1 1 Series 54-root.Stomps2010.156 54 -1 1 1 1 50 1 54 1 1 3 0 54 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 54 1 1 1 1 19.28 267.26 2.35 0.00 0.00 0.00 0.00 55 -2 1 1 1 Series 55-root.Stomps2010.156 55 -1 1 1 1 50 1 55 1 1 3 0 55 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 55 1 1 1 1 21.11 253.50 1.62 0.00 0.00 0.00 0.00 56 -2 1 1 1 Series 56-root.Stomps2010.156 56 -1 1 1 1 50 1 56 1 1 3 0 56 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 56 1 1 1 1 9.96 231.20 -18.11 0.00 0.00 0.00 0.00 57 -2 1 1 1 Series 57-root.Stomps2010.156 57 -1 1 1 1 50 1 57 2 2 3 0 57 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 57 1 1 1 1 14.46 143.40 8.27 8.13 9.96 1.90 0.00 57 2 1 1 1 1.58 136.04 69.16 0.00 0.00 0.00 0.00 58 -2 1 1 1 Series 58-root.Stomps2010.156 58 -1 1 1 1 57 1 58 1 1 3 0 58 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 58 1 1 1 1 0.84 60.88 -88.10 0.00 0.00 0.00 0.00 59 -2 1 1 1 Series 59-root.Stomps2010.156 59 -1 1 1 1 57 1 59 1 1 3 0 59 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 59 1 1 1 1 14.26 76.52 8.06 0.00 0.00 0.00 0.00 60 -2 1 1 1 Series 60-root.Stomps2010.156 60 -1 1 1 1 57 1 60 1 1 3 0 60 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 60 1 1 1 1 21.27 134.46 4.37 0.00 0.00 0.00 0.00 61 -2 1 1 1 Series 61-root.Stomps2010.156 61 -1 1 1 1 57 1 61 1 1 3 0 61 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 61 1 1 1 1 18.97 111.83 8.27 0.00 0.00 0.00 0.00 62 -2 1 1 1 Series 62-root.Stomps2010.156 62 -1 1 1 1 57 1 62 1 1 3 0 62 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 62 1 1 1 1 9.40 17.59 12.23 0.00 0.00 0.00 0.00 63 -2 1 1 1 Series 63-root.Stomps2010.156 63 -1 1 1 1 57 1 63 1 1 3 0 63 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 63 1 1 1 1 3.68 248.74 -18.99 0.00 0.00 0.00 0.00 64 -2 1 1 1 Series 64-root.Stomps2010.156 64 -1 1 1 1 57 1 64 1 1 3 0 64 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 64 1 1 1 1 7.18 225.66 -16.64 0.00 0.00 0.00 0.00 65 -2 1 1 1 Series 65-root.Stomps2010.156 65 -1 1 1 1 57 1 65 1 1 3 0 65 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 65 1 1 1 1 12.39 204.51 -26.43 0.00 0.00 0.00 0.00 66 -2 1 1 1 Series 66-root.Stomps2010.156 66 -1 1 1 1 57 1 66 1 1 3 0 66 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 66 1 1 1 1 16.36 185.07 -21.04 0.00 0.00 0.00 0.00 67 -2 1 1 1 Series 67-root.Stomps2010.156 67 -1 1 1 1 57 1 67 1 1 3 0 67 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 67 1 1 1 1 17.98 165.25 -10.43 0.00 0.00 0.00 0.00 68 -2 1 1 1 Series 68-root.Stomps2010.156 68 -1 1 1 1 57 1 68 2 2 3 0 68 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 68 1 1 1 1 11.00 138.49 13.34 14.26 7.18 1.58 0.84 68 2 1 1 1 18.00 236.03 -37.04 0.00 0.00 0.00 0.00 69 -2 1 1 1 Series 69-root.Stomps2010.156 69 -1 1 1 1 68 1 69 1 1 3 0 69 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 69 1 1 1 1 13.79 33.32 -1.65 0.00 0.00 0.00 0.00 70 -2 1 1 1 Series 70-root.Stomps2010.156 70 -1 1 1 1 68 1 70 1 1 3 0 70 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 70 1 1 1 1 12.64 196.34 -39.64 0.00 0.00 0.00 0.00 71 -2 1 1 1 Series 71-root.Stomps2010.156 71 -1 1 1 1 68 1 71 1 1 3 0 71 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 71 1 1 1 1 15.78 146.83 -25.36 0.00 0.00 0.00 0.00 72 -2 1 1 1 Series 72-root.Stomps2010.156 72 -1 1 1 1 68 1 72 1 1 3 0 72 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 72 1 1 1 1 16.36 124.34 -16.70 0.00 0.00 0.00 0.00 73 -2 1 1 1 Series 73-root.Stomps2010.156 73 -1 1 1 1 68 1 73 1 1 3 0 73 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 73 1 1 1 1 11.77 91.39 -5.76 0.00 0.00 0.00 0.00 74 -2 1 1 1 Series 74-root.Stomps2010.156 74 -1 1 1 1 68 1 74 1 1 3 0 74 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 74 1 1 1 1 13.48 65.81 -1.47 0.00 0.00 0.00 0.00 75 -2 1 1 1 Series 75-root.Stomps2010.156 75 -1 1 1 1 68 1 75 2 2 3 0 75 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 75 1 1 1 1 19.39 45.15 -3.39 13.79 16.36 0.00 0.00 75 2 1 1 1 7.24 81.09 -21.44 0.00 0.00 0.00 0.00 76 -2 1 1 1 Series 76-root.Stomps2010.156 76 -1 1 1 1 75 1 76 1 1 3 0 76 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 76 1 1 1 1 10.48 169.33 -0.49 0.00 0.00 0.00 0.00 77 -2 1 1 1 Series 77-root.Stomps2010.156 77 -1 1 1 1 75 1 77 1 1 3 0 77 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 77 1 1 1 1 7.11 145.68 -3.96 0.00 0.00 0.00 0.00 78 -2 1 1 1 Series 78-root.Stomps2010.156 78 -1 1 1 1 75 1 78 1 1 3 0 78 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 78 1 1 1 1 8.47 181.58 1.18 0.00 0.00 0.00 0.00 79 -2 1 1 1 Series 79-root.Stomps2010.156 79 -1 1 1 1 75 1 79 6 6 3 0 79 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 79 1 1 1 1 12.26 180.65 0.88 7.24 8.47 0.00 0.00 79 2 1 1 1 9.37 135.07 -31.89 1.92 0.00 1.15 0.92 79 3 1 1 1 16.12 64.36 8.82 2.94 1.16 3.69 0.33 79 4 1 1 1 20.53 206.33 -0.25 0.00 4.09 1.48 0.60 79 5 1 1 1 23.08 215.55 -11.66 0.00 1.97 3.70 1.85 79 6 1 1 1 8.32 347.73 84.55 0.00 0.00 0.00 0.00 80 -2 1 1 1 Series 80-root.Stomps2010.156 80 -1 1 1 1 79 5 80 1 1 3 0 80 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 80 1 1 1 1 28.39 21.09 54.31 0.00 0.00 0.00 0.00 81 -2 1 1 1 Series 81-root.Stomps2010.156 81 -1 1 1 1 79 5 81 1 1 3 0 81 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 81 1 1 1 1 13.96 5.78 59.65 0.00 0.00 0.00 0.00 82 -2 1 1 1 Series 82-root.Stomps2010.156 82 -1 1 1 1 79 5 82 1 1 3 0 82 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 82 1 1 1 1 6.22 308.64 2.64 0.00 0.00 0.00 0.00 83 -2 1 1 1 Series 83-root.Stomps2010.156 83 -1 1 1 1 79 5 83 1 1 3 0 83 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 83 1 1 1 1 2.88 126.87 -0.08 0.00 0.00 0.00 0.00 84 -2 1 1 1 Series 84-root.Stomps2010.156 84 -1 1 1 1 79 5 84 1 1 3 0 84 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 84 1 1 1 1 12.78 2.78 10.78 0.00 0.00 0.00 0.00 85 -2 1 1 1 Series 85-root.Stomps2010.156 85 -1 1 1 1 79 5 85 1 1 3 0 85 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 85 1 1 1 1 8.89 47.24 13.35 0.00 0.00 0.00 0.00 86 -2 1 1 1 Series 86-root.Stomps2010.156 86 -1 1 1 1 79 5 86 3 3 3 0 86 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 86 1 1 1 1 9.44 335.64 -7.14 6.22 8.89 8.32 0.00 86 2 1 1 1 11.12 24.72 -1.45 2.88 10.43 0.85 1.76 86 3 1 1 1 4.37 249.91 1.05 0.00 0.00 0.00 0.00 87 -2 1 1 1 Series 87-root.Stomps2010.156 87 -1 1 1 1 86 2 87 1 1 3 0 87 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 87 1 1 1 1 8.10 250.85 -8.28 0.00 0.00 0.00 0.00 88 -2 1 1 1 Series 88-root.Stomps2010.156 88 -1 1 1 1 86 2 88 1 1 3 0 88 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 88 1 1 1 1 13.30 272.44 -5.31 0.00 0.00 0.00 0.00 89 -2 1 1 1 Series 89-root.Stomps2010.156 89 -1 1 1 1 86 2 89 1 1 3 0 89 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 89 1 1 1 1 6.48 355.73 15.32 0.00 0.00 0.00 0.00 90 -2 1 1 1 Series 90-root.Stomps2010.156 90 -1 1 1 1 86 2 90 1 1 3 0 90 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 90 1 1 1 1 5.94 166.36 4.29 0.00 0.00 0.00 0.00 91 -2 1 1 1 Series 91-root.Stomps2010.156 91 -1 1 1 1 86 2 91 1 1 3 0 91 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 91 1 1 1 1 3.36 123.70 9.29 0.00 0.00 0.00 0.00 92 -2 1 1 1 Series 92-root.Stomps2010.156 92 -1 1 1 1 86 2 92 1 1 3 0 92 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 92 1 1 1 1 11.33 58.99 17.00 0.00 0.00 0.00 0.00 93 -2 1 1 1 Series 93-root.Stomps2010.156 93 -1 1 1 1 86 2 79 2 2 3 0 93 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 93 1 1 1 1 7.38 57.21 18.23 6.48 5.94 0.00 0.00 93 2 1 1 1 7.67 7.48 10.35 6.38 3.28 1.65 0.81 94 -2 1 1 1 Series 94-root.Stomps2010.156 94 -1 1 1 1 79 5 94 2 2 3 0 94 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 94 1 1 1 1 26.57 217.53 -1.21 2.87 6.26 7.77 1.77 94 2 1 1 1 5.20 168.58 89.34 0.00 0.00 0.00 0.00 95 -2 1 1 1 Series 95-root.Stomps2010.156 95 -1 1 1 1 94 1 95 1 1 3 0 95 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 95 1 1 1 1 3.24 326.10 -70.36 0.00 0.00 0.00 0.00 96 -2 1 1 1 Series 96-root.Stomps2010.156 96 -1 1 1 1 94 1 96 1 1 3 0 96 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 96 1 1 1 1 3.36 122.99 2.33 0.00 0.00 0.00 0.00 97 -2 1 1 1 Series 97-root.Stomps2010.156 97 -1 1 1 1 94 1 97 1 1 3 0 97 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 97 1 1 1 1 2.53 305.41 4.40 0.00 0.00 0.00 0.00 98 -2 1 1 1 Series 98-root.Stomps2010.156 98 -1 1 1 1 94 1 98 1 1 3 0 98 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 98 1 1 1 1 6.56 288.23 -24.69 0.00 0.00 0.00 0.00 99 -2 1 1 1 Series 99-root.Stomps2010.156 99 -1 1 1 1 94 1 99 2 2 3 0 99 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 99 1 1 1 1 30.49 224.85 -3.52 3.36 2.53 5.20 3.24 99 2 1 1 1 9.61 60.65 84.14 0.00 0.00 0.00 0.00 100 -2 1 1 1 Series 100-root.Stomps2010.156 100 -1 1 1 1 99 1 100 1 1 3 0 100 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 100 1 1 1 1 1.35 156.45 -84.56 0.00 0.00 0.00 0.00 101 -2 1 1 1 Series 101-root.Stomps2010.156 101 -1 1 1 1 99 1 101 1 1 3 0 101 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 101 1 1 1 1 8.40 93.49 4.69 0.00 0.00 0.00 0.00 102 -2 1 1 1 Series 102-root.Stomps2010.156 102 -1 1 1 1 99 1 102 1 1 3 0 102 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 102 1 1 1 1 5.86 234.83 -3.69 0.00 0.00 0.00 0.00 103 -2 1 1 1 Series 103-root.Stomps2010.156 103 -1 1 1 1 99 1 103 1 1 3 0 103 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 103 1 1 1 1 4.04 260.71 -3.89 0.00 0.00 0.00 0.00 104 -2 1 1 1 Series 104-root.Stomps2010.156 104 -1 1 1 1 99 1 104 3 3 3 0 104 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 104 1 1 1 1 24.02 123.82 -0.07 8.40 5.86 9.61 1.35 104 2 1 1 1 4.42 102.73 6.02 2.68 2.81 0.73 1.58 104 3 1 1 1 5.82 215.29 86.87 0.00 0.00 0.00 0.00 105 -2 1 1 1 Series 105-root.Stomps2010.156 105 -1 1 1 1 104 2 105 1 1 3 0 105 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 105 1 1 1 1 1.89 138.88 -83.24 0.00 0.00 0.00 0.00 106 -2 1 1 1 Series 106-root.Stomps2010.156 106 -1 1 1 1 104 2 106 1 1 3 0 106 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 106 1 1 1 1 2.49 19.37 -22.90 0.00 0.00 0.00 0.00 107 -2 1 1 1 Series 107-root.Stomps2010.156 107 -1 1 1 1 104 2 107 1 1 3 0 107 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 107 1 1 1 1 2.24 258.65 -1.29 0.00 0.00 0.00 0.00 108 -2 1 1 1 Series 108-root.Stomps2010.156 108 -1 1 1 1 104 2 108 1 1 3 0 108 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 108 1 1 1 1 9.41 211.73 -13.20 0.00 0.00 0.00 0.00 109 -2 1 1 1 Series 109-root.Stomps2010.156 109 -1 1 1 1 104 2 109 2 2 3 0 109 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 109 1 1 1 1 10.68 162.10 12.16 2.49 2.24 5.82 1.89 109 2 1 1 1 6.08 144.35 82.26 0.00 0.00 0.00 0.00 110 -2 1 1 1 Series 110-root.Stomps2010.156 110 -1 1 1 1 109 1 110 1 1 3 0 110 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 110 1 1 1 1 3.80 51.56 -4.48 0.00 0.00 0.00 0.00 111 -2 1 1 1 Series 111-root.Stomps2010.156 111 -1 1 1 1 109 1 111 1 1 3 0 111 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 111 1 1 1 1 8.28 8.46 -30.58 0.00 0.00 0.00 0.00 112 -2 1 1 1 Series 112-root.Stomps2010.156 112 -1 1 1 1 109 1 112 1 1 3 0 112 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 112 1 1 1 1 6.19 227.67 9.87 0.00 0.00 0.00 0.00 113 -2 1 1 1 Series 113-root.Stomps2010.156 113 -1 1 1 1 109 1 113 3 3 3 0 113 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 113 1 1 1 1 12.55 151.10 -2.14 3.80 6.19 6.08 0.00 113 2 1 1 1 26.21 112.92 -7.27 2.42 10.27 6.31 5.42 113 3 1 1 1 13.28 205.56 46.99 0.00 0.00 0.00 0.00 114 -2 1 1 1 Series 114-root.Stomps2010.156 114 -1 1 1 1 113 2 114 1 1 3 0 114 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 114 1 1 1 1 3.40 50.47 6.37 0.00 0.00 0.00 0.00 115 -2 1 1 1 Series 115-root.Stomps2010.156 115 -1 1 1 1 113 2 115 1 1 3 0 115 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 115 1 1 1 1 20.50 217.24 10.44 0.00 0.00 0.00 0.00 116 -2 1 1 1 Series 116-root.Stomps2010.156 116 -1 1 1 1 113 2 116 1 1 3 0 116 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 116 1 1 1 1 9.50 180.43 -22.41 0.00 0.00 0.00 0.00 117 -2 1 1 1 Series 117-root.Stomps2010.156 117 -1 1 1 1 113 2 117 3 3 3 0 117 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 117 1 1 1 1 26.69 164.00 -1.74 3.40 20.50 13.28 0.00 117 2 1 1 1 29.35 155.72 4.26 8.67 15.33 10.78 2.29 117 3 1 1 1 7.88 16.66 78.68 0.00 0.00 0.00 0.00 118 -2 1 1 1 Series 118-root.Stomps2010.156 118 -1 1 1 1 117 2 118 1 1 3 0 118 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 118 1 1 1 1 12.75 20.72 8.50 0.00 0.00 0.00 0.00 119 -2 1 1 1 Series 119-root.Stomps2010.156 119 -1 1 1 1 117 2 119 1 1 3 0 119 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 119 1 1 1 1 22.88 11.37 8.03 0.00 0.00 0.00 0.00 120 -2 1 1 1 Series 120-root.Stomps2010.156 120 -1 1 1 1 117 2 120 1 1 3 0 120 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 120 1 1 1 1 12.85 341.31 -24.55 0.00 0.00 0.00 0.00 121 -2 1 1 1 Series 121-root.Stomps2010.156 121 -1 1 1 1 117 2 121 1 1 3 0 121 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 121 1 1 1 1 10.62 250.76 11.74 0.00 0.00 0.00 0.00 122 -2 1 1 1 Series 122-root.Stomps2010.156 122 -1 1 1 1 117 2 122 2 2 3 0 122 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 122 1 1 1 1 25.13 121.70 -2.35 12.75 10.62 7.88 0.00 122 2 1 1 1 10.42 230.52 63.69 0.00 0.00 0.00 0.00 123 -2 1 1 1 Series 123-root.Stomps2010.156 123 -1 1 1 1 122 1 123 1 1 3 0 123 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 123 1 1 1 1 4.46 64.45 20.49 0.00 0.00 0.00 0.00 124 -2 1 1 1 Series 124-root.Stomps2010.156 124 -1 1 1 1 122 1 124 1 1 3 0 124 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 124 1 1 1 1 21.37 240.88 10.60 0.00 0.00 0.00 0.00 125 -2 1 1 1 Series 125-root.Stomps2010.156 125 -1 1 1 1 122 1 125 1 1 3 0 125 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 125 1 1 1 1 7.43 219.87 -41.05 0.00 0.00 0.00 0.00 126 -2 1 1 1 Series 126-root.Stomps2010.156 126 -1 1 1 1 122 1 126 1 1 3 0 126 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 126 1 1 1 1 13.88 306.45 1.63 0.00 0.00 0.00 0.00 127 -2 1 1 1 Series 127-root.Stomps2010.156 127 -1 1 1 1 122 1 127 3 3 3 0 127 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 127 1 1 1 1 24.15 166.99 -8.72 4.46 21.37 10.42 0.00 127 2 1 1 1 13.32 166.43 10.48 10.07 14.40 12.51 2.00 127 3 1 1 1 10.21 24.34 77.78 0.00 0.00 0.00 0.00 128 -2 1 1 1 Series 128-root.Stomps2010.156 128 -1 1 1 1 127 2 128 1 1 3 0 128 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 128 1 1 1 1 4.83 73.85 6.03 0.00 0.00 0.00 0.00 129 -2 1 1 1 Series 129-root.Stomps2010.156 129 -1 1 1 1 127 2 129 1 1 3 0 129 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 129 1 1 1 1 18.29 273.95 11.43 0.00 0.00 0.00 0.00 130 -2 1 1 1 Series 130-root.Stomps2010.156 130 -1 1 1 1 127 2 130 1 1 3 0 130 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 130 1 1 1 1 7.37 295.21 -41.78 0.00 0.00 0.00 0.00 131 -2 1 1 1 Series 131-root.Stomps2010.156 131 -1 1 1 1 127 2 131 1 1 3 0 131 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 131 1 1 1 1 6.22 273.00 -17.88 0.00 0.00 0.00 0.00 132 -2 1 1 1 Series 132-root.Stomps2010.156 132 -1 1 1 1 127 2 132 3 3 3 0 132 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 132 1 1 1 1 28.90 187.39 16.45 4.83 18.29 10.21 0.00 132 2 1 1 1 22.48 192.12 5.14 10.63 9.58 3.41 4.30 132 3 1 1 1 1.68 236.12 77.50 0.00 0.00 0.00 0.00 133 -2 1 1 1 Series 133-root.Stomps2010.156 133 -1 1 1 1 132 2 133 1 1 3 0 133 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 133 1 1 1 1 14.53 61.99 5.51 0.00 0.00 0.00 0.00 134 -2 1 1 1 Series 134-root.Stomps2010.156 134 -1 1 1 1 132 2 134 1 1 3 0 134 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 134 1 1 1 1 12.99 115.95 8.99 0.00 0.00 0.00 0.00 135 -2 1 1 1 Series 135-root.Stomps2010.156 135 -1 1 1 1 132 2 135 1 1 3 0 135 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 135 1 1 1 1 6.66 254.02 -22.06 0.00 0.00 0.00 0.00CaveConverter_src/test/data/regression/0105_Riano_in.svx0000644000000000000000000026207112560565156022231 0ustar rootroot;RIANO 0105 ;Footleg - Aug. 2011 *BEGIN 0105_Riano *EXPORT UpperLevels.182 ;Link to Uzueka 2nd River Inlet ;*FIX UpperLevels.182 452614.61 4800220.98 154.31 ;Force to position Survex gives when included in full 4 valleys system *EQUATE Entrance.781 RianoEntranceArea-100221.LowerEntMaze.35 *EQUATE Entrance.785 RianoEntranceArea-100221.LowerEntMaze.1 *equate RianoEntranceArea-100221.UpperEntMaze.22 HSC.Feb10c.6a *equate Entrance.793 HSC.Easter09.0 *equate Entrance.815 ExtnOffEntranceInlet.815 *equate Entrance.819 DownStream.755 *equate DownStream.28 DownStreamExtn.28 *equate DownStream.28 TornoInlet.28 *EQUATE DownStreamExtn.641 DownstreamUpper.FriedEggOnAStick.1 *EQUATE DownStreamExtn.651 DownstreamUpper.FriedEggOnAStick.17 ;*EQUATE DownStreamExtn.695 DownstreamUpper.Oxbow.11 *EQUATE TornoInlet.563 DownstreamUpper.Oxbow.20a *equate TornoInlet.623 Riano2006-12-10.1 *equate TornoInlet.639 Riano2006-12-11.1 *equate Riano2006-12-11.106 Riano_Easter2007.Riano_070331.106 *equate Riano2006-12-11.49 Riano_Easter2007.Riano_070404b.17 *equate Riano2006-12-11.68 Riano_Easter2007.Riano_070331.13a *equate Entrance.808 DryMazeLink.808 *equate HighRift.423 DryMaze.474 *equate DryMazeLink.227 HighRift.227 *equate DryMazeLink.231 DryMaze.231 *equate DryMazeLink.231 DormouseInlet.231 *equate DryMazeLink.231 UpStream.DoubleBarrelPassage.41a *equate UpStream.DoubleBarrelPassage.23 EnergeticBTLegs.1 *equate EnergeticBTLegs.35 SparkleHall.0 *equate UpStream.RopeLoopAvenPassage.134 UpperLevels.134 *equate UpStream.UpperLevelLink.0 UpperLevels.144 *equate UpStream.CatPrintPassage.121 UpperLevels.121 *BEGIN RianoEntranceArea-100221 *EXPORT LowerEntMaze.1 LowerEntMaze.35 UpperEntMaze.22 *date 2010.02.21 ;Footleg, Paul Dold, Alistair Smith ;DistoX: WSCC *CALIBRATE declination 2.0 *EQUATE LowerEntMaze.3 UpperEntMaze.3 *BEGIN LowerEntMaze *EXPORT 1 3 35 1 2 8.15 220.26 -2.02 *FLAGS splay 2 2a 1.00 285.07 7.18 *FLAGS not splay 2 3 6.41 225.07 5.13 2 25 4.58 294.52 9.74 *FLAGS splay 25 25a 1.05 191.12 4.76 25 25b 1.66 259.45 3.19 *FLAGS not splay 25 26 4.10 217.40 2.20 26 27 7.86 292.25 1.39 *FLAGS splay 27 27a 0.77 247.47 -5.34 *FLAGS not splay 27 28 3.03 228.11 -3.14 *FLAGS splay 28 28a 0.89 237.86 3.24 28 28b 0.81 17.98 5.37 28 28c 3.31 277.29 -0.23 *FLAGS not splay 28 29 3.71 216.86 18.56 *FLAGS splay 29 29a 1.74 90.34 -18.51 29 29b 1.61 120.15 -3.95 *FLAGS not splay 29 30 4.08 103.92 -6.09 *FLAGS splay 30 30a 0.68 21.17 -8.71 *FLAGS not splay 30 31 3.79 84.96 -7.99 *FLAGS splay 31 31a 0.64 56.30 4.95 31 31b 0.92 319.56 11.88 31 31c 0.65 87.86 -0.04 31 31d 1.54 201.12 -5.92 31 31e 1.73 158.07 -12.22 31 31f 1.18 136.82 -20.51 31 31g 0.88 121.01 -2.89 31 31h 4.59 201.13 4.89 *FLAGS not splay 31 32 4.64 99.01 12.08 32 33 1.30 76.29 -0.03 33 3 1.44 105.67 -81.51 30 34 10.38 220.58 3.57 *FLAGS splay 34 34a 1.41 24.32 -30.22 *FLAGS not splay 34 35 1.67 4.11 -59.34 *FLAGS splay 35 35a 0.99 112.52 -0.20 35 35b 1.10 170.43 3.30 *FLAGS not splay 35 36 4.39 121.59 -2.68 36 37 2.92 105.83 1.20 37 38 4.27 30.29 -5.23 *FLAGS splay 38 38a 1.37 140.33 1.49 *FLAGS not splay 38 39 1.38 116.83 0.30 39 40 6.11 31.48 1.73 40 33 3.83 56.70 23.30 40 31 3.79 308.61 9.16 29 41 4.61 291.84 -2.93 41 42 4.54 292.51 -5.49 *FLAGS splay 42 42a 2.05 77.70 12.27 42 42b 2.06 178.04 4.36 42 42c 4.01 212.54 2.97 42 42d 8.68 226.31 4.45 42 42e 4.27 276.30 0.46 42 42f 3.73 286.88 0.37 42 42g 1.08 15.18 6.05 42 42h 3.71 326.89 -3.03 *FLAGS not splay 42 43 8.78 219.84 3.81 27 46 0.93 10.75 -37.55 46 47 7.83 289.96 2.36 42 48 4.12 321.31 -2.27 48 49 4.73 64.03 -4.41 48 50 7.51 279.02 -0.58 *FLAGS splay 50 50a 1.06 357.82 -2.07 50 50b 0.79 282.67 8.67 *FLAGS not splay 50 51 1.42 227.38 28.37 *FLAGS splay 51 51a 0.41 166.32 -26.57 51 51b 0.66 61.74 -24.08 51 51c 0.69 247.84 -21.79 *FLAGS not splay 51 52 5.46 213.54 -1.97 52 53 2.32 198.69 13.00 53 54 1.92 236.57 -3.69 *FLAGS splay 54 54a 1.26 122.73 12.64 54 54b 2.14 284.35 6.64 54 54c 0.97 265.69 11.27 54 54d 1.86 348.79 -1.18 54 54e 2.48 332.98 0.01 54 54f 3.37 320.69 5.00 *FLAGS not splay 54 55 3.51 299.99 5.50 *FLAGS splay 54 54a 1.59 102.18 4.58 *FLAGS not splay 51 56 3.68 289.94 -3.83 56 57 2.47 282.06 0.54 *FLAGS splay 57 57a 2.03 141.90 5.92 57 57b 1.73 162.20 4.76 57 57c 1.97 228.89 10.73 57 57d 2.78 248.27 8.88 57 57e 2.29 269.24 3.30 57 57f 1.16 287.08 -5.23 *FLAGS not splay 57 58 1.63 288.51 -8.31 58 59 3.42 288.32 -0.51 59 60 1.24 272.12 2.44 60 61 2.61 213.84 1.28 *FLAGS splay 61 61a 3.35 278.37 1.49 *FLAGS not splay *data passage station left right up down 1 0.84 1.29 1.1 0.7 2 0.84 1.29 1.39 0.51 3 0.79 1.79 1.54 0.85 *data passage station left right up down 2 0.84 1.29 1.39 0.51 25 0.43 1.38 0.71 0.77 26 0.46 1.05 0.58 0.66 27 1.21 1.69 0.0 0.0 28 1.31 2.66 0.0 0.0 29 0.97 0.81 0.0 1.18 *data passage station left right up down 29 0.81 0.97 0.0 1.18 30 0.64 0.99 0.62 0.89 31 0.0 1.52 1.16 0.67 32 0.89 0.59 0.0 2.48 3 1.79 0.79 1.54 0.85 *data passage station left right up down 30 0.64 0.99 0.62 0.89 34 0.0 1.27 0.26 1.66 35 0.65 0.49 1.6 0.36 36 0.77 0.0 0.58 0.24 37 1.05 0.48 0.22 0.24 38 1.01 0.85 0.45 0.43 39 0.86 3.11 1.25 0.38 40 0.69 0.53 1.01 0.87 3 1.79 0.79 1.54 0.85 *data passage station left right up down 31 0.0 1.52 1.16 0.67 40 0.69 0.53 1.01 0.87 *data passage station left right up down 29 0.97 0.81 0.0 1.18 41 0.0 1.17 0.56 0.79 42 1.48 5.0 1.5 0.0 43 1.48 1.08 1.0 0.0 *data passage station left right up down 27 1.21 1.69 0.0 0.0 46 1.2 0.5 0.3 0.2 47 0.5 0.5 0.3 0.2 *data passage station left right up down 48 0.47 0.78 0.27 0.49 49 0.5 0.5 0.3 0.2 *data passage station left right up down 42 0.0 1.52 1.5 0.0 48 0.47 0.78 0.27 0.49 50 0.0 1.28 0.52 0.3 51 0.3 0.69 0.0 0.63 52 0.74 0.38 0.42 0.0 53 0.46 0.9 0.29 0.33 54 0.45 1.68 0.42 0.0 54 0.0 2.24 0.42 0.0 55 0.5 1.0 0.42 0.0 *data passage station left right up down 51 0.3 0.69 0.0 0.63 56 0.55 0.0 0.33 0.3 57 1.45 0.22 0.29 0.22 58 0.33 0.83 0.19 0.27 59 0.63 0.66 0.22 0.1 60 0.73 0.0 0.22 0.1 61 0.71 0.45 0.23 0.22 *END LowerEntMaze *BEGIN UpperEntMaze *EXPORT 3 22 3 4 3.85 168.05 72.56 *FLAGS splay 4 4a 1.63 193.09 7.07 4 4b 2.58 301.81 1.77 4 4c 1.58 16.19 12.00 4 4d 1.38 227.95 4.81 *FLAGS not splay 4 5 4.76 203.06 0.22 *FLAGS splay 5 5a 3.39 77.20 5.39 5 5b 4.04 178.35 -0.26 5 5c 5.88 208.72 1.73 5 5d 2.77 31.64 4.80 5 5e 3.95 234.15 1.14 *FLAGS not splay 5 6 5.16 222.96 4.51 *FLAGS splay 6 6a 1.63 261.07 16.38 6 6b 1.29 281.66 18.89 *FLAGS not splay 6 7 5.20 273.33 17.24 *FLAGS splay 7 7a 3.58 240.90 9.83 7 7b 3.85 315.14 8.39 *FLAGS not splay 7 8 7.49 287.85 5.16 *FLAGS splay 8 8a 1.98 274.78 -0.05 8 8b 4.34 146.15 -1.50 8 8c 3.49 160.63 -0.10 8 8d 1.99 309.49 -1.12 *FLAGS not splay 5 9 5.41 109.63 3.04 *FLAGS splay 9 9a 1.81 38.58 0.72 *FLAGS not splay 9 10 6.23 202.78 -4.94 *FLAGS splay 10 10a 0.57 79.48 3.95 10 10b 2.08 219.49 -5.23 10 10c 2.70 223.78 -2.51 *FLAGS not splay 10 11 3.91 220.40 -2.48 10 12 5.24 112.34 4.31 12 13 6.63 90.15 -0.64 13 14 5.34 93.43 -2.13 14 15 2.97 96.19 -0.41 *FLAGS splay 15 15a 0.59 235.79 1.46 *FLAGS not splay 15 16 6.64 64.03 -0.08 *FLAGS splay 16 16a 2.86 230.56 -3.75 16 16b 2.35 252.88 -4.71 *FLAGS not splay 16 17 2.52 114.04 10.29 *FLAGS splay 17 17a 1.16 56.48 -2.77 17 17b 1.34 78.04 -2.59 *FLAGS not splay 17 18 2.75 102.96 0.38 18 19 4.30 109.61 16.93 *FLAGS splay 19 19a 3.34 297.67 -7.98 19 19b 3.09 282.91 -8.29 *FLAGS not splay 17 20 4.01 71.94 -2.39 20 21 4.65 44.74 -5.64 *FLAGS splay 21 21a 1.55 42.07 1.17 *FLAGS not splay 21 22 2.32 46.08 0.40 4 23 1.72 292.26 6.26 23 24 8.36 280.02 1.95 *FLAGS splay 24 24a 0.44 138.27 5.06 24 24b 3.89 216.49 5.50 24 24c 8.10 215.85 4.56 24 24d 1.97 258.67 4.92 24 24e 1.72 262.30 4.64 24 24f 1.34 235.63 9.43 *FLAGS not splay *data passage station left right up down 4 0.48 1.57 0.98 0.0 5 2.75 1.56 0.98 0.0 6 1.38 1.48 0.61 0.21 7 1.72 0.94 0.86 0.29 8 1.23 1.96 0.32 0.19 *data passage station left right up down 5 2.75 1.56 0.98 0.0 9 1.49 0.4 0.0 0.4 10 0.88 0.9 0.65 0.25 12 0.27 0.61 0.31 0.7 13 0.0 0.67 0.99 0.63 14 0.36 0.23 0.96 0.33 15 0.85 0.65 0.39 0.44 16 0.0 0.45 1.1 0.48 17 0.92 0.0 0.49 0.65 18 0.43 0.3 0.85 0.5 19 0.79 0.53 0.2 0.0 *data passage station left right up down 10 0.88 0.9 0.65 0.25 11 0.3 0.3 0.0 0.25 *data passage station left right up down 17 0.92 0.0 0.49 0.65 20 0.43 0.0 0.29 0.0 21 0.44 0.0 0.7 0.0 22 0.10 0.10 0.3 0.0 *data passage station left right up down 4 0.48 1.57 0.98 4.55 23 0.0 1.95 0.39 0.21 24 4.85 0.35 0.97 0.0 *END UpperEntMaze *END RianoEntranceArea-100221 *BEGIN Entrance ;Resurvey of entrance series ;surveyors Various+LMills+PStacey+andy *date 1992.07.22 ;22/07/92 *EXPORT 793 781 785 808 815 819 *CALIBRATE declination 0 ;Magnetic deviation of 4.2 has already been subtracted from all these compass readings ;(Checked against original notes by Footleg 01/08/06) *FIX 0 451882 4800488 0156 *entrance 0 0 774 3.20 297.80 3 ;resurvey of entrance 774 775 4.80 32.80 -1 ;* 775 776 2.20 51.80 -18 ;* 776 777 4.10 75.80 -4 ;* 777 778 4.00 99.80 0 ;* 778 779 9.00 126.80 3 ;* 779 780 6.30 69.80 0 ;* 780 781 3.00 119.80 0 ; ;780 781 3.40 119.80 20 ;* ;781 782 4.30 34.80 23 ;* ;782 783 4.90 18.80 -13 ;* ;783 784 10.50 91.80 -10 ;* ;784 785 13.60 38.80 -4 ;* 785 786 23.10 91.80 0 ;* 786 787 5.80 26.80 0 ;* 787 788 20.80 112.80 0 ;* 788 789 7.80 27.80 16 ;* 789 790 11.10 93.80 -1 ;* 790 791 2.00 95.80 5 ;* 791 792 4.10 50.80 -5 ;* 792 793 5.90 109.80 3 ;* 793 794 6.60 121.80 -4 ;* 794 795 2.00 67.80 -14 ;* 795 796 7.60 119.80 0 ;* 796 797 3.40 105.80 -2 ;* 797 798 3.70 355.80 -1 ;* 798 799 10.40 25.80 -4 ;* 799 800 5.50 110.80 -1 ;* 800 801 7.60 14.80 1 ;* 801 802 5.30 83.80 -1 ;* 802 803 5.50 13.80 -4 ;* 803 804 5.70 37.80 10 ;* 804 805 5.00 133.80 -2 ;* 805 806 12.00 34.80 0 ;* 806 807 6.80 72.80 4 ;* 807 808 6.00 119.80 -4 ;* 808 809 13.10 19.80 -3 ;* 809 810 8.70 78.80 18 ;* 810 811 8.70 69.80 -6 ;* 811 812 3.10 94.80 -7 ;* 812 813 1.00 36.80 1 ;* 813 814 2.10 294.80 0 ;* 814 815 1.50 63.80 -2 ;* 815 816 3.00 - down ;* 816 817 8.50 19.80 7 ;* 817 818 15.70 85.80 -2 ;* 818 819 2.10 355.80 -10 ;* *END Entrance *BEGIN HSC ;Hey Splendid Crap Series *EXPORT Easter09.0 Feb10c.6a *EQUATE Feb10a.0 Easter09.50 *EQUATE Feb10b.1 Easter09.47 *EQUATE Feb10c.1 Easter09.51 *EQUATE Feb10d.1 Easter09.29 *EQUATE Feb10d.5 Easter09.37 *BEGIN Easter09 *EXPORT 0 29 37 47 50 51 *date 2009.04.17 ;Paul Dold, Nick Fincham ;DistoX: WSCC *CALIBRATE declination 2.08 0 1 4.41 85.63 56.45 1 2 2.57 17.44 8.88 2 3 6.09 17.23 -0.36 3 4 6.26 288.72 0.89 3 5 2.08 143.25 1.29 5 6 2.63 92.99 -6.53 1 7 1.92 171.25 38.92 7 8 4.09 118.81 8.07 8 9 6.84 102.75 6.73 7 10 3.61 220.79 21.43 10 11 1.78 180.39 16.50 11 12 15.03 195.29 0.32 ;12 12a 0.74 110.79 8.92 ;12 12b 6.01 17.32 2.01 ;12 12c 2.20 320.84 4.71 ;12 12d 3.83 49.89 -0.50 12 13 7.30 264.09 2.57 13 14 3.71 279.82 4.77 14 15 6.69 266.26 -26.44;(Full Dick And Champion chamber) ;15 15a 2.61 244.87 21.84 ;15 15b 3.37 292.48 11.33 ;15 15c 2.49 64.23 11.72 15 16 2.92 52.57 0.50 16 17 7.37 58.25 0.39 17 18 3.30 34.06 -4.56 ;18 18a 2.97 124.59 0.62 18 18b 7.76 126.15 1.14 ;18 18c 6.42 141.39 0.59 ;18 18d 2.76 240.68 7.36 ;18 18e 2.98 85.15 -2.52 18 19 4.75 270.79 2.04 19 20 5.16 306.51 4.31 20 21 2.77 223.43 -6.75 21 22 4.11 249.43 5.41 22 23 4.04 274.31 6.76 21 24 2.04 127.67 8.49 24 19 4.17 85.93 -6.08 15 26 4.82 275.34 11.68 26 27 9.44 283.93 -1.80 15 28 5.33 258.07 15.05 28 29 2.15 242.34 48.01 ;29 29a 2.22 320.50 -0.21 ;29 29b 1.40 89.26 -9.57 ;29 29c 1.67 157.78 9.94 ;dup10 29 30 4.36 106.01 -31.30 29 31 2.09 225.82 5.69 31 32 4.45 242.34 0.48 32 32a 3.19 303.43 6.37 32 32b 4.63 339.31 2.41 ;32 32c 3.10 30.34 2.17 ;32 32d 3.63 67.71 3.17 ;32 32e 3.21 100.79 -1.01 32 33 3.28 101.68 1.33 33 34 4.79 105.83 -13.72 34 35 2.37 121.27 -61.00 35 36 2.97 70.89 10.56 36 37 2.40 81.43 2.75 36 38 3.44 199.73 3.19 36 39 3.24 245.65 -25.94 39 40 3.12 126.45 -36.45 39 41 2.46 288.54 -19.63 41 42 2.83 297.90 27.96 42 43 1.84 310.43 50.44 43 44 7.35 226.90 12.38 44 45 1.07 265.82 18.38 45 46 2.40 112.23 14.37 46 47 2.52 132.69 26.44 ;47 47a 3.85 1.01 2.48 ;47 47b 10.34 296.43 3.28 ;47 47c 10.79 286.75 3.18 ;47 47d 2.68 266.70 5.84 47 48 2.50 63.09 0.33 ;48 48a 2.61 87.26 -2.01 48 49 4.48 87.14 -2.01 49 50 3.82 87.50 -4.52 43 51 1.80 310.46 50.33 ;dup10 51 52 8.85 287.98 -2.46 *data passage station left right up down 0 0.96 0.23 4.62 1.33 1 0.3 1.25 1.56 4.37 *data passage station left right up down 4 0.44 0.48 0.34 0.37 3 0.2 1.34 0.33 0.44 5 0.82 0.0 0.21 0.19 6 0.36 0.31 0.21 1.94 *data passage station left right up down 3 0.2 1.34 0.33 0.44 2 0.4 1.22 0.31 0.38 1 1.25 1 1.56 4.37 7 0.99 0.96 2.06 0.48 8 0.59 0.0 1.16 0.81 9 0.64 0.4 0.22 0.22 *data passage station left right up down 7 0.99 0.96 2.06 0.48 10 1.23 0.76 0.74 0.22 11 0.31 1.0 0.24 0.2 12 1.5 3.08 0.2 0.2 13 0.7 0.21 0.23 0.2 14 0.43 0.85 0.1 0.34 15 2.0 0.98 0.1 0.3 26 0.67 0.45 0.1 0.32 27 0.33 0.29 0.35 0.24 *data passage station left right up down 15 0.98 2.0 0.62 0.38 16 1.13 0.31 0.62 0.38 17 0.98 0.31 0.28 0.05 18 3.29 0.87 0.63 0.4 *data passage station left right up down 18b 3.29 0.87 0.63 0.4 18 3.29 0.87 0.63 0.4 19 0.2 1.54 0.63 0.4 20 1.6 0.0 0.1 0.26 21 1.6 0.6 0.76 0.0 22 0.39 0.58 0.46 0.26 23 0.3 0.3 0.2 0.2 *data passage station left right up down 21 0.6 1.6 0.76 0.0 24 1.05 0.0 0.23 0.27 19 1.54 0.2 0.63 0.4 *data passage station left right up down 15 0.98 2.0 0.62 0.38 28 0.6 0.85 2.12 0.0 29 1.65 2.01 0.2 0.36 31 0.24 1.25 0.2 0.36 32 0.9 0.52 0.2 0.36 ;*data passage station left right up down ;29 0.3 0.48 0.2 0.36 ;30 0.3 0.48 0.46 0.0 *data passage station left right up down 29 0.0 2.2 0.2 0.36 32b 1.5 0.0 0.2 0.36 32 3.02 0.52 0.2 0.36 *data passage station left right up down 32a 2.7 0.3 0.2 0.36 32 3.02 0.52 0.2 0.36 33 0.95 0.34 0.29 0.19 34 0.0 0.29 0.2 1.47 35 1.02 0.72 1.17 1.64 36 0.79 0.42 0.85 0.0 37 0.52 0.5 0.49 0.0 *data passage station left right up down 36 0.79 0.42 0.85 0.0 38 0.24 0.31 0.41 0.19 *data passage station left right up down 36 0.42 0.79 0.85 0.0 39 0.43 0.0 0.56 1.47 *data passage station left right up down 40 0.2 0.2 0.5 0.5 39 0.0 0.43 0.56 1.47 41 0.36 0.28 0.55 0.0 42 0.74 0.48 2.69 0.52 43 0.4 0.4 0.8 0.38 51 0.83 0.35 0.2 0.38 ;52 0.4 0.4 0.5 0.0 *data passage station left right up down 43 0.4 0.4 1.2 0.38 44 0.0 0.56 1.05 0.35 45 0.51 0.57 0.54 0.5 46 0.79 0.53 0.5 0.91 47 0.5 0.5 0.4 0.0 *data passage station left right up down ;47c 1.4 1.2 0.4 0.0 47 3.6 0.5 0.4 0.0 48 2.01 0.55 0.36 0.0 49 2.83 1.18 0.4 0.0 50 3.98 0.34 0.56 0.67 *END Easter09 *BEGIN Feb10a *EXPORT 0 *date 2010.02.20 ;Footleg, Paul Dold, Alistair Smith ;DistoX: WSCC *CALIBRATE declination 2.0 *FLAGS splay 0 0a 3.60 19.39 1.83 0 0b 2.26 258.92 8.38 0 0c 3.31 60.29 0.77 *FLAGS not splay 0 1 7.64 39.56 1.05 *FLAGS splay 1 1a 2.61 294.46 -3.66 1 1b 3.43 38.06 -4.26 1 1c 1.70 244.03 -4.59 1 1d 1.26 127.22 -0.31 1 1e 2.69 79.03 -3.86 *FLAGS not splay 1 2 11.76 68.75 -3.14 *FLAGS splay 2 2a 2.97 284.78 2.17 2 2b 7.59 267.07 2.39 2 2c 6.80 239.84 2.24 2 2d 2.84 105.35 0.09 2 2f 4.73 92.29 -1.79 *FLAGS not splay 2 3 4.98 96.29 -1.17 *data passage station left right up down 0 4.12 0.39 0.0 0.0 1 2.19 3.29 0.0 0.4 2 0.59 1.51 0.32 0.22 3 0.4 0.4 0.3 0 *END Feb10a *BEGIN Feb10b *EXPORT 1 *date 2010.02.20 ;Footleg, Paul Dold, Alistair Smith ;DistoX: WSCC *CALIBRATE declination 2.0 *FLAGS splay 1 1a 3.82 281.41 4.61 *FLAGS not splay 1 2 7.20 294.61 2.90 2 3 7.61 243.35 1.55 *FLAGS splay 3 3a 1.84 88.65 2.17 3 3b 3.95 281.27 3.75 3 3c 2.64 302.40 2.69 *FLAGS not splay 3 4 11.93 266.74 1.91 *FLAGS splay 4 4a 2.39 245.70 3.26 4 4b 5.96 254.92 3.14 4 4d 3.92 101.67 -1.88 4 4e 5.82 95.63 -1.84 4 4f 5.26 278.97 2.79 4 4g 4.10 69.65 -0.94 4 4h 0.46 79.90 -1.36 *FLAGS not splay 4 5 6.16 263.28 3.50 *data passage station left right up down 1 0.53 3.89 0.0 0.0 2 2.33 2.81 0.31 0.0 3 1.58 2.14 0.3 0.0 4 0.6 1.15 0.2 0.0 5 0.5 1.0 0.2 0.0 *END Feb10b *BEGIN Feb10c *EXPORT 1 6a *date 2010.02.20 ;Footleg, Paul Dold, Alistair Smith ;DistoX: WSCC *CALIBRATE declination 2.0 1 2 4.85 290.84 -5.22 *FLAGS splay 2 2a 1.08 215.13 1.88 *FLAGS not splay 2 3 3.70 282.61 -12.83 *FLAGS splay 3 3a 2.44 48.00 3.08 3 3b 3.49 71.63 -2.36 *FLAGS not splay 3 4 1.81 73.86 -29.80 4 5 4.27 304.24 21.71 5 6 7.17 294.87 1.50 6 6a 1.2 257 -45 6 7 5.02 300.46 -11.39 7 8 1.45 260.00 31.87 8 9 1.00 10.54 37.70 9 9a 3.15 263.37 4.02 9 10 1.81 95.46 -1.06 10 11 3.71 97.39 -3.31 11 12 8.03 102.41 -0.22 *FLAGS splay 12 12a 1.35 100.96 7.44 12 12b 1.34 95.06 5.60 12 12c 1.24 105.50 8.22 *FLAGS not splay *data passage station left right up down 1 0.85 0.35 1.2 0.3 2 3.34 0.43 0.66 1.15 3 1.24 0.5 2.8 2.25 4 0.99 0.47 1.95 1.35 5 0.49 1.2 0.84 1.88 6 0.57 0.85 0.65 0.83 7 0.49 0.0 0.91 0.0 8 0.59 0.0 1.04 0.81 9 1.14 0.0 0.45 1.38 9a 0.0 1.0 0.5 0.5 *data passage station left right up down 9 0.0 1.14 0.45 1.38 10 0.8 0.0 0.27 0.23 11 0.34 0.96 0.59 1.06 12 0.3 0.24 0.22 0.0 *END Feb10c *BEGIN Feb10d *EXPORT 1 5 *date 2010.02.20 ;Footleg, Paul Dold, Alistair Smith ;DistoX: WSCC *CALIBRATE declination 2.0 1 2 3.86 104.28 -29.69 2 3 3.71 105.63 -5.84 3 4 3.34 125.23 4.90 4 5 1.55 226.31 -1.87 *data passage station left right up down 1 1.32 1.53 0.0 0.0 2 0.2 0.4 1.01 0.0 3 0.25 0.73 0.39 0.0 4 0.67 0.77 0.78 0.0 *END Feb10d *END HSC *BEGIN ExtnOffEntranceInlet ;Extension at head of pitch in entrance series (Scan-08) ;surveyors unknown ;date unknown *EXPORT 815 *CALIBRATE declination 0 ;Magnetic deviation may have already been subtracted from all these compass readings ;as has been done for other sections? ;Moved start of this survey to the top of the pitch in the entrance series as I visited it ;on 30/07/06 and confirmed it goes off at pitch head, not below as previously tied in to survey ;Footleg 01/08/06 815 370 1.50 214.95 0 ;(Scan-08) 370 371 1.40 98.95 0 ;* 371 372 2.78 209.95 38 ;* 372 373 6.75 62.95 1 ;* 373 374 1.75 - up ;* 374 375 4.65 288.95 14 ;* 375 376 8.25 303.95 19 ;* 376 377 6.10 250.95 20 ;* 377 378 2.71 276.95 25 ;* 378 379 4.65 232.95 2 ;* 379 380 4.58 297.95 30 ;* 380 381 5.31 245.95 22 ;* *END ExtnOffEntranceInlet *BEGIN DownStream ;Downstream main streamway from junction with entrance series ;surveyors P.Stacey+K.Pollock *date 1991.08.09; 09/08/91 *EXPORT 28 740 755 *CALIBRATE declination 0 ;Magnetic deviation of 4.35 has already been subtracted from all these compass readings ;(Checked against original notes by Footleg 01/08/06) 28 699 10.80 311.15 0 ;* 699 700 7.00 265.65 -1 ;* 700 701 19.90 304.15 0 ;* 701 702 5.90 345.65 0 ;* 702 703 7.20 305.65 0 ;* 703 704 9.60 280.65 -2 ;* 704 705 6.60 282.65 0 ;* 705 706 4.50 239.65 0 ;* 706 707 14.00 307.65 0 ;* 707 708 2.40 .65 32 ;pitch at prev stn 708 709 9.60 296.65 0 ;* 709 710 5.30 292.65 -14 ;* 710 711 16.20 292.65 0 ;* 711 712 4.20 286.65 21 ;* 712 713 8.10 295.65 -1 ;* 713 714 2.50 228.65 0 ;* 714 715 5.40 320.65 0 ;* 715 716 4.60 305.65 0 ;* 716 717 7.30 312.15 -3 ;* 717 718 12.40 284.15 0 ;* 718 719 17.50 276.65 -1 ;* 719 720 10.00 200.65 0 ;* 720 721 10.20 225.65 8 ;* 721 722 12.70 268.65 -4 ;* 722 723 4.90 306.65 0 ;* 723 724 7.70 224.15 2 ;* 724 725 6.60 263.65 -2 ;* 725 726 13.30 286.65 -1 ;* 726 727 10.80 258.65 2 ;* 727 728 5.70 300.65 -13 ;* 728 729 3.30 345.65 0 ;* 729 730 7.30 294.15 -2 ;* 730 731 13.90 250.65 0 ;* 731 732 4.20 296.65 -48 ;* 732 733 2.90 285.65 -4 ;* 733 734 3.60 340.65 -47 ;* 734 735 8.30 306.37 29 ;* 735 736 3.80 223.65 24 ;* 736 737 6.30 304.65 -4 ;* 737 738 9.70 255.65 2 ;* 738 739 6.20 221.65 2 ;ldg above bldrs 739 756 8.60 262.65 -10 ;* 756 757 5.50 296.65 -34 ;* 757 758 13.50 285.65 -6 ;* 758 759 20.00 290.65 -1 ;* 759 760 20.00 305.65 -3 ;* 760 761 17.30 293.65 -1 ;* 761 762 7.80 304.65 -5 ;* 762 763 15.10 327.65 -3 ;* 763 764 14.90 281.65 0 ;* 764 765 20.00 281.65 -1 ;* 765 766 4.60 271.15 -5 ;* 761 767 17.50 149.65 10 ;* 767 768 3.00 177.65 -1 ;* 768 769 3.20 131.65 15 ;* 769 770 3.30 113.65 20 ;* 770 771 12.50 109.65 0 ;* 771 772 4.30 115.65 2 ;* 772 773 14.30 127.65 13 ;end of Pig Trotter Hall 739 820 11.50 265.80 -16 ;* 820 821 8.00 208.80 40 ;chamber 821 822 4.90 224.80 -2 ;* 822 823 6.10 181.80 -11 ;* 823 824 4.70 125.80 2 ;* 824 825 7.80 167.80 2 ;* 825 826 3.00 266.80 2 ;* 28 740 4.10 - up ;Stn 28 = base of 4m pitch in main stream 740 741 5.50 235.65 27 ;* 741 742 7.40 214.65 21 ;* 742 743 12.70 223.65 6 ;* 743 744 8.20 172.65 1 ;* 744 745 10.40 125.65 - ;* 745 746 13.40 103.65 1 ;* 746 747 9.70 118.15 1 ;* 747 748 10.00 212.65 37 ;* 748 749 6.50 254.65 5 ;* 749 750 6.70 181.65 25 ;* 750 751 9.70 117.65 4 ;* 751 752 8.60 106.65 -2 ;* 752 753 6.90 209.65 5 ;* 753 754 9.60 108.65 0 ;* 754 755 20.00 110.65 2 ;Stn 755=20 Junction with Entrance inlet *END DownStream *BEGIN DownstreamUpper *EXPORT FriedEggOnAStick.1 FriedEggOnAStick.17 Oxbow.11 Oxbow.20a *EQUATE FriedEggOnAStick.1 Oxbow.1 *EQUATE FriedEggOnAStick.2 Oxbow.0 *EQUATE Oxbow.11 UpperLoop.1 *EQUATE UpperLoop.27 FriedEggOnAStick.9 *EQUATE FriedEggOnAStick.21 FriedEggOnAStickPt2.1 *BEGIN FriedEggOnAStick *EXPORT 1 2 9 17 21 *date 2010.02.20 *CALIBRATE declination 2.0 1 2 3.11 0.77 12.60 2 3 5.90 312.40 -11.25 3 4 7.18 308.52 -0.94 4 5 6.11 245.29 -1.13 *FLAGS splay 5 5a 3.72 296.21 1.83 5 5b 4.83 287.18 0.84 5 5c 5.36 282.34 0.90 *FLAGS not splay 5 6 10.18 281.24 0.89 6 7 6.99 305.33 -1.06 7 8 2.61 256.43 5.59 8 9 13.34 302.19 -0.47 *FLAGS splay 9 9a 0.35 222.86 -1.25 9 9b 1.90 289.54 4.84 *FLAGS not splay 9 10 9.40 289.45 4.88 10 11 10.66 303.93 -7.79 11 12 7.05 289.15 0.34 *FLAGS splay 12 12a 2.95 55.32 12.38 12 12b 3.12 94.22 4.17 *FLAGS not splay 12 13 5.05 72.17 5.40 *FLAGS splay 13 13a 1.83 339.21 8.86 *FLAGS not splay 13 14 4.81 91.13 4.93 *FLAGS splay 14 14a 1.45 30.73 21.32 14 14b 2.49 241.63 -6.26 *FLAGS not splay 14 11 4.83 217.91 -12.12 12 15 6.30 293.42 -1.89 15 16 5.35 218.30 -0.76 *FLAGS splay 16 16a 3.97 257.11 -4.06 16 16b 6.90 266.87 -2.28 16 16c 6.96 327.77 3.37 16 16d 8.49 308.20 2.84 16 16e 8.77 297.60 1.17 *FLAGS not splay 16 17 10.93 277.32 -0.60 17 18 9.40 287.05 -0.40 18 19 3.43 291.32 1.20 19 20 3.43 203.06 -4.32 20 21 4.00 236.76 -0.74 *data passage station left right up down 1 1.4 1.56 1.08 1.29 2 1.48 0.75 0.49 2.13 3 2.24 3.31 0.54 0.48 4 2.35 0.0 0.54 0.75 5 0.96 1.83 0.7 0.59 6 1.19 2.44 0.77 0.51 7 1.19 0.0 0.6 0.59 8 0.0 1.08 0.56 0.93 9 1.27 1.23 0.59 0.88 10 0.0 1.91 0.72 1.62 11 1.34 0.37 0.78 0.21 12 2.68 2.98 1.36 0.7 15 4.23 1.35 1.36 0.5; hole down 5.3 16 0.95 5.75 0.48 0.4 17 0.93 2.66 1.57 0.4 18 2.92 1.95 0.78 0.0 19 0.7 0.53 1.11 0.33 20 0.98 2.95 1.76 1.11 21 3.03 2.71 0.41 0.39 *data passage station left right up down 12 2.68 2.98 1.36 0.7 13 2.06 0.36 1.54 0.78 14 1.44 2.18 1.48 0.2 11 1.34 0.37 0.78 0.21 *END FriedEggOnAStick *BEGIN Oxbow *EXPORT 0 1 11 20a *date 2010.02.22 *CALIBRATE declination 2.0 1 2 7.27 80.85 8.53 *FLAGS splay 2 2a 0.69 358.43 -10.85 2 2b 3.01 292.73 -1.88 *FLAGS not splay 2 3 2.31 59.99 0.46 3 4 1.50 130.57 -28.21 4 5 5.64 135.97 -86.60 5 6 2.04 174.07 20.04 *FLAGS splay 6 6a 5.01 106.76 6.76 6 6b 3.06 45.71 4.51 6 6c 3.26 239.10 0.34 6 6d 2.53 329.49 0.73 *FLAGS not splay 2 7 2.48 15.24 27.59 *FLAGS splay 7 7a 2.83 88.10 5.40 *FLAGS not splay 7 8 4.26 263.33 48.32 8 9 5.90 294.80 -55.77 *FLAGS splay 9 9a 3.19 239.07 2.08 9 9b 0.81 239.29 1.90 *FLAGS not splay 9 0 2.17 239.20 1.98 7 10 5.06 57.56 5.67 10 11 4.73 316.07 3.25 *FLAGS duplicate 11 12 5.06 138.06 23.37 *FLAGS not duplicate 12 13 1.71 97.99 6.00 13 14 1.16 82.75 -26.20 *FLAGS splay 14 14a 0.54 307.92 -4.40 14 14b 2.63 170.12 7.05 *FLAGS not splay 14 15 6.52 128.46 -18.60 15 16 4.87 92.75 -1.04 16 17 3.19 134.73 0.51 17 18 3.82 108.41 0.25 *FLAGS splay 18 18a 5.14 155.04 9.95 18 18b 4.33 134.04 11.68 18 18c 2.48 126.92 15.65 18 18d 0.37 21.68 8.97 18 18e 2.13 231.74 -9.63 18 18f 2.34 191.10 12.99 18 18g 3.45 166.61 10.52 *FLAGS not splay 18 19 4.19 157.74 11.45 19 20 9.98 166.13 -6.87 *FLAGS splay 20 20a 4.97 263.08 -80.89 20 20b 2.85 280.91 -36.14 20 20c 5.17 6.99 -12.96 20 20d 1.94 37.18 1.62 *FLAGS not splay 20 21 4.36 82.77 3.93 *FLAGS splay 21 21a 6.02 227.58 -66.19 *FLAGS not splay 21 22 7.41 8.78 8.76 *FLAGS splay 22 22a 0.76 351.44 3.36 22 22b 2.43 262.05 29.57 22 22c 2.07 157.64 -4.87 *FLAGS not splay *data passage station left right up down 1 1.83 2.59 1.07 1.49 2 2.03 0.54 0.67 2.45 3 0.37 1.56 0.77 2.51 4 0.72 1.54 1.5 1.72 5 0.39 2.64 1.97 0.0 6 2.25 2.25 5 1.76 *data passage station left right up down 7 0.33 1.66 3.17 0.84 8 0.0 1.41 5.19 1.86 9 1.78 0.27 8.59 1.86 0 0.0 0.6 0.49 2.13 *data passage station left right up down 2 2.03 0.54 0.67 2.45 7 1.66 0.33 3.17 0.84 10 2.68 0.0 2.97 1.61 11 0.0 0.35 0.85 0.48 *data passage station left right up down 11 0.35 0.0 0.85 0.48 12 1.44 0.31 0.76 3.33 13 0.0 2.03 0.56 0.39 14 0.0 0.9 0.97 2.08 15 1.27 0.0 0.77 0.61 16 0.37 1.03 0.37 0.33 17 1.21 0.0 0.44 0.21 18 1.55 1.5 0.75 0.0 19 1.09 0.82 0.0 1.26 20 3.75 0.0 0.61 0.74 21 1.73 0.0 0.45 1.14 22 2.0 1.25 2.18 1.26 *END Oxbow *BEGIN UpperLoop *EXPORT 1 27 *DATE 2011.08.07 *CALIBRATE declination 1.75 1 2 5.69 357.50 19.55 2 3 5.54 325.19 -4.40 3 4 4.34 242.26 1.78 4 5 4.91 260.24 -5.33 *FLAGS SPLAY 5 5a 0.27 9.44 -84.18 5 5b 1.41 134.36 2.50 5 5c 2.15 88.46 6.03 5 5d 0.37 315.95 7.82 *FLAGS NOT SPLAY 5 6 3.95 223.52 1.11 6 7 2.58 307.27 -8.29 7 8 2.75 324.59 -36.52 8 9 6.93 239.30 5.29 9 10 2.85 277.01 12.18 *FLAGS SPLAY 10 10a 0.80 48.00 86.00 10 10b 2.69 236.62 88.43 10 10c 1.14 11.56 -82.68 10 10d 0.31 215.11 4.84 10 10e 0.90 37.80 8.43 *FLAGS NOT SPLAY 10 16 6.16 322.04 -10.54 10 12 1.91 299.64 31.17 12 13 3.94 285.87 5.93 13 14 1.87 329.44 -20.80 *FLAGS SPLAY 14 14a 1.89 91.97 83.02 14 14b 1.69 3.24 -82.46 14 14c 2.24 5.82 0.05 14 14d 1.34 86.70 14.56 14 14e 0.70 174.08 22.53 *FLAGS NOT SPLAY 14 15 2.90 56.58 -19.15 15 16 1.06 122.55 -77.69 14 17 4.24 284.58 -15.78 17 18 2.42 233.97 -18.30 18 19 2.59 299.73 7.25 19 20 3.98 354.85 21.72 20 21 4.39 336.49 14.59 21 22 5.43 263.11 1.43 *FLAGS SPLAY 22 22a 0.90 11.84 84.61 22 22b 6.20 126.66 55.79 22 22c 0.44 212.16 -81.91 22 22d 1.60 136.16 3.40 22 22e 1.03 10.22 22.29 22 22f 0.99 337.75 14.35 22 22g 4.08 319.67 1.29 22 22h 4.10 319.67 0.69 *FLAGS NOT SPLAY 22 23 4.57 203.04 5.22 *FLAGS SPLAY 23 23a 0.87 292.36 77.99 23 23b 0.36 49.53 -81.63 23 23c 0.48 136.95 18.34 23 23d 1.91 324.86 1.83 23 23e 2.95 308.25 -40.06 23 23f 6.33 272.92 0.91 *FLAGS NOT SPLAY 23 24 1.95 238.04 -34.27 24 25 1.49 307.29 -31.68 25 26 4.31 313.21 -49.22 26 27 1.78 135.14 -24.77 *data passage station left right up down 1 0.0 0.35 0.85 0.48 2 1.403 0.0 0.294 0.636 3 1.162 0.726 0.812 0.0 4 0.65 0.536 0.523 0.572 5 1.413 0.37 0.0 0.266 6 2.11 1.48 0.886 0.44 7 0.522 0.539 0.361 2.07 8 0.9 0.0 0.698 0.959 9 0.0 0.897 0.558 0.447 10 0.311 0.9 2.688 1.139 12 0.896 0.0 2.026 0.0 13 0.0 1.238 1.699 0.877 14 2.237 0.701 1.891 1.687 17 1.937 0.272 2.054 0.389 18 0.448 0.626 2.829 0.55 19 0.0 0.479 3.026 0.584 20 1.185 0.83 1.342 0.613 21 1.476 0.618 1.052 0.596 22 1.6 4.076 0.898 0.439 23 0.482 1.914 0.872 0.357 24 0.0 0.639 0.669 1.574 25 0.424 1.245 0.286 2.631 26 0.276 1.378 2.222 2.463 *data passage station left right up down 10 0.311 0.9 2.688 1.139 16 0.67 0.274 2.18 0.505 15 0.374 0.0 1.357 0.0 14 2.237 0.701 1.891 1.687 *END UpperLoop *BEGIN FriedEggOnAStickPt2 *EXPORT 1 *DATE 2011.08.07 *CALIBRATE declination 1.75 1 2 7.81 243.30 -0.29 2 3 4.76 268.89 0.16 3 4 6.66 267.68 -0.40 4 5 5.34 269.72 -6.46 5 6 7.39 283.97 -5.29 6 7 4.54 314.47 -2.88 7 8 2.95 273.84 -22.68 *FLAGS SPLAY 8 8a 2.09 122.59 87.07 8 8b 0.87 73.22 -66.52 8 8c 3.66 284.91 18.64 8 8d 1.40 349.10 9.74 8 8e 0.29 172.53 6.54 *FLAGS NOT SPLAY 8 9 5.78 36.97 -10.39 7 10 4.40 244.57 -3.59 10 11 4.10 245.31 8.94 11 12 5.81 284.03 1.75 12 13 3.98 272.77 7.33 13 14 3.13 189.53 45.00 14 15 4.13 171.86 -1.29 15 16 2.10 260.91 36.16 *FLAGS SPLAY 16 16a 9.58 20.15 75.53 16 16b 5.38 42.18 67.30 16 16c 13.19 315.15 82.47 16 16d 1.53 123.29 -77.15 16 16e 0.84 135.39 14.01 16 16f 1.26 305.79 7.87 16 16g 2.62 341.19 10.67 16 16h 2.51 24.26 6.87 *FLAGS NOT SPLAY 16 17 6.15 223.22 19.84 *FLAGS SPLAY 17 17a 3.38 325.55 76.35 17 17b 4.34 264.05 71.07 17 17c 3.31 168.78 -73.30 17 17d 0.30 136.08 -0.65 *FLAGS NOT SPLAY 17 18 5.08 225.19 34.90 18 19 3.76 205.97 -13.83 19 20 3.58 116.27 -13.03 *FLAGS SPLAY 20 20a 0.45 234.56 77.16 20 20b 0.09 119.28 -77.79 20 20c 0.56 120.28 11.06 20 20d 0.60 281.24 -2.57 20 20e 1.52 22.06 -3.13 *FLAGS NOT SPLAY 20 21 1.76 225.56 -2.08 *data passage station left right up down 1 2.992 2.624 0.404 0.389 2 2.159 2.438 1.134 0.0 3 3.169 2.189 1.084 0.0 4 0.554 1.314 1.627 1.468 5 1.558 1.12 2.557 1.241 6 1.057 1.624 0.807 0.883 7 1.215 0.0 0.643 0.872 8 3.663 0.289 2.094 0.867 9 0.51 0.524 0.195 0.187 *data passage station left right up down 7 1.215 0.0 0.643 0.872 10 0.0 1.251 1.105 0.933 11 1.558 2.254 0.716 0.846 12 1.13 1.51 0.73 0.84 13 1.52 0.77 1.78 1.15 14 0.511 0.0 0.476 1.148 15 1.207 1.477 2.058 0.054 16 0.836 1.262 13.194 1.533 17 0.301 0.0 3.377 3.309 18 0.906 0.619 0.304 2.094 19 2.065 0.22 0.81 0.398 20 0.562 0.601 0.446 0.093 21 0.483 0.496 0.273 0.0 *END FriedEggOnAStickPt2 *END DownstreamUpper *BEGIN DownStreamExtn ;Downstream extension from top of 4m pitch in main stream ;surveyors P.Stacey+J.Chilton+A.Pringle *date 1991.08.07; 07/08/91 *EXPORT 28 641 651; 695 *CALIBRATE declination 0 ;Magnetic deviation of 4.35 has already been subtracted from all these compass readings ;(Checked against original notes by Footleg 01/08/06) *FLAGS duplicate 28 640 6.10 - up ;* ;640 641 5.00 63.65 0 ;Original leg 640 641 2.19 45 0 ;Corrected to tie position in more accurately to Feb.2010 survey ;641 642 4.10 6.65 5 ;* ;642 643 11.30 300.65 0 ;* ;643 644 13.80 268.65 -1 ;* ;644 645 20.00 291.65 -1 ;* ;645 646 4.50 297.65 6 ;* ;646 647 17.70 290.65 0 ;* ;647 648 5.70 289.65 1 ;* ;648 649 8.40 292.65 -3 ;* ;649 650 13.10 257.65 -1 ;* ;650 651 2.00 233.65 2 ;* ;651 652 7.00 275.65 0 ;* ;652 653 4.20 295.65 5 ;* ;653 654 2.40 210.65 4 ;* ;654 655 3.00 275.65 -2 ;* ;655 656 9.60 225.65 0 ;* ;656 657 17.10 260.65 -4 ;* ;657 658 10.50 279.65 -2 ;* ;658 659 2.00 301.65 -5 ;* ;659 660 6.80 250.65 2 ;* ;660 661 8.30 275.65 4 ;* ;661 662 3.10 201.65 42 ;* ;662 663 3.00 165.65 9 ;* ;663 664 5.90 218.65 12 ;* ;664 665 6.60 225.65 30 ;* ;665 666 3.20 195.65 -9 ;* ;666 667 2.10 120.65 -12 ;* ;*FLAGS not duplicate 651 668 2.10 350.65 9 ;* 668 669 3.10 305.65 0 ;* 669 670 1.50 325.65 3 ;* 670 671 4.10 275.65 22 ;* 671 672 3.00 315.65 15 ;* 672 673 7.30 277.65 8 ;* 673 674 8.20 350.65 2 ;* 674 675 5.80 327.65 -4 ;* 675 676 8.00 268.65 2 ;* 676 677 20.00 290.65 1 ;* 677 678 11.00 279.65 0 ;* 678 679 5.70 253.65 2 ;* 679 680 7.00 6.65 -1 ;* 680 681 13.90 293.65 5 ;* 681 682 3.10 309.65 11 ;* 682 683 3.00 83.65 -10 ;dig, no draught ;646 684 7.10 92.65 54 ;* ;684 685 4.60 36.65 -5 ;* ;685 686 5.10 87.65 -6 ;* ;686 687 9.80 162.65 -1 ;* ;687 688 3.10 39.65 -2 ;* ;688 689 8.20 119.65 9 ;* ;689 690 6.00 109.65 -23 ;* ;690 691 8.50 62.65 -12 ;* ;691 692 3.80 137.65 33 ;* ;692 693 6.10 66.65 -1 ;* ;693 694 7.90 67.65 4 ;* ;694 695 11.00 156.65 -3 ;* ;695 696 5.40 176.65 -33 ;* ;696 697 5.40 262.65 32 ;* ;697 698 17.60 267.65 -42 ;* *END DownStreamExtn *BEGIN TornoInlet ;Downstream inlet entering pool at bottom of 4m pitch in main stream ;(Survey notes titled SOFT SHOE SHUFFLE) ;surveyors Various+LMills *date 1991.08.05; 05/08/91 *EXPORT 28 563 623 639 *CALIBRATE declination 0 ;Magnetic deviation of 4.35 has already been subtracted from all these compass readings ;(Checked against original notes by Footleg 01/08/06) 28 553 7.40 60.65 7 ;* 553 554 5.80 175.65 0 ;* 554 555 2.90 44.15 0 ;* 555 556 4.00 78.65 0 ;* 556 557 4.50 100.65 20 ;* 557 558 4.20 110.65 1 ;* 558 559 1.20 67.15 18 ;* 559 560 2.30 7.65 25 ;* 560 561 2.70 43.65 22 ;* 561 562 16.10 131.65 -2 ;* 562 563 5.10 195.65 7 ;* 563 564 5.30 119.65 0 ;* 564 565 6.60 13.65 0 ;potholes 565 566 12.40 66.65 1 ;* 566 567 3.10 47.15 -2 ;* 567 568 4.90 89.65 0 ;* 568 569 8.10 120.65 3 ;* 569 570 12.50 107.65 8 ;* 570 571 6.90 77.65 2 ;* 571 572 6.20 122.15 4 ;* 572 573 9.00 68.15 -4 ;* 573 574 6.10 33.65 0 ;* 574 575 11.80 69.65 -4 ;* 575 576 8.10 164.65 1 ;* 576 577 10.70 67.65 2 ;* 577 578 20.00 58.65 2 ;* 578 579 8.50 79.65 2 ;* 579 580 6.10 36.15 0 ;* 580 581 20.00 25.65 0 ;* 581 582 6.40 39.15 1 ;* 582 583 5.40 348.15 1 ;* 583 584 16.90 35.15 1 ;* 584 585 10.20 2.65 1 ;* 585 586 20.00 14.15 1 ;* 586 587 11.30 344.65 1 ;* 587 588 5.10 68.65 1 ;* 588 589 6.60 130.65 2 ;* 589 590 6.10 48.15 3 ;* 590 591 6.40 338.15 1 ;* 591 592 5.90 31.65 2 ;* 592 593 12.80 350.65 1 ;* 593 594 7.00 55.15 2 ;* 594 595 8.80 6.15 0 ;* 595 596 10.60 15.15 2 ;* 596 597 10.90 346.65 0 ;* 597 598 7.10 20.65 0 ;* 598 599 7.00 347.15 0 ;* 599 600 9.60 333.65 0 ;* 600 601 3.90 338.15 0 ;* 601 602 3.70 4.65 2 ;* 602 603 1.90 293.65 0 ;* 603 604 2.70 245.15 0 ;* 604 605 4.90 193.15 0 ;* 605 606 5.90 285.65 0 ;* 606 607 11.20 249.15 0 ;* 607 608 2.50 306.15 1 ;* 608 609 11.30 351.65 2 ;* 609 610 6.80 292.15 2 ;* 610 611 3.30 320.15 0 ;* 611 612 5.40 6.65 0 ;* 612 613 5.20 309.65 2 ;* 613 614 9.00 348.65 0 ;* 614 615 4.70 242.15 0 ;* 615 616 6.10 336.15 0 ;* 616 617 2.60 277.65 0 ;* 617 618 5.40 232.65 0 ;* 618 619 7.50 307.15 1 ;* 619 620 10.60 10.65 0 ;* 620 621 12.90 342.65 1 ;* 621 622 11.30 10.15 1 ;* 622 623 13.00 45.15 1 ;* 623 624 9.50 133.65 0 ;* 624 625 4.20 112.65 -2 ;* 625 626 20.00 107.65 1 ;* 626 627 2.80 79.65 4 ;* 627 628 5.20 55.65 27 ;* 628 629 9.30 26.65 -2 ;* 629 630 5.60 59.65 -3 ;* 630 631 6.30 7.65 -12 ;* 631 632 9.70 68.65 1 ;* 632 633 10.80 88.65 1 ;* 633 634 15.70 49.65 1 ;* 634 635 7.00 69.65 1 ;* 635 636 4.10 39.65 2 ;* 636 637 6.90 71.65 2 ;* 637 638 4.30 57.15 14 ;* 638 639 1.50 145.65 -12 ;* ;LRUD data (estimated off resketch by Footleg as not recorded on original survey) *data passage station left right up down 553 0 0.75 .33 .33 554 0.75 0 0.33 0.33 555 0.4 0.4 0.33 0.33 556 2.65 0.9 5.6 0.5 557 0.75 0.75 3.5 0.5 558 0.6 0 3 1 559 0.5 0 3 1.5 560 0 0.5 3 1.5 561 1 0.5 3 1.5 562 0 0.4 3 1.5 563 0.4 0 3 1.5 564 0.4 0 3 1.5 565 0 0.45 3 1.5 566 0.5 0 3 1.5 567 0 0.5 2 2 568 0 0.5 2 2 569 0.7 0 2 2 570 2 0 2 2 571 0 2 2 2 572 2 0 2.5 2 573 2 0 2.5 1.5 574 0 2 2 1.5 575 0 2 0.5 1 576 2 0 0.5 1 577 1 0 4 1 578 0 1 3.5 1.5 579 1 0 3 2 580 1 0 3.25 2 581 0 1 3.5 2 582 1 0 4 2 583 0 0.75 5 2 584 0.5 0 6 2 585 0 0.5 6 2 586 0.5 0 6 2 587 0 0.5 7 2 588 0 0.5 8 2 589 0.5 0 8 2 590 0.5 0 8 2 591 0 0.5 8 2 592 0.4 0 8 2 593 0 0.4 8 2 594 0.4 0 8 2 595 0 0.4 8 2 596 0.4 0 8 2 597 0 0.4 8 2 598 0.4 0 8 2 599 0.4 0 8 2 600 0 0.4 8 2 601 0 0.4 7 2 602 0.5 0 6 2 603 0.5 0 6 2 604 0.5 0 6 2 605 0 0.5 6 2 606 0.4 0 6 2 607 0 0.4 6 2 608 0 0.4 6 2 609 0.4 0 6 2 610 0 0.4 6 2 611 0 0.4 6 2 612 0.4 0 6 2 613 0 0.4 6 2 614 0.4 0 6 2 615 0 0.4 6 2 616 0.4 0 6 2 617 0.4 0 6 2 618 0 0.4 6 2 619 0 0.4 6 2 620 0.4 0 6 2 621 0 0.4 6 2 622 0 0.5 6 2 623 0 1 6 2 624 0.5 0 6 2 625 0.5 0 6 2 626 0.5 0 5 2 627 0.5 0 4 2 628 1 0 0.5 3 629 0 2 0.5 3 630 2 0 0.5 2.5 631 0 2 1.5 1 632 0 2 1 1 633 2.5 0 0.5 1 634 0 2.5 0 1 635 2 0 0 1 636 2 2 0 1 637 0.75 0 1 1 638 0 0.5 0.5 2 639 0.5 0 3 2 *END TornoInlet *BEGIN Riano2006-12-10 *EXPORT 1 ;surveyors: ;Instruments and Notes: Footleg ;Tape: Dave Garman, Chris Agnew *date 2006.12.10 *CALIBRATE declination 2.42 ;declination is 2 41' (2.68) for 2004 changing by 8'E per year. ; 2.55 used for 2005 ; 2.42 used for 2006 ; 2.28 used for 2007 ; 2.15 used for 2008 ;stn 1= stn bottom of aven in streamway 2 1 5.00 - -V; 2 3 14.65 011 +2; 2 0 0 1 3 4 9.38 006 -4; 2 0 .25 .75 4 5 7.73 017 -3; .25 1.75 0 .6 5 6 5.35 003 -2; 1.5 2.5 .6 .5 2 7 8.12 233 +10; 7 8 11.21 194 +7; 2.5 0 .4 1 8 9 7.27 270 0; 1.5 1.5 0 1 9 10 6.30 342 0; 0 2 .7 .8 10 11 3.96 278 +5; 1.5 0 .6 .4 11 12 4.02 251 +2; 1.7 .2 .6 .6 12 13 4.10 327 +5; .6 .6 0 .8 13 14 3.65 252 +3; 1.5 .5 0 .9 14 15 6.96 194 +2; 1.2 .4 0 .6 15 16 5.49 273 +6; .2 1.5 3 .3 16 17 6.74 220 +4; 1.5 .4 0 .75 17 18 3.60 229 +2; 1.2 .4 0 1 18 19 8.00 199 +3; 1.1 .3 0 1 19 20 11.59 216 +3; 0 1.4 .3 .7 20 21 3.84 129 +4; 1.5 0 .6 1.2 21 22 13.43 199 +5; .2 1.2 .2 1.4 22 23 4.79 259 +7; 0 2 1 1.5 23 24 11.02 212 +4; 1.3 0 .5 1.7 24 25 7.40 212 +6; .2 1 .1 1.9 25 26 8.80 233 0; 0 1.6 3 2 26 27 7.40 298 -1; 0 2 3 1.6 27 28 5.13 270 +6; .8 2 6 1 25 29 3.29 071 +19; 29 30 5.05 117 +7; 0 2 2 1.6 30 31 3.80 103 +9; 1.6 0 .5 .7 ;LRUD data ;Stn L R U D *data passage station left right up down 2 2 0 0 1 3 2 0 0.25 0.75 4 0.25 1.75 0 0.6 5 1.5 2.5 0.6 0.5 6 0.8 0.8 0.4 0.2 *data passage station left right up down 2 0 2 0 1 7 2.5 0 0.4 1 8 1.5 1.5 0 1 9 0 2 0.7 0.8 10 1.5 0 0.6 0.4 11 1.7 0.2 0.6 0.6 12 0.6 0.6 0 0.8 13 1.5 0.5 0 0.9 14 1.2 0.4 0 0.6 15 0.2 1.5 3 0.3 16 1.5 0.4 0 0.75 17 1.2 0.4 0 1 18 1.1 0.3 0 1 19 0 1.4 0.3 0.7 20 1.5 0 0.6 1.2 21 0.2 1.2 0.2 1.4 22 0 2 1 1.5 23 1.3 0 0.5 1.7 24 0.2 1 0.1 1.9 25 0 1.6 3 2 26 0 2 3 1.6 27 0.8 2 6 1 28 0 3 9 1.6 *data passage station left right up down 25 0 1.6 3 2 29 0 2 2 1.6 30 1.6 0 0.5 0.7 31 0 1.6 0.5 0.7 *END Riano2006-12-10 *BEGIN Riano2006-12-11 *EXPORT 1 49 68 106 ;surveyors: ;Instruments: Paul Dold ;Notes: Footleg ;Tape: Carl Clake, Dave Garman, Chris Agnew *date 2006.12.11 *CALIBRATE declination 2.42 *CALIBRATE tape +0.1 ;declination is 2 41' (2.68) for 2004 changing by 8'E per year. ; 2.55 used for 2005 ; 2.42 used for 2006 ; 2.28 used for 2007 ; 2.15 used for 2008 ;stn 1= final stn of Torno Inlet survey ;From To Tape Compass Clino L R U D 1 2 4.37 202 -7 ; 0 0.5 0.6 0.4 2 3 7.55 - UP ; 1 1.5 1.7 7.5 3 4 4.37 165 -6 ; 2 1 0 1.8 4 5 7.95 194 0 ; 0 2 0.3 0.8 5 6 2.71 83 11 ; 1.8 0 1 0.6 6 7 6.3 155 0 ; 0 0.7 0.4 1.6 7 8 9.83 35 0 ; 1.6 0 0.5 1.3 8 9 1.99 355 -18 ; 0.5 0 5 3 9 10 5.2 142 -18 ; 0 1 5 3 10 11 3.96 79 -9 ; 2 0 8 1.6 11 12 2.61 27 -6 ; 1.6 0 8 1.5 12 13 3.46 78 -10 ; 0 1 8 1.5 13 14 4.18 55 1 ; 0 1.4 8 1.5 14 15 2.54 77 -4 ; 0 0.6 7 1.4 15 16 4.08 353 -36 ; 1.5 0 8 3.5 16 17 6.24 65 -4 ; 3 2.5 1.5 1 17 18 11.21 177 8 ; 2 1.6 1.5 0 18 19 3.25 - DOWN ; 1.6 1.8 0 -3.25 19 20 2.53 275 -23 ; 1.6 1.8 3.25 0 20 21 1.7 345 -12 ; 2 1 1.6 0 21 22 2.35 332 -10 ; 1.5 1.5 0.25 0 ;22 ; 1.5 1.5 0.4 0 16 23 7.18 263 9 ; 2.5 3 1.5 1 23 24 3.91 257 22 ; 1 0.5 0.7 0.3 24 25 5.12 232 21 ; 0 0.4 5 0.4 24 26 3.59 325 8 ; 0.25 0.2 0.8 0.4 26 27 1.25 237 2 ; 0.25 0 0.8 0.8 27 28 2.24 350 12 ; 0 1.1 1 0.5 28 29 3.64 290 8 ; 0.4 0 0.5 1.4 ;29 ; 0 0.5 0.5 0.4 25 9 2.27 284 35 ; 3.5 1 7 1.6 7 30 5.35 187 5 ; 0.7 0.2 5 1.2 30 31 5.2 233 23 ; 0 0.8 4 1.6 31 32 3.04 - UP ; 0.4 0.4 3.5 0.4 32 33 2.42 190 0 ; 0.5 0 0.5 1.4 33 34 4.11 120 3 ; 0.5 0 0.8 1.2 34 35 0.61 353 1 ; 0.4 1 2 1 35 36 7 46 11 ; 0 0.3 2 1 36 37 2.3 20 48 ; 0.4 0 4 2 37 38 4.73 289 -13 ; 38 30 8.1 - DOWN ; 1 1 8 8 37 39 8.85 40 1 ; 0.6 0.6 4 1.5 39 40 7.98 28 0 ; 0.7 0 4 1.8 40 41 3.15 89 -2 ; 0 0.8 3 3 41 42 4.65 52 3 ; 1 0 4 5 42 43 2.25 51 -8 ; 0 0.6 2.5 1 43 44 2.47 7 2 ; 1 0 0.8 1.6 44 45 2.9 18 9 ; 0.4 0.4 0.3 2 45 46 2.6 343 -8 ; 0.5 0 4 1.6 46 47 3 38 4 ; 0 0.7 4 3 47 48 1.75 110 4 ; 0 1 2 0.5 48 49 9.49 43 -2 ; 1.6 0 5 5 49 50 2.47 90 -18 ; 1 1.5 3 2.5 50 51 5.9 22 2 ; 2 0 0.5 3 51 52 2.48 68 10 ; 0 2 0.3 5 51 60 5.15 - DOWN ; 52 53 6.15 49 0 ; 1 1.4 1.6 4 53 54 3.3 340 14 ; 3.5 0 0.5 0.8 54 55 4.16 10 2 ; 2 2 2 5 55 56 6.4 45 20 ; 0.5 3.5 3 3 56 57 9.1 25 39 ; 2 1 8 1 57 58 2.6 150 -30 ; 0 3.5 7 1.5 58 59 7.3 - UP ; 3 10 8 0 60 61 10.75 205 -18 ; 1 1 6 0 61 62 2.02 190 -10 ; 1 0 6 0.5 62 63 3.04 245 -11 ; 0 0.6 8 1 63 64 3.47 220 -20 ; 0.4 0 6 1.6 64 65 1.22 180 20 ; 0.6 0 6 2 65 66 5.22 - DOWN ; 0.3 0 6 5 67 66 3.29 10 -28 ; 67 16 3.25 255 -7 ; 69 68 1.7 231 3 ; 0.2 0.2 0.4 1 69 70 1.5 345 0 ; 0.2 0.2 0.4 1 70 71 1.5 42 -6 ; 0 0.4 0.4 1 71 72 1.2 27 3 ; 0.2 0.2 0.7 0.6 72 73 1.21 69 -5 ; 0.25 0.25 0.8 0.8 73 74 1.4 40 -4 ; 0.25 0.25 0.8 0.8 74 75 1.9 72 0 ; 0.25 0.25 0.8 0.8 75 76 2.84 7 2 ; 0.5 0.5 0.5 1.6 76 77 1.9 30 -3 ; 0.2 0.2 0.4 1.7 77 78 6 5 -4 ; 0.2 0.2 0.4 1.7 78 79 1.7 25 -3 ; 0.2 0.2 0.5 1.7 79 80 0.76 353 -2 ; 0.25 0.25 0.4 1.6 80 81 0.87 308 0 ; 0.25 0.25 0.6 1.6 81 82 3.42 15 -2 ; 0.25 0.25 0.4 1.6 82 83 1.48 75 -2 ; 0.25 0.25 0.4 1.6 83 84 1.42 350 -1 ; 0.3 0.3 0.5 1.8 84 85 2.15 22 0 ; 0.25 0.25 0.6 1.6 85 86 2.05 0 3 ; 0.3 0.3 0.7 1.6 86 87 2.75 38 0 ; 0.3 0.3 0.4 2 87 88 2.32 140 0 ; 0.4 0.4 0.4 2.2 88 5 0.72 84 0 ; 0.3 0.3 0.4 2 3 89 1 290 -50 ; 89 90 3.16 296 6 ; 1.4 0 0.8 1 90 91 2.7 352 -10 ; 0.8 1 0.5 0.4 91 92 2.25 308 -3 ; 0.8 1 0.8 0.5 92 93 3.2 328 -7 ; 0.3 0.5 0.6 0.4 93 94 2.1 315 2 ; 0.6 0.6 1.6 0 94 95 2.75 345 2 ; 0.5 0.7 0.3 0.8 95 96 5.4 310 0 ; 0.6 0.6 0.4 0.4 96 97 5.95 304 0 ; 1 0.3 1 0.4 97 98 2.9 348 -1 ; 0.3 0.8 1 0.4 98 99 1.82 318 -3 ; 0.8 0.8 0.8 0.5 99 100 2.35 12 5 ; 0.5 0.6 0.8 0.5 100 101 3.5 295 0 ; 0.5 0.6 0.5 0.5 101 102 1.87 335 -2 ; 0.4 0.6 0.6 0.5 102 103 3.37 3 4 ; 0.8 0.5 1 0.3 103 104 1.9 303 1 ; 0.7 0.6 0.8 0.4 104 105 2.2 228 3 ; 0.7 0.5 0.9 0.8 105 106 1.8 295 21 ; 0.3 0.4 1.2 0.4 106 107 2.75 262 4 ; 2 0.3 0.8 1.4 107 108 10.5 288 5 ; 2 0.5 1 2.5 108 109 5.3 192 4 ; 1.8 1 1 2.5 109 110 2.5 275 0 ; 1 1.6 0.5 3 110 111 4.6 333 0 ; 1 1.4 0.5 0.8 111 112 6.3 305 3 ; 1 1 1 4 112 113 4.4 333 -1 ; 0.5 0.2 0.5 0.5 113 114 4.9 283 -5 ; 1.2 0.4 0.5 0.5 115 114 6 152 5 ; 0.6 1.6 1.2 0.1 116 115 3 58 -2 ; 0.8 0.6 0.8 0 117 116 4.8 10 -5 ; 0.7 0.7 0.5 0.5 118 117 4.3 100 -3 ; 0.5 1 0.3 0.2 119 118 4.7 118 6 ; 0.4 0.4 0.5 2 120 119 4.5 - UP ; 0 0.6 0.5 4.5 121 120 5.75 80 2 ; 2 0.4 4 0.5 122 121 4.65 18 15 ; 0.5 0.5 0.2 0.2 123 122 1.9 340 0 ; 0.5 1.2 1.5 0 124 123 5.14 50 5 ; 0.5 1 0.2 0.4 ;LRUD data ;Stn L R U D *data passage station left right up down 1 0 0.5 0.6 0.4 2 1 1.5 7.5 1.7 *data passage station left right up down 3 2 1 0 1.8 4 0 2 0.3 0.8 5 1.8 0 1 0.6 6 0 0.7 0.4 1.6 7 1.6 0 0.5 1.3 8 0.5 0 5 3 9 0 1 5 3 10 2 0 8 1.6 11 1.6 0 8 1.5 12 0 1 8 1.5 13 0 1.4 8 1.5 14 0 0.6 7 1.4 15 1.5 0 8 3.5 16 3 2.5 1.5 1 17 2 1.6 1.5 0 18 1.6 1.8 0 -3.25 19 1.6 1.8 3.25 0 20 2 1 1.6 0 21 1.5 1.5 0.25 0 22 1.5 1.5 0.4 0 *data passage station left right up down 16 2.5 3 1.5 1 23 1 0.5 0.7 0.3 24 0 0.4 5 0.4 25 3.5 1 7 1.6 *data passage station left right up down 24 0.25 0.2 0.8 0.4 26 0.25 0 0.8 0.8 27 0 1.1 1 0.5 28 0.4 0 0.5 1.4 29 0 0.5 0.5 0.4 *data passage station left right up down 37 0.6 0.6 4 1.5 38 1 1 8 8 *data passage station left right up down 7 0.7 0.2 5 1.2 30 0 0.8 4 1.6 31 0.4 0.4 3.5 0.4 32 0.5 0 0.5 1.4 33 0.5 0 0.8 1.2 34 0.4 1 2 1 35 0 0.3 2 1 36 0.4 0 4 2 37 0.6 0.6 4 1.5 39 0.7 0 4 1.8 40 0 0.8 3 3 41 1 0 4 5 42 0 0.6 2.5 1 43 1 0 0.8 1.6 44 0.4 0.4 0.3 2 45 0.5 0 4 1.6 46 0 0.7 4 3 47 0 1 2 0.5 48 1.6 0 5 5 49 1 1.5 3 2.5 50 2 0 0.5 3 51 0 2 0.3 5 52 1 1.4 1.6 4 53 3.5 0 0.5 0.8 54 2 2 2 5 55 0.5 3.5 3 3 56 2 1 8 1 57 0 3.5 7 1.5 58 3 10 8 0 *data passage station left right up down 60 1 1 6 0 61 1 0 6 0.5 62 0 0.6 8 1 63 0.4 0 6 1.6 64 0.6 0 6 2 65 0.3 0 6 5 66 0.2 0.2 0.4 1 *data passage station left right up down 68 0.2 0.2 0.4 1 69 0.2 0.2 0.4 1 70 0 0.4 0.4 1 71 0.2 0.2 0.7 0.6 72 0.25 0.25 0.8 0.8 73 0.25 0.25 0.8 0.8 74 0.25 0.25 0.8 0.8 75 0.5 0.5 0.5 1.6 76 0.2 0.2 0.4 1.7 77 0.2 0.2 0.4 1.7 78 0.2 0.2 0.5 1.7 79 0.25 0.25 0.4 1.6 80 0.25 0.25 0.6 1.6 81 0.25 0.25 0.4 1.6 82 0.25 0.25 0.4 1.6 83 0.3 0.3 0.5 1.8 84 0.25 0.25 0.6 1.6 85 0.3 0.3 0.7 1.6 86 0.3 0.3 0.4 2 87 0.4 0.4 0.4 2.2 88 0.3 0.3 0.4 2 *data passage station left right up down 3 1 2 0 1.8 89 1.4 0 0.8 1 90 0.8 1 0.5 0.4 91 0.8 1 0.8 0.5 92 0.3 0.5 0.6 0.4 93 0.6 0.6 1.6 0 94 0.5 0.7 0.3 0.8 95 0.6 0.6 0.4 0.4 96 1 0.3 1 0.4 97 0.3 0.8 1 0.4 98 0.8 0.8 0.8 0.5 99 0.5 0.6 0.8 0.5 100 0.5 0.6 0.5 0.5 101 0.4 0.6 0.6 0.5 102 0.8 0.5 1 0.3 103 0.7 0.6 0.8 0.4 104 0.7 0.5 0.9 0.8 105 0.3 0.4 1.2 0.4 106 2 0.3 0.8 1.4 107 2 0.5 1 2.5 108 1.8 1 1 2.5 109 1 1.6 0.5 3 110 1 1.4 0.5 0.8 111 1 1 1 4 112 0.5 0.2 0.5 0.5 113 1.2 0.4 0.5 0.5 114 0.6 1.6 1.2 0.1 115 0.8 0.6 0.8 0 116 0.7 0.7 0.5 0.5 117 0.5 1 0.3 0.2 118 0.4 0.4 0.5 2 119 0 0.6 0.5 4.5 120 0 0.6 4.5 0.5 121 2 0.4 4 0.5 122 0.5 0.5 0.2 0.2 123 0.5 1.2 1.5 0 124 0.5 1 0.2 0.4 *END Riano2006-12-11 *begin Riano_Easter2007 ;Heading south above Schoolboy Error Aven in Riano Road to Torno Extentions *export Riano_070331.106 Riano_070331.13a Riano_070404b.17 *EQUATE Riano_070331.4 Riano_070402b.0 *EQUATE Riano_070402a.12 Riano_070402b.16 *EQUATE Riano_070402a.17 Riano_070402c.21 *EQUATE Riano_070402a.12 Riano_070404a.0 *EQUATE Riano_070402a.22 Riano_070404a.22 *EQUATE Riano_070402c.2 Riano_070404b.1 *CALIBRATE declination 2.28 ;declination is 2 41' (2.68) for 2004 changing by 8'E per year. ; 2.55 used for 2005 ; 2.42 used for 2006 ; 2.28 used for 2007 ; 2.15 used for 2008 *begin Riano_070331 ;surveyors: Footleg, Paul Dold, Barney Cott *date 2007.03.31 *EXPORT 4 13a 106 ;Tape was 20cm short *CALIBRATE tape +0.2 ;From To Tape Compass Clino L R U D 2 1 3.80 220 -15; .5 .75 7 1.5;Stn1 chest height on wall of waterfall 2 3 4.40 018 38; 0 2 7 2 4 3 4.13 323 27;Stn4 marked by rock with hole in on ledge on wall 3 5 5.07 058 28; 0 3 4 1 5 6 2.90 358 -4; 3 0 4 3 6 7 3.00 087 -2; 0 .5 2 5 7 8 4.17 000 -2; .8 0 2 1.5 8 9 2.32 071 0; 0 .7 1 4 9 10 3.54 008 -2; .5 0 1.5 5 10 11 3.23 028 -8; 0 .5 1 5 12 11 1.80 129 23; .5 0 1 5 12 13 4.70 - -V;Vertical leg down to floor to where alternative route in enters 13 13a 5.90 021 0;Estimated leg to link up with tortuous inlet 12 14 3.03 358 -12; 0 1.2 3 4.7 14 15 1.70 328 10; .6 0 3 3 15 16 2.62 038 17; 0 .7 1 2 16 17 2.61 040 0; 0 .5 1 2 17 18 4.73 354 -2; .6 0 .7 1.7 18 19 3.69 027 3; 1.2 0 .5 1.8 19 20 4.47 0 -50; 1 .5 .5 3;Down slope in chamber with flowstone 20 21 2.64 295 -8; .5 2 3.5 .5 21 22 5.79 335 -1; 1.4 0 .5 .5 22 23 5.07 0 -4; 1.5 0 .5 1 23 24 5.95 341 -5; 1.3 0 .6 .4 24 25 6.94 025 -6; 0 1.5 .6 .4 25 26 3.48 337 -3; 1.2 0 .4 .3 26 27 1.55 045 0; 0 1.2 .5 .4 27 28 5.88 022 -10; 0 1.2 .5 .4 28 29 3.78 035 -7; 0 1.5 .4 .2 29 30 3.32 320 -3; .8 .8 .3 .3 ;Surveyed by on 02/04/2007 1a 106 8.20 335 -5; 1.2 1.5 .5 0 2a 1a 8.50 356 0; 2.5 0 0 0.5 3a 2a 6.00 260 5; 1.5 1.2 .5 0 4a 3a 8.50 313 -1; 2 2 .4 0 30 4a 2.90 356 -1; .7 .8 0 .4 ;LRUD data ;Stn L R U D *data passage station left right up down 1 .5 .75 7 1.5 2 0 2 7 2 3 0 3 4 1 5 3 0 4 3 6 0 .5 2 5 7 .8 0 2 1.5 8 0 .7 1 4 9 .5 0 1.5 5 10 0 .5 1 5 11 .5 0 1 5 12 0 1.2 3 4.7 14 .6 0 3 3 15 0 .7 1 2 16 0 .5 1 2 17 .6 0 .7 1.7 18 1.2 0 .5 1.8 19 1 .5 .5 3 20 .5 2 3.5 .5 21 1.4 0 .5 .5 22 1.5 0 .5 1 23 1.3 0 .6 .4 24 0 1.5 .6 .4 25 1.2 0 .4 .3 26 0 1.2 .5 .4 27 0 1.2 .5 .4 28 0 1.5 .4 .2 29 .8 .8 .3 .3 30 .8 .7 0 .4 *data passage station left right up down 3 .4 .4 4 1 4 0 3 4 1 *data passage station left right up down 106 2 0.3 0.8 1.4 1a 1.2 1.5 .5 0 2a 2.5 0 0 0.5 3a 1.5 1.2 .5 0 4a 2 2 .4 0 30 .7 .8 0 .4 *data passage station left right up down 13 0 1.2 0.4 0 13a 0.2 0.2 4 1.3 *end Riano_070331 *begin Riano_070402a ;surveyors: Footleg, John and Simon L. (Earby) *date 2007.04.02 *EXPORT 12 17 22 ;Tape was 20cm short *CALIBRATE tape +0.2 ;Rift level with and heading back to top of Razor rift climb, then up to big stuff 7 6 3.10 031 7; 1 0 3 1 8 7 4.94 357 -29; 1 3 2 0 9 8 11.68 048 -4; .5 4 1 2 10 9 13.80 018 0; .5 2 2 .8 11 10 7.12 050 11; 5 3 1.5 2 11 12 3.04 155 -39;Leg to join up with top of Razor rift survey 13 10 2.74 150 -29; .4 1.2 5 0 14 13 6.15 089 -26; 2 2 8 2 16 15 6.14 - -V; 15 10 3.16 230 -15; 17 16 1.10 225 -10; 18 17 9.46 262 -16; .5 3 .8 1 19 18 10.31 032 0; 1 1.5 .8 .8 20 19 7.40 048 0; 1 2 .8 .8 21 20 19.73 022 0; 1 2.5 1 .8 22 21 11.11 079 -3; 1.6 1.2 1.2 1.0 23 22 14.60 065 -11; 1.8 1.2 1 1 24 23 2.25 315 50; 25 24 8.97 042 18; .5 3 4 1 26 25 30.60 029 2; 1 4 2.5 .2 27 26 8.00 077 -19; 2 2 1.5 0 ;LRUD data ;Stn L R U D *data passage station left right up down 6 .5 .5 3 2 7 1 0 3 1 8 1 3 2 0 9 .5 4 1 2 10 .5 2 2 .8 11 5 3 1.5 2 12 2 2 3 0;At top of Razor rift survey *data passage station left right up down 10 .5 .5 2 .8 13 .4 1.2 5 0 14 2 2 8 2 *data passage station left right up down 10 .5 .5 2 .8 15 .3 .3 2 .8 16 .3 .3 2 0;Vertical up 17 0 1 2 0 ;Start of Southerly branch along decorated sandy crawl 18 .5 3 .8 1 19 1 1.5 .8 .8 20 1 2 .8 .8 21 1 2.5 1 .8 22 1.6 1.2 1.2 1.0 23 1.8 1.2 1 1 24 .3 .5 1 0 25 .5 3 4 1 26 1 4 2.5 .2 27 2 2 1.5 0 *end Riano_070402a *begin Riano_070402b ;Razor Rift ;surveyors: Chris Agnew, Dave Garman, Paul Dold *date 2007.04.02 *EXPORT 0 16 ;Tape was 20cm short *CALIBRATE tape +0.2 ;From To Tape Compass Clino L R U D 0 1 3.18 045 5; 2 0 12 1.3 1 2 2.51 - +V; 1 2.5 12 1.5 2 3 3.34 128 25; 3 4 2.63 190 28; .4 1 10 .4 4 5 2.46 073 -2; 2 .5 3 1 5 6 1.80 038 43; 1 .3 6 .2 6 7 1.58 042 15; 0 .5 6 1 7 8 1.16 081 0; 0 .3 6 1 8 10 3.22 - +V; .2 .2 3 1 10 11 2.55 077 10; .2 .2 3 3 11 12 2.30 010 12; .7 0 3 1 12 13 3.10 030 19; 0 .4 4 .6 13 14 2.09 352 27; .4 0 9 3 14 16 2.42 055 32; .2 .3 1.5 2 ;LRUD data ;Stn L R U D *data passage station left right up down 0 0 2 4 1.3 1 1 .5 4 1.5 2 1 2.5 1.5 0 3 .4 1 10 .4 4 2 .5 3 1 5 1 .3 6 .2 6 0 .5 6 1 7 0 .3 6 1 8 .2 .2 3 1 10 .2 .2 3 3 11 .7 0 3 1 12 0 .4 4 .6 13 .4 0 6 3 14 .2 .3 1.5 2 16 .2 .2 3 0 *end Riano_070402b *begin Riano_070402c ;Dyslexic Twat Hits The Big Time ;surveyors: Chris Agnew, Dave Garman, Paul Dold *date 2007.04.02 *EXPORT 2 21 ;Tape was 20cm short *CALIBRATE tape +0.2 ;From To Tape Compass Clino L R U D 1 2 5.40 - -V; 2 0 5 5.4 2 3 7.60 200 -26; 2 0 10 2 3 4 5.64 272 8; 0 2 6 4 4 5 3.76 195 36; 2.5 0 3 6 4.06 280 -25; 0 1.5 2 1.5 6 7 2.12 052 -44; .6 .4 .6 2 7 8 8.40 039 -2; .5 1.5 1.5 0 3 9 10.10 - -V; 5 10 9.56 200 -15; 1 2 4 0 10 11 1.70 - -V; 0 1.4 11 12 2.20 218 -11; .4 0 .7 .2 12 13 2.85 177 -23; 1.5 0 4 0 13 14 3.20 227 -56; 0 2.5 3 1.7 14 15 14.83 204 -4; 1 .4 6 .6 15 16 8.24 220 -20; 1 .9 3 0 16 17 2.50 225 -7; .4 .5 .5 1.7 17 18 4.15 200 -3; .5 .2 .6 1.8 18 19 3.38 055 30; 1.3 .1 1.7 3 19 20 1.90 305 57; 1 0 1.6 4 20 21 1.40 193 -7; ;LRUD data ;Stn L R U D *data passage station left right up down ;1 2 0 5 5.4;(Renders too tall and not needed) 2 2 0 10 2 3 0 2 6 4 6 .6 .4 .6 2 7 .5 1.5 1.5 0 *data passage station left right up down 3 0 2 6 4 4 2.5 0 .6 2 5 1 2 4 0 10 0 1.4 4 1.7 11 .4 0 .7 .2 12 1.5 0 4 0 13 0 2.5 3 1.7 14 1 .4 6 .6 15 1 .9 3 0 16 .4 .5 .5 1.7 17 .5 .2 .6 1.8 18 1.3 .1 1.7 3 19 1 0 1.6 4 *end Riano_070402c *begin Riano_070404a ;Dave's runaround ;surveyors: Paul Dold, Dave Garman, Barney *date 2007.04.04 *EXPORT 0 22 ;Tape was 20cm short *CALIBRATE tape +0.2 ;From To Tape Compass Clino U D L R 0 1 3.49 188 45; 2 0 3.5 3.5 1 2 8.85 205 4; .5 0 2.5 1 2 3 4.98 237 0; .2 0 .4 3 3 4 2.41 193 5; 0 .8 1 1 4 5 2.14 258 55; 3 .8 .8 .5 5 6 3.55 252 17; 1.2 .4 .5 .1 6 7 5.76 238 58; .4 1 0 .5 7 8 3.13 232 13; .8 .3 1 .7 8 9 2.40 170 0; 1 1.4 0 2 9 10 3.59 120 -1; 1.4 .4 1 3.5 10 22 1.23 076 -8;Stn 22 = stn in South trending pretty passage ;LRUD data ;Stn U D L R Note not the usual order! *data passage station up down left right 0 3 0 2 2 1 2 0 3.5 3.5 2 .5 0 2.5 1 3 .2 0 .4 3 4 0 .8 1 1 5 3 .8 .8 .5 6 1.2 .4 .5 .1 7 .4 1 0 .5 8 .8 .3 1 .7 9 1 1.4 0 2 10 1.4 .4 1 3.5 22 1.2 1.0 1.6 1.2 *end Riano_070404a *begin Riano_070404b ;Pitch down into Quake Rift ;surveyors: Paul Dold, Dave Garman, Barney *date 2007.04.04 *EXPORT 1 17 ;Tape was 20cm short *CALIBRATE tape +0.2 ;From To Tape Compass Clino U D L R 2 1 2.83 259 23;2 1 2.1 .5 0 3 2 2.10 - +V;3 2.1 0 .8 .3 4 3 1.94 136 12; 1.5 .8 .15 .7 5 4 4.20 212 -35; .3 1.5 0 1.5 6 5 2.76 265 -19; 5.5 1.4 0 .4 7 6 4.18 293 -51; 2 1.5 .4 .8 8 7 3.90 254 -22; 1 0 .5 .2 6 9 2.60 284 -35; 4.5 1 0 .45 9 10 2.64 290 -19; 1.5 10.5 1 4 10 11 10.45 - -V; 11 12 2.10 266 4; 12 0 3 .2 12 13 4.51 050 -61; 14 1.4 .2 .2 13 14 1.41 - -V; 2.5 1.4 .6 .2 14 15 6.95 065 -63; 3 2 0 1 15 16 4.81 - -V;Back in Quake Rift 16 17 9.62 053 2;Stn 17 = Stn 49 in Quake Rift ;17 18 2.63 099 -25;Stn 18 suspected to be stn50 from Dec.06 survey ;18 19 5.98 013 1;Stn 19 is suspected to be next stn51 along in Dec.06 survey ;LRUD data ;Stn U D L R Note not the usual order! *data passage station up down left right 1 0 2 2 0 2 1 2.1 .5 0 3 2.1 0 .8 .3 4 1.5 .8 .15 .7 5 .3 1.5 0 1.5 6 5.5 1.4 0 .4 7 2 1.5 .4 .8 8 1 0 .5 .2 *data passage station up down left right 6 4.5 1 0 .45 9 1.5 10.5 1 4 10 0 .1 3 .2 11 12 0 3 .2 12 14 1.4 .2 .2 13 2.5 1.4 .6 .2 14 3 2 0 1 15 3 2 1 1.5 *end Riano_070404b *end Riano_Easter2007 *BEGIN DryMazeLink ;Link via Dry maze series off entrance inlet to start of Double Barrel passage (Scan-05a) ;surveyors Lank+Noddy+Fred+Liz *date 1985.08.20; 20/08/85 *EXPORT 808 227 231 *CALIBRATE declination 0 ;Magnetic deviation of 6.14 has already been subtracted from all these compass readings? ;(Unable to find original notes in file. Footleg 01/08/06) 808 808a 9 19.80 0 ;artifical leg to tie this link in at the right place, based on revisit to this place Footleg 01/08/06 808a 215 7.30 191.86 3 ;corrected from original survey notes. Footleg 10/08/06 (Scan-05a) 215 216 3.90 100.86 7 ;* 216 217 6.80 191.86 0 ;* 217 218 1.80 98.86 0 ;* 218 219 3.20 193.86 2 ;* 219 220 4.00 105.86 10 ;* 220 221 19.00 185.86 0 ;* 221 222 11.40 109.86 0 ;* 222 223 6.00 70.86 5 ;* 223 224 7.20 93.86 11 ;* 224 225 18.60 69.86 -2 ;* 225 226 7.50 105.86 4 ;* 226 227 4.40 59.86 1 ;* 227 228 4.70 103.86 8 ;* 228 229 5.60 122.86 15 ;* 229 230 5.80 139.86 11 ;* 230 231 26.80 116.86 -13 ;* *END DryMazeLink *BEGIN HighRift ;Riano High rift in Dry Maze (Scan-11a) ;surveyors Lank?+? *date 1987.08.10; 10 Aug. 1987 *EXPORT 227 423 *CALIBRATE declination 0 ;Magnetic deviation of ? has already been subtracted from all these compass readings? ;(Unable to find original notes in file. Footleg 01/08/06) 227 407 8.78 105.60 50 ;* 407 408 2.90 134.03 -15 ;* 408 409 11.00 226.03 -8 ;* 409 410 4.00 155.03 -10 ;* 410 411 11.50 218.03 11 ;* 411 412 6.00 241.03 4 ;* 412 413 13.40 236.03 12 ;* 413 414 2.60 317.03 30 ;* 414 415 10.00 44.03 -2 ;* 415 416 5.60 43.03 -10 ;* 416 417 18.40 52.03 -1 ;* 413 418 21.30 234.03 2 ;* 418 419 14.50 222.03 2 ;* 419 420 6.40 207.03 6 ;* 420 421 5.00 247.03 2 ;* 421 422 5.90 112.03 -30 ;* 422 423 12.80 98.03 -10 ;* 421 424 20.00 247.03 0 ;* *END HighRift *BEGIN DryMaze ;Dry maze series (Scan-01) ;surveyors Lank+? *date 1987.08.10 ;(Estimated) *EXPORT 231 474 *CALIBRATE declination 0 ;Magnetic deviation of 6.89 has already been subtracted from all these compass readings ;(Checked against original notes by Footleg 01/08/06) 231 444 5.99 180.73 25 ;* 444 445 11.30 184.11 -4 ;* 445 446 12.80 206.11 0 ;* 446 447 3.30 163.11 0 ;* 447 448 8.20 249.11 0 ;* 448 449 11.80 122.11 0 ;* 449 450 5.20 227.11 -9 ;* 450 451 2.00 91.11 0 ;* 451 452 5.00 203.11 0 ;* 452 453 7.20 117.11 9 ;* 452 454 1.50 - up ;* 454 455 3.10 201.11 0 ;* 455 456 5.60 254.11 -7 ;* 456 457 2.10 158.11 0 ;* 457 458 8.30 119.11 5 ;* 457 459 11.90 288.11 -5 ;* 459 460 10.10 211.11 0 ;* 460 461 5.20 209.61 -4 ;* 461 462 10.00 256.11 8 ;* 462 463 3.40 247.61 35 ;* 463 464 9.40 262.11 0 ;* 464 465 3.40 354.61 0 ;* 465 466 9.70 256.11 0 ;* 466 467 3.70 209.61 20 ;* 467 468 7.60 271.61 0 ;* 468 469 6.70 38.11 -17 ;* 469 470 8.60 274.61 0 ;* 470 471 7.30 222.61 0 ;* 469 472 14.10 36.11 0 ;* 472 473 11.10 277.61 0 ;* 473 474 7.60 273.11 0 ;* 474 475 5.00 278.11 12 ;* 473 476 8.10 212.11 12 ;* 476 477 4.00 223.11 0 ;* 477 478 7.80 91.11 0 ;* 473 479 21.00 103.11 0 ;* 472 480 14.40 38.11 6 ;* 480 481 7.20 98.11 0 ;* 465 482 14.50 27.11 0 ;* 482 483 21.10 41.11 0 ;* 483 484 14.80 27.11 0 ;* 484 485 12.00 271.11 0 ;* 485 486 9.10 50.11 15 ;* 484 487 10.30 103.11 8 ;* 487 488 9.10 51.11 -5 ;* 487 489 6.10 137.11 -16 ;* 489 490 4.70 167.61 -17 ;* 490 491 9.70 122.61 0 ;* *END DryMaze *BEGIN DormouseInlet ;Inlet which the upstream end of has been smoke tested to Dormouse Cave (0935) and sink 2458 (Scan-05a) ;surveyors Lank?+? *date 1985.08.20 *EXPORT 231 283 *CALIBRATE declination 0 ;Magnetic deviation of ? has already been subtracted from all these compass readings? ;(Unable to find original notes in file. Footleg 01/08/06) 232 283 13.80 63.86 6 ;(Scan-05aiii) 231 232 9.20 174.86 0 ;(Scan-05ai) 232 233 10.80 220.86 -2 ;* 233 234 5.50 155.86 9 ;* 234 235 5.60 212.86 0 ;* 235 236 6.20 247.86 6 ;* 236 237 11.00 125.86 6 ;* 237 238 4.20 211.86 -4 ;* 238 239 4.80 188.86 6 ;* 239 240 4.70 284.86 -12 ;* 240 241 3.70 212.86 0 ;* 241 242 5.90 248.86 13 ;* 242 243 4.90 258.86 -9 ;* 243 244 4.80 213.86 3 ;* 244 245 9.00 201.86 2 ;* 245 246 11.30 253.86 3 ;* 246 247 5.90 152.86 -10 ;* 247 248 6.10 234.86 11 ;(Scan-05aii) 248 249 3.80 249.86 38 ;* 249 250 4.80 294.86 -20 ;* 250 251 6.20 252.86 -4 ;* 251 252 2.50 173.86 14 ;* 252 253 7.70 224.86 2 ;* 253 254 2.30 - up ;* 254 255 6.00 189.86 0 ;* 255 256 9.80 226.86 -13 ;* 256 257 5.30 259.86 3 ;* 257 258 9.80 218.86 5 ;* 258 259 5.00 247.86 3 ;* 259 260 12.10 215.86 1 ;* 260 261 2.60 - up ;* 261 262 4.70 164.86 10 ;* 262 263 7.20 136.86 -13 ;* 263 264 3.20 89.86 10 ;* 264 265 1.90 203.86 -45 ;* 265 266 3.60 201.86 31 ;* 266 267 3.40 117.86 -53 ;* 267 268 5.60 175.86 6 ;* 268 269 4.30 223.86 22 ;* 269 270 7.10 214.86 12 ;* 270 271 2.80 220.86 -16 ;* 271 272 13.20 201.86 12 ;* 272 273 2.80 198.86 -10 ;* 273 274 3.20 131.86 15 ;* 274 275 2.20 148.86 5 ;* 275 276 6.10 218.86 3 ;* 276 277 6.00 186.86 -10 ;* 277 278 8.00 200.86 21 ;* 278 279 1.60 168.86 60 ;* 279 280 1.80 209.86 -38 ;* 280 281 5.90 222.86 18 ;* 281 282 4.60 298.86 20 ;Scan-05b *END DormouseInlet *BEGIN UpStream ;Riano Streamway upstream of entrance inlet junction (data taken from line drawing) *EXPORT DoubleBarrelPassage.41a DoubleBarrelPassage.23 UpperLevelLink.0 RopeLoopAvenPassage.134 CatPrintPassage.121 *equate MainStream.63 DoubleBarrel.63 *equate CatPrintPassage.77 CoffinLevelInlet.77 *equate LowerLevels.78 CoffinLevelInlet.78 *equate LowerLevels.97a UpperLevelLink.8 *equate UpperLevelLink.11 RopeLoopAvenPassage.405 *equate CatPrintPassage.115 DoubleBarrelPassage.12 *equate DoubleBarrelPassage.12 UpperLevelLink.12 *equate DoubleBarrelPassage.41a DoubleBarrel.65 *BEGIN MainStream *EXPORT 63 ;Riano Streamway upstream of entrance inlet junction (data taken from line drawing) 20 55 29.53 87.09 0 ;* 55 56 36.45 115.16 0 ;* 56 57 14.00 180.00 0 ;* 57 58 17.00 88.31 0 ;* 58 59 19.00 180.00 0 ;* 59 60 20.39 281.31 0 ;* 60 61 19.72 210.46 0 ;* 61 62 12.08 114.44 0 ;* 62 63 5.00 216.87 0 ;* ;63 63a 140 113 0 ;Made up active passage leg for Double Barrel passage *END MainStream *BEGIN DoubleBarrel ;Riano Streamway and parallel double barrel passage (data taken from line drawing) *EXPORT 63 65 63 64 126 114.48 0 ;* 63 65 7.21 213.69 0 ;* ;65 66 13.92 111.03 0 ;* ;66 67 101.13 114.53 0 ;* ;67 68 22.20 97.76 0 ;* ;68 69 24.69 121.76 0 ;* ;69 70 19.10 132.87 0 ;* ;70 71 15.00 178.09 0 ;* ;71 72 21.07 112.30 0 ;* ;72 73 14.14 98.13 0 ;* ;72 74 12.65 198.43 0 ;* ;74 75 14.76 118.30 0 ;(data copied into new double barrel passage survey) ;74 76 20.26 285.75 0 ;* ;76 77 8.27 154.98 0 ;* *END DoubleBarrel *BEGIN UpperLevelLink ;Resurvey from Upper levels down to downstream end of Double Barrel passage *EXPORT 0 8 11 12 *CALIBRATE declination 2.42 *CALIBRATE clino -2; Set this correction because I think I sighted all my readings too low, as passage gradient was wrong ;surveyors: Footleg, Caroline Fretwell *date 2006.08.02; 02/08/2006 ;stn 0= stn 10 (carbide marking on boulder) in high level passage survey ;(need to find out which station number in this file corresponds to stn 10 in old survey) 1 0 5.95 265 35; 0.75 0.75 2.5 0.5 2 1 7.78 292 -1; 0 1 2.5 3 3 2 7.99 245 -2; 3 5 1 0.75 4 3 4.07 - +v; 2 2 - 0 5 4 8.36 223 24; 1 3 3 0.75 6 5 6.26 264 10; 0 1.5 0.5 1 7 6 10.56 355 -2; 4 0 0.75 2 8 7 9.83 285 10; 2.5 0 1 1.75 9 8 12.02 248 -4; 0 1.5 0.2 1 10 9 6.51 300 -8; 4 2 1 1 11 10 11.70 310 3; 5 0 0.5 1 12 11 17.48 249 1; 3.5 3 1.25 0.4 ;stn 12 = old survey marker (orange tape on heap of rocks) at junction with catprint passage ;LRUD data *data passage station left right up down 0 0.75 0.75 3 0 1 0.75 0.75 2.5 0.5 2 0 1 2.5 3 3 3 5 1 0.75 4 2 2 0 0 5 1 3 3 0.75 6 0 1.5 0.5 1 7 4 0 0.75 2 8 2.5 0 1 1.75 9 0 1.5 0.2 1 10 4 2 1 1 11 5 0 0.5 1 12 3.5 3 1.25 0.4 *END UpperLevelLink *BEGIN DoubleBarrelPassage ;Resurvey from Upper levels down to downstream end of Double Barrel passage *EXPORT 12 23 41a *CALIBRATE declination 2.42 *CALIBRATE clino -2; Set this correction because I think I sighted all my readings too low, as passage gradient was wrong ;surveyors: Footleg, Caroline Fretwell *date 2006.08.02; 02/08/2006 ;stn 12 = old survey marker (orange tape on heap of rocks) at junction with catprint passage 13 12 11.01 176 -3; 0 2 .5 2 14 13 10.36 165 3; 3.5 2 3 0 15 14 7.20 168 -12; 1.75 0 .75 1.25 ;stn 15 is at junction with passage going south 16 15 27.89 125 -2; 0 4 1 2 17 16 16.28 132 6; 4 2.5 3 0.5 18 17 2.96 234 6; 0.75 1.75 1 0.3 19 18 16.85 286 -4; 2.5 2 1 1.5 ;stn 19 = tip of longer stal of pair on roof on outside of bend, closest to passage into swirl chamber 19 75 14.76 118.30 0 ;(data taken from line drawing) 20 19 9.45 176 0; 0 3 2 1.5 21 20 8.33 279 -6; 0 3 2.5 1.5 22 21 3.49 244 19; 0.5 0.5 0 0.75 23 22 4.49 245 -18; 3 0 0.4 1.25 ;stn 23 = stn 0 of inlet survey (easter 06) 24 23 9.30 119 -1; 1 0 0.5 1 25 24 4.69 77 10; 0 1.75 0.5 0.75 26 25 17.42 118 -1; 1 0 1.75 1.5 27 26 4.20 88 -41; 0 1.5 1.25 1.75 28 27 9.58 168 -10; 3.5 0 2 2 29 28 7.23 164 30; 3 0 2 0.75 30 29 3.25 114 3; 0 1 1.8 0.5 31 30 6.30 157 4; 2 0 1.5 0.5 32 31 7.30 106 -14; 0 1 0.5 0.75 33 32 12.12 119 -10; 3 0.75 0 1.25 34 33 12.10 85 -1; 0 3 0.5 1.75 35 34 19.47 106 -1; 1.5 0.5 0.3 0.75 ;Clino readings reversed as this passage was sloping wrong way 36 35 14.68 106 -2; 0.4 2.25 1 1 ;Clino readings reversed as this passage was sloping wrong way 37 36 26.27 114 -2; 2 0 1.75 1 ;Clino readings reversed as this passage was sloping wrong way 38 37 20.38 114 -2; 1.25 1 1 0.3 ;Clino readings reversed as this passage was sloping wrong way 39 38 27.30 123 -6; 2.75 0 0.5 1.25 ;Clino readings changed from -6 as this passage was sloping wrong way 40 39 19.16 112 3; 1.75 1 0.75 0 41 40 6.97 75 5; 0.75 5 1 2 ;stn 41 = top of broken stalagmite directly over stream 41a 40 7.0 112 3; Estimated leg to connect to existing survey data ;LRUD data *data passage station left right up down 12 3.5 3 1.25 0.4 13 0 2 .5 2 14 3.5 2 3 0 15 1.75 0 .75 1.25 16 0 4 1 2 17 4 2.5 3 0.5 18 0.75 1.75 1 0.3 19 2.5 2 1 1.5 20 0 3 2 1.5 21 0 3 2.5 1.5 22 0.5 0.5 0 0.75 23 3 0 0.4 1.25 24 1 0 0.5 1 25 0 1.75 0.5 0.75 26 1 0 1.75 1.5 27 0 1.5 1.25 1.75 28 3.5 0 2 2 29 3 0 2 0.75 30 0 1 1.8 0.5 31 2 0 1.5 0.5 32 0 1 0.5 0.75 33 3 0.75 0 1.25 34 0 3 0.5 1.75 35 1.5 0.5 0.3 0.75 36 0.4 2.25 1 1 37 2 0 1.75 1 38 1.25 1 1 0.3 39 2.75 0 0.5 1.25 40 1.75 1 0.75 0 41 0.75 5 1 2 *END DoubleBarrelPassage *BEGIN LowerLevels ;Riano Low level upstream of double barrel (data taken from line drawing) ;surveyors ? ;date *EXPORT 78 97a *CALIBRATE declination 0 ;Magnetic deviation of ? has already been subtracted from all these compass readings ;(Checked against original notes by Footleg 01/08/06) 78 92 11.00 180.00 0 ;* 92 93 26.07 122.47 0 ;* ;93 94 22.47 69.14 0 ;* ;94 95 4.24 135.00 0 ;* ;93 97 25.49 228.18 0 ;* ;97 98 13.60 342.89 0 ;* ;98 99 8.06 240.25 0 ;* 97 97a 3.47 123 0 ;(artificial leg to tie into new survey data) 97 100 13.15 188.74 0 ;* 100 101 22.36 169.69 0 ;* ;101 102 14.42 123.69 0 ;* 102 103 11.40 217.87 0 ;* 103 104 11.18 259.69 0 ;* 104 105 9.22 310.60 0 ;* 105 101 18.38 45.00 0 ;* 105 107 32.80 232.43 0 ;* 107 108 12.16 189.46 0 ;* 108 109 5.38 291.80 0 ;* 109 110 5.38 21.80 0 ;* 110 111 18.86 302.00 0 ;* 111 112 21.02 267.27 0 ;* ;97 113 20.39 78.69 0 ;* ;113 114 12.72 135.00 0 ;* ;114 115 15.65 63.43 0 ;* *END LowerLevels *BEGIN CatPrintPassage ;Riano Cat Print Passage (data taken from line drawing) ;surveyors ? ;date *EXPORT 77 121 115 *CALIBRATE declination 0 ;Magnetic deviation of ? has already been subtracted from all these compass readings ;(Checked against original notes by Footleg 01/08/06) 77 96 28.65 119.24 0 ;* 116 96 19.10 317.12 0 ;* 115 116 19.00 0000 0 ;* 115 118 26.90 138.01 0 ;* 118 119 16.15 158.19 0 ;* 119 120 12.53 118.61 0 ;* 120 121 5.00 180.00 0 ;* *END CatPrintPassage *BEGIN RopeLoopAvenPassage ;Inlet which ascends from junction with Cat Print passage up aven with rope loop ;hanging down and joins upper level phreatic series (Scan-10a) ;surveyors ? *date 1987.08.01; Aug. 1987 *EXPORT 134 405 *CALIBRATE declination 0 ;Magnetic deviation of 5.97 has already been subtracted from all these compass readings ;All rechecked against original survey notes 134 389 7.50 2.03 -7 ;From stn 24 (CM13) of 105.3 Also stn 27 of 1985 main line survey 389 390 6.42 302.03 -5 ;* 390 391 10.26 19.03 1 ;* 391 392 13.62 261.03 -2 ;* 392 393 9.73 13.03 -3 ;* 393 394 3.04 326.03 13 ;* 394 395 15.81 296.03 -4 ;* 395 396 3.05 194.03 -20 ;* 396 397 6.47 317.03 -6 ;* 397 398 7.85 59.03 5 ;* 398 399 4.60 47.03 5 ;* 399 400 8.18 288.03 4 ;* 400 401 5.05 94.03 -30 ;* 401 402 3.50 73.03 0 ;* 402 403 11.12 72.03 -40 ;* 403 404 8.26 185.03 -2 ;* 404 405 7.98 128.03 -4 ;* 405 406 18.75 66.03 -3 ;406 is centre of main lower level 3-way junction with catprint passage *END RopeLoopAvenPassage *BEGIN CoffinLevelInlet ;Riano CoffinLevelInlet (data taken from line drawing) ;surveyors ? ;date *EXPORT 77 78 *CALIBRATE declination 0 ;Magnetic deviation of ? has already been subtracted from all these compass readings ;(Checked against original notes by Footleg 01/08/06) 77 78 10.63 228.81 0 ;* 78 79 39.05 283.32 0 ;* 79 80 10.44 286.70 0 ;* 79 81 6.08 189.46 0 ;* 81 82 11.88 284.62 0 ;* 82 83 4.24 225.00 0 ;* 83 84 17.27 157.89 0 ;* 84 85 12.04 274.76 0 ;* 85 86 8.06 172.87 0 ;* 86 87 6.32 108.43 0 ;* 87 88 6.08 170.53 0 ;* 88 89 23.34 279.86 0 ;* 89 90 8.06 209.74 0 ;* 90 91 30.08 291.44 0 ;* *END CoffinLevelInlet *END UpStream *BEGIN EnergeticBTLegs *EXPORT 1 35 *CALIBRATE declination 2.42 ;surveyors Sam Lieberman, Carmen Haskell, Paul Fretwell *date 2006.04.18; 18/4/06 2 1 4.77 281 1; 0 1 0 1.5 3 2 3.4 341 0; 0 .2 3 1.7 4 3 2.23 237 2; 0 .4 4 1.7 5 4 2.47 289 -27; 0 .4 3 1.5 6 5 2.87 324 -11; 0 .5 4 2 7 6 3.47 254 -22; .4 0 2 2 8 7 3.20 244 1; .3 .1 1.5 2.5 9 8 2.5 285 -7; 0 0.5 1 2 10 9 3.3 304 5; .3 0 1.5 1.8 11 10 3.2 273 -3; .4 0 2 1.7 12 11 3.16 287 -2; .5 0 1.5 1.5 13 12 2.8 183 -45; 0 .4 1.5 .8 14 13 2.66 181 0; 0 1.5 .5 2 15 14 5.51 270 -3; .5 .8 .3 1.8 16 15 8.59 198 -1; 1 1.2 .6 2 17 16 9.92 305 -1; 0 2 .1 1.7 18 17 6.21 237 -2; .5 1.2 .2 1 19 18 6.4 285 -3; 1.5 1.5 1.5 1.2 20 19 10.04 301 -3; .2 1 .5 1 21 20 3.85 241 0; 1 .2 .5 1 22 21 3.58 298 -5; 1 1.2 .4 1 23 22 14.95 312 -3; .5 .8 0 1.5 24 23 22.47 302 -2; .7 0 .5 1.5 25 24 8.45 299 -7; 1 0 2 1.7 26 25 4.43 291 -12; 1.4 0 1.4 1.8 27 26 6.72 302 8; .5 0 5 2.5 28 27 6.85 303 -8; .6 .5 .3 1.4 29 28 9.12 303 -9; 1 0 1 2 30 29 7.15 298 -8; 0 .3 2.5 3 31 30 3.22 321 27; 0 .5 1 4 32 31 8.3 80 -65; 1 3.5 11 1 33 32 6.32 90 -25; 0 3 3.5 1.5 34 33 6.49 66 -44; 4 0 5 1 35 34 2.45 328 1; 1.5 0 2 1.5 ;stn35 1 1.5 3 0 - cairn 33 36 4.17 98 56; 0 4 1 5 36 37 4.62 63 2; 1.8 1.8 1 6 37 38 8.05 142 0; 0 2 .5 12 38 39 6.4 85 -3; 1 .5 .4 1.4 39 40 6.9 123 -9; 1.5 0 .9 .4 40 41 8.59 60 0; 41 42 5.5 115 2; ;LRUD data *data passage station left right up down 1 0 1 0 1.5 2 0 .2 3 1.7 3 0 .4 4 1.7 4 0 .4 3 1.5 5 0 .5 4 2 6 .4 0 2 2 7 .3 .1 1.5 2.5 8 0 0.5 1 2 9 .3 0 1.5 1.8 10 .4 0 2 1.7 11 .5 0 1.5 1.5 12 0 .4 1.5 .8 13 0 1.5 .5 2 14 .5 .8 .3 1.8 15 1 1.2 .6 2 16 0 2 .1 1.7 17 .5 1.2 .2 1 18 1.5 1.5 1.5 1.2 19 .2 1 .5 1 20 1 .2 .5 1 21 1 1.2 .4 1 22 .5 .8 0 1.5 23 .7 0 .5 1.5 24 1 0 2 1.7 25 1.4 0 1.4 1.8 26 .5 0 5 2.5 27 .6 .5 .3 1.4 28 1 0 1 2 29 0 .3 2.5 3 30 0 .5 1 4 31 1 3.5 11 1 32 0 3 3.5 1.5 33 4 0 5 1 34 1.5 0 2 1.5 35 1 1.5 3 0; cairn *data passage station left right up down 33 0 4 5 1 36 0 4 1 5 37 1.8 1.8 1 6 38 0 2 .5 12 39 1 .5 .4 1.4 40 1.5 0 .9 .4 41 0.75 0.75 .9 0 42 0.5 1 .7 0 *END EnergeticBTLegs *BEGIN SparkleHall ;surveyors: Footleg, Caroline Fretwell, Carmen Haskell, PatrickBW *date 2006.07.31; 31/07/06 *EXPORT 0 *CALIBRATE declination 2.42 0 1 5.75 130 -5; 2 2 4 0;stn0=stn35 in Easter 06 survey 1 2 2.90 169 -14; 0 0.5 1.5 1.5 2 3 4.10 270 14; 0 2 1.5 1.5 3 4 4.60 279 -50; 2 0 1 1 4 5 4.30 310 -11; 0.25 0.25 0 0.8 5 6 4.00 239 -6; 4 0 1 1 5 7 7.40 230 -8; 7 8 4.00 299 -9; 0 1 2 1.5 8 9 4.85 245 3; 1 1 2 1.5 9 10 4.40 163 -19; 10 11 14.70 131 4; 4 2 0 3.5 ;11 3 0 1 0 10 12 11.60 224 -9; 12 13 2.07 307 -27; 0.5 2 0.3 1.2 13 14 4.83 229 -5; 1.5 0 0.25 1 14 15 1.3 293 3; 0 0.8 0.5 0.5 15 16 1.93 188 -3; 0.8 0 0.2 0.7 16 17 2.10 242 -7; 0 0.6 0.3 0.5 17 18 7.00 134 -8; 0.7 0 0.4 1.5 18 19 3.29 119 -5; 0.5 0 0.8 0.5 19 20 1.74 106 -4; 0.6 0 0.8 0.5 20 21 3.43 225 -8; 0 0.6 0.5 0.8 10 22 10.20 326 23; 10 23 9.10 349 30; 23 24 4.40 004 19; 24 25 4.15 052 -2; ;25 3 1 0 3 ;LRUD data *data passage station left right up down 0 2 2 4 0;stn0=stn35 in Easter 06 survey 1 0 0.5 1.5 1.5 2 0 2 1.5 1.5 3 2 0 1 1 4 0.25 0.25 0 0.8 5 4 0 1 1 7 0 1 2 1.5 8 1 1 2 1.5 9 1 1 2 1.5 *data passage station left right up down 11 0 3 1 0 10 2 4 5 1 22 3 3 4 2 *data passage station left right up down 10 2 4 5 1 23 6 0 4 1 24 2 1 0.5 1 25 3 1 0 3 *data passage station left right up down 10 1 3 5 1 12 0.5 2 0.3 1.2 13 1.5 0 0.25 1 14 0 0.8 0.5 0.5 15 0.8 0 0.2 0.7 16 0 0.6 0.3 0.5 17 0.7 0 0.4 1.5 18 0.5 0 0.8 0.5 19 0.6 0 0.8 0.5 20 0 0.6 0.5 0.8 21 0.2 0.2 0.5 1 *END SparkleHall *BEGIN UpperLevels *EXPORT 121 134 144 148 174 182 *equate 148 PendantChamber.148 *equate 182 FarEnd.182 *equate 174 FarEndInlet.174 *equate 166 214 *equate 129 530 *equate 386 89CentsTinto.1 *equate 174 21stPassage.21st-090412.19 *equate 148 PendantChamber2011.24 *equate 150 PendantChamber2011.16 ;Riano phreatic upper levels upstream of double barrel passage (Scan-02) ;surveyors Lank, Tony, Grov? *date 1985.08.17; 17 Aug. 1985 *CALIBRATE declination 0 ;Magnetic deviation of 6.14 has already been subtracted from all these compass readings ;(Checked against original notes by Footleg 09/08/06) ;Start Checked against original survey notes 121 122 4.80 115.86 13 ;0-1 Catprint Chamber start (Error found: was 135.86) 122 123 2.30 295.86 0 ;* 123 124 1.00 - up ;* 124 125 4.00 221.86 22 ;* 125 126 7.00 - up ;* 126 127 2.50 129.86 0 ;* 127 128 5.90 231.86 0 ;* 128 129 9.20 209.86 27 ;* 129 130 4.10 137.86 31 ;8-9 Start of 105:8 15/08/96 Marked "27" 130 131 18.80 299.86 -5 ;* 131 132 3.80 41.86 15 ;* 132 133 10.40 282.86 -19 ;(Scan-03h) 133 134 12.50 304.86 -1 ;12-13 Start of 105:9 (134=Stn 24 on original notes (Scan-03h)) 134 135 11.30 278.86 23 ;* 135 136 30.00 246.86 2 ;* 136 137 20.20 19.86 0 ;(Error found: was 39.86) 137 138 14.90 281.86 -12 ;138=Stn 20 on original notes (Scan-03h) 138 139 30.00 272.86 1 ;* 139 140 10.60 355.86 0 ;* 140 141 5.00 92.86 -12 ; (Scan-03g) 141 142 4.40 22.86 -6 ;* 142 143 5.60 332.86 40 ;* 143 144 8.70 74.86 -16 ;(Old Stn 10? = 144 here) 144 145 6.30 17.86 35 ;* 145 146 21.00 338.86 8 ;* 146 147 25.00 356.86 -3 ;* 147 148 27.70 13.86 0 ;26-27 Start of 105:5 (Stn 6 = 148 here) ;148a 149 9.70 303.86 14 ;* ;149 150 30.00 281.86 -4 ;Should be closer to 288 after correction to match DistoX resurvey 2011 150 151 30.00 280.86 -2 ;(Possibly 275.86? Hard to read original bearing on notes: 102 or 107) 151 152 8.80 293.86 1 ;* 152 153 6.80 313.86 10 ;* 153 154 12.00 284.86 -8 ;* 139 155 8.60 285.86 40 ;(Scan-03h) 155 156 12.70 281.86 -1 ;* 156 157 15.20 276.86 4 ;* 157 158 12.00 235.86 5 ;* ;End Checked against original survey notes 130 159 3.50 151.86 0 ; (Scan-03f) 159 160 19.00 97.86 -8 ;* 160 161 12.40 147.86 14 ;* 161 162 19.00 134.86 -3 ;* 162 163 21.50 198.86 0 ;* 161 164 4.20 222.86 0 ;* 164 165 8.30 277.86 -20 ;* 165 166 10.00 227.86 3 ;* 163 167 25.40 92.86 -3 ; (Scan-03j) 167 168 24.70 40.86 -12 ; (Scan-03c) 168 169 24.90 116.86 10 ;* 169 170 8.30 188.86 -20 ;* 170 171 25.40 111.86 -8 ;* 171 172 9.50 112.86 18 ;* 172 173 18.70 197.86 3 ;* 173 174 13.70 140.86 -16 ;52-53 Start of 105:15 174 175 19.50 92.86 -5 ; (Scan-03d) 175 176 10.70 60.86 -6 ;* 176 177 22.60 65.86 4 ;* 177 178 9.20 62.86 -10 ;* 178 179 19.70 45.86 0 ;* 179 180 18.60 66.86 3 ;* 180 181 9.00 100.86 -14 ;* 181 182 6.40 169.86 0 ;60-61 Start of 105:6 11/8/86 174 183 4.80 264.86 15 ; (Scan-03e) 183 184 5.40 235.86 0 ;* 184 185 15.40 254.86 15 ;* 185 186 10.60 281.86 0 ;* 186 187 10.60 217.86 0 ;* 187 188 6.50 248.86 0 ;* 188 189 3.50 173.86 50 ;* 189 190 15.00 235.86 -15 ;68-69 Start of 105.11 163 191 16.90 243.86 6 ; (Scan-03a) 191 192 19.50 225.86 0 ;* 192 193 5.00 292.86 40 ;* 193 194 3.10 271.86 -25 ;* 194 195 11.10 237.86 -9 ;* 195 196 14.60 217.86 0 ;* 196 197 6.80 235.86 5 ;* 197 198 11.40 283.86 1 ;* 198 199 4.10 245.86 8 ;* 192 200 8.20 106.86 0 ;* 194 201 3.00 246.86 -30 ; (Scan-03b) 201 202 3.20 299.86 -35 ;* 202 203 5.20 265.86 0 ;* 203 204 8.40 43.86 0 ;* 204 205 7.50 33.86 0 ;* 205 206 2.70 341.86 -12 ;* 206 207 4.50 229.86 0 ;* 207 208 2.40 306.86 3 ;* 208 209 4.40 44.86 3 ;* 209 210 4.00 35.86 0 ;* 210 211 6.20 52.86 4 ;* 211 212 6.10 40.86 -13 ;* 212 213 6.40 359.86 -17 ;* 213 214 11.70 31.86 -8 ;* ;Riano Upper levels beyond CatPrintPassage ;Side passage from Upper levels cat print junction (not found the data yet. Maybe digital photo pages?) 130 382 20.47 290.94 1 ;* 382 383 4.70 222.95 11 ;* 383 384 9.00 280.95 -8 ;* 384 385 3.90 212.95 -10 ;* 385 386 11.55 242.95 -4 ;* 386 387 12.35 223.95 -32 ;* 387 388 9.75 184.95 -38 ;* ;Aven Passage (Scan-14c) 158 492 7.00 63.11 0 ;* 492 493 6.30 2.11 -12 ;* 493 494 11.40 95.11 -8 ;* 494 495 3.00 254.11 -31 ;* 495 496 1.80 203.11 0 ;* 496 497 5.00 206.11 0 ;* 497 498 1.80 99.11 0 ;* 498 499 2.30 179.11 0 ;* 499 500 3.30 - up ;* 500 501 5.20 285.11 1 ;* 501 502 4.00 194.11 0 ;* 502 503 1.70 287.11 -11 ;* 503 504 3.00 225.11 -21 ;* 504 505 3.00 188.11 -43 ;* 505 506 2.50 250.11 0 ;* 506 507 2.50 185.11 0 ;* 507 508 4.00 198.11 0 ;* 508 509 7.00 283.11 0 ;* ;Phreatic Series (Scan-14f) 167 510 16.03 344.87 -14 ;Where did this leg come from?) 510 511 2.60 291.11 5 ;Different to original survey notes! 511 512 8.10 313.11 4 ;* 512 513 9.00 279.11 24 ;* 512 514 1.60 281.61 32 ;* 514 515 7.00 42.11 -16 ;* 515 516 2.00 - up ;* 516 517 5.70 44.11 14 ;* 517 518 2.60 351.11 0 ;* 518 519 6.40 40.11 7 ;* 517 520 7.30 113.11 0 ;* 520 521 3.70 47.11 5 ;* 516 522 5.10 348.11 -24 ;* 522 523 4.10 341.11 -8 ;* 523 524 10.50 318.11 0 ;* 524 525 12.60 315.61 1 ;* 525 526 2.00 275.11 15 ;* 526 527 10.40 227.11 -6 ;* 527 528 6.60 279.11 21 ;* 528 529 18.80 296.11 0 ;* 529 530 6.60 217.11 30 ;* ;(Scan-12a) 190 425 3.70 256.94 -59 ;* 425 426 12.00 283.03 10 ;* 426 427 15.50 278.03 0 ;* 427 428 18.00 273.03 3 ;* 428 429 28.00 273.03 3 ;* 429 430 10.00 256.03 8 ;* 430 431 16.00 272.03 5 ;* 431 432 15.00 246.03 9 ;* 432 433 16.00 224.03 0 ;* 425 434 3.50 150.03 2 ;* 434 435 14.70 215.03 -3 ;* 435 436 4.50 191.03 -6 ;* 436 437 9.00 239.03 0 ;* 437 438 3.00 186.03 -2 ;* 438 439 3.00 230.03 2 ;* 439 440 7.00 238.03 0 ;* 440 441 7.00 268.03 5 ;* 441 442 6.00 250.03 2 ;* 442 443 10.40 248.03 2 ;* *flags duplicate 182 600 1.5 050 0 ;Dummy legs to provide nodes to attach Uzueka Tunnel sketch 182 601 2.0 130 0 ;Dummy legs to provide nodes to attach Uzueka Tunnel sketch *flags not duplicate *BEGIN PendantChamber ;Riano big chamber in upper levels over top of Double Barrel (Scan-06) 105:05 ;surveyors Juan+Grov *date 1986.07.01; ;date Jul. 1986 *EXPORT 148 *CALIBRATE declination 0 ;Magnetic deviation of 6.05 has already been subtracted from all these compass readings ;(Checked against original notes by Footleg 10/08/06) *flags duplicate 148 284 6.10 301.99 32 ;Old stn 6 in upper levels passage 284 285 8.20 297.95 -5 ;* 285 286 10.20 67.95 0 ;* 286 287 10.10 .95 4 ;* 287 288 7.70 35.95 -3 ;* *flags not duplicate 288 289 3.50 23.95 -30 ;* 289 290 8.00 - down ;* 290 291 6.00 13.95 -45 ;* 291 292 4.00 - down ;* 292 293 6.00 - down ;* 293 294 18.00 13.95 0 ;* 293 295 6.00 - down ;* *flags duplicate 288 296 18.20 89.95 0 ;* 296 297 5.00 225.95 5 ;* 297 298 13.90 125.95 3 ;* *flags not duplicate 298 299 5.00 38.95 -18 ;* 299 300 13.70 116.95 8 ;* 300 301 7.00 96.95 -20 ;* 301 302 15.00 96.95 -5 ;* 148 303 5.65 55.91 22 ;* 303 304 7.05 82.95 26 ;* 304 305 3.70 22.95 2 ;* 305 306 16.60 163.95 35 ;* 306 307 12.43 203.95 32 ;* 307 308 22.00 276.95 5 ;* 308 309 11.60 258.95 35 ;* 307 310 4.85 96.95 -11 ;* 310 311 16.70 188.95 14 ;* 311 312 9.60 184.95 -13 ;* 310 313 3.40 187.95 3 ;* 313 314 16.28 95.95 -4 ;* 314 315 10.90 77.95 -28 ;* 315 316 5.85 56.95 -23 ;* 316 317 16.55 77.95 2 ;* 317 318 20.70 77.95 28 ;* 317 319 15.35 300.95 -16 ;* 319 320 14.87 355.95 -14 ;* *END PendantChamber *BEGIN PendantChamber2011 *EXPORT 1 16 24 ;Footleg, Tony Radmall, Alistair Smith, Ben Kent ;DistoX: WSCC *DATE 2011.08.04 *CALIBRATE declination 1.75 1 2 4.33 212.03 24.20 *FLAGS SPLAY 2 2a 2.78 239.60 83.80 2 2b 3.12 341.24 -65.85 2 2c 23.28 150.27 10.67 2 2d 19.40 161.19 8.99 2 2e 11.83 213.62 14.64 2 2f 5.44 279.15 28.83 *FLAGS NOT SPLAY 2 3 13.29 306.52 -13.04 *FLAGS SPLAY 3 3a 4.72 214.19 73.02 3 3b 6.18 259.89 -64.51 3 3c 12.99 259.83 1.71 3 3d 21.26 258.87 15.60 3 3e 20.03 203.29 20.62 3 3f 5.35 26.21 -15.79 *FLAGS NOT SPLAY 3 4 16.81 305.37 -7.44 *FLAGS SPLAY 4 4a 0.90 205.68 80.23 4 4b 14.89 174.05 -58.94 4 4c 11.73 154.37 -3.59 4 4d 13.18 177.42 -3.95 4 4e 12.43 138.96 -7.20 4 4f 11.52 148.30 -8.38 4 4g 4.76 354.91 -21.00 4 4h 5.88 332.29 -14.58 *FLAGS NOT SPLAY 4 5 8.14 240.11 -6.57 5 6 12.13 305.07 35.94 6 7 3.05 81.54 -33.10 7 8 5.80 314.25 35.63 8 9 8.66 292.13 23.92 9 10 10.04 325.65 -45.24 10 11 8.39 231.02 -16.33 11 12 6.21 241.07 -10.52 12 13 2.28 273.51 6.30 13 14 4.47 173.38 -5.69 14 15 4.30 206.78 -1.69 15 16 7.41 179.27 -13.67 16 17 5.52 154.94 12.94 ;16=Old stn marked T6 17 21 10.72 171.80 -68.32 16 18 22.20 109.98 2.58 18 19 13.10 78.35 -2.82 19 20 6.16 11.79 14.32 20 5 4.85 5.49 -17.36 18 22 8.21 111.36 17.53 22 23 3.69 136.47 -7.46 23 24 6.64 116.35 -27.80 *FLAGS SPLAY 24 24a 3.11 31.29 77.03 24 24b 1.56 174.75 -87.56 24 24c 8.62 64.80 18.58 24 24d 7.60 69.04 19.71 24 24e 3.75 285.85 9.57 *FLAGS NOT SPLAY *data passage station left right up down 1 16.405 2.464 3.698 0.0 2 19 7 2.781 3.122 3 20.034 5.35 4.724 6.177 4 11.515 5.883 0.905 14.89 5 3.674 2.717 23.776 1.897 6 1.011 2.48 11.603 1.964 7 4.585 0.0 2.369 1.22 8 3.095 0.0 9.023 1.884 9 1.82 0.562 0.235 0.719 10 4.94 0.0 15.526 1.879 11 1.451 0.736 0.0 0.495 12 0.0 1.724 1.219 0.304 13 1.419 0.0 1.318 0.812 14 0.0 2.196 1.142 0.704 15 2.24 1.496 1.288 0.0 16 7.254 8.149 2.835 0.617 18 4.297 3.419 2.406 1.764 22 0.905 2.492 2.652 1.421 23 1.204 0.282 0.0 3.161 24 8.616 3.751 3.106 1.557 *data passage station left right up down 18 4.297 3.419 2.406 1.764 19 1.094 1.015 1.42 1.474 20 1.329 3.286 1.016 1.18 5 3.674 2.717 23.776 1.897 *data passage station left right up down 16 7.254 8.149 2.835 0.617 17 1.0 3.0 3.0 .5 21 1.0 1.0 2 2 *END PendantChamber2011 *begin 89CentsTinto ;Half K team December 2007 trip: Extensions in upper series of Riano heading SW towards surface? ;surveyors: Carlk Clake, Tony 'Badger' Radmall, Chris Agnew, Neil Phillips *date 2007.12.09 *EXPORT 1 *CALIBRATE declination 2.28 ;declination is 2 41' (2.68) for 2004 changing by 8'E per year. ; 2.55 used for 2005 ; 2.42 used for 2006 ; 2.28 used for 2007 ; 2.15 used for 2008 ;From To Tape Compass Clino L R U D 1 2 3.0 - -V; 2 3 10.0 226 -28; 0 1.2 1.5 1.5 3 4 4.2 095 -20; .5 .5 1.5 0 4 5 5.7 344 12; 0 .5 .7 0 5 6 4.0 - +V; 1 0 1.5 0 6 7 6.0 216 4; 1.5 .5 2 0 7 8 8.4 264 23; 1 1 8 0 8 9 8.5 232 22; .6 .6 5 0 9 10 6.8 235 72; 6 2 2 1.5 10 11 8.8 219 14; 6 3.5 .8 0 11 12 22.7 228 4; 2 1 .4 0 12 13 18.0 222 -10; 1.8 .3 2 1.2 13 14 13.0 064 -8; .5 1 2.5 1 13 15 20.5 228 -10; 1 1 3.5 .3 15 16 5.7 097 4; .8 1.5 3.5 .3 16 17 6.5 181 20; 4 3 1 0 17 18 4.7 128 22; 1 1 .7 0 18 19 3.7 228 8; .3 .3 1 .3 19 20 9.5 232 -5; 2 2 1 0 20 21 4.0 225 22; .1 .6 6 0 21 22 3.9 - +V; .4 .4 .5 3.9 22 23 3.0 226 0; .5 .5 .8 0 23 24 6.0 225 -2; 3 1 1 2 24 25 3.0 225 0; Estimated leg into boulders 19 19a 20 - +V;Estimated leg up aven 14 26 3.5 096 -34; 1 0 1.2 1.2 26 27 6.5 060 -1; 1 .3 1.2 1.5 27 28 9.2 060 -9; 1 .2 2 0 28 29 3.6 059 -25; 0 .5 .5 1 29 30 5.7 044 -30; 1.5 1 3 0 30 31 7.6 040 -1; 0 2 .6 1 31 32 3.0 343 -5; 1.2 .5 1.2 1.2 32 33 6.3 033 -10; 2 .5 6 1 33 34 4.0 324 32; 1 1 6 0 33 35 3.5 006 -2; .6 .2 .4 1.4 35 36 2.8 311 0; *data passage station left right up down 2 0 1.2 1.5 1.5 3 .5 .5 1.5 0 4 0 .5 .7 0 5 1 0 1.5 0 6 1.5 .5 2 0 7 1 1 8 0 8 .6 .6 5 0 9 6 2 2 1.5 10 6 3.5 .8 0 11 2 1 .4 0 12 1.8 .3 2 1.2 13 .5 1 2.5 1 15 .8 1.5 3.5 .3 16 4 3 1 0 17 1 1 .7 0 18 .3 .3 1 .3 19 2 2 1 0 20 .1 .6 6 0 22 .4 .4 .5 3.9 23 .5 .5 .8 0 24 3 1 1 2 *data passage station left right up down 13 1 1 3.5 .3 14 1 0 1.2 1.2 26 1 .3 1.2 1.5 27 1 .2 2 0 28 0 .5 .5 1 29 1.5 1 3 0 30 0 2 .6 1 31 1.2 .5 1.2 1.2 32 2 .5 6 1 33 1 1 6 0 *end 89CentsTinto *BEGIN FarEnd ;Riano Far End left hand branch (Scan-07) ;surveyors ? *date 1986.08.01; Aug. 1986 *EXPORT 182 *CALIBRATE declination 0 ;Magnetic deviation of ? has already been subtracted from all these compass readings ;(Checked against original notes by Footleg 01/08/06) 182 321 8.60 214.95 0 ;0-1 from 2nd river connect 321 322 6.50 200.95 0 ;* 322 323 12.00 226.95 0 ;* 323 324 18.30 214.95 0 ;* 324 325 9.00 199.95 0 ;* 325 326 11.00 230.95 0 ;* 326 327 11.80 208.95 0 ;* 327 328 5.00 218.95 0 ;* 328 329 6.00 235.95 6 ;* 329 330 4.00 206.95 0 ;* 330 331 2.20 263.95 0 ;* 331 332 2.30 235.95 8 ;* 332 333 17.40 223.95 0 ;* 333 334 3.40 193.95 -30 ;* 334 335 6.10 234.95 0 ;* 335 336 10.60 248.95 15 ;* 336 337 8.30 243.95 0 ;* 337 338 1.00 215.95 0 ;* 338 339 3.00 - up ;* 339 340 4.00 219.95 0 ;* 340 341 18.40 248.95 0 ;* 341 342 5.00 248.95 -40 ;* 342 343 6.80 255.95 -9 ;* 343 344 20.50 244.95 0 ;* 344 345 5.80 213.95 0 ;* 345 346 2.50 276.95 0 ;* 346 347 1.00 210.95 0 ;* 347 348 5.60 - up ;* 348 349 2.70 312.95 0 ;* 349 350 12.50 248.95 0 ;* 350 351 2.00 - down ;* 351 352 6.25 233.95 5 ;* 352 353 6.00 241.95 0 ;* 353 354 2.00 - down ;* 354 355 14.30 223.95 0 ;* 355 356 11.50 227.95 16 ;* 356 357 2.80 168.95 40 ;* 357 358 20.00 58.95 20 ;* 357 359 10.60 261.95 20 ;* 359 360 5.20 226.95 0 ;* 360 361 11.40 233.95 35 ;* 361 362 7.00 250.95 -50 ;* 345 363 3.20 278.95 0 ;* 363 364 3.50 190.95 20 ;* 364 365 2.10 235.95 0 ;* 365 366 2.50 183.95 0 ;* 366 367 3.70 241.95 28 ;* 367 368 8.90 207.95 40 ;* 368 369 0.0 - up ;* *END FarEnd *BEGIN FarEndInlet ;Riano Inlet from north near end (Scan-SidePass2) ;surveyors ? *date 1989.08.08; 08/08/1989 *EXPORT 174 *CALIBRATE declination 0 ;Magnetic deviation of 4.65 has already been subtracted from all these compass readings ;(Checked against original notes by Footleg 10/08/06) 174 531 7.70 23.35 -15 ;* 531 532 7.50 33.35 0 ;* 532 533 12.80 42.35 5 ;* 533 534 22.80 41.35 6 ;* 534 535 8.40 42.35 0 ;* 535 536 6.20 21.35 3 ;* 536 537 8.50 53.35 4 ;* 537 538 19.60 60.35 5 ;* 538 539 10.60 46.35 10 ;* 539 540 4.20 78.35 22 ;* 540 541 7.30 55.35 -6 ;* 541 542 7.40 134.35 0 ;* 542 543 4.50 204.35 -30 ;* 542 544 7.10 22.35 0 ;* 544 545 4.40 66.35 21 ;* 545 546 11.40 78.35 44 ;* 539 547 17.40 290.35 10 ;* 547 548 20.60 238.35 -4 ;* 548 549 4.70 256.35 32 ;* 549 550 6.10 286.35 35 ;* 539 551 8.40 325.35 8 ;* 551 552 17.10 56.35 18 ;* *END FarEndInlet *begin 21stPassage *export 21st-090412.19 *equate 21st-080322.16 21st-090412.3 *BEGIN 21st-080322 *export 16 ;Description of section surveyed ;surveyors: Tony 'Badger' Radmall, Carl Clarke, Dave Garman, Emma Moyse *date 2008.03.22 *CALIBRATE declination 2.15 ; 2.15 used for 2008 ;Clino readings may have been made from wrong side of clino ;From To Tape Compass Clino L R U D 16 19 19.09 45 21 ;1.9 2.4 5 .8 19 20 5.38 015 10.5 ;1.9 2.4 5 .8 19 21 9.92 108 8 ;1.4 1.59 2.8 0 21 22 4.35 122 30 ;1.1 .9 1.7 0 21 23 3.6 58 9 ;.5 .3 .7 .4 23 24 2.53 78 -19 ;.8 0 .6 .2 24 26 2.1 - +v ; *data passage station left right up down 16 1.9 2.4 5 .8 19 1.4 1.59 5 .8 21 .5 .3 .7 .4 22 .5 .3 .7 0 *data passage station left right up down 19 1.9 2.4 5 .8 20 0 0.6 1.5 .8 *data passage station left right up down 21 .5 .3 .7 .4 23 .8 0 .6 .2 24 .8 0 .6 .2 *END 21st-080322 *BEGIN 21st-090412 *EXPORT 3 19 *date 2009.04.12 *CALIBRATE declination 2.08 6 1 2.15 349.60 20.72 1 2 2.03 9.20 13.84 2 3 4.34 37.32 -11.13 3 4 2.57 174.52 -17.84 4 5 2.72 186.48 -0.82 5 6 3.31 227.75 8.87 6 7 2.89 241.58 4.45 7 8 2.44 212.15 -14.81 8 9 3.21 193.18 -3.66 9 10 7.73 241.99 -5.07 10 11 4.86 208.83 -21.71 11 12 0.65 215.87 -32.44 12 13 6.19 235.13 -65.26 7 14 9.36 267.80 12.59 14 15 12.22 248.02 6.25 15 16 10.63 260.69 -10.04 16 17 2.68 218.41 -48.93 17 18 10.62 257.98 -46.07 *flags duplicate 18 19 7.17 126.81 -4.00 19 20 10.73 91.88 -13.36 20 13 9.72 91.41 11.83 *flags not duplicate *data passage station left right up down 6 2 .76 1.9 0 1 .1 1.6 5.8 .6 2 .1 1.6 5.8 .6 3 2.4 1.9 5 .8 *data passage station left right up down 3 2.4 1.9 5 .8 4 .10 .75 6 0 5 .38 1.62 6 0 6 2 .76 1.9 0 7 .7 1.5 6. 0 14 2.5 1.32 4.2 .1 16 .8 1.2 4.6 0 *data passage station left right up down 7 .7 1.5 1 0 8 .7 1.5 1 0 9 0 2.2 .52 0 10 1.49 .32 .52 0 11 1.5 2 2.4 0 *END 21st-090412 *end 21stPassage *END UpperLevels *END 0105_Riano CaveConverter_src/test/data/regression/TripComment_in.txt0000644000000000000000000001002613030252172022723 0ustar rootrootTrainingRoom (m, 360) [1]: 2012/11/24 0.00 "WSCC DistoX - Footleg\rDell PDA drawing - Bob" 1.0 0.000 0.00 0.00 1.0 1.168 8.87 6.87 [1] 1.0 1.113 175.45 -0.10 [1] 1.0 5.951 98.10 6.04 [1] 1.0 5.008 277.41 17.22 [1] 1.0 1.035 47.72 83.13 [1] 1.0 1.094 153.35 -85.85 [1] 1.0 1.1 5.082 327.58 56.79 [1] 1.0 1.1 5.086 327.41 56.75 [1] 1.0 1.1 5.084 327.41 56.75 [1] 1.1 0.856 248.16 84.61 [1] 1.1 1.966 36.72 85.36 [1] 1.1 2.899 0.21 79.16 [1] 1.1 3.567 0.44 76.99 [1] 1.1 3.327 6.81 73.92 [1] 1.1 3.077 9.73 72.19 [1] 1.1 1.512 33.34 73.27 [1] 1.1 1.127 41.39 63.01 [1] 1.1 0.910 55.93 43.46 [1] 1.1 0.951 54.38 25.70 [1] 1.1 0.712 50.23 15.55 [1] 1.1 0.800 52.99 -17.45 [1] 1.1 0.785 47.54 -32.25 [1] 1.1 0.802 49.21 -38.08 [1] 1.1 1.224 48.37 -40.44 [1] 1.1 1.442 44.13 -46.36 [1] 1.1 1.832 42.45 -54.49 [1] 1.1 1.842 35.11 -63.47 [1] 1.1 1.507 111.18 -81.34 [1] 1.1 1.558 208.58 -80.33 [1] 1.1 0.805 65.58 -74.77 [1] 1.1 0.632 17.58 -85.44 [1] 1.1 0.551 281.21 -80.62 [1] 1.1 0.856 174.05 0.08 [1] 1.1 1.507 155.18 1.24 [1] 1.1 1.960 140.40 -3.29 [1] 1.1 2.575 131.69 -4.78 [1] 1.1 2.681 130.29 -4.55 [1] 1.1 0.577 315.38 2.25 [1] 1.1 1.046 326.37 2.41 [1] 1.1 1.282 112.92 -6.48 [1] 1.1 1.027 99.66 -5.08 [1] 1.1 0.735 82.81 -4.14 [1] 1.1 0.625 62.72 -5.29 [1] 1.1 0.706 34.15 -9.16 [1] 1.1 1.517 4.78 -10.78 [1] 1.1 1.620 348.65 -11.00 [1] 1.1 1.849 336.13 -6.26 [1] 1.1 2.388 329.33 -3.53 [1] 1.1 1.2 4.911 69.77 23.92 [1] 1.1 1.2 4.911 69.80 23.86 [1] 1.1 1.2 4.926 69.93 23.79 [1] 1.2 0.954 165.48 0.82 [1] 1.2 3.803 331.85 24.88 [1] 1.2 2.960 27.78 70.94 [1] 1.2 1.755 85.45 -85.86 [1] 1.2 13.104 71.82 16.81 [1] 1.2 7.755 33.32 29.66 [1] 1.2 5.735 289.73 15.19 [1] 1.2 5.017 257.83 -9.98 [1] 1.2 2.805 233.18 -16.44 [1] 1.2 1.3 1.996 337.60 33.03 [1] 1.2 1.3 1.996 337.69 33.12 [1] 1.2 1.3 1.997 337.46 33.11 [1] 1.3 1.670 169.43 -3.02 [1] 1.3 1.996 339.94 5.13 [1] 1.3 1.854 274.03 82.17 [1] 1.3 0.754 63.40 -83.13 [1] CaveConverter_src/test/data/regression/AwkwardChars_cs_ref.svx0000644000000000000000000000702412560565226023721 0ustar rootroot*BEGIN AWKWARDCHARS *EQUATE ABC_ex.ABC06_am DEF_pl.ABC06_am *EQUATE DEF_pl.DEF07_fs GHI_lt.DEF07_fs *EQUATE GHI_lt.GHI07_at JKL-.GHI07_at *EQUATE JKL-.JKL07- MNO____.JKL07- *BEGIN ABC_ex ;My Survey *DATE 1980.01.23 *CALIBRATE declination -3.0 ABC01_ex ABC02_dq 3.66 135.00 4.00 ABC02_dq ABC03_hs 4.57 130.00 3.00 ABC03_hs ABC04_dl 5.79 165.00 2.00 ABC04_dl ABC05_pc 6.71 155.00 1.00 ABC05_pc ABC06_am 4.27 140.00 0.00 ABC06_am ABC07_am 4.27 120.00 -5.00 *data passage station left right up down ABC01_ex 0.00 0.61 0.30 0.15 ABC02_dq 0.61 1.52 0.61 0.00 ABC03_hs 0.91 1.22 0.43 0.00 ABC04_dl 1.83 0.00 0.34 0.00 ABC05_pc 1.22 0.91 0.15 0.00 ABC06_am 0.91 0.61 0.15 0.67 *END ABC_ex *BEGIN DEF_pl *DATE 1980.01.24 *CALIBRATE declination -3.0 ABC06_am DEF01_sq 3.05 50.00 0.00 DEF01_sq DEF02_ob 3.66 55.00 4.00 DEF02_ob DEF03_cb 4.57 50.00 3.00 DEF03_cb DEF04_as 5.79 85.00 2.00 DEF04_as DEF05_pl 6.71 75.00 1.00 DEF05_pl DEF06_cm 4.27 60.00 0.00 DEF06_cm DEF07_fs 4.27 40.00 4.00 DEF07_fs DEF08_fs 4.27 50.00 -5.00 *data passage station left right up down ABC06_am 0.00 0.00 0.00 0.00 DEF01_sq 0.00 0.61 0.30 0.15 DEF02_ob 0.61 1.52 0.61 0.00 DEF03_cb 0.91 1.22 0.43 0.00 DEF04_as 1.83 0.00 0.34 0.00 DEF05_pl 1.22 0.91 0.15 0.00 DEF06_cm 0.00 0.61 0.18 0.06 DEF07_fs 0.91 0.61 0.15 0.67 *END DEF_pl *BEGIN GHI_lt *DATE 1980.01.25 *CALIBRATE declination -3.0 DEF07_fs GHI01_co 3.05 20.00 0.00 GHI01_co GHI02_sc 3.66 28.00 4.00 GHI02_sc GHI03_lt 4.57 12.00 3.00 GHI03_lt GHI04_eq 5.79 18.00 2.00 GHI04_eq GHI05_gt 6.71 29.00 1.00 GHI05_gt GHI06_qm 4.27 11.00 0.00 GHI06_qm GHI07_at 4.88 8.00 0.50 GHI07_at GHI08_at 3.05 14.00 -5.00 *data passage station left right up down DEF07_fs 0.00 0.00 0.00 0.00 GHI01_co 0.00 0.61 0.30 0.15 GHI02_sc 0.61 1.52 0.61 0.00 GHI03_lt 0.91 1.22 0.43 0.00 GHI04_eq 1.83 0.00 0.34 0.00 GHI05_gt 1.22 0.91 0.15 0.00 GHI06_qm 0.00 0.61 0.18 0.06 GHI07_at 0.91 0.61 0.15 0.67 *END GHI_lt *BEGIN JKL- *DATE 1980.01.26 *CALIBRATE declination -3.0 GHI07_at JKL01_os 3.05 320.00 0.00 JKL01_os JKL02_bs 3.66 328.00 4.00 JKL02_bs JKL03_cs 4.57 312.00 3.00 JKL03_cs JKL04_ht 5.79 318.00 2.00 JKL04_ht JKL05_ 6.71 329.00 1.00 JKL05_ JKL06_gr 4.88 322.00 0.50 JKL06_gr JKL07- 4.27 311.00 0.00 JKL07- JKL08- 3.05 314.00 -5.00 *data passage station left right up down GHI07_at 0.00 0.00 0.00 0.00 JKL01_os 0.00 0.61 0.30 0.15 JKL02_bs 0.61 1.52 0.61 0.00 JKL03_cs 0.91 1.22 0.43 0.00 JKL04_ht 1.83 0.00 0.34 0.00 JKL05_ 0.00 0.61 0.18 0.06 JKL06_gr 1.22 0.91 0.15 0.00 JKL07- 0.91 0.61 0.15 0.67 *END JKL- *BEGIN MNO____ *DATE 1980.01.27 *CALIBRATE declination -3.0 JKL07- MNO01_oc 3.05 270.00 0.00 MNO01_oc MNO02_pi 3.66 278.00 4.00 MNO02_pi MNO03_cc 4.57 262.00 3.00 MNO03_cc MNO04_ti 5.79 268.00 2.00 MNO04_ti MNO05____ 6.71 279.00 1.00 MNO05____ MNO06____ 4.27 272.00 0.50 MNO06____ MNO07____ 4.27 261.00 0.00 MNO07____ MNO08____ 3.05 264.00 -5.00 *data passage station left right up down JKL07- 0.00 0.00 0.00 0.00 MNO01_oc 0.00 0.61 0.30 0.15 MNO02_pi 0.61 1.52 0.61 0.00 MNO03_cc 0.91 1.22 0.43 0.00 MNO04_ti 1.83 0.00 0.34 0.00 MNO05____ 0.00 0.61 0.18 0.06 MNO06____ 1.22 0.91 0.15 0.00 MNO07____ 0.91 0.61 0.15 0.67 *END MNO____ *END AWKWARDCHARS CaveConverter_src/test/data/regression/Uzu-Gour_ref.text0000644000000000000000000002012612115304544022500 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.Uzu-Gour090410.153 1 -1 1 1 1 1 0 1 5 5 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 4.01 53.11 2.88 0.66 1.17 1.62 1.32 1 2 1 1 1 6.67 107.19 -1.37 0.67 1.24 6.48 1.27 1 3 1 1 1 7.57 80.81 -1.46 0.71 0.97 2.48 1.16 1 4 1 1 1 15.71 15.49 1.20 1.07 0.70 5.83 0.88 1 5 1 1 1 5.65 180.83 82.67 0.00 0.00 0.00 0.00 2 -2 1 1 1 Series 2-root.Uzu-Gour090410.153 2 -1 1 1 1 1 4 2 1 1 3 0 2 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 1 1 1 1 1.04 273.58 -86.30 0.00 0.00 0.00 0.00 3 -2 1 1 1 Series 3-root.Uzu-Gour090410.153 3 -1 1 1 1 1 4 3 1 1 3 0 3 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 1 1 1 1 1.95 224.24 -0.27 0.00 0.00 0.00 0.00 4 -2 1 1 1 Series 4-root.Uzu-Gour090410.153 4 -1 1 1 1 1 4 4 1 1 3 0 4 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4 1 1 1 1 0.46 64.79 13.93 0.00 0.00 0.00 0.00 5 -2 1 1 1 Series 5-root.Uzu-Gour090410.153 5 -1 1 1 1 1 4 5 75 75 3 0 5 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 5 1 1 1 1 2.73 242.53 2.61 1.95 0.00 5.65 1.04 5 2 1 1 1 4.22 316.29 0.41 0.00 2.10 5.42 1.23 5 3 1 1 1 4.92 27.57 -2.12 0.00 5.31 0.72 1.80 5 4 1 1 1 9.81 56.71 0.94 1.72 4.86 1.49 0.88 5 5 1 1 1 8.60 126.69 -6.68 0.60 1.40 1.87 1.17 5 6 1 1 1 5.68 80.91 5.68 1.22 1.01 1.19 0.26 5 7 1 1 1 6.56 42.64 4.54 1.20 0.95 1.56 0.76 5 8 1 1 1 9.03 70.18 1.22 1.06 1.22 3.26 1.18 5 9 1 1 1 3.05 44.21 1.28 1.22 0.39 9.07 1.17 5 10 1 1 1 6.89 84.26 -0.51 0.96 1.08 9.41 1.51 5 11 1 1 1 6.61 59.47 0.09 1.06 0.00 7.65 1.29 5 12 1 1 1 5.13 16.52 -1.21 1.54 0.24 6.36 1.07 5 13 1 1 1 6.85 60.62 2.01 0.55 1.30 1.40 1.10 5 14 1 1 1 5.38 100.17 1.22 0.00 1.38 4.99 1.18 5 15 1 1 1 2.60 103.48 -1.05 1.27 0.00 11.11 1.38 5 16 1 1 1 6.94 176.16 -2.10 0.00 1.43 5.18 1.11 5 17 1 1 1 4.01 194.06 3.14 0.41 0.70 2.87 1.04 5 18 1 1 1 4.15 137.27 -0.15 1.43 0.64 5.24 1.07 5 19 1 1 1 4.71 203.75 -0.38 0.35 3.67 0.96 1.17 5 20 1 1 1 6.52 196.44 5.52 0.67 0.90 2.03 1.14 5 21 1 1 1 8.69 222.00 -4.26 0.67 0.94 4.72 1.31 5 22 1 1 1 5.69 244.23 2.28 1.78 1.11 1.83 1.05 5 23 1 1 1 2.46 151.09 -9.56 2.88 0.00 1.74 1.18 5 24 1 1 1 16.85 202.23 -2.08 0.00 1.17 2.03 0.82 5 25 1 1 1 10.28 137.19 5.65 1.84 0.87 1.10 0.00 5 26 1 1 1 5.84 103.82 5.86 1.66 0.40 8.09 0.83 5 27 1 1 1 10.74 77.30 -0.95 1.92 0.44 3.25 1.28 5 28 1 1 1 5.99 19.28 2.80 2.96 0.39 1.30 1.17 5 29 1 1 1 8.26 122.61 -0.97 0.00 1.90 1.71 1.27 5 30 1 1 1 11.46 84.23 0.14 2.26 0.77 3.37 1.26 5 31 1 1 1 10.25 102.60 -0.15 0.52 0.89 13.04 1.37 5 32 1 1 1 6.54 34.45 2.80 2.39 0.00 1.56 1.12 5 33 1 1 1 7.85 350.55 0.36 1.08 0.26 4.78 1.61 5 34 1 1 1 12.49 57.57 -0.29 0.00 1.97 3.86 1.50 5 35 1 1 1 6.47 142.29 -0.66 0.00 3.71 1.00 1.14 5 36 1 1 1 12.19 174.61 2.78 0.00 1.78 5.46 1.40 5 37 1 1 1 8.03 215.49 -3.13 0.00 0.94 8.53 1.86 5 38 1 1 1 5.06 195.68 0.74 0.76 0.39 10.11 1.48 5 39 1 1 1 5.14 162.35 -5.75 0.82 0.91 9.38 1.47 5 40 1 1 1 4.12 88.66 -11.48 1.24 1.28 1.91 0.88 5 41 1 1 1 12.39 171.98 6.86 2.41 1.25 1.18 0.00 5 42 1 1 1 7.38 102.90 0.82 1.42 1.00 3.52 1.43 5 43 1 1 1 4.77 59.94 -3.61 0.98 0.00 3.91 1.19 5 44 1 1 1 5.77 21.57 0.32 0.85 0.51 5.12 0.90 5 45 1 1 1 10.87 4.03 2.73 0.96 0.91 8.95 0.87 5 46 1 1 1 1.56 15.63 -9.69 3.53 1.49 4.18 0.25 5 47 1 1 1 11.64 49.09 1.00 3.09 1.81 2.82 0.87 5 48 1 1 1 6.84 24.56 -5.79 0.88 0.00 2.62 1.34 5 49 1 1 1 6.43 117.08 2.67 1.10 2.18 1.06 0.69 5 50 1 1 1 16.81 343.83 -2.23 2.46 0.35 1.32 0.75 5 51 1 1 1 11.67 98.36 4.88 0.00 9.48 1.34 0.22 5 52 1 1 1 1.66 94.24 -19.79 0.68 0.00 5.39 1.00 5 53 1 1 1 5.39 158.70 -4.01 0.40 1.05 2.34 0.56 5 54 1 1 1 4.72 71.22 10.43 1.81 0.53 2.27 0.20 5 55 1 1 1 5.12 137.82 -5.11 0.33 1.18 4.01 0.94 5 56 1 1 1 8.82 73.01 2.73 1.14 1.16 1.39 0.48 5 57 1 1 1 1.71 15.47 9.12 0.97 0.25 7.57 0.88 5 58 1 1 1 7.73 49.93 -4.40 0.00 0.50 6.59 1.17 5 59 1 1 1 2.97 346.13 3.86 1.60 0.22 4.84 0.54 5 60 1 1 1 10.87 21.31 -1.96 0.00 0.94 5.02 0.77 5 61 1 1 1 4.53 53.62 4.73 0.00 1.17 9.31 0.43 5 62 1 1 1 3.19 342.39 -3.15 1.40 0.00 8.35 0.56 5 63 1 1 1 2.48 282.80 17.86 0.92 0.26 10.30 0.51 5 64 1 1 1 5.47 3.25 0.23 0.00 1.19 9.55 1.19 5 65 1 1 1 3.21 71.51 0.24 0.00 0.91 10.36 1.30 5 66 1 1 1 6.88 25.73 1.39 0.85 0.00 4.45 1.22 5 67 1 1 1 5.88 102.60 4.12 2.32 1.41 2.11 1.17 5 68 1 1 1 7.57 97.28 -5.44 0.60 0.99 3.45 1.24 5 69 1 1 1 5.64 86.58 15.15 1.51 1.10 11.09 0.19 5 70 1 1 1 2.17 129.36 8.68 0.00 3.24 5.16 1.35 5 71 1 1 1 4.57 25.38 14.39 2.16 4.56 12.11 1.55 5 72 1 1 1 8.47 58.79 19.30 0.00 0.82 8.36 1.10 5 73 1 1 1 5.73 102.57 0.98 0.41 0.92 1.18 1.28 5 74 1 1 1 5.19 82.18 24.31 0.49 2.35 2.11 0.34 5 75 1 1 1 1.27 100.93 2.43 0.00 1.85 0.42 0.45CaveConverter_src/test/data/regression/0114_Llueva_ss_ref.svx0000644000000000000000000011245112560565166023261 0ustar rootroot*BEGIN 0114_Llueva *EQUATE RestOfCave.109 Part1.MainUpstream.11 *BEGIN Part1 *EQUATE MainPassage.12 EntrancePassage.12 *EQUATE MainPassage.12 Chamber_Up_From_Ladder.13 *EQUATE Downstream.13 MainPassage.13 *EQUATE MainPassage.26 FaultPassage.26 *EQUATE MainPassage.22 LeftHandBypass.68a *EQUATE MainUpstream.1 LeftHandBypass.90 *EQUATE RHBypass.0 LeftHandBypass.68 *EQUATE MainPassage.26 FaultPassage.26 *EQUATE RHBypass.19 FaultPassageLink.12 *EQUATE FaultPassage.43 FaultPassageLink.9 *EQUATE Downstream.493 Downstream_sump.14 *EQUATE RoofOxbow.1 Chamber_Up_From_Ladder.11 *EQUATE FaultPassage.37 LifeUandE.UpperLevels.2007-07-30.36 *EQUATE FaultPassageLink.0 LifeUandE.LowerLevels.2007-08-09PStD.51 *EQUATE RHBypass.17 RHBypassExtn.0 *EQUATE RHBypass.14 RHBypassExtn.16 *BEGIN EntrancePassage 0 1 7.00 228.11 0.00 1 2 15.50 253.11 0.00 2 3 16.50 243.11 2.00 3 4 4.60 238.11 0.00 4 5 3.00 148.11 -45.00 5 6 5.80 240.11 0.00 6 7 9.80 243.11 0.00 7 8 4.00 238.11 0.00 8 9 4.00 240.11 0.00 9 10 8.00 233.11 -1.00 10 11 16.00 233.11 -45.00 11 12 10.00 0.00 -90.00 *END EntrancePassage *BEGIN RoofOxbow *DATE 2007.07.30 *CALIBRATE declination 2.28 2 1 8.22 0.00 -90.00 3 2 7.06 57.00 4.00 4 3 4.00 84.00 8.00 4 5 5.59 295.00 8.00 4 6 2.95 175.00 -22.00 *END RoofOxbow *BEGIN Chamber_Up_From_Ladder *DATE 2007.04.09 *CALIBRATE declination 2.28 2 1 4.88 92.00 56.00 3 2 1.51 192.00 36.00 4 3 5.58 92.00 -2.00 5 4 12.60 111.00 2.00 6 5 14.52 48.00 -21.00 7 6 20.23 58.00 17.00 6 8 20.68 142.00 38.00 9 8 12.69 207.00 10.00 10 9 14.44 260.00 11.00 11 7 10.61 41.00 21.00 12 11 14.23 118.00 21.00 13 12 6.69 153.00 38.00 *END Chamber_Up_From_Ladder *BEGIN Downstream 13 472 10.06 276.79 -1.00 472 473 7.07 261.87 0.00 473 474 10.44 253.30 0.00 474 475 7.61 336.80 0.00 475 476 10.00 53.13 0.00 476 477 8.54 69.44 0.00 477 478 42.52 48.81 0.00 478 479 16.27 317.49 0.00 479 480 13.89 59.74 0.00 480 481 7.28 164.05 0.00 481 482 5.00 270.00 0.00 482 483 12.16 170.53 0.00 481 484 23.02 92.49 0.00 484 485 34.13 148.17 0.00 13 486 22.01 89.50 0.00 486 487 16.40 37.56 0.00 487 488 10.63 138.81 0.00 487 489 13.34 102.99 0.00 486 490 17.72 73.61 0.00 490 491 16.97 45.00 0.00 491 492 12.53 61.39 0.00 492 493 40.42 55.12 5.00 474 474a 42.00 241.00 0.00 *END Downstream *BEGIN Downstream_sump *CALIBRATE declination 1.89 15 14 6.70 62.00 0.00 14 13 6.50 16.00 38.00 13 12 18.50 331.00 -20.00 12 11 30.00 103.00 -3.00 11 10 30.00 83.00 -3.00 10 9 30.00 62.00 -3.00 9 8 30.00 74.00 -3.00 8 7 30.00 76.00 -3.00 7 6 14.50 11.00 0.00 6 5 30.00 342.00 5.00 5 4 7.70 359.00 0.00 4 3 6.70 6.00 15.00 3 2 6.90 271.00 0.00 2 1 6.20 340.00 -40.00 1 0a 5.00 340.00 0.00 0a 0b 5.00 340.00 0.00 *END Downstream_sump *BEGIN MainPassage 12 13 24.50 303.11 -37.00 13 14 29.80 231.11 25.00 14 15 30.00 247.11 8.00 15 16 16.00 279.11 -15.00 16 17 30.00 267.11 -8.00 17 18 30.00 272.11 -2.00 18 19 30.00 285.11 11.00 19 20 30.00 277.11 7.00 20 21 30.00 266.11 8.00 21 22 30.00 276.11 6.00 22 23 30.00 303.11 -6.00 23 24 13.70 309.11 -15.00 24 25 30.00 303.11 -35.00 25 26 28.80 320.11 0.00 *END MainPassage *BEGIN RHBypass *CALIBRATE declination 2.28 0 1 11.00 346.50 21.00 1 2 11.95 355.50 -12.00 2 3 5.92 0.00 90.00 3 4 17.40 312.50 -1.00 4 5 8.25 285.00 -3.00 5 6 20.60 312.50 0.00 6 7 2.90 280.50 57.00 7 8 2.85 214.00 49.00 8 9 8.80 284.50 9.00 9 10 5.75 300.50 -7.00 10 11 2.35 50.00 -23.00 11 12 2.70 295.50 -43.00 12 13 5.70 269.00 9.00 13 14 18.45 302.00 -4.00 14 15 9.65 25.00 -25.00 15 16 2.55 60.00 -54.00 16 17 5.90 305.50 -12.00 17 18 6.50 24.00 2.00 18 19 2.25 26.00 -41.00 19 20 6.00 0.00 -90.00 *END RHBypass *BEGIN RHBypassExtn *CALIBRATE declination 2.15 *CALIBRATE tape 1.00 1 0 2.85 317.00 -3.00 2 1 6.70 40.00 -4.00 3 2 2.80 153.00 -63.00 4 3 2.95 35.00 -22.00 5 4 4.45 130.00 -7.00 6 5 8.10 119.00 3.00 7 6 5.40 42.00 -8.00 8 7 4.75 90.00 9.00 9 8 3.15 39.00 2.00 10 9 3.65 94.00 -11.00 11 10 6.40 51.00 -8.00 12 11 9.00 59.00 7.00 14 5 3.70 353.00 -24.00 15 14 6.95 322.00 -3.50 15 16 3.45 111.00 6.50 *END RHBypassExtn *BEGIN FaultPassageLink *CALIBRATE declination 2.28 0 1 4.87 226.50 0.50 1 2 8.40 229.00 0.50 2 3 4.16 198.00 12.00 3 4 2.01 59.00 22.00 4 5 4.22 182.00 38.00 5 6 1.18 359.50 60.00 6 7 4.72 322.00 32.00 7 8 9.32 233.00 36.50 8 9 4.91 198.00 -14.50 9 10 4.35 201.00 -1.00 10 11 11.86 201.00 -31.50 11 12 8.16 209.00 -6.00 *END FaultPassageLink *BEGIN FaultPassage 26 27 8.90 64.11 30.00 27 28 15.00 2.11 53.00 28 29 2.00 116.11 35.00 29 30 6.50 24.11 40.00 30 31 3.00 48.11 0.00 31 32 3.90 82.11 0.00 32 33 2.90 68.11 0.00 33 34 5.10 9.11 30.00 34 35 5.50 43.11 10.00 35 36 16.00 48.11 0.00 36 37 7.10 72.11 0.00 37 38 16.30 63.11 0.00 38 39 8.40 58.11 0.00 39 40 4.30 112.11 0.00 40 41 8.20 81.11 0.00 31 42 8.00 318.11 -20.00 42 43 7.00 41.11 30.00 43 44 12.50 26.11 0.00 44 45 14.80 69.11 10.00 39 46 8.10 76.20 0.00 46 47 11.60 89.20 0.00 47 48 17.80 56.20 0.00 48 49 4.70 64.20 28.00 49 50 6.40 42.20 5.00 50 51 3.50 0.00 90.00 51 52 11.20 0.20 50.00 52 53 10.60 79.20 0.00 53 54 3.40 0.00 90.00 54 55 9.40 54.20 30.00 55 56 9.30 254.20 6.00 56 57 6.60 326.20 10.00 57 58 4.40 277.20 17.00 58 59 3.40 0.00 90.00 59 60 6.40 52.20 22.00 60 61 2.70 41.20 32.00 61 62 4.00 0.00 90.00 62 63 5.90 87.20 0.00 63 64 4.20 50.20 0.00 64 65 3.00 12.20 21.00 62 66 14.50 251.20 0.00 52 67 9.80 243.20 -3.00 *END FaultPassage *BEGIN LifeUandE *EQUATE UpperLevels.2007-08-07.33 LowerLevels.2007-08-09PStA.0 *EQUATE UpperLevels.2007-07-31.14 LowerLevels.2007-08-02b.1 *EQUATE UpperLevels.2007-07-31.44 LowerLevels.2008-03-27.1 *BEGIN UpperLevels *EQUATE 2007-07-30.1 2007-07-31.1 *EQUATE 2007-07-31.9 2007-08-02a.1 *EQUATE 2007-07-30.11 2007-08-04a.1 *EQUATE 2007-07-31.9 2007-08-04b.30 *EQUATE 2007-08-04b.15 2007-08-04c.7 *EQUATE 2007-08-04b.23 2007-08-04d.1 *EQUATE 2007-08-07.0 2007-08-04b.19 *EQUATE 2007-08-07.16 CrapCompassChamber.0 *BEGIN 2007-07-30 *DATE 2007.07.30 *CALIBRATE declination 2.28 1 2 11.75 70.00 19.00 2 3 11.10 177.00 -8.00 4 3 19.58 50.00 23.00 5 3 20.40 10.00 20.00 6 3 11.07 276.00 -37.00 7 6 8.45 294.00 -16.00 7 8 10.19 219.00 5.00 7 9 11.11 161.00 -30.00 9 10 9.34 207.00 -42.00 11 10 5.30 355.00 0.00 10 12 11.81 252.00 -42.00 12 13 20.10 207.00 -60.00 13 14 5.40 274.00 -54.00 15 14 8.80 15.00 -12.00 15 16 6.30 135.00 14.00 14 17 2.30 33.00 0.00 17 18 7.45 0.00 -90.00 18 19 1.93 245.00 -12.00 19 20 5.55 0.00 -90.00 21 20 3.24 267.00 -40.00 21 22 2.35 328.00 -37.00 22 23 2.79 210.00 -68.00 23 24 3.25 32.00 -42.00 24 25 2.04 350.00 14.00 25 26 2.28 0.00 -90.00 26 27 2.20 25.00 -36.00 27 28 3.47 95.00 -35.00 28 29 3.26 46.00 -42.00 29 30 4.85 70.00 -10.00 30 31 2.00 137.00 -19.00 31 32 4.22 136.00 -67.00 32 33 0.66 130.00 0.00 33 34 6.18 0.00 -90.00 34 35 5.52 150.00 10.00 35 36 10.30 195.00 -13.00 *END 2007-07-30 *BEGIN 2007-07-31 *DATE 2007.07.31 *CALIBRATE declination 2.28 *CALIBRATE tape 0.10 1 2 5.95 252.00 -8.00 2 3 10.20 344.00 -6.00 3 4 9.50 28.00 -8.00 4 5 14.35 351.00 5.00 5 6 11.31 25.00 3.00 6 7 18.31 357.00 -17.00 7 8 8.68 8.00 -7.00 8 9 8.65 335.00 5.00 9 10 9.10 7.00 -8.00 10 11 19.22 289.00 3.00 11 12 7.45 303.00 10.00 12 13 18.30 270.00 -4.00 13 14 11.44 255.00 -10.00 14 15 8.55 303.00 5.00 15 16 3.48 7.00 -11.00 16 17 10.86 275.00 -3.00 17 18 13.66 15.00 -3.00 18 19 5.65 19.00 10.00 18 20 7.85 272.00 -2.00 19 21 23.16 42.00 0.00 21 22 7.81 12.00 2.00 22 23 7.86 71.00 -4.00 23 24 18.62 5.00 3.00 24 25 10.55 22.00 5.00 25 26 4.72 57.00 9.00 26 27 3.35 25.00 13.00 27 28 10.15 70.00 4.00 28 29 13.91 51.00 2.00 29 30 4.37 37.00 5.00 30 31 12.60 53.00 3.00 31 32 12.73 65.00 6.00 32 33 7.96 55.00 0.00 20 34 4.70 237.00 0.00 34 35 6.06 283.00 -4.00 35 36 5.42 289.00 13.00 36 37 5.47 282.00 -10.00 37 38 2.25 297.00 1.00 38 39 4.15 325.00 2.00 39 40 8.91 254.00 3.00 40 41 6.04 286.00 3.00 41 42 6.16 241.00 -3.00 42 43 6.34 241.00 1.00 43 44 6.53 279.00 0.00 44 45 1.28 167.00 -62.00 45 46 8.75 0.00 -90.00 44 47 5.74 268.00 -3.00 47 48 2.00 312.00 13.00 48 49 5.55 268.00 0.00 49 50 4.10 203.00 -11.00 pp6 50 2.80 34.00 0.00 pp5 pp6 10.80 116.00 0.00 pp4 pp5 5.54 50.00 -2.00 pp3 pp4 6.05 51.00 4.00 pp2 pp3 15.70 58.00 0.00 pp2 pp1 1.90 131.00 -14.00 pp0 pp1 5.91 37.00 0.00 pp0 pp1a 4.00 190.00 0.00 *END 2007-07-31 *BEGIN 2007-08-02a *DATE 2007.08.02 *CALIBRATE declination 2.28 1 2 8.89 217.00 8.00 2 3 13.62 208.00 5.00 3 4 7.90 197.00 -24.00 3 5 2.78 169.00 -1.00 5 6 10.17 215.00 9.00 6 7 8.27 217.00 -11.00 7 8 3.98 0.00 -90.00 9 8 6.50 358.00 -18.00 9 10 2.52 259.00 -13.00 10 11 4.26 328.00 -13.00 11 12 10.46 198.00 2.00 12 13 4.30 214.00 10.00 13 14 6.23 147.00 -6.00 13 15 8.77 162.00 33.00 15 16 8.35 262.00 -13.00 16 17 4.00 188.00 -23.00 17 18 4.63 224.00 -13.00 18 19 4.89 185.00 14.00 21 20 3.35 0.00 90.00 21 22 0.67 267.00 0.00 19 20 0.28 270.00 0.00 19 23 4.26 202.00 17.00 23 24 3.00 153.00 13.00 24 25 4.20 172.00 0.00 *END 2007-08-02a *BEGIN 2007-08-04a *DATE 2007.08.04 *CALIBRATE declination 2.28 1 2 7.57 123.00 2.00 2 3 7.65 54.00 2.00 3 4 3.97 142.00 -26.00 4 5 5.55 162.00 5.00 5 6 3.26 112.00 42.00 6 7 3.85 174.00 63.00 *END 2007-08-04a *BEGIN 2007-08-04b *DATE 2007.08.04 *CALIBRATE declination 2.28 1 2 4.50 285.00 -11.00 2 3 3.22 259.00 0.00 3 4 10.00 223.00 -13.00 4 5 6.92 253.00 -4.00 5 6 6.55 242.00 -2.00 6 7 9.50 213.00 0.00 7 8 8.66 197.00 3.00 8 9 15.87 244.00 3.00 9 10 11.66 203.00 -3.00 10 11 10.76 231.00 -23.00 11 12 5.80 294.00 12.00 12 13 9.32 244.00 1.00 13 14 7.15 201.00 1.00 14 15 4.19 250.00 -20.00 15 16 4.32 192.00 -5.00 16 17 13.52 285.00 -5.00 17 18 6.80 259.00 -17.00 18 19 10.37 271.00 -10.00 19 20 3.08 162.00 70.00 20 21 7.30 244.00 16.00 21 22 6.30 291.00 -11.00 22 23 8.43 244.00 0.00 23 24 16.60 276.00 7.00 24 25 8.95 16.00 -5.00 25 26 3.03 322.00 30.00 *FLAGS DUPLICATE 26 27 11.71 0.00 -30.00 27 28 4.36 20.00 -7.00 28 29 11.57 350.00 -10.00 29 30 3.02 330.00 35.00 *END 2007-08-04b *BEGIN 2007-08-04c *DATE 2007.08.04 *CALIBRATE declination 2.28 1 2 6.53 213.00 -5.00 2 3 3.11 82.00 7.00 3 4 8.84 99.00 0.00 4 5 8.66 42.00 -14.00 5 6 3.30 97.00 15.00 6 7 6.45 93.00 -33.00 *END 2007-08-04c *BEGIN 2007-08-04d *DATE 2007.08.04 *CALIBRATE declination 2.28 1 2 11.61 187.00 0.00 2 3 4.23 195.00 5.00 3 4 3.87 168.00 -2.00 4 5 6.00 200.00 -4.00 5 6 3.75 102.00 -5.00 6 7 16.58 66.00 1.00 *END 2007-08-04d *BEGIN 2007-08-07 *DATE 2007.08.07 *CALIBRATE declination 2.28 0 1 3.64 351.00 -20.00 1 2 11.67 0.00 -90.00 2 3 3.09 0.00 40.00 3 4 5.76 280.00 0.00 4 5 5.65 16.00 0.00 5 6 9.60 100.00 0.00 6 6a 12.20 0.00 90.00 5 7 6.62 45.00 0.00 7 8 7.50 0.00 90.00 4 9 11.03 190.00 -10.00 9 10 4.61 250.00 -2.00 10 11 2.51 330.00 3.00 11 12 7.78 250.00 3.00 12 13 1.45 315.00 0.00 13 14 6.60 265.00 -3.00 14 15 1.70 205.00 -55.00 15 16 5.16 0.00 -90.00 9 21 1.50 280.00 -30.00 21 22 7.23 350.00 -20.00 22 23 4.70 350.00 -10.00 23 24 1.69 260.00 -10.00 24 25 3.36 280.00 -8.00 25 26 1.20 350.00 0.00 26 27 4.66 280.00 -15.00 27 28 4.22 0.00 -20.00 28 30 10.98 5.00 -12.00 30 31 10.82 340.00 -10.00 31 32 18.13 20.00 -15.00 32 33 20.40 9.50 15.00 *END 2007-08-07 *BEGIN CrapCompassChamber *DATE 2007.08.06 *CALIBRATE declination 2.28 0 1 5.34 292.00 36.00 1 2 17.65 202.00 15.00 2 3 14.90 132.00 1.00 3 4 8.56 92.00 -26.00 4 5 18.77 0.00 -8.00 5 0 8.38 304.00 -28.00 *END CrapCompassChamber *END UpperLevels *BEGIN LowerLevels *EQUATE 2007-08-02b.29 2007-08-04e.1 *EQUATE 2007-08-04f.1 2007-08-04e.10 *EQUATE 2007-08-13.0 2007-08-09PStA.9 *EQUATE 2007-08-09PStA.17 2007-08-09PStB.17 *EQUATE 2007-08-09PStA.13 2007-08-09PStC.13 *EQUATE 2007-08-09PStC.30 2007-08-09PStD.30 *EQUATE 2007-08-09PStA.8 2007-08-09PStE.8 *EQUATE 2007-08-09PStE.72 2007-08-09PStF.72 *EQUATE 2007-08-09PStE.64 2007-08-11_Connection.0 *EQUATE 2007-08-02b.17 2007-08-11_Connection.9 *EQUATE 2008-03-18Ali.0 2007-08-09PStA.6 *EQUATE 2007-08-09PStA.8 2008-03-18Ali2.8 *BEGIN 2007-08-02b *DATE 2007.08.02 *CALIBRATE declination 2.28 1 2 3.43 306.00 6.00 2 3 3.20 235.00 -41.00 3 4 18.90 0.00 -90.00 4 5 2.44 355.00 1.00 5 6 2.37 46.00 -31.00 6 7 2.31 64.00 32.00 7 8 6.23 351.00 -24.00 8 9 0.91 56.00 -19.00 9 10 11.34 0.00 -90.00 11 10 6.50 204.00 -22.00 11 12 10.52 0.00 -90.00 13 12 3.56 172.00 -49.00 13 14 11.03 62.00 -9.00 14 15 18.03 130.00 45.00 16 17 30.80 253.00 -21.00 17 18 22.95 345.00 33.00 17 19 30.68 241.00 21.00 17 20 24.65 280.00 5.00 17 13 19.23 199.00 26.00 20 21 5.42 272.00 -33.00 21 22 12.16 269.00 -40.00 22 23 30.80 239.00 -25.00 23 24 5.20 6.00 30.00 22 25 19.67 316.00 -32.00 25 26 30.37 271.00 -3.00 26 27 23.44 283.00 -2.00 27 28 30.80 253.00 1.00 27 29 9.80 306.00 24.00 28 30 30.80 277.00 -1.00 30 31 30.80 264.00 0.00 31 32 8.90 285.00 -16.00 32 33 3.76 264.00 -34.00 33 34 18.00 266.00 0.00 13 20 28.60 318.00 -14.00 *END 2007-08-02b *BEGIN 2007-08-04e *DATE 2007.08.04 *CALIBRATE declination 2.28 1 2 23.07 270.00 15.00 2 3 27.44 267.00 -5.00 3 4 30.80 274.00 -2.00 4 5 11.61 274.00 -2.00 5 6 11.70 263.00 -4.00 6 7 23.55 264.00 5.00 7 8 15.70 272.00 0.00 8 9 13.95 273.00 -13.00 9 10 9.80 254.00 5.00 10 11 11.50 233.00 8.00 6 2a 4.81 198.00 3.00 2a 3a 6.23 199.00 -23.00 3a 4a 19.65 269.00 13.00 4a 5a 2.88 202.00 4.00 5a 6a 9.22 121.00 0.00 6a 7a 4.15 126.00 -6.00 7a 8a 2.96 199.00 -29.00 *END 2007-08-04e *BEGIN 2007-08-04f *DATE 2007.08.04 *CALIBRATE declination 2.28 1 2 3.33 309.00 -28.00 2 3 9.17 270.00 -7.00 3 4 10.01 260.00 0.00 3 2a 3.05 31.00 -18.00 2a 3a 2.87 308.00 10.00 *END 2007-08-04f *BEGIN 2007-08-09PStA *CALIBRATE declination 2.28 1 0 5.30 221.00 34.00 2 1 3.35 341.00 8.00 3 2 23.50 0.00 90.00 4 3 3.29 114.00 10.00 5 4 10.80 86.00 72.00 6 5 3.70 204.00 6.00 6 7 11.30 273.00 8.00 7 8 8.70 290.00 -40.00 8 9 19.16 211.00 1.00 9 10 27.50 227.00 -7.00 10 11 14.50 199.00 1.00 11 12 20.20 215.00 -1.00 12 13 12.90 219.00 11.00 13 14 11.30 238.00 7.00 14 15 10.20 263.00 -3.00 15 16 16.70 281.00 -7.00 16 17 6.10 269.00 -3.00 17 18 8.80 252.00 30.00 18 19 7.30 259.00 2.00 19 20 8.50 269.00 0.00 20 21 6.90 257.00 1.00 *END 2007-08-09PStA *BEGIN 2007-08-09PStB *CALIBRATE declination 2.28 17 22 9.80 347.00 6.00 22 23 5.50 0.00 -10.00 23 24 18.50 279.00 0.00 24 25 5.10 267.00 -6.00 25 26 9.90 272.00 5.00 26 27 16.90 265.00 3.00 27 28 12.80 265.00 13.00 *END 2007-08-09PStB *BEGIN 2007-08-09PStC *CALIBRATE declination 2.28 13 29 10.55 165.00 25.00 29 30 16.50 181.00 1.00 30 31 16.80 260.00 0.00 31 32 9.00 239.00 7.00 32 33 8.30 243.00 1.00 33 34 7.80 279.00 -3.00 34 35 9.95 270.00 -9.00 35 36 1.70 178.00 -6.00 36 37 4.70 253.00 11.00 37 38 4.40 258.00 4.00 38 39 4.20 251.00 -4.00 *END 2007-08-09PStC *BEGIN 2007-08-09PStD *CALIBRATE declination 2.28 30 40 5.30 84.00 15.00 40 41 9.20 100.00 -13.00 41 42 10.19 88.00 2.00 42 43 14.65 101.00 -12.00 43 44 4.30 104.00 7.00 44 45 6.30 65.00 16.00 45 46 7.20 84.00 2.00 46 47 5.70 115.00 -36.00 47 48 10.20 139.00 -29.00 48 49 3.30 124.00 -6.00 49 50 13.20 220.00 -1.00 50 51 10.20 224.00 2.00 *END 2007-08-09PStD *BEGIN 2007-08-09PStE *CALIBRATE declination 2.28 8 60 12.99 353.00 4.00 60 61 16.08 354.00 -7.00 61 62 7.08 0.00 2.00 62 63 14.00 262.00 38.00 63 64 14.67 286.00 35.00 64 65 12.80 42.00 29.00 65 66 19.50 26.00 -7.00 66 67 26.30 37.00 -3.00 67 68 34.00 48.00 4.00 68 69 21.50 48.00 -2.00 69 70 10.19 26.00 -21.00 70 71 15.60 33.00 -26.00 71 72 21.20 54.00 -13.00 72 73 14.95 84.00 16.00 73 74 26.40 84.00 15.00 74 75 22.50 70.00 9.00 75 76 24.60 92.00 1.00 76 77 28.10 62.00 4.00 *END 2007-08-09PStE *BEGIN 2007-08-09PStF *CALIBRATE declination 2.28 72 78 9.50 271.00 -17.00 78 79 15.95 293.00 -27.00 79 80 20.56 291.00 -6.00 80 81 10.66 277.00 7.00 81 82 9.60 282.00 5.00 82 83 10.20 310.00 -1.00 83 84 12.39 288.00 -10.00 84 85 6.96 294.00 11.00 85 86 22.20 299.00 -4.00 86 87 23.30 277.00 -3.00 87 88 30.00 298.00 5.00 88 89 14.10 293.00 8.00 89 90 12.40 301.00 -15.00 *END 2007-08-09PStF *BEGIN 2007-08-11_Connection *CALIBRATE declination 2.28 0 1 12.77 238.00 -26.00 1 2 4.97 242.00 -17.00 2 3 5.18 230.50 30.00 3 4 2.77 253.00 46.00 4 5 0.82 0.00 90.00 5 6 2.42 333.00 10.00 6 7 2.71 281.50 -2.00 7 8 8.10 306.00 3.00 8 9 9.48 245.00 -22.00 *END 2007-08-11_Connection *BEGIN 2007-08-13 *CALIBRATE declination 2.28 0 1 10.00 322.00 18.00 1 2 13.20 303.00 5.00 2 3 17.25 41.00 -8.00 4 2 5.90 154.00 22.00 5 4 10.20 109.00 0.00 6 5 5.15 74.00 3.00 7 6 2.50 2.00 -1.00 8 7 4.60 92.00 -6.00 9 8 14.15 70.00 1.00 10 9 10.35 69.00 0.00 11 10 10.00 39.00 1.00 12 11 1.60 73.00 -2.00 13 12 9.20 64.50 -2.00 14 13 10.14 72.00 1.00 15 14 3.40 43.00 -4.00 16 15 3.92 54.50 0.00 17 16 4.65 38.00 0.00 18 17 7.40 24.00 1.00 19 18 5.40 60.00 -3.00 20 19 7.60 14.50 0.00 21 20 11.65 72.00 -1.00 22 21 2.90 0.00 11.00 23 22 5.85 63.50 -2.00 24 23 3.45 20.00 0.20 25 24 11.64 69.50 -1.00 26 25 2.70 126.00 0.00 27 26 15.80 68.00 -1.00 28 27 15.90 109.00 -41.00 *END 2007-08-13 *BEGIN 2008-03-18Ali *CALIBRATE declination 2.15 *CALIBRATE tape 1.00 0 1 7.80 110.00 15.00 2 1 11.80 264.00 -1.00 3 2 3.00 0.00 -90.00 4 3 5.00 251.00 -4.00 5 4 3.60 260.00 -2.00 6 5 3.40 320.00 -1.00 7 6 3.95 238.00 -4.00 8 7 2.20 303.00 -3.00 9 8 2.70 267.00 -1.00 10 9 3.40 216.00 0.00 11 10 3.25 268.00 -1.00 12 11 6.75 204.00 -1.00 13 12 2.65 164.00 -22.50 14 13 9.90 202.00 6.00 0 15 9.85 8.00 -11.00 *END 2008-03-18Ali *BEGIN 2008-03-18Ali2 *CALIBRATE declination 2.15 *CALIBRATE tape 1.00 0 1 6.50 72.00 -16.00 0 2 11.00 195.00 -16.00 0 3 7.00 273.00 -40.00 4 3 9.00 81.00 -4.00 3 5 6.70 0.00 -90.00 5 6 5.00 278.00 -5.00 6 7 7.57 246.00 12.00 7 8 10.80 236.00 -16.00 *END 2008-03-18Ali2 *BEGIN 2008-03-27 *DATE 2008.03.27 *CALIBRATE declination 2.15 1 2 7.62 0.00 -90.00 2 3 5.60 266.00 -17.00 3 4 2.66 26.00 -64.00 4 5 2.83 157.00 -23.00 5 6 0.90 98.00 -10.00 6 7 15.70 0.00 -90.00 6 8 4.30 180.00 -71.00 8 9 2.00 131.00 -42.00 9 10 4.41 85.00 -5.00 10 11 2.16 67.00 2.00 11 12 15.77 0.00 -90.00 12 13 4.16 252.00 29.00 13 14 12.64 110.00 -16.00 14 15 26.87 86.00 8.00 14 16 15.27 17.00 -10.00 14 17 17.30 57.00 -28.00 14 19 6.67 171.00 -18.00 17 18 5.43 101.00 -55.00 19 20 6.27 0.00 -90.00 19 21 20.01 0.00 90.00 13 31 9.52 262.00 18.00 31 32 19.88 245.00 -15.00 32 33 16.73 259.00 -3.00 33 34 17.63 273.00 10.00 34 35 14.55 164.00 42.00 35 36 7.58 230.00 20.00 36 37 16.13 85.00 5.00 *END 2008-03-27 *END LowerLevels *END LifeUandE *BEGIN LeftHandBypass *EQUATE 78a SandstoneInlet1.14 *EQUATE 85 Boulder_Chambers.101 *EQUATE 89 Boulder_Chambers.89 68a 68 5.40 148.11 -47.00 68 69 8.40 251.11 -19.00 69 70 17.20 253.11 1.00 70 71 6.60 269.11 -16.00 71 72 9.60 252.11 -2.00 72 73 5.40 301.11 -3.00 73 74 5.00 338.11 -40.00 74 75 8.30 67.11 0.00 74 76 13.90 255.11 0.00 76 77 7.40 219.11 4.00 77 78 18.90 244.11 0.00 78 78a 2.40 0.00 -90.00 78a 79 12.30 261.11 -4.00 79 80 30.00 319.11 -5.00 80 81 30.00 297.11 -4.00 81 82 10.80 297.11 2.00 82 83 4.70 315.11 -23.00 83 84 7.30 333.11 30.00 84 85 13.10 17.11 17.00 85 86 10.70 56.11 -19.00 86 86a 1.00 53.11 0.00 86a 87 2.30 0.00 -90.00 87 88 9.40 53.11 0.00 88 89 5.30 63.11 25.00 89 90 16.00 56.11 0.00 90 91 15.60 90.11 -9.00 91 92 18.10 113.11 0.00 92 93 8.90 91.11 18.00 90 94 11.10 278.11 -19.00 94 95 4.40 0.00 -90.00 95 96 9.20 116.11 0.00 *BEGIN Boulder_Chambers 89 97 6.50 320.11 17.00 97 98 7.20 12.11 13.00 98 99 11.80 230.11 -8.00 99 100 14.80 228.11 10.00 100 101 7.40 161.11 0.00 100 102 8.20 277.11 12.00 102 103 4.60 319.11 48.00 103 104 15.70 260.11 35.00 *END Boulder_Chambers *BEGIN SandstoneInlet1 *DATE 2007.04.09 *CALIBRATE declination 2.28 15 14 19.00 296.00 -9.00 16 15 9.11 288.00 -3.00 17 16 3.59 307.00 -6.00 18 17 10.19 291.00 -4.00 19 18 13.93 286.00 -3.00 20 19 8.04 295.00 -3.00 21 20 9.85 32.00 0.00 22 21 4.24 350.00 -8.00 23 22 14.09 288.00 -3.00 *END SandstoneInlet1 *END LeftHandBypass *BEGIN MainUpstream 1 2 17.68 310.43 -26.90 2 3 42.09 298.55 0.00 3 4 6.28 267.88 0.00 4 5 10.74 287.65 0.00 5 6 23.49 269.15 0.00 6 7 15.01 247.21 0.00 7 8 24.76 275.39 0.00 8 9 38.28 289.70 0.00 9 10 21.07 285.03 0.00 10 11 11.98 292.83 0.00 13 12 39.62 301.50 0.00 12 3 12.73 227.68 -45.00 *END MainUpstream *END Part1 *BEGIN RestOfCave 109 110 7.00 273.86 0.00 110 111 13.10 258.86 10.00 111 112 7.30 246.86 57.00 112 113 18.40 286.86 -4.00 113 114 25.60 261.86 -2.00 114 115 14.50 299.86 -11.00 115 116 8.30 305.86 47.00 116 117 10.30 301.86 -9.00 117 118 1.70 0.00 -90.00 118 119 6.00 223.86 -12.00 119 120 20.00 291.86 -4.00 120 121 2.10 0.00 90.00 121 122 1.50 297.86 42.00 122 123 1.10 0.00 90.00 123 124 2.50 288.86 26.00 124 125 3.20 238.86 55.00 125 126 3.10 352.86 6.00 126 127 3.50 307.86 -29.00 127 128 2.80 271.86 6.00 128 129 2.00 208.86 25.00 129 130 3.60 258.86 52.00 130 131 1.60 229.86 3.00 131 132 1.00 0.00 90.00 132 133 12.00 257.86 30.00 133 134 3.80 288.86 31.00 134 135 1.20 0.00 -90.00 135 136 7.30 105.86 -9.00 136 137 3.70 107.86 10.00 137 138 3.70 120.86 0.00 138 139 3.60 135.36 -5.00 139 140 4.90 133.86 8.00 140 141 9.00 231.86 10.00 141 142 3.90 117.86 -4.00 142 143 5.30 269.86 -77.00 143 144 3.80 151.86 4.00 144 145 6.50 212.86 22.00 145 146 35.10 131.86 1.00 146 147 13.10 237.86 7.00 147 148 7.40 255.86 -11.00 148 149 4.40 142.86 -23.00 149 150 30.00 154.86 2.00 150 151 13.50 67.86 -27.00 151 152 8.80 150.86 0.00 152 153 19.10 122.86 2.00 153 154 6.00 147.86 0.00 154 155 30.00 151.86 12.00 155 156 12.70 260.86 -16.00 156 157 24.60 225.86 0.00 157 158 30.00 227.86 4.00 158 159 30.00 218.86 2.00 159 160 30.00 235.86 -2.00 160 161 30.00 203.86 10.00 161 162 13.20 222.86 23.00 162 163 31.50 254.86 0.00 163 164 27.20 277.86 2.00 164 165 27.80 263.86 -1.00 165 166 30.00 264.86 0.00 166 167 13.00 203.86 -3.00 167 168 30.00 291.86 3.00 168 169 24.20 339.36 5.00 169 170 10.70 265.86 -12.00 170 171 30.00 231.86 0.00 171 172 30.00 257.86 0.00 172 173 30.00 261.86 5.00 173 174 28.10 308.86 23.00 174 175 10.80 324.86 -42.00 175 176 17.40 46.86 -12.00 176 177 30.00 45.86 -11.00 177 178 22.20 51.86 -18.00 178 179 30.00 39.86 -5.00 179 180 30.00 43.86 -5.00 180 181 30.00 1.86 0.00 181 182 25.60 275.86 -3.00 182 183 25.30 314.86 -10.00 183 184 7.50 14.86 22.00 184 185 29.00 54.86 13.00 132 186 10.40 258.95 28.00 186 187 3.10 204.95 -33.00 187 188 1.60 272.95 -14.00 188 189 3.70 253.95 -37.00 189 190 8.10 293.95 15.00 190 191 4.90 294.95 -7.00 191 192 3.30 312.95 -11.00 192 193 2.90 304.95 28.00 193 194 16.20 323.95 -8.00 194 195 16.40 288.95 -32.00 195 196 5.40 31.95 -8.00 196 197 3.80 0.00 -90.00 197 198 12.00 335.95 -5.00 198 199 7.30 318.95 5.00 199 200 10.00 284.95 -7.00 200 201 4.00 262.95 0.00 201 202 8.70 226.95 0.00 194 203 17.00 289.95 0.00 199 204 12.40 209.95 0.00 185 205 3.10 112.95 18.00 205 206 30.70 73.45 -1.00 206 207 17.60 85.45 2.00 207 208 22.70 33.95 -8.00 208 209 30.70 61.45 13.00 209 210 27.40 57.95 5.00 210 211 30.70 66.95 -17.00 211 212 30.40 76.95 -2.00 145 213 5.40 217.95 7.00 213 214 22.00 322.95 8.00 162 215 7.14 289.45 20.00 215 216 23.40 316.95 -1.00 216 217 30.70 248.95 2.00 217 218 27.30 333.95 -3.00 218 219 19.30 274.95 0.00 219 220 30.70 281.95 2.00 220 221 17.40 351.95 2.00 221 222 30.70 14.95 -3.00 222 223 30.70 36.95 0.00 223 224 30.70 32.95 0.00 224 225 30.70 31.95 3.00 225 226 29.70 38.95 -4.00 226 227 24.60 23.95 0.00 227 228 21.00 37.95 -2.00 228 229 13.90 90.95 -5.00 229 230 19.40 61.45 1.00 220 231 30.70 159.95 1.00 231 232 13.60 150.95 6.00 232 233 25.50 252.95 -8.00 228 234 17.00 7.95 0.00 *EQUATE 234 235 *EQUATE 235 236 *EQUATE 236 237 162 238 18.00 101.95 11.00 238 239 2.70 93.95 -10.00 239 240 13.40 186.95 -5.00 240 241 5.00 84.95 0.00 241 242 2.60 121.95 15.00 242 243 2.40 208.95 25.00 243 244 2.50 113.95 -1.00 244 245 4.40 193.95 0.00 245 246 2.60 96.95 10.00 246 247 4.30 165.95 -6.00 247 248 4.00 87.95 -4.00 248 249 7.30 188.95 -3.00 249 250 5.00 80.95 1.00 250 251 2.70 187.95 -2.00 251 252 3.70 83.95 0.00 252 253 6.00 188.95 1.00 253 254 9.50 77.95 -1.00 254 255 5.90 153.95 -1.00 255 256 3.30 91.95 1.00 256 257 7.90 193.95 2.00 257 258 7.60 68.95 2.00 258 259 2.50 43.95 4.00 259 260 1.80 133.95 2.00 260 261 3.40 13.95 -3.00 261 262 8.40 27.95 -10.00 262 263 2.10 168.95 24.00 263 264 22.50 191.95 0.00 264 265 12.30 193.95 5.00 265 266 7.30 55.95 4.00 266 267 6.40 188.95 6.00 267 268 6.70 163.95 4.00 268 269 4.30 66.95 1.00 269 270 4.60 171.95 1.00 270 271 20.00 65.95 0.00 271 272 6.70 53.95 0.00 272 273 1.30 148.95 2.00 273 274 4.00 214.95 3.00 274 275 5.20 173.95 4.00 275 276 9.40 104.95 2.00 276 277 3.30 123.95 5.00 277 278 3.90 49.95 -4.00 278 279 5.20 119.95 2.00 279 280 6.60 143.95 2.00 280 281 8.60 119.95 1.00 281 282 6.00 53.95 5.00 282 283 6.40 109.95 0.00 283 284 2.60 73.95 -4.00 284 285 3.20 113.95 1.00 285 286 6.90 143.95 4.00 286 287 7.30 122.95 10.00 287 288 2.20 159.95 -45.00 288 289 5.00 178.95 5.00 289 290 7.50 233.95 -4.00 162 291 11.35 83.96 19.00 291 292 6.00 85.95 -10.00 292 293 15.75 12.95 -1.00 293 294 4.80 81.95 23.00 294 295 5.00 154.95 -32.00 295 296 7.30 203.95 10.00 175 297 16.80 280.94 17.00 297 298 6.70 193.95 43.00 298 299 3.30 133.95 70.00 299 300 3.30 271.95 15.00 300 301 3.30 0.00 90.00 301 302 9.00 83.95 10.00 302 303 6.30 178.95 11.00 303 304 30.70 262.95 6.00 304 305 16.20 246.95 19.00 305 306 16.80 285.95 10.00 306 307 30.70 258.95 0.00 307 308 30.70 268.95 -1.00 308 309 30.70 278.95 3.00 309 310 28.10 222.95 16.00 310 311 30.70 221.95 11.00 311 312 22.00 260.95 -8.00 312 313 20.40 273.95 -26.00 313 314 12.50 358.95 -29.00 314 315 8.70 268.95 -42.00 315 316 9.80 215.95 -50.00 316 317 6.20 142.95 -40.00 317 318 10.70 207.95 -45.00 318 319 18.60 126.95 -30.00 319 320 30.70 163.95 -9.00 320 321 21.40 153.95 10.00 321 322 12.50 218.95 10.00 318 323 28.40 263.95 8.00 323 324 19.00 268.95 -6.00 312 325 16.60 203.95 28.00 324 326 8.60 15.95 -31.00 326 327 6.30 74.95 -33.00 327 328 2.50 341.95 -15.00 328 329 19.20 284.95 0.00 329 330 13.50 252.95 2.00 330 331 5.00 346.95 3.00 331 332 8.10 289.95 14.00 332 333 23.50 302.95 -3.00 333 334 2.10 277.95 30.00 334 335 2.20 240.95 -8.00 335 336 2.90 147.95 12.00 336 337 9.20 204.95 -4.00 337 338 4.70 265.95 -19.00 338 339 3.70 358.95 -3.00 339 340 6.50 318.95 5.00 340 341 3.00 1.95 35.00 341 342 8.90 285.95 2.00 342 343 10.20 273.95 -21.00 343 344 16.50 275.95 20.00 344 345 20.30 303.95 -8.00 345 346 20.40 286.95 18.00 346 347 4.60 27.95 -9.00 347 348 13.00 3.95 1.00 348 349 6.20 14.95 3.00 349 350 8.00 4.95 -8.00 350 351 4.90 26.95 -3.00 351 352 8.70 29.95 0.00 352 353 4.10 342.95 12.00 353 354 4.40 29.95 -19.00 354 355 4.70 51.95 -14.00 355 356 12.60 19.95 -2.00 356 357 4.50 52.95 -2.00 357 358 6.30 357.95 0.00 358 359 8.50 330.95 0.00 346 360 1.23 42.03 -17.00 360 361 3.70 285.03 22.00 361 362 0.70 0.00 -90.00 362 363 7.10 278.03 32.00 363 364 9.40 204.03 59.00 364 365 9.57 78.03 2.00 365 366 10.71 141.03 0.00 364 367 3.20 264.03 4.00 *EQUATE 367 368 325 369 30.00 0.00 90.00 369 370 3.50 110.35 55.00 370 371 7.50 125.35 70.00 371 372 6.20 129.35 -32.00 372 373 10.30 60.35 45.00 371 374 1.70 210.35 20.00 374 375 5.50 201.35 10.00 *EQUATE 375 376 199 377 1.09 0.00 90.00 377 378 3.60 311.95 0.00 378 379 3.20 285.95 59.00 379 380 4.00 329.95 -6.00 380 381 1.80 223.95 0.00 381 382 1.60 0.00 90.00 382 383 1.70 176.95 32.00 383 384 1.00 298.95 15.00 384 385 2.00 6.95 12.00 385 386 1.40 328.95 20.00 386 387 1.80 275.95 0.00 387 388 1.30 0.00 90.00 388 389 1.70 303.95 -5.00 389 390 0.90 0.00 90.00 390 391 2.90 308.95 4.00 391 392 2.40 331.95 -12.00 392 393 3.20 331.95 19.00 393 394 2.80 321.95 50.00 394 395 3.90 3.95 52.00 395 396 5.50 278.95 25.00 396 397 6.50 299.95 -28.00 397 398 6.90 283.95 -7.00 398 399 2.40 236.95 0.00 399 400 2.80 271.95 -48.00 400 401 6.30 308.95 -10.00 401 402 7.10 348.95 -5.00 402 403 9.80 293.95 4.00 403 404 4.50 275.95 38.00 404 405 3.40 285.95 0.00 405 406 1.30 218.95 0.00 406 407 3.60 273.95 2.00 407 408 2.00 271.95 30.00 408 409 2.90 204.95 50.00 409 410 3.80 193.95 42.00 410 411 9.20 283.95 2.00 411 412 1.20 233.95 0.00 412 413 2.70 321.95 0.00 413 414 3.80 288.95 0.00 396 415 3.90 258.95 -1.00 197 416 2.89 81.02 28.00 416 417 9.00 111.95 0.00 417 418 6.70 182.95 -1.00 417 419 1.30 0.00 -90.00 419 420 1.20 111.95 0.00 420 421 3.90 14.95 7.00 421 422 6.60 30.95 9.00 422 423 1.60 110.95 20.00 423 424 7.30 134.95 12.00 424 425 4.40 113.95 28.00 425 426 4.60 162.95 10.00 426 427 2.70 186.95 -32.00 427 428 2.40 205.95 10.00 428 429 6.10 254.95 11.00 429 430 4.80 198.95 8.00 212 431 9.30 285.06 6.00 431 432 5.50 59.03 -14.00 432 433 2.80 309.03 -42.00 433 434 2.10 56.03 -17.00 434 435 4.40 285.03 -26.00 435 436 3.15 0.00 -90.00 436 437 19.70 69.03 2.00 320 438 1.50 0.00 90.00 438 439 22.34 341.35 6.00 439 440 8.50 248.35 -35.00 440 441 15.72 275.35 -8.00 441 442 8.16 4.35 -3.00 442 443 27.47 274.35 -4.00 443 444 30.00 282.35 -2.00 444 445 15.03 276.35 3.00 445 446 24.34 244.35 1.00 446 447 22.25 213.35 0.00 447 448 25.24 225.35 3.00 448 449 5.97 173.35 1.00 446 450 30.00 247.35 -2.00 450 451 11.07 209.35 4.00 451 452 15.27 217.35 1.00 452 453 7.65 229.35 20.00 453 454 5.60 266.35 47.00 452 455 10.62 242.35 5.00 455 456 5.72 278.35 1.00 456 457 3.37 221.35 1.00 184 458 6.10 242.50 -5.00 458 459 8.00 268.50 -8.00 459 460 4.30 284.50 0.00 460 461 7.20 265.50 -7.00 461 462 6.60 265.50 8.00 462 463 25.80 265.50 1.00 463 464 3.00 0.00 -90.00 464 465 2.60 263.50 -14.00 465 466 8.50 278.50 0.00 466 467 2.50 245.50 -24.00 467 468 5.50 260.50 0.00 468 469 5.20 315.50 30.00 469 470 16.10 259.50 0.00 470 471 10.00 269.50 5.00 185 502 29.35 272.40 -3.00 502 503 7.90 253.40 -27.00 503 504 10.45 286.40 1.00 504 505 6.30 266.40 3.00 505 506 4.45 278.90 22.00 506 507 20.20 261.40 1.00 507 508 4.60 281.90 -28.00 508 509 3.65 240.40 -47.00 509 510 8.25 280.90 2.00 510 511 3.40 250.40 -21.00 511 512 5.55 268.90 1.00 512 513 5.30 320.40 33.00 513 514 16.35 264.40 -1.00 514 515 15.50 270.40 2.00 359 516 3.60 185.55 0.00 516 517 9.90 143.55 -1.00 517 518 3.70 106.55 8.00 518 519 3.40 152.55 -3.00 519 520 3.00 102.55 -1.00 520 521 1.70 181.55 -2.00 521 522 4.00 90.55 0.00 522 523 15.00 100.55 -2.00 523 524 3.60 342.55 3.00 524 525 19.00 100.55 0.00 525 526 3.10 157.55 0.00 526 527 14.20 92.55 -1.00 527 528 4.10 137.55 6.00 528 529 5.40 167.55 -3.00 529 530 6.00 97.55 1.00 530 531 17.00 80.55 -2.00 531 532 9.70 91.55 -2.00 532 533 9.00 88.55 -8.00 533 534 6.20 117.55 1.00 534 535 3.60 179.55 3.00 535 536 5.70 79.55 0.00 536 537 12.60 82.55 0.00 537 538 9.50 83.55 -2.00 538 539 9.00 84.55 -1.00 539 540 6.50 86.55 0.00 540 541 7.30 81.55 -1.00 541 542 5.10 79.55 -5.00 542 543 3.40 63.55 -61.00 543 544 4.30 92.55 -13.00 544 545 5.20 87.55 2.00 545 546 4.00 108.55 -5.00 546 547 11.80 81.55 0.00 547 548 6.30 69.55 -1.00 548 549 1.50 0.00 -90.00 549 550 10.60 80.55 0.00 215 551 2.00 0.00 -90.00 551 552 9.40 123.85 1.00 552 553 5.00 216.85 58.00 553 554 14.60 210.85 2.00 554 555 6.70 204.85 4.00 555 556 2.60 234.85 0.00 556 557 7.90 193.85 7.00 557 558 2.50 186.85 4.00 558 559 5.20 176.85 4.00 559 560 3.30 95.85 8.00 560 561 30.00 74.85 -1.00 561 562 8.20 68.85 -4.00 562 563 6.80 79.85 27.00 563 564 9.30 66.85 -4.00 564 565 7.00 71.85 -20.00 560 566 3.30 176.85 1.00 566 567 15.60 273.85 1.00 567 568 3.00 292.85 -5.00 568 569 22.20 271.85 -2.00 569 570 8.00 265.85 0.00 570 571 1.60 234.85 -9.00 571 572 21.90 272.85 -1.00 572 573 3.00 29.85 -5.00 573 574 29.00 327.85 -7.00 574 575 12.00 338.85 -8.00 575 576 5.40 338.85 -8.00 576 577 5.30 95.85 0.00 568 578 2.50 333.85 -7.00 578 579 4.80 1.85 -8.00 579 580 15.60 86.85 -5.00 552 581 8.15 60.85 8.00 581 582 17.25 78.85 2.00 582 583 11.70 82.85 4.00 583 584 4.22 160.85 -7.00 584 585 7.00 209.85 -8.00 585 586 3.50 162.85 30.00 586 587 1.60 146.85 46.00 587 588 3.00 126.85 -17.00 588 589 4.55 167.85 2.00 589 590 2.70 85.85 10.00 590 591 3.10 91.85 27.00 591 592 9.10 177.85 7.00 592 593 1.60 0.00 -90.00 591 594 11.68 352.85 6.00 594 595 10.50 31.85 -4.00 593 596 6.50 152.85 10.00 596 597 5.30 186.85 -28.00 597 598 5.30 78.85 17.00 598 599 5.30 159.85 22.00 598 600 2.00 0.00 -90.00 600 601 10.00 78.85 -5.00 601 602 10.80 195.85 1.00 602 603 1.30 0.00 -90.00 603 604 24.00 186.85 3.00 604 605 13.70 195.85 5.00 605 606 5.50 186.85 19.00 606 607 2.90 170.85 4.00 607 608 1.50 86.85 1.00 608 609 6.40 176.85 9.00 609 610 4.00 0.00 90.00 610 611 12.30 119.85 2.00 611 612 4.65 130.85 -2.00 612 613 0.90 61.85 0.00 613 614 8.90 105.85 10.00 614 615 13.50 171.85 4.00 610 616 9.50 268.85 -4.00 616 617 0.40 0.00 -90.00 610 618 5.55 352.85 -14.00 618 619 7.60 346.85 -15.00 619 620 4.90 1.85 -5.00 620 621 6.80 13.85 1.00 621 622 4.20 250.85 -3.00 622 623 4.55 6.85 1.00 623 624 3.35 233.85 8.00 624 625 1.40 278.85 8.00 552 626 15.40 28.35 2.00 626 627 16.20 46.85 -10.00 627 628 8.00 160.85 0.00 628 629 4.95 185.85 3.00 629 630 4.67 93.85 2.00 630 631 4.95 190.85 1.00 583 632 7.17 49.85 17.00 632 633 15.85 13.85 -11.00 633 634 5.13 339.85 -19.00 634 635 4.63 326.85 0.00 593 636 11.18 93.85 9.00 636 637 2.89 70.85 -7.00 637 638 4.90 194.85 -11.00 638 639 9.42 204.35 13.00 599 640 7.77 204.85 2.00 640 641 11.95 191.85 10.00 640 642 4.49 202.85 -35.00 642 643 18.00 195.85 0.00 643 644 2.60 150.85 20.00 644 645 6.90 10.85 37.00 644 646 8.60 197.85 0.00 646 647 7.75 195.85 10.00 647 648 7.25 182.85 21.00 648 649 0.90 113.85 -25.00 649 650 3.15 27.85 -29.00 650 651 3.34 345.85 -2.00 651 652 5.31 12.85 -7.00 652 653 3.04 342.85 -1.00 650 654 6.22 182.85 23.00 654 655 1.50 260.85 9.00 655 656 3.12 348.85 -11.00 654 657 1.94 68.85 -8.00 657 658 3.88 2.85 -24.00 658 659 2.86 227.85 10.00 658 660 5.00 8.85 -7.00 660 661 3.30 232.85 2.00 155 662 5.40 359.85 -22.00 662 663 19.47 349.35 -7.00 663 664 29.40 34.85 0.00 664 665 10.25 20.85 -3.00 665 666 6.50 29.85 -4.00 666 667 14.25 39.85 -11.00 667 668 11.67 25.85 -11.00 665 669 6.13 252.85 -16.00 669 670 7.30 263.85 0.00 670 671 2.65 4.85 -9.00 671 672 12.50 31.85 -12.00 155 673 17.20 254.15 -22.00 673 674 8.50 318.15 -24.00 674 675 2.70 11.15 -2.00 675 676 6.50 327.15 -5.00 676 677 5.00 38.15 -3.00 677 678 17.10 329.15 -5.00 678 679 3.30 49.15 -11.00 679 680 6.10 8.15 21.00 680 681 18.10 316.15 6.00 681 682 5.70 49.15 -31.00 682 683 2.90 88.15 0.00 683 684 17.90 47.15 -10.00 684 685 12.50 47.15 -15.00 *END RestOfCave *END 0114_Llueva CaveConverter_src/test/data/regression/survex_data_order_nested_ss_ref.svx0000644000000000000000000000067613030271724026436 0ustar rootroot*BEGIN data_order_nested *EQUATE first.3 second.1 *EQUATE third.1 second.3 *data normal from to bearing length gradient *BEGIN first 1 2 50.00 9.45 0.00 2 3 45.00 4.51 -2.00 *END first *BEGIN second *data normal from to bearing gradient length 1 2 62.00 -1.00 7.35 2 3 14.00 0.00 11.65 *END second *BEGIN third 1 2 55.00 2.63 -3.00 2 3 63.00 7.72 6.00 *END third *END data_order_nested CaveConverter_src/test/data/regression/2649_Mareserection_ref.svx0000644000000000000000000000253012114041272024115 0ustar rootroot*BEGIN 2649_Mareserection *EQUATE Mares070701.25 Mares0904085.0 *BEGIN Mares070701 *CALIBRATE declination 2.28 1 2 1.72 145.00 -47.00 2 3 2.90 353.00 -49.00 3 4 4.22 0.00 -90.00 4 5 4.95 103.00 11.00 5 6 2.17 72.00 40.00 6 7 2.51 100.00 -35.00 7 8 6.90 222.00 -11.00 7 9 2.98 68.00 19.00 9 10 3.00 110.00 -2.00 10 11 2.58 98.00 -11.00 11 12 4.80 0.00 -90.00 11 13 4.40 48.00 -11.00 13 14 2.30 20.00 -43.00 14 15 7.35 50.00 -4.00 15 16 7.35 35.00 -5.00 16 17 4.10 25.00 14.00 17 18 5.90 73.00 -5.00 18 19 7.40 32.00 -3.00 19 20 5.63 49.00 -3.00 20 21 3.91 110.00 -4.00 21 22 4.02 85.00 2.00 22 23 3.00 38.00 -3.00 23 24 3.30 150.00 -11.00 24 25 6.57 99.00 0.00 25 26 1.82 182.00 3.00 26 27 1.91 28.00 7.00 26 28 2.50 202.00 20.00 *END Mares070701 *BEGIN Mares0904085 *CALIBRATE declination 2.08 0 1 3.00 91.06 6.73 1 2 2.91 20.29 3.57 2 3 4.11 19.88 -2.27 3 4 2.03 331.14 4.87 4 5 2.43 28.98 -37.75 4 6 1.91 63.99 -6.15 6 7 3.35 32.37 -4.35 6 8 8.17 104.93 -1.38 8 9 1.78 139.35 4.60 9 10 2.70 100.81 0.36 10 11 4.72 56.33 -3.82 11 12 1.25 69.40 -4.66 12 13 2.95 112.51 -3.77 12 14 3.97 136.09 3.99 14 15 1.44 68.87 -26.54 15 16 2.30 131.94 -17.98 *END Mares0904085 *END 2649_Mareserection CaveConverter_src/test/data/regression/0107_Uzueka_ref.svx0000644000000000000000000030762412115022124022554 0ustar rootroot*BEGIN 0107_Uzueka *EQUATE entrance2.0 ent2_UpnOver.flyover.13 *EQUATE ent2_upnover.flyover.26 QuadrapheniaResurvey2010.FlyoverCrawl.0 *EQUATE entrance2.19 QuadrapheniaResurvey2010.QuadrapheniaToSqueezeResurvey.10 *EQUATE ent2_UpnOver.flyover.26 QuadrapheniaResurvey2010.MainJunctionsArea.0 *EQUATE Quadraphenia.996 QuadrapheniaResurvey2010.MainJunctionsArea.16 *EQUATE quad2008-2.0 QuadrapheniaResurvey2010.MainJunctionsArea.21 *EQUATE entrance2.18 NearSeries.16 *EQUATE entrance2.19 AroundEntranceSeries.19 *EQUATE WildlifeSeries.983 AroundEntranceSeries.944 *EQUATE WildlifeSeries.922 AroundEntranceSeries.922 *EQUATE entrance1.1000 Quadraphenia.1000 *EQUATE Quad2008-3.23 QuadrapheniaOxbows.1019 *EQUATE Quad2008-2.6 Roofers_Passage_Area.3 *EQUATE Quad2008-3.0 Roofers_Passage_Area.11 *EQUATE TilersWay.40 Roofers_Passage_Area.2 *EQUATE Quad2008-3.0 PullUpPassage.pt1.0 *EQUATE PullUpPassage.pt4.1 PullUpPassageMaze.pt1.1 *EQUATE PullUpPassage.pt2.4 PullUpPassageMaze.pt1.6 *EQUATE PullupMazeInlet.97 PullUpPassageMaze.pt3.3 *EQUATE Quad2008-3.43 MarathonPassage.57 *EQUATE MarathonPassage.54 MarathonPassagePt1.79 *EQUATE FlashbulbHallOldBits.749 FlashbulbHall_resurvey2009_1.13 *EQUATE GodKnows.Feb2010.0 FlashbulbHall_resurvey2009_1.52 *EQUATE GodKnows.Apr2010.39 FlashbulbHall_resurvey2009_1.56 *EQUATE GodKnows.Apr2010.44 FlashbulbHall_resurvey2009_1.44 *EQUATE RealSimaBaz.pt1.0 GodKnows.GoldiesWay.Pt3.5 *EQUATE FlashbulbHall_resurvey2010.34 FlashbulbHall_resurvey2009_1.44 *EQUATE FlashbulbHall_resurvey2010.30 FlashbulbHall_resurvey2009_2.15 *EQUATE FlashbulbHall_Aug09.6 BeyondFlashbulbNorth.11 *EQUATE PullUpPassage.pt3.2 BeyondFlashbulbNorth.0 *EQUATE PigsTrotters_downstream_resurvey2011.0 Marathon_to_PigsTrotters_resurvey2009_1.10 *EQUATE NewUzueka.1 PigsTrotters_downstream_resurvey2011.17 *EQUATE NewUzueka.46 RH_StartOfGorillaWalk.1094 *EQUATE NewUzueka.16 PhreaticMazeSeries.0 *EQUATE NewUzueka.65 2691_GiantPanda.33 *EQUATE WindyInlet.1069 2691_GiantPanda.8 *EQUATE NewUzueka.82 2ndRiverInlet.20 *EQUATE NewUzueka.77 ZoologicalGardens.865 *EQUATE Stomps.Pt1.1 HiddenAven.1 *EQUATE GourInlet.1 Stomps.Pt1.9 *EQUATE NewUzueka.106 GourInlet.1 *EQUATE GourInlet.71 BeyondThunderdome.1 *EQUATE GourInlet.13 BeyondThunderdome.93 *EQUATE BeyondThunderdome.1 TomorrowMorrowLand.1 *EQUATE Uzu-Gour090410153.0 TomorrowMorrowLand.45 *EQUATE GourAven2010.0 Uzu-Gour090410153.58 *EQUATE Stomps.Pt1.34a FarStompsInlet.189 *EQUATE Crossover.1 Stomps.Pt1.17 *EQUATE Crossover.14 Stomps.Pt1.19 *EQUATE 3rdRiver.46 Crossover.46 *EQUATE 3rdRiver.46 3rdRiverInlet.197 *EQUATE 3rdRiver.57 ObviousInlet.1 *EQUATE 3rdRiver.61 StrawInlet.61 *EQUATE 3rdRiver.82 LisasBit.1 *EQUATE 3rdRiver.95 Aug96Passage.202 *EQUATE 3rdRiver.104 LasPlayas.Resurvey2011.8 *EQUATE SloppyInlet.Pt1_2010.1 LasPlayas.Resurvey2011.1 *EQUATE DiversionChamberInlet.1 LasPlayas.Resurvey2011.1 *EQUATE HellOfADiversion.1 SloppyInlet.Pt2_2011.4 *EQUATE HellOfADiversion.58 DiversionChamberInlet.13 *EQUATE BRoad.1 LasPlayas.Resurvey2011.1 *EQUATE BRoad.15 SandyZigZags.1 *EQUATE BRoad.18 River2.9 *EQUATE River2.25 4thRiverInlet.1 *EQUATE River2.34 Astradome.6 *EQUATE River2.49 ArmageddonBypass.1 *EQUATE River2.62 ArmageddonToRockyHorror.219a *EQUATE SandyJunctionInlet.10 ArmageddonToRockyHorror.223 *EQUATE ArmageddonToRockyHorror.223 ChambersBackFromArmageddon.7 *EQUATE ShrimpBoneInlet.238 ArmageddonToRockyHorror.238 *EQUATE RockyHorror.273 ArmageddonToRockyHorror.273 *EQUATE Trident.273 ArmageddonToRockyHorror.273 *EQUATE Quad2008-3.23 Marathon_to_PigsTrotters_resurvey2009_1.0 *EQUATE Quad2008-3.16 FlashbulbHall_resurvey2009_1.26 *EQUATE Marathon_to_PigsTrotters_resurvey2009_1.0 Marathon_to_PigsTrotters_resurvey2009_2.1 *EQUATE Marathon_to_PigsTrotters_resurvey2009_1.6 Marathon_to_PigsTrotters_resurvey2009_2.9 *EQUATE Pigstrotters_sidepassage.0 Marathon_to_PigsTrotters_resurvey2009_1.10 *EQUATE FlashbulbHall_resurvey2009_1.1 Marathon_to_PigsTrotters_resurvey2009_1.10 *EQUATE FlashbulbHall_resurvey2009_2.4 FlashbulbHall_resurvey2009_1.51 *EQUATE FlashbulbHall_resurvey2009_2.0 FlashbulbHall_resurvey2009_2a.1 *EQUATE FlashbulbHall_Aug09.0 FlashbulbHall_resurvey2009_1.46 *EQUATE WardrobePassage.pt4.5 Marathon_to_PigsTrotters_resurvey2009_1.10 *EQUATE WardrobePassage.pt1.13 FlashbulbHall_resurvey2009_1.4 *EQUATE FlashbulbHall_Aug09.2 FlashbulbHall_resurvey2009_2a.7 *EQUATE quad2008-2.6 TilersWayresurvey.0 *EQUATE HiddenAven.1 HiddenAven_Old.10 *EQUATE VampireGallery.0 BeyondFlashbulbNorth.7 *EQUATE VampireGallery.23 VampireGalleryExtension.0 *EQUATE BeyondFlashbulbNorth.10 DogSeries.Aug09_Resurvey.36 *EQUATE NewUzueka.6 BazsPitch.62 *EQUATE BazsPitch.30 RealSimaBaz.pt3.7 *BEGIN entrance1 36 37 19.92 72.47 0.00 36 548 2.70 112.95 -10.00 548 549 8.90 149.95 -2.00 549 550 5.30 213.95 0.00 550 551 6.80 224.95 0.00 551 33 21.02 267.27 0.00 33 34 13.92 291.03 0.00 551 552 9.30 307.95 0.00 552 553 5.40 265.95 0.00 553 554 6.50 318.95 0.00 554 555 13.20 248.95 0.00 555 556 28.10 275.95 0.00 556 557 5.80 279.95 0.00 557 558 14.70 205.95 0.00 558 559 2.20 184.95 0.00 559 560 8.10 77.95 40.00 559 561 11.50 265.95 25.00 550 562 5.10 111.95 0.00 562 563 7.70 66.95 -2.00 563 564 5.50 138.95 0.00 564 565 3.20 75.95 5.00 565 566 6.40 19.95 0.00 566 567 5.00 56.95 0.00 567 568 18.20 91.95 0.00 568 569 6.10 28.95 0.00 569 570 6.10 311.95 5.00 569 571 12.50 83.95 0.00 571 572 6.20 298.95 0.00 571 573 12.00 115.95 0.00 573 574 6.20 83.95 40.00 574 575 6.90 262.95 -18.00 551 576 3.40 141.95 0.00 576 577 7.20 117.95 0.00 577 578 7.50 247.95 0.00 578 579 5.50 143.95 0.00 579 580 3.60 233.95 0.00 30 580 4.63 10.00 0.00 1000 30 11.31 315.00 0.00 36 911 2.60 52.00 6.00 911 912 5.00 299.00 -28.00 912 913 7.00 271.00 6.00 913 914 2.80 237.00 15.00 914 915 14.00 276.00 1.00 915 916 3.80 275.00 -19.00 916 917 7.30 265.00 -5.00 917 918 6.00 271.00 -6.00 914 919 6.30 103.00 8.00 915 920 9.50 339.00 -1.00 *END entrance1 *BEGIN entrance2 0 1 3.72 104.45 0.00 1 2 3.60 50.95 0.00 2 3 9.48 83.45 9.00 3 4 10.21 83.45 -24.00 4 5 8.73 141.95 3.00 5 6 7.96 88.45 -21.00 6 7 2.95 50.95 -20.00 7 8 4.31 96.95 -18.00 8 9 2.50 112.45 0.00 9 10 6.59 43.95 15.00 10 11 2.80 164.95 -8.00 11 12 2.89 96.45 3.00 12 13 8.20 50.45 2.00 13 14 4.40 91.95 -5.00 14 15 12.06 81.45 2.00 15 16 5.84 202.95 3.00 16 17 3.06 248.45 3.00 17 18 3.02 193.45 11.00 18 19 12.86 78.95 13.00 *END entrance2 *BEGIN ent2_UpnOver *EQUATE BitOff.5 flyover.22 *BEGIN flyover *CALIBRATE declination 2.08 1 0 5.94 27.00 -2.00 2 1 1.37 23.00 -42.00 3 2 1.70 5.00 3.00 4 3 15.06 92.00 -1.50 5 3 8.94 31.00 0.00 6 5 9.45 64.50 -1.00 7 6 3.46 28.00 -12.00 8 7 4.22 63.00 5.00 9 8 5.50 52.00 2.00 10 9 1.50 354.00 0.00 11 10 4.50 76.00 1.00 12 0 5.54 63.50 0.50 13 12 5.55 89.50 4.00 14 13 5.90 232.00 -43.00 6 21 3.84 0.00 90.00 21 22 5.89 219.00 40.00 22 23 2.96 211.00 -2.00 23 24 7.14 249.00 -3.00 24 25 4.40 225.00 -28.00 25 26 4.71 0.00 -90.00 *END flyover *BEGIN BitOff *CALIBRATE declination 1.92 0 1 3.19 218.00 -3.00 1 2 1.63 268.00 -16.00 2 3 6.00 216.00 1.00 3 4 5.95 261.00 -9.00 4 5 6.69 224.00 6.00 *END BitOff *END ent2_UpnOver *BEGIN WildlifeSeries 922 945 4.80 87.00 -7.00 945 946 3.80 78.00 -30.00 946 947 5.10 0.00 -90.00 947 948 3.00 178.00 1.00 948 949 6.90 237.50 -1.00 949 950 6.90 218.00 -1.00 950 951 3.80 243.00 2.00 951 952 5.00 246.50 -3.00 952 953 2.80 247.00 -7.00 953 954 5.10 257.00 2.00 951 955 1.90 185.00 -7.00 955 956 6.40 97.00 2.00 947 957 6.73 359.00 6.00 957 958 3.70 60.00 4.00 958 959 14.00 31.00 2.00 959 960 4.60 262.00 2.00 960 961 5.74 27.00 3.00 961 962 9.95 70.00 1.00 962 963 3.95 49.00 -2.00 963 964 3.00 61.00 -9.00 964 965 3.00 29.00 0.00 961 966 18.20 37.00 2.00 966 967 4.30 77.00 10.00 967 968 2.10 40.00 3.00 968 969 2.40 83.00 0.00 969 970 5.00 31.00 1.00 970 971 4.00 72.00 2.00 966 972 2.80 35.50 7.00 972 973 4.70 53.00 5.00 966 974 18.55 265.50 2.00 974 975 9.56 37.00 3.00 975 976 6.15 64.00 0.00 974 977 8.11 247.00 3.00 977 978 2.24 270.00 -4.00 978 979 5.55 260.00 1.00 978 980 3.36 199.00 6.00 980 981 8.70 253.00 2.00 981 982 4.78 204.00 -1.00 982 983 6.40 210.00 0.00 *END WildlifeSeries *BEGIN AroundEntranceSeries 19 921 5.80 98.00 0.00 921 922 6.50 36.00 -10.00 922 923 19.80 37.00 0.00 923 924 10.50 255.00 -1.00 924 925 6.10 233.50 -1.00 925 926 7.70 274.00 1.00 926 927 19.60 257.00 0.00 927 928 3.60 278.00 -4.00 928 929 3.80 0.00 90.00 929 930 8.10 225.00 -3.00 930 931 7.90 258.00 -1.00 931 932 4.70 356.00 -6.00 932 933 6.70 274.00 -12.00 933 934 11.00 270.00 -10.00 934 935 6.20 255.00 -14.00 935 936 6.30 71.50 1.00 936 937 4.70 28.50 -6.00 937 938 10.00 255.00 4.00 937 939 4.90 53.00 10.00 939 940 18.90 77.00 -1.00 940 941 8.00 187.00 0.00 940 942 21.40 72.00 -8.00 942 943 3.50 202.00 -22.00 943 944 4.80 87.00 -4.00 931 1122 1.00 0.00 -90.00 1122 1123 4.40 234.30 1.00 1123 1124 8.50 266.30 0.00 1124 1125 5.60 251.30 1.00 1125 1126 0.50 0.00 -90.00 1126 1127 4.70 249.30 -3.00 1127 1128 13.80 206.30 -2.00 1128 1129 13.50 259.30 -2.00 1129 1130 7.25 247.30 0.00 1130 1131 3.50 212.30 -6.00 1131 1132 5.70 242.30 -16.00 1132 1133 6.20 80.30 -29.00 1133 1134 6.80 47.30 -16.00 *END AroundEntranceSeries *BEGIN ZoologicalGardens 865 866 12.30 39.55 7.00 866 867 10.40 171.55 -2.00 867 868 5.40 199.55 2.00 868 869 10.60 138.55 5.00 869 870 8.30 161.55 3.00 870 871 12.00 151.55 1.00 871 872 13.40 191.55 4.00 872 873 7.30 141.55 5.00 873 874 10.10 173.55 1.00 874 875 12.70 138.55 3.00 875 876 5.30 203.55 5.00 876 877 4.80 243.55 1.00 877 878 10.80 215.55 2.00 878 879 5.00 338.55 3.00 875 880 22.20 36.55 3.00 880 881 1.90 116.55 6.00 881 882 11.20 31.55 0.00 882 883 7.10 141.55 -2.00 883 884 7.90 231.55 8.00 884 885 3.40 231.55 -20.00 885 886 4.97 227.78 -9.00 884 887 6.90 176.55 -13.00 887 888 16.00 207.55 4.00 888 889 8.00 166.55 0.00 889 890 6.10 221.55 4.00 890 891 2.40 259.55 7.00 891 892 5.50 216.55 4.00 892 893 2.70 176.55 8.00 893 894 1.70 164.55 4.00 894 895 3.20 194.55 0.00 895 896 2.60 234.55 -1.00 896 897 4.00 155.55 3.00 897 898 3.10 196.55 6.00 898 899 2.50 164.55 3.00 899 900 1.90 237.55 10.00 900 901 2.20 204.55 -1.00 901 902 5.20 216.55 2.00 *END ZoologicalGardens *BEGIN Quadraphenia 996 997 26.10 268.15 1.00 997 998 24.20 268.15 0.00 998 999 21.70 271.15 2.00 999 1000 9.20 270.15 1.00 *END Quadraphenia *BEGIN Quad2008-2 *CALIBRATE declination 2.15 *CALIBRATE clino -1.5 0 1 8.85 275.00 -7.00 1 2 5.83 261.00 -28.00 0 3 46.13 73.00 -2.00 3 4 15.88 91.00 -4.00 4 5 31.46 212.00 -5.00 5 6 7.90 185.00 3.00 *END Quad2008-2 *BEGIN Quad2008-3 *CALIBRATE declination 2.15 *CALIBRATE clino -1.5 0 1 9.90 355.00 8.00 1 2 12.13 265.00 5.00 0 3 11.66 281.00 13.00 3 4 9.29 249.00 -4.00 0 5 40.81 84.00 -3.00 5 6 42.55 85.00 -3.00 6 7 13.67 94.00 10.00 7 8 31.03 86.00 -3.00 8 9 8.01 200.00 8.00 9 10 7.51 214.00 1.00 10 11 6.35 211.00 1.00 10 12 10.67 95.00 -5.00 12 13 2.67 113.00 3.00 13 14 9.77 85.00 -3.00 14 15 4.93 87.00 -2.00 16 15 7.20 20.00 -6.00 15 17 5.53 50.00 -9.00 17 18 13.84 100.00 0.00 18 19 14.54 31.00 -2.00 8 20 20.54 91.00 -3.00 20 21 18.22 89.00 1.00 21 19 7.05 101.00 -1.00 19 22 24.34 98.00 -4.00 22 23 6.39 58.00 -22.00 23 24 3.98 10.00 -13.00 24 25 6.00 42.00 0.00 25 26 7.12 66.00 2.00 26 27 15.70 41.00 5.00 27 28 8.75 57.00 -2.00 28 29 12.51 18.00 3.00 29 30 8.35 18.00 0.00 30 31 11.97 42.00 -2.00 31 32 35.80 50.00 1.00 32 33 23.51 39.00 -1.00 33 34 30.21 41.00 -1.00 34 35 7.35 53.00 -1.00 35 36 10.54 31.00 0.00 36 37 19.98 32.00 0.00 37 38 5.62 247.00 -1.00 38 39 2.89 1.00 5.00 39 40 4.23 39.00 -15.00 40 41 4.35 5.00 12.00 41 42 33.79 32.00 -2.00 42 43 5.07 256.00 -3.00 43 44 17.26 31.00 2.00 44 45 14.64 40.00 -3.00 45 46 4.52 37.00 24.00 *END Quad2008-3 *BEGIN QuadrapheniaResurvey2010 *CALIBRATE declination 1.92 *EQUATE MainJunctionsArea.10 QuadrapheniaToSqueezeResurvey.0 *EQUATE Quadcrawl.4 MainJunctionsArea.14 *BEGIN MainJunctionsArea *CALIBRATE declination 1.92 1 0 4.99 53.00 -17.00 1 2 13.84 94.00 -19.00 2 3 11.74 79.00 -1.00 3 4 8.26 222.00 -8.00 4 5 20.25 250.00 1.00 5 6 5.57 242.00 3.00 6 7 38.67 267.00 0.00 7 8 7.01 256.00 0.00 8 9 4.90 0.00 -90.00 4 10 30.32 91.00 -2.00 10 11 12.26 306.00 9.00 11 12 14.65 262.00 -1.00 12 3 1.87 349.00 -9.00 10 14 18.99 214.00 -1.00 14 15 37.25 269.00 -2.00 15 16 29.79 256.00 -3.00 16 17 23.16 263.00 2.00 16 18 21.02 111.00 1.00 18 19 31.12 82.00 -3.00 19 20 8.88 97.00 -5.00 20 21 13.32 178.00 -2.00 *END MainJunctionsArea *BEGIN QuadrapheniaToSqueezeResurvey *CALIBRATE declination 1.92 0 1 27.93 80.00 1.00 1 2 4.90 291.00 -9.00 2 3 6.57 269.00 -4.00 1 4 9.65 86.00 -2.00 4 5 4.43 60.00 -5.00 5 6 7.69 94.00 1.00 4 7 5.83 3.00 0.00 7 8 13.07 62.00 -3.00 8 9 12.23 36.00 4.00 9 10 6.21 31.00 2.00 *END QuadrapheniaToSqueezeResurvey *BEGIN Quadcrawl *CALIBRATE declination 1.92 1 0 16.80 86.00 0.00 1 2 12.00 268.00 -1.00 2 3 1.00 0.00 90.00 3 4 2.40 20.00 -10.00 *END Quadcrawl *BEGIN FlyoverCrawl *CALIBRATE declination 1.92 1 0 5.75 43.00 -9.00 2 1 4.90 85.00 5.00 3 2 6.05 84.00 6.00 4 3 5.37 30.00 0.00 *END FlyoverCrawl *END QuadrapheniaResurvey2010 *BEGIN Roofers_Passage_Area *CALIBRATE declination 2.15 *CALIBRATE clino -1.5 0 1 13.24 269.00 3.00 1 2 9.30 261.00 -5.00 3 2 6.15 10.00 -21.00 4 2 29.26 84.00 -5.00 6 5 6.07 84.00 -45.00 7 6 9.84 86.00 -9.00 8 7 6.98 82.00 -3.00 9 8 6.01 83.00 10.00 10 9 5.80 88.00 11.00 10 11 10.60 198.00 -1.00 10 3 11.79 41.00 -4.00 11a 2 6.48 117.00 -68.00 12 11a 5.81 97.00 -9.00 13 12 9.58 75.00 -4.00 14 13 8.58 93.00 -1.00 15 14 13.27 78.00 -3.00 16 15 11.20 81.00 -2.00 17 16 5.67 63.00 -2.00 18 17 7.68 32.00 -2.00 19 18 9.61 80.00 -4.00 20 19 8.75 75.00 -3.00 21 20 3.57 88.00 3.00 22 21 13.59 81.00 -1.00 23 22 7.37 83.00 -8.00 24 23 11.25 84.00 -2.00 25 24 7.41 71.00 -4.00 26 25 2.31 52.00 -5.00 27 26 10.90 78.00 -3.00 28 27 7.97 80.00 -5.00 29 28 19.71 75.00 -3.00 30 29 11.68 73.00 -3.00 31 30 13.79 78.00 -5.00 32 31 4.75 71.00 -2.00 33 32 10.12 89.00 -5.00 34 33 8.67 89.00 -3.00 35 34 1.95 175.00 -9.00 36 35 6.15 91.00 -9.00 37 36 5.12 76.00 -14.00 38 37 2.21 108.00 23.00 39 38 4.88 86.00 -7.00 *END Roofers_Passage_Area *BEGIN TilersWayResurvey *CALIBRATE declination 1.92 0 1 5.79 344.00 -8.00 1 2 12.25 267.00 -1.00 2 3 17.64 268.00 0.00 3 4 13.17 264.00 -1.00 *END TilersWayResurvey *BEGIN TilersWay *CALIBRATE declination 8.0 1a 2a 22.90 250.00 0.00 2a 3a 10.20 21.00 0.00 2a 4a 7.70 280.00 0.00 4a 5a 7.30 159.00 0.00 5a 6a 25.00 280.00 0.00 1 2a 11.60 25.00 0.00 1 2 13.90 115.00 0.00 2 3 13.70 86.00 0.00 3 4 14.10 90.00 0.00 3 5 10.90 241.00 0.00 5 6 9.00 238.00 0.00 6 7 8.30 252.00 0.00 7 8 5.00 227.00 0.00 8 9 13.50 225.00 0.00 9 10 15.00 260.00 0.00 9 11 5.20 122.00 0.00 11 12 15.70 84.00 0.00 12 13 8.10 74.00 0.00 13 14 8.20 95.00 0.00 14 15 2.00 155.00 0.00 15 16 4.10 248.00 0.00 16 17 4.00 128.00 0.00 17 18 9.00 93.00 0.00 18 19 7.00 86.00 0.00 19 20 8.50 96.00 0.00 20 21 4.20 90.00 0.00 21 22 4.30 93.00 0.00 22 23 5.70 62.00 0.00 23 24 5.00 93.00 0.00 24 25 22.50 91.00 0.00 25 26 5.10 60.00 0.00 26 27 4.80 50.00 0.00 27 28 7.20 90.00 0.00 28 29 10.40 94.00 0.00 29 30 2.30 15.00 0.00 30 32 30.00 89.00 0.00 32 33 10.30 92.00 0.00 33 34 12.70 91.00 0.00 34 35 15.00 85.00 0.00 35 36 8.50 80.00 0.00 36 37 6.30 180.00 0.00 37 38 2.50 60.00 0.00 38 39 30.00 88.00 0.00 39 40 17.10 92.00 0.00 *END TilersWay *BEGIN 2691_GiantPanda *CALIBRATE declination 2.15 0 1 4.23 91.50 -78.00 1 2 1.57 122.00 -47.00 2 3 1.85 215.00 -20.00 3 4 0.70 320.00 -33.00 4 5 13.75 0.00 -90.00 5 6 5.90 0.00 -90.00 6 7 6.70 100.00 -57.00 7 8 7.28 16.00 -23.00 8 9 5.07 280.00 -78.00 9 10 2.47 83.00 -21.00 10 11 5.14 224.00 -38.00 11 12 2.50 200.00 -31.00 12 13 3.10 65.00 -71.00 13 14 3.12 230.00 -34.00 14 15 1.58 101.00 9.00 15 16 4.20 220.00 -17.00 16 17 1.99 235.00 -43.00 17 18 2.23 132.00 -40.00 18 19 2.30 9.00 -33.00 19 20 3.13 70.00 0.00 20 21 3.05 38.00 -18.00 21 22 2.25 152.00 -85.00 22 23 4.17 25.00 2.00 23 24 2.01 106.00 -47.00 24 25 2.93 32.00 -5.00 25 26 4.75 129.00 0.00 26 27 5.74 218.00 -1.00 27 28 2.30 117.00 -14.00 28 29 9.15 212.00 -4.00 29 30 2.48 217.00 -18.00 30 31 2.42 216.00 -45.00 31 32 5.07 95.00 1.00 32 33 5.80 65.00 0.00 *END 2691_GiantPanda *BEGIN WindyInlet 1069 1070 6.30 205.30 31.00 1070 1071 2.78 236.30 63.00 1071 1072 4.38 193.30 59.00 1072 1073 1.83 162.30 -2.00 1073 1074 1.68 117.30 -22.00 1074 1075 5.48 202.30 5.00 1075 1076 2.32 217.30 3.00 1076 1077 2.64 125.30 41.00 1077 1078 4.14 111.30 29.00 1078 1079 4.76 35.30 31.00 1079 1080 2.20 155.30 37.00 1080 1081 2.83 242.30 8.00 1081 1082 3.06 146.30 34.00 1082 1083 4.52 45.30 13.00 1070 1084 9.70 232.30 -46.00 1084 1085 5.55 217.30 24.00 1085 1086 3.95 43.30 10.00 1085 1087 3.05 216.30 19.00 1087 1088 2.75 126.30 29.00 1088 1089 5.05 38.30 8.00 1089 1090 3.01 90.30 4.00 1090 1091 4.15 86.30 21.00 1091 1092 4.65 39.30 30.00 1092 1093 4.90 0.00 90.00 *END WindyInlet *BEGIN Stomps *EQUATE Pt1.46 FarStompsSump.18 *BEGIN Pt1 *CALIBRATE declination 1.92 *EQUATE 28 32 1 1a 15.03 226.71 -13.08 1 1b 6.82 210.56 28.68 1 2 9.08 189.31 -7.43 2 3 18.55 116.98 -0.10 3 4 3.94 109.34 5.39 4 5 14.13 96.76 -0.61 5 5a 4.92 187.59 1.55 5 6 14.76 107.42 10.11 6 7 9.56 79.43 -2.48 7 8 12.97 128.55 -9.80 8 8a 4.13 271.01 46.40 8 8b 13.39 235.87 7.15 8 9 5.84 89.36 1.83 9 10 11.81 117.66 18.69 10 10a 8.08 203.51 -24.97 10 11 17.53 168.45 -7.51 11 12 16.73 148.86 -11.30 12 13 15.14 118.78 -5.89 13 13a 3.61 348.94 1.85 13 13b 6.12 304.49 0.88 13 13c 5.07 331.32 -2.18 13 14 12.56 158.08 3.43 14 15 20.99 142.22 1.02 15 16 14.28 159.69 1.84 16 16a 3.99 50.15 5.15 16 17 10.37 162.98 2.49 17 17a 8.03 85.24 5.30 17 18 7.85 126.63 -11.48 18 18a 9.67 145.31 -10.88 18 18b 8.33 104.33 -11.12 18 18c 10.53 166.40 -10.22 18 19 23.70 157.35 -4.37 19 19a 9.34 73.19 10.78 19 20 13.16 101.93 26.51 20 20a 12.67 132.37 13.97 20 20b 3.99 319.43 -1.32 20 20c 19.28 269.18 2.35 20 20d 21.11 255.42 1.62 20 21 14.46 145.32 8.27 21 21a 21.27 136.38 4.37 21 21b 18.97 113.75 8.27 21 21c 9.40 19.51 12.23 21 21d 3.68 250.66 -18.99 21 21e 12.39 206.43 -26.43 21 21f 16.36 186.99 -21.04 21 21g 17.98 167.17 -10.43 21 22 11.00 140.41 13.34 22 22a 18.00 237.95 -37.04 22 22b 12.64 198.26 -39.64 22 22c 15.78 148.75 -25.36 22 22d 11.77 93.31 -5.76 22 22e 13.48 67.73 -1.47 22 23 19.39 47.07 -3.39 23 23a 10.48 171.25 -0.49 23 23b 7.11 147.60 -3.96 23 24 12.26 182.57 0.88 24 25 9.37 136.99 -31.89 25 26 16.12 66.28 8.82 26 27 20.53 208.25 -0.25 27 28 23.08 217.47 -11.66 28 28a 28.39 23.01 54.31 28 28b 13.96 7.70 59.65 28 28c 2.88 128.79 -0.08 28 28d 12.78 4.70 10.78 28 29 9.44 337.56 -7.14 29 30 11.12 26.64 -1.45 30 30a 4.37 251.83 1.05 30 30b 8.10 252.77 -8.28 30 30c 13.30 274.36 -5.31 30 30d 3.36 125.62 9.29 30 30e 11.33 60.91 17.00 30 31 7.38 59.13 18.23 31 25 7.67 9.40 10.35 32 33 26.57 219.45 -1.21 33 33a 6.56 290.15 -24.69 33 34 30.49 226.77 -3.52 34 34a 4.04 262.63 -3.89 34 35 24.02 125.74 -0.07 35 36 4.42 104.65 6.02 36 36a 9.41 213.65 -13.20 36 37 10.68 164.02 12.16 37 37a 8.28 10.38 -30.58 37 38 12.55 153.02 -2.14 38 39 26.21 114.84 -7.27 39 39a 9.50 182.35 -22.41 39 40 26.69 165.92 -1.74 40 41 29.35 157.64 4.26 41 41a 22.88 13.29 8.03 41 41b 12.85 343.23 -24.55 41 42 25.13 123.62 -2.35 42 42a 7.43 221.79 -41.05 42 42b 13.88 308.37 1.63 42 43 24.15 168.91 -8.72 43 44 13.32 168.35 10.48 44 44a 7.37 297.13 -41.78 44 44b 6.22 274.92 -17.88 44 45 28.90 189.31 16.45 45 46 22.48 194.04 5.14 46 46a 14.53 63.91 5.51 *END Pt1 *BEGIN FarStompsSump *CALIBRATE declination 1.92 1 1a 3.38 195.09 -0.91 1 2 4.29 37.46 1.62 2 3 8.00 16.28 1.33 3 4 12.11 36.72 -0.45 4 5 3.62 28.42 8.25 5 5a 0.20 34.15 -2.84 5 6 9.15 34.23 -3.00 6 7 14.44 74.42 1.26 7 7a 5.03 319.95 -1.50 7 8 19.06 43.23 0.52 8 9 17.83 40.55 -1.38 9 9a 4.23 296.54 2.86 9 10 25.44 10.76 1.09 10 11 23.23 38.12 3.43 11 12 16.46 27.78 -0.09 12 13 18.33 316.28 0.70 13 13a 6.75 183.91 -0.23 13 13b 15.99 303.93 0.95 13 13c 10.60 19.61 0.84 13 13d 16.40 114.03 -2.05 13 13e 12.59 6.19 -0.43 13 14 27.32 346.05 -1.43 14 15 25.59 16.44 2.07 15 16 15.21 330.02 2.13 16 17 23.03 30.16 28.64 17 17a 6.28 60.24 45.71 17 17b 16.79 252.67 -28.56 17 17c 16.01 280.45 -5.74 17 17d 16.08 299.27 1.22 17 17e 16.41 210.75 -13.67 17 18 13.99 323.38 15.09 18 18a 6.60 267.65 -26.33 45 18 22.48 194.04 5.14 *END FarStompsSump *END Stomps *BEGIN HiddenAven *CALIBRATE declination 1.92 1 2 8.89 64.18 14.19 2 3 11.46 65.80 10.45 3 4 6.04 38.25 9.74 4 4a 5.15 38.20 -74.15 4 5 13.41 48.10 27.79 5 5a 3.40 246.77 -8.87 5 5b 7.33 25.48 19.10 5 5c 2.36 189.79 3.47 5 5d 2.08 64.52 16.76 5 6 12.97 40.50 35.17 5 7 2.52 110.73 13.25 7 8 10.57 170.95 -46.24 8 8a 18.62 68.34 70.02 8 8b 19.53 79.89 72.38 8 8c 6.78 107.91 28.11 8 8d 5.79 192.19 34.26 8 8e 6.54 136.86 31.90 8 8f 6.62 59.04 30.78 8 8g 6.04 25.22 31.64 8 8h 5.92 233.60 24.12 8 8i 6.15 314.48 7.87 8 8j 5.81 4.33 22.87 8 9 9.77 193.39 52.29 9 9a 18.19 41.13 48.52 9 9b 0.63 331.79 -6.98 *END HiddenAven *BEGIN HiddenAven_Old *CALIBRATE declination 6.0 1 2 4.80 65.00 2.00 2 3 4.70 47.00 32.00 3 4 3.70 147.00 32.00 4 5 7.60 131.00 15.00 4 6 5.30 344.00 35.00 6 7 4.00 274.00 9.00 7 8 12.20 43.00 24.00 7 9 15.60 229.00 -16.00 9 10 20.40 249.00 -12.00 *END HiddenAven_Old *BEGIN FarStompsInlet 189 903 7.00 241.55 0.00 903 904 3.00 241.55 1.00 904 905 4.90 228.55 1.00 905 906 4.90 256.55 1.00 906 907 3.70 173.55 1.00 907 908 8.00 223.55 1.00 908 909 3.80 218.55 1.00 909 910 4.00 256.55 1.00 *END FarStompsInlet *BEGIN Crossover *CALIBRATE declination 1.67 *EQUATE 1 21 *EQUATE 9 17 *EQUATE 7 22 1 1a 8.54 94.75 2.29 1 2 9.46 229.23 17.20 2 3 7.89 245.18 8.76 3 4 6.86 196.29 -8.35 4 5 3.31 182.53 7.48 5 6 11.24 207.84 1.18 6 7 9.92 200.81 -0.41 7 7a 8.53 53.45 -3.18 7 7b 11.39 63.85 -3.04 7 7c 9.60 343.98 -0.76 7 7d 2.02 265.78 -2.33 7 7e 8.08 75.54 -2.01 7 8 19.09 64.04 -9.29 8 9 6.33 105.55 -5.99 9 10 6.66 143.42 -0.84 10 11 5.25 61.93 13.55 11 12 5.63 52.57 10.17 12 12a 5.92 290.73 8.84 12 12b 5.52 152.51 0.57 12 13 12.43 85.84 -15.55 13 14 8.86 292.85 -10.31 14 15 9.82 262.98 10.47 15 16 6.69 234.25 12.80 16 17 2.10 266.71 -10.84 16 18 6.16 337.99 8.83 18 19 5.15 318.16 -20.15 19 19a 3.18 305.08 5.14 19 19b 2.46 69.61 -2.25 19 20 11.33 10.19 8.20 20 21 11.50 15.41 -5.38 22 23 14.22 210.85 -1.01 23 23a 5.48 45.09 5.14 23 24 7.83 247.96 -0.10 24 25 7.76 216.00 -0.62 25 26 8.91 226.41 -2.06 26 27 8.22 247.58 -2.87 27 27a 3.61 124.68 85.26 27 28 6.45 219.35 0.41 28 28a 2.30 269.73 81.50 28 28b 4.94 243.19 -3.40 28 29 8.45 239.03 -7.94 29 30 7.09 245.24 3.90 30 31 5.50 217.93 4.15 31 32 6.34 257.41 -4.45 32 33 6.41 238.07 3.20 33 34 6.34 243.56 2.10 34 34a 2.35 39.45 12.08 34 34b 4.63 19.62 33.12 34 35 8.92 222.29 9.19 35 35a 1.20 148.09 48.04 35 36 6.02 243.64 -0.34 36 36a 2.22 260.10 70.49 36 36b 2.76 137.39 17.39 36 37 3.62 288.42 29.81 37 37a 1.76 223.24 80.12 37 37b 2.01 159.52 65.36 37 37c 2.74 147.77 54.81 37 37d 2.18 307.25 42.85 37 37e 1.95 146.75 8.94 37 37f 3.18 144.38 -1.74 37 37g 5.46 141.37 -10.84 37 37h 4.66 138.10 -21.17 37 37i 7.04 191.90 -6.75 37 37j 6.60 231.07 8.56 37 37k 10.02 264.80 -10.54 37 37l 2.28 309.28 14.20 37 37m 2.72 314.58 -2.32 37 37n 7.91 316.49 -9.28 37 37o 5.64 314.49 -24.44 37 37p 5.42 115.37 -12.55 37 37q 2.55 82.74 -0.18 37 38 7.10 308.98 -16.38 38 38a 8.01 215.94 4.87 38 38b 5.85 227.41 -7.37 38 38c 4.36 241.18 -9.60 38 39 7.04 237.67 -10.34 39 40 4.49 277.38 1.73 40 41 5.24 254.57 14.08 41 41a 4.71 60.68 7.25 41 41b 3.24 96.08 5.78 41 41c 3.92 38.10 8.95 41 42 5.74 226.02 -16.27 42 43 7.15 222.49 -0.74 43 44 8.77 239.95 7.37 44 44a 2.44 140.15 -8.87 44 45 19.97 239.86 -2.80 45 46 8.18 252.31 -9.96 46 46a 3.99 38.14 15.55 46 46b 4.41 283.53 -16.66 *END Crossover *BEGIN 3rdRiver *CALIBRATE declination 1.67 46 47 8.34 243.65 -8.93 47 48 14.34 214.18 -1.22 48 49 8.14 192.29 -1.17 49 49a 4.16 246.97 80.21 49 50 7.57 236.48 -4.85 50 51 9.88 213.52 2.92 51 51a 6.98 263.25 3.66 51 52 9.69 241.51 -3.32 52 53 13.51 203.40 8.83 53 54 11.54 235.57 -8.91 54 55 12.97 227.18 -4.21 55 56 9.29 254.39 -3.17 56 57 1.88 260.95 12.77 57 58 6.50 159.76 17.53 58 58a 2.12 242.45 4.84 58 59 15.60 195.27 -2.72 59 59a 2.59 307.10 -2.62 59 60 10.10 237.41 -5.30 60 60a 5.30 34.24 84.93 60 60b 1.38 133.85 11.89 60 61 8.63 236.34 -6.68 61 61a 10.03 108.33 21.04 61 74 5.78 182.73 2.63 74 74a 0.85 69.46 -6.27 74 75 2.79 123.76 -4.11 75 76 12.14 127.77 -0.64 76 77 7.92 179.08 7.96 77 77a 5.04 301.22 -25.13 77 78 13.27 203.07 5.91 78 78a 5.12 294.82 -3.97 78 79 15.54 198.86 -8.94 79 80 23.41 209.27 -2.02 80 80a 8.63 46.04 -0.26 80 80c 6.32 210.22 10.97 80 80b 12.20 230.96 21.80 80 81 12.84 186.86 3.46 81 81a 3.58 283.08 52.08 81 81b 5.31 256.05 51.18 81 82 16.26 203.94 -0.72 82 82a 6.20 39.96 7.25 82 83 11.02 134.20 19.30 83 84 5.76 209.68 27.30 84 84a 0.96 301.31 0.44 84 84b 4.02 122.98 21.07 84 85 3.67 101.78 20.65 85 86 4.30 83.46 60.24 82 87 21.06 89.22 -1.51 87 88 9.03 79.68 -8.10 88 89 4.64 150.10 18.02 89 89a 9.09 253.54 52.84 89 90 9.04 73.62 -3.05 90 91 22.62 68.06 0.52 91 91a 11.42 215.11 -5.60 91 92 3.97 85.86 -3.20 92 92a 4.67 12.10 1.93 92 93 10.29 154.01 -2.61 93 93a 4.74 277.74 56.13 93 94 8.08 186.01 7.65 94 94a 6.36 263.37 13.68 94 95 5.24 43.64 -8.84 94 96 11.88 200.07 6.12 96 96a 6.92 98.48 0.77 96 96b 7.40 199.40 30.29 96 97 19.46 161.70 -3.91 97 97a 5.94 10.99 57.75 97 97b 7.56 292.11 -24.69 97 97c 15.01 253.87 15.86 97 98 22.53 223.00 -1.42 98 98a 7.26 315.26 -22.00 98 99 14.32 244.13 1.16 99 99a 8.20 289.26 47.95 99 99b 7.50 144.60 -27.19 99 100 11.57 241.48 6.51 100 100a 7.03 154.69 -3.73 100 101 24.04 236.35 2.04 101 101a 2.99 322.89 47.81 101 101b 12.11 143.28 -22.11 101 102 21.65 210.22 -6.90 102 102a 5.42 315.99 -42.97 102 103 11.04 236.96 4.86 103 103a 8.03 271.17 -30.51 103 104 7.72 211.54 4.65 104 104a 1.35 112.98 -20.10 104 104b 8.62 285.39 -43.69 *END 3rdRiver *BEGIN ObviousInlet 1 2 2.44 50.05 -9.36 2 3 5.85 309.30 3.00 3 4 5.44 266.83 7.31 4 5 4.08 312.21 -3.48 5 6 8.51 243.91 -0.82 6 7 1.59 237.67 19.93 7 7a 0.68 148.89 7.20 7 8 1.90 330.60 0.92 8 8a 2.48 69.00 4.92 8 9 6.11 217.53 3.80 9 10 2.70 268.50 16.27 10 10a 9.93 41.45 8.43 10 11 4.61 237.72 -8.66 11 12 4.33 255.67 27.80 12 13 6.40 229.53 2.80 13 14 4.69 200.07 -16.32 14 15 8.61 229.67 0.92 15 16 7.58 236.29 -1.32 16 16a 0.44 150.77 78.57 16 17 3.63 279.85 9.95 17 18 2.40 301.98 1.27 18 19 3.68 341.75 5.24 19 20 4.45 320.12 -12.01 20 21 3.70 279.17 6.19 21 22 5.05 252.27 1.85 22 23 5.72 288.25 10.76 23 24 3.41 13.65 -18.95 24 24a 0.77 348.03 2.01 24 24b 1.14 203.63 5.80 *END ObviousInlet *BEGIN StrawInlet *CALIBRATE declination 1.67 61 62 5.45 259.01 14.70 62 63 11.78 227.47 0.60 63 64 24.01 219.97 0.21 64 64a 1.86 329.92 2.18 64 65 4.42 257.69 23.06 65 66 14.47 223.04 0.57 66 67 12.81 245.47 -11.50 67 68 14.97 224.93 -0.62 68 69 18.59 231.13 2.57 69 70 15.15 210.63 3.77 70 71 21.90 240.92 -3.21 71 72 14.18 235.33 1.57 72 73 5.96 226.44 0.29 73 73a 1.92 141.34 -33.25 *END StrawInlet *BEGIN LisasBit *CALIBRATE declination 1.67 1 2 3.38 184.29 -2.95 2 3 5.25 223.17 -0.59 3 4 10.32 226.45 2.36 4 5 4.09 226.69 3.93 5 6 2.93 225.07 -4.37 6 6a 3.14 190.51 -2.92 6 6b 2.05 249.79 14.73 1 7 8.90 149.90 20.14 7 8 6.15 235.21 7.55 8 8a 4.85 113.79 11.68 8 9 1.68 234.62 -71.25 9 10 3.51 228.87 -11.39 10 11 6.28 227.02 -1.26 11 11a 0.20 312.13 2.17 11 12 2.77 164.80 -14.43 12 13 3.46 221.60 -4.35 13 13a 1.47 73.62 -32.57 13 14 2.14 98.34 -10.63 14 15 2.31 192.43 1.81 15 16 3.12 78.49 22.06 16 16a 1.37 296.77 -8.05 16 16b 1.83 160.61 -3.17 16 17 2.49 138.72 -9.70 17 18 2.19 152.73 -2.14 18 19 1.12 199.32 57.19 19 20 3.25 72.41 21.12 20 21 2.54 80.08 68.37 21 21a 6.84 47.47 14.14 21 22 4.71 236.60 37.06 22 23 2.76 247.65 32.10 23 23a 2.14 22.58 -4.62 23 23b 0.32 226.02 20.55 23 24 4.43 190.61 32.70 24 25 3.19 43.63 20.15 25 25a 4.29 278.43 35.70 25 25b 4.91 218.34 36.86 25 25c 2.81 82.84 18.66 25 25d 7.15 157.15 43.46 22 26 3.66 63.90 -42.79 26 26a 1.63 224.30 2.25 26 27 3.34 210.04 -12.88 27 28 4.88 239.93 2.13 *END LisasBit *BEGIN 3rdRiverInlet 197 659 36.13 14.42 0.00 659 660 43.41 321.54 0.00 660 661 45.22 251.96 0.00 661 662 21.93 226.84 0.00 662 663 43.86 245.77 0.00 663 664 22.02 219.47 0.00 664 665 64.00 241.03 0.00 665 666 9.60 234.00 0.00 666 667 7.40 302.00 0.00 667 668 20.10 237.00 0.00 668 669 29.60 230.00 0.00 669 670 29.60 231.50 0.00 670 671 29.60 231.50 0.00 671 672 18.50 232.50 0.00 672 673 29.60 229.00 0.00 673 674 16.10 266.00 0.00 674 675 23.70 231.00 0.00 675 676 26.90 221.00 0.00 676 677 23.80 233.00 0.00 677 678 27.30 222.00 0.00 678 679 13.20 228.00 0.00 679 680 10.90 248.00 0.00 680 681 29.60 220.00 0.00 681 682 20.30 208.50 0.00 682 683 13.20 214.00 0.00 683 684 14.70 238.00 17.00 684 685 3.90 230.00 -28.00 685 686 18.60 230.00 0.00 686 687 26.30 228.00 0.00 687 688 6.10 246.00 0.00 688 689 6.50 23.00 0.00 689 690 2.80 280.00 0.00 690 691 2.80 182.00 0.00 691 692 4.80 261.00 0.00 692 693 6.80 208.00 0.00 693 694 4.70 240.00 0.00 694 695 2.70 285.00 0.00 695 696 3.00 29.00 0.00 696 697 2.70 354.00 0.00 697 698 7.30 25.00 0.00 698 699 2.10 246.00 0.00 699 700 3.40 213.00 0.00 700 701 5.20 245.00 0.00 701 702 2.20 226.00 0.00 702 703 7.60 235.00 0.00 703 704 2.30 333.00 0.00 704 705 14.10 52.00 0.00 705 706 16.10 38.00 0.00 706 707 29.10 37.00 0.00 707 708 6.10 250.00 0.00 708 709 4.40 258.00 0.00 709 710 9.90 43.00 0.00 710 711 23.10 43.00 0.00 711 712 3.80 87.00 -25.00 712 713 4.80 26.00 0.00 713 714 8.80 130.00 0.00 714 715 3.40 27.00 0.00 715 716 7.40 79.00 0.00 716 717 3.40 81.00 0.00 717 718 2.80 9.00 0.00 718 719 2.90 67.00 0.00 719 720 3.30 15.00 0.00 720 721 14.20 35.00 0.00 721 722 6.20 49.00 0.00 722 723 12.10 68.00 0.00 723 724 1.40 358.00 0.00 724 725 3.80 66.00 0.00 725 726 7.80 55.00 0.00 726 727 2.40 352.00 0.00 727 728 3.60 52.00 0.00 728 729 3.60 32.00 0.00 729 730 7.20 38.00 0.00 730 731 3.20 44.50 0.00 731 732 1.20 95.00 0.00 732 733 2.80 61.00 6.00 733 734 9.10 45.00 6.00 734 735 6.50 77.00 8.00 735 736 6.40 58.50 7.00 736 737 9.10 56.50 12.00 737 738 13.30 61.00 10.00 738 739 5.00 15.00 47.00 739 740 4.90 68.00 36.00 740 741 10.40 42.00 40.00 741 742 11.80 24.00 27.00 *END 3rdRiverInlet *BEGIN ArmageddonBypass *CALIBRATE declination 6.89 1 2 9.70 221.00 22.00 2 3 10.00 242.00 -10.00 3 4 6.80 189.00 0.00 4 5 8.00 147.00 11.00 5 6 4.60 171.00 -27.00 6 7 2.70 263.00 -10.00 7 8 12.20 185.00 6.00 8 9 7.50 164.00 -6.00 9 10 8.20 223.00 7.00 10 11 18.40 104.50 -1.00 11 12 1.00 0.00 -90.00 12 13 10.90 71.00 -7.50 13 14 11.40 116.00 -5.00 14 15 4.50 105.00 -3.00 15 16 11.80 175.00 4.00 16 17 5.50 87.00 -1.00 17 18 5.40 150.00 -7.00 18 19 12.70 71.00 -1.00 19 20 22.40 109.00 -1.00 20 21 13.20 120.00 0.00 21 22 8.10 90.00 -2.00 22 23 10.00 97.00 0.00 23 24 12.20 242.00 4.00 24 25 8.30 177.00 -4.00 25 26 7.70 224.00 2.00 26 27 7.60 173.00 0.00 27 28 6.20 102.00 1.00 28 29 5.50 133.00 -1.00 29 30 5.80 72.00 -5.00 30 31 14.00 109.00 -5.00 31 32 9.70 114.00 -2.00 32 33 7.40 143.00 1.00 33 34 13.80 95.00 -5.00 34 35 15.00 65.00 -4.00 35 36 8.20 87.00 0.00 36 37 8.40 61.00 2.00 37 38 8.10 105.00 -4.00 38 39 1.20 15.00 0.00 39 40 21.60 73.00 0.00 40 41 11.30 81.00 0.00 *END ArmageddonBypass *BEGIN Trident 273 317 17.91 70.19 -40.00 317 318 30.70 86.70 4.00 318 319 30.70 107.70 0.00 319 320 30.70 109.70 0.00 320 321 30.70 102.70 8.00 321 322 18.40 115.70 10.00 322 323 30.70 98.70 17.00 323 324 19.20 107.70 9.00 324 325 23.30 87.70 13.00 325 326 11.40 159.70 26.00 326 327 8.20 133.70 30.00 327 328 30.70 108.70 32.00 328 329 5.40 105.70 -2.00 329 330 10.20 102.70 -24.00 330 331 7.10 124.70 -22.00 331 332 22.00 66.70 0.00 332 333 13.20 76.70 -7.00 333 334 18.60 131.70 0.00 334 335 14.10 224.70 2.00 335 336 9.30 197.70 2.00 336 337 13.20 107.70 3.00 337 338 10.00 218.70 3.00 338 339 6.20 101.70 4.00 339 340 6.80 134.70 0.00 340 341 8.20 250.70 20.00 341 342 7.20 247.70 -27.00 342 343 4.50 209.70 0.00 343 344 8.70 224.70 16.00 344 345 3.50 97.70 0.00 345 346 2.80 193.70 3.00 346 347 3.50 198.70 -42.00 347 348 5.60 224.70 5.00 348 349 8.40 255.70 0.00 349 350 12.50 254.70 0.00 350 351 5.90 275.70 -4.00 351 352 9.50 268.70 0.00 352 353 6.90 250.70 -2.00 353 354 12.00 251.70 -5.00 354 355 16.80 261.70 -6.00 355 356 15.30 249.70 2.00 356 357 15.20 243.70 -4.00 357 358 15.70 193.70 0.00 358 359 16.70 198.70 1.00 359 360 18.00 148.70 -2.00 360 361 10.90 111.70 2.00 361 362 3.60 158.70 -2.00 362 363 11.40 216.70 -2.00 363 364 6.40 148.70 -2.00 364 365 18.00 230.70 22.00 365 366 17.90 227.70 20.00 366 367 11.50 236.70 -30.00 367 368 5.70 220.70 -2.00 368 369 17.20 238.70 -2.00 369 370 17.20 232.70 0.00 370 371 3.70 0.00 90.00 371 372 14.90 227.70 -9.00 372 373 15.80 221.70 -3.00 373 374 15.40 229.70 0.00 374 375 4.60 253.70 0.00 375 376 14.70 238.70 0.00 376 377 14.30 248.70 0.00 377 378 16.00 235.70 0.00 378 379 9.60 279.70 0.00 379 380 15.40 266.70 0.00 380 381 20.60 237.70 2.00 381 382 7.20 131.70 -4.00 382 383 30.60 212.70 5.00 383 384 22.20 226.70 -3.00 384 385 13.90 211.70 0.00 385 386 13.50 242.70 2.00 386 387 17.00 230.70 0.00 387 388 20.70 213.70 0.00 388 389 7.50 203.70 0.00 389 390 7.00 0.00 -90.00 390 391 10.00 203.70 0.00 357 392 4.90 213.70 0.00 392 393 11.30 326.70 25.00 393 394 12.50 35.70 22.00 394 395 3.20 22.70 30.00 395 396 6.10 273.70 -2.00 396 397 12.00 255.70 8.00 397 398 4.80 242.70 11.00 398 399 3.20 265.70 -28.00 399 400 6.90 260.70 6.00 400 401 5.30 256.70 -8.00 401 402 2.00 315.70 0.00 402 403 10.20 275.70 6.00 403 404 7.30 217.70 -2.00 404 405 6.10 269.70 8.00 405 406 4.50 0.00 90.00 406 407 14.90 255.70 4.00 407 408 15.90 248.70 -4.00 408 409 30.70 257.70 -7.00 409 410 26.50 230.70 2.00 410 411 15.50 109.71 3.00 411 412 12.90 52.70 36.00 412 413 10.50 120.70 3.00 413 414 9.30 157.70 -8.00 414 415 11.50 155.70 -15.00 415 416 17.30 90.70 -1.00 416 417 24.30 146.70 2.00 417 418 12.70 244.70 30.00 418 419 3.80 242.70 0.00 419 420 14.60 132.70 0.00 420 421 23.00 66.70 1.00 421 422 13.10 130.70 -1.00 422 423 11.60 90.70 -4.00 423 424 27.00 129.70 0.00 424 425 7.10 137.70 -2.00 425 426 16.60 58.70 0.00 426 427 11.10 78.70 3.00 427 428 19.50 54.70 -4.00 428 429 19.70 165.70 -2.00 429 430 19.70 117.70 0.00 430 431 23.00 148.70 2.00 431 432 19.70 152.70 0.00 432 433 14.60 57.70 -3.00 433 434 27.00 155.70 -2.00 434 435 12.10 219.70 4.00 435 436 27.00 272.70 0.00 436 437 9.50 261.70 0.00 437 438 22.10 179.70 2.00 438 439 27.00 211.70 0.00 439 440 24.30 234.70 -1.00 440 441 9.30 239.70 0.00 441 442 7.00 130.70 0.00 442 443 18.10 104.70 3.00 443 444 25.90 130.70 2.00 444 445 10.40 239.70 -1.00 445 446 25.40 183.70 -2.00 446 447 9.00 198.70 5.00 447 448 9.60 194.70 -10.00 448 449 22.50 280.70 0.00 449 450 21.20 275.70 2.00 450 451 5.00 247.70 -38.00 451 452 10.60 267.70 -4.00 452 453 10.10 249.70 8.00 453 454 16.50 272.70 0.00 454 455 10.80 254.70 15.00 455 456 11.80 244.70 4.00 456 457 6.50 286.70 18.00 410 458 10.10 217.67 7.00 458 459 8.00 234.70 9.00 459 460 8.10 199.70 -2.00 460 461 9.10 219.70 0.00 461 462 6.90 235.70 -2.00 462 463 4.10 297.70 0.00 463 464 18.10 237.70 -6.00 464 465 3.30 229.70 0.00 465 466 16.70 231.70 0.00 466 467 12.50 205.70 0.00 467 468 8.90 209.70 0.00 468 469 30.00 224.70 1.00 469 470 19.40 209.70 0.00 470 471 3.40 196.70 -2.00 471 472 6.20 138.70 -6.00 472 473 3.00 188.70 15.00 473 474 6.40 127.70 -17.00 474 475 11.20 235.70 4.00 475 476 5.30 184.70 4.00 476 477 8.60 243.70 -11.00 477 478 8.70 249.70 14.00 478 479 10.10 262.70 30.00 360 480 5.19 43.64 1.00 480 481 11.60 73.70 0.00 481 482 25.10 83.70 0.00 482 483 27.00 73.70 0.00 483 484 4.00 353.70 0.00 484 485 2.00 33.70 0.00 485 486 1.60 323.70 0.00 486 487 16.90 63.70 0.00 487 488 6.80 48.70 0.00 488 489 4.90 3.70 0.00 489 490 9.30 63.70 0.00 490 491 8.30 28.70 0.00 491 492 5.70 58.70 0.00 492 493 4.40 3.70 0.00 493 494 9.90 88.70 0.00 494 495 5.80 73.70 0.00 495 496 8.70 88.70 0.00 496 497 27.20 63.70 0.00 497 498 6.20 63.70 0.00 498 499 7.90 53.70 0.00 499 500 12.90 68.70 0.00 500 501 9.20 23.70 0.00 501 502 8.70 283.70 0.00 502 503 7.60 293.70 0.00 *END Trident *BEGIN QuadrapheniaOxbows 1019 800 8.00 256.65 26.00 800 801 20.00 269.65 1.00 801 802 3.10 281.65 0.00 802 803 17.50 271.65 -1.00 803 804 9.00 235.65 -15.00 803 805 14.00 273.65 -4.00 805 806 14.90 257.65 2.00 802 807 7.30 251.35 -20.00 807 808 5.10 235.35 0.00 808 809 5.30 144.35 0.00 809 810 13.60 287.85 0.00 809 811 9.60 260.35 37.00 811 812 14.00 266.35 2.00 812 813 16.00 29.85 -12.00 *END QuadrapheniaOxbows *BEGIN FlashbulbHallOldBits 745 746 5.20 73.65 0.00 746 747 10.00 40.65 0.00 746 748 5.50 76.65 11.00 748 749 8.30 220.65 -10.00 *END FlashbulbHallOldBits *BEGIN PullupMazeInlet 97 98 20.24 212.90 0.00 98 99 102.04 245.69 0.00 99 100 32.38 261.12 0.00 *END PullupMazeInlet *BEGIN Pigstrotters_sidepassage *CALIBRATE declination 2.08 0 1 12.51 59.00 -4.00 1 2 6.25 36.00 17.00 2 3 8.07 69.00 -13.00 *END Pigstrotters_sidepassage *BEGIN Marathon_to_PigsTrotters_resurvey2009_1 *CALIBRATE declination 2.08 1 0 3.64 311.00 20.00 1 2 7.34 214.00 -4.00 2 3 12.36 186.00 1.00 3 4 13.04 145.00 -3.00 4 5 5.63 77.00 1.00 6 5 9.16 227.00 -29.00 5 7 5.04 111.00 10.00 7 8 6.15 227.00 -8.00 8 8a 19.00 0.00 90.00 8 9 9.90 227.00 3.00 9 10 7.97 200.00 18.00 *END Marathon_to_PigsTrotters_resurvey2009_1 *BEGIN Marathon_to_PigsTrotters_resurvey2009_2 *CALIBRATE declination 2.08 2 1 10.22 256.00 -17.00 3 2 14.72 242.00 0.00 4 3 12.12 226.00 1.00 5 4 9.73 283.00 -1.00 6 5 28.37 34.00 0.00 7 6 18.80 38.00 0.00 8 7 7.27 244.00 9.00 9 8 5.35 8.00 -9.00 10 7 2.84 49.00 10.00 11 10 0.82 99.00 -27.00 12 11 11.97 43.00 2.00 *END Marathon_to_PigsTrotters_resurvey2009_2 *BEGIN PigsTrotters_downstream_resurvey2011 *CALIBRATE declination 1.78 0 1 18.28 120.00 1.00 2 0 12.70 284.00 -3.00 2 3 3.50 90.00 -0.50 3 4 8.80 58.00 2.00 4 5 5.30 40.00 30.00 1 6 7.60 37.00 22.00 1 7 3.18 100.00 20.00 7 8 5.80 70.00 22.00 8 9 4.00 58.00 32.00 0 10 22.80 164.00 -10.00 10 11 7.97 70.00 18.00 10 12 18.40 176.00 -3.00 *EQUATE 12 12a 12 13 11.70 166.00 -3.00 *EQUATE 13 13a 13 14 15.00 80.00 18.00 13 15 13.85 227.00 -1.00 15 16 14.80 240.00 5.00 15 17 8.10 175.00 -3.00 17 18 30.00 140.00 -1.00 18 19 6.40 240.00 0.00 18 20 27.70 48.00 -2.00 17 21 13.42 222.00 -1.00 21 22 4.33 236.00 -3.00 *END PigsTrotters_downstream_resurvey2011 *BEGIN ChambersBackFromArmageddon *CALIBRATE declination 6.0 1 2 26.00 64.00 6.00 2 3 11.50 36.00 -2.00 3 4 1.70 344.00 0.00 4 5 9.00 325.00 60.00 5 6 10.90 305.00 0.00 6 7 10.00 294.00 0.00 *END ChambersBackFromArmageddon *BEGIN SandyJunctionInlet *CALIBRATE declination 6.0 *EQUATE 2 14 1 2 18.00 210.00 -4.00 2 3 13.00 240.00 8.00 3 4 6.00 190.00 0.00 4 5 8.80 134.00 0.00 5 6 12.00 181.00 0.00 6 7 4.00 274.00 -5.00 7 8 17.00 204.00 0.00 8 9 16.00 267.00 0.00 9 10 9.50 235.00 0.00 10 11 7.00 346.00 -17.00 11 12 20.00 63.00 -3.00 12 13 24.00 31.00 -3.00 13 14 21.00 31.00 6.00 *END SandyJunctionInlet *BEGIN ArmageddonToRockyHorror 219a 220 15.50 63.00 0.00 220 221 49.36 83.01 0.00 221 222 16.64 122.73 0.00 222 223 117.00 71.56 0.00 223 225 64.56 106.19 0.00 225 226 159.66 139.82 0.00 226 227 41.00 192.68 0.00 227 228 104.30 122.47 0.00 228 229 100.18 86.56 0.00 229 230 39.81 101.59 0.00 230 231 50.09 93.43 0.00 231 232 19.00 90.00 0.00 232 233 127.94 201.55 0.00 233 234 202.89 211.49 0.00 234 235 15.29 168.69 0.00 235 236 63.82 215.43 0.00 236 237 19.02 273.01 0.00 237 238 25.61 218.66 0.00 238 265 27.65 77.47 0.00 265 266 36.25 114.44 0.00 230 267 21.02 205.34 0.00 267 268 5.00 90.00 0.00 268 269 98.47 214.65 0.00 269 270 56.56 225.00 0.00 270 271 40.00 216.87 0.00 271 272 81.39 222.51 0.00 266 273 35.00 94.28 0.00 *END ArmageddonToRockyHorror *BEGIN NearSeries *CALIBRATE declination 6.0 1 2 11.20 77.00 3.00 2 3 5.00 98.00 -38.00 3 4 5.00 82.00 -14.00 4 5 4.60 112.00 -16.00 5 6 6.20 53.00 14.00 6 7 4.80 189.00 1.00 7 8 7.90 224.00 -15.00 6 9 6.70 100.00 0.00 9 10 6.70 71.00 0.00 10 11 4.00 91.00 0.00 10 12 1.70 127.00 0.00 12 13 12.90 97.00 0.00 13 14 7.50 229.00 0.00 14 15 1.70 239.00 0.00 15 16 2.00 165.00 0.00 16 17 10.50 262.00 0.00 16 18 8.90 85.00 11.00 13 19 12.60 79.00 16.00 *END NearSeries *BEGIN MarathonPassagePt1 79 80 41.23 255.96 0.00 80 81 7.07 225.00 0.00 81 82 11.18 243.43 0.00 82 83 12.72 225.00 0.00 *END MarathonPassagePt1 *BEGIN MarathonPassage *CALIBRATE declination 6.0 31 32 4.00 27.00 0.00 31 33 7.30 274.00 0.00 31 34 7.40 100.00 0.00 34 35 2.70 218.00 0.00 35 36 7.40 96.00 0.00 39 40 3.00 74.00 20.00 40 41 4.60 57.00 0.00 41 42 10.80 58.00 0.00 42 36 4.80 38.00 0.00 36 43 2.70 50.00 0.00 43 44 5.80 102.00 0.00 44 45 5.60 100.00 39.00 45 46 4.00 91.00 -15.00 46 47 7.30 61.00 -12.00 47 48 5.50 86.00 -13.00 48 49 5.90 78.00 10.00 49 50 2.40 139.00 6.00 50 51 4.80 178.00 -34.00 51 52 10.00 68.00 0.00 51 53 9.00 239.00 0.00 53 54 2.70 257.00 -42.00 54 55 4.90 131.00 -40.00 55 56 16.90 229.00 -5.00 56 57 17.70 214.00 0.00 *END MarathonPassage *BEGIN RH_StartOfGorillaWalk 1094 1095 6.61 185.30 51.00 1095 1096 4.20 0.00 90.00 1096 1097 5.00 40.30 36.00 1097 1098 5.80 43.30 60.00 1098 1099 4.60 0.00 90.00 1099 1100 9.58 227.30 5.00 1100 1101 9.97 243.30 6.00 1101 1102 8.86 233.30 -3.00 1102 1103 4.95 283.30 11.00 1103 1104 1.61 205.30 19.00 1104 1105 4.41 283.30 45.00 1105 1106 3.46 278.30 -15.00 1106 1107 9.03 233.30 0.00 1107 1108 5.71 32.30 -6.00 1108 1109 1.34 312.30 22.00 1109 1110 2.59 216.30 -11.00 1110 1111 8.28 245.30 10.00 1111 1112 3.96 215.30 16.00 1112 1113 3.74 265.30 -14.00 1113 1114 5.14 284.30 21.00 1114 1115 3.54 240.30 -1.00 1115 1116 3.26 260.30 -41.00 1116 1117 3.36 258.30 -5.00 1117 1118 7.28 251.30 14.00 1118 1119 6.25 265.30 -1.00 *END RH_StartOfGorillaWalk *BEGIN 2ndRiverInlet *CALIBRATE declination 4.0 1 2 4.30 82.00 0.00 2 3 3.00 80.00 0.00 3 4 4.50 113.00 0.00 4 5 5.40 110.00 35.00 5 6 12.90 118.00 -14.00 6 7 8.90 67.00 0.00 7 8 15.50 20.00 0.00 8 9 25.50 59.00 -3.00 9 10 20.00 99.00 0.00 10 11 6.60 68.00 -4.00 11 12 4.50 126.00 0.00 12 13 7.50 83.00 0.00 13 14 14.40 135.00 0.00 14 15 7.60 85.00 13.00 14 16 3.10 113.00 0.00 16 16b 1.00 0.00 -90.00 16b 17 13.70 100.00 0.00 17 18 12.20 81.00 0.00 18 19 9.50 83.00 0.00 19 20 19.00 112.00 0.00 *END 2ndRiverInlet *BEGIN Aug96Passage 202 835 3.00 31.40 12.00 835 836 11.30 47.40 5.00 836 837 9.50 46.40 -3.00 837 838 4.60 52.40 -1.00 838 839 6.30 62.40 3.00 839 840 6.20 53.40 14.00 840 841 9.00 41.40 -5.00 841 842 5.00 22.40 2.00 842 843 5.30 38.40 1.00 843 844 7.40 41.40 3.00 844 845 0.40 131.40 0.00 845 846 8.50 35.40 2.00 846 847 7.30 1.40 3.00 847 848 4.80 34.40 1.00 848 849 8.90 6.40 8.00 849 850 3.40 309.40 2.00 850 851 5.10 265.40 5.00 851 852 2.90 11.40 8.00 852 853 3.30 320.40 13.00 853 854 4.10 16.40 -8.00 854 855 7.00 42.40 2.00 855 856 2.00 327.40 4.00 856 857 3.60 35.40 2.00 857 858 7.50 13.40 2.00 858 859 3.90 54.40 4.00 859 860 3.90 31.40 1.00 860 861 5.00 305.40 68.00 *END Aug96Passage *BEGIN NewUzueka *CALIBRATE declination 6.89 1 2 12.60 225.00 0.00 2 3 4.80 219.00 0.00 3 4 3.70 247.00 1.00 4 5 8.30 254.00 0.00 5 6 6.30 258.00 19.00 6 7 4.00 196.00 20.00 7 8 8.50 105.00 0.00 8 9 5.00 101.00 0.00 9 10 7.30 67.00 0.00 10 11 9.70 118.00 -10.00 11 12 5.00 125.00 14.00 12 13 4.20 145.00 -5.00 13 14 3.10 113.00 10.00 14 15 10.20 98.00 15.00 15 16 10.10 106.00 2.00 16 17 12.40 57.00 0.00 17 18 7.50 76.00 1.00 18 19 7.90 40.00 -2.00 19 20 4.90 171.00 0.00 20 21 8.30 71.00 -2.00 21 22 5.80 38.50 2.00 22 23 7.00 69.00 -2.00 23 24 9.50 35.00 -1.00 24 25 3.50 71.00 -4.00 25 26 6.00 43.00 -3.00 26 27 4.70 65.00 -5.00 27 28 1.90 132.00 0.00 28 29 8.90 80.00 -3.00 29 30 11.60 221.00 -4.00 30 31 4.50 155.00 0.00 31 32 6.10 57.00 0.00 32 33 3.30 39.00 15.00 33 34 5.20 38.00 -31.00 34 35 11.90 34.00 -1.00 35 36 6.50 74.00 0.00 36 37 13.30 57.00 0.00 37 38 18.50 73.00 0.00 38 39 11.40 51.00 0.00 39 40 10.90 72.00 0.00 40 41 3.70 50.00 30.00 41 42 21.00 54.00 1.50 42 43 20.00 53.00 0.00 43 44 16.50 40.00 0.00 44 45 7.40 54.00 -10.00 45 46 12.60 30.00 -5.00 46 47 11.80 56.00 -4.00 47 48 20.00 80.00 -1.00 48 49 20.00 51.00 0.00 49 50 12.00 108.00 -1.00 50 51 13.60 200.00 8.00 51 51a 20.00 108.00 0.00 50 52 20.00 48.00 0.00 52 53 20.00 47.00 0.00 53 54 20.00 60.00 0.00 54 55 13.00 81.00 0.00 55 56 9.00 81.00 0.00 56 57 14.80 77.00 0.00 57 58 20.00 30.00 0.00 58 59 20.00 40.00 0.00 59 60 20.00 88.00 -2.00 60 61 13.40 125.00 -5.00 61 62 20.00 66.00 0.00 62 63 20.00 72.00 0.00 63 64 20.00 66.00 0.00 64 65 10.00 72.00 0.00 65 66 20.00 55.00 0.00 66 67 20.00 42.00 0.00 67 68 20.00 11.00 -3.00 68 69 20.00 26.00 1.00 69 70 20.00 36.00 2.00 69 69a 15.00 36.00 2.00 69a 69b 16.03 273.00 0.00 70 71 20.00 44.00 -2.00 71 72 8.90 71.00 -1.00 72 73 14.30 108.00 -2.00 73 74 15.30 45.00 -5.00 74 75 13.40 47.00 -8.00 75 76 11.00 36.00 5.00 76 77 3.50 108.00 -3.00 77 78 14.30 36.00 3.00 78 79 19.00 22.00 -5.00 79 80 20.00 30.00 0.00 80 81 20.00 17.00 -2.00 81 82 20.00 31.00 0.00 82 83 17.00 87.00 0.00 83 84 20.00 75.00 25.00 84 85 10.00 110.00 -15.00 85 86 20.00 92.00 -5.00 86 87 20.00 123.00 -2.00 87 88 20.00 97.00 2.00 88 89 20.00 132.00 5.00 89 90 9.40 215.00 0.00 90 91 20.00 160.00 -2.00 91 92 20.00 108.00 0.00 92 93 18.00 112.00 0.00 93 94 13.00 63.00 -1.00 94 95 20.00 162.00 -2.00 95 96 8.30 76.00 0.00 96 97 14.50 165.00 15.00 97 98 20.00 198.00 -1.00 98 99 15.80 198.00 -4.00 99 100 20.00 159.00 -2.00 100 101 20.00 115.00 -3.00 101 102 9.00 151.00 -2.00 102 103 10.50 63.00 2.00 103 104 20.00 103.00 5.00 104 105 10.80 98.00 -5.00 105 106 20.00 121.00 0.00 *END NewUzueka *BEGIN GourInlet *CALIBRATE declination 2.15 1 2 5.27 11.00 -27.00 2 3 14.80 66.00 -4.00 3 4 10.19 58.00 0.00 4 5 3.34 73.00 6.00 5 6 18.77 24.00 1.00 6 7 5.00 100.00 -3.00 7 8 9.22 32.00 3.00 8 9 11.00 72.00 -4.00 9 10 5.84 30.00 -1.00 10 11 21.80 59.00 2.00 11 12 23.50 98.00 0.00 12 13 12.58 59.00 8.00 13 14 21.05 39.00 0.00 14 15 17.67 65.00 26.00 15 16 17.52 302.00 5.00 15 18 12.08 2.00 2.00 16 17 15.35 75.00 -30.00 18 19 8.15 63.00 -5.00 19 20 4.00 100.00 17.00 20 21 8.92 113.00 43.00 21 22 4.34 307.00 -14.00 22 23 6.46 80.00 -22.00 23 24 6.66 106.00 -12.00 24 25 7.19 0.00 -8.00 25 26 10.93 92.00 -2.00 26 27 3.84 124.00 -4.00 27 28 11.07 106.00 13.00 28 29 3.00 180.00 3.00 29 30 7.08 109.00 4.00 30 31 9.55 83.00 3.00 31 32 4.19 93.00 1.00 32 33 7.10 83.00 -3.00 33 34 1.73 178.00 -12.00 34 35 26.06 92.00 1.00 35 36 5.72 94.00 -3.00 36 37 3.30 200.00 -18.00 37 38 6.98 0.00 -90.00 38 39 6.01 170.00 20.00 39 40 4.13 73.00 36.00 40 41 5.96 110.00 13.00 41 42 5.21 104.00 2.00 42 43 8.79 150.00 2.00 43 44 5.83 171.00 16.00 44 45 6.96 83.00 2.00 45 46 6.05 95.00 4.00 46 47 4.93 150.00 10.00 47 48 4.75 81.00 49.00 48 49 5.52 110.00 -2.00 49 50 9.83 102.00 -7.00 50 51 4.97 120.00 -3.00 51 52 7.88 138.00 9.00 52 53 2.71 83.00 28.00 53 54 1.80 358.00 40.00 54 55 3.15 90.00 -37.00 55 56 4.26 103.00 34.00 56 57 4.30 78.00 31.00 57 58 3.19 75.00 -16.00 58 59 3.68 18.00 33.00 59 60 9.49 111.00 13.00 60 61 11.95 84.00 -32.00 61 62 10.40 51.00 -9.00 62 63 9.67 111.00 0.00 63 64 7.50 70.00 20.00 64 65 7.97 37.00 14.00 65 66 22.76 63.00 0.00 66 67 14.18 119.00 -5.00 67 68 9.27 73.00 5.00 68 69 10.49 125.00 -3.00 69 70 22.11 320.00 42.00 70 71 1.41 319.00 -18.00 *END GourInlet *BEGIN BeyondThunderdome *CALIBRATE declination 2.15 1 2 10.26 254.00 15.00 2 3 13.12 264.00 5.00 3 4 8.51 303.00 26.00 4 5 4.94 300.00 53.00 5 6 3.26 208.00 6.00 6 7 5.00 289.00 -7.00 7 8 13.50 307.00 -41.00 8 9 13.13 311.00 -22.00 9 10 13.27 217.00 11.00 10 11 20.62 319.00 -16.00 11 12 5.42 325.00 14.00 12 13 6.36 327.00 3.00 13 14 12.40 325.00 -2.00 14 15 13.54 267.00 -1.00 15 16 12.93 233.00 -24.00 16 17 3.68 28.00 -43.00 17 18 4.09 267.00 14.00 18 19 2.26 215.00 9.00 19 20 7.35 295.00 3.00 20 21 8.21 212.00 -12.00 21 22 3.50 252.00 -1.00 22 23 3.40 268.00 15.00 23 24 7.46 269.00 -17.00 23 25 4.40 258.00 55.00 24 26 9.50 259.00 6.00 26 27 4.02 250.00 2.00 27 28 1.63 225.00 49.00 27 30 10.58 272.00 0.00 28 29 3.48 25.00 86.00 30 31 6.68 279.00 -10.00 31 32 6.76 327.00 34.00 32 33 7.34 247.00 -14.00 33 34 2.26 287.00 -15.00 34 35 11.22 226.00 3.00 35 36 4.93 242.00 72.00 36 37 9.67 206.00 -2.00 37 38 19.32 236.00 -3.00 38 39 6.02 250.00 -1.00 39 40 25.02 275.00 -7.00 40 41 7.73 273.00 5.00 41 42 18.90 272.00 -4.00 42 43 7.19 265.00 3.00 42 44 4.27 22.00 -27.00 44 45 6.88 49.00 -5.00 45 46 6.85 75.00 0.00 46 47 2.61 332.00 -2.00 47 48 6.42 285.00 -4.00 48 49 8.71 268.00 1.00 49 50 5.76 273.00 0.00 50 51 8.08 256.00 19.00 51 52 7.80 267.00 -1.00 52 53 2.68 8.00 -50.00 53 54 8.15 49.00 -11.00 54 55 14.08 52.00 3.00 55 56 6.70 104.00 18.00 56 57 13.30 93.00 -5.00 57 58 18.38 97.00 5.00 58 59 4.92 120.00 6.00 59 60 1.98 98.00 -15.00 60 61 8.83 90.00 0.00 61 62 10.55 98.00 -10.00 62 63 6.31 54.00 -20.00 63 64 13.95 91.00 0.00 64 35 2.93 108.00 2.00 44 89 4.06 263.00 -27.00 89 90 3.64 272.00 -18.00 90 91 23.71 0.00 -90.00 91 92 13.00 257.00 -6.00 92 93 20.96 222.00 -4.00 3 102 3.41 147.00 -46.00 102 103 8.51 279.00 -15.00 103 104 8.11 250.00 -6.00 104 105 13.18 271.00 -5.00 105 106 7.25 308.00 -7.00 106 107 9.14 25.00 10.00 107 108 2.36 75.00 28.00 108 8 4.70 75.00 41.00 29 65 3.35 172.00 12.00 65 66 19.26 221.00 0.00 66 67 7.52 137.00 0.00 67 68 3.27 220.00 5.00 68 69 4.44 179.00 11.00 69 70 2.96 223.00 35.00 70 71 1.46 184.00 29.00 71 72 4.16 210.00 40.00 72 73 9.20 154.00 44.00 73 74 5.66 277.00 -30.00 74 75 4.29 235.00 26.00 75 76 6.23 96.00 14.00 76 77 8.84 117.00 -1.00 77 78 5.12 98.00 -45.00 78 79 3.84 334.00 -42.00 79 80 9.73 37.00 -40.00 80 81 11.70 329.00 -37.00 81 82 6.00 76.00 -46.00 82 83 2.26 36.00 3.00 83 84 4.17 311.00 28.00 84 85 6.34 281.00 1.00 85 86 2.73 337.00 -3.00 86 87 3.78 39.00 -4.00 87 88 1.60 353.00 -17.00 *END BeyondThunderdome *BEGIN TomorrowMorrowLand *CALIBRATE declination 2.15 1 2 10.46 125.00 11.00 2 3 3.81 108.00 51.00 3 4 8.48 42.00 8.00 4 5 8.90 60.00 7.00 5 6 3.20 41.00 -1.00 6 7 9.80 10.00 1.00 7 8 6.16 46.00 0.00 8 9 5.00 84.00 1.00 9 10 6.18 52.00 3.00 10 11 6.26 38.00 3.00 11 12 9.15 10.00 12.00 12 13 8.32 98.00 1.00 13 14 6.12 110.00 -14.00 14 15 8.74 38.00 -1.00 15 16 7.11 95.00 11.00 16 17 21.71 149.00 -2.00 17 18 4.74 94.00 -9.00 18 19 7.96 56.00 -4.00 19 20 9.38 64.00 0.00 20 21 12.86 48.00 2.00 21 22 13.63 107.00 9.00 22 23 8.31 58.00 -15.00 23 24 9.19 35.00 6.00 24 25 11.17 100.00 2.00 25 26 8.25 112.00 -3.00 26 27 4.63 30.00 -10.00 27 28 8.39 340.00 -1.00 28 29 14.99 43.00 8.00 29 30 15.61 33.00 -9.00 30 31 9.54 21.00 4.00 31 32 25.10 40.00 5.00 32 33 21.95 36.00 -6.00 33 34 6.96 55.00 6.00 34 35 10.11 19.00 6.00 35 36 17.25 29.00 -5.00 36 37 13.00 95.00 -1.00 37 38 6.94 33.00 32.00 38 39 7.74 50.00 -5.00 39 40 6.57 78.00 -35.00 40 41 12.41 91.00 4.00 41 42 12.43 34.00 0.00 42 43 11.16 45.00 1.00 43 44 6.83 75.00 -10.00 44 45 7.99 23.00 -5.00 *END TomorrowMorrowLand *BEGIN Uzu-Gour090410153 *CALIBRATE declination 2.08 0 1 4.01 55.12 2.88 1 2 6.67 109.20 -1.37 2 3 7.57 82.82 -1.46 3 4 15.71 17.50 1.20 4 4a 0.46 66.80 13.93 4 5 2.73 244.54 2.61 5 6 4.22 318.30 0.41 6 7 4.92 29.58 -2.12 7 8 9.81 58.72 0.94 8 9 8.60 128.70 -6.68 9 10 5.68 82.92 5.68 10 11 6.56 44.65 4.54 11 12 9.03 72.19 1.22 12 13 3.05 46.22 1.28 13 14 6.89 86.27 -0.51 14 15 6.61 61.48 0.09 15 16 5.13 18.53 -1.21 16 17 6.85 62.63 2.01 17 18 5.38 102.18 1.22 18 19 2.60 105.49 -1.05 19 20 6.94 178.17 -2.10 20 21 4.01 196.07 3.14 21 22 4.15 139.28 -0.15 22 23 4.71 205.76 -0.38 23 24 6.52 198.45 5.52 24 25 8.69 224.01 -4.26 25 26 5.69 246.24 2.28 26 27 2.46 153.10 -9.56 27 28 16.85 204.24 -2.08 28 29 10.28 139.20 5.65 29 30 5.84 105.83 5.86 30 31 10.74 79.31 -0.95 31 32 5.99 21.29 2.80 32 33 8.26 124.62 -0.97 33 34 11.46 86.24 0.14 34 35 10.25 104.61 -0.15 35 36 6.54 36.46 2.80 36 37 7.85 352.56 0.36 37 38 12.49 59.58 -0.29 38 39 6.47 144.30 -0.66 39 40 12.19 176.62 2.78 40 41 8.03 217.50 -3.13 41 42 5.06 197.69 0.74 42 43 5.14 164.36 -5.75 43 44 4.12 90.67 -11.48 44 45 12.39 173.99 6.86 45 46 7.38 104.91 0.82 46 47 4.77 61.95 -3.61 47 48 5.77 23.58 0.32 48 49 10.87 6.04 2.73 49 50 1.56 17.64 -9.69 50 51 11.64 51.10 1.00 51 52 6.84 26.57 -5.79 52 53 6.43 119.09 2.67 53 54 16.81 345.84 -2.23 54 55 11.67 100.37 4.88 55 56 1.66 96.25 -19.79 56 57 5.39 160.71 -4.01 57 58 4.72 73.23 10.43 58 59 5.12 139.83 -5.11 59 60 8.82 75.02 2.73 60 61 1.71 17.48 9.12 61 62 7.73 51.94 -4.40 62 63 2.97 348.14 3.86 63 64 10.87 23.32 -1.96 64 65 4.53 55.63 4.73 65 66 3.19 344.40 -3.15 66 67 2.48 284.81 17.86 67 68 5.47 5.26 0.23 68 69 3.21 73.52 0.24 69 70 6.88 27.74 1.39 70 71 5.88 104.61 4.12 71 72 7.57 99.29 -5.44 72 73 5.64 88.59 15.15 73 74 2.17 131.37 8.68 74 75 4.57 27.39 14.39 75 76 8.47 60.80 19.30 76 77 5.73 104.58 0.98 77 78 5.19 84.19 24.31 78 79 1.27 102.94 2.43 *END Uzu-Gour090410153 *BEGIN GourAven2010 *CALIBRATE declination 1.92 0 1 2.24 139.95 28.32 1 2 5.91 70.86 27.68 2 2a 1.11 175.45 -0.10 2 2b 1.17 8.87 6.87 2 3 5.08 327.47 56.76 3 4 4.92 69.83 23.86 4 4a 0.95 165.48 0.82 4 4b 3.80 331.85 24.88 4 4c 5.74 289.73 15.19 4 4d 2.80 233.18 -16.44 4 4e 7.76 33.32 29.66 4 5 2.00 337.58 33.09 5 6 11.33 256.84 -5.02 6 7 4.83 315.41 34.36 7 7a 4.71 21.66 32.61 7 7b 3.12 254.93 11.55 7 7c 4.05 103.53 3.40 7 7d 4.14 69.26 18.44 7 7e 7.31 221.39 2.77 7 7f 7.08 196.12 -0.28 7 8 10.95 55.71 35.32 8 9 9.78 65.84 3.27 9 9a 3.98 233.45 -1.12 9 10 4.02 65.03 22.07 10 11 2.66 124.77 6.23 11 11a 6.44 244.26 -33.76 11 12 4.68 28.23 41.16 12 12a 12.70 20.35 69.18 12 12b 2.35 256.10 14.98 12 12c 2.05 326.35 6.05 12 12d 3.45 44.58 36.15 12 12e 7.31 45.38 40.15 12 12f 7.44 59.56 40.31 12 12g 5.50 20.21 43.16 12 12h 2.89 291.62 14.24 12 13 4.74 257.83 20.70 13 14 3.65 238.14 -5.06 14 15 1.18 304.15 22.54 15 16 3.01 254.32 20.56 16 17 2.80 262.28 32.10 17 18 2.51 130.46 27.56 18 18a 1.91 43.25 -1.46 18 19 1.60 82.83 -6.44 19 20 2.62 206.13 -3.57 20 21 2.74 273.17 46.82 21 21a 1.45 67.41 10.21 21 22 5.18 26.78 41.32 22 22a 1.73 308.53 4.45 22 22b 5.75 61.72 37.02 22 22c 8.28 215.65 -4.87 22 22d 8.34 236.94 -5.86 22 22e 6.38 77.99 35.97 22 23 6.09 69.43 35.08 23 24 2.80 330.39 -45.49 24 25 3.96 24.64 -39.81 25 26 2.56 117.72 -45.71 26 27 2.20 85.94 -7.90 27 28 1.36 72.33 62.56 28 29 1.39 121.96 -18.84 29 30 0.86 110.32 6.35 30 31 8.52 168.68 -79.71 22 22f 16.08 233.79 -2.48 22 22g 11.69 0.00 90.00 *END GourAven2010 *BEGIN LasPlayas *BEGIN Resurvey2011 *CALIBRATE declination 1.75 1 2 17.16 36.57 0.88 2 2a 2.59 324.74 86.92 2 2b 0.91 217.94 -86.69 2 2c 8.83 303.26 12.88 2 2d 1.83 125.25 2.05 2 2e 5.07 122.58 -31.28 2 3 21.58 33.16 0.58 3 4 11.09 53.13 -0.89 4 5 9.35 346.19 0.05 5 6 4.77 322.49 -16.11 6 6a 4.35 308.01 86.98 6 6b 2.67 307.52 1.82 6 6c 7.79 290.15 -28.37 6 7 21.34 39.33 1.49 7 8 13.13 20.26 8.69 8 9 10.42 348.71 -23.99 9 10 2.56 298.36 20.94 10 11 11.61 235.25 1.59 11 11a 0.65 352.01 75.61 11 11b 2.23 26.77 -79.76 11 11c 0.51 300.78 2.21 11 11d 0.55 119.70 16.12 11 11e 2.07 34.07 -0.63 11 12 14.89 14.54 4.04 12 12a 2.07 133.80 73.58 12 12b 0.72 108.95 -73.27 12 12c 0.79 137.89 3.40 12 12d 1.58 223.02 1.74 12 13 5.85 64.09 11.07 12 14 2.71 243.50 -3.39 14 15 5.16 244.23 -5.39 15 15a 1.83 99.73 66.98 15 15b 2.42 61.36 -77.93 15 15c 1.51 50.56 -3.92 15 15d 0.58 184.00 11.56 15 16 3.35 18.15 -8.58 16 17 2.26 50.24 18.70 17 17a 6.18 22.63 75.76 17 17b 2.21 169.97 -86.97 17 17c 0.22 163.98 6.65 17 17d 1.10 259.09 -1.63 17 17e 1.34 333.80 1.60 17 18 1.24 268.37 -38.79 18 19 3.33 259.72 41.22 19 20 7.22 252.89 11.09 20 21 3.45 272.26 58.43 21 22 3.77 263.94 19.53 22 23 5.97 67.69 32.54 23 24 2.83 1.25 31.89 24 25 3.31 290.91 -5.83 25 25a 8.65 64.34 87.45 25 25b 2.11 191.88 3.81 25 25c 1.66 266.24 8.28 25 25d 1.70 339.04 7.43 25 25e 3.49 44.64 7.77 25 25f 3.36 80.46 9.43 25 25g 2.53 106.89 9.78 22 26 2.28 240.45 -4.79 26 27 4.18 272.76 -12.28 27 28 4.82 238.58 -1.79 28 28a 9.62 8.65 78.87 28 28b 0.88 16.19 -82.32 28 28c 0.31 139.61 17.54 28 28d 1.84 352.74 13.62 28 28e 4.37 323.55 22.47 28 28f 3.93 272.87 17.55 22 29 4.09 172.11 -75.25 29 30 2.65 264.67 -12.93 30 31 2.68 280.10 17.92 *END Resurvey2011 *END LasPlayas *BEGIN SloppyInlet *EQUATE Pt1_2010.12 Pt2_2011.0 *BEGIN Pt1_2010 *CALIBRATE declination 1.92 1 2 15.91 51.99 -13.42 2 3 4.87 78.08 -9.61 3 3a 2.91 288.84 7.49 3 4 6.53 48.21 0.84 4 5 6.06 80.62 -0.33 5 6 9.00 46.55 0.21 6 6a 1.90 148.27 -2.41 6 6b 2.50 236.20 -1.32 6 7 2.02 91.10 40.33 7 8 5.01 53.19 28.20 8 9 3.63 78.61 30.48 9 9a 2.98 284.69 -63.98 9 9b 2.92 312.26 -68.67 9 10 2.83 38.67 49.77 10 11 4.56 46.79 15.28 11 11a 1.90 16.28 2.96 11 12 3.35 227.63 50.31 12 12a 8.24 213.14 71.05 12 12b 4.28 349.87 -86.59 12 12c 1.77 53.79 7.68 12 12d 3.13 223.58 9.11 12 12e 1.20 345.12 20.17 12 12f 2.31 272.47 10.51 *END Pt1_2010 *BEGIN Pt2_2011 *CALIBRATE declination 1.75 0 0a 8.58 203.24 85.39 0 0b 1.79 169.15 -88.07 0 0c 1.29 125.73 0.46 0 0d 2.53 190.96 4.20 0 0e 1.61 306.94 3.61 0 0f 2.31 237.87 9.54 0 0g 2.83 253.54 9.73 0 0h 2.16 277.70 11.01 0 0i 1.31 43.80 6.31 0 1 8.84 224.95 74.29 1 2 1.29 177.76 16.14 2 3 9.45 62.80 8.45 3 3a 4.88 114.75 84.07 3 3b 1.07 299.88 -83.79 3 3c 0.76 207.08 2.14 3 3d 1.45 243.11 1.63 3 3e 2.05 261.73 3.02 3 4 3.09 174.44 77.16 4 5 3.04 80.70 -0.77 5 6 7.44 29.62 5.20 6 7 5.85 35.05 1.09 7 7a 8.62 351.28 81.03 7 7b 0.55 153.97 -74.30 7 7c 0.58 282.01 8.71 7 7d 3.17 349.34 3.84 7 7e 3.04 20.21 3.70 7 8 9.45 7.85 51.31 8 9 2.60 65.73 -6.30 9 10 4.48 6.77 7.25 10 11 3.86 56.51 1.91 11 11a 4.24 25.54 78.35 11 11b 0.56 60.57 -78.89 11 11c 0.67 323.14 -8.75 11 11d 2.62 20.06 7.07 11 12 7.66 28.32 10.32 12 13 1.09 289.21 11.36 13 14 3.87 230.95 3.41 14 15 4.60 249.81 2.49 15 16 4.46 260.87 6.91 16 17 7.41 236.86 0.94 17 18 1.79 282.80 9.24 18 18a 7.50 240.76 9.56 18a 19 7.25 240.76 9.56 19 19a 48.31 69.00 85.56 19 19b 1.91 72.56 -82.37 19 19c 1.25 157.25 -8.40 19 19d 7.11 72.91 15.16 19 19e 0.59 2.64 1.55 19 19f 4.57 16.43 28.14 19 19g 7.14 49.84 15.92 *END Pt2_2011 *END SloppyInlet *BEGIN HellOfADiversion *CALIBRATE declination 1.67 1 2 3.48 281.26 27.52 2 3 2.13 191.02 1.42 3 4 7.43 222.22 -1.21 4 5 2.23 224.28 -4.17 5 6 3.41 205.94 2.50 6 7 3.12 212.10 -3.17 7 8 3.01 223.50 -0.83 8 9 1.53 227.01 0.71 9 10 4.13 230.74 -1.52 10 11 3.15 233.34 3.49 11 12 7.29 213.25 -3.92 12 13 6.48 212.26 -46.98 13 14 2.54 235.48 -15.60 14 15 1.92 202.22 -38.76 15 16 3.08 81.63 -16.60 16 17 2.89 92.67 -62.02 17 18 4.26 53.58 -27.46 18 19 4.32 46.44 -3.26 19 20 1.58 52.71 -1.32 20 20a 0.94 312.95 2.07 20 21 2.13 80.12 -0.95 21 22 1.40 48.91 -4.57 22 23 3.09 6.26 -4.89 23 24 3.19 42.15 4.79 24 25 3.04 29.71 -4.19 25 26 5.16 27.70 -2.06 26 27 0.89 133.24 21.14 27 28 3.49 84.55 -0.49 28 29 4.49 57.41 0.19 29 30 4.20 52.71 -1.95 30 31 3.19 70.91 1.33 31 32 1.95 41.99 -0.84 32 33 1.18 108.78 -27.67 33 34 2.03 41.06 -1.30 34 35 4.68 61.76 1.03 35 36 3.57 48.05 1.36 36 37 2.13 86.68 -1.42 37 38 2.37 49.91 -8.73 38 39 3.65 63.15 4.37 39 40 2.65 25.59 -2.53 40 41 7.85 65.58 1.85 41 42 3.98 215.85 -4.71 42 43 2.22 233.70 0.55 43 44 4.04 203.86 -0.25 44 45 5.66 233.77 0.58 45 46 2.15 186.79 -5.67 46 47 2.69 210.08 -0.93 47 48 1.42 230.57 -1.37 48 49 2.10 240.59 0.28 49 50 3.47 237.36 -2.97 50 51 2.90 256.53 4.59 51 52 3.17 240.12 -3.07 52 53 2.60 232.18 -0.80 53 54 4.54 221.12 -21.78 54 55 1.20 181.22 -8.12 55 56 1.94 154.16 -70.71 56 57 5.60 228.25 -6.94 57 58 6.32 217.05 -41.16 58 58a 4.16 41.63 18.73 *END HellOfADiversion *BEGIN DiversionChamberInlet *CALIBRATE declination 1.67 1 1a 8.76 287.34 20.69 1 1b 10.20 253.92 24.44 1 1c 2.13 144.12 3.82 1 1d 3.99 202.19 17.98 1 1e 10.80 215.21 17.53 1 2 9.65 45.09 -8.73 2 2a 1.77 145.49 -0.87 2 3 7.77 187.34 -10.02 3 4 9.44 211.26 3.08 4 4a 2.51 100.17 -29.05 4 5 11.95 163.92 -0.41 5 5a 6.87 4.56 3.19 5 5b 3.83 3.31 14.82 5 5c 1.39 14.78 -31.95 5 5d 11.13 303.87 28.34 5 6 8.26 67.45 1.78 6 6a 2.80 347.23 11.18 6 7 2.15 155.93 -7.58 7 8 8.18 69.41 -0.13 8 9 8.47 77.66 6.42 9 10 6.85 341.28 0.08 10 10a 10.05 250.19 -1.04 10 11 14.59 73.83 1.72 11 11a 3.58 303.03 -20.21 11 11b 1.58 311.41 -36.36 11 12 2.47 323.56 -6.85 12 12a 0.81 79.38 40.38 12 13 8.42 66.83 -1.30 13 13a 1.50 323.93 -0.83 13 14 7.41 47.92 -0.40 14 15 4.82 88.87 4.20 15 16 7.13 53.76 0.25 16 17 4.76 71.24 4.81 17 18 6.28 57.69 -3.59 18 18a 1.52 179.34 -14.08 18 19 9.10 101.84 0.31 19 19a 2.07 347.15 -24.47 19 20 3.28 61.64 8.72 20 20a 1.21 202.36 -9.48 20 21 2.71 180.70 -22.74 21 22 2.10 172.14 25.72 22 23 4.06 64.68 38.17 23 24 4.34 81.84 -44.24 24 24a 16.57 248.33 45.37 24 24b 15.46 240.65 75.35 24 24c 10.27 65.57 12.67 10 25 2.49 252.87 28.57 25 26 9.84 244.96 -5.45 *END DiversionChamberInlet *BEGIN BRoad *CALIBRATE declination 1.67 1 2 9.05 310.87 6.10 2 3 5.86 260.07 -2.54 3 3a 7.52 235.49 13.22 3 4 5.76 35.46 -25.54 4 5 3.42 316.93 -58.18 5 5a 1.02 313.42 55.77 5 6 3.76 34.48 13.31 6 7 11.00 44.94 -2.21 7 7a 1.50 146.85 44.06 7 8 2.98 63.88 5.70 8 8a 2.00 315.52 -34.09 8 9 4.84 58.30 1.92 9 9a 3.55 310.90 -20.18 5 10 10.23 244.05 4.18 10 11 9.92 246.99 -0.09 11 11a 1.20 143.23 -12.63 11 12 5.47 242.34 -10.18 12 12a 8.22 237.32 -0.27 12 13 8.77 203.42 5.39 13 13a 1.07 129.50 -47.84 13 13b 0.92 315.03 4.02 13 13c 1.90 44.86 -9.67 13 14 8.39 243.71 1.15 14 14a 2.83 144.92 -27.48 14 15 5.06 188.22 -7.12 15 15a 2.99 308.29 -2.95 15 16 6.06 209.47 -0.52 16 16a 1.13 40.00 -44.42 16 17 5.24 76.22 0.40 17 18 3.41 107.79 7.72 18 18a 0.45 97.08 18.10 18 18b 1.87 258.49 -11.22 18 18c 2.21 137.79 -30.29 *END BRoad *BEGIN SandyZigZags *CALIBRATE declination 1.67 1 2 3.49 279.73 6.46 2 3 8.32 261.03 7.47 3 4 6.09 248.59 -2.41 4 4a 2.35 241.20 14.47 4 4b 1.39 63.24 1.96 4 5 8.67 44.44 1.38 5 5a 0.29 143.21 43.64 5 6 2.92 81.97 -3.57 6 7 6.39 355.71 1.64 7 7a 1.22 193.47 -1.63 7 8 10.02 244.12 -0.20 8 9 13.79 231.18 1.72 9 9a 1.35 320.86 44.98 9 9b 0.82 329.84 -22.90 9 10 6.62 262.98 -0.85 10 10a 1.64 151.95 2.06 10 11 10.80 229.41 1.52 11 11a 4.27 215.79 4.67 11 11b 0.91 331.90 39.34 11 11c 0.90 330.46 -34.14 11 12 4.97 264.54 3.28 12 13 6.32 240.83 -1.64 13 14 4.52 251.31 -3.94 14 15 3.29 194.15 -3.46 15 16 1.41 295.46 -5.72 16 16a 1.02 156.81 -34.97 16 16b 6.00 202.14 -3.87 16 16c 3.33 196.46 3.03 16 16d 3.61 204.99 2.11 16 16e 2.08 266.72 8.03 16 17 3.57 222.19 2.69 17 18 2.85 259.92 25.62 18 19 1.78 205.31 20.90 19 19a 1.38 324.35 21.90 19 20 1.71 292.07 37.62 20 20a 1.48 166.77 -3.53 20 20b 4.89 247.16 22.91 20 20c 5.51 234.49 30.66 20 20d 3.93 251.64 -20.03 *END SandyZigZags *BEGIN River2 *CALIBRATE declination 6.89 9 10 11.00 218.00 0.00 10 11 15.30 240.00 -1.00 11 12 12.00 216.00 6.00 12 13 20.00 250.00 -4.00 13 14 13.60 245.00 0.00 14 15 20.00 232.50 -1.00 15 16 10.00 233.00 -1.00 16 17 13.30 236.00 -2.00 17 18 13.00 243.00 0.00 18 19 20.00 223.00 0.00 19 20 20.00 234.00 0.00 20 21 20.00 231.00 6.00 21 22 20.00 230.00 -10.00 22 23 20.00 244.00 7.00 23 24 20.00 237.00 0.00 24 25 20.00 229.00 0.00 25 26 20.00 182.00 -3.00 26 27 11.90 171.00 17.00 27 28 7.00 136.00 2.00 28 29 16.00 110.00 -25.00 29 30 4.80 127.00 0.00 30 31 8.40 96.00 0.00 31 32 8.00 144.00 10.00 32 33 17.60 91.00 -5.00 33 34 10.40 111.00 0.00 34 35 15.00 159.00 0.00 35 36 14.80 89.00 3.00 36 37 6.50 138.00 9.00 37 38 5.00 190.00 -18.00 38 39 7.50 123.00 0.00 39 40 7.00 167.00 0.00 40 41 10.80 104.00 0.00 41 42 18.50 68.00 0.00 42 43 11.70 118.00 0.00 43 44 6.80 206.00 30.00 44 45 14.00 111.00 0.00 45 46 16.50 144.00 -14.00 46 47 6.90 199.00 0.00 47 48 7.50 107.00 0.00 48 49 4.50 171.00 0.00 49 50 7.70 90.00 0.00 50 51 5.00 71.00 19.00 51 52 5.40 74.00 -25.00 52 53 5.00 99.00 0.00 53 54 16.50 57.00 0.00 54 55 14.40 56.00 10.00 55 56 11.50 80.00 -10.00 56 57 18.60 61.00 0.00 57 58 13.00 57.00 0.00 58 59 16.50 115.00 0.00 59 60 20.00 80.00 0.00 60 61 20.00 68.00 0.00 61 62 3.50 82.00 0.00 *END River2 *BEGIN 4thRiverInlet *CALIBRATE declination 1.92 1 2 4.70 241.84 -5.47 2 3 9.48 256.65 1.67 3 3a 2.68 350.37 -6.54 3 4 11.11 284.45 0.30 4 4a 1.26 185.58 1.16 4 4b 1.65 278.61 -3.07 4 5 3.84 333.48 0.12 5 5a 3.37 100.90 2.17 5 5b 2.59 135.08 2.69 5 6 20.38 250.71 1.74 6 7 11.86 256.97 2.88 7 8 4.09 258.04 4.52 8 9 5.93 233.74 -0.07 9 9a 2.98 336.04 -1.13 9 10 5.52 337.88 6.23 10 10a 2.21 193.84 -1.41 10 11 10.52 215.87 9.02 11 11a 2.47 199.90 -34.00 10 12 2.58 302.07 -41.08 12 13 4.47 297.63 -2.33 13 14 6.37 280.24 4.14 14 14a 0.40 1.55 8.49 14 15 3.00 261.92 1.12 15 16 4.55 240.61 6.07 16 17 4.27 282.95 -4.47 17 17a 2.55 257.44 15.77 17 18 4.75 43.09 13.49 18 18a 1.52 242.18 -3.26 18 19 8.59 265.04 1.96 19 20 4.85 266.29 1.21 20 21 5.02 271.64 -0.01 21 22 1.95 263.93 -3.79 22 23 4.98 262.50 -2.11 23 23a 1.01 140.63 -3.98 23 24 2.54 325.70 -4.68 24 25 1.53 53.79 -5.34 25 26 1.74 342.48 -4.34 26 27 3.82 347.92 -0.28 27 27a 1.52 161.71 5.37 27 28 4.65 293.98 9.62 28 29 6.17 74.15 2.86 29 30 3.16 91.71 -2.67 30 31 3.80 54.05 -3.67 31 32 1.61 298.37 7.35 32 33 1.00 56.81 -16.94 33 34 4.93 275.76 -2.15 34 35 4.48 273.96 0.01 35 36 3.39 255.20 49.90 *END 4thRiverInlet *BEGIN PhreaticMazeSeries *CALIBRATE declination 6.0 0 1 9.20 210.00 -1.00 1 2 12.30 214.00 0.00 2 3 15.00 215.00 4.00 3 4 3.40 272.00 3.00 4 5 4.80 248.00 4.00 5 6 5.40 281.00 4.00 6 7 4.10 243.00 2.00 7 8 9.70 259.00 0.00 8 9 16.40 254.50 2.00 9 10 4.20 253.00 -4.00 10 11 3.80 244.00 -34.00 12 2 2.90 300.00 -30.00 12 13 4.40 83.00 24.00 13 14 3.10 40.00 28.00 14 15 5.50 81.00 -15.00 15 16 3.20 37.00 0.00 16 17 3.30 109.00 11.00 17 18 3.70 68.00 -6.00 18 19 5.60 94.00 -2.00 19 20 7.20 40.00 6.00 20 21 6.90 255.00 -14.00 21 22 9.00 276.00 1.00 22 23 8.50 312.00 -5.00 *END PhreaticMazeSeries *BEGIN Astradome *CALIBRATE declination 6.89 1 2 20.00 216.00 15.00 2 3 14.30 222.00 5.00 3 4 20.00 247.00 -10.00 4 5 13.00 248.00 -3.00 5 6 15.00 236.00 -20.00 1 6a 12.80 336.00 0.00 1 6b 12.40 258.00 0.00 1 6c 12.40 94.00 0.00 1 6d 20.00 27.00 0.00 1 0 102.50 0.00 90.00 *END Astradome *BEGIN ShrimpBoneInlet 238 239 72.27 284.42 0.00 239 240 7.07 278.13 0.00 240 241 10.44 16.70 0.00 241 242 7.21 236.31 0.00 242 243 10.00 36.87 0.00 243 244 11.04 275.19 0.00 244 245 21.40 322.59 0.00 245 246 66.40 251.56 0.00 246 247 11.18 333.43 0.00 247 248 21.02 267.27 0.00 248 249 44.01 248.68 0.00 249 250 13.03 237.52 0.00 250 251 55.22 264.80 0.00 251 252 5.83 300.96 0.00 252 253 7.61 246.80 0.00 253 254 68.96 299.53 0.00 254 255 54.70 251.89 0.00 255 256 33.61 247.25 0.00 256 257 50.69 247.98 0.00 257 258 7.28 344.05 0.00 258 259 8.00 270.00 0.00 259 260 17.20 305.53 0.00 260 261 6.32 341.56 0.00 261 262 15.29 281.31 0.00 262 263 9.48 288.43 0.00 263 264 23.32 300.96 0.00 264 605 4.70 300.50 1.00 605 606 6.30 292.50 0.00 606 607 4.60 261.50 0.00 607 608 8.60 261.50 0.00 608 609 4.90 285.50 0.00 609 610 1.40 258.50 0.00 610 611 4.40 302.50 4.00 611 612 4.00 321.50 0.00 612 613 5.00 263.50 0.00 613 614 2.70 302.50 2.00 614 615 9.00 255.50 1.00 615 616 6.80 259.50 1.00 616 617 5.20 225.50 2.00 617 618 20.50 237.50 2.00 618 619 6.70 235.50 0.00 619 620 28.80 248.50 3.00 620 621 16.00 238.50 3.00 621 622 30.00 242.50 3.00 622 623 17.60 243.50 3.00 623 624 15.70 257.50 3.00 624 625 16.50 249.50 2.00 625 626 25.70 245.50 2.00 626 627 24.50 245.50 2.00 627 628 8.50 261.50 0.00 628 629 14.40 258.50 3.00 629 630 9.00 262.50 0.00 630 631 4.00 289.50 0.00 631 632 11.50 263.50 2.00 632 633 8.50 252.50 2.00 633 634 6.50 265.50 3.00 634 635 7.20 244.50 0.00 635 636 11.50 261.50 2.00 636 637 7.10 253.50 2.00 637 638 10.00 250.50 0.00 638 639 5.80 260.50 3.00 639 640 5.80 228.50 0.00 640 641 2.40 215.50 0.00 641 642 16.70 240.50 1.00 642 643 6.00 253.50 1.00 643 644 10.50 248.50 1.00 644 645 9.10 228.50 1.00 645 646 10.80 243.50 1.00 646 647 6.10 251.50 1.00 647 648 3.00 260.50 1.00 648 649 6.40 255.50 1.00 649 650 8.70 253.50 1.00 650 651 12.30 250.50 1.00 651 652 4.50 140.50 1.00 652 653 10.80 110.50 0.00 653 654 3.60 218.50 0.00 654 655 13.90 117.50 1.00 655 656 4.60 183.50 1.00 656 657 7.70 129.50 0.00 657 658 0.10 0.00 90.00 *END ShrimpBoneInlet *BEGIN RockyHorror 273 274 6.25 33.07 -12.00 274 275 28.70 92.36 4.00 275 276 28.00 94.36 0.00 276 277 20.50 127.36 4.00 277 278 30.00 107.36 0.00 278 279 30.00 105.36 7.00 279 280 11.30 184.36 14.00 280 281 28.10 68.36 -4.00 281 282 9.80 340.36 -30.00 282 283 7.60 53.36 -36.00 283 284 13.50 77.36 -15.00 284 285 6.50 112.36 -4.00 285 286 2.90 152.36 -36.00 286 287 3.10 48.36 -61.00 287 288 2.20 113.36 -50.00 288 289 3.10 119.36 0.00 289 290 6.30 129.36 16.00 290 291 3.50 86.36 -30.00 291 292 9.70 103.36 0.00 292 293 11.70 122.36 28.00 293 294 4.50 247.36 24.00 294 295 3.90 108.36 28.00 295 296 10.00 93.36 -9.00 296 297 30.00 80.36 -6.00 297 298 30.00 94.36 6.00 298 299 23.50 110.36 8.00 299 300 26.50 119.36 0.00 300 301 28.00 107.36 23.00 301 302 14.70 130.36 -2.00 302 303 8.00 182.36 -43.00 303 304 12.50 76.36 -21.00 304 305 2.00 0.00 90.00 305 306 10.50 105.36 -1.00 306 307 6.50 93.36 -21.00 307 308 10.00 136.36 -2.00 308 309 24.30 102.36 0.00 309 310 5.30 97.36 -36.00 310 311 8.50 126.36 -3.00 311 312 12.00 119.36 -18.00 312 313 8.50 121.36 -12.00 313 314 7.00 317.36 -36.00 312 315 5.70 321.36 0.00 *EQUATE 315 316 *END RockyHorror *BEGIN WardrobePassage *CALIBRATE declination 2.08 *EQUATE pt2.0 pt1.9 *EQUATE pt3.0 pt2.3 *EQUATE pt4.0 pt2.1 *BEGIN pt1 *CALIBRATE declination 2.08 0 1 4.12 108.63 -17.08 1 2 13.19 74.49 -1.07 2 3 9.26 66.20 -4.76 3 4 7.77 61.68 -2.64 4 5 12.68 70.11 -3.46 5 6 6.81 88.64 -2.71 6 7 4.24 59.41 0.18 7 8 7.38 54.73 -0.80 8 9 5.49 65.32 -15.33 9 10 4.97 22.29 0.85 10 11 6.90 33.07 13.39 11 12 10.14 10.04 -59.59 12 13 6.62 74.70 -23.76 8 8a 6.16 255.38 -8.78 11 11a 5.09 310.57 1.87 11 11b 4.66 233.93 -0.09 11 11c 4.62 25.31 3.22 12 12a 0.55 248.20 -4.78 *END pt1 *BEGIN pt2 *CALIBRATE declination 2.08 0 1 8.32 65.02 -8.51 1 2 5.11 94.80 23.62 2 3 2.32 145.78 -20.46 3 3a 4.41 212.07 -6.30 3 3b 2.24 167.45 3.18 3 3c 5.69 71.80 8.82 3 3d 6.85 41.24 13.29 3 4 10.78 221.00 -0.51 4 5 1.66 253.55 -7.16 5 6 4.36 208.32 3.10 6 6a 1.56 74.09 27.24 6 7 1.81 218.22 24.54 7 7a 4.28 238.51 7.36 7 8 5.14 214.38 3.65 8 9 6.51 217.17 10.90 9 10 8.16 238.00 -0.86 10 10a 2.64 102.07 3.52 10 10b 4.71 124.38 -1.80 10 10c 5.16 162.68 -0.87 10 10d 5.26 186.71 0.84 10 10e 2.31 218.41 1.88 10 10f 2.33 251.13 5.23 10 10g 1.50 54.90 0.09 11 10 4.89 266.23 -45.47 12 11 3.48 211.29 -34.69 12 12a 0.85 68.26 -39.19 12 13 11.31 94.94 68.59 *END pt2 *BEGIN pt3 *CALIBRATE declination 2.08 0 1 15.45 111.61 4.78 1 2 5.58 108.32 -5.21 2 3 6.84 91.68 0.39 3 4 4.75 79.49 1.13 4 5 4.95 132.14 -15.59 5 6 4.91 205.05 -1.26 6 7 13.28 217.96 3.48 7 7a 6.01 47.71 -12.33 7 7b 3.21 74.61 1.35 7 7c 2.12 245.15 9.83 7 7d 2.18 99.03 2.11 7 8 9.07 85.36 1.10 8 8a 1.82 12.95 -10.10 8 9 4.84 35.03 5.05 9 9a 10.65 260.80 -3.86 9 10 4.55 82.73 9.57 10 11 3.64 89.31 -8.24 11 12 4.22 80.75 -20.57 12 13 5.39 96.65 10.72 13 14 1.44 28.32 19.48 15 14 9.27 216.19 -3.11 15 16 1.36 330.59 -13.03 17 16 5.61 219.09 -2.03 18 17 3.92 305.61 -1.03 19 18 1.56 295.00 -27.36 19 20 1.35 94.11 28.43 20 21 1.00 38.50 60.68 21 22 1.93 68.82 -34.70 22 23 0.68 107.30 -19.26 23 24 4.04 80.13 -10.25 25 24 5.63 276.50 -25.55 *END pt3 *BEGIN pt4 *CALIBRATE declination 2.08 0 1 10.76 52.79 -19.25 1 1a 1.34 304.55 -5.29 1 1b 12.76 291.66 2.50 1 1c 1.73 61.28 -38.08 1 1d 6.07 44.39 -37.13 1 1e 3.25 109.33 -4.58 1 2 7.39 88.64 -23.93 2 3 3.91 28.54 -47.25 3 4 15.92 92.32 -19.02 4 4a 22.23 340.21 3.85 4 4b 8.05 231.38 1.65 4 4c 24.34 10.16 1.91 4 4d 7.00 115.63 -2.10 4 5 18.77 355.62 1.95 *END pt4 *END WardrobePassage *BEGIN FlashbulbHall_resurvey2009_1 *CALIBRATE declination 2.08 1 2 9.01 249.00 5.00 2 3 14.10 220.00 7.00 3 4 7.20 265.00 19.00 2 5 11.57 276.00 9.00 5 6 9.91 271.00 8.00 6 7 9.86 241.00 -1.00 7 8 8.89 304.00 5.00 8 9 5.00 265.00 1.00 9 10 5.89 49.00 8.00 10 11 8.53 56.00 24.00 11 12 11.94 61.00 -28.00 12 13 9.93 108.00 -6.00 13 14 9.55 263.00 6.00 10 15 6.62 28.00 -6.00 15 16 7.58 38.00 -12.00 16 17 5.40 280.00 -17.00 17 18 5.80 244.00 5.00 18 19 4.61 250.00 5.00 19 20 5.92 204.00 8.00 20 21 12.04 218.00 8.00 21 22 5.11 268.00 7.00 22 23 2.77 261.00 1.00 19 24 8.26 250.00 12.00 24 25 11.28 31.00 0.00 26 27 5.31 80.00 -5.00 27 28 7.89 212.00 2.00 29 28 6.45 82.00 5.00 28 30 2.53 64.00 0.00 30 25 5.22 106.00 1.00 31 25 4.13 208.00 7.00 32 31 2.75 262.00 -10.00 33 34 4.20 77.00 -2.00 34 35 6.49 68.00 -14.00 35 36 1.54 45.00 -11.00 36 37 4.52 85.00 -18.00 37 38 3.26 77.00 -35.00 38 24 1.34 281.00 5.00 9 39 16.24 240.00 8.00 39 40 10.84 236.00 6.00 40 41 6.00 314.00 -7.00 41 42 7.79 245.00 6.00 42 43 13.88 259.00 3.00 43 44 11.76 249.00 13.00 44 45 16.69 272.00 0.00 45 46 22.44 257.00 3.00 44 47 7.90 242.00 7.00 47 48 3.98 227.00 15.00 42 49 5.40 105.00 1.00 49 50 13.21 230.00 15.00 50 51 10.92 193.00 47.00 51 52 10.36 198.00 -1.00 52 53 9.88 219.00 1.00 53 54 11.66 240.00 -3.00 54 55 4.92 217.00 0.00 55 56 13.00 0.00 -90.00 *END FlashbulbHall_resurvey2009_1 *BEGIN FlashbulbHall_resurvey2009_2 *CALIBRATE declination 2.08 0 1 9.91 80.00 0.00 2 1 5.14 340.00 -1.00 2 3 6.94 139.00 13.00 3 4 1.20 0.00 -90.00 5 2 6.70 234.00 -25.00 6 5 3.63 235.00 -11.00 6 7 5.00 45.00 6.00 7 8 12.09 56.00 2.00 *END FlashbulbHall_resurvey2009_2 *BEGIN FlashbulbHall_resurvey2009_2a *CALIBRATE declination 2.08 2 1 7.68 70.00 -2.00 3 2 18.40 78.00 -9.00 4 3 7.85 100.00 6.00 5 4 9.80 71.00 -5.00 6 5 8.82 111.00 0.00 7 6 3.94 90.00 31.00 7 7N 21.50 0.00 0.00 7 7E 15.40 90.00 0.00 7 7S 6.30 180.00 0.00 7 7W 16.60 270.00 0.00 7 7U 5.88 0.00 90.00 *END FlashbulbHall_resurvey2009_2a *BEGIN FlashbulbHall_Aug09 *CALIBRATE declination 2.08 0 0a 1.24 64.24 -5.19 0 1 15.46 259.63 14.33 1 2 4.45 14.92 36.25 2 2a 26.43 336.31 2.30 2 2b 7.29 208.04 9.95 2 2c 6.02 172.29 6.72 2 2d 21.76 11.27 0.84 2 2e 10.35 111.71 23.86 2 3 21.93 343.71 -1.85 3 4 13.37 279.29 7.17 4 5 9.40 9.96 0.46 5 6 26.18 285.87 1.08 6 6a 4.03 181.19 10.24 6 6b 8.94 90.39 -7.08 6 6c 3.82 302.45 -4.44 2 7 20.89 28.47 4.02 7 8 3.46 60.87 -6.51 *END FlashbulbHall_Aug09 *BEGIN FlashbulbHall_resurvey2010 *CALIBRATE declination 1.92 30 31 10.50 267.00 -11.00 31 32 4.96 9.00 -40.00 32 33 9.18 296.00 -22.00 33 34 3.28 9.00 11.00 *END FlashbulbHall_resurvey2010 *BEGIN GodKnows *EQUATE sideA.0 Apr2010.32 *EQUATE Apr2010.41 GoldiesWay.Pt1.0 *EQUATE Apr2010.21 GoldiesWay.Pt4.13 *EQUATE Feb2010.3 Apr2010.0 *EQUATE Feb2010.7 Apr2010.12 *BEGIN Feb2010 *CALIBRATE declination 1.92 0 1 11.52 255.39 -2.14 1 2 6.17 236.39 -40.65 2 2a 6.52 255.38 6.40 2 2b 16.05 260.62 2.14 2 3 7.39 235.62 -70.29 3 4 1.39 273.05 -6.62 4 5 3.40 287.44 -44.34 5 6 4.60 293.16 -4.18 6 7 4.24 229.04 6.75 *END Feb2010 *BEGIN Apr2010 *CALIBRATE declination 1.92 0 1 4.63 216.00 14.00 1 2 2.55 79.00 30.00 2 3 4.25 57.00 57.00 0 4 4.35 283.00 -33.00 4 5 5.32 208.00 -2.00 4 6 3.56 286.00 15.00 4 7 4.44 320.00 -59.00 7 8 2.45 32.00 0.00 8 9 2.45 36.00 21.00 9 10 2.36 134.00 37.00 10 11 3.15 50.00 13.00 5 12 5.75 250.00 -12.00 12 13 8.85 66.00 -14.00 13 14 2.60 0.00 -90.00 12 15 2.45 15.00 12.00 15 16 6.30 39.00 20.00 16 17 8.25 253.00 4.00 17 18 7.50 283.00 -11.00 18 19 1.78 228.00 -33.00 19 20 3.50 279.00 -26.00 20 21 2.65 223.00 -30.00 21 22 4.80 248.00 -8.00 22 23 2.15 282.00 -2.00 16 24 5.00 28.00 9.00 16 25 10.65 58.00 20.00 12 26 6.10 129.00 22.00 12 27 4.00 216.00 -18.00 27 28 3.40 237.00 -30.00 28 29 5.00 91.00 4.00 28 30 9.50 215.00 -3.00 30 31 3.65 197.00 -10.00 31 32 2.10 225.00 -10.00 32 33 2.30 171.00 -28.00 33 34 3.70 248.00 0.00 33 35 9.05 70.00 -39.00 35 36 4.10 96.00 12.00 36 37 8.35 57.00 47.00 37 38 2.35 31.00 29.00 38 39 8.50 95.00 22.00 39 40 9.50 65.00 40.00 41 42 2.85 197.00 -30.00 42 28 1.54 260.00 -28.00 44 45 3.40 190.00 -11.00 45 46 5.00 213.00 -4.00 46 24 8.80 212.00 0.00 *END Apr2010 *BEGIN sideA *CALIBRATE declination 1.92 0 1 2.79 292.00 3.00 1 2 1.53 287.00 10.00 2 3 7.12 237.00 -7.00 *END sideA *BEGIN GoldiesWay *CALIBRATE declination 1.92 *EQUATE Pt2.0 Pt1.12 *EQUATE Pt3.0 Pt2.11 *EQUATE Pt4.4 Pt1.3 *EQUATE Pt4.15 Pt1.4 *EQUATE Pt5.25 Pt2.5 *EQUATE Pt1.8 Goldies_Extension.7 *BEGIN Pt1 *CALIBRATE declination 1.92 0 1 5.89 266.26 -7.50 1 2 3.02 249.05 19.48 2 3 8.07 269.84 2.90 3 3a 2.09 56.66 -23.54 3 3b 4.58 67.59 -28.89 3 4 6.09 260.07 -4.49 4 4a 8.65 52.01 -9.11 4 5 1.15 60.70 16.85 5 6 5.88 261.78 -2.13 6 7 10.19 251.72 -5.18 7 8 4.36 238.96 -25.25 8 9 1.86 217.58 0.23 9 10 6.97 253.21 1.86 10 11 1.11 170.54 -16.23 11 12 12.65 254.48 3.40 12 13 4.15 14.49 -8.32 13 13a 0.30 51.97 0.29 13 14 3.13 252.22 -5.46 14 15 3.26 47.31 11.56 15 15a 5.30 269.34 -37.59 15 16 6.27 63.63 6.92 16 17 7.02 88.85 -7.43 17 8 7.02 93.37 -7.11 *END Pt1 *BEGIN Goldies_Extension *CALIBRATE declination 1.78 1 0 3.38 63.00 6.00 2 1 7.60 44.00 14.00 3 2 3.99 109.00 7.00 4 3 5.90 226.00 -52.00 5 3 12.15 32.00 -10.00 6 5 7.76 40.00 12.00 7 6 6.69 280.00 -6.00 *END Goldies_Extension *BEGIN Pt2 *CALIBRATE declination 1.92 0 1 2.96 256.43 -8.65 1 2 8.82 209.10 7.48 2 3 2.95 253.09 -16.93 3 4 8.31 202.46 3.53 4 5 6.05 192.34 -6.04 5 6 4.31 225.23 -76.28 6 6a 8.21 237.84 -7.63 6 7 10.39 70.54 -11.57 7 8 6.94 63.68 38.70 8 9 9.62 90.47 -2.89 9 10 4.10 81.21 -26.71 10 11 10.22 66.08 -20.01 11 12 6.52 53.47 -6.59 12 12a 3.10 46.81 1.63 12 12b 2.35 97.36 -3.67 *END Pt2 *BEGIN Pt3 *CALIBRATE declination 1.92 0 1 3.02 177.74 -26.39 1 2 5.51 244.31 -0.54 2 3 10.34 220.26 -3.38 3 4 1.87 165.06 1.50 4 5 7.10 69.99 -1.25 5 6 3.16 210.95 -13.85 6 6a 10.45 73.82 0.76 *END Pt3 *BEGIN Pt4 *CALIBRATE declination 1.92 4 5 1.89 54.00 -17.00 5 6 6.71 70.00 -8.00 6 7 1.50 59.00 -19.00 7 8 2.82 23.00 -9.00 8 9 2.09 328.00 7.00 9 10 3.39 246.00 1.00 10 11 0.86 280.00 25.00 11 12 1.27 9.00 -13.00 12 13 0.99 317.00 5.00 11 14 5.43 246.00 0.00 14 15 6.75 230.00 9.00 *END Pt4 *BEGIN Pt5 *CALIBRATE declination 1.92 16 17 5.51 24.00 -34.00 17 18 5.22 13.00 -4.00 17 19 9.10 70.00 0.00 20 21 7.18 62.00 -49.00 21 22 6.06 82.00 0.00 22 18 2.76 10.00 15.00 18 26 2.14 94.00 0.00 26 25 5.05 47.00 -4.00 23 24 10.87 70.00 0.00 24 25 5.27 0.00 90.00 *END Pt5 *END GoldiesWay *END GodKnows *BEGIN RealSimaBaz *EQUATE pt2.39 pt1.15 *EQUATE pt1.0 pt3.9 *EQUATE pt2.0 pt4.0 *EQUATE pt4.12 pt5.0 *EQUATE pt2.12 TomsAntic.32 *BEGIN pt1 *CALIBRATE declination 1.78 1 0 5.00 35.00 13.00 2 1 14.40 68.00 2.00 3 2 8.60 64.00 -1.00 4 3 3.92 104.00 -1.00 5 4 8.14 65.00 -1.00 6 5 3.91 61.00 -8.00 7 6 1.96 147.00 -20.00 8 7 9.37 50.00 0.00 9 8 3.51 117.00 -5.00 10 9 3.66 55.00 2.00 11 10 5.13 67.00 -1.00 12 11 1.64 185.00 1.00 13 12 5.14 57.00 8.00 14 13 3.94 94.00 -37.00 15 14 5.98 69.00 -16.00 *END pt1 *BEGIN pt2 *CALIBRATE declination 1.67 0 1 7.55 323.00 16.00 1 2 13.00 37.00 11.00 2 3 13.62 80.00 -14.00 3 4 5.70 74.00 -30.00 4 5 26.15 75.00 1.00 5 6 8.53 72.00 1.50 6 7 11.70 90.00 -10.50 7 8 6.60 64.00 5.00 8 9 3.85 77.00 -10.00 9 10 6.55 78.00 -4.00 10 11 27.90 60.00 1.00 11 12 21.15 60.00 1.50 12 13 17.00 90.00 15.00 12 14 5.70 134.00 -14.00 14 15 3.00 212.00 5.00 15 16 5.05 82.00 -7.00 16 17 2.65 151.00 -8.00 17 18 3.03 245.00 3.00 18 19 4.65 202.00 1.50 19 20 3.73 222.00 -11.00 20 21 12.49 80.00 0.00 21 22 2.42 64.00 -5.00 22 23 4.75 90.00 0.00 23 25 7.90 82.00 1.00 25 26 5.25 48.00 2.00 26 27 2.95 65.00 3.50 27 28 6.80 44.00 -7.00 28 29 5.60 69.00 -3.00 29 30 3.13 59.00 2.00 30 31 2.15 127.00 1.50 31 32 7.90 41.00 -2.00 32 33 3.38 150.00 -5.00 33 34 3.97 57.00 1.00 34 35 3.65 178.00 -6.00 35 36 4.69 65.00 -2.00 36 37 3.00 98.00 -8.00 37 38 2.25 83.00 -9.00 39 38 1.90 214.00 -20.00 *END pt2 *BEGIN pt3 *CALIBRATE declination 1.67 1 0 13.39 33.00 -1.00 1 2 7.97 263.00 3.00 2 3 7.90 238.00 30.00 2 4 5.53 254.00 0.00 4 5 4.25 238.00 1.00 5 6 4.76 253.00 2.00 6 7 2.51 240.00 1.00 7 8 3.70 37.00 0.00 8 9 7.51 251.00 4.00 *END pt3 *BEGIN pt4 *CALIBRATE declination 1.67 0 1 2.85 172.00 -4.00 1 2 7.57 257.00 10.00 2 3 3.93 262.00 -6.00 3 4 1.83 235.00 2.00 4 5 1.77 315.00 2.00 5 6 3.50 226.00 2.00 6 7 4.05 185.00 5.00 7 8 13.45 257.00 3.00 9 8 3.82 268.00 5.00 9 10 25.15 257.00 1.00 10 11 6.26 257.00 8.00 11 12 15.55 232.00 0.50 12 13 6.45 260.00 0.00 13 14 4.15 271.00 5.00 14 15 6.66 240.00 3.00 15 16 8.10 258.00 5.00 16 17 7.35 260.00 9.00 17 18 7.30 270.00 -1.00 18 19 5.70 255.00 4.00 19 20 8.90 342.00 -1.00 20 21 10.00 270.00 1.00 19 22 10.90 165.00 2.00 *END pt4 *BEGIN pt5 *CALIBRATE declination 1.67 1 0 3.44 121.00 -30.00 2 1 2.40 60.00 -32.00 3 2 6.00 327.00 0.00 4 3 1.90 12.00 -6.00 5 4 2.38 76.00 3.00 6 5 5.10 324.00 -16.00 *END pt5 *BEGIN TomsAntic *CALIBRATE declination 1.67 0 1 13.50 82.00 -2.00 1 2 5.10 51.00 1.00 2 3 8.00 75.00 -6.00 3 5 4.20 65.00 4.00 5 6 18.00 86.00 2.00 6 7 5.30 75.00 -2.00 7 8 5.10 12.00 2.00 8 9 1.60 257.00 -24.00 9 10 5.80 314.00 -30.00 9 11 15.60 77.00 11.00 11 12 11.65 82.00 0.00 3 25 4.67 182.00 -75.00 25 26 1.90 222.00 -17.00 26 27 5.00 245.00 0.00 27 28 5.00 238.00 2.00 28 29 9.00 232.00 2.00 29 30 1.75 292.00 1.00 30 31 7.30 221.00 -1.00 31 32 0.73 31.00 -24.00 *END TomsAntic *END RealSimaBaz *BEGIN PullUpPassage *CALIBRATE declination 2.08 *EQUATE pt1.6 pt2.0 *EQUATE pt1.4 pt3.0 *EQUATE pt3.3 pt4.0 *EQUATE pt4.3 pt5.0 *BEGIN pt1 *CALIBRATE declination 2.08 0 1 40.75 86.09 -1.69 1 2 3.24 131.09 77.58 2 3 7.16 203.24 10.00 3 4 5.71 243.86 -42.02 4 5 8.26 260.38 2.68 5 6 5.51 245.45 -6.17 6 7 3.52 300.34 17.85 7 8 6.08 266.26 8.27 *END pt1 *BEGIN pt2 *CALIBRATE declination 2.08 0 1 3.34 259.17 16.03 1 2 5.52 247.74 -17.23 2 3 3.29 207.11 -15.06 3 4 3.78 193.88 16.58 4 4a 5.48 17.86 1.10 4 4b 2.03 143.75 0.57 4 4c 5.41 321.28 3.08 4 4d 2.88 235.96 5.48 *END pt2 *BEGIN pt3 *CALIBRATE declination 2.08 0 1 4.37 219.84 27.47 1 2 4.61 199.51 -0.76 2 3 5.19 211.46 19.49 *END pt3 *BEGIN pt4 *CALIBRATE declination 2.08 1 0 6.92 39.00 16.00 1 2 27.80 72.00 -5.00 2 3 11.08 84.00 -5.00 *END pt4 *BEGIN pt5 *CALIBRATE declination 2.08 0 1 6.94 87.38 6.53 1 2 2.75 102.64 7.52 2 3 4.41 208.25 -9.13 3 4 3.32 216.64 15.70 4 4a 4.06 86.83 2.72 4 4b 0.78 44.40 2.95 4 4c 2.80 162.77 10.78 4 4d 2.16 253.72 3.30 4 4e 2.41 218.78 7.54 4 4f 3.54 177.56 6.30 4 5 7.36 92.52 0.29 5 6 5.50 65.40 -8.66 6 7 7.67 93.16 -1.29 7 7a 4.28 227.54 7.32 7 8 7.25 94.25 -0.54 8 9 4.93 81.43 -0.41 9 10 7.08 69.93 6.82 9 11 10.69 240.97 -2.24 *END pt5 *END PullUpPassage *BEGIN PullUpPassageMaze *CALIBRATE declination 2.08 *EQUATE pt1.1 pt2.0 *EQUATE pt1.27 pt3.0 *EQUATE pt3.2 pt4.0 *EQUATE pt4.12 pt5.0 *EQUATE pt5.6 pt6.0 *EQUATE pt6.0 pt7.0 *EQUATE pt5.5 pt8.0 *EQUATE pt3.1 pt9.0 *EQUATE pt9.3 pt10.0 *BEGIN pt1 *CALIBRATE declination 2.08 *EQUATE 1 1A 1 4 4.03 315.00 -43.00 4 5 9.61 270.00 5.00 5 6 2.40 304.00 -7.00 6 7 16.50 269.00 1.00 7 8 7.46 257.00 12.00 8 9 2.83 300.00 -2.00 9 10 4.59 253.00 2.00 10 11 2.54 199.00 -4.00 11 12 9.39 264.00 0.00 12 13 4.20 253.00 5.00 13 14 7.86 238.00 1.00 14 15 2.50 238.00 0.00 15 16 6.80 258.00 -5.00 16 17 4.41 97.00 2.00 17 18 2.69 76.00 0.00 18 19 6.16 65.00 3.00 19 20 5.90 87.00 -12.00 20 21 3.11 100.00 -14.00 21 22 4.58 97.00 5.00 11 23 7.03 93.00 2.00 23 24 4.56 83.00 0.00 24 25 6.55 100.00 -3.00 25 26 1.72 149.00 7.00 26 27 10.69 213.00 0.00 27 28 5.79 82.00 -10.00 28 29 2.73 63.00 0.00 29 30 3.65 0.00 17.00 30 31 8.12 88.00 -4.00 31 32 5.12 94.00 -4.00 32 33 4.70 120.00 -16.00 33 34 2.31 154.00 24.00 34 35 2.99 199.00 1.00 35 36 3.67 238.00 -50.00 36 37 4.05 261.00 19.00 37 38 4.33 281.00 11.00 38 39 3.72 262.00 3.00 39 40 2.14 281.00 -2.00 40 41 3.78 267.00 6.00 41 42 2.20 283.00 1.00 33 43 7.55 90.00 -25.00 43 44 2.97 75.00 -24.00 44 45 5.13 77.00 57.00 45 46 7.49 76.00 3.00 46 47 4.49 86.00 -8.00 47 48 4.12 90.00 -1.00 45 49 10.38 300.00 -1.00 49 50 3.81 18.00 -55.00 50 1A 2.69 114.00 20.00 16 16A 1.00 0.00 90.00 16A 16B 5.00 280.00 -3.00 *END pt1 *BEGIN pt2 *CALIBRATE declination 2.08 0 1 15.29 256.80 11.90 1 2 7.40 277.06 -2.46 2 2a 2.32 149.11 7.25 2 2b 7.97 206.88 1.29 2 2c 5.52 250.63 0.94 2 2d 2.63 321.41 4.58 2 2e 3.63 60.43 12.63 *END pt2 *BEGIN pt3 *CALIBRATE declination 2.08 0 1 4.03 220.55 -47.33 1 2 7.03 213.05 -19.06 2 3 2.44 254.03 33.49 3 4 5.92 273.43 18.84 4 5 3.23 262.53 -7.22 *END pt3 *BEGIN pt4 *CALIBRATE declination 2.08 0 1 5.77 74.59 14.11 1 2 3.71 129.45 15.86 2 2a 0.26 234.99 5.91 2 3 4.15 65.22 22.96 3 4 5.41 102.66 -5.06 4 4a 0.22 49.08 -64.63 4 4b 2.96 218.06 -64.63 4 4c 0.73 340.79 -64.63 4 5 4.77 74.80 -0.05 5 6 7.30 82.88 -26.18 6 7 5.71 241.16 -0.27 7 8 2.87 248.77 -27.80 8 9 4.97 240.95 0.58 9 9a 10.35 258.92 1.12 9 10 3.82 124.34 17.25 10 10a 1.03 22.85 -9.66 10 10b 5.67 204.23 14.09 10 11 3.71 95.37 34.64 11 12 3.09 77.13 28.32 12 13 3.21 83.29 51.90 13 14 8.13 78.56 14.35 14 15 4.50 59.92 32.07 15 16 8.69 288.96 86.53 *END pt4 *BEGIN pt5 *CALIBRATE declination 2.08 0 1 1.27 215.01 -30.38 1 2 6.83 254.29 -10.69 2 3 4.76 270.61 31.33 3 4 3.39 251.63 -31.96 4 5 5.23 278.22 -20.04 5 5a 1.00 184.64 1.49 5 5b 2.55 244.69 -0.42 5 6 4.09 214.01 5.72 6 6a 1.18 302.47 -0.34 6 7 7.11 81.59 12.61 *END pt5 *BEGIN pt6 *CALIBRATE declination 2.08 0 1 3.39 264.41 24.77 1 1a 0.81 174.14 3.58 1 2 2.24 283.34 42.95 1 3 4.71 211.24 -6.23 *END pt6 *BEGIN pt7 *CALIBRATE declination 2.08 0 1 1.44 43.24 -1.22 1 2 4.88 205.53 8.74 *END pt7 *BEGIN pt8 *CALIBRATE declination 2.08 0 1 2.09 70.26 -32.50 1 2 3.16 18.25 15.01 2 2a 2.42 270.76 3.29 2 2b 3.16 21.74 11.91 2 2c 7.41 88.61 -9.58 *END pt8 *BEGIN pt9 *CALIBRATE declination 2.08 0 1 1.68 280.97 -3.78 1 2 2.57 256.13 13.11 2 3 2.72 258.81 48.02 3 3a 0.95 89.10 -8.66 3 3b 1.51 275.86 1.84 3 4 9.81 261.35 -15.80 *END pt9 *BEGIN pt10 *CALIBRATE declination 2.08 0 1 54.34 215.57 85.82 *END pt10 *END PullUpPassageMaze *BEGIN BeyondFlashbulbNorth *CALIBRATE declination 2.08 0 1 4.81 280.18 -34.10 1 1a 1.80 152.12 -5.30 1 1b 0.98 287.66 1.93 1 1c 3.22 99.22 -4.41 2 1 14.66 136.20 -84.61 2 2a 0.47 2.06 3.73 2 2b 0.34 177.67 2.24 3 2 2.05 110.62 -34.65 3 3a 1.42 106.59 -3.93 3 3b 0.86 255.92 -0.31 4 3 1.85 93.90 -7.78 4 4a 2.74 242.67 -1.17 4 4b 3.50 279.44 0.83 4 5 6.08 252.21 53.48 5 5a 2.49 86.08 -0.27 5 5b 2.83 187.08 4.20 5 5c 3.55 23.31 4.56 5 6 10.24 231.91 9.49 6 7 1.86 328.80 -0.11 7 7a 4.80 314.01 74.03 7 8 5.76 231.29 6.99 8 9 2.43 206.23 -8.49 9 10 4.51 197.94 1.49 10 11 4.70 110.28 -21.44 *END BeyondFlashbulbNorth *BEGIN VampireGallery *CALIBRATE declination 2.08 0 1 7.09 43.00 -3.00 1 2 5.11 123.00 0.00 2 3 3.55 76.00 7.00 3 4 3.93 95.00 0.00 3 5 6.81 5.00 10.00 5 6 3.97 28.00 -17.00 6 7 5.70 310.00 1.00 7 8 5.53 5.00 11.00 8 9 4.25 46.00 10.00 9 10 6.51 288.00 28.00 10 11 9.95 162.00 -7.00 11 12 12.94 221.00 -3.00 10 13 21.87 48.00 0.00 13 14 37.87 50.00 -1.00 14 15 8.49 78.00 -3.00 15 16 13.76 56.00 0.00 16 17 8.93 324.00 5.00 17 18 4.24 69.00 29.00 18 19 10.34 94.00 0.00 18 20 15.78 266.00 -7.00 20 21 4.38 261.00 11.00 21 22 4.86 280.00 10.00 22 23 13.60 248.00 -2.00 16 24 11.40 91.00 -2.00 24 25 7.48 40.00 0.00 25 26 4.27 29.00 1.00 26 27 4.52 292.00 -5.00 27 28 2.96 340.00 -4.00 28 29 7.98 269.00 3.00 29 30 1.96 340.00 -10.00 30 31 3.75 43.00 0.00 31 32 3.67 90.00 3.00 32 33 3.64 80.00 0.00 33 34 4.33 32.00 -4.00 34 35 3.12 45.00 -7.00 *END VampireGallery *BEGIN VampireGalleryExtension *CALIBRATE declination 1.92 0 1 4.02 325.00 31.00 1 2 3.10 53.00 43.00 2 3 5.53 222.00 8.00 3 4 11.27 233.00 -1.50 4 5 14.20 241.00 1.00 5 6 11.00 235.00 2.70 2 7 17.34 55.00 4.00 *END VampireGalleryExtension *BEGIN DogSeries *EQUATE Aug09_Resurvey.46 Mar10_Resurvey.1 *EQUATE Traverse.9 Aug09_Resurvey.43 *EQUATE CarolsCrawl.44 Aug09_Resurvey.44 *BEGIN Aug09_Resurvey *CALIBRATE declination 2.08 36 37 6.49 277.00 -4.00 37 38 6.28 237.00 -4.00 38 39 8.12 252.00 -3.00 39 40 5.34 256.00 3.00 40 41 12.57 277.00 22.00 39 42 9.97 43.00 32.00 42 43 6.16 302.00 30.00 43 44 3.91 301.00 19.00 44 45 16.18 272.00 4.00 45 46 9.68 273.00 -2.00 *END Aug09_Resurvey *BEGIN Mar10_Resurvey *CALIBRATE declination 1.92 1 2 7.49 293.00 -23.00 2 3 4.76 235.00 -23.00 3 4 11.90 313.00 15.00 4 5 16.05 46.00 4.00 5 6 6.67 26.00 7.00 6 7 6.07 335.00 9.00 7 8 9.68 69.00 11.00 4 9 4.12 40.00 3.00 9 10 12.68 310.00 20.00 10 11 2.88 303.00 0.00 11 12 9.84 260.00 1.00 7 13 6.37 310.00 17.00 13 14 7.83 233.00 0.00 14 15 5.16 295.00 -2.00 15 15a 9.20 0.00 90.00 13 16 8.75 47.00 0.00 16 17 5.03 72.00 1.00 16 18 5.79 286.00 3.00 4 19 1.68 192.00 7.00 19 20 13.03 245.00 -5.00 20 21 6.54 274.00 29.00 21 22 11.94 31.00 0.00 22 23 8.10 45.00 26.00 22 24 6.76 273.00 -1.00 24 25 6.38 259.00 -3.00 25 26 6.68 262.00 0.00 26 27 14.17 233.00 -1.00 27 28 10.84 251.00 2.00 28 29 11.49 301.00 2.00 29 30 4.65 167.00 -16.00 30 31 15.81 259.00 3.00 31 32 3.93 272.00 -4.00 32 33 8.55 252.00 1.00 33 34 7.75 301.00 10.00 34 35 5.49 346.00 -2.00 35 36 12.70 260.00 3.00 29 37 11.95 75.00 3.00 40 39 9.38 276.00 3.00 39 38 5.76 205.00 -1.00 38 37 4.87 204.00 1.00 42 41 9.37 77.00 -2.00 21 41 2.77 219.00 5.00 19 43 17.73 211.00 -17.00 43 44 4.89 237.00 -5.00 44 45 9.31 92.00 -8.00 45 46 11.47 89.00 -5.00 46 47 7.00 214.00 5.00 47 48 9.13 267.00 5.00 46 49 2.49 36.00 6.00 49 50 7.93 95.00 -3.00 50 51 5.21 57.00 -2.00 51 52 6.41 67.00 23.00 52 53 3.00 3.00 -3.00 53 54 8.30 256.00 -6.00 54 55 9.36 261.00 -1.00 55 46 6.62 197.00 -12.00 55 56 3.75 300.00 18.00 56 57 5.52 33.00 7.00 57 58 6.00 15.00 7.00 58 59 4.03 7.00 3.00 59 60 3.29 94.00 21.00 60 1 6.79 103.00 24.00 *END Mar10_Resurvey *BEGIN Traverse *CALIBRATE declination 1.92 0 1 8.88 230.00 4.00 1 2 8.73 108.00 1.00 2 3 5.00 143.00 3.00 3 4 3.69 118.00 0.00 1 5 10.79 250.00 1.00 5 6 13.75 221.00 0.00 6 7 5.43 247.00 -7.00 0 8 6.92 335.00 1.00 8 9 8.19 290.00 -18.00 10 7 1.73 75.00 33.00 11 10 10.82 37.00 26.00 *END Traverse *BEGIN CarolsCrawl *CALIBRATE declination 1.92 44 1 4.12 50.00 14.00 1 2 6.71 36.00 12.00 2 3 3.55 52.00 3.00 3 4 4.59 107.00 -4.00 4 5 1.73 58.00 6.00 5 6 6.86 94.00 -2.00 6 7 0.81 185.00 -5.00 7 8 7.69 88.00 2.00 8 9 3.40 0.00 -90.00 *END CarolsCrawl *END DogSeries *BEGIN BazsPitch *CALIBRATE declination 6.89 24 30 4.20 113.00 0.00 30 31 6.70 0.00 90.00 31 32 3.50 201.00 0.00 32 33 12.30 229.00 0.00 33 34 3.60 239.00 0.00 34 35 4.10 227.00 15.00 35 36 9.00 0.00 90.00 36 37 6.70 213.00 0.00 37 38 2.20 72.00 0.00 38 39 7.70 56.00 0.00 39 40 9.70 207.00 0.00 40 41 2.40 207.00 0.00 41 42 5.20 208.00 0.00 42 43 3.20 292.00 0.00 43 44 4.60 270.00 0.00 44 45 11.70 222.00 0.00 45 46 21.40 109.00 0.00 46 47 15.20 82.00 0.00 47 48 11.00 71.00 0.00 48 49 12.40 151.00 0.00 49 50 27.00 65.00 0.00 50 50a 10.00 0.00 -90.00 50a 51 10.10 62.00 0.00 51 52 23.80 209.00 0.00 52 53 24.40 68.00 0.00 53 54 7.40 123.00 0.00 54 55 10.80 90.00 0.00 55 56 5.90 94.00 0.00 56 57 7.00 30.00 0.00 57 58 9.20 71.00 0.00 58 59 3.00 0.00 -90.00 59 60 11.30 63.00 0.00 60 61 15.50 71.00 0.00 61 62 6.90 133.00 0.00 *END BazsPitch *END 0107_Uzueka CaveConverter_src/test/data/regression/Uzu-Gour_ps_ref.svx0000644000000000000000000003522113030252172023034 0ustar rootroot*BEGIN Uzu-Gour090410 *EQUATE 134.44 153.0 *BEGIN 153 *DATE 2009.04.10 *CALIBRATE declination 2.01 *FLAGS SPLAY 0 0a 0.66 310.69 9.16 0 0b 1.17 138.22 11.97 0 0c 1.62 80.27 84.63 0 0d 1.32 136.77 -83.24 *FLAGS NOT SPLAY 0 1 4.01 55.12 2.88 *FLAGS SPLAY 1 1a 0.67 357.48 5.13 1 1b 1.24 169.73 4.45 1 1c 6.48 131.19 71.93 1 1d 1.27 111.18 -86.81 *FLAGS NOT SPLAY 1 2 6.67 109.20 -1.37 *FLAGS SPLAY 2 2a 0.71 12.77 -2.39 2 2b 0.97 175.96 -0.60 2 2c 2.48 5.80 77.81 2 2d 1.16 80.73 -86.86 *FLAGS NOT SPLAY 2 3 7.57 82.82 -1.46 *FLAGS SPLAY 3 3a 1.07 299.77 -0.43 3 3b 0.70 116.08 5.84 3 3c 5.83 351.61 76.20 3 3d 0.88 309.05 -87.42 *FLAGS NOT SPLAY 3 4 15.71 17.50 1.20 *FLAGS SPLAY 4 4a 1.95 226.25 -0.27 4 4b 0.46 66.80 13.93 4 4c 5.65 182.84 82.67 4 4d 1.04 275.59 -86.30 *FLAGS NOT SPLAY 4 5 2.73 244.54 2.61 *FLAGS SPLAY 5 5a 2.10 11.50 -1.38 5 5b 5.42 302.47 83.96 5 5c 1.23 134.51 -88.40 *FLAGS NOT SPLAY 5 6 4.22 318.30 0.41 *FLAGS SPLAY 6 6a 5.31 71.33 24.03 6 6b 0.72 307.95 86.30 6 6c 1.80 125.36 -84.77 *FLAGS NOT SPLAY 6 7 4.92 29.58 -2.12 *FLAGS SPLAY 7 7a 1.72 326.24 -2.97 7 7b 4.86 114.49 33.83 7 7c 1.49 119.34 82.62 7 7d 0.88 52.77 -83.97 *FLAGS NOT SPLAY 7 8 9.81 58.72 0.94 *FLAGS SPLAY 8 8a 0.60 30.89 4.65 8 8b 1.40 194.75 6.76 8 8c 1.87 143.21 80.26 8 8d 1.17 163.90 -84.89 *FLAGS NOT SPLAY 8 9 8.60 128.70 -6.68 *FLAGS SPLAY 9 9a 1.22 16.91 8.45 9 9b 1.01 194.87 -5.80 9 9c 1.19 115.77 79.03 9 9d 0.26 324.87 -86.69 *FLAGS NOT SPLAY 9 10 5.68 82.92 5.68 *FLAGS SPLAY 10 10a 1.20 327.38 -6.61 10 10b 0.95 146.85 7.78 10 10c 1.56 51.96 85.81 10 10d 0.76 270.01 -85.55 *FLAGS NOT SPLAY 10 11 6.56 44.65 4.54 *FLAGS SPLAY 11 11a 1.06 323.36 10.84 11 11b 1.22 147.77 -0.82 11 11c 3.26 239.56 88.17 11 11d 1.18 137.10 -80.05 *FLAGS NOT SPLAY 11 12 9.03 72.19 1.22 *FLAGS SPLAY 12 12a 1.22 333.74 -2.77 12 12b 0.39 157.20 6.88 12 12c 9.07 306.85 88.13 12 12d 1.17 32.13 -85.98 *FLAGS NOT SPLAY 12 13 3.05 46.22 1.28 *FLAGS SPLAY 13 13a 0.96 333.36 11.12 13 13b 1.08 162.52 0.43 13 13c 9.41 103.09 74.92 13 13d 1.51 134.98 -73.22 *FLAGS NOT SPLAY 13 14 6.89 86.27 -0.51 *FLAGS SPLAY 14 14a 1.06 337.15 -3.35 14 14b 7.65 102.01 82.12 14 14c 1.29 173.81 -89.40 *FLAGS NOT SPLAY 14 15 6.61 61.48 0.09 *FLAGS SPLAY 15 15a 1.54 303.07 -1.24 15 15b 0.24 134.42 12.32 15 15c 6.36 9.40 84.82 15 15d 1.07 310.69 -84.97 *FLAGS NOT SPLAY 15 16 5.13 18.53 -1.21 *FLAGS SPLAY 16 16a 0.55 311.69 6.18 16 16b 1.30 135.99 -4.45 16 16c 1.40 58.32 82.47 16 16d 1.10 224.97 -87.41 *FLAGS NOT SPLAY 16 17 6.85 62.63 2.01 *FLAGS SPLAY 17 17a 1.38 167.09 -2.95 17 17b 4.99 102.11 87.59 17 17c 1.18 212.70 -86.61 *FLAGS NOT SPLAY 17 18 5.38 102.18 1.22 *FLAGS SPLAY 18 18a 1.27 16.14 3.17 18 18b 11.11 43.73 75.72 18 18c 1.38 180.93 -87.42 *FLAGS NOT SPLAY 18 19 2.60 105.49 -1.05 ;19=stn 60 from August 2008 *FLAGS SPLAY 19 19a 1.43 243.30 5.15 19 19b 5.18 94.35 80.68 19 19c 1.11 212.90 -87.67 *FLAGS NOT SPLAY 19 20 6.94 178.17 -2.10 *FLAGS SPLAY 20 20a 0.41 85.52 6.85 20 20b 0.70 269.28 4.70 20 20c 2.87 290.90 87.19 20 20d 1.04 329.38 -84.46 *FLAGS NOT SPLAY 20 21 4.01 196.07 3.14 *FLAGS SPLAY 21 21a 1.43 76.94 2.96 21 21b 0.64 246.93 0.76 21 21c 5.24 171.27 84.67 21 21d 1.07 306.36 -85.58 *FLAGS NOT SPLAY 21 22 4.15 139.28 -0.15 *FLAGS SPLAY 22 22a 0.35 96.03 4.53 22 22b 3.67 279.77 20.06 22 22c 0.96 136.65 84.20 22 22d 1.17 260.34 -85.03 *FLAGS NOT SPLAY 22 23 4.71 205.76 -0.38 *FLAGS SPLAY 23 23a 0.67 100.63 7.72 23 23b 0.90 284.24 1.46 23 23c 2.03 266.53 85.53 23 23d 1.14 125.32 -83.92 *FLAGS NOT SPLAY 23 24 6.52 198.45 5.52 *FLAGS SPLAY 24 24a 0.67 118.59 3.67 24 24b 0.94 305.13 0.53 24 24c 4.72 141.69 87.99 24 24d 1.31 293.36 -72.03 *FLAGS NOT SPLAY 24 25 8.69 224.01 -4.26 *FLAGS SPLAY 25 25a 1.78 141.39 18.75 25 25b 1.11 337.22 -0.91 25 25c 1.83 242.61 82.90 25 25d 1.05 299.11 -87.89 *FLAGS NOT SPLAY 25 26 5.69 246.24 2.28 *FLAGS SPLAY 26 26a 2.88 110.99 19.61 26 26b 1.74 123.76 77.81 26 26c 1.18 84.70 -81.34 *FLAGS NOT SPLAY 26 27 2.46 153.10 -9.56 *FLAGS SPLAY 27 27a 1.17 272.63 6.40 27 27b 2.03 148.32 86.47 27 27c 0.82 219.90 -89.23 *FLAGS NOT SPLAY 27 28 16.85 204.24 -2.08 *FLAGS SPLAY 28 28a 1.84 71.44 8.08 28 28b 0.87 257.22 6.27 28 28c 1.10 14.88 73.52 *FLAGS NOT SPLAY 28 29 10.28 139.20 5.65 *FLAGS SPLAY 29 29a 1.66 30.10 15.39 29 29b 0.40 203.86 7.65 29 29c 8.09 67.11 77.32 29 29d 0.83 81.38 -87.37 *FLAGS NOT SPLAY 29 30 5.84 105.83 5.86 *FLAGS SPLAY 30 30a 1.92 7.20 9.53 30 30b 0.44 160.39 4.71 30 30c 3.25 108.05 82.68 30 30d 1.28 255.16 -87.21 *FLAGS NOT SPLAY 30 31 10.74 79.31 -0.95 *FLAGS SPLAY 31 31a 2.96 313.97 15.64 31 31b 0.39 134.29 11.27 31 31c 1.30 77.16 82.61 31 31d 1.17 86.89 -84.64 *FLAGS NOT SPLAY 31 32 5.99 21.29 2.80 *FLAGS SPLAY 32 32a 1.90 156.21 1.51 32 32b 1.71 343.53 87.98 32 32c 1.27 73.92 -84.80 *FLAGS NOT SPLAY 32 33 8.26 124.62 -0.97 *FLAGS SPLAY 33 33a 2.26 3.19 18.54 33 33b 0.77 182.19 6.10 33 33c 3.37 12.67 85.55 33 33d 1.26 246.33 -87.14 *FLAGS NOT SPLAY 33 34 11.46 86.24 0.14 *FLAGS SPLAY 34 34a 0.52 6.08 8.87 34 34b 0.89 187.81 1.74 34 34c 13.04 45.58 80.50 34 34d 1.37 130.80 -82.35 *FLAGS NOT SPLAY 34 35 10.25 104.61 -0.15 *FLAGS SPLAY 35 35a 2.39 334.20 16.80 35 35b 1.56 350.17 81.57 35 35c 1.12 53.73 -85.78 *FLAGS NOT SPLAY 35 36 6.54 36.46 2.80 *FLAGS SPLAY 36 36a 1.08 290.80 -0.12 36 36b 0.26 107.29 9.29 36 36c 4.78 67.20 78.00 36 36d 1.61 127.33 -86.11 *FLAGS NOT SPLAY 36 37 7.85 352.56 0.36 *FLAGS SPLAY 37 37a 1.97 114.20 2.44 37 37b 3.86 29.40 79.16 37 37c 1.50 43.36 -74.01 *FLAGS NOT SPLAY 37 38 12.49 59.58 -0.29 *FLAGS SPLAY 38 38a 3.71 196.43 25.48 38 38b 1.00 101.32 82.16 38 38c 1.14 83.86 -82.25 *FLAGS NOT SPLAY 38 39 6.47 144.30 -0.66 *FLAGS SPLAY 39 39a 1.78 256.50 4.97 39 39b 5.46 245.76 79.39 39 39c 1.40 7.99 -88.60 *FLAGS NOT SPLAY 39 40 12.19 176.62 2.78 *FLAGS SPLAY 40 40a 0.94 294.81 -3.35 40 40b 8.53 269.05 75.20 40 40c 1.86 227.20 -83.19 *FLAGS NOT SPLAY 40 41 8.03 217.50 -3.13 *FLAGS SPLAY 41 41a 0.76 112.64 0.91 41 41b 0.39 300.05 13.28 41 41c 10.11 273.70 83.77 41 41d 1.48 282.10 -85.81 *FLAGS NOT SPLAY 41 42 5.06 197.69 0.74 *FLAGS SPLAY 42 42a 0.82 87.13 -12.02 42 42b 0.91 271.51 28.37 42 42c 9.38 261.83 78.26 42 42d 1.47 332.21 -86.18 *FLAGS NOT SPLAY 42 43 5.14 164.36 -5.75 *FLAGS SPLAY 43 43a 1.24 25.91 -2.84 43 43b 1.28 223.96 28.43 43 43c 1.91 212.36 79.68 43 43d 0.88 286.64 -86.20 *FLAGS NOT SPLAY 43 44 4.12 90.67 -11.48 *FLAGS SPLAY 44 44a 2.41 57.95 5.26 44 44b 1.25 222.00 8.75 44 44c 1.18 198.31 83.84 *FLAGS NOT SPLAY 44 45 12.39 173.99 6.86 *FLAGS SPLAY 45 45a 1.42 43.19 -4.13 45 45b 1.00 215.21 22.64 45 45c 3.52 16.66 74.76 45 45d 1.43 272.80 -85.47 *FLAGS NOT SPLAY 45 46 7.38 104.91 0.82 *FLAGS SPLAY 46 46a 0.98 352.37 -5.19 46 46b 3.91 3.72 83.25 46 46c 1.19 177.07 -85.49 *FLAGS NOT SPLAY 46 47 4.77 61.95 -3.61 *FLAGS SPLAY 47 47a 0.85 309.66 1.57 47 47b 0.51 134.97 21.12 47 47c 5.12 95.91 72.50 47 47d 0.90 178.61 -86.89 *FLAGS NOT SPLAY 47 48 5.77 23.58 0.32 *FLAGS SPLAY 48 48a 0.96 278.66 -1.41 48 48b 0.91 84.37 -1.28 48 48c 8.95 50.33 87.07 48 48d 0.87 154.03 -87.03 *FLAGS NOT SPLAY 48 49 10.87 6.04 2.73 *FLAGS SPLAY 49 49a 3.53 303.46 -22.08 49 49b 1.49 109.10 12.22 49 49c 4.18 271.96 83.18 49 49d 0.25 222.51 -84.71 *FLAGS NOT SPLAY 49 50 1.56 17.64 -9.69 *FLAGS SPLAY 50 50a 3.09 310.29 -16.03 50 50b 1.81 123.41 3.37 50 50c 2.82 107.70 88.07 50 50d 0.87 32.83 -88.59 *FLAGS NOT SPLAY 50 51 11.64 51.10 1.00 *FLAGS SPLAY 51 51a 0.88 291.17 -11.07 51 51b 2.62 163.62 87.41 51 51c 1.34 102.52 -83.95 *FLAGS NOT SPLAY 51 52 6.84 26.57 -5.79 *FLAGS SPLAY 52 52a 1.10 9.43 2.05 52 52b 2.18 183.91 3.39 52 52c 1.06 147.54 83.46 52 52d 0.69 193.69 -84.93 *FLAGS NOT SPLAY 52 53 6.43 119.09 2.67 *FLAGS SPLAY 53 53a 2.46 316.37 -3.18 53 53b 0.35 134.32 6.93 53 53c 1.32 0.65 81.40 53 53d 0.75 219.60 -87.78 *FLAGS NOT SPLAY 53 54 16.81 345.84 -2.23 *FLAGS SPLAY 54 54a 9.48 121.96 18.18 54 54b 1.34 88.18 80.69 54 54c 0.22 128.68 -85.33 *FLAGS NOT SPLAY 54 55 11.67 100.37 4.88 *FLAGS SPLAY 55 55a 0.68 353.36 -0.15 55 55b 5.39 12.73 75.03 55 55c 1.00 50.40 -89.71 *FLAGS NOT SPLAY 55 56 1.66 96.25 -19.79 *FLAGS SPLAY 56 56a 0.40 38.17 6.20 56 56b 1.05 225.93 5.47 56 56c 2.34 96.97 80.74 56 56d 0.56 294.92 -87.67 *FLAGS NOT SPLAY 56 57 5.39 160.71 -4.01 *FLAGS SPLAY 57 57a 1.81 25.53 1.62 57 57b 0.53 220.15 1.24 57 57c 2.27 47.01 85.24 57 57d 0.20 12.33 -85.15 *FLAGS NOT SPLAY 57 58 4.72 73.23 10.43 *FLAGS SPLAY 58 58a 0.33 16.81 2.17 58 58b 1.18 189.78 0.04 58 58c 4.01 77.71 86.61 58 58d 0.94 144.63 -82.64 *FLAGS NOT SPLAY 58 59 5.12 139.83 -5.11 *FLAGS SPLAY 59 59a 1.14 5.50 9.72 59 59b 1.16 165.35 20.33 59 59c 1.39 21.12 85.08 59 59d 0.48 248.26 -87.58 *FLAGS NOT SPLAY 59 60 8.82 75.02 2.73 *FLAGS SPLAY 60 60a 0.97 320.91 -0.74 60 60b 0.25 141.85 1.28 60 60c 7.57 288.95 79.51 60 60d 0.88 71.53 -85.03 *FLAGS NOT SPLAY 60 61 1.71 17.48 9.12 *FLAGS SPLAY 61 61a 0.50 119.39 2.08 61 61b 6.59 87.13 75.75 61 61c 1.17 342.08 -77.77 *FLAGS NOT SPLAY 61 62 7.73 51.94 -4.40 *FLAGS SPLAY 62 62a 1.60 290.77 -0.14 62 62b 0.22 112.40 8.61 62 62c 4.84 289.04 83.90 62 62d 0.54 263.45 -79.21 *FLAGS NOT SPLAY 62 63 2.97 348.14 3.86 *FLAGS SPLAY 63 63a 0.94 108.22 0.43 63 63b 5.02 359.20 80.02 63 63c 0.77 287.97 -88.61 *FLAGS NOT SPLAY 63 64 10.87 23.32 -1.96 *FLAGS SPLAY 64 64a 1.17 132.36 9.67 64 64b 9.31 35.43 83.06 64 64c 0.43 84.37 -84.49 *FLAGS NOT SPLAY 64 65 4.53 55.63 4.73 *FLAGS SPLAY 65 65a 1.40 293.82 8.38 65 65b 8.35 317.08 87.04 65 65c 0.56 60.05 -86.93 *FLAGS NOT SPLAY 65 66 3.19 344.40 -3.15 *FLAGS SPLAY 66 66a 0.92 211.48 9.89 66 66b 0.26 39.37 20.78 66 66c 10.30 235.93 86.42 66 66d 0.51 191.40 -85.42 *FLAGS NOT SPLAY 66 67 2.48 284.81 17.86 *FLAGS SPLAY 67 67a 1.19 61.63 3.00 67 67b 9.55 90.90 83.48 67 67c 1.19 21.67 -82.71 *FLAGS NOT SPLAY 67 68 5.47 5.26 0.23 *FLAGS SPLAY 68 68a 0.91 135.70 2.18 68 68b 10.36 129.84 88.37 68 68c 1.30 90.71 -82.74 *FLAGS NOT SPLAY 68 69 3.21 73.52 0.24 *FLAGS SPLAY 69 69a 0.85 319.91 5.62 69 69b 4.45 346.56 83.35 69 69c 1.22 324.86 -77.89 *FLAGS NOT SPLAY 69 70 6.88 27.74 1.39 *FLAGS SPLAY 70 70a 2.32 330.70 23.53 70 70b 1.41 153.25 28.90 70 70c 2.11 50.40 82.88 70 70d 1.17 116.09 -85.44 *FLAGS NOT SPLAY 70 71 5.88 104.61 4.12 *FLAGS SPLAY 71 71a 0.60 8.59 5.70 71 71b 0.99 182.74 6.14 71 71c 3.45 22.79 85.05 71 71d 1.24 130.89 -84.59 *FLAGS NOT SPLAY 71 72 7.57 99.29 -5.44 *FLAGS SPLAY 72 72a 1.51 348.65 8.10 72 72b 1.10 171.46 5.08 72 72c 11.09 217.02 85.71 72 72d 0.19 293.19 -86.30 *FLAGS NOT SPLAY 72 73 5.64 88.59 15.15 *FLAGS SPLAY 73 73a 3.24 192.60 35.24 73 73b 5.16 123.70 74.79 73 73c 1.35 50.38 -81.74 *FLAGS NOT SPLAY 73 74 2.17 131.37 8.68 *FLAGS SPLAY 74 74a 2.16 342.38 15.27 74 74b 4.56 167.45 21.67 74 74c 12.11 234.38 84.14 74 74d 1.55 294.57 -87.26 *FLAGS NOT SPLAY 74 75 4.57 27.39 14.39 *FLAGS SPLAY 75 75a 0.82 147.55 1.96 75 75b 8.36 189.98 83.08 75 75c 1.10 197.11 -86.67 *FLAGS NOT SPLAY 75 76 8.47 60.80 19.30 *FLAGS SPLAY 76 76a 0.41 359.12 11.97 76 76b 0.92 190.46 10.73 76 76c 1.18 70.36 88.64 76 76d 1.28 120.95 -83.97 *FLAGS NOT SPLAY 76 77 5.73 104.58 0.98 *FLAGS SPLAY 77 77a 0.49 333.81 -8.65 77 77b 2.35 164.36 23.76 77 77c 2.11 45.37 82.47 77 77d 0.34 300.28 -87.27 *FLAGS NOT SPLAY 77 78 5.19 84.19 24.31 *FLAGS SPLAY 78 78a 1.85 189.88 5.06 78 78b 0.42 110.15 87.16 78 78c 0.45 342.41 -88.96 *FLAGS NOT SPLAY 78 79 1.27 102.94 2.43 *data passage station left right up down 0 0.63 1.14 1.61 1.31 1 0.66 1.24 6.16 1.27 2 0.70 0.96 2.42 1.16 3 1.00 0.64 5.66 0.88 4 1.94 0.40 5.60 1.04 5 0.00 2.10 5.39 1.23 6 0.00 4.73 0.72 1.79 7 1.68 3.80 1.48 0.88 8 0.53 1.36 1.84 1.17 9 1.21 1.00 1.17 0.26 10 1.18 0.93 1.56 0.76 11 1.04 1.22 3.26 1.16 12 1.21 0.38 9.07 1.17 13 0.94 1.07 9.09 1.45 14 1.05 0.00 7.58 1.29 15 1.53 0.23 6.33 1.07 16 0.55 1.29 1.39 1.10 17 0.00 1.37 4.99 1.18 18 1.27 0.00 10.77 1.38 19 0.00 1.40 5.11 1.11 20 0.40 0.69 2.87 1.04 21 1.43 0.63 5.22 1.07 22 0.34 3.29 0.96 1.17 23 0.65 0.89 2.02 1.13 24 0.67 0.94 4.72 1.25 25 1.68 1.09 1.82 1.05 26 2.71 0.00 1.70 1.17 27 0.00 1.16 2.03 0.82 28 1.79 0.86 1.05 0.00 29 1.60 0.39 7.89 0.83 30 1.89 0.41 3.22 1.28 31 2.83 0.38 1.29 1.16 32 0.00 1.89 1.71 1.26 33 2.09 0.75 3.36 1.26 34 0.51 0.89 12.86 1.36 35 2.27 0.00 1.54 1.12 36 1.07 0.26 4.68 1.61 37 0.00 1.97 3.79 1.44 38 0.00 3.34 0.99 1.13 39 0.00 1.76 5.37 1.40 40 0.00 0.93 8.25 1.85 41 0.76 0.38 10.05 1.48 42 0.80 0.80 9.18 1.47 43 1.21 1.12 1.88 0.88 44 2.31 1.24 1.17 0.00 45 1.41 0.89 3.40 1.43 46 0.98 0.00 3.88 1.19 47 0.85 0.48 4.88 0.90 48 0.95 0.85 8.94 0.87 49 3.04 1.44 4.15 0.25 50 2.95 1.81 2.82 0.87 51 0.82 0.00 2.62 1.33 52 0.98 2.03 1.05 0.69 53 2.44 0.34 1.31 0.75 54 0.00 8.84 1.32 0.22 55 0.66 0.00 5.21 1.00 56 0.40 1.04 2.31 0.56 57 1.81 0.52 2.26 0.20 58 0.33 1.17 4.00 0.93 59 1.10 0.92 1.38 0.48 60 0.97 0.25 7.44 0.88 61 0.00 0.50 6.39 1.14 62 1.60 0.22 4.81 0.53 63 0.00 0.92 4.94 0.77 64 0.00 1.15 9.24 0.43 65 1.38 0.00 8.34 0.56 66 0.88 0.24 10.28 0.51 67 0.00 1.18 9.49 1.18 68 0.00 0.90 10.36 1.29 69 0.85 0.00 4.42 1.19 70 2.12 1.23 2.09 1.17 71 0.60 0.97 3.44 1.23 72 1.44 1.07 11.06 0.19 73 0.00 2.62 4.98 1.34 74 2.07 4.24 12.05 1.55 75 0.00 0.80 8.30 1.10 76 0.40 0.86 1.18 1.27 77 0.42 2.02 2.09 0.34 78 0.00 1.83 0.42 0.45 *END 153 *END Uzu-Gour090410 CaveConverter_src/test/data/regression/GourAven_ps_ref7.svx0000644000000000000000000001427713030252172023164 0ustar rootroot*BEGIN GourAven2010 *EQUATE 153.58 154.0 *BEGIN 154 *DATE 2010.08.09 *CALIBRATE declination 1.92 0 1 2.24 139.95 28.32 1 2 5.91 70.86 27.68 *FLAGS SPLAY 2 2a 1.17 8.87 6.87 2 2b 1.11 175.45 -0.10 2 2c 5.95 98.10 6.04 2 2d 5.01 277.41 17.22 2 2e 1.04 47.72 83.13 2 2f 1.09 153.35 -85.85 *FLAGS NOT SPLAY 2 3 5.08 327.47 56.76 *FLAGS SPLAY 3 3a 1.82 181.36 -15.46 3 3b 1.33 327.55 17.32 3 3c 1.04 351.41 82.16 3 3d 3.64 226.41 -81.95 *FLAGS NOT SPLAY 3 4 4.92 69.83 23.86 *FLAGS SPLAY 4 4a 0.95 165.48 0.82 4 4b 3.80 331.85 24.88 4 4c 2.96 27.78 70.94 4 4d 1.76 85.45 -85.86 4 4e 13.10 71.82 16.81 4 4f 7.76 33.32 29.66 4 4g 5.74 289.73 15.19 4 4h 5.02 257.83 -9.98 4 4i 2.80 233.18 -16.44 *FLAGS NOT SPLAY 4 5 2.00 337.58 33.09 *FLAGS SPLAY 5 5a 1.67 169.43 -3.02 5 5b 2.00 339.94 5.13 5 5c 1.85 274.03 82.17 5 5d 0.75 63.40 -83.13 *FLAGS NOT SPLAY 5 6 11.33 256.84 -5.02 *FLAGS SPLAY 6 6a 1.21 159.96 0.46 6 6b 3.67 337.52 19.11 6 6c 0.92 247.84 78.92 6 6d 1.13 41.95 -84.98 *FLAGS NOT SPLAY 6 7 4.83 315.41 34.36 *FLAGS SPLAY 7 7a 2.04 300.83 20.04 7 7b 3.28 141.10 -6.14 7 7c 5.23 73.82 81.18 7 7d 1.34 110.40 -86.27 7 7e 4.05 103.53 3.40 7 7f 4.14 69.26 18.44 7 7g 4.71 21.66 32.61 7 7h 3.12 254.93 11.55 7 7i 7.31 221.39 2.77 7 7j 7.08 196.12 -0.28 *FLAGS NOT SPLAY 7 8 10.95 55.71 35.32 *FLAGS SPLAY 8 8a 2.21 141.89 4.58 8 8b 3.30 91.35 82.63 8 8c 1.36 275.45 -87.94 *FLAGS NOT SPLAY 8 9 9.78 65.84 3.27 *FLAGS SPLAY 9 9a 1.71 329.31 8.11 9 9b 0.80 142.99 2.96 9 9c 1.70 334.25 82.05 9 9d 0.61 34.54 -85.87 9 9e 3.98 233.45 -1.12 *FLAGS NOT SPLAY 9 10 4.02 65.03 22.07 *FLAGS SPLAY 10 10a 0.32 331.55 9.28 10 10b 0.25 189.16 11.19 10 10c 0.53 224.81 78.61 10 10d 0.36 85.36 -83.64 *FLAGS NOT SPLAY 10 11 2.66 124.77 6.23 *FLAGS SPLAY 11 11a 1.64 326.77 17.05 11 11b 0.42 169.26 -0.39 11 11c 0.98 164.51 86.78 11 11d 0.26 25.57 -86.76 11 11e 6.44 244.26 -33.76 *FLAGS NOT SPLAY 11 12 4.68 28.23 41.16 *FLAGS SPLAY 12 12a 0.49 163.24 -3.84 12 12b 2.05 326.35 6.05 12 12c 6.64 296.93 79.59 12 12d 3.01 156.92 -82.68 12 12e 3.45 44.58 36.15 12 12f 7.31 45.38 40.15 12 12g 7.44 59.56 40.31 12 12h 5.50 20.21 43.16 12 12i 2.86 2.96 33.73 12 12j 2.89 291.62 14.24 12 12k 2.35 256.10 14.98 12 12l 12.70 20.35 69.18 *FLAGS NOT SPLAY 12 13 4.74 257.83 20.70 *FLAGS SPLAY 13 13a 0.33 143.07 -2.33 13 13b 0.61 117.22 76.36 13 13c 0.84 289.69 -81.40 *FLAGS NOT SPLAY 13 14 3.65 238.14 -5.06 *FLAGS SPLAY 14 14a 0.40 134.05 0.55 14 14b 0.45 325.26 7.61 14 14c 8.22 65.42 88.46 14 14d 0.28 75.71 -85.74 *FLAGS NOT SPLAY 14 15 1.18 304.15 22.54 *FLAGS SPLAY 15 15a 0.29 177.36 -2.22 15 15b 4.62 186.26 82.17 15 15c 0.80 117.91 -84.94 *FLAGS NOT SPLAY 15 16 3.01 254.32 20.56 *FLAGS SPLAY 16 16a 0.31 186.04 14.63 16 16b 0.35 13.09 -6.44 16 16c 0.76 28.25 88.09 16 16d 0.94 254.97 -82.68 *FLAGS NOT SPLAY 16 17 2.80 262.28 32.10 *FLAGS SPLAY 17 17a 1.87 272.52 88.42 17 17b 1.02 46.41 -85.96 17 17c 0.82 86.30 -3.90 *FLAGS NOT SPLAY 17 18 2.51 130.46 27.56 *FLAGS SPLAY 18 18a 1.11 346.65 2.19 18 18b 0.51 253.02 6.82 18 18c 1.91 43.25 -1.46 18 18d 1.81 40.33 85.61 18 18e 0.48 47.06 -88.61 *FLAGS NOT SPLAY 18 19 1.60 82.83 -6.44 *FLAGS SPLAY 19 19a 0.64 247.70 3.08 19 19b 1.37 325.71 78.59 19 19c 0.48 21.99 -87.43 *FLAGS NOT SPLAY 19 20 2.62 206.13 -3.57 *FLAGS SPLAY 20 20a 0.71 324.21 6.09 20 20b 3.67 28.83 83.37 20 20c 0.47 22.70 -85.65 *FLAGS NOT SPLAY 20 21 2.74 273.17 46.82 *FLAGS SPLAY 21 21a 0.77 150.79 -11.23 21 21b 3.23 324.73 31.68 21 21c 1.45 67.41 10.21 21 21d 9.98 19.22 82.51 *FLAGS NOT SPLAY 21 22 5.18 26.78 41.32 *FLAGS SPLAY 22 22a 1.73 308.53 4.45 22 22b 2.17 133.73 2.41 22 22c 11.69 263.63 88.10 22 22d 0.84 270.34 -88.39 22 22e 8.28 215.65 -4.87 22 22f 8.34 236.94 -5.86 22 22g 16.08 233.79 -2.48 22 22h 5.26 1.49 37.58 22 22i 5.75 61.72 37.02 22 22j 6.38 77.99 35.97 *FLAGS NOT SPLAY 22 23 6.09 69.43 35.08 *FLAGS SPLAY 23 23a 0.59 337.77 0.96 23 23b 0.90 158.22 11.19 23 23c 1.97 131.11 80.39 23 23d 1.37 52.83 -84.85 *FLAGS NOT SPLAY 23 24 2.80 330.39 -45.49 *FLAGS SPLAY 24 24a 0.86 96.82 1.32 24 24b 0.84 81.63 84.42 24 24c 0.81 97.55 -86.69 *FLAGS NOT SPLAY 24 25 3.96 24.64 -39.81 *FLAGS SPLAY 25 25a 0.95 319.89 3.51 25 25b 0.67 156.49 -5.81 25 25c 0.69 60.41 -86.00 *FLAGS NOT SPLAY 25 26 2.56 117.72 -45.71 *FLAGS SPLAY 26 26a 1.18 13.93 -5.75 26 26b 1.03 32.39 84.20 26 26c 0.40 312.35 -76.72 *FLAGS NOT SPLAY 26 27 2.20 85.94 -7.90 *FLAGS SPLAY 27 27a 0.98 329.16 1.13 27 27b 0.38 237.47 -79.56 27 27c 0.27 125.51 -0.87 *FLAGS NOT SPLAY 27 28 1.36 72.33 62.56 *FLAGS SPLAY 28 28a 1.45 186.85 -3.82 28 28b 0.32 24.31 -0.28 28 28c 0.59 261.97 -84.55 *FLAGS NOT SPLAY 28 29 1.39 121.96 -18.84 *FLAGS SPLAY 29 29a 0.90 115.27 -1.66 29 29b 1.60 299.34 0.63 29 29c 1.87 125.54 73.79 29 29d 6.93 84.61 -64.07 *FLAGS NOT SPLAY 29 30 0.86 110.32 6.35 30 31 8.52 168.68 -79.71 *data passage station left right up down 0 0.00 0.00 0.00 0.00 1 0.00 0.00 0.00 0.00 2 4.68 5.81 1.03 1.09 3 0.99 0.00 1.03 3.60 4 5.52 9.34 2.80 1.75 5 1.32 1.35 1.84 0.75 6 0.98 2.71 0.90 1.13 7 4.27 4.00 5.17 1.33 8 0.00 2.18 3.27 1.36 9 1.68 0.83 1.69 0.61 10 0.27 0.24 0.52 0.36 11 1.47 1.13 0.98 0.26 12 2.09 5.63 6.53 2.98 13 0.31 0.00 0.60 0.83 14 0.27 0.36 8.22 0.28 15 0.29 0.00 4.58 0.80 16 0.28 0.32 0.76 0.93 17 0.77 0.00 1.87 1.01 18 1.71 0.28 1.80 0.48 19 0.00 0.63 1.34 0.48 20 0.00 0.70 3.65 0.47 21 0.25 1.41 9.90 0.00 22 3.03 2.57 11.68 0.84 23 0.00 0.58 1.94 1.37 24 0.00 0.84 0.83 0.81 25 0.88 0.66 0.00 0.69 26 1.17 0.00 1.02 0.39 27 0.92 0.19 0.00 0.38 28 0.31 1.45 0.00 0.59 29 1.58 0.00 1.80 6.23 30 0.00 0.00 0.00 0.00 *END 154 *END GourAven2010 CaveConverter_src/test/data/regression/Minimal_in.dat0000644000000000000000000000256713030252172022014 0ustar rootrootV SURVEY NAME: A SURVEY DATE: 2 7 01 COMMENT:x SURVEY TEAM: F DECLINATION: 0.42 FORMAT: DMMDUDRLLADN FROM TO LENGTH BEARING INC LEFT UP DOWN RIGHT FLAGS COMMENTS 1 2 85.00 45.00 0.00 10.00 3.00 0.00 10.00 #|L# 2 3 40.25 36.00 0.00 20.00 3.00 0.00 0.00 #|L# 3 4 34.50 325.00 0.00 0.00 10.00 0.00 4.00 a 4 5 25.00 354.00 0.00 4.00 4.00 0.00 0.00 b 5 6 11.67 16.00 0.00 4.00 4.00 0.00 0.00 3 3a 16.40 235.00 25.00 -9.90 -9.90 -9.90 -9.90 #|X# 6 7 59.50 346.00 0.00 0.00 4.00 0.00 4.00 #|L# c 7 8 17.00 201.00 0.00 0.00 5.00 0.00 4.00 tributary enters here on left (looking downstream) 8 9 28.92 323.00 0.00 4.00 5.00 0.00 0.00 #|L# d 9 10 17.83 6.00 0.00 3.00 6.00 0.00 0.00 CaveConverter_src/test/data/regression/nested_series_flags_in.svx0000644000000000000000000000057213033262516024506 0ustar rootroot*begin nested_series_flags *EQUATE 2 inner.2 *EQUATE 3 inner.3 *EQUATE 2 inner.2 1 2 9.08 189.31 -7.43 *FLAGS SPLAY 2 2a 7.47 208.36 -11.11 *begin inner 2 2b 8.06 39.11 14.74 *FLAGS NOT SPLAY 2 3 18.55 116.98 -0.10 *end inner 3 3a 2.10 353.60 5.03 3 3b 8.88 190.22 4.19 *FLAGS NOT SPLAY 3 4 3.94 109.34 5.39 *end nested_series_flags CaveConverter_src/test/data/regression/3218_Piedrashitas_ss_ref.svx0000644000000000000000000000034212560565222024445 0ustar rootroot*BEGIN 3218_Piedrashitas *DATE 2009.04.16 *CALIBRATE declination 2.08 0 1 0.74 239.05 -45.95 1 2 4.54 255.22 -73.00 2 3 2.66 215.41 -63.52 3 4 2.12 233.67 -49.68 4 5 2.17 235.74 -60.93 *END 3218_Piedrashitas CaveConverter_src/test/data/regression/0105_Riano_ref.svx0000644000000000000000000014416512114041274022363 0ustar rootroot*BEGIN 0105_Riano *EQUATE Entrance.781 RianoEntranceArea-100221.LowerEntMaze.35 *EQUATE Entrance.785 RianoEntranceArea-100221.LowerEntMaze.1 *EQUATE HSC.Feb10c.6a RianoEntranceArea-100221.UpperEntMaze.22 *EQUATE Entrance.793 HSC.Easter09.0 *EQUATE Entrance.815 ExtnOffEntranceInlet.815 *EQUATE Entrance.819 DownStream.755 *EQUATE DownStream.28 DownStreamExtn.28 *EQUATE DownStream.28 TornoInlet.28 *EQUATE DownStreamExtn.641 DownstreamUpper.FriedEggOnAStick.1 *EQUATE DownStreamExtn.651 DownstreamUpper.FriedEggOnAStick.17 *EQUATE TornoInlet.563 DownstreamUpper.Oxbow.20a *EQUATE TornoInlet.623 Riano2006-12-10.1 *EQUATE TornoInlet.639 Riano2006-12-11.1 *EQUATE Riano2006-12-11.106 Riano_Easter2007.Riano_070331.106 *EQUATE Riano2006-12-11.49 Riano_Easter2007.Riano_070404b.17 *EQUATE Riano2006-12-11.68 Riano_Easter2007.Riano_070331.13a *EQUATE Entrance.808 DryMazeLink.808 *EQUATE DryMaze.474 HighRift.423 *EQUATE HighRift.227 DryMazeLink.227 *EQUATE DryMaze.231 DryMazeLink.231 *EQUATE DryMazeLink.231 DormouseInlet.231 *EQUATE DryMazeLink.231 UpStream.DoubleBarrelPassage.41a *EQUATE EnergeticBTLegs.1 UpStream.DoubleBarrelPassage.23 *EQUATE SparkleHall.0 EnergeticBTLegs.35 *EQUATE UpperLevels.134 UpStream.RopeLoopAvenPassage.134 *EQUATE UpperLevels.144 UpStream.UpperLevelLink.0 *EQUATE UpperLevels.121 UpStream.CatPrintPassage.121 *BEGIN RianoEntranceArea-100221 *CALIBRATE declination 2.0 *EQUATE LowerEntMaze.3 UpperEntMaze.3 *BEGIN LowerEntMaze *CALIBRATE declination 2.0 1 2 8.15 220.26 -2.02 2 2a 1.00 285.07 7.18 2 3 6.41 225.07 5.13 2 25 4.58 294.52 9.74 25 25a 1.05 191.12 4.76 25 25b 1.66 259.45 3.19 25 26 4.10 217.40 2.20 26 27 7.86 292.25 1.39 27 27a 0.77 247.47 -5.34 27 28 3.03 228.11 -3.14 28 28a 0.89 237.86 3.24 28 28b 0.81 17.98 5.37 28 28c 3.31 277.29 -0.23 28 29 3.71 216.86 18.56 29 29a 1.74 90.34 -18.51 29 29b 1.61 120.15 -3.95 29 30 4.08 103.92 -6.09 30 30a 0.68 21.17 -8.71 30 31 3.79 84.96 -7.99 31 31a 0.64 56.30 4.95 31 31b 0.92 319.56 11.88 31 31c 0.65 87.86 -0.04 31 31d 1.54 201.12 -5.92 31 31e 1.73 158.07 -12.22 31 31f 1.18 136.82 -20.51 31 31g 0.88 121.01 -2.89 31 31h 4.59 201.13 4.89 31 32 4.64 99.01 12.08 32 33 1.30 76.29 -0.03 33 3 1.44 105.67 -81.51 30 34 10.38 220.58 3.57 34 34a 1.41 24.32 -30.22 34 35 1.67 4.11 -59.34 35 35a 0.99 112.52 -0.20 35 35b 1.10 170.43 3.30 35 36 4.39 121.59 -2.68 36 37 2.92 105.83 1.20 37 38 4.27 30.29 -5.23 38 38a 1.37 140.33 1.49 38 39 1.38 116.83 0.30 39 40 6.11 31.48 1.73 40 33 3.83 56.70 23.30 40 31 3.79 308.61 9.16 29 41 4.61 291.84 -2.93 41 42 4.54 292.51 -5.49 42 42a 2.05 77.70 12.27 42 42b 2.06 178.04 4.36 42 42c 4.01 212.54 2.97 42 42d 8.68 226.31 4.45 42 42e 4.27 276.30 0.46 42 42f 3.73 286.88 0.37 42 42g 1.08 15.18 6.05 42 42h 3.71 326.89 -3.03 42 43 8.78 219.84 3.81 27 46 0.93 10.75 -37.55 46 47 7.83 289.96 2.36 42 48 4.12 321.31 -2.27 48 49 4.73 64.03 -4.41 48 50 7.51 279.02 -0.58 50 50a 1.06 357.82 -2.07 50 50b 0.79 282.67 8.67 50 51 1.42 227.38 28.37 51 51a 0.41 166.32 -26.57 51 51b 0.66 61.74 -24.08 51 51c 0.69 247.84 -21.79 51 52 5.46 213.54 -1.97 52 53 2.32 198.69 13.00 53 54 1.92 236.57 -3.69 54 54a 1.26 122.73 12.64 54 54b 2.14 284.35 6.64 54 54c 0.97 265.69 11.27 54 54d 1.86 348.79 -1.18 54 54e 2.48 332.98 0.01 54 54f 3.37 320.69 5.00 54 55 3.51 299.99 5.50 54 54a 1.59 102.18 4.58 51 56 3.68 289.94 -3.83 56 57 2.47 282.06 0.54 57 57a 2.03 141.90 5.92 57 57b 1.73 162.20 4.76 57 57c 1.97 228.89 10.73 57 57d 2.78 248.27 8.88 57 57e 2.29 269.24 3.30 57 57f 1.16 287.08 -5.23 57 58 1.63 288.51 -8.31 58 59 3.42 288.32 -0.51 59 60 1.24 272.12 2.44 60 61 2.61 213.84 1.28 61 61a 3.35 278.37 1.49 *END LowerEntMaze *BEGIN UpperEntMaze *CALIBRATE declination 2.0 3 4 3.85 168.05 72.56 4 4a 1.63 193.09 7.07 4 4b 2.58 301.81 1.77 4 4c 1.58 16.19 12.00 4 4d 1.38 227.95 4.81 4 5 4.76 203.06 0.22 5 5a 3.39 77.20 5.39 5 5b 4.04 178.35 -0.26 5 5c 5.88 208.72 1.73 5 5d 2.77 31.64 4.80 5 5e 3.95 234.15 1.14 5 6 5.16 222.96 4.51 6 6a 1.63 261.07 16.38 6 6b 1.29 281.66 18.89 6 7 5.20 273.33 17.24 7 7a 3.58 240.90 9.83 7 7b 3.85 315.14 8.39 7 8 7.49 287.85 5.16 8 8a 1.98 274.78 -0.05 8 8b 4.34 146.15 -1.50 8 8c 3.49 160.63 -0.10 8 8d 1.99 309.49 -1.12 5 9 5.41 109.63 3.04 9 9a 1.81 38.58 0.72 9 10 6.23 202.78 -4.94 10 10a 0.57 79.48 3.95 10 10b 2.08 219.49 -5.23 10 10c 2.70 223.78 -2.51 10 11 3.91 220.40 -2.48 10 12 5.24 112.34 4.31 12 13 6.63 90.15 -0.64 13 14 5.34 93.43 -2.13 14 15 2.97 96.19 -0.41 15 15a 0.59 235.79 1.46 15 16 6.64 64.03 -0.08 16 16a 2.86 230.56 -3.75 16 16b 2.35 252.88 -4.71 16 17 2.52 114.04 10.29 17 17a 1.16 56.48 -2.77 17 17b 1.34 78.04 -2.59 17 18 2.75 102.96 0.38 18 19 4.30 109.61 16.93 19 19a 3.34 297.67 -7.98 19 19b 3.09 282.91 -8.29 17 20 4.01 71.94 -2.39 20 21 4.65 44.74 -5.64 21 21a 1.55 42.07 1.17 21 22 2.32 46.08 0.40 4 23 1.72 292.26 6.26 23 24 8.36 280.02 1.95 24 24a 0.44 138.27 5.06 24 24b 3.89 216.49 5.50 24 24c 8.10 215.85 4.56 24 24d 1.97 258.67 4.92 24 24e 1.72 262.30 4.64 24 24f 1.34 235.63 9.43 *END UpperEntMaze *END RianoEntranceArea-100221 *BEGIN Entrance 0 774 3.20 297.80 3.00 774 775 4.80 32.80 -1.00 775 776 2.20 51.80 -18.00 776 777 4.10 75.80 -4.00 777 778 4.00 99.80 0.00 778 779 9.00 126.80 3.00 779 780 6.30 69.80 0.00 780 781 3.00 119.80 0.00 785 786 23.10 91.80 0.00 786 787 5.80 26.80 0.00 787 788 20.80 112.80 0.00 788 789 7.80 27.80 16.00 789 790 11.10 93.80 -1.00 790 791 2.00 95.80 5.00 791 792 4.10 50.80 -5.00 792 793 5.90 109.80 3.00 793 794 6.60 121.80 -4.00 794 795 2.00 67.80 -14.00 795 796 7.60 119.80 0.00 796 797 3.40 105.80 -2.00 797 798 3.70 355.80 -1.00 798 799 10.40 25.80 -4.00 799 800 5.50 110.80 -1.00 800 801 7.60 14.80 1.00 801 802 5.30 83.80 -1.00 802 803 5.50 13.80 -4.00 803 804 5.70 37.80 10.00 804 805 5.00 133.80 -2.00 805 806 12.00 34.80 0.00 806 807 6.80 72.80 4.00 807 808 6.00 119.80 -4.00 808 809 13.10 19.80 -3.00 809 810 8.70 78.80 18.00 810 811 8.70 69.80 -6.00 811 812 3.10 94.80 -7.00 812 813 1.00 36.80 1.00 813 814 2.10 294.80 0.00 814 815 1.50 63.80 -2.00 815 816 3.00 0.00 -90.00 816 817 8.50 19.80 7.00 817 818 15.70 85.80 -2.00 818 819 2.10 355.80 -10.00 *END Entrance *BEGIN HSC *EQUATE Feb10a.0 Easter09.50 *EQUATE Feb10b.1 Easter09.47 *EQUATE Feb10c.1 Easter09.51 *EQUATE Feb10d.1 Easter09.29 *EQUATE Feb10d.5 Easter09.37 *BEGIN Easter09 *CALIBRATE declination 2.08 0 1 4.41 85.63 56.45 1 2 2.57 17.44 8.88 2 3 6.09 17.23 -0.36 3 4 6.26 288.72 0.89 3 5 2.08 143.25 1.29 5 6 2.63 92.99 -6.53 1 7 1.92 171.25 38.92 7 8 4.09 118.81 8.07 8 9 6.84 102.75 6.73 7 10 3.61 220.79 21.43 10 11 1.78 180.39 16.50 11 12 15.03 195.29 0.32 12 13 7.30 264.09 2.57 13 14 3.71 279.82 4.77 14 15 6.69 266.26 -26.44 15 16 2.92 52.57 0.50 16 17 7.37 58.25 0.39 17 18 3.30 34.06 -4.56 18 18b 7.76 126.15 1.14 18 19 4.75 270.79 2.04 19 20 5.16 306.51 4.31 20 21 2.77 223.43 -6.75 21 22 4.11 249.43 5.41 22 23 4.04 274.31 6.76 21 24 2.04 127.67 8.49 24 19 4.17 85.93 -6.08 15 26 4.82 275.34 11.68 26 27 9.44 283.93 -1.80 15 28 5.33 258.07 15.05 28 29 2.15 242.34 48.01 29 31 2.09 225.82 5.69 31 32 4.45 242.34 0.48 32 32a 3.19 303.43 6.37 32 32b 4.63 339.31 2.41 32 33 3.28 101.68 1.33 33 34 4.79 105.83 -13.72 34 35 2.37 121.27 -61.00 35 36 2.97 70.89 10.56 36 37 2.40 81.43 2.75 36 38 3.44 199.73 3.19 36 39 3.24 245.65 -25.94 39 40 3.12 126.45 -36.45 39 41 2.46 288.54 -19.63 41 42 2.83 297.90 27.96 42 43 1.84 310.43 50.44 43 44 7.35 226.90 12.38 44 45 1.07 265.82 18.38 45 46 2.40 112.23 14.37 46 47 2.52 132.69 26.44 47 48 2.50 63.09 0.33 48 49 4.48 87.14 -2.01 49 50 3.82 87.50 -4.52 43 51 1.80 310.46 50.33 *END Easter09 *BEGIN Feb10a *CALIBRATE declination 2.0 0 0a 3.60 19.39 1.83 0 0b 2.26 258.92 8.38 0 0c 3.31 60.29 0.77 0 1 7.64 39.56 1.05 1 1a 2.61 294.46 -3.66 1 1b 3.43 38.06 -4.26 1 1c 1.70 244.03 -4.59 1 1d 1.26 127.22 -0.31 1 1e 2.69 79.03 -3.86 1 2 11.76 68.75 -3.14 2 2a 2.97 284.78 2.17 2 2b 7.59 267.07 2.39 2 2c 6.80 239.84 2.24 2 2d 2.84 105.35 0.09 2 2f 4.73 92.29 -1.79 2 3 4.98 96.29 -1.17 *END Feb10a *BEGIN Feb10b *CALIBRATE declination 2.0 1 1a 3.82 281.41 4.61 1 2 7.20 294.61 2.90 2 3 7.61 243.35 1.55 3 3a 1.84 88.65 2.17 3 3b 3.95 281.27 3.75 3 3c 2.64 302.40 2.69 3 4 11.93 266.74 1.91 4 4a 2.39 245.70 3.26 4 4b 5.96 254.92 3.14 4 4d 3.92 101.67 -1.88 4 4e 5.82 95.63 -1.84 4 4f 5.26 278.97 2.79 4 4g 4.10 69.65 -0.94 4 4h 0.46 79.90 -1.36 4 5 6.16 263.28 3.50 *END Feb10b *BEGIN Feb10c *CALIBRATE declination 2.0 1 2 4.85 290.84 -5.22 2 2a 1.08 215.13 1.88 2 3 3.70 282.61 -12.83 3 3a 2.44 48.00 3.08 3 3b 3.49 71.63 -2.36 3 4 1.81 73.86 -29.80 4 5 4.27 304.24 21.71 5 6 7.17 294.87 1.50 6 6a 1.20 257.00 -45.00 6 7 5.02 300.46 -11.39 7 8 1.45 260.00 31.87 8 9 1.00 10.54 37.70 9 9a 3.15 263.37 4.02 9 10 1.81 95.46 -1.06 10 11 3.71 97.39 -3.31 11 12 8.03 102.41 -0.22 12 12a 1.35 100.96 7.44 12 12b 1.34 95.06 5.60 12 12c 1.24 105.50 8.22 *END Feb10c *BEGIN Feb10d *CALIBRATE declination 2.0 1 2 3.86 104.28 -29.69 2 3 3.71 105.63 -5.84 3 4 3.34 125.23 4.90 4 5 1.55 226.31 -1.87 *END Feb10d *END HSC *BEGIN ExtnOffEntranceInlet 815 370 1.50 214.95 0.00 370 371 1.40 98.95 0.00 371 372 2.78 209.95 38.00 372 373 6.75 62.95 1.00 373 374 1.75 0.00 90.00 374 375 4.65 288.95 14.00 375 376 8.25 303.95 19.00 376 377 6.10 250.95 20.00 377 378 2.71 276.95 25.00 378 379 4.65 232.95 2.00 379 380 4.58 297.95 30.00 380 381 5.31 245.95 22.00 *END ExtnOffEntranceInlet *BEGIN DownStream 28 699 10.80 311.15 0.00 699 700 7.00 265.65 -1.00 700 701 19.90 304.15 0.00 701 702 5.90 345.65 0.00 702 703 7.20 305.65 0.00 703 704 9.60 280.65 -2.00 704 705 6.60 282.65 0.00 705 706 4.50 239.65 0.00 706 707 14.00 307.65 0.00 707 708 2.40 0.65 32.00 708 709 9.60 296.65 0.00 709 710 5.30 292.65 -14.00 710 711 16.20 292.65 0.00 711 712 4.20 286.65 21.00 712 713 8.10 295.65 -1.00 713 714 2.50 228.65 0.00 714 715 5.40 320.65 0.00 715 716 4.60 305.65 0.00 716 717 7.30 312.15 -3.00 717 718 12.40 284.15 0.00 718 719 17.50 276.65 -1.00 719 720 10.00 200.65 0.00 720 721 10.20 225.65 8.00 721 722 12.70 268.65 -4.00 722 723 4.90 306.65 0.00 723 724 7.70 224.15 2.00 724 725 6.60 263.65 -2.00 725 726 13.30 286.65 -1.00 726 727 10.80 258.65 2.00 727 728 5.70 300.65 -13.00 728 729 3.30 345.65 0.00 729 730 7.30 294.15 -2.00 730 731 13.90 250.65 0.00 731 732 4.20 296.65 -48.00 732 733 2.90 285.65 -4.00 733 734 3.60 340.65 -47.00 734 735 8.30 306.37 29.00 735 736 3.80 223.65 24.00 736 737 6.30 304.65 -4.00 737 738 9.70 255.65 2.00 738 739 6.20 221.65 2.00 739 756 8.60 262.65 -10.00 756 757 5.50 296.65 -34.00 757 758 13.50 285.65 -6.00 758 759 20.00 290.65 -1.00 759 760 20.00 305.65 -3.00 760 761 17.30 293.65 -1.00 761 762 7.80 304.65 -5.00 762 763 15.10 327.65 -3.00 763 764 14.90 281.65 0.00 764 765 20.00 281.65 -1.00 765 766 4.60 271.15 -5.00 761 767 17.50 149.65 10.00 767 768 3.00 177.65 -1.00 768 769 3.20 131.65 15.00 769 770 3.30 113.65 20.00 770 771 12.50 109.65 0.00 771 772 4.30 115.65 2.00 772 773 14.30 127.65 13.00 739 820 11.50 265.80 -16.00 820 821 8.00 208.80 40.00 821 822 4.90 224.80 -2.00 822 823 6.10 181.80 -11.00 823 824 4.70 125.80 2.00 824 825 7.80 167.80 2.00 825 826 3.00 266.80 2.00 28 740 4.10 0.00 90.00 740 741 5.50 235.65 27.00 741 742 7.40 214.65 21.00 742 743 12.70 223.65 6.00 743 744 8.20 172.65 1.00 744 745 10.40 125.65 0.00 745 746 13.40 103.65 1.00 746 747 9.70 118.15 1.00 747 748 10.00 212.65 37.00 748 749 6.50 254.65 5.00 749 750 6.70 181.65 25.00 750 751 9.70 117.65 4.00 751 752 8.60 106.65 -2.00 752 753 6.90 209.65 5.00 753 754 9.60 108.65 0.00 754 755 20.00 110.65 2.00 *END DownStream *BEGIN DownstreamUpper *EQUATE Oxbow.1 FriedEggOnAStick.1 *EQUATE Oxbow.0 FriedEggOnAStick.2 *EQUATE Oxbow.11 UpperLoop.1 *EQUATE UpperLoop.27 FriedEggOnAStick.9 *EQUATE FriedEggOnAStick.21 FriedEggOnAStickPt2.1 *BEGIN FriedEggOnAStick *CALIBRATE declination 2.0 1 2 3.11 0.77 12.60 2 3 5.90 312.40 -11.25 3 4 7.18 308.52 -0.94 4 5 6.11 245.29 -1.13 5 5a 3.72 296.21 1.83 5 5b 4.83 287.18 0.84 5 5c 5.36 282.34 0.90 5 6 10.18 281.24 0.89 6 7 6.99 305.33 -1.06 7 8 2.61 256.43 5.59 8 9 13.34 302.19 -0.47 9 9a 0.35 222.86 -1.25 9 9b 1.90 289.54 4.84 9 10 9.40 289.45 4.88 10 11 10.66 303.93 -7.79 11 12 7.05 289.15 0.34 12 12a 2.95 55.32 12.38 12 12b 3.12 94.22 4.17 12 13 5.05 72.17 5.40 13 13a 1.83 339.21 8.86 13 14 4.81 91.13 4.93 14 14a 1.45 30.73 21.32 14 14b 2.49 241.63 -6.26 14 11 4.83 217.91 -12.12 12 15 6.30 293.42 -1.89 15 16 5.35 218.30 -0.76 16 16a 3.97 257.11 -4.06 16 16b 6.90 266.87 -2.28 16 16c 6.96 327.77 3.37 16 16d 8.49 308.20 2.84 16 16e 8.77 297.60 1.17 16 17 10.93 277.32 -0.60 17 18 9.40 287.05 -0.40 18 19 3.43 291.32 1.20 19 20 3.43 203.06 -4.32 20 21 4.00 236.76 -0.74 *END FriedEggOnAStick *BEGIN Oxbow *CALIBRATE declination 2.0 1 2 7.27 80.85 8.53 2 2a 0.69 358.43 -10.85 2 2b 3.01 292.73 -1.88 2 3 2.31 59.99 0.46 3 4 1.50 130.57 -28.21 4 5 5.64 135.97 -86.60 5 6 2.04 174.07 20.04 6 6a 5.01 106.76 6.76 6 6b 3.06 45.71 4.51 6 6c 3.26 239.10 0.34 6 6d 2.53 329.49 0.73 2 7 2.48 15.24 27.59 7 7a 2.83 88.10 5.40 7 8 4.26 263.33 48.32 8 9 5.90 294.80 -55.77 9 9a 3.19 239.07 2.08 9 9b 0.81 239.29 1.90 9 0 2.17 239.20 1.98 7 10 5.06 57.56 5.67 10 11 4.73 316.07 3.25 11 12 5.06 138.06 23.37 12 13 1.71 97.99 6.00 13 14 1.16 82.75 -26.20 14 14a 0.54 307.92 -4.40 14 14b 2.63 170.12 7.05 14 15 6.52 128.46 -18.60 15 16 4.87 92.75 -1.04 16 17 3.19 134.73 0.51 17 18 3.82 108.41 0.25 18 18a 5.14 155.04 9.95 18 18b 4.33 134.04 11.68 18 18c 2.48 126.92 15.65 18 18d 0.37 21.68 8.97 18 18e 2.13 231.74 -9.63 18 18f 2.34 191.10 12.99 18 18g 3.45 166.61 10.52 18 19 4.19 157.74 11.45 19 20 9.98 166.13 -6.87 20 20a 4.97 263.08 -80.89 20 20b 2.85 280.91 -36.14 20 20c 5.17 6.99 -12.96 20 20d 1.94 37.18 1.62 20 21 4.36 82.77 3.93 21 21a 6.02 227.58 -66.19 21 22 7.41 8.78 8.76 22 22a 0.76 351.44 3.36 22 22b 2.43 262.05 29.57 22 22c 2.07 157.64 -4.87 *END Oxbow *BEGIN UpperLoop *CALIBRATE declination 1.75 1 2 5.69 357.50 19.55 2 3 5.54 325.19 -4.40 3 4 4.34 242.26 1.78 4 5 4.91 260.24 -5.33 5 5a 0.27 9.44 -84.18 5 5b 1.41 134.36 2.50 5 5c 2.15 88.46 6.03 5 5d 0.37 315.95 7.82 5 6 3.95 223.52 1.11 6 7 2.58 307.27 -8.29 7 8 2.75 324.59 -36.52 8 9 6.93 239.30 5.29 9 10 2.85 277.01 12.18 10 10a 0.80 48.00 86.00 10 10b 2.69 236.62 88.43 10 10c 1.14 11.56 -82.68 10 10d 0.31 215.11 4.84 10 10e 0.90 37.80 8.43 10 16 6.16 322.04 -10.54 10 12 1.91 299.64 31.17 12 13 3.94 285.87 5.93 13 14 1.87 329.44 -20.80 14 14a 1.89 91.97 83.02 14 14b 1.69 3.24 -82.46 14 14c 2.24 5.82 0.05 14 14d 1.34 86.70 14.56 14 14e 0.70 174.08 22.53 14 15 2.90 56.58 -19.15 15 16 1.06 122.55 -77.69 14 17 4.24 284.58 -15.78 17 18 2.42 233.97 -18.30 18 19 2.59 299.73 7.25 19 20 3.98 354.85 21.72 20 21 4.39 336.49 14.59 21 22 5.43 263.11 1.43 22 22a 0.90 11.84 84.61 22 22b 6.20 126.66 55.79 22 22c 0.44 212.16 -81.91 22 22d 1.60 136.16 3.40 22 22e 1.03 10.22 22.29 22 22f 0.99 337.75 14.35 22 22g 4.08 319.67 1.29 22 22h 4.10 319.67 0.69 22 23 4.57 203.04 5.22 23 23a 0.87 292.36 77.99 23 23b 0.36 49.53 -81.63 23 23c 0.48 136.95 18.34 23 23d 1.91 324.86 1.83 23 23e 2.95 308.25 -40.06 23 23f 6.33 272.92 0.91 23 24 1.95 238.04 -34.27 24 25 1.49 307.29 -31.68 25 26 4.31 313.21 -49.22 26 27 1.78 135.14 -24.77 *END UpperLoop *BEGIN FriedEggOnAStickPt2 *CALIBRATE declination 1.75 1 2 7.81 243.30 -0.29 2 3 4.76 268.89 0.16 3 4 6.66 267.68 -0.40 4 5 5.34 269.72 -6.46 5 6 7.39 283.97 -5.29 6 7 4.54 314.47 -2.88 7 8 2.95 273.84 -22.68 8 8a 2.09 122.59 87.07 8 8b 0.87 73.22 -66.52 8 8c 3.66 284.91 18.64 8 8d 1.40 349.10 9.74 8 8e 0.29 172.53 6.54 8 9 5.78 36.97 -10.39 7 10 4.40 244.57 -3.59 10 11 4.10 245.31 8.94 11 12 5.81 284.03 1.75 12 13 3.98 272.77 7.33 13 14 3.13 189.53 45.00 14 15 4.13 171.86 -1.29 15 16 2.10 260.91 36.16 16 16a 9.58 20.15 75.53 16 16b 5.38 42.18 67.30 16 16c 13.19 315.15 82.47 16 16d 1.53 123.29 -77.15 16 16e 0.84 135.39 14.01 16 16f 1.26 305.79 7.87 16 16g 2.62 341.19 10.67 16 16h 2.51 24.26 6.87 16 17 6.15 223.22 19.84 17 17a 3.38 325.55 76.35 17 17b 4.34 264.05 71.07 17 17c 3.31 168.78 -73.30 17 17d 0.30 136.08 -0.65 17 18 5.08 225.19 34.90 18 19 3.76 205.97 -13.83 19 20 3.58 116.27 -13.03 20 20a 0.45 234.56 77.16 20 20b 0.09 119.28 -77.79 20 20c 0.56 120.28 11.06 20 20d 0.60 281.24 -2.57 20 20e 1.52 22.06 -3.13 20 21 1.76 225.56 -2.08 *END FriedEggOnAStickPt2 *END DownstreamUpper *BEGIN DownStreamExtn 28 640 6.10 0.00 90.00 640 641 2.19 45.00 0.00 651 668 2.10 350.65 9.00 668 669 3.10 305.65 0.00 669 670 1.50 325.65 3.00 670 671 4.10 275.65 22.00 671 672 3.00 315.65 15.00 672 673 7.30 277.65 8.00 673 674 8.20 350.65 2.00 674 675 5.80 327.65 -4.00 675 676 8.00 268.65 2.00 676 677 20.00 290.65 1.00 677 678 11.00 279.65 0.00 678 679 5.70 253.65 2.00 679 680 7.00 6.65 -1.00 680 681 13.90 293.65 5.00 681 682 3.10 309.65 11.00 682 683 3.00 83.65 -10.00 *END DownStreamExtn *BEGIN TornoInlet 28 553 7.40 60.65 7.00 553 554 5.80 175.65 0.00 554 555 2.90 44.15 0.00 555 556 4.00 78.65 0.00 556 557 4.50 100.65 20.00 557 558 4.20 110.65 1.00 558 559 1.20 67.15 18.00 559 560 2.30 7.65 25.00 560 561 2.70 43.65 22.00 561 562 16.10 131.65 -2.00 562 563 5.10 195.65 7.00 563 564 5.30 119.65 0.00 564 565 6.60 13.65 0.00 565 566 12.40 66.65 1.00 566 567 3.10 47.15 -2.00 567 568 4.90 89.65 0.00 568 569 8.10 120.65 3.00 569 570 12.50 107.65 8.00 570 571 6.90 77.65 2.00 571 572 6.20 122.15 4.00 572 573 9.00 68.15 -4.00 573 574 6.10 33.65 0.00 574 575 11.80 69.65 -4.00 575 576 8.10 164.65 1.00 576 577 10.70 67.65 2.00 577 578 20.00 58.65 2.00 578 579 8.50 79.65 2.00 579 580 6.10 36.15 0.00 580 581 20.00 25.65 0.00 581 582 6.40 39.15 1.00 582 583 5.40 348.15 1.00 583 584 16.90 35.15 1.00 584 585 10.20 2.65 1.00 585 586 20.00 14.15 1.00 586 587 11.30 344.65 1.00 587 588 5.10 68.65 1.00 588 589 6.60 130.65 2.00 589 590 6.10 48.15 3.00 590 591 6.40 338.15 1.00 591 592 5.90 31.65 2.00 592 593 12.80 350.65 1.00 593 594 7.00 55.15 2.00 594 595 8.80 6.15 0.00 595 596 10.60 15.15 2.00 596 597 10.90 346.65 0.00 597 598 7.10 20.65 0.00 598 599 7.00 347.15 0.00 599 600 9.60 333.65 0.00 600 601 3.90 338.15 0.00 601 602 3.70 4.65 2.00 602 603 1.90 293.65 0.00 603 604 2.70 245.15 0.00 604 605 4.90 193.15 0.00 605 606 5.90 285.65 0.00 606 607 11.20 249.15 0.00 607 608 2.50 306.15 1.00 608 609 11.30 351.65 2.00 609 610 6.80 292.15 2.00 610 611 3.30 320.15 0.00 611 612 5.40 6.65 0.00 612 613 5.20 309.65 2.00 613 614 9.00 348.65 0.00 614 615 4.70 242.15 0.00 615 616 6.10 336.15 0.00 616 617 2.60 277.65 0.00 617 618 5.40 232.65 0.00 618 619 7.50 307.15 1.00 619 620 10.60 10.65 0.00 620 621 12.90 342.65 1.00 621 622 11.30 10.15 1.00 622 623 13.00 45.15 1.00 623 624 9.50 133.65 0.00 624 625 4.20 112.65 -2.00 625 626 20.00 107.65 1.00 626 627 2.80 79.65 4.00 627 628 5.20 55.65 27.00 628 629 9.30 26.65 -2.00 629 630 5.60 59.65 -3.00 630 631 6.30 7.65 -12.00 631 632 9.70 68.65 1.00 632 633 10.80 88.65 1.00 633 634 15.70 49.65 1.00 634 635 7.00 69.65 1.00 635 636 4.10 39.65 2.00 636 637 6.90 71.65 2.00 637 638 4.30 57.15 14.00 638 639 1.50 145.65 -12.00 *END TornoInlet *BEGIN Riano2006-12-10 *CALIBRATE declination 2.42 2 1 5.00 0.00 -90.00 2 3 14.65 11.00 2.00 3 4 9.38 6.00 -4.00 4 5 7.73 17.00 -3.00 5 6 5.35 3.00 -2.00 2 7 8.12 233.00 10.00 7 8 11.21 194.00 7.00 8 9 7.27 270.00 0.00 9 10 6.30 342.00 0.00 10 11 3.96 278.00 5.00 11 12 4.02 251.00 2.00 12 13 4.10 327.00 5.00 13 14 3.65 252.00 3.00 14 15 6.96 194.00 2.00 15 16 5.49 273.00 6.00 16 17 6.74 220.00 4.00 17 18 3.60 229.00 2.00 18 19 8.00 199.00 3.00 19 20 11.59 216.00 3.00 20 21 3.84 129.00 4.00 21 22 13.43 199.00 5.00 22 23 4.79 259.00 7.00 23 24 11.02 212.00 4.00 24 25 7.40 212.00 6.00 25 26 8.80 233.00 0.00 26 27 7.40 298.00 -1.00 27 28 5.13 270.00 6.00 25 29 3.29 71.00 19.00 29 30 5.05 117.00 7.00 30 31 3.80 103.00 9.00 *END Riano2006-12-10 *BEGIN Riano2006-12-11 *CALIBRATE tape 0.1 *CALIBRATE declination 2.42 1 2 4.37 202.00 -7.00 2 3 7.55 0.00 90.00 3 4 4.37 165.00 -6.00 4 5 7.95 194.00 0.00 5 6 2.71 83.00 11.00 6 7 6.30 155.00 0.00 7 8 9.83 35.00 0.00 8 9 1.99 355.00 -18.00 9 10 5.20 142.00 -18.00 10 11 3.96 79.00 -9.00 11 12 2.61 27.00 -6.00 12 13 3.46 78.00 -10.00 13 14 4.18 55.00 1.00 14 15 2.54 77.00 -4.00 15 16 4.08 353.00 -36.00 16 17 6.24 65.00 -4.00 17 18 11.21 177.00 8.00 18 19 3.25 0.00 -90.00 19 20 2.53 275.00 -23.00 20 21 1.70 345.00 -12.00 21 22 2.35 332.00 -10.00 16 23 7.18 263.00 9.00 23 24 3.91 257.00 22.00 24 25 5.12 232.00 21.00 24 26 3.59 325.00 8.00 26 27 1.25 237.00 2.00 27 28 2.24 350.00 12.00 28 29 3.64 290.00 8.00 25 9 2.27 284.00 35.00 7 30 5.35 187.00 5.00 30 31 5.20 233.00 23.00 31 32 3.04 0.00 90.00 32 33 2.42 190.00 0.00 33 34 4.11 120.00 3.00 34 35 0.61 353.00 1.00 35 36 7.00 46.00 11.00 36 37 2.30 20.00 48.00 37 38 4.73 289.00 -13.00 38 30 8.10 0.00 -90.00 37 39 8.85 40.00 1.00 39 40 7.98 28.00 0.00 40 41 3.15 89.00 -2.00 41 42 4.65 52.00 3.00 42 43 2.25 51.00 -8.00 43 44 2.47 7.00 2.00 44 45 2.90 18.00 9.00 45 46 2.60 343.00 -8.00 46 47 3.00 38.00 4.00 47 48 1.75 110.00 4.00 48 49 9.49 43.00 -2.00 49 50 2.47 90.00 -18.00 50 51 5.90 22.00 2.00 51 52 2.48 68.00 10.00 51 60 5.15 0.00 -90.00 52 53 6.15 49.00 0.00 53 54 3.30 340.00 14.00 54 55 4.16 10.00 2.00 55 56 6.40 45.00 20.00 56 57 9.10 25.00 39.00 57 58 2.60 150.00 -30.00 58 59 7.30 0.00 90.00 60 61 10.75 205.00 -18.00 61 62 2.02 190.00 -10.00 62 63 3.04 245.00 -11.00 63 64 3.47 220.00 -20.00 64 65 1.22 180.00 20.00 65 66 5.22 0.00 -90.00 67 66 3.29 10.00 -28.00 67 16 3.25 255.00 -7.00 69 68 1.70 231.00 3.00 69 70 1.50 345.00 0.00 70 71 1.50 42.00 -6.00 71 72 1.20 27.00 3.00 72 73 1.21 69.00 -5.00 73 74 1.40 40.00 -4.00 74 75 1.90 72.00 0.00 75 76 2.84 7.00 2.00 76 77 1.90 30.00 -3.00 77 78 6.00 5.00 -4.00 78 79 1.70 25.00 -3.00 79 80 0.76 353.00 -2.00 80 81 0.87 308.00 0.00 81 82 3.42 15.00 -2.00 82 83 1.48 75.00 -2.00 83 84 1.42 350.00 -1.00 84 85 2.15 22.00 0.00 85 86 2.05 0.00 3.00 86 87 2.75 38.00 0.00 87 88 2.32 140.00 0.00 88 5 0.72 84.00 0.00 3 89 1.00 290.00 -50.00 89 90 3.16 296.00 6.00 90 91 2.70 352.00 -10.00 91 92 2.25 308.00 -3.00 92 93 3.20 328.00 -7.00 93 94 2.10 315.00 2.00 94 95 2.75 345.00 2.00 95 96 5.40 310.00 0.00 96 97 5.95 304.00 0.00 97 98 2.90 348.00 -1.00 98 99 1.82 318.00 -3.00 99 100 2.35 12.00 5.00 100 101 3.50 295.00 0.00 101 102 1.87 335.00 -2.00 102 103 3.37 3.00 4.00 103 104 1.90 303.00 1.00 104 105 2.20 228.00 3.00 105 106 1.80 295.00 21.00 106 107 2.75 262.00 4.00 107 108 10.50 288.00 5.00 108 109 5.30 192.00 4.00 109 110 2.50 275.00 0.00 110 111 4.60 333.00 0.00 111 112 6.30 305.00 3.00 112 113 4.40 333.00 -1.00 113 114 4.90 283.00 -5.00 115 114 6.00 152.00 5.00 116 115 3.00 58.00 -2.00 117 116 4.80 10.00 -5.00 118 117 4.30 100.00 -3.00 119 118 4.70 118.00 6.00 120 119 4.50 0.00 90.00 121 120 5.75 80.00 2.00 122 121 4.65 18.00 15.00 123 122 1.90 340.00 0.00 124 123 5.14 50.00 5.00 *END Riano2006-12-11 *BEGIN Riano_Easter2007 *CALIBRATE declination 2.28 *EQUATE Riano_070331.4 Riano_070402b.0 *EQUATE Riano_070402a.12 Riano_070402b.16 *EQUATE Riano_070402a.17 Riano_070402c.21 *EQUATE Riano_070402a.12 Riano_070404a.0 *EQUATE Riano_070402a.22 Riano_070404a.22 *EQUATE Riano_070402c.2 Riano_070404b.1 *BEGIN Riano_070331 *CALIBRATE tape 0.2 *CALIBRATE declination 2.28 2 1 3.80 220.00 -15.00 2 3 4.40 18.00 38.00 4 3 4.13 323.00 27.00 3 5 5.07 58.00 28.00 5 6 2.90 358.00 -4.00 6 7 3.00 87.00 -2.00 7 8 4.17 0.00 -2.00 8 9 2.32 71.00 0.00 9 10 3.54 8.00 -2.00 10 11 3.23 28.00 -8.00 12 11 1.80 129.00 23.00 12 13 4.70 0.00 -90.00 13 13a 5.90 21.00 0.00 12 14 3.03 358.00 -12.00 14 15 1.70 328.00 10.00 15 16 2.62 38.00 17.00 16 17 2.61 40.00 0.00 17 18 4.73 354.00 -2.00 18 19 3.69 27.00 3.00 19 20 4.47 0.00 -50.00 20 21 2.64 295.00 -8.00 21 22 5.79 335.00 -1.00 22 23 5.07 0.00 -4.00 23 24 5.95 341.00 -5.00 24 25 6.94 25.00 -6.00 25 26 3.48 337.00 -3.00 26 27 1.55 45.00 0.00 27 28 5.88 22.00 -10.00 28 29 3.78 35.00 -7.00 29 30 3.32 320.00 -3.00 1a 106 8.20 335.00 -5.00 2a 1a 8.50 356.00 0.00 3a 2a 6.00 260.00 5.00 4a 3a 8.50 313.00 -1.00 30 4a 2.90 356.00 -1.00 *END Riano_070331 *BEGIN Riano_070402a *CALIBRATE tape 0.2 *CALIBRATE declination 2.28 7 6 3.10 31.00 7.00 8 7 4.94 357.00 -29.00 9 8 11.68 48.00 -4.00 10 9 13.80 18.00 0.00 11 10 7.12 50.00 11.00 11 12 3.04 155.00 -39.00 13 10 2.74 150.00 -29.00 14 13 6.15 89.00 -26.00 16 15 6.14 0.00 -90.00 15 10 3.16 230.00 -15.00 17 16 1.10 225.00 -10.00 18 17 9.46 262.00 -16.00 19 18 10.31 32.00 0.00 20 19 7.40 48.00 0.00 21 20 19.73 22.00 0.00 22 21 11.11 79.00 -3.00 23 22 14.60 65.00 -11.00 24 23 2.25 315.00 50.00 25 24 8.97 42.00 18.00 26 25 30.60 29.00 2.00 27 26 8.00 77.00 -19.00 *END Riano_070402a *BEGIN Riano_070402b *CALIBRATE tape 0.2 *CALIBRATE declination 2.28 0 1 3.18 45.00 5.00 1 2 2.51 0.00 90.00 2 3 3.34 128.00 25.00 3 4 2.63 190.00 28.00 4 5 2.46 73.00 -2.00 5 6 1.80 38.00 43.00 6 7 1.58 42.00 15.00 7 8 1.16 81.00 0.00 8 10 3.22 0.00 90.00 10 11 2.55 77.00 10.00 11 12 2.30 10.00 12.00 12 13 3.10 30.00 19.00 13 14 2.09 352.00 27.00 14 16 2.42 55.00 32.00 *END Riano_070402b *BEGIN Riano_070402c *CALIBRATE tape 0.2 *CALIBRATE declination 2.28 1 2 5.40 0.00 -90.00 2 3 7.60 200.00 -26.00 3 4 5.64 272.00 8.00 4 5 3.76 195.00 36.00 3 6 4.06 280.00 -25.00 6 7 2.12 52.00 -44.00 7 8 8.40 39.00 -2.00 3 9 10.10 0.00 -90.00 5 10 9.56 200.00 -15.00 10 11 1.70 0.00 -90.00 11 12 2.20 218.00 -11.00 12 13 2.85 177.00 -23.00 13 14 3.20 227.00 -56.00 14 15 14.83 204.00 -4.00 15 16 8.24 220.00 -20.00 16 17 2.50 225.00 -7.00 17 18 4.15 200.00 -3.00 18 19 3.38 55.00 30.00 19 20 1.90 305.00 57.00 20 21 1.40 193.00 -7.00 *END Riano_070402c *BEGIN Riano_070404a *CALIBRATE tape 0.2 *CALIBRATE declination 2.28 0 1 3.49 188.00 45.00 1 2 8.85 205.00 4.00 2 3 4.98 237.00 0.00 3 4 2.41 193.00 5.00 4 5 2.14 258.00 55.00 5 6 3.55 252.00 17.00 6 7 5.76 238.00 58.00 7 8 3.13 232.00 13.00 8 9 2.40 170.00 0.00 9 10 3.59 120.00 -1.00 10 22 1.23 76.00 -8.00 *END Riano_070404a *BEGIN Riano_070404b *CALIBRATE tape 0.2 *CALIBRATE declination 2.28 2 1 2.83 259.00 23.00 3 2 2.10 0.00 90.00 4 3 1.94 136.00 12.00 5 4 4.20 212.00 -35.00 6 5 2.76 265.00 -19.00 7 6 4.18 293.00 -51.00 8 7 3.90 254.00 -22.00 6 9 2.60 284.00 -35.00 9 10 2.64 290.00 -19.00 10 11 10.45 0.00 -90.00 11 12 2.10 266.00 4.00 12 13 4.51 50.00 -61.00 13 14 1.41 0.00 -90.00 14 15 6.95 65.00 -63.00 15 16 4.81 0.00 -90.00 16 17 9.62 53.00 2.00 *END Riano_070404b *END Riano_Easter2007 *BEGIN DryMazeLink 808 808a 9.00 19.80 0.00 808a 215 7.30 191.86 3.00 215 216 3.90 100.86 7.00 216 217 6.80 191.86 0.00 217 218 1.80 98.86 0.00 218 219 3.20 193.86 2.00 219 220 4.00 105.86 10.00 220 221 19.00 185.86 0.00 221 222 11.40 109.86 0.00 222 223 6.00 70.86 5.00 223 224 7.20 93.86 11.00 224 225 18.60 69.86 -2.00 225 226 7.50 105.86 4.00 226 227 4.40 59.86 1.00 227 228 4.70 103.86 8.00 228 229 5.60 122.86 15.00 229 230 5.80 139.86 11.00 230 231 26.80 116.86 -13.00 *END DryMazeLink *BEGIN HighRift 227 407 8.78 105.60 50.00 407 408 2.90 134.03 -15.00 408 409 11.00 226.03 -8.00 409 410 4.00 155.03 -10.00 410 411 11.50 218.03 11.00 411 412 6.00 241.03 4.00 412 413 13.40 236.03 12.00 413 414 2.60 317.03 30.00 414 415 10.00 44.03 -2.00 415 416 5.60 43.03 -10.00 416 417 18.40 52.03 -1.00 413 418 21.30 234.03 2.00 418 419 14.50 222.03 2.00 419 420 6.40 207.03 6.00 420 421 5.00 247.03 2.00 421 422 5.90 112.03 -30.00 422 423 12.80 98.03 -10.00 421 424 20.00 247.03 0.00 *END HighRift *BEGIN DryMaze 231 444 5.99 180.73 25.00 444 445 11.30 184.11 -4.00 445 446 12.80 206.11 0.00 446 447 3.30 163.11 0.00 447 448 8.20 249.11 0.00 448 449 11.80 122.11 0.00 449 450 5.20 227.11 -9.00 450 451 2.00 91.11 0.00 451 452 5.00 203.11 0.00 452 453 7.20 117.11 9.00 452 454 1.50 0.00 90.00 454 455 3.10 201.11 0.00 455 456 5.60 254.11 -7.00 456 457 2.10 158.11 0.00 457 458 8.30 119.11 5.00 457 459 11.90 288.11 -5.00 459 460 10.10 211.11 0.00 460 461 5.20 209.61 -4.00 461 462 10.00 256.11 8.00 462 463 3.40 247.61 35.00 463 464 9.40 262.11 0.00 464 465 3.40 354.61 0.00 465 466 9.70 256.11 0.00 466 467 3.70 209.61 20.00 467 468 7.60 271.61 0.00 468 469 6.70 38.11 -17.00 469 470 8.60 274.61 0.00 470 471 7.30 222.61 0.00 469 472 14.10 36.11 0.00 472 473 11.10 277.61 0.00 473 474 7.60 273.11 0.00 474 475 5.00 278.11 12.00 473 476 8.10 212.11 12.00 476 477 4.00 223.11 0.00 477 478 7.80 91.11 0.00 473 479 21.00 103.11 0.00 472 480 14.40 38.11 6.00 480 481 7.20 98.11 0.00 465 482 14.50 27.11 0.00 482 483 21.10 41.11 0.00 483 484 14.80 27.11 0.00 484 485 12.00 271.11 0.00 485 486 9.10 50.11 15.00 484 487 10.30 103.11 8.00 487 488 9.10 51.11 -5.00 487 489 6.10 137.11 -16.00 489 490 4.70 167.61 -17.00 490 491 9.70 122.61 0.00 *END DryMaze *BEGIN DormouseInlet 232 283 13.80 63.86 6.00 231 232 9.20 174.86 0.00 232 233 10.80 220.86 -2.00 233 234 5.50 155.86 9.00 234 235 5.60 212.86 0.00 235 236 6.20 247.86 6.00 236 237 11.00 125.86 6.00 237 238 4.20 211.86 -4.00 238 239 4.80 188.86 6.00 239 240 4.70 284.86 -12.00 240 241 3.70 212.86 0.00 241 242 5.90 248.86 13.00 242 243 4.90 258.86 -9.00 243 244 4.80 213.86 3.00 244 245 9.00 201.86 2.00 245 246 11.30 253.86 3.00 246 247 5.90 152.86 -10.00 247 248 6.10 234.86 11.00 248 249 3.80 249.86 38.00 249 250 4.80 294.86 -20.00 250 251 6.20 252.86 -4.00 251 252 2.50 173.86 14.00 252 253 7.70 224.86 2.00 253 254 2.30 0.00 90.00 254 255 6.00 189.86 0.00 255 256 9.80 226.86 -13.00 256 257 5.30 259.86 3.00 257 258 9.80 218.86 5.00 258 259 5.00 247.86 3.00 259 260 12.10 215.86 1.00 260 261 2.60 0.00 90.00 261 262 4.70 164.86 10.00 262 263 7.20 136.86 -13.00 263 264 3.20 89.86 10.00 264 265 1.90 203.86 -45.00 265 266 3.60 201.86 31.00 266 267 3.40 117.86 -53.00 267 268 5.60 175.86 6.00 268 269 4.30 223.86 22.00 269 270 7.10 214.86 12.00 270 271 2.80 220.86 -16.00 271 272 13.20 201.86 12.00 272 273 2.80 198.86 -10.00 273 274 3.20 131.86 15.00 274 275 2.20 148.86 5.00 275 276 6.10 218.86 3.00 276 277 6.00 186.86 -10.00 277 278 8.00 200.86 21.00 278 279 1.60 168.86 60.00 279 280 1.80 209.86 -38.00 280 281 5.90 222.86 18.00 281 282 4.60 298.86 20.00 *END DormouseInlet *BEGIN UpStream *EQUATE MainStream.63 DoubleBarrel.63 *EQUATE CatPrintPassage.77 CoffinLevelInlet.77 *EQUATE LowerLevels.78 CoffinLevelInlet.78 *EQUATE LowerLevels.97a UpperLevelLink.8 *EQUATE UpperLevelLink.11 RopeLoopAvenPassage.405 *EQUATE CatPrintPassage.115 DoubleBarrelPassage.12 *EQUATE UpperLevelLink.12 DoubleBarrelPassage.12 *EQUATE DoubleBarrel.65 DoubleBarrelPassage.41a *BEGIN MainStream 20 55 29.53 87.09 0.00 55 56 36.45 115.16 0.00 56 57 14.00 180.00 0.00 57 58 17.00 88.31 0.00 58 59 19.00 180.00 0.00 59 60 20.39 281.31 0.00 60 61 19.72 210.46 0.00 61 62 12.08 114.44 0.00 62 63 5.00 216.87 0.00 *END MainStream *BEGIN DoubleBarrel 63 64 126.00 114.48 0.00 63 65 7.21 213.69 0.00 *END DoubleBarrel *BEGIN UpperLevelLink *CALIBRATE declination 2.42 *CALIBRATE clino -2.0 1 0 5.95 265.00 35.00 2 1 7.78 292.00 -1.00 3 2 7.99 245.00 -2.00 4 3 4.07 0.00 90.00 5 4 8.36 223.00 24.00 6 5 6.26 264.00 10.00 7 6 10.56 355.00 -2.00 8 7 9.83 285.00 10.00 9 8 12.02 248.00 -4.00 10 9 6.51 300.00 -8.00 11 10 11.70 310.00 3.00 12 11 17.48 249.00 1.00 *END UpperLevelLink *BEGIN DoubleBarrelPassage *CALIBRATE declination 2.42 *CALIBRATE clino -2.0 13 12 11.01 176.00 -3.00 14 13 10.36 165.00 3.00 15 14 7.20 168.00 -12.00 16 15 27.89 125.00 -2.00 17 16 16.28 132.00 6.00 18 17 2.96 234.00 6.00 19 18 16.85 286.00 -4.00 19 75 14.76 118.30 0.00 20 19 9.45 176.00 0.00 21 20 8.33 279.00 -6.00 22 21 3.49 244.00 19.00 23 22 4.49 245.00 -18.00 24 23 9.30 119.00 -1.00 25 24 4.69 77.00 10.00 26 25 17.42 118.00 -1.00 27 26 4.20 88.00 -41.00 28 27 9.58 168.00 -10.00 29 28 7.23 164.00 30.00 30 29 3.25 114.00 3.00 31 30 6.30 157.00 4.00 32 31 7.30 106.00 -14.00 33 32 12.12 119.00 -10.00 34 33 12.10 85.00 -1.00 35 34 19.47 106.00 -1.00 36 35 14.68 106.00 -2.00 37 36 26.27 114.00 -2.00 38 37 20.38 114.00 -2.00 39 38 27.30 123.00 -6.00 40 39 19.16 112.00 3.00 41 40 6.97 75.00 5.00 41a 40 7.00 112.00 3.00 *END DoubleBarrelPassage *BEGIN LowerLevels 78 92 11.00 180.00 0.00 92 93 26.07 122.47 0.00 97 97a 3.47 123.00 0.00 97 100 13.15 188.74 0.00 100 101 22.36 169.69 0.00 102 103 11.40 217.87 0.00 103 104 11.18 259.69 0.00 104 105 9.22 310.60 0.00 105 101 18.38 45.00 0.00 105 107 32.80 232.43 0.00 107 108 12.16 189.46 0.00 108 109 5.38 291.80 0.00 109 110 5.38 21.80 0.00 110 111 18.86 302.00 0.00 111 112 21.02 267.27 0.00 *END LowerLevels *BEGIN CatPrintPassage 77 96 28.65 119.24 0.00 116 96 19.10 317.12 0.00 115 116 19.00 0.00 0.00 115 118 26.90 138.01 0.00 118 119 16.15 158.19 0.00 119 120 12.53 118.61 0.00 120 121 5.00 180.00 0.00 *END CatPrintPassage *BEGIN RopeLoopAvenPassage 134 389 7.50 2.03 -7.00 389 390 6.42 302.03 -5.00 390 391 10.26 19.03 1.00 391 392 13.62 261.03 -2.00 392 393 9.73 13.03 -3.00 393 394 3.04 326.03 13.00 394 395 15.81 296.03 -4.00 395 396 3.05 194.03 -20.00 396 397 6.47 317.03 -6.00 397 398 7.85 59.03 5.00 398 399 4.60 47.03 5.00 399 400 8.18 288.03 4.00 400 401 5.05 94.03 -30.00 401 402 3.50 73.03 0.00 402 403 11.12 72.03 -40.00 403 404 8.26 185.03 -2.00 404 405 7.98 128.03 -4.00 405 406 18.75 66.03 -3.00 *END RopeLoopAvenPassage *BEGIN CoffinLevelInlet 77 78 10.63 228.81 0.00 78 79 39.05 283.32 0.00 79 80 10.44 286.70 0.00 79 81 6.08 189.46 0.00 81 82 11.88 284.62 0.00 82 83 4.24 225.00 0.00 83 84 17.27 157.89 0.00 84 85 12.04 274.76 0.00 85 86 8.06 172.87 0.00 86 87 6.32 108.43 0.00 87 88 6.08 170.53 0.00 88 89 23.34 279.86 0.00 89 90 8.06 209.74 0.00 90 91 30.08 291.44 0.00 *END CoffinLevelInlet *END UpStream *BEGIN EnergeticBTLegs *CALIBRATE declination 2.42 2 1 4.77 281.00 1.00 3 2 3.40 341.00 0.00 4 3 2.23 237.00 2.00 5 4 2.47 289.00 -27.00 6 5 2.87 324.00 -11.00 7 6 3.47 254.00 -22.00 8 7 3.20 244.00 1.00 9 8 2.50 285.00 -7.00 10 9 3.30 304.00 5.00 11 10 3.20 273.00 -3.00 12 11 3.16 287.00 -2.00 13 12 2.80 183.00 -45.00 14 13 2.66 181.00 0.00 15 14 5.51 270.00 -3.00 16 15 8.59 198.00 -1.00 17 16 9.92 305.00 -1.00 18 17 6.21 237.00 -2.00 19 18 6.40 285.00 -3.00 20 19 10.04 301.00 -3.00 21 20 3.85 241.00 0.00 22 21 3.58 298.00 -5.00 23 22 14.95 312.00 -3.00 24 23 22.47 302.00 -2.00 25 24 8.45 299.00 -7.00 26 25 4.43 291.00 -12.00 27 26 6.72 302.00 8.00 28 27 6.85 303.00 -8.00 29 28 9.12 303.00 -9.00 30 29 7.15 298.00 -8.00 31 30 3.22 321.00 27.00 32 31 8.30 80.00 -65.00 33 32 6.32 90.00 -25.00 34 33 6.49 66.00 -44.00 35 34 2.45 328.00 1.00 33 36 4.17 98.00 56.00 36 37 4.62 63.00 2.00 37 38 8.05 142.00 0.00 38 39 6.40 85.00 -3.00 39 40 6.90 123.00 -9.00 40 41 8.59 60.00 0.00 41 42 5.50 115.00 2.00 *END EnergeticBTLegs *BEGIN SparkleHall *CALIBRATE declination 2.42 0 1 5.75 130.00 -5.00 1 2 2.90 169.00 -14.00 2 3 4.10 270.00 14.00 3 4 4.60 279.00 -50.00 4 5 4.30 310.00 -11.00 5 6 4.00 239.00 -6.00 5 7 7.40 230.00 -8.00 7 8 4.00 299.00 -9.00 8 9 4.85 245.00 3.00 9 10 4.40 163.00 -19.00 10 11 14.70 131.00 4.00 10 12 11.60 224.00 -9.00 12 13 2.07 307.00 -27.00 13 14 4.83 229.00 -5.00 14 15 1.30 293.00 3.00 15 16 1.93 188.00 -3.00 16 17 2.10 242.00 -7.00 17 18 7.00 134.00 -8.00 18 19 3.29 119.00 -5.00 19 20 1.74 106.00 -4.00 20 21 3.43 225.00 -8.00 10 22 10.20 326.00 23.00 10 23 9.10 349.00 30.00 23 24 4.40 4.00 19.00 24 25 4.15 52.00 -2.00 *END SparkleHall *BEGIN UpperLevels *EQUATE 148 PendantChamber.148 *EQUATE 182 FarEnd.182 *EQUATE 174 FarEndInlet.174 *EQUATE 166 214 *EQUATE 129 530 *EQUATE 386 89CentsTinto.1 *EQUATE 174 21stPassage.21st-090412.19 *EQUATE 148 PendantChamber2011.24 *EQUATE 150 PendantChamber2011.16 121 122 4.80 115.86 13.00 122 123 2.30 295.86 0.00 123 124 1.00 0.00 90.00 124 125 4.00 221.86 22.00 125 126 7.00 0.00 90.00 126 127 2.50 129.86 0.00 127 128 5.90 231.86 0.00 128 129 9.20 209.86 27.00 129 130 4.10 137.86 31.00 130 131 18.80 299.86 -5.00 131 132 3.80 41.86 15.00 132 133 10.40 282.86 -19.00 133 134 12.50 304.86 -1.00 134 135 11.30 278.86 23.00 135 136 30.00 246.86 2.00 136 137 20.20 19.86 0.00 137 138 14.90 281.86 -12.00 138 139 30.00 272.86 1.00 139 140 10.60 355.86 0.00 140 141 5.00 92.86 -12.00 141 142 4.40 22.86 -6.00 142 143 5.60 332.86 40.00 143 144 8.70 74.86 -16.00 144 145 6.30 17.86 35.00 145 146 21.00 338.86 8.00 146 147 25.00 356.86 -3.00 147 148 27.70 13.86 0.00 150 151 30.00 280.86 -2.00 151 152 8.80 293.86 1.00 152 153 6.80 313.86 10.00 153 154 12.00 284.86 -8.00 139 155 8.60 285.86 40.00 155 156 12.70 281.86 -1.00 156 157 15.20 276.86 4.00 157 158 12.00 235.86 5.00 130 159 3.50 151.86 0.00 159 160 19.00 97.86 -8.00 160 161 12.40 147.86 14.00 161 162 19.00 134.86 -3.00 162 163 21.50 198.86 0.00 161 164 4.20 222.86 0.00 164 165 8.30 277.86 -20.00 165 166 10.00 227.86 3.00 163 167 25.40 92.86 -3.00 167 168 24.70 40.86 -12.00 168 169 24.90 116.86 10.00 169 170 8.30 188.86 -20.00 170 171 25.40 111.86 -8.00 171 172 9.50 112.86 18.00 172 173 18.70 197.86 3.00 173 174 13.70 140.86 -16.00 174 175 19.50 92.86 -5.00 175 176 10.70 60.86 -6.00 176 177 22.60 65.86 4.00 177 178 9.20 62.86 -10.00 178 179 19.70 45.86 0.00 179 180 18.60 66.86 3.00 180 181 9.00 100.86 -14.00 181 182 6.40 169.86 0.00 174 183 4.80 264.86 15.00 183 184 5.40 235.86 0.00 184 185 15.40 254.86 15.00 185 186 10.60 281.86 0.00 186 187 10.60 217.86 0.00 187 188 6.50 248.86 0.00 188 189 3.50 173.86 50.00 189 190 15.00 235.86 -15.00 163 191 16.90 243.86 6.00 191 192 19.50 225.86 0.00 192 193 5.00 292.86 40.00 193 194 3.10 271.86 -25.00 194 195 11.10 237.86 -9.00 195 196 14.60 217.86 0.00 196 197 6.80 235.86 5.00 197 198 11.40 283.86 1.00 198 199 4.10 245.86 8.00 192 200 8.20 106.86 0.00 194 201 3.00 246.86 -30.00 201 202 3.20 299.86 -35.00 202 203 5.20 265.86 0.00 203 204 8.40 43.86 0.00 204 205 7.50 33.86 0.00 205 206 2.70 341.86 -12.00 206 207 4.50 229.86 0.00 207 208 2.40 306.86 3.00 208 209 4.40 44.86 3.00 209 210 4.00 35.86 0.00 210 211 6.20 52.86 4.00 211 212 6.10 40.86 -13.00 212 213 6.40 359.86 -17.00 213 214 11.70 31.86 -8.00 130 382 20.47 290.94 1.00 382 383 4.70 222.95 11.00 383 384 9.00 280.95 -8.00 384 385 3.90 212.95 -10.00 385 386 11.55 242.95 -4.00 386 387 12.35 223.95 -32.00 387 388 9.75 184.95 -38.00 158 492 7.00 63.11 0.00 492 493 6.30 2.11 -12.00 493 494 11.40 95.11 -8.00 494 495 3.00 254.11 -31.00 495 496 1.80 203.11 0.00 496 497 5.00 206.11 0.00 497 498 1.80 99.11 0.00 498 499 2.30 179.11 0.00 499 500 3.30 0.00 90.00 500 501 5.20 285.11 1.00 501 502 4.00 194.11 0.00 502 503 1.70 287.11 -11.00 503 504 3.00 225.11 -21.00 504 505 3.00 188.11 -43.00 505 506 2.50 250.11 0.00 506 507 2.50 185.11 0.00 507 508 4.00 198.11 0.00 508 509 7.00 283.11 0.00 167 510 16.03 344.87 -14.00 510 511 2.60 291.11 5.00 511 512 8.10 313.11 4.00 512 513 9.00 279.11 24.00 512 514 1.60 281.61 32.00 514 515 7.00 42.11 -16.00 515 516 2.00 0.00 90.00 516 517 5.70 44.11 14.00 517 518 2.60 351.11 0.00 518 519 6.40 40.11 7.00 517 520 7.30 113.11 0.00 520 521 3.70 47.11 5.00 516 522 5.10 348.11 -24.00 522 523 4.10 341.11 -8.00 523 524 10.50 318.11 0.00 524 525 12.60 315.61 1.00 525 526 2.00 275.11 15.00 526 527 10.40 227.11 -6.00 527 528 6.60 279.11 21.00 528 529 18.80 296.11 0.00 529 530 6.60 217.11 30.00 190 425 3.70 256.94 -59.00 425 426 12.00 283.03 10.00 426 427 15.50 278.03 0.00 427 428 18.00 273.03 3.00 428 429 28.00 273.03 3.00 429 430 10.00 256.03 8.00 430 431 16.00 272.03 5.00 431 432 15.00 246.03 9.00 432 433 16.00 224.03 0.00 425 434 3.50 150.03 2.00 434 435 14.70 215.03 -3.00 435 436 4.50 191.03 -6.00 436 437 9.00 239.03 0.00 437 438 3.00 186.03 -2.00 438 439 3.00 230.03 2.00 439 440 7.00 238.03 0.00 440 441 7.00 268.03 5.00 441 442 6.00 250.03 2.00 442 443 10.40 248.03 2.00 182 600 1.50 50.00 0.00 182 601 2.00 130.00 0.00 *BEGIN PendantChamber 148 284 6.10 301.99 32.00 284 285 8.20 297.95 -5.00 285 286 10.20 67.95 0.00 286 287 10.10 0.95 4.00 287 288 7.70 35.95 -3.00 288 289 3.50 23.95 -30.00 289 290 8.00 0.00 -90.00 290 291 6.00 13.95 -45.00 291 292 4.00 0.00 -90.00 292 293 6.00 0.00 -90.00 293 294 18.00 13.95 0.00 293 295 6.00 0.00 -90.00 288 296 18.20 89.95 0.00 296 297 5.00 225.95 5.00 297 298 13.90 125.95 3.00 298 299 5.00 38.95 -18.00 299 300 13.70 116.95 8.00 300 301 7.00 96.95 -20.00 301 302 15.00 96.95 -5.00 148 303 5.65 55.91 22.00 303 304 7.05 82.95 26.00 304 305 3.70 22.95 2.00 305 306 16.60 163.95 35.00 306 307 12.43 203.95 32.00 307 308 22.00 276.95 5.00 308 309 11.60 258.95 35.00 307 310 4.85 96.95 -11.00 310 311 16.70 188.95 14.00 311 312 9.60 184.95 -13.00 310 313 3.40 187.95 3.00 313 314 16.28 95.95 -4.00 314 315 10.90 77.95 -28.00 315 316 5.85 56.95 -23.00 316 317 16.55 77.95 2.00 317 318 20.70 77.95 28.00 317 319 15.35 300.95 -16.00 319 320 14.87 355.95 -14.00 *END PendantChamber *BEGIN PendantChamber2011 *CALIBRATE declination 1.75 1 2 4.33 212.03 24.20 2 2a 2.78 239.60 83.80 2 2b 3.12 341.24 -65.85 2 2c 23.28 150.27 10.67 2 2d 19.40 161.19 8.99 2 2e 11.83 213.62 14.64 2 2f 5.44 279.15 28.83 2 3 13.29 306.52 -13.04 3 3a 4.72 214.19 73.02 3 3b 6.18 259.89 -64.51 3 3c 12.99 259.83 1.71 3 3d 21.26 258.87 15.60 3 3e 20.03 203.29 20.62 3 3f 5.35 26.21 -15.79 3 4 16.81 305.37 -7.44 4 4a 0.90 205.68 80.23 4 4b 14.89 174.05 -58.94 4 4c 11.73 154.37 -3.59 4 4d 13.18 177.42 -3.95 4 4e 12.43 138.96 -7.20 4 4f 11.52 148.30 -8.38 4 4g 4.76 354.91 -21.00 4 4h 5.88 332.29 -14.58 4 5 8.14 240.11 -6.57 5 6 12.13 305.07 35.94 6 7 3.05 81.54 -33.10 7 8 5.80 314.25 35.63 8 9 8.66 292.13 23.92 9 10 10.04 325.65 -45.24 10 11 8.39 231.02 -16.33 11 12 6.21 241.07 -10.52 12 13 2.28 273.51 6.30 13 14 4.47 173.38 -5.69 14 15 4.30 206.78 -1.69 15 16 7.41 179.27 -13.67 16 17 5.52 154.94 12.94 17 21 10.72 171.80 -68.32 16 18 22.20 109.98 2.58 18 19 13.10 78.35 -2.82 19 20 6.16 11.79 14.32 20 5 4.85 5.49 -17.36 18 22 8.21 111.36 17.53 22 23 3.69 136.47 -7.46 23 24 6.64 116.35 -27.80 24 24a 3.11 31.29 77.03 24 24b 1.56 174.75 -87.56 24 24c 8.62 64.80 18.58 24 24d 7.60 69.04 19.71 24 24e 3.75 285.85 9.57 *END PendantChamber2011 *BEGIN 89CentsTinto *CALIBRATE declination 2.28 1 2 3.00 0.00 -90.00 2 3 10.00 226.00 -28.00 3 4 4.20 95.00 -20.00 4 5 5.70 344.00 12.00 5 6 4.00 0.00 90.00 6 7 6.00 216.00 4.00 7 8 8.40 264.00 23.00 8 9 8.50 232.00 22.00 9 10 6.80 235.00 72.00 10 11 8.80 219.00 14.00 11 12 22.70 228.00 4.00 12 13 18.00 222.00 -10.00 13 14 13.00 64.00 -8.00 13 15 20.50 228.00 -10.00 15 16 5.70 97.00 4.00 16 17 6.50 181.00 20.00 17 18 4.70 128.00 22.00 18 19 3.70 228.00 8.00 19 20 9.50 232.00 -5.00 20 21 4.00 225.00 22.00 21 22 3.90 0.00 90.00 22 23 3.00 226.00 0.00 23 24 6.00 225.00 -2.00 24 25 3.00 225.00 0.00 19 19a 20.00 0.00 90.00 14 26 3.50 96.00 -34.00 26 27 6.50 60.00 -1.00 27 28 9.20 60.00 -9.00 28 29 3.60 59.00 -25.00 29 30 5.70 44.00 -30.00 30 31 7.60 40.00 -1.00 31 32 3.00 343.00 -5.00 32 33 6.30 33.00 -10.00 33 34 4.00 324.00 32.00 33 35 3.50 6.00 -2.00 35 36 2.80 311.00 0.00 *END 89CentsTinto *BEGIN FarEnd 182 321 8.60 214.95 0.00 321 322 6.50 200.95 0.00 322 323 12.00 226.95 0.00 323 324 18.30 214.95 0.00 324 325 9.00 199.95 0.00 325 326 11.00 230.95 0.00 326 327 11.80 208.95 0.00 327 328 5.00 218.95 0.00 328 329 6.00 235.95 6.00 329 330 4.00 206.95 0.00 330 331 2.20 263.95 0.00 331 332 2.30 235.95 8.00 332 333 17.40 223.95 0.00 333 334 3.40 193.95 -30.00 334 335 6.10 234.95 0.00 335 336 10.60 248.95 15.00 336 337 8.30 243.95 0.00 337 338 1.00 215.95 0.00 338 339 3.00 0.00 90.00 339 340 4.00 219.95 0.00 340 341 18.40 248.95 0.00 341 342 5.00 248.95 -40.00 342 343 6.80 255.95 -9.00 343 344 20.50 244.95 0.00 344 345 5.80 213.95 0.00 345 346 2.50 276.95 0.00 346 347 1.00 210.95 0.00 347 348 5.60 0.00 90.00 348 349 2.70 312.95 0.00 349 350 12.50 248.95 0.00 350 351 2.00 0.00 -90.00 351 352 6.25 233.95 5.00 352 353 6.00 241.95 0.00 353 354 2.00 0.00 -90.00 354 355 14.30 223.95 0.00 355 356 11.50 227.95 16.00 356 357 2.80 168.95 40.00 357 358 20.00 58.95 20.00 357 359 10.60 261.95 20.00 359 360 5.20 226.95 0.00 360 361 11.40 233.95 35.00 361 362 7.00 250.95 -50.00 345 363 3.20 278.95 0.00 363 364 3.50 190.95 20.00 364 365 2.10 235.95 0.00 365 366 2.50 183.95 0.00 366 367 3.70 241.95 28.00 367 368 8.90 207.95 40.00 *EQUATE 368 369 *END FarEnd *BEGIN FarEndInlet 174 531 7.70 23.35 -15.00 531 532 7.50 33.35 0.00 532 533 12.80 42.35 5.00 533 534 22.80 41.35 6.00 534 535 8.40 42.35 0.00 535 536 6.20 21.35 3.00 536 537 8.50 53.35 4.00 537 538 19.60 60.35 5.00 538 539 10.60 46.35 10.00 539 540 4.20 78.35 22.00 540 541 7.30 55.35 -6.00 541 542 7.40 134.35 0.00 542 543 4.50 204.35 -30.00 542 544 7.10 22.35 0.00 544 545 4.40 66.35 21.00 545 546 11.40 78.35 44.00 539 547 17.40 290.35 10.00 547 548 20.60 238.35 -4.00 548 549 4.70 256.35 32.00 549 550 6.10 286.35 35.00 539 551 8.40 325.35 8.00 551 552 17.10 56.35 18.00 *END FarEndInlet *BEGIN 21stPassage *EQUATE 21st-080322.16 21st-090412.3 *BEGIN 21st-080322 *CALIBRATE declination 2.15 16 19 19.09 45.00 21.00 19 20 5.38 15.00 10.50 19 21 9.92 108.00 8.00 21 22 4.35 122.00 30.00 21 23 3.60 58.00 9.00 23 24 2.53 78.00 -19.00 24 26 2.10 0.00 90.00 *END 21st-080322 *BEGIN 21st-090412 *CALIBRATE declination 2.08 6 1 2.15 349.60 20.72 1 2 2.03 9.20 13.84 2 3 4.34 37.32 -11.13 3 4 2.57 174.52 -17.84 4 5 2.72 186.48 -0.82 5 6 3.31 227.75 8.87 6 7 2.89 241.58 4.45 7 8 2.44 212.15 -14.81 8 9 3.21 193.18 -3.66 9 10 7.73 241.99 -5.07 10 11 4.86 208.83 -21.71 11 12 0.65 215.87 -32.44 12 13 6.19 235.13 -65.26 7 14 9.36 267.80 12.59 14 15 12.22 248.02 6.25 15 16 10.63 260.69 -10.04 16 17 2.68 218.41 -48.93 17 18 10.62 257.98 -46.07 18 19 7.17 126.81 -4.00 19 20 10.73 91.88 -13.36 20 13 9.72 91.41 11.83 *END 21st-090412 *END 21stPassage *END UpperLevels *END 0105_Riano CaveConverter_src/test/data/regression/0105_Riano_ss_ref.svx0000644000000000000000000015154212560565160023077 0ustar rootroot*BEGIN 0105_Riano *EQUATE Entrance.781 RianoEntranceArea-100221.LowerEntMaze.35 *EQUATE Entrance.785 RianoEntranceArea-100221.LowerEntMaze.1 *EQUATE HSC.Feb10c.6a RianoEntranceArea-100221.UpperEntMaze.22 *EQUATE Entrance.793 HSC.Easter09.0 *EQUATE Entrance.815 ExtnOffEntranceInlet.815 *EQUATE Entrance.819 DownStream.755 *EQUATE DownStream.28 DownStreamExtn.28 *EQUATE DownStream.28 TornoInlet.28 *EQUATE DownStreamExtn.641 DownstreamUpper.FriedEggOnAStick.1 *EQUATE DownStreamExtn.651 DownstreamUpper.FriedEggOnAStick.17 *EQUATE TornoInlet.563 DownstreamUpper.Oxbow.20a *EQUATE TornoInlet.623 Riano2006-12-10.1 *EQUATE TornoInlet.639 Riano2006-12-11.1 *EQUATE Riano2006-12-11.106 Riano_Easter2007.Riano_070331.106 *EQUATE Riano2006-12-11.49 Riano_Easter2007.Riano_070404b.17 *EQUATE Riano2006-12-11.68 Riano_Easter2007.Riano_070331.13a *EQUATE Entrance.808 DryMazeLink.808 *EQUATE DryMaze.474 HighRift.423 *EQUATE HighRift.227 DryMazeLink.227 *EQUATE DryMaze.231 DryMazeLink.231 *EQUATE DryMazeLink.231 DormouseInlet.231 *EQUATE DryMazeLink.231 UpStream.DoubleBarrelPassage.41a *EQUATE EnergeticBTLegs.1 UpStream.DoubleBarrelPassage.23 *EQUATE SparkleHall.0 EnergeticBTLegs.35 *EQUATE UpperLevels.134 UpStream.RopeLoopAvenPassage.134 *EQUATE UpperLevels.144 UpStream.UpperLevelLink.0 *EQUATE UpperLevels.121 UpStream.CatPrintPassage.121 *BEGIN RianoEntranceArea-100221 *DATE 2010.02.21 *CALIBRATE declination 2.0 *EQUATE LowerEntMaze.3 UpperEntMaze.3 *BEGIN LowerEntMaze 1 2 8.15 220.26 -2.02 *FLAGS SPLAY 2 2a 1.00 285.07 7.18 *FLAGS NOT SPLAY 2 3 6.41 225.07 5.13 2 25 4.58 294.52 9.74 *FLAGS SPLAY 25 25a 1.05 191.12 4.76 25 25b 1.66 259.45 3.19 *FLAGS NOT SPLAY 25 26 4.10 217.40 2.20 26 27 7.86 292.25 1.39 *FLAGS SPLAY 27 27a 0.77 247.47 -5.34 *FLAGS NOT SPLAY 27 28 3.03 228.11 -3.14 *FLAGS SPLAY 28 28a 0.89 237.86 3.24 28 28b 0.81 17.98 5.37 28 28c 3.31 277.29 -0.23 *FLAGS NOT SPLAY 28 29 3.71 216.86 18.56 *FLAGS SPLAY 29 29a 1.74 90.34 -18.51 29 29b 1.61 120.15 -3.95 *FLAGS NOT SPLAY 29 30 4.08 103.92 -6.09 *FLAGS SPLAY 30 30a 0.68 21.17 -8.71 *FLAGS NOT SPLAY 30 31 3.79 84.96 -7.99 *FLAGS SPLAY 31 31a 0.64 56.30 4.95 31 31b 0.92 319.56 11.88 31 31c 0.65 87.86 -0.04 31 31d 1.54 201.12 -5.92 31 31e 1.73 158.07 -12.22 31 31f 1.18 136.82 -20.51 31 31g 0.88 121.01 -2.89 31 31h 4.59 201.13 4.89 *FLAGS NOT SPLAY 31 32 4.64 99.01 12.08 32 33 1.30 76.29 -0.03 33 3 1.44 105.67 -81.51 30 34 10.38 220.58 3.57 *FLAGS SPLAY 34 34a 1.41 24.32 -30.22 *FLAGS NOT SPLAY 34 35 1.67 4.11 -59.34 *FLAGS SPLAY 35 35a 0.99 112.52 -0.20 35 35b 1.10 170.43 3.30 *FLAGS NOT SPLAY 35 36 4.39 121.59 -2.68 36 37 2.92 105.83 1.20 37 38 4.27 30.29 -5.23 *FLAGS SPLAY 38 38a 1.37 140.33 1.49 *FLAGS NOT SPLAY 38 39 1.38 116.83 0.30 39 40 6.11 31.48 1.73 40 33 3.83 56.70 23.30 40 31 3.79 308.61 9.16 29 41 4.61 291.84 -2.93 41 42 4.54 292.51 -5.49 *FLAGS SPLAY 42 42a 2.05 77.70 12.27 42 42b 2.06 178.04 4.36 42 42c 4.01 212.54 2.97 42 42d 8.68 226.31 4.45 42 42e 4.27 276.30 0.46 42 42f 3.73 286.88 0.37 42 42g 1.08 15.18 6.05 42 42h 3.71 326.89 -3.03 *FLAGS NOT SPLAY 42 43 8.78 219.84 3.81 27 46 0.93 10.75 -37.55 46 47 7.83 289.96 2.36 42 48 4.12 321.31 -2.27 48 49 4.73 64.03 -4.41 48 50 7.51 279.02 -0.58 *FLAGS SPLAY 50 50a 1.06 357.82 -2.07 50 50b 0.79 282.67 8.67 *FLAGS NOT SPLAY 50 51 1.42 227.38 28.37 *FLAGS SPLAY 51 51a 0.41 166.32 -26.57 51 51b 0.66 61.74 -24.08 51 51c 0.69 247.84 -21.79 *FLAGS NOT SPLAY 51 52 5.46 213.54 -1.97 52 53 2.32 198.69 13.00 53 54 1.92 236.57 -3.69 *FLAGS SPLAY 54 54a 1.26 122.73 12.64 54 54b 2.14 284.35 6.64 54 54c 0.97 265.69 11.27 54 54d 1.86 348.79 -1.18 54 54e 2.48 332.98 0.01 54 54f 3.37 320.69 5.00 *FLAGS NOT SPLAY 54 55 3.51 299.99 5.50 *FLAGS SPLAY 54 54a 1.59 102.18 4.58 *FLAGS NOT SPLAY 51 56 3.68 289.94 -3.83 56 57 2.47 282.06 0.54 *FLAGS SPLAY 57 57a 2.03 141.90 5.92 57 57b 1.73 162.20 4.76 57 57c 1.97 228.89 10.73 57 57d 2.78 248.27 8.88 57 57e 2.29 269.24 3.30 57 57f 1.16 287.08 -5.23 *FLAGS NOT SPLAY 57 58 1.63 288.51 -8.31 58 59 3.42 288.32 -0.51 59 60 1.24 272.12 2.44 60 61 2.61 213.84 1.28 *FLAGS SPLAY 61 61a 3.35 278.37 1.49 *FLAGS NOT SPLAY *END LowerEntMaze *BEGIN UpperEntMaze 3 4 3.85 168.05 72.56 *FLAGS SPLAY 4 4a 1.63 193.09 7.07 4 4b 2.58 301.81 1.77 4 4c 1.58 16.19 12.00 4 4d 1.38 227.95 4.81 *FLAGS NOT SPLAY 4 5 4.76 203.06 0.22 *FLAGS SPLAY 5 5a 3.39 77.20 5.39 5 5b 4.04 178.35 -0.26 5 5c 5.88 208.72 1.73 5 5d 2.77 31.64 4.80 5 5e 3.95 234.15 1.14 *FLAGS NOT SPLAY 5 6 5.16 222.96 4.51 *FLAGS SPLAY 6 6a 1.63 261.07 16.38 6 6b 1.29 281.66 18.89 *FLAGS NOT SPLAY 6 7 5.20 273.33 17.24 *FLAGS SPLAY 7 7a 3.58 240.90 9.83 7 7b 3.85 315.14 8.39 *FLAGS NOT SPLAY 7 8 7.49 287.85 5.16 *FLAGS SPLAY 8 8a 1.98 274.78 -0.05 8 8b 4.34 146.15 -1.50 8 8c 3.49 160.63 -0.10 8 8d 1.99 309.49 -1.12 *FLAGS NOT SPLAY 5 9 5.41 109.63 3.04 *FLAGS SPLAY 9 9a 1.81 38.58 0.72 *FLAGS NOT SPLAY 9 10 6.23 202.78 -4.94 *FLAGS SPLAY 10 10a 0.57 79.48 3.95 10 10b 2.08 219.49 -5.23 10 10c 2.70 223.78 -2.51 *FLAGS NOT SPLAY 10 11 3.91 220.40 -2.48 10 12 5.24 112.34 4.31 12 13 6.63 90.15 -0.64 13 14 5.34 93.43 -2.13 14 15 2.97 96.19 -0.41 *FLAGS SPLAY 15 15a 0.59 235.79 1.46 *FLAGS NOT SPLAY 15 16 6.64 64.03 -0.08 *FLAGS SPLAY 16 16a 2.86 230.56 -3.75 16 16b 2.35 252.88 -4.71 *FLAGS NOT SPLAY 16 17 2.52 114.04 10.29 *FLAGS SPLAY 17 17a 1.16 56.48 -2.77 17 17b 1.34 78.04 -2.59 *FLAGS NOT SPLAY 17 18 2.75 102.96 0.38 18 19 4.30 109.61 16.93 *FLAGS SPLAY 19 19a 3.34 297.67 -7.98 19 19b 3.09 282.91 -8.29 *FLAGS NOT SPLAY 17 20 4.01 71.94 -2.39 20 21 4.65 44.74 -5.64 *FLAGS SPLAY 21 21a 1.55 42.07 1.17 *FLAGS NOT SPLAY 21 22 2.32 46.08 0.40 4 23 1.72 292.26 6.26 23 24 8.36 280.02 1.95 *FLAGS SPLAY 24 24a 0.44 138.27 5.06 24 24b 3.89 216.49 5.50 24 24c 8.10 215.85 4.56 24 24d 1.97 258.67 4.92 24 24e 1.72 262.30 4.64 24 24f 1.34 235.63 9.43 *FLAGS NOT SPLAY *END UpperEntMaze *END RianoEntranceArea-100221 *BEGIN Entrance *DATE 1992.07.22 0 774 3.20 297.80 3.00 774 775 4.80 32.80 -1.00 775 776 2.20 51.80 -18.00 776 777 4.10 75.80 -4.00 777 778 4.00 99.80 0.00 778 779 9.00 126.80 3.00 779 780 6.30 69.80 0.00 780 781 3.00 119.80 0.00 785 786 23.10 91.80 0.00 786 787 5.80 26.80 0.00 787 788 20.80 112.80 0.00 788 789 7.80 27.80 16.00 789 790 11.10 93.80 -1.00 790 791 2.00 95.80 5.00 791 792 4.10 50.80 -5.00 792 793 5.90 109.80 3.00 793 794 6.60 121.80 -4.00 794 795 2.00 67.80 -14.00 795 796 7.60 119.80 0.00 796 797 3.40 105.80 -2.00 797 798 3.70 355.80 -1.00 798 799 10.40 25.80 -4.00 799 800 5.50 110.80 -1.00 800 801 7.60 14.80 1.00 801 802 5.30 83.80 -1.00 802 803 5.50 13.80 -4.00 803 804 5.70 37.80 10.00 804 805 5.00 133.80 -2.00 805 806 12.00 34.80 0.00 806 807 6.80 72.80 4.00 807 808 6.00 119.80 -4.00 808 809 13.10 19.80 -3.00 809 810 8.70 78.80 18.00 810 811 8.70 69.80 -6.00 811 812 3.10 94.80 -7.00 812 813 1.00 36.80 1.00 813 814 2.10 294.80 0.00 814 815 1.50 63.80 -2.00 815 816 3.00 0.00 -90.00 816 817 8.50 19.80 7.00 817 818 15.70 85.80 -2.00 818 819 2.10 355.80 -10.00 *END Entrance *BEGIN HSC *EQUATE Feb10a.0 Easter09.50 *EQUATE Feb10b.1 Easter09.47 *EQUATE Feb10c.1 Easter09.51 *EQUATE Feb10d.1 Easter09.29 *EQUATE Feb10d.5 Easter09.37 *BEGIN Easter09 *DATE 2009.04.17 *CALIBRATE declination 2.08 0 1 4.41 85.63 56.45 1 2 2.57 17.44 8.88 2 3 6.09 17.23 -0.36 3 4 6.26 288.72 0.89 3 5 2.08 143.25 1.29 5 6 2.63 92.99 -6.53 1 7 1.92 171.25 38.92 7 8 4.09 118.81 8.07 8 9 6.84 102.75 6.73 7 10 3.61 220.79 21.43 10 11 1.78 180.39 16.50 11 12 15.03 195.29 0.32 12 13 7.30 264.09 2.57 13 14 3.71 279.82 4.77 14 15 6.69 266.26 -26.44 15 16 2.92 52.57 0.50 16 17 7.37 58.25 0.39 17 18 3.30 34.06 -4.56 18 18b 7.76 126.15 1.14 18 19 4.75 270.79 2.04 19 20 5.16 306.51 4.31 20 21 2.77 223.43 -6.75 21 22 4.11 249.43 5.41 22 23 4.04 274.31 6.76 21 24 2.04 127.67 8.49 24 19 4.17 85.93 -6.08 15 26 4.82 275.34 11.68 26 27 9.44 283.93 -1.80 15 28 5.33 258.07 15.05 28 29 2.15 242.34 48.01 29 31 2.09 225.82 5.69 31 32 4.45 242.34 0.48 32 32a 3.19 303.43 6.37 32 32b 4.63 339.31 2.41 32 33 3.28 101.68 1.33 33 34 4.79 105.83 -13.72 34 35 2.37 121.27 -61.00 35 36 2.97 70.89 10.56 36 37 2.40 81.43 2.75 36 38 3.44 199.73 3.19 36 39 3.24 245.65 -25.94 39 40 3.12 126.45 -36.45 39 41 2.46 288.54 -19.63 41 42 2.83 297.90 27.96 42 43 1.84 310.43 50.44 43 44 7.35 226.90 12.38 44 45 1.07 265.82 18.38 45 46 2.40 112.23 14.37 46 47 2.52 132.69 26.44 47 48 2.50 63.09 0.33 48 49 4.48 87.14 -2.01 49 50 3.82 87.50 -4.52 43 51 1.80 310.46 50.33 *END Easter09 *BEGIN Feb10a *DATE 2010.02.20 *CALIBRATE declination 2.0 *FLAGS SPLAY 0 0a 3.60 19.39 1.83 0 0b 2.26 258.92 8.38 0 0c 3.31 60.29 0.77 *FLAGS NOT SPLAY 0 1 7.64 39.56 1.05 *FLAGS SPLAY 1 1a 2.61 294.46 -3.66 1 1b 3.43 38.06 -4.26 1 1c 1.70 244.03 -4.59 1 1d 1.26 127.22 -0.31 1 1e 2.69 79.03 -3.86 *FLAGS NOT SPLAY 1 2 11.76 68.75 -3.14 *FLAGS SPLAY 2 2a 2.97 284.78 2.17 2 2b 7.59 267.07 2.39 2 2c 6.80 239.84 2.24 2 2d 2.84 105.35 0.09 2 2f 4.73 92.29 -1.79 *FLAGS NOT SPLAY 2 3 4.98 96.29 -1.17 *END Feb10a *BEGIN Feb10b *DATE 2010.02.20 *CALIBRATE declination 2.0 *FLAGS SPLAY 1 1a 3.82 281.41 4.61 *FLAGS NOT SPLAY 1 2 7.20 294.61 2.90 2 3 7.61 243.35 1.55 *FLAGS SPLAY 3 3a 1.84 88.65 2.17 3 3b 3.95 281.27 3.75 3 3c 2.64 302.40 2.69 *FLAGS NOT SPLAY 3 4 11.93 266.74 1.91 *FLAGS SPLAY 4 4a 2.39 245.70 3.26 4 4b 5.96 254.92 3.14 4 4d 3.92 101.67 -1.88 4 4e 5.82 95.63 -1.84 4 4f 5.26 278.97 2.79 4 4g 4.10 69.65 -0.94 4 4h 0.46 79.90 -1.36 *FLAGS NOT SPLAY 4 5 6.16 263.28 3.50 *END Feb10b *BEGIN Feb10c *DATE 2010.02.20 *CALIBRATE declination 2.0 1 2 4.85 290.84 -5.22 *FLAGS SPLAY 2 2a 1.08 215.13 1.88 *FLAGS NOT SPLAY 2 3 3.70 282.61 -12.83 *FLAGS SPLAY 3 3a 2.44 48.00 3.08 3 3b 3.49 71.63 -2.36 *FLAGS NOT SPLAY 3 4 1.81 73.86 -29.80 4 5 4.27 304.24 21.71 5 6 7.17 294.87 1.50 6 6a 1.20 257.00 -45.00 6 7 5.02 300.46 -11.39 7 8 1.45 260.00 31.87 8 9 1.00 10.54 37.70 9 9a 3.15 263.37 4.02 9 10 1.81 95.46 -1.06 10 11 3.71 97.39 -3.31 11 12 8.03 102.41 -0.22 *FLAGS SPLAY 12 12a 1.35 100.96 7.44 12 12b 1.34 95.06 5.60 12 12c 1.24 105.50 8.22 *FLAGS NOT SPLAY *END Feb10c *BEGIN Feb10d *DATE 2010.02.20 *CALIBRATE declination 2.0 1 2 3.86 104.28 -29.69 2 3 3.71 105.63 -5.84 3 4 3.34 125.23 4.90 4 5 1.55 226.31 -1.87 *END Feb10d *END HSC *BEGIN ExtnOffEntranceInlet 815 370 1.50 214.95 0.00 370 371 1.40 98.95 0.00 371 372 2.78 209.95 38.00 372 373 6.75 62.95 1.00 373 374 1.75 0.00 90.00 374 375 4.65 288.95 14.00 375 376 8.25 303.95 19.00 376 377 6.10 250.95 20.00 377 378 2.71 276.95 25.00 378 379 4.65 232.95 2.00 379 380 4.58 297.95 30.00 380 381 5.31 245.95 22.00 *END ExtnOffEntranceInlet *BEGIN DownStream *DATE 1991.08.09 28 699 10.80 311.15 0.00 699 700 7.00 265.65 -1.00 700 701 19.90 304.15 0.00 701 702 5.90 345.65 0.00 702 703 7.20 305.65 0.00 703 704 9.60 280.65 -2.00 704 705 6.60 282.65 0.00 705 706 4.50 239.65 0.00 706 707 14.00 307.65 0.00 707 708 2.40 0.65 32.00 708 709 9.60 296.65 0.00 709 710 5.30 292.65 -14.00 710 711 16.20 292.65 0.00 711 712 4.20 286.65 21.00 712 713 8.10 295.65 -1.00 713 714 2.50 228.65 0.00 714 715 5.40 320.65 0.00 715 716 4.60 305.65 0.00 716 717 7.30 312.15 -3.00 717 718 12.40 284.15 0.00 718 719 17.50 276.65 -1.00 719 720 10.00 200.65 0.00 720 721 10.20 225.65 8.00 721 722 12.70 268.65 -4.00 722 723 4.90 306.65 0.00 723 724 7.70 224.15 2.00 724 725 6.60 263.65 -2.00 725 726 13.30 286.65 -1.00 726 727 10.80 258.65 2.00 727 728 5.70 300.65 -13.00 728 729 3.30 345.65 0.00 729 730 7.30 294.15 -2.00 730 731 13.90 250.65 0.00 731 732 4.20 296.65 -48.00 732 733 2.90 285.65 -4.00 733 734 3.60 340.65 -47.00 734 735 8.30 306.37 29.00 735 736 3.80 223.65 24.00 736 737 6.30 304.65 -4.00 737 738 9.70 255.65 2.00 738 739 6.20 221.65 2.00 739 756 8.60 262.65 -10.00 756 757 5.50 296.65 -34.00 757 758 13.50 285.65 -6.00 758 759 20.00 290.65 -1.00 759 760 20.00 305.65 -3.00 760 761 17.30 293.65 -1.00 761 762 7.80 304.65 -5.00 762 763 15.10 327.65 -3.00 763 764 14.90 281.65 0.00 764 765 20.00 281.65 -1.00 765 766 4.60 271.15 -5.00 761 767 17.50 149.65 10.00 767 768 3.00 177.65 -1.00 768 769 3.20 131.65 15.00 769 770 3.30 113.65 20.00 770 771 12.50 109.65 0.00 771 772 4.30 115.65 2.00 772 773 14.30 127.65 13.00 739 820 11.50 265.80 -16.00 820 821 8.00 208.80 40.00 821 822 4.90 224.80 -2.00 822 823 6.10 181.80 -11.00 823 824 4.70 125.80 2.00 824 825 7.80 167.80 2.00 825 826 3.00 266.80 2.00 28 740 4.10 0.00 90.00 740 741 5.50 235.65 27.00 741 742 7.40 214.65 21.00 742 743 12.70 223.65 6.00 743 744 8.20 172.65 1.00 744 745 10.40 125.65 0.00 745 746 13.40 103.65 1.00 746 747 9.70 118.15 1.00 747 748 10.00 212.65 37.00 748 749 6.50 254.65 5.00 749 750 6.70 181.65 25.00 750 751 9.70 117.65 4.00 751 752 8.60 106.65 -2.00 752 753 6.90 209.65 5.00 753 754 9.60 108.65 0.00 754 755 20.00 110.65 2.00 *END DownStream *BEGIN DownstreamUpper *EQUATE Oxbow.1 FriedEggOnAStick.1 *EQUATE Oxbow.0 FriedEggOnAStick.2 *EQUATE Oxbow.11 UpperLoop.1 *EQUATE UpperLoop.27 FriedEggOnAStick.9 *EQUATE FriedEggOnAStick.21 FriedEggOnAStickPt2.1 *BEGIN FriedEggOnAStick *DATE 2010.02.20 *CALIBRATE declination 2.0 1 2 3.11 0.77 12.60 2 3 5.90 312.40 -11.25 3 4 7.18 308.52 -0.94 4 5 6.11 245.29 -1.13 *FLAGS SPLAY 5 5a 3.72 296.21 1.83 5 5b 4.83 287.18 0.84 5 5c 5.36 282.34 0.90 *FLAGS NOT SPLAY 5 6 10.18 281.24 0.89 6 7 6.99 305.33 -1.06 7 8 2.61 256.43 5.59 8 9 13.34 302.19 -0.47 *FLAGS SPLAY 9 9a 0.35 222.86 -1.25 9 9b 1.90 289.54 4.84 *FLAGS NOT SPLAY 9 10 9.40 289.45 4.88 10 11 10.66 303.93 -7.79 11 12 7.05 289.15 0.34 *FLAGS SPLAY 12 12a 2.95 55.32 12.38 12 12b 3.12 94.22 4.17 *FLAGS NOT SPLAY 12 13 5.05 72.17 5.40 *FLAGS SPLAY 13 13a 1.83 339.21 8.86 *FLAGS NOT SPLAY 13 14 4.81 91.13 4.93 *FLAGS SPLAY 14 14a 1.45 30.73 21.32 14 14b 2.49 241.63 -6.26 *FLAGS NOT SPLAY 14 11 4.83 217.91 -12.12 12 15 6.30 293.42 -1.89 15 16 5.35 218.30 -0.76 *FLAGS SPLAY 16 16a 3.97 257.11 -4.06 16 16b 6.90 266.87 -2.28 16 16c 6.96 327.77 3.37 16 16d 8.49 308.20 2.84 16 16e 8.77 297.60 1.17 *FLAGS NOT SPLAY 16 17 10.93 277.32 -0.60 17 18 9.40 287.05 -0.40 18 19 3.43 291.32 1.20 19 20 3.43 203.06 -4.32 20 21 4.00 236.76 -0.74 *END FriedEggOnAStick *BEGIN Oxbow *DATE 2010.02.22 *CALIBRATE declination 2.0 1 2 7.27 80.85 8.53 *FLAGS SPLAY 2 2a 0.69 358.43 -10.85 2 2b 3.01 292.73 -1.88 *FLAGS NOT SPLAY 2 3 2.31 59.99 0.46 3 4 1.50 130.57 -28.21 4 5 5.64 135.97 -86.60 5 6 2.04 174.07 20.04 *FLAGS SPLAY 6 6a 5.01 106.76 6.76 6 6b 3.06 45.71 4.51 6 6c 3.26 239.10 0.34 6 6d 2.53 329.49 0.73 *FLAGS NOT SPLAY 2 7 2.48 15.24 27.59 *FLAGS SPLAY 7 7a 2.83 88.10 5.40 *FLAGS NOT SPLAY 7 8 4.26 263.33 48.32 8 9 5.90 294.80 -55.77 *FLAGS SPLAY 9 9a 3.19 239.07 2.08 9 9b 0.81 239.29 1.90 *FLAGS NOT SPLAY 9 0 2.17 239.20 1.98 7 10 5.06 57.56 5.67 10 11 4.73 316.07 3.25 *FLAGS DUPLICATE 11 12 5.06 138.06 23.37 *FLAGS NOT DUPLICATE 12 13 1.71 97.99 6.00 13 14 1.16 82.75 -26.20 *FLAGS SPLAY 14 14a 0.54 307.92 -4.40 14 14b 2.63 170.12 7.05 *FLAGS NOT SPLAY 14 15 6.52 128.46 -18.60 15 16 4.87 92.75 -1.04 16 17 3.19 134.73 0.51 17 18 3.82 108.41 0.25 *FLAGS SPLAY 18 18a 5.14 155.04 9.95 18 18b 4.33 134.04 11.68 18 18c 2.48 126.92 15.65 18 18d 0.37 21.68 8.97 18 18e 2.13 231.74 -9.63 18 18f 2.34 191.10 12.99 18 18g 3.45 166.61 10.52 *FLAGS NOT SPLAY 18 19 4.19 157.74 11.45 19 20 9.98 166.13 -6.87 *FLAGS SPLAY 20 20a 4.97 263.08 -80.89 20 20b 2.85 280.91 -36.14 20 20c 5.17 6.99 -12.96 20 20d 1.94 37.18 1.62 *FLAGS NOT SPLAY 20 21 4.36 82.77 3.93 *FLAGS SPLAY 21 21a 6.02 227.58 -66.19 *FLAGS NOT SPLAY 21 22 7.41 8.78 8.76 *FLAGS SPLAY 22 22a 0.76 351.44 3.36 22 22b 2.43 262.05 29.57 22 22c 2.07 157.64 -4.87 *FLAGS NOT SPLAY *END Oxbow *BEGIN UpperLoop *DATE 2011.08.07 *CALIBRATE declination 1.75 1 2 5.69 357.50 19.55 2 3 5.54 325.19 -4.40 3 4 4.34 242.26 1.78 4 5 4.91 260.24 -5.33 *FLAGS SPLAY 5 5a 0.27 9.44 -84.18 5 5b 1.41 134.36 2.50 5 5c 2.15 88.46 6.03 5 5d 0.37 315.95 7.82 *FLAGS NOT SPLAY 5 6 3.95 223.52 1.11 6 7 2.58 307.27 -8.29 7 8 2.75 324.59 -36.52 8 9 6.93 239.30 5.29 9 10 2.85 277.01 12.18 *FLAGS SPLAY 10 10a 0.80 48.00 86.00 10 10b 2.69 236.62 88.43 10 10c 1.14 11.56 -82.68 10 10d 0.31 215.11 4.84 10 10e 0.90 37.80 8.43 *FLAGS NOT SPLAY 10 16 6.16 322.04 -10.54 10 12 1.91 299.64 31.17 12 13 3.94 285.87 5.93 13 14 1.87 329.44 -20.80 *FLAGS SPLAY 14 14a 1.89 91.97 83.02 14 14b 1.69 3.24 -82.46 14 14c 2.24 5.82 0.05 14 14d 1.34 86.70 14.56 14 14e 0.70 174.08 22.53 *FLAGS NOT SPLAY 14 15 2.90 56.58 -19.15 15 16 1.06 122.55 -77.69 14 17 4.24 284.58 -15.78 17 18 2.42 233.97 -18.30 18 19 2.59 299.73 7.25 19 20 3.98 354.85 21.72 20 21 4.39 336.49 14.59 21 22 5.43 263.11 1.43 *FLAGS SPLAY 22 22a 0.90 11.84 84.61 22 22b 6.20 126.66 55.79 22 22c 0.44 212.16 -81.91 22 22d 1.60 136.16 3.40 22 22e 1.03 10.22 22.29 22 22f 0.99 337.75 14.35 22 22g 4.08 319.67 1.29 22 22h 4.10 319.67 0.69 *FLAGS NOT SPLAY 22 23 4.57 203.04 5.22 *FLAGS SPLAY 23 23a 0.87 292.36 77.99 23 23b 0.36 49.53 -81.63 23 23c 0.48 136.95 18.34 23 23d 1.91 324.86 1.83 23 23e 2.95 308.25 -40.06 23 23f 6.33 272.92 0.91 *FLAGS NOT SPLAY 23 24 1.95 238.04 -34.27 24 25 1.49 307.29 -31.68 25 26 4.31 313.21 -49.22 26 27 1.78 135.14 -24.77 *END UpperLoop *BEGIN FriedEggOnAStickPt2 *DATE 2011.08.07 *CALIBRATE declination 1.75 1 2 7.81 243.30 -0.29 2 3 4.76 268.89 0.16 3 4 6.66 267.68 -0.40 4 5 5.34 269.72 -6.46 5 6 7.39 283.97 -5.29 6 7 4.54 314.47 -2.88 7 8 2.95 273.84 -22.68 *FLAGS SPLAY 8 8a 2.09 122.59 87.07 8 8b 0.87 73.22 -66.52 8 8c 3.66 284.91 18.64 8 8d 1.40 349.10 9.74 8 8e 0.29 172.53 6.54 *FLAGS NOT SPLAY 8 9 5.78 36.97 -10.39 7 10 4.40 244.57 -3.59 10 11 4.10 245.31 8.94 11 12 5.81 284.03 1.75 12 13 3.98 272.77 7.33 13 14 3.13 189.53 45.00 14 15 4.13 171.86 -1.29 15 16 2.10 260.91 36.16 *FLAGS SPLAY 16 16a 9.58 20.15 75.53 16 16b 5.38 42.18 67.30 16 16c 13.19 315.15 82.47 16 16d 1.53 123.29 -77.15 16 16e 0.84 135.39 14.01 16 16f 1.26 305.79 7.87 16 16g 2.62 341.19 10.67 16 16h 2.51 24.26 6.87 *FLAGS NOT SPLAY 16 17 6.15 223.22 19.84 *FLAGS SPLAY 17 17a 3.38 325.55 76.35 17 17b 4.34 264.05 71.07 17 17c 3.31 168.78 -73.30 17 17d 0.30 136.08 -0.65 *FLAGS NOT SPLAY 17 18 5.08 225.19 34.90 18 19 3.76 205.97 -13.83 19 20 3.58 116.27 -13.03 *FLAGS SPLAY 20 20a 0.45 234.56 77.16 20 20b 0.09 119.28 -77.79 20 20c 0.56 120.28 11.06 20 20d 0.60 281.24 -2.57 20 20e 1.52 22.06 -3.13 *FLAGS NOT SPLAY 20 21 1.76 225.56 -2.08 *END FriedEggOnAStickPt2 *END DownstreamUpper *BEGIN DownStreamExtn *DATE 1991.08.07 *FLAGS DUPLICATE 28 640 6.10 0.00 90.00 640 641 2.19 45.00 0.00 651 668 2.10 350.65 9.00 668 669 3.10 305.65 0.00 669 670 1.50 325.65 3.00 670 671 4.10 275.65 22.00 671 672 3.00 315.65 15.00 672 673 7.30 277.65 8.00 673 674 8.20 350.65 2.00 674 675 5.80 327.65 -4.00 675 676 8.00 268.65 2.00 676 677 20.00 290.65 1.00 677 678 11.00 279.65 0.00 678 679 5.70 253.65 2.00 679 680 7.00 6.65 -1.00 680 681 13.90 293.65 5.00 681 682 3.10 309.65 11.00 682 683 3.00 83.65 -10.00 *END DownStreamExtn *BEGIN TornoInlet *DATE 1991.08.05 28 553 7.40 60.65 7.00 553 554 5.80 175.65 0.00 554 555 2.90 44.15 0.00 555 556 4.00 78.65 0.00 556 557 4.50 100.65 20.00 557 558 4.20 110.65 1.00 558 559 1.20 67.15 18.00 559 560 2.30 7.65 25.00 560 561 2.70 43.65 22.00 561 562 16.10 131.65 -2.00 562 563 5.10 195.65 7.00 563 564 5.30 119.65 0.00 564 565 6.60 13.65 0.00 565 566 12.40 66.65 1.00 566 567 3.10 47.15 -2.00 567 568 4.90 89.65 0.00 568 569 8.10 120.65 3.00 569 570 12.50 107.65 8.00 570 571 6.90 77.65 2.00 571 572 6.20 122.15 4.00 572 573 9.00 68.15 -4.00 573 574 6.10 33.65 0.00 574 575 11.80 69.65 -4.00 575 576 8.10 164.65 1.00 576 577 10.70 67.65 2.00 577 578 20.00 58.65 2.00 578 579 8.50 79.65 2.00 579 580 6.10 36.15 0.00 580 581 20.00 25.65 0.00 581 582 6.40 39.15 1.00 582 583 5.40 348.15 1.00 583 584 16.90 35.15 1.00 584 585 10.20 2.65 1.00 585 586 20.00 14.15 1.00 586 587 11.30 344.65 1.00 587 588 5.10 68.65 1.00 588 589 6.60 130.65 2.00 589 590 6.10 48.15 3.00 590 591 6.40 338.15 1.00 591 592 5.90 31.65 2.00 592 593 12.80 350.65 1.00 593 594 7.00 55.15 2.00 594 595 8.80 6.15 0.00 595 596 10.60 15.15 2.00 596 597 10.90 346.65 0.00 597 598 7.10 20.65 0.00 598 599 7.00 347.15 0.00 599 600 9.60 333.65 0.00 600 601 3.90 338.15 0.00 601 602 3.70 4.65 2.00 602 603 1.90 293.65 0.00 603 604 2.70 245.15 0.00 604 605 4.90 193.15 0.00 605 606 5.90 285.65 0.00 606 607 11.20 249.15 0.00 607 608 2.50 306.15 1.00 608 609 11.30 351.65 2.00 609 610 6.80 292.15 2.00 610 611 3.30 320.15 0.00 611 612 5.40 6.65 0.00 612 613 5.20 309.65 2.00 613 614 9.00 348.65 0.00 614 615 4.70 242.15 0.00 615 616 6.10 336.15 0.00 616 617 2.60 277.65 0.00 617 618 5.40 232.65 0.00 618 619 7.50 307.15 1.00 619 620 10.60 10.65 0.00 620 621 12.90 342.65 1.00 621 622 11.30 10.15 1.00 622 623 13.00 45.15 1.00 623 624 9.50 133.65 0.00 624 625 4.20 112.65 -2.00 625 626 20.00 107.65 1.00 626 627 2.80 79.65 4.00 627 628 5.20 55.65 27.00 628 629 9.30 26.65 -2.00 629 630 5.60 59.65 -3.00 630 631 6.30 7.65 -12.00 631 632 9.70 68.65 1.00 632 633 10.80 88.65 1.00 633 634 15.70 49.65 1.00 634 635 7.00 69.65 1.00 635 636 4.10 39.65 2.00 636 637 6.90 71.65 2.00 637 638 4.30 57.15 14.00 638 639 1.50 145.65 -12.00 *END TornoInlet *BEGIN Riano2006-12-10 *DATE 2006.12.10 *CALIBRATE declination 2.42 2 1 5.00 0.00 -90.00 2 3 14.65 11.00 2.00 3 4 9.38 6.00 -4.00 4 5 7.73 17.00 -3.00 5 6 5.35 3.00 -2.00 2 7 8.12 233.00 10.00 7 8 11.21 194.00 7.00 8 9 7.27 270.00 0.00 9 10 6.30 342.00 0.00 10 11 3.96 278.00 5.00 11 12 4.02 251.00 2.00 12 13 4.10 327.00 5.00 13 14 3.65 252.00 3.00 14 15 6.96 194.00 2.00 15 16 5.49 273.00 6.00 16 17 6.74 220.00 4.00 17 18 3.60 229.00 2.00 18 19 8.00 199.00 3.00 19 20 11.59 216.00 3.00 20 21 3.84 129.00 4.00 21 22 13.43 199.00 5.00 22 23 4.79 259.00 7.00 23 24 11.02 212.00 4.00 24 25 7.40 212.00 6.00 25 26 8.80 233.00 0.00 26 27 7.40 298.00 -1.00 27 28 5.13 270.00 6.00 25 29 3.29 71.00 19.00 29 30 5.05 117.00 7.00 30 31 3.80 103.00 9.00 *END Riano2006-12-10 *BEGIN Riano2006-12-11 *DATE 2006.12.11 *CALIBRATE declination 2.42 *CALIBRATE tape 0.10 1 2 4.37 202.00 -7.00 2 3 7.55 0.00 90.00 3 4 4.37 165.00 -6.00 4 5 7.95 194.00 0.00 5 6 2.71 83.00 11.00 6 7 6.30 155.00 0.00 7 8 9.83 35.00 0.00 8 9 1.99 355.00 -18.00 9 10 5.20 142.00 -18.00 10 11 3.96 79.00 -9.00 11 12 2.61 27.00 -6.00 12 13 3.46 78.00 -10.00 13 14 4.18 55.00 1.00 14 15 2.54 77.00 -4.00 15 16 4.08 353.00 -36.00 16 17 6.24 65.00 -4.00 17 18 11.21 177.00 8.00 18 19 3.25 0.00 -90.00 19 20 2.53 275.00 -23.00 20 21 1.70 345.00 -12.00 21 22 2.35 332.00 -10.00 16 23 7.18 263.00 9.00 23 24 3.91 257.00 22.00 24 25 5.12 232.00 21.00 24 26 3.59 325.00 8.00 26 27 1.25 237.00 2.00 27 28 2.24 350.00 12.00 28 29 3.64 290.00 8.00 25 9 2.27 284.00 35.00 7 30 5.35 187.00 5.00 30 31 5.20 233.00 23.00 31 32 3.04 0.00 90.00 32 33 2.42 190.00 0.00 33 34 4.11 120.00 3.00 34 35 0.61 353.00 1.00 35 36 7.00 46.00 11.00 36 37 2.30 20.00 48.00 37 38 4.73 289.00 -13.00 38 30 8.10 0.00 -90.00 37 39 8.85 40.00 1.00 39 40 7.98 28.00 0.00 40 41 3.15 89.00 -2.00 41 42 4.65 52.00 3.00 42 43 2.25 51.00 -8.00 43 44 2.47 7.00 2.00 44 45 2.90 18.00 9.00 45 46 2.60 343.00 -8.00 46 47 3.00 38.00 4.00 47 48 1.75 110.00 4.00 48 49 9.49 43.00 -2.00 49 50 2.47 90.00 -18.00 50 51 5.90 22.00 2.00 51 52 2.48 68.00 10.00 51 60 5.15 0.00 -90.00 52 53 6.15 49.00 0.00 53 54 3.30 340.00 14.00 54 55 4.16 10.00 2.00 55 56 6.40 45.00 20.00 56 57 9.10 25.00 39.00 57 58 2.60 150.00 -30.00 58 59 7.30 0.00 90.00 60 61 10.75 205.00 -18.00 61 62 2.02 190.00 -10.00 62 63 3.04 245.00 -11.00 63 64 3.47 220.00 -20.00 64 65 1.22 180.00 20.00 65 66 5.22 0.00 -90.00 67 66 3.29 10.00 -28.00 67 16 3.25 255.00 -7.00 69 68 1.70 231.00 3.00 69 70 1.50 345.00 0.00 70 71 1.50 42.00 -6.00 71 72 1.20 27.00 3.00 72 73 1.21 69.00 -5.00 73 74 1.40 40.00 -4.00 74 75 1.90 72.00 0.00 75 76 2.84 7.00 2.00 76 77 1.90 30.00 -3.00 77 78 6.00 5.00 -4.00 78 79 1.70 25.00 -3.00 79 80 0.76 353.00 -2.00 80 81 0.87 308.00 0.00 81 82 3.42 15.00 -2.00 82 83 1.48 75.00 -2.00 83 84 1.42 350.00 -1.00 84 85 2.15 22.00 0.00 85 86 2.05 0.00 3.00 86 87 2.75 38.00 0.00 87 88 2.32 140.00 0.00 88 5 0.72 84.00 0.00 3 89 1.00 290.00 -50.00 89 90 3.16 296.00 6.00 90 91 2.70 352.00 -10.00 91 92 2.25 308.00 -3.00 92 93 3.20 328.00 -7.00 93 94 2.10 315.00 2.00 94 95 2.75 345.00 2.00 95 96 5.40 310.00 0.00 96 97 5.95 304.00 0.00 97 98 2.90 348.00 -1.00 98 99 1.82 318.00 -3.00 99 100 2.35 12.00 5.00 100 101 3.50 295.00 0.00 101 102 1.87 335.00 -2.00 102 103 3.37 3.00 4.00 103 104 1.90 303.00 1.00 104 105 2.20 228.00 3.00 105 106 1.80 295.00 21.00 106 107 2.75 262.00 4.00 107 108 10.50 288.00 5.00 108 109 5.30 192.00 4.00 109 110 2.50 275.00 0.00 110 111 4.60 333.00 0.00 111 112 6.30 305.00 3.00 112 113 4.40 333.00 -1.00 113 114 4.90 283.00 -5.00 115 114 6.00 152.00 5.00 116 115 3.00 58.00 -2.00 117 116 4.80 10.00 -5.00 118 117 4.30 100.00 -3.00 119 118 4.70 118.00 6.00 120 119 4.50 0.00 90.00 121 120 5.75 80.00 2.00 122 121 4.65 18.00 15.00 123 122 1.90 340.00 0.00 124 123 5.14 50.00 5.00 *END Riano2006-12-11 *BEGIN Riano_Easter2007 *CALIBRATE declination 2.28 *EQUATE Riano_070331.4 Riano_070402b.0 *EQUATE Riano_070402a.12 Riano_070402b.16 *EQUATE Riano_070402a.17 Riano_070402c.21 *EQUATE Riano_070402a.12 Riano_070404a.0 *EQUATE Riano_070402a.22 Riano_070404a.22 *EQUATE Riano_070402c.2 Riano_070404b.1 *BEGIN Riano_070331 *DATE 2007.03.31 *CALIBRATE tape 0.20 2 1 3.80 220.00 -15.00 2 3 4.40 18.00 38.00 4 3 4.13 323.00 27.00 3 5 5.07 58.00 28.00 5 6 2.90 358.00 -4.00 6 7 3.00 87.00 -2.00 7 8 4.17 0.00 -2.00 8 9 2.32 71.00 0.00 9 10 3.54 8.00 -2.00 10 11 3.23 28.00 -8.00 12 11 1.80 129.00 23.00 12 13 4.70 0.00 -90.00 13 13a 5.90 21.00 0.00 12 14 3.03 358.00 -12.00 14 15 1.70 328.00 10.00 15 16 2.62 38.00 17.00 16 17 2.61 40.00 0.00 17 18 4.73 354.00 -2.00 18 19 3.69 27.00 3.00 19 20 4.47 0.00 -50.00 20 21 2.64 295.00 -8.00 21 22 5.79 335.00 -1.00 22 23 5.07 0.00 -4.00 23 24 5.95 341.00 -5.00 24 25 6.94 25.00 -6.00 25 26 3.48 337.00 -3.00 26 27 1.55 45.00 0.00 27 28 5.88 22.00 -10.00 28 29 3.78 35.00 -7.00 29 30 3.32 320.00 -3.00 1a 106 8.20 335.00 -5.00 2a 1a 8.50 356.00 0.00 3a 2a 6.00 260.00 5.00 4a 3a 8.50 313.00 -1.00 30 4a 2.90 356.00 -1.00 *END Riano_070331 *BEGIN Riano_070402a *DATE 2007.04.02 *CALIBRATE tape 0.20 7 6 3.10 31.00 7.00 8 7 4.94 357.00 -29.00 9 8 11.68 48.00 -4.00 10 9 13.80 18.00 0.00 11 10 7.12 50.00 11.00 11 12 3.04 155.00 -39.00 13 10 2.74 150.00 -29.00 14 13 6.15 89.00 -26.00 16 15 6.14 0.00 -90.00 15 10 3.16 230.00 -15.00 17 16 1.10 225.00 -10.00 18 17 9.46 262.00 -16.00 19 18 10.31 32.00 0.00 20 19 7.40 48.00 0.00 21 20 19.73 22.00 0.00 22 21 11.11 79.00 -3.00 23 22 14.60 65.00 -11.00 24 23 2.25 315.00 50.00 25 24 8.97 42.00 18.00 26 25 30.60 29.00 2.00 27 26 8.00 77.00 -19.00 *END Riano_070402a *BEGIN Riano_070402b *DATE 2007.04.02 *CALIBRATE tape 0.20 0 1 3.18 45.00 5.00 1 2 2.51 0.00 90.00 2 3 3.34 128.00 25.00 3 4 2.63 190.00 28.00 4 5 2.46 73.00 -2.00 5 6 1.80 38.00 43.00 6 7 1.58 42.00 15.00 7 8 1.16 81.00 0.00 8 10 3.22 0.00 90.00 10 11 2.55 77.00 10.00 11 12 2.30 10.00 12.00 12 13 3.10 30.00 19.00 13 14 2.09 352.00 27.00 14 16 2.42 55.00 32.00 *END Riano_070402b *BEGIN Riano_070402c *DATE 2007.04.02 *CALIBRATE tape 0.20 1 2 5.40 0.00 -90.00 2 3 7.60 200.00 -26.00 3 4 5.64 272.00 8.00 4 5 3.76 195.00 36.00 3 6 4.06 280.00 -25.00 6 7 2.12 52.00 -44.00 7 8 8.40 39.00 -2.00 3 9 10.10 0.00 -90.00 5 10 9.56 200.00 -15.00 10 11 1.70 0.00 -90.00 11 12 2.20 218.00 -11.00 12 13 2.85 177.00 -23.00 13 14 3.20 227.00 -56.00 14 15 14.83 204.00 -4.00 15 16 8.24 220.00 -20.00 16 17 2.50 225.00 -7.00 17 18 4.15 200.00 -3.00 18 19 3.38 55.00 30.00 19 20 1.90 305.00 57.00 20 21 1.40 193.00 -7.00 *END Riano_070402c *BEGIN Riano_070404a *DATE 2007.04.04 *CALIBRATE tape 0.20 0 1 3.49 188.00 45.00 1 2 8.85 205.00 4.00 2 3 4.98 237.00 0.00 3 4 2.41 193.00 5.00 4 5 2.14 258.00 55.00 5 6 3.55 252.00 17.00 6 7 5.76 238.00 58.00 7 8 3.13 232.00 13.00 8 9 2.40 170.00 0.00 9 10 3.59 120.00 -1.00 10 22 1.23 76.00 -8.00 *END Riano_070404a *BEGIN Riano_070404b *DATE 2007.04.04 *CALIBRATE tape 0.20 2 1 2.83 259.00 23.00 3 2 2.10 0.00 90.00 4 3 1.94 136.00 12.00 5 4 4.20 212.00 -35.00 6 5 2.76 265.00 -19.00 7 6 4.18 293.00 -51.00 8 7 3.90 254.00 -22.00 6 9 2.60 284.00 -35.00 9 10 2.64 290.00 -19.00 10 11 10.45 0.00 -90.00 11 12 2.10 266.00 4.00 12 13 4.51 50.00 -61.00 13 14 1.41 0.00 -90.00 14 15 6.95 65.00 -63.00 15 16 4.81 0.00 -90.00 16 17 9.62 53.00 2.00 *END Riano_070404b *END Riano_Easter2007 *BEGIN DryMazeLink *DATE 1985.08.20 808 808a 9.00 19.80 0.00 808a 215 7.30 191.86 3.00 215 216 3.90 100.86 7.00 216 217 6.80 191.86 0.00 217 218 1.80 98.86 0.00 218 219 3.20 193.86 2.00 219 220 4.00 105.86 10.00 220 221 19.00 185.86 0.00 221 222 11.40 109.86 0.00 222 223 6.00 70.86 5.00 223 224 7.20 93.86 11.00 224 225 18.60 69.86 -2.00 225 226 7.50 105.86 4.00 226 227 4.40 59.86 1.00 227 228 4.70 103.86 8.00 228 229 5.60 122.86 15.00 229 230 5.80 139.86 11.00 230 231 26.80 116.86 -13.00 *END DryMazeLink *BEGIN HighRift *DATE 1987.08.10 227 407 8.78 105.60 50.00 407 408 2.90 134.03 -15.00 408 409 11.00 226.03 -8.00 409 410 4.00 155.03 -10.00 410 411 11.50 218.03 11.00 411 412 6.00 241.03 4.00 412 413 13.40 236.03 12.00 413 414 2.60 317.03 30.00 414 415 10.00 44.03 -2.00 415 416 5.60 43.03 -10.00 416 417 18.40 52.03 -1.00 413 418 21.30 234.03 2.00 418 419 14.50 222.03 2.00 419 420 6.40 207.03 6.00 420 421 5.00 247.03 2.00 421 422 5.90 112.03 -30.00 422 423 12.80 98.03 -10.00 421 424 20.00 247.03 0.00 *END HighRift *BEGIN DryMaze *DATE 1987.08.10 231 444 5.99 180.73 25.00 444 445 11.30 184.11 -4.00 445 446 12.80 206.11 0.00 446 447 3.30 163.11 0.00 447 448 8.20 249.11 0.00 448 449 11.80 122.11 0.00 449 450 5.20 227.11 -9.00 450 451 2.00 91.11 0.00 451 452 5.00 203.11 0.00 452 453 7.20 117.11 9.00 452 454 1.50 0.00 90.00 454 455 3.10 201.11 0.00 455 456 5.60 254.11 -7.00 456 457 2.10 158.11 0.00 457 458 8.30 119.11 5.00 457 459 11.90 288.11 -5.00 459 460 10.10 211.11 0.00 460 461 5.20 209.61 -4.00 461 462 10.00 256.11 8.00 462 463 3.40 247.61 35.00 463 464 9.40 262.11 0.00 464 465 3.40 354.61 0.00 465 466 9.70 256.11 0.00 466 467 3.70 209.61 20.00 467 468 7.60 271.61 0.00 468 469 6.70 38.11 -17.00 469 470 8.60 274.61 0.00 470 471 7.30 222.61 0.00 469 472 14.10 36.11 0.00 472 473 11.10 277.61 0.00 473 474 7.60 273.11 0.00 474 475 5.00 278.11 12.00 473 476 8.10 212.11 12.00 476 477 4.00 223.11 0.00 477 478 7.80 91.11 0.00 473 479 21.00 103.11 0.00 472 480 14.40 38.11 6.00 480 481 7.20 98.11 0.00 465 482 14.50 27.11 0.00 482 483 21.10 41.11 0.00 483 484 14.80 27.11 0.00 484 485 12.00 271.11 0.00 485 486 9.10 50.11 15.00 484 487 10.30 103.11 8.00 487 488 9.10 51.11 -5.00 487 489 6.10 137.11 -16.00 489 490 4.70 167.61 -17.00 490 491 9.70 122.61 0.00 *END DryMaze *BEGIN DormouseInlet *DATE 1985.08.20 232 283 13.80 63.86 6.00 231 232 9.20 174.86 0.00 232 233 10.80 220.86 -2.00 233 234 5.50 155.86 9.00 234 235 5.60 212.86 0.00 235 236 6.20 247.86 6.00 236 237 11.00 125.86 6.00 237 238 4.20 211.86 -4.00 238 239 4.80 188.86 6.00 239 240 4.70 284.86 -12.00 240 241 3.70 212.86 0.00 241 242 5.90 248.86 13.00 242 243 4.90 258.86 -9.00 243 244 4.80 213.86 3.00 244 245 9.00 201.86 2.00 245 246 11.30 253.86 3.00 246 247 5.90 152.86 -10.00 247 248 6.10 234.86 11.00 248 249 3.80 249.86 38.00 249 250 4.80 294.86 -20.00 250 251 6.20 252.86 -4.00 251 252 2.50 173.86 14.00 252 253 7.70 224.86 2.00 253 254 2.30 0.00 90.00 254 255 6.00 189.86 0.00 255 256 9.80 226.86 -13.00 256 257 5.30 259.86 3.00 257 258 9.80 218.86 5.00 258 259 5.00 247.86 3.00 259 260 12.10 215.86 1.00 260 261 2.60 0.00 90.00 261 262 4.70 164.86 10.00 262 263 7.20 136.86 -13.00 263 264 3.20 89.86 10.00 264 265 1.90 203.86 -45.00 265 266 3.60 201.86 31.00 266 267 3.40 117.86 -53.00 267 268 5.60 175.86 6.00 268 269 4.30 223.86 22.00 269 270 7.10 214.86 12.00 270 271 2.80 220.86 -16.00 271 272 13.20 201.86 12.00 272 273 2.80 198.86 -10.00 273 274 3.20 131.86 15.00 274 275 2.20 148.86 5.00 275 276 6.10 218.86 3.00 276 277 6.00 186.86 -10.00 277 278 8.00 200.86 21.00 278 279 1.60 168.86 60.00 279 280 1.80 209.86 -38.00 280 281 5.90 222.86 18.00 281 282 4.60 298.86 20.00 *END DormouseInlet *BEGIN UpStream *EQUATE MainStream.63 DoubleBarrel.63 *EQUATE CatPrintPassage.77 CoffinLevelInlet.77 *EQUATE LowerLevels.78 CoffinLevelInlet.78 *EQUATE LowerLevels.97a UpperLevelLink.8 *EQUATE UpperLevelLink.11 RopeLoopAvenPassage.405 *EQUATE CatPrintPassage.115 DoubleBarrelPassage.12 *EQUATE UpperLevelLink.12 DoubleBarrelPassage.12 *EQUATE DoubleBarrel.65 DoubleBarrelPassage.41a *BEGIN MainStream 20 55 29.53 87.09 0.00 55 56 36.45 115.16 0.00 56 57 14.00 180.00 0.00 57 58 17.00 88.31 0.00 58 59 19.00 180.00 0.00 59 60 20.39 281.31 0.00 60 61 19.72 210.46 0.00 61 62 12.08 114.44 0.00 62 63 5.00 216.87 0.00 *END MainStream *BEGIN DoubleBarrel 63 64 126.00 114.48 0.00 63 65 7.21 213.69 0.00 *END DoubleBarrel *BEGIN UpperLevelLink *DATE 2006.08.02 *CALIBRATE declination 2.42 *CALIBRATE clino -2.0 1 0 5.95 265.00 35.00 2 1 7.78 292.00 -1.00 3 2 7.99 245.00 -2.00 4 3 4.07 0.00 90.00 5 4 8.36 223.00 24.00 6 5 6.26 264.00 10.00 7 6 10.56 355.00 -2.00 8 7 9.83 285.00 10.00 9 8 12.02 248.00 -4.00 10 9 6.51 300.00 -8.00 11 10 11.70 310.00 3.00 12 11 17.48 249.00 1.00 *END UpperLevelLink *BEGIN DoubleBarrelPassage *DATE 2006.08.02 *CALIBRATE declination 2.42 *CALIBRATE clino -2.0 13 12 11.01 176.00 -3.00 14 13 10.36 165.00 3.00 15 14 7.20 168.00 -12.00 16 15 27.89 125.00 -2.00 17 16 16.28 132.00 6.00 18 17 2.96 234.00 6.00 19 18 16.85 286.00 -4.00 19 75 14.76 118.30 0.00 20 19 9.45 176.00 0.00 21 20 8.33 279.00 -6.00 22 21 3.49 244.00 19.00 23 22 4.49 245.00 -18.00 24 23 9.30 119.00 -1.00 25 24 4.69 77.00 10.00 26 25 17.42 118.00 -1.00 27 26 4.20 88.00 -41.00 28 27 9.58 168.00 -10.00 29 28 7.23 164.00 30.00 30 29 3.25 114.00 3.00 31 30 6.30 157.00 4.00 32 31 7.30 106.00 -14.00 33 32 12.12 119.00 -10.00 34 33 12.10 85.00 -1.00 35 34 19.47 106.00 -1.00 36 35 14.68 106.00 -2.00 37 36 26.27 114.00 -2.00 38 37 20.38 114.00 -2.00 39 38 27.30 123.00 -6.00 40 39 19.16 112.00 3.00 41 40 6.97 75.00 5.00 41a 40 7.00 112.00 3.00 *END DoubleBarrelPassage *BEGIN LowerLevels 78 92 11.00 180.00 0.00 92 93 26.07 122.47 0.00 97 97a 3.47 123.00 0.00 97 100 13.15 188.74 0.00 100 101 22.36 169.69 0.00 102 103 11.40 217.87 0.00 103 104 11.18 259.69 0.00 104 105 9.22 310.60 0.00 105 101 18.38 45.00 0.00 105 107 32.80 232.43 0.00 107 108 12.16 189.46 0.00 108 109 5.38 291.80 0.00 109 110 5.38 21.80 0.00 110 111 18.86 302.00 0.00 111 112 21.02 267.27 0.00 *END LowerLevels *BEGIN CatPrintPassage 77 96 28.65 119.24 0.00 116 96 19.10 317.12 0.00 115 116 19.00 0.00 0.00 115 118 26.90 138.01 0.00 118 119 16.15 158.19 0.00 119 120 12.53 118.61 0.00 120 121 5.00 180.00 0.00 *END CatPrintPassage *BEGIN RopeLoopAvenPassage *DATE 1987.08.01 134 389 7.50 2.03 -7.00 389 390 6.42 302.03 -5.00 390 391 10.26 19.03 1.00 391 392 13.62 261.03 -2.00 392 393 9.73 13.03 -3.00 393 394 3.04 326.03 13.00 394 395 15.81 296.03 -4.00 395 396 3.05 194.03 -20.00 396 397 6.47 317.03 -6.00 397 398 7.85 59.03 5.00 398 399 4.60 47.03 5.00 399 400 8.18 288.03 4.00 400 401 5.05 94.03 -30.00 401 402 3.50 73.03 0.00 402 403 11.12 72.03 -40.00 403 404 8.26 185.03 -2.00 404 405 7.98 128.03 -4.00 405 406 18.75 66.03 -3.00 *END RopeLoopAvenPassage *BEGIN CoffinLevelInlet 77 78 10.63 228.81 0.00 78 79 39.05 283.32 0.00 79 80 10.44 286.70 0.00 79 81 6.08 189.46 0.00 81 82 11.88 284.62 0.00 82 83 4.24 225.00 0.00 83 84 17.27 157.89 0.00 84 85 12.04 274.76 0.00 85 86 8.06 172.87 0.00 86 87 6.32 108.43 0.00 87 88 6.08 170.53 0.00 88 89 23.34 279.86 0.00 89 90 8.06 209.74 0.00 90 91 30.08 291.44 0.00 *END CoffinLevelInlet *END UpStream *BEGIN EnergeticBTLegs *DATE 2006.04.18 *CALIBRATE declination 2.42 2 1 4.77 281.00 1.00 3 2 3.40 341.00 0.00 4 3 2.23 237.00 2.00 5 4 2.47 289.00 -27.00 6 5 2.87 324.00 -11.00 7 6 3.47 254.00 -22.00 8 7 3.20 244.00 1.00 9 8 2.50 285.00 -7.00 10 9 3.30 304.00 5.00 11 10 3.20 273.00 -3.00 12 11 3.16 287.00 -2.00 13 12 2.80 183.00 -45.00 14 13 2.66 181.00 0.00 15 14 5.51 270.00 -3.00 16 15 8.59 198.00 -1.00 17 16 9.92 305.00 -1.00 18 17 6.21 237.00 -2.00 19 18 6.40 285.00 -3.00 20 19 10.04 301.00 -3.00 21 20 3.85 241.00 0.00 22 21 3.58 298.00 -5.00 23 22 14.95 312.00 -3.00 24 23 22.47 302.00 -2.00 25 24 8.45 299.00 -7.00 26 25 4.43 291.00 -12.00 27 26 6.72 302.00 8.00 28 27 6.85 303.00 -8.00 29 28 9.12 303.00 -9.00 30 29 7.15 298.00 -8.00 31 30 3.22 321.00 27.00 32 31 8.30 80.00 -65.00 33 32 6.32 90.00 -25.00 34 33 6.49 66.00 -44.00 35 34 2.45 328.00 1.00 33 36 4.17 98.00 56.00 36 37 4.62 63.00 2.00 37 38 8.05 142.00 0.00 38 39 6.40 85.00 -3.00 39 40 6.90 123.00 -9.00 40 41 8.59 60.00 0.00 41 42 5.50 115.00 2.00 *END EnergeticBTLegs *BEGIN SparkleHall *DATE 2006.07.31 *CALIBRATE declination 2.42 0 1 5.75 130.00 -5.00 1 2 2.90 169.00 -14.00 2 3 4.10 270.00 14.00 3 4 4.60 279.00 -50.00 4 5 4.30 310.00 -11.00 5 6 4.00 239.00 -6.00 5 7 7.40 230.00 -8.00 7 8 4.00 299.00 -9.00 8 9 4.85 245.00 3.00 9 10 4.40 163.00 -19.00 10 11 14.70 131.00 4.00 10 12 11.60 224.00 -9.00 12 13 2.07 307.00 -27.00 13 14 4.83 229.00 -5.00 14 15 1.30 293.00 3.00 15 16 1.93 188.00 -3.00 16 17 2.10 242.00 -7.00 17 18 7.00 134.00 -8.00 18 19 3.29 119.00 -5.00 19 20 1.74 106.00 -4.00 20 21 3.43 225.00 -8.00 10 22 10.20 326.00 23.00 10 23 9.10 349.00 30.00 23 24 4.40 4.00 19.00 24 25 4.15 52.00 -2.00 *END SparkleHall *BEGIN UpperLevels *DATE 1985.08.17 *EQUATE 148 PendantChamber.148 *EQUATE 182 FarEnd.182 *EQUATE 174 FarEndInlet.174 *EQUATE 166 214 *EQUATE 129 530 *EQUATE 386 89CentsTinto.1 *EQUATE 174 21stPassage.21st-090412.19 *EQUATE 148 PendantChamber2011.24 *EQUATE 150 PendantChamber2011.16 121 122 4.80 115.86 13.00 122 123 2.30 295.86 0.00 123 124 1.00 0.00 90.00 124 125 4.00 221.86 22.00 125 126 7.00 0.00 90.00 126 127 2.50 129.86 0.00 127 128 5.90 231.86 0.00 128 129 9.20 209.86 27.00 129 130 4.10 137.86 31.00 130 131 18.80 299.86 -5.00 131 132 3.80 41.86 15.00 132 133 10.40 282.86 -19.00 133 134 12.50 304.86 -1.00 134 135 11.30 278.86 23.00 135 136 30.00 246.86 2.00 136 137 20.20 19.86 0.00 137 138 14.90 281.86 -12.00 138 139 30.00 272.86 1.00 139 140 10.60 355.86 0.00 140 141 5.00 92.86 -12.00 141 142 4.40 22.86 -6.00 142 143 5.60 332.86 40.00 143 144 8.70 74.86 -16.00 144 145 6.30 17.86 35.00 145 146 21.00 338.86 8.00 146 147 25.00 356.86 -3.00 147 148 27.70 13.86 0.00 150 151 30.00 280.86 -2.00 151 152 8.80 293.86 1.00 152 153 6.80 313.86 10.00 153 154 12.00 284.86 -8.00 139 155 8.60 285.86 40.00 155 156 12.70 281.86 -1.00 156 157 15.20 276.86 4.00 157 158 12.00 235.86 5.00 130 159 3.50 151.86 0.00 159 160 19.00 97.86 -8.00 160 161 12.40 147.86 14.00 161 162 19.00 134.86 -3.00 162 163 21.50 198.86 0.00 161 164 4.20 222.86 0.00 164 165 8.30 277.86 -20.00 165 166 10.00 227.86 3.00 163 167 25.40 92.86 -3.00 167 168 24.70 40.86 -12.00 168 169 24.90 116.86 10.00 169 170 8.30 188.86 -20.00 170 171 25.40 111.86 -8.00 171 172 9.50 112.86 18.00 172 173 18.70 197.86 3.00 173 174 13.70 140.86 -16.00 174 175 19.50 92.86 -5.00 175 176 10.70 60.86 -6.00 176 177 22.60 65.86 4.00 177 178 9.20 62.86 -10.00 178 179 19.70 45.86 0.00 179 180 18.60 66.86 3.00 180 181 9.00 100.86 -14.00 181 182 6.40 169.86 0.00 174 183 4.80 264.86 15.00 183 184 5.40 235.86 0.00 184 185 15.40 254.86 15.00 185 186 10.60 281.86 0.00 186 187 10.60 217.86 0.00 187 188 6.50 248.86 0.00 188 189 3.50 173.86 50.00 189 190 15.00 235.86 -15.00 163 191 16.90 243.86 6.00 191 192 19.50 225.86 0.00 192 193 5.00 292.86 40.00 193 194 3.10 271.86 -25.00 194 195 11.10 237.86 -9.00 195 196 14.60 217.86 0.00 196 197 6.80 235.86 5.00 197 198 11.40 283.86 1.00 198 199 4.10 245.86 8.00 192 200 8.20 106.86 0.00 194 201 3.00 246.86 -30.00 201 202 3.20 299.86 -35.00 202 203 5.20 265.86 0.00 203 204 8.40 43.86 0.00 204 205 7.50 33.86 0.00 205 206 2.70 341.86 -12.00 206 207 4.50 229.86 0.00 207 208 2.40 306.86 3.00 208 209 4.40 44.86 3.00 209 210 4.00 35.86 0.00 210 211 6.20 52.86 4.00 211 212 6.10 40.86 -13.00 212 213 6.40 359.86 -17.00 213 214 11.70 31.86 -8.00 130 382 20.47 290.94 1.00 382 383 4.70 222.95 11.00 383 384 9.00 280.95 -8.00 384 385 3.90 212.95 -10.00 385 386 11.55 242.95 -4.00 386 387 12.35 223.95 -32.00 387 388 9.75 184.95 -38.00 158 492 7.00 63.11 0.00 492 493 6.30 2.11 -12.00 493 494 11.40 95.11 -8.00 494 495 3.00 254.11 -31.00 495 496 1.80 203.11 0.00 496 497 5.00 206.11 0.00 497 498 1.80 99.11 0.00 498 499 2.30 179.11 0.00 499 500 3.30 0.00 90.00 500 501 5.20 285.11 1.00 501 502 4.00 194.11 0.00 502 503 1.70 287.11 -11.00 503 504 3.00 225.11 -21.00 504 505 3.00 188.11 -43.00 505 506 2.50 250.11 0.00 506 507 2.50 185.11 0.00 507 508 4.00 198.11 0.00 508 509 7.00 283.11 0.00 167 510 16.03 344.87 -14.00 510 511 2.60 291.11 5.00 511 512 8.10 313.11 4.00 512 513 9.00 279.11 24.00 512 514 1.60 281.61 32.00 514 515 7.00 42.11 -16.00 515 516 2.00 0.00 90.00 516 517 5.70 44.11 14.00 517 518 2.60 351.11 0.00 518 519 6.40 40.11 7.00 517 520 7.30 113.11 0.00 520 521 3.70 47.11 5.00 516 522 5.10 348.11 -24.00 522 523 4.10 341.11 -8.00 523 524 10.50 318.11 0.00 524 525 12.60 315.61 1.00 525 526 2.00 275.11 15.00 526 527 10.40 227.11 -6.00 527 528 6.60 279.11 21.00 528 529 18.80 296.11 0.00 529 530 6.60 217.11 30.00 190 425 3.70 256.94 -59.00 425 426 12.00 283.03 10.00 426 427 15.50 278.03 0.00 427 428 18.00 273.03 3.00 428 429 28.00 273.03 3.00 429 430 10.00 256.03 8.00 430 431 16.00 272.03 5.00 431 432 15.00 246.03 9.00 432 433 16.00 224.03 0.00 425 434 3.50 150.03 2.00 434 435 14.70 215.03 -3.00 435 436 4.50 191.03 -6.00 436 437 9.00 239.03 0.00 437 438 3.00 186.03 -2.00 438 439 3.00 230.03 2.00 439 440 7.00 238.03 0.00 440 441 7.00 268.03 5.00 441 442 6.00 250.03 2.00 442 443 10.40 248.03 2.00 *FLAGS DUPLICATE 182 600 1.50 50.00 0.00 182 601 2.00 130.00 0.00 *BEGIN PendantChamber *DATE 1986.07.01 *FLAGS DUPLICATE 148 284 6.10 301.99 32.00 284 285 8.20 297.95 -5.00 285 286 10.20 67.95 0.00 286 287 10.10 0.95 4.00 287 288 7.70 35.95 -3.00 *FLAGS NOT DUPLICATE 288 289 3.50 23.95 -30.00 289 290 8.00 0.00 -90.00 290 291 6.00 13.95 -45.00 291 292 4.00 0.00 -90.00 292 293 6.00 0.00 -90.00 293 294 18.00 13.95 0.00 293 295 6.00 0.00 -90.00 *FLAGS DUPLICATE 288 296 18.20 89.95 0.00 296 297 5.00 225.95 5.00 297 298 13.90 125.95 3.00 *FLAGS NOT DUPLICATE 298 299 5.00 38.95 -18.00 299 300 13.70 116.95 8.00 300 301 7.00 96.95 -20.00 301 302 15.00 96.95 -5.00 148 303 5.65 55.91 22.00 303 304 7.05 82.95 26.00 304 305 3.70 22.95 2.00 305 306 16.60 163.95 35.00 306 307 12.43 203.95 32.00 307 308 22.00 276.95 5.00 308 309 11.60 258.95 35.00 307 310 4.85 96.95 -11.00 310 311 16.70 188.95 14.00 311 312 9.60 184.95 -13.00 310 313 3.40 187.95 3.00 313 314 16.28 95.95 -4.00 314 315 10.90 77.95 -28.00 315 316 5.85 56.95 -23.00 316 317 16.55 77.95 2.00 317 318 20.70 77.95 28.00 317 319 15.35 300.95 -16.00 319 320 14.87 355.95 -14.00 *END PendantChamber *BEGIN PendantChamber2011 *DATE 2011.08.04 *CALIBRATE declination 1.75 1 2 4.33 212.03 24.20 *FLAGS SPLAY 2 2a 2.78 239.60 83.80 2 2b 3.12 341.24 -65.85 2 2c 23.28 150.27 10.67 2 2d 19.40 161.19 8.99 2 2e 11.83 213.62 14.64 2 2f 5.44 279.15 28.83 *FLAGS NOT SPLAY 2 3 13.29 306.52 -13.04 *FLAGS SPLAY 3 3a 4.72 214.19 73.02 3 3b 6.18 259.89 -64.51 3 3c 12.99 259.83 1.71 3 3d 21.26 258.87 15.60 3 3e 20.03 203.29 20.62 3 3f 5.35 26.21 -15.79 *FLAGS NOT SPLAY 3 4 16.81 305.37 -7.44 *FLAGS SPLAY 4 4a 0.90 205.68 80.23 4 4b 14.89 174.05 -58.94 4 4c 11.73 154.37 -3.59 4 4d 13.18 177.42 -3.95 4 4e 12.43 138.96 -7.20 4 4f 11.52 148.30 -8.38 4 4g 4.76 354.91 -21.00 4 4h 5.88 332.29 -14.58 *FLAGS NOT SPLAY 4 5 8.14 240.11 -6.57 5 6 12.13 305.07 35.94 6 7 3.05 81.54 -33.10 7 8 5.80 314.25 35.63 8 9 8.66 292.13 23.92 9 10 10.04 325.65 -45.24 10 11 8.39 231.02 -16.33 11 12 6.21 241.07 -10.52 12 13 2.28 273.51 6.30 13 14 4.47 173.38 -5.69 14 15 4.30 206.78 -1.69 15 16 7.41 179.27 -13.67 16 17 5.52 154.94 12.94 17 21 10.72 171.80 -68.32 16 18 22.20 109.98 2.58 18 19 13.10 78.35 -2.82 19 20 6.16 11.79 14.32 20 5 4.85 5.49 -17.36 18 22 8.21 111.36 17.53 22 23 3.69 136.47 -7.46 23 24 6.64 116.35 -27.80 *FLAGS SPLAY 24 24a 3.11 31.29 77.03 24 24b 1.56 174.75 -87.56 24 24c 8.62 64.80 18.58 24 24d 7.60 69.04 19.71 24 24e 3.75 285.85 9.57 *FLAGS NOT SPLAY *END PendantChamber2011 *BEGIN 89CentsTinto *DATE 2007.12.09 *CALIBRATE declination 2.28 1 2 3.00 0.00 -90.00 2 3 10.00 226.00 -28.00 3 4 4.20 95.00 -20.00 4 5 5.70 344.00 12.00 5 6 4.00 0.00 90.00 6 7 6.00 216.00 4.00 7 8 8.40 264.00 23.00 8 9 8.50 232.00 22.00 9 10 6.80 235.00 72.00 10 11 8.80 219.00 14.00 11 12 22.70 228.00 4.00 12 13 18.00 222.00 -10.00 13 14 13.00 64.00 -8.00 13 15 20.50 228.00 -10.00 15 16 5.70 97.00 4.00 16 17 6.50 181.00 20.00 17 18 4.70 128.00 22.00 18 19 3.70 228.00 8.00 19 20 9.50 232.00 -5.00 20 21 4.00 225.00 22.00 21 22 3.90 0.00 90.00 22 23 3.00 226.00 0.00 23 24 6.00 225.00 -2.00 24 25 3.00 225.00 0.00 19 19a 20.00 0.00 90.00 14 26 3.50 96.00 -34.00 26 27 6.50 60.00 -1.00 27 28 9.20 60.00 -9.00 28 29 3.60 59.00 -25.00 29 30 5.70 44.00 -30.00 30 31 7.60 40.00 -1.00 31 32 3.00 343.00 -5.00 32 33 6.30 33.00 -10.00 33 34 4.00 324.00 32.00 33 35 3.50 6.00 -2.00 35 36 2.80 311.00 0.00 *END 89CentsTinto *BEGIN FarEnd *DATE 1986.08.01 182 321 8.60 214.95 0.00 321 322 6.50 200.95 0.00 322 323 12.00 226.95 0.00 323 324 18.30 214.95 0.00 324 325 9.00 199.95 0.00 325 326 11.00 230.95 0.00 326 327 11.80 208.95 0.00 327 328 5.00 218.95 0.00 328 329 6.00 235.95 6.00 329 330 4.00 206.95 0.00 330 331 2.20 263.95 0.00 331 332 2.30 235.95 8.00 332 333 17.40 223.95 0.00 333 334 3.40 193.95 -30.00 334 335 6.10 234.95 0.00 335 336 10.60 248.95 15.00 336 337 8.30 243.95 0.00 337 338 1.00 215.95 0.00 338 339 3.00 0.00 90.00 339 340 4.00 219.95 0.00 340 341 18.40 248.95 0.00 341 342 5.00 248.95 -40.00 342 343 6.80 255.95 -9.00 343 344 20.50 244.95 0.00 344 345 5.80 213.95 0.00 345 346 2.50 276.95 0.00 346 347 1.00 210.95 0.00 347 348 5.60 0.00 90.00 348 349 2.70 312.95 0.00 349 350 12.50 248.95 0.00 350 351 2.00 0.00 -90.00 351 352 6.25 233.95 5.00 352 353 6.00 241.95 0.00 353 354 2.00 0.00 -90.00 354 355 14.30 223.95 0.00 355 356 11.50 227.95 16.00 356 357 2.80 168.95 40.00 357 358 20.00 58.95 20.00 357 359 10.60 261.95 20.00 359 360 5.20 226.95 0.00 360 361 11.40 233.95 35.00 361 362 7.00 250.95 -50.00 345 363 3.20 278.95 0.00 363 364 3.50 190.95 20.00 364 365 2.10 235.95 0.00 365 366 2.50 183.95 0.00 366 367 3.70 241.95 28.00 367 368 8.90 207.95 40.00 *EQUATE 368 369 *END FarEnd *BEGIN FarEndInlet *DATE 1989.08.08 174 531 7.70 23.35 -15.00 531 532 7.50 33.35 0.00 532 533 12.80 42.35 5.00 533 534 22.80 41.35 6.00 534 535 8.40 42.35 0.00 535 536 6.20 21.35 3.00 536 537 8.50 53.35 4.00 537 538 19.60 60.35 5.00 538 539 10.60 46.35 10.00 539 540 4.20 78.35 22.00 540 541 7.30 55.35 -6.00 541 542 7.40 134.35 0.00 542 543 4.50 204.35 -30.00 542 544 7.10 22.35 0.00 544 545 4.40 66.35 21.00 545 546 11.40 78.35 44.00 539 547 17.40 290.35 10.00 547 548 20.60 238.35 -4.00 548 549 4.70 256.35 32.00 549 550 6.10 286.35 35.00 539 551 8.40 325.35 8.00 551 552 17.10 56.35 18.00 *END FarEndInlet *BEGIN 21stPassage *EQUATE 21st-080322.16 21st-090412.3 *BEGIN 21st-080322 *DATE 2008.03.22 *CALIBRATE declination 2.15 16 19 19.09 45.00 21.00 19 20 5.38 15.00 10.50 19 21 9.92 108.00 8.00 21 22 4.35 122.00 30.00 21 23 3.60 58.00 9.00 23 24 2.53 78.00 -19.00 24 26 2.10 0.00 90.00 *END 21st-080322 *BEGIN 21st-090412 *DATE 2009.04.12 *CALIBRATE declination 2.08 6 1 2.15 349.60 20.72 1 2 2.03 9.20 13.84 2 3 4.34 37.32 -11.13 3 4 2.57 174.52 -17.84 4 5 2.72 186.48 -0.82 5 6 3.31 227.75 8.87 6 7 2.89 241.58 4.45 7 8 2.44 212.15 -14.81 8 9 3.21 193.18 -3.66 9 10 7.73 241.99 -5.07 10 11 4.86 208.83 -21.71 11 12 0.65 215.87 -32.44 12 13 6.19 235.13 -65.26 7 14 9.36 267.80 12.59 14 15 12.22 248.02 6.25 15 16 10.63 260.69 -10.04 16 17 2.68 218.41 -48.93 17 18 10.62 257.98 -46.07 *FLAGS DUPLICATE 18 19 7.17 126.81 -4.00 19 20 10.73 91.88 -13.36 20 13 9.72 91.41 11.83 *END 21st-090412 *END 21stPassage *END UpperLevels *END 0105_Riano CaveConverter_src/test/data/regression/2649_Mares_fromaven_dt_ref.text0000644000000000000000000001320313030252172025114 0ustar rootroot -6 1 1 1 1 Cave Name -5 1 1 1 1 0.00 0.00 0.00 1 0 -4 1 1 1 1 12/08/16 13:14:15 CaveConverter -3 1 1 1 1 -2 1 1 1 1 16/08/12 Converted Data 0 0.00 0 1 -1 1 1 1 1 360.00 360.00 0.05 1.00 1.00 100.00 0.00 1 -2 1 1 1 Series 1-root.SurveyFromDXF.SeriesFromLines1 1 -1 1 1 1 1 0 1 7 7 3 0 1 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1 1 1 1 1 1.71 142.64 -46.89 0.00 0.00 0.00 0.00 1 2 1 1 1 2.90 350.59 -49.12 0.00 0.00 0.00 0.00 1 3 1 1 1 4.23 0.00 -90.00 0.00 0.00 0.00 0.00 1 4 1 1 1 4.96 100.66 11.05 0.00 0.00 0.00 0.00 1 5 1 1 1 2.17 69.61 40.07 0.00 0.00 0.00 0.00 1 6 1 1 1 2.50 97.85 -35.10 0.00 0.00 0.00 0.00 1 7 1 1 1 6.89 219.66 -10.95 0.00 0.00 0.00 0.00 2 -2 1 1 1 Series 2-root.SurveyFromDXF.SeriesFromLines2 2 -1 1 1 1 1 6 2 4 4 3 0 2 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 1 1 1 1 2.99 65.79 18.75 0.00 0.00 0.00 0.00 2 2 1 1 1 2.99 107.71 -1.72 0.00 0.00 0.00 0.00 2 3 1 1 1 2.58 95.89 -10.95 0.00 0.00 0.00 0.00 2 4 1 1 1 4.81 0.00 -90.00 0.00 0.00 0.00 0.00 3 -2 1 1 1 Series 3-root.SurveyFromDXF.SeriesFromLines3 3 -1 1 1 1 2 3 3 15 15 3 0 3 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 1 1 1 1 4.40 45.66 -11.13 0.00 0.00 0.00 0.00 3 2 1 1 1 2.30 17.68 -43.07 0.00 0.00 0.00 0.00 3 3 1 1 1 7.35 47.76 -3.98 0.00 0.00 0.00 0.00 3 4 1 1 1 7.35 32.74 -4.99 0.00 0.00 0.00 0.00 3 5 1 1 1 4.10 22.63 14.12 0.00 0.00 0.00 0.00 3 6 1 1 1 5.90 70.73 -5.15 0.00 0.00 0.00 0.00 3 7 1 1 1 7.40 29.69 -2.94 0.00 0.00 0.00 0.00 3 8 1 1 1 5.64 46.73 -3.05 0.00 0.00 0.00 0.00 3 9 1 1 1 3.91 107.78 -3.96 0.00 0.00 0.00 0.00 3 10 1 1 1 4.02 82.72 1.99 0.00 0.00 0.00 0.00 3 11 1 1 1 3.00 35.76 -2.87 0.00 0.00 0.00 0.00 3 12 1 1 1 3.30 147.73 -11.00 0.00 0.00 0.00 0.00 3 13 1 1 1 6.57 96.74 0.00 0.00 0.00 0.00 0.00 3 14 1 1 1 1.81 179.68 2.85 0.00 0.00 0.00 0.00 3 15 1 1 1 1.90 25.75 6.95 0.00 0.00 0.00 0.00 4 -2 1 1 1 Series 4-root.SurveyFromDXF.SeriesFromLines4 4 -1 1 1 1 3 14 4 1 1 3 0 4 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4 1 1 1 1 2.50 199.59 19.84 0.00 0.00 0.00 0.00 5 -2 1 1 1 Series 5-root.SurveyFromDXF.SeriesFromLines5 5 -1 1 1 1 3 13 5 5 5 3 0 5 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 5 1 1 1 1 3.00 88.85 6.51 0.00 0.00 0.00 0.00 5 2 1 1 1 2.91 18.25 3.54 0.00 0.00 0.00 0.00 5 3 1 1 1 4.11 17.73 -2.09 0.00 0.00 0.00 0.00 5 4 1 1 1 2.02 328.99 4.53 0.00 0.00 0.00 0.00 5 5 1 1 1 2.42 26.97 -37.46 0.00 0.00 0.00 0.00 6 -2 1 1 1 Series 6-root.SurveyFromDXF.SeriesFromLines6 6 -1 1 1 1 5 4 6 2 2 3 0 6 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6 1 1 1 1 1.93 61.96 -5.96 0.00 0.00 0.00 0.00 6 2 1 1 1 3.34 30.11 -4.29 0.00 0.00 0.00 0.00 7 -2 1 1 1 Series 7-root.SurveyFromDXF.SeriesFromLines7 7 -1 1 1 1 6 1 7 6 6 3 0 7 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 7 1 1 1 1 8.16 102.89 -1.40 0.00 0.00 0.00 0.00 7 2 1 1 1 1.78 137.05 4.83 0.00 0.00 0.00 0.00 7 3 1 1 1 2.69 98.76 0.43 0.00 0.00 0.00 0.00 7 4 1 1 1 4.73 54.32 -3.76 0.00 0.00 0.00 0.00 7 5 1 1 1 1.26 67.52 -5.01 0.00 0.00 0.00 0.00 7 6 1 1 1 2.94 110.53 -3.70 0.00 0.00 0.00 0.00 8 -2 1 1 1 Series 8-root.SurveyFromDXF.SeriesFromLines8 8 -1 1 1 1 7 5 8 3 3 3 0 8 0 1 1 1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 8 1 1 1 1 3.96 134.18 3.91 0.00 0.00 0.00 0.00 8 2 1 1 1 1.44 67.21 -26.37 0.00 0.00 0.00 0.00 8 3 1 1 1 2.30 129.81 -17.75 0.00 0.00 0.00 0.00CaveConverter_src/test/data/regression/0114_Llueva_ref.svx0000644000000000000000000011176312114041276022543 0ustar rootroot*BEGIN 0114_Llueva *EQUATE RestOfCave.109 Part1.MainUpstream.11 *BEGIN Part1 *EQUATE MainPassage.12 EntrancePassage.12 *EQUATE MainPassage.12 Chamber_Up_From_Ladder.13 *EQUATE Downstream.13 MainPassage.13 *EQUATE MainPassage.26 FaultPassage.26 *EQUATE MainPassage.22 LeftHandBypass.68a *EQUATE MainUpstream.1 LeftHandBypass.90 *EQUATE RHBypass.0 LeftHandBypass.68 *EQUATE MainPassage.26 FaultPassage.26 *EQUATE RHBypass.19 FaultPassageLink.12 *EQUATE FaultPassage.43 FaultPassageLink.9 *EQUATE Downstream.493 Downstream_sump.14 *EQUATE RoofOxbow.1 Chamber_Up_From_Ladder.11 *EQUATE FaultPassage.37 LifeUandE.UpperLevels.2007-07-30.36 *EQUATE FaultPassageLink.0 LifeUandE.LowerLevels.2007-08-09PStD.51 *EQUATE RHBypass.17 RHBypassExtn.0 *EQUATE RHBypass.14 RHBypassExtn.16 *BEGIN EntrancePassage 0 1 7.00 228.11 0.00 1 2 15.50 253.11 0.00 2 3 16.50 243.11 2.00 3 4 4.60 238.11 0.00 4 5 3.00 148.11 -45.00 5 6 5.80 240.11 0.00 6 7 9.80 243.11 0.00 7 8 4.00 238.11 0.00 8 9 4.00 240.11 0.00 9 10 8.00 233.11 -1.00 10 11 16.00 233.11 -45.00 11 12 10.00 0.00 -90.00 *END EntrancePassage *BEGIN RoofOxbow *CALIBRATE declination 2.28 2 1 8.22 0.00 -90.00 3 2 7.06 57.00 4.00 4 3 4.00 84.00 8.00 4 5 5.59 295.00 8.00 4 6 2.95 175.00 -22.00 *END RoofOxbow *BEGIN Chamber_Up_From_Ladder *CALIBRATE declination 2.28 2 1 4.88 92.00 56.00 3 2 1.51 192.00 36.00 4 3 5.58 92.00 -2.00 5 4 12.60 111.00 2.00 6 5 14.52 48.00 -21.00 7 6 20.23 58.00 17.00 6 8 20.68 142.00 38.00 9 8 12.69 207.00 10.00 10 9 14.44 260.00 11.00 11 7 10.61 41.00 21.00 12 11 14.23 118.00 21.00 13 12 6.69 153.00 38.00 *END Chamber_Up_From_Ladder *BEGIN Downstream 13 472 10.06 276.79 -1.00 472 473 7.07 261.87 0.00 473 474 10.44 253.30 0.00 474 475 7.61 336.80 0.00 475 476 10.00 53.13 0.00 476 477 8.54 69.44 0.00 477 478 42.52 48.81 0.00 478 479 16.27 317.49 0.00 479 480 13.89 59.74 0.00 480 481 7.28 164.05 0.00 481 482 5.00 270.00 0.00 482 483 12.16 170.53 0.00 481 484 23.02 92.49 0.00 484 485 34.13 148.17 0.00 13 486 22.01 89.50 0.00 486 487 16.40 37.56 0.00 487 488 10.63 138.81 0.00 487 489 13.34 102.99 0.00 486 490 17.72 73.61 0.00 490 491 16.97 45.00 0.00 491 492 12.53 61.39 0.00 492 493 40.42 55.12 5.00 474 474a 42.00 241.00 0.00 *END Downstream *BEGIN Downstream_sump *CALIBRATE declination 1.89 15 14 6.70 62.00 0.00 14 13 6.50 16.00 38.00 13 12 18.50 331.00 -20.00 12 11 30.00 103.00 -3.00 11 10 30.00 83.00 -3.00 10 9 30.00 62.00 -3.00 9 8 30.00 74.00 -3.00 8 7 30.00 76.00 -3.00 7 6 14.50 11.00 0.00 6 5 30.00 342.00 5.00 5 4 7.70 359.00 0.00 4 3 6.70 6.00 15.00 3 2 6.90 271.00 0.00 2 1 6.20 340.00 -40.00 1 0a 5.00 340.00 0.00 0a 0b 5.00 340.00 0.00 *END Downstream_sump *BEGIN MainPassage 12 13 24.50 303.11 -37.00 13 14 29.80 231.11 25.00 14 15 30.00 247.11 8.00 15 16 16.00 279.11 -15.00 16 17 30.00 267.11 -8.00 17 18 30.00 272.11 -2.00 18 19 30.00 285.11 11.00 19 20 30.00 277.11 7.00 20 21 30.00 266.11 8.00 21 22 30.00 276.11 6.00 22 23 30.00 303.11 -6.00 23 24 13.70 309.11 -15.00 24 25 30.00 303.11 -35.00 25 26 28.80 320.11 0.00 *END MainPassage *BEGIN RHBypass *CALIBRATE declination 2.28 0 1 11.00 346.50 21.00 1 2 11.95 355.50 -12.00 2 3 5.92 0.00 90.00 3 4 17.40 312.50 -1.00 4 5 8.25 285.00 -3.00 5 6 20.60 312.50 0.00 6 7 2.90 280.50 57.00 7 8 2.85 214.00 49.00 8 9 8.80 284.50 9.00 9 10 5.75 300.50 -7.00 10 11 2.35 50.00 -23.00 11 12 2.70 295.50 -43.00 12 13 5.70 269.00 9.00 13 14 18.45 302.00 -4.00 14 15 9.65 25.00 -25.00 15 16 2.55 60.00 -54.00 16 17 5.90 305.50 -12.00 17 18 6.50 24.00 2.00 18 19 2.25 26.00 -41.00 19 20 6.00 0.00 -90.00 *END RHBypass *BEGIN RHBypassExtn *CALIBRATE tape 1.0 *CALIBRATE declination 2.15 1 0 2.85 317.00 -3.00 2 1 6.70 40.00 -4.00 3 2 2.80 153.00 -63.00 4 3 2.95 35.00 -22.00 5 4 4.45 130.00 -7.00 6 5 8.10 119.00 3.00 7 6 5.40 42.00 -8.00 8 7 4.75 90.00 9.00 9 8 3.15 39.00 2.00 10 9 3.65 94.00 -11.00 11 10 6.40 51.00 -8.00 12 11 9.00 59.00 7.00 14 5 3.70 353.00 -24.00 15 14 6.95 322.00 -3.50 15 16 3.45 111.00 6.50 *END RHBypassExtn *BEGIN FaultPassageLink *CALIBRATE declination 2.28 0 1 4.87 226.50 0.50 1 2 8.40 229.00 0.50 2 3 4.16 198.00 12.00 3 4 2.01 59.00 22.00 4 5 4.22 182.00 38.00 5 6 1.18 359.50 60.00 6 7 4.72 322.00 32.00 7 8 9.32 233.00 36.50 8 9 4.91 198.00 -14.50 9 10 4.35 201.00 -1.00 10 11 11.86 201.00 -31.50 11 12 8.16 209.00 -6.00 *END FaultPassageLink *BEGIN FaultPassage 26 27 8.90 64.11 30.00 27 28 15.00 2.11 53.00 28 29 2.00 116.11 35.00 29 30 6.50 24.11 40.00 30 31 3.00 48.11 0.00 31 32 3.90 82.11 0.00 32 33 2.90 68.11 0.00 33 34 5.10 9.11 30.00 34 35 5.50 43.11 10.00 35 36 16.00 48.11 0.00 36 37 7.10 72.11 0.00 37 38 16.30 63.11 0.00 38 39 8.40 58.11 0.00 39 40 4.30 112.11 0.00 40 41 8.20 81.11 0.00 31 42 8.00 318.11 -20.00 42 43 7.00 41.11 30.00 43 44 12.50 26.11 0.00 44 45 14.80 69.11 10.00 39 46 8.10 76.20 0.00 46 47 11.60 89.20 0.00 47 48 17.80 56.20 0.00 48 49 4.70 64.20 28.00 49 50 6.40 42.20 5.00 50 51 3.50 0.00 90.00 51 52 11.20 0.20 50.00 52 53 10.60 79.20 0.00 53 54 3.40 0.00 90.00 54 55 9.40 54.20 30.00 55 56 9.30 254.20 6.00 56 57 6.60 326.20 10.00 57 58 4.40 277.20 17.00 58 59 3.40 0.00 90.00 59 60 6.40 52.20 22.00 60 61 2.70 41.20 32.00 61 62 4.00 0.00 90.00 62 63 5.90 87.20 0.00 63 64 4.20 50.20 0.00 64 65 3.00 12.20 21.00 62 66 14.50 251.20 0.00 52 67 9.80 243.20 -3.00 *END FaultPassage *BEGIN LifeUandE *EQUATE UpperLevels.2007-08-07.33 LowerLevels.2007-08-09PStA.0 *EQUATE UpperLevels.2007-07-31.14 LowerLevels.2007-08-02b.1 *EQUATE UpperLevels.2007-07-31.44 LowerLevels.2008-03-27.1 *BEGIN UpperLevels *EQUATE 2007-07-30.1 2007-07-31.1 *EQUATE 2007-07-31.9 2007-08-02a.1 *EQUATE 2007-07-30.11 2007-08-04a.1 *EQUATE 2007-07-31.9 2007-08-04b.30 *EQUATE 2007-08-04b.15 2007-08-04c.7 *EQUATE 2007-08-04b.23 2007-08-04d.1 *EQUATE 2007-08-07.0 2007-08-04b.19 *EQUATE 2007-08-07.16 CrapCompassChamber.0 *BEGIN 2007-07-30 *CALIBRATE declination 2.28 1 2 11.75 70.00 19.00 2 3 11.10 177.00 -8.00 4 3 19.58 50.00 23.00 5 3 20.40 10.00 20.00 6 3 11.07 276.00 -37.00 7 6 8.45 294.00 -16.00 7 8 10.19 219.00 5.00 7 9 11.11 161.00 -30.00 9 10 9.34 207.00 -42.00 11 10 5.30 355.00 0.00 10 12 11.81 252.00 -42.00 12 13 20.10 207.00 -60.00 13 14 5.40 274.00 -54.00 15 14 8.80 15.00 -12.00 15 16 6.30 135.00 14.00 14 17 2.30 33.00 0.00 17 18 7.45 0.00 -90.00 18 19 1.93 245.00 -12.00 19 20 5.55 0.00 -90.00 21 20 3.24 267.00 -40.00 21 22 2.35 328.00 -37.00 22 23 2.79 210.00 -68.00 23 24 3.25 32.00 -42.00 24 25 2.04 350.00 14.00 25 26 2.28 0.00 -90.00 26 27 2.20 25.00 -36.00 27 28 3.47 95.00 -35.00 28 29 3.26 46.00 -42.00 29 30 4.85 70.00 -10.00 30 31 2.00 137.00 -19.00 31 32 4.22 136.00 -67.00 32 33 0.66 130.00 0.00 33 34 6.18 0.00 -90.00 34 35 5.52 150.00 10.00 35 36 10.30 195.00 -13.00 *END 2007-07-30 *BEGIN 2007-07-31 *CALIBRATE tape 0.1 *CALIBRATE declination 2.28 1 2 5.95 252.00 -8.00 2 3 10.20 344.00 -6.00 3 4 9.50 28.00 -8.00 4 5 14.35 351.00 5.00 5 6 11.31 25.00 3.00 6 7 18.31 357.00 -17.00 7 8 8.68 8.00 -7.00 8 9 8.65 335.00 5.00 9 10 9.10 7.00 -8.00 10 11 19.22 289.00 3.00 11 12 7.45 303.00 10.00 12 13 18.30 270.00 -4.00 13 14 11.44 255.00 -10.00 14 15 8.55 303.00 5.00 15 16 3.48 7.00 -11.00 16 17 10.86 275.00 -3.00 17 18 13.66 15.00 -3.00 18 19 5.65 19.00 10.00 18 20 7.85 272.00 -2.00 19 21 23.16 42.00 0.00 21 22 7.81 12.00 2.00 22 23 7.86 71.00 -4.00 23 24 18.62 5.00 3.00 24 25 10.55 22.00 5.00 25 26 4.72 57.00 9.00 26 27 3.35 25.00 13.00 27 28 10.15 70.00 4.00 28 29 13.91 51.00 2.00 29 30 4.37 37.00 5.00 30 31 12.60 53.00 3.00 31 32 12.73 65.00 6.00 32 33 7.96 55.00 0.00 20 34 4.70 237.00 0.00 34 35 6.06 283.00 -4.00 35 36 5.42 289.00 13.00 36 37 5.47 282.00 -10.00 37 38 2.25 297.00 1.00 38 39 4.15 325.00 2.00 39 40 8.91 254.00 3.00 40 41 6.04 286.00 3.00 41 42 6.16 241.00 -3.00 42 43 6.34 241.00 1.00 43 44 6.53 279.00 0.00 44 45 1.28 167.00 -62.00 45 46 8.75 0.00 -90.00 44 47 5.74 268.00 -3.00 47 48 2.00 312.00 13.00 48 49 5.55 268.00 0.00 49 50 4.10 203.00 -11.00 pp6 50 2.80 34.00 0.00 pp5 pp6 10.80 116.00 0.00 pp4 pp5 5.54 50.00 -2.00 pp3 pp4 6.05 51.00 4.00 pp2 pp3 15.70 58.00 0.00 pp2 pp1 1.90 131.00 -14.00 pp0 pp1 5.91 37.00 0.00 pp0 pp1a 4.00 190.00 0.00 *END 2007-07-31 *BEGIN 2007-08-02a *CALIBRATE declination 2.28 1 2 8.89 217.00 8.00 2 3 13.62 208.00 5.00 3 4 7.90 197.00 -24.00 3 5 2.78 169.00 -1.00 5 6 10.17 215.00 9.00 6 7 8.27 217.00 -11.00 7 8 3.98 0.00 -90.00 9 8 6.50 358.00 -18.00 9 10 2.52 259.00 -13.00 10 11 4.26 328.00 -13.00 11 12 10.46 198.00 2.00 12 13 4.30 214.00 10.00 13 14 6.23 147.00 -6.00 13 15 8.77 162.00 33.00 15 16 8.35 262.00 -13.00 16 17 4.00 188.00 -23.00 17 18 4.63 224.00 -13.00 18 19 4.89 185.00 14.00 21 20 3.35 0.00 90.00 21 22 0.67 267.00 0.00 19 20 0.28 270.00 0.00 19 23 4.26 202.00 17.00 23 24 3.00 153.00 13.00 24 25 4.20 172.00 0.00 *END 2007-08-02a *BEGIN 2007-08-04a *CALIBRATE declination 2.28 1 2 7.57 123.00 2.00 2 3 7.65 54.00 2.00 3 4 3.97 142.00 -26.00 4 5 5.55 162.00 5.00 5 6 3.26 112.00 42.00 6 7 3.85 174.00 63.00 *END 2007-08-04a *BEGIN 2007-08-04b *CALIBRATE declination 2.28 1 2 4.50 285.00 -11.00 2 3 3.22 259.00 0.00 3 4 10.00 223.00 -13.00 4 5 6.92 253.00 -4.00 5 6 6.55 242.00 -2.00 6 7 9.50 213.00 0.00 7 8 8.66 197.00 3.00 8 9 15.87 244.00 3.00 9 10 11.66 203.00 -3.00 10 11 10.76 231.00 -23.00 11 12 5.80 294.00 12.00 12 13 9.32 244.00 1.00 13 14 7.15 201.00 1.00 14 15 4.19 250.00 -20.00 15 16 4.32 192.00 -5.00 16 17 13.52 285.00 -5.00 17 18 6.80 259.00 -17.00 18 19 10.37 271.00 -10.00 19 20 3.08 162.00 70.00 20 21 7.30 244.00 16.00 21 22 6.30 291.00 -11.00 22 23 8.43 244.00 0.00 23 24 16.60 276.00 7.00 24 25 8.95 16.00 -5.00 25 26 3.03 322.00 30.00 26 27 11.71 0.00 -30.00 27 28 4.36 20.00 -7.00 28 29 11.57 350.00 -10.00 29 30 3.02 330.00 35.00 *END 2007-08-04b *BEGIN 2007-08-04c *CALIBRATE declination 2.28 1 2 6.53 213.00 -5.00 2 3 3.11 82.00 7.00 3 4 8.84 99.00 0.00 4 5 8.66 42.00 -14.00 5 6 3.30 97.00 15.00 6 7 6.45 93.00 -33.00 *END 2007-08-04c *BEGIN 2007-08-04d *CALIBRATE declination 2.28 1 2 11.61 187.00 0.00 2 3 4.23 195.00 5.00 3 4 3.87 168.00 -2.00 4 5 6.00 200.00 -4.00 5 6 3.75 102.00 -5.00 6 7 16.58 66.00 1.00 *END 2007-08-04d *BEGIN 2007-08-07 *CALIBRATE declination 2.28 0 1 3.64 351.00 -20.00 1 2 11.67 0.00 -90.00 2 3 3.09 0.00 40.00 3 4 5.76 280.00 0.00 4 5 5.65 16.00 0.00 5 6 9.60 100.00 0.00 6 6a 12.20 0.00 90.00 5 7 6.62 45.00 0.00 7 8 7.50 0.00 90.00 4 9 11.03 190.00 -10.00 9 10 4.61 250.00 -2.00 10 11 2.51 330.00 3.00 11 12 7.78 250.00 3.00 12 13 1.45 315.00 0.00 13 14 6.60 265.00 -3.00 14 15 1.70 205.00 -55.00 15 16 5.16 0.00 -90.00 9 21 1.50 280.00 -30.00 21 22 7.23 350.00 -20.00 22 23 4.70 350.00 -10.00 23 24 1.69 260.00 -10.00 24 25 3.36 280.00 -8.00 25 26 1.20 350.00 0.00 26 27 4.66 280.00 -15.00 27 28 4.22 0.00 -20.00 28 30 10.98 5.00 -12.00 30 31 10.82 340.00 -10.00 31 32 18.13 20.00 -15.00 32 33 20.40 9.50 15.00 *END 2007-08-07 *BEGIN CrapCompassChamber *CALIBRATE declination 2.28 0 1 5.34 292.00 36.00 1 2 17.65 202.00 15.00 2 3 14.90 132.00 1.00 3 4 8.56 92.00 -26.00 4 5 18.77 0.00 -8.00 5 0 8.38 304.00 -28.00 *END CrapCompassChamber *END UpperLevels *BEGIN LowerLevels *EQUATE 2007-08-02b.29 2007-08-04e.1 *EQUATE 2007-08-04f.1 2007-08-04e.10 *EQUATE 2007-08-13.0 2007-08-09PStA.9 *EQUATE 2007-08-09PStA.17 2007-08-09PStB.17 *EQUATE 2007-08-09PStA.13 2007-08-09PStC.13 *EQUATE 2007-08-09PStC.30 2007-08-09PStD.30 *EQUATE 2007-08-09PStA.8 2007-08-09PStE.8 *EQUATE 2007-08-09PStE.72 2007-08-09PStF.72 *EQUATE 2007-08-09PStE.64 2007-08-11_Connection.0 *EQUATE 2007-08-02b.17 2007-08-11_Connection.9 *EQUATE 2008-03-18Ali.0 2007-08-09PStA.6 *EQUATE 2007-08-09PStA.8 2008-03-18Ali2.8 *BEGIN 2007-08-02b *CALIBRATE declination 2.28 1 2 3.43 306.00 6.00 2 3 3.20 235.00 -41.00 3 4 18.90 0.00 -90.00 4 5 2.44 355.00 1.00 5 6 2.37 46.00 -31.00 6 7 2.31 64.00 32.00 7 8 6.23 351.00 -24.00 8 9 0.91 56.00 -19.00 9 10 11.34 0.00 -90.00 11 10 6.50 204.00 -22.00 11 12 10.52 0.00 -90.00 13 12 3.56 172.00 -49.00 13 14 11.03 62.00 -9.00 14 15 18.03 130.00 45.00 16 17 30.80 253.00 -21.00 17 18 22.95 345.00 33.00 17 19 30.68 241.00 21.00 17 20 24.65 280.00 5.00 17 13 19.23 199.00 26.00 20 21 5.42 272.00 -33.00 21 22 12.16 269.00 -40.00 22 23 30.80 239.00 -25.00 23 24 5.20 6.00 30.00 22 25 19.67 316.00 -32.00 25 26 30.37 271.00 -3.00 26 27 23.44 283.00 -2.00 27 28 30.80 253.00 1.00 27 29 9.80 306.00 24.00 28 30 30.80 277.00 -1.00 30 31 30.80 264.00 0.00 31 32 8.90 285.00 -16.00 32 33 3.76 264.00 -34.00 33 34 18.00 266.00 0.00 13 20 28.60 318.00 -14.00 *END 2007-08-02b *BEGIN 2007-08-04e *CALIBRATE declination 2.28 1 2 23.07 270.00 15.00 2 3 27.44 267.00 -5.00 3 4 30.80 274.00 -2.00 4 5 11.61 274.00 -2.00 5 6 11.70 263.00 -4.00 6 7 23.55 264.00 5.00 7 8 15.70 272.00 0.00 8 9 13.95 273.00 -13.00 9 10 9.80 254.00 5.00 10 11 11.50 233.00 8.00 6 2a 4.81 198.00 3.00 2a 3a 6.23 199.00 -23.00 3a 4a 19.65 269.00 13.00 4a 5a 2.88 202.00 4.00 5a 6a 9.22 121.00 0.00 6a 7a 4.15 126.00 -6.00 7a 8a 2.96 199.00 -29.00 *END 2007-08-04e *BEGIN 2007-08-04f *CALIBRATE declination 2.28 1 2 3.33 309.00 -28.00 2 3 9.17 270.00 -7.00 3 4 10.01 260.00 0.00 3 2a 3.05 31.00 -18.00 2a 3a 2.87 308.00 10.00 *END 2007-08-04f *BEGIN 2007-08-09PStA *CALIBRATE declination 2.28 1 0 5.30 221.00 34.00 2 1 3.35 341.00 8.00 3 2 23.50 0.00 90.00 4 3 3.29 114.00 10.00 5 4 10.80 86.00 72.00 6 5 3.70 204.00 6.00 6 7 11.30 273.00 8.00 7 8 8.70 290.00 -40.00 8 9 19.16 211.00 1.00 9 10 27.50 227.00 -7.00 10 11 14.50 199.00 1.00 11 12 20.20 215.00 -1.00 12 13 12.90 219.00 11.00 13 14 11.30 238.00 7.00 14 15 10.20 263.00 -3.00 15 16 16.70 281.00 -7.00 16 17 6.10 269.00 -3.00 17 18 8.80 252.00 30.00 18 19 7.30 259.00 2.00 19 20 8.50 269.00 0.00 20 21 6.90 257.00 1.00 *END 2007-08-09PStA *BEGIN 2007-08-09PStB *CALIBRATE declination 2.28 17 22 9.80 347.00 6.00 22 23 5.50 0.00 -10.00 23 24 18.50 279.00 0.00 24 25 5.10 267.00 -6.00 25 26 9.90 272.00 5.00 26 27 16.90 265.00 3.00 27 28 12.80 265.00 13.00 *END 2007-08-09PStB *BEGIN 2007-08-09PStC *CALIBRATE declination 2.28 13 29 10.55 165.00 25.00 29 30 16.50 181.00 1.00 30 31 16.80 260.00 0.00 31 32 9.00 239.00 7.00 32 33 8.30 243.00 1.00 33 34 7.80 279.00 -3.00 34 35 9.95 270.00 -9.00 35 36 1.70 178.00 -6.00 36 37 4.70 253.00 11.00 37 38 4.40 258.00 4.00 38 39 4.20 251.00 -4.00 *END 2007-08-09PStC *BEGIN 2007-08-09PStD *CALIBRATE declination 2.28 30 40 5.30 84.00 15.00 40 41 9.20 100.00 -13.00 41 42 10.19 88.00 2.00 42 43 14.65 101.00 -12.00 43 44 4.30 104.00 7.00 44 45 6.30 65.00 16.00 45 46 7.20 84.00 2.00 46 47 5.70 115.00 -36.00 47 48 10.20 139.00 -29.00 48 49 3.30 124.00 -6.00 49 50 13.20 220.00 -1.00 50 51 10.20 224.00 2.00 *END 2007-08-09PStD *BEGIN 2007-08-09PStE *CALIBRATE declination 2.28 8 60 12.99 353.00 4.00 60 61 16.08 354.00 -7.00 61 62 7.08 0.00 2.00 62 63 14.00 262.00 38.00 63 64 14.67 286.00 35.00 64 65 12.80 42.00 29.00 65 66 19.50 26.00 -7.00 66 67 26.30 37.00 -3.00 67 68 34.00 48.00 4.00 68 69 21.50 48.00 -2.00 69 70 10.19 26.00 -21.00 70 71 15.60 33.00 -26.00 71 72 21.20 54.00 -13.00 72 73 14.95 84.00 16.00 73 74 26.40 84.00 15.00 74 75 22.50 70.00 9.00 75 76 24.60 92.00 1.00 76 77 28.10 62.00 4.00 *END 2007-08-09PStE *BEGIN 2007-08-09PStF *CALIBRATE declination 2.28 72 78 9.50 271.00 -17.00 78 79 15.95 293.00 -27.00 79 80 20.56 291.00 -6.00 80 81 10.66 277.00 7.00 81 82 9.60 282.00 5.00 82 83 10.20 310.00 -1.00 83 84 12.39 288.00 -10.00 84 85 6.96 294.00 11.00 85 86 22.20 299.00 -4.00 86 87 23.30 277.00 -3.00 87 88 30.00 298.00 5.00 88 89 14.10 293.00 8.00 89 90 12.40 301.00 -15.00 *END 2007-08-09PStF *BEGIN 2007-08-11_Connection *CALIBRATE declination 2.28 0 1 12.77 238.00 -26.00 1 2 4.97 242.00 -17.00 2 3 5.18 230.50 30.00 3 4 2.77 253.00 46.00 4 5 0.82 0.00 90.00 5 6 2.42 333.00 10.00 6 7 2.71 281.50 -2.00 7 8 8.10 306.00 3.00 8 9 9.48 245.00 -22.00 *END 2007-08-11_Connection *BEGIN 2007-08-13 *CALIBRATE declination 2.28 0 1 10.00 322.00 18.00 1 2 13.20 303.00 5.00 2 3 17.25 41.00 -8.00 4 2 5.90 154.00 22.00 5 4 10.20 109.00 0.00 6 5 5.15 74.00 3.00 7 6 2.50 2.00 -1.00 8 7 4.60 92.00 -6.00 9 8 14.15 70.00 1.00 10 9 10.35 69.00 0.00 11 10 10.00 39.00 1.00 12 11 1.60 73.00 -2.00 13 12 9.20 64.50 -2.00 14 13 10.14 72.00 1.00 15 14 3.40 43.00 -4.00 16 15 3.92 54.50 0.00 17 16 4.65 38.00 0.00 18 17 7.40 24.00 1.00 19 18 5.40 60.00 -3.00 20 19 7.60 14.50 0.00 21 20 11.65 72.00 -1.00 22 21 2.90 0.00 11.00 23 22 5.85 63.50 -2.00 24 23 3.45 20.00 0.20 25 24 11.64 69.50 -1.00 26 25 2.70 126.00 0.00 27 26 15.80 68.00 -1.00 28 27 15.90 109.00 -41.00 *END 2007-08-13 *BEGIN 2008-03-18Ali *CALIBRATE tape 1.0 *CALIBRATE declination 2.15 0 1 7.80 110.00 15.00 2 1 11.80 264.00 -1.00 3 2 3.00 0.00 -90.00 4 3 5.00 251.00 -4.00 5 4 3.60 260.00 -2.00 6 5 3.40 320.00 -1.00 7 6 3.95 238.00 -4.00 8 7 2.20 303.00 -3.00 9 8 2.70 267.00 -1.00 10 9 3.40 216.00 0.00 11 10 3.25 268.00 -1.00 12 11 6.75 204.00 -1.00 13 12 2.65 164.00 -22.50 14 13 9.90 202.00 6.00 0 15 9.85 8.00 -11.00 *END 2008-03-18Ali *BEGIN 2008-03-18Ali2 *CALIBRATE tape 1.0 *CALIBRATE declination 2.15 0 1 6.50 72.00 -16.00 0 2 11.00 195.00 -16.00 0 3 7.00 273.00 -40.00 4 3 9.00 81.00 -4.00 3 5 6.70 0.00 -90.00 5 6 5.00 278.00 -5.00 6 7 7.57 246.00 12.00 7 8 10.80 236.00 -16.00 *END 2008-03-18Ali2 *BEGIN 2008-03-27 *CALIBRATE declination 2.15 1 2 7.62 0.00 -90.00 2 3 5.60 266.00 -17.00 3 4 2.66 26.00 -64.00 4 5 2.83 157.00 -23.00 5 6 0.90 98.00 -10.00 6 7 15.70 0.00 -90.00 6 8 4.30 180.00 -71.00 8 9 2.00 131.00 -42.00 9 10 4.41 85.00 -5.00 10 11 2.16 67.00 2.00 11 12 15.77 0.00 -90.00 12 13 4.16 252.00 29.00 13 14 12.64 110.00 -16.00 14 15 26.87 86.00 8.00 14 16 15.27 17.00 -10.00 14 17 17.30 57.00 -28.00 14 19 6.67 171.00 -18.00 17 18 5.43 101.00 -55.00 19 20 6.27 0.00 -90.00 19 21 20.01 0.00 90.00 13 31 9.52 262.00 18.00 31 32 19.88 245.00 -15.00 32 33 16.73 259.00 -3.00 33 34 17.63 273.00 10.00 34 35 14.55 164.00 42.00 35 36 7.58 230.00 20.00 36 37 16.13 85.00 5.00 *END 2008-03-27 *END LowerLevels *END LifeUandE *BEGIN LeftHandBypass *EQUATE 78a SandstoneInlet1.14 *EQUATE 85 Boulder_Chambers.101 *EQUATE 89 Boulder_Chambers.89 68a 68 5.40 148.11 -47.00 68 69 8.40 251.11 -19.00 69 70 17.20 253.11 1.00 70 71 6.60 269.11 -16.00 71 72 9.60 252.11 -2.00 72 73 5.40 301.11 -3.00 73 74 5.00 338.11 -40.00 74 75 8.30 67.11 0.00 74 76 13.90 255.11 0.00 76 77 7.40 219.11 4.00 77 78 18.90 244.11 0.00 78 78a 2.40 0.00 -90.00 78a 79 12.30 261.11 -4.00 79 80 30.00 319.11 -5.00 80 81 30.00 297.11 -4.00 81 82 10.80 297.11 2.00 82 83 4.70 315.11 -23.00 83 84 7.30 333.11 30.00 84 85 13.10 17.11 17.00 85 86 10.70 56.11 -19.00 86 86a 1.00 53.11 0.00 86a 87 2.30 0.00 -90.00 87 88 9.40 53.11 0.00 88 89 5.30 63.11 25.00 89 90 16.00 56.11 0.00 90 91 15.60 90.11 -9.00 91 92 18.10 113.11 0.00 92 93 8.90 91.11 18.00 90 94 11.10 278.11 -19.00 94 95 4.40 0.00 -90.00 95 96 9.20 116.11 0.00 *BEGIN Boulder_Chambers 89 97 6.50 320.11 17.00 97 98 7.20 12.11 13.00 98 99 11.80 230.11 -8.00 99 100 14.80 228.11 10.00 100 101 7.40 161.11 0.00 100 102 8.20 277.11 12.00 102 103 4.60 319.11 48.00 103 104 15.70 260.11 35.00 *END Boulder_Chambers *BEGIN SandstoneInlet1 *CALIBRATE declination 2.28 15 14 19.00 296.00 -9.00 16 15 9.11 288.00 -3.00 17 16 3.59 307.00 -6.00 18 17 10.19 291.00 -4.00 19 18 13.93 286.00 -3.00 20 19 8.04 295.00 -3.00 21 20 9.85 32.00 0.00 22 21 4.24 350.00 -8.00 23 22 14.09 288.00 -3.00 *END SandstoneInlet1 *END LeftHandBypass *BEGIN MainUpstream 1 2 17.68 310.43 -26.90 2 3 42.09 298.55 0.00 3 4 6.28 267.88 0.00 4 5 10.74 287.65 0.00 5 6 23.49 269.15 0.00 6 7 15.01 247.21 0.00 7 8 24.76 275.39 0.00 8 9 38.28 289.70 0.00 9 10 21.07 285.03 0.00 10 11 11.98 292.83 0.00 13 12 39.62 301.50 0.00 12 3 12.73 227.68 -45.00 *END MainUpstream *END Part1 *BEGIN RestOfCave 109 110 7.00 273.86 0.00 110 111 13.10 258.86 10.00 111 112 7.30 246.86 57.00 112 113 18.40 286.86 -4.00 113 114 25.60 261.86 -2.00 114 115 14.50 299.86 -11.00 115 116 8.30 305.86 47.00 116 117 10.30 301.86 -9.00 117 118 1.70 0.00 -90.00 118 119 6.00 223.86 -12.00 119 120 20.00 291.86 -4.00 120 121 2.10 0.00 90.00 121 122 1.50 297.86 42.00 122 123 1.10 0.00 90.00 123 124 2.50 288.86 26.00 124 125 3.20 238.86 55.00 125 126 3.10 352.86 6.00 126 127 3.50 307.86 -29.00 127 128 2.80 271.86 6.00 128 129 2.00 208.86 25.00 129 130 3.60 258.86 52.00 130 131 1.60 229.86 3.00 131 132 1.00 0.00 90.00 132 133 12.00 257.86 30.00 133 134 3.80 288.86 31.00 134 135 1.20 0.00 -90.00 135 136 7.30 105.86 -9.00 136 137 3.70 107.86 10.00 137 138 3.70 120.86 0.00 138 139 3.60 135.36 -5.00 139 140 4.90 133.86 8.00 140 141 9.00 231.86 10.00 141 142 3.90 117.86 -4.00 142 143 5.30 269.86 -77.00 143 144 3.80 151.86 4.00 144 145 6.50 212.86 22.00 145 146 35.10 131.86 1.00 146 147 13.10 237.86 7.00 147 148 7.40 255.86 -11.00 148 149 4.40 142.86 -23.00 149 150 30.00 154.86 2.00 150 151 13.50 67.86 -27.00 151 152 8.80 150.86 0.00 152 153 19.10 122.86 2.00 153 154 6.00 147.86 0.00 154 155 30.00 151.86 12.00 155 156 12.70 260.86 -16.00 156 157 24.60 225.86 0.00 157 158 30.00 227.86 4.00 158 159 30.00 218.86 2.00 159 160 30.00 235.86 -2.00 160 161 30.00 203.86 10.00 161 162 13.20 222.86 23.00 162 163 31.50 254.86 0.00 163 164 27.20 277.86 2.00 164 165 27.80 263.86 -1.00 165 166 30.00 264.86 0.00 166 167 13.00 203.86 -3.00 167 168 30.00 291.86 3.00 168 169 24.20 339.36 5.00 169 170 10.70 265.86 -12.00 170 171 30.00 231.86 0.00 171 172 30.00 257.86 0.00 172 173 30.00 261.86 5.00 173 174 28.10 308.86 23.00 174 175 10.80 324.86 -42.00 175 176 17.40 46.86 -12.00 176 177 30.00 45.86 -11.00 177 178 22.20 51.86 -18.00 178 179 30.00 39.86 -5.00 179 180 30.00 43.86 -5.00 180 181 30.00 1.86 0.00 181 182 25.60 275.86 -3.00 182 183 25.30 314.86 -10.00 183 184 7.50 14.86 22.00 184 185 29.00 54.86 13.00 132 186 10.40 258.95 28.00 186 187 3.10 204.95 -33.00 187 188 1.60 272.95 -14.00 188 189 3.70 253.95 -37.00 189 190 8.10 293.95 15.00 190 191 4.90 294.95 -7.00 191 192 3.30 312.95 -11.00 192 193 2.90 304.95 28.00 193 194 16.20 323.95 -8.00 194 195 16.40 288.95 -32.00 195 196 5.40 31.95 -8.00 196 197 3.80 0.00 -90.00 197 198 12.00 335.95 -5.00 198 199 7.30 318.95 5.00 199 200 10.00 284.95 -7.00 200 201 4.00 262.95 0.00 201 202 8.70 226.95 0.00 194 203 17.00 289.95 0.00 199 204 12.40 209.95 0.00 185 205 3.10 112.95 18.00 205 206 30.70 73.45 -1.00 206 207 17.60 85.45 2.00 207 208 22.70 33.95 -8.00 208 209 30.70 61.45 13.00 209 210 27.40 57.95 5.00 210 211 30.70 66.95 -17.00 211 212 30.40 76.95 -2.00 145 213 5.40 217.95 7.00 213 214 22.00 322.95 8.00 162 215 7.14 289.45 20.00 215 216 23.40 316.95 -1.00 216 217 30.70 248.95 2.00 217 218 27.30 333.95 -3.00 218 219 19.30 274.95 0.00 219 220 30.70 281.95 2.00 220 221 17.40 351.95 2.00 221 222 30.70 14.95 -3.00 222 223 30.70 36.95 0.00 223 224 30.70 32.95 0.00 224 225 30.70 31.95 3.00 225 226 29.70 38.95 -4.00 226 227 24.60 23.95 0.00 227 228 21.00 37.95 -2.00 228 229 13.90 90.95 -5.00 229 230 19.40 61.45 1.00 220 231 30.70 159.95 1.00 231 232 13.60 150.95 6.00 232 233 25.50 252.95 -8.00 228 234 17.00 7.95 0.00 *EQUATE 234 235 *EQUATE 235 236 *EQUATE 236 237 162 238 18.00 101.95 11.00 238 239 2.70 93.95 -10.00 239 240 13.40 186.95 -5.00 240 241 5.00 84.95 0.00 241 242 2.60 121.95 15.00 242 243 2.40 208.95 25.00 243 244 2.50 113.95 -1.00 244 245 4.40 193.95 0.00 245 246 2.60 96.95 10.00 246 247 4.30 165.95 -6.00 247 248 4.00 87.95 -4.00 248 249 7.30 188.95 -3.00 249 250 5.00 80.95 1.00 250 251 2.70 187.95 -2.00 251 252 3.70 83.95 0.00 252 253 6.00 188.95 1.00 253 254 9.50 77.95 -1.00 254 255 5.90 153.95 -1.00 255 256 3.30 91.95 1.00 256 257 7.90 193.95 2.00 257 258 7.60 68.95 2.00 258 259 2.50 43.95 4.00 259 260 1.80 133.95 2.00 260 261 3.40 13.95 -3.00 261 262 8.40 27.95 -10.00 262 263 2.10 168.95 24.00 263 264 22.50 191.95 0.00 264 265 12.30 193.95 5.00 265 266 7.30 55.95 4.00 266 267 6.40 188.95 6.00 267 268 6.70 163.95 4.00 268 269 4.30 66.95 1.00 269 270 4.60 171.95 1.00 270 271 20.00 65.95 0.00 271 272 6.70 53.95 0.00 272 273 1.30 148.95 2.00 273 274 4.00 214.95 3.00 274 275 5.20 173.95 4.00 275 276 9.40 104.95 2.00 276 277 3.30 123.95 5.00 277 278 3.90 49.95 -4.00 278 279 5.20 119.95 2.00 279 280 6.60 143.95 2.00 280 281 8.60 119.95 1.00 281 282 6.00 53.95 5.00 282 283 6.40 109.95 0.00 283 284 2.60 73.95 -4.00 284 285 3.20 113.95 1.00 285 286 6.90 143.95 4.00 286 287 7.30 122.95 10.00 287 288 2.20 159.95 -45.00 288 289 5.00 178.95 5.00 289 290 7.50 233.95 -4.00 162 291 11.35 83.96 19.00 291 292 6.00 85.95 -10.00 292 293 15.75 12.95 -1.00 293 294 4.80 81.95 23.00 294 295 5.00 154.95 -32.00 295 296 7.30 203.95 10.00 175 297 16.80 280.94 17.00 297 298 6.70 193.95 43.00 298 299 3.30 133.95 70.00 299 300 3.30 271.95 15.00 300 301 3.30 0.00 90.00 301 302 9.00 83.95 10.00 302 303 6.30 178.95 11.00 303 304 30.70 262.95 6.00 304 305 16.20 246.95 19.00 305 306 16.80 285.95 10.00 306 307 30.70 258.95 0.00 307 308 30.70 268.95 -1.00 308 309 30.70 278.95 3.00 309 310 28.10 222.95 16.00 310 311 30.70 221.95 11.00 311 312 22.00 260.95 -8.00 312 313 20.40 273.95 -26.00 313 314 12.50 358.95 -29.00 314 315 8.70 268.95 -42.00 315 316 9.80 215.95 -50.00 316 317 6.20 142.95 -40.00 317 318 10.70 207.95 -45.00 318 319 18.60 126.95 -30.00 319 320 30.70 163.95 -9.00 320 321 21.40 153.95 10.00 321 322 12.50 218.95 10.00 318 323 28.40 263.95 8.00 323 324 19.00 268.95 -6.00 312 325 16.60 203.95 28.00 324 326 8.60 15.95 -31.00 326 327 6.30 74.95 -33.00 327 328 2.50 341.95 -15.00 328 329 19.20 284.95 0.00 329 330 13.50 252.95 2.00 330 331 5.00 346.95 3.00 331 332 8.10 289.95 14.00 332 333 23.50 302.95 -3.00 333 334 2.10 277.95 30.00 334 335 2.20 240.95 -8.00 335 336 2.90 147.95 12.00 336 337 9.20 204.95 -4.00 337 338 4.70 265.95 -19.00 338 339 3.70 358.95 -3.00 339 340 6.50 318.95 5.00 340 341 3.00 1.95 35.00 341 342 8.90 285.95 2.00 342 343 10.20 273.95 -21.00 343 344 16.50 275.95 20.00 344 345 20.30 303.95 -8.00 345 346 20.40 286.95 18.00 346 347 4.60 27.95 -9.00 347 348 13.00 3.95 1.00 348 349 6.20 14.95 3.00 349 350 8.00 4.95 -8.00 350 351 4.90 26.95 -3.00 351 352 8.70 29.95 0.00 352 353 4.10 342.95 12.00 353 354 4.40 29.95 -19.00 354 355 4.70 51.95 -14.00 355 356 12.60 19.95 -2.00 356 357 4.50 52.95 -2.00 357 358 6.30 357.95 0.00 358 359 8.50 330.95 0.00 346 360 1.23 42.03 -17.00 360 361 3.70 285.03 22.00 361 362 0.70 0.00 -90.00 362 363 7.10 278.03 32.00 363 364 9.40 204.03 59.00 364 365 9.57 78.03 2.00 365 366 10.71 141.03 0.00 364 367 3.20 264.03 4.00 *EQUATE 367 368 325 369 30.00 0.00 90.00 369 370 3.50 110.35 55.00 370 371 7.50 125.35 70.00 371 372 6.20 129.35 -32.00 372 373 10.30 60.35 45.00 371 374 1.70 210.35 20.00 374 375 5.50 201.35 10.00 *EQUATE 375 376 199 377 1.09 0.00 90.00 377 378 3.60 311.95 0.00 378 379 3.20 285.95 59.00 379 380 4.00 329.95 -6.00 380 381 1.80 223.95 0.00 381 382 1.60 0.00 90.00 382 383 1.70 176.95 32.00 383 384 1.00 298.95 15.00 384 385 2.00 6.95 12.00 385 386 1.40 328.95 20.00 386 387 1.80 275.95 0.00 387 388 1.30 0.00 90.00 388 389 1.70 303.95 -5.00 389 390 0.90 0.00 90.00 390 391 2.90 308.95 4.00 391 392 2.40 331.95 -12.00 392 393 3.20 331.95 19.00 393 394 2.80 321.95 50.00 394 395 3.90 3.95 52.00 395 396 5.50 278.95 25.00 396 397 6.50 299.95 -28.00 397 398 6.90 283.95 -7.00 398 399 2.40 236.95 0.00 399 400 2.80 271.95 -48.00 400 401 6.30 308.95 -10.00 401 402 7.10 348.95 -5.00 402 403 9.80 293.95 4.00 403 404 4.50 275.95 38.00 404 405 3.40 285.95 0.00 405 406 1.30 218.95 0.00 406 407 3.60 273.95 2.00 407 408 2.00 271.95 30.00 408 409 2.90 204.95 50.00 409 410 3.80 193.95 42.00 410 411 9.20 283.95 2.00 411 412 1.20 233.95 0.00 412 413 2.70 321.95 0.00 413 414 3.80 288.95 0.00 396 415 3.90 258.95 -1.00 197 416 2.89 81.02 28.00 416 417 9.00 111.95 0.00 417 418 6.70 182.95 -1.00 417 419 1.30 0.00 -90.00 419 420 1.20 111.95 0.00 420 421 3.90 14.95 7.00 421 422 6.60 30.95 9.00 422 423 1.60 110.95 20.00 423 424 7.30 134.95 12.00 424 425 4.40 113.95 28.00 425 426 4.60 162.95 10.00 426 427 2.70 186.95 -32.00 427 428 2.40 205.95 10.00 428 429 6.10 254.95 11.00 429 430 4.80 198.95 8.00 212 431 9.30 285.06 6.00 431 432 5.50 59.03 -14.00 432 433 2.80 309.03 -42.00 433 434 2.10 56.03 -17.00 434 435 4.40 285.03 -26.00 435 436 3.15 0.00 -90.00 436 437 19.70 69.03 2.00 320 438 1.50 0.00 90.00 438 439 22.34 341.35 6.00 439 440 8.50 248.35 -35.00 440 441 15.72 275.35 -8.00 441 442 8.16 4.35 -3.00 442 443 27.47 274.35 -4.00 443 444 30.00 282.35 -2.00 444 445 15.03 276.35 3.00 445 446 24.34 244.35 1.00 446 447 22.25 213.35 0.00 447 448 25.24 225.35 3.00 448 449 5.97 173.35 1.00 446 450 30.00 247.35 -2.00 450 451 11.07 209.35 4.00 451 452 15.27 217.35 1.00 452 453 7.65 229.35 20.00 453 454 5.60 266.35 47.00 452 455 10.62 242.35 5.00 455 456 5.72 278.35 1.00 456 457 3.37 221.35 1.00 184 458 6.10 242.50 -5.00 458 459 8.00 268.50 -8.00 459 460 4.30 284.50 0.00 460 461 7.20 265.50 -7.00 461 462 6.60 265.50 8.00 462 463 25.80 265.50 1.00 463 464 3.00 0.00 -90.00 464 465 2.60 263.50 -14.00 465 466 8.50 278.50 0.00 466 467 2.50 245.50 -24.00 467 468 5.50 260.50 0.00 468 469 5.20 315.50 30.00 469 470 16.10 259.50 0.00 470 471 10.00 269.50 5.00 185 502 29.35 272.40 -3.00 502 503 7.90 253.40 -27.00 503 504 10.45 286.40 1.00 504 505 6.30 266.40 3.00 505 506 4.45 278.90 22.00 506 507 20.20 261.40 1.00 507 508 4.60 281.90 -28.00 508 509 3.65 240.40 -47.00 509 510 8.25 280.90 2.00 510 511 3.40 250.40 -21.00 511 512 5.55 268.90 1.00 512 513 5.30 320.40 33.00 513 514 16.35 264.40 -1.00 514 515 15.50 270.40 2.00 359 516 3.60 185.55 0.00 516 517 9.90 143.55 -1.00 517 518 3.70 106.55 8.00 518 519 3.40 152.55 -3.00 519 520 3.00 102.55 -1.00 520 521 1.70 181.55 -2.00 521 522 4.00 90.55 0.00 522 523 15.00 100.55 -2.00 523 524 3.60 342.55 3.00 524 525 19.00 100.55 0.00 525 526 3.10 157.55 0.00 526 527 14.20 92.55 -1.00 527 528 4.10 137.55 6.00 528 529 5.40 167.55 -3.00 529 530 6.00 97.55 1.00 530 531 17.00 80.55 -2.00 531 532 9.70 91.55 -2.00 532 533 9.00 88.55 -8.00 533 534 6.20 117.55 1.00 534 535 3.60 179.55 3.00 535 536 5.70 79.55 0.00 536 537 12.60 82.55 0.00 537 538 9.50 83.55 -2.00 538 539 9.00 84.55 -1.00 539 540 6.50 86.55 0.00 540 541 7.30 81.55 -1.00 541 542 5.10 79.55 -5.00 542 543 3.40 63.55 -61.00 543 544 4.30 92.55 -13.00 544 545 5.20 87.55 2.00 545 546 4.00 108.55 -5.00 546 547 11.80 81.55 0.00 547 548 6.30 69.55 -1.00 548 549 1.50 0.00 -90.00 549 550 10.60 80.55 0.00 215 551 2.00 0.00 -90.00 551 552 9.40 123.85 1.00 552 553 5.00 216.85 58.00 553 554 14.60 210.85 2.00 554 555 6.70 204.85 4.00 555 556 2.60 234.85 0.00 556 557 7.90 193.85 7.00 557 558 2.50 186.85 4.00 558 559 5.20 176.85 4.00 559 560 3.30 95.85 8.00 560 561 30.00 74.85 -1.00 561 562 8.20 68.85 -4.00 562 563 6.80 79.85 27.00 563 564 9.30 66.85 -4.00 564 565 7.00 71.85 -20.00 560 566 3.30 176.85 1.00 566 567 15.60 273.85 1.00 567 568 3.00 292.85 -5.00 568 569 22.20 271.85 -2.00 569 570 8.00 265.85 0.00 570 571 1.60 234.85 -9.00 571 572 21.90 272.85 -1.00 572 573 3.00 29.85 -5.00 573 574 29.00 327.85 -7.00 574 575 12.00 338.85 -8.00 575 576 5.40 338.85 -8.00 576 577 5.30 95.85 0.00 568 578 2.50 333.85 -7.00 578 579 4.80 1.85 -8.00 579 580 15.60 86.85 -5.00 552 581 8.15 60.85 8.00 581 582 17.25 78.85 2.00 582 583 11.70 82.85 4.00 583 584 4.22 160.85 -7.00 584 585 7.00 209.85 -8.00 585 586 3.50 162.85 30.00 586 587 1.60 146.85 46.00 587 588 3.00 126.85 -17.00 588 589 4.55 167.85 2.00 589 590 2.70 85.85 10.00 590 591 3.10 91.85 27.00 591 592 9.10 177.85 7.00 592 593 1.60 0.00 -90.00 591 594 11.68 352.85 6.00 594 595 10.50 31.85 -4.00 593 596 6.50 152.85 10.00 596 597 5.30 186.85 -28.00 597 598 5.30 78.85 17.00 598 599 5.30 159.85 22.00 598 600 2.00 0.00 -90.00 600 601 10.00 78.85 -5.00 601 602 10.80 195.85 1.00 602 603 1.30 0.00 -90.00 603 604 24.00 186.85 3.00 604 605 13.70 195.85 5.00 605 606 5.50 186.85 19.00 606 607 2.90 170.85 4.00 607 608 1.50 86.85 1.00 608 609 6.40 176.85 9.00 609 610 4.00 0.00 90.00 610 611 12.30 119.85 2.00 611 612 4.65 130.85 -2.00 612 613 0.90 61.85 0.00 613 614 8.90 105.85 10.00 614 615 13.50 171.85 4.00 610 616 9.50 268.85 -4.00 616 617 0.40 0.00 -90.00 610 618 5.55 352.85 -14.00 618 619 7.60 346.85 -15.00 619 620 4.90 1.85 -5.00 620 621 6.80 13.85 1.00 621 622 4.20 250.85 -3.00 622 623 4.55 6.85 1.00 623 624 3.35 233.85 8.00 624 625 1.40 278.85 8.00 552 626 15.40 28.35 2.00 626 627 16.20 46.85 -10.00 627 628 8.00 160.85 0.00 628 629 4.95 185.85 3.00 629 630 4.67 93.85 2.00 630 631 4.95 190.85 1.00 583 632 7.17 49.85 17.00 632 633 15.85 13.85 -11.00 633 634 5.13 339.85 -19.00 634 635 4.63 326.85 0.00 593 636 11.18 93.85 9.00 636 637 2.89 70.85 -7.00 637 638 4.90 194.85 -11.00 638 639 9.42 204.35 13.00 599 640 7.77 204.85 2.00 640 641 11.95 191.85 10.00 640 642 4.49 202.85 -35.00 642 643 18.00 195.85 0.00 643 644 2.60 150.85 20.00 644 645 6.90 10.85 37.00 644 646 8.60 197.85 0.00 646 647 7.75 195.85 10.00 647 648 7.25 182.85 21.00 648 649 0.90 113.85 -25.00 649 650 3.15 27.85 -29.00 650 651 3.34 345.85 -2.00 651 652 5.31 12.85 -7.00 652 653 3.04 342.85 -1.00 650 654 6.22 182.85 23.00 654 655 1.50 260.85 9.00 655 656 3.12 348.85 -11.00 654 657 1.94 68.85 -8.00 657 658 3.88 2.85 -24.00 658 659 2.86 227.85 10.00 658 660 5.00 8.85 -7.00 660 661 3.30 232.85 2.00 155 662 5.40 359.85 -22.00 662 663 19.47 349.35 -7.00 663 664 29.40 34.85 0.00 664 665 10.25 20.85 -3.00 665 666 6.50 29.85 -4.00 666 667 14.25 39.85 -11.00 667 668 11.67 25.85 -11.00 665 669 6.13 252.85 -16.00 669 670 7.30 263.85 0.00 670 671 2.65 4.85 -9.00 671 672 12.50 31.85 -12.00 155 673 17.20 254.15 -22.00 673 674 8.50 318.15 -24.00 674 675 2.70 11.15 -2.00 675 676 6.50 327.15 -5.00 676 677 5.00 38.15 -3.00 677 678 17.10 329.15 -5.00 678 679 3.30 49.15 -11.00 679 680 6.10 8.15 21.00 680 681 18.10 316.15 6.00 681 682 5.70 49.15 -31.00 682 683 2.90 88.15 0.00 683 684 17.90 47.15 -10.00 684 685 12.50 47.15 -15.00 *END RestOfCave *END 0114_Llueva CaveConverter_src/test/data/regression/2108_in.svx0000644000000000000000000000112112560565174021071 0ustar rootroot*begin 2108 ;surveyors: Peter Clewes, Tony Brocklebank ;name: Apprentice Cave ;date *CALIBRATE declination 2.42 ;declination is 2 41' (2.68) for 2004 changing by 8'E per year. ; 2.55 used for 2005 ; 2.42 used for 2006 ; 2.28 used for 2007 ; 2.15 used for 2008 *FIX 1 451617 4797926 233 *ENTRANCE 1 1 2 2.61 108 -40 2 3 3.09 60 -36 3 4 2.55 263 -12 4 5 2.05 235 -69 5 6 4.87 247 18 6 7 1.9 290 0 4 8 2.5 342 23 8 9 5.95 116 -12 9 10 4.12 174 27 10 11 5.15 149 19 11 12 4.3 303 14 12 13 5.7 66 -18 13 14 3.78 268 -12 14 15 4.86 323 -15 *EQUATE 3 15 *end 2108 CaveConverter_src/test/data/regression/0935_Dormouse_in.svx0000644000000000000000000000127212560565172022761 0ustar rootroot*begin 0935_Dormouse ;surveyors: Paul Fretwell, Caroline Fretwell ;name: Dormouse Cave ;date: 16/04/06 *CALIBRATE declination 2.42 ;declination is 2 41' (2.68) for 2004 changing by 8'E per year. ; 2.55 used for 2005 ; 2.42 used for 2006 ; 2.28 used for 2007 ; 2.15 used for 2008 ;LRUD data relates to stations 2-8 in the order of the data lines below ;From To Tape Comp Clino; L R U D *fix 1 451996 4800311 154 *entrance 1 1 2 6.29 78 4; 0 .60 .30 .20 3 2 1.82 324 24; .80 0 .60 .30 3 4 2.74 27 -41; .90 0 .50 .60 5 4 1.79 176 5; .20 .80 .60 .40 5 6 2.89 66 -38; .15 .50 1.20 .10 7 6 2.02 219 -5; .80 1.00 .80 .40 7 8 3.60 35 0; .50 1.10 1.20 .50 *end 0935_Dormouse CaveConverter_src/test/data/regression/3334_Roadworks_ref.svx0000644000000000000000000000106312114041272023260 0ustar rootroot*BEGIN 3334_Roadworks *CALIBRATE declination 2.08 0 0a 5.29 343.42 6.03 0 0b 4.19 324.08 2.91 0 1 2.19 352.68 29.32 1 2 2.62 21.69 1.71 2 2a 1.36 73.92 23.87 2 2b 2.06 83.37 23.14 2 2c 1.94 115.57 18.83 2 3 2.39 99.28 33.60 3 4 12.65 40.42 84.11 4 4a 13.83 57.47 -56.48 4 4b 13.13 46.59 -63.14 4 4c 3.81 37.18 -3.57 4 4d 7.72 57.44 0.96 4 4e 3.78 76.87 -7.99 4 4f 1.48 99.85 7.07 4 5 18.78 56.70 83.75 6 5 2.10 55.71 -71.56 7 6 2.11 140.78 -30.64 7 8 1.32 138.68 74.79 *END 3334_Roadworks CaveConverter_src/test/data/regression/0935_Dormouse_ss_ref.svx0000644000000000000000000000037212560565174023636 0ustar rootroot*BEGIN 0935_Dormouse *CALIBRATE declination 2.42 1 2 6.29 78.00 4.00 3 2 1.82 324.00 24.00 3 4 2.74 27.00 -41.00 5 4 1.79 176.00 5.00 5 6 2.89 66.00 -38.00 7 6 2.02 219.00 -5.00 7 8 3.60 35.00 0.00 *END 0935_Dormouse CaveConverter_src/test/footleg/0000755000000000000000000000000013036467354015622 5ustar rootrootCaveConverter_src/test/footleg/cavesurvey/0000755000000000000000000000000013036467354020016 5ustar rootrootCaveConverter_src/test/footleg/cavesurvey/data/0000755000000000000000000000000013036467354020727 5ustar rootrootCaveConverter_src/test/footleg/cavesurvey/data/model/0000755000000000000000000000000013036467354022027 5ustar rootrootCaveConverter_src/test/footleg/cavesurvey/data/model/CaveSurveyTest.java0000644000000000000000000002454513035001710025613 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.model; import static org.junit.Assert.*; import org.junit.Test; import footleg.cavesurvey.converter.CmdLineLogger; import footleg.cavesurvey.tools.TestHelper; /** * Unit test class for {@link footleg.cavesurvey.data.model.CaveSurvey} * * @author Footleg * @version 2017.01.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class CaveSurveyTest { @Test public void testSetGetSurveyName() { CaveSurvey survey = new CaveSurvey( new CmdLineLogger() ); String name = "test name"; survey.setSurveyName( name ); assertEquals("Name set for survey should match name retrieved for survey", name, survey.getSurveyName() ); } @Test public void testIsEmptySetRemove() { String seriesName1 = "A Survey Series"; String seriesName2 = "Another Series"; //Create series with a name SurveySeries series1 = new SurveySeries( seriesName1 ); SurveySeries series2 = new SurveySeries( seriesName2 ); CaveSurvey survey = new CaveSurvey( new CmdLineLogger() ); assertTrue("Survey created with no series should be empty", survey.isEmpty() ); //Add a series and check again survey.add( series1 ); assertFalse("Survey created with one series should not be empty", survey.isEmpty() ); //Add a second series and check again survey.add( series2 ); assertFalse("Survey created with two series should not be empty", survey.isEmpty() ); assertEquals("Count series in survey", 2, survey.size() ); //Remove a series survey.remove( 0 ); assertEquals("Count series in survey", 1, survey.size() ); assertEquals("First series should be series 2", seriesName2, survey.get(0).getSeriesName() ); assertFalse("Survey after one of two series removed should not be empty", survey.isEmpty() ); //Remove 2nd series survey.remove( 0 ); assertEquals("Count series in survey", 0, survey.size() ); assertTrue("Survey after two of two series removed should be empty", survey.isEmpty() ); } @Test public void testClear() { String seriesName1 = "A Survey Series"; String seriesName2 = "Another Series"; //Create series with a name SurveySeries series1 = new SurveySeries( seriesName1 ); SurveySeries series2 = new SurveySeries( seriesName2 ); CaveSurvey survey = new CaveSurvey( new CmdLineLogger() ); survey.add( series1 ); survey.add( series2 ); assertEquals("Count series in survey", 2, survey.size() ); assertFalse("Survey should not be empty", survey.isEmpty() ); //Clear survey and it should be empty survey.clear(); assertEquals("Count series in survey", 0, survey.size() ); assertTrue("Survey should be empty after clear.", survey.isEmpty() ); } @Test public void testGetChild() { CaveSurvey survey = new CaveSurvey( new CmdLineLogger() ); SurveySeries series = TestHelper.createLinearLeapfrogSurveyingSeriesWithSplays(); survey.add( series ); //Generate LRUD data from splays survey.generateLRUDfromSplays(); //4 splays, then next item in series should be leg 1-2 SurveyLeg leg1 = (SurveyLeg) survey.getChild( series, 4 ); assertEquals("First leg should be from 1 - 2", "1", leg1.getFromStn().getName() ); assertEquals("First leg should be from 1 - 2", "2", leg1.getToStn().getName() ); //4 splays, then next item in series should be leg 2-3 SurveyLeg leg2 = (SurveyLeg) survey.getChild( series, 9 ); assertEquals("First leg should be from 3 - 2", "3", leg2.getFromStn().getName() ); assertEquals("First leg should be from 3 - 2", "2", leg2.getToStn().getName() ); } /** * Test method for {@link footleg.cavesurvey.data.model.CaveSurvey#getChild(Object,int)}, * {@link footleg.cavesurvey.data.model.CaveSurvey#getChildCount(Object)}, * {@link footleg.cavesurvey.data.model.CaveSurvey#isLeaf(Object)}. * Tests that get child returns both the inner series and the legs for nested series. */ @Test public void testGetChild2() { CaveSurvey survey = new CaveSurvey( new CmdLineLogger() ); String series1Name = "First Series"; SurveySeries series1 = TestHelper.createSimpleForward3SurveyingSeriesWithNoSplays( 1 ); series1.setSeriesName( series1Name ); String series2Name = "2nd Series"; SurveySeries series2 = TestHelper.createSimpleForward3SurveyingSeriesWithNoSplays( 4 ); series2.setSeriesName( series2Name ); String series3Name = "Third Series"; SurveySeries series3 = TestHelper.createSimpleForward3SurveyingSeriesWithNoSplays( 7 ); series3.setSeriesName( series3Name ); //Put series 2 into series 1 as an inner series (giving mixed series with legs) series1.addSeries(series2); //Put series 3 into series 2 as an inner series (giving mixed series with legs) series2.addSeries(series3); //Add outer series to cave survey survey.add( series1 ); //Should be only one item in survey int rootChildCount = survey.getChildCount( survey ); assertEquals("Root should contain 1 child", 1, rootChildCount ); SurveySeries testRoot = (SurveySeries) survey.getChild(survey, 0); assertEquals("First item returned should be 1st series", series1Name, testRoot.getSeriesName() ); assertFalse("Series should not be a leaf", survey.isLeaf( testRoot ) ); //Should only be 4 items in series 1 int series1ChildCount = survey.getChildCount( series1 ); assertEquals("Series 1 should contain 4 children", 4, series1ChildCount ); //First item in series1 should be series2 SurveySeries testSeries1 = (SurveySeries) survey.getChild( series1, 0 ); assertEquals("First item returned should be 2nd series", series2Name, testSeries1.getSeriesName() ); assertFalse("Series should not be a leaf", survey.isLeaf( testSeries1 ) ); //2nd item in series1 should be leg 1-2 SurveyLeg leg1 = (SurveyLeg) survey.getChild( series1, 1 ); assertEquals("First leg in series 1 should be from 1", "1", leg1.getFromStn().getName() ); assertEquals("First leg in series 1 should be to 2", "2", leg1.getToStn().getName() ); assertTrue("Leg should be a leaf", survey.isLeaf( leg1 ) ); //3rd item in series1 should be leg 2-3 SurveyLeg leg2 = (SurveyLeg) survey.getChild( series1, 2 ); assertEquals("Second leg in series 1 should be from 2", "2", leg2.getFromStn().getName() ); assertEquals("Second leg in series 1 should be to 3", "3", leg2.getToStn().getName() ); assertTrue("Leg should be a leaf", survey.isLeaf( leg2 ) ); //4th item in series1 should be leg 3-4 SurveyLeg leg3 = (SurveyLeg) survey.getChild( series1, 3 ); assertEquals("Third leg in series 1 should be from 3", "3", leg3.getFromStn().getName() ); assertEquals("Third leg in series 1 should be to 4", "4", leg3.getToStn().getName() ); assertTrue("Leg should be a leaf", survey.isLeaf( leg3 ) ); //Should only be 4 items in series 2 int series2ChildCount = survey.getChildCount( series2 ); assertEquals("Series 2 should contain 4 children", 4, series2ChildCount ); //First item in series2 should be series3 SurveySeries testSeries2 = (SurveySeries) survey.getChild( series2, 0 ); assertEquals("First item returned should be 3rd series", series3Name, testSeries2.getSeriesName() ); assertFalse("Series should not be a leaf", survey.isLeaf( testSeries2 ) ); //2nd item in series2 should be leg 4-5 SurveyLeg leg4 = (SurveyLeg) survey.getChild( series2, 1 ); assertEquals("First leg in series 2 should be from 4", "4", leg4.getFromStn().getName() ); assertEquals("First leg in series 2 should be to 5", "5", leg4.getToStn().getName() ); assertTrue("Leg should be a leaf", survey.isLeaf( leg4 ) ); //3rd item in series2 should be leg 5-6 SurveyLeg leg5 = (SurveyLeg) survey.getChild( series2, 2 ); assertEquals("Second leg in series 2 should be from 5", "5", leg5.getFromStn().getName() ); assertEquals("Second leg in series 2 should be to 6", "6", leg5.getToStn().getName() ); assertTrue("Leg should be a leaf", survey.isLeaf( leg5 ) ); //4th item in series2 should be leg 6-7 SurveyLeg leg6 = (SurveyLeg) survey.getChild( series2, 3 ); assertEquals("Third leg in series 2 should be from 6", "6", leg6.getFromStn().getName() ); assertEquals("Third leg in series 2 should be to 7", "7", leg6.getToStn().getName() ); assertTrue("Leg should be a leaf", survey.isLeaf( leg6 ) ); //Should only be 3 items in series 3 int series3ChildCount = survey.getChildCount( series3 ); assertEquals("series 3 should contain 3 children", 3, series3ChildCount ); //1st item in series3 should be leg 7-8 SurveyLeg leg7 = (SurveyLeg) survey.getChild( series3, 0 ); assertEquals("First leg in series 3 should be from 7", "7", leg7.getFromStn().getName() ); assertEquals("First leg in series 3 should be to 8", "8", leg7.getToStn().getName() ); assertTrue("Leg should be a leaf", survey.isLeaf( leg7 ) ); //2nd item in series3 should be leg 8-9 SurveyLeg leg8 = (SurveyLeg) survey.getChild( series3, 1 ); assertEquals("Second leg in series 3 should be from 8", "8", leg8.getFromStn().getName() ); assertEquals("Second leg in series 3 should be to 9", "9", leg8.getToStn().getName() ); assertTrue("Leg should be a leaf", survey.isLeaf( leg8 ) ); //3rd item in series3 should be leg 9-10 SurveyLeg leg9 = (SurveyLeg) survey.getChild( series3, 2 ); assertEquals("Third leg in series 3 should be from 9", "9", leg9.getFromStn().getName() ); assertEquals("Third leg in series 3 should be to 10", "10", leg9.getToStn().getName() ); assertTrue("Leg should be a leaf", survey.isLeaf( leg9 ) ); } } CaveConverter_src/test/footleg/cavesurvey/data/model/SurveySeriesLrudTest.java0000644000000000000000000002252013034773510027022 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.model; import static org.junit.Assert.assertEquals; import java.util.List; import org.junit.Test; import footleg.cavesurvey.converter.CmdLineLogger; import footleg.cavesurvey.data.model.CaveSurvey; import footleg.cavesurvey.data.model.SurveySeries; import footleg.cavesurvey.data.writer.SurvexWriter; import footleg.cavesurvey.tools.TestHelper; /** * Unit test class which tests the generation of LRUD passage dimension data from splays. * Various test sets of data in a survey series are set up and tested. * * @author Footleg * @version 2017.01.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class SurveySeriesLrudTest { final String PASSAGE_DATA_HEADER = "*data passage station left right up down"; @Test public void testLrudGenerationsStandardLinearSeriesOfForwardShots() { SurveySeries series = TestHelper.createSimpleForward3SurveyingSeriesWith3Splays(); //Generate LRUD data from splays series.generateLRUDFromSplays( new CmdLineLogger() ); //Generate Survex format data List outputData = survexDataFromSeries(series); /* *data passage station left right up down 1 0.51 0.00 1.55 0.86 2 0.00 0.58 2.73 1.16 3 0.41 0.00 3.68 0.54 4 0.00 0.52 4.40 1.42 */ //Check LRUD data block from Survex Writer assertEquals("File Length check.", 34, outputData.size() ); int line = 27; assertEquals(PASSAGE_DATA_HEADER, outputData.get(line++) ); assertEquals("1 0.51 0.00 1.55 0.86", outputData.get(line++) ); assertEquals("2 0.00 0.58 2.73 1.16", outputData.get(line++) ); assertEquals("3 0.41 0.00 3.68 0.54", outputData.get(line++) ); assertEquals("4 0.00 0.52 4.40 1.42", outputData.get(line++) ); } @Test public void testLrudGenerationsStandardLinearSeriesOfBackwardShots() { SurveySeries series = TestHelper.createSimpleBackwardsSurveyingSeriesWithSplays(); //Generate LRUD data from splays series.generateLRUDFromSplays( new CmdLineLogger() ); //Generate Survex format data List outputData = survexDataFromSeries(series); /* *data passage station left right up down 4 0.52 0.00 4.40 1.42 3 0.00 0.41 3.68 0.54 2 0.58 0.00 2.73 1.16 1 0.00 0.51 1.55 0.86 */ //Check LRUD data block from Survex Writer assertEquals("File Length check.", 34, outputData.size() ); int line = 27; assertEquals(PASSAGE_DATA_HEADER, outputData.get(line++) ); assertEquals("4 0.52 0.00 4.40 1.42", outputData.get(line++) ); assertEquals("3 0.00 0.41 3.68 0.54", outputData.get(line++) ); assertEquals("2 0.58 0.00 2.73 1.16", outputData.get(line++) ); assertEquals("1 0.00 0.51 1.55 0.86", outputData.get(line++) ); } @Test public void testLrudGenerationsBranchedSeriesOfForwardShots() { SurveySeries series = TestHelper.createBranched222ForwardSurveyingSeriesWithSplays(); //Generate LRUD data from splays series.generateLRUDFromSplays( new CmdLineLogger() ); //Generate Survex format data List outputData = survexDataFromSeries(series); /* *data passage station left right up down 1 0.50 1.49 2.00 0.40 2 0.57 0.91 0.00 0.28 3 0.00 1.59 1.81 0.46 4 0.45 0.42 1.53 0.92 5 0.50 0.34 1.16 0.36 *data passage station left right up down 3 1.59 0.00 1.81 0.46 6 0.41 0.00 3.68 0.54 7 0.00 0.52 4.40 1.42 */ //Check LRUD data block from Survex Writer assertEquals("File Length check.", 60, outputData.size() ); int line = 48; assertEquals(PASSAGE_DATA_HEADER, outputData.get(line++) ); assertEquals("1 0.50 1.49 2.00 0.40", outputData.get(line++) ); assertEquals("2 0.57 0.91 0.00 0.28", outputData.get(line++) ); assertEquals("3 0.00 1.59 1.81 0.46", outputData.get(line++) ); assertEquals("4 0.45 0.42 1.53 0.92", outputData.get(line++) ); assertEquals("5 0.50 0.34 1.16 0.36", outputData.get(line++) ); assertEquals(PASSAGE_DATA_HEADER, outputData.get(line++) ); assertEquals("3 1.59 0.00 1.81 0.46", outputData.get(line++) ); assertEquals("6 0.41 0.00 3.68 0.54", outputData.get(line++) ); assertEquals("7 0.00 0.52 4.40 1.42", outputData.get(line++) ); } @Test public void testLrudGenerationsBranched122SeriesOfForwardShots() { SurveySeries series = TestHelper.createBranched122ForwardSurveyingSeriesWithSplays(); //Generate LRUD data from splays series.generateLRUDFromSplays( new CmdLineLogger() ); //Generate Survex format data List outputData = survexDataFromSeries(series); /* *data passage station left right up down 1 0.56 0.93 0.00 0.28 2 0.00 1.59 1.81 0.46 3 0.45 0.42 1.53 0.92 4 0.50 0.34 1.16 0.36 *data passage station left right up down 2 1.59 0.00 1.81 0.46 5 0.41 0.00 3.68 0.54 6 0.00 0.52 4.40 1.42 */ //Check LRUD data block from Survex Writer assertEquals("File Length check.", 52, outputData.size() ); int line = 41; assertEquals(PASSAGE_DATA_HEADER, outputData.get(line++) ); assertEquals("1 0.56 0.93 0.00 0.28", outputData.get(line++) ); assertEquals("2 0.00 1.59 1.81 0.46", outputData.get(line++) ); assertEquals("3 0.45 0.42 1.53 0.92", outputData.get(line++) ); assertEquals("4 0.50 0.34 1.16 0.36", outputData.get(line++) ); assertEquals(PASSAGE_DATA_HEADER, outputData.get(line++) ); assertEquals("2 1.59 0.00 1.81 0.46", outputData.get(line++) ); assertEquals("5 0.41 0.00 3.68 0.54", outputData.get(line++) ); assertEquals("6 0.00 0.52 4.40 1.42", outputData.get(line++) ); } @Test public void testLrudGenerationsLinearSeriesOfForwardShots4Splays() { SurveySeries series = TestHelper.createSimpleForward5SurveyingSeriesWith4Splays(); //Generate LRUD data from splays series.generateLRUDFromSplays( new CmdLineLogger() ); //Generate Survex format data List outputData = survexDataFromSeries(series); /* *data passage station left right up down 1 0.07 0.73 1.28 0.86 2 0.15 0.78 0.83 1.16 3 1.21 0.21 1.21 0.54 4 0.47 1.56 1.44 1.45 5 1.21 0.19 1.23 0.54 6 0.49 1.36 1.63 1.65 */ //Check LRUD data block from Survex Writer assertEquals("File Length check.", 54, outputData.size() ); int line = 45; assertEquals(PASSAGE_DATA_HEADER, outputData.get(line++) ); assertEquals("1 0.07 0.73 1.28 0.86", outputData.get(line++) ); assertEquals("2 0.15 0.78 0.83 1.16", outputData.get(line++) ); assertEquals("3 1.21 0.21 1.21 0.54", outputData.get(line++) ); assertEquals("4 0.47 1.56 1.44 1.45", outputData.get(line++) ); assertEquals("5 1.21 0.19 1.23 0.54", outputData.get(line++) ); assertEquals("6 0.49 1.36 1.63 1.65", outputData.get(line++) ); } @Test public void testLrudGenerationsLinearSeriesOfLeapfrogShots() { SurveySeries series = TestHelper.createLinearLeapfrogSurveyingSeriesWithSplays(); //Generate LRUD data from splays series.generateLRUDFromSplays( new CmdLineLogger() ); //Generate Survex format data List outputData = survexDataFromSeries(series); /* *data passage station left right up down 1 0.07 0.73 1.28 0.86 2 0.15 0.78 0.83 1.16 3 1.21 0.21 1.21 0.54 4 0.47 1.56 1.44 1.45 5 1.21 0.19 1.23 0.54 6 0.49 1.36 1.63 1.65 */ //Check LRUD data block from Survex Writer assertEquals("File Length check.", 54, outputData.size() ); int line = 45; assertEquals(PASSAGE_DATA_HEADER, outputData.get(line++) ); assertEquals("1 0.07 0.73 1.28 0.86", outputData.get(line++) ); assertEquals("2 0.15 0.78 0.83 1.16", outputData.get(line++) ); assertEquals("3 1.21 0.21 1.21 0.54", outputData.get(line++) ); assertEquals("4 0.47 1.56 1.44 1.45", outputData.get(line++) ); assertEquals("5 1.21 0.19 1.23 0.54", outputData.get(line++) ); assertEquals("6 0.49 1.36 1.63 1.65", outputData.get(line++) ); } private List survexDataFromSeries( SurveySeries series ) { CmdLineLogger logger = new CmdLineLogger(); //Declare structure to hold survey data CaveSurvey surveyData = new CaveSurvey(logger); surveyData.add(series); SurvexWriter writer = new SurvexWriter(logger); List outputData = writer.generateSurvexData(surveyData, SurvexWriter.SplayFormats.Flagged ); return outputData; } } CaveConverter_src/test/footleg/cavesurvey/data/model/SurveySeriesTest.java0000644000000000000000000006156613034510246026203 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.model; import static org.junit.Assert.*; import java.text.ParseException; import java.util.Date; import org.junit.Test; import footleg.cavesurvey.converter.CaveConverter.BearingUnit; import footleg.cavesurvey.converter.CaveConverter.GradientUnit; import footleg.cavesurvey.converter.CaveConverter.LengthUnit; import footleg.cavesurvey.data.model.SeriesLink; import footleg.cavesurvey.data.model.SurveySeries; import footleg.cavesurvey.data.model.SurveyStation; import footleg.cavesurvey.tools.TestHelper; import footleg.cavesurvey.tools.UtilityFunctions; /** * Unit test class for {@link footleg.cavesurvey.data.model.SurveySeries} * * @author Footleg * @version 2017.01.07 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class SurveySeriesTest { /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#constructor(String)}, * {@link footleg.cavesurvey.data.model.SurveyLeg#getSeriesName(String)}, * {@link footleg.cavesurvey.data.model.SurveyLeg#setSeriesName(String)}. */ @Test public void testSurveySeriesName() { String seriesName1 = "Test Series"; String seriesName2 = "Renamed Series"; //Create series with a name SurveySeries series = new SurveySeries( seriesName1 ); //Check name returned matches the name given assertTrue("Series name matches name given in contructor.", series.getSeriesName() == seriesName1 ); //Change the series name series.setSeriesName( seriesName2 ); //Check the name returned matches the updated name assertTrue("Series name matches the updated name.", series.getSeriesName() == seriesName2 ); } @Test public void testSeriesDateGetSet() { SurveySeries series = new SurveySeries( "Test" ); String dateString = "12/02/1982 01:15:53"; String dateFormat = "dd/MM/yyyy HH:mm:ss"; try { Date date = UtilityFunctions.stringToDate(dateString, dateFormat); series.setSurveyDate(date); } catch (ParseException e) { //Just print out error (will never happen with hard coded arguments used in method call above) e.printStackTrace(); } assertEquals("Date returned should match date set.", dateString, UtilityFunctions.dateToString(series.getSurveyDate(), dateFormat) ); } @Test public void testSeriesCommentSetSet() { SurveySeries series = new SurveySeries( "Test" ); String comment = "My surveying is perfect."; series.setComment(comment); assertEquals("Comment returned should match comment set.", comment, series.getComment() ); } @Test public void testSetStationIdFromName() { SurveySeries series = new SurveySeries( "Test" ); SurveyStation stn = new SurveyStation(0); //Set name which is numeric stn.setName("42"); series.setStationIdFromName( stn ); assertTrue("Station id matches name string as number 42.", stn.getId() == 42 ); stn.setName("text"); series.setStationIdFromName( stn ); assertTrue("Station id from non-numeric name should be negative.", stn.getId() == -1 ); } @Test public void testAddLegSurveyLeg() { SurveySeries series = new SurveySeries( "Test" ); double leg1Length = 1.0; double leg2Length = 2.0; double leg3Length = 3.0; assertEquals("Series leg count is zero when first created.", 0, series.legCount() ); series.addLeg( TestHelper.createTestLeg(1,2,leg1Length,58,-14) ); assertEquals("Series leg count is one when one leg added.", 1, series.legCount() ); //Add leg 3 next series.addLeg( TestHelper.createTestLeg(3,4,leg3Length,0,0) ); assertEquals("Series leg count is 2 when 2 legs added.", 2, series.legCount() ); assertEquals("First leg added is at the start.", series.getLegRaw(0).getLength( LengthUnit.Metres ), leg1Length, 1e-9 ); assertEquals("Last leg added is at the end.", series.getLegRaw(series.legCount() - 1).getLength( LengthUnit.Metres ), leg3Length, 1e-9 ); //Insert leg 2 into second position series.addLeg( TestHelper.createTestLeg(2,3,leg2Length,12,34), 1 ); assertEquals("Series leg count is 3 when 3 legs added.", 3, series.legCount() ); assertEquals("First leg added is at the start.", series.getLegRaw(0).getLength( LengthUnit.Metres ), leg1Length, 1e-9 ); assertEquals("Leg 3 is at the end.", series.getLegRaw(series.legCount() - 1).getLength( LengthUnit.Metres ), leg3Length, 1e-9 ); assertEquals("Leg 2 is in the middle.", series.getLegRaw(1).getLength( LengthUnit.Metres ), leg2Length, 1e-9 ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#getNumberToRepresentStnName(String)}. */ @Test public void testGetNumberToRepresentStnName() { SurveySeries series = new SurveySeries( "Test" ); //Add first station name to get a mapped number String stn1A = "1A"; int stn1 = series.getNumberToRepresentStnName(stn1A); //Check number is negative assertTrue("Mapped station number should be negative.", stn1 < 0 ); //Add a second station name String stn2A = "2A"; int stn2 = series.getNumberToRepresentStnName(stn2A); //Check number is negative assertTrue("Mapped station number should be negative.", stn2 < 0 ); //Check number is not the same as previous station number assertFalse("Mapped station numbers should be unique.", stn1 == stn2 ); //Add same mapped name again int stn1b = series.getNumberToRepresentStnName(stn1A); //Check same number was returned as last time this name was added assertTrue("Mapped station number should be the same when the same string is passed in a second time.", stn1 == stn1b ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#getMappedStnName(String)}. */ @Test public void testGetMappedStnName() { SurveySeries series = new SurveySeries( "Test" ); //Add first station name to get a mapped number String stn1A = "1A"; int stn1 = series.getNumberToRepresentStnName(stn1A); assertTrue("Station number should be negative for a numeric name.", stn1 < 0); //Add a second station name String stn2A = "2A"; int stn2 = series.getNumberToRepresentStnName(stn2A); assertTrue("Station number should be negative for a numeric name.", stn2 < 0); //Add a third station name with a name already used String stn3N = stn2A; int stn3 = series.getNumberToRepresentStnName(stn3N); assertEquals("Station number should be same as last time this name was used.", stn2, stn3); //Check name returned for first number assertEquals("Returned station name should match name specified for number.", stn1A, series.getMappedStnName( stn1 ) ); //Check name returned for 2nd number assertEquals("Returned station name should match name specified for number.", stn2A, series.getMappedStnName( stn2 ) ); //Check name returned for 3rd number assertEquals("Returned station name should match name specified for number.", stn3N, series.getMappedStnName( stn3 ) ); //Check that a positive numeric ID returns the name which is that number assertEquals("Station name should match number for positive ids", "123", series.getMappedStnName( 123 )); } @Test public void testCalibrationGettersSetters() { SurveySeries series = new SurveySeries( "Test" ); assertEquals("Tape calibration should be zero by default.", 0.0, series.getTapeCalibration( LengthUnit.Metres ), 1e-9); assertEquals("Compass calibration should be zero by default.", 0.0, series.getCompassCalibration( BearingUnit.Degrees ), 1e-9); assertEquals("Clino calibration should be zero by default.", 0.0, series.getClinoCalibration( GradientUnit.Degrees ), 1e-9); assertEquals("Declination should be zero by default.", 0.0, series.getDeclination(), 1e-9); double tapeCal = 1.45; double compassCal = 0.52; double clinoCal = -3.74; double decl = 2.56; series.setTapeCalibration( tapeCal, LengthUnit.Metres ); series.setCompassCalibration(compassCal, BearingUnit.Degrees); series.setClinoCalibration(clinoCal, GradientUnit.Degrees ); series.setDeclination(decl); assertEquals("Tape calibration should match value that was set.", tapeCal, series.getTapeCalibration( LengthUnit.Metres ), 1e-9); assertEquals("Compass calibration should match value that was set.", compassCal, series.getCompassCalibration( BearingUnit.Degrees ), 1e-9); assertEquals("Clino calibration should match value that was set.", clinoCal, series.getClinoCalibration( GradientUnit.Degrees ), 1e-9); assertEquals("Declination should match value that was set.", decl, series.getDeclination(), 1e-9); } @Test public void testAddLink() { SurveySeries series = new SurveySeries( "Test" ); String series1 = "ser1"; SurveyStation stn1 = new SurveyStation(1); String series2 = "ser2"; SurveyStation stn2 = new SurveyStation(2); assertEquals("Series link count is zero when first created.", 0, series.getLinks().size() ); series.addLink(series1, stn1, series2, stn2); assertEquals("Series link count is one when first link has been added.", 1, series.getLinks().size() ); SeriesLink link = series.getLinks().get(0); assertEquals("Link series 1 matches series set when adding link.", series1, link.getSeries1() ); assertEquals("Link station 1 matches station set when adding link.", stn1, link.getStn1() ); assertEquals("Link series 2 matches series set when adding link.", series2, link.getSeries2() ); assertEquals("Link station 2 matches station set when adding link.", stn2, link.getStn2() ); } @Test public void testAddSeries() { SurveySeries series = new SurveySeries( "Parent" ); assertEquals("Inner series count is zero when first created.", 0, series.innerSeriesCount() ); String innerSeries1 = "inner1"; SurveySeries inner1 = new SurveySeries( innerSeries1 ); series.addSeries(inner1); assertEquals("Inner series count is one when first inner series is added.", 1, series.innerSeriesCount() ); String innerSeries2 = "inner2"; SurveySeries inner2 = new SurveySeries( innerSeries2 ); series.addSeries(inner2); assertEquals("Inner series count is two when 2nd inner series is added.", 2, series.innerSeriesCount() ); String innerSeries3 = "inner3"; SurveySeries inner3 = new SurveySeries( innerSeries3 ); series.addSeries(inner3); assertEquals("Inner series count is 3 when 3rd inner series is added.", 3, series.innerSeriesCount() ); SurveySeries inner3rd = series.getInnerSeries(2); assertEquals("Inner series at index 2 is 3rd inner series added.", innerSeries3, inner3rd.getSeriesName() ); SurveySeries innerSearchMatch = series.findInnerSeriesByName(innerSeries2); assertEquals("Inner series matching name used to fin by name.", innerSeries2, innerSearchMatch.getSeriesName() ); } /* * TODO Test support for true vertical legs and true horizontal legs * * TODO Test that calibrations are applied somehow to inner series * * TODO Test that clino readings from 0 to 180 work with appropriate calibration */ @Test public void testGetLegCorrectedWithCalibrations() { SurveySeries series = new SurveySeries( "Test" ); double leg1Length = 1.0; double leg1Compass = 83.0; double leg1Clino = -2.0; double leg2Length = 2.0; double leg2Compass = 359.9; double leg2Clino = -90.0; double leg3Length = 3.0; double leg3Compass = 260.5; double leg3Clino = 0.0; //Add 3 test legs to series series.addLeg( TestHelper.createTestLeg(1,2,leg1Length,leg1Compass,leg1Clino) ); series.addLeg( TestHelper.createTestLeg(2,3,leg2Length,leg2Compass,leg2Clino) ); series.addLeg( TestHelper.createTestLeg(3,4,leg3Length,leg3Compass,leg3Clino) ); //Check lengths are the same as set when no calibration assertEquals("First leg length with no calibration set.", leg1Length, series.getLegCorrected(0).getLength( LengthUnit.Metres ), 1e-9 ); assertEquals("Second leg length with no calibration set.", leg2Length, series.getLegCorrected(1).getLength( LengthUnit.Metres ), 1e-9 ); assertEquals("Third leg length with no calibration set.", leg3Length, series.getLegCorrected(2).getLength( LengthUnit.Metres ), 1e-9 ); //Check compass bearings are the same as set when no calibration assertEquals("First leg bearing with no calibration set.", leg1Compass, series.getLegCorrected(0).getCompass(BearingUnit.Degrees), 1e-9 ); assertEquals("Second leg bearing with no calibration set.", leg2Compass, series.getLegCorrected(1).getCompass(BearingUnit.Degrees), 1e-9 ); assertEquals("Third leg bearing with no calibration set.", leg3Compass, series.getLegCorrected(2).getCompass(BearingUnit.Degrees), 1e-9 ); //Check clino readings are the same as set when no calibration assertEquals("First leg clino with no calibration set.", leg1Clino, series.getLegCorrected(0).getClino(GradientUnit.Degrees), 1e-9 ); assertEquals("Second leg clino with no calibration set.", leg2Clino, series.getLegCorrected(1).getClino(GradientUnit.Degrees), 1e-9 ); assertEquals("Third leg clino with no calibration set.", leg3Clino, series.getLegCorrected(2).getClino(GradientUnit.Degrees), 1e-9 ); //Set tape calibration double tapeCal = 0.1; //Tape is 10cm short series.setTapeCalibration( tapeCal, LengthUnit.Metres ); //Lengths recorded in legs are now 10cm too long, so corrected lengths should be shorter leg1Length -= tapeCal; leg2Length -= tapeCal; leg3Length -= tapeCal; //Check lengths are the same as set when no calibration assertEquals("First leg length with tape calibration set.", leg1Length, series.getLegCorrected(0).getLength( LengthUnit.Metres ), 1e-9 ); assertEquals("Second leg length with tape calibration set.", leg2Length, series.getLegCorrected(1).getLength( LengthUnit.Metres ), 1e-9 ); assertEquals("Third leg length with tape calibration set.", leg3Length, series.getLegCorrected(2).getLength( LengthUnit.Metres ), 1e-9 ); //Check compass bearings are the same as set when no calibration assertEquals("First leg bearing with tape calibration set.", leg1Compass, series.getLegCorrected(0).getCompass(BearingUnit.Degrees), 1e-9 ); assertEquals("Second leg bearing with tape calibration set.", leg2Compass, series.getLegCorrected(1).getCompass(BearingUnit.Degrees), 1e-9 ); assertEquals("Third leg bearing with tape calibration set.", leg3Compass, series.getLegCorrected(2).getCompass(BearingUnit.Degrees), 1e-9 ); //Check clino readings are the same as set when no calibration assertEquals("First leg clino with tape calibration set.", leg1Clino, series.getLegCorrected(0).getClino(GradientUnit.Degrees), 1e-9 ); assertEquals("Second leg clino with tape calibration set.", leg2Clino, series.getLegCorrected(1).getClino(GradientUnit.Degrees), 1e-9 ); assertEquals("Third leg clino with tape calibration set.", leg3Clino, series.getLegCorrected(2).getClino(GradientUnit.Degrees), 1e-9 ); //Set compass calibration double compassCal = 0.5; //Compass reads 0.5 for North series.setCompassCalibration(compassCal, BearingUnit.Degrees); //Bearing of 0.5 should be zero degrees, so subtract cal value from actuals leg1Compass -= compassCal; leg2Compass -= compassCal; leg3Compass -= compassCal; //Check lengths are the same as set when no calibration assertEquals("First leg length with tape and compass calibration set.", leg1Length, series.getLegCorrected(0).getLength( LengthUnit.Metres ), 1e-9 ); assertEquals("Second leg length with tape and compass calibration set.", leg2Length, series.getLegCorrected(1).getLength( LengthUnit.Metres ), 1e-9 ); assertEquals("Third leg length with tape and compass calibration set.", leg3Length, series.getLegCorrected(2).getLength( LengthUnit.Metres ), 1e-9 ); //Check compass bearings are the same as set when no calibration assertEquals("First leg bearing with tape and compass calibration set.", leg1Compass, series.getLegCorrected(0).getCompass(BearingUnit.Degrees), 1e-9 ); assertEquals("Second leg bearing with tape and compass calibration set.", leg2Compass, series.getLegCorrected(1).getCompass(BearingUnit.Degrees), 1e-9 ); assertEquals("Third leg bearing with tape and compass calibration set.", leg3Compass, series.getLegCorrected(2).getCompass(BearingUnit.Degrees), 1e-9 ); //Check clino readings are the same as set when no calibration assertEquals("First leg clino with tape and compass calibration set.", leg1Clino, series.getLegCorrected(0).getClino(GradientUnit.Degrees), 1e-9 ); assertEquals("Second leg clino with tape and compass calibration set.", leg2Clino, series.getLegCorrected(1).getClino(GradientUnit.Degrees), 1e-9 ); assertEquals("Third leg clino with tape and compass calibration set.", leg3Clino, series.getLegCorrected(2).getClino(GradientUnit.Degrees), 1e-9 ); //Set clino calibration double clinoCal = -1.2; //Clino reads -1.2 for level series.setClinoCalibration(clinoCal, GradientUnit.Degrees); //Bearing of 0.5 should be zero degrees, so subtract cal value from actuals leg1Clino -= clinoCal; leg2Clino -= clinoCal; leg3Clino -= clinoCal; //Check lengths are the same as set when no calibration assertEquals("First leg length with tape, compass and clino calibration set.", leg1Length, series.getLegCorrected(0).getLength( LengthUnit.Metres ), 1e-9 ); assertEquals("Second leg length with tape, compass and clino calibration set.", leg2Length, series.getLegCorrected(1).getLength( LengthUnit.Metres ), 1e-9 ); assertEquals("Third leg length with tape, compass and clino calibration set.", leg3Length, series.getLegCorrected(2).getLength( LengthUnit.Metres ), 1e-9 ); //Check compass bearings are the same as set when no calibration assertEquals("First leg bearing with tape, compass and clino calibration set.", leg1Compass, series.getLegCorrected(0).getCompass(BearingUnit.Degrees), 1e-9 ); assertEquals("Second leg bearing with tape, compass and clino calibration set.", leg2Compass, series.getLegCorrected(1).getCompass(BearingUnit.Degrees), 1e-9 ); assertEquals("Third leg bearing with tape, compass and clino calibration set.", leg3Compass, series.getLegCorrected(2).getCompass(BearingUnit.Degrees), 1e-9 ); //Check clino readings are the same as set when no calibration assertEquals("First leg clino with tape, compass and clino calibration set.", leg1Clino, series.getLegCorrected(0).getClino(GradientUnit.Degrees), 1e-9 ); assertEquals("Second leg clino with tape, compass and clino calibration set.", leg2Clino, series.getLegCorrected(1).getClino(GradientUnit.Degrees), 1e-9 ); assertEquals("Third leg clino with tape, compass and clino calibration set.", leg3Clino, series.getLegCorrected(2).getClino(GradientUnit.Degrees), 1e-9 ); //Set declination adjustment double declination = 2.36; // series.setDeclination(declination); //Bearing of 0.5 should be zero degrees, so subtract cal value from actuals leg1Compass -= declination; leg2Compass -= declination; leg3Compass -= declination; //Check lengths are the same as set when no calibration assertEquals("First leg length with all calibrations set plus declination.", leg1Length, series.getLegCorrected(0).getLength( LengthUnit.Metres ), 1e-9 ); assertEquals("Second leg length with all calibrations set plus declination.", leg2Length, series.getLegCorrected(1).getLength( LengthUnit.Metres ), 1e-9 ); assertEquals("Third leg length with all calibrations set plus declination.", leg3Length, series.getLegCorrected(2).getLength( LengthUnit.Metres ), 1e-9 ); //Check compass bearings are the same as set when no calibration assertEquals("First leg bearing with all calibrations set plus declination.", leg1Compass, series.getLegCorrected(0).getCompass(BearingUnit.Degrees), 1e-9 ); assertEquals("Second leg bearing with all calibrations set plus declination.", leg2Compass, series.getLegCorrected(1).getCompass(BearingUnit.Degrees), 1e-9 ); assertEquals("Third leg bearing with all calibrations set plus declination.", leg3Compass, series.getLegCorrected(2).getCompass(BearingUnit.Degrees), 1e-9 ); //Check clino readings are the same as set when no calibration assertEquals("First leg clino with all calibrations set plus declination.", leg1Clino, series.getLegCorrected(0).getClino(GradientUnit.Degrees), 1e-9 ); assertEquals("Second leg clino with all calibrations set plus declination.", leg2Clino, series.getLegCorrected(1).getClino(GradientUnit.Degrees), 1e-9 ); assertEquals("Third leg clino with all calibrations set plus declination.", leg3Clino, series.getLegCorrected(2).getClino(GradientUnit.Degrees), 1e-9 ); } /* * On Vulcain topofil the clino is from 0 to 180 and * 0 = +90 * 90 = 0 * 180 = -90 * * measured value = (read value - zero error) x scale * calibrate clino 90 -1 * */ @Test public void testClinoCalibrationsForTopofil() { SurveySeries series = new SurveySeries( "Test" ); //Set clino calibration for topofil series.setClinoCalibration(90.0, GradientUnit.Degrees, -1); //Clino of 0 should be +90 degrees double clinoReading = 0.0; double clinoCorrected = 90.0; series.addLeg( TestHelper.createTestLeg(1,2,1.1,158.0,clinoReading) ); assertEquals("Clino corrected for topofil data.", clinoCorrected, series.getLegCorrected(0).getClino(GradientUnit.Degrees), 1e-9 ); //Clino of 90 should be 0 degrees clinoReading = 90.0; clinoCorrected = 0.0; series.addLeg( TestHelper.createTestLeg(2,3,2.2,274.0,clinoReading) ); assertEquals("Clino corrected for topofil data.", clinoCorrected, series.getLegCorrected(1).getClino(GradientUnit.Degrees), 1e-9 ); //Clino of 180 should be -90 degrees clinoReading = 180.0; clinoCorrected = -90.0; series.addLeg( TestHelper.createTestLeg(3,4,3.3,64.0,clinoReading) ); assertEquals("Clino corrected for topofil data.", clinoCorrected, series.getLegCorrected(2).getClino(GradientUnit.Degrees), 1e-9 ); } /* Reverse series method is no longer used, so is commented out in series class @Test public void testReverseSeries() { SurveySeries series = new SurveySeries( "Test" ); double tape1 = 1.0; double tape2 = 2.0; double tape3 = 3.0; double tape4 = 4.0; series.addLeg( TestHelper.createTestLeg( 1, 2, tape1, 10, 10 ) ); series.addLeg( TestHelper.createTestLeg( 2, 3, tape2, 100, 20 ) ); series.addLeg( TestHelper.createTestLeg( 3, 4, tape3, 190, 0 ) ); series.addLeg( TestHelper.createTestLeg( 4, 5, tape4, 340, -5 ) ); series.reverseSeries(); SurveyLeg leg = series.getLegRaw(0); assertEquals("From stn of first leg", 5, leg.getFromStn().getId() ); assertEquals("To stn of first leg", 4, leg.getToStn().getId() ); assertEquals("Length of first leg", tape4, leg.getLength( LengthUnit.Metres ), 1e-9 ); assertEquals("Compass for first leg", 160, leg.getCompass(BearingUnit.Degrees), 1e-9 ); assertEquals("Clino for first leg", 5, leg.getClino(GradientUnit.Degrees), 1e-9 ); leg = series.getLegRaw(1); assertEquals("From stn of 2nd leg", 4, leg.getFromStn().getId() ); assertEquals("To stn of 2nd leg", 3, leg.getToStn().getId() ); assertEquals("Length of 2nd leg", tape3, leg.getLength( LengthUnit.Metres ), 1e-9 ); assertEquals("Compass for 2nd leg", 10, leg.getCompass(BearingUnit.Degrees), 1e-9 ); assertEquals("Clino for 2nd leg", 0, leg.getClino(GradientUnit.Degrees), 1e-9 ); leg = series.getLegRaw(2); assertEquals("From stn of 3rd leg", 3, leg.getFromStn().getId() ); assertEquals("To stn of 3rd leg", 2, leg.getToStn().getId() ); assertEquals("Length of 3rd leg", tape2, leg.getLength( LengthUnit.Metres ), 1e-9 ); assertEquals("Compass for 3rd leg", 280, leg.getCompass(BearingUnit.Degrees), 1e-9 ); assertEquals("Clino for 3rd leg", -20, leg.getClino(GradientUnit.Degrees), 1e-9 ); leg = series.getLegRaw(3); assertEquals("From stn of 4th leg", 2, leg.getFromStn().getId() ); assertEquals("To stn of 4th leg", 1, leg.getToStn().getId() ); assertEquals("Length of 4th leg", tape1, leg.getLength( LengthUnit.Metres ), 1e-9 ); assertEquals("Compass for 4th leg", 190, leg.getCompass(BearingUnit.Degrees), 1e-9 ); assertEquals("Clino for 4th leg", -10, leg.getClino(GradientUnit.Degrees), 1e-9 ); } */ } CaveConverter_src/test/footleg/cavesurvey/data/model/SurveyLegTest.java0000644000000000000000000005736013034253706025462 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.model; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import org.junit.Test; import footleg.cavesurvey.converter.CaveConverter.BearingUnit; import footleg.cavesurvey.converter.CaveConverter.GradientUnit; import footleg.cavesurvey.converter.CaveConverter.LengthUnit; import footleg.cavesurvey.data.model.SurveyLeg; import footleg.cavesurvey.data.model.SurveyStation; /** * Unit test class for {@link footleg.cavesurvey.data.model.SurveyLeg} * * @author Footleg * @version 2017.01.07 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class SurveyLegTest { // double easting = 4800456.0; // double northing = 4800789.75; // double altitude = 8900.45; /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#setFromStn(int)}. */ @Test public void testSetFromStn() { SurveyLeg leg = new SurveyLeg(); int stnID = 543; SurveyStation stn = new SurveyStation( stnID ); leg.setFromStn(stn); assertEquals( stnID, leg.getFromStn().getId() ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#setToStn(int)}. */ @Test public void testSetToStn() { SurveyLeg leg = new SurveyLeg(); int stnID = 12345; SurveyStation stn = new SurveyStation( stnID ); leg.setToStn(stn); assertEquals( stnID, leg.getToStn().getId() ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#setLength(double)}. */ @Test public void testSetLength() { SurveyLeg leg = new SurveyLeg(); double length = 123.45; leg.setLength( length, LengthUnit.Metres ); assertEquals( length, leg.getLength( LengthUnit.Metres ), 0.0 ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#setCompass(double)}. */ @Test public void testSetCompass() { SurveyLeg leg = new SurveyLeg(); double compass = 123.45; leg.setCompass( compass, BearingUnit.Degrees ); assertEquals( compass, leg.getCompass(BearingUnit.Degrees), 0.0 ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#setClino(double)}. */ @Test public void testSetClino() { SurveyLeg leg = new SurveyLeg(); double clino = 123.45; leg.setClino( clino, GradientUnit.Degrees ); assertEquals( clino, leg.getClino(GradientUnit.Degrees), 0.0 ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#setLeft(double)}. */ @Test public void testSetLeft() { SurveyLeg leg = new SurveyLeg(); double length = 0.45; leg.setLeft( length, LengthUnit.Metres ); assertEquals( length, leg.getLeft( LengthUnit.Metres ), 0.0 ); length = 0.0; leg.setLeft( length, LengthUnit.Metres ); assertEquals( length, leg.getLeft( LengthUnit.Metres ), 0.0 ); //TODO: Should error length = -0.1; leg.setLeft( length, LengthUnit.Metres ); assertEquals( length, leg.getLeft( LengthUnit.Metres ), 0.0 ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#setRight(double)}. */ @Test public void testSetRight() { SurveyLeg leg = new SurveyLeg(); double length = 0.45; leg.setRight( length, LengthUnit.Metres ); assertEquals( length, leg.getRight( LengthUnit.Metres ), 0.0 ); length = 0.0; leg.setRight( length, LengthUnit.Metres ); assertEquals( length, leg.getRight( LengthUnit.Metres ), 0.0 ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#setUp(double)}. */ @Test public void testSetUp() { SurveyLeg leg = new SurveyLeg(); double length = 0.45; leg.setUp( length, LengthUnit.Metres ); assertEquals( length, leg.getUp( LengthUnit.Metres ), 0.0 ); length = 0.0; leg.setUp( length, LengthUnit.Metres ); assertEquals( length, leg.getUp( LengthUnit.Metres ), 0.0 ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#setDown(double)}. */ @Test public void testSetDown() { SurveyLeg leg = new SurveyLeg(); double length = 0.45; leg.setDown( length, LengthUnit.Metres ); assertEquals( length, leg.getDown( LengthUnit.Metres ), 0.0 ); length = 0.0; leg.setDown( length, LengthUnit.Metres ); assertEquals( length, leg.getDown( LengthUnit.Metres ), 0.0 ); } // /** // * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#setFixedStn(boolean, double, double, double)}, // * {@link footleg.cavesurvey.data.model.SurveyLeg#clearFixedStn()} and associated getters. // */ // @Test // public void testSetFixedStnFrom() { // SurveyLeg leg = new SurveyLeg(); // // leg.setFixedStn(true, easting, northing, altitude); // // assertEquals( easting, leg.getEasting(), 0.0 ); // assertEquals( northing, leg.getNorthing(), 0.0 ); // assertEquals( altitude, leg.getAltitude(), 0.0 ); // assertTrue( leg.hasFixedStn() ); // assertTrue( leg.isFromStnFixed() ); // assertTrue( leg.isToStnFixed() == false ); // // leg.clearFixedStn(); // assertTrue( leg.hasFixedStn() == false ); // assertTrue( leg.isFromStnFixed() == false ); // assertTrue( leg.isToStnFixed() == false ); // } // // /** // * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#setFixedStn(boolean, double, double, double)}, // * {@link footleg.cavesurvey.data.model.SurveyLeg#clearFixedStn()} and associated getters. // */ // @Test // public void testSetFixedStnTo() { // SurveyLeg leg = new SurveyLeg(); // // leg.setFixedStn(false, easting, northing, altitude); // // assertEquals( easting, leg.getEasting(), 0.0 ); // assertEquals( northing, leg.getNorthing(), 0.0 ); // assertEquals( altitude, leg.getAltitude(), 0.0 ); // assertTrue( leg.hasFixedStn() ); // assertTrue( leg.isFromStnFixed() == false ); // assertTrue( leg.isToStnFixed() ); // // leg.clearFixedStn(); // assertTrue( leg.hasFixedStn() == false ); // assertTrue( leg.isFromStnFixed() == false ); // assertTrue( leg.isToStnFixed() == false ); // } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#setSplay(boolean)}. */ @Test public void testSetSplay() { SurveyLeg leg = new SurveyLeg(); leg.setSplay( true ); assertTrue( leg.isSplay() ); leg.setSplay( false ); assertTrue( leg.isSplay() == false ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#compareTo(footleg.cavesurvey.data.model.SurveyLeg)}. */ @Test public void testCompareTo() { SurveyLeg leg1 = new SurveyLeg(); SurveyLeg leg2 = new SurveyLeg(); SurveyLeg leg3 = new SurveyLeg(); SurveyLeg leg4 = new SurveyLeg(); int stnID1 = 1; int stnID2 = 2; int stnID3 = 3; int stnID4 = 4; SurveyStation stn1 = new SurveyStation(stnID1); SurveyStation stn2 = new SurveyStation(stnID2); SurveyStation stn3 = new SurveyStation(stnID3); SurveyStation stn4 = new SurveyStation(stnID4); leg1.setFromStn(stn1); leg1.setToStn(stn2); leg2.setFromStn(stn2); leg2.setToStn(stn3); leg3.setFromStn(stn2); leg3.setToStn(stn4); leg4.setFromStn(stn2); leg4.setToStn(stn1); assertTrue( leg1.compareTo(leg2) < 0 ); assertTrue( leg2.compareTo(leg1) > 0 ); assertTrue( leg2.compareTo(leg3) < 0 ); assertTrue( leg3.compareTo(leg2) > 0 ); assertTrue( leg2.compareTo(leg4) > 0 ); assertTrue( leg4.compareTo(leg2) < 0 ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#clone()}. */ @Test public void testCloneNormalLeg() { SurveyLeg leg = new SurveyLeg(); int fromStnId = 123; int toStnId = 456; SurveyStation fromStn = new SurveyStation( fromStnId ); SurveyStation toStn = new SurveyStation( toStnId ); double length = 123.45; double compass = 123.45; double clino = 123.45; double left = 1.2; double right = 0.1; double up = 0.23; double down = 0.92; boolean splay = true; boolean duplicate = true; boolean surface = true; //Create leg fully populated with test data leg.setFromStn(fromStn); leg.setToStn(toStn); leg.setLength( length, LengthUnit.Metres ); leg.setCompass( compass, BearingUnit.Degrees ); leg.setClino( clino, GradientUnit.Degrees ); leg.setLeft( left, LengthUnit.Metres ); leg.setRight( right, LengthUnit.Metres ); leg.setUp( up, LengthUnit.Metres ); leg.setDown( down, LengthUnit.Metres ); leg.setSplay(splay); leg.setDuplicate(duplicate); leg.setSurface(surface); boolean nosurvey = leg.isNosurvey(); //Clone leg SurveyLeg legClone = leg.clone(); //Set clone has the correct data values assertEquals( fromStnId, legClone.getFromStn().getId() ); assertEquals( toStnId, legClone.getToStn().getId() ); assertEquals( length, legClone.getLength( LengthUnit.Metres ), 0.0 ); assertEquals( compass, legClone.getCompass(BearingUnit.Degrees), 0.0 ); assertEquals( clino, legClone.getClino(GradientUnit.Degrees), 0.0 ); assertEquals( left, legClone.getLeft( LengthUnit.Metres ), 0.0 ); assertEquals( right, legClone.getRight( LengthUnit.Metres ), 0.0 ); assertEquals( up, legClone.getUp( LengthUnit.Metres ), 0.0 ); assertEquals( down, legClone.getDown( LengthUnit.Metres ), 0.0 ); assertTrue( legClone.isSplay() == splay ); assertTrue( legClone.isDuplicate() == duplicate ); assertTrue( legClone.isSurface() == surface ); assertTrue( legClone.isDiving() == false ); assertTrue( legClone.isDepthChangeLeg() == false ); assertTrue( legClone.isNosurvey() == nosurvey ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#clone()}. */ @Test public void testCloneNosurveyLeg() { SurveyLeg leg = new SurveyLeg(); int fromStnId = 222; int toStnId = 333; SurveyStation fromStn = new SurveyStation( fromStnId ); SurveyStation toStn = new SurveyStation( toStnId ); boolean splay = false; boolean duplicate = false; boolean surface = false; boolean nosurvey = true; //Create leg fully populated with test data leg.setFromStn(fromStn); leg.setToStn(toStn); leg.setNosurvey(nosurvey); leg.setSplay(splay); leg.setDuplicate(duplicate); leg.setSurface(surface); //Clone leg SurveyLeg legClone = leg.clone(); //Set clone has the correct data values assertEquals( fromStnId, legClone.getFromStn().getId() ); assertEquals( toStnId, legClone.getToStn().getId() ); assertTrue( legClone.isSplay() == splay ); assertTrue( legClone.isDuplicate() == duplicate ); assertTrue( legClone.isSurface() == surface ); assertTrue( legClone.isDiving() == false ); assertTrue( legClone.isDepthChangeLeg() == false ); assertTrue( legClone.isNosurvey() == nosurvey ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#clone()}. */ @Test public void testCloneDivingTrueDepthsLeg() { SurveyLeg leg = new SurveyLeg(); int fromStnId = 876; int toStnId = 543; SurveyStation fromStn = new SurveyStation( fromStnId ); SurveyStation toStn = new SurveyStation( toStnId ); double length = 9.87; double compass = 6.54; double fromDepth = 3.21; double toDepth = 4.56; double left = 9.8; double right = 7.0; double up = 6.5; double down = 4; boolean splay = false; boolean duplicate = false; boolean surface = false; //Create leg fully populated with test data leg.setFromStn(fromStn); leg.setToStn(toStn); leg.setLength( length, LengthUnit.Metres ); leg.setCompass( compass, BearingUnit.Degrees ); leg.setDepths( fromDepth, toDepth, LengthUnit.Metres ); leg.setLeft( left, LengthUnit.Metres ); leg.setRight( right, LengthUnit.Metres ); leg.setUp( up, LengthUnit.Metres ); leg.setDown( down, LengthUnit.Metres ); leg.setSplay(splay); leg.setDuplicate(duplicate); leg.setSurface(surface); //Clone leg SurveyLeg legClone = leg.clone(); //Set clone has the correct data values assertEquals( fromStnId, legClone.getFromStn().getId() ); assertEquals( toStnId, legClone.getToStn().getId() ); assertEquals( length, legClone.getLength( LengthUnit.Metres ), 0.0 ); assertEquals( compass, legClone.getCompass(BearingUnit.Degrees), 0.0 ); assertEquals( fromDepth, legClone.getFromDepth( LengthUnit.Metres ), 0.0 ); assertEquals( toDepth, legClone.getToDepth( LengthUnit.Metres ), 0.0 ); assertEquals( left, legClone.getLeft( LengthUnit.Metres ), 0.0 ); assertEquals( right, legClone.getRight( LengthUnit.Metres ), 0.0 ); assertEquals( up, legClone.getUp( LengthUnit.Metres ), 0.0 ); assertEquals( down, legClone.getDown( LengthUnit.Metres ), 0.0 ); assertTrue( legClone.isSplay() == splay ); assertTrue( legClone.isDuplicate() == duplicate ); assertTrue( legClone.isSurface() == surface ); assertTrue( legClone.isDiving() == true ); assertTrue( legClone.isDepthChangeLeg() == false ); assertTrue( legClone.isNosurvey() == false ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#clone()}. */ @Test public void testCloneDivingDepthChangeLeg() { SurveyLeg leg = new SurveyLeg(); int fromStnId = 77; int toStnId = 66; SurveyStation fromStn = new SurveyStation( fromStnId ); SurveyStation toStn = new SurveyStation( toStnId ); double length = 1.1; double compass = 2.2; double depthChange = 3.3; double left = 0.5; double right = 0.6; double up = 0.7; double down = 0; boolean splay = false; boolean duplicate = false; boolean surface = false; //Create leg fully populated with test data leg.setFromStn(fromStn); leg.setToStn(toStn); leg.setLength( length, LengthUnit.Metres ); leg.setCompass( compass, BearingUnit.Degrees ); leg.setDepthChange( depthChange, LengthUnit.Metres ); leg.setLeft( left, LengthUnit.Metres ); leg.setRight( right, LengthUnit.Metres ); leg.setUp( up, LengthUnit.Metres ); leg.setDown( down, LengthUnit.Metres ); leg.setSplay(splay); leg.setDuplicate(duplicate); leg.setSurface(surface); //Clone leg SurveyLeg legClone = leg.clone(); //Set clone has the correct data values assertEquals( fromStnId, legClone.getFromStn().getId() ); assertEquals( toStnId, legClone.getToStn().getId() ); assertEquals( length, legClone.getLength( LengthUnit.Metres ), 0.0 ); assertEquals( compass, legClone.getCompass(BearingUnit.Degrees), 0.0 ); assertEquals( depthChange, legClone.getDepthChange( LengthUnit.Metres ), 0.0 ); assertEquals( left, legClone.getLeft( LengthUnit.Metres ), 0.0 ); assertEquals( right, legClone.getRight( LengthUnit.Metres ), 0.0 ); assertEquals( up, legClone.getUp( LengthUnit.Metres ), 0.0 ); assertEquals( down, legClone.getDown( LengthUnit.Metres ), 0.0 ); assertTrue( legClone.isSplay() == splay ); assertTrue( legClone.isDuplicate() == duplicate ); assertTrue( legClone.isSurface() == surface ); assertTrue( legClone.isDiving() == true ); assertTrue( legClone.isDepthChangeLeg() == true ); assertTrue( legClone.isNosurvey() == false ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg}. */ @Test public void testReadDefaultValues() { SurveyLeg leg = new SurveyLeg(); int fromStnId = 543; SurveyStation stn = new SurveyStation( fromStnId ); leg.setFromStn(stn); //Test default values can be read without errors assertEquals( fromStnId, leg.getFromStn().getId() ); assertTrue( leg.getToStn() == null ); assertEquals( -1.0, leg.getLength( LengthUnit.Metres ), 0.0 ); assertEquals( -1.0, leg.getCompass(BearingUnit.Degrees), 0.0 ); assertEquals( -99.0, leg.getClino(GradientUnit.Degrees), 0.0 ); assertEquals( 0.0, leg.getLeft( LengthUnit.Metres ), 0.0 ); assertEquals( 0.0, leg.getRight( LengthUnit.Metres ), 0.0 ); assertEquals( 0.0, leg.getUp( LengthUnit.Metres ), 0.0 ); assertEquals( 0.0, leg.getDown( LengthUnit.Metres ), 0.0 ); assertTrue( leg.isSplay() == false ); assertTrue( leg.isDuplicate() == false ); assertTrue( leg.isSurface() == false ); assertTrue( leg.isDiving() == false ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#reverseDirection()}. */ @Test public void testReverseLeg() { SurveyLeg leg = new SurveyLeg(); int fromStnId = 123; int toStnId = 456; SurveyStation fromStn = new SurveyStation( fromStnId ); SurveyStation toStn = new SurveyStation( toStnId ); double length = 123.45; double compass = 123.45; double clino = 123.45; double left = 1.2; double right = 0.1; double up = 0.23; double down = 0.92; boolean splay = true; boolean duplicate = true; boolean surface = true; //Create leg fully populated with test data leg.setFromStn(fromStn); leg.setToStn(toStn); leg.setLength( length, LengthUnit.Metres ); leg.setCompass( compass, BearingUnit.Degrees ); leg.setClino( clino, GradientUnit.Degrees ); leg.setLeft( left, LengthUnit.Metres ); leg.setRight( right, LengthUnit.Metres ); leg.setUp( up, LengthUnit.Metres ); leg.setDown( down, LengthUnit.Metres ); leg.setSplay(splay); leg.setDuplicate(duplicate); leg.setSurface(surface); leg.reverseDirection(); //Test default values can be read without errors assertEquals( toStnId, leg.getFromStn().getId() ); assertEquals( fromStnId, leg.getToStn().getId() ); assertEquals( length, leg.getLength( LengthUnit.Metres ), 1e-8 ); assertEquals( compass+180, leg.getCompass(BearingUnit.Degrees), 1e-8 ); assertEquals( -clino, leg.getClino(GradientUnit.Degrees), 1e-8 ); assertEquals( left, leg.getLeft( LengthUnit.Metres ), 1e-8 ); assertEquals( right, leg.getRight( LengthUnit.Metres ), 1e-8 ); assertEquals( up, leg.getUp( LengthUnit.Metres ), 1e-8 ); assertEquals( down, leg.getDown( LengthUnit.Metres ), 1e-8 ); assertTrue( leg.isSplay() == splay ); assertTrue( leg.isDuplicate() == duplicate ); assertTrue( leg.isSurface() == surface ); assertTrue( leg.isDiving() == false ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#reverseDirection()}. */ @Test public void testReverseDivingTrueDepthsLeg() { SurveyLeg leg = new SurveyLeg(); int fromStnId = 77; int toStnId = 66; SurveyStation fromStn = new SurveyStation( fromStnId ); SurveyStation toStn = new SurveyStation( toStnId ); double length = 1.1; double compass = 220.2; double fromDepth = 9.7; double toDepth = 7.89; double left = 0.0; double right = 0.60; double up = 0.0; double down = 0.99; boolean splay = false; boolean duplicate = true; boolean surface = false; //Create leg fully populated with test data leg.setFromStn(fromStn); leg.setToStn(toStn); leg.setLength( length, LengthUnit.Metres ); leg.setCompass( compass, BearingUnit.Degrees ); leg.setDepths( fromDepth, toDepth, LengthUnit.Metres ); leg.setLeft( left, LengthUnit.Metres ); leg.setRight( right, LengthUnit.Metres ); leg.setUp( up, LengthUnit.Metres ); leg.setDown( down, LengthUnit.Metres ); leg.setSplay(splay); leg.setDuplicate(duplicate); leg.setSurface(surface); leg.reverseDirection(); //Test default values can be read without errors assertEquals( toStnId, leg.getFromStn().getId() ); assertEquals( fromStnId, leg.getToStn().getId() ); assertEquals( length, leg.getLength( LengthUnit.Metres ), 1e-8 ); assertEquals( compass-180, leg.getCompass(BearingUnit.Degrees), 1e-8 ); assertEquals( toDepth, leg.getFromDepth( LengthUnit.Metres ), 0.0 ); assertEquals( fromDepth, leg.getToDepth( LengthUnit.Metres ), 0.0 ); assertEquals( left, leg.getLeft( LengthUnit.Metres ), 1e-8 ); assertEquals( right, leg.getRight( LengthUnit.Metres ), 1e-8 ); assertEquals( up, leg.getUp( LengthUnit.Metres ), 1e-8 ); assertEquals( down, leg.getDown( LengthUnit.Metres ), 1e-8 ); assertTrue( leg.isSplay() == splay ); assertTrue( leg.isDuplicate() == duplicate ); assertTrue( leg.isSurface() == surface ); assertTrue( leg.isDiving() == true ); assertTrue( leg.isDepthChangeLeg() == false ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg#reverseDirection()}. */ @Test public void testReverseDivingDepthChangeLeg() { SurveyLeg leg = new SurveyLeg(); int fromStnId = 77; int toStnId = 66; SurveyStation fromStn = new SurveyStation( fromStnId ); SurveyStation toStn = new SurveyStation( toStnId ); double length = 1.1; double compass = 220.2; double depthChange = 3.3; double left = 0.5; double right = 0.6; double up = 0.7; double down = 0; boolean splay = false; boolean duplicate = false; boolean surface = false; //Create leg fully populated with test data leg.setFromStn(fromStn); leg.setToStn(toStn); leg.setLength( length, LengthUnit.Metres ); leg.setCompass( compass, BearingUnit.Degrees ); leg.setDepthChange( depthChange, LengthUnit.Metres ); leg.setLeft( left, LengthUnit.Metres ); leg.setRight( right, LengthUnit.Metres ); leg.setUp( up, LengthUnit.Metres ); leg.setDown( down, LengthUnit.Metres ); leg.setSplay(splay); leg.setDuplicate(duplicate); leg.setSurface(surface); leg.reverseDirection(); //Test default values can be read without errors assertEquals( toStnId, leg.getFromStn().getId() ); assertEquals( fromStnId, leg.getToStn().getId() ); assertEquals( length, leg.getLength( LengthUnit.Metres ), 1e-8 ); assertEquals( compass-180, leg.getCompass(BearingUnit.Degrees), 1e-8 ); assertEquals( -depthChange, leg.getDepthChange( LengthUnit.Metres ), 1e-8 ); assertEquals( left, leg.getLeft( LengthUnit.Metres ), 1e-8 ); assertEquals( right, leg.getRight( LengthUnit.Metres ), 1e-8 ); assertEquals( up, leg.getUp( LengthUnit.Metres ), 1e-8 ); assertEquals( down, leg.getDown( LengthUnit.Metres ), 1e-8 ); assertTrue( leg.isSplay() == splay ); assertTrue( leg.isDuplicate() == duplicate ); assertTrue( leg.isSurface() == surface ); assertTrue( leg.isDiving() == true ); assertTrue( leg.isDepthChangeLeg() == true ); } /** * Test method for {@link footleg.cavesurvey.data.model.SurveyLeg}. */ @Test public void testUnitsSupport() { SurveyLeg leg = new SurveyLeg(); int fromStnId = 543; SurveyStation stn = new SurveyStation( fromStnId ); leg.setFromStn(stn); //Test returned value in feet matches expected double lengthMetres = 12.34; double lengthFeet = 3.280839895 * lengthMetres; leg.setLength( lengthMetres, LengthUnit.Metres ); assertEquals( lengthFeet, leg.getLength(LengthUnit.Feet), 1e-8 ); //Test returned bearing in degrees matches expected double angleDegrees = 123.45; double angleGrads = 400 * angleDegrees / 360; leg.setCompass( angleDegrees, BearingUnit.Degrees ); assertEquals( angleGrads, leg.getCompass(BearingUnit.Grads), 1e-8 ); /* //Test returned bearing in degrees matches expected double clinoDegrees = 123.45; double clinoPercent = ; leg.setCompass( Measure.valueOf( angleDegrees, NonSI.DEGREE_ANGLE ) ); assertEquals( angleGrads, leg.getCompass().doubleValue(NonSI.GRADE), 1e-8 ); */ } } CaveConverter_src/test/footleg/cavesurvey/data/model/SurveyStationTest.java0000644000000000000000000001521112621447114026360 0ustar rootroot/** * Copyright (C) 2009-2013 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.data.model; import static org.junit.Assert.*; import org.junit.Test; import footleg.cavesurvey.data.model.SurveyStation; import footleg.cavesurvey.data.model.SurveyStation.FixType; /** * Unit test class for {@link footleg.cavesurvey.data.model.SurveyStation} * * @author Footleg * @version 2012.12.26 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class SurveyStationTest { @Test public void testSetEntrance() { int stnID = 123; SurveyStation stn = new SurveyStation( stnID ); assertFalse( "Station entrance should be false if not set.", stn.isEntrance() ); stn.setEntrance(true); assertTrue( "Checking station was set to be an entrance.", stn.isEntrance() ); stn.setEntrance(false); assertFalse( "Checking station was reset to not be an entrance", stn.isEntrance() ); } @Test public void testSetFixed() { int stnID = 123; double easting = 4800456.0; double northing = 4800789.75; double altitude = 8900.45; double easting2 = 123.45; double northing2 = 678.00; double altitude2 = 0.0; SurveyStation stn = new SurveyStation( stnID ); assertFalse( "Station should not be fixed by default.", stn.isFixed() ); //Set GPS type fix stn.setFixed(FixType.GPS, easting, northing, altitude); assertTrue( "Checking station was set to be fixed.", stn.isFixed() ); assertEquals("Getter for Easting", easting, stn.getEasting(), 0.0 ); assertEquals("Getter for Northing", northing, stn.getNorthing(), 0.0 ); assertEquals("Getter for Altitude", altitude, stn.getAltitude(), 0.0 ); assertEquals("Getter for fix type GPS", FixType.GPS, stn.getFixType() ); //Set Other type fix stn.setFixed(FixType.OTHER, easting2, northing2, altitude2); assertTrue( "Checking station was set to be fixed.", stn.isFixed() ); assertEquals("Getter for Easting", easting2, stn.getEasting(), 0.0 ); assertEquals("Getter for Northing", northing2, stn.getNorthing(), 0.0 ); assertEquals("Getter for Altitude", altitude2, stn.getAltitude(), 0.0 ); assertEquals("Getter for fix type Other", FixType.OTHER, stn.getFixType() ); //Clear fix stn.clearFixedStn(); assertFalse( "Station fix was cleared", stn.isFixed() ); } @Test public void testSetId() { int stnID = 67899035; SurveyStation stn = new SurveyStation( stnID ); assertEquals("Getter for Id", stnID, stn.getId() ); } @Test public void testGetName() { int stnID = 12; String defaultName = "12"; int stnID2 = 345; String defaultName2 = "345"; String newName = "ABC"; SurveyStation stn = new SurveyStation( stnID ); //If not set then name should be string of the Id assertEquals("Getter for Name based on Id", defaultName, stn.getName() ); //Change ID, check name changes stn.setId(stnID2); assertEquals("Getter for Name based on changed Id", defaultName2, stn.getName() ); //Set name to something else stn.setName(newName); assertEquals("Getter for Name set explicitly", newName, stn.getName() ); //Change ID after name was set, and check name is not changed stn.setId(92364); assertEquals("Getter for Name set explicitly", newName, stn.getName() ); } @Test public void testSetComment() { int stnID = 12; String commentText = "This is a station comment. It is quite long can contains\ra line break."; SurveyStation stn = new SurveyStation( stnID ); stn.setComment(commentText); assertEquals("Getter for Comment", commentText, stn.getComment() ); } @Test public void testClone() { int stnID = 12; String newName = "ABC"; String commentText = "This is a station comment. It is quite long can contains\ra line break."; double easting = 4800456.0; double northing = 4800789.75; double altitude = 8900.45; SurveyStation stn = new SurveyStation( stnID ); stn.setName(newName); stn.setComment(commentText); stn.setEntrance(true); stn.setFixed(FixType.GPS, easting, northing, altitude); SurveyStation clone = stn.clone(); assertEquals( "Station ID from clone", stnID, clone.getId() ); assertEquals( "Station Name from clone", newName, clone.getName() ); assertEquals( "Station Comment from clone", commentText, clone.getComment() ); assertTrue( "Station is entrance from clone", clone.isEntrance() ); assertTrue( "Station is fixed from clone", clone.isFixed() ); assertEquals( "Station is fix type from clone", FixType.GPS, clone.getFixType() ); assertEquals( "Station easting from clone", easting, clone.getEasting(), 0.0 ); assertEquals( "Station northing from clone", northing, clone.getNorthing(), 0.0 ); assertEquals( "Station altitude from clone", altitude, clone.getAltitude(), 0.0 ); //Change values of original station, and check clone was not changed //(checks clone is not a pointer to the same object) stn.setId(8765); stn.setName("iusdfhbs"); stn.setComment("iadrkuKAJ RDFC J JGV JYG BHF HF NJH B CN HJC NGF XB HGF CBNJCFN JFC NJ CF"); stn.setEntrance(false); stn.setFixed(FixType.OTHER, 1.2, 3.4, 5.6); assertEquals( "Station ID from clone", stnID, clone.getId() ); assertEquals( "Station Name from clone", newName, clone.getName() ); assertEquals( "Station Comment from clone", commentText, clone.getComment() ); assertTrue( "Station is entrance from clone", clone.isEntrance() ); assertTrue( "Station is fixed from clone", clone.isFixed() ); assertEquals( "Station is fix type from clone", FixType.GPS, clone.getFixType() ); assertEquals( "Station easting from clone", easting, clone.getEasting(), 0.0 ); assertEquals( "Station northing from clone", northing, clone.getNorthing(), 0.0 ); assertEquals( "Station altitude from clone", altitude, clone.getAltitude(), 0.0 ); } } CaveConverter_src/test/footleg/cavesurvey/data/writer/0000755000000000000000000000000013036467354022243 5ustar rootrootCaveConverter_src/test/footleg/cavesurvey/data/writer/TopoRobotWriterTest.java0000644000000000000000000001064213034773670027074 0ustar rootrootpackage footleg.cavesurvey.data.writer; import static org.junit.Assert.*; import org.junit.Test; import footleg.cavesurvey.converter.CmdLineLogger; import footleg.cavesurvey.data.model.CaveSurvey; import footleg.cavesurvey.data.model.SurveySeries; import footleg.cavesurvey.data.writer.TopoRobotWriter; import footleg.cavesurvey.tools.TestHelper; import footleg.cavesurvey.tools.UtilityFunctions; public class TopoRobotWriterTest { @Test public void testConvertToSingleSeries() { CmdLineLogger logger = new CmdLineLogger(); TopoRobotWriter writer = new TopoRobotWriter(logger); //Create test survey CaveSurvey surveyData = new CaveSurvey(logger); //Create master series SurveySeries masterSeries = new SurveySeries("outer"); //Add 3 test legs to series masterSeries.addLeg( TestHelper.createTestLeg(1,2,1.0,0.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(2,3,1.0,20.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(3,4,1.0,40.0,0.0) ); //Create inner series SurveySeries innerSeries = new SurveySeries("inner"); //Add a couple of test legs innerSeries.addLeg( TestHelper.createTestLeg(1,2,1.0,100.0,0.0) ); innerSeries.addLeg( TestHelper.createTestLeg(2,3,1.0,120.0,0.0) ); //Link station in inner series to a station in the outer series masterSeries.addLink("", masterSeries.getLegRaw(2).getToStn(), "inner", innerSeries.getLegRaw(0).getFromStn()); //Add inner series to master series masterSeries.addSeries(innerSeries); //Add master series to survey surveyData.add(masterSeries); //Convert to single series SurveySeries convertedSeries = writer.convertToSingleSeries(surveyData, false); assertEquals("root", convertedSeries.getSeriesName() ); } @Test public void testConvertToLinearSeriesFig8() { //Create master series SurveySeries masterSeries = new SurveySeries("test"); //Add 3 test legs to series masterSeries.addLeg( TestHelper.createTestLeg(1,2,1.0,010.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(2,3,1.0,100.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(3,4,1.0,190.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(4,1,1.0,280.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(1,5,1.0,270.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(5,6,1.0,180.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(6,7,1.0,090.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(7,1,1.0,000.0,0.0) ); //Convert to single series SurveySeries convertedSeries = UtilityFunctions.convertToLinearSeries( masterSeries, new CmdLineLogger() ); assertEquals("Expect 2 series from figure of 8 loop.", 2, convertedSeries.innerSeriesCount() ); } @Test public void testConvertToLinearSeriesOrderedT() { //Create master series SurveySeries masterSeries = new SurveySeries("test"); //Add 3 test legs to series masterSeries.addLeg( TestHelper.createTestLeg(1,2,1.0,110.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(2,3,1.0,100.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(3,4,1.0,190.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(4,5,1.0,180.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(3,6,1.0,270.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(6,7,1.0,290.0,0.0) ); //Convert to single series SurveySeries convertedSeries = UtilityFunctions.convertToLinearSeries( masterSeries, new CmdLineLogger() ); assertEquals("Expect 2 series from t-shaped single series.", 2, convertedSeries.innerSeriesCount() ); } @Test public void testConvertToLinearSeriesScrambledT() { //Create master series SurveySeries masterSeries = new SurveySeries("test"); //Add 3 test legs to series masterSeries.addLeg( TestHelper.createTestLeg(4,5,1.0,180.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(3,6,1.0,270.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(2,3,1.0,100.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(6,7,1.0,290.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(3,4,1.0,190.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(1,2,1.0,110.0,0.0) ); //Convert to single series SurveySeries convertedSeries = UtilityFunctions.convertToLinearSeries( masterSeries, new CmdLineLogger() ); assertEquals("Expect 2 series from t-shaped single series.", 2, convertedSeries.innerSeriesCount() ); } } CaveConverter_src/test/footleg/cavesurvey/converter/0000755000000000000000000000000013036467354022025 5ustar rootrootCaveConverter_src/test/footleg/cavesurvey/converter/CaveConverterTest.java0000644000000000000000000001401712621447114026270 0ustar rootroot/** * Copyright (C) 2009-2015 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.converter; import static org.junit.Assert.*; import org.junit.Test; import footleg.cavesurvey.converter.CaveConverter.SurveyDataInputFormats; import footleg.cavesurvey.converter.CaveConverter.SurveyDataOutputFormats; /** * Unit test class for {@link footleg.cavesurvey.converter.CaveConverter} * * @author Footleg * @version 2015.08.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class CaveConverterTest { /** * Test method for {@link footleg.cavesurvey.converter.CaveConverter#getFormatName(SurveyDataInputFormats)}. */ @Test public void testGetFormatNameSurveyDataInputFormats() { String testCompassDisplayName = CaveConverter.getFormatName( SurveyDataInputFormats.Compass ); assertEquals("Test correct display name is returned for format", "Compass", testCompassDisplayName); String testDXFDisplayName = CaveConverter.getFormatName( SurveyDataInputFormats.DXF ); assertEquals("Test correct display name is returned for format", "DXF", testDXFDisplayName); String testPocketTopoDisplayName = CaveConverter.getFormatName( SurveyDataInputFormats.PocketTopo ); assertEquals("Test correct display name is returned for format", "PocketTopo", testPocketTopoDisplayName); String testSurvexDisplayName = CaveConverter.getFormatName( SurveyDataInputFormats.Survex ); assertEquals("Test correct display name is returned for format", "Survex", testSurvexDisplayName); } /** * Test method for {@link footleg.cavesurvey.converter.CaveConverter#getFormatName(SurveyDataOutputFormats)}. */ @Test public void testGetFormatNameSurveyDataOutputFormats() { String testSurvexDisplayName = CaveConverter.getFormatName( SurveyDataOutputFormats.Survex ); assertEquals("Test correct display name is returned for format", "Survex", testSurvexDisplayName); String testToporobotDisplayName = CaveConverter.getFormatName( SurveyDataOutputFormats.Toporobot ); assertEquals("Test correct display name is returned for format", "Toporobot", testToporobotDisplayName); } /** * Test method for {@link footleg.cavesurvey.converter.CaveConverter#getFormatName(SurveyDataOutputFormats)}. */ @Test public void testInputFormatFromFileExtn() { //Compass files SurveyDataInputFormats testCompassL = CaveConverter.inputFormatFromFileExtn( "dat" ); assertEquals("Test correct format is returned for Compass DAT file (lowercase extn)", SurveyDataInputFormats.Compass, testCompassL); SurveyDataInputFormats testCompassU = CaveConverter.inputFormatFromFileExtn( "DAT" ); assertEquals("Test correct format is returned for Compass DAT file (uppercase extn)", SurveyDataInputFormats.Compass, testCompassU); SurveyDataInputFormats testCompassM = CaveConverter.inputFormatFromFileExtn( "dAt" ); assertEquals("Test correct format is returned for Compass DAT file (mixedcase extn)", SurveyDataInputFormats.Compass, testCompassM); //DXF files SurveyDataInputFormats testDXFL = CaveConverter.inputFormatFromFileExtn( "dxf" ); assertEquals("Test correct format is returned for DXF DAT file (lowercase extn)", SurveyDataInputFormats.DXF, testDXFL); SurveyDataInputFormats testDXFU = CaveConverter.inputFormatFromFileExtn( "DXF" ); assertEquals("Test correct format is returned for DXF DAT file (uppercase extn)", SurveyDataInputFormats.DXF, testDXFU); SurveyDataInputFormats testDXFM = CaveConverter.inputFormatFromFileExtn( "dXf" ); assertEquals("Test correct format is returned for DXF DAT file (mixedcase extn)", SurveyDataInputFormats.DXF, testDXFM); //PocketTopo files SurveyDataInputFormats testPocketTopoL = CaveConverter.inputFormatFromFileExtn( "txt" ); assertEquals("Test correct format is returned for PocketTopo DAT file (lowercase extn)", SurveyDataInputFormats.PocketTopo, testPocketTopoL); SurveyDataInputFormats testPocketTopoU = CaveConverter.inputFormatFromFileExtn( "TXT" ); assertEquals("Test correct format is returned for PocketTopo DAT file (uppercase extn)", SurveyDataInputFormats.PocketTopo, testPocketTopoU); SurveyDataInputFormats testPocketTopoM = CaveConverter.inputFormatFromFileExtn( "tXt" ); assertEquals("Test correct format is returned for PocketTopo DAT file (mixedcase extn)", SurveyDataInputFormats.PocketTopo, testPocketTopoM); //Survex files SurveyDataInputFormats testSurvexL = CaveConverter.inputFormatFromFileExtn( "svx" ); assertEquals("Test correct format is returned for Survex DAT file (lowercase extn)", SurveyDataInputFormats.Survex, testSurvexL); SurveyDataInputFormats testSurvexU = CaveConverter.inputFormatFromFileExtn( "SVX" ); assertEquals("Test correct format is returned for Survex DAT file (uppercase extn)", SurveyDataInputFormats.Survex, testSurvexU); SurveyDataInputFormats testSurvexM = CaveConverter.inputFormatFromFileExtn( "sVx" ); assertEquals("Test correct format is returned for Survex DAT file (mixedcase extn)", SurveyDataInputFormats.Survex, testSurvexM); //Unknown SurveyDataInputFormats testUnknown = CaveConverter.inputFormatFromFileExtn( "xml" ); assertEquals("Test null returned for unsupported file extn", null, testUnknown); } } CaveConverter_src/test/footleg/cavesurvey/tools/0000755000000000000000000000000013036467354021156 5ustar rootrootCaveConverter_src/test/footleg/cavesurvey/tools/UtilityFunctionsTest.java0000644000000000000000000010226713034777156026227 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.tools; import static org.junit.Assert.*; import java.text.ParseException; import java.util.ArrayList; import java.util.Date; import java.util.List; import org.junit.Test; import footleg.cavesurvey.converter.CaveConverter.BearingUnit; import footleg.cavesurvey.converter.CaveConverter.GradientUnit; import footleg.cavesurvey.converter.CaveConverter.LengthUnit; import footleg.cavesurvey.converter.CmdLineLogger; import footleg.cavesurvey.data.model.SeriesLink; import footleg.cavesurvey.data.model.SurveySeries; import footleg.cavesurvey.tools.UtilityFunctions; /** * Regression test class for UtilityFunctions static class methods. * * @author Footleg * @version 2017.01.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class UtilityFunctionsTest { private static final double meanBearingTolerance = 1e-3; /** * Test helper method to call the UtilityFunctions.averageCompassBearings method for * two given bearings */ private double calcMeanBearing( double bearing1, double bearing2 ) { double[] bearings = new double[2]; bearings[0] = bearing1; bearings[1] = bearing2; double meanBearing = UtilityFunctions.averageCompassBearings(bearings); if ( meanBearing > 359.999) { meanBearing = 0; } return meanBearing; } /** * Test helper method to call the UtilityFunctions.averageCompassBearings method for * three given bearings */ private double calcMeanBearing( double bearing1, double bearing2, double bearing3 ) { double[] bearings = new double[3]; bearings[0] = bearing1; bearings[1] = bearing2; bearings[2] = bearing3; double meanBearing = UtilityFunctions.averageCompassBearings(bearings); return meanBearing; } /** * Test helper method to call the UtilityFunctions.averageCompassBearings method for * two given bearings and an expected result, which formats a useful assertion message * on test failure. */ private void testMean2(double a, double b, double expectedMean) { double mean = calcMeanBearing(a, b); assertEquals("Mean bearing for values of " + a + " and " + b + "." , expectedMean, mean, meanBearingTolerance); } /** * Test helper method to call the UtilityFunctions.averageCompassBearings method for * three given bearings and an expected result, which formats a useful assertion message * on test failure. */ private void testMean3(double a, double b, double c, double expected) { double expectedMean = expected; double mean = calcMeanBearing(a, b, c); if ( ( expectedMean > 359.5 ) && ( mean < 0.5 ) ) { mean += 360; } else if ( ( mean > 359.5 ) && ( expectedMean < 0.5 ) ) { expectedMean += 360; } assertEquals("Mean bearing for values of " + a + ", " + b + ", and " + c + "." , expectedMean, mean, meanBearingTolerance); } /** * Test helper method to compare the result from UtilityFunctions.averageCompassBearings method * for three given bearings with the result from the numerical average method */ private void testMean3VerusNumericalAverage(double a, double b, double c) { double expectedMean = numericalMeanBearing3(a, b, c); testMean3(a, b, c, expectedMean); } /** * Test method which calculates the numerical average of two bearings using logical cases * for relative positions of the two legs. This method essentially adds the two bearings * together and divides by two to get an average but also handles the case where the bearings * are either side of North (i.e. 359 & 1 should average to 0 and not 180). * This method works for any pair of bearings in the range 0 - 360 degrees with any * angle between them. */ private double numericalMeanBearing2( double bearing1, double bearing2 ) { double smallerBearing; double largerBearing; double meanBearing; //If bearings are the same then average is the value of either bearing if ( bearing1 == bearing2 ) { meanBearing = bearing1; } else { //Determine which is the larger value of the two bearings if ( bearing1 > bearing2 ) { largerBearing = bearing1; smallerBearing = bearing2; } else { largerBearing = bearing2; smallerBearing = bearing1; } //Adjust bearings so smaller is zero, and larger is relative to smaller double adjustedBearing = largerBearing - smallerBearing; if (adjustedBearing > 180) { //Larger bearing is on West side of compass dial, so average will be half way //between this and 360 deg. meanBearing = UtilityFunctions.adjustBearingWithinDegreesRange( 360 - ((360 - adjustedBearing) / 2) + smallerBearing, 0, 360); } else { //Larger bearing is on East side of compass dial, so average will be half way //between this and 0 deg. meanBearing = (adjustedBearing / 2) + smallerBearing; } } return meanBearing; } /** * Test method which calculates the numerical average of three bearings using logical cases * for relative positions of the three legs when all within 180 segment of each other. This * method essentially adds the three bearings together and divides by three to get an average * but also handles the case where the bearings are either side of North (i.e. 359, 357, 1 * should average to 359 and not 239) */ private double numericalMeanBearing3( double bearing1, double bearing2, double bearing3 ) { double bearingA = bearing1; double bearingB = bearing2; double bearingC = bearing3; double meanBearing; //If bearings are the same then average is the value of any bearing if ( ( bearingA == bearingB ) && ( bearingA == bearingC ) ) { meanBearing = bearingA; } else { //Check for case where all bearings are in the northern half of the compass dial //and split either side of North if ( ( ( bearingA > 270 ) || ( bearingA < 90 ) ) && ( ( bearingB > 270 ) || ( bearingB < 90 ) ) && ( ( bearingC > 270 ) || ( bearingC < 90 ) ) ) { if ( ( bearingA < 180 ) || ( bearingB < 180 ) || ( bearingC < 180 ) ) { //At least one bearing on East side of dial, make any West side bearings negative if ( bearingA > 180 ) { bearingA -= 360; } if ( bearingB > 180 ) { bearingB -= 360; } if ( bearingC > 180 ) { bearingC -= 360; } } } //Determine which is the smallest and largest value of the three bearings if ( bearingA > bearingB ) { double park = bearingA; bearingA = bearingB; bearingB = park; } if ( bearingA > bearingC ) { double park = bearingA; bearingA = bearingC; bearingC = park; } if ( bearingB > bearingC ) { double park = bearingB; bearingB = bearingC; bearingC = park; } //Adjust bearings so smallest is zero, and larger are relative to smallest double adjustedBearing2 = bearingB - bearingA; double adjustedBearing3 = bearingC - bearingA; if (adjustedBearing3 > 180) { //Bearings span more than 180 degree range. Not supported by this function. meanBearing = -999; } else { //All bearings between 0-180 degrees, so safe to average meanBearing = ( (adjustedBearing2 + adjustedBearing3) / 3) + bearingA; } } return UtilityFunctions.adjustBearingWithinDegreesRange(meanBearing, 0, 360); } /** * Test method for {@link footleg.cavesurvey.tools.UtilityFunctions#averageCompassBearings(double[] bearings)}. */ @Test public void testMeanBearings() { //Test average trend of a pair of bearings using vector averaging (atan2 method) is the same as //the numerical average of the two angles, for values in all possible ranges for (int diff = 0; diff < 180; diff += 4) { for (int start = 0; start < 360 - diff; start += 1) { double a = start; double b = a + diff + 0.07; double expectedMean = numericalMeanBearing2(a, b); testMean2( a, b, expectedMean); testMean2( b, a, expectedMean); } } for (int diff = 0; diff < 180; diff += 4) { for (int start = 1; start < 90; start += 1) { double a = start; double b = 360 - a - diff + 0.02; double expectedMean = numericalMeanBearing2(a, b); testMean2( a, b, expectedMean); testMean2( b, a, expectedMean); } } } /** * Test method for {@link footleg.cavesurvey.tools.UtilityFunctions#averageCompassBearings(double[] bearings)}. */ @Test public void testMeanCompassBearing() { double expectedMean = 0.2; double mean; mean = calcMeanBearing(0.1, 0.3); assertEquals("Mean bearing for 2 similar values just over zero.", expectedMean, mean, meanBearingTolerance); expectedMean = 180.0; mean = calcMeanBearing(179, 181); assertEquals("Mean bearing for 2 similar values around 180 deg.", expectedMean, mean, meanBearingTolerance); expectedMean = 180.0; mean = calcMeanBearing(90, 270); assertEquals("Mean bearing for 2 values exactly East and West", expectedMean, mean, meanBearingTolerance); expectedMean = 180.0; mean = calcMeanBearing(270, 90); assertEquals("Mean bearing for 2 values exactly West and East", expectedMean, mean, meanBearingTolerance); expectedMean = 0.0; mean = calcMeanBearing(271, 89); assertEquals("Mean bearing for 2 values just North of West and East", expectedMean, mean, meanBearingTolerance); expectedMean = 320.0; mean = calcMeanBearing(20, 260); assertEquals("Mean bearing for 2 values over 180 degrees different", expectedMean, mean, meanBearingTolerance); //Some pairs to survey legs and expected average trend of passage testMean2( 0.0, 0.0, 0.0); testMean2( 0.0, 24.0, 12.0); testMean2( 90.0, 0.0, 45.0); testMean2( 120.0, 0.0, 60.0); testMean2( 180.0, 180.0, 180.0); testMean2( 180.0, 359.0, 269.5); } @Test public void testMeanBearings3() { boolean rigourousTests = false; //Default increments for fast testing (test takes approx. 1 sec. with these values) double mainBearingIncrement = 7.3; //Bearing 1 tested from 0-360 deg in steps of this size double bearingSpreadIncrement = 0.3; //Maximum difference between all 3 bearings varies from 0-5 deg in steps of this size double bearingSpreadDiffIncrement = 0.07; //Difference between bearing 1 and 2 varies in steps of this size between min and max. if ( rigourousTests ) { //Use smaller increments for better test coverage of numeric space at cost of running time // (test takes approx. 1 minute with these values) mainBearingIncrement = 0.37; bearingSpreadIncrement = 0.13; bearingSpreadDiffIncrement = 0.07; } //Full revolution for bearing 1 for (double start = 0; start < 360; start += mainBearingIncrement) { double bearing1 = start; //Vary maximum bearing spread from 0 - 5 degrees for (double diff = 0; diff < 5; diff += bearingSpreadIncrement) { double bearing3 = start + diff; //Vary difference between 0 and max spread for (double mid = 0; mid < diff; mid += bearingSpreadDiffIncrement) { double bearing2 = start + mid; //Test all ways double a = bearing1; double b = UtilityFunctions.adjustBearingWithinDegreesRange(bearing2, 0, 360); double c = UtilityFunctions.adjustBearingWithinDegreesRange(bearing3, 0, 360); testMean3VerusNumericalAverage( a, b, c); testMean3VerusNumericalAverage( a, c, b); testMean3VerusNumericalAverage( b, a, c); testMean3VerusNumericalAverage( b, c, a); testMean3VerusNumericalAverage( c, a, b); testMean3VerusNumericalAverage( c, b, a); } } } } /** * Test method for {@link footleg.cavesurvey.tools.UtilityFunctions#averageCompassBearings(double[] bearings)}. */ @Test public void testAverageCompassBearings() { double expectedMean; double mean; expectedMean = 0.2; mean = calcMeanBearing(0.1, 0.2, 0.3); assertEquals("Mean bearing for 3 similar values just over zero.", expectedMean, mean, meanBearingTolerance); expectedMean = 180.0; mean = calcMeanBearing(179, 180, 181); assertEquals("Mean bearing for 3 similar values around 180 deg.", expectedMean, mean, meanBearingTolerance); expectedMean = 359.5; mean = calcMeanBearing(359.9, 359.2, 359.4); assertEquals("Mean bearing for 3 similar values around 359.5 deg.", expectedMean, mean, meanBearingTolerance); expectedMean = 0.09; mean = calcMeanBearing(359.94, 0.21, 0.12); assertEquals("Mean bearing for 3 values either side of North", expectedMean, mean, meanBearingTolerance); expectedMean = 359.9966667; mean = calcMeanBearing(359.94, 0.03, 0.02); assertEquals("Mean bearing for 3 values either side of North", expectedMean, mean, meanBearingTolerance); //These bearings spread over 10 degree range show difference between mean vector angle and //straight numerical averaging methods of calculating. So the correct answer is not 2.000 expectedMean = 2.00244; mean = calcMeanBearing(356, 4, 6); assertEquals("Mean bearing for 3 values around 0", expectedMean, mean, meanBearingTolerance); //These bearings spread over 10 degree range show difference between mean vector angle and //straight numerical averaging methods of calculating. So the correct answer is not 358.000 expectedMean = 358.00244; mean = calcMeanBearing(2, 352, 0); assertEquals("Mean bearing for 3 values around 0", expectedMean, mean, meanBearingTolerance); //These bearings spread over 10 degree range show difference between mean vector angle and //straight numerical averaging methods of calculating. So the correct answer is not 43.000 expectedMean = 43.002; mean = calcMeanBearing(45, 37, 47); assertEquals("Mean bearing for 3 values around 45", expectedMean, mean, meanBearingTolerance); //These bearings spread over 10 degree range show difference between mean vector angle and //straight numerical averaging methods of calculating. So the correct answer is not 88.000 expectedMean = 88.002; mean = calcMeanBearing(90,92,82); assertEquals("Mean bearing for 3 values around 90", expectedMean, mean, meanBearingTolerance); //These bearings spread over 10 degree range show difference between mean vector angle and //straight numerical averaging methods of calculating. So the correct answer is not 133.000 expectedMean = 133.002; mean = calcMeanBearing(135,137,127); assertEquals("Mean bearing for 3 values around 135", expectedMean, mean, meanBearingTolerance); //These bearings spread over 10 degree range show difference between mean vector angle and //straight numerical averaging methods of calculating. So the correct answer is not 178.000 expectedMean = 178.002; mean = calcMeanBearing(180,182,172); assertEquals("Mean bearing for 3 values around 180", expectedMean, mean, meanBearingTolerance); expectedMean = 223.002; mean = calcMeanBearing(225,227,217); assertEquals("Mean bearing for 3 values around 225", expectedMean, mean, meanBearingTolerance); expectedMean = 268.002; mean = calcMeanBearing(270,272,262); assertEquals("Mean bearing for 3 values around 270", expectedMean, mean, meanBearingTolerance); expectedMean = 313.002; mean = calcMeanBearing(315,317,307); assertEquals("Mean bearing for 3 values around 315", expectedMean, mean, meanBearingTolerance); expectedMean = 357.002; mean = calcMeanBearing(359,1,351); assertEquals("Mean bearing for 3 values around 360", expectedMean, mean, meanBearingTolerance); expectedMean = 4.610; mean = calcMeanBearing(0.0, 0.0, 13.86); assertEquals("Mean bearing for 3 values around 360", expectedMean, mean, meanBearingTolerance); //These bearings spread over 22.5 degree range show difference between mean vector angle and //straight numerical averaging methods of calculating. So the correct answer is not 116.533 expectedMean = 116.548; testMean3(104.06, 118.87, 126.67, expectedMean); //These bearings spread over 160 degree range show difference between mean vector angle and //straight numerical averaging methods of calculating. So the correct answer is not 126.667 //as clearly with bearings pulling almost North or South the average trend would be in the //North-South direction, and pulling Eastwards nearly as much as a numerical average suggests. expectedMean = 162.122; testMean3(180, 180, 20, expectedMean); } /** * Test method for helper method in this test file. */ @Test public void testNumericalMeanBearing3() { double expectedMean = 0.2; double mean; mean = numericalMeanBearing3(0.1, 0.2, 0.3); assertEquals("Mean bearing for 3 similar values just over zero.", expectedMean, mean, meanBearingTolerance); expectedMean = 180.0; mean = numericalMeanBearing3(179, 180, 181); assertEquals("Mean bearing for 3 similar values around 180 deg.", expectedMean, mean, meanBearingTolerance); expectedMean = 359.5; mean = numericalMeanBearing3(359.9, 359.2, 359.4); assertEquals("Mean bearing for 3 similar values around 359.5 deg.", expectedMean, mean, meanBearingTolerance); expectedMean = 0.09; mean = numericalMeanBearing3(359.94, 0.21, 0.12); assertEquals("Mean bearing for 3 values either side of North", expectedMean, mean, meanBearingTolerance); expectedMean = 359.9966667; mean = numericalMeanBearing3(359.94, 0.03, 0.02); assertEquals("Mean bearing for 3 values either side of North", expectedMean, mean, meanBearingTolerance); expectedMean = 2; mean = numericalMeanBearing3(356, 4, 6); assertEquals("Mean bearing for 3 values around 0", expectedMean, mean, meanBearingTolerance); expectedMean = 358; mean = numericalMeanBearing3(2, 352, 0); assertEquals("Mean bearing for 3 values around 0", expectedMean, mean, meanBearingTolerance); expectedMean = 43; mean = numericalMeanBearing3(45, 37, 47); assertEquals("Mean bearing for 3 values around 45", expectedMean, mean, meanBearingTolerance); expectedMean = 88; mean = numericalMeanBearing3(90,92,82); assertEquals("Mean bearing for 3 values around 90", expectedMean, mean, meanBearingTolerance); expectedMean = 133; mean = numericalMeanBearing3(135,137,127); assertEquals("Mean bearing for 3 values around 135", expectedMean, mean, meanBearingTolerance); expectedMean = 178; mean = numericalMeanBearing3(180,182,172); assertEquals("Mean bearing for 3 values around 180", expectedMean, mean, meanBearingTolerance); expectedMean = 223; mean = numericalMeanBearing3(225,227,217); assertEquals("Mean bearing for 3 values around 225", expectedMean, mean, meanBearingTolerance); expectedMean = 268; mean = numericalMeanBearing3(270,272,262); assertEquals("Mean bearing for 3 values around 270", expectedMean, mean, meanBearingTolerance); expectedMean = 313; mean = numericalMeanBearing3(315,317,307); assertEquals("Mean bearing for 3 values around 315", expectedMean, mean, meanBearingTolerance); expectedMean = 357; mean = numericalMeanBearing3(359,1,351); assertEquals("Mean bearing for 3 values around 360", expectedMean, mean, meanBearingTolerance); expectedMean = 116.533333; mean = numericalMeanBearing3(104.06, 118.87, 126.67); assertEquals("Mean bearing for 3 values around 360", expectedMean, mean, meanBearingTolerance); } /** * Test method for {@link footleg.cavesurvey.tools.UtilityFunctions#bearingDifferenceDegrees(double angle1, double angle2)}. */ @Test public void testBearingDifference() { double expectedDiff = 10.0; double calcDiff; calcDiff = UtilityFunctions.bearingDifferenceDegrees( 5.0, 355.0 ); assertEquals("Difference between two bearings either side of North", expectedDiff, calcDiff, meanBearingTolerance); expectedDiff = 180.0; calcDiff = UtilityFunctions.bearingDifferenceDegrees( 90.0, 270.0 ); assertEquals("Difference between two bearings of exactly East and West", expectedDiff, calcDiff, meanBearingTolerance); expectedDiff = 4.8; calcDiff = UtilityFunctions.bearingDifferenceDegrees( 120.4, 125.2 ); assertEquals("Difference between two bearings of similar direction", expectedDiff, calcDiff, meanBearingTolerance); } /** * Test method for {@link footleg.cavesurvey.tools.UtilityFunctions#stringToDate( String dateString, String dateFormat )}, * {@link footleg.cavesurvey.tools.UtilityFunctions#dateToString( Date date, String dateFormat )}. */ @Test public void testDateStringConversionPocketTopo() { String dateOutFormat = UtilityFunctions.POCKETTOPO_DATE_FORMAT; String dateInFormat = "dd-MM-yyyy"; String dateIn = "27-12-1984"; String dateExpectedOut = "1984/12/27"; doDateStringConversion(dateIn, dateInFormat, dateExpectedOut, dateOutFormat); dateIn = "01-02-1947"; dateExpectedOut = "1947/02/01"; doDateStringConversion(dateIn, dateInFormat, dateExpectedOut, dateOutFormat); dateIn = "31-12-2012"; dateExpectedOut = "2012/12/31"; doDateStringConversion(dateIn, dateInFormat, dateExpectedOut, dateOutFormat); dateInFormat = "MM-dd-yy"; dateIn = "03-05-07"; dateExpectedOut = "2007/03/05"; doDateStringConversion(dateIn, dateInFormat, dateExpectedOut, dateOutFormat); } /** * Test method for {@link footleg.cavesurvey.tools.UtilityFunctions#stringToDate( String dateString, String dateFormat )}, * {@link footleg.cavesurvey.tools.UtilityFunctions#dateToString( Date date, String dateFormat )}. */ @Test public void testDateStringConversionSurvex() { String dateOutFormat = UtilityFunctions.SURVEXDATE_FORMAT; String dateInFormat = "dd-MM-yyyy"; String dateIn = "27-12-1984"; String dateExpectedOut = "1984.12.27"; doDateStringConversion(dateIn, dateInFormat, dateExpectedOut, dateOutFormat); dateIn = "01-02-1947"; dateExpectedOut = "1947.02.01"; doDateStringConversion(dateIn, dateInFormat, dateExpectedOut, dateOutFormat); dateIn = "31-12-2012"; dateExpectedOut = "2012.12.31"; doDateStringConversion(dateIn, dateInFormat, dateExpectedOut, dateOutFormat); dateInFormat = "MM-dd-yy"; dateIn = "03-05-07"; dateExpectedOut = "2007.03.05"; doDateStringConversion(dateIn, dateInFormat, dateExpectedOut, dateOutFormat); } /** * Converts a string from one data format to another, with parse exception handling. * Tests that the string generated matches the specified expected string. */ private void doDateStringConversion( String dateIn, String dateInFormat, String dateExpectedOut, String dateOutFormat ) { try { Date testDate = UtilityFunctions.stringToDate( dateIn, dateInFormat); String dateOut = UtilityFunctions.dateToString( testDate, dateOutFormat ); assertEquals("Date converted from one string format to another", dateExpectedOut, dateOut); } catch (ParseException e) { fail("Date string '" + dateIn + "' raised parse exception using format '" + dateInFormat + "'."); } } /** * Test method for {@link footleg.cavesurvey.tools.UtilityFunctions#parseDataStringIntoDataItems( String dataIn )}. */ @Test public void testParseDataLineIntoDataItems() { String dataLine = ""; String[] dataItems = new String[6]; dataItems[0] = "Item1"; dataItems[1] = "2"; dataItems[2] = "Item3"; dataItems[3] = ""; dataItems[4] = "Item 5"; dataItems[5] = "Item6"; dataLine = dataItems[0] + " " + dataItems[1] + " " + dataItems[2] + "\t\"" + dataItems[3] + "\" \t\"" + dataItems[4] + "\"\t " + dataItems[5]; splitStringIntoItemsTest( dataLine, dataItems ); dataLine = dataItems[0] + " " + dataItems[1] + " " + dataItems[2] + " \t \"" + dataItems[3] + "\" \t \"" + dataItems[4] + "\" \t \t " + dataItems[5]; splitStringIntoItemsTest( dataLine, dataItems ); dataItems = new String[1]; dataItems[0] = "Item1"; dataLine = dataItems[0]; splitStringIntoItemsTest( dataLine, dataItems ); dataLine = "\"" + dataItems[0] + "\""; splitStringIntoItemsTest( dataLine, dataItems ); dataItems[0] = "A long sentance of misc text"; dataLine = "\"" + dataItems[0] + "\""; splitStringIntoItemsTest( dataLine, dataItems ); dataItems[0] = "Some\ttext\ncontaining\rtabs and new line chars "; dataLine = "\"" + dataItems[0] + "\""; splitStringIntoItemsTest( dataLine, dataItems ); dataItems = new String[2]; dataItems[0] = "Item\t1"; dataItems[1] = "Item 2"; dataLine = "\"" + dataItems[0] + "\"" + "\"" + dataItems[1] + "\""; splitStringIntoItemsTest( dataLine, dataItems ); } private void splitStringIntoItemsTest( String dataLine, String[] items ) { //Parse data string into items List parsedData = UtilityFunctions.parseDataStringIntoDataItems( dataLine ); //Check expected number of items were returned assertEquals( "Data string '" + dataLine + "' returns expected number of items.", items.length, parsedData.size() ); //Check each item returned matches expected data item for (int i = 0; i < items.length; i++) { assertEquals( "Item " + (i + 1) + " in '" + dataLine + "'.", items[i], parsedData.get(i) ); } } /** * Test method for {@link footleg.cavesurvey.tools.UtilityFunctions#convertToLinearSeries( SurveySeries seriesIn )}. */ @Test public void testConvertToLinearSeriesOrderedT() { CmdLineLogger logger = new CmdLineLogger(); //Create series of test data SurveySeries masterSeries = new SurveySeries("test"); //Add legs to series masterSeries.addLeg( TestHelper.createTestLeg(1,2,1.0,110.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(2,3,1.0,100.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(3,4,1.0,190.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(4,5,1.0,180.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(3,6,1.0,270.0,0.0) ); masterSeries.addLeg( TestHelper.createTestLeg(6,7,1.0,290.0,0.0) ); //Convert to single series SurveySeries convertedSeries = UtilityFunctions.convertToLinearSeries( masterSeries, logger ); assertEquals("Expect 2 series from t-shaped single series.", 2, convertedSeries.innerSeriesCount() ); assertEquals("Expect links between all series.", 1, convertedSeries.getLinks().size() ); SeriesLink firstLink = convertedSeries.getLinks().get(0); assertEquals("Expect link from series 1.", convertedSeries.getInnerSeries(0).getSeriesName(), firstLink.getSeries2() ); assertEquals("Expect link to series 2.", convertedSeries.getInnerSeries(1).getSeriesName(), firstLink.getSeries1() ); } /** * Test method for {@link footleg.cavesurvey.tools.UtilityFunctions#compareStringLists( List list1, List list2 )}. */ @Test public void testCompareStringLists() { List list1 = new ArrayList(); List list2 = new ArrayList(); //Test empty lists are the same assertTrue( "Expect pair of empty string lists to be considered identical.", UtilityFunctions.compareStringLists( list1, list2 ) ); list1.add("A String"); //Test empty list against list with data are not the same assertFalse( "Expect an empty string list not to be considered identical to one containing data.", UtilityFunctions.compareStringLists( list1, list2 ) ); list1.add("Another"); list1.add("More Data"); //Test empty list against list with data are not the same assertFalse( "Expect an empty string list to not to be considered identical to one containing data.", UtilityFunctions.compareStringLists( list1, list2 ) ); list2.add("A String"); //Test lists for different sizes are not the same assertFalse( "Expect string lists not to be considered identical when containing different numbers of items.", UtilityFunctions.compareStringLists( list1, list2 ) ); list2.add("Another"); //Test lists for different sizes are not the same assertFalse( "Expect string lists not to be considered identical when containing different numbers of items.", UtilityFunctions.compareStringLists( list1, list2 ) ); list2.add("More Data"); //Test lists containing the same data are the same assertTrue( "Expect string lists to be considered identical when containing the same items.", UtilityFunctions.compareStringLists( list1, list2 ) ); list2.clear(); list2.add("Another"); list2.add("A String"); list2.add("More Data"); //Test lists containing the same data are the same assertFalse( "Expect string lists not to be considered identical when containing the same items in a different order.", UtilityFunctions.compareStringLists( list1, list2 ) ); } /** * Test method for * {@link footleg.cavesurvey.tools.UtilityFunctions#lengthToMetres(double length, LengthUnit units)}, * {@link footleg.cavesurvey.tools.UtilityFunctions#lengthFromMetres(double metrelength, LengthUnit units)}. * Tests conversion from feet and yards to metres and back. */ @Test public void testLengthUnitsConversions() { double feet = 100; double metres = 30.48; assertEquals("Converting feet to metres", metres, UtilityFunctions.lengthToMetres(feet, LengthUnit.Feet), 1e-6); assertEquals("Converting inclincation in degrees to percentage slope", feet , UtilityFunctions.lengthFromMetres(metres, LengthUnit.Feet), 1e-6); double yards = 40; metres = 36.576; assertEquals("Converting metres to yards", metres, UtilityFunctions.lengthToMetres(yards, LengthUnit.Yards), 1e-6); assertEquals("Converting yards to metres", yards , UtilityFunctions.lengthFromMetres(metres, LengthUnit.Yards), 1e-6); } /** * Test method for * {@link footleg.cavesurvey.tools.UtilityFunctions#bearingFromDegrees(double bearingDegrees, BearingUnit units)}, * {@link footleg.cavesurvey.tools.UtilityFunctions#bearingToDegrees(double bearing, BearingUnit units)}. * Tests conversion from percent to degrees and back. Tests conversion from grads to degrees and back. */ @Test public void testBearingToDegreesConversions() { double minutes = 30; double degrees = 0.5; assertEquals("Converting bearing in minutes to degrees", degrees, UtilityFunctions.bearingToDegrees(minutes, BearingUnit.Minutes), 1e-6); assertEquals("Converting bearing in degrees to minutes", minutes , UtilityFunctions.bearingFromDegrees(degrees, BearingUnit.Minutes), 1e-6); double grads = 400; degrees = 360; assertEquals("Converting bearing in grads to degrees", degrees, UtilityFunctions.bearingToDegrees(grads, BearingUnit.Grads), 1e-6); assertEquals("Converting bearing in degrees to grads", grads , UtilityFunctions.bearingFromDegrees(degrees, BearingUnit.Grads), 1e-6); } /** * Test method for * {@link footleg.cavesurvey.tools.UtilityFunctions#gradientFromDegrees(double gradientDegrees, GradientUnit units)}, * {@link footleg.cavesurvey.tools.UtilityFunctions#gradientToDegrees(double gradient, GradientUnit units)}. * Tests conversion from percent to degrees and back. Tests conversion from grads to degrees and back. */ @Test public void testGradientToDegreesConversions() { double percent = 100; double degrees = 45; assertEquals("Converting percentage slope to inclincation degrees", degrees, UtilityFunctions.gradientToDegrees(percent, GradientUnit.Percent), 1e-6); assertEquals("Converting inclincation in degrees to percentage slope", percent , UtilityFunctions.gradientFromDegrees(degrees, GradientUnit.Percent), 1e-6); percent = 12.5; degrees = 7.125016349; assertEquals("Converting percentage slope to inclincation degrees", degrees, UtilityFunctions.gradientToDegrees(percent, GradientUnit.Percent), 1e-6); assertEquals("Converting inclincation in degrees to percentage slope", percent , UtilityFunctions.gradientFromDegrees(degrees, GradientUnit.Percent), 1e-6); double grads = 400; degrees = 360; assertEquals("Converting inclincation grads to degrees", degrees, UtilityFunctions.gradientToDegrees(grads, GradientUnit.Grads), 1e-6); assertEquals("Converting inclincation in degrees to grads", grads , UtilityFunctions.gradientFromDegrees(degrees, GradientUnit.Grads), 1e-6); grads = 100; degrees = 90; assertEquals("Converting inclincation grads to degrees", degrees, UtilityFunctions.gradientToDegrees(grads, GradientUnit.Grads), 1e-6); assertEquals("Converting inclincation in degrees to grads", grads , UtilityFunctions.gradientFromDegrees(degrees, GradientUnit.Grads), 1e-6); } }CaveConverter_src/test/footleg/cavesurvey/tools/TestHelper.java0000644000000000000000000005036513034253144024075 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.tools; import java.text.DecimalFormat; import footleg.cavesurvey.converter.CaveConverter.BearingUnit; import footleg.cavesurvey.converter.CaveConverter.GradientUnit; import footleg.cavesurvey.converter.CaveConverter.LengthUnit; import footleg.cavesurvey.data.model.SurveyLeg; import footleg.cavesurvey.data.model.SurveySeries; import footleg.cavesurvey.data.model.SurveyStation; /** * Test helper class containing methods to assist in building survey models for test scenarios. * * @author Footleg * @version 2017.01.07 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public final class TestHelper { /** * Creates a survey leg from a set of measurements * * @param from From-station number * @param to To-station number * @param tape Length of leg (in metres) * @param compass Bearing of leg * @param clino Inclination angle of leg * @return SurveyLeg object */ public static SurveyLeg createTestLeg(int from, int to, double tape, double compass, double clino) { SurveyLeg leg = new SurveyLeg(); leg.setFromStn(new SurveyStation(from)); leg.setToStn(new SurveyStation(to)); leg.setLength( tape, LengthUnit.Metres ); leg.setCompass( compass, BearingUnit.Degrees ); leg.setClino( clino, GradientUnit.Degrees ); return leg; } /** * Creates a survey splay leg from a set of measurements. The leg will have no to-station. * * @param from From-station number * @param tape Length of leg (in metres) * @param compass Bearing of leg * @param clino Inclination angle of leg * @return SurveyLeg object */ public static SurveyLeg createSplayLeg(int from, double tape, double compass, double clino) { SurveyLeg leg = new SurveyLeg(); leg.setFromStn(new SurveyStation(from)); leg.setLength( tape, LengthUnit.Metres ); leg.setCompass( compass, BearingUnit.Degrees ); leg.setClino( clino, GradientUnit.Degrees ); leg.setSplay(true); return leg; } /** * Creates a short linear survey series of 3 legs without splays. All legs are measured in the * forward direction for the survey. (e.g. 1-2, 2-3, 3-4, but starting at the specified number). * * @param startStnNumber Number of the first station in the series * @return SurveySeries object */ public static SurveySeries createSimpleForward3SurveyingSeriesWithNoSplays(int startStnNumber) { SurveySeries series = new SurveySeries( "Test" ); //Add test legs to series with splays for LRUD int fromStn = startStnNumber; series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 5.05, 279.35, -25.23 ) ); fromStn++; series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 5.02, 336.36, -13.85 ) ); fromStn++; series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 3.19, 303.08, -33.11 ) ); return series; } /** * Creates a short linear survey series of 3 legs with splays measured for LRUD passage * dimension at each station. All legs are measured in the forward direction for the survey. * (e.g. 1-2, 2-3, 3-4). All stations have all three splays for LRUD (only a L or R per station). * * @return SurveySeries object */ public static SurveySeries createSimpleForward3SurveyingSeriesWith3Splays() { SurveySeries series = new SurveySeries( "Test" ); //Add test legs to series with splays for LRUD int fromStn = 1; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.74, 236.15, -6.85 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.87, 46.77, -82.61 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.68, 227.27, 67.16 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 5.05, 279.35, -25.23 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.58, 34.79, 1.49 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.16, 111.26, -85.03 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 2.83, 16.27, 74.62 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 5.02, 336.36, -13.85 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.41, 231.77, -3.06 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 3.73, 254.43, 80.33 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.54, 182.41, -84.02 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 3.19, 303.08, -33.11 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.53, 23.07, -5.56 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 4.46, 353.35, 80.60 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.45, 224.40, -78.95 ) ); return series; } /** * Creates a short linear survey series of 5 legs with splays measured for LRUD passage * dimension at each station. All legs are measured in the forward direction for the survey. * (e.g. 1-2, 2-3, 3-4). All stations have all four splays for LRUD. * * @return SurveySeries object */ public static SurveySeries createSimpleForward5SurveyingSeriesWith4Splays() { SurveySeries series = new SurveySeries( "Test" ); //Add test legs to series with splays for LRUD int fromStn = 1; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.07, 194.15, 2 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.74, 16.15, -6 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.28, 227.27, 87 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.87, 46.77, -82 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 5.05, 279.15, -5.23 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.15, 217.28, -3 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.78, 34.79, 1 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.83, 16.27, 84 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.16, 111.26, -85 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 5.02, 336.26, -3.85 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 1.21, 231.77, 2 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.21, 45.17, -3 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.23, 254.43, 80 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.54, 182.41, -84 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 3.19, 303.38, -6 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.53, 228.49, -2 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.62, 60.07, -5 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.46, 353.35, 80 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.45, 224.40, -89 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 5.02, 26.42, -5.85 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 1.21, 251.77, 2 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.21, 45.17, -5 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.25, 254.45, 80 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.54, 182.41, -84 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 3.19, 297.57, -6 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.53, 228.69, -2 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.62, 60.07, -5 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.66, 353.35, 80 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.65, 226.60, -89 ) ); return series; } /** * Creates a short linear survey series of 3 legs with splays measured for LRUD passage * dimension at each station. All legs are measured in the backwards direction for the survey. * (e.g. 2-1, 3-2, 4-3) * * @return SurveySeries object */ public static SurveySeries createSimpleBackwardsSurveyingSeriesWithSplays() { SurveySeries series = new SurveySeries( "Test" ); //Add test legs to series with splays for LRUD int fromStn = 1; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.74, 236.15, -6.85 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.87, 46.77, -82.61 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.68, 227.27, 67.16 ) ); series.addLeg( TestHelper.createTestLeg( fromStn + 1, fromStn, 5.05, 99.35, 25.23 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.58, 34.79, 1.49 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.16, 111.26, -85.03 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 2.83, 16.27, 74.62 ) ); series.addLeg( TestHelper.createTestLeg( fromStn + 1, fromStn, 5.02, 156.36, 13.85 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.41, 231.77, -3.06 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 3.73, 254.43, 80.33 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.54, 182.41, -84.02 ) ); series.addLeg( TestHelper.createTestLeg( fromStn + 1, fromStn, 3.19, 123.08, 33.11 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.53, 23.07, -5.56 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 4.46, 353.35, 80.60 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.45, 224.40, -78.95 ) ); return series; } /** * Creates a short t-shaped survey series of 6 legs with splays measured for LRUD passage * dimension at each station. Branch lengths 2,2,2 * All legs are measured in the forward direction for the survey (e.g. 1-2, 2-3, 3-4, etc.) * * @return SurveySeries object */ public static SurveySeries createBranched222ForwardSurveyingSeriesWithSplays() { SurveySeries series = new SurveySeries( "Test" ); //Add test legs to series with splays for LRUD int fromStn = 1; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.5, 330, 3 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.5, 150, -6 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 2, 60, 88 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.4, 60, -89 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 1.43, 61.61, -13.25 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.58, 327.33, -0.57 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.94, 171.13, -6.41 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.50, 258.56, -34.18 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 3.89, 73.29, -51.63 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.91, 252.72, -4.04 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.80, 250.31, -35.24 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 2.44, 239.99, 47.81 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 4.50, 170.72, 19.68 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.46, 71.39, -4.30 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.54, 358.12, 82.08 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.94, 170.44, -79.46 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.45, 220.38, -6.59 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 1.63, 131.27, 20.13 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.37, 242.14, -5.73 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.36, 39.38, -82.79 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.17, 258.11, 84.02 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.5, 41, 2 ) ); //Branch from 2 stations back series.addLeg( TestHelper.createTestLeg( fromStn - 2, fromStn + 1, 5.02, 336.36, -13.85 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.41, 231.77, -3.06 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 3.73, 254.43, 80.33 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.54, 182.41, -84.02 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 3.19, 303.08, -33.11 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.53, 23.07, -5.56 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 4.46, 353.35, 80.60 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.45, 224.40, -78.95 ) ); return series; } /** * Creates a short t-shaped survey series of 6 legs with splays measured for LRUD passage * dimension at each station. Branch lengths 1,2,2 * All legs are measured in the forward direction for the survey (e.g. 1-2, 2-3, 3-4, etc.) * * @return SurveySeries object */ public static SurveySeries createBranched122ForwardSurveyingSeriesWithSplays() { SurveySeries series = new SurveySeries( "Test" ); //Add test legs to series with splays for LRUD int fromStn = 1; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.58, 327.33, -0.57 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.94, 171.13, -6.41 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.50, 258.56, -34.18 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 3.89, 73.29, -51.63 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.91, 252.72, -4.04 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.80, 250.31, -35.24 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 2.44, 239.99, 47.81 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 4.50, 170.72, 19.68 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.46, 71.39, -4.30 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.54, 358.12, 82.08 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.94, 170.44, -79.46 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.45, 220.38, -6.59 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 1.63, 131.27, 20.13 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.37, 242.14, -5.73 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.36, 39.38, -82.79 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.17, 258.11, 84.02 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.5, 41, 2 ) ); //Branch from 2 stations back series.addLeg( TestHelper.createTestLeg( fromStn - 2, fromStn + 1, 5.02, 336.36, -13.85 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.41, 231.77, -3.06 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 3.73, 254.43, 80.33 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.54, 182.41, -84.02 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 3.19, 303.08, -33.11 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.53, 23.07, -5.56 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 4.46, 353.35, 80.60 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.45, 224.40, -78.95 ) ); return series; } /** * Creates a short linear survey series of 5 legs with splays measured for LRUD passage * dimension at each station. Alternate legs are measured forwards then backwards as * instrument reader leapfrogs station target setter (e.g. 1-2, 3-2, 3-4, 4-3 etc.) * * @return SurveySeries object */ public static SurveySeries createLinearLeapfrogSurveyingSeriesWithSplays() { SurveySeries series = new SurveySeries( "Test" ); //Add test legs to series with splays for LRUD int fromStn = 1; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.07, 194.15, 2 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.74, 16.15, -6 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.28, 227.27, 87 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.87, 46.77, -82 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 5.05, 279.15, -5.23 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.15, 217.28, -3 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.78, 34.79, 1 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.83, 16.27, 84 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.16, 111.26, -85 ) ); series.addLeg( TestHelper.createTestLeg( fromStn + 1, fromStn, 5.02, 156.26, 3.85 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 1.21, 231.77, 2 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.21, 45.17, -3 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.23, 254.43, 80 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.54, 182.41, -84 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 3.19, 303.38, -6 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.53, 228.49, -2 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.62, 60.07, -5 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.46, 353.35, 80 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.45, 224.40, -89 ) ); series.addLeg( TestHelper.createTestLeg( fromStn + 1, fromStn, 5.02, 206.42, 5.85 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 1.21, 251.77, 2 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.21, 45.17, -5 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.25, 254.45, 80 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 0.54, 182.41, -84 ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, 3.19, 297.57, -6 ) ); fromStn++; series.addLeg( TestHelper.createSplayLeg( fromStn, 0.53, 228.69, -2 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.62, 60.07, -5 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.66, 353.35, 80 ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, 1.65, 226.60, -89 ) ); return series; } /* int fromStn = 1; series.addLeg( TestHelper.createSplayLeg( fromStn, , , ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, , , ) ); series.addLeg( TestHelper.createSplayLeg( fromStn, , , ) ); series.addLeg( TestHelper.createTestLeg( fromStn, fromStn + 1, , , ) ); fromStn++; *FLAGS SPLAY 1 1-L 0.07 194.15 2 1 1-R 0.74 16.15 -6 1 1-U 1.28 227.27 87 1 1-D 0.87 46.77 -82 *FLAGS NOT SPLAY 1 2 5.05 279.35 -5.23 *FLAGS SPLAY 2 2-L 0.15 217.28 -3 2 2-R 0.78 34.79 1 2 2-U 0.83 16.27 84 2 2-D 1.16 111.26 -85 *FLAGS NOT SPLAY 2 3 5.02 336.36 -3.85 *FLAGS SPLAY 3 3-L 1.21 231.77 2 3 3-R 0.21 45.17 -3 3 3-U 1.23 254.43 80 3 3-D 0.54 182.41 -84 *FLAGS NOT SPLAY 3 4 3.19 303.08 -6 *FLAGS SPLAY 4 4-L 0.53 228.49 -2 4 4-R 1.62 60.07 -5 4 4-U 1.46 353.35 80 4 4-D 1.45 224.40 -89 *FLAGS NOT SPLAY 4 5 5.02 26.56 -5.85 *FLAGS SPLAY 5 5-L 1.21 251.77 2 5 5-R 0.21 45.17 -5 5 5-U 1.25 254.45 80 5 5-D 0.54 182.41 -84 *FLAGS NOT SPLAY 5 6 3.19 303.08 -6 *FLAGS SPLAY 6 6-L 0.53 228.69 -2 6 6-R 1.62 60.07 -5 6 6-U 1.66 353.35 80 6 6-D 1.65 226.60 -89 *FLAGS NOT SPLAY */ /** * Test for older (pre v8) JRE double rounding bug. Used to direct tests to older * results files to prevent tests failing on JREs older than v8 * * @return True if older JRE detected with double rounding bug present */ public static boolean jreRoundingBug() { boolean oldJRE = false; double testValue = 2.215; DecimalFormat formatter = new DecimalFormat("0.00"); String testRounding = formatter.format(testValue); if (testRounding.equalsIgnoreCase( "2.22" ) ) { oldJRE = true; } return oldJRE; } } CaveConverter_src/test/footleg/cavesurvey/regression/0000755000000000000000000000000013036467354022176 5ustar rootrootCaveConverter_src/test/footleg/cavesurvey/regression/DiffFiles.java0000644000000000000000000000626713034774020024674 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.regression; import java.io.File; import java.io.FileNotFoundException; import java.util.List; import footleg.cavesurvey.converter.CmdLineLogger; import footleg.cavesurvey.tools.UtilityFunctions; /** * File differencing class which checks the contents of two files for any difference. * Used for regressions tests. * * @author Footleg * @version 2017.01.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public final class DiffFiles { final static String FILES_IDENTICAL = "IDENTICAL"; public static String diffFiles(String referenceFile, String testFile) throws FileNotFoundException { String result = FILES_IDENTICAL; CmdLineLogger logger = new CmdLineLogger(); List original = UtilityFunctions.readTextFile( new File( referenceFile ), RunFileConverter.defaultCharset, false, null, logger ); List revised = UtilityFunctions.readTextFile( new File( testFile ), RunFileConverter.defaultCharset, false, null, logger ); //Throw exception if either file data array is zero length (as this indicates the file was not found) if ( original.size() == 0 ) { throw new FileNotFoundException("Reference data file '" + referenceFile + "' not found (or was empty)."); } if ( revised.size() == 0 ) { throw new FileNotFoundException("Output data file '" + revised + "' not found (or was empty)."); } int shortestFileLength = original.size(); if (revised.size() < shortestFileLength ) { shortestFileLength = revised.size(); } //Check for differences in file lines for (int i = 0; i < shortestFileLength; i++) { String ori = original.get(i); String rev = revised.get(i); if ( ori.equals( rev ) == false ) { //Found a difference, so report lines and exit loop result = "Files differ at line " + (i + 1) + ". Reference line: '" + original.get(i) + "'; Generated line: '" + revised.get(i) + "'."; break; } } //Check for different file lengths if no line differences found if ( ( original.size() != revised.size() ) && ( result.equals(FILES_IDENTICAL) ) ) { result = "Files are different lengths. " + "Reference file length: " + original.size() + "; Generated file length: " + revised.size() + "."; } return result; } } CaveConverter_src/test/footleg/cavesurvey/regression/PocketTopoToToporobotTest.java0000644000000000000000000001144413024330442030167 0ustar rootroot/** * Copyright (C) 2009-2016 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.regression; import static org.junit.Assert.*; import java.io.FileNotFoundException; import java.text.ParseException; import org.junit.Test; import footleg.cavesurvey.converter.CaveConverter.CmdlineOpt; import footleg.cavesurvey.converter.CaveConverter.CmdlineSplaysOpt; import footleg.cavesurvey.tools.TestHelper; /** * Regression test class which runs data file conversions and compares the output with reference * files. Tests pass if the output file is identical to the reference file. A file name prefix * is given as the argument for each test conversion. The test will look for an input file with * this prefix and the suffix '_in.txt' and compare the output with a reference file with * this prefix and the suffix '_ref.text'. * * @author Footleg * @version 2016.12.14 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class PocketTopoToToporobotTest { @Test public void testPocketTopoToToporobotGourAven() throws ParseException, FileNotFoundException { //Convert PocketTopo text export file to Toporobot format data String fileCompare = RunFileConverter.convertPocketTopoToToporobot( "GourAven", CmdlineSplaysOpt.Default, CmdlineOpt.T, RunFileConverter.defaultCharset ); assertEquals("Comparing GourAven toporobot file from PocketTopo with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testPocketTopoToToporobotHSC() throws ParseException, FileNotFoundException { //Convert PocketTopo text export file to Toporobot format data String fileCompare = RunFileConverter.convertPocketTopoToToporobot( "HSC", CmdlineSplaysOpt.Default, CmdlineOpt.T, RunFileConverter.defaultCharset ); assertEquals("Comparing HSC toporobot file from PocketTopo with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testPocketTopoToToporobotStomps() throws ParseException, FileNotFoundException { //Convert PocketTopo text export file to Toporobot format data String fileCompare = RunFileConverter.convertPocketTopoToToporobot( "Stomps", CmdlineSplaysOpt.Default, CmdlineOpt.T, RunFileConverter.defaultCharset ); assertEquals("Comparing Stomps toporobot file from PocketTopo with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testPocketTopoToToporobotUzuGour() throws ParseException, FileNotFoundException { //Convert PocketTopo text export file to Toporobot format data String fileCompare = RunFileConverter.convertPocketTopoToToporobot( "Uzu-Gour", CmdlineSplaysOpt.Default, CmdlineOpt.T, RunFileConverter.defaultCharset ); assertEquals("Comparing Uzu-Gour toporobot file from PocketTopo with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testPocketTopoToToporobotSloppy2ZigZags() throws ParseException, FileNotFoundException { //Test for older JRE as test result is different due to JRE rounding bug boolean oldJRE = TestHelper.jreRoundingBug(); RunFileConverter.setOldJRE(oldJRE); //Convert PocketTopo text export file to Toporobot format data String fileCompare = RunFileConverter.convertPocketTopoToToporobot( "Sloppy2ZigZags", CmdlineSplaysOpt.Default, CmdlineOpt.T, RunFileConverter.defaultCharset ); //Reset oldJRE flag for subsequent tests RunFileConverter.setOldJRE(false); assertEquals("Comparing Sloppy2ZigZags toporobot file from PocketTopo with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testPocketTopoToToporobotTripComment() throws ParseException, FileNotFoundException { //Convert PocketTopo text export file to Toporobot format data String fileCompare = RunFileConverter.convertPocketTopoToToporobot( "TripComment", CmdlineSplaysOpt.Default, CmdlineOpt.T, RunFileConverter.defaultCharset ); assertEquals("Comparing TripComment toporobot file from PocketTopo with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } } CaveConverter_src/test/footleg/cavesurvey/regression/SurvexToSurvexTest.java0000644000000000000000000001534013035700210026674 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.regression; import static org.junit.Assert.*; import java.io.FileNotFoundException; import java.text.ParseException; import org.junit.Test; import footleg.cavesurvey.converter.CaveConverter.CmdlineOpt; import footleg.cavesurvey.converter.CaveConverter.CmdlineSplaysOpt; /** * Regression test class which runs data file conversions and compares the output with reference * files. Tests pass if the output file is identical to the reference file. A file name prefix * is given as the argument for each test conversion. The test will look for an input file with * this prefix and the suffix '_in.svx' and compare the output with a reference file with * this prefix and the suffix '_ref.svx'. * * @author Footleg * @version 2017.01.12 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class SurvexToSurvexTest { @Test public void testNightMare() throws ParseException, FileNotFoundException { //Read and Write Survex format data String fileCompare = RunFileConverter.convertSurvexToSurvex( "NightMare", CmdlineSplaysOpt.Default, CmdlineOpt.T, RunFileConverter.defaultCharset ); assertEquals("Comparing NightMare Survex file from Survex with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testCalibrations() throws ParseException, FileNotFoundException { //Read and Write Survex format data String fileCompare = RunFileConverter.convertSurvexToSurvex( "calibrations", CmdlineSplaysOpt.Default, CmdlineOpt.T, RunFileConverter.defaultCharset ); assertEquals("Comparing calibrations Survex file from Survex with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testDataOrder() throws ParseException, FileNotFoundException { //Read and Write Survex format data String fileCompare = RunFileConverter.convertSurvexToSurvex( "survex_different_data_order", CmdlineSplaysOpt.Default, CmdlineOpt.F, RunFileConverter.defaultCharset ); assertEquals("Comparing variations in data order Survex file from Survex with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testNestedDataOrder() throws ParseException, FileNotFoundException { //Read and Write Survex format data String fileCompare = RunFileConverter.convertSurvexToSurvex( "survex_data_order_nested", CmdlineSplaysOpt.Default, CmdlineOpt.F, RunFileConverter.defaultCharset ); assertEquals("Comparing variations in nested data order Survex file from Survex with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testFlags() throws ParseException, FileNotFoundException { //Read and Write Survex format data String fileCompare = RunFileConverter.convertSurvexToSurvex( "flags", CmdlineSplaysOpt.Default, CmdlineOpt.F, RunFileConverter.defaultCharset ); assertEquals("Comparing flags Survex file from Survex with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testNestedFlags() throws ParseException, FileNotFoundException { //Read and Write Survex format data String fileCompare = RunFileConverter.convertSurvexToSurvex( "nested_series_flags", CmdlineSplaysOpt.Named, CmdlineOpt.F, RunFileConverter.defaultCharset ); assertEquals("Comparing nested flags Survex file from Survex with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testNosurvey() throws ParseException, FileNotFoundException { //Read and Write Survex format data String fileCompare = RunFileConverter.convertSurvexToSurvex( "nosurvey", CmdlineSplaysOpt.Default, CmdlineOpt.F, RunFileConverter.defaultCharset ); assertEquals("Comparing nosurvey Survex file from Survex with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testAnonymousBlocks() throws ParseException, FileNotFoundException { //Read and Write Survex format data String fileCompare = RunFileConverter.convertSurvexToSurvex( "anonymous_blocks", CmdlineSplaysOpt.Named, CmdlineOpt.F, RunFileConverter.defaultCharset ); assertEquals("Comparing anonymous blocks Survex file from Survex with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testUnits() throws ParseException, FileNotFoundException { //Read and Write Survex format data using different units representations String fileCompare = RunFileConverter.convertSurvexToSurvex( "units_test", CmdlineSplaysOpt.Default, CmdlineOpt.F, RunFileConverter.defaultCharset ); assertEquals("Comparing all units Survex file from Survex with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testSurvexEverything() throws ParseException, FileNotFoundException { //Read and Write Survex format data containing everything a Survex file can contain String fileCompare = RunFileConverter.convertSurvexToSurvex( "survex_everything", CmdlineSplaysOpt.Anon, CmdlineOpt.F, RunFileConverter.defaultCharset ); assertEquals("Comparing Survex file from Survex file containing everything survex supports with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testSwilEntNosplays() throws ParseException, FileNotFoundException { //Read and Write Survex format data, removing splays String fileCompare = RunFileConverter.convertUsingCmdLine("SwilEnt", 's', 's', "nosplays lrud"); assertEquals("Comparing SwilEnt Survex file from Survex with reference, removing splays.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testSwilEntSplaysLRUD() throws ParseException, FileNotFoundException { //Read and Write Survex format data, removing splays String fileCompare = RunFileConverter.convertUsingCmdLine("SwilEnt", 's', 's', "splays lrud"); assertEquals("Comparing SwilEnt Survex file from Survex with reference, removing splays.", DiffFiles.FILES_IDENTICAL, fileCompare); } } CaveConverter_src/test/footleg/cavesurvey/regression/SurvexToToporobotTest.java0000644000000000000000000000701513024330660027375 0ustar rootroot/** * Copyright (C) 2009-2016 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.regression; import static org.junit.Assert.*; import java.io.FileNotFoundException; import java.text.ParseException; import org.junit.Test; import footleg.cavesurvey.converter.CaveConverter.CmdlineOpt; import footleg.cavesurvey.converter.CaveConverter.CmdlineSplaysOpt; /** * Regression test class which runs data file conversions and compares the output with reference * files. Tests pass if the output file is identical to the reference file. A file name prefix * is given as the argument for each test conversion. The test will look for an input file with * this prefix and the suffix '_in.svx' and compare the output with a reference file with * this prefix and the suffix '_ref.text'. * * @author Footleg * @version 2016.12.14 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class SurvexToToporobotTest { @Test public void testCrossoverCmdline() throws ParseException, FileNotFoundException { //Convert Survex data file to Toporobot text format using default settings and test result String fileCompare = RunFileConverter.convertUsingCmdLine("Crossover", 's', 't', ""); assertEquals("Comparing Crossover Toporobot file from Survex with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testFlagsSplaysCmdline() throws ParseException, FileNotFoundException { //Convert Survex data file to Toporobot text format retaining splays and test result String fileCompare = RunFileConverter.convertUsingCmdLine("flags", 's', 't', "splays"); assertEquals("Comparing Flags Toporobot file from Survex with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testSwilEnt() throws ParseException, FileNotFoundException { //Convert Survex data file to Toporobot text format removing splays but generating LRUD data from them and test result String fileCompare = RunFileConverter.convertSurvexToTopoRobot( "SwilEnt", CmdlineSplaysOpt.None, CmdlineOpt.T, RunFileConverter.defaultCharset ); assertEquals("Comparing SwilEnt Toporobot file from Survex with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testCaseInsensitive() throws ParseException, FileNotFoundException { //Convert Survex data file to Toporobot text format removing splays but generating LRUD data from them and test result String fileCompare = RunFileConverter.convertSurvexToTopoRobot( "CaseInsensitive", CmdlineSplaysOpt.None, CmdlineOpt.T, RunFileConverter.defaultCharset ); assertEquals("Comparing CaseInsensitive Toporobot file from Survex with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } } CaveConverter_src/test/footleg/cavesurvey/regression/CompassToSurvexTest.java0000644000000000000000000001015113024330670027007 0ustar rootroot/** * Copyright (C) 2009-2016 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.regression; import static org.junit.Assert.*; import java.io.FileNotFoundException; import java.text.ParseException; import org.junit.Test; import footleg.cavesurvey.converter.CaveConverter.CmdlineOpt; import footleg.cavesurvey.converter.CaveConverter.CmdlineSplaysOpt; /** * Regression test class which runs data file conversions and compares the output with reference * files. Tests pass if the output file is identical to the reference file. A file name prefix * is given as the argument for each test conversion. The test will look for an input file with * this prefix and the suffix '_in.dxf' and compare the output with a reference file with * this prefix and the suffix '_ref.dxf'. * * @author Footleg * @version 2016.12.14 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class CompassToSurvexTest { @Test public void testCompassToSurvexMinimal() throws ParseException, FileNotFoundException { //Convert Compass file with minimal length comments and flags to Survex format data String fileCompare = RunFileConverter.convertCompassToSurvex( "Minimal", CmdlineSplaysOpt.Default, CmdlineOpt.F, RunFileConverter.defaultCharset ); assertEquals("Comparing Minimal survex file from Compass with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testCompassToSurvexCalTest() throws ParseException, FileNotFoundException { //Convert Compass file with minimal length comments and flags to Survex format data String fileCompare = RunFileConverter.convertCompassToSurvex( "CalTest", CmdlineSplaysOpt.Default, CmdlineOpt.F, RunFileConverter.defaultCharset ); assertEquals("Comparing CalTest survex file from Compass with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testCompassToSurvexOldHeadersTest() throws ParseException, FileNotFoundException { //Convert Compass file with minimal length comments and flags to Survex format data String fileCompare = RunFileConverter.convertCompassToSurvex( "OldCompassHeaders", CmdlineSplaysOpt.Default, CmdlineOpt.F, RunFileConverter.defaultCharset ); assertEquals("Comparing OldCompassHeaders survex file from Compass with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testCompassToSurvexAwkwardCharsANSITest() throws ParseException, FileNotFoundException { //Convert ANSI format Compass file with extended character set station names to Survex format data String fileCompare = RunFileConverter.convertCompassToSurvex( "AwkwardCharsANSI", CmdlineSplaysOpt.Default, CmdlineOpt.F, "Cp1252" ); assertEquals("Comparing AwkwardChars survex file from ANSI Compass with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testCompassToSurvexAwkwardCharsUTF8Test() throws ParseException, FileNotFoundException { //Convert UTF8 format Compass file with extended character set station names to Survex format data String fileCompare = RunFileConverter.convertCompassToSurvex( "AwkwardCharsUTF8", CmdlineSplaysOpt.Default, CmdlineOpt.F, "UTF8" ); assertEquals("Comparing AwkwardChars survex file from UTF8 Compass with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } } CaveConverter_src/test/footleg/cavesurvey/regression/DxfToSurvexTest.java0000644000000000000000000000524413024330314026125 0ustar rootroot/** * Copyright (C) 2009-2016 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.regression; import static org.junit.Assert.*; import java.io.FileNotFoundException; import java.text.ParseException; import org.junit.Test; import footleg.cavesurvey.converter.CaveConverter.CmdlineOpt; import footleg.cavesurvey.converter.CaveConverter.CmdlineSplaysOpt; /** * Regression test class which runs data file conversions and compares the output with reference * files. Tests pass if the output file is identical to the reference file. A file name prefix * is given as the argument for each test conversion. The test will look for an input file with * this prefix and the suffix '_in.dxf' and compare the output with a reference file with * this prefix and the suffix '_ref.dxf'. * * @author Footleg * @version 2016.12.14 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class DxfToSurvexTest { @Test public void testDxfToSurvexMares3d() throws ParseException, FileNotFoundException { //Convert DXF file generated from a Survex .3d file to Survex format data String fileCompare = RunFileConverter.convertDxfToSurvex( "2649_Mares_from3d", CmdlineSplaysOpt.Default, CmdlineOpt.F, RunFileConverter.defaultCharset ); assertEquals("Comparing 2649_Mares_from3d survex file from DXF with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testDxfToSurvexMaresFromAven() throws ParseException, FileNotFoundException { //Convert DXF file saved from the Aven viewer to Survex format data String fileCompare = RunFileConverter.convertDxfToSurvex( "2649_Mares_fromaven", CmdlineSplaysOpt.Default, CmdlineOpt.F, RunFileConverter.defaultCharset ); assertEquals("Comparing 2649_Mares_fromaven survex file from DXF with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } } CaveConverter_src/test/footleg/cavesurvey/regression/DxfToTopoRobotTest.java0000644000000000000000000000527613024330342026566 0ustar rootroot/** * Copyright (C) 2009-2016 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.regression; import static org.junit.Assert.*; import java.io.FileNotFoundException; import java.text.ParseException; import org.junit.Test; import footleg.cavesurvey.converter.CaveConverter.CmdlineOpt; import footleg.cavesurvey.converter.CaveConverter.CmdlineSplaysOpt; /** * Regression test class which runs data file conversions and compares the output with reference * files. Tests pass if the output file is identical to the reference file. A file name prefix * is given as the argument for each test conversion. The test will look for an input file with * this prefix and the suffix '_in.dxf' and compare the output with a reference file with * this prefix and the suffix '_ref.text'. * * @author Footleg * @version 2016.12.14 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class DxfToTopoRobotTest { @Test public void testDxfToTopoRobotMares3d() throws ParseException, FileNotFoundException { //Convert DXF file generated from a Survex .3d file to Toporobot format data String fileCompare = RunFileConverter.convertDxfToTopoRobot( "2649_Mares_from3d", CmdlineSplaysOpt.Default, CmdlineOpt.F, RunFileConverter.defaultCharset ); assertEquals("Comparing 2649_Mares_from3d TopoRobot file from DXF with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testDxfToTopoRobotMaresFromAven() throws ParseException, FileNotFoundException { //Convert DXF file saved from the Aven viewer to Toporobot format data String fileCompare = RunFileConverter.convertDxfToTopoRobot( "2649_Mares_fromaven", CmdlineSplaysOpt.Default, CmdlineOpt.F, RunFileConverter.defaultCharset ); assertEquals("Comparing 2649_Mares_fromaven TopoRobot file from DXF with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } } CaveConverter_src/test/footleg/cavesurvey/regression/RunFileConverter.java0000644000000000000000000002761613034775116026305 0ustar rootroot/** * Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.regression; import java.io.FileNotFoundException; import java.text.ParseException; import footleg.cavesurvey.converter.CaveConverter; import footleg.cavesurvey.converter.CaveConverter.CmdlineOpt; import footleg.cavesurvey.converter.CaveConverter.CmdlineSplaysOpt; import footleg.cavesurvey.converter.CaveConverter.SurveyDataInputFormats; import footleg.cavesurvey.converter.CaveConverter.SurveyDataOutputFormats; import footleg.cavesurvey.converter.CmdLineLogger; import footleg.cavesurvey.tools.UtilityFunctions; /** * Regression helper class which runs data file conversions and compares the output with reference * files. Tests pass if the output file is identical to the reference file. A file name prefix * is given as the argument for each test conversion. The test will look for an input file with * this prefix and the suffix '_in._extn_' and compare the output with a reference file with * this prefix and the suffix '_ref._extn_' (where _extn_ is the appropriate file extension for * the file format. * * @author Footleg * @version 2017.01.09 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public final class RunFileConverter { final static String refFilesLocation = "./test/data/regression/"; final static String genFilesLocation = "./build/test/data/"; final static String defaultCharset = "UTF8"; private static boolean oldJRE = false; private static final char compassFormat = 'c'; private static final char dxfFormat = 'd'; private static final char pocketTopoFormat = 'p'; private static final char survexFormat = 's'; private static final char toporobotFormat = 't'; public static void setOldJRE(boolean oldJRE) { RunFileConverter.oldJRE = oldJRE; } public static String convertCompassToSurvex( String filePrefix, CmdlineSplaysOpt splaysOpt, CmdlineOpt genLRUDOpt, String charSetEncoding ) throws ParseException, FileNotFoundException { //Compare resulting file with expected file String fileCompare = convertFile( filePrefix, SurveyDataInputFormats.Compass, SurveyDataOutputFormats.Survex, splaysOpt, genLRUDOpt, charSetEncoding, new CmdLineLogger() ); return fileCompare; } public static String convertDxfToSurvex( String filePrefix, CmdlineSplaysOpt splaysOpt, CmdlineOpt genLRUDOpt, String charSetEncoding ) throws ParseException, FileNotFoundException { //Compare resulting file with expected file String fileCompare = convertFile( filePrefix, SurveyDataInputFormats.DXF, SurveyDataOutputFormats.Survex, splaysOpt, genLRUDOpt, charSetEncoding, new CmdLineLogger() ); return fileCompare; } public static String convertSurvexToSurvex( String filePrefix, CmdlineSplaysOpt splaysOpt, CmdlineOpt genLRUDOpt, String charSetEncoding ) throws ParseException, FileNotFoundException { //Compare resulting file with expected file String fileCompare = convertFile( filePrefix, SurveyDataInputFormats.Survex, SurveyDataOutputFormats.Survex, splaysOpt, genLRUDOpt, charSetEncoding, new CmdLineLogger() ); return fileCompare; } public static String convertSurvexToTopoRobot( String filePrefix, CmdlineSplaysOpt splaysOpt, CmdlineOpt genLRUDOpt, String charSetEncoding ) throws ParseException, FileNotFoundException { //Compare resulting file with expected file String fileCompare = convertFile( filePrefix, SurveyDataInputFormats.Survex, SurveyDataOutputFormats.Toporobot, splaysOpt, genLRUDOpt, charSetEncoding, new CmdLineLogger() ); return fileCompare; } public static String convertDxfToTopoRobot( String filePrefix, CmdlineSplaysOpt splaysOpt, CmdlineOpt genLRUDOpt, String charSetEncoding ) throws ParseException, FileNotFoundException { //Compare resulting file with expected file String fileCompare = convertFile( filePrefix, SurveyDataInputFormats.DXF, SurveyDataOutputFormats.Toporobot, splaysOpt, genLRUDOpt, charSetEncoding, new CmdLineLogger() ); return fileCompare; } public static String convertPocketTopoToSurvex( String filePrefix, CmdlineSplaysOpt splaysOpt, CmdlineOpt genLRUDOpt, String charSetEncoding ) throws ParseException, FileNotFoundException { //Compare resulting file with expected file String fileCompare = convertFile( filePrefix, SurveyDataInputFormats.PocketTopo, SurveyDataOutputFormats.Survex, splaysOpt, genLRUDOpt, charSetEncoding, new CmdLineLogger() ); return fileCompare; } public static String convertPocketTopoToToporobot( String filePrefix, CmdlineSplaysOpt splaysOpt, CmdlineOpt genLRUDOpt, String charSetEncoding ) throws ParseException, FileNotFoundException { //Compare resulting file with expected file String fileCompare = convertFile( filePrefix, SurveyDataInputFormats.PocketTopo, SurveyDataOutputFormats.Toporobot, splaysOpt, genLRUDOpt, charSetEncoding, new CmdLineLogger() ); return fileCompare; } private static String generateFileSuffix( SurveyDataInputFormats format ) { String fileSuffix = ""; if( format == SurveyDataInputFormats.PocketTopo ) { fileSuffix = ".txt"; } else if( format == SurveyDataInputFormats.DXF ) { fileSuffix = ".dxf"; } else if( format == SurveyDataInputFormats.Survex ) { fileSuffix = ".svx"; } else if( format == SurveyDataInputFormats.Compass ) { fileSuffix = ".dat"; } else { fileSuffix = ".txt"; } return fileSuffix; } private static String generateFileSuffix( SurveyDataOutputFormats format ) { String fileSuffix = ""; if( format == SurveyDataOutputFormats.Survex ) { fileSuffix = ".svx"; } else if( format == SurveyDataOutputFormats.Toporobot ) { fileSuffix = ".text"; } else { fileSuffix = ".svx"; } return fileSuffix; } private static String generateInputFilename( String filePrefix, SurveyDataInputFormats fromFormat ) { return refFilesLocation + filePrefix + "_in" + generateFileSuffix( fromFormat ); } private static char letterCodeFromInputDataFormat( SurveyDataInputFormats format ) { char letterCode = 'x'; //Invalid code switch ( format) { case Compass: letterCode = compassFormat; break; case DXF: letterCode = dxfFormat; break; case PocketTopo: letterCode = pocketTopoFormat; break; case Survex: letterCode = survexFormat; break; } return letterCode; } private static char letterCodeFromOutputDataFormat( SurveyDataOutputFormats format ) { char letterCode = 'x'; //Invalid code switch ( format) { case Survex: letterCode = survexFormat; break; case Toporobot: letterCode = toporobotFormat; break; } return letterCode; } private static String generateFilename( String location, String filePrefix, SurveyDataInputFormats fromFormat, SurveyDataOutputFormats toFormat, CmdlineSplaysOpt splaysOpt, String suffix ) { String splayOptString = ""; if ( splaysOpt == CmdlineSplaysOpt.Named ) { splayOptString = "_spl"; } else if ( splaysOpt == CmdlineSplaysOpt.None ) { splayOptString = "_nsp"; } else if ( splaysOpt == CmdlineSplaysOpt.Anon ) { splayOptString = "_asp"; } return location + filePrefix + "_" + letterCodeFromInputDataFormat( fromFormat ) + letterCodeFromOutputDataFormat( toFormat ) + splayOptString + "_" + suffix + generateFileSuffix( toFormat ); } private static String generateRefFilename( String filePrefix, SurveyDataInputFormats fromFormat, SurveyDataOutputFormats toFormat, CmdlineSplaysOpt splaysOpt, boolean oldJRE ) { String suffix = "ref"; if ( oldJRE ) { suffix += "7"; } return generateFilename( refFilesLocation, filePrefix, fromFormat, toFormat, splaysOpt, suffix ); } private static String generateOutputFilename( String filePrefix, SurveyDataInputFormats fromFormat, SurveyDataOutputFormats toFormat, CmdlineSplaysOpt splaysOpt ) { return generateFilename( genFilesLocation, filePrefix, fromFormat, toFormat, splaysOpt, "testgen" ); } /** * Sets the date used as 'today' in conversions so that output files match reference files * with dates in them */ private static void setDateForConversions() { //Set date to a fixed date rather than the actual date at runtime so that test output uses a known date try { CaveConverter.setToday( UtilityFunctions.stringToDate("16/08/2012 13:14:15", "dd/MM/yyyy HH:mm:ss") ); } catch (ParseException e) { //Just print out error (will never happen with hard coded arguments used in method call above) e.printStackTrace(); } } private static String convertFile( String filePrefix, SurveyDataInputFormats fromFormat, SurveyDataOutputFormats toFormat, CmdlineSplaysOpt splaysOpt, CmdlineOpt genLRUDOpt, String charSetEncoding, CmdLineLogger logger ) throws ParseException, FileNotFoundException { String inputFile = generateInputFilename(filePrefix, fromFormat); String outputFile = generateOutputFilename(filePrefix, fromFormat, toFormat, splaysOpt); String referenceFile = generateRefFilename(filePrefix, fromFormat, toFormat, splaysOpt, oldJRE); setDateForConversions(); //Do file conversion CaveConverter.convertFile(inputFile, outputFile, fromFormat, toFormat, splaysOpt, genLRUDOpt, charSetEncoding, logger); //Compare resulting file with expected file String fileCompare = DiffFiles.diffFiles( referenceFile, outputFile ); return fileCompare; } public static String convertUsingCmdLine( String filePrefix, char fromFormatCode, char toFormatCode, String options ) throws ParseException, FileNotFoundException { SurveyDataInputFormats fromFormat = UtilityFunctions.inputDataFormatFromLetterCode( fromFormatCode ); SurveyDataOutputFormats toFormat = UtilityFunctions.outputDataFormatFromLetterCode( toFormatCode ); String inputFile = generateInputFilename(filePrefix, fromFormat); String outputFile = generateOutputFilename(filePrefix, fromFormat, toFormat, CmdlineSplaysOpt.None); String referenceFile = generateRefFilename(filePrefix, fromFormat, toFormat, CmdlineSplaysOpt.None, oldJRE); //Set file suffix from command line parameters String fileSuffix = "_cmd"; if ( options.contains("nosplays") ) { fileSuffix += "n"; } else if ( options.contains("splays") ) { fileSuffix += "s"; } if ( options.contains("lrud") ) { fileSuffix += "l"; } //Change output and ref filenames to cmdline suffixes outputFile = outputFile.replace("_nsp", fileSuffix); referenceFile = referenceFile.replace("_nsp", fileSuffix); setDateForConversions(); String[] opts = options.split(" "); int numArgs = 4 + opts.length; String[] args = new String[numArgs]; args[0] = inputFile; args[1] = outputFile; args[2] = "" + letterCodeFromInputDataFormat( fromFormat ); args[3] = "" + letterCodeFromOutputDataFormat( toFormat ); for (int iArg = 0; iArg < opts.length; iArg++ ) { args[4 + iArg] = opts[iArg]; } CaveConverter.main(args); //Compare resulting file with expected file String fileCompare = DiffFiles.diffFiles( referenceFile, outputFile ); return fileCompare; } } CaveConverter_src/test/footleg/cavesurvey/regression/PocketTopoToSurvexTest.java0000644000000000000000000001652013024330404027472 0ustar rootroot/** * Copyright (C) 2009-2016 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) * * This file is part of Cave Converter. * * Cave Converter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cave Converter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cave Converter. If not, see . */ package footleg.cavesurvey.regression; import static org.junit.Assert.*; import java.io.FileNotFoundException; import java.text.ParseException; import org.junit.Test; import footleg.cavesurvey.converter.CaveConverter.CmdlineOpt; import footleg.cavesurvey.converter.CaveConverter.CmdlineSplaysOpt; import footleg.cavesurvey.regression.RunFileConverter; import footleg.cavesurvey.tools.TestHelper; /** * Regression test class which runs data file conversions and compares the output with reference * files. Tests pass if the output file is identical to the reference file. A file name prefix * is given as the argument for each test conversion. The test will look for an input file with * this prefix and the suffix '_in.txt' and compare the output with a reference file with * this prefix and the suffix '_ref.svx'. * * @author Footleg * @version 2016.12.14 (ISO 8601 YYYY.MM.DD) * @since 1.6 (The Java version used) */ public class PocketTopoToSurvexTest { @Test public void testPocketTopoToSurvexGourAven() throws ParseException, FileNotFoundException { //Test for older JRE as test result is different due to JRE rounding bug boolean oldJRE = TestHelper.jreRoundingBug(); RunFileConverter.setOldJRE(oldJRE); //Convert PocketTopo text export file to Survex format data String fileCompare = RunFileConverter.convertPocketTopoToSurvex( "GourAven", CmdlineSplaysOpt.Default, CmdlineOpt.T, RunFileConverter.defaultCharset ); //Reset oldJRE flag for subsequent tests RunFileConverter.setOldJRE(false); assertEquals("Comparing GourAven survex file from PocketTopo with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testPocketTopoToSurvexHSC() throws ParseException, FileNotFoundException { //Convert PocketTopo text export file to Survex format data String fileCompare = RunFileConverter.convertPocketTopoToSurvex( "HSC", CmdlineSplaysOpt.Default, CmdlineOpt.T, RunFileConverter.defaultCharset ); assertEquals("Comparing HSC survex file from PocketTopo with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testPocketTopoToSurvexStomps() throws ParseException, FileNotFoundException { //Test for older JRE as test result is different due to JRE rounding bug boolean oldJRE = TestHelper.jreRoundingBug(); RunFileConverter.setOldJRE(oldJRE); //Convert PocketTopo text export file to Survex format data String fileCompare = RunFileConverter.convertPocketTopoToSurvex( "Stomps", CmdlineSplaysOpt.Default, CmdlineOpt.T, RunFileConverter.defaultCharset ); //Reset oldJRE flag for subsequent tests RunFileConverter.setOldJRE(false); assertEquals("Comparing Stomps survex file from PocketTopo with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testPocketTopoToSurvexUzuGour() throws ParseException, FileNotFoundException { //Convert PocketTopo text export file to Survex format data String fileCompare = RunFileConverter.convertPocketTopoToSurvex( "Uzu-Gour", CmdlineSplaysOpt.Default, CmdlineOpt.T, RunFileConverter.defaultCharset ); assertEquals("Comparing Uzu-Gour survex file from PocketTopo with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testPocketTopoToSurvexSwil20120909() throws ParseException, FileNotFoundException { //Test for older JRE as test result is different due to JRE rounding bug boolean oldJRE = TestHelper.jreRoundingBug(); RunFileConverter.setOldJRE(oldJRE); //Convert PocketTopo text export file to Survex format data String fileCompare = RunFileConverter.convertPocketTopoToSurvex( "Swil20120909", CmdlineSplaysOpt.Default, CmdlineOpt.T, RunFileConverter.defaultCharset ); //Reset oldJRE flag for subsequent tests RunFileConverter.setOldJRE(false); assertEquals("Comparing Swil20120909 survex file from PocketTopo with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testPocketTopoToSurvexSloppy2ZigZags() throws ParseException, FileNotFoundException { //Test for older JRE as test result is different due to JRE rounding bug boolean oldJRE = TestHelper.jreRoundingBug(); RunFileConverter.setOldJRE(oldJRE); //Convert PocketTopo text export file to Survex format data String fileCompare = RunFileConverter.convertPocketTopoToSurvex( "Sloppy2ZigZags", CmdlineSplaysOpt.Default, CmdlineOpt.T, RunFileConverter.defaultCharset ); //Reset oldJRE flag for subsequent tests RunFileConverter.setOldJRE(false); assertEquals("Comparing Sloppy2ZigZags survex file from PocketTopo with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testPocketTopoToSurvexT_LRUD() throws ParseException, FileNotFoundException { //Test for older JRE as test result is different due to JRE rounding bug boolean oldJRE = TestHelper.jreRoundingBug(); RunFileConverter.setOldJRE(oldJRE); //Convert PocketTopo text export file to Survex format data /* This was a particularly difficult case for LRUD generation in Survex as reverse legs get put * into a passage data block after the first leg in the passage data was forwards, so the rest * of the block got built with all the LRUD backwards. This case is now fixed and it detects the * 2nd leg going into the block does not follow the leg already added and put it before that leg * in the block, resulting the data being in the correct order. */ String fileCompare = RunFileConverter.convertPocketTopoToSurvex( "T_LRUD", CmdlineSplaysOpt.Default, CmdlineOpt.T, RunFileConverter.defaultCharset ); //Reset oldJRE flag for subsequent tests RunFileConverter.setOldJRE(false); assertEquals("Comparing T_LRUD survex file from PocketTopo with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } @Test public void testPocketTopoToSurvexTripComment() throws ParseException, FileNotFoundException { //Test for older JRE as test result is different due to JRE rounding bug boolean oldJRE = TestHelper.jreRoundingBug(); RunFileConverter.setOldJRE(oldJRE); //Convert PocketTopo text export file to Survex format data String fileCompare = RunFileConverter.convertPocketTopoToSurvex( "TripComment", CmdlineSplaysOpt.Default, CmdlineOpt.T, RunFileConverter.defaultCharset ); //Reset oldJRE flag for subsequent tests RunFileConverter.setOldJRE(false); assertEquals("Comparing TripComment survex file from PocketTopo with reference.", DiffFiles.FILES_IDENTICAL, fileCompare); } } CaveConverter_src/README0000644000000000000000000000651113036410650014052 0ustar rootrootCave Converter -------------- Copyright (C) 2009-2017 Paul Fretwell - aka 'Footleg' (drfootleg@gmail.com) Cave Converter is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Cave Converter is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Cave Converter. If not, see . ------------------------------------------------------------------------------- Building from Source -------------------- Cave Converter can be built from the Java source code using the provided ant build script. But first you will need to download some dependencies required to build the source, run the unit tests and generate code coverage reports for the tests. These dependencies need to be placed in folders with the following names two levels higher in your directory hierarchy than the folder containing the build.xml ant script: cobertura-2.1.1 Cobertura can be downloaded from http://cobertura.sourceforge.net/ JUnit 4.11 libraries are included in the Cobertura download so no longer need to be downloaded separately to compile Cave Converter. The cobertura zip file downloaded can be unzipped to create the directory structure required. The folder structure should look like this: cobertura-2.1.1 (unpack the contents of cobertura tar file in here) dev CaveConverter_src (contents of CaveConverter_src.zip file) (Note: The folders 'java_dev', 'dev' and 'CaveConverter_src' can have any names you want.) Once the dependencies are in place (and you have Java JDK 7 or later and Apache Ant 1.8 or later configured in your environment), you can run the following ant commands from a command prompt in the CaveConverter_src folder where you unzipped the source. NOTE: To enable the ant script to work on Linux (Debian) with Open-JDK it was necessary to define the env.JAVA_HOME property in the build.properties file. This was not necessary when building on a Windows machine where the system environment variable JAVA_HOME was already pointing to a JDK. To build on Debian I added this line to build.properties: env.JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64/ To build and run all tests, just type: ant To just build the release distribution: ant zip This should generate the jar file in a build folder, and a complete distributable zip file in a dist folder. To run full unit and regression tests, and generate code coverage reports: ant coverage.regressions To generate the Javadoc: ant javadoc To do a full clean build and generate everything (this is the default target): ant all Other primary ant targets can be listed by running: ant -p Note that some internal targets will not work with the source distribution as they are related to code in development which is not yet functional :-) This source package has been put together with the full code needed to build the command line cave converter tool using OpenJDK7 CaveConverter_src/doc/0000755000000000000000000000000013036510056013735 5ustar rootrootCaveConverter_src/doc/COPYING0000644000000000000000000010451312621447114014777 0ustar rootroot GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . CaveConverter_src/doc/readme.html0000644000000000000000000002311113036414322016055 0ustar rootroot Footleg's Cave Converter

Cave Converter

Version: 20170114

Cave Converter is a program for converting cave survey data from one format into another. It was originally written as a tool to enable Survex format survey data to be generated from PocketTopo data collected underground on a PDA, but it has evolved to support a number of useful conversions.

Currently Cave Converter is able to read the following survey data file formats:

  • Compass - The data file format generated by the Compass cave survey software.
  • Survex - Supports normal, diving and nosurvey format data (in any supported units and field orders). Multi-file reading now supported (but ignores FIX commands currently).
  • PocketTopo text export - Text export option in PocketTopo menu.
  • DXF - Reads Lines and Polylines as survey centreline data.

It can convert to the following formats:

  • Toporobot - For using to import data into PocketTopo software on a PDA.
  • Survex - Converts to metric units currently, and entire series will be output in same field order (matching order of fields from last leg per series from input file).

Cave Converter is written in Java and consists of a command line tool and a windowed application (new in 2015). You will need a Java runtime (v7 or later) installed on your computer to run the converter. In order to run the graphical interface, unzip the download into any folder on your computer, and double click on the CaveConverterGUI.jar to launch the application.

Download the latest version here: CaveConverter.zip

The source code can be downloaded from the Cave Converter source code page.

Older releases can be downloaded from the release archive page.

Cave Converter is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Cave Converter is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

If you want to run the command line tool, then see the command line reference page.

Features and Examples of Usage

A full list of all the new features in each release can be found in the change log file in the download, but this page contains an overview of the main features of Cave Converter.

LRUD Generation from Splays

Survey data collected with a DistoX type device will typically feature splay legs to measure the distance from survey stations to the passage ceiling, walls and floor. But many cave survey data processing applications still use the older Left-Right-Up-Down (LRUD) measurements which were traditionally collected during analogue instrument surveying trips. So in order to view a 3D model with solid passages in these applications viewers, you need to convert the splay legs into LRUD data. Cave Converter is able to do this conversion automatically. So even very complex systems surveyed with a DistoX using splays can be converted into a Survex data file format with the passage data blocks required to render the passages as solid tubes.


Model of Swildons Hole entrance series generated from PocketTopo survey using Cave Converter

Convert existing survey data for loading into PocketTopo on a PDA

To load an existing survey into PocketTopo on a PDA in order to extend a survey with reference to the existing data for the cave, you can convert to Toporobot format using the Cave Converter. Then import the Toporobot file into PocketTopo on the PDA. The input survey data could be read from a Compass file, or a Survex file. Where a Survex file contains formats which Cave Converter is not yet able to read, you can instead process the data in Survex to generate a .3d file, and then using Survex convert this to a DXF file (right-click on a .3d file to select this option from the pop-up menu in Windows Explorer). Cave Converter can then read this DXF file and generate a Toporobot file. Converting survey data to Toporobot will unfortunately cause all the survey station numbers and series names to be changed. This is because Toporobot format requires survey series to consist only of linear chains of survey stations. Junctions are not allowed in these chains, so junctions in the cave require a new chain to be started. This means that data from other formats cannot be simply converted, so all stations are renumbered and organised into new numbered series to conform to these constraints of the Toporobot format.

Convert data collected using PocketTopo on a PDA into Survex format

Paperless surveying using PocketTopo software on a PDA to collect survey data with a DistoX is becoming increasingly popular. But the only export options to get data out from PocketTopo are a Therion format or plain text. If you want to use Survex to process your data then Cave Converter can read the plain text export files from PocketTopo, saving you from having to edit the data by hand into Survex format. If you want to work in another format (e.g. Compass) then send me a request to support that format in a future version of Cave Converter.

Regenerate Editable Survey Data from DXF or Survex 3D Files

Sometimes the survey data for a project from the past has been lost, and all that remains is some processed output. Cave Converter can regenerate editable survey data from DXF files where the survcey centreline is represented by straight line objects or polylines. This includes DXF files generated by Survex from Survex .3d files. The Aven viewer in Survex can export a DXF file from a cave model, or right-click on a .3d file in Windows Explorer to select the Convert to DXF option from the pop-up menu.

While Cave Converter can regenerate survey data files from DXF files generated from Survex .3d files, you will not get back the complete original data. What you do get is the equivalent calculated survey leg data (tape, compass, clino) for the positions of the stations in the DXF file. So any loop closure corrections and instrument calibrations will have already been applied to the data. This feature is really intended as a way to recover some sort of workable data when the original data has been lost and only the 3d files remain. Some small rounding errors occur during the Conversion to DXF from the .3d file, so the exact positions of survey stations and the cave length reported may differ by a few cm compared to the original data. This is because in the DXF file, Survex has rounded all station positions to the nearest 1cm.

Survex to Survex with LRUD generation

Cave Converter can create LRUD passage data blocks for Survex files containing splays. Just read and write Survex format, using the LRUD option. The Survex file reader in Cave Converter does not currently read existing passage data blocks. So be aware that existing passage data blocks will be removed if a Survex file is read in and written out again. However if the Survex file contains splays and the lrud option is specified on the command line (or the Generate LRUD option is run after loading the data into the windowed application) then new passage data blocks will be generated from the splays and replace any previously present passage data blocks in the output file.

Specify Character Set Encoding

If you are reading in data files which contain extended character set symbols (e.g. accented characters or non-punctuation symbol characters) then Cave Converter will assume these files are using UTF-8 encoding by default. To specify a different encoding in the Windows application you can edit the app.properties file. (This file is written to the same folder as the CaveConverterGUI.jar file when you close the application. So run the application once and close it, then you should find the app.properties file which will contain the line 'character.set=UTF8'. Edit this line to specify an alternative character set encoding if you are not using UTF-8. See the command line reference page for more details on alternative character set codes, and also how to specify them for command line conversions.

If you have a data file which Cave Converter is not able to read correctly, then I would be happy to receive a copy of your data to enable me to work on adding support for any cases which are not handled correctly (or not handled at all). I can be contacted by email: drfootleg@gmail.com

If you are reading a downloaded copy of this help page then check for a more recent version online here: Cave Converter Home Page.


Last updated:
14th January 2017
CaveConverter_src/doc/conv-c2s.bat0000644000000000000000000000010112621447114016052 0ustar rootrootjava -jar CaveConverter.jar compassfile.dat survexfileout.svx c sCaveConverter_src/doc/cmdlineref.html0000644000000000000000000001163113036415150016734 0ustar rootroot Footleg's Cave Converter - Command Line Reference

Cave Converter - Command Line Reference

Version: 20170114

Cave Converter is written in Java and is available as a JAR file. You will need a Java runtime (v6 or later) installed on your computer to run the converter command line tool. The CaveConverter.jar file can be run with the following command line arguments:

input_filename output_filename input_format_code output_format_code [options]

The first argument is the name of the file containing the data you want to convert, and second argument is the name of the file you want to be created in the new format. The third and fourth arguments are single letter format codes to indicate the input and output data formats respectively. The format codes are as follows:

  • c - Compass
  • d - DXF
  • p - PocketTopo text export
  • s - Survex
  • t - Toporobot

Optionally, any of the following can be specified as additional arguments:

  • splays - Include splay legs in output file (splays will have named to-stations)
  • anonsplays - Include splay legs in output file without to-stations (applies to Survex format output only)
  • nosplays - Exclude splays from the output file
  • lrud - Generate LRUD passage dimension data from splays
  • charset (code) - Specify a character set encoding to use for reading and writing files

If no splay option is specified then splays are output by default in Survex files, but are excluded by default from Toporobot files (because Toporobot file export does not distinguish between splays and other legs, all splays exported to this file format become legs). With the anonymous splays option, Survex files will be output using a '-' character for any splays to-station. This will also cause the command '*alias station - ..' to be written into every series in the Survex file. With anonymous to-stations, the splays do not need to be indicated using '*FLAGS SPLAY' in the output.

If no charset option is specified then UTF8 is assumed. Any Java supported characterset code can be specified. e.g. For Windows Latin-1, use Cp1252. Follow this link for a full list of Java character set codes. You need to specify the correct character set if your input file contains any characters which are not part of the standard alphanumeric+common punctuation set of characters. e.g. accented characters.

Here are some example command lines to illustrate some useful conversions:

  • To convert existing Survex data into Toporobot format so you can import it into PocketTopo (generating passage dimension data from any splays):
java -jar CaveConverter.jar survexfile.svx output.text s t lrud
  • To convert data exported from PocketTopo into Survex format (and generate passage data blocks from splays):
java -jar CaveConverter.jar pdaexport.txt survexfile.svx p s lrud
  • To convert existing Compass data into Survex format:
java -jar CaveConverter.jar compassfile.dat survexfileout.svx c s
  • To generate LRUD passage data in a Survex file which contains splays:
java -jar CaveConverter.jar survexfilein.svx survexfileout.svx s s lrud
  • To convert splay flags in a Survex file to anonymous splays (e.g. 1 - 12.23 045 -2):
java -jar CaveConverter.jar survexfilein.svx survexfileout.svx s s anonsplays
  • To convert data from DXF format into Toporobot format so you can import it into PocketTopo:
java -jar CaveConverter.jar datafile.dxf toporobotfileout.text d t
  • To convert data from DXF format into Survex format:
java -jar CaveConverter.jar datafile.dxf survexfile.svx d s

Some example Windows batch files are included in the download to illustrate the most useful conversions. You can edit the file names in these batch files to the names of the files you want to convert and then run the converter by double-clicking on the batch file in Windows Explorer. If you don't get any output when running the converter from a batch file then run the program from a command prompt rather than double clicking on a batch file and you will see the errors output. Send me your data file and I will work on a bug fix. I can be contacted by email: drfootleg@gmail.com

Return to the Cave Converter Home Page.

CaveConverter_src/doc/change_log.txt0000644000000000000000000002604613036415656016606 0ustar rootrootCave Converter Change Log ------------------------- 14 Jan 2017 - Added option to save splays with anonymous 'to stations' in Survex format. - Added support for diving data to the data model, Survex reader and Survex writer. - Added support for multifile Survex project reading - Added support for nosurvey legs to the data model, Survex reader and Survex writer. - Added support for anonymous begin/end blocks in the Survex reader. - Fixed bug where flags set inside a child series were applied to data read in the parent series after ending the child series. - Changed Survex reader to allow spaces between '*' and keywords in, as Survex allows this. - Added support for different units of measure to bearings and clino values in the data model and Survex reader. - Removed dependency on JScience.org libraries by implementing units conversion methods and updating the model interface to handle units for lengths and angles. - Updated dependency version of Cobertura to 2.1.1 (and removed seperate junit dependency as Cobertura includes junit 4.11 libraries in the distribution). 14 Oct 2015 - Added a graphical application interface to the converter. Now it can be run as a desktop application making it easier to browse for files, convert them and save the converted data to files. - Added the option to specify the characterset encoding to use when reading and writing files. This can be specified in the app.properties file for the Windowed application, or as a command line parameter. - Improved the way that LRUD data is stored in a survey series in the data model. This resulted in some slight differences in the way the conversion to Survex format generates passage data blocks from the LRUD data. In my test data this was an improvement in all cases, and fixed one case where it turned out the old code was swapping left and right passage dimensions in the output compared to the splays which the LRUD data was generated from. 20 May 2014 - Updated regressions tests so that they passed on JRE8 following a double rounding bug fix in the JRE. Backwards compatibility with JRE6 and 7 is retained by using older versions of regression output reference files (indicated by the _ref7 suffix on the file names). 12 Apr. 2014 - Adopted JScience.org libraries for handling measurements, and implemented length measurements as unitised lengths rather than plain decimal values. - Added support for reading Compass format survey data files. - Added substitution of illegal characters in series and station names to Survex format output. Compass files allow various punctuation characters in series and station names, which are not allowed in Survex format data files. These will be substituted by an underscore character followed by a two letter code indicating the character which was substituted (e.g. '!' becomes '_ex'). - Fixed case sensitivity bug in Toborobot file generation which left series unlinked if series or station names did not have identical case. 17 Nov. 2013 (beta) - Fixed a bug in LRUD data generation which caused LRUD data at stations only appearing as the 'to station' in a pair of legs to be calculated using the bearing of only one of the two legs (i.e. When two legs are measured to the same station as typically happens when the instruments are read at alternate stations 'leap frogging' stations). - Fixed a bug in Survex Writer passage data block generation which meant it could get the left and right measurements reversed when the first leg in a block is in a forward direction but the second leg is in reverse. 16 Oct. 2013 (beta) - Fixed bugs in Survex Writer passage data block generation which meant it only generated sensible data if all survey legs were measured in the direction the survey was travelling. Now legs measured in the reverse direction are handled, and legs do not have immediately follow from the previous 'to' station of the last leg for the passage data to be structured sensibly. - Fixed bug in PocketTopo parser which repeated the station name given to the 'to' station for a splay leg when the splays were not all located together in the survey. 21 Sep. 2013 (beta) - Moved code to generate LRUD (left, right, up, down) passage dimensions from the PocketTopo parser into the Survey Series class. - Added additional command line options: - splays/nosplays: Survex writer and Toporobot writer now have option to not output splays. - lrud: Option to generate LRUD data from splays (can be used on any conversion). - Added rounding of LRUD values to 2 decimal places in Survex file writer. - Changed LRUD generation to better select the best splay for each dimension, and to calculate the distance for the LRUD dimensions based on the angle of the splay to the passage direction instead of using the total length of the splay. The splay selected when there is a choice is now the splay giving the biggest dimension in the direction of the LRUD measurement rather than using the splay closest to the compass bearing of the passage dimension measurement direction. Passage direction is now calculated from the average bearing of the forward leg and the previous leg arriving at the station. When more than two legs join at a station then the previous leg will be the one with the closest bearing to the bearing of the onward leg. - Splays fired as back shots are now excluded from LRUD generation. - Splays are no longer removed from the output when used to generate LRUD dimensions. - The Survex writer now groups passage data from LRUD dimensions into blocks of readings corresponding to the survey legs in the file (previously one block of passage data was output per series with all stations listed with no respect for their connectivity). - Fixed bug where compass calibration was used instead of declination calibration in PocketTopo parser, Survex parser and Survex writer. - Added duplicate and surface flags to leg class, and added reading of flags to Survex parser and writing them to Survex writer. - Added date reading to Survex parser. - Fixed bug in utility function to calculate the average of a set of compass bearings (thanks to Peter Kellaway for pointing me to a much more robust and elegant solution). This bug does not affect the use of the function in previous versions (where it was only used to convert PocketTopo triple leg readings into one average leg) but it did show up in the new LRUD generation code when calculating the average bearing of two legs either side of a station when the passage went round a sharp bend. - Fixed bug in Toporobot Writer which caused passage dimensions data to be output on the wrong station (LRUD values for the 'from' station of each leg were being put on the 'to' station of each leg). - PocketTopo file reader no longer reorders the splay legs for each station (something which used to happen due to the old code which sorted splays into groups for L,R,U,D measurements in this reader). - Made the logging output less verbose, and fixed the survey summary details log output to include inner series. 16 Mar. 2013 - Fixed bug in Toporobot writer which left survey series unlinked when two series crossed over each other in the middle of each series (i.e. Not joined at the start or end of either series). 05 Mar. 2013 - Added support for nested series in the data model. Survex reader and writer no longer flatten the survey series hierarchy when series are inside other series. - Fixed issue where Survex output files put data inside duplicated begin/end blocks. - Improved series naming in PocketTopo converted data. Series now have the series number as their name rather than the full cave name and series number, so the name is not duplicated in the outer series name and inner series names. The outer series name is now the full name from the input file (previously any numbers on the end of the name were removed). - PocketTopo converted data links to series not included in the PocketTopo file now use the correct series number and station number for the linked external series instead of dummy data. - Toporobot format generation is much faster, and handles more complex cave surveys which could crash the converter in previous versions. - Fixed crash in Toporobot writer when converting directly from PocketTopo format. 31 Dec. 2012 - Major refactoring of internal data model of converter. All code changes are now tested using an automated test framework to ensure conversions still produce the same output as previous releases of the converter. - Renamed main class and jar file to 'CaveConverter' and attempted to use this name consistently in code and documentation. - Added support for trip comments in PocketTopo txt export format file reader. Previous versions threw an error if files contained trip comments. - Added support for stations having more than 26 splays. Previous versions generated invalid survey station names in output files for splays when there were more than 26 splays off a single station. Now the first 26 stations are numbered a-z, then the sequence of generated 'to' station names will continue aa, ab, ac .. az, ba, bb, etc. - Fixed output file line endings issue where previous versions always generated Unix style line endings. Now files will have the line endings applicable to the platform the converter is being run on. So on Windows the output files will have Windows style line endings. 09 Aug. 2011 - Changed PocketTopo txt file reader to keep all the splay shots at any station where more than just a single left, right, up and down dimension was measured. Previously the code picked one of the shots to be converted into an LRUD dimension and only retained the others as splays. Now it retains all of them in case the user did not agree with the one which the code picked as the best match for a passage dimension number. If there is just one splay for each of the left, right, up, down directions then these are converted to LRUD data and no splays are output for that station. 04 Oct. 2010 - Fixed DXF file reading code to handle a wider range of dxf files. Specifically files that do not contain either 'Centreline' or 'AcDbEntity' headings in LINE definitions. Now it will just try to locate the '10', '20', '30' headers in the LINE definition. 15 Aug. 2010 - Fixed bug where zero length legs to equate a station with one in a survey series not in the Pocket Topo txt file being converted would crash the converter if the station in the series not in the file was the second station in the leg. i.e. When in Pocket Topo you had tied in to another survey part way along the survey of new passages, or surveyed back from the end point in a new passage to tie in to a known passage at the end of the survey. - The Survex writer will now output survey dates so that survex can process the date and allow the survey to be viewed by date in Aven. - The Survex writer will now put SPLAY and NOT SPLAY flags around splay legs so that they do not get counted in the total length calculated by Survex. CaveConverter_src/doc/conv-d2t.bat0000644000000000000000000000010212621447114016055 0ustar rootrootjava -jar CaveConverter.jar datafile.dxf toporobotfileout.text d tCaveConverter_src/doc/conv-d2s.bat0000644000000000000000000000007612621447114016066 0ustar rootrootjava -jar CaveConverter.jar datafile.dxf survexfileout.svx d sCaveConverter_src/doc/SwildonsEntSeriesModel.png0000644000000000000000000011616712621447114021067 0ustar rootrootPNG  IHDRk+tEXtCreation TimeWed 7 Oct 2015 13:46:13 -0000F]tIME  /} pHYsodgAMA aIDATxUϙԛ *FyRPPT=ԧ=) `PABH$TH#vٖww/_9SiEu#+t+B prrr*:@:-*"nSqiEeI$BrVҊFbL \,Re/tZk7ֳ]|{>'''b +tÀӱ!7REɩz?5&Pk}쾚QAGna4¡ɩE8TާWAВrqXA_׆n;CSY~eKHHЅWQyEx#+='CS9F'-';?*r_NNNC$WQ~#"a Qˡɩ|6&,0'@r"VENNNv:W ˜ *h=ɇ ''rA!0 DQ<ϭi >ҡɩ,|p8'씧w{ݤȯ*ϒ*nD\OQsprrzj )^Mĉ=V Nи|ȡɩꩦԘN[[kcCSSCf bO 'P =9Sa8qZm)I +B_h֕ trr"H/:"QklDؘ l*J[SAaqdX8NNNNyՍ&΅zZ("NWS@ ''Ġ+a4 XPTIG=W-#icTNNN%c؟@UDU6X{{EWYNNN( ̈ Daqq(51Ypprr*- .pS`@~8A<+| 7 SX9НV)Tz`+'@aGkDCSQkxӘ`=*P4mWLlCX\VWXOPTZ<~`9*$'M _")JĪ(t BPTDZ5V4;?h))f 7_SOP2/H_/gRv‰[YW!_ ʃrprr*N,2bRfʲ*O]+Yf|ٍ5TNJ?[wk _/7ZjLk3 wJ9Zۡɩ`Zx39'hiFkgIE`nv]PTN0$M F>ע1w̖Ϋkgt3PaCSʉfJHarbf"ɲWRNNNTFБX3! Q*JT lb;} `<u"G)JS*|NNN+ [!0KTĽsͅ>\UFNNNG52Iv.*ܷ'a-U^K?5e|ǶD?l[*[U\CS1ܳX9‹en2Kex"nl]_ɸX=t KQR2QɩuB ;P}gm[299arFCMsCmZXێMW_(0dYNNEk}Pa16C)/ҞϭΨ].-*Dʾppr*6=ra_x(`AGZ~M{jnlrgI bʧ*y)BV+$88RN'}0smM}7MiQ@DQnKsq҅ݡK6Ss@99`6eoǻ~gRY/R}"vw+"!!KmCShԤP]'ͧa^6 %nncԘmpO^nr >\Na@9T89'sfgOU h~$i J -(sZā_ PT܂iWeY t8E 9!}Sc:?%iD(^EFrg#܄NN/fݤC J(ˀ6t6[9!{ztJX7r1e~yvPi+HNN_j=b!Ԧv˯^tp4ylSmhV 4A%h%-Z 1D=| LHɡɩW9!e#+T@mmlQ,]BcB-PJZdYذZ}'R9<Ǚ lHY3ʡɩ! {x2w:qH؃3 mȄe̠ hZ6C/w8gCTH ¿M *zOo KHaamk!Ș@VG!{`4!hbkkQnk~(s>{|*ŤwNN$ cF&6]dהs(2b/Q0^h+ y8?$-ap}M]qDV$5ZpsFZ͠)I`JjO )(]|宅2N2'Y#lٌ4e=Jz٥o7dz顡Bb!+Z]8$|>o|!0D|9 Z|9ߑqXPxeR$i@x+WKmɹhÜU*N|0P|o#Hv|H:'qֆH?D5t`#qY(͑ui+, ‰$!DBAXA{O'PNND_$#j . SOonUoSTBsE^{/"ICzK'>j+AF4 q\}UCg)v`P!w(Sܛ&e1stiɚi'O|59yojC *8 jL<FC羣G!6!.263uشs% rrh6;~q"d_tEn;GzaN22su_Ycҋu%qڇ59n-'R@5UzG+>9)gghp=!0oK pqli%o-Ln;撹=0 Wܛ*`X`Hq̧gk[tTaqB.]σDM+@9"xBian6H'.}}չx%3{aN=( '9!A%}q\NG'5v+6LqU' ҟyU{ggf0)4`-dzּ|fڲW~>?k(|ˀr)UcbW$e;XImh7Zȃڂ^/_FӢ8Xq:" %vFK'Q,'jٛ_s[F~̖]+CHn {8.'&Gi\@yH1UJi/=#}i7Xqhj7Zԋm')rzb]}q16;mVrCE+8+ꓜՉZ ov]+-!@ >;7%5[Oiüz_35ݔ05UzR۪5;vukC 8L.bUh 9QJ9T8Y}6Q/cXtR}r$z:uZ<v}$E'81k5Fp4&VG9^$-zQƫ kzF6]9Q{]B `@^86V;ʡJ}٣`v 50Ĩܱ[?`p߂fXko Vo G_EQ6r*65N2r+y]H, 9Dn+\ =Cý;XUq/ c^LBO|Hg&4ΥHIKE:ATES źUa/qyppʗ'$ 9\U>AʹJ4J G8!_\"T}TmiQ;~B48а>?DQ?N pbNKWkAE(, \OtZHF]OXMՑ=3Z;Ѣ}IArezB}~صVc&}^9S5'LB|$ee+9Z_i*9 &߳nX5p1߰#(]6nS781͒~P[Vk$tBW$2X$$UwŐ΄hLlfڶI*t&p=U@ݙ|!-OT,CSE;cpYc#&iL轿 EX r"R;%a6@; hA5*^z z)ARphpbAE5 o@) S' \G ֵkBOHBŏ;BF塯!9vvS9 vd'36vY SjlLMkCJ zD̈YW9T8e @}961Vm͉&;DW B-\hL=z'I=QznguU.$ʶ?q@ ([G;mZu3=ԯHN`UWz$_[ttXa}FN}D%ʉ+?H=0&T߹ ^}",D!:!S/}f"_%Bwv= Rp.iM=X94N!'33)ҸۏyR3Z4$m,**Pr?$wh`%!@J&5Kr/_I!TAP-Nִ&KN"as]3`\=. "~6 o($`u% c@&EQE>U+蔛J~klp]?%j;tf}pIv'Н H˅4 jƇv3{E:3Ή{WA5^sw I\~SOW! i9phۃ@!հPI[> J]EKz`[vS\eYCלDKg2WTEZ8FF~4zOgՈGu q'XڜFId?5bM2+' 5s͞2sɐ*Es;XF)7,8%]rS~[ cZ&$#`d Ph'1ӭ 4<8vtƳ;S(ʡ4{ZH80-yi?Fϛ hNMG?J֙l6Œ!DpU$ƈLxǠFJVW#G9ɐ*rDp.}P_n cU5J_1)taZ@`PN $H26g]9} ^wgWرUoo{Aצ49u0ד_]$@֕l ZCB̬.Gb$TΫ>z`u uScb x4L ;bA);3KNȚZ3>L r'p—#ljr("zņҙ|mykD6S~ULmo>w?fEwKN%AL\Oai>}ƄdFX>Acs^@K O]ݩkޡX4?5%E %|d>=>==ZO86m }~|-K/F< SO9-`pAqJ DЫ \鞟'Gx@}rJNmCE5?ٳM'Af{A@@l!Wi :fl[bb̝`hk M:BjY]B4Oc&ĒPopͲ`\CcʲF): ;Q=IJ>&zZQDO?0b k&ۺmu$ZڛxDb365$"@dP6R-"w͎$`vG f.%ST0}P+Vwz9o+m71 둀\ 1—b^Z%?6͔'ml?!?Fwd^WzB_U+H`.Gt*T8* " &\ Cvi^ԃ[ G'W3ѐ3zף\^d|ė:f ai&Ѡl w3=d{=fR|9;fw֧"j 8Su3䔄6rbCfLhB+Y:o ﻡeU^{GjߤUfjgƚ[_>ffdBKCDaJ/DIU8-<:!qXÞ8t&S:+F)wMaW7kBhP@ꠚ)";_>vTlRMc?.#tums&W$aHx؄$!3zȀ`hm{n3{TrVEYi a z9$串fXXɲ 'RKy_Z8 j?gR.ţ,ri׀qO-$zȠB=|}`7)\y[۟Vi4%tH%$'U1A )#hgrwfoӜMas@;CbPVhRS 2o&gOڊI@Tp"`Mדr:I&yh=$z0o32< gXMe"0͋?3By-z:*ΰֻXEO ə6/_8g_0q*l b ZDtb%x Y˒Y+zWL <c[^˔ Θ(EN+kuE1t ʷ c OȀם]0iYM%k $2dnBƾ~N0чuH)|=i"6, }rNtެ|QG@mti#@Z!_Y ֋?=$ȶZ(d.ݡ ib;*(|7Md {n`Bw[Ll,lh_/~BBv #x|yP7{1sZ^*rCE!cwSɶ3NkuP/ԡ Vityx]G3kӡ C?0`Iӂ} &vi$nOUV7wD᫤FYpӿ9?x{UXEq>áyTΪȻ vD#6팫y6Z. ekIP@$>ᾓZ 0WaZPild[ϣzag]Vh zo9,.V > -gi0KudzXuptG4Qx9A lp|v4ώ>R~Ϊ(%i*ҙG׉) CD T",I coH72Jf(vXESN[XֆKmSdzbGUN!ܼ`!ՖIb{ws6g;* 2QHUzli7)&{R/;)?6G>! Lx p8z)nM[PvժZQTo3a#Ceac~W1ٞ#zrx ^VS- \sZ}^J:'Gȏ'TVE)unMUky-|ۣa†lmɑ4] TR 'h ~v!5?*rЌ'ocmNP`lz( D97yߚGpL *Zҹ%qRs"5uBh̘VW-$hZZ-MrAhqRhU3^TtizWq"7,g}ض9eT8y֙wK+Dx9WbZoW9Z&JM؋(23<ȏfqB[[[1$X;93"C|0q'j(=;*r;D~+#QHPM56FR;n]yĜps9I=>17"=1_U0b._Gs>2\в-zPZlnt.iB1U~N0~ZWb'}Z]暁1:c,:f+ }9l'srO8$Nf0=?*U8T[PalK>4UoP(*~߻( 'C_:etsZs4M_7 6 JHId+F +Pa8X D϶uMibg v"ihbe[7c+rL &> `:}l6@4 'lJN8_B$\ґk3oC30uu/ytsN4댑\"Mw"K+-6`_?#,=y9O)Gp: (H؃( KN_+ۻ] Z.СY`Q d[ b$H!X FOԩiJMyXtK\:kq[ ]2Zty 4~i4Z_Qu1}U 9fdcN,N `puUV8b>x-RTZkX X;ە~'$;-4)7nS0-ϑ`1^v E[^eѕ /8O ҃&hlXT(lX=XB681`猖3;6ݪ-N4ZtNԓq(a1Z'@2uX\3'pT]?(z't /δ̀SyJ9*]w5V.y"i[LjSzkg&4^;5E{DfJ$]v 'Plh\$ C'<9AwT`rzFz}0 qZ'>?dwRƄS /~@ 8-~G,$,< ^J2n!8;:-LN_Ug'k-1AW$򋊰* lPbk F3/@ B(d4[&$N>zX[.htm  C 0W"R0|hDN&   _Wv@yk lcU9g裭*ZOEU@B()ciY#ADZi ;]YC҃/iC ף7x񦖋&5Z8 x^V0-ljf`8:*ڭ4,Jn$$ A"D `*}]A nr/0ſdʖyMܤP9NK+ BQb`^Ҍ3cyco_t z;ߜm7k:046XZ‰5{|h,`]"'$ؖZ n7 ^KjK9{=hRA=NPP|nEtHc_;Nf|k?z5b[OJg\"V~i+\tKu1}Љ<>}l`#EbD+~|`0!1A!k8=Z>,]%ƿR^oUpN5^q32|w=~jR @ʓK-pqWKZUaCWw-Ta3GҞ^vۖ|Ħz<*I)Q*^eYh {;e:^mNZcIvw4N[ͱy .QH0倊}br=OZ( RX]ee2ss:u0Z{>ApP}D6_*!I-.JA"3"c!%"O"]y'̘y(Qċ%ʼn Y̛ŎhAP1J +uَ&3*來{I1B%Ⱥdr4l?*zöDX!iNVe{٦ 'ˊ'&ݛy(CS J@B;Ȗ-x弎\} nM9Ұn-(dtKIi'h3DhR)Ax-ˠ98'Ԭ% `p_f7$ꎣ' +u&$?@0.bȘH{*Mfc&\T{3fgXu{mW*UA۪tE$$(#M^$ذ3D4s.ݧ5?pӌO}K1. b: 3Ӣ;~ F3>/bI>^tb?^E/'Xswcnә(-N3#b~@4 *RƏLDVlo*E"nG%4N8N]ͺu!QA8DF1ݜՓ& j x” 3;m(b:`~$;T2>}X<u,]OixbwǿQ9!ScjTCRjdg=|[#;{(FϩM:(d7ObTHTt諚Aϥ`T8hMk%mrS?8ɜam[=^0 E7ثY8d#ҡk|lSE 3M'wH k?v!U j}a` lhY%h֓D B6=cKB (d1 "v@ `=`wEvݓE vn!]vbRDJ_o3)`fϟidF FyUӒSI⯷By;gxkF#J_'P2Be}R3RH5>w_jMTEN7NW]R`@kwSB+r 4-\H ^=" x$`S7ƆjA"0\nl7gE N} ^p߽+?y눡4 &_ԁޟٙ Ub^gl)+HI/[WMZtO%`݄ #Lh'o(}-u? xr3{ͽz:xUk1A{mw07(̘65P ByOc0,'U`e ךE+P"Qp*d࿋k~v:)ED21xh%( ~XQўH&08]Oy~(O?;}a|EɩPߙ^7bj4T+0"HV6ǫzI7^19E:f$΁ A8_bUhyDXgN%`i68oĀWIĴAw4x)A #vI%rŢ*,+l3Y'G e)CbƜ)¤9 ǣʊ$0q灶kj1aX~b/:0*JFA Pg* p`d =[Dɪ*-U {"b(jwc @) J!EG.Ѳ_wajrgޔ2hΚ4B+8(/ύhŊ=芢ynK[9Cݻ ^w[ WvW P#pN ZT9BE}B"?<_IB;1a^;֩9ucVLr`}|/MJ4[Ě=De} T({#Cu Łт*YL{AGoa4jΓ%Zjmu>x>kk.N.p!k K+};j\yMynmeH WCҘ}~'dQ_+La a׾{!i pMJft%6:]uȡ.kc~?l5R;m=7~8GTWP!P`"5'd楓px||ҢE) I wY#$d"1r~.O '8`{v#0zкNǺx}CRߨ}:ے7#٧Č$" _!r~A8|sW.ŽV$,)tGEES#mT$(Q6 ƒf! ^iFq#Q !?09\/@BJpQ/N)(-8*@ρֆQ#j*) ʼno%=YjUՕ0㞎N%/[Mu 6|?YY=422J^5|pBd-7~Ѹ+"@'XZ>b炿M|mCҷ|յ+w^n/K~#v3*:Ӕ*#P 7y?Cm]SP@+zpQ״ " UV{ 7 [#@B!8%#mU:-bq00k`pQFb~sƜ?'ʝ?|qVqDLs`~[SJ|fA@i-(TXPXk kʕ"v-{0Ja<Ձi> h|%L: mK]Cylos{ _}IQ?MKE>ɥK<~BBޏ+ $ěC1[`yq\dy7 }s·?UƻGrEKje \zy7(}=G ~NuLXt2:s ]f#77 j:do+K~ BrGpkq=,Y5~N80;OŁMO ~#059uӏoџN']G|WYD!*WU]Ov^yxQ[]Zc~fxy}C$QR%@@91R:5(wIZl9ؓt#C l2@@?\>hΦ+,fź0m:8c {SfiU,]5.9FWwYߔrG(AhFnfߩ{?nv ?HpB1&hCB]@u˙ v}Fܝif$32?0y,lQ-NR@AciQY c1DnCYz% <3͋L%ZhS?Tݡ%sn1`BbD[ sS?Tcu<|P>K7<6wdQnwφabO|8A`O"Lb_UwF7/,Z6s;Bh0f^6HC bѯ2 M91SM%O<]DYn_<[4\|TЀL ep!ϯV~HMIlF1 [}j*Lb+qf!$|~ ͊Ok}: '^^4ȪP߀cF0` ƤP krz3>d qT]IF1& | byЅ-]F~nôdݾaF~㙄W+}\9Xi)   & aFLB[m Jz0a)ZFZDzPa\"nO@`/wu+4>Dz.EvB/'IbO9Nٝ7")`o  rcӆQiiR(X+ȃ¨c %ܗ7`̐~'Fk; ~Σ",88A 5Zh ʌ8dBE[Yoݤ &>1/W oj~#p[[lO(,Ԫ)f|{q/O9RvyW؎uQJH i ~ɋk2,a}u0B%W]I#~?됂. bXl#CtFeB 1K2S}PFn^XZg-|h/i݆N>xP;GWRN4G0$zތCE֤ޡ}e7+.]==DdE6TI~nyؚq҇ .%~P3OZy` _kkRK@QA^J  UN'2L~ ` :$ĭ>hhޔG6xO/( 'OEL<=kQPIQt#͝j``cW7$VawĢHB'>(& 0; N6+yau?R= 5/O)@4i"7Ə>j*}9~+܈8'N>8+)?5>t7z\N*p4y~'3P?100*[~C )c j[;~7J ! X 6`0v4M lik7vJaH 6U?BxLm*MՠmǫgOuXiRcj)*FvthF^)P_EnY:9btccs[a`k9j Y|-Ct̑k7!O i% H"=6N `~N'>odpR DvR^4 2SN ╪`FkBRL _e-(dNSEGJ%yrXϟիS>]U|L'[QI#Cy)$_W]vteﵞlpHS]$ ZɧLjNi4S#z+ӿaWx; ב"^}LC%MUf^l+kUM󂍒SIcj`w5R! TV$ }Nj 룬h:YaVW ֳx.3sw1P%<|^ :6J00huD(tNh{%e1Sv Ah اGLA1-$*t69]mJt̶QcCS{-6P}bPX2*0V5>`EV'nY a$E6j`ӌۺⷼZD)3%V\*|mj%^ zڒ[ o "ׂPHXId(WCysDɁo=coCr~4۷G%So|ə=wH?֊OmAT*aIYW=~XC[@`(ē!%} tĢG[!Ɓ2mE/TQ$5B~%,^ ԦI>4''MLڍP$f^$mO!|Cۿ~m^ 5:wX9+G"9moeT>.DE)Ď:Ʉp?NlރS)&A$n6`K,aC&h,:osFl` >;ٛ*UT`oI͏@N $' S6$>(ڟWn;)69aW~D]KXC=כmj02/}FyAUy0=KgvEY[<s"I"4[2t|Ɓ-K( .肱[eƄt{Ϊȓ>i݌hOf}-}»ւZ'gRHx m U;ɹ'qSmjHW<Ŵu2dGw3G^L(tg:-X|~!=NT;BK2nln['Ȩ`šbN,pDF m]q2+nTQ}>;}@1(W1iI] 0FƎ6|wpuu꛻ȖGŧokw=5ۢ%]%P_mLjX(3@6FmAh. wb]q22+=KlRĨDsH Tz8+/Zޖ]0X#`{/! }N+ +L!!~bw7\iӜ`%R Zʾ|~@sg큛HP >(= *>7 q G^Q6LH$6Nȋ.3 ٌR`pk4*7/.(-T`HK9$5Mj~wO8<4|x  <* ǯ࿝a-i!gvg.'ʯo+JYMz rONZSMtQ)Hӷ&ٵ@t\QܗUGfk*F;Z]{՝ C͂ s\D5 jQD͉9uj(&({vn ĥ(3Gw[yLu5{TԭOd&IevN8D)/1rs Z:4}ݐ@GGӦy:dx*?;g88~vS GK+'u40 Ջ&ȏHi,^v=&=qYሙ;,Mk+pXN*?eD w&Ѭ Lt|Ξ-#sG ueU8}O5u( P8M ,BJ&!8|u QeEim{yY5u12P6PZ>5>~6'@1׫ĊzKN_kco{\J,ac撖eb8k2&M̗I% kOnn(A\;f߉pyM &(*E$Cd йϔ|q/Q#Έ'u:¬_]36> WB0 No3T-('fh$WtB @Yx@`Ic T}QQP :g甸w2C{@e+]-_Gv~VTD t-Y"ܯj;!aMWGo%CW:r[m=C72sbc=G@/\bkMÖ991'0-͈&c 6)YlRZHd !w6\m]٬=VQn:;n{ƄW'L b0c־ByC~u4 h2&M*7#\&ժ}6b-8Su_!;1!'r9 bO&^:-;.\d]uOϺcDTʔVqYf_ܶ0Q8.ҟ4Ч`r{k4V|P"N׵t?~p t9@D' ;AL 5# pgFHCMurShIWe-#[Vb=H٘uJi } ]f,[@~8UGL |A=VZѸLWW[Rk[t{r8R}x>œ`'>jx֋{8-o#'- w@1`0PӂW.jdV覭GknZxn)xHWnx{Tfi}5'0y@ ;-ߕJBokqKICECnm[Dh\J&dU"Ye&Dd/d-CrPB#Kl㓡8Oˉn 㹶t@E9aSmsٺ ?'T pXħYb7>RucgL;Ύy)q(Bdq.Ķ@`~1ߡ1#Oh8Tc'U:2 O~&D]Á]B,Mت$(R!-{5ދ) UELjM \zQ#%5s 9~@KKM|6k#@ - h29-Idt000! ;9㦒[b55-.>/Cӥ²8CB+NUUj/&OgqND*wK5vƐz W]0R>n:2" p%0d/ᓋ L]V"}@g !?i^+3J#yrLjR"h--nyC$ wyAew/ݒKʝSG˛Z%~]'<~H+>mNg'+W2V푀h^9VoxxPN 88! JS:NngB_Jd47chX7ȊM(/~!UQ>ފs:́^wz~gbI;Cum3ݑ0_vi^1$ ,Q Y@l3CI0$](laɉ80,{?DCŅ^D`Gd_|g)Wۋb( Qji_\O|&AE%f25,_ 61d.a;oįcXka_~!VMRH92v) MgY8z0b@V›MA{$✐x'EjDQ(e4czSf[)cvfli[ p}*$x q$!|Pa%w3螮޴dƋ Z{ӾN۪q{>D熆}s{l  @B2c30W >*۹2AWs>[reӷ V ӽTwV۰ C֡7*C˘@%aMDFjB+ôNGܲ{ '(d6 gʬ*Vj[3eZ}pv^։'7\!a4oHik[X:l9Q+m)C%7ؠZXТUn}4T b!Ͷ'⻃J8UldC&A5iX4DB \; sWP=8MtBJa[ hVю"ۢbx@%iִS7\LN0fXY (^6~gzz @h ,lyJ 9@B+jk_X1`lq۲cAfRncĒ7 X2;-M$TJ ՘@H&>b%T`}ZZ,6|mӺaavQx4 [òԞhcsW 4=~sX'z1_EZ-2ܹ.&tj&rV,S_ӹ/ Gvt"G{ $O둷?RBr/RSaodo^ŷ҃Uƚ͌3?مoF+6}R}PfK/7}xܙ4b9a ў2sEe-(,n|;0vܵWf"Ū+x(0w$ `JaSzH`X @UT3 *3xB=}=h3QȦݎW_Ns* []}u"/Cy7 @Xm 8zĶnzP>ȳ Nltm%l1~pA" s/g+:]ؤ+>Bfz j^`HeO|#m 9#ŁX5`OmXPʆ[҄A>_-Bü`ya9Q&OZ$F3)h|tNH:*:>A*D q"Q3N՝& ('b(kdz{>e--臅")P1eRT@q'!a!9[̉ ?Q m;M-$|TƢ˧cޏ@4Lq@Z?S:,7/ʭ RhaG'DrbOH|._;#T& X{9D3X`Z SFZ^~B er-m~h/*HQ9' M rubL'-!ĐEeUxtwJ;*'mŮgĵB[[.s8 y*?CSrsC q=(aWsJ#`I!, ~4Nxp:<8^֠sgw_e3lr. +IzǍZZoNq˚-W靲-N`]qPO4B߃ EEwY-9=sG"͕!{f!ƴ0h*UV=? pcz{+S"!kٕtENzfc"A67|j &JɾR1 h M)垨L@ŝ~zyyUۂl!Q j: #bRU򣿽hiX gY' bҴHRKgˮM|vQRHpSSB {4ZZ e˒J^_L?/qhb;RBɐUQAF Z9L YK/{4ZZ6ȃU`ƽxBo$Ǒ9JIE E La7rms! JVnk{6`T4%;ϱEɲ 53R5}.)q|zǤiGi7rޑ'*MTTܾlY}&RX4*5w,M[̆IsBKkDJJo};ҴH ]\% m¤ ~` āAv8Zx7(5-R~E-UBVL }9 ȉu~IKtPK_uE?Z q[}D$)z'S(4'Z.v0>7E& XTӷыd@RрBj!8|VD$" ^M0yBꔊGjOVgNV&^:@O $Ԯ\QAG뾮>'j8["@ovGn\v+z;ZshE?U0~.0sSKonQ%҉NJPꬊߓ a38U&"|/˹עÎiO^qep+[2(t2D.nzȠlxהA&W,ar9i+'`k3v)y-EY?9eer:z i0Lwc+oY]OڎA'h*Sa9l}n."PKQ`"ZwMi*<»Uq.)d4y0S~Cq$WZުow1+m=fqQk(Ѯt%>~@'Uq}aҀ{jVfqk-uRxm|vzV %]?{mmfA{RzR,!ѕwa14ϵ3 )Oq?3mplC\`xZ/?C\$l`ڈW_:hoҭYt҉RQ:ݓH i6 EW/邜Rq۸rI-ģn&n;``~p^?'}"gߪ#aGSk7VqOt*|Z2\*$"C?jSі,K! qN/Tl(>Op.%%N'Ϲ;OHytO1+)Ȱ,n1)LR,SIGR )N3&"BdBL (yLl)T*2X_ܺD.NFN+,F!"^↍ s bR[?qUKpU,xH;%6G*tb|Ȳ5L>P6(󡥒{NL G*m"DtE9b_QED3zaCG]jܔ=,-ZfWkԎcz+բ5v[Jht*s)PK t,&[2@JCԯ'D0)I*;4{:Т#MEa心6}{oxۤ(sIRk_3SGΨ4¹Ȇ.a:v:yG;Ov@$P6!u@md_R0sGw`,&Rfl*E6ؤi^h_LJؚU['!ysU˝`@"pB?U@E'Rd.X829bRs]Ȗΐ[zܰo(. DcJłv%mXX'Y &Ϥ`Đuh9'5JT6|N'FiL {>6 nDh:ʆB o%r v ϕD_s*PṞXS)Fݲs@O}n!u a{G[?I¼7{NsFxtP6"hN$`4 h'UB@!?Y6z/$m^3`g=5bc|Pz7^ -YY (&O(*v9 %x̊4$-./3M_pbmeVgF]֋WzD?E^vBRW!ut5P9绞tjhcKP,ɲ4N/ +QYJsRA(Iam~"3s=%´"P3z@q6,Tvl ҉( T'`v=kr :}MTдj P5!osy~&)VAjrÇCϘm Pɂp:Oʡ|YqΌܠ0 ?2 0z*%֪9wT<ǣ*'5¹/g۶mu_BoUhhiOn^X $f$䧹7fZq 꾊lN"œffyPZ@>ؓA g[F- -:XS;V@'8L @D}@ܺ 1nSxg(luj,FvD`?};Dlu_xuzF.H *tx:.x!7TE$[.K+{%xܙwDeWKtҫ.m9nK_Ɨ\`_Wi*&bJŁcaˮ:Ebݞ@- %ƁNB-: F m[R[*Jj;s@=9d- ԣuƪL'/`XtݤBe xʞrnYI@'1kCܟu_WuةPD! Q9`UL-^嶚wD&-B'xI#Khiao>VRҮ+7]|PWcAt5# @[# >Tj[I)_aYWi "ɒ9R8nU*<Y̫k}L PP#eXTL`gWodE,\% 2-tY:! 'z @3Tr;_N]:^2ĝM*1,t9 (@ZT!4!pF==G"kX:|xYO̫R{ON!v&hY*,h項n:'@)>a9$,MEX0*PVc+ģP9~ZtP>q[jRZ -ɗU ?݆3'ZJV=aT%uR&lʤ o*İe˖[j=QeMeU %;f1Q nZ}x]ʭsұ{ cX^Q3#+VAQk) iKN WݼB<"j( S*~ ׫8 W"{~Q2Q-oRT%Kz2VOθf\sz#Ea  0EyuV:UꉕJr*XnK7AE(H)i'J(mE7&TFja *($`6n֕oQRHA[`'Vڢ(c]j!.M 4bS"h`]}$? ܵ~:tm!6RӠ aX7U}TJq4G>a}8wf^:5ݭd[ԛ u]]C~-q`PO((U-㺚|H# {^6j1RW P#D#QeO_W u/K'G3PB-ȼj*=ByjN(jo4f] z7;I(^/؅9G,H[~qw}xy~w~'Ϲ?b']Cn9%#^׆ XBe`ɉKo4)G,#_V$N\89ِˆXoMдDͪǻ hZR|O]"Ӣ '"A'XT,v 78 1"V۽6C-kKN@q-7.ny*sr&'^{sź+}PN͹r_H@[9~|} xQki^'(3k?qܻ'UBhpJuxq?$ K$Ҫ`t$p8"NHHw :=Ad<ُUX@؞h#^'5rۜ77 Pv,k{6oWSvL9ٷ@%YOJfzv@׀ܣ"N%q\H ɖt4{ս!a'W! }>{1=~HEU?NAG'ՉsԺ,10yY{^+AM*CzU+N'TkyArh1ûo&_6Sj,ciE.*F!6[ Uj6Hu'Yx5s95?Li~h2WIENDB`CaveConverter_src/doc/conv-p2s.bat0000644000000000000000000000012213035443042016066 0ustar rootrootjava -jar CaveConverter.jar exportedcave.txt survexfileout.svx p s lrud anonsplaysCaveConverter_src/doc/conv-s2t.bat0000644000000000000000000000012012621447114016074 0ustar rootrootjava -jar CaveConverter.jar survexfiletoimport.svx toporobotoutput.text s t lrudCaveConverter_src/build.xml0000644000000000000000000003437113036410142015014 0ustar rootroot Compiles the CaveConverter project, builds excutable JARs for the command line converter and windowed application and runs automated tests. Footleg Cave]]> Copyright © 2015 Footleg. Distributed under the terms of the GNU General Public License.]]> CaveConverter_src/build.properties0000644000000000000000000000015313036412560016405 0ustar rootroot# build properties application.vendor = Footleg application.title = Cave Converter build.version = 20170114