r322 - in trunk: echobase-services/src/main/java/fr/ifremer/echobase echobase-services/src/main/java/fr/ifremer/echobase/services echobase-services/src/main/java/fr/ifremer/echobase/services/configurations echobase-services/src/main/java/fr/ifremer/echobase/services/csv echobase-services/src/test/java/fr/ifremer/echobase echobase-services/src/test/java/fr/ifremer/echobase/services echobase-services/src/test/resources echobase-services/src/test/resources/import-data echobase-services/src/t
Author: tchemit Date: 2012-02-17 19:35:54 +0100 (Fri, 17 Feb 2012) New Revision: 322 Url: http://forge.codelutin.com/repositories/revision/echobase/322 Log: - continue import data tests - improve Foreign value parser (add the property name inside error message) - improve others tests (and make create embedded service testable) Added: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/CsvFileImportResult.java trunk/echobase-services/src/test/resources/import-data/ trunk/echobase-services/src/test/resources/import-data/acousticData/ trunk/echobase-services/src/test/resources/import-data/acousticData/movies.csv trunk/echobase-services/src/test/resources/import-data/catchesData/ trunk/echobase-services/src/test/resources/import-data/catchesData/subsample.csv trunk/echobase-services/src/test/resources/import-data/catchesData/totalsample.csv trunk/echobase-services/src/test/resources/import-data/commonData/ trunk/echobase-services/src/test/resources/import-data/commonData/transect.csv trunk/echobase-services/src/test/resources/import-data/commonData/transit.csv trunk/echobase-services/src/test/resources/import-data/commonData/voyage.csv trunk/echobase-services/src/test/resources/import-data/operation/ trunk/echobase-services/src/test/resources/import-data/operation/gearmetadatavalue.csv trunk/echobase-services/src/test/resources/import-data/operation/operation.csv trunk/echobase-services/src/test/resources/import-data/operation/operationmetadatavalue.csv Removed: trunk/echobase-services/src/test/java/fr/ifremer/echobase/TestHelper.java trunk/echobase-services/src/test/java/fr/ifremer/echobase/entities/ trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/AbstractEchoBaseServiceTest.java trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/DbImportExportServiceTest.java Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/InputFile.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/AbstractImportDataService.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/AcousticDataImportService.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/CatchesDataImportService.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/CommonDataImportService.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/DbEditorService.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/EmbeddedApplicationService.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/OperationImportService.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/ResultsImportService.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/configurations/ResultsImportConfiguration.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/AcousticDataImportModel.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/AcousticDataImportModelRow.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/CsvModelUtil.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/EchotypeImportModel.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/EntityCsvModel.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/GearMetadataValueImportModel.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/LengthAgeKeyImportModel.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/LengthWeightKeyImportModel.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/OperationImportModel.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/OperationMetadataValueImportModel.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/SubSampleImportModel.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/SubSampleImportModelRow.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/TotalSampleImportModel.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/TransectImportModel.java trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/TransitImportModel.java trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/AcousticDataImportServiceTest.java trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/CatchesDataImportServiceTest.java trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/CommonDataImportService2Test.java trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/CommonDataImportServiceTest.java trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/EchoBaseTestServiceSupport.java trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/EmbeddedApplicationServiceTest.java trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/FakeEchoBaseServiceContext.java trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/OperationImportServiceTest.java trunk/echobase-ui/src/main/java/fr/ifremer/echobase/ui/actions/importData/AbstractLaunchImport.java trunk/echobase-ui/src/main/webapp/WEB-INF/includes/importDataResults.jsp Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/InputFile.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/InputFile.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/InputFile.java 2012-02-17 18:35:54 UTC (rev 322) @@ -87,4 +87,8 @@ public void setLabel(String label) { this.label = label; } + + public boolean hasFile() { + return file!=null; + } } Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/AbstractImportDataService.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/AbstractImportDataService.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/AbstractImportDataService.java 2012-02-17 18:35:54 UTC (rev 322) @@ -28,6 +28,7 @@ import com.google.common.collect.Maps; import fr.ifremer.echobase.EchoBaseTechnicalException; import fr.ifremer.echobase.InputFile; +import fr.ifremer.echobase.entities.EchoBaseEntityEnum; import fr.ifremer.echobase.entities.EchoBaseUser; import fr.ifremer.echobase.entities.EntityModificationLog; import fr.ifremer.echobase.entities.references.SexCategory; @@ -36,6 +37,7 @@ import fr.ifremer.echobase.entities.references.SpeciesCategory; import fr.ifremer.echobase.entities.references.SpeciesCategoryDAO; import fr.ifremer.echobase.services.configurations.AbstractImportConfiguration; +import fr.ifremer.echobase.services.csv.CsvFileImportResult; import org.nuiton.topia.TopiaException; import org.nuiton.topia.persistence.TopiaDAO; import org.nuiton.topia.persistence.TopiaEntity; @@ -48,6 +50,7 @@ import java.io.Reader; import java.util.List; import java.util.Map; +import java.util.Set; /** * Abstract data import service. @@ -57,12 +60,12 @@ */ public abstract class AbstractImportDataService<M extends AbstractImportConfiguration> extends EchoBaseServiceSupport { - public final List<CsvImportResult> doImport(M configuration, - EchoBaseUser user) throws ImportException { + public final List<CsvFileImportResult> doImport(M configuration, + EchoBaseUser user) throws ImportException { try { - List<CsvImportResult> result = startImport(configuration, user); + List<CsvFileImportResult> result = startImport(configuration, user); // do commit commitTransaction("Could not execute import " + getImportLabel()); @@ -76,16 +79,16 @@ protected abstract String getImportLabel(); - protected abstract List<CsvImportResult> startImport(M configuration, - EchoBaseUser user) throws ImportException; + protected abstract List<CsvFileImportResult> startImport(M configuration, + EchoBaseUser user) throws ImportException; - protected void addResultAndLog(List<CsvImportResult> result, + protected void addResultAndLog(List<CsvFileImportResult> result, InputFile inputFile, - CsvImportResult importResult, + CsvFileImportResult importResult, EchoBaseUser user) { - if (importResult.getNumberCreated() > 0 || - importResult.getNumberUpdated() > 0) { + Set<EchoBaseEntityEnum> entityTypes = importResult.getEntityTypes(); + if (!entityTypes.isEmpty()) { result.add(importResult); @@ -93,22 +96,28 @@ StringBuilder description = new StringBuilder(); description.append("Depuis Fichier ").append(inputFile.getFileName()); - if (importResult.getNumberCreated() > 0) { - description.append(" [ nombre de création : ").append(importResult.getNumberCreated()).append("]"); - } - if (importResult.getNumberUpdated() > 0) { - description.append(" [ nombre de mises à jour : ").append(importResult.getNumberUpdated()).append("]"); - } TopiaDAO<EntityModificationLog> dao = getDAO(EntityModificationLog.class); - create(dao, - EntityModificationLog.PROPERTY_ENTITY_TYPE, importResult.entityType.name(), - EntityModificationLog.PROPERTY_ENTITY_ID, importType, - EntityModificationLog.PROPERTY_MODIFICATION_USER, user.getEmail(), - EntityModificationLog.PROPERTY_MODIFICATION_DATE, newDate(), - EntityModificationLog.PROPERTY_MODIFICATION_TEXT, description.toString() - ); + for (EchoBaseEntityEnum entityType : entityTypes) { + int numberCreated = importResult.getNumberCreated(entityType); + int numberUpdated = importResult.getNumberUpdated(entityType); + if (numberCreated > 0) { + description.append(" [ nombre de création : ").append(numberCreated).append("]"); + } + if (numberUpdated > 0) { + description.append(" [ nombre de mises à jour : ").append(numberUpdated).append("]"); + } + + create(dao, + EntityModificationLog.PROPERTY_ENTITY_TYPE, entityType.name(), + EntityModificationLog.PROPERTY_ENTITY_ID, importType, + EntityModificationLog.PROPERTY_MODIFICATION_USER, user.getEmail(), + EntityModificationLog.PROPERTY_MODIFICATION_DATE, newDate(), + EntityModificationLog.PROPERTY_MODIFICATION_TEXT, description.toString() + ); + } + } } @@ -142,8 +151,15 @@ return voyageMap; } - protected <E extends TopiaEntity> E create(TopiaDAO<E> dao) { + protected <E extends TopiaEntity> E newInstance(TopiaDAO<E> dao) { try { + E result = dao.newInstance(); + return result; + } catch (TopiaException e) { + throw new EchoBaseTechnicalException("Could not create new instance of entity", e); + } + }protected <E extends TopiaEntity> E create(TopiaDAO<E> dao) { + try { E result = dao.create(); return result; } catch (TopiaException e) { Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/AcousticDataImportService.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/AcousticDataImportService.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/AcousticDataImportService.java 2012-02-17 18:35:54 UTC (rev 322) @@ -48,6 +48,7 @@ import fr.ifremer.echobase.services.configurations.AcousticDataImportConfiguration; import fr.ifremer.echobase.services.csv.AcousticDataImportModel; import fr.ifremer.echobase.services.csv.AcousticDataImportModelRow; +import fr.ifremer.echobase.services.csv.CsvFileImportResult; import org.nuiton.util.csv.Import; import org.nuiton.util.csv.ImportRuntimeException; @@ -74,11 +75,11 @@ } @Override - protected List<CsvImportResult> startImport( + protected List<CsvFileImportResult> startImport( AcousticDataImportConfiguration configuration, EchoBaseUser user) throws ImportException { - List<CsvImportResult> result = Lists.newLinkedList(); + List<CsvFileImportResult> result = Lists.newLinkedList(); // get selected voyage Voyage voyage = getEntityById(Voyage.class, @@ -98,60 +99,32 @@ InputFile inputFile = configuration.getMoviesFile(); - CsvImportResult importDataAcquisition = new CsvImportResult( - EchoBaseEntityEnum.DataAcquisition, - inputFile.getFileName(), - false); + CsvFileImportResult importResult = importMoviesFile(voyage, + vessel, + esduCellType, + elementaryCellType, + configuration, + inputFile); - CsvImportResult importDataProcessing = new CsvImportResult( - EchoBaseEntityEnum.DataProcessing, - inputFile.getFileName(), - false); + addResultAndLog(result, inputFile, importResult, user); - CsvImportResult importCell = new CsvImportResult( - EchoBaseEntityEnum.Cell, - inputFile.getFileName(), - false); - - CsvImportResult importCellData = new CsvImportResult( - EchoBaseEntityEnum.Data, - inputFile.getFileName(), - false); - - importMoviesFile(voyage, - vessel, - esduCellType, - elementaryCellType, - configuration, - inputFile, - importDataAcquisition, - importDataProcessing, - importCell, - importCellData); - - addResultAndLog(result, inputFile, importDataAcquisition, user); - addResultAndLog(result, inputFile, importDataProcessing, user); - addResultAndLog(result, inputFile, importCell, user); - addResultAndLog(result, inputFile, importCellData, user); - return result; } private final DateFormat cellDateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss'Z'"); - private void importMoviesFile(Voyage voyage, - Vessel vessel, - CellType esduCellType, - CellType elementaryCellType, - AcousticDataImportConfiguration configuration, - InputFile inputFile, - CsvImportResult importDataAcquisition, - CsvImportResult importDataProcessing, - CsvImportResult importCell, - CsvImportResult importCellData + private CsvFileImportResult importMoviesFile(Voyage voyage, + Vessel vessel, + CellType esduCellType, + CellType elementaryCellType, + AcousticDataImportConfiguration configuration, + InputFile inputFile ) throws ImportException { + CsvFileImportResult importResult = new CsvFileImportResult( + inputFile.getFileName()); + Map<String, AcousticInstrument> instrumentsById = getEntitiesMap(AcousticInstrument.class, EchoBaseFunctions.ACOUSTIC_INSTRUMENT_ID); @@ -160,7 +133,7 @@ DataMetadata.class, EchoBaseFunctions.DATA_METADATA_NAME); AcousticDataImportModel csvModel = new AcousticDataImportModel( - getCsvSeparator()); + getCsvSeparator(), instrumentsById); DataAcquisitionDAO dataAcquisitionDAO = getDAO(DataAcquisition.class, DataAcquisitionDAO.class); @@ -171,6 +144,9 @@ boolean addDataAcquisition = configuration.isAddDataAcquisition(); + String suffix = + configuration.getCellPositionReference().getMetadataNameSuffix(); + Reader reader = getInputFileReader(inputFile); try { Import<AcousticDataImportModelRow> importer = @@ -206,12 +182,11 @@ } // Build the row acoustic instrument - String sndname = row.getSndName(); - String channelName = row.getChannelName(); - String instrumentId = sndname + channelName; - AcousticInstrument instrument = - instrumentsById.get(instrumentId); - +// String sndname = row.getSndName(); +// String channelName = row.getChannelName(); +// String instrumentId = sndname; + AcousticInstrument instrument = row.getAcousticInstrument(); +// instrumentsById.get(instrumentId); boolean isME70 = EchoBasePredicates.IS_ACOUSTIC_INSTRUMENT_ME70.apply(instrument); if (dataAcquisition == null || @@ -255,7 +230,7 @@ dataAcquisitionDAO ); - importDataAcquisition.incrementsNumberCreated(); + importResult.incrementsNumberCreated(EchoBaseEntityEnum.DataAcquisition); // add it to transect transect.addDataAcquisition(dataAcquisition); @@ -270,7 +245,7 @@ dataProcessingDAO ); - importDataProcessing.incrementsNumberUpdated(); + importResult.incrementsNumberCreated(EchoBaseEntityEnum.DataProcessing); // add it to data acquisition dataAcquisition.addDataProcessing(dataProcessing); @@ -293,18 +268,18 @@ Cell.PROPERTY_NAME, esduCellId ); - importCell.incrementsNumberCreated(); + importResult.incrementsNumberCreated(EchoBaseEntityEnum.Cell); // add it to data processing dataProcessing.addCell(esduCell); // create esdu cell data - createEsduCellData(configuration, + createEsduCellData(suffix, esduCell, dataMetadatasByName, row, dataDAO, - importCellData); + importResult); } else { // this is a elementary cell row @@ -326,22 +301,22 @@ Cell.PROPERTY_NAME, elementaryCellId ); - importCell.incrementsNumberCreated(); + importResult.incrementsNumberCreated(EchoBaseEntityEnum.Cell); // add it to esdu cell esduCell.addChilds(elementaryCell); // create datas of the elementary cell - createElementaryCellData(configuration, - elementaryCell, + createElementaryCellData(elementaryCell, dataMetadatasByName, row, dataDAO, - importCellData); + importResult); } } + return importResult; } catch (ImportRuntimeException e) { throw new ImportException(getLocale(), inputFile, e); } finally { @@ -349,75 +324,46 @@ } } - protected void createEsduCellData(AcousticDataImportConfiguration configuration, + protected void createEsduCellData(String suffix, Cell cell, - Map<String, DataMetadata> dataMetadatasByName, + Map<String, DataMetadata> dataMetadatas, AcousticDataImportModelRow row, DataDAO dao, - CsvImportResult importCellData) { + CsvFileImportResult importResult) { - DataMetadata dataMetadata; - Data data; String dataValue; - String suffix = - configuration.getCellPositionReference().getMetadataNameSuffix(); - // create Latitude data - dataMetadata = dataMetadatasByName.get("Latitude" + suffix); dataValue = row.getEsduCellDataLatitude(); - data = create(dao, Data.PROPERTY_DATA_METADATA, dataMetadata); - data.setDataValue(dataValue); - cell.addData(data); + createCellData(dao, cell, dataMetadatas, "Latitude" + suffix, + dataValue, importResult); - importCellData.incrementsNumberCreated(); - // create Longitude data - dataMetadata = dataMetadatasByName.get("Longitude" + suffix); dataValue = row.getEsduCellDataLongitude(); - data = create(dao, Data.PROPERTY_DATA_METADATA, dataMetadata); - data.setDataValue(dataValue); - cell.addData(data); + createCellData(dao, cell, dataMetadatas, "Longitude" + suffix, + dataValue, importResult); - importCellData.incrementsNumberCreated(); - // create Depth data - dataMetadata = dataMetadatasByName.get("DepthRefSurface" + suffix); dataValue = row.getEsduCellDataDepth(); - data = create(dao, Data.PROPERTY_DATA_METADATA, dataMetadata); - data.setDataValue(dataValue); - cell.addData(data); + createCellData(dao, cell, dataMetadatas, "DepthRefSurface" + suffix, + dataValue, importResult); - importCellData.incrementsNumberCreated(); - // create Time data - dataMetadata = dataMetadatasByName.get("Time" + suffix); dataValue = cellDateFormat.format(row.getCellDateStart()); - data = create(dao, Data.PROPERTY_DATA_METADATA, dataMetadata); - data.setDataValue(dataValue); - cell.addData(data); + createCellData(dao, cell, dataMetadatas, "Time" + suffix, + dataValue, importResult); - importCellData.incrementsNumberCreated(); - // create AcousticDensity data - dataMetadata = dataMetadatasByName.get("sa"); dataValue = row.getEsduCellDataAcousticDensity(); - data = create(dao, Data.PROPERTY_DATA_METADATA, dataMetadata); - data.setDataValue(dataValue); - cell.addData(data); - - importCellData.incrementsNumberCreated(); + createCellData(dao, cell, dataMetadatas, "sa", dataValue, importResult); } - private void createElementaryCellData(AcousticDataImportConfiguration configuration, - Cell cell, - Map<String, DataMetadata> dataMetadatasByName, + private void createElementaryCellData(Cell cell, + Map<String, DataMetadata> dataMetadatas, AcousticDataImportModelRow row, DataDAO dao, - CsvImportResult importCellData) { + CsvFileImportResult importResult) { - DataMetadata dataMetadata; - Data data; String dataValue; int cellType = row.getCellType(); @@ -441,33 +387,17 @@ } // create depth start data - dataMetadata = dataMetadatasByName.get(startMeta); dataValue = row.getCellDepthStart(); - data = create(dao, Data.PROPERTY_DATA_METADATA, dataMetadata); - data.setDataValue(dataValue); - cell.addData(data); + createCellData(dao, cell, dataMetadatas, startMeta, dataValue, importResult); - importCellData.incrementsNumberCreated(); - - // create depth end data - dataMetadata = dataMetadatasByName.get(endMeta); dataValue = row.getCellDepthEnd(); - data = create(dao, Data.PROPERTY_DATA_METADATA, dataMetadata); - data.setDataValue(dataValue); - cell.addData(data); + createCellData(dao, cell, dataMetadatas, endMeta, dataValue, importResult); - importCellData.incrementsNumberCreated(); - // create acoustic density data - dataMetadata = dataMetadatasByName.get("sa"); dataValue = row.getCellSa(); - data = create(dao, Data.PROPERTY_DATA_METADATA, dataMetadata); - data.setDataValue(dataValue); - cell.addData(data); + createCellData(dao, cell, dataMetadatas, "sa", dataValue, importResult); - importCellData.incrementsNumberCreated(); - } private DataAcquisition createDataAcquisition(AcousticDataImportConfiguration configuration, @@ -585,6 +515,22 @@ return dataProcessing; } + private void createCellData(DataDAO dao, + Cell cell, + Map<String, DataMetadata> dataMetadatasByName, + String metadataName, + String dataValue, + CsvFileImportResult importResult) { + + DataMetadata dataMetaData = dataMetadatasByName.get(metadataName); + Data data = create(dao); + data.setDataMetadata(dataMetaData); + data.setDataValue(dataValue); + cell.addData(data); + + importResult.incrementsNumberCreated(EchoBaseEntityEnum.Data); + } + private String getSoftwareVersion(AcousticDataImportConfiguration configuration, boolean isME70) { String result; Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/CatchesDataImportService.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/CatchesDataImportService.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/CatchesDataImportService.java 2012-02-17 18:35:54 UTC (rev 322) @@ -50,10 +50,13 @@ import fr.ifremer.echobase.services.configurations.CatchesDataImportConfiguration; import fr.ifremer.echobase.services.csv.BiometrySampleImportModel; import fr.ifremer.echobase.services.csv.BiometrySampleImportModelRow; +import fr.ifremer.echobase.services.csv.CsvFileImportResult; import fr.ifremer.echobase.services.csv.SubSampleImportModel; import fr.ifremer.echobase.services.csv.SubSampleImportModelRow; import fr.ifremer.echobase.services.csv.TotalSampleImportModel; import fr.ifremer.echobase.services.csv.TotalSampleImportModelRow; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; import org.nuiton.util.csv.Import; import org.nuiton.util.csv.ImportRuntimeException; @@ -72,16 +75,20 @@ */ public class CatchesDataImportService extends AbstractImportDataService<CatchesDataImportConfiguration> { + /** Logger. */ + private static final Log log = + LogFactory.getLog(CatchesDataImportService.class); + @Override protected String getImportLabel() { return l_(getLocale(), ImportDataMode.CatchesData.getI18nKey()); } @Override - protected List<CsvImportResult> startImport(CatchesDataImportConfiguration configuration, - EchoBaseUser user) throws ImportException { + protected List<CsvFileImportResult> startImport(CatchesDataImportConfiguration configuration, + EchoBaseUser user) throws ImportException { - List<CsvImportResult> result = Lists.newLinkedList(); + List<CsvFileImportResult> result = Lists.newLinkedList(); Voyage voyage = getEntityById(Voyage.class, configuration.getVoyageId()); @@ -108,41 +115,55 @@ SexCategory.class, EchoBaseFunctions.SEX_CATEGORY_NAME); - CsvImportResult totalSampleResult = importTotalSampleFile( - configuration.getTotalSampleFile(), - operationMap, - speciesMap, - sizeCategoryMap); + if (configuration.getTotalSampleFile().hasFile()) { + CsvFileImportResult totalSampleResult = importTotalSampleFile( + configuration.getTotalSampleFile(), + operationMap, + speciesMap, + sizeCategoryMap); - CsvImportResult subSampleResult = importSubSampleFile( - configuration.getSubSampleFile(), - operationMap, - speciesMap, - sizeCategoryMap, - sexCategoryMap); + addResultAndLog(result, configuration.getTotalSampleFile(), + totalSampleResult, user); + } -// CsvImportResult biometrySampleResult = importBiometrySampleFile( -// configuration.getBiometrySampleFile(), -// operationMap, -// speciesMap); + if (configuration.getSubSampleFile().hasFile()) { + CsvFileImportResult subSampleResult = importSubSampleFile( + configuration.getSubSampleFile(), + operationMap, + speciesMap, + sizeCategoryMap, + sexCategoryMap); - addResultAndLog(result, configuration.getTotalSampleFile(), totalSampleResult, user); - addResultAndLog(result, configuration.getSubSampleFile(), subSampleResult, user); -// addResultAndLog(result, configuration.getBiometrySampleFile(), biometrySampleResult, user); + addResultAndLog(result, configuration.getSubSampleFile(), + subSampleResult, user); + } + if (configuration.getBiometrySampleFile().hasFile()) { + CsvFileImportResult biometrySampleResult = importBiometrySampleFile( + configuration.getBiometrySampleFile(), + operationMap, + speciesMap); + + + addResultAndLog(result, configuration.getBiometrySampleFile(), + biometrySampleResult, user); + } return result; } - private CsvImportResult importTotalSampleFile(InputFile inputFile, - Map<String, Operation> operationMap, - Map<String, Species> speciesMap, - Map<String, SizeCategory> sizeCategoryMap) throws ImportException { + private CsvFileImportResult importTotalSampleFile(InputFile inputFile, + Map<String, Operation> operationMap, + Map<String, Species> speciesMap, + Map<String, SizeCategory> sizeCategoryMap) throws ImportException { - CsvImportResult importResult = new CsvImportResult( - EchoBaseEntityEnum.Sample, - inputFile.getFileName(), - false); + if (log.isInfoEnabled()) { + log.info("Starts import of totalSample from file " + + inputFile.getFileName()); + } + CsvFileImportResult importResult = new CsvFileImportResult( + inputFile.getFileName()); + TotalSampleImportModel csvModel = new TotalSampleImportModel(getCsvSeparator(), operationMap, speciesMap, @@ -202,26 +223,33 @@ Sample sample = operation.getSample(category, sampleType); - if (sample != null) { +// if (sample != null) { +// +// // can not have twice same sample +// throw new ImportException( +// l_(getLocale(), "echobase.importError.duplicate.sample", +// operation.getId(), +// sampleType.getName(), +// species.getBaracoudaCode(), +// sizeCategory.getName())); +// } - // can not have twice same sample - throw new ImportException( - l_(getLocale(), "echobase.importError.duplicate.sample", - operation.getId(), - sampleType.getName(), - species.getBaracoudaCode(), - sizeCategory.getName())); - } + if (sample == null) { - sample = row.getSample(); - sample.setSpeciesCategory(category); + // must create it - sample.setSampleType(sampleType); - Sample createdSample = create(sampleDAO, sample); + sample = row.getSample(); + sample.setSpeciesCategory(category); - operation.addSample(createdSample); + sample.setSampleType(sampleType); - importResult.incrementsNumberCreated(); + sample = addSample(sampleDAO, + operation, + sample, + importResult); + } else { + sample = sample; + } // create datas @@ -232,7 +260,8 @@ sampleDataTypeMeanLength, null, row.getMeanLength(), - createdSample); + sample, + importResult); } if (row.getMeanWeight() != null) { @@ -242,7 +271,8 @@ sampleDataTypeMeanWeight, null, row.getMeanWeight(), - createdSample); + sample, + importResult); } if (row.getNoPerKg() != null) { @@ -252,17 +282,21 @@ sampleDataTypeNoPerKg, null, row.getNoPerKg(), - createdSample); + sample, + importResult); } - // create sorted sample - Sample createdSortedSample = create(sampleDAO); + Sample createdSortedSample = newInstance(sampleDAO); createdSortedSample.setSampleType(sampleTypeSorted); createdSortedSample.setSampleWeight(row.getSortedWeight()); - operation.addSample(createdSortedSample); + // create sorted sample + addSample(sampleDAO, + operation, + createdSortedSample, + importResult); - importResult.incrementsNumberCreated(); + } return importResult; @@ -273,18 +307,21 @@ } } - private CsvImportResult importSubSampleFile(InputFile inputFile, - Map<String, Operation> operationMap, - Map<String, Species> speciesMap, - Map<String, SizeCategory> sizeCategoryMap, - Map<String, SexCategory> sexCategoryMap + private CsvFileImportResult importSubSampleFile(InputFile inputFile, + Map<String, Operation> operationMap, + Map<String, Species> speciesMap, + Map<String, SizeCategory> sizeCategoryMap, + Map<String, SexCategory> sexCategoryMap ) throws ImportException { - CsvImportResult importResult = new CsvImportResult( - EchoBaseEntityEnum.Sample, - inputFile.getFileName(), - false); + if (log.isInfoEnabled()) { + log.info("Starts import of subSample from file " + + inputFile.getFileName()); + } + CsvFileImportResult importResult = new CsvFileImportResult( + inputFile.getFileName()); + SubSampleImportModel csvModel = new SubSampleImportModel(getCsvSeparator(), operationMap, speciesMap, @@ -327,7 +364,8 @@ ); // find the sample with this category - Sample sample = operation.getSample(category, sampleTypeSubsample); + Sample sample = operation.getSample(category, + sampleTypeSubsample); if (sample == null) { @@ -337,11 +375,10 @@ sample.setSpeciesCategory(category); sample.setSampleType(sampleTypeSubsample); - sample = create(sampleDAO, sample); - - operation.addSample(sample); - - importResult.incrementsNumberUpdated(); + sample = addSample(sampleDAO, + operation, + sample, + importResult); } //create numberAtLength data @@ -349,16 +386,18 @@ sampleDataTypeNumberAtLength, "" + row.getLengthClass(), row.getNumberAtLength(), - sample); + sample, + importResult); - if (row.getWeightAtLength() > 0) { + if (row.getWeightAtLength() != null) { //create weightAtLength data addSampleData(sampleDataDAO, sampleDataTypeWeightAtLength, "" + row.getLengthClass(), row.getWeightAtLength(), - sample); + sample, + importResult); } } @@ -370,18 +409,22 @@ } } - private CsvImportResult importBiometrySampleFile(InputFile inputFile, - Map<String, Operation> operationMap, - Map<String, Species> speciesMap + private CsvFileImportResult importBiometrySampleFile(InputFile inputFile, + Map<String, Operation> operationMap, + Map<String, Species> speciesMap ) throws ImportException { - CsvImportResult importResult = new CsvImportResult( - EchoBaseEntityEnum.Sample, - inputFile.getFileName(), - false); + if (log.isInfoEnabled()) { + log.info("Starts import of biometrySample from file " + + inputFile.getFileName()); + } - BiometrySampleImportModel csvModel = new BiometrySampleImportModel(getCsvSeparator()); + CsvFileImportResult importResult = new CsvFileImportResult( + inputFile.getFileName()); + BiometrySampleImportModel csvModel = + new BiometrySampleImportModel(getCsvSeparator()); + SampleDAO sampleDAO = getDAO(Sample.class, SampleDAO.class); SampleDataDAO sampleDataDAO = getDAO(SampleData.class, SampleDataDAO.class); SampleTypeDAO sampleTypeDAO = getDAO(SampleType.class, SampleTypeDAO.class); @@ -408,16 +451,31 @@ } } + private Sample addSample(SampleDAO dao, + Operation operation, + Sample sample, + CsvFileImportResult importResult) { + Preconditions.checkNotNull(operation); + Preconditions.checkNotNull(sample); + Sample result = create(dao, sample); + operation.addSample(result); + importResult.incrementsNumberCreated(EchoBaseEntityEnum.Sample); + return result; + } + private SampleData addSampleData(SampleDataDAO dao, SampleDataType sampleDataType, String label, float value, - Sample sample) { + Sample sample, + CsvFileImportResult importResult) { SampleData sampleData = create(dao); sampleData.setSampleDataType(sampleDataType); sampleData.setDataValue(value); sampleData.setDataLabel(label); sample.addSampleData(sampleData); + + importResult.incrementsNumberCreated(EchoBaseEntityEnum.SampleData); return sampleData; } Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/CommonDataImportService.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/CommonDataImportService.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/CommonDataImportService.java 2012-02-17 18:35:54 UTC (rev 322) @@ -43,6 +43,7 @@ import fr.ifremer.echobase.entities.references.Vessel; import fr.ifremer.echobase.services.configurations.CommonDataImportConfiguration; import fr.ifremer.echobase.services.configurations.CommonDataImportMode; +import fr.ifremer.echobase.services.csv.CsvFileImportResult; import fr.ifremer.echobase.services.csv.TransectImportModel; import fr.ifremer.echobase.services.csv.TransectImportModelRow; import fr.ifremer.echobase.services.csv.TransitImportModel; @@ -75,11 +76,11 @@ } @Override - protected List<CsvImportResult> startImport( + protected List<CsvFileImportResult> startImport( CommonDataImportConfiguration configuration, EchoBaseUser user) throws ImportException { - List<CsvImportResult> result = Lists.newLinkedList(); + List<CsvFileImportResult> result = Lists.newLinkedList(); CommonDataImportMode importMode = configuration.getImportMode(); @@ -95,18 +96,18 @@ getEntityById(AreaOfOperation.class, configuration.getAreaOfOperationId()); - CsvImportResult voyageResult = importVoyageFile( + CsvFileImportResult voyageResult = importVoyageFile( configuration.getVoyageFile(), mission, areaOfOperation, configuration); - CsvImportResult transitResult = importTransitFile( + CsvFileImportResult transitResult = importTransitFile( configuration.getTransitFile(), configuration); - CsvImportResult transectResult = importTransectFile( + CsvFileImportResult transectResult = importTransectFile( configuration.getTransectFile(), vessel, configuration); @@ -120,7 +121,7 @@ case TRANSECT: { - CsvImportResult transectResult = importTransectFile( + CsvFileImportResult transectResult = importTransectFile( configuration.getTransectFile(), vessel, configuration); @@ -156,16 +157,14 @@ } } - protected CsvImportResult importVoyageFile( + protected CsvFileImportResult importVoyageFile( InputFile inputFile, Mission mission, AreaOfOperation areaOfOperation, CommonDataImportConfiguration configuration) throws ImportException { - CsvImportResult importResult = new CsvImportResult( - EchoBaseEntityEnum.Voyage, - inputFile.getFileName(), - false); + CsvFileImportResult importResult = new CsvFileImportResult( + inputFile.getFileName()); String voyageDescription = configuration.getVoyageDescription(); String datum = configuration.getDatum(); @@ -197,7 +196,7 @@ l_(getLocale(), "echobase.importError.can.only.import.one.voyage.atime")); } - importResult.incrementsNumberCreated(); + importResult.incrementsNumberCreated(EchoBaseEntityEnum.Voyage); } if (newVoyage == null) { @@ -216,14 +215,12 @@ } } - protected CsvImportResult importTransitFile( + protected CsvFileImportResult importTransitFile( InputFile inputFile, CommonDataImportConfiguration configuration) throws ImportException { - CsvImportResult importResult = new CsvImportResult( - EchoBaseEntityEnum.Transit, - inputFile.getFileName(), - false); + CsvFileImportResult importResult = new CsvFileImportResult( + inputFile.getFileName()); // get voyage Voyage voyage = getEntityById(Voyage.class, @@ -254,7 +251,7 @@ voyage.addTransit(createdTransit); - importResult.incrementsNumberCreated(); + importResult.incrementsNumberCreated(EchoBaseEntityEnum.Transit); } return importResult; @@ -265,15 +262,13 @@ } } - private CsvImportResult importTransectFile( + private CsvFileImportResult importTransectFile( InputFile inputFile, Vessel vessel, CommonDataImportConfiguration configuration) throws ImportException { - CsvImportResult importResult = new CsvImportResult( - EchoBaseEntityEnum.Transect, - inputFile.getFileName(), - false); + CsvFileImportResult importResult = new CsvFileImportResult( + inputFile.getFileName()); // get voyage Voyage voyage = getEntityById(Voyage.class, @@ -310,7 +305,7 @@ if (transit == null) { throw new ImportException( l_(getLocale(), "echobase.importError.no.transit.between.date", - voyage.getName(), timeCoverageStart, timeCoverageEnd)); + voyage.getName(), timeCoverageStart, timeCoverageEnd)); } transect.setVessel(vessel); @@ -323,7 +318,7 @@ Transect createdTransect = create(dao, transect); transit.addTransect(createdTransect); - importResult.incrementsNumberCreated(); + importResult.incrementsNumberCreated(EchoBaseEntityEnum.Transect); } return importResult; Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/DbEditorService.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/DbEditorService.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/DbEditorService.java 2012-02-17 18:35:54 UTC (rev 322) @@ -566,7 +566,7 @@ if (addDecorated) { // translate foreign key to his decorated value - model.addNewColumnForExport( + model.newColumnForExport( propertyName + "_lib", propertyName, CsvModelUtil.newForeignKeyDecoratedValue( Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/EmbeddedApplicationService.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/EmbeddedApplicationService.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/EmbeddedApplicationService.java 2012-02-17 18:35:54 UTC (rev 322) @@ -89,18 +89,12 @@ } } - protected EmbeddedApplicationConfiguration model; + public File createEmbeddedApplication(EmbeddedApplicationConfiguration model) { - public void createEmbeddedApplication(EmbeddedApplicationConfiguration model) { - - this.model = model; - File warLocation = model.getWarLocation(); String fileName = model.getFileName(); - String[] voyageIds = model.getVoyageIds(); - model.setNbSteps(5); File tempDirectory = model.getWorkingDirectory(); @@ -121,7 +115,7 @@ FileUtil.createDirectoryIfNecessary(dir); // copy embedded files to / - copyEmbeddedFiles(dir); + copyEmbeddedFiles(model, dir); model.incrementsProgression(); @@ -129,7 +123,7 @@ FileUtil.copy(warLocation, new File(dir, warLocation.getName())); // create h2 db in /db - createH2Batabase(dir, true, voyageIds); + createH2Batabase(model, dir, true); } catch (Exception eee) { throw new EchoBaseTechnicalException( @@ -138,9 +132,10 @@ } EchoBaseIOUtil.compressZipFile(zipFile, dir); + return zipFile; } - protected void copyEmbeddedFiles(File zipDirectory) throws IOException, URISyntaxException { + protected void copyEmbeddedFiles(EmbeddedApplicationConfiguration model, File zipDirectory) throws IOException, URISyntaxException { for (EmbeddedFile startFile : EmbeddedFile.values()) { @@ -169,8 +164,10 @@ } } - protected TopiaContext createH2Batabase(File zipDirectory, boolean closeRootContext, - String... voyageIds) throws IOException, TopiaException { + protected TopiaContext createH2Batabase(EmbeddedApplicationConfiguration model, + File zipDirectory, + boolean closeRootContext + ) throws IOException, TopiaException { model.incrementsProgression(); @@ -234,6 +231,8 @@ // replicate referentiel to new h2 db replicateReferentiel(topiaContext); + String[] voyageIds = model.getVoyageIds(); + if (voyageIds != null) { model.incrementsProgression(); Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/OperationImportService.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/OperationImportService.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/OperationImportService.java 2012-02-17 18:35:54 UTC (rev 322) @@ -44,6 +44,7 @@ import fr.ifremer.echobase.entities.references.OperationMetadata; import fr.ifremer.echobase.entities.references.Vessel; import fr.ifremer.echobase.services.configurations.OperationImportConfiguration; +import fr.ifremer.echobase.services.csv.CsvFileImportResult; import fr.ifremer.echobase.services.csv.GearMetadataValueImportModel; import fr.ifremer.echobase.services.csv.GearMetadataValueImportModelRow; import fr.ifremer.echobase.services.csv.OperationImportModel; @@ -82,11 +83,11 @@ } @Override - protected List<CsvImportResult> startImport( + protected List<CsvFileImportResult> startImport( OperationImportConfiguration configuration, EchoBaseUser user) throws ImportException { - List<CsvImportResult> result = Lists.newLinkedList(); + List<CsvFileImportResult> result = Lists.newLinkedList(); // get selected voyage Voyage voyage = getEntityById(Voyage.class, @@ -104,7 +105,7 @@ Map<String, Gear> gearMap = getEntitiesMap( Gear.class, EchoBaseFunctions.GEAR_CASINO_GEAR_NAME); - CsvImportResult nbOperations = importOperationFile( + CsvFileImportResult nbOperations = importOperationFile( configuration.getOperationFile(), voyage, vesselMap, @@ -117,12 +118,12 @@ Map<String, Operation> operationMap = Maps.uniqueIndex( operations, EchoBaseFunctions.OPERATION_ID); - CsvImportResult nbOperationMetas = importOperationMetadataFile( + CsvFileImportResult nbOperationMetas = importOperationMetadataFile( configuration.getOperationMetadataFile(), vesselMap, operationMap); - CsvImportResult nbGearMetas = importGearMetadataFile( + CsvFileImportResult nbGearMetas = importGearMetadataFile( configuration.getGearMetadataFile(), vesselMap, gearMap, @@ -140,20 +141,20 @@ return result; } - protected CsvImportResult importOperationFile( + protected CsvFileImportResult importOperationFile( InputFile inputFile, Voyage voyage, Map<String, Vessel> vesselMap, Map<String, Gear> gearMap) throws ImportException { - CsvImportResult importResult = new CsvImportResult( - EchoBaseEntityEnum.Operation, - inputFile.getFileName(), - false); - if (log.isInfoEnabled()) { - log.info("Starts import of operations from file "+inputFile.getFileName()); + log.info("Starts import of operation from file " + + inputFile.getFileName()); } + + CsvFileImportResult importResult = new CsvFileImportResult( + inputFile.getFileName()); + Map<String, DepthStratum> depthStratumMap = getEntitiesMap( DepthStratum.class, EchoBaseFunctions.DEPTH_STRATUM_ID); @@ -187,7 +188,7 @@ transect.addOperation(createdOperation); - importResult.incrementsNumberCreated(); + importResult.incrementsNumberCreated(EchoBaseEntityEnum.Operation); } return importResult; @@ -198,21 +199,19 @@ } } - protected CsvImportResult importOperationMetadataFile( + protected CsvFileImportResult importOperationMetadataFile( InputFile inputFile, Map<String, Vessel> vesselMap, Map<String, Operation> operationMap) throws ImportException { - CsvImportResult importResult = new CsvImportResult( - EchoBaseEntityEnum.OperationMetadataValue, - inputFile.getFileName(), - false); - if (log.isInfoEnabled()) { - log.info("Starts import of operation metadata values from file "+ + log.info("Starts import of operation metadata values from file " + inputFile.getFileName()); } + CsvFileImportResult importResult = new CsvFileImportResult( + inputFile.getFileName()); + Map<String, OperationMetadata> operationMetadatasByName = getEntitiesMap(OperationMetadata.class, EchoBaseFunctions.OPERATION_METADATA_NAME); @@ -242,7 +241,7 @@ dao, operationMetadataValueToCreate); operation.addOperationMetadataValue(operationMetadataValue); - importResult.incrementsNumberCreated(); + importResult.incrementsNumberCreated(EchoBaseEntityEnum.OperationMetadataValue); } return importResult; } catch (ImportRuntimeException e) { @@ -252,22 +251,20 @@ } } - protected CsvImportResult importGearMetadataFile( + protected CsvFileImportResult importGearMetadataFile( InputFile inputFile, Map<String, Vessel> vesselMap, Map<String, Gear> gearMap, Map<String, Operation> operationMap) throws ImportException { - CsvImportResult importResult = new CsvImportResult( - EchoBaseEntityEnum.GearMetadataValue, - inputFile.getFileName(), - false); - if (log.isInfoEnabled()) { - log.info("Starts import of gear metadata values from file "+ + log.info("Starts import of gear metadata values from file " + inputFile.getFileName()); } + CsvFileImportResult importResult = new CsvFileImportResult( + inputFile.getFileName()); + Map<String, GearMetadata> gearMetadatasByType = getEntitiesMap(GearMetadata.class, EchoBaseFunctions.GEAR_METADATA_NAME); @@ -297,7 +294,7 @@ dao, gearMetadataValuetoCreate); operation.addGearMetadataValue(gearMetadataValue); - importResult.incrementsNumberCreated(); + importResult.incrementsNumberCreated(EchoBaseEntityEnum.GearMetadataValue); } return importResult; } catch (ImportRuntimeException e) { Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/ResultsImportService.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/ResultsImportService.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/ResultsImportService.java 2012-02-17 18:35:54 UTC (rev 322) @@ -46,6 +46,7 @@ import fr.ifremer.echobase.entities.references.Strata; import fr.ifremer.echobase.services.configurations.ResultsImportConfiguration; import fr.ifremer.echobase.services.configurations.ResultsImportMode; +import fr.ifremer.echobase.services.csv.CsvFileImportResult; import fr.ifremer.echobase.services.csv.EchotypeImportModel; import fr.ifremer.echobase.services.csv.EchotypeImportModelRow; import fr.ifremer.echobase.services.csv.LengthAgeKeyImportModel; @@ -80,10 +81,10 @@ } @Override - public List<CsvImportResult> startImport(ResultsImportConfiguration configuration, - EchoBaseUser user) throws ImportException { + public List<CsvFileImportResult> startImport(ResultsImportConfiguration configuration, + EchoBaseUser user) throws ImportException { - List<CsvImportResult> result = Lists.newLinkedList(); + List<CsvFileImportResult> result = Lists.newLinkedList(); ResultsImportMode importMode = configuration.getImportMode(); @@ -102,9 +103,9 @@ Species.class, EchoBaseFunctions.SPECIES_BARACOUDA_CODE); - if (configuration.canImportLengthAgeKeyFile()) { + if (configuration.getLengthAgeKeyFile().hasFile()) { - CsvImportResult importResult = importLenthAgeKey( + CsvFileImportResult importResult = importLenthAgeKey( configuration.getLengthAgeKeyFile(), voyageMap, speciesMap @@ -115,9 +116,9 @@ importResult, user); } - if (configuration.canImportLengthWeightKeyFile()) { + if (configuration.getLengthWeightKeyFile().hasFile()) { - CsvImportResult importResult = importLenghtWeightKey( + CsvFileImportResult importResult = importLenghtWeightKey( configuration.getLengthWeightKeyFile(), voyageMap, speciesMap @@ -127,9 +128,9 @@ importResult, user); } - if (configuration.canImportEchotypeFile()) { + if (configuration.getEchotypeFile().hasFile()) { - CsvImportResult importResult = importEchotypeFile( + CsvFileImportResult importResult = importEchotypeFile( configuration.getEchotypeFile(), voyageMap, speciesMap @@ -142,15 +143,15 @@ case REGION: - if (configuration.canImportRegionsFile()) { - CsvImportResult importResult = importRegionsFile( + if (configuration.getRegionsFile().hasFile()) { + CsvFileImportResult importResult = importRegionsFile( configuration.getRegionsFile()); addResultAndLog(result, configuration.getRegionsFile(), importResult, user); } - if (configuration.canImportAssociationFile()) { - CsvImportResult importResult = importRegionAssociationFile( + if (configuration.getAssociationFile().hasFile()) { + CsvFileImportResult importResult = importRegionAssociationFile( configuration.getAssociationFile()); addResultAndLog(result, configuration.getAssociationFile(), @@ -159,15 +160,15 @@ break; case ACOUSTIC: - if (configuration.canImportRegionsFile()) { - CsvImportResult importResult = importRegionsFile( + if (configuration.getRegionsFile().hasFile()) { + CsvFileImportResult importResult = importRegionsFile( configuration.getRegionsFile()); addResultAndLog(result, configuration.getRegionsFile(), importResult, user); } - if (configuration.canImportAssociationFile()) { - CsvImportResult importResult = importRegionAssociationFile( + if (configuration.getAssociationFile().hasFile()) { + CsvFileImportResult importResult = importRegionAssociationFile( configuration.getAssociationFile()); addResultAndLog(result, configuration.getAssociationFile(), @@ -178,12 +179,10 @@ return result; } - protected CsvImportResult importRegionsFile(InputFile inputFile) throws ImportException { + protected CsvFileImportResult importRegionsFile(InputFile inputFile) throws ImportException { - CsvImportResult importResult = new CsvImportResult( - EchoBaseEntityEnum.Cell, - inputFile.getFileName(), - false); + CsvFileImportResult importResult = new CsvFileImportResult( + inputFile.getFileName()); RegionCellImportModel csvModel = new RegionCellImportModel( serviceContext.getConfiguration().getCsvSeparator()); @@ -199,7 +198,7 @@ //TODO - importResult.incrementsNumberCreated(); + importResult.incrementsNumberCreated(EchoBaseEntityEnum.Cell); } return importResult; } catch (ImportRuntimeException e) { @@ -209,14 +208,12 @@ } } - protected CsvImportResult importRegionAssociationFile(InputFile inputFile) throws ImportException { + protected CsvFileImportResult importRegionAssociationFile(InputFile inputFile) throws ImportException { RegionCellAssociationImportModel csvModel = new RegionCellAssociationImportModel( serviceContext.getConfiguration().getCsvSeparator()); - CsvImportResult importResult = new CsvImportResult( - EchoBaseEntityEnum.Cell, - inputFile.getFileName(), - false); + CsvFileImportResult importResult = new CsvFileImportResult( + inputFile.getFileName()); CellDAO dao = getDAO(Cell.class, CellDAO.class); @@ -229,7 +226,7 @@ //TODO - importResult.incrementsNumberUpdated(); + importResult.incrementsNumberUpdated(EchoBaseEntityEnum.Cell); } return importResult; @@ -240,14 +237,12 @@ } } - protected CsvImportResult importLenghtWeightKey(InputFile inputFile, - Map<String, Voyage> voyageMap, - Map<String, Species> speciesMap) throws ImportException { + protected CsvFileImportResult importLenghtWeightKey(InputFile inputFile, + Map<String, Voyage> voyageMap, + Map<String, Species> speciesMap) throws ImportException { - CsvImportResult importResult = new CsvImportResult( - EchoBaseEntityEnum.LengthWeightKey, - inputFile.getFileName(), - false); + CsvFileImportResult importResult = new CsvFileImportResult( + inputFile.getFileName()); Map<String, SizeCategory> sizeCategoryMap = getEntitiesMap( SizeCategory.class, @@ -297,7 +292,7 @@ // attach it to voyage voyage.addLengthWeightKey(lengthWeightKey); - importResult.incrementsNumberCreated(); + importResult.incrementsNumberCreated(EchoBaseEntityEnum.LengthWeightKey); } return importResult; @@ -308,14 +303,12 @@ } } - protected CsvImportResult importLenthAgeKey(InputFile inputFile, - Map<String, Voyage> voyageMap, - Map<String, Species> speciesMap) throws ImportException { + protected CsvFileImportResult importLenthAgeKey(InputFile inputFile, + Map<String, Voyage> voyageMap, + Map<String, Species> speciesMap) throws ImportException { - CsvImportResult importResult = new CsvImportResult( - EchoBaseEntityEnum.LengthAgeKey, - inputFile.getFileName(), - false); + CsvFileImportResult importResult = new CsvFileImportResult( + inputFile.getFileName()); Map<String, Strata> strataMap = getEntitiesMap( Strata.class, EchoBaseFunctions.STRATA_BY_NAME); @@ -343,7 +336,7 @@ // attach it to voyage voyage.addLengthAgeKey(lengthAgeKey); - importResult.incrementsNumberCreated(); + importResult.incrementsNumberCreated(EchoBaseEntityEnum.LengthAgeKey); } return importResult; } catch (ImportRuntimeException e) { @@ -353,14 +346,12 @@ } } - private CsvImportResult importEchotypeFile(InputFile inputFile, - Map<String, Voyage> voyageMap, - Map<String, Species> speciesMap) throws ImportException { + private CsvFileImportResult importEchotypeFile(InputFile inputFile, + Map<String, Voyage> voyageMap, + Map<String, Species> speciesMap) throws ImportException { - CsvImportResult importResult = new CsvImportResult( - EchoBaseEntityEnum.Echotype, - inputFile.getFileName(), - false); + CsvFileImportResult importResult = new CsvFileImportResult( + inputFile.getFileName()); Map<String, DepthStratum> depthStratumMap = getEntitiesMap( DepthStratum.class, @@ -412,10 +403,10 @@ voyage.addEchotype(echotype); - importResult.incrementsNumberCreated(); + importResult.incrementsNumberCreated(EchoBaseEntityEnum.Echotype); } else { - importResult.incrementsNumberUpdated(); + importResult.incrementsNumberUpdated(EchoBaseEntityEnum.Echotype); } Species species = row.getSpecies(); Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/configurations/ResultsImportConfiguration.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/configurations/ResultsImportConfiguration.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/configurations/ResultsImportConfiguration.java 2012-02-17 18:35:54 UTC (rev 322) @@ -104,42 +104,22 @@ return regionsFile; } - public boolean canImportRegionsFile() { - return regionsFile.getFile() != null; - } - public InputFile getAssociationFile() { return associationFile; } - public boolean canImportAssociationFile() { - return associationFile.getFile() != null; - } - public InputFile getEchotypeFile() { return echotypeFile; } - public boolean canImportEchotypeFile() { - return echotypeFile.getFile() != null; - } - public InputFile getLengthAgeKeyFile() { return lengthAgeKeyFile; } - public boolean canImportLengthAgeKeyFile() { - return lengthAgeKeyFile.getFile() != null; - } - public InputFile getLengthWeightKeyFile() { return lengthWeightKeyFile; } - public boolean canImportLengthWeightKeyFile() { - return lengthWeightKeyFile.getFile() != null; - } - @Override public InputFile[] getInputFiles() { return new InputFile[]{regionsFile, associationFile, echotypeFile, Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/AcousticDataImportModel.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/AcousticDataImportModel.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/AcousticDataImportModel.java 2012-02-17 18:35:54 UTC (rev 322) @@ -27,7 +27,10 @@ import fr.ifremer.echobase.entities.data.Data; import fr.ifremer.echobase.entities.data.DataAcquisition; import fr.ifremer.echobase.entities.data.DataProcessing; +import fr.ifremer.echobase.entities.references.AcousticInstrument; +import java.util.Map; + /** * To import acoustic datas (says {@link DataAcquisition}, * {@link DataProcessing}, {@link Cell} and {@link Data}. @@ -37,14 +40,16 @@ */ public class AcousticDataImportModel extends CsvModelUtil.AbstractImportModel<AcousticDataImportModelRow> { - public AcousticDataImportModel(char separator) { + public AcousticDataImportModel(char separator, + Map<String, AcousticInstrument> instrumentsById) { super(separator); newIgnoredColumn("MOVIES_EILayer");//A newIgnoredColumn("MOVIES_EILayer\\sndset");//B - newMandatoryColumn("MOVIES_EILayer\\sndset\\sndname", AcousticDataImportModelRow.PROPERTY_SNDNAME);//C + newMandatoryColumn("MOVIES_EILayer\\sndset\\sndname", AcousticDataImportModelRow.PROPERTY_ACOUSTIC_INSTRUMENT, CsvModelUtil.newForeignKeyValue(AcousticInstrument.class, AcousticInstrument.PROPERTY_ID, instrumentsById));//C newIgnoredColumn("MOVIES_EILayer\\sndset\\sndident");//D newIgnoredColumn("MOVIES_EILayer\\sndset\\softChannelId");//E - newMandatoryColumn("MOVIES_EILayer\\sndset\\channelName", AcousticDataImportModelRow.PROPERTY_CHANNEL_NAME);//F + newIgnoredColumn("MOVIES_EILayer\\sndset\\channelName");//F +// newMandatoryColumn("MOVIES_EILayer\\sndset\\channelName", AcousticDataImportModelRow.PROPERTY_CHANNEL_NAME);//F newIgnoredColumn("MOVIES_EILayer\\sndset\\dataType");//G newIgnoredColumn("MOVIES_EILayer\\sndset\\beamType");//H newIgnoredColumn("MOVIES_EILayer\\sndset\\acousticFrequency");//I @@ -65,8 +70,8 @@ newIgnoredColumn("MOVIES_EILayer\\sndset\\bottomDetectionMinLevel");//X newIgnoredColumn("MOVIES_EILayer\\sndset\\AlongTXRXWeightId");//Y newIgnoredColumn("MOVIES_EILayer\\sndset\\AthwartTXRXWeightId");//Z - newIgnoredColumn("MOVIES_EILayer\\sndset\\splitBeamAlongTXRXWeightId");//AA - newIgnoredColumn("MOVIES_EILayer\\sndset\\splitBeamAthwartTXRXWeightId");//AB + newIgnoredColumn("MOVIES_EILayer\\sndset\\SplitBeamAlongTXRXWeightId");//AA + newIgnoredColumn("MOVIES_EILayer\\sndset\\SplitBeamAthwartTXRXWeightId");//AB newIgnoredColumn("MOVIES_EILayer\\sndset\\bandWidth");//AC newIgnoredColumn("MOVIES_EILayer\\sndset\\tvgminrange");//AD newIgnoredColumn("MOVIES_EILayer\\sndset\\tvgmaxrange");//AE @@ -82,7 +87,7 @@ newIgnoredColumn("MOVIES_EILayer\\shipnav\\driftspeed");//AO newIgnoredColumn("MOVIES_EILayer\\shipnav\\driftcourse");//AP newIgnoredColumn("MOVIES_EILayer\\shipnav\\heading");//AQ - newIgnoredColumn("MOVIES_EILayer\\shipnav\roll");//AR + newIgnoredColumn("MOVIES_EILayer\\shipnav\\roll");//AR newIgnoredColumn("MOVIES_EILayer\\shipnav\\pitch");//AS newIgnoredColumn("MOVIES_EILayer\\shipnav\\heave");//AT newMandatoryColumn("MOVIES_EILayer\\shipnav\\depth", AcousticDataImportModelRow.PROPERTY_ESDU_CELL_DATA_DEPTH);//AU Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/AcousticDataImportModelRow.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/AcousticDataImportModelRow.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/AcousticDataImportModelRow.java 2012-02-17 18:35:54 UTC (rev 322) @@ -23,6 +23,8 @@ */ package fr.ifremer.echobase.services.csv; +import fr.ifremer.echobase.entities.references.AcousticInstrument; + import java.util.Date; /** @@ -33,9 +35,10 @@ */ public class AcousticDataImportModelRow { - public static final String PROPERTY_CHANNEL_NAME = "channelName"; + public static final String PROPERTY_ACOUSTIC_INSTRUMENT= "acousticInstrument"; - public static final String PROPERTY_SNDNAME = "sndname"; +// public static final String PROPERTY_CHANNEL_NAME = "channelName"; +// public static final String PROPERTY_SND_NAME = "sndName"; public static final String PROPERTY_CELL_TYPE = "cellType"; @@ -73,9 +76,9 @@ public static final String PROPERTY_EI_THRESHOLD = "eiThreshold"; - protected String sndName; +// protected String sndName; - protected String channelName; +// protected String channelName; protected Date cellDateStart; @@ -115,22 +118,32 @@ protected float eiThreshold; - public String getSndName() { - return sndName; - } + protected AcousticInstrument acousticInstrument; - public void setSndName(String sndName) { - this.sndName = sndName; + public AcousticInstrument getAcousticInstrument() { + return acousticInstrument; } - public String getChannelName() { - return channelName; + public void setAcousticInstrument(AcousticInstrument acousticInstrument) { + this.acousticInstrument = acousticInstrument; } - public void setChannelName(String channelName) { - this.channelName = channelName; - } +// public String getSndName() { +// return sndName; +// } +// +// public void setSndName(String sndName) { +// this.sndName = sndName; +// } +// public String getChannelName() { +// return channelName; +// } +// +// public void setChannelName(String channelName) { +// this.channelName = channelName; +// } + public Date getCellDateStart() { return cellDateStart; } Added: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/CsvFileImportResult.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/CsvFileImportResult.java (rev 0) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/CsvFileImportResult.java 2012-02-17 18:35:54 UTC (rev 322) @@ -0,0 +1,76 @@ +package fr.ifremer.echobase.services.csv; + +import com.google.common.collect.Maps; +import com.google.common.collect.Sets; +import fr.ifremer.echobase.entities.EchoBaseEntityEnum; + +import java.io.Serializable; +import java.util.Map; +import java.util.Set; + +/** + * To keep result of the import of a file. + * + * @author tchemit <chemit@codelutin.com> + * @since 0.3 + */ +public class CsvFileImportResult implements Serializable { + + private static final long serialVersionUID = 1L; + + /** Name of the csv file to import. */ + protected final String importFileName; + + /** type of entity to import csv datas. */ + protected final Set<EchoBaseEntityEnum> entityTypes; + + /** Count of created entities. */ + protected final Map<EchoBaseEntityEnum, Integer> numberCreated; + + /** Count of updated entities. */ + protected final Map<EchoBaseEntityEnum, Integer> numberUpdated; + + public CsvFileImportResult(String importFileName) { + this.importFileName = importFileName; + entityTypes = Sets.newHashSet(); + numberCreated = Maps.newEnumMap(EchoBaseEntityEnum.class); + numberUpdated = Maps.newEnumMap(EchoBaseEntityEnum.class); + } + + public Set<EchoBaseEntityEnum> getEntityTypes() { + return Sets.immutableEnumSet(entityTypes); + } + + public int getNumberCreated(EchoBaseEntityEnum entityType) { + return getInteger(numberCreated, entityType); + } + + public int getNumberUpdated(EchoBaseEntityEnum entityType) { + return getInteger(numberUpdated, entityType); + } + + public void incrementsNumberCreated(EchoBaseEntityEnum entityType) { + increments(numberCreated, entityType); + } + + public void incrementsNumberUpdated(EchoBaseEntityEnum entityType) { + increments(numberUpdated, entityType); + } + + protected int getInteger(Map<EchoBaseEntityEnum, Integer> map, + EchoBaseEntityEnum entityType) { + Integer result = map.get(entityType); + return result == null ? 0 : result; + } + + protected void increments(Map<EchoBaseEntityEnum, Integer> map, + EchoBaseEntityEnum entityType) { + Integer result = map.get(entityType); + if (result == null) { + + entityTypes.add(entityType); + result = 0; + } + map.put(entityType, ++result); + } +} Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/CsvModelUtil.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/CsvModelUtil.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/CsvModelUtil.java 2012-02-17 18:35:54 UTC (rev 322) @@ -23,10 +23,7 @@ */ package fr.ifremer.echobase.services.csv; -import com.google.common.base.Function; import com.google.common.collect.Lists; -import com.google.common.collect.Maps; -import fr.ifremer.echobase.EchoBaseFunctions; import fr.ifremer.echobase.EchoBaseTechnicalException; import fr.ifremer.echobase.services.DecoratorService; import org.apache.commons.collections.CollectionUtils; @@ -79,29 +76,14 @@ } }; - public static <E extends TopiaEntity> ForeignKeyValue<E> newForeignKeyValue(Class<E> type) { - return new ForeignKeyValue<E>(type); + public static <E extends TopiaEntity> ForeignKeyValue<E> newForeignKeyValue(Class<E> type, String propertyName, Map<String, E> universe) { + return new ForeignKeyValue<E>(type, propertyName, universe); } - public static <E extends TopiaEntity> ForeignKeyValue<E> newForeignKeyValue(Class<E> type, Collection<E> entitites) { - Map<String, E> universe = Maps.uniqueIndex(entitites, EchoBaseFunctions.TO_TOPIAID); - return newForeignKeyValue(type, universe); + public static <E extends TopiaEntity> ForeignKeyValueForAssociation<E> newForeignKeyValueAssociation(Class<E> type, String propertyName, Map<String, E> universe) { + return new ForeignKeyValueForAssociation<E>(type, propertyName, universe); } - public static <E extends TopiaEntity> ForeignKeyValue<E> newForeignKeyValue(Class<E> type, Map<String, E> universe) { - return new ForeignKeyValue<E>(type, universe); - } - - public static <E extends TopiaEntity> ForeignKeyValue<E> newForeignKeyValue(Class<E> type, Collection<E> entitites, Function<E, String> transform) { - Map<String, E> universe = Maps.uniqueIndex(entitites, transform); - return new ForeignKeyValue<E>(type, universe); - } - - public static <E extends TopiaEntity> ForeignKeyValueForAssociation<E> newForeignKeyValueAssociation(Class<E> type, Collection<E> entitites, Function<E, String> transform) { - Map<String, E> universe = Maps.uniqueIndex(entitites, transform); - return new ForeignKeyValueForAssociation<E>(type, universe); - } - public static <E extends TopiaEntity> ForeignKeyDecoratedValue<E> newForeignKeyDecoratedValue(Class<E> entityType, DecoratorService decoratorService, Locale locale) { return new ForeignKeyDecoratedValue<E>(entityType, decoratorService, locale); @@ -111,16 +93,11 @@ return new AssociationValueParserFormatter<E>(null, null); } -// public static <E extends TopiaEntity> AssociationValueParserFormatter<E> newAssociationValueParserFormatter(Class<E> entityType, -// Map<String, E> universe) { -// return new AssociationValueParserFormatter<E>(entityType, universe); -// } - public static final ValueParser<Date> IMPORT_DAY = new DateValue("dd/MM/yy"); public static final ValueParser<Date> IMPORT_DAY_TIME2 = new DateValue("yyyy-MM-dd HH:mm:ss"); - public static final ValueParser<Date> IMPORT_DAY_TIME3 = new DateValue("dd-MM-yy HH:mm aa"); + public static final ValueParser<Date> IMPORT_DAY_TIME3 = new DateValue("yyyy/MM/dd HH:mm:ss.SSSS"); public static final ValueParser<Boolean> INT_TO_BOOLEAN_PARSER = new ValueParser<Boolean>() { @@ -201,20 +178,20 @@ public static class ForeignKeyValue<E extends TopiaEntity> implements ValueParserFormatter<E> { + protected final String propertyName; + protected final Class<E> entityType; protected final Map<String, E> universe; public ForeignKeyValue(Class<E> entityType, + String propertyName, Map<String, E> universe) { this.entityType = entityType; + this.propertyName = propertyName; this.universe = universe; } - public ForeignKeyValue(Class<E> entityType) { - this.entityType = entityType; - universe = Maps.newHashMap(); - } @Override public E parse(String value) throws ParseException { @@ -228,7 +205,7 @@ // can not find entity this is a big problem for us... throw new EchoBaseTechnicalException( - "Could not find entity of type "+entityType.getName()+" with name " + value); + "Could not find entity of type " + entityType.getSimpleName() + " with '" + propertyName + "' = " + value); } } return result; @@ -246,13 +223,17 @@ public static class ForeignKeyValueForAssociation<E extends TopiaEntity> implements ValueParser<Collection<E>> { + protected final String propertyName; + protected final Class<E> entityType; protected final Map<String, E> universe; public ForeignKeyValueForAssociation(Class<E> entityType, + String propertyName, Map<String, E> universe) { this.entityType = entityType; + this.propertyName = propertyName; this.universe = universe; } @@ -268,7 +249,7 @@ // can not find entity this is a big problem for us... throw new EchoBaseTechnicalException( - "Could not find entity with name " + value); + "Could not find entity with '" + propertyName + "' = " + value); } } return Arrays.asList(result); Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/EchotypeImportModel.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/EchotypeImportModel.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/EchotypeImportModel.java 2012-02-17 18:35:54 UTC (rev 322) @@ -62,9 +62,9 @@ newMandatoryColumn("echotypeName", EchotypeImportModelRow.PROPERTY_NAME); newMandatoryColumn("meaning", EchotypeImportModelRow.PROPERTY_MEANING); - newMandatoryColumn(EchotypeImportModelRow.PROPERTY_VOYAGE, CsvModelUtil.newForeignKeyValue(Voyage.class, voyageMap)); - newMandatoryColumn("DepthStratumID", EchotypeImportModelRow.PROPERTY_DEPTH_STRATUM, CsvModelUtil.newForeignKeyValue(DepthStratum.class, depthStratumMap)); - newMandatoryColumn("genusSpecies", EchotypeImportModelRow.PROPERTY_SPECIES, CsvModelUtil.newForeignKeyValue(Species.class, speciesMap)); + newMandatoryColumn(EchotypeImportModelRow.PROPERTY_VOYAGE, CsvModelUtil.newForeignKeyValue(Voyage.class, Voyage.PROPERTY_NAME, voyageMap)); + newMandatoryColumn("DepthStratumID", EchotypeImportModelRow.PROPERTY_DEPTH_STRATUM, CsvModelUtil.newForeignKeyValue(DepthStratum.class, DepthStratum.PROPERTY_ID, depthStratumMap)); + newMandatoryColumn("genusSpecies", EchotypeImportModelRow.PROPERTY_SPECIES, CsvModelUtil.newForeignKeyValue(Species.class, Species.PROPERTY_BARACOUDA_CODE, speciesMap)); } Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/EntityCsvModel.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/EntityCsvModel.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/EntityCsvModel.java 2012-02-17 18:35:54 UTC (rev 322) @@ -24,11 +24,15 @@ package fr.ifremer.echobase.services.csv; import com.google.common.base.Function; +import com.google.common.collect.Maps; +import fr.ifremer.echobase.EchoBaseFunctions; import fr.ifremer.echobase.entities.meta.TableMeta; import org.nuiton.topia.persistence.TopiaEntity; import java.util.Collection; +import java.util.Collections; import java.util.Date; +import java.util.Map; /** * A model to import / export entities into csv files. @@ -63,58 +67,65 @@ public void addForeignKeyForExport(String propertyName, Class<TopiaEntity> entityType) { + Map<String, TopiaEntity> universe = Collections.emptyMap(); + newColumnForExport( propertyName, - CsvModelUtil.newForeignKeyValue(entityType) + CsvModelUtil.newForeignKeyValue(entityType, + propertyName, + universe) ); } public <E extends TopiaEntity> void addForeignKeyForImport(String headerName, String propertyName, Class<E> entityType, - Collection<E> universe, + Collection<E> entities, Function<E, String> transform) { + Map<String, E> universe = Maps.uniqueIndex(entities, transform); + newMandatoryColumn( headerName, propertyName, - CsvModelUtil.newForeignKeyValue(entityType, universe, transform) + CsvModelUtil.newForeignKeyValue(entityType, + propertyName, + universe) ); } public <E extends TopiaEntity> void addForeignKeyForAssociationForImport(String headerName, String propertyName, Class<E> entityType, - Collection<E> universe, + Collection<E> entities, Function<E, String> transform) { + Map<String, E> universe = Maps.uniqueIndex(entities, transform); + newMandatoryColumn( headerName, propertyName, - CsvModelUtil.newForeignKeyValueAssociation(entityType, universe, transform) + CsvModelUtil.newForeignKeyValueAssociation(entityType, + propertyName, + universe) ); } public <E extends TopiaEntity> void addForeignKeyForImport(String propertyName, Class<E> entityType, - Collection<E> universe) { + Collection<E> entities) { + Map<String, E> universe = Maps.uniqueIndex( + entities, EchoBaseFunctions.TO_TOPIAID); + newMandatoryColumn( propertyName, - CsvModelUtil.newForeignKeyValue(entityType, universe) + CsvModelUtil.newForeignKeyValue(entityType, + propertyName, + universe) ); } - public void addNewColumnForExport(String headerName, - String propertyName, - CsvModelUtil.ForeignKeyDecoratedValue<TopiaEntity> topiaEntityForeignKeyDecoratedValue) { - newColumnForExport( - headerName, - propertyName, - topiaEntityForeignKeyDecoratedValue - ); - } - public void addDefaultColumn(String propertyName, Class<?> type) { addDefaultColumn(propertyName, propertyName, type); Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/GearMetadataValueImportModel.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/GearMetadataValueImportModel.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/GearMetadataValueImportModel.java 2012-02-17 18:35:54 UTC (rev 322) @@ -54,11 +54,11 @@ gearMetadataValue */ - newMandatoryColumn("vesselName", GearMetadataValueImportModelRow.PROPERTY_VESSEL, CsvModelUtil.newForeignKeyValue(Vessel.class, vesselMap)); - newMandatoryColumn("operationID", GearMetadataValueImportModelRow.PROPERTY_OPERATION, CsvModelUtil.newForeignKeyValue(Operation.class, operationMap)); + newMandatoryColumn("vesselName", GearMetadataValueImportModelRow.PROPERTY_VESSEL, CsvModelUtil.newForeignKeyValue(Vessel.class, Vessel.PROPERTY_NAME, vesselMap)); + newMandatoryColumn("operationID", GearMetadataValueImportModelRow.PROPERTY_OPERATION, CsvModelUtil.newForeignKeyValue(Operation.class, Operation.PROPERTY_ID, operationMap)); - newMandatoryColumn("metadataType", GearMetadataValue.PROPERTY_GEAR_METADATA, CsvModelUtil.newForeignKeyValue(GearMetadata.class, gearMetadataMap)); - newMandatoryColumn("gearCode", GearMetadataValue.PROPERTY_GEAR, CsvModelUtil.newForeignKeyValue(Gear.class, gearMap)); + newMandatoryColumn("metadataType", GearMetadataValue.PROPERTY_GEAR_METADATA, CsvModelUtil.newForeignKeyValue(GearMetadata.class, GearMetadata.PROPERTY_NAME, gearMetadataMap)); + newMandatoryColumn("gearCode", GearMetadataValue.PROPERTY_GEAR, CsvModelUtil.newForeignKeyValue(Gear.class, Gear.PROPERTY_CASINO_GEAR_NAME, gearMap)); newMandatoryColumn("gearMetadataValue", GearMetadataValue.PROPERTY_DATA_VALUE); } Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/LengthAgeKeyImportModel.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/LengthAgeKeyImportModel.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/LengthAgeKeyImportModel.java 2012-02-17 18:35:54 UTC (rev 322) @@ -53,14 +53,14 @@ this.strataMap = strataMap; this.speciesMap = speciesMap; - newMandatoryColumn(LengthAgeKeyImportModelRow.PROPERTY_VOYAGE, CsvModelUtil.newForeignKeyValue(Voyage.class, voyageMap)); + newMandatoryColumn(LengthAgeKeyImportModelRow.PROPERTY_VOYAGE, CsvModelUtil.newForeignKeyValue(Voyage.class, Voyage.PROPERTY_NAME, voyageMap)); newMandatoryColumn(LengthAgeKey.PROPERTY_AGE, CsvModelUtil.PRIMITIVE_INTEGER); newMandatoryColumn(LengthAgeKey.PROPERTY_PERCENT_AT_AGE, CsvModelUtil.PRIMITIVE_FLOAT); newMandatoryColumn(LengthAgeKey.PROPERTY_LENGTH, CsvModelUtil.PRIMITIVE_FLOAT); newMandatoryColumn(LengthAgeKey.PROPERTY_METADATA); - newMandatoryColumn(LengthAgeKey.PROPERTY_STRATA, CsvModelUtil.newForeignKeyValue(Strata.class, strataMap)); - newMandatoryColumn("codeMemo", LengthAgeKey.PROPERTY_SPECIES, CsvModelUtil.newForeignKeyValue(Species.class, speciesMap)); + newMandatoryColumn(LengthAgeKey.PROPERTY_STRATA, CsvModelUtil.newForeignKeyValue(Strata.class, Strata.PROPERTY_NAME, strataMap)); + newMandatoryColumn("codeMemo", LengthAgeKey.PROPERTY_SPECIES, CsvModelUtil.newForeignKeyValue(Species.class,Species.PROPERTY_BARACOUDA_CODE, speciesMap)); } Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/LengthWeightKeyImportModel.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/LengthWeightKeyImportModel.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/LengthWeightKeyImportModel.java 2012-02-17 18:35:54 UTC (rev 322) @@ -64,9 +64,9 @@ newMandatoryColumn(LengthWeightKey.PROPERTY_APARAMETER, CsvModelUtil.PRIMITIVE_FLOAT); newMandatoryColumn(LengthWeightKey.PROPERTY_BPARAMETER, CsvModelUtil.PRIMITIVE_FLOAT); - newMandatoryColumn(LengthWeightKeyImportModelRow.PROPERTY_VOYAGE, CsvModelUtil.newForeignKeyValue(Voyage.class, voyageMap)); - newMandatoryColumn(LengthWeightKeyImportModelRow.PROPERTY_SIZE_CATEGORY, CsvModelUtil.newForeignKeyValue(SizeCategory.class, sizeCategoryMap)); - newMandatoryColumn(LengthWeightKeyImportModelRow.PROPERTY_SPECIES, CsvModelUtil.newForeignKeyValue(Species.class, speciesMap)); + newMandatoryColumn(LengthWeightKeyImportModelRow.PROPERTY_VOYAGE, CsvModelUtil.newForeignKeyValue(Voyage.class, Voyage.PROPERTY_NAME, voyageMap)); + newMandatoryColumn(LengthWeightKeyImportModelRow.PROPERTY_SIZE_CATEGORY, CsvModelUtil.newForeignKeyValue(SizeCategory.class, SizeCategory.PROPERTY_NAME, sizeCategoryMap)); + newMandatoryColumn(LengthWeightKeyImportModelRow.PROPERTY_SPECIES, CsvModelUtil.newForeignKeyValue(Species.class, Species.PROPERTY_BARACOUDA_CODE, speciesMap)); } @Override Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/OperationImportModel.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/OperationImportModel.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/OperationImportModel.java 2012-02-17 18:35:54 UTC (rev 322) @@ -58,10 +58,10 @@ gearShootingEndLongitude // gearName // */ - newMandatoryColumn("vesselName", OperationImportModelRow.PROPERTY_VESSEL, CsvModelUtil.newForeignKeyValue(Vessel.class, vesselMap)); + newMandatoryColumn("vesselName", OperationImportModelRow.PROPERTY_VESSEL, CsvModelUtil.newForeignKeyValue(Vessel.class, Vessel.PROPERTY_NAME, vesselMap)); - newMandatoryColumn("gearCode", Operation.PROPERTY_GEAR, CsvModelUtil.newForeignKeyValue(Gear.class, gearMap)); - newMandatoryColumn("depthStratumID", Operation.PROPERTY_DEPTH_STRATUM, CsvModelUtil.newForeignKeyValue(DepthStratum.class, depthStratumMap)); + newMandatoryColumn("gearCode", Operation.PROPERTY_GEAR, CsvModelUtil.newForeignKeyValue(Gear.class, Gear.PROPERTY_CASINO_GEAR_NAME, gearMap)); + newMandatoryColumn("depthStratumID", Operation.PROPERTY_DEPTH_STRATUM, CsvModelUtil.newForeignKeyValue(DepthStratum.class, DepthStratum.PROPERTY_ID, depthStratumMap)); newMandatoryColumn("operationID",Operation.PROPERTY_ID); newMandatoryColumn(Operation.PROPERTY_MID_HAUL_LATITUDE, CsvModelUtil.PRIMITIVE_FLOAT); newMandatoryColumn(Operation.PROPERTY_MID_HAUL_LONGITUDE, CsvModelUtil.PRIMITIVE_FLOAT); Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/OperationMetadataValueImportModel.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/OperationMetadataValueImportModel.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/OperationMetadataValueImportModel.java 2012-02-17 18:35:54 UTC (rev 322) @@ -51,10 +51,10 @@ operationMetadataValue/ */ - newMandatoryColumn("vesselName", OperationMetadataValueImportModelRow.PROPERTY_VESSEL, CsvModelUtil.newForeignKeyValue(Vessel.class, vesselMap)); - newMandatoryColumn("operationID", OperationMetadataValueImportModelRow.PROPERTY_OPERATION, CsvModelUtil.newForeignKeyValue(Operation.class, operationMap)); + newMandatoryColumn("vesselName", OperationMetadataValueImportModelRow.PROPERTY_VESSEL, CsvModelUtil.newForeignKeyValue(Vessel.class, Vessel.PROPERTY_NAME, vesselMap)); + newMandatoryColumn("operationID", OperationMetadataValueImportModelRow.PROPERTY_OPERATION, CsvModelUtil.newForeignKeyValue(Operation.class, Operation.PROPERTY_ID, operationMap)); - newMandatoryColumn("metadataType", OperationMetadataValue.PROPERTY_OPERATION_METADATA, CsvModelUtil.newForeignKeyValue(OperationMetadata.class, operationMetadataMap)); + newMandatoryColumn("metadataType", OperationMetadataValue.PROPERTY_OPERATION_METADATA, CsvModelUtil.newForeignKeyValue(OperationMetadata.class, OperationMetadata.PROPERTY_NAME, operationMetadataMap)); newMandatoryColumn("operationMetadataValue", OperationMetadataValue.PROPERTY_DATA_VALUE); } Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/SubSampleImportModel.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/SubSampleImportModel.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/SubSampleImportModel.java 2012-02-17 18:35:54 UTC (rev 322) @@ -67,10 +67,10 @@ newIgnoredColumn("units"); newIgnoredColumn("round"); - newMandatoryColumn("operationID", SubSampleImportModelRow.PROPERTY_OPERATION, CsvModelUtil.newForeignKeyValue(Operation.class, operationMap)); - newMandatoryColumn("baracoudacode", SubSampleImportModelRow.PROPERTY_SPECIES, CsvModelUtil.newForeignKeyValue(Species.class, speciesMap)); - newMandatoryColumn(SubSampleImportModelRow.PROPERTY_SIZE_CATEGORY, CsvModelUtil.newForeignKeyValue(SizeCategory.class, sizeCategoryMap)); - newMandatoryColumn(SubSampleImportModelRow.PROPERTY_SEX_CATEGORY, CsvModelUtil.newForeignKeyValue(SexCategory.class, sexCategoryMap)); + newMandatoryColumn("operationID", SubSampleImportModelRow.PROPERTY_OPERATION, CsvModelUtil.newForeignKeyValue(Operation.class,Operation.PROPERTY_ID, operationMap)); + newMandatoryColumn("baracoudacode", SubSampleImportModelRow.PROPERTY_SPECIES, CsvModelUtil.newForeignKeyValue(Species.class, Species.PROPERTY_BARACOUDA_CODE, speciesMap)); + newMandatoryColumn(SubSampleImportModelRow.PROPERTY_SIZE_CATEGORY, CsvModelUtil.newForeignKeyValue(SizeCategory.class, SizeCategory.PROPERTY_NAME,sizeCategoryMap)); + newMandatoryColumn(SubSampleImportModelRow.PROPERTY_SEX_CATEGORY, CsvModelUtil.newForeignKeyValue(SexCategory.class, SexCategory.PROPERTY_NAME,sexCategoryMap)); newMandatoryColumn(Sample.PROPERTY_SAMPLE_WEIGHT, CsvModelUtil.PRIMITIVE_FLOAT); newMandatoryColumn(Sample.PROPERTY_NUMBER_SAMPLED, CsvModelUtil.PRIMITIVE_INTEGER); Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/SubSampleImportModelRow.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/SubSampleImportModelRow.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/SubSampleImportModelRow.java 2012-02-17 18:35:54 UTC (rev 322) @@ -67,7 +67,7 @@ protected float numberAtLength; - protected float weightAtLength; + protected Float weightAtLength; protected String lengthClass; @@ -127,11 +127,11 @@ this.numberAtLength = numberAtLength; } - public float getWeightAtLength() { + public Float getWeightAtLength() { return weightAtLength; } - public void setWeightAtLength(float weightAtLength) { + public void setWeightAtLength(Float weightAtLength) { this.weightAtLength = weightAtLength; } Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/TotalSampleImportModel.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/TotalSampleImportModel.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/TotalSampleImportModel.java 2012-02-17 18:35:54 UTC (rev 322) @@ -56,9 +56,9 @@ sortedWeight */ - newMandatoryColumn("operationID", TotalSampleImportModelRow.PROPERTY_OPERATION, CsvModelUtil.newForeignKeyValue(Operation.class, operationMap)); - newMandatoryColumn("baracoudacode", TotalSampleImportModelRow.PROPERTY_SPECIES, CsvModelUtil.newForeignKeyValue(Species.class, speciesMap)); - newMandatoryColumn(TotalSampleImportModelRow.PROPERTY_SIZE_CATEGORY, CsvModelUtil.newForeignKeyValue(SizeCategory.class, sizeCategoryMap)); + newMandatoryColumn("operationID", TotalSampleImportModelRow.PROPERTY_OPERATION, CsvModelUtil.newForeignKeyValue(Operation.class, Operation.PROPERTY_ID, operationMap)); + newMandatoryColumn("baracoudacode", TotalSampleImportModelRow.PROPERTY_SPECIES, CsvModelUtil.newForeignKeyValue(Species.class, Species.PROPERTY_BARACOUDA_CODE, speciesMap)); + newMandatoryColumn(TotalSampleImportModelRow.PROPERTY_SIZE_CATEGORY, CsvModelUtil.newForeignKeyValue(SizeCategory.class, SizeCategory.PROPERTY_NAME, sizeCategoryMap)); newMandatoryColumn(Sample.PROPERTY_SAMPLE_WEIGHT, CsvModelUtil.PRIMITIVE_FLOAT); newMandatoryColumn(Sample.PROPERTY_NUMBER_SAMPLED, CsvModelUtil.PRIMITIVE_INTEGER); Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/TransectImportModel.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/TransectImportModel.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/TransectImportModel.java 2012-02-17 18:35:54 UTC (rev 322) @@ -41,7 +41,7 @@ super(separator); newMandatoryColumn( "voyageName", TransectImportModelRow.PROPERTY_VOYAGE, - CsvModelUtil.newForeignKeyValue(Voyage.class, voyageMap)); + CsvModelUtil.newForeignKeyValue(Voyage.class, Voyage.PROPERTY_NAME, voyageMap)); newMandatoryColumn(Transect.PROPERTY_TITLE); newMandatoryColumn(Transect.PROPERTY_TRANSECT_ABSTRACT); Modified: trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/TransitImportModel.java =================================================================== --- trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/TransitImportModel.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/main/java/fr/ifremer/echobase/services/csv/TransitImportModel.java 2012-02-17 18:35:54 UTC (rev 322) @@ -41,7 +41,7 @@ public TransitImportModel(char separator, Map<String, Voyage> voyageMap) { super(separator); - newMandatoryColumn("voyageName", TransitImportModelRow.PROPERTY_VOYAGE, CsvModelUtil.newForeignKeyValue(Voyage.class, voyageMap)); + newMandatoryColumn("voyageName", TransitImportModelRow.PROPERTY_VOYAGE, CsvModelUtil.newForeignKeyValue(Voyage.class, Voyage.PROPERTY_NAME, voyageMap)); newMandatoryColumn(Transit.PROPERTY_DESCRIPTION); newMandatoryColumn(Transit.PROPERTY_START_TIME, CsvModelUtil.DAY_TIME); newMandatoryColumn(Transit.PROPERTY_END_TIME, CsvModelUtil.DAY_TIME); Deleted: trunk/echobase-services/src/test/java/fr/ifremer/echobase/TestHelper.java =================================================================== --- trunk/echobase-services/src/test/java/fr/ifremer/echobase/TestHelper.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/test/java/fr/ifremer/echobase/TestHelper.java 2012-02-17 18:35:54 UTC (rev 322) @@ -1,96 +0,0 @@ -/* - * #%L - * EchoBase :: Entities - * - * $Id$ - * $HeadURL$ - * %% - * Copyright (C) 2011 Ifremer, Codelutin - * %% - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero 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 Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * #L% - */ -package fr.ifremer.echobase; - -import fr.ifremer.echobase.entities.EchoBaseEntityEnum; -import org.apache.commons.io.FileUtils; -import org.junit.Ignore; -import org.nuiton.topia.TopiaContext; -import org.nuiton.topia.persistence.TopiaEntity; - -import java.io.File; -import java.util.ArrayList; -import java.util.List; - -/** - * Utility methods for tests - * - * @author sletellier <letellier@codelutin.com> - * @since 0.2 - */ -@Ignore -public class TestHelper { - - protected static File basedir; - - protected static final long timestamp = System.currentTimeMillis(); - - public static File getBasedir() { - //FIXME : No we do not want to go in tmp directory :( We want to stay - // inside of the project. So a mvn clean will remove all tests data. - if (basedir == null) { -// String tmp = System.getProperty("basedir"); -// if (tmp == null) { -// tmp = new File("").getAbsolutePath(); -// } -// basedir = new File(tmp); - basedir = FileUtils.getTempDirectory(); - } - return basedir; - } - - public static File getTestBasedir(Class<?> testClass) { - File result = new File(getBasedir(), testClass.getName() + "_" + timestamp); - return result; - } - - public static TopiaContext getRootContext(File dbDir) { - EchoBaseTopiaRootContextFactory factory = - new EchoBaseTopiaRootContextFactory(); - - TopiaContext context = factory.newEmbeddedDatabase(dbDir); - return context; - } - - /** - * Used to get all contract of a package - * - * @param entitiesPackage package contening desired entities - * @return contracts contained in entitiesPackage - */ - public static EchoBaseEntityEnum[] getContractsOf(Package entitiesPackage) { - EchoBaseEntityEnum[] echoBaseEntityEnums = EchoBaseEntityEnum.values(); - List<EchoBaseEntityEnum> refClasses = new ArrayList<EchoBaseEntityEnum>(); - for (EchoBaseEntityEnum echoBaseEntityEnum : echoBaseEntityEnums) { - - // Get all entities in package fr.ifremer.echobase.entities.references - Class<? extends TopiaEntity> contract = echoBaseEntityEnum.getContract(); - if (entitiesPackage.equals(contract.getPackage())) { - refClasses.add(echoBaseEntityEnum); - } - } - return refClasses.toArray(new EchoBaseEntityEnum[refClasses.size()]); - } - -} Deleted: trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/AbstractEchoBaseServiceTest.java =================================================================== --- trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/AbstractEchoBaseServiceTest.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/AbstractEchoBaseServiceTest.java 2012-02-17 18:35:54 UTC (rev 322) @@ -1,111 +0,0 @@ -/* - * #%L - * EchoBase :: Services - * - * $Id$ - * $HeadURL$ - * %% - * Copyright (C) 2011 Ifremer, Codelutin - * %% - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero 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 Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * #L% - */ -package fr.ifremer.echobase.services; - -import fr.ifremer.echobase.EchoBaseConfiguration; -import fr.ifremer.echobase.EchoBaseTopiaRootContextFactory; -import fr.ifremer.echobase.TestHelper; -import fr.ifremer.echobase.entities.MockEntityVisitorCreator; -import fr.ifremer.echobase.entities.meta.DbMeta; -import junit.framework.Assert; -import org.junit.After; -import org.nuiton.topia.TopiaContext; -import org.nuiton.topia.TopiaException; -import org.nuiton.topia.persistence.TopiaEntity; - -import java.io.File; -import java.util.Locale; - -/** - * Common methods (manage transaction, services...) to have on EchoBase tests. - * - * @author sletellier <letellier@codelutin.com> - * @since 0.2 - */ -public abstract class AbstractEchoBaseServiceTest extends Assert { - - protected TopiaContext transaction; - - protected EchoBaseConfiguration config; - - protected EchoBaseServiceFactory serviceFactory; - - protected DbMeta dbMeta; - - @After - public void after() throws TopiaException { - if (transaction != null && !transaction.isClosed()) { - transaction.closeContext(); - } - } - - public TopiaContext getTransaction() throws Exception { - if (transaction == null || transaction.isClosed()) { - EchoBaseTopiaRootContextFactory factory = - new EchoBaseTopiaRootContextFactory(); - File basedir = TestHelper.getBasedir(); - File target = new File(basedir, "/target"); - TopiaContext rootContext = factory.newEmbeddedDatabase(target); - transaction = rootContext.beginTransaction(); - } - return transaction; - } - - public EchoBaseServiceFactory getServiceFactory() { - if (serviceFactory == null) { - serviceFactory = new EchoBaseServiceFactory(); - } - return serviceFactory; - } - - public EchoBaseConfiguration getConfig() { - if (config == null) { - config = new EchoBaseConfiguration(); - } - return config; - } - - public DbMeta getDbMeta() { - if (dbMeta == null) { - dbMeta = DbMeta.newDbMeta(); - } - return dbMeta; - } - - protected <E extends EchoBaseService> E getService(Class<E> clazz) throws Exception { - EchoBaseServiceContext serviceContext = DefaultEchoBaseServiceContext.newContext( - Locale.getDefault(), - getTransaction(), - getConfig(), - getDbMeta(), - new EchoBaseServiceFactory() - ); - return getServiceFactory().newService(clazz, serviceContext); - } - - public <T extends TopiaEntity> T createMockedEntity(Class<T> type) throws Exception { - MockEntityVisitorCreator visitor = new MockEntityVisitorCreator(getTransaction()); - return visitor.createEntity(type); - } -} Modified: trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/AcousticDataImportServiceTest.java =================================================================== --- trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/AcousticDataImportServiceTest.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/AcousticDataImportServiceTest.java 2012-02-17 18:35:54 UTC (rev 322) @@ -31,10 +31,12 @@ import fr.ifremer.echobase.entities.data.Transit; import fr.ifremer.echobase.entities.data.Voyage; import fr.ifremer.echobase.services.configurations.AcousticDataImportConfiguration; +import fr.ifremer.echobase.services.configurations.CellPositionReference; +import fr.ifremer.echobase.services.csv.CsvFileImportResult; import org.junit.Assert; +import org.junit.Ignore; import org.junit.Test; -import java.util.Iterator; import java.util.List; /** @@ -46,22 +48,20 @@ public class AcousticDataImportServiceTest extends EchoBaseTestServiceSupport { protected FakeEchoBaseServiceContext initContext() { - return new FakeEchoBaseServiceContext("/import-data/echobase-0.3-commonData-result.h2.db"); + return new FakeEchoBaseServiceContext("/import-data/echobase-0.3-commonData-result.h2.db.gz"); } protected String[] getImportPath(String filename) { return new String[]{"/import-data", "acousticData", filename}; } + @Ignore @Test public void doImport() throws Exception { assertNbEntities(Voyage.class, 1); assertNbEntities(Transit.class, 3); assertNbEntities(Transect.class, 181); - - // import operations - assertNbEntities(DataAcquisition.class, 0); assertNbEntities(DataProcessing.class, 0); assertNbEntities(Cell.class, 0); @@ -72,27 +72,40 @@ conf.setVoyageId("fr.ifremer.echobase.entities.data.Voyage#1329429559711#0.2622586586792377"); conf.setVesselId("fr.ifremer.echobase.entities.references.Vessel#1323196672049#0.9790502711645855"); + conf.setAcousticDensityUnit("acousticDensityUnit"); + conf.setAcquisitionSoftwareVersionER60("acquisitionSoftwareVersionER60"); + conf.setAcquisitionSoftwareVersionME70("acquisitionSoftwareVersionME70"); + conf.setAddDataAcquisition(false); + conf.setTransceiverAcquisitionAbsorptionDescription("transceiverAcquisitionAbsorptionDescription"); + conf.setCellPositionReference(CellPositionReference.START); + conf.setDigitThreshold(1.5f); + conf.setEchosounderSoundSpeed("echosounderSoundSpeed"); + conf.setLoggedDataDatatype("loggedDataDatatype"); + conf.setLoggedDataFormat("loggedDataFormat"); + conf.setNotes("notes"); + conf.setPingDutyCycle("pingDutyCycle"); + conf.setProcessingDescription("processingDescription"); + conf.setProcessingTemplate("processingTemplate"); + conf.setSounderConstant(1.0f); + conf.setSoundSpeedCalculationsER60("soundSpeedCalculationsER60"); + conf.setSoundSpeedCalculationsME70("soundSpeedCalculationsME70"); + conf.setTransceiverAcquisitionAbsorptionDescription("transceiverAcquisitionAbsorptionDescription"); prepareInputFile(conf.getMoviesFile(), getImportPath("movies.csv")); AcousticDataImportService service = getService(AcousticDataImportService.class); - List<CsvImportResult> result = + List<CsvFileImportResult> result = service.doImport(conf, createFakeUser()); Assert.assertNotNull(result); - Assert.assertEquals(4, result.size()); - Iterator<CsvImportResult> iterator = result.iterator(); - assertCsvImportResult(iterator.next(), DataAcquisition.class, 61, 0, 61); - assertCsvImportResult(iterator.next(), DataProcessing.class, 183, 0, 183); - assertCsvImportResult(iterator.next(), Cell.class, 427, 0, 427); - assertCsvImportResult(iterator.next(), Data.class, 427, 0, 427); - - assertNbEntities(DataAcquisition.class, 0); - assertNbEntities(DataProcessing.class, 0); - assertNbEntities(Cell.class, 0); - assertNbEntities(Data.class, 0); + Assert.assertEquals(1, result.size()); + CsvFileImportResult importResult = result.get(0); + assertCsvImportResult(importResult, DataAcquisition.class, 61, 0, 61); + assertCsvImportResult(importResult, DataProcessing.class, 183, 0, 183); + assertCsvImportResult(importResult, Cell.class, 427, 0, 427); + assertCsvImportResult(importResult, Data.class, 427, 0, 427); } } Modified: trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/CatchesDataImportServiceTest.java =================================================================== --- trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/CatchesDataImportServiceTest.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/CatchesDataImportServiceTest.java 2012-02-17 18:35:54 UTC (rev 322) @@ -30,7 +30,9 @@ import fr.ifremer.echobase.entities.data.Transit; import fr.ifremer.echobase.entities.data.Voyage; import fr.ifremer.echobase.services.configurations.CatchesDataImportConfiguration; +import fr.ifremer.echobase.services.csv.CsvFileImportResult; import org.junit.Assert; +import org.junit.Ignore; import org.junit.Test; import java.util.Iterator; @@ -45,7 +47,7 @@ public class CatchesDataImportServiceTest extends EchoBaseTestServiceSupport { protected FakeEchoBaseServiceContext initContext() { - return new FakeEchoBaseServiceContext("/import-data/echobase-0.3-operation-result.h2.db"); + return new FakeEchoBaseServiceContext("/import-data/echobase-0.3-operation-result.h2.db.gz"); } protected String[] getImportPath(String filename) { @@ -53,15 +55,44 @@ } @Test - public void doImport() throws Exception { + public void doImportTotalSample() throws Exception { assertNbEntities(Voyage.class, 1); assertNbEntities(Transit.class, 3); assertNbEntities(Transect.class, 181); assertNbEntities(Operation.class, 61); + assertNbEntities(Sample.class, 0); + assertNbEntities(SampleData.class, 0); - // import operations + CatchesDataImportConfiguration conf = + new CatchesDataImportConfiguration(getLocale()); + conf.setVoyageId("fr.ifremer.echobase.entities.data.Voyage#1329429559711#0.2622586586792377"); + conf.setVesselId("fr.ifremer.echobase.entities.references.Vessel#1323196672049#0.9790502711645855"); + + prepareInputFile(conf.getTotalSampleFile(), + getImportPath("totalsample.csv")); + + CatchesDataImportService service = + getService(CatchesDataImportService.class); + + List<CsvFileImportResult> result = service.doImport(conf, createFakeUser()); + + Assert.assertNotNull(result); + Assert.assertEquals(1, result.size()); + Iterator<CsvFileImportResult> iterator = result.iterator(); + CsvFileImportResult importResult = iterator.next(); + assertCsvImportResult(importResult, Sample.class, 821, 0, 821); + assertCsvImportResult(importResult, SampleData.class, 1231, 0, 1231); + } + + @Test + public void doImportSubSample() throws Exception { + + assertNbEntities(Voyage.class, 1); + assertNbEntities(Transit.class, 3); + assertNbEntities(Transect.class, 181); + assertNbEntities(Operation.class, 61); assertNbEntities(Sample.class, 0); assertNbEntities(SampleData.class, 0); @@ -71,23 +102,98 @@ conf.setVoyageId("fr.ifremer.echobase.entities.data.Voyage#1329429559711#0.2622586586792377"); conf.setVesselId("fr.ifremer.echobase.entities.references.Vessel#1323196672049#0.9790502711645855"); - prepareInputFile(conf.getTotalSampleFile(), getImportPath("totalsample.csv")); - prepareInputFile(conf.getSubSampleFile(), getImportPath("subsample.csv")); -// prepareInputFile(conf.getBiometrySampleFile(), getImportPath("biometrysample.csv")); + prepareInputFile(conf.getSubSampleFile(), + getImportPath("subsample.csv")); CatchesDataImportService service = getService(CatchesDataImportService.class); - List<CsvImportResult> result = service.doImport(conf, createFakeUser()); + List<CsvFileImportResult> result = service.doImport(conf, + createFakeUser()); Assert.assertNotNull(result); - Assert.assertEquals(2, result.size()); - Iterator<CsvImportResult> iterator = result.iterator(); - assertCsvImportResult(iterator.next(), Sample.class, 619, 0, 4680); - assertCsvImportResult(iterator.next(), Sample.class, 4061, 0, 4680); + Assert.assertEquals(1, result.size()); + Iterator<CsvFileImportResult> iterator = result.iterator(); + CsvFileImportResult importResult = iterator.next(); + assertCsvImportResult(importResult, Sample.class, 399, 0, 399); + assertCsvImportResult(importResult, SampleData.class, 5042, 0, 5042); + } - assertNbEntities(Sample.class, 4680); + @Ignore + @Test + public void doImportBiometrySample() throws Exception { + + assertNbEntities(Voyage.class, 1); + assertNbEntities(Transit.class, 3); + assertNbEntities(Transect.class, 181); + assertNbEntities(Operation.class, 61); + assertNbEntities(Sample.class, 0); assertNbEntities(SampleData.class, 0); + + CatchesDataImportConfiguration conf = + new CatchesDataImportConfiguration(getLocale()); + + conf.setVoyageId("fr.ifremer.echobase.entities.data.Voyage#1329429559711#0.2622586586792377"); + conf.setVesselId("fr.ifremer.echobase.entities.references.Vessel#1323196672049#0.9790502711645855"); + + prepareInputFile(conf.getBiometrySampleFile(), + getImportPath("biometrysample.csv")); + + CatchesDataImportService service = + getService(CatchesDataImportService.class); + List<CsvFileImportResult> result = service.doImport(conf, createFakeUser()); + + Assert.assertNotNull(result); + Assert.assertEquals(1, result.size()); + Iterator<CsvFileImportResult> iterator = result.iterator(); + CsvFileImportResult importResult = iterator.next(); + assertCsvImportResult(importResult, Sample.class, 619, 0, 4680); + assertCsvImportResult(importResult, SampleData.class, 619, 0, 4680); } + @Ignore + @Test + public void doImportAllSample() throws Exception { + + assertNbEntities(Voyage.class, 1); + assertNbEntities(Transit.class, 3); + assertNbEntities(Transect.class, 181); + assertNbEntities(Operation.class, 61); + assertNbEntities(Sample.class, 0); + assertNbEntities(SampleData.class, 0); + + CatchesDataImportConfiguration conf = + new CatchesDataImportConfiguration(getLocale()); + + conf.setVoyageId("fr.ifremer.echobase.entities.data.Voyage#1329429559711#0.2622586586792377"); + conf.setVesselId("fr.ifremer.echobase.entities.references.Vessel#1323196672049#0.9790502711645855"); + + prepareInputFile(conf.getTotalSampleFile(), + getImportPath("totalsample.csv")); + prepareInputFile(conf.getSubSampleFile(), + getImportPath("subsample.csv")); + prepareInputFile(conf.getBiometrySampleFile(), + getImportPath("biometrysample.csv")); + + CatchesDataImportService service = + getService(CatchesDataImportService.class); + + List<CsvFileImportResult> result = service.doImport(conf, createFakeUser()); + + Assert.assertNotNull(result); + Assert.assertEquals(3, result.size()); + Iterator<CsvFileImportResult> iterator = result.iterator(); + CsvFileImportResult importResult; + importResult = iterator.next(); + assertCsvImportResult(importResult, Sample.class, 821, 0, 1220); + assertCsvImportResult(importResult, SampleData.class, 1231, 0, 6273); + + importResult = iterator.next(); + assertCsvImportResult(importResult, Sample.class, 399, 0, 1220); + assertCsvImportResult(importResult, SampleData.class, 5042, 0, 6273); + + importResult = iterator.next(); + assertCsvImportResult(importResult, Sample.class, 4061, 0, 4680); + assertCsvImportResult(importResult, SampleData.class, 619, 0, 4680); + } } Modified: trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/CommonDataImportService2Test.java =================================================================== --- trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/CommonDataImportService2Test.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/CommonDataImportService2Test.java 2012-02-17 18:35:54 UTC (rev 322) @@ -28,6 +28,7 @@ import fr.ifremer.echobase.entities.data.Voyage; import fr.ifremer.echobase.services.configurations.CommonDataImportConfiguration; import fr.ifremer.echobase.services.configurations.CommonDataImportMode; +import fr.ifremer.echobase.services.csv.CsvFileImportResult; import org.junit.Assert; import org.junit.Test; @@ -43,7 +44,7 @@ public class CommonDataImportService2Test extends EchoBaseTestServiceSupport { protected FakeEchoBaseServiceContext initContext() { - return new FakeEchoBaseServiceContext("/import-data/echobase-0.3-commonData-result.h2.db"); + return new FakeEchoBaseServiceContext("/import-data/echobase-0.3-commonData-result.h2.db.gz"); } @Test @@ -73,11 +74,10 @@ CommonDataImportService service = getService(CommonDataImportService.class); - - List<CsvImportResult> result = service.doImport(conf, createFakeUser()); + List<CsvFileImportResult> result = service.doImport(conf, createFakeUser()); Assert.assertNotNull(result); Assert.assertEquals(1, result.size()); - Iterator<CsvImportResult> iterator = result.iterator(); + Iterator<CsvFileImportResult> iterator = result.iterator(); assertCsvImportResult(iterator.next(), Transect.class, 181, 0, 362); assertNbEntities(Voyage.class, 1); Modified: trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/CommonDataImportServiceTest.java =================================================================== --- trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/CommonDataImportServiceTest.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/CommonDataImportServiceTest.java 2012-02-17 18:35:54 UTC (rev 322) @@ -28,6 +28,7 @@ import fr.ifremer.echobase.entities.data.Voyage; import fr.ifremer.echobase.services.configurations.CommonDataImportConfiguration; import fr.ifremer.echobase.services.configurations.CommonDataImportMode; +import fr.ifremer.echobase.services.csv.CsvFileImportResult; import org.junit.Assert; import org.junit.Test; @@ -43,7 +44,7 @@ public class CommonDataImportServiceTest extends EchoBaseTestServiceSupport { protected FakeEchoBaseServiceContext initContext() { - return new FakeEchoBaseServiceContext("/import-data/echobase-0.3-nodata.h2.db"); + return new FakeEchoBaseServiceContext("/import-data/echobase-0.3-nodata.h2.db.gz"); } @Test @@ -79,12 +80,12 @@ CommonDataImportService service = getService(CommonDataImportService.class); - List<CsvImportResult> result = + List<CsvFileImportResult> result = service.doImport(conf, createFakeUser()); Assert.assertNotNull(result); Assert.assertEquals(3, result.size()); - Iterator<CsvImportResult> iterator = result.iterator(); + Iterator<CsvFileImportResult> iterator = result.iterator(); assertCsvImportResult(iterator.next(), Voyage.class, 1, 0, 1); assertCsvImportResult(iterator.next(), Transit.class, 3, 0, 3); assertCsvImportResult(iterator.next(), Transect.class, 181, 0, 181); Deleted: trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/DbImportExportServiceTest.java =================================================================== --- trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/DbImportExportServiceTest.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/DbImportExportServiceTest.java 2012-02-17 18:35:54 UTC (rev 322) @@ -1,161 +0,0 @@ -/* - * #%L - * EchoBase :: Services - * - * $Id$ - * $HeadURL$ - * %% - * Copyright (C) 2011 Ifremer, Codelutin - * %% - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero 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 Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * #L% - */ -package fr.ifremer.echobase.services; - -import com.google.common.collect.Sets; -import fr.ifremer.echobase.TestHelper; -import fr.ifremer.echobase.entities.EchoBaseEntityEnum; -import fr.ifremer.echobase.entities.EntitiesUtil; -import junit.framework.Assert; -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; -import org.junit.Before; -import org.junit.Rule; -import org.junit.Test; -import org.junit.rules.TestName; -import org.nuiton.topia.TopiaContext; -import org.nuiton.topia.TopiaException; -import org.nuiton.topia.persistence.TopiaEntityEnum; -import org.nuiton.topia.replication.TopiaReplicationModelBuilder; -import org.nuiton.topia.replication.model.ReplicationModel; -import org.nuiton.topia.replication.model.ReplicationNode; - -import java.io.File; -import java.util.Collection; -import java.util.List; -import java.util.Set; - -/** - * Test the {@link ExportDbService}. - * - * @author tchemit <chemit@codelutin.com> - * @since 0.2 - */ -public class DbImportExportServiceTest { - - /** Logger. */ - private static final Log log = - LogFactory.getLog(DbImportExportServiceTest.class); - - @Rule - public TestName testName = new TestName(); - - protected File testdir; - - protected TopiaContext rootContext; - - @Before - public void setUp() throws Exception { - testdir = new File(TestHelper.getTestBasedir(getClass()), - testName.getMethodName()); - if (log.isInfoEnabled()) { - log.info("Test directory = " + testdir); - } -// rootContext = TestHelper.getRootContext(testdir); - } - - @Test - public void testGetReferentielCopyModel() throws TopiaException { - - EchoBaseEntityEnum[] types = EntitiesUtil.getReferenceTypesForCopy(); - Set<TopiaEntityEnum> dones = Sets.newHashSet(); - - ReplicationModel model = new ReplicationModel(types, false); - new TopiaReplicationModelBuilder().initModel(model, false); - List<ReplicationNode> order = model.getOrder(); - - StringBuilder buffer = new StringBuilder(); - for (ReplicationNode node : order) { - TopiaEntityEnum type = node.getContract(); - Assert.assertTrue(type + " was already treated.", dones.add(type)); - Collection<ReplicationNode> dependencies = node.getDependencies().values(); - for (ReplicationNode dependency : node.getDependencies().values()) { - TopiaEntityEnum dependencyType = dependency.getContract(); - Assert.assertTrue(dependencyType + - " was detected as a dependency of node " + - type + " but was not still registred", - dones.contains(dependencyType)); - } - Collection<ReplicationNode> assocations = node.getAssociations().values(); - for (ReplicationNode assocation : assocations) { - TopiaEntityEnum assocationType = assocation.getContract(); - Assert.assertTrue(assocationType + - " was detected as a association of node " + - type + " but was not still registred", - dones.contains(assocationType)); - } - buffer.append('\n'); - buffer.append(type); - buffer.append(" - "); - buffer.append(dependencies); - buffer.append(" - "); - buffer.append(assocations); - } - if (log.isInfoEnabled()) { - log.info(buffer.toString()); - } - } - - @Test - public void testGetDataCopyModel() throws TopiaException { - - EchoBaseEntityEnum[] types = EntitiesUtil.getDataTypesForCopy(); - Set<TopiaEntityEnum> dones = Sets.newHashSet(); - - ReplicationModel model = new ReplicationModel(types, false); - new TopiaReplicationModelBuilder().initModel(model, false); - List<ReplicationNode> order = model.getOrder(); - - StringBuilder buffer = new StringBuilder(); - for (ReplicationNode node : order) { - TopiaEntityEnum type = node.getContract(); - Assert.assertTrue(type + " was already treated.", dones.add(type)); - Collection<ReplicationNode> dependencies = node.getDependencies().values(); - for (ReplicationNode dependency : node.getDependencies().values()) { - TopiaEntityEnum dependencyType = dependency.getContract(); - Assert.assertTrue(dependencyType + - " was detected as a dependency of node " + - type + " but was not still registred", - dones.contains(dependencyType)); - } - Collection<ReplicationNode> assocations = node.getAssociations().values(); - for (ReplicationNode assocation : assocations) { - TopiaEntityEnum assocationType = assocation.getContract(); - Assert.assertTrue(assocationType + - " was detected as a association of node " + - type + " but was not still registred", - dones.contains(assocationType)); - } - buffer.append('\n'); - buffer.append(type); - buffer.append(" - "); - buffer.append(dependencies); - buffer.append(" - "); - buffer.append(assocations); - } - if (log.isInfoEnabled()) { - log.info(buffer.toString()); - } - } -} Modified: trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/EchoBaseTestServiceSupport.java =================================================================== --- trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/EchoBaseTestServiceSupport.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/EchoBaseTestServiceSupport.java 2012-02-17 18:35:54 UTC (rev 322) @@ -28,6 +28,7 @@ import fr.ifremer.echobase.entities.EchoBaseEntityEnum; import fr.ifremer.echobase.entities.EchoBaseUser; import fr.ifremer.echobase.entities.EchoBaseUserImpl; +import fr.ifremer.echobase.services.csv.CsvFileImportResult; import org.apache.commons.io.FileUtils; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; @@ -42,6 +43,7 @@ import java.io.IOException; import java.io.InputStream; import java.util.Arrays; +import java.util.Set; /** * Nice test service support. @@ -97,15 +99,17 @@ } } - protected <E extends TopiaEntity> void assertCsvImportResult(CsvImportResult actual, + protected <E extends TopiaEntity> void assertCsvImportResult(CsvFileImportResult actual, Class<E> entityType, int numberCreated, int numberUpdated, int nbCount) throws TopiaException { Assert.assertNotNull(actual); - Assert.assertEquals(EchoBaseEntityEnum.valueOf(entityType), actual.getEntityType()); - Assert.assertEquals(numberCreated, actual.getNumberCreated()); - Assert.assertEquals(numberUpdated, actual.getNumberUpdated()); + Set<EchoBaseEntityEnum> entityTypes = actual.getEntityTypes(); + EchoBaseEntityEnum expectedEntityType = EchoBaseEntityEnum.valueOf(entityType); + Assert.assertTrue(entityTypes.contains(expectedEntityType)); + Assert.assertEquals(numberCreated, actual.getNumberCreated(expectedEntityType)); + Assert.assertEquals(numberUpdated, actual.getNumberUpdated(expectedEntityType)); assertNbEntities(entityType, nbCount); } Modified: trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/EmbeddedApplicationServiceTest.java =================================================================== --- trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/EmbeddedApplicationServiceTest.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/EmbeddedApplicationServiceTest.java 2012-02-17 18:35:54 UTC (rev 322) @@ -23,14 +23,15 @@ */ package fr.ifremer.echobase.services; -import fr.ifremer.echobase.TestHelper; import fr.ifremer.echobase.entities.EchoBaseDAOHelper; -import fr.ifremer.echobase.entities.MockEntityVisitorCreator; import fr.ifremer.echobase.entities.data.Voyage; import fr.ifremer.echobase.entities.data.VoyageDAO; -import org.junit.Ignore; +import fr.ifremer.echobase.services.configurations.EmbeddedApplicationConfiguration; +import org.junit.Assert; import org.junit.Test; import org.nuiton.topia.TopiaContext; +import org.nuiton.topia.persistence.TopiaEntity; +import org.nuiton.util.FileUtil; import java.io.File; @@ -40,54 +41,63 @@ * @author sletellier <letellier@codelutin.com> * @since 0.2 */ -@Ignore -public class EmbeddedApplicationServiceTest extends AbstractEchoBaseServiceTest { +public class EmbeddedApplicationServiceTest extends EchoBaseTestServiceSupport { - public static final String TEST_ECHOBASE_EMBEDDED = "test-echobase-embedded"; - - public EmbeddedApplicationService getEmbeddedApplicationService() throws Exception { - return getService(EmbeddedApplicationService.class); + protected FakeEchoBaseServiceContext initContext() { + return new FakeEchoBaseServiceContext( + "/import-data/echobase-0.3-operation-result.h2.db.gz"); } -// @Test -// public void testCreateEmbeddedApplication() throws Exception { -// File embeddedApplication = getEmbeddedApplicationService().createEmbeddedApplication(TEST_ECHOBASE_EMBEDDED); -// assertTrue(embeddedApplication.exists()); -// } + @Test + public void testCreateEmbeddedApplication() throws Exception { + EmbeddedApplicationConfiguration conf = new EmbeddedApplicationConfiguration(); + conf.setVoyageIds(new String[]{"fr.ifremer.echobase.entities.data.Voyage#1329429559711#0.2622586586792377"}); - @Test - public void testCreateVoyageMock() throws Exception { - Voyage mockedVoyage = createMockedEntity(Voyage.class); - assertNotNull(mockedVoyage); + File workingDirectory = new File(getTestDir(), "work-dir"); + FileUtil.createDirectoryIfNecessary(workingDirectory); + conf.setWorkingDirectory(workingDirectory); + File warLocation = new File(workingDirectory, "echobase.war"); + FileUtil.writeString(warLocation, "dummy!"); + conf.setWarLocation(warLocation); + conf.setFileName("echobase"); + EmbeddedApplicationService service = + getService(EmbeddedApplicationService.class); + + File zipFile = service.createEmbeddedApplication(conf); + + Assert.assertTrue(zipFile.exists()); } @Test - public void testReplicateVoyageEntity() throws Exception { + public void replicateVoyageEntity() throws Exception { - // creating mocked voyage - Voyage voyageMocked = createMockedEntity(Voyage.class); + // create new H2 dataBase in target/voyageId + String voyageId = "fr.ifremer.echobase.entities.data.Voyage#1329429559711#0.2622586586792377"; + TopiaEntity voyageMocked = getEntityById(Voyage.class, voyageId); - // commit - getTransaction().commitTransaction(); + File testBaseDir = new File(getTestDir(), "replicated"); - // create new H2 dataBase in target/voyageId - String voyageId = voyageMocked.getTopiaId(); - File testBaseDir = new File(TestHelper.getBasedir(), voyageId); - TopiaContext rootContextDest = getEmbeddedApplicationService().createH2Batabase(testBaseDir, false, voyageId); + EmbeddedApplicationService service = + getService(EmbeddedApplicationService.class); + EmbeddedApplicationConfiguration conf = new EmbeddedApplicationConfiguration(); + conf.setVoyageIds(new String[]{"fr.ifremer.echobase.entities.data.Voyage#1329429559711#0.2622586586792377"}); + TopiaContext rootContextDest = service.createH2Batabase(conf, + testBaseDir, + false); + // verify that replicated voyage is in new base TopiaContext transactionDest = null; try { transactionDest = rootContextDest.beginTransaction(); VoyageDAO voyageDAO = EchoBaseDAOHelper.getVoyageDAO(transactionDest); - Object stringDefaultValue = MockEntityVisitorCreator.DefaultSimpleValues.STRING.getDefaultValue(); - Voyage voyageReplicated = voyageDAO.findByName((String) stringDefaultValue); + Voyage voyageReplicated = voyageDAO.findByTopiaId(voyageId); // assert voyage is in new base - assertNotNull(voyageReplicated); + Assert.assertNotNull(voyageReplicated); // and same ids - assertEquals(voyageMocked, voyageReplicated); + Assert.assertEquals(voyageMocked, voyageReplicated); // TODO sletellier 20111124 : try to test deph equality between entities } finally { Modified: trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/FakeEchoBaseServiceContext.java =================================================================== --- trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/FakeEchoBaseServiceContext.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/FakeEchoBaseServiceContext.java 2012-02-17 18:35:54 UTC (rev 322) @@ -29,7 +29,6 @@ import fr.ifremer.echobase.EchoBaseTechnicalException; import fr.ifremer.echobase.EchoBaseTopiaRootContextFactory; import fr.ifremer.echobase.entities.meta.DbMeta; -import org.apache.commons.io.FileUtils; import org.apache.commons.io.IOUtils; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; @@ -41,11 +40,13 @@ import org.nuiton.util.FileUtil; import java.io.File; +import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.util.Date; import java.util.Locale; import java.util.Properties; +import java.util.zip.GZIPInputStream; /** * Provide an implementation of {@link EchoBaseServiceContext} suitable for repeatable, @@ -116,19 +117,22 @@ // let's use this path as the initial db. - File destinationDb = new File(testDir, "db" + - File.separator + - "echobase.h2.db"); + File dbDirectory = new File(testDir, "db"); + File destinationDb = new File(dbDirectory, "echobase.h2.db"); InputStream inputStream = getClass().getResourceAsStream(initDb); Preconditions.checkNotNull(inputStream, "Could not find resource from " + initDb); try { - FileUtil.createDirectoryIfNecessary( - destinationDb.getParentFile()); + FileUtil.createDirectoryIfNecessary(dbDirectory); - FileUtils.copyInputStreamToFile( - inputStream, - destinationDb - ); + GZIPInputStream gzipStream = new GZIPInputStream(inputStream); + + FileOutputStream outputStream = new FileOutputStream(destinationDb); + try { + IOUtils.copy(gzipStream, outputStream); + } finally { + outputStream.close(); + } + } catch (IOException e) { throw new EchoBaseTechnicalException("Could not copy db", e); } finally { Modified: trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/OperationImportServiceTest.java =================================================================== --- trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/OperationImportServiceTest.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-services/src/test/java/fr/ifremer/echobase/services/OperationImportServiceTest.java 2012-02-17 18:35:54 UTC (rev 322) @@ -30,6 +30,7 @@ import fr.ifremer.echobase.entities.data.Transit; import fr.ifremer.echobase.entities.data.Voyage; import fr.ifremer.echobase.services.configurations.OperationImportConfiguration; +import fr.ifremer.echobase.services.csv.CsvFileImportResult; import org.junit.Assert; import org.junit.Test; @@ -78,11 +79,11 @@ OperationImportService service = getService(OperationImportService.class); - List<CsvImportResult> result = service.doImport(conf, createFakeUser()); + List<CsvFileImportResult> result = service.doImport(conf, createFakeUser()); Assert.assertNotNull(result); Assert.assertEquals(3, result.size()); - Iterator<CsvImportResult> iterator = result.iterator(); + Iterator<CsvFileImportResult> iterator = result.iterator(); assertCsvImportResult(iterator.next(), Operation.class, 61, 0, 61); assertCsvImportResult(iterator.next(), OperationMetadataValue.class, 183, 0, 183); assertCsvImportResult(iterator.next(), GearMetadataValue.class, 427, 0, 427); Added: trunk/echobase-services/src/test/resources/import-data/acousticData/movies.csv =================================================================== --- trunk/echobase-services/src/test/resources/import-data/acousticData/movies.csv (rev 0) +++ trunk/echobase-services/src/test/resources/import-data/acousticData/movies.csv 2012-02-17 18:35:54 UTC (rev 322) @@ -0,0 +1,1353 @@ +"MOVIES_EILayer";"MOVIES_EILayer\sndset";"MOVIES_EILayer\sndset\sndname";"MOVIES_EILayer\sndset\sndident";"MOVIES_EILayer\sndset\softChannelId";"MOVIES_EILayer\sndset\channelName";"MOVIES_EILayer\sndset\dataType";"MOVIES_EILayer\sndset\beamType";"MOVIES_EILayer\sndset\acousticFrequency";"MOVIES_EILayer\sndset\startSample";"MOVIES_EILayer\sndset\mainBeamAlongSteeringAngle";"MOVIES_EILayer\sndset\mainBeamAthwartSteeringAngle";"MOVIES_EILayer\sndset\absorptionCoef";"MOVIES_EILayer\sndset\transmissionPower";"MOVIES_EILayer\sndset\beamAlongAngleSensitivity";"MOVIES_EILayer\sndset\beamAthwartAngleSensitivity";"MOVIES_EILayer\sndset\beam3dBWidthAlong";"MOVIES_EILayer\sndset\beam3dBWidthAthwart";"MOVIES_EILayer\sndset\beamEquTwoWayAngle";"MOVIES_EILayer\sndset\beamGain";"MOVIES_EILayer\sndset\beamSACorrection";"MOVIES_EILayer\sndset\bottomDetectionMinDepth";"MOVIES_EILayer\sndset\bottomDetectionMaxDepth";"MOVIES_EILayer\sndset\bottomDetectionMinLevel";"MOVIES_EILayer\sndset\AlongTXRXWeightId";"MOVIES_EILayer\sndset\AthwartTXRXWeightId";"MOVIES_EILayer\sndset\SplitBeamAlongTXRXWeightId";"MOVIES_EILayer\sndset\SplitBeamAthwartTXRXWeightId";"MOVIES_EILayer\sndset\bandWidth";"MOVIES_EILayer\sndset\tvgminrange";"MOVIES_EILayer\sndset\tvgmaxrange";"MOVIES_EILayer\sndset\pulseduration";"MOVIES_EILayer\shipnav";"MOVIES_EILayer\shipnav\lat";"MOVIES_EILayer\shipnav\long";"MOVIES_EILayer\shipnav\alt";"MOVIES_EILayer\shipnav\gndspeed";"MOVIES_EILayer\shipnav\gndcourse";"MOVIES_EILayer\shipnav\surfspeed";"MOVIES_EILayer\shipnav\surfcourse";"MOVIES_EILayer\shipnav\driftspeed";"MOVIES_EILayer\shipnav\driftcourse";"MOVIES_EILayer\shipnav\heading";"MOVIES_EILayer\shipnav\roll";"MOVIES_EILayer\shipnav\pitch";"MOVIES_EILayer\shipnav\heave";"MOVIES_EILayer\shipnav\depth";"MOVIES_EILayer\shipnav\draught";"MOVIES_EILayer\cellset";"MOVIES_EILayer\cellset\cellnum";"MOVIES_EILayer\cellset\celltype";"MOVIES_EILayer\cellset\depthstart";"MOVIES_EILayer\cellset\depthend";"MOVIES_EILayer\cellset\indexstart";"MOVIES_EILayer\cellset\indexend";"MOVIES_EILayer\cellset\datestart";"MOVIES_EILayer\cellset\dateend";"MOVIES_EILayer\cellset\diststart";"MOVIES_EILayer\cellset\distend";"MOVIES_EILayer\cellset\thresholdup";"MOVIES_EILayer\cellset\thresholdlow";"MOVIES_EILayer\eilayer";"MOVIES_EILayer\eilayer\sa";"MOVIES_EILayer\eilayer\sv";"MOVIES_EILayer\eilayer\ni";"MOVIES_EILayer\eilayer\nt" +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;13.240635;-75.127842;432;24309 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;4.596599;-79.720062;190;24295 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.037033;-83.255699;87;24302 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.892676;-86.839633;19;24307 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;48602 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;48606 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;48604 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.855733;-90.032148;24;48599 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;71.015659;-74.956164;2039;125327 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;9;1;178.126661;178.826661;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;1719 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;10;1;169.126661;178.126661;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;3.024212;-81.079838;115;21861 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;11;1;159.126661;169.126661;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;4.66756;-79.652814;175;24291 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;12;1;149.126661;159.126661;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;8.863599;-76.875471;322;24335 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;11.444488;-75.760787;395;24308 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;12.199371;-75.482662;476;24304 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;40.0563;-70.317898;1317;24296 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;171.560877;-64.001496;4469;24302 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;170.475712;-67.040337;5587;48615 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;14.796574;-77.653831;641;48598 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.462043;-92.708616;22;48598 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.236576;-85.861214;37;48616 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;64.67973;-75.368845;1643;125524 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;9;1;178.200772;178.900772;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;1750 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;10;1;169.200772;178.200772;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.862706;-83.187495;63;21876 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;11;1;159.200772;169.200772;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;7.285913;-77.712611;223;24256 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;12;1;149.200772;159.200772;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;11.518247;-75.741633;338;24357 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.395568;-90.374722;9;24309 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.149808;-94.58998;5;24300 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.158563;-94.342217;8;24294 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.606646;-82.186824;111;24313 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.903999;-86.558865;86;48599 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.037688;-103.594003;2;48604 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;48590 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.254681;-85.825396;36;48607 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;53.686666;-76.180906;1268;125612 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;9;1;178.276902;178.976902;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;1752 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;10;1;169.276902;178.276902;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.069383;-85.594824;30;21862 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;11;1;159.276902;169.276902;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;7.76595;-77.436937;187;24264 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;12;1;149.276902;159.276902;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;11.134163;-75.888743;281;24356 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.35118;-90.889849;7;24299 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.256941;-82.809048;10;24294 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;24318 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;8.087218;-77.2659;15;24292 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;48596 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;48601 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;48616 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.199029;-85.932508;35;48591 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;79.211778;-74.502584;1598;125928 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;9;1;178.383339;179.083339;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;1759 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;10;1;169.383339;178.383339;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.270958;-84.838483;35;21830 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;11;1;159.383339;169.383339;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;12.708291;-75.304986;273;24303 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;12;1;149.383339;159.383339;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;16.324071;-74.227212;349;24357 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.956302;-86.539193;11;24299 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.065724;-83.193883;40;24296 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;24319 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.755421;-83.899899;11;24291 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;48607 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;48596 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.038789;-103.470268;2;48619 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.12285;-86.084909;28;48583 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;84.258241;-74.233185;1792;125894 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;9;1;178.401164;179.101164;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;1732 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;10;1;169.401164;178.401164;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.727152;-83.511858;44;21857 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;11;1;159.401164;169.401164;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;9.15451;-76.726289;233;24285 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;12;1;149.401164;159.401164;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;15.84676;-74.354487;346;24348 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.430904;-86.117259;32;65993 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.235379;-93.956335;23;66003 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.753399;-85.234753;54;65996 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;3.257363;-82.54503;289;65998 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.614584;-92.798805;59;132015 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;131994 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.215092;-97.357857;12;131999 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;15.51629;-78.776574;659;132010 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;32.759153;-77.809936;1383;223094 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;9;1;160.829123;161.529123;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;4617 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;10;1;151.829123;160.829123;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;59401 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;11;1;141.829123;151.829123;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;9.665672;-77.821964;401;66007 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;12;1;131.829123;141.829123;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;25.682701;-73.576956;1046;65993 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.24481;-93.392909;23;60295 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.623267;-83.093852;18;60310 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.187537;-94.551491;19;60311 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.780612;-84.775431;154;60294 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.524474;-93.095555;47;120626 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.386549;-94.419274;10;120585 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;120607 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;14.163569;-78.78031;422;120605 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;84.127865;-73.773163;2631;226161 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;9;1;166.741585;167.441585;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;4224 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;10;1;157.741585;166.741585;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;54279 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;11;1;147.741585;157.741585;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;16.819696;-75.023736;570;60305 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;12;1;137.741585;147.741585;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;46.918284;-70.567848;1407;60296 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.45521;-85.376603;19;56591 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.161297;-94.929205;8;56586 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.610519;-89.148177;12;56582 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.441735;-90.553472;41;56581 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.048413;-103.166336;5;113177 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.029385;-105.334355;3;113169 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.056914;-102.463511;5;113170 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;13.843995;-78.603275;419;113175 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;90.148012;-73.557284;2742;230593 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;9;1;169.020626;169.720626;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;3955 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;10;1;160.020626;169.020626;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;50932 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;11;1;150.020626;160.020626;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;6.863967;-78.638724;290;56573 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;12;1;140.020626;150.020626;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;51.869775;-69.856407;1557;56587 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.493096;-89.875423;24;54030 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.248193;-85.841114;30;54020 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.23046;-93.177658;16;54016 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.952975;-87.013517;84;54025 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.188909;-97.051986;16;108047 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;108041 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;108039 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;7.974847;-80.797288;244;108047 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;128.607677;-72.048955;3305;232447 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;9;1;171.126015;171.826015;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;3780 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;10;1;162.126015;171.126015;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;48619 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;11;1;152.126015;162.126015;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;8.345062;-77.589795;296;54022 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;12;1;142.126015;152.126015;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;64.984956;-68.675882;1634;54021 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.603262;-88.849112;27;52189 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.190405;-93.858713;10;52205 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.039468;-100.692298;4;52196 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.647325;-84.487131;65;52198 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.122715;-98.776873;12;104411 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;104400 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.172663;-97.293065;10;104392 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;7.883;-80.698557;176;104402 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;120.736014;-72.345971;2746;233666 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;9;1;172.197251;172.897251;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;3658 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;10;1;163.197251;172.197251;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;46973 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;11;1;153.197251;163.197251;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;6.380076;-78.607663;217;52210 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;12;1;143.197251;153.197251;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;51.809296;-69.511345;1194;52204 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.444961;-90.061835;35;50894 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.47685;-89.760377;11;50884 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.029772;-101.807588;3;50902 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.042959;-86.362037;78;50890 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.082433;-100.394267;8;101786 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;101779 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;101790 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;12.531994;-78.575191;205;101789 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;193.47942;-70.332296;3392;235519 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;9;1;173.344906;174.044906;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;3553 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;10;1;164.344906;173.344906;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;45809 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;11;1;154.344906;164.344906;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;11.644492;-75.884868;322;50906 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;12;1;144.344906;154.344906;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;74.274616;-67.835365;1208;50879 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.832649;-83.83425;33;49965 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.925338;-81.801979;24;49950 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;49966 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.179283;-93.92922;17;49960 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;99915 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;99923 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;99910 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;4.031723;-83.419959;89;99919 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;119.624225;-72.471779;2604;238319 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;9;1;174.615815;175.315815;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;3498 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;10;1;165.615815;174.615815;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;44971 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;11;1;155.615815;165.615815;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;17.642475;-73.998405;373;49953 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;12;1;145.615815;155.615815;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;27.750612;-72.032317;717;49965 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.245294;-82.895089;20;49311 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.032208;-101.328894;3;49319 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.650395;-88.275698;14;49307 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.058616;-98.728397;6;49319 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;98622 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.038129;-103.606038;4;98632 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;98635 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;4.138903;-83.249181;99;98620 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;69.311472;-74.897724;1699;241401 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;9;1;175.728351;176.428351;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;3437 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;10;1;166.728351;175.728351;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;44392 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;11;1;156.728351;166.728351;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;10.996223;-75.995122;311;49308 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;12;1;146.728351;156.728351;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;17.472603;-73.984862;454;49318 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.691844;-87.971481;18;48901 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.446926;-89.868941;7;48898 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.019812;-103.401884;2;48897 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.163699;-94.230303;15;48892 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;97791 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.337199;-94.102824;17;97798 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;97795 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.397498;-93.388686;27;97806 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;93.16781;-73.667359;1900;244435 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;9;1;176.697193;177.397193;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;3423 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;10;1;167.697193;176.697193;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;44000 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;11;1;157.697193;167.697193;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;13.49628;-75.069598;334;48903 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;12;1;147.697193;157.697193;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;12.553423;-75.383585;392;48897 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.737598;-83.951236;14;48667 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.070502;-97.869888;4;48680 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;48657 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.164707;-94.185024;10;48683 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;97330 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;97327 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;97343 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.076804;-89.039929;19;97340 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;59.848998;-75.633132;1495;246906 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;9;1;177.212661;177.912661;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.118155;-84.060991;8;3394 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;10;1;168.212661;177.212661;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.589778;-81.762185;88;43817 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;11;1;158.212661;168.212661;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;4.317078;-79.999009;179;48669 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;12;1;148.212661;158.212661;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;18.556544;-73.664688;346;48655 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.087553;-96.922836;4;48609 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.217001;-92.979231;7;48590 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;48604 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.08291;-97.158135;8;48594 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;97219 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;97205 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.030619;-104.494835;3;97193 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.518639;-85.344148;41;97217 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;44.562309;-76.944155;1172;248625 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;9;1;177.726221;178.426221;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;3412 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;10;1;168.726221;177.726221;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.773688;-87.001614;33;43741 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;11;1;158.726221;168.726221;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;6.548071;-78.182541;200;48588 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;12;1;148.726221;158.726221;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;10.390644;-76.179662;233;48615 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.177524;-93.859061;15;48677 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.865216;-86.981357;10;48688 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;48680 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.076816;-97.496751;8;48673 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.00932;-109.667612;1;97353 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;97361 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;97367 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.520427;-92.19792;26;97345 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;39.91121;-77.4501;1035;250188 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;9;1;177.785442;178.485442;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;3410 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;10;1;168.785442;177.785442;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.009898;-105.939897;1;43821 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;11;1;158.785442;168.785442;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;6.676414;-78.10503;193;48664 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;12;1;148.785442;158.785442;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;8.406486;-77.10628;233;48686 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.081828;-97.243416;6;48911 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.46618;-89.686381;14;48905 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;48914 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.018665;-103.662617;2;48915 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.067654;-101.080257;4;97832 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;97822 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.08472;-100.102259;4;97808 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.59616;-91.629477;34;97830 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;51.033977;-76.414467;1235;252039 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;9;1;177.737758;178.437758;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;3434 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;10;1;168.737758;177.737758;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;44009 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;11;1;158.737758;168.737758;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;3.990434;-80.362426;136;48913 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;12;1;148.737758;158.737758;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;11.369233;-75.815049;272;48910 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.150842;-94.624359;13;49331 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.239335;-92.618638;9;49321 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;49334 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.048935;-99.513342;5;49330 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.009784;-109.514089;1;98651 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;98659 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;98650 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.395476;-93.448423;22;98656 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;54.765824;-76.153253;1163;254681 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;9;1;177.687551;178.387551;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;3442 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;10;1;168.687551;177.687551;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;44390 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;11;1;158.687551;168.687551;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;4.00462;-80.383618;142;49327 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;12;1;148.687551;158.687551;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;14.546776;-74.781564;404;49327 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.734485;-87.805821;21;49972 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.018559;-103.778737;2;49956 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;49970 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.219891;-93.043232;19;49968 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.009603;-109.650904;1;99926 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;99934 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.05996;-101.696396;4;99923 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;3.100009;-84.561801;43;99932 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;45.521045;-77.019422;1213;258414 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;9;1;177.69089;178.39089;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;3508 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;10;1;168.69089;177.69089;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;44964 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;11;1;158.69089;168.69089;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;5.3992;-79.142009;188;49968 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;12;1;148.69089;158.69089;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;15.071614;-74.682489;449;49954 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.047871;-99.742808;4;50876 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.380607;-82.77732;17;50884 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.019882;-103.559026;2;50877 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.634828;-88.517036;47;50877 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.692904;-91.147382;25;101759 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.095823;-99.739402;5;101759 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.050626;-102.510235;4;101756 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.291015;-88.444715;20;101757 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;40.300591;-77.636799;1373;263726 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;9;1;177.626374;178.326374;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;3558 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;10;1;168.626374;177.626374;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;45795 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;11;1;158.626374;168.626374;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;10.483085;-76.338878;359;50879 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;12;1;148.626374;158.626374;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;15.257093;-74.708369;521;50871 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.388666;-90.755161;18;52150 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.754072;-87.877463;32;52158 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;52144 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.372512;-90.939941;34;52155 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.052206;-102.484535;5;104312 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.185775;-96.97164;9;104307 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;104318 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.73317;-85.294769;94;104305 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;42.318292;-77.540664;1344;270867 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;9;1;178.698884;179.398884;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;3650 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;10;1;169.698884;178.698884;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;46941 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;11;1;159.698884;169.698884;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;4.845807;-79.798432;196;52164 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;12;1;149.698884;159.698884;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;17.975205;-74.104272;601;52151 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.321316;-85.584849;24;53908 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;33.956711;-71.487029;40;53925 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;53923 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.557534;-89.33325;45;53921 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.277393;-95.375022;22;107835 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;107833 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.554365;-92.368588;24;107849 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.217015;-86.348054;87;107829 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;34.807045;-78.532843;1169;279971 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;9;1;177.824619;178.524619;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;3773 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;10;1;168.824619;177.824619;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;48528 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;11;1;158.824619;168.824619;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;5.022192;-79.786869;187;53919 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;12;1;148.824619;158.824619;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;15.658928;-74.848585;499;53924 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.782989;-88.052771;26;56389 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.558992;-82.909484;11;56387 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;56393 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.293212;-92.318358;28;56387 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.389594;-94.094319;37;112773 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;112782 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.039907;-103.990432;3;112786 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;5.416512;-82.663508;139;112780 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;28.070035;-79.656797;1022;292472 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;9;1;177.880796;178.580796;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;3915 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;10;1;168.880796;177.880796;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;50755 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;11;1;158.880796;168.880796;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;3.709327;-81.297377;164;56389 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;12;1;148.880796;158.880796;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;10.560428;-76.753821;390;56393 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.830606;-88.061526;33;59939 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.674471;-88.966284;28;59945 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.137289;-95.879496;8;59944 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.060816;-86.999946;98;59951 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.345036;-94.887496;32;119888 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.375061;-94.524977;18;119884 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.040742;-104.166118;4;119899 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;2.366235;-86.525707;70;119892 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;39.417496;-78.399564;1353;307473 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;9;1;175.1749;175.8749;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;4209 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;10;1;166.1749;175.1749;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;53898 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;11;1;156.1749;166.1749;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;6.751957;-78.963645;279;59973 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;12;1;146.1749;156.1749;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;23.527249;-73.538391;673;59920 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;0;0;20;30;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.119406;-96.85984;10;65339 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;1;0;30;40;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.119513;-87.139418;29;65333 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;2;0;40;50;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.242214;-93.787778;6;65334 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;3;0;50;60;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.149427;-87.025361;102;65340 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;4;0;60;80;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.359805;-95.079603;33;130674 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;5;0;80;100;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;0.05691;-103.088321;4;130672 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;6;0;100;120;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.216234;-89.790073;44;130673 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;7;0;120;140;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;1.330699;-89.399709;62;130681 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;8;0;140;400;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;39.027711;-78.689963;1199;325485 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;9;1;176.839791;177.539791;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;4624 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;10;1;167.839791;176.839791;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;-9999999.9;-9999999.9;0;58787 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;11;1;157.839791;167.839791;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;18.280507;-75.009961;222;65335 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;12;1;147.839791;157.839791;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;0;-60;39599.174506;10.620951;-77.368143;490;65334 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;7.281885;-77.723852;255;23478 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;2.959238;-81.63153;110;23462 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.183964;-93.698584;8;23476 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.091705;-96.723121;4;23482 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;46938 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.018243;-106.745424;1;46955 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;46942 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;5.099895;-82.279683;143;46942 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;35.407833;-77.307939;938;103735 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;9;1;186.343265;187.043265;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;1679 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;10;1;177.343265;186.343265;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.506185;-88.844144;23;21123 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;11;1;167.343265;177.343265;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.422516;-84.810537;56;23450 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;12;1;157.343265;167.343265;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;5.758781;-78.747791;167;23504 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;3.069195;-81.47586;127;23477 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;15.780189;-74.365353;593;23479 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;72.659343;-67.73356;1828;23479 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;222.740272;-62.867007;5268;23471 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;66.330234;-71.140122;2407;46963 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;5.003483;-82.361461;218;46930 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.085988;-100.010836;4;46941 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;5.293127;-82.119837;139;46960 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;30.1016;-78.019562;765;103891 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;9;1;186.376772;187.076772;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;1671 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;10;1;177.376772;186.376772;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.14227;-85.3153;38;21151 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;11;1;167.376772;177.376772;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;3.659568;-80.699581;97;23411 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;12;1;157.376772;167.376772;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;5.706194;-78.791879;149;23527 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;23483 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.078925;-97.371179;4;23462 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.146414;-85.753432;46;23481 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;3.156142;-81.353615;114;23472 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.090058;-99.809889;3;46940 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;46951 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;46950 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;4.595586;-82.732349;104;46947 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;33.278715;-77.58559;704;103934 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;9;1;186.463743;187.163743;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;1649 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;10;1;177.463743;186.463743;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.265302;-84.874124;35;21166 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;11;1;167.463743;177.463743;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;4.083588;-80.224016;87;23414 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;12;1;157.463743;167.463743;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;6.572373;-78.173874;163;23504 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;23477 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;23471 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;23472 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.775472;-87.451367;32;23482 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;46939 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;46951 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;46947 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;7.379544;-80.67611;144;46954 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;50.888783;-75.751844;928;104193 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;9;1;186.578952;187.278952;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;1666 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;10;1;177.578952;186.578952;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.492117;-84.151261;31;21133 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;11;1;167.578952;177.578952;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;5.079525;-79.281209;93;23441 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;12;1;157.578952;167.578952;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;9.681657;-76.492708;210;23510 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.065956;-98.152629;3;23472 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;23468 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.438774;-89.923882;14;23478 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.255801;-85.356343;48;23474 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;46948 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.060714;-101.522927;3;46948 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;46952 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;8.289572;-80.170991;161;46953 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;52.779528;-75.592075;1022;104161 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;9;1;186.576828;187.276828;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;1653 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;10;1;177.576828;186.576828;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.485044;-84.176827;30;21157 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;11;1;167.576828;177.576828;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;5.169406;-79.201141;92;23420 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;12;1;157.576828;167.576828;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;11.24351;-75.84374;211;23513 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.547963;-90.286266;17;62353 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;62346 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.488828;-90.781731;44;62346 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;3.611503;-82.09801;283;62369 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.15423;-98.802389;14;124706 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;25.803071;-76.56764;19;124714 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;12.913387;-79.573464;22;124700 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;60.503814;-72.866213;2005;124705 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;894.163108;-62.772292;3046;180355 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;9;1;169.170703;169.870703;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;4241 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;10;1;160.170703;169.170703;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;56202 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;11;1;150.170703;160.170703;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;494.548811;-60.727294;1207;62290 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;12;1;140.170703;150.170703;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;395.951194;-61.703135;1861;62436 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.551481;-89.865823;23;56963 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.297435;-92.548498;13;56980 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.577498;-89.666083;49;56969 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.387627;-85.858936;111;56970 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.050251;-103.280979;5;113952 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;113933 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;4.507648;-83.75235;32;113937 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;22.830097;-76.707686;651;113961 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;41.729834;-76.141581;1346;182847 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;9;1;175.139847;175.839847;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;3991 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;10;1;166.139847;175.139847;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;51321 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;11;1;156.139847;166.139847;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;14.056541;-75.799753;450;56929 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;12;1;146.139847;156.139847;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;24.028047;-73.473564;789;56958 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.011449;-106.416944;1;53449 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.17136;-94.668351;7;53484 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.188653;-94.247308;13;53441 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.710134;-88.491518;56;53453 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.009668;-110.162386;1;106923 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;106926 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;106918 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;20.237114;-76.954752;547;106931 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;47.09707;-75.718477;1359;187208 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;9;1;179.047558;179.747558;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;3736 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;10;1;170.047558;179.047558;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;48111 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;11;1;160.047558;170.047558;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;6.730694;-78.72473;228;53458 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;12;1;150.047558;160.047558;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;23.516324;-73.291796;670;53460 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.074776;-98.066612;7;51039 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.036768;-101.149709;3;51041 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.280498;-92.325093;23;51041 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.818787;-84.205894;142;51033 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;102084 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;102073 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;102078 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;11.622062;-79.161351;297;102070 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;56.756154;-74.948535;1525;188951 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;9;1;179.489648;180.189648;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;3569 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;10;1;170.489648;179.489648;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;45937 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;11;1;160.489648;170.489648;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;14.673934;-75.138417;404;51035 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;12;1;150.489648;160.489648;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;23.494358;-73.094672;579;51040 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.250123;-92.673359;10;49314 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.035458;-101.157109;3;49306 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.377453;-90.88716;30;49324 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.288106;-85.555123;100;49311 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;98630 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;98628 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;98650 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;19.100541;-76.855055;412;98635 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;44.549009;-76.030954;1115;190290 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;9;1;181.09807;181.79807;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;3451 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;10;1;172.09807;181.09807;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;44386 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;11;1;162.09807;172.09807;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;4.725583;-79.910262;133;49313 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;12;1;152.09807;162.09807;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;14.908954;-74.920256;368;49312 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.254745;-92.482895;10;48070 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.019275;-103.695206;2;48083 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.304707;-91.706836;25;48089 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.323701;-85.325591;110;48065 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;96186 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;96141 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;96176 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;26.746675;-75.281726;480;96144 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;55.181261;-75.12745;1181;191434 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;9;1;181.549752;182.249752;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;3382 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;10;1;172.549752;181.549752;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;43264 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;11;1;162.549752;172.549752;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;10.869955;-76.181937;212;48073 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;12;1;152.549752;162.549752;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;26.473577;-72.317894;420;48093 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.219042;-93.059248;6;47199 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;47211 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.378284;-90.685516;28;47190 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.140931;-85.891567;85;47195 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;94412 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.410591;-93.340825;16;94400 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.140885;-97.985349;10;94380 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;10.144411;-79.413711;195;94423 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;43.105245;-76.244238;900;193391 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;9;1;182.89871;183.59871;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;3312 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;10;1;173.89871;182.89871;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;42482 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;11;1;163.89871;173.89871;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;2.509194;-82.469371;80;47201 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;12;1;153.89871;163.89871;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;15.854247;-74.462705;356;47195 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.027742;-101.976639;3;46589 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.008335;-107.199452;1;46592 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.13;-95.269344;11;46597 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.817919;-87.281212;65;46592 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;93184 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;93173 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;93181 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;3.654985;-83.788966;87;93167 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;39.70964;-76.652015;868;195695 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;9;1;184.126389;184.826389;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;3259 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;10;1;175.126389;184.126389;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;41923 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;11;1;165.126389;175.126389;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;4.365879;-80.006852;116;46584 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;12;1;155.126389;165.126389;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;13.320332;-75.162419;263;46584 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;46193 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;46189 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.223696;-92.874198;18;46191 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.471733;-89.634003;36;46193 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.15371;-97.51444;6;92390 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;92402 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;92395 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;41.266583;-73.225654;77;92394 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;478.898493;-65.890514;698;198051 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;9;1;184.920177;185.620177;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;3253 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;10;1;175.920177;184.920177;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;41549 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;11;1;165.920177;175.920177;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;2.148243;-83.050694;68;46199 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;12;1;155.920177;165.920177;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;8.496214;-77.079649;196;46203 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;45989 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;45974 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;45986 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.694215;-87.935762;55;45978 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;91955 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;91964 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;91969 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;55.012712;-71.956372;128;91956 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;645.464175;-64.636453;809;199986 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;9;1;185.582938;186.282938;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.325704;-79.663367;13;3211 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;10;1;176.582938;185.582938;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.826536;-86.721853;62;41393 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;11;1;166.582938;176.582938;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.693112;-84.063562;61;45975 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;12;1;156.582938;166.582938;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;9.484974;-76.580813;189;45983 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.073524;-97.681382;6;45925 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;45927 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.147341;-94.660012;12;45899 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.262621;-92.152109;23;45922 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;91843 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;91829 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;91817 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;553.230209;-61.926603;187;91843 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;2267.770044;-59.208704;641;201350 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;9;1;185.892027;186.592027;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.016454;-92.628988;1;3211 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;10;1;176.892027;185.892027;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.984653;-85.954813;39;41328 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;11;1;166.892027;176.892027;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;4.282477;-80.028459;85;45922 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;12;1;156.892027;166.892027;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;3.705907;-80.655424;70;45911 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;46004 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.019822;-103.379629;2;45982 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.09527;-96.561803;9;45985 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.509416;-89.281396;38;45993 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;91983 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;91983 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;91962 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;98.177577;-69.442012;145;91980 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;145.519608;-71.154505;888;202234 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;9;1;186.089064;186.789064;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.310615;-79.874786;7;3215 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;10;1;177.089064;186.089064;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.31533;-90.907243;12;41397 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;11;1;167.089064;177.089064;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;4.364189;-79.952234;93;45984 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;12;1;157.089064;167.089064;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;16.389501;-74.206556;226;45994 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;46205 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;46204 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.056686;-98.83787;5;46211 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.436784;-89.970556;33;46217 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;92428 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;92416 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;92426 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;8.398175;-80.140871;206;92417 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;26.297862;-78.607754;636;203319 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;9;1;185.859815;186.559815;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;3228 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;10;1;176.859815;185.859815;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;41593 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;11;1;166.859815;176.859815;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;7.154389;-77.826742;90;46209 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;12;1;156.859815;166.859815;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;3.591462;-80.81966;133;46208 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.009353;-106.699748;1;46600 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;46599 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.099613;-96.426376;9;46605 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.053672;-86.182287;81;46603 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;93217 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;93207 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;93208 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;2.076307;-86.246959;56;93211 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;30.44361;-78.009048;751;205061 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;9;1;185.585625;186.285625;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;3248 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;10;1;176.585625;185.585625;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;41951 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;11;1;166.585625;176.585625;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;6.672266;-78.16642;150;46601 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;12;1;156.585625;166.585625;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;6.313529;-78.406898;197;46606 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.154327;-94.581226;8;47211 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.046717;-99.770374;4;47205 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.147915;-94.764128;13;47196 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.059298;-86.214071;78;47196 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.019763;-106.517202;2;94418 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;94427 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;94389 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;5.9145;-81.756707;122;94421 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;44.134415;-76.449427;996;207588 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;9;1;185.829907;186.529907;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;3295 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;10;1;176.829907;185.829907;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;42490 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;11;1;166.829907;176.829907;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;3.098314;-81.553366;100;47200 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;12;1;156.829907;166.829907;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;16.161752;-74.380933;320;47213 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.781025;-87.615848;11;48054 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;48067 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.440294;-90.108054;27;48087 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.301467;-85.398979;99;48063 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;96120 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;96149 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.038501;-103.698824;3;96125 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;19.80559;-76.586184;211;96136 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;39.209613;-77.043884;1006;211477 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;9;1;185.412139;186.112139;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;3377 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;10;1;176.412139;185.412139;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;43247 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;11;1;166.412139;176.412139;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;2.040575;-83.44723;38;48079 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;12;1;156.412139;166.412139;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;13.461679;-75.253492;331;48076 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.119129;-95.890595;9;49267 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;49268 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.169316;-94.364227;15;49272 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.969219;-86.787335;74;49276 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;98539 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;98538 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;98539 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;7.468854;-80.928964;176;98544 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;32.707567;-77.925244;838;216100 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;9;1;185.690795;186.390795;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;3455 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;10;1;176.690795;185.690795;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;44334 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;11;1;166.690795;176.690795;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.829837;-84.027257;50;49274 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;12;1;156.690795;166.690795;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;13.944261;-75.207425;324;49274 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.047479;-100.0311;4;50944 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.01821;-104.191942;2;50932 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.941881;-87.056174;19;50944 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.371579;-85.424349;84;50949 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;101872 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;101885 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.910996;-86.99328;29;101875 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;15.780806;-77.82497;364;101884 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;46.983905;-76.461816;1216;221622 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;9;1;185.141447;185.841447;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;3571 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;10;1;176.141447;185.141447;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;45862 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;11;1;166.141447;176.141447;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;5.481039;-79.405627;117;50922 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;12;1;156.141447;166.141447;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;14.281391;-75.24783;369;50937 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;53275 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;53276 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.555436;-89.544177;25;53276 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.199242;-86.201692;97;53279 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;106548 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;106554 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;106554 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;18.796485;-77.25997;359;106550 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;65.566215;-75.142809;1986;228267 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;9;1;184.669062;185.369062;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;3755 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;10;1;175.669062;184.669062;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;47947 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;11;1;165.669062;175.669062;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;4.977615;-80.020468;221;53278 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;12;1;155.669062;165.669062;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;22.031355;-73.559698;702;53271 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.013324;-106.009024;1;56628 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;56633 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.00997;-107.269342;1;56638 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.351225;-85.947622;110;56620 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.048894;-103.373895;5;113272 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;113269 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.437085;-88.69145;22;113268 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;17.97144;-77.720445;626;113268 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;35.998821;-77.868316;1269;234748 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;9;1;182.509977;183.209977;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;3979 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;10;1;173.509977;182.509977;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;50949 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;11;1;163.509977;173.509977;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;4.676863;-80.563706;144;56729 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;12;1;153.509977;163.509977;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;16.296695;-75.127918;591;56542 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;0;0;20;30;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;61727 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;1;0;30;40;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;61725 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;2;0;40;50;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;61724 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;3;0;50;60;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;1.630938;-85.505648;139;61728 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;4;0;60;80;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.067628;-102.338984;6;123453 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;5;0;80;100;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.438576;-94.219737;9;123452 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;6;0;100;120;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;0.778515;-91.727725;20;123458 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;7;0;120;140;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;16.305556;-78.517002;575;123457 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;8;0;140;400;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;34.949761;-78.113429;1410;241140 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;9;1;179.254803;179.954803;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;4220 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;10;1;170.254803;179.254803;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;-9999999.9;-9999999.9;0;55525 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;11;1;160.254803;170.254803;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;7.355699;-78.963714;256;61727 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;12;1;150.254803;160.254803;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;0;-60;39599.179245;15.313433;-75.780494;656;61745 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.638335;-79.022202;2791;416951 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.638335;-79.022202;2791;416951 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.638335;-79.022202;2791;416951 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.638335;-79.022202;2791;416951 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.638335;-79.022202;2791;416951 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.638335;-79.022202;2791;416951 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.638335;-79.022202;2791;416951 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.638335;-79.022202;2791;416951 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.638335;-79.022202;2791;416951 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.638335;-79.022202;2791;416951 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.638335;-79.022202;2791;416951 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.638335;-79.022202;2791;416951 +"2012/02/03 09:31:22.0000";39599.174506;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.126661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.638335;-79.022202;2791;416951 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;487.911656;-71.808884;14587;417161 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;487.911656;-71.808884;14587;417161 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;487.911656;-71.808884;14587;417161 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;487.911656;-71.808884;14587;417161 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;487.911656;-71.808884;14587;417161 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;487.911656;-71.808884;14587;417161 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;487.911656;-71.808884;14587;417161 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;487.911656;-71.808884;14587;417161 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;487.911656;-71.808884;14587;417161 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;487.911656;-71.808884;14587;417161 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;487.911656;-71.808884;14587;417161 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;487.911656;-71.808884;14587;417161 +"2012/02/03 09:31:22.0000";39599.174506;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.200772;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;487.911656;-71.808884;14587;417161 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;61.193617;-80.825932;1525;417228 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;61.193617;-80.825932;1525;417228 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;61.193617;-80.825932;1525;417228 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;61.193617;-80.825932;1525;417228 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;61.193617;-80.825932;1525;417228 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;61.193617;-80.825932;1525;417228 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;61.193617;-80.825932;1525;417228 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;61.193617;-80.825932;1525;417228 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;61.193617;-80.825932;1525;417228 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;61.193617;-80.825932;1525;417228 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;61.193617;-80.825932;1525;417228 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;61.193617;-80.825932;1525;417228 +"2012/02/03 09:31:22.0000";39599.174506;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.276902;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;61.193617;-80.825932;1525;417228 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.106145;-79.053302;1665;417535 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.106145;-79.053302;1665;417535 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.106145;-79.053302;1665;417535 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.106145;-79.053302;1665;417535 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.106145;-79.053302;1665;417535 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.106145;-79.053302;1665;417535 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.106145;-79.053302;1665;417535 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.106145;-79.053302;1665;417535 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.106145;-79.053302;1665;417535 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.106145;-79.053302;1665;417535 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.106145;-79.053302;1665;417535 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.106145;-79.053302;1665;417535 +"2012/02/03 09:31:22.0000";39599.174506;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.383339;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;92.106145;-79.053302;1665;417535 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;91.19733;-79.096044;1884;417504 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;91.19733;-79.096044;1884;417504 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;91.19733;-79.096044;1884;417504 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;91.19733;-79.096044;1884;417504 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;91.19733;-79.096044;1884;417504 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;91.19733;-79.096044;1884;417504 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;91.19733;-79.096044;1884;417504 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;91.19733;-79.096044;1884;417504 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;91.19733;-79.096044;1884;417504 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;91.19733;-79.096044;1884;417504 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;91.19733;-79.096044;1884;417504 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;91.19733;-79.096044;1884;417504 +"2012/02/03 09:31:22.0000";39599.174506;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.401164;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;91.19733;-79.096044;1884;417504 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.782165;-82.078527;2511;1015102 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.782165;-82.078527;2511;1015102 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.782165;-82.078527;2511;1015102 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.782165;-82.078527;2511;1015102 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.782165;-82.078527;2511;1015102 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.782165;-82.078527;2511;1015102 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.782165;-82.078527;2511;1015102 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.782165;-82.078527;2511;1015102 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.782165;-82.078527;2511;1015102 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.782165;-82.078527;2511;1015102 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.782165;-82.078527;2511;1015102 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.782165;-82.078527;2511;1015102 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;161.829123;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.782165;-82.078527;2511;1015102 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;104.038682;-79.08273;3324;949794 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;104.038682;-79.08273;3324;949794 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;104.038682;-79.08273;3324;949794 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;104.038682;-79.08273;3324;949794 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;104.038682;-79.08273;3324;949794 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;104.038682;-79.08273;3324;949794 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;104.038682;-79.08273;3324;949794 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;104.038682;-79.08273;3324;949794 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;104.038682;-79.08273;3324;949794 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;104.038682;-79.08273;3324;949794 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;104.038682;-79.08273;3324;949794 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;104.038682;-79.08273;3324;949794 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;167.741585;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;104.038682;-79.08273;3324;949794 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;106.795474;-78.781475;3254;909624 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;106.795474;-78.781475;3254;909624 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;106.795474;-78.781475;3254;909624 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;106.795474;-78.781475;3254;909624 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;106.795474;-78.781475;3254;909624 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;106.795474;-78.781475;3254;909624 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;106.795474;-78.781475;3254;909624 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;106.795474;-78.781475;3254;909624 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;106.795474;-78.781475;3254;909624 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;106.795474;-78.781475;3254;909624 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;106.795474;-78.781475;3254;909624 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;106.795474;-78.781475;3254;909624 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;170.020626;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;106.795474;-78.781475;3254;909624 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;139.696152;-77.474879;3719;880712 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;139.696152;-77.474879;3719;880712 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;139.696152;-77.474879;3719;880712 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;139.696152;-77.474879;3719;880712 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;139.696152;-77.474879;3719;880712 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;139.696152;-77.474879;3719;880712 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;139.696152;-77.474879;3719;880712 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;139.696152;-77.474879;3719;880712 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;139.696152;-77.474879;3719;880712 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;139.696152;-77.474879;3719;880712 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;139.696152;-77.474879;3719;880712 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;139.696152;-77.474879;3719;880712 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;172.126015;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;139.696152;-77.474879;3719;880712 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;131.39485;-77.637883;3050;860059 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;131.39485;-77.637883;3050;860059 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;131.39485;-77.637883;3050;860059 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;131.39485;-77.637883;3050;860059 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;131.39485;-77.637883;3050;860059 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;131.39485;-77.637883;3050;860059 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;131.39485;-77.637883;3050;860059 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;131.39485;-77.637883;3050;860059 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;131.39485;-77.637883;3050;860059 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;131.39485;-77.637883;3050;860059 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;131.39485;-77.637883;3050;860059 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;131.39485;-77.637883;3050;860059 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;173.197251;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;131.39485;-77.637883;3050;860059 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;208.088387;-75.570805;3732;846233 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;208.088387;-75.570805;3732;846233 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;208.088387;-75.570805;3732;846233 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;208.088387;-75.570805;3732;846233 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;208.088387;-75.570805;3732;846233 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;208.088387;-75.570805;3732;846233 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;208.088387;-75.570805;3732;846233 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;208.088387;-75.570805;3732;846233 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;208.088387;-75.570805;3732;846233 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;208.088387;-75.570805;3732;846233 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;208.088387;-75.570805;3732;846233 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;208.088387;-75.570805;3732;846233 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;174.344906;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;208.088387;-75.570805;3732;846233 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;128.593217;-77.617747;2767;837827 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;128.593217;-77.617747;2767;837827 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;128.593217;-77.617747;2767;837827 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;128.593217;-77.617747;2767;837827 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;128.593217;-77.617747;2767;837827 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;128.593217;-77.617747;2767;837827 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;128.593217;-77.617747;2767;837827 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;128.593217;-77.617747;2767;837827 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;128.593217;-77.617747;2767;837827 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;128.593217;-77.617747;2767;837827 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;128.593217;-77.617747;2767;837827 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;128.593217;-77.617747;2767;837827 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;175.615815;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;128.593217;-77.617747;2767;837827 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;76.475015;-79.850504;1845;833166 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;76.475015;-79.850504;1845;833166 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;76.475015;-79.850504;1845;833166 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;76.475015;-79.850504;1845;833166 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;76.475015;-79.850504;1845;833166 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;76.475015;-79.850504;1845;833166 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;76.475015;-79.850504;1845;833166 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;76.475015;-79.850504;1845;833166 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;76.475015;-79.850504;1845;833166 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;76.475015;-79.850504;1845;833166 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;76.475015;-79.850504;1845;833166 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;76.475015;-79.850504;1845;833166 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.728351;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;76.475015;-79.850504;1845;833166 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;95.224795;-78.888007;1986;831213 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;95.224795;-78.888007;1986;831213 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;95.224795;-78.888007;1986;831213 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;95.224795;-78.888007;1986;831213 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;95.224795;-78.888007;1986;831213 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;95.224795;-78.888007;1986;831213 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;95.224795;-78.888007;1986;831213 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;95.224795;-78.888007;1986;831213 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;95.224795;-78.888007;1986;831213 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;95.224795;-78.888007;1986;831213 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;95.224795;-78.888007;1986;831213 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;95.224795;-78.888007;1986;831213 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.697193;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;95.224795;-78.888007;1986;831213 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;62.898605;-80.687634;1542;830933 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;62.898605;-80.687634;1542;830933 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;62.898605;-80.687634;1542;830933 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;62.898605;-80.687634;1542;830933 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;62.898605;-80.687634;1542;830933 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;62.898605;-80.687634;1542;830933 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;62.898605;-80.687634;1542;830933 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;62.898605;-80.687634;1542;830933 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;62.898605;-80.687634;1542;830933 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;62.898605;-80.687634;1542;830933 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;62.898605;-80.687634;1542;830933 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;62.898605;-80.687634;1542;830933 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.212661;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;62.898605;-80.687634;1542;830933 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;47.499031;-81.912018;1235;831856 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;47.499031;-81.912018;1235;831856 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;47.499031;-81.912018;1235;831856 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;47.499031;-81.912018;1235;831856 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;47.499031;-81.912018;1235;831856 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;47.499031;-81.912018;1235;831856 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;47.499031;-81.912018;1235;831856 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;47.499031;-81.912018;1235;831856 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;47.499031;-81.912018;1235;831856 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;47.499031;-81.912018;1235;831856 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;47.499031;-81.912018;1235;831856 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;47.499031;-81.912018;1235;831856 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.726221;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;47.499031;-81.912018;1235;831856 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;41.560514;-82.504964;1095;834332 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;41.560514;-82.504964;1095;834332 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;41.560514;-82.504964;1095;834332 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;41.560514;-82.504964;1095;834332 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;41.560514;-82.504964;1095;834332 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;41.560514;-82.504964;1095;834332 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;41.560514;-82.504964;1095;834332 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;41.560514;-82.504964;1095;834332 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;41.560514;-82.504964;1095;834332 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;41.560514;-82.504964;1095;834332 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;41.560514;-82.504964;1095;834332 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;41.560514;-82.504964;1095;834332 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.785442;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;41.560514;-82.504964;1095;834332 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;52.349183;-81.52678;1299;838976 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;52.349183;-81.52678;1299;838976 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;52.349183;-81.52678;1299;838976 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;52.349183;-81.52678;1299;838976 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;52.349183;-81.52678;1299;838976 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;52.349183;-81.52678;1299;838976 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;52.349183;-81.52678;1299;838976 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;52.349183;-81.52678;1299;838976 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;52.349183;-81.52678;1299;838976 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;52.349183;-81.52678;1299;838976 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;52.349183;-81.52678;1299;838976 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;52.349183;-81.52678;1299;838976 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.737758;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;52.349183;-81.52678;1299;838976 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.610196;-81.303689;1213;846613 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.610196;-81.303689;1213;846613 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.610196;-81.303689;1213;846613 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.610196;-81.303689;1213;846613 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.610196;-81.303689;1213;846613 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.610196;-81.303689;1213;846613 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.610196;-81.303689;1213;846613 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.610196;-81.303689;1213;846613 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.610196;-81.303689;1213;846613 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.610196;-81.303689;1213;846613 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.610196;-81.303689;1213;846613 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.610196;-81.303689;1213;846613 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.687551;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;55.610196;-81.303689;1213;846613 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;49.663553;-81.852854;1303;857995 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;49.663553;-81.852854;1303;857995 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;49.663553;-81.852854;1303;857995 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;49.663553;-81.852854;1303;857995 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;49.663553;-81.852854;1303;857995 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;49.663553;-81.852854;1303;857995 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;49.663553;-81.852854;1303;857995 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;49.663553;-81.852854;1303;857995 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;49.663553;-81.852854;1303;857995 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;49.663553;-81.852854;1303;857995 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;49.663553;-81.852854;1303;857995 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;49.663553;-81.852854;1303;857995 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.69089;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;49.663553;-81.852854;1303;857995 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.514147;-82.313381;1497;874271 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.514147;-82.313381;1497;874271 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.514147;-82.313381;1497;874271 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.514147;-82.313381;1497;874271 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.514147;-82.313381;1497;874271 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.514147;-82.313381;1497;874271 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.514147;-82.313381;1497;874271 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.514147;-82.313381;1497;874271 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.514147;-82.313381;1497;874271 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.514147;-82.313381;1497;874271 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.514147;-82.313381;1497;874271 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.514147;-82.313381;1497;874271 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.626374;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.514147;-82.313381;1497;874271 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;46.804693;-82.302039;1536;896716 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;46.804693;-82.302039;1536;896716 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;46.804693;-82.302039;1536;896716 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;46.804693;-82.302039;1536;896716 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;46.804693;-82.302039;1536;896716 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;46.804693;-82.302039;1536;896716 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;46.804693;-82.302039;1536;896716 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;46.804693;-82.302039;1536;896716 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;46.804693;-82.302039;1536;896716 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;46.804693;-82.302039;1536;896716 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;46.804693;-82.302039;1536;896716 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;46.804693;-82.302039;1536;896716 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;179.698884;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;46.804693;-82.302039;1536;896716 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;73.691379;-80.474986;1411;926994 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;73.691379;-80.474986;1411;926994 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;73.691379;-80.474986;1411;926994 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;73.691379;-80.474986;1411;926994 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;73.691379;-80.474986;1411;926994 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;73.691379;-80.474986;1411;926994 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;73.691379;-80.474986;1411;926994 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;73.691379;-80.474986;1411;926994 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;73.691379;-80.474986;1411;926994 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;73.691379;-80.474986;1411;926994 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;73.691379;-80.474986;1411;926994 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;73.691379;-80.474986;1411;926994 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.824619;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;73.691379;-80.474986;1411;926994 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;37.551241;-83.596047;1266;969149 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;37.551241;-83.596047;1266;969149 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;37.551241;-83.596047;1266;969149 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;37.551241;-83.596047;1266;969149 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;37.551241;-83.596047;1266;969149 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;37.551241;-83.596047;1266;969149 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;37.551241;-83.596047;1266;969149 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;37.551241;-83.596047;1266;969149 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;37.551241;-83.596047;1266;969149 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;37.551241;-83.596047;1266;969149 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;37.551241;-83.596047;1266;969149 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;37.551241;-83.596047;1266;969149 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;178.880796;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;37.551241;-83.596047;1266;969149 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.247753;-83.037336;1644;1026815 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.247753;-83.037336;1644;1026815 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.247753;-83.037336;1644;1026815 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.247753;-83.037336;1644;1026815 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.247753;-83.037336;1644;1026815 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.247753;-83.037336;1644;1026815 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.247753;-83.037336;1644;1026815 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.247753;-83.037336;1644;1026815 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.247753;-83.037336;1644;1026815 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.247753;-83.037336;1644;1026815 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.247753;-83.037336;1644;1026815 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.247753;-83.037336;1644;1026815 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;176.1749;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;45.247753;-83.037336;1644;1026815 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;44.621921;-83.434296;1489;1109531 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;44.621921;-83.434296;1489;1109531 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;44.621921;-83.434296;1489;1109531 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;44.621921;-83.434296;1489;1109531 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;44.621921;-83.434296;1489;1109531 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;44.621921;-83.434296;1489;1109531 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;44.621921;-83.434296;1489;1109531 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;44.621921;-83.434296;1489;1109531 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;44.621921;-83.434296;1489;1109531 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;44.621921;-83.434296;1489;1109531 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;44.621921;-83.434296;1489;1109531 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;44.621921;-83.434296;1489;1109531 +"2012/02/03 09:31:22.0000";39599.174506;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.174506;-1;62.2;-10000000;46.344811;-4.293391;8.749244;0;-1;-1;62.2;-0.3;0.8;0.24;177.839791;61400;39599.174506;13;4;20;0;4;943;"2008/05/31 04:04:14.2142";"2008/05/31 04:11:17.2923";0.002778;1.002038;-60;0;39599.174506;44.621921;-83.434296;1489;1109531 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.042762;-81.419567;1459;385410 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.042762;-81.419567;1459;385410 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.042762;-81.419567;1459;385410 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.042762;-81.419567;1459;385410 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.042762;-81.419567;1459;385410 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.042762;-81.419567;1459;385410 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.042762;-81.419567;1459;385410 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.042762;-81.419567;1459;385410 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.042762;-81.419567;1459;385410 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.042762;-81.419567;1459;385410 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.042762;-81.419567;1459;385410 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.042762;-81.419567;1459;385410 +"2012/02/03 09:31:34.0000";39599.179245;"ES18-11";1;46;18000;2;1;18;0;0.01;-0.22;2.4933;2000;13;13;10.55;10.7;-17;23.34;-0.61;100;250;-40;65535;65535;65535;65535;1573;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.343265;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.042762;-81.419567;1459;385410 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;421.063443;-72.257472;11349;385591 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;421.063443;-72.257472;11349;385591 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;421.063443;-72.257472;11349;385591 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;421.063443;-72.257472;11349;385591 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;421.063443;-72.257472;11349;385591 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;421.063443;-72.257472;11349;385591 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;421.063443;-72.257472;11349;385591 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;421.063443;-72.257472;11349;385591 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;421.063443;-72.257472;11349;385591 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;421.063443;-72.257472;11349;385591 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;421.063443;-72.257472;11349;385591 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;421.063443;-72.257472;11349;385591 +"2012/02/03 09:31:34.0000";39599.179245;"ES38B";1;47;38000;2;1;38;0;0.09;-0.07;9.4748;2000;21;21;7.01;6.95;-20.6;25.75;-0.58;100;251;-40;65535;65535;65535;65535;2425;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.376772;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;421.063443;-72.257472;11349;385591 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;42.345839;-82.233167;975;385620 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;42.345839;-82.233167;975;385620 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;42.345839;-82.233167;975;385620 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;42.345839;-82.233167;975;385620 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;42.345839;-82.233167;975;385620 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;42.345839;-82.233167;975;385620 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;42.345839;-82.233167;975;385620 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;42.345839;-82.233167;975;385620 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;42.345839;-82.233167;975;385620 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;42.345839;-82.233167;975;385620 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;42.345839;-82.233167;975;385620 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;42.345839;-82.233167;975;385620 +"2012/02/03 09:31:34.0000";39599.179245;"ES70-7C";1;48;70000;2;1;70;0;-0.01;0.01;23.7577;600;23;23;6.51;6.49;-21;26.88;-0.37;100;251;-40;65535;65535;65535;65535;2859;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.463743;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;42.345839;-82.233167;975;385620 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;59.043795;-80.792526;1104;385886 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;59.043795;-80.792526;1104;385886 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;59.043795;-80.792526;1104;385886 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;59.043795;-80.792526;1104;385886 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;59.043795;-80.792526;1104;385886 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;59.043795;-80.792526;1104;385886 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;59.043795;-80.792526;1104;385886 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;59.043795;-80.792526;1104;385886 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;59.043795;-80.792526;1104;385886 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;59.043795;-80.792526;1104;385886 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;59.043795;-80.792526;1104;385886 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;59.043795;-80.792526;1104;385886 +"2012/02/03 09:31:34.0000";39599.179245;"ES120-7";1;49;120000;2;1;120;0;0.2;0.07;41.8989;200;21;21;7.07;7.1;-20.8;25.43;-0.37;100;251;-40;65535;65535;65535;65535;3026;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.578952;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;59.043795;-80.792526;1104;385886 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;62.890347;-80.518069;1251;385854 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;62.890347;-80.518069;1251;385854 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;62.890347;-80.518069;1251;385854 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;62.890347;-80.518069;1251;385854 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;62.890347;-80.518069;1251;385854 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;62.890347;-80.518069;1251;385854 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;62.890347;-80.518069;1251;385854 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;62.890347;-80.518069;1251;385854 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;62.890347;-80.518069;1251;385854 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;62.890347;-80.518069;1251;385854 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;62.890347;-80.518069;1251;385854 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;62.890347;-80.518069;1251;385854 +"2012/02/03 09:31:34.0000";39599.179245;"ES200-7C";1;50;200000;2;1;200;0;0.02;0.02;60.2426;90;23;23;6.58;6.62;-20.7;25.67;-0.4;100;251;-40;65535;65535;65535;65535;3088;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.576828;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;62.890347;-80.518069;1251;385854 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;998.185852;-69.411341;5450;928594 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;998.185852;-69.411341;5450;928594 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;998.185852;-69.411341;5450;928594 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;998.185852;-69.411341;5450;928594 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;998.185852;-69.411341;5450;928594 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;998.185852;-69.411341;5450;928594 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;998.185852;-69.411341;5450;928594 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;998.185852;-69.411341;5450;928594 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;998.185852;-69.411341;5450;928594 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;998.185852;-69.411341;5450;928594 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;998.185852;-69.411341;5450;928594 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;998.185852;-69.411341;5450;928594 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;91;"MBES-00 72 kHz x=0 y=-42";2;1;71.943;0;0;-42.2058;21.6644;0;47;34;5.015;6.8828;-22.2401;25.8446;-1.6437;100;340;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;170.170703;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;998.185852;-69.411341;5450;928594 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;71.931871;-80.533727;2230;866512 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;71.931871;-80.533727;2230;866512 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;71.931871;-80.533727;2230;866512 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;71.931871;-80.533727;2230;866512 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;71.931871;-80.533727;2230;866512 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;71.931871;-80.533727;2230;866512 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;71.931871;-80.533727;2230;866512 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;71.931871;-80.533727;2230;866512 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;71.931871;-80.533727;2230;866512 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;71.931871;-80.533727;2230;866512 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;71.931871;-80.533727;2230;866512 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;71.931871;-80.533727;2230;866512 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;92;"MBES-01 76 kHz x=0 y=-36";2;1;76.449;0;0;-35.9266;23.1639;0;50;40;4.7195;5.9249;-23.1546;27.4458;-1.6437;100;311;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;176.139847;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;71.931871;-80.533727;2230;866512 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;68.425447;-80.557165;1984;828733 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;68.425447;-80.557165;1984;828733 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;68.425447;-80.557165;1984;828733 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;68.425447;-80.557165;1984;828733 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;68.425447;-80.557165;1984;828733 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;68.425447;-80.557165;1984;828733 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;68.425447;-80.557165;1984;828733 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;68.425447;-80.557165;1984;828733 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;68.425447;-80.557165;1984;828733 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;68.425447;-80.557165;1984;828733 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;68.425447;-80.557165;1984;828733 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;68.425447;-80.557165;1984;828733 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;93;"MBES-02 81 kHz x=0 y=-30";2;1;80.956;0;0;-30.4362;24.6027;0;53;45;4.4567;5.2549;-23.9247;29.0824;-1.6137;100;292;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.047558;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;68.425447;-80.557165;1984;828733 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;70.589048;-80.276369;1997;801410 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;70.589048;-80.276369;1997;801410 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;70.589048;-80.276369;1997;801410 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;70.589048;-80.276369;1997;801410 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;70.589048;-80.276369;1997;801410 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;70.589048;-80.276369;1997;801410 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;70.589048;-80.276369;1997;801410 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;70.589048;-80.276369;1997;801410 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;70.589048;-80.276369;1997;801410 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;70.589048;-80.276369;1997;801410 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;70.589048;-80.276369;1997;801410 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;70.589048;-80.276369;1997;801410 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;94;"MBES-03 85 kHz x=0 y=-26";2;1;85.462;0;0;-25.5157;25.9807;0;56;50;4.2217;4.7557;-24.5934;30.1912;-1.6437;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.489648;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;70.589048;-80.276369;1997;801410 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;65.600691;-80.488667;1670;782088 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;65.600691;-80.488667;1670;782088 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;65.600691;-80.488667;1670;782088 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;65.600691;-80.488667;1670;782088 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;65.600691;-80.488667;1670;782088 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;65.600691;-80.488667;1670;782088 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;65.600691;-80.488667;1670;782088 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;65.600691;-80.488667;1670;782088 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;65.600691;-80.488667;1670;782088 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;65.600691;-80.488667;1670;782088 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;65.600691;-80.488667;1670;782088 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;65.600691;-80.488667;1670;782088 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;95;"MBES-04 90 kHz x=0 y=-21";2;1;89.969;0;0;-21.0289;27.3003;0;59;54;4.0102;4.3677;-25.1862;31.4756;-1.6337;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.09807;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;65.600691;-80.488667;1670;782088 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;83.830361;-79.346987;1808;768388 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;83.830361;-79.346987;1808;768388 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;83.830361;-79.346987;1808;768388 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;83.830361;-79.346987;1808;768388 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;83.830361;-79.346987;1808;768388 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;83.830361;-79.346987;1808;768388 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;83.830361;-79.346987;1808;768388 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;83.830361;-79.346987;1808;768388 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;83.830361;-79.346987;1808;768388 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;83.830361;-79.346987;1808;768388 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;83.830361;-79.346987;1808;768388 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;83.830361;-79.346987;1808;768388 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;96;"MBES-05 94 kHz x=0 y=-17";2;1;94.476;0;0;-16.8842;28.5636;0;62;59;3.8189;4.0572;-25.7186;32.278;-1.6437;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;182.549752;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;83.830361;-79.346987;1808;768388 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;55.539392;-81.086183;1240;759801 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;55.539392;-81.086183;1240;759801 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;55.539392;-81.086183;1240;759801 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;55.539392;-81.086183;1240;759801 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;55.539392;-81.086183;1240;759801 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;55.539392;-81.086183;1240;759801 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;55.539392;-81.086183;1240;759801 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;55.539392;-81.086183;1240;759801 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;55.539392;-81.086183;1240;759801 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;55.539392;-81.086183;1240;759801 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;55.539392;-81.086183;1240;759801 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;55.539392;-81.086183;1240;759801 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;97;"MBES-06 99 kHz x=0 y=-13";2;1;98.982;0;0;-13.0162;29.7736;0;65;63;3.6451;3.8033;-26.2017;32.8084;-1.6237;100;257;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.89871;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;55.539392;-81.086183;1240;759801 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;44.34862;-82.03454;1035;754770 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;44.34862;-82.03454;1035;754770 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;44.34862;-82.03454;1035;754770 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;44.34862;-82.03454;1035;754770 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;44.34862;-82.03454;1035;754770 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;44.34862;-82.03454;1035;754770 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;44.34862;-82.03454;1035;754770 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;44.34862;-82.03454;1035;754770 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;44.34862;-82.03454;1035;754770 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;44.34862;-82.03454;1035;754770 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;44.34862;-82.03454;1035;754770 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;44.34862;-82.03454;1035;754770 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;98;"MBES-07 103 kHz x=0 y=-9";2;1;103.489;0;0;-9.3765;30.9342;0;68;66;3.4863;3.5922;-26.6431;33.1002;-1.5837;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.126389;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;44.34862;-82.03454;1035;754770 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;521.014219;-71.321176;835;752398 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;521.014219;-71.321176;835;752398 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;521.014219;-71.321176;835;752398 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;521.014219;-71.321176;835;752398 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;521.014219;-71.321176;835;752398 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;521.014219;-71.321176;835;752398 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;521.014219;-71.321176;835;752398 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;521.014219;-71.321176;835;752398 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;521.014219;-71.321176;835;752398 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;521.014219;-71.321176;835;752398 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;521.014219;-71.321176;835;752398 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;521.014219;-71.321176;835;752398 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;99;"MBES-08 108 kHz x=0 y=-6";2;1;107.995;0;0;-5.9278;32.0484;0;71;70;3.3409;3.4146;-27.0485;33.4715;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.920177;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;521.014219;-71.321176;835;752398 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;701.171088;-70.02773;992;751757 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;701.171088;-70.02773;992;751757 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;701.171088;-70.02773;992;751757 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;701.171088;-70.02773;992;751757 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;701.171088;-70.02773;992;751757 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;701.171088;-70.02773;992;751757 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;701.171088;-70.02773;992;751757 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;701.171088;-70.02773;992;751757 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;701.171088;-70.02773;992;751757 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;701.171088;-70.02773;992;751757 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;701.171088;-70.02773;992;751757 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;701.171088;-70.02773;992;751757 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;100;"MBES-09 113 kHz x=0 y=-3";2;1;112.502;0;0;-2.6404;33.1203;0;74;73;3.207;3.2637;-27.4223;34.1062;-1.6137;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.582938;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;701.171088;-70.02773;992;751757 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;2821.483757;-63.984648;869;752355 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;2821.483757;-63.984648;869;752355 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;2821.483757;-63.984648;869;752355 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;2821.483757;-63.984648;869;752355 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;2821.483757;-63.984648;869;752355 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;2821.483757;-63.984648;869;752355 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;2821.483757;-63.984648;869;752355 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;2821.483757;-63.984648;869;752355 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;2821.483757;-63.984648;869;752355 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;2821.483757;-63.984648;869;752355 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;2821.483757;-63.984648;869;752355 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;2821.483757;-63.984648;869;752355 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;101;"MBES-10 118 kHz x=0 y=0";2;1;118.057;0;0;0.4956;34.3883;0;78;77;3.0561;3.107;-27.8453;34.2813;-1.6137;100;250;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.892027;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;2821.483757;-63.984648;869;752355 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;244.321703;-74.619899;1082;754106 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;244.321703;-74.619899;1082;754106 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;244.321703;-74.619899;1082;754106 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;244.321703;-74.619899;1082;754106 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;244.321703;-74.619899;1082;754106 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;244.321703;-74.619899;1082;754106 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;244.321703;-74.619899;1082;754106 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;244.321703;-74.619899;1082;754106 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;244.321703;-74.619899;1082;754106 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;244.321703;-74.619899;1082;754106 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;244.321703;-74.619899;1082;754106 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;244.321703;-74.619899;1082;754106 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;102;"MBES-11 115 kHz x=0 y=4";2;1;114.755;0;0;3.6016;33.6413;0;76;74;3.1441;3.2026;-27.5905;33.8263;-1.6437;100;251;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;187.089064;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;244.321703;-74.619899;1082;754106 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;35.189506;-83.056856;880;757843 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;35.189506;-83.056856;880;757843 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;35.189506;-83.056856;880;757843 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;35.189506;-83.056856;880;757843 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;35.189506;-83.056856;880;757843 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;35.189506;-83.056856;880;757843 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;35.189506;-83.056856;880;757843 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;35.189506;-83.056856;880;757843 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;35.189506;-83.056856;880;757843 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;35.189506;-83.056856;880;757843 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;35.189506;-83.056856;880;757843 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;35.189506;-83.056856;880;757843 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;103;"MBES-12 110 kHz x=0 y=7";2;1;110.249;0;0;6.8274;32.5895;0;73;71;3.2726;3.3507;-27.2202;33.4384;-1.6237;100;252;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.859815;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;35.189506;-83.056856;880;757843 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;33.682555;-83.283846;898;764311 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;33.682555;-83.283846;898;764311 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;33.682555;-83.283846;898;764311 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;33.682555;-83.283846;898;764311 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;33.682555;-83.283846;898;764311 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;33.682555;-83.283846;898;764311 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;33.682555;-83.283846;898;764311 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;33.682555;-83.283846;898;764311 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;33.682555;-83.283846;898;764311 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;33.682555;-83.283846;898;764311 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;33.682555;-83.283846;898;764311 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;33.682555;-83.283846;898;764311 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;104;"MBES-13 106 kHz x=0 y=10";2;1;105.742;0;0;10.2114;31.4967;0;70;68;3.412;3.5245;-26.8193;32.9972;-1.6237;100;254;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.585625;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;33.682555;-83.283846;898;764311 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.476935;-81.496764;1223;774051 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.476935;-81.496764;1223;774051 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.476935;-81.496764;1223;774051 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.476935;-81.496764;1223;774051 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.476935;-81.496764;1223;774051 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.476935;-81.496764;1223;774051 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.476935;-81.496764;1223;774051 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.476935;-81.496764;1223;774051 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.476935;-81.496764;1223;774051 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.476935;-81.496764;1223;774051 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.476935;-81.496764;1223;774051 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.476935;-81.496764;1223;774051 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;105;"MBES-14 101 kHz x=0 y=14";2;1;101.235;0;0;13.782;30.3598;0;67;64;3.5639;3.7305;-26.3834;32.696;-1.6537;100;258;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.829907;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;51.476935;-81.496764;1223;774051 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;61.576491;-80.79784;1357;788278 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;61.576491;-80.79784;1357;788278 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;61.576491;-80.79784;1357;788278 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;61.576491;-80.79784;1357;788278 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;61.576491;-80.79784;1357;788278 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;61.576491;-80.79784;1357;788278 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;61.576491;-80.79784;1357;788278 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;61.576491;-80.79784;1357;788278 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;61.576491;-80.79784;1357;788278 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;61.576491;-80.79784;1357;788278 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;61.576491;-80.79784;1357;788278 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;61.576491;-80.79784;1357;788278 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;106;"MBES-15 97 kHz x=0 y=18";2;1;96.729;0;0;17.5749;29.1751;0;64;60;3.73;3.9776;-25.9072;32.5618;-1.6337;100;262;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.412139;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;61.576491;-80.79784;1357;788278 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;41.434087;-82.622199;1112;807343 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;41.434087;-82.622199;1112;807343 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;41.434087;-82.622199;1112;807343 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;41.434087;-82.622199;1112;807343 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;41.434087;-82.622199;1112;807343 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;41.434087;-82.622199;1112;807343 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;41.434087;-82.622199;1112;807343 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;41.434087;-82.622199;1112;807343 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;41.434087;-82.622199;1112;807343 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;41.434087;-82.622199;1112;807343 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;41.434087;-82.622199;1112;807343 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;41.434087;-82.622199;1112;807343 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;107;"MBES-16 92 kHz x=0 y=22";2;1;92.222;0;0;21.6367;27.9387;0;61;56;3.9123;4.2787;-25.383;31.8313;-1.6037;100;269;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.690795;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;41.434087;-82.622199;1112;807343 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;67.054855;-80.666858;1718;832907 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;67.054855;-80.666858;1718;832907 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;67.054855;-80.666858;1718;832907 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;67.054855;-80.666858;1718;832907 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;67.054855;-80.666858;1718;832907 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;67.054855;-80.666858;1718;832907 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;67.054855;-80.666858;1718;832907 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;67.054855;-80.666858;1718;832907 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;67.054855;-80.666858;1718;832907 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;67.054855;-80.666858;1718;832907 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;67.054855;-80.666858;1718;832907 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;67.054855;-80.666858;1718;832907 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;108;"MBES-17 88 kHz x=0 y=26";2;1;87.716;0;0;26.0296;26.6478;0;58;51;4.1132;4.6536;-24.8007;30.663;-1.6237;100;278;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;186.141447;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;67.054855;-80.666858;1718;832907 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;86.117382;-79.757378;2467;867579 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;86.117382;-79.757378;2467;867579 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;86.117382;-79.757378;2467;867579 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;86.117382;-79.757378;2467;867579 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;86.117382;-79.757378;2467;867579 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;86.117382;-79.757378;2467;867579 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;86.117382;-79.757378;2467;867579 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;86.117382;-79.757378;2467;867579 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;86.117382;-79.757378;2467;867579 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;86.117382;-79.757378;2467;867579 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;86.117382;-79.757378;2467;867579 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;86.117382;-79.757378;2467;867579 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;109;"MBES-18 83 kHz x=0 y=31";2;1;83.209;0;0;30.8408;25.2991;0;55;46;4.336;5.134;-24.145;29.2729;-1.6337;100;291;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;185.669062;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;86.117382;-79.757378;2467;867579 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;56.830761;-81.790457;2034;914344 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;56.830761;-81.790457;2034;914344 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;56.830761;-81.790457;2034;914344 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;56.830761;-81.790457;2034;914344 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;56.830761;-81.790457;2034;914344 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;56.830761;-81.790457;2034;914344 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;56.830761;-81.790457;2034;914344 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;56.830761;-81.790457;2034;914344 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;56.830761;-81.790457;2034;914344 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;56.830761;-81.790457;2034;914344 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;56.830761;-81.790457;2034;914344 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;56.830761;-81.790457;2034;914344 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;110;"MBES-19 79 kHz x=0 y=36";2;1;78.702;0;0;36.1988;23.8907;0;52;41;4.5843;5.7753;-23.392;27.7938;-1.6437;100;309;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;183.509977;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;56.830761;-81.790457;2034;914344 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;54.170975;-82.308043;2159;981864 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;54.170975;-82.308043;2159;981864 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;54.170975;-82.308043;2159;981864 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;54.170975;-82.308043;2159;981864 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;54.170975;-82.308043;2159;981864 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;54.170975;-82.308043;2159;981864 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;54.170975;-82.308043;2159;981864 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;54.170975;-82.308043;2159;981864 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;54.170975;-82.308043;2159;981864 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;54.170975;-82.308043;2159;981864 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;54.170975;-82.308043;2159;981864 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;54.170975;-82.308043;2159;981864 +"2012/02/03 09:31:34.0000";39599.179245;"ME70";2;111;"MBES-20 74 kHz x=0 y=42";2;1;74.196;0;0;42.3088;22.4216;0;49;35;4.8628;6.6847;-22.5008;26.2716;-1.6437;100;337;-40;13;14;19;20;3544;6553.5;6553.5;1.024;39599.179245;-1;120.9;-10000000;46.338541;-4.271844;9.248812;0;-1;-1;120.9;0.1;0.4;0.06;180.254803;61400;39599.179245;13;4;20;0;944;1841;"2008/05/31 04:11:17.7134";"2008/05/31 04:18:06.7455";1.002778;2.002601;-60;0;39599.179245;54.170975;-82.308043;2159;981864 Property changes on: trunk/echobase-services/src/test/resources/import-data/acousticData/movies.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Added: trunk/echobase-services/src/test/resources/import-data/catchesData/subsample.csv =================================================================== --- trunk/echobase-services/src/test/resources/import-data/catchesData/subsample.csv (rev 0) +++ trunk/echobase-services/src/test/resources/import-data/catchesData/subsample.csv 2012-02-17 18:35:54 UTC (rev 322) @@ -0,0 +1,2547 @@ +"operationID";"subHaul";"baracoudacode";"sizeCategory";"sexCategory";"sampleWeight";"numberSampled";"lengthClass";"numberAtLength";"weightAtLength";"units";"round" +"P0372";1;"ENGR-ENC";"0";"N";3.37;198;120;7;0.08;0;5 +"P0372";1;"ENGR-ENC";"0";"N";3.37;198;125;18;0.24;0;5 +"P0372";1;"ENGR-ENC";"0";"N";3.37;198;130;36;0.52;0;5 +"P0372";1;"ENGR-ENC";"0";"N";3.37;198;135;42;0.67;0;5 +"P0372";1;"ENGR-ENC";"0";"N";3.37;198;140;43;0.74;0;5 +"P0372";1;"ENGR-ENC";"0";"N";3.37;198;145;32;0.64;0;5 +"P0372";1;"ENGR-ENC";"0";"N";3.37;198;150;16;0.37;0;5 +"P0372";1;"ENGR-ENC";"0";"N";3.37;198;155;4;0.09;0;5 +"P0372";1;"LOPH-BUD";"0";"N";"4.0e-03";2;5;1;"2.22042663011981e-03";1;1 +"P0372";1;"LOPH-BUD";"0";"N";"4.0e-03";2;6;1;"2.0e-03";1;1 +"P0372";1;"MOLA-MOL";"0";"N";12.12;3;39;1;0;1;1 +"P0372";1;"MOLA-MOL";"0";"N";12.12;3;40;2;0;1;1 +"P0377";1;"BOOP-BOO";"0";"N";0.52;3;23;1;0.11;1;1 +"P0377";1;"BOOP-BOO";"0";"N";0.52;3;24;1;0.13;1;1 +"P0377";1;"BOOP-BOO";"0";"N";0.52;3;29;1;0.25;1;1 +"P0377";1;"ENGR-ENC";"0";"N";2.07;208;105;3;0.03;0;5 +"P0377";1;"ENGR-ENC";"0";"N";2.07;208;110;24;0.21;0;5 +"P0377";1;"ENGR-ENC";"0";"N";2.07;208;115;62;0.53;0;5 +"P0377";1;"ENGR-ENC";"0";"N";2.07;208;120;75;0.75;0;5 +"P0377";1;"ENGR-ENC";"0";"N";2.07;208;125;28;0.33;0;5 +"P0377";1;"ENGR-ENC";"0";"N";2.07;208;130;8;0.08;0;5 +"P0377";1;"ENGR-ENC";"0";"N";2.07;208;135;4;0.06;0;5 +"P0377";1;"ENGR-ENC";"0";"N";2.07;208;140;3;0.04;0;5 +"P0377";1;"ENGR-ENC";"0";"N";2.07;208;150;1;0.02;0;5 +"P0377";1;"ILLE-COI";"0";"N";0.29;1;18;1;0;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;16;2;0.05;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;17;1;0.03;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;18;3;0.11;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;19;2;0.08;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;24;2;0.17;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;26;2;0.22;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;27;1;0.12;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;29;5;0.8;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;30;2;0.35;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;31;3;0.59;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;32;1;0.21;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;33;3;0.71;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;34;1;0.26;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;35;5;1.43;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;36;2;0.62;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;37;4;1.35;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;40;2;0.86;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;44;1;0.57;1;1 +"P0378";1;"ENGR-ENC";"0";"N";2.98;249;105;2;0.01;0;5 +"P0378";1;"ENGR-ENC";"0";"N";2.98;249;110;29;0.31;0;5 +"P0378";1;"ENGR-ENC";"0";"N";2.98;249;115;106;1.06;0;5 +"P0378";1;"ENGR-ENC";"0";"N";2.98;249;120;73;0.96;0;5 +"P0378";1;"ENGR-ENC";"0";"N";2.98;249;125;28;0.4;0;5 +"P0378";1;"ENGR-ENC";"0";"N";2.98;249;130;5;0.09;0;5 +"P0378";1;"ENGR-ENC";"0";"N";2.98;249;135;3;0.05;0;5 +"P0378";1;"ENGR-ENC";"0";"N";2.98;249;140;1;0.01;0;5 +"P0378";1;"ENGR-ENC";"0";"N";2.98;249;145;1;0.02;0;5 +"P0378";1;"ENGR-ENC";"0";"N";2.98;249;150;0;0;0;5 +"P0378";1;"ENGR-ENC";"0";"N";2.98;249;155;1;0.02;0;5 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;15;1;0.02;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;16;0;0;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;17;1;0.03;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;18;4;0.14;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;19;6;0.26;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;20;3;0.15;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;21;9;0.53;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;22;7;0.48;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;23;6;0.47;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;24;5;0.44;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;25;2;0.2;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;47;1;0.7;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;49;2;1.6;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;50;1;0.85;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;52;1;0.96;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;53;1;1.02;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;54;1;1.08;1;1 +"P0377";1;"MERL-MCC";"0";"N";17.2;50;67;1;2.1;1;1 +"P0377";1;"MICR-POU";"0";"N";0.58;14;17;1;0.02;1;1 +"P0377";1;"MICR-POU";"0";"N";0.58;14;18;2;0.05;1;1 +"P0377";1;"MICR-POU";"0";"N";0.58;14;19;4;0.13;1;1 +"P0377";1;"MICR-POU";"0";"N";0.58;14;20;6;0.23;1;1 +"P0377";1;"MICR-POU";"0";"N";0.58;14;21;1;0.04;1;1 +"P0377";1;"SARD-PIL";"0";"N";0.86;14;185;1;0;0;5 +"P0377";1;"SARD-PIL";"0";"N";0.86;14;190;2;0;0;5 +"P0377";1;"SARD-PIL";"0";"N";0.86;14;200;3;0;0;5 +"P0377";1;"SARD-PIL";"0";"N";0.86;14;205;4;0;0;5 +"P0377";1;"SARD-PIL";"0";"N";0.86;14;210;2;0;0;5 +"P0377";1;"SARD-PIL";"0";"N";0.86;14;225;1;0;0;5 +"P0377";1;"SARD-PIL";"0";"N";0.86;14;250;1;0;0;5 +"P0377";1;"SCOM-JAP";"0";"N";31.05;100;29;1;0.21;1;1 +"P0377";1;"SCOM-JAP";"0";"N";31.05;100;30;7;1.56;1;1 +"P0389";1;"ENGR-ENC";"0";"N";3.96;256;115;2;0.02;0;5 +"P0389";1;"ENGR-ENC";"0";"N";3.96;256;120;24;0.27;0;5 +"P0389";1;"ENGR-ENC";"0";"N";3.96;256;125;47;0.6;0;5 +"P0389";1;"ENGR-ENC";"0";"N";3.96;256;130;65;0.91;0;5 +"P0389";1;"ENGR-ENC";"0";"N";3.96;256;135;49;0.76;0;5 +"P0389";1;"ENGR-ENC";"0";"N";3.96;256;140;25;0.47;0;5 +"P0389";1;"ENGR-ENC";"0";"N";3.96;256;145;27;0.51;0;5 +"P0389";1;"ENGR-ENC";"0";"N";3.96;256;150;10;0.22;0;5 +"P0389";1;"ENGR-ENC";"0";"N";3.96;256;155;4;0.1;0;5 +"P0389";1;"ENGR-ENC";"0";"N";3.96;256;160;2;0.05;0;5 +"P0389";1;"ENGR-ENC";"0";"N";3.96;256;165;0;0;0;5 +"P0389";1;"ENGR-ENC";"0";"N";3.96;256;170;1;0.03;0;5 +"P0389";1;"MERL-MCC";"0";"N";1.01;9;19;1;0.04;1;1 +"P0389";1;"MERL-MCC";"0";"N";1.01;9;23;1;0.07;1;1 +"P0389";1;"MERL-MCC";"0";"N";1.01;9;24;5;0.44;1;1 +"P0390";1;"ENGR-ENC";"0";"N";4.19;231;115;1;0.01;0;5 +"P0390";1;"ENGR-ENC";"0";"N";4.19;231;120;8;0.1;0;5 +"P0390";1;"ENGR-ENC";"0";"N";4.19;231;125;9;0.12;0;5 +"P0390";1;"ENGR-ENC";"0";"N";4.19;231;130;54;0.82;0;5 +"P0390";1;"ENGR-ENC";"0";"N";4.19;231;135;45;0.74;0;5 +"P0390";1;"ENGR-ENC";"0";"N";4.19;231;140;57;1.1;0;5 +"P0390";1;"ENGR-ENC";"0";"N";4.19;231;145;31;0.64;0;5 +"P0390";1;"ENGR-ENC";"0";"N";4.19;231;150;17;0.38;0;5 +"P0390";1;"ENGR-ENC";"0";"N";4.19;231;155;3;0.07;0;5 +"P0390";1;"ENGR-ENC";"0";"N";4.19;231;160;5;0.14;0;5 +"P0390";1;"ENGR-ENC";"0";"N";4.19;231;170;1;0.03;0;5 +"P0390";1;"ENGR-ENC";"0";"N";4.19;231;180;0;;0;5 +"P0390";1;"EUTR-GUR";"0";"N";0.73;16;17;1;0.03;1;1 +"P0390";1;"EUTR-GUR";"0";"N";0.52;16;17;1;0.03;1;1 +"P0390";1;"EUTR-GUR";"0";"N";0.73;16;21;1;0.07;1;1 +"P0390";1;"EUTR-GUR";"0";"N";0.52;16;21;1;0.07;1;1 +"P0390";1;"EUTR-GUR";"0";"N";0.73;16;22;3;0.25;1;1 +"P0390";1;"EUTR-GUR";"0";"N";0.52;16;22;3;0.25;1;1 +"P0390";1;"EUTR-GUR";"0";"N";0.73;16;23;1;0.09;1;1 +"P0390";1;"EUTR-GUR";"0";"N";0.52;16;23;1;0.09;1;1 +"P0390";1;"EUTR-GUR";"0";"N";0.73;16;24;1;0.11;1;1 +"P0390";1;"EUTR-GUR";"0";"N";0.52;16;24;1;0.11;1;1 +"P0390";1;"EUTR-GUR";"0";"N";0.73;16;46;1;0.87;1;1 +"P0390";1;"EUTR-GUR";"0";"N";0.52;16;46;1;0.87;1;1 +"P0390";1;"MERL-MCC";"0";"N";0.35;4;20;1;0.05;1;1 +"P0390";1;"MERL-MCC";"0";"N";0.35;4;22;1;0.06;1;1 +"P0390";1;"MERL-MCC";"0";"N";0.35;4;24;1;0.08;1;1 +"P0390";1;"MERL-MCC";"0";"N";0.35;4;25;1;0.1;1;1 +"P0390";1;"MOLA-MOL";"0";"N";6.66;2;38;1;3.52;1;1 +"P0390";1;"MOLA-MOL";"0";"N";6.66;2;39;1;3.14;1;1 +"P0390";1;"MUST-AST";"0";"F";1.27;2;66;1;0;1;1 +"P0390";1;"MUST-AST";"0";"M";1.35;2;69;1;0;1;1 +"P0390";1;"MUST-AST";"0";"M";1.35;2;68;0;;1;1 +"P0390";1;"SARD-PIL";"0";"N";6;105;155;1;0;0;5 +"P0390";1;"SARD-PIL";"0";"N";6;105;160;3;0;0;5 +"P0379";1;"ENGR-ENC";"0";"N";2.28;142;110;1;0.01;0;5 +"P0379";1;"ENGR-ENC";"0";"N";2.28;142;115;2;0.02;0;5 +"P0379";1;"ENGR-ENC";"0";"N";2.28;142;120;10;0.12;0;5 +"P0379";1;"ENGR-ENC";"0";"N";2.28;142;125;27;0.34;0;5 +"P0379";1;"ENGR-ENC";"0";"N";2.28;142;130;44;0.69;0;5 +"P0379";1;"ENGR-ENC";"0";"N";2.28;142;135;26;0.44;0;5 +"P0379";1;"ENGR-ENC";"0";"N";2.28;142;140;18;0.34;0;5 +"P0379";1;"ENGR-ENC";"0";"N";2.28;142;145;8;0.16;0;5 +"P0379";1;"ENGR-ENC";"0";"N";2.28;142;150;6;0.14;0;5 +"P0379";1;"EUTR-GUR";"0";"N";0.34;3;23;1;0.09;1;1 +"P0379";1;"EUTR-GUR";"0";"N";0.34;3;24;0;0;1;1 +"P0379";1;"EUTR-GUR";"0";"N";0.34;3;25;1;0.12;1;1 +"P0379";1;"EUTR-GUR";"0";"N";0.34;3;28;1;0.18;1;1 +"P0379";1;"MERL-MCC";"0";"N";2.54;13;18;1;0.03;1;1 +"P0379";1;"MERL-MCC";"0";"N";2.54;13;22;1;0.06;1;1 +"P0379";1;"MERL-MCC";"0";"N";2.54;13;23;2;0.15;1;1 +"P0379";1;"MERL-MCC";"0";"N";2.54;13;24;1;0.08;1;1 +"P0379";1;"MERL-MCC";"0";"N";2.54;13;27;1;0.12;1;1 +"P0379";1;"MERL-MCC";"0";"N";2.54;13;30;3;0.53;1;1 +"P0379";1;"MERL-MCC";"0";"N";2.54;13;32;1;0.21;1;1 +"P0379";1;"MERL-MCC";"0";"N";2.54;13;35;1;0.28;1;1 +"P0379";1;"MERL-MCC";"0";"N";2.54;13;38;1;0.36;1;1 +"P0379";1;"MERL-MCC";"0";"N";2.54;13;42;1;0.5;1;1 +"P0379";1;"SARD-PIL";"0";"N";5.96;83;190;3;0.16;0;5 +"P0379";1;"SARD-PIL";"0";"N";5.96;83;195;8;0.45;0;5 +"P0379";1;"SARD-PIL";"0";"N";5.96;83;200;9;0.55;0;5 +"P0384";1;"CAPR-APE";"0";"N";0.62;29;8;1;0.01;1;1 +"P0384";1;"CAPR-APE";"0";"N";0.62;29;9;23;0.32;1;1 +"P0384";1;"CAPR-APE";"0";"N";0.62;29;10;5;0;1;1 +"P0384";1;"ENGR-ENC";"0";"N";2.05;127;120;3;0.03;0;5 +"P0384";1;"ENGR-ENC";"0";"N";2.05;127;125;15;0.19;0;5 +"P0384";1;"ENGR-ENC";"0";"N";2.05;127;130;38;0.56;0;5 +"P0384";1;"ENGR-ENC";"0";"N";2.05;127;135;25;0.32;0;5 +"P0383";1;"DIVE-RS2";"0";"N";0.02;12;0;12;;1;1 +"P0383";1;"MICR-POU";"0";"N";0.03;50;4;25;"6.72270806092048e-03";1;1 +"P0383";1;"MICR-POU";"0";"N";0.03;50;5;25;0.01;1;1 +"P0383";1;"MOLA-MOL";"0";"N";4.92;1;42;1;0;1;1 +"P0383";1;"MYCT-OPX";"0";"N";"1.0e-03";1;5;1;;1;1 +"P0383";1;"SCOM-SCO";"0";"N";"6.0e-03";8;3;3;"4.73394945202868e-04";1;1 +"P0383";1;"SCOM-SCO";"0";"N";"6.0e-03";8;4;1;"3.83173912848224e-04";1;1 +"P0383";1;"SCOM-SCO";"0";"N";"6.0e-03";8;5;2;"1.52504564444427e-03";1;1 +"P0383";1;"SCOM-SCO";"0";"N";"6.0e-03";8;6;1;"1.33794026533763e-03";1;1 +"P0383";1;"SCOM-SCO";"0";"N";"6.0e-03";8;7;1;"2.15224273596492e-03";1;1 +"P0399";1;"ENGR-ENC";"0";"N";4.57;211;120;3;0.03;0;5 +"P0399";1;"ENGR-ENC";"0";"N";4.57;211;125;5;0.06;0;5 +"P0399";1;"ENGR-ENC";"0";"N";4.57;211;130;13;0.19;0;5 +"P0399";1;"ENGR-ENC";"0";"N";4.57;211;135;16;0.25;0;5 +"P0399";1;"ENGR-ENC";"0";"N";4.57;211;140;32;0.57;0;5 +"P0399";1;"ENGR-ENC";"0";"N";4.57;211;145;38;0.79;0;5 +"P0399";1;"ENGR-ENC";"0";"N";4.57;211;150;41;0.95;0;5 +"P0399";1;"ENGR-ENC";"0";"N";4.57;211;155;29;0.72;0;5 +"P0399";1;"ENGR-ENC";"0";"N";4.57;211;160;20;0.56;0;5 +"P0399";1;"ENGR-ENC";"0";"N";4.57;211;165;6;0.17;0;5 +"P0399";1;"ENGR-ENC";"0";"N";4.57;211;170;5;0.16;0;5 +"P0399";1;"ENGR-ENC";"0";"N";4.57;211;175;2;0.07;0;5 +"P0399";1;"ENGR-ENC";"0";"N";4.57;211;180;0;0;0;5 +"P0399";1;"ENGR-ENC";"0";"N";4.57;211;185;1;0.04;0;5 +"P0399";1;"EUTR-GUR";"0";"N";0.1;1;24;1;0.1;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;16;3;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;17;3;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;18;2;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;19;3;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;20;0;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;21;1;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;22;5;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;23;0;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;24;3;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;25;3;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;26;6;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;27;4;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;28;1;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;29;1;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;30;1;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;31;1;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;32;3;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;33;0;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;34;1;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;35;1;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;36;2;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;37;3;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;38;0;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;39;2;0;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;43;2;0;1;1 +"P0389";1;"MERL-MCC";"0";"N";1.01;9;29;1;0.16;1;1 +"P0389";1;"MERL-MCC";"0";"N";1.01;9;30;1;0.17;1;1 +"P0389";1;"MOLA-MOL";"0";"N";21.32;5;37;1;0;1;1 +"P0389";1;"MOLA-MOL";"0";"N";21.32;5;40;2;0;1;1 +"P0389";1;"MOLA-MOL";"0";"N";21.32;5;42;1;0;1;1 +"P0389";1;"MOLA-MOL";"0";"N";21.32;5;43;1;0;1;1 +"P0389";1;"POLL-POL";"0";"N";3.14;1;83;1;5.98;1;1 +"P0389";1;"SARD-PIL";"0";"N";8.13;121;185;3;0.15;0;5 +"P0389";1;"SARD-PIL";"0";"N";8.13;121;190;8;0.42;0;5 +"P0390";1;"SARD-PIL";"0";"N";6;105;165;7;0;0;5 +"P0390";1;"SARD-PIL";"0";"N";6;105;170;13;0;0;5 +"P0390";1;"SARD-PIL";"0";"N";6;105;175;7;0;0;5 +"P0390";1;"SARD-PIL";"0";"N";6;105;180;4;0;0;5 +"P0390";1;"SARD-PIL";"0";"N";6;105;185;2;0;0;5 +"P0390";1;"SARD-PIL";"0";"N";6;105;190;10;0;0;5 +"P0390";1;"SARD-PIL";"0";"N";6;105;195;6;0;0;5 +"P0390";1;"SARD-PIL";"0";"N";6;105;200;18;0;0;5 +"P0390";1;"SARD-PIL";"0";"N";6;105;205;19;0;0;5 +"P0390";1;"SARD-PIL";"0";"N";6;105;210;4;0;0;5 +"P0390";1;"SARD-PIL";"0";"N";6;105;215;5;0;0;5 +"P0390";1;"SARD-PIL";"0";"N";6;105;220;4;0;0;5 +"P0390";1;"SARD-PIL";"0";"N";6;105;225;1;0;0;5 +"P0390";1;"SARD-PIL";"0";"N";6;105;230;1;0;0;5 +"P0390";1;"SCOM-JAP";"0";"N";3.72;49;17;1;0.03;1;1 +"P0390";1;"SCOM-JAP";"0";"N";3.72;49;18;2;0.08;1;1 +"P0390";1;"SCOM-JAP";"0";"N";3.72;49;19;14;0.71;1;1 +"P0390";1;"SCOM-JAP";"0";"N";3.72;49;20;16;0.96;1;1 +"P0390";1;"SCOM-JAP";"0";"N";3.72;49;21;6;0.42;1;1 +"P0390";1;"SCOM-JAP";"0";"N";3.72;49;22;4;0.32;1;1 +"P0390";1;"SCOM-JAP";"0";"N";3.72;49;23;4;0.38;1;1 +"P0390";1;"SCOM-JAP";"0";"N";3.72;49;24;1;0.1;1;1 +"P0390";1;"SCOM-JAP";"0";"N";3.72;49;28;1;0.17;1;1 +"P0390";1;"SCOM-SCO";"0";"N";1.5;6;31;3;0.63;1;1 +"P0390";1;"SCOM-SCO";"0";"N";1.5;6;32;1;0.23;1;1 +"P0390";1;"SCOM-SCO";"0";"N";1.5;6;34;1;0.28;1;1 +"P0390";1;"SCOM-SCO";"0";"N";1.5;6;36;1;0.33;1;1 +"P0390";1;"TRAC-TRU";"0";"N";0.41;22;11;1;0.01;1;1 +"P0390";1;"TRAC-TRU";"0";"N";0.41;22;12;12;0.16;1;1 +"P0390";1;"TRAC-TRU";"0";"N";0.41;22;13;5;0.08;1;1 +"P0390";1;"TRAC-TRU";"0";"N";0.41;22;14;2;0.04;1;1 +"P0390";1;"TRAC-TRU";"0";"N";0.41;22;15;0;0;1;1 +"P0390";1;"TRAC-TRU";"0";"N";0.41;22;16;1;0.03;1;1 +"P0390";1;"TRAC-TRU";"0";"N";0.41;22;17;0;0;1;1 +"P0390";1;"TRAC-TRU";"0";"N";0.41;22;18;0;0;1;1 +"P0400";1;"DIVE-RS2";"0";"N";0.34;104;0;104;;1;1 +"P0400";1;"LOPH-BUD";"0";"N";0.02;3;7;3;0;1;1 +"P0400";1;"MOLA-MOL";"0";"N";4.76;1;42;1;0;1;1 +"P0400";1;"TRAC-TRU";"0";"N";0.81;2;35;1;0.34;1;1 +"P0400";1;"TRAC-TRU";"0";"N";0.81;2;37;1;0.4;1;1 +"P0399";1;"MERL-MCC";"0";"N";9.2;52;49;1;0;1;1 +"P0399";1;"MOLA-MOL";"0";"N";8.86;2;43;1;4.86;1;1 +"P0399";1;"MOLA-MOL";"0";"N";8.86;2;41;1;4;1;1 +"P0399";1;"SARD-PIL";"0";"N";7.53;105;190;5;0.28;0;5 +"P0399";1;"SARD-PIL";"0";"N";7.53;105;195;8;0.47;0;5 +"P0399";1;"SARD-PIL";"0";"N";7.53;105;200;12;0.77;0;5 +"P0399";1;"SARD-PIL";"0";"N";7.53;105;205;15;1.03;0;5 +"P0399";1;"SARD-PIL";"0";"N";7.53;105;210;16;1.11;0;5 +"P0399";1;"SARD-PIL";"0";"N";7.53;105;215;30;2.33;0;5 +"P0399";1;"SARD-PIL";"0";"N";7.53;105;220;14;1.13;0;5 +"P0399";1;"SARD-PIL";"0";"N";7.53;105;225;3;0.25;0;5 +"P0399";1;"SARD-PIL";"0";"N";7.53;105;230;1;0.09;0;5 +"P0399";1;"SARD-PIL";"0";"N";7.53;105;185;1;0.04;0;5 +"P0399";1;"SARD-SAR";"0";"N";5.2;1;76;1;5.2;1;1 +"P0399";1;"SCOM-JAP";"0";"N";0.38;6;21;1;0.07;1;1 +"P0399";1;"SCOM-JAP";"0";"N";0.38;6;22;1;0.08;1;1 +"P0404";1;"ENGR-ENC";"0";"N";4.03;187;130;3;0.04;0;5 +"P0404";1;"ENGR-ENC";"0";"N";4.03;187;135;14;0.23;0;5 +"P0404";1;"ENGR-ENC";"0";"N";4.03;187;140;46;0.84;0;5 +"P0404";1;"ENGR-ENC";"0";"N";4.03;187;145;49;1.02;0;5 +"P0404";1;"ENGR-ENC";"0";"N";4.03;187;150;39;0.89;0;5 +"P0404";1;"ENGR-ENC";"0";"N";4.03;187;155;23;0.57;0;5 +"P0404";1;"ENGR-ENC";"0";"N";4.03;187;160;4;0.12;0;5 +"P0404";1;"ENGR-ENC";"0";"N";4.03;187;165;5;0.15;0;5 +"P0404";1;"ENGR-ENC";"0";"N";4.03;187;170;3;0.1;0;5 +"P0404";1;"ENGR-ENC";"0";"N";4.03;187;175;1;0.04;0;5 +"P0404";1;"MERL-MCC";"0";"N";0.96;5;23;1;0.07;1;1 +"P0404";1;"MERL-MCC";"0";"N";0.96;5;24;0;0;1;1 +"P0404";1;"MERL-MCC";"0";"N";0.96;5;25;1;0.1;1;1 +"P0404";1;"MERL-MCC";"0";"N";0.96;5;26;0;0;1;1 +"P0404";1;"MERL-MCC";"0";"N";0.96;5;27;1;0.12;1;1 +"P0404";1;"MERL-MCC";"0";"N";0.96;5;33;1;0.23;1;1 +"P0404";1;"MERL-MCC";"0";"N";0.96;5;39;1;0.39;1;1 +"P0404";1;"MOLA-MOL";"0";"N";4.06;1;41;1;0;1;1 +"P0404";1;"SARD-PIL";"0";"N";0.05;1;190;1;0;0;5 +"P0404";1;"SCOM-JAP";"0";"N";0.24;1;32;1;0.27;1;1 +"P0404";1;"SCOM-SCO";"0";"N";1.94;6;32;1;0.23;1;1 +"P0417";1;"ENGR-ENC";"0";"N";0.64;28;135;1;0;0;5 +"P0417";1;"ENGR-ENC";"0";"N";0.64;28;140;12;0;0;5 +"P0417";1;"ENGR-ENC";"0";"N";0.64;28;145;7;0;0;5 +"P0417";1;"ENGR-ENC";"0";"N";0.64;28;150;7;0;0;5 +"P0417";1;"ENGR-ENC";"0";"N";0.64;28;155;1;0;0;5 +"P0417";1;"MERL-MCC";"0";"N";0.83;30;25;1;0.1;1;1 +"P0417";1;"MERL-MCC";"0";"N";6.9;30;25;1;0.1;1;1 +"P0417";1;"MERL-MCC";"0";"N";0.83;30;30;1;0.17;1;1 +"P0417";1;"MERL-MCC";"0";"N";6.9;30;30;1;0.17;1;1 +"P0417";1;"MERL-MCC";"0";"N";0.83;30;44;1;0.57;1;1 +"P0417";1;"MERL-MCC";"0";"N";6.9;30;44;1;0.57;1;1 +"P0417";1;"MERL-MCC";"0";"N";0.83;30;28;1;0.14;1;1 +"P0417";1;"MERL-MCC";"0";"N";6.9;30;28;1;0.14;1;1 +"P0417";1;"MERL-MCC";"0";"N";0.83;30;32;1;0.21;1;1 +"P0417";1;"MERL-MCC";"0";"N";6.9;30;32;1;0.21;1;1 +"P0417";1;"MERL-MCC";"0";"N";0.83;30;33;1;0.23;1;1 +"P0417";1;"MERL-MCC";"0";"N";6.9;30;33;1;0.23;1;1 +"P0417";1;"MERL-MCC";"0";"N";0.83;30;36;1;0.31;1;1 +"P0417";1;"MERL-MCC";"0";"N";6.9;30;36;1;0.31;1;1 +"P0417";1;"MERL-MCC";"0";"N";0.83;30;37;0;0;1;1 +"P0417";1;"MERL-MCC";"0";"N";6.9;30;37;0;0;1;1 +"P0417";1;"MERL-MCC";"0";"N";0.83;30;38;1;0.36;1;1 +"P0417";1;"MERL-MCC";"0";"N";6.9;30;38;1;0.36;1;1 +"P0417";1;"MERL-MCC";"0";"N";0.83;30;40;1;0.43;1;1 +"P0417";1;"MERL-MCC";"0";"N";6.9;30;40;1;0.43;1;1 +"P0417";1;"MERL-MCC";"0";"N";0.83;30;44;1;0.57;1;1 +"P0417";1;"MERL-MCC";"0";"N";6.9;30;44;1;0.57;1;1 +"P0417";1;"MERL-MCC";"0";"N";0.83;30;46;2;1.32;1;1 +"P0417";1;"MERL-MCC";"0";"N";6.9;30;46;2;1.32;1;1 +"P0417";1;"MERL-MCC";"0";"N";0.83;30;48;1;0.75;1;1 +"P0417";1;"MERL-MCC";"0";"N";6.9;30;48;1;0.75;1;1 +"P0417";1;"MERL-MCC";"0";"N";0.83;30;52;1;0.96;1;1 +"P0417";1;"MERL-MCC";"0";"N";6.9;30;52;1;0.96;1;1 +"P0417";1;"MERL-MCC";"0";"N";0.83;30;54;1;1.08;1;1 +"P0417";1;"MERL-MCC";"0";"N";6.9;30;54;1;1.08;1;1 +"P0417";1;"SARD-PIL";"0";"N";7.4;107;185;3;0.15;0;5 +"P0417";1;"SARD-PIL";"0";"N";7.4;107;190;7;0.38;0;5 +"P0417";1;"SARD-PIL";"0";"N";7.4;107;195;12;0.71;0;5 +"P0417";1;"SARD-PIL";"0";"N";7.4;107;200;20;1.28;0;5 +"P0417";1;"SARD-PIL";"0";"N";7.4;107;205;20;1.32;0;5 +"P0417";1;"SARD-PIL";"0";"N";7.4;107;210;20;1.48;0;5 +"P0417";1;"SARD-PIL";"0";"N";7.4;107;215;11;0.82;0;5 +"P0417";1;"SARD-PIL";"0";"N";7.4;107;220;9;0.78;0;5 +"P0417";1;"SARD-PIL";"0";"N";7.4;107;225;3;0.25;0;5 +"P0417";1;"SARD-PIL";"0";"N";7.4;107;230;0;0;0;5 +"P0417";1;"SARD-PIL";"0";"N";7.4;107;235;2;0.21;0;5 +"P0417";1;"SCOM-JAP";"0";"N";15.07;144;18;6;0.25;1;1 +"P0417";1;"SCOM-JAP";"0";"N";15.07;144;19;23;1.17;1;1 +"P0417";1;"SCOM-JAP";"0";"N";15.07;144;20;34;2.05;1;1 +"P0417";1;"SCOM-JAP";"0";"N";15.07;144;21;22;1.55;1;1 +"P0417";1;"SCOM-JAP";"0";"N";15.07;144;22;11;0.9;1;1 +"P0417";1;"SCOM-JAP";"0";"N";15.07;144;23;6;0.57;1;1 +"P0417";1;"SCOM-JAP";"0";"N";15.07;144;24;6;0.65;1;1 +"P0417";1;"SCOM-JAP";"0";"N";15.07;144;25;3;0.37;1;1 +"P0417";1;"SCOM-JAP";"0";"N";15.07;144;26;1;0.14;1;1 +"P0417";1;"SCOM-JAP";"0";"N";15.07;144;27;1;0.15;1;1 +"P0417";1;"SCOM-JAP";"0";"N";15.07;144;28;0;0;1;1 +"P0417";1;"SCOM-JAP";"0";"N";15.07;144;29;15;3.02;1;1 +"P0417";1;"SCOM-JAP";"0";"N";15.07;144;30;5;1.12;1;1 +"P0423";1;"ENGR-ENC";"0";"N";1.92;165;105;7;0.04;0;5 +"P0423";1;"ENGR-ENC";"0";"N";1.92;165;110;12;0.12;0;5 +"P0423";1;"ENGR-ENC";"0";"N";1.92;165;115;21;0.18;0;5 +"P0423";1;"ENGR-ENC";"0";"N";1.92;165;120;30;0.31;0;5 +"P0423";1;"ENGR-ENC";"0";"N";1.92;165;125;32;0.37;0;5 +"P0423";1;"ENGR-ENC";"0";"N";1.92;165;130;32;0.42;0;5 +"P0423";1;"ENGR-ENC";"0";"N";1.92;165;135;14;0.21;0;5 +"P0423";1;"ENGR-ENC";"0";"N";1.92;165;140;6;0.1;0;5 +"P0423";1;"ENGR-ENC";"0";"N";1.92;165;145;2;0.03;0;5 +"P0423";1;"ENGR-ENC";"0";"N";1.92;165;150;3;0.06;0;5 +"P0423";1;"ENGR-ENC";"0";"N";1.92;165;155;1;0.02;0;5 +"P0423";1;"ENGR-ENC";"0";"N";1.92;165;95;2;0.01;0;5 +"P0423";1;"ENGR-ENC";"0";"N";1.92;165;100;3;0.02;0;5 +"P0423";1;"MERL-MCC";"0";"N";0.46;1;40;1;0;1;1 +"P0423";1;"SARD-PIL";"0";"N";7.21;155;155;8;0.21;0;5 +"P0423";1;"SARD-PIL";"0";"N";7.21;155;160;21;0.68;0;5 +"P0423";1;"SARD-PIL";"0";"N";7.21;155;165;21;0.72;0;5 +"P0423";1;"SARD-PIL";"0";"N";7.21;155;170;10;0.39;0;5 +"P0423";1;"SARD-PIL";"0";"N";7.21;155;175;10;0.41;0;5 +"P0423";1;"SARD-PIL";"0";"N";7.21;155;180;21;0.99;0;5 +"P0423";1;"SARD-PIL";"0";"N";7.21;155;185;16;0.79;0;5 +"P0423";1;"SARD-PIL";"0";"N";7.21;155;190;10;0.53;0;5 +"P0423";1;"SARD-PIL";"0";"N";7.21;155;195;12;0.69;0;5 +"P0423";1;"SARD-PIL";"0";"N";7.21;155;200;11;0.67;0;5 +"P0423";1;"SARD-PIL";"0";"N";7.21;155;205;7;0.46;0;5 +"P0423";1;"SARD-PIL";"0";"N";7.21;155;210;5;0.39;0;5 +"P0423";1;"SARD-PIL";"0";"N";7.21;155;215;2;0.16;0;5 +"P0423";1;"SARD-PIL";"0";"N";7.21;155;220;1;0.09;0;5 +"P0423";1;"SCOM-JAP";"0";"N";0.93;13;19;1;0;1;1 +"P0423";1;"SCOM-JAP";"0";"N";0.93;13;20;3;0;1;1 +"P0423";1;"SCOM-JAP";"0";"N";0.93;13;21;7;0;1;1 +"P0423";1;"SCOM-JAP";"0";"N";0.93;13;22;2;0;1;1 +"P0423";1;"SPRA-SPR";"0";"N";0.91;85;100;2;0.02;0;5 +"P0429";1;"ENGR-ENC";"0";"N";3.62;184;125;4;0.06;0;5 +"P0429";1;"ENGR-ENC";"0";"N";3.62;184;130;23;0.34;0;5 +"P0429";1;"ENGR-ENC";"0";"N";3.62;184;135;54;0.9;0;5 +"P0429";1;"ENGR-ENC";"0";"N";3.62;184;140;43;0.75;0;5 +"P0429";1;"ENGR-ENC";"0";"N";3.62;184;145;27;0.6;0;5 +"P0429";1;"ENGR-ENC";"0";"N";3.62;184;150;13;0.28;0;5 +"P0429";1;"ENGR-ENC";"0";"N";3.62;184;155;3;0.07;0;5 +"P0429";1;"ENGR-ENC";"0";"N";3.62;184;160;1;0.02;0;5 +"P0429";1;"ENGR-ENC";"0";"N";3.62;184;165;8;0.25;0;5 +"P0429";1;"ENGR-ENC";"0";"N";3.62;184;170;1;0.03;0;5 +"P0435";1;"ENGR-ENC";"0";"N";1.62;219;115;22;0.2;0;5 +"P0435";1;"ENGR-ENC";"0";"N";1.62;219;120;13;0.13;0;5 +"P0435";1;"ENGR-ENC";"0";"N";1.62;219;125;7;0.08;0;5 +"P0435";1;"ENGR-ENC";"0";"N";1.62;219;130;2;0.03;0;5 +"P0435";1;"ENGR-ENC";"0";"N";1.62;219;135;1;0.02;0;5 +"P0435";1;"ENGR-ENC";"0";"N";1.62;219;140;1;0.02;0;5 +"P0435";1;"SCOM-JAP";"0";"N";0.06;2;15;1;0;1;1 +"P0435";1;"SCOM-JAP";"0";"N";0.06;2;16;1;0;1;1 +"P0435";1;"SPRA-SPR";"0";"N";1.21;124;100;5;0.04;0;5 +"P0435";1;"SPRA-SPR";"0";"N";1.21;124;105;49;0.44;0;5 +"P0435";1;"SPRA-SPR";"0";"N";1.21;124;110;56;0.58;0;5 +"P0435";1;"SPRA-SPR";"0";"N";1.21;124;115;14;0.15;0;5 +"P0435";1;"TRAC-TRU";"0";"N";0.07;8;9;2;0;1;1 +"P0435";1;"TRAC-TRU";"0";"N";0.07;8;10;5;0;1;1 +"P0435";1;"TRAC-TRU";"0";"N";0.07;8;11;1;0;1;1 +"P0436";1;"ENGR-ENC";"0";"N";2.06;130;125;9;0.11;0;5 +"P0436";1;"ENGR-ENC";"0";"N";2.06;130;130;30;0.42;0;5 +"P0436";1;"ENGR-ENC";"0";"N";2.06;130;135;32;0.51;0;5 +"P0436";1;"ENGR-ENC";"0";"N";2.06;130;140;45;0.75;0;5 +"P0436";1;"ENGR-ENC";"0";"N";2.06;130;145;12;0.23;0;5 +"P0436";1;"ENGR-ENC";"0";"N";2.06;130;150;2;0.04;0;5 +"P0436";1;"EUTR-GUR";"0";"N";0.39;2;28;1;0;1;1 +"P0436";1;"EUTR-GUR";"0";"N";0.39;2;32;1;0;1;1 +"P0436";1;"MERL-MCC";"0";"N";1.61;9;20;1;0;1;1 +"P0436";1;"MERL-MCC";"0";"N";1.61;9;23;1;0;1;1 +"P0436";1;"MERL-MCC";"0";"N";1.61;9;27;1;0;1;1 +"P0436";1;"MERL-MCC";"0";"N";1.61;9;29;1;0;1;1 +"P0436";1;"MERL-MCC";"0";"N";1.61;9;31;3;0;1;1 +"P0436";1;"MERL-MCC";"0";"N";1.61;9;34;2;0;1;1 +"P0436";1;"MOLA-MOL";"0";"N";4;1;39;1;0;1;1 +"P0436";1;"SARD-PIL";"0";"N";9.33;145;165;5;0.15;0;5 +"P0436";1;"SARD-PIL";"0";"N";9.33;145;170;1;0.03;0;5 +"P0436";1;"SARD-PIL";"0";"N";9.33;145;175;1;0.03;0;5 +"P0436";1;"SARD-PIL";"0";"N";9.33;145;180;5;0.22;0;5 +"P0436";1;"SARD-PIL";"0";"N";9.33;145;185;7;0.4;0;5 +"P0436";1;"SARD-PIL";"0";"N";9.33;145;190;9;0.46;0;5 +"P0436";1;"SARD-PIL";"0";"N";9.33;145;195;21;1.18;0;5 +"P0436";1;"SARD-PIL";"0";"N";9.33;145;200;22;1.33;0;5 +"P0436";1;"SARD-PIL";"0";"N";9.33;145;205;29;1.97;0;5 +"P0436";1;"SARD-PIL";"0";"N";9.33;145;210;20;1.46;0;5 +"P0436";1;"SARD-PIL";"0";"N";9.33;145;215;11;0.85;0;5 +"P0436";1;"SARD-PIL";"0";"N";9.33;145;220;9;0.74;0;5 +"P0436";1;"SARD-PIL";"0";"N";9.33;145;225;0;0;0;5 +"P0443";1;"ALLO-TEZ";"0";"N";0.11;30;0;30;0.11;1;1 +"P0443";1;"BOOP-BOO";"0";"N";0.18;1;27;1;0;1;1 +"P0443";1;"ENGR-ENC";"0";"N";2.11;168;150;0;0;0;5 +"P0443";1;"ENGR-ENC";"0";"N";2.11;168;155;1;0.02;0;5 +"P0443";1;"ENGR-ENC";"0";"N";2.11;168;160;1;0.03;0;5 +"P0443";1;"ENGR-ENC";"0";"N";2.11;168;110;4;0.03;0;5 +"P0443";1;"ENGR-ENC";"0";"N";2.11;168;115;25;0.24;0;5 +"P0443";1;"ENGR-ENC";"0";"N";2.11;168;120;38;0.41;0;5 +"P0443";1;"ENGR-ENC";"0";"N";2.11;168;125;45;0.54;0;5 +"P0443";1;"ENGR-ENC";"0";"N";2.11;168;130;26;0.36;0;5 +"P0443";1;"ENGR-ENC";"0";"N";2.11;168;135;18;0.28;0;5 +"P0443";1;"ENGR-ENC";"0";"N";2.11;168;140;8;0.13;0;5 +"P0443";1;"ENGR-ENC";"0";"N";2.11;168;145;2;0.04;0;5 +"P0443";1;"HYPE-LAN";"0";"N";0.03;1;26;1;0.03;1;1 +"P0443";1;"MERL-MNG";"0";"N";2.05;16;21;1;;1;1 +"P0443";1;"MERL-MNG";"0";"N";2.05;16;22;0;0;1;1 +"P0443";1;"MERL-MNG";"0";"N";2.05;16;23;2;0;1;1 +"P0443";1;"MERL-MNG";"0";"N";2.05;16;24;5;0;1;1 +"P0443";1;"MERL-MNG";"0";"N";2.05;16;25;3;0;1;1 +"P0443";1;"MERL-MNG";"0";"N";2.05;16;26;1;0;1;1 +"P0443";1;"MERL-MNG";"0";"N";2.05;16;27;2;0;1;1 +"P0443";1;"MERL-MNG";"0";"N";2.05;16;28;0;0;1;1 +"P0443";1;"MERL-MNG";"0";"N";2.05;16;29;0;0;1;1 +"P0443";1;"MERL-MNG";"0";"N";2.05;16;30;1;0;1;1 +"P0443";1;"MERL-MNG";"0";"N";2.05;16;31;1;0;1;1 +"P0443";1;"SARD-PIL";"0";"N";5.82;127;150;11;0.33;0;5 +"P0443";1;"SARD-PIL";"0";"N";5.82;127;155;4;0.12;0;5 +"P0443";1;"SARD-PIL";"0";"N";5.82;127;160;7;0.22;0;5 +"P0443";1;"SARD-PIL";"0";"N";5.82;127;165;16;0.57;0;5 +"P0443";1;"SARD-PIL";"0";"N";5.82;127;170;19;0.72;0;5 +"P0443";1;"SARD-PIL";"0";"N";5.82;127;175;13;0.56;0;5 +"P0443";1;"SARD-PIL";"0";"N";5.82;127;180;9;0.41;0;5 +"P0443";1;"SARD-PIL";"0";"N";5.82;127;185;14;0.7;0;5 +"P0443";1;"SARD-PIL";"0";"N";5.82;127;190;3;0.16;0;5 +"P0443";1;"SARD-PIL";"0";"N";5.82;127;195;11;0.63;0;5 +"P0443";1;"SARD-PIL";"0";"N";5.82;127;200;8;0.5;0;5 +"P0443";1;"SARD-PIL";"0";"N";5.82;127;205;5;0.35;0;5 +"P0443";1;"SARD-PIL";"0";"N";5.82;127;210;3;0.22;0;5 +"P0443";1;"SARD-PIL";"0";"N";5.82;127;215;3;0.21;0;5 +"P0443";1;"SARD-PIL";"0";"N";5.82;127;220;1;0.1;0;5 +"P0443";1;"SCOM-SCO";"0";"N";3.02;13;32;3;0;1;1 +"P0443";1;"SCOM-SCO";"0";"N";3.02;13;33;2;0;1;1 +"P0454";1;"ENGR-ENC";"0";"N";1.95;149;120;9;0.09;0;5 +"P0449";1;"BELO-BEO";"0";"N";1.82;2;80;1;0;1;1 +"P0449";1;"BELO-BEO";"0";"N";1.82;2;86;1;0;1;1 +"P0449";1;"DIVE-RS1";"0";"N";3.34;217;0;217;;1;1 +"P0450";1;"ENGR-ENC";"0";"N";2.38;130;125;3;0.04;0;5 +"P0450";1;"ENGR-ENC";"0";"N";2.38;130;130;8;0.12;0;5 +"P0450";1;"ENGR-ENC";"0";"N";2.38;130;135;32;0.53;0;5 +"P0450";1;"ENGR-ENC";"0";"N";2.38;130;140;48;0.88;0;5 +"P0450";1;"ENGR-ENC";"0";"N";2.38;130;145;25;0.51;0;5 +"P0450";1;"ENGR-ENC";"0";"N";2.38;130;150;13;0.27;0;5 +"P0450";1;"ENGR-ENC";"0";"N";2.38;130;155;1;0.02;0;5 +"P0450";1;"MERL-MCC";"0";"N";1.64;16;17;1;0;1;1 +"P0450";1;"MERL-MCC";"0";"N";1.64;16;20;4;0;1;1 +"P0450";1;"MERL-MCC";"0";"N";1.64;16;21;2;0;1;1 +"P0450";1;"MERL-MCC";"0";"N";1.64;16;22;0;0;1;1 +"P0450";1;"MERL-MCC";"0";"N";1.64;16;23;1;0;1;1 +"P0450";1;"MERL-MCC";"0";"N";1.64;16;24;2;0;1;1 +"P0450";1;"MERL-MCC";"0";"N";1.64;16;25;1;0;1;1 +"P0450";1;"MERL-MCC";"0";"N";1.64;16;26;1;0;1;1 +"P0450";1;"MERL-MCC";"0";"N";1.64;16;27;0;0;1;1 +"P0450";1;"MERL-MCC";"0";"N";1.64;16;28;2;0;1;1 +"P0450";1;"MERL-MCC";"0";"N";1.64;16;32;1;0;1;1 +"P0450";1;"MERL-MCC";"0";"N";1.64;16;33;1;0;1;1 +"P0450";1;"MICR-POU";"0";"N";1.03;11;19;2;0;1;1 +"P0450";1;"MICR-POU";"0";"N";1.03;11;20;1;0;1;1 +"P0450";1;"MICR-POU";"0";"N";1.03;11;21;3;0;1;1 +"P0450";1;"MICR-POU";"0";"N";1.03;11;22;1;0;1;1 +"P0450";1;"MICR-POU";"0";"N";1.03;11;27;1;0;1;1 +"P0450";1;"MICR-POU";"0";"N";1.03;11;28;1;0;1;1 +"P0450";1;"MICR-POU";"0";"N";1.03;11;34;2;0;1;1 +"P0450";1;"SARD-PIL";"0";"N";1.59;26;185;1;0;0;5 +"P0450";1;"SARD-PIL";"0";"N";1.59;26;190;5;0;0;5 +"P0450";1;"SARD-PIL";"0";"N";1.59;26;195;6;0;0;5 +"P0450";1;"SARD-PIL";"0";"N";1.59;26;200;7;0;0;5 +"P0450";1;"SARD-PIL";"0";"N";1.59;26;205;3;0;0;5 +"P0450";1;"SARD-PIL";"0";"N";1.59;26;210;3;0;0;5 +"P0450";1;"SARD-PIL";"0";"N";1.59;26;215;0;0;0;5 +"P0450";1;"SARD-PIL";"0";"N";1.59;26;220;1;0;0;5 +"P0450";1;"TODA-EBL";"0";"N";0.13;1;12;1;0;1;1 +"P0450";1;"TRAC-TRU";"0";"N";1.04;18;15;1;0;1;1 +"P0450";1;"TRAC-TRU";"0";"N";1.04;18;16;0;0;1;1 +"P0450";1;"TRAC-TRU";"0";"N";1.04;18;17;1;0;1;1 +"P0450";1;"TRAC-TRU";"0";"N";1.04;18;18;4;0;1;1 +"P0450";1;"TRAC-TRU";"0";"N";1.04;18;19;10;0;1;1 +"P0442";1;"ALOP-VUL";"0";"N";108;1;312;1;;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;73;2;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;74;1;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;79;1;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;82;2;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;86;1;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;89;1;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;50;1;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;51;1;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;55;1;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;57;1;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;58;1;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;59;0;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;60;1;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;61;2;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;62;2;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;63;1;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;64;0;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;65;3;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;66;1;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;67;2;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;68;1;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;69;1;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;70;0;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;71;1;0;1;1 +"P0442";1;"BELO-BEO";"0";"N";12.62;30;72;2;0;1;1 +"P0442";1;"DICE-LAB";"0";"N";0.69;1;41;1;0;1;1 +"P0442";1;"DIVE-RS1";"0";"N";1.39;7;0;7;;1;1 +"P0442";1;"ENGR-ENC";"0";"N";1.87;144;105;1;"5.0e-03";0;5 +"P0442";1;"ENGR-ENC";"0";"N";1.87;144;110;1;0.01;0;5 +"P0442";1;"ENGR-ENC";"0";"N";1.87;144;115;15;0.15;0;5 +"P0442";1;"ENGR-ENC";"0";"N";1.87;144;120;54;0.62;0;5 +"P0442";1;"ENGR-ENC";"0";"N";1.87;144;125;44;0.57;0;5 +"P0442";1;"ENGR-ENC";"0";"N";1.87;144;130;21;0.36;0;5 +"P0442";1;"ENGR-ENC";"0";"N";1.87;144;135;6;0.09;0;5 +"P0442";1;"ENGR-ENC";"0";"N";1.87;144;140;1;0.02;0;5 +"P0443";1;"SCOM-SCO";"0";"N";3.02;13;34;2;0;1;1 +"P0443";1;"SCOM-SCO";"0";"N";3.02;13;36;0;;1;1 +"P0443";1;"SCOM-SCO";"0";"N";3.02;13;28;2;0;1;1 +"P0443";1;"SCOM-SCO";"0";"N";3.02;13;29;2;0;1;1 +"P0443";1;"SCOM-SCO";"0";"N";3.02;13;30;0;0;1;1 +"P0443";1;"SCOM-SCO";"0";"N";3.02;13;31;2;0;1;1 +"P0443";1;"SPRA-SPR";"0";"N";1.07;91;100;1;0;0;5 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;26;4;0.45;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;40;0;0;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;41;1;0.46;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;27;1;0.12;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;28;1;0.14;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;29;1;0.16;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;30;1;0.17;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;31;0;0;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;32;2;0.43;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;33;1;0.23;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;34;0;0;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;35;1;0.28;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;36;0;0;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;37;1;0.33;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;38;0;0;1;1 +"P0378";1;"MERL-MCC";"0";"N";5.98;58;39;0;0;1;1 +"P0378";1;"MICR-POU";"0";"N";0.19;1;31;1;0.19;1;1 +"P0378";1;"SARD-PIL";"0";"N";9.13;148;190;20;1.07;0;5 +"P0378";1;"SARD-PIL";"0";"N";9.13;148;195;31;1.76;0;5 +"P0378";1;"SARD-PIL";"0";"N";9.13;148;200;27;1.64;0;5 +"P0378";1;"SARD-PIL";"0";"N";9.13;148;205;25;1.65;0;5 +"P0378";1;"SARD-PIL";"0";"N";9.13;148;210;25;1.7;0;5 +"P0378";1;"SARD-PIL";"0";"N";9.13;148;215;6;0.44;0;5 +"P0378";1;"SARD-PIL";"0";"N";9.13;148;220;5;0.41;0;5 +"P0378";1;"SARD-PIL";"0";"N";9.13;148;225;1;0.08;0;5 +"P0378";1;"SARD-PIL";"0";"N";9.13;148;170;1;0.04;0;5 +"P0378";1;"SARD-PIL";"0";"N";9.13;148;175;1;0.04;0;5 +"P0378";1;"SARD-PIL";"0";"N";9.13;148;180;2;0.1;0;5 +"P0378";1;"SARD-PIL";"0";"N";9.13;148;185;4;0.19;0;5 +"P0378";1;"SCOM-JAP";"0";"N";0.18;2;22;1;0.08;1;1 +"P0378";1;"SCOM-JAP";"0";"N";0.18;2;23;1;0.09;1;1 +"P0378";1;"SCOM-SCO";"0";"N";9.72;32;29;1;0.17;1;1 +"P0378";1;"SCOM-SCO";"0";"N";9.72;32;30;3;0.57;1;1 +"P0378";1;"SCOM-SCO";"0";"N";9.72;32;31;2;0.42;1;1 +"P0378";1;"SCOM-SCO";"0";"N";9.72;32;32;2;0.46;1;1 +"P0378";1;"SCOM-SCO";"0";"N";9.72;32;33;1;0.25;1;1 +"P0378";1;"SCOM-SCO";"0";"N";9.72;32;34;8;1.97;1;1 +"P0379";1;"SARD-PIL";"0";"N";5.96;83;205;18;1.18;0;5 +"P0379";1;"SARD-PIL";"0";"N";5.96;83;210;19;1.42;0;5 +"P0379";1;"SARD-PIL";"0";"N";5.96;83;215;9;0.64;0;5 +"P0379";1;"SARD-PIL";"0";"N";5.96;83;220;9;0.75;0;5 +"P0379";1;"SARD-PIL";"0";"N";5.96;83;225;6;0.61;0;5 +"P0379";1;"SARD-PIL";"0";"N";5.96;83;230;2;0.17;0;5 +"P0379";1;"SCOM-JAP";"0";"N";8.88;91;24;7;0.76;1;1 +"P0454";1;"ENGR-ENC";"0";"N";1.95;149;125;41;0.48;0;5 +"P0454";1;"ENGR-ENC";"0";"N";1.95;149;130;51;0.66;0;5 +"P0454";1;"ENGR-ENC";"0";"N";1.95;149;135;35;0.49;0;5 +"P0454";1;"ENGR-ENC";"0";"N";1.95;149;140;8;0.13;0;5 +"P0454";1;"ENGR-ENC";"0";"N";1.95;149;145;3;0.05;0;5 +"P0454";1;"ENGR-ENC";"0";"N";1.95;149;150;1;0.02;0;5 +"P0454";1;"ENGR-ENC";"0";"N";1.95;149;165;1;0.02;0;5 +"P0454";1;"EUTR-GUR";"0";"N";0.96;5;23;1;0;1;1 +"P0454";1;"EUTR-GUR";"0";"N";0.96;5;27;1;0;1;1 +"P0454";1;"EUTR-GUR";"0";"N";0.96;5;28;1;0;1;1 +"P0454";1;"EUTR-GUR";"0";"N";0.96;5;34;1;0;1;1 +"P0454";1;"EUTR-GUR";"0";"N";0.96;5;35;1;0;1;1 +"P0454";1;"MERL-MCC";"0";"N";0.56;4;22;1;0;1;1 +"P0454";1;"MERL-MCC";"0";"N";0.56;4;23;1;0;1;1 +"P0454";1;"MERL-MCC";"0";"N";0.56;4;27;1;0;1;1 +"P0454";1;"MERL-MCC";"0";"N";0.56;4;33;1;0;1;1 +"P0454";1;"MICR-POU";"0";"N";0.46;7;18;2;0;1;1 +"P0454";1;"MICR-POU";"0";"N";0.46;7;19;1;0;1;1 +"P0454";1;"MICR-POU";"0";"N";0.46;7;20;1;0;1;1 +"P0454";1;"MICR-POU";"0";"N";0.46;7;21;1;0;1;1 +"P0454";1;"MICR-POU";"0";"N";0.46;7;28;1;0;1;1 +"P0454";1;"MICR-POU";"0";"N";0.46;7;31;1;0;1;1 +"P0455";1;"ENGR-ENC";"0";"N";2.44;141;125;2;0.02;0;5 +"P0455";1;"ENGR-ENC";"0";"N";2.44;141;130;19;0.29;0;5 +"P0455";1;"ENGR-ENC";"0";"N";2.44;141;135;56;0.94;0;5 +"P0455";1;"ENGR-ENC";"0";"N";2.44;141;140;45;0.8;0;5 +"P0455";1;"ENGR-ENC";"0";"N";2.44;141;145;15;0.29;0;5 +"P0455";1;"ENGR-ENC";"0";"N";2.44;141;150;1;0.01;0;5 +"P0455";1;"ENGR-ENC";"0";"N";2.44;141;155;1;0.02;0;5 +"P0455";1;"ENGR-ENC";"0";"N";2.44;141;160;1;0.02;0;5 +"P0455";1;"ENGR-ENC";"0";"N";2.44;141;165;1;0.03;0;5 +"P0455";1;"MERL-MCC";"0";"N";1.12;2;27;1;0;1;1 +"P0455";1;"MERL-MCC";"0";"N";1.12;2;52;1;0;1;1 +"P0455";1;"MICR-POU";"0";"N";0.28;6;19;1;0;1;1 +"P0455";1;"MICR-POU";"0";"N";0.28;6;20;3;0;1;1 +"P0455";1;"MICR-POU";"0";"N";0.28;6;21;2;0;1;1 +"P0455";1;"SARD-PIL";"0";"N";4.96;78;165;1;0.04;0;5 +"P0455";1;"SARD-PIL";"0";"N";4.96;78;170;1;0.03;0;5 +"P0455";1;"SARD-PIL";"0";"N";4.96;78;190;1;0.05;0;5 +"P0455";1;"SARD-PIL";"0";"N";4.96;78;195;6;0.32;0;5 +"P0455";1;"SARD-PIL";"0";"N";4.96;78;200;18;1.07;0;5 +"P0455";1;"SARD-PIL";"0";"N";4.96;78;205;14;0.86;0;5 +"P0455";1;"SARD-PIL";"0";"N";4.96;78;210;20;1.3;0;5 +"P0455";1;"SARD-PIL";"0";"N";4.96;78;215;9;0.66;0;5 +"P0474";1;"AMMO-TOB";"0";"N";0.1;2;25;1;0;1;1 +"P0474";1;"AMMO-TOB";"0";"N";0.1;2;26;1;0;1;1 +"P0474";1;"DIVE-RS1";"0";"N";0.16;14;0;14;;1;1 +"P0474";1;"ENGR-ENC";"0";"N";2.23;157;115;11;0.11;0;5 +"P0474";1;"ENGR-ENC";"0";"N";2.23;157;120;27;0.32;0;5 +"P0474";1;"ENGR-ENC";"0";"N";2.23;157;125;53;0.69;0;5 +"P0474";1;"ENGR-ENC";"0";"N";2.23;157;130;38;0.56;0;5 +"P0474";1;"ENGR-ENC";"0";"N";2.23;157;135;21;0.4;0;5 +"P0474";1;"ENGR-ENC";"0";"N";2.23;157;140;5;0.1;0;5 +"P0474";1;"ENGR-ENC";"0";"N";2.23;157;145;2;0.04;0;5 +"P0473";1;"AMMO-TOB";"0";"N";1.35;41;27;1;0;1;1 +"P0473";1;"AMMO-TOB";"0";"N";1.35;41;28;1;0;1;1 +"P0473";1;"AMMO-TOB";"0";"N";1.35;41;19;1;0;1;1 +"P0473";1;"AMMO-TOB";"0";"N";1.35;41;20;2;0;1;1 +"P0473";1;"AMMO-TOB";"0";"N";1.35;41;21;9;0;1;1 +"P0473";1;"AMMO-TOB";"0";"N";1.35;41;22;3;0;1;1 +"P0473";1;"AMMO-TOB";"0";"N";1.35;41;23;7;0;1;1 +"P0473";1;"AMMO-TOB";"0";"N";1.35;41;24;12;0;1;1 +"P0473";1;"AMMO-TOB";"0";"N";1.35;41;25;5;0;1;1 +"P0473";1;"ENGR-ENC";"0";"N";0.57;46;115;4;0;0;5 +"P0473";1;"ENGR-ENC";"0";"N";0.57;46;120;9;0;0;5 +"P0473";1;"ENGR-ENC";"0";"N";0.57;46;125;19;0;0;5 +"P0473";1;"ENGR-ENC";"0";"N";0.57;46;130;10;0;0;5 +"P0473";1;"ENGR-ENC";"0";"N";0.57;46;135;3;0;0;5 +"P0473";1;"ENGR-ENC";"0";"N";0.57;46;140;1;0;0;5 +"P0473";1;"MOLA-MOL";"0";"N";25.02;3;42;1;4.62;1;1 +"P0473";1;"MOLA-MOL";"0";"N";25.02;3;43;1;4.4;1;1 +"P0473";1;"MOLA-MOL";"0";"N";25.02;3;66;1;16;1;1 +"P0473";1;"SARD-PIL";"0";"N";8.12;138;175;2;0.09;0;5 +"P0473";1;"SARD-PIL";"0";"N";8.12;138;180;9;0.42;0;5 +"P0473";1;"SARD-PIL";"0";"N";8.12;138;185;15;0.74;0;5 +"P0473";1;"SARD-PIL";"0";"N";8.12;138;190;28;1.48;0;5 +"P0473";1;"SARD-PIL";"0";"N";8.12;138;195;27;1.55;0;5 +"P0473";1;"SARD-PIL";"0";"N";8.12;138;200;18;1.09;0;5 +"P0473";1;"SARD-PIL";"0";"N";8.12;138;205;18;1.2;0;5 +"P0473";1;"SARD-PIL";"0";"N";8.12;138;210;15;1.01;0;5 +"P0473";1;"SARD-PIL";"0";"N";8.12;138;215;2;0.16;0;5 +"P0473";1;"SARD-PIL";"0";"N";8.12;138;220;2;0.16;0;5 +"P0473";1;"SARD-PIL";"0";"N";8.12;138;225;0;0;0;5 +"P0473";1;"SARD-PIL";"0";"N";8.12;138;230;1;0.09;0;5 +"P0473";1;"SARD-PIL";"0";"N";8.12;138;235;0;0;0;5 +"P0473";1;"SARD-PIL";"0";"N";8.12;138;240;1;0.1;0;5 +"P0473";1;"SCOM-JAP";"0";"N";0.08;1;21;1;0;1;1 +"P0461";1;"ENGR-ENC";"0";"N";1.78;91;125;1;0.01;0;5 +"P0461";1;"ENGR-ENC";"0";"N";1.78;91;130;8;0.11;0;5 +"P0461";1;"ENGR-ENC";"0";"N";1.78;91;135;18;0.29;0;5 +"P0461";1;"ENGR-ENC";"0";"N";1.78;91;140;20;0.36;0;5 +"P0461";1;"ENGR-ENC";"0";"N";1.78;91;145;25;0.52;0;5 +"P0455";1;"SARD-PIL";"0";"N";4.96;78;220;5;0.37;0;5 +"P0455";1;"SARD-PIL";"0";"N";4.96;78;225;3;0.24;0;5 +"P0455";1;"SCOM-JAP";"0";"N";1.21;5;21;3;0;1;1 +"P0455";1;"SCOM-JAP";"0";"N";1.21;5;35;1;0;1;1 +"P0455";1;"SCOM-JAP";"0";"N";1.21;5;40;1;0;1;1 +"P0455";1;"SCOM-SCO";"0";"N";1.86;6;30;1;0;1;1 +"P0455";1;"SCOM-SCO";"0";"N";1.86;6;34;1;0;1;1 +"P0455";1;"SCOM-SCO";"0";"N";1.86;6;35;1;0;1;1 +"P0455";1;"SCOM-SCO";"0";"N";1.86;6;36;2;0;1;1 +"P0455";1;"SCOM-SCO";"0";"N";1.86;6;37;1;0;1;1 +"P0455";1;"TRAC-TRU";"0";"N";4.1;86;15;2;0;1;1 +"P0455";1;"TRAC-TRU";"0";"N";4.1;86;16;4;0;1;1 +"P0455";1;"TRAC-TRU";"0";"N";4.1;86;17;41;0;1;1 +"P0455";1;"TRAC-TRU";"0";"N";4.1;86;18;32;0;1;1 +"P0460";1;"ENGR-ENC";"0";"N";2.15;150;120;6;0.07;0;5 +"P0460";1;"ENGR-ENC";"0";"N";2.15;150;125;39;0.49;0;5 +"P0460";1;"ENGR-ENC";"0";"N";2.15;150;130;57;0.78;0;5 +"P0460";1;"ENGR-ENC";"0";"N";2.15;150;135;33;0.5;0;5 +"P0460";1;"ENGR-ENC";"0";"N";2.15;150;140;11;0.2;0;5 +"P0460";1;"ENGR-ENC";"0";"N";2.15;150;145;1;0.02;0;5 +"P0460";1;"ENGR-ENC";"0";"N";2.15;150;150;3;0.07;0;5 +"P0460";1;"ILLE-COI";"0";"N";0.25;3;8;1;0;1;1 +"P0460";1;"ILLE-COI";"0";"N";0.25;3;10;1;0;1;1 +"P0460";1;"ILLE-COI";"0";"N";0.25;3;11;1;0;1;1 +"P0460";1;"MERL-MCC";"0";"N";1.02;10;19;1;0;1;1 +"P0460";1;"MERL-MCC";"0";"N";1.02;10;20;1;0;1;1 +"P0460";1;"MERL-MCC";"0";"N";1.02;10;21;1;0;1;1 +"P0460";1;"MERL-MCC";"0";"N";1.02;10;22;1;0;1;1 +"P0460";1;"MERL-MCC";"0";"N";1.02;10;23;1;0;1;1 +"P0460";1;"MERL-MCC";"0";"N";1.02;10;24;1;0;1;1 +"P0460";1;"MERL-MCC";"0";"N";1.02;10;25;1;0;1;1 +"P0460";1;"MERL-MCC";"0";"N";1.02;10;27;1;0;1;1 +"P0460";1;"MERL-MCC";"0";"N";1.02;10;28;1;0;1;1 +"P0460";1;"MERL-MCC";"0";"N";1.02;10;32;1;0;1;1 +"P0460";1;"MICR-POU";"0";"N";0.37;6;19;1;0;1;1 +"P0460";1;"MICR-POU";"0";"N";0.37;6;20;1;0;1;1 +"P0460";1;"MICR-POU";"0";"N";0.37;6;21;3;0;1;1 +"P0460";1;"MICR-POU";"0";"N";0.37;6;25;1;0;1;1 +"P0460";1;"SARD-PIL";"0";"N";0.13;3;165;1;0;0;5 +"P0417";1;"SCOM-JAP";"0";"N";15.07;144;31;2;0.5;1;1 +"P0417";1;"SCOM-JAP";"0";"N";15.07;144;32;6;1.66;1;1 +"P0417";1;"SCOM-JAP";"0";"N";15.07;144;33;2;0.61;1;1 +"P0417";1;"SCOM-JAP";"0";"N";15.07;144;34;1;0.33;1;1 +"P0417";1;"TRAC-TRU";"0";"N";3.13;89;10;1;"7.75244850909183e-03";1;1 +"P0417";1;"TRAC-TRU";"0";"N";3.13;89;11;2;0.02;1;1 +"P0417";1;"TRAC-TRU";"0";"N";3.13;89;12;2;0.02;1;1 +"P0417";1;"TRAC-TRU";"0";"N";3.13;89;13;6;0.1;1;1 +"P0417";1;"TRAC-TRU";"0";"N";3.13;89;14;5;0.1;1;1 +"P0409";1;"ENGR-ENC";"0";"N";3.92;151;185;1;0.04;0;5 +"P0409";1;"ENGR-ENC";"0";"N";3.92;151;135;3;0.06;0;5 +"P0409";1;"ENGR-ENC";"0";"N";3.92;151;140;7;0.13;0;5 +"P0409";1;"ENGR-ENC";"0";"N";3.92;151;145;17;0.36;0;5 +"P0409";1;"ENGR-ENC";"0";"N";3.92;151;150;41;0.96;0;5 +"P0409";1;"ENGR-ENC";"0";"N";3.92;151;155;34;0.86;0;5 +"P0409";1;"ENGR-ENC";"0";"N";3.92;151;160;28;0.85;0;5 +"P0409";1;"ENGR-ENC";"0";"N";3.92;151;165;10;0.31;0;5 +"P0409";1;"ENGR-ENC";"0";"N";3.92;151;170;9;0.3;0;5 +"P0409";1;"ENGR-ENC";"0";"N";3.92;151;175;1;0.03;0;5 +"P0409";1;"ENGR-ENC";"0";"N";3.92;151;180;0;0;0;5 +"P0409";1;"MERL-MCC";"0";"N";0.48;2;31;1;0.31;1;1 +"P0409";1;"MERL-MCC";"0";"N";0.48;2;36;1;0.31;1;1 +"P0409";1;"SARD-PIL";"0";"N";7.16;103;185;2;0.1;0;5 +"P0409";1;"SARD-PIL";"0";"N";7.16;103;190;4;0.21;0;5 +"P0409";1;"SARD-PIL";"0";"N";7.16;103;195;8;0.46;0;5 +"P0409";1;"SARD-PIL";"0";"N";7.16;103;200;22;1.46;0;5 +"P0409";1;"SARD-PIL";"0";"N";7.16;103;205;8;0.52;0;5 +"P0409";1;"SARD-PIL";"0";"N";7.16;103;210;25;1.71;0;5 +"P0409";1;"SARD-PIL";"0";"N";7.16;103;215;12;0.9;0;5 +"P0409";1;"SARD-PIL";"0";"N";7.16;103;220;17;1.35;0;5 +"P0409";1;"SARD-PIL";"0";"N";7.16;103;225;0;0;0;5 +"P0409";1;"SARD-PIL";"0";"N";7.16;103;230;4;0.34;0;5 +"P0409";1;"SARD-PIL";"0";"N";7.16;103;235;1;0.1;0;5 +"P0409";1;"SCOM-JAP";"0";"N";2.99;40;16;1;0.02;1;1 +"P0409";1;"SCOM-JAP";"0";"N";2.99;40;17;1;0.03;1;1 +"P0409";1;"SCOM-JAP";"0";"N";2.99;40;18;7;0.3;1;1 +"P0409";1;"SCOM-JAP";"0";"N";2.99;40;19;3;0.15;1;1 +"P0409";1;"SCOM-JAP";"0";"N";2.99;40;20;5;0.3;1;1 +"P0409";1;"SCOM-JAP";"0";"N";2.99;40;21;9;0.63;1;1 +"P0409";1;"SCOM-JAP";"0";"N";2.99;40;22;6;0.49;1;1 +"P0409";1;"SCOM-JAP";"0";"N";2.99;40;23;4;0.38;1;1 +"P0409";1;"SCOM-JAP";"0";"N";2.99;40;24;1;0.1;1;1 +"P0409";1;"SCOM-JAP";"0";"N";2.99;40;25;1;0.12;1;1 +"P0505";1;"BELO-BEO";"0";"N";9.88;17;54;1;0;1;1 +"P0505";1;"BELO-BEO";"0";"N";9.88;17;61;1;0;1;1 +"P0505";1;"BELO-BEO";"0";"N";9.88;17;63;1;0;1;1 +"P0505";1;"BELO-BEO";"0";"N";9.88;17;64;1;0;1;1 +"P0505";1;"BELO-BEO";"0";"N";9.88;17;67;1;0;1;1 +"P0505";1;"BELO-BEO";"0";"N";9.88;17;68;1;0;1;1 +"P0505";1;"BELO-BEO";"0";"N";9.88;17;71;1;0;1;1 +"P0505";1;"BELO-BEO";"0";"N";9.88;17;74;1;0;1;1 +"P0505";1;"BELO-BEO";"0";"N";9.88;17;75;2;0;1;1 +"P0505";1;"BELO-BEO";"0";"N";9.88;17;76;1;0;1;1 +"P0505";1;"BELO-BEO";"0";"N";9.88;17;77;2;0;1;1 +"P0501";1;"BELO-BEO";"0";"N";3.02;5;72;1;0;1;1 +"P0501";1;"BELO-BEO";"0";"N";3.02;5;73;2;0;1;1 +"P0501";1;"BELO-BEO";"0";"N";3.02;5;76;1;0;1;1 +"P0501";1;"BELO-BEO";"0";"N";3.02;5;84;1;0;1;1 +"P0501";1;"DIVE-RS2";"0";"N";0.39;57;0;57;;1;1 +"P0501";1;"ENGR-ENC";"0";"N";3.21;112;155;29;0.77;0;5 +"P0501";1;"ENGR-ENC";"0";"N";3.21;112;160;24;0.7;0;5 +"P0501";1;"ENGR-ENC";"0";"N";3.21;112;165;9;0.29;0;5 +"P0501";1;"ENGR-ENC";"0";"N";3.21;112;170;4;0.14;0;5 +"P0501";1;"ENGR-ENC";"0";"N";3.21;112;175;2;0.07;0;5 +"P0501";1;"ENGR-ENC";"0";"N";3.21;112;180;5;0.21;0;5 +"P0501";1;"ENGR-ENC";"0";"N";3.21;112;185;2;0.09;0;5 +"P0501";1;"ENGR-ENC";"0";"N";3.21;112;190;1;0.04;0;5 +"P0501";1;"ENGR-ENC";"0";"N";3.21;112;200;0;;0;5 +"P0501";1;"ENGR-ENC";"0";"N";3.21;112;145;5;0.12;0;5 +"P0501";1;"ENGR-ENC";"0";"N";3.21;112;150;31;0.75;0;5 +"P0501";1;"SCOM-JAP";"0";"N";0.09;1;23;1;0;1;1 +"P0501";1;"SCOM-SCO";"0";"N";11.01;44;27;1;0;1;1 +"P0501";1;"SCOM-SCO";"0";"N";11.01;44;28;1;0;1;1 +"P0501";1;"SCOM-SCO";"0";"N";11.01;44;29;5;0;1;1 +"P0501";1;"SCOM-SCO";"0";"N";11.01;44;30;21;0;1;1 +"P0501";1;"SCOM-SCO";"0";"N";11.01;44;31;9;0;1;1 +"P0501";1;"SCOM-SCO";"0";"N";11.01;44;32;3;0;1;1 +"P0501";1;"SCOM-SCO";"0";"N";11.01;44;36;1;0;1;1 +"P0501";1;"SCOM-SCO";"0";"N";11.01;44;37;2;0;1;1 +"P0501";1;"SCOM-SCO";"0";"N";11.01;44;43;1;0;1;1 +"P0501";1;"TRAC-TRU";"0";"N";12.3;35;21;1;0.07;1;1 +"P0501";1;"TRAC-TRU";"0";"N";12.3;35;22;1;0.08;1;1 +"P0501";1;"TRAC-TRU";"0";"N";12.3;35;29;2;0.44;1;1 +"P0501";1;"TRAC-TRU";"0";"N";12.3;35;30;0;0;1;1 +"P0501";1;"TRAC-TRU";"0";"N";12.3;35;31;4;1.06;1;1 +"P0501";1;"TRAC-TRU";"0";"N";12.3;35;32;3;0.89;1;1 +"P0501";1;"TRAC-TRU";"0";"N";12.3;35;33;3;0.98;1;1 +"P0480";1;"AMMO-TOB";"0";"N";"2.0e-03";20;3;10;"2.0e-03";1;1 +"P0480";1;"AMMO-TOB";"0";"N";0.08;20;3;10;"2.0e-03";1;1 +"P0480";1;"CEPO-RUB";"0";"N";0.08;1;49;1;0.08;1;1 +"P0480";1;"ENGR-ENC";"0";"N";0.79;107;100;20;0.12;0;5 +"P0480";1;"ENGR-ENC";"0";"N";0.79;107;105;41;0.27;0;5 +"P0480";1;"ENGR-ENC";"0";"N";0.79;107;110;24;0.19;0;5 +"P0480";1;"ENGR-ENC";"0";"N";0.79;107;115;14;0.13;0;5 +"P0480";1;"ENGR-ENC";"0";"N";0.79;107;120;5;0.05;0;5 +"P0480";1;"ENGR-ENC";"0";"N";0.79;107;130;1;0.01;0;5 +"P0480";1;"ENGR-ENC";"0";"N";0.79;107;95;2;0.01;0;5 +"P0480";1;"MERL-MCC";"0";"N";2.05;20;19;1;0;1;1 +"P0480";1;"MERL-MCC";"0";"N";2.05;20;20;1;0;1;1 +"P0480";1;"MERL-MCC";"0";"N";2.05;20;21;2;0;1;1 +"P0480";1;"MERL-MCC";"0";"N";2.05;20;23;5;0;1;1 +"P0480";1;"MERL-MCC";"0";"N";2.05;20;24;4;0;1;1 +"P0480";1;"MERL-MCC";"0";"N";2.05;20;25;4;0;1;1 +"P0480";1;"MERL-MCC";"0";"N";2.05;20;26;1;0;1;1 +"P0480";1;"MERL-MCC";"0";"N";2.05;20;28;1;0;1;1 +"P0480";1;"MERL-MCC";"0";"N";2.05;20;30;1;0;1;1 +"P0480";1;"MERL-MNG";"0";"N";0.21;2;23;1;0;1;1 +"P0480";1;"MERL-MNG";"0";"N";0.21;2;24;1;0;1;1 +"P0480";1;"MICR-POU";"0";"N";0.33;5;20;1;0;1;1 +"P0480";1;"MICR-POU";"0";"N";0.33;5;21;4;0;1;1 +"P0480";1;"SCOM-SCO";"0";"N";0.23;3;22;2;0;1;1 +"P0480";1;"SCOM-SCO";"0";"N";0.23;3;27;1;0;1;1 +"P0480";1;"SPRA-SPR";"0";"N";0.03;52;45;1;0;0;5 +"P0480";1;"SPRA-SPR";"0";"N";0.03;52;45;1;0;0;5 +"P0480";1;"SPRA-SPR";"0";"N";0.03;52;50;5;0;0;5 +"P0480";1;"SPRA-SPR";"0";"N";0.03;52;50;5;0;0;5 +"P0480";1;"SPRA-SPR";"0";"N";0.03;52;55;12;0;0;5 +"P0480";1;"SPRA-SPR";"0";"N";0.03;52;55;12;0;0;5 +"P0480";1;"SPRA-SPR";"0";"N";0.03;52;60;8;0;0;5 +"P0480";1;"SPRA-SPR";"0";"N";0.03;52;60;8;0;0;5 +"P0396";1;"ENGR-ENC";"0";"N";2.4;104;130;2;0.03;0;5 +"P0396";1;"ENGR-ENC";"0";"N";2.4;104;135;5;0.08;0;5 +"P0396";1;"ENGR-ENC";"0";"N";2.4;104;140;21;0.44;0;5 +"P0396";1;"ENGR-ENC";"0";"N";2.4;104;145;13;0.26;0;5 +"P0396";1;"ENGR-ENC";"0";"N";2.4;104;150;31;0.71;0;5 +"P0396";1;"ENGR-ENC";"0";"N";2.4;104;155;19;0.48;0;5 +"P0396";1;"ENGR-ENC";"0";"N";2.4;104;160;9;0.25;0;5 +"P0396";1;"ENGR-ENC";"0";"N";2.4;104;165;3;0.09;0;5 +"P0396";1;"ENGR-ENC";"0";"N";2.4;104;170;1;0.03;0;5 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;14;3;0.05;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;15;4;0.08;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;16;8;0.2;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;17;9;0.27;1;1 +"P0509";1;"SARD-PIL";"0";"N";5.39;112;190;9;0.48;0;5 +"P0509";1;"SARD-PIL";"0";"N";5.39;112;195;4;0.28;0;5 +"P0509";1;"SARD-PIL";"0";"N";5.39;112;200;3;0.18;0;5 +"P0509";1;"SARD-PIL";"0";"N";5.39;112;205;3;0.2;0;5 +"P0509";1;"SARD-PIL";"0";"N";5.39;112;210;2;0.13;0;5 +"P0509";1;"SARD-PIL";"0";"N";5.39;112;215;3;0.23;0;5 +"P0509";1;"SARD-PIL";"0";"N";5.39;112;220;5;0.4;0;5 +"P0509";1;"SARD-PIL";"0";"N";5.39;112;235;1;0.09;0;5 +"P0509";1;"SCOM-JAP";"0";"N";0.27;2;22;1;0;1;1 +"P0509";1;"SCOM-JAP";"0";"N";0.27;2;27;1;0;1;1 +"P0509";1;"SCOM-SCO";"0";"N";7.4;62;7;1;0;1;1 +"P0509";1;"SCOM-SCO";"0";"N";7.4;62;21;2;0;1;1 +"P0509";1;"SCOM-SCO";"0";"N";7.4;62;22;14;0;1;1 +"P0509";1;"SCOM-SCO";"0";"N";7.4;62;23;19;0;1;1 +"P0509";1;"SCOM-SCO";"0";"N";7.4;62;24;7;0;1;1 +"P0509";1;"SCOM-SCO";"0";"N";7.4;62;25;1;0;1;1 +"P0509";1;"SCOM-SCO";"0";"N";7.4;62;26;1;0;1;1 +"P0509";1;"SCOM-SCO";"0";"N";7.4;62;27;7;0;1;1 +"P0509";1;"SCOM-SCO";"0";"N";7.4;62;28;2;0;1;1 +"P0509";1;"SCOM-SCO";"0";"N";7.4;62;29;5;0;1;1 +"P0509";1;"SCOM-SCO";"0";"N";7.4;62;30;1;0;1;1 +"P0509";1;"SCOM-SCO";"0";"N";7.4;62;31;2;0;1;1 +"P0510";1;"ARGE-SIL";"0";"N";0.14;1;26;1;0;1;1 +"P0510";1;"BELO-BEO";"0";"N";1.12;2;70;1;0;1;1 +"P0510";1;"BELO-BEO";"0";"N";1.12;2;82;1;0;1;1 +"P0510";1;"CAPR-APE";"0";"N";1.75;59;8;2;0;1;1 +"P0510";1;"CAPR-APE";"0";"N";1.75;59;9;17;0;1;1 +"P0510";1;"CAPR-APE";"0";"N";1.75;59;10;12;0;1;1 +"P0510";1;"CAPR-APE";"0";"N";1.75;59;11;13;0;1;1 +"P0510";1;"CAPR-APE";"0";"N";1.75;59;12;9;0;1;1 +"P0510";1;"CAPR-APE";"0";"N";1.75;59;13;2;0;1;1 +"P0510";1;"CAPR-APE";"0";"N";1.75;59;14;3;0;1;1 +"P0510";1;"CAPR-APE";"0";"N";1.75;59;16;1;0;1;1 +"P0510";1;"DIVE-RS2";"0";"N";0.32;43;0;43;;1;1 +"P0510";1;"MERL-MCC";"0";"N";5.38;4;48;1;0;1;1 +"P0510";1;"MERL-MCC";"0";"N";5.38;4;49;1;0;1;1 +"P0510";1;"MERL-MCC";"0";"N";5.38;4;57;1;0;1;1 +"P0510";1;"MERL-MCC";"0";"N";5.38;4;70;1;0;1;1 +"P0510";1;"MICR-POU";"0";"N";0.62;11;19;2;0;1;1 +"P0510";1;"MICR-POU";"0";"N";0.62;11;20;6;0;1;1 +"P0510";1;"MICR-POU";"0";"N";0.62;11;21;1;0;1;1 +"P0510";1;"MICR-POU";"0";"N";0.62;11;22;1;0;1;1 +"P0510";1;"MICR-POU";"0";"N";0.62;11;23;1;0;1;1 +"P0510";1;"MYCT-OPX";"0";"N";0.01;9;5;8;;1;1 +"P0510";1;"MYCT-OPX";"0";"N";0.01;9;6;1;;1;1 +"P0474";1;"TRAC-TRU";"0";"N";3.86;118;11;1;0;1;1 +"P0474";1;"TRAC-TRU";"0";"N";3.86;118;12;2;0;1;1 +"P0474";1;"TRAC-TRU";"0";"N";3.86;118;13;4;0;1;1 +"P0474";1;"TRAC-TRU";"0";"N";3.86;118;14;9;0;1;1 +"P0474";1;"TRAC-TRU";"0";"N";3.86;118;15;18;0;1;1 +"P0474";1;"TRAC-TRU";"0";"N";3.86;118;16;38;0;1;1 +"P0474";1;"TRAC-TRU";"0";"N";3.86;118;17;28;0;1;1 +"P0474";1;"TRAC-TRU";"0";"N";3.86;118;18;9;0;1;1 +"P0474";1;"TRAC-TRU";"0";"N";3.86;118;8;1;0;1;1 +"P0474";1;"TRAC-TRU";"0";"N";3.86;118;9;1;0;1;1 +"P0474";1;"ZEUS-FAB";"0";"N";0.85;1;38;1;0.85;1;1 +"P0473";1;"TRAC-TRU";"0";"N";1.78;134;9;1;"5.0e-03";1;1 +"P0473";1;"TRAC-TRU";"0";"N";1.78;134;10;41;0.41;1;1 +"P0473";1;"TRAC-TRU";"0";"N";1.78;134;11;49;0.56;1;1 +"P0473";1;"TRAC-TRU";"0";"N";1.78;134;12;20;0.28;1;1 +"P0473";1;"TRAC-TRU";"0";"N";1.78;134;13;10;0.18;1;1 +"P0473";1;"TRAC-TRU";"0";"N";1.78;134;14;7;0.16;1;1 +"P0473";1;"TRAC-TRU";"0";"N";1.78;134;15;4;0.11;1;1 +"P0473";1;"TRAC-TRU";"0";"N";1.78;134;16;2;0.07;1;1 +"P0463";1;"DIVE-RS2";"0";"N";0.16;30;0;30;;1;1 +"P0463";1;"ENGR-ENC";"0";"N";1.98;94;135;12;0.19;0;5 +"P0463";1;"ENGR-ENC";"0";"N";1.98;94;140;16;0.29;0;5 +"P0463";1;"ENGR-ENC";"0";"N";1.98;94;145;26;0.52;0;5 +"P0463";1;"ENGR-ENC";"0";"N";1.98;94;150;22;0.49;0;5 +"P0463";1;"ENGR-ENC";"0";"N";1.98;94;155;8;0.18;0;5 +"P0463";1;"ENGR-ENC";"0";"N";1.98;94;160;6;0.15;0;5 +"P0463";1;"ENGR-ENC";"0";"N";1.98;94;165;0;0;0;5 +"P0463";1;"ENGR-ENC";"0";"N";1.98;94;170;1;0.03;0;5 +"P0463";1;"ENGR-ENC";"0";"N";1.98;94;175;2;0.07;0;5 +"P0463";1;"ENGR-ENC";"0";"N";1.98;94;200;1;0.05;0;5 +"P0463";1;"MERL-MCC";"0";"N";3.94;8;19;1;0;1;1 +"P0463";1;"MERL-MCC";"0";"N";3.94;8;31;1;0;1;1 +"P0463";1;"MERL-MCC";"0";"N";3.94;8;36;1;0;1;1 +"P0463";1;"MERL-MCC";"0";"N";3.94;8;37;1;0;1;1 +"P0463";1;"MERL-MCC";"0";"N";3.94;8;39;1;0;1;1 +"P0463";1;"MERL-MCC";"0";"N";3.94;8;44;1;0;1;1 +"P0463";1;"MERL-MCC";"0";"N";3.94;8;50;1;0;1;1 +"P0463";1;"MERL-MCC";"0";"N";3.94;8;54;1;0;1;1 +"P0463";1;"SARD-PIL";"0";"N";0.12;3;165;2;0;0;5 +"P0463";1;"SARD-PIL";"0";"N";0.12;3;195;1;0;0;5 +"P0463";1;"TRAC-TRU";"0";"N";2.54;50;17;11;0;1;1 +"P0463";1;"TRAC-TRU";"0";"N";2.54;50;18;28;0;1;1 +"P0463";1;"TRAC-TRU";"0";"N";2.54;50;19;10;0;1;1 +"P0463";1;"TRAC-TRU";"0";"N";2.54;50;20;1;0;1;1 +"P0505";1;"BELO-BEO";"0";"N";9.88;17;78;1;0;1;1 +"P0505";1;"BELO-BEO";"0";"N";9.88;17;79;1;0;1;1 +"P0505";1;"BELO-BEO";"0";"N";9.88;17;81;1;0;1;1 +"P0505";1;"BELO-BEO";"0";"N";9.88;17;83;1;0;1;1 +"P0505";1;"DIVE-RS2";"0";"N";0.18;34;0;34;;1;1 +"P0505";1;"ENGR-ENC";"0";"N";2.45;68;145;1;0.02;0;5 +"P0505";1;"ENGR-ENC";"0";"N";2.45;68;150;4;0.1;0;5 +"P0505";1;"ENGR-ENC";"0";"N";2.45;68;155;8;0.21;0;5 +"P0505";1;"ENGR-ENC";"0";"N";2.45;68;160;8;0.23;0;5 +"P0505";1;"ENGR-ENC";"0";"N";2.45;68;165;5;0.16;0;5 +"P0505";1;"ENGR-ENC";"0";"N";2.45;68;170;7;0.25;0;5 +"P0505";1;"ENGR-ENC";"0";"N";2.45;68;175;10;0.38;0;5 +"P0505";1;"ENGR-ENC";"0";"N";2.45;68;180;9;0.36;0;5 +"P0505";1;"ENGR-ENC";"0";"N";2.45;68;185;13;0.58;0;5 +"P0505";1;"ENGR-ENC";"0";"N";2.45;68;190;3;0.14;0;5 +"P0505";1;"PRIO-GLA";"0";"N";15.72;1;158;1;15.72;1;1 +"P0505";1;"SARD-PIL";"0";"N";4.42;60;175;1;0.04;0;5 +"P0505";1;"SARD-PIL";"0";"N";4.42;60;180;0;0;0;5 +"P0505";1;"SARD-PIL";"0";"N";4.42;60;185;0;0;0;5 +"P0505";1;"SARD-PIL";"0";"N";4.42;60;190;6;0.32;0;5 +"P0505";1;"SARD-PIL";"0";"N";4.42;60;195;8;0.47;0;5 +"P0505";1;"SARD-PIL";"0";"N";4.42;60;200;5;0.32;0;5 +"P0505";1;"SARD-PIL";"0";"N";4.42;60;205;4;0.27;0;5 +"P0505";1;"SARD-PIL";"0";"N";4.42;60;210;5;0.36;0;5 +"P0505";1;"SARD-PIL";"0";"N";4.42;60;215;8;0.61;0;5 +"P0505";1;"SARD-PIL";"0";"N";4.42;60;220;7;0.56;0;5 +"P0505";1;"SARD-PIL";"0";"N";4.42;60;225;8;0.68;0;5 +"P0505";1;"SARD-PIL";"0";"N";4.42;60;230;2;0.18;0;5 +"P0505";1;"SARD-PIL";"0";"N";4.42;60;235;4;0.38;0;5 +"P0505";1;"SARD-PIL";"0";"N";4.42;60;240;0;0;0;5 +"P0505";1;"SARD-PIL";"0";"N";4.42;60;245;1;0.1;0;5 +"P0505";1;"SARD-PIL";"0";"N";4.42;60;250;1;0.1;0;5 +"P0505";1;"SCOM-SCO";"0";"N";7.82;44;22;1;0;1;1 +"P0505";1;"SCOM-SCO";"0";"N";7.82;44;23;0;0;1;1 +"P0505";1;"SCOM-SCO";"0";"N";7.82;44;24;1;0;1;1 +"P0505";1;"SCOM-SCO";"0";"N";7.82;44;25;1;0;1;1 +"P0505";1;"SCOM-SCO";"0";"N";7.82;44;26;1;0;1;1 +"P0505";1;"SCOM-SCO";"0";"N";7.82;44;27;10;0;1;1 +"P0505";1;"SCOM-SCO";"0";"N";7.82;44;28;8;0;1;1 +"P0505";1;"SCOM-SCO";"0";"N";7.82;44;29;10;0;1;1 +"P0505";1;"SCOM-SCO";"0";"N";7.82;44;30;9;0;1;1 +"P0505";1;"SCOM-SCO";"0";"N";7.82;44;31;2;0;1;1 +"P0505";1;"SCOM-SCO";"0";"N";7.82;44;32;1;0;1;1 +"P0505";1;"SCOM-SCO";"0";"N";7.82;44;34;0;;1;1 +"P0506";1;"DIVE-RS3";"0";"N";0.27;0;0;0;;1;1 +"P0553";1;"ENGR-ENC";"0";"N";2.21;112;115;1;0.01;0;5 +"P0553";1;"ENGR-ENC";"0";"N";2.21;112;120;0;0;0;5 +"P0553";1;"ENGR-ENC";"0";"N";2.21;112;125;2;0.02;0;5 +"P0553";1;"ENGR-ENC";"0";"N";2.21;112;130;23;0.34;0;5 +"P0553";1;"ENGR-ENC";"0";"N";2.21;112;135;15;0.25;0;5 +"P0553";1;"ENGR-ENC";"0";"N";2.21;112;140;17;0.31;0;5 +"P0489";1;"MERL-MCC";"0";"N";10.26;16;56;2;0;1;1 +"P0489";1;"MERL-MCC";"0";"N";10.26;16;61;1;0;1;1 +"P0489";1;"MERL-MCC";"0";"N";10.26;16;64;1;0;1;1 +"P0489";1;"MICR-POU";"0";"N";6.56;119;17;2;0.07;1;1 +"P0489";1;"MICR-POU";"0";"N";6.56;119;18;6;0.24;1;1 +"P0489";1;"MICR-POU";"0";"N";6.56;119;20;33;1.5;1;1 +"P0489";1;"MICR-POU";"0";"N";6.56;119;21;41;2.13;1;1 +"P0489";1;"MICR-POU";"0";"N";6.56;119;22;26;1.55;1;1 +"P0489";1;"MICR-POU";"0";"N";6.56;119;23;4;0.28;1;1 +"P0489";1;"MICR-POU";"0";"N";6.56;119;24;3;0.24;1;1 +"P0489";1;"MICR-POU";"0";"N";6.56;119;25;1;0.07;1;1 +"P0489";1;"MICR-POU";"0";"N";6.56;119;28;1;0.11;1;1 +"P0489";1;"MICR-POU";"0";"N";6.56;119;29;1;0.16;1;1 +"P0489";1;"MICR-POU";"0";"N";6.56;119;31;1;0.19;1;1 +"P0489";1;"MYCT-OPX";"0";"N";"4.0e-03";3;4;1;;1;1 +"P0489";1;"MYCT-OPX";"0";"N";"4.0e-03";3;5;1;;1;1 +"P0489";1;"MYCT-OPX";"0";"N";"4.0e-03";3;6;1;;1;1 +"P0489";1;"SARD-PIL";"0";"N";0.25;3;225;1;0;0;5 +"P0489";1;"SARD-PIL";"0";"N";0.25;3;230;1;0;0;5 +"P0489";1;"SARD-PIL";"0";"N";0.25;3;245;1;0;0;5 +"P0489";1;"SCOM-SCO";"0";"N";9.22;61;19;1;0;1;1 +"P0489";1;"SCOM-SCO";"0";"N";9.22;61;20;1;0;1;1 +"P0489";1;"SCOM-SCO";"0";"N";9.22;61;21;4;0;1;1 +"P0489";1;"SCOM-SCO";"0";"N";9.22;61;22;8;0;1;1 +"P0489";1;"SCOM-SCO";"0";"N";9.22;61;23;3;0;1;1 +"P0489";1;"SCOM-SCO";"0";"N";9.22;61;24;13;0;1;1 +"P0489";1;"SCOM-SCO";"0";"N";9.22;61;25;7;0;1;1 +"P0489";1;"SCOM-SCO";"0";"N";9.22;61;26;4;0;1;1 +"P0489";1;"SCOM-SCO";"0";"N";9.22;61;27;2;0;1;1 +"P0489";1;"SCOM-SCO";"0";"N";9.22;61;28;1;0;1;1 +"P0489";1;"SCOM-SCO";"0";"N";9.22;61;29;1;0;1;1 +"P0489";1;"SCOM-SCO";"0";"N";9.22;61;30;4;0;1;1 +"P0489";1;"SCOM-SCO";"0";"N";9.22;61;31;5;0;1;1 +"P0489";1;"SCOM-SCO";"0";"N";9.22;61;32;1;0;1;1 +"P0489";1;"SCOM-SCO";"0";"N";9.22;61;33;4;0;1;1 +"P0489";1;"SCOM-SCO";"0";"N";9.22;61;34;2;0;1;1 +"P0489";1;"TODA-EBL";"0";"N";0.15;2;9;1;0;1;1 +"P0489";1;"TODA-EBL";"0";"N";0.15;2;11;1;0;1;1 +"P0489";1;"TRAC-MED";"0";"N";1.36;1;57;1;0;1;1 +"P0489";1;"TRAC-TRU";"0";"N";8.06;69;21;2;0.16;1;1 +"P0489";1;"TRAC-TRU";"0";"N";8.06;69;22;6;0.56;1;1 +"P0489";1;"TRAC-TRU";"0";"N";8.06;69;23;28;2.96;1;1 +"P0489";1;"TRAC-TRU";"0";"N";8.06;69;24;16;1.83;1;1 +"P0489";1;"TRAC-TRU";"0";"N";8.06;69;25;14;1.99;1;1 +"P0489";1;"TRAC-TRU";"0";"N";8.06;69;26;1;0.15;1;1 +"P0489";1;"TRAC-TRU";"0";"N";8.06;69;27;1;0.17;1;1 +"P0489";1;"TRAC-TRU";"0";"N";8.06;69;28;1;0.22;1;1 +"P0489";1;"ZEUS-FAB";"0";"N";2.82;1;53;1;0;1;1 +"P0449";1;"ENGR-ENC";"0";"N";1.13;46;165;3;0;0;5 +"P0449";1;"ENGR-ENC";"0";"N";1.13;46;170;2;0;0;5 +"P0449";1;"ENGR-ENC";"0";"N";1.13;46;175;1;0;0;5 +"P0449";1;"ENGR-ENC";"0";"N";1.13;46;180;1;0;0;5 +"P0449";1;"ENGR-ENC";"0";"N";1.13;46;140;2;0;0;5 +"P0449";1;"ENGR-ENC";"0";"N";1.13;46;145;5;0;0;5 +"P0449";1;"ENGR-ENC";"0";"N";1.13;46;150;15;0;0;5 +"P0449";1;"ENGR-ENC";"0";"N";1.13;46;155;10;0;0;5 +"P0449";1;"ENGR-ENC";"0";"N";1.13;46;160;7;0;0;5 +"P0449";1;"MICR-POU";"0";"N";"1.0e-03";1;5;1;0;1;1 +"P0449";1;"SARD-PIL";"0";"N";5.83;94;230;1;0.1;0;5 +"P0449";1;"SARD-PIL";"0";"N";5.83;94;180;1;0.04;0;5 +"P0449";1;"SARD-PIL";"0";"N";5.83;94;185;6;0.3;0;5 +"P0449";1;"SARD-PIL";"0";"N";5.83;94;195;21;1.2;0;5 +"P0449";1;"SARD-PIL";"0";"N";5.83;94;200;17;1;0;5 +"P0449";1;"SARD-PIL";"0";"N";5.83;94;205;8;0.53;0;5 +"P0449";1;"SARD-PIL";"0";"N";5.83;94;210;15;1.07;0;5 +"P0449";1;"SARD-PIL";"0";"N";5.83;94;215;7;0.54;0;5 +"P0449";1;"SARD-PIL";"0";"N";5.83;94;220;3;0.25;0;5 +"P0449";1;"SARD-PIL";"0";"N";5.83;94;225;0;0;0;5 +"P0449";1;"SARD-PIL";"0";"N";5.83;94;190;15;0.78;0;5 +"P0449";1;"SARD-PIL";"0";"N";5.83;94;240;0;;0;5 +"P0449";1;"SCOM-SCO";"0";"N";0.2;2;23;1;0;1;1 +"P0449";1;"SCOM-SCO";"0";"N";0.2;2;24;1;0;1;1 +"P0450";1;"TRAC-TRU";"0";"N";1.04;18;20;2;0;1;1 +"P0455";1;"TRAC-TRU";"0";"N";4.1;86;19;7;0;1;1 +"P0460";1;"SARD-PIL";"0";"N";0.13;3;180;1;0;0;5 +"P0460";1;"SARD-PIL";"0";"N";0.13;3;200;1;0;0;5 +"P0493";1;"DIVE-RS1";"0";"N";0.24;36;0;36;;1;1 +"P0493";1;"ENGR-ENC";"0";"N";0.04;3;130;1;0;0;5 +"P0493";1;"ENGR-ENC";"0";"N";0.04;3;135;2;0;0;5 +"P0493";1;"MERL-MCC";"0";"N";0.1;1;26;1;0;1;1 +"P0493";1;"MICR-POU";"0";"N";0.42;8;18;1;0;1;1 +"P0493";1;"MICR-POU";"0";"N";0.42;8;20;4;0;1;1 +"P0493";1;"MICR-POU";"0";"N";0.42;8;21;2;0;1;1 +"P0493";1;"MICR-POU";"0";"N";0.42;8;23;1;0;1;1 +"P0493";1;"SARD-PIL";"0";"N";0.07;1;205;1;0;0;5 +"P0493";1;"SCOM-SCO";"0";"N";4.62;18;28;2;0;1;1 +"P0493";1;"SCOM-SCO";"0";"N";4.62;18;29;1;0;1;1 +"P0493";1;"SCOM-SCO";"0";"N";4.62;18;30;2;0;1;1 +"P0384";1;"SARD-PIL";"0";"N";4.9;71;195;6;0;0;5 +"P0384";1;"SARD-PIL";"0";"N";4.9;71;200;10;0;0;5 +"P0384";1;"SARD-PIL";"0";"N";4.9;71;205;7;0;0;5 +"P0384";1;"SARD-PIL";"0";"N";4.9;71;210;14;0;0;5 +"P0384";1;"SARD-PIL";"0";"N";4.9;71;215;10;0;0;5 +"P0384";1;"SARD-PIL";"0";"N";4.9;71;220;13;0;0;5 +"P0384";1;"SARD-PIL";"0";"N";4.9;71;225;7;0;0;5 +"P0384";1;"SCOM-JAP";"0";"N";7.48;90;16;2;0.05;1;1 +"P0384";1;"SCOM-JAP";"0";"N";7.48;90;17;3;0.1;1;1 +"P0384";1;"SCOM-JAP";"0";"N";7.48;90;18;1;0.04;1;1 +"P0384";1;"SCOM-JAP";"0";"N";7.48;90;19;14;0.71;1;1 +"P0384";1;"SCOM-JAP";"0";"N";7.48;90;20;16;0.96;1;1 +"P0384";1;"SCOM-JAP";"0";"N";7.48;90;21;22;1.55;1;1 +"P0384";1;"SCOM-JAP";"0";"N";7.48;90;22;12;0.98;1;1 +"P0384";1;"SCOM-JAP";"0";"N";7.48;90;23;13;1.23;1;1 +"P0384";1;"SCOM-JAP";"0";"N";7.48;90;24;5;0.54;1;1 +"P0384";1;"SCOM-JAP";"0";"N";7.48;90;28;1;0.17;1;1 +"P0384";1;"SCOM-JAP";"0";"N";7.48;90;31;1;0.25;1;1 +"P0384";1;"SCOM-SCO";"0";"N";7.92;26;23;1;0.08;1;1 +"P0384";1;"SCOM-SCO";"0";"N";7.92;26;24;1;0.09;1;1 +"P0384";1;"SCOM-SCO";"0";"N";7.92;26;29;1;0.17;1;1 +"P0384";1;"SCOM-SCO";"0";"N";7.92;26;30;1;0.19;1;1 +"P0384";1;"SCOM-SCO";"0";"N";7.92;26;31;1;0.21;1;1 +"P0384";1;"SCOM-SCO";"0";"N";7.92;26;32;4;0.93;1;1 +"P0384";1;"SCOM-SCO";"0";"N";7.92;26;33;3;0.77;1;1 +"P0384";1;"SCOM-SCO";"0";"N";7.92;26;34;2;0.56;1;1 +"P0384";1;"SCOM-SCO";"0";"N";7.92;26;35;0;0;1;1 +"P0384";1;"SCOM-SCO";"0";"N";7.92;26;36;4;1.34;1;1 +"P0384";1;"SCOM-SCO";"0";"N";7.92;26;37;1;0.36;1;1 +"P0384";1;"SCOM-SCO";"0";"N";7.92;26;38;1;0.39;1;1 +"P0384";1;"SCOM-SCO";"0";"N";7.92;26;39;1;0.42;1;1 +"P0384";1;"SCOM-SCO";"0";"N";7.92;26;40;1;0.46;1;1 +"P0384";1;"SCOM-SCO";"0";"N";7.92;26;41;4;2;1;1 +"P0384";1;"TRAC-TRU";"0";"N";3.19;340;11;15;0.2;1;1 +"P0384";1;"TRAC-TRU";"0";"N";0.42;340;11;15;0.2;1;1 +"P0384";1;"TRAC-TRU";"0";"N";3.19;340;12;85;1.32;1;1 +"P0384";1;"TRAC-TRU";"0";"N";0.42;340;12;85;1.32;1;1 +"P0384";1;"TRAC-TRU";"0";"N";3.19;340;13;41;0.77;1;1 +"P0384";1;"TRAC-TRU";"0";"N";0.42;340;13;41;0.77;1;1 +"P0384";1;"TRAC-TRU";"0";"N";3.19;340;14;8;0.19;1;1 +"P0384";1;"TRAC-TRU";"0";"N";0.42;340;14;8;0.19;1;1 +"P0384";1;"TRAC-TRU";"0";"N";3.19;340;15;12;0.35;1;1 +"P0384";1;"TRAC-TRU";"0";"N";0.42;340;15;12;0.35;1;1 +"P0384";1;"TRAC-TRU";"0";"N";3.19;340;16;5;0.18;1;1 +"P0384";1;"TRAC-TRU";"0";"N";0.42;340;16;5;0.18;1;1 +"P0384";1;"TRAC-TRU";"0";"N";3.19;340;17;4;0.17;1;1 +"P0384";1;"TRAC-TRU";"0";"N";0.42;340;17;4;0.17;1;1 +"P0377";1;"SCOM-JAP";"0";"N";31.05;100;31;12;3.05;1;1 +"P0377";1;"SCOM-JAP";"0";"N";31.05;100;32;17;4.61;1;1 +"P0377";1;"SCOM-JAP";"0";"N";31.05;100;33;25;7.15;1;1 +"P0377";1;"SCOM-JAP";"0";"N";31.05;100;34;20;6.57;1;1 +"P0377";1;"SCOM-JAP";"0";"N";31.05;100;35;8;2.92;1;1 +"P0377";1;"SCOM-JAP";"0";"N";31.05;100;36;0;0;1;1 +"P0377";1;"SCOM-JAP";"0";"N";31.05;100;37;4;1.73;1;1 +"P0377";1;"SCOM-JAP";"0";"N";31.05;100;38;1;0.5;1;1 +"P0377";1;"SCOM-JAP";"0";"N";31.05;100;39;3;1.53;1;1 +"P0377";1;"SCOM-JAP";"0";"N";31.05;100;40;1;0.52;1;1 +"P0377";1;"SCOM-JAP";"0";"N";31.05;100;41;0;0;1;1 +"P0377";1;"SCOM-JAP";"0";"N";31.05;100;42;0;0;1;1 +"P0377";1;"SCOM-JAP";"0";"N";31.05;100;43;1;0.69;1;1 +"P0377";1;"SCOM-SCO";"0";"N";36.07;102;30;2;0.41;1;1 +"P0377";1;"SCOM-SCO";"0";"N";36.07;102;31;2;0.44;1;1 +"P0377";1;"SCOM-SCO";"0";"N";36.07;102;32;5;1.18;1;1 +"P0377";1;"SCOM-SCO";"0";"N";36.07;102;33;7;1.83;1;1 +"P0377";1;"SCOM-SCO";"0";"N";36.07;102;34;18;5.22;1;1 +"P0377";1;"SCOM-SCO";"0";"N";36.07;102;35;14;4.26;1;1 +"P0377";1;"SCOM-SCO";"0";"N";36.07;102;36;8;2.86;1;1 +"P0377";1;"SCOM-SCO";"0";"N";36.07;102;37;7;2.46;1;1 +"P0377";1;"SCOM-SCO";"0";"N";36.07;102;38;7;2.83;1;1 +"P0377";1;"SCOM-SCO";"0";"N";36.07;102;39;12;5.08;1;1 +"P0377";1;"SCOM-SCO";"0";"N";36.07;102;40;12;5.49;1;1 +"P0377";1;"SCOM-SCO";"0";"N";36.07;102;41;7;3.48;1;1 +"P0377";1;"SCOM-SCO";"0";"N";36.07;102;42;0;0;1;1 +"P0377";1;"SCOM-SCO";"0";"N";36.07;102;43;1;0.51;1;1 +"P0377";1;"TODA-EBL";"0";"N";0.11;2;0;2;0;1;1 +"P0377";1;"TRAC-TRU";"0";"N";31.99;157;21;2;0.17;1;1 +"P0377";1;"TRAC-TRU";"0";"N";31.99;157;22;1;0.09;1;1 +"P0377";1;"TRAC-TRU";"0";"N";31.99;157;23;1;0.11;1;1 +"P0377";1;"TRAC-TRU";"0";"N";31.99;157;24;3;0.35;1;1 +"P0377";1;"TRAC-TRU";"0";"N";31.99;157;25;0;0;1;1 +"P0377";1;"TRAC-TRU";"0";"N";31.99;157;26;5;0.85;1;1 +"P0377";1;"TRAC-TRU";"0";"N";31.99;157;27;13;2.23;1;1 +"P0377";1;"TRAC-TRU";"0";"N";31.99;157;28;35;6.45;1;1 +"P0377";1;"TRAC-TRU";"0";"N";31.99;157;29;51;10.61;1;1 +"P0377";1;"TRAC-TRU";"0";"N";31.99;157;30;29;6.72;1;1 +"P0377";1;"TRAC-TRU";"0";"N";31.99;157;31;12;3.06;1;1 +"P0377";1;"TRAC-TRU";"0";"N";31.99;157;32;5;1.33;1;1 +"P0377";1;"TRAC-TRU";"0";"N";31.99;157;34;0;;1;1 +"P0404";1;"SCOM-SCO";"0";"N";1.94;6;33;1;0.25;1;1 +"P0404";1;"SCOM-SCO";"0";"N";1.94;6;34;2;0.56;1;1 +"P0404";1;"SCOM-SCO";"0";"N";1.94;6;35;1;0.3;1;1 +"P0404";1;"SCOM-SCO";"0";"N";1.94;6;39;1;0.42;1;1 +"P0404";1;"SCYL-CAN";"0";"F";0.29;1;44;1;0.28;1;1 +"P0404";1;"TRAC-DRA";"0";"N";0.1;1;25;1;0;1;1 +"P0494";1;"BELO-BEO";"0";"N";2.96;5;64;1;0;1;1 +"P0554";1;"ENGR-ENC";"0";"N";2.22;123;120;7;0.08;0;5 +"P0554";1;"ENGR-ENC";"0";"N";2.22;123;125;11;0.15;0;5 +"P0554";1;"ENGR-ENC";"0";"N";2.22;123;130;21;0.3;0;5 +"P0554";1;"ENGR-ENC";"0";"N";2.22;123;135;24;0.4;0;5 +"P0554";1;"ENGR-ENC";"0";"N";2.22;123;140;27;0.5;0;5 +"P0554";1;"ENGR-ENC";"0";"N";2.22;123;145;12;0.25;0;5 +"P0554";1;"ENGR-ENC";"0";"N";2.22;123;150;9;0.21;0;5 +"P0554";1;"ENGR-ENC";"0";"N";2.22;123;155;6;0.15;0;5 +"P0554";1;"ENGR-ENC";"0";"N";2.22;123;160;4;0.1;0;5 +"P0554";1;"ENGR-ENC";"0";"N";2.22;123;165;1;0.03;0;5 +"P0553";1;"ENGR-ENC";"0";"N";2.21;112;185;1;0.04;0;5 +"P0553";1;"ENGR-ENC";"0";"N";2.21;112;145;18;0.37;0;5 +"P0553";1;"ENGR-ENC";"0";"N";2.21;112;150;19;0.43;0;5 +"P0553";1;"ENGR-ENC";"0";"N";2.21;112;155;10;0.24;0;5 +"P0553";1;"ENGR-ENC";"0";"N";2.21;112;160;3;0.08;0;5 +"P0553";1;"ENGR-ENC";"0";"N";2.21;112;165;2;0.06;0;5 +"P0553";1;"ENGR-ENC";"0";"N";2.21;112;170;1;0.03;0;5 +"P0553";1;"ENGR-ENC";"0";"N";2.21;112;175;0;0;0;5 +"P0553";1;"ENGR-ENC";"0";"N";2.21;112;180;0;0;0;5 +"P0553";1;"MERL-MCC";"0";"N";1.75;20;17;2;0;1;1 +"P0553";1;"MERL-MCC";"0";"N";1.75;20;18;1;0;1;1 +"P0553";1;"MERL-MCC";"0";"N";1.75;20;19;3;0;1;1 +"P0553";1;"MERL-MCC";"0";"N";1.75;20;20;1;0;1;1 +"P0553";1;"MERL-MCC";"0";"N";1.75;20;23;3;0;1;1 +"P0553";1;"MERL-MCC";"0";"N";1.75;20;24;0;0;1;1 +"P0553";1;"MERL-MCC";"0";"N";1.75;20;25;2;0;1;1 +"P0553";1;"MERL-MCC";"0";"N";1.75;20;26;5;0;1;1 +"P0553";1;"MERL-MCC";"0";"N";1.75;20;27;1;0;1;1 +"P0553";1;"MERL-MCC";"0";"N";1.75;20;28;1;0;1;1 +"P0553";1;"MERL-MCC";"0";"N";1.75;20;29;1;0;1;1 +"P0553";1;"MICR-POU";"0";"N";0.23;1;32;1;0;1;1 +"P0553";1;"SARD-PIL";"0";"N";0.18;2;220;1;0;0;5 +"P0553";1;"SARD-PIL";"0";"N";0.18;2;230;1;0;0;5 +"P0553";1;"SCOM-JAP";"0";"N";3.72;36;21;2;0;1;1 +"P0553";1;"SCOM-JAP";"0";"N";3.72;36;22;14;0;1;1 +"P0553";1;"SCOM-JAP";"0";"N";3.72;36;23;13;0;1;1 +"P0553";1;"SCOM-JAP";"0";"N";3.72;36;24;7;0;1;1 +"P0553";1;"SCOM-SCO";"0";"N";0.65;8;11;1;0;1;1 +"P0553";1;"SCOM-SCO";"0";"N";0.65;8;12;2;0;1;1 +"P0553";1;"SCOM-SCO";"0";"N";0.65;8;13;1;0;1;1 +"P0553";1;"SCOM-SCO";"0";"N";0.65;8;24;1;0;1;1 +"P0553";1;"SCOM-SCO";"0";"N";0.65;8;27;2;0;1;1 +"P0553";1;"SCOM-SCO";"0";"N";0.65;8;28;1;0;1;1 +"P0553";1;"TRAC-TRU";"0";"N";26.8;121;11;1;0.01;1;1 +"P0495";1;"DIVE-RS2";"0";"N";0.11;20;0;20;;1;1 +"P0495";1;"MOLA-MOL";"0";"N";7.4;1;47;1;0;1;1 +"P0495";1;"TRAC-TRU";"0";"N";5.74;94;17;1;0.04;1;1 +"P0495";1;"TRAC-TRU";"0";"N";5.74;94;18;23;1.26;1;1 +"P0495";1;"TRAC-TRU";"0";"N";5.74;94;19;48;2.86;1;1 +"P0495";1;"TRAC-TRU";"0";"N";5.74;94;20;18;1.24;1;1 +"P0495";1;"TRAC-TRU";"0";"N";5.74;94;21;3;0.23;1;1 +"P0494";1;"BELO-BEO";"0";"N";2.96;5;67;1;0;1;1 +"P0494";1;"BELO-BEO";"0";"N";2.96;5;70;1;0;1;1 +"P0494";1;"BELO-BEO";"0";"N";2.96;5;84;1;0;1;1 +"P0494";1;"BELO-BEO";"0";"N";2.96;5;96;1;0;1;1 +"P0494";1;"DIVE-RS2";"0";"N";0.31;50;0;50;;1;1 +"P0494";1;"ENGR-ENC";"0";"N";2.69;76;150;1;0.03;0;5 +"P0494";1;"ENGR-ENC";"0";"N";2.69;76;155;14;0.38;0;5 +"P0494";1;"ENGR-ENC";"0";"N";2.69;76;160;10;0.29;0;5 +"P0494";1;"ENGR-ENC";"0";"N";2.69;76;165;12;0.4;0;5 +"P0494";1;"ENGR-ENC";"0";"N";2.69;76;170;12;0.42;0;5 +"P0494";1;"ENGR-ENC";"0";"N";2.69;76;175;8;0.31;0;5 +"P0494";1;"ENGR-ENC";"0";"N";2.69;76;180;13;0.55;0;5 +"P0494";1;"ENGR-ENC";"0";"N";2.69;76;185;5;0.24;0;5 +"P0494";1;"ENGR-ENC";"0";"N";2.69;76;190;1;0.05;0;5 +"P0494";1;"ENGR-ENC";"0";"N";2.69;76;200;0;0;0;5 +"P0494";1;"MOLA-MOL";"0";"N";8.1;2;35;1;3.16;1;1 +"P0494";1;"MOLA-MOL";"0";"N";8.1;2;41;1;4.94;1;1 +"P0494";1;"SARD-PIL";"0";"N";5.33;81;175;3;0.12;0;5 +"P0494";1;"SARD-PIL";"0";"N";5.33;81;180;1;0.04;0;5 +"P0494";1;"SARD-PIL";"0";"N";5.33;81;185;4;0.21;0;5 +"P0494";1;"SARD-PIL";"0";"N";5.33;81;190;4;0.21;0;5 +"P0494";1;"SARD-PIL";"0";"N";5.33;81;195;17;0.98;0;5 +"P0494";1;"SARD-PIL";"0";"N";5.33;81;200;18;1.13;0;5 +"P0494";1;"SARD-PIL";"0";"N";5.33;81;205;5;0.33;0;5 +"P0494";1;"SARD-PIL";"0";"N";5.33;81;210;7;0.55;0;5 +"P0494";1;"SARD-PIL";"0";"N";5.33;81;215;12;0.91;0;5 +"P0494";1;"SARD-PIL";"0";"N";5.33;81;220;6;0.5;0;5 +"P0494";1;"SARD-PIL";"0";"N";5.33;81;225;4;0.34;0;5 +"P0494";1;"SCOM-JAP";"0";"N";2.51;28;20;4;0;1;1 +"P0494";1;"SCOM-JAP";"0";"N";2.51;28;21;12;0;1;1 +"P0494";1;"SCOM-JAP";"0";"N";2.51;28;22;9;0;1;1 +"P0494";1;"SCOM-JAP";"0";"N";2.51;28;23;3;0;1;1 +"P0494";1;"SCOM-SCO";"0";"N";1.91;11;22;1;0;1;1 +"P0494";1;"SCOM-SCO";"0";"N";1.91;11;23;1;0;1;1 +"P0494";1;"SCOM-SCO";"0";"N";1.91;11;24;1;0;1;1 +"P0494";1;"SCOM-SCO";"0";"N";1.91;11;25;1;0;1;1 +"P0554";1;"ENGR-ENC";"0";"N";2.22;123;170;0;0;0;5 +"P0554";1;"ENGR-ENC";"0";"N";2.22;123;175;1;0.03;0;5 +"P0554";1;"MERL-MCC";"0";"N";1.61;11;19;1;0;1;1 +"P0554";1;"MERL-MCC";"0";"N";1.61;11;20;2;0;1;1 +"P0554";1;"MERL-MCC";"0";"N";1.61;11;25;1;0;1;1 +"P0554";1;"MERL-MCC";"0";"N";1.61;11;27;3;0;1;1 +"P0554";1;"MERL-MCC";"0";"N";1.61;11;29;2;0;1;1 +"P0554";1;"MERL-MCC";"0";"N";1.61;11;31;1;0;1;1 +"P0554";1;"MERL-MCC";"0";"N";1.61;11;43;1;0;1;1 +"P0554";1;"MICR-POU";"0";"N";0.14;1;27;1;0;1;1 +"P0554";1;"SCOM-JAP";"0";"N";0.91;11;19;3;0;1;1 +"P0554";1;"SCOM-JAP";"0";"N";0.91;11;20;1;0;1;1 +"P0554";1;"SCOM-JAP";"0";"N";0.91;11;21;0;0;1;1 +"P0554";1;"SCOM-JAP";"0";"N";0.91;11;22;5;0;1;1 +"P0554";1;"SCOM-JAP";"0";"N";0.91;11;23;2;0;1;1 +"P0554";1;"SCOM-SCO";"0";"N";0.14;15;10;2;0;1;1 +"P0554";1;"SCOM-SCO";"0";"N";0.14;15;11;7;0;1;1 +"P0554";1;"SCOM-SCO";"0";"N";0.14;15;12;5;0;1;1 +"P0554";1;"SCOM-SCO";"0";"N";0.14;15;13;1;0;1;1 +"P0554";1;"TRAC-TRU";"0";"N";2.81;89;12;10;0;1;1 +"P0554";1;"TRAC-TRU";"0";"N";2.81;89;13;9;0;1;1 +"P0554";1;"TRAC-TRU";"0";"N";2.81;89;14;5;0;1;1 +"P0554";1;"TRAC-TRU";"0";"N";2.81;89;15;8;0;1;1 +"P0554";1;"TRAC-TRU";"0";"N";2.81;89;16;37;0;1;1 +"P0554";1;"TRAC-TRU";"0";"N";2.81;89;17;20;0;1;1 +"P0553";1;"TRAC-TRU";"0";"N";26.8;121;12;9;0.01;1;1 +"P0553";1;"TRAC-TRU";"0";"N";26.8;121;13;5;0.09;1;1 +"P0553";1;"TRAC-TRU";"0";"N";26.8;121;14;1;0.02;1;1 +"P0553";1;"TRAC-TRU";"0";"N";26.8;121;15;4;0.12;1;1 +"P0553";1;"TRAC-TRU";"0";"N";26.8;121;16;33;1.17;1;1 +"P0553";1;"TRAC-TRU";"0";"N";26.8;121;17;56;2.33;1;1 +"P0553";1;"TRAC-TRU";"0";"N";26.8;121;18;12;0.57;1;1 +"P0553";1;"TRAC-TRU";"0";"N";26.8;121;20;0;;1;1 +"P0553";1;"ZEUS-FAB";"0";"N";1.66;1;48;1;0;1;1 +"P0495";1;"TRAC-TRU";"0";"N";5.74;94;22;1;0.09;1;1 +"P0495";1;"TRAC-TRU";"0";"N";5.74;94;24;0;0;1;1 +"P0494";1;"SCOM-SCO";"0";"N";1.91;11;28;3;0;1;1 +"P0494";1;"SCOM-SCO";"0";"N";1.91;11;29;1;0;1;1 +"P0494";1;"SCOM-SCO";"0";"N";1.91;11;30;1;0;1;1 +"P0494";1;"SCOM-SCO";"0";"N";1.91;11;31;0;0;1;1 +"P0494";1;"SCOM-SCO";"0";"N";1.91;11;32;1;0;1;1 +"P0494";1;"SCOM-SCO";"0";"N";1.91;11;39;1;0;1;1 +"P0500";1;"DIVE-RS2";"0";"N";0.11;20;0;20;;1;1 +"P0500";1;"ENGR-ENC";"0";"N";1.1;26;170;3;0;0;5 +"P0500";1;"ENGR-ENC";"0";"N";1.1;26;175;9;0;0;5 +"P0500";1;"ENGR-ENC";"0";"N";1.1;26;180;7;0;0;5 +"P0500";1;"ENGR-ENC";"0";"N";1.1;26;185;6;0;0;5 +"P0500";1;"ENGR-ENC";"0";"N";1.1;26;190;1;0;0;5 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;31;0;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;32;1;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;35;2;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;36;1;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;37;4;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;38;1;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;39;3;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;40;2;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;41;2;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;42;2;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;43;2;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;44;0;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;45;1;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;46;1;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;47;1;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;48;1;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;49;3;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;50;4;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;51;1;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;52;2;0;1;1 +"P0500";1;"MERL-MCC";"0";"N";21.52;35;58;1;0;1;1 +"P0500";1;"MICR-POU";"0";"N";0.53;9;20;2;0;1;1 +"P0500";1;"MICR-POU";"0";"N";0.53;9;21;4;0;1;1 +"P0500";1;"MICR-POU";"0";"N";0.53;9;22;1;0;1;1 +"P0500";1;"MICR-POU";"0";"N";0.53;9;23;2;0;1;1 +"P0500";1;"MOLA-MOL";"0";"N";33.88;4;39;1;4.04;1;1 +"P0500";1;"MOLA-MOL";"0";"N";33.88;4;53;1;9;1;1 +"P0500";1;"MOLA-MOL";"0";"N";33.88;4;44;1;5.78;1;1 +"P0500";1;"MOLA-MOL";"0";"N";33.88;4;62;1;15.06;1;1 +"P0500";1;"SARD-PIL";"0";"N";1.71;27;185;1;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.35;92;90;1;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.4;92;90;1;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.35;92;95;2;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.4;92;95;2;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.35;92;100;3;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.4;92;100;3;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.35;92;105;11;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.4;92;105;11;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.35;92;110;13;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.4;92;110;13;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.35;92;115;8;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.4;92;115;8;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.35;92;120;6;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.4;92;120;6;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.35;92;125;1;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.4;92;125;1;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.35;92;135;1;0;0;5 +"P0484";1;"ENGR-ENC";"0";"N";0.4;92;135;1;0;0;5 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;17;4;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;18;3;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;19;10;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;20;9;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;21;6;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;22;7;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;23;8;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;24;6;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;25;7;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;26;10;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;27;7;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;28;5;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;29;3;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;30;3;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;33;1;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;34;2;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;36;1;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;37;1;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;38;1;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;39;1;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;40;1;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;41;1;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;42;1;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;43;1;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;51;1;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;54;1;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;62;1;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;63;1;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;65;1;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;67;1;0;1;1 +"P0484";1;"MERL-MCC";"0";"N";23.74;106;70;1;0;1;1 +"P0372";1;"SCOM-SCO";"0";"N";0.06;1;22;1;0.06;1;1 +"P0378";1;"SCOM-SCO";"0";"N";9.72;32;35;5;1.53;1;1 +"P0378";1;"SCOM-SCO";"0";"N";9.72;32;36;2;0.67;1;1 +"P0378";1;"SCOM-SCO";"0";"N";9.72;32;37;1;0.36;1;1 +"P0378";1;"SCOM-SCO";"0";"N";9.72;32;38;5;1.98;1;1 +"P0378";1;"SCOM-SCO";"0";"N";9.72;32;39;1;0.42;1;1 +"P0379";1;"SCOM-JAP";"0";"N";8.88;91;25;7;0.87;1;1 +"P0379";1;"SCOM-JAP";"0";"N";8.88;91;28;1;0.17;1;1 +"P0379";1;"SCOM-JAP";"0";"N";8.88;91;29;3;0.6;1;1 +"P0379";1;"SCOM-JAP";"0";"N";8.88;91;30;2;0.44;1;1 +"P0379";1;"SCOM-JAP";"0";"N";8.88;91;17;1;0.03;1;1 +"P0379";1;"SCOM-JAP";"0";"N";8.88;91;18;5;0.21;1;1 +"P0379";1;"SCOM-JAP";"0";"N";8.88;91;19;4;0.2;1;1 +"P0379";1;"SCOM-JAP";"0";"N";8.88;91;20;7;0.42;1;1 +"P0379";1;"SCOM-JAP";"0";"N";8.88;91;21;18;1.27;1;1 +"P0379";1;"SCOM-JAP";"0";"N";8.88;91;22;18;1.48;1;1 +"P0379";1;"SCOM-JAP";"0";"N";8.88;91;23;18;1.71;1;1 +"P0379";1;"SCOM-SCO";"0";"N";17.62;46;31;2;0.42;1;1 +"P0379";1;"SCOM-SCO";"0";"N";17.62;46;32;1;0.23;1;1 +"P0379";1;"SCOM-SCO";"0";"N";17.62;46;33;3;0.77;1;1 +"P0379";1;"SCOM-SCO";"0";"N";17.62;46;34;5;1.4;1;1 +"P0379";1;"SCOM-SCO";"0";"N";17.62;46;35;5;1.53;1;1 +"P0379";1;"SCOM-SCO";"0";"N";17.62;46;36;8;2.68;1;1 +"P0379";1;"SCOM-SCO";"0";"N";17.62;46;37;5;1.82;1;1 +"P0379";1;"SCOM-SCO";"0";"N";17.62;46;38;3;1.19;1;1 +"P0379";1;"SCOM-SCO";"0";"N";17.62;46;39;5;2.14;1;1 +"P0379";1;"SCOM-SCO";"0";"N";17.62;46;40;4;1.85;1;1 +"P0379";1;"SCOM-SCO";"0";"N";17.62;46;41;3;1.5;1;1 +"P0379";1;"SCOM-SCO";"0";"N";17.62;46;42;2;1.08;1;1 +"P0379";1;"TRAC-TRU";"0";"N";3.46;89;10;1;"7.75244850909183e-03";1;1 +"P0379";1;"TRAC-TRU";"0";"N";3.46;89;11;0;0;1;1 +"P0379";1;"TRAC-TRU";"0";"N";3.46;89;12;1;0.01;1;1 +"P0379";1;"TRAC-TRU";"0";"N";3.46;89;13;3;0.05;1;1 +"P0379";1;"TRAC-TRU";"0";"N";3.46;89;14;4;0.08;1;1 +"P0379";1;"TRAC-TRU";"0";"N";3.46;89;15;14;0.37;1;1 +"P0379";1;"TRAC-TRU";"0";"N";3.46;89;16;26;0.83;1;1 +"P0379";1;"TRAC-TRU";"0";"N";3.46;89;17;24;0.93;1;1 +"P0379";1;"TRAC-TRU";"0";"N";3.46;89;18;10;0.46;1;1 +"P0379";1;"TRAC-TRU";"0";"N";3.46;89;19;3;0.21;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;18;12;0.44;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;19;6;0.26;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;20;3;0.15;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;21;0;0;1;1 +"P0384";1;"ENGR-ENC";"0";"N";2.05;127;140;32;0.63;0;5 +"P0384";1;"ENGR-ENC";"0";"N";2.05;127;145;8;0.17;0;5 +"P0384";1;"ENGR-ENC";"0";"N";2.05;127;150;6;0.13;0;5 +"P0384";1;"MERL-MCC";"0";"N";4.3;26;16;1;0.02;1;1 +"P0384";1;"MERL-MCC";"0";"N";0.48;26;16;1;0.02;1;1 +"P0384";1;"MERL-MCC";"0";"N";4.3;26;18;1;0.03;1;1 +"P0384";1;"MERL-MCC";"0";"N";0.48;26;18;1;0.03;1;1 +"P0384";1;"MERL-MCC";"0";"N";4.3;26;19;1;0.04;1;1 +"P0384";1;"MERL-MCC";"0";"N";0.48;26;19;1;0.04;1;1 +"P0384";1;"MERL-MCC";"0";"N";4.3;26;23;1;0.07;1;1 +"P0384";1;"MERL-MCC";"0";"N";0.48;26;23;1;0.07;1;1 +"P0384";1;"MERL-MCC";"0";"N";4.3;26;34;1;0.26;1;1 +"P0384";1;"MERL-MCC";"0";"N";0.48;26;34;1;0.26;1;1 +"P0384";1;"MERL-MCC";"0";"N";4.3;26;25;1;0.1;1;1 +"P0384";1;"MERL-MCC";"0";"N";0.48;26;25;1;0.1;1;1 +"P0384";1;"MERL-MCC";"0";"N";4.3;26;30;1;0.17;1;1 +"P0384";1;"MERL-MCC";"0";"N";0.48;26;30;1;0.17;1;1 +"P0384";1;"MERL-MCC";"0";"N";4.3;26;32;1;0.21;1;1 +"P0384";1;"MERL-MCC";"0";"N";0.48;26;32;1;0.21;1;1 +"P0384";1;"MERL-MCC";"0";"N";4.3;26;38;1;0.36;1;1 +"P0384";1;"MERL-MCC";"0";"N";0.48;26;38;1;0.36;1;1 +"P0384";1;"MERL-MCC";"0";"N";4.3;26;42;1;0.5;1;1 +"P0384";1;"MERL-MCC";"0";"N";0.48;26;42;1;0.5;1;1 +"P0384";1;"MERL-MCC";"0";"N";4.3;26;51;1;0.91;1;1 +"P0384";1;"MERL-MCC";"0";"N";0.48;26;51;1;0.91;1;1 +"P0384";1;"MERL-MCC";"0";"N";4.3;26;53;1;1.02;1;1 +"P0384";1;"MERL-MCC";"0";"N";0.48;26;53;1;1.02;1;1 +"P0384";1;"MERL-MCC";"0";"N";4.3;26;54;1;1.08;1;1 +"P0384";1;"MERL-MCC";"0";"N";0.48;26;54;1;1.08;1;1 +"P0385";1;"ALLO-TEZ";"0";"N";0.03;7;0;7;0;1;1 +"P0385";1;"ASPI-OBS";"0";"N";0.16;1;28;1;0;1;1 +"P0385";1;"ENGR-ENC";"0";"N";0.97;70;110;1;"7.95616830692451e-03";0;5 +"P0385";1;"ENGR-ENC";"0";"N";0.97;70;115;4;0.03;0;5 +"P0385";1;"ENGR-ENC";"0";"N";0.97;70;120;9;0.09;0;5 +"P0385";1;"ENGR-ENC";"0";"N";0.97;70;125;12;0.13;0;5 +"P0385";1;"ENGR-ENC";"0";"N";0.97;70;130;25;0.32;0;5 +"P0385";1;"ENGR-ENC";"0";"N";0.97;70;135;12;0.17;0;5 +"P0385";1;"ENGR-ENC";"0";"N";0.97;70;140;4;0.06;0;5 +"P0385";1;"ENGR-ENC";"0";"N";0.97;70;145;1;0.01;0;5 +"P0385";1;"ENGR-ENC";"0";"N";0.97;70;150;2;0;0;5 +"P0385";1;"GALE-GAL";"0";"M";2.76;2;55;1;0;1;1 +"P0385";1;"GALE-GAL";"0";"M";2.76;2;76;1;0;1;1 +"P0385";1;"MERL-MCC";"0";"N";2.73;48;15;1;0.02;1;1 +"P0385";1;"MERL-MCC";"0";"N";2.73;48;16;2;0.05;1;1 +"P0385";1;"MERL-MCC";"0";"N";2.73;48;17;6;0.18;1;1 +"P0385";1;"MERL-MCC";"0";"N";2.73;48;18;9;0.33;1;1 +"P0385";1;"MERL-MCC";"0";"N";2.73;48;19;6;0.26;1;1 +"P0385";1;"MERL-MCC";"0";"N";2.73;48;20;11;0.56;1;1 +"P0385";1;"MERL-MCC";"0";"N";2.73;48;21;4;0.23;1;1 +"P0385";1;"MERL-MCC";"0";"N";2.73;48;22;2;0.13;1;1 +"P0385";1;"MERL-MCC";"0";"N";2.73;48;23;3;0.23;1;1 +"P0385";1;"MERL-MCC";"0";"N";2.73;48;24;2;0.17;1;1 +"P0385";1;"MERL-MCC";"0";"N";2.73;48;25;1;0.1;1;1 +"P0385";1;"MERL-MCC";"0";"N";2.73;48;27;1;0.12;1;1 +"P0385";1;"SARD-PIL";"0";"N";1.78;23;195;1;0;0;5 +"P0385";1;"SARD-PIL";"0";"N";1.78;23;200;1;0;0;5 +"P0389";1;"SARD-PIL";"0";"N";8.13;121;195;15;1;0;5 +"P0389";1;"SARD-PIL";"0";"N";8.13;121;200;21;1.33;0;5 +"P0389";1;"SARD-PIL";"0";"N";8.13;121;205;31;2.13;0;5 +"P0389";1;"SARD-PIL";"0";"N";8.13;121;210;23;1.65;0;5 +"P0389";1;"SARD-PIL";"0";"N";8.13;121;215;5;0.38;0;5 +"P0389";1;"SARD-PIL";"0";"N";8.13;121;220;9;0.72;0;5 +"P0389";1;"SARD-PIL";"0";"N";8.13;121;225;2;0.18;0;5 +"P0389";1;"SARD-PIL";"0";"N";8.13;121;150;1;0.02;0;5 +"P0389";1;"SARD-PIL";"0";"N";8.13;121;175;2;0.08;0;5 +"P0389";1;"SARD-PIL";"0";"N";8.13;121;180;1;0.04;0;5 +"P0389";1;"SPON-CAN";"0";"N";0.73;1;35;1;0.7;1;1 +"P0389";1;"TRAC-DRA";"0";"N";0.25;4;20;2;0.1;1;1 +"P0389";1;"TRAC-DRA";"0";"N";0.25;4;22;1;0.06;1;1 +"P0389";1;"TRAC-DRA";"0";"N";0.25;4;23;1;0.07;1;1 +"P0389";1;"TRAC-TRU";"0";"N";0.06;2;15;1;0.02;1;1 +"P0389";1;"TRAC-TRU";"0";"N";0.06;2;16;1;0.03;1;1 +"P0395";1;"DIVE-RS2";"0";"N";0.12;42;0;42;;1;1 +"P0395";1;"MICR-POU";"0";"N";0.03;50;3;4;"4.43198264359424e-04";1;1 +"P0395";1;"MICR-POU";"0";"N";0.03;50;4;33;"8.87397464041503e-03";1;1 +"P0395";1;"MICR-POU";"0";"N";0.03;50;5;13;"6.95389505460134e-03";1;1 +"P0395";1;"MOLA-MOL";"0";"N";5.02;1;43;1;0;1;1 +"P0395";1;"MYCT-OPX";"0";"N";0.06;50;4;4;;1;1 +"P0395";1;"MYCT-OPX";"0";"N";0.06;50;5;42;;1;1 +"P0395";1;"MYCT-OPX";"0";"N";0.06;50;6;4;;1;1 +"P0385";1;"SARD-PIL";"0";"N";1.78;23;205;5;0;0;5 +"P0385";1;"SARD-PIL";"0";"N";1.78;23;210;6;0;0;5 +"P0385";1;"SARD-PIL";"0";"N";1.78;23;215;2;0;0;5 +"P0385";1;"SARD-PIL";"0";"N";1.78;23;220;5;0;0;5 +"P0385";1;"SARD-PIL";"0";"N";1.78;23;225;3;0;0;5 +"P0385";1;"SARD-SAR";"0";"N";1.44;1;53;1;0;1;1 +"P0385";1;"SCOM-SCO";"0";"N";1.09;4;24;1;0.09;1;1 +"P0385";1;"SCOM-SCO";"0";"N";1.09;4;30;1;0.19;1;1 +"P0385";1;"SCOM-SCO";"0";"N";1.09;4;32;1;0.23;1;1 +"P0385";1;"SCOM-SCO";"0";"N";1.09;4;45;1;0.66;1;1 +"P0385";1;"SEPI-OLZ";"0";"N";0.01;6;0;6;;1;1 +"P0385";1;"TRAC-TRU";"0";"N";2.16;81;10;1;"7.75244850909183e-03";1;1 +"P0385";1;"TRAC-TRU";"0";"N";2.16;81;11;1;0.01;1;1 +"P0385";1;"TRAC-TRU";"0";"N";2.16;81;12;20;0.26;1;1 +"P0385";1;"TRAC-TRU";"0";"N";2.16;81;13;14;0.24;1;1 +"P0385";1;"TRAC-TRU";"0";"N";2.16;81;14;11;0.23;1;1 +"P0385";1;"TRAC-TRU";"0";"N";2.16;81;15;14;0.37;1;1 +"P0385";1;"TRAC-TRU";"0";"N";2.16;81;16;12;0.38;1;1 +"P0385";1;"TRAC-TRU";"0";"N";2.16;81;17;6;0.23;1;1 +"P0395";1;"SCOM-SCO";"0";"N";0.01;12;4;2;"7.66347825696447e-04";1;1 +"P0395";1;"SCOM-SCO";"0";"N";0.01;12;5;8;"6.10018257777708e-03";1;1 +"P0395";1;"SCOM-SCO";"0";"N";0.01;12;6;2;"2.67588053067527e-03";1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;22;1;0.06;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;23;1;0.07;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;24;2;0.17;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;25;0;0;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;26;2;0.22;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;27;4;0.51;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;28;2;0.28;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;29;4;0.64;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;30;0;0;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;31;0;0;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;32;2;0.43;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;33;0;0.23;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;34;2;0.52;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;35;2;0.57;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;36;5;1.56;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;37;1;0.33;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;38;1;0.36;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;39;1;0.39;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;40;1;0.43;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;41;1;0.46;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;47;3;2.12;1;1 +"P0396";1;"MERL-MCC";"0";"N";12.16;81;61;1;1.57;1;1 +"P0396";1;"MICR-POU";"0";"N";0.2;1;31;1;0.14;1;1 +"P0396";1;"SARD-PIL";"0";"N";0.43;8;160;1;0;0;5 +"P0396";1;"SARD-PIL";"0";"N";0.43;8;180;1;0;0;5 +"P0396";1;"SARD-PIL";"0";"N";0.43;8;185;3;0;0;5 +"P0396";1;"SARD-PIL";"0";"N";0.43;8;195;1;0;0;5 +"P0396";1;"SARD-PIL";"0";"N";0.43;8;205;1;0;0;5 +"P0396";1;"SARD-PIL";"0";"N";0.43;8;220;1;0;0;5 +"P0396";1;"SCOM-JAP";"0";"N";7.94;24;17;1;0.03;1;1 +"P0396";1;"SCOM-JAP";"0";"N";7.94;24;18;1;0.04;1;1 +"P0396";1;"SCOM-JAP";"0";"N";7.94;24;23;2;0.19;1;1 +"P0396";1;"SCOM-JAP";"0";"N";7.94;24;32;1;0.27;1;1 +"P0396";1;"SCOM-JAP";"0";"N";7.94;24;33;9;2.75;1;1 +"P0396";1;"SCOM-JAP";"0";"N";7.94;24;34;4;1.35;1;1 +"P0396";1;"SCOM-JAP";"0";"N";7.94;24;35;0;0;1;1 +"P0396";1;"SCOM-JAP";"0";"N";7.94;24;36;2;0.81;1;1 +"P0396";1;"SCOM-JAP";"0";"N";7.94;24;37;2;0.88;1;1 +"P0396";1;"SCOM-JAP";"0";"N";7.94;24;41;1;0.61;1;1 +"P0396";1;"SCOM-JAP";"0";"N";7.94;24;44;1;0.77;1;1 +"P0399";1;"SCOM-JAP";"0";"N";0.38;6;17;1;0.03;1;1 +"P0399";1;"SCOM-JAP";"0";"N";0.38;6;18;0;0;1;1 +"P0399";1;"SCOM-JAP";"0";"N";0.38;6;19;2;0.1;1;1 +"P0399";1;"SCOM-JAP";"0";"N";0.38;6;20;1;0.06;1;1 +"P0399";1;"SCOM-SCO";"0";"N";0.49;1;37;1;0.36;1;1 +"P0399";1;"TRAC-TRU";"0";"N";3.59;366;10;1;0.01;1;1 +"P0399";1;"TRAC-TRU";"0";"N";0.5;366;10;1;0.01;1;1 +"P0399";1;"TRAC-TRU";"0";"N";3.59;366;11;11;0.13;1;1 +"P0399";1;"TRAC-TRU";"0";"N";0.5;366;11;11;0.13;1;1 +"P0399";1;"TRAC-TRU";"0";"N";3.59;366;12;64;1.01;1;1 +"P0399";1;"TRAC-TRU";"0";"N";0.5;366;12;64;1.01;1;1 +"P0399";1;"TRAC-TRU";"0";"N";3.59;366;13;73;1.35;1;1 +"P0399";1;"TRAC-TRU";"0";"N";0.5;366;13;73;1.35;1;1 +"P0399";1;"TRAC-TRU";"0";"N";3.59;366;14;9;0.2;1;1 +"P0399";1;"TRAC-TRU";"0";"N";0.5;366;14;9;0.2;1;1 +"P0399";1;"TRAC-TRU";"0";"N";3.59;366;15;10;0.29;1;1 +"P0399";1;"TRAC-TRU";"0";"N";0.5;366;15;10;0.29;1;1 +"P0399";1;"TRAC-TRU";"0";"N";3.59;366;16;12;0.43;1;1 +"P0399";1;"TRAC-TRU";"0";"N";0.5;366;16;12;0.43;1;1 +"P0399";1;"TRAC-TRU";"0";"N";3.59;366;17;1;0.04;1;1 +"P0399";1;"TRAC-TRU";"0";"N";0.5;366;17;1;0.04;1;1 +"P0399";1;"TRAC-TRU";"0";"N";3.59;366;18;2;0.11;1;1 +"P0399";1;"TRAC-TRU";"0";"N";0.5;366;18;2;0.11;1;1 +"P0409";1;"SCOM-JAP";"0";"N";2.99;40;26;1;0.14;1;1 +"P0409";1;"SCOM-JAP";"0";"N";2.99;40;27;1;0.15;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;21;1;0.07;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;22;0;0;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;23;16;1.52;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;24;43;4.42;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;25;15;1.71;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;26;3;0.41;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;30;1;0.19;1;1 +"P0396";1;"SCOM-SCO";"0";"N";1.46;5;32;2;0.46;1;1 +"P0396";1;"SCOM-SCO";"0";"N";1.46;5;34;1;0.28;1;1 +"P0396";1;"SCOM-SCO";"0";"N";1.46;5;35;1;0.3;1;1 +"P0396";1;"SCOM-SCO";"0";"N";1.46;5;39;1;0.42;1;1 +"P0396";1;"TRAC-TRU";"0";"N";1.12;252;13;2;0.03;1;1 +"P0396";1;"TRAC-TRU";"0";"N";4.56;252;13;2;0.03;1;1 +"P0396";1;"TRAC-TRU";"0";"N";1.12;252;14;3;0.06;1;1 +"P0396";1;"TRAC-TRU";"0";"N";4.56;252;14;3;0.06;1;1 +"P0396";1;"TRAC-TRU";"0";"N";1.12;252;15;29;0.76;1;1 +"P0396";1;"TRAC-TRU";"0";"N";4.56;252;15;29;0.76;1;1 +"P0396";1;"TRAC-TRU";"0";"N";1.12;252;16;58;1.87;1;1 +"P0396";1;"TRAC-TRU";"0";"N";4.56;252;16;58;1.87;1;1 +"P0396";1;"TRAC-TRU";"0";"N";1.12;252;17;29;1.12;1;1 +"P0396";1;"TRAC-TRU";"0";"N";4.56;252;17;29;1.12;1;1 +"P0396";1;"TRAC-TRU";"0";"N";1.12;252;18;4;0.18;1;1 +"P0396";1;"TRAC-TRU";"0";"N";4.56;252;18;4;0.18;1;1 +"P0396";1;"TRAC-TRU";"0";"N";1.12;252;19;1;0.05;1;1 +"P0396";1;"TRAC-TRU";"0";"N";4.56;252;19;1;0.05;1;1 +"P0484";1;"MICR-POU";"0";"N";3.54;51;11;1;0;1;1 +"P0484";1;"MICR-POU";"0";"N";3.54;51;18;1;0;1;1 +"P0484";1;"MICR-POU";"0";"N";3.54;51;19;4;0;1;1 +"P0484";1;"MICR-POU";"0";"N";3.54;51;20;14;0;1;1 +"P0484";1;"MICR-POU";"0";"N";3.54;51;21;14;0;1;1 +"P0484";1;"MICR-POU";"0";"N";3.54;51;22;8;0;1;1 +"P0484";1;"MICR-POU";"0";"N";3.54;51;23;1;0;1;1 +"P0484";1;"MICR-POU";"0";"N";3.54;51;27;1;0;1;1 +"P0484";1;"MICR-POU";"0";"N";3.54;51;28;2;0;1;1 +"P0484";1;"MICR-POU";"0";"N";3.54;51;29;5;0;1;1 +"P0484";1;"SARD-PIL";"0";"N";0.3;4;215;2;0;0;5 +"P0484";1;"SARD-PIL";"0";"N";0.3;4;225;2;0;0;5 +"P0484";1;"SCOM-SCO";"0";"N";2.6;29;21;5;0;1;1 +"P0484";1;"SCOM-SCO";"0";"N";2.6;29;22;13;0;1;1 +"P0484";1;"SCOM-SCO";"0";"N";2.6;29;23;5;0;1;1 +"P0484";1;"SCOM-SCO";"0";"N";2.6;29;24;4;0;1;1 +"P0484";1;"SCOM-SCO";"0";"N";2.6;29;25;1;0;1;1 +"P0484";1;"SCOM-SCO";"0";"N";2.6;29;27;1;0;1;1 +"P0484";1;"SPRA-SPR";"0";"N";0.01;1;130;1;0;0;5 +"P0484";1;"TODA-EBL";"0";"N";0.1;1;12;1;0.1;1;1 +"P0429";1;"ENGR-ENC";"0";"N";3.62;184;175;2;0.07;0;5 +"P0429";1;"ENGR-ENC";"0";"N";3.62;184;180;3;0.12;0;5 +"P0429";1;"ENGR-ENC";"0";"N";3.62;184;185;2;0.09;0;5 +"P0429";1;"MERL-MCC";"0";"N";3.26;7;27;1;0.12;1;1 +"P0429";1;"MERL-MCC";"0";"N";3.26;7;29;1;0.16;1;1 +"P0485";1;"MERL-MCC";"0";"N";65.52;47;38;1;0;1;1 +"P0485";1;"MERL-MCC";"0";"N";65.52;47;49;1;0;1;1 +"P0485";1;"MERL-MCC";"0";"N";65.52;47;50;1;0;1;1 +"P0485";1;"MERL-MCC";"0";"N";65.52;47;54;3;0;1;1 +"P0485";1;"MERL-MCC";"0";"N";65.52;47;55;3;0;1;1 +"P0485";1;"MERL-MCC";"0";"N";65.52;47;56;5;0;1;1 +"P0485";1;"MERL-MCC";"0";"N";65.52;47;57;5;0;1;1 +"P0485";1;"MERL-MCC";"0";"N";65.52;47;58;1;0;1;1 +"P0485";1;"MERL-MCC";"0";"N";65.52;47;59;3;0;1;1 +"P0485";1;"MERL-MCC";"0";"N";65.52;47;60;3;0;1;1 +"P0485";1;"MERL-MCC";"0";"N";65.52;47;61;5;0;1;1 +"P0485";1;"MERL-MCC";"0";"N";65.52;47;62;3;0;1;1 +"P0485";1;"MERL-MCC";"0";"N";65.52;47;63;3;0;1;1 +"P0485";1;"MERL-MCC";"0";"N";65.52;47;64;5;0;1;1 +"P0485";1;"MERL-MCC";"0";"N";65.52;47;65;3;0;1;1 +"P0485";1;"MERL-MCC";"0";"N";65.52;47;68;1;0;1;1 +"P0485";1;"MERL-MCC";"0";"N";65.52;47;71;1;0;1;1 +"P0485";1;"MICR-POU";"0";"N";0.21;2;23;1;0;1;1 +"P0485";1;"MICR-POU";"0";"N";0.21;2;29;1;0;1;1 +"P0410";1;"BELO-BEO";"0";"N";4.5;7;54;1;0;1;1 +"P0410";1;"BELO-BEO";"0";"N";4.5;7;64;1;0;1;1 +"P0410";1;"BELO-BEO";"0";"N";4.5;7;68;1;0;1;1 +"P0410";1;"BELO-BEO";"0";"N";4.5;7;70;1;0;1;1 +"P0410";1;"BELO-BEO";"0";"N";4.5;7;76;1;0;1;1 +"P0410";1;"BELO-BEO";"0";"N";4.5;7;90;1;0;1;1 +"P0410";1;"BELO-BEO";"0";"N";4.5;7;91;1;0;1;1 +"P0410";1;"DIVE-RS1";"0";"N";0.02;2;0;2;;1;1 +"P0410";1;"ENGR-ENC";"0";"N";5.63;194;135;2;0.03;0;5 +"P0410";1;"ENGR-ENC";"0";"N";5.63;194;140;3;0.05;0;5 +"P0410";1;"ENGR-ENC";"0";"N";5.63;194;145;14;0.32;0;5 +"P0410";1;"ENGR-ENC";"0";"N";5.63;194;150;22;0.52;0;5 +"P0410";1;"ENGR-ENC";"0";"N";5.63;194;155;30;0.79;0;5 +"P0410";1;"ENGR-ENC";"0";"N";5.63;194;160;55;1.58;0;5 +"P0410";1;"ENGR-ENC";"0";"N";5.63;194;165;29;0.93;0;5 +"P0410";1;"ENGR-ENC";"0";"N";5.63;194;170;19;0.67;0;5 +"P0410";1;"ENGR-ENC";"0";"N";5.63;194;175;15;0.49;0;5 +"P0410";1;"ENGR-ENC";"0";"N";5.63;194;180;2;0.09;0;5 +"P0410";1;"ENGR-ENC";"0";"N";5.63;194;185;3;0.12;0;5 +"P0410";1;"LOPH-BUD";"0";"N";0.01;3;6;1;"3.76482952606717e-03";1;1 +"P0410";1;"LOPH-BUD";"0";"N";0.01;3;7;1;"5.8833301310022e-03";1;1 +"P0410";1;"LOPH-BUD";"0";"N";0.01;3;8;1;"8.66099717735616e-03";1;1 +"P0410";1;"MOLA-MOL";"0";"N";3.66;1;38;1;0;1;1 +"P0410";1;"SCOM-JAP";"0";"N";1.64;17;18;1;0.04;1;1 +"P0410";1;"SCOM-JAP";"0";"N";1.64;17;19;0;0;1;1 +"P0410";1;"SCOM-JAP";"0";"N";1.64;17;20;2;0.12;1;1 +"P0410";1;"SCOM-JAP";"0";"N";1.64;17;21;2;0.14;1;1 +"P0410";1;"SCOM-JAP";"0";"N";1.64;17;22;2;0.16;1;1 +"P0410";1;"SCOM-JAP";"0";"N";1.64;17;23;5;0.47;1;1 +"P0410";1;"SCOM-JAP";"0";"N";1.64;17;24;4;0.43;1;1 +"P0410";1;"SCOM-JAP";"0";"N";1.64;17;25;1;0.12;1;1 +"P0410";1;"SCOM-SCO";"0";"N";1.86;20;6;1;"1.33794026533763e-03";1;1 +"P0410";1;"SCOM-SCO";"0";"N";1.86;20;21;1;0.06;1;1 +"P0410";1;"SCOM-SCO";"0";"N";1.86;20;22;3;0.22;1;1 +"P0410";1;"SCOM-SCO";"0";"N";1.86;20;23;7;0.59;1;1 +"P0410";1;"SCOM-SCO";"0";"N";1.86;20;24;6;0.57;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;31;1;0.22;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;32;3;0.69;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;33;3;0.86;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;34;2;0.62;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;35;10;3.24;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;36;9;3.18;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;37;7;2.74;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;38;11;4.55;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;39;11;5.09;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;40;11;4.15;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;41;7;3.65;1;1 +"P0409";1;"SCOM-SCO";"0";"N";38.47;156;42;2;1.11;1;1 +"P0409";1;"TRAC-TRU";"0";"N";2.16;73;13;7;0.12;1;1 +"P0409";1;"TRAC-TRU";"0";"N";2.16;73;14;5;0.1;1;1 +"P0405";1;"BELO-BEO";"0";"N";0.56;1;74;1;0;1;1 +"P0405";1;"ENGR-ENC";"0";"N";2.92;259;100;5;0.03;0;5 +"P0405";1;"ENGR-ENC";"0";"N";2.92;259;105;10;0.08;0;5 +"P0405";1;"ENGR-ENC";"0";"N";2.92;259;110;44;0.37;0;5 +"P0405";1;"ENGR-ENC";"0";"N";2.92;259;115;46;0.43;0;5 +"P0405";1;"ENGR-ENC";"0";"N";2.92;259;120;50;0.51;0;5 +"P0405";1;"ENGR-ENC";"0";"N";2.92;259;125;31;0.38;0;5 +"P0405";1;"ENGR-ENC";"0";"N";2.92;259;130;40;0.57;0;5 +"P0405";1;"ENGR-ENC";"0";"N";2.92;259;135;23;0.36;0;5 +"P0405";1;"ENGR-ENC";"0";"N";2.92;259;140;7;0.12;0;5 +"P0405";1;"ENGR-ENC";"0";"N";2.92;259;145;2;0.04;0;5 +"P0405";1;"ENGR-ENC";"0";"N";2.92;259;150;1;0.01;0;5 +"P0405";1;"ENGR-ENC";"0";"N";2.92;259;160;0;0;0;5 +"P0405";1;"MOLA-MOL";"0";"N";4.16;1;41;1;0;1;1 +"P0405";1;"SARD-PIL";"0";"N";3.17;97;150;6;0.14;0;5 +"P0405";1;"SARD-PIL";"0";"N";3.17;97;155;12;0.33;0;5 +"P0405";1;"SARD-PIL";"0";"N";3.17;97;160;35;1.05;0;5 +"P0405";1;"SARD-PIL";"0";"N";3.17;97;165;20;0.67;0;5 +"P0405";1;"SARD-PIL";"0";"N";3.17;97;170;15;0.55;0;5 +"P0405";1;"SARD-PIL";"0";"N";3.17;97;175;5;0.2;0;5 +"P0405";1;"SARD-PIL";"0";"N";3.17;97;180;2;0.09;0;5 +"P0405";1;"SARD-PIL";"0";"N";3.17;97;195;1;0.06;0;5 +"P0405";1;"SARD-PIL";"0";"N";3.17;97;205;1;0.06;0;5 +"P0405";1;"SCOM-JAP";"0";"N";9.28;41;28;3;0.53;1;1 +"P0405";1;"SCOM-JAP";"0";"N";9.28;41;29;13;2.62;1;1 +"P0405";1;"SCOM-JAP";"0";"N";9.28;41;30;9;2.02;1;1 +"P0405";1;"SCOM-JAP";"0";"N";9.28;41;31;8;2;1;1 +"P0405";1;"SCOM-JAP";"0";"N";9.28;41;32;5;1.38;1;1 +"P0405";1;"SCOM-JAP";"0";"N";9.28;41;33;3;0.91;1;1 +"P0405";1;"SCOM-SCO";"0";"N";0.48;1;37;1;0.36;1;1 +"P0500";1;"SARD-PIL";"0";"N";1.71;27;190;3;0;0;5 +"P0500";1;"SARD-PIL";"0";"N";1.71;27;195;6;0;0;5 +"P0500";1;"SARD-PIL";"0";"N";1.71;27;200;5;0;0;5 +"P0500";1;"SARD-PIL";"0";"N";1.71;27;205;4;0;0;5 +"P0422";1;"ENGR-ENC";"0";"N";2;209;100;3;0.01;0;5 +"P0422";1;"ENGR-ENC";"0";"N";2;209;105;16;0.11;0;5 +"P0422";1;"ENGR-ENC";"0";"N";2;209;110;54;0.42;0;5 +"P0422";1;"ENGR-ENC";"0";"N";2;209;115;43;0.38;0;5 +"P0422";1;"ENGR-ENC";"0";"N";2;209;120;53;0.56;0;5 +"P0422";1;"ENGR-ENC";"0";"N";2;209;125;21;0.24;0;5 +"P0422";1;"ENGR-ENC";"0";"N";2;209;130;10;0.13;0;5 +"P0422";1;"ENGR-ENC";"0";"N";2;209;135;7;0.1;0;5 +"P0422";1;"ENGR-ENC";"0";"N";2;209;140;2;0.03;0;5 +"P0422";1;"MERL-MCC";"0";"N";0.12;1;25;1;0.1;1;1 +"P0422";1;"SARD-PIL";"0";"N";0.83;26;145;1;0;0;5 +"P0422";1;"SARD-PIL";"0";"N";0.83;26;150;3;0;0;5 +"P0422";1;"SARD-PIL";"0";"N";0.83;26;155;1;0;0;5 +"P0422";1;"SARD-PIL";"0";"N";0.83;26;160;9;0;0;5 +"P0422";1;"SARD-PIL";"0";"N";0.83;26;165;7;0;0;5 +"P0422";1;"SARD-PIL";"0";"N";0.83;26;170;5;0;0;5 +"P0422";1;"SCOM-JAP";"0";"N";0.22;1;31;1;0.25;1;1 +"P0422";1;"SCOM-SCO";"0";"N";2.75;7;34;1;0;1;1 +"P0422";1;"SCOM-SCO";"0";"N";2.75;7;35;1;0;1;1 +"P0422";1;"SCOM-SCO";"0";"N";2.75;7;36;1;0;1;1 +"P0422";1;"SCOM-SCO";"0";"N";2.75;7;37;2;0;1;1 +"P0422";1;"SCOM-SCO";"0";"N";2.75;7;38;2;0;1;1 +"P0422";1;"SPRA-SPR";"0";"N";0.57;51;105;3;0;0;5 +"P0422";1;"SPRA-SPR";"0";"N";0.57;51;110;18;0;0;5 +"P0422";1;"SPRA-SPR";"0";"N";0.57;51;115;22;0;0;5 +"P0422";1;"SPRA-SPR";"0";"N";0.57;51;120;8;0;0;5 +"P0422";1;"TRAC-DRA";"0";"N";0.34;3;25;1;0;1;1 +"P0422";1;"TRAC-DRA";"0";"N";0.34;3;26;1;0;1;1 +"P0422";1;"TRAC-DRA";"0";"N";0.34;3;27;0;0;1;1 +"P0422";1;"TRAC-DRA";"0";"N";0.34;3;28;1;0;1;1 +"P0417";1;"TRAC-TRU";"0";"N";3.13;89;15;12;0.31;1;1 +"P0417";1;"TRAC-TRU";"0";"N";3.13;89;16;36;1.16;1;1 +"P0417";1;"TRAC-TRU";"0";"N";3.13;89;17;22;0.85;1;1 +"P0417";1;"TRAC-TRU";"0";"N";3.13;89;18;3;0.13;1;1 +"P0423";1;"SPRA-SPR";"0";"N";0.91;85;105;20;0.18;0;5 +"P0423";1;"SPRA-SPR";"0";"N";0.91;85;110;37;0.39;0;5 +"P0423";1;"SPRA-SPR";"0";"N";0.91;85;115;20;0.23;0;5 +"P0423";1;"SPRA-SPR";"0";"N";0.91;85;120;6;0.08;0;5 +"P0484";1;"CLUP-HAR";"0";"N";0.28;2;250;1;0;0;5 +"P0484";1;"CLUP-HAR";"0";"N";0.28;2;255;1;0;0;5 +"P0484";1;"DIVE-RS1";"0";"N";0.09;3;0;3;0.09;1;1 +"P0429";1;"MERL-MCC";"0";"N";3.26;7;31;1;0.43;1;1 +"P0429";1;"MERL-MCC";"0";"N";3.26;7;32;2;0.43;1;1 +"P0429";1;"MERL-MCC";"0";"N";3.26;7;51;1;0.91;1;1 +"P0429";1;"MERL-MCC";"0";"N";3.26;7;54;1;1.08;1;1 +"P0429";1;"SARD-PIL";"0";"N";7.43;108;180;1;0.05;0;5 +"P0429";1;"SARD-PIL";"0";"N";7.43;108;185;4;0.2;0;5 +"P0429";1;"SARD-PIL";"0";"N";7.43;108;195;14;0.83;0;5 +"P0429";1;"SARD-PIL";"0";"N";7.43;108;200;18;1.15;0;5 +"P0429";1;"SARD-PIL";"0";"N";7.43;108;205;23;1.56;0;5 +"P0429";1;"SARD-PIL";"0";"N";7.43;108;210;22;1.63;0;5 +"P0429";1;"SARD-PIL";"0";"N";7.43;108;215;13;1.01;0;5 +"P0429";1;"SARD-PIL";"0";"N";7.43;108;220;6;0.53;0;5 +"P0429";1;"SARD-PIL";"0";"N";7.43;108;225;2;0.16;0;5 +"P0430";1;"ENGR-ENC";"0";"N";3.46;197;125;15;0.18;0;5 +"P0430";1;"ENGR-ENC";"0";"N";3.46;197;130;25;0.35;0;5 +"P0430";1;"ENGR-ENC";"0";"N";3.46;197;135;37;0.64;0;5 +"P0430";1;"ENGR-ENC";"0";"N";3.46;197;140;65;1.06;0;5 +"P0430";1;"ENGR-ENC";"0";"N";3.46;197;145;36;0.66;0;5 +"P0430";1;"ENGR-ENC";"0";"N";3.46;197;150;7;0.16;0;5 +"P0430";1;"ENGR-ENC";"0";"N";3.46;197;155;3;0.08;0;5 +"P0430";1;"ENGR-ENC";"0";"N";3.46;197;160;4;0.12;0;5 +"P0430";1;"ENGR-ENC";"0";"N";3.46;197;165;3;0.1;0;5 +"P0430";1;"ENGR-ENC";"0";"N";3.46;197;180;1;0.04;0;5 +"P0430";1;"ENGR-ENC";"0";"N";3.46;197;185;1;0.05;0;5 +"P0430";1;"EUTR-GUR";"0";"N";0.98;5;27;1;0;1;1 +"P0430";1;"EUTR-GUR";"0";"N";0.98;5;28;1;0;1;1 +"P0430";1;"EUTR-GUR";"0";"N";0.98;5;29;1;0;1;1 +"P0430";1;"EUTR-GUR";"0";"N";0.98;5;31;1;0;1;1 +"P0430";1;"EUTR-GUR";"0";"N";0.98;5;34;1;0;1;1 +"P0430";1;"ILLE-COI";"0";"N";0.04;2;7;1;0;1;1 +"P0430";1;"ILLE-COI";"0";"N";0.04;2;9;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";1.38;34;21;2;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";7.08;34;21;2;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";1.38;34;29;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";7.08;34;29;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";1.38;34;31;2;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";7.08;34;31;2;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";1.38;34;35;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";7.08;34;35;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";1.38;34;37;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";7.08;34;37;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";1.38;34;46;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";7.08;34;46;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";1.38;34;54;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";7.08;34;54;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";1.38;34;56;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";7.08;34;56;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";1.38;34;59;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";7.08;34;59;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";1.38;34;61;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";7.08;34;61;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";1.38;34;28;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";7.08;34;28;1;0;1;1 +"P0435";1;"ALLO-TEZ";"0";"N";0.03;5;6;3;0;1;1 +"P0435";1;"ALLO-TEZ";"0";"N";0.03;5;7;2;0;1;1 +"P0435";1;"ENGR-ENC";"0";"N";1.62;219;95;15;0.08;0;5 +"P0435";1;"ENGR-ENC";"0";"N";1.62;219;100;58;0.33;0;5 +"P0435";1;"ENGR-ENC";"0";"N";1.62;219;105;59;0.39;0;5 +"P0435";1;"ENGR-ENC";"0";"N";1.62;219;110;41;0.32;0;5 +"P0430";1;"MERL-MCC";"0";"N";1.38;34;30;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";7.08;34;30;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";1.38;34;31;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";7.08;34;31;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";1.38;34;32;0;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";7.08;34;32;0;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";1.38;34;33;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";7.08;34;33;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";1.38;34;34;1;0;1;1 +"P0430";1;"MERL-MCC";"0";"N";7.08;34;34;1;0;1;1 +"P0430";1;"MICR-POU";"0";"N";0.36;8;18;1;0;1;1 +"P0430";1;"MICR-POU";"0";"N";0.36;8;19;0;0;1;1 +"P0430";1;"MICR-POU";"0";"N";0.36;8;20;3;0;1;1 +"P0430";1;"MICR-POU";"0";"N";0.36;8;21;3;0;1;1 +"P0430";1;"MICR-POU";"0";"N";0.36;8;22;1;0;1;1 +"P0430";1;"SARD-PIL";"0";"N";3.04;45;220;1;0;0;5 +"P0430";1;"SARD-PIL";"0";"N";3.04;45;235;2;0;0;5 +"P0430";1;"SARD-PIL";"0";"N";3.04;45;180;1;0;0;5 +"P0430";1;"SARD-PIL";"0";"N";3.04;45;185;1;0;0;5 +"P0430";1;"SARD-PIL";"0";"N";3.04;45;190;6;0;0;5 +"P0430";1;"SARD-PIL";"0";"N";3.04;45;195;8;0;0;5 +"P0430";1;"SARD-PIL";"0";"N";3.04;45;200;5;0;0;5 +"P0430";1;"SARD-PIL";"0";"N";3.04;45;205;8;0;0;5 +"P0430";1;"SARD-PIL";"0";"N";3.04;45;210;8;0;0;5 +"P0430";1;"SARD-PIL";"0";"N";3.04;45;215;5;0;0;5 +"P0430";1;"SCOM-JAP";"0";"N";0.36;4;19;2;0;1;1 +"P0430";1;"SCOM-JAP";"0";"N";0.36;4;20;1;0;1;1 +"P0430";1;"SCOM-JAP";"0";"N";0.36;4;29;1;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;22;1;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;23;1;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;24;2;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;25;0;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;26;1;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;29;1;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;30;2;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;31;1;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;32;2;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;33;1;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;34;2;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;35;1;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;36;5;0;1;1 +"P0444";1;"DIVE-RS1";"0";"N";1.52;4;0;4;1.52;1;1 +"P0444";1;"ENGR-ENC";"0";"N";1.1;93;110;1;0.01;0;5 +"P0444";1;"ENGR-ENC";"0";"N";1.1;93;115;22;0.22;0;5 +"P0444";1;"ENGR-ENC";"0";"N";1.1;93;120;33;0.38;0;5 +"P0444";1;"ENGR-ENC";"0";"N";1.1;93;125;20;0.25;0;5 +"P0444";1;"ENGR-ENC";"0";"N";1.1;93;130;10;0.13;0;5 +"P0444";1;"ENGR-ENC";"0";"N";1.1;93;135;5;0.07;0;5 +"P0444";1;"ENGR-ENC";"0";"N";1.1;93;140;1;0.02;0;5 +"P0444";1;"ENGR-ENC";"0";"N";1.1;93;145;1;0.02;0;5 +"P0444";1;"ILLE-COI";"0";"N";0.05;4;7;2;0;1;1 +"P0444";1;"ILLE-COI";"0";"N";0.05;4;8;2;0;1;1 +"P0444";1;"MICR-POU";"0";"N";0.2;3;18;1;0;1;1 +"P0444";1;"MICR-POU";"0";"N";0.2;3;27;1;0;1;1 +"P0444";1;"MICR-POU";"0";"N";0.2;3;20;1;0;1;1 +"P0479";1;"ENGR-ENC";"0";"N";1.57;136;100;3;0.01;0;5 +"P0479";1;"ENGR-ENC";"0";"N";1.57;136;105;7;0.05;0;5 +"P0479";1;"ENGR-ENC";"0";"N";1.57;136;110;9;0.07;0;5 +"P0479";1;"ENGR-ENC";"0";"N";1.57;136;115;12;0.11;0;5 +"P0479";1;"ENGR-ENC";"0";"N";1.57;136;120;35;0.39;0;5 +"P0479";1;"ENGR-ENC";"0";"N";1.57;136;125;44;0.54;0;5 +"P0479";1;"ENGR-ENC";"0";"N";1.57;136;130;21;0.29;0;5 +"P0479";1;"ENGR-ENC";"0";"N";1.57;136;135;2;0.03;0;5 +"P0479";1;"ENGR-ENC";"0";"N";1.57;136;140;2;0.03;0;5 +"P0479";1;"ENGR-ENC";"0";"N";1.57;136;155;1;0.02;0;5 +"P0479";1;"ILLE-COI";"0";"N";0.9;1;31;1;0.9;1;1 +"P0479";1;"MERL-MCC";"0";"N";0.8;6;18;1;0;1;1 +"P0479";1;"MERL-MCC";"0";"N";0.8;6;23;1;0;1;1 +"P0479";1;"MERL-MCC";"0";"N";0.8;6;25;1;0;1;1 +"P0479";1;"MERL-MCC";"0";"N";0.8;6;29;1;0;1;1 +"P0479";1;"MERL-MCC";"0";"N";0.8;6;32;1;0;1;1 +"P0479";1;"MERL-MCC";"0";"N";0.8;6;33;1;0;1;1 +"P0479";1;"MICR-POU";"0";"N";2.5;90;6;1;0;1;1 +"P0443";1;"SPRA-SPR";"0";"N";1.07;91;105;8;0;0;5 +"P0443";1;"SPRA-SPR";"0";"N";1.07;91;110;44;0;0;5 +"P0443";1;"SPRA-SPR";"0";"N";1.07;91;115;32;0;0;5 +"P0443";1;"SPRA-SPR";"0";"N";1.07;91;120;6;0;0;5 +"P0443";1;"TRAC-DRA";"0";"N";0.16;1;29;1;0;1;1 +"P0443";1;"TRAC-MED";"0";"N";0.4;4;23;2;0;1;1 +"P0443";1;"TRAC-MED";"0";"N";0.4;4;24;2;0;1;1 +"P0443";1;"TRAC-MED";"0";"N";0.4;4;26;0;0;1;1 +"P0493";1;"SCOM-SCO";"0";"N";4.62;18;32;3;0;1;1 +"P0493";1;"SCOM-SCO";"0";"N";4.62;18;33;6;0;1;1 +"P0493";1;"SCOM-SCO";"0";"N";4.62;18;34;3;0;1;1 +"P0461";1;"ENGR-ENC";"0";"N";1.78;91;150;14;0.34;0;5 +"P0461";1;"ENGR-ENC";"0";"N";1.78;91;155;5;0.13;0;5 +"P0461";1;"MERL-MCC";"0";"N";1.18;3;23;1;0;1;1 +"P0461";1;"MERL-MCC";"0";"N";1.18;3;35;1;0;1;1 +"P0461";1;"MERL-MCC";"0";"N";1.18;3;48;1;0;1;1 +"P0461";1;"SCOM-SCO";"0";"N";4.78;18;29;1;0;1;1 +"P0461";1;"SCOM-SCO";"0";"N";4.78;18;30;4;0;1;1 +"P0461";1;"SCOM-SCO";"0";"N";4.78;18;31;2;0;1;1 +"P0461";1;"SCOM-SCO";"0";"N";4.78;18;32;3;0;1;1 +"P0461";1;"SCOM-SCO";"0";"N";4.78;18;33;2;0;1;1 +"P0461";1;"SCOM-SCO";"0";"N";4.78;18;34;2;0;1;1 +"P0461";1;"SCOM-SCO";"0";"N";4.78;18;35;2;0;1;1 +"P0461";1;"SCOM-SCO";"0";"N";4.78;18;36;1;0;1;1 +"P0461";1;"SCOM-SCO";"0";"N";4.78;18;37;1;0;1;1 +"P0461";1;"TRAC-TRU";"0";"N";3.79;73;16;1;0.05;1;1 +"P0461";1;"TRAC-TRU";"0";"N";3.79;73;17;15;0.67;1;1 +"P0461";1;"TRAC-TRU";"0";"N";3.79;73;18;33;1.68;1;1 +"P0461";1;"TRAC-TRU";"0";"N";3.79;73;19;20;1.14;1;1 +"P0461";1;"TRAC-TRU";"0";"N";3.79;73;20;4;0.25;1;1 +"P0463";1;"TRAC-TRU";"0";"N";2.54;50;23;0;;1;1 +"P0489";1;"ARGE-SPH";"0";"N";0.1;2;18;1;0;1;1 +"P0489";1;"ARGE-SPH";"0";"N";0.1;2;22;1;0;1;1 +"P0489";1;"CLUP-HAR";"0";"N";2.08;11;235;1;0;0;5 +"P0489";1;"CLUP-HAR";"0";"N";2.08;11;250;1;0;0;5 +"P0489";1;"CLUP-HAR";"0";"N";2.08;11;260;3;0;0;5 +"P0489";1;"CLUP-HAR";"0";"N";2.08;11;265;1;0;0;5 +"P0489";1;"CLUP-HAR";"0";"N";2.08;11;270;1;0;0;5 +"P0489";1;"CLUP-HAR";"0";"N";2.08;11;275;2;0;0;5 +"P0489";1;"CLUP-HAR";"0";"N";2.08;11;295;1;0;0;5 +"P0489";1;"CLUP-HAR";"0";"N";2.08;11;315;1;0;0;5 +"P0489";1;"DIVE-RS3";"0";"N";"1.0e-03";20;0;20;;1;1 +"P0489";1;"ENGR-ENC";"0";"N";1.05;24;145;1;0;0;5 +"P0489";1;"ENGR-ENC";"0";"N";1.05;24;165;1;0;0;5 +"P0489";1;"ENGR-ENC";"0";"N";1.05;24;170;5;0;0;5 +"P0489";1;"ENGR-ENC";"0";"N";1.05;24;175;2;0;0;5 +"P0489";1;"ENGR-ENC";"0";"N";1.05;24;180;10;0;0;5 +"P0489";1;"ENGR-ENC";"0";"N";1.05;24;185;4;0;0;5 +"P0489";1;"ENGR-ENC";"0";"N";1.05;24;200;1;0;0;5 +"P0489";1;"ILLE-COI";"0";"N";0.28;1;20;1;0;1;1 +"P0489";1;"MERL-MCC";"0";"N";10.26;16;28;1;0;1;1 +"P0489";1;"MERL-MCC";"0";"N";10.26;16;31;1;0;1;1 +"P0489";1;"MERL-MCC";"0";"N";10.26;16;32;0;0;1;1 +"P0489";1;"MERL-MCC";"0";"N";10.26;16;33;1;0;1;1 +"P0479";1;"MICR-POU";"0";"N";2.5;90;7;4;0;1;1 +"P0479";1;"MICR-POU";"0";"N";2.5;90;8;9;0;1;1 +"P0479";1;"MICR-POU";"0";"N";2.5;90;9;7;0;1;1 +"P0479";1;"MICR-POU";"0";"N";2.5;90;10;12;0;1;1 +"P0479";1;"MICR-POU";"0";"N";2.5;90;11;9;0;1;1 +"P0479";1;"MICR-POU";"0";"N";2.5;90;12;7;0;1;1 +"P0479";1;"MICR-POU";"0";"N";2.5;90;13;10;0;1;1 +"P0479";1;"MICR-POU";"0";"N";2.5;90;14;1;0;1;1 +"P0479";1;"MICR-POU";"0";"N";2.5;90;19;6;0;1;1 +"P0479";1;"MICR-POU";"0";"N";2.5;90;20;13;0;1;1 +"P0479";1;"MICR-POU";"0";"N";2.5;90;21;4;0;1;1 +"P0479";1;"MICR-POU";"0";"N";2.5;90;22;3;0;1;1 +"P0479";1;"MICR-POU";"0";"N";2.5;90;23;1;0;1;1 +"P0479";1;"MICR-POU";"0";"N";2.5;90;27;1;0;1;1 +"P0479";1;"MICR-POU";"0";"N";2.5;90;30;1;0;1;1 +"P0479";1;"MICR-POU";"0";"N";2.5;90;31;1;0;1;1 +"P0479";1;"MYCT-OPX";"0";"N";"4.0e-03";5;0;5;;1;1 +"P0479";1;"TRAC-TRU";"0";"N";0.04;1;17;1;0.04;1;1 +"P0410";1;"SCOM-SCO";"0";"N";1.86;20;25;1;0.1;1;1 +"P0410";1;"SCOM-SCO";"0";"N";1.86;20;26;1;0.12;1;1 +"P0409";1;"TRAC-TRU";"0";"N";2.16;73;15;19;0.5;1;1 +"P0409";1;"TRAC-TRU";"0";"N";2.16;73;16;37;1.19;1;1 +"P0409";1;"TRAC-TRU";"0";"N";2.16;73;17;5;0.19;1;1 +"P0378";1;"SCOM-SCO";"0";"N";9.72;32;40;1;0.46;1;1 +"P0378";1;"TRAC-TRU";"0";"N";1.46;80;10;7;0.05;1;1 +"P0378";1;"TRAC-TRU";"0";"N";1.46;80;11;60;0.62;1;1 +"P0378";1;"TRAC-TRU";"0";"N";1.46;80;12;9;0.09;1;1 +"P0378";1;"TRAC-TRU";"0";"N";1.46;80;13;1;0.01;1;1 +"P0378";1;"TRAC-TRU";"0";"N";1.46;80;14;0;0;1;1 +"P0378";1;"TRAC-TRU";"0";"N";1.46;80;15;0;0;1;1 +"P0378";1;"TRAC-TRU";"0";"N";1.46;80;16;1;0.03;1;1 +"P0378";1;"TRAC-TRU";"0";"N";1.46;80;30;1;0.21;1;1 +"P0378";1;"TRAC-TRU";"0";"N";1.46;80;31;1;0.23;1;1 +"P0379";1;"TRAC-TRU";"0";"N";3.46;89;20;2;0.06;1;1 +"P0379";1;"TRAC-TRU";"0";"N";3.46;89;21;1;0.07;1;1 +"P0443";1;"TRAC-TRU";"0";"N";2.14;60;14;6;0;1;1 +"P0443";1;"TRAC-TRU";"0";"N";2.14;60;15;22;0;1;1 +"P0443";1;"TRAC-TRU";"0";"N";2.14;60;16;21;0;1;1 +"P0443";1;"TRAC-TRU";"0";"N";2.14;60;17;9;0;1;1 +"P0443";1;"TRAC-TRU";"0";"N";2.14;60;18;1;0;1;1 +"P0443";1;"TRAC-TRU";"0";"N";2.14;60;19;0;0;1;1 +"P0443";1;"TRAC-TRU";"0";"N";2.14;60;23;1;0;1;1 +"P0390";1;"TRAC-TRU";"0";"N";0.41;22;19;1;0.05;1;1 +"P0441";1;"ENGR-ENC";"0";"N";3.12;239;110;1;0.01;0;5 +"P0441";1;"ENGR-ENC";"0";"N";3.12;239;115;1;0.01;0;5 +"P0441";1;"ENGR-ENC";"0";"N";3.12;239;120;18;0.2;0;5 +"P0441";1;"ENGR-ENC";"0";"N";3.12;239;125;92;1.12;0;5 +"P0441";1;"ENGR-ENC";"0";"N";3.12;239;130;88;1.16;0;5 +"P0441";1;"ENGR-ENC";"0";"N";3.12;239;135;26;0.38;0;5 +"P0441";1;"ENGR-ENC";"0";"N";3.12;239;140;10;0.17;0;5 +"P0441";1;"ENGR-ENC";"0";"N";3.12;239;145;3;0.05;0;5 +"P0441";1;"EUTR-GUR";"0";"N";0.49;5;21;1;0;1;1 +"P0441";1;"EUTR-GUR";"0";"N";0.49;5;22;0;0;1;1 +"P0441";1;"EUTR-GUR";"0";"N";0.49;5;23;1;0;1;1 +"P0441";1;"EUTR-GUR";"0";"N";0.49;5;24;0;0;1;1 +"P0441";1;"EUTR-GUR";"0";"N";0.49;5;25;1;0;1;1 +"P0441";1;"EUTR-GUR";"0";"N";0.49;5;26;2;0;1;1 +"P0441";1;"MERL-MCC";"0";"N";0.63;5;24;1;0;1;1 +"P0441";1;"MERL-MCC";"0";"N";0.63;5;25;1;0;1;1 +"P0441";1;"MERL-MCC";"0";"N";0.63;5;26;1;0;1;1 +"P0441";1;"MERL-MCC";"0";"N";0.63;5;27;1;0;1;1 +"P0441";1;"MERL-MCC";"0";"N";0.63;5;28;0;0;1;1 +"P0441";1;"MERL-MCC";"0";"N";0.63;5;29;1;0;1;1 +"P0441";1;"SARD-PIL";"0";"N";0.31;8;160;2;0;0;5 +"P0441";1;"SARD-PIL";"0";"N";0.31;8;165;3;0;0;5 +"P0441";1;"SARD-PIL";"0";"N";0.31;8;185;1;0;0;5 +"P0441";1;"SARD-PIL";"0";"N";0.31;8;190;1;0;0;5 +"P0441";1;"SARD-PIL";"0";"N";0.31;8;210;1;0;0;5 +"P0441";1;"SCOM-JAP";"0";"N";11.28;37;31;2;0;1;1 +"P0441";1;"SCOM-JAP";"0";"N";11.28;37;32;4;0;1;1 +"P0441";1;"SCOM-JAP";"0";"N";11.28;37;33;19;0;1;1 +"P0441";1;"SCOM-JAP";"0";"N";11.28;37;34;12;0;1;1 +"P0436";1;"SARD-PIL";"0";"N";9.33;145;230;3;0.3;0;5 +"P0436";1;"SARD-PIL";"0";"N";9.33;145;235;0;0;0;5 +"P0436";1;"SARD-PIL";"0";"N";9.33;145;240;1;0.09;0;5 +"P0436";1;"SARD-PIL";"0";"N";9.33;145;245;1;0.1;0;5 +"P0436";1;"SCOM-JAP";"0";"N";10.96;45;20;1;0;1;1 +"P0436";1;"SCOM-JAP";"0";"N";10.96;45;21;1;0;1;1 +"P0436";1;"SCOM-JAP";"0";"N";10.96;45;22;3;0;1;1 +"P0436";1;"SCOM-JAP";"0";"N";10.96;45;29;1;0;1;1 +"P0436";1;"SCOM-JAP";"0";"N";10.96;45;30;7;0;1;1 +"P0436";1;"SCOM-JAP";"0";"N";10.96;45;31;5;0;1;1 +"P0436";1;"SCOM-JAP";"0";"N";10.96;45;32;9;0;1;1 +"P0436";1;"SCOM-JAP";"0";"N";10.96;45;33;13;0;1;1 +"P0436";1;"SCOM-JAP";"0";"N";10.96;45;34;5;0;1;1 +"P0390";1;"ZEUS-FAB";"0";"N";0.64;1;34;1;0.65;1;1 +"P0464";1;"CAPR-APE";"0";"N";0.91;56;8;21;0;1;1 +"P0464";1;"CAPR-APE";"0";"N";0.91;56;9;29;0;1;1 +"P0464";1;"CAPR-APE";"0";"N";0.91;56;10;6;0;1;1 +"P0464";1;"DIVE-RS1";"0";"N";0.09;7;0;7;;1;1 +"P0464";1;"DIVE-RS2";"0";"N";0.19;31;0;31;;1;1 +"P0464";1;"ENGR-ENC";"0";"N";0.65;20;140;4;0;0;5 +"P0464";1;"ENGR-ENC";"0";"N";0.65;20;145;1;0;0;5 +"P0464";1;"ENGR-ENC";"0";"N";0.65;20;150;4;0;0;5 +"P0464";1;"ENGR-ENC";"0";"N";0.65;20;155;2;0;0;5 +"P0464";1;"ENGR-ENC";"0";"N";0.65;20;160;1;0;0;5 +"P0464";1;"ENGR-ENC";"0";"N";0.65;20;165;2;0;0;5 +"P0464";1;"ENGR-ENC";"0";"N";0.65;20;170;1;0;0;5 +"P0464";1;"ENGR-ENC";"0";"N";0.65;20;175;2;0;0;5 +"P0464";1;"ENGR-ENC";"0";"N";0.65;20;180;1;0;0;5 +"P0464";1;"ENGR-ENC";"0";"N";0.65;20;185;1;0;0;5 +"P0464";1;"ENGR-ENC";"0";"N";0.65;20;195;1;0;0;5 +"P0464";1;"MERL-MCC";"0";"N";1.63;4;35;1;0;1;1 +"P0464";1;"MERL-MCC";"0";"N";1.63;4;36;1;0;1;1 +"P0464";1;"MERL-MCC";"0";"N";1.63;4;39;1;0;1;1 +"P0464";1;"MERL-MCC";"0";"N";1.63;4;47;1;0;1;1 +"P0464";1;"SCOM-JAP";"0";"N";0.29;1;33;1;0;1;1 +"P0464";1;"TRAC-TRU";"0";"N";4.06;69;17;2;0;1;1 +"P0464";1;"TRAC-TRU";"0";"N";4.06;69;18;20;0;1;1 +"P0464";1;"TRAC-TRU";"0";"N";4.06;69;19;29;0;1;1 +"P0464";1;"TRAC-TRU";"0";"N";4.06;69;20;17;0;1;1 +"P0464";1;"TRAC-TRU";"0";"N";4.06;69;21;1;0;1;1 +"P0468";1;"AMMO-TOB";"0";"N";0.08;2;24;1;0;1;1 +"P0468";1;"AMMO-TOB";"0";"N";0.08;2;26;1;0;1;1 +"P0468";1;"ENGR-ENC";"0";"N";1.3;86;120;6;0.06;0;5 +"P0468";1;"ENGR-ENC";"0";"N";1.3;86;125;16;0.22;0;5 +"P0468";1;"ENGR-ENC";"0";"N";1.3;86;130;26;0.37;0;5 +"P0468";1;"ENGR-ENC";"0";"N";1.3;86;135;22;0.35;0;5 +"P0468";1;"ENGR-ENC";"0";"N";1.3;86;140;12;0.21;0;5 +"P0468";1;"ENGR-ENC";"0";"N";1.3;86;145;3;0.05;0;5 +"P0468";1;"ENGR-ENC";"0";"N";1.3;86;155;1;0.02;0;5 +"P0468";1;"ILLE-COI";"0";"N";0.02;2;15;1;0;1;1 +"P0468";1;"ILLE-COI";"0";"N";0.02;2;17;1;0;1;1 +"P0489";1;"MERL-MCC";"0";"N";10.26;16;34;1;0;1;1 +"P0489";1;"MERL-MCC";"0";"N";10.26;16;35;1;0;1;1 +"P0489";1;"MERL-MCC";"0";"N";10.26;16;36;1;0;1;1 +"P0489";1;"MERL-MCC";"0";"N";10.26;16;37;2;0;1;1 +"P0489";1;"MERL-MCC";"0";"N";10.26;16;40;1;0;1;1 +"P0489";1;"MERL-MCC";"0";"N";10.26;16;44;1;0;1;1 +"P0489";1;"MERL-MCC";"0";"N";10.26;16;49;1;0;1;1 +"P0489";1;"MERL-MCC";"0";"N";10.26;16;55;1;0;1;1 +"P0500";1;"SARD-PIL";"0";"N";1.71;27;210;3;0;0;5 +"P0500";1;"SARD-PIL";"0";"N";1.71;27;215;3;0;0;5 +"P0500";1;"SARD-PIL";"0";"N";1.71;27;220;2;0;0;5 +"P0500";1;"SCOM-JAP";"0";"N";6.38;46;21;2;0;1;1 +"P0500";1;"SCOM-JAP";"0";"N";6.38;46;22;11;0;1;1 +"P0500";1;"SCOM-JAP";"0";"N";6.38;46;23;11;0;1;1 +"P0500";1;"SCOM-JAP";"0";"N";6.38;46;24;12;0;1;1 +"P0500";1;"SCOM-JAP";"0";"N";6.38;46;25;1;0;1;1 +"P0500";1;"SCOM-JAP";"0";"N";6.38;46;26;1;0;1;1 +"P0500";1;"SCOM-JAP";"0";"N";6.38;46;32;2;0;1;1 +"P0500";1;"SCOM-JAP";"0";"N";6.38;46;33;4;0;1;1 +"P0500";1;"SCOM-JAP";"0";"N";6.38;46;34;1;0;1;1 +"P0500";1;"SCOM-JAP";"0";"N";6.38;46;35;0;0;1;1 +"P0500";1;"SCOM-JAP";"0";"N";6.38;46;36;1;0;1;1 +"P0500";1;"SCOM-SCO";"0";"N";21.8;58;28;1;0.16;1;1 +"P0500";1;"SCOM-SCO";"0";"N";21.8;58;29;1;0.17;1;1 +"P0500";1;"SCOM-SCO";"0";"N";21.8;58;30;3;0.6;1;1 +"P0500";1;"SCOM-SCO";"0";"N";21.8;58;31;6;1.36;1;1 +"P0500";1;"SCOM-SCO";"0";"N";21.8;58;32;4;1.04;1;1 +"P0500";1;"SCOM-SCO";"0";"N";21.8;58;33;7;1.93;1;1 +"P0500";1;"SCOM-SCO";"0";"N";21.8;58;34;2;0.61;1;1 +"P0500";1;"SCOM-SCO";"0";"N";21.8;58;35;4;1.3;1;1 +"P0500";1;"SCOM-SCO";"0";"N";21.8;58;36;1;0.31;1;1 +"P0500";1;"SCOM-SCO";"0";"N";21.8;58;37;0;0;1;1 +"P0500";1;"SCOM-SCO";"0";"N";21.8;58;38;4;1.72;1;1 +"P0500";1;"SCOM-SCO";"0";"N";21.8;58;39;8;3.46;1;1 +"P0500";1;"SCOM-SCO";"0";"N";21.8;58;40;6;2.86;1;1 +"P0500";1;"SCOM-SCO";"0";"N";21.8;58;41;5;2.47;1;1 +"P0500";1;"SCOM-SCO";"0";"N";21.8;58;42;0;0;1;1 +"P0500";1;"SCOM-SCO";"0";"N";21.8;58;43;6;3.61;1;1 +"P0500";1;"SCOM-SCO";"0";"N";21.8;58;45;0;;1;1 +"P0500";1;"TRAC-TRU";"0";"N";7.18;97;18;1;0;1;1 +"P0500";1;"TRAC-TRU";"0";"N";7.18;97;19;12;0;1;1 +"P0500";1;"TRAC-TRU";"0";"N";7.18;97;20;55;0;1;1 +"P0500";1;"TRAC-TRU";"0";"N";7.18;97;21;20;0;1;1 +"P0500";1;"TRAC-TRU";"0";"N";7.18;97;22;6;0;1;1 +"P0500";1;"TRAC-TRU";"0";"N";7.18;97;23;1;0;1;1 +"P0501";1;"TRAC-TRU";"0";"N";12.3;35;34;6;2.1;1;1 +"P0501";1;"TRAC-TRU";"0";"N";12.3;35;35;3;1.16;1;1 +"P0501";1;"TRAC-TRU";"0";"N";12.3;35;36;2;0.87;1;1 +"P0501";1;"TRAC-TRU";"0";"N";12.3;35;37;6;2.58;1;1 +"P0501";1;"TRAC-TRU";"0";"N";12.3;35;38;2;0.97;1;1 +"P0501";1;"TRAC-TRU";"0";"N";12.3;35;39;0;0;1;1 +"P0501";1;"TRAC-TRU";"0";"N";12.3;35;40;1;0.54;1;1 +"P0506";1;"ENGR-ENC";"0";"N";0.04;1;175;1;0;0;5 +"P0506";1;"MERL-MCC";"0";"N";0.8;5;26;1;0;1;1 +"P0506";1;"MERL-MCC";"0";"N";0.8;5;29;2;0;1;1 +"P0506";1;"MERL-MCC";"0";"N";0.8;5;30;1;0;1;1 +"P0506";1;"MERL-MCC";"0";"N";0.8;5;33;1;0;1;1 +"P0506";1;"MICR-POU";"0";"N";0.16;3;19;1;0;1;1 +"P0506";1;"MICR-POU";"0";"N";0.16;3;20;1;0;1;1 +"P0506";1;"MICR-POU";"0";"N";0.16;3;21;1;0;1;1 +"P0506";1;"SCOM-SCO";"0";"N";0.49;2;31;1;0;1;1 +"P0506";1;"SCOM-SCO";"0";"N";0.49;2;32;1;0;1;1 +"P0506";1;"TODA-EBL";"0";"N";0.25;1;15;1;0;1;1 +"P0509";1;"BELO-BEO";"0";"N";6.62;14;49;1;0;1;1 +"P0509";1;"BELO-BEO";"0";"N";6.62;14;63;1;0;1;1 +"P0509";1;"BELO-BEO";"0";"N";6.62;14;64;1;0;1;1 +"P0509";1;"BELO-BEO";"0";"N";6.62;14;65;1;0;1;1 +"P0509";1;"BELO-BEO";"0";"N";6.62;14;70;1;0;1;1 +"P0509";1;"BELO-BEO";"0";"N";6.62;14;71;1;;1;1 +"P0509";1;"BELO-BEO";"0";"N";6.62;14;72;1;0;1;1 +"P0509";1;"BELO-BEO";"0";"N";6.62;14;73;2;0;1;1 +"P0509";1;"BELO-BEO";"0";"N";6.62;14;74;1;0;1;1 +"P0509";1;"BELO-BEO";"0";"N";6.62;14;77;1;0;1;1 +"P0509";1;"BELO-BEO";"0";"N";6.62;14;81;1;0;1;1 +"P0509";1;"BELO-BEO";"0";"N";6.62;14;82;0;0;1;1 +"P0509";1;"BELO-BEO";"0";"N";6.62;14;83;1;0;1;1 +"P0509";1;"BELO-BEO";"0";"N";6.62;14;84;0;0;1;1 +"P0509";1;"BELO-BEO";"0";"N";6.62;14;85;0;0;1;1 +"P0509";1;"BELO-BEO";"0";"N";6.62;14;86;1;0;1;1 +"P0509";1;"ENGR-ENC";"0";"N";2.87;84;145;2;0.05;0;5 +"P0509";1;"ENGR-ENC";"0";"N";2.87;84;150;6;0.15;0;5 +"P0509";1;"ENGR-ENC";"0";"N";2.87;84;155;12;0.32;0;5 +"P0509";1;"ENGR-ENC";"0";"N";2.87;84;160;16;0.47;0;5 +"P0509";1;"ENGR-ENC";"0";"N";2.87;84;165;8;0.26;0;5 +"P0509";1;"ENGR-ENC";"0";"N";2.87;84;170;7;0.25;0;5 +"P0509";1;"ENGR-ENC";"0";"N";2.87;84;175;13;0.51;0;5 +"P0509";1;"ENGR-ENC";"0";"N";2.87;84;180;9;0.36;0;5 +"P0509";1;"ENGR-ENC";"0";"N";2.87;84;185;11;0.47;0;5 +"P0509";1;"ENGR-ENC";"0";"N";2.87;84;195;0;;0;5 +"P0509";1;"MOLA-MOL";"0";"N";9.2;1;55;1;0;1;1 +"P0509";1;"PRIO-GLA";"0";"F";5;1;114;1;;1;1 +"P0509";1;"SARD-PIL";"0";"N";5.39;112;160;3;0.1;0;5 +"P0509";1;"SARD-PIL";"0";"N";5.39;112;165;9;0.33;0;5 +"P0509";1;"SARD-PIL";"0";"N";5.39;112;170;15;0.58;0;5 +"P0509";1;"SARD-PIL";"0";"N";5.39;112;175;30;1.23;0;5 +"P0509";1;"SARD-PIL";"0";"N";5.39;112;180;15;0.63;0;5 +"P0509";1;"SARD-PIL";"0";"N";5.39;112;185;10;0.5;0;5 +"P0510";1;"SCOM-SCO";"0";"N";0.33;1;36;1;0;1;1 +"P0510";1;"TRAC-TRU";"0";"N";8.68;102;18;5;0.27;1;1 +"P0510";1;"TRAC-TRU";"0";"N";8.68;102;19;27;1.77;1;1 +"P0510";1;"TRAC-TRU";"0";"N";8.68;102;20;40;2.87;1;1 +"P0510";1;"TRAC-TRU";"0";"N";8.68;102;21;16;1.34;1;1 +"P0510";1;"TRAC-TRU";"0";"N";8.68;102;22;2;0.17;1;1 +"P0510";1;"TRAC-TRU";"0";"N";8.68;102;23;0;0;1;1 +"P0510";1;"TRAC-TRU";"0";"N";8.68;102;24;1;0.12;1;1 +"P0510";1;"TRAC-TRU";"0";"N";8.68;102;25;0;0;1;1 +"P0510";1;"TRAC-TRU";"0";"N";8.68;102;26;1;0.17;1;1 +"P0510";1;"TRAC-TRU";"0";"N";8.68;102;27;3;0.52;1;1 +"P0510";1;"TRAC-TRU";"0";"N";8.68;102;28;3;0.52;1;1 +"P0510";1;"TRAC-TRU";"0";"N";8.68;102;29;1;0.18;1;1 +"P0510";1;"TRAC-TRU";"0";"N";8.68;102;30;2;0.43;1;1 +"P0510";1;"TRAC-TRU";"0";"N";8.68;102;31;0;0;1;1 +"P0510";1;"TRAC-TRU";"0";"N";8.68;102;32;0;0;1;1 +"P0510";1;"TRAC-TRU";"0";"N";8.68;102;33;1;0.3;1;1 +"P0511";1;"BELO-BEO";"0";"N";2.44;6;55;1;0;1;1 +"P0511";1;"BELO-BEO";"0";"N";2.44;6;65;2;0;1;1 +"P0511";1;"BELO-BEO";"0";"N";2.44;6;67;1;0;1;1 +"P0511";1;"BELO-BEO";"0";"N";2.44;6;72;1;0;1;1 +"P0511";1;"BELO-BEO";"0";"N";2.44;6;85;1;0;1;1 +"P0511";1;"DIVE-RS1";"0";"N";0.5;55;0;55;;1;1 +"P0511";1;"DIVE-RS2";"0";"N";0.05;8;0;8;;1;1 +"P0511";1;"ENGR-ENC";"0";"N";0.53;15;150;1;0;0;5 +"P0511";1;"ENGR-ENC";"0";"N";0.53;15;155;1;0;0;5 +"P0511";1;"ENGR-ENC";"0";"N";0.53;15;160;1;0;0;5 +"P0511";1;"ENGR-ENC";"0";"N";0.53;15;165;2;0;0;5 +"P0511";1;"ENGR-ENC";"0";"N";0.53;15;170;3;0;0;5 +"P0511";1;"ENGR-ENC";"0";"N";0.53;15;175;2;0;0;5 +"P0511";1;"ENGR-ENC";"0";"N";0.53;15;180;4;0;0;5 +"P0511";1;"ENGR-ENC";"0";"N";0.53;15;185;1;0;0;5 +"P0511";1;"LOPH-PIS";"0";"N";0.03;1;12;1;0;1;1 +"P0511";1;"SARD-PIL";"0";"N";5.83;82;180;1;0.05;0;5 +"P0511";1;"SARD-PIL";"0";"N";5.83;82;190;2;0.11;0;5 +"P0511";1;"SARD-PIL";"0";"N";5.83;82;195;11;0.6;0;5 +"P0511";1;"SARD-PIL";"0";"N";5.83;82;200;12;0.75;0;5 +"P0511";1;"SARD-PIL";"0";"N";5.83;82;205;8;0.53;0;5 +"P0511";1;"SARD-PIL";"0";"N";5.83;82;210;12;0.86;0;5 +"P0511";1;"SARD-PIL";"0";"N";5.83;82;215;19;1.45;0;5 +"P0511";1;"SARD-PIL";"0";"N";5.83;82;220;8;0.65;0;5 +"P0511";1;"SARD-PIL";"0";"N";5.83;82;225;3;0.25;0;5 +"P0511";1;"SARD-PIL";"0";"N";5.83;82;230;3;0.27;0;5 +"P0511";1;"SARD-PIL";"0";"N";5.83;82;235;3;0.28;0;5 +"P0511";1;"SCOM-SCO";"0";"N";3.18;32;22;12;0;1;1 +"P0511";1;"SCOM-SCO";"0";"N";3.18;32;23;10;0;1;1 +"P0511";1;"SCOM-SCO";"0";"N";3.18;32;24;5;0;1;1 +"P0511";1;"SCOM-SCO";"0";"N";3.18;32;25;2;0;1;1 +"P0511";1;"SCOM-SCO";"0";"N";3.18;32;26;1;0;1;1 +"P0511";1;"SCOM-SCO";"0";"N";3.18;32;27;0;0;1;1 +"P0511";1;"SCOM-SCO";"0";"N";3.18;32;28;2;0;1;1 +"P0500";1;"TRAC-TRU";"0";"N";7.18;97;29;1;0;1;1 +"P0500";1;"TRAC-TRU";"0";"N";7.18;97;30;1;0;1;1 +"P0501";1;"TRAC-TRU";"0";"N";12.3;35;41;1;0.53;1;1 +"P0493";1;"SCOM-SCO";"0";"N";4.62;18;37;1;0;1;1 +"P0485";1;"PETR-MAR";"0";"N";0.08;1;34;1;0;1;1 +"P0385";1;"TRAC-TRU";"0";"N";2.16;81;18;0;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;37;1;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;38;1;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;39;1;0;1;1 +"P0512";1;"CAPR-APE";"0";"N";4.36;74;9;1;0.02;1;1 +"P0512";1;"CAPR-APE";"0";"N";4.36;74;10;0;0;1;1 +"P0512";1;"CAPR-APE";"0";"N";4.36;74;11;3;0.1;1;1 +"P0512";1;"CAPR-APE";"0";"N";4.36;74;12;17;0.71;1;1 +"P0512";1;"CAPR-APE";"0";"N";4.36;74;13;17;0.88;1;1 +"P0512";1;"CAPR-APE";"0";"N";4.36;74;14;18;1.18;1;1 +"P0512";1;"CAPR-APE";"0";"N";4.36;74;15;17;1.36;1;1 +"P0512";1;"CAPR-APE";"0";"N";4.36;74;16;1;0.09;1;1 +"P0512";1;"MERL-MCC";"0";"N";2.9;3;33;1;0;1;1 +"P0512";1;"MERL-MCC";"0";"N";2.9;3;45;1;0;1;1 +"P0512";1;"MERL-MCC";"0";"N";2.9;3;70;1;0;1;1 +"P0512";1;"SCOM-SCO";"0";"N";8.24;37;27;2;0;1;1 +"P0512";1;"SCOM-SCO";"0";"N";8.24;37;28;5;0;1;1 +"P0512";1;"SCOM-SCO";"0";"N";8.24;37;29;6;0;1;1 +"P0512";1;"SCOM-SCO";"0";"N";8.24;37;30;7;0;1;1 +"P0512";1;"SCOM-SCO";"0";"N";8.24;37;31;10;0;1;1 +"P0512";1;"SCOM-SCO";"0";"N";8.24;37;32;4;0;1;1 +"P0512";1;"SCOM-SCO";"0";"N";8.24;37;33;3;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";2;36;19;1;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";0.22;36;19;1;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";2;36;26;1;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";0.22;36;26;1;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";2;36;19;2;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";0.22;36;19;2;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";2;36;20;1;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";0.22;36;20;1;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";2;36;21;2;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";0.22;36;21;2;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";2;36;24;2;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";0.22;36;24;2;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";2;36;25;2;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";0.22;36;25;2;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";2;36;26;5;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";0.22;36;26;5;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";2;36;27;1;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";0.22;36;27;1;0;1;1 +"P0385";1;"TRAC-TRU";"0";"N";2.16;81;25;1;0.12;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;40;1;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;41;0;0;1;1 +"P0430";1;"SCOM-SCO";"0";"N";6.7;25;42;1;0;1;1 +"P0430";1;"TRAC-TRU";"0";"N";2.32;60;15;5;0;1;1 +"P0430";1;"TRAC-TRU";"0";"N";2.32;60;16;32;0;1;1 +"P0430";1;"TRAC-TRU";"0";"N";2.32;60;17;21;0;1;1 +"P0430";1;"TRAC-TRU";"0";"N";2.32;60;18;2;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";2;36;29;1;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";0.22;36;29;1;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";2;36;30;0;0;1;1 +"P0512";1;"TRAC-TRU";"0";"N";0.22;36;30;0;0;1;1 +"P0523";1;"ALLO-TEZ";"0";"N";0.02;4;0;4;0;1;1 +"P0523";1;"DIVE-RS1";"0";"N";0.49;2;0;2;;1;1 +"P0523";1;"ENGR-ENC";"0";"N";0.57;85;90;1;"5.0e-03";0;5 +"P0523";1;"ENGR-ENC";"0";"N";0.57;85;95;12;0.06;0;5 +"P0523";1;"ENGR-ENC";"0";"N";0.57;85;100;38;0.23;0;5 +"P0523";1;"ENGR-ENC";"0";"N";0.57;85;105;19;0.13;0;5 +"P0523";1;"ENGR-ENC";"0";"N";0.57;85;110;12;0.1;0;5 +"P0523";1;"ENGR-ENC";"0";"N";0.57;85;115;2;0.02;0;5 +"P0523";1;"ENGR-ENC";"0";"N";0.57;85;130;1;0.01;0;5 +"P0523";1;"ENGR-ENC";"0";"N";0.57;85;140;0;;0;5 +"P0523";1;"MERL-MCC";"0";"N";0.11;1;25;1;0;1;1 +"P0523";1;"SCOM-SCO";"0";"N";0.01;2;8;1;0;1;1 +"P0523";1;"SCOM-SCO";"0";"N";0.01;2;9;1;0;1;1 +"P0523";1;"SPRA-SPR";"0";"N";0.9;79;100;2;0;0;5 +"P0523";1;"SPRA-SPR";"0";"N";0.9;79;105;14;0;0;5 +"P0523";1;"SPRA-SPR";"0";"N";0.9;79;110;43;0;0;5 +"P0523";1;"SPRA-SPR";"0";"N";0.9;79;115;17;0;0;5 +"P0523";1;"SPRA-SPR";"0";"N";0.9;79;120;2;0;0;5 +"P0523";1;"SPRA-SPR";"0";"N";0.9;79;125;1;0;0;5 +"P0523";1;"TRAC-DRA";"0";"N";0.04;1;19;1;0;1;1 +"P0523";1;"TRAC-TRU";"0";"N";0.02;3;9;1;0;1;1 +"P0523";1;"TRAC-TRU";"0";"N";0.02;3;10;2;0;1;1 +"P0535";1;"ENGR-ENC";"0";"N";0.81;86;100;2;0.01;0;5 +"P0535";1;"ENGR-ENC";"0";"N";0.81;86;105;10;0.07;0;5 +"P0535";1;"ENGR-ENC";"0";"N";0.81;86;110;22;0.18;0;5 +"P0535";1;"ENGR-ENC";"0";"N";0.81;86;115;26;0.24;0;5 +"P0535";1;"ENGR-ENC";"0";"N";0.81;86;120;13;0.14;0;5 +"P0535";1;"ENGR-ENC";"0";"N";0.81;86;125;7;0.08;0;5 +"P0535";1;"ENGR-ENC";"0";"N";0.81;86;130;4;0.06;0;5 +"P0535";1;"ENGR-ENC";"0";"N";0.81;86;135;2;0.03;0;5 +"P0535";1;"MERL-MCC";"0";"N";0.62;6;22;1;0;1;1 +"P0535";1;"MERL-MCC";"0";"N";0.62;6;23;3;0;1;1 +"P0535";1;"MERL-MCC";"0";"N";0.62;6;24;0;0;1;1 +"P0535";1;"MERL-MCC";"0";"N";0.62;6;25;1;0;1;1 +"P0535";1;"MERL-MCC";"0";"N";0.62;6;26;0;0;1;1 +"P0535";1;"TRAC-TRU";"0";"N";0.06;6;11;4;0;1;1 +"P0545";1;"ENGR-ENC";"0";"N";1.92;119;115;1;0.01;0;5 +"P0545";1;"ENGR-ENC";"0";"N";1.92;119;120;5;0.06;0;5 +"P0545";1;"ENGR-ENC";"0";"N";1.92;119;125;21;0.27;0;5 +"P0545";1;"ENGR-ENC";"0";"N";1.92;119;130;44;0.64;0;5 +"P0545";1;"ENGR-ENC";"0";"N";1.92;119;135;26;0.43;0;5 +"P0545";1;"ENGR-ENC";"0";"N";1.92;119;140;10;0.18;0;5 +"P0545";1;"ENGR-ENC";"0";"N";1.92;119;145;6;0.14;0;5 +"P0545";1;"ENGR-ENC";"0";"N";1.92;119;150;2;0.05;0;5 +"P0545";1;"ENGR-ENC";"0";"N";1.92;119;155;2;0.05;0;5 +"P0545";1;"ENGR-ENC";"0";"N";1.92;119;160;1;0.03;0;5 +"P0545";1;"ENGR-ENC";"0";"N";1.92;119;165;0;0;0;5 +"P0545";1;"ENGR-ENC";"0";"N";1.92;119;170;1;0.03;0;5 +"P0545";1;"MERL-MCC";"0";"N";3.46;25;20;2;0;1;1 +"P0545";1;"MERL-MCC";"0";"N";3.46;25;21;1;0;1;1 +"P0545";1;"MERL-MCC";"0";"N";3.46;25;22;1;0;1;1 +"P0545";1;"MERL-MCC";"0";"N";3.46;25;23;3;0;1;1 +"P0545";1;"MERL-MCC";"0";"N";3.46;25;24;2;0;1;1 +"P0545";1;"MERL-MCC";"0";"N";3.46;25;25;4;0;1;1 +"P0429";1;"SARD-PIL";"0";"N";7.43;108;190;5;0.28;0;5 +"P0429";1;"SCOM-JAP";"0";"N";9.34;92;20;23;0;1;1 +"P0429";1;"SCOM-JAP";"0";"N";9.34;92;21;27;0;1;1 +"P0429";1;"SCOM-JAP";"0";"N";9.34;92;22;9;0;1;1 +"P0429";1;"SCOM-JAP";"0";"N";9.34;92;23;6;0;1;1 +"P0429";1;"SCOM-JAP";"0";"N";9.34;92;24;3;0;1;1 +"P0429";1;"SCOM-JAP";"0";"N";9.34;92;25;1;0;1;1 +"P0429";1;"SCOM-JAP";"0";"N";9.34;92;26;2;0;1;1 +"P0429";1;"SCOM-JAP";"0";"N";9.34;92;27;1;0;1;1 +"P0429";1;"SCOM-JAP";"0";"N";9.34;92;30;5;0;1;1 +"P0429";1;"SCOM-JAP";"0";"N";9.34;92;31;1;0;1;1 +"P0429";1;"SCOM-JAP";"0";"N";9.34;92;32;1;0;1;1 +"P0429";1;"SCOM-JAP";"0";"N";9.34;92;33;0;0;1;1 +"P0429";1;"SCOM-JAP";"0";"N";9.34;92;34;2;0;1;1 +"P0429";1;"SCOM-JAP";"0";"N";9.34;92;35;1;0;1;1 +"P0429";1;"SCOM-JAP";"0";"N";9.34;92;38;1;0;1;1 +"P0429";1;"SCOM-JAP";"0";"N";9.34;92;18;1;0;1;1 +"P0429";1;"SCOM-JAP";"0";"N";9.34;92;19;8;0;1;1 +"P0429";1;"SCOM-SCO";"0";"N";20.96;170;21;2;0;1;1 +"P0429";1;"SCOM-SCO";"0";"N";20.96;170;22;31;0;1;1 +"P0429";1;"SCOM-SCO";"0";"N";20.96;170;23;73;0;1;1 +"P0429";1;"SCOM-SCO";"0";"N";20.96;170;24;33;0;1;1 +"P0429";1;"SCOM-SCO";"0";"N";20.96;170;25;9;0;1;1 +"P0429";1;"SCOM-SCO";"0";"N";20.96;170;31;2;0;1;1 +"P0429";1;"SCOM-SCO";"0";"N";20.96;170;32;2;0;1;1 +"P0429";1;"SCOM-SCO";"0";"N";20.96;170;33;4;0;1;1 +"P0429";1;"SCOM-SCO";"0";"N";20.96;170;34;3;0;1;1 +"P0429";1;"SCOM-SCO";"0";"N";20.96;170;35;1;0;1;1 +"P0429";1;"SCOM-SCO";"0";"N";20.96;170;36;2;0;1;1 +"P0429";1;"SCOM-SCO";"0";"N";20.96;170;37;1;0;1;1 +"P0429";1;"SCOM-SCO";"0";"N";20.96;170;38;2;0;1;1 +"P0429";1;"SCOM-SCO";"0";"N";20.96;170;39;2;0;1;1 +"P0429";1;"SCOM-SCO";"0";"N";20.96;170;40;1;0;1;1 +"P0429";1;"SCOM-SCO";"0";"N";20.96;170;41;2;0;1;1 +"P0429";1;"TRAC-TRU";"0";"N";1.98;116;12;1;0;1;1 +"P0429";1;"TRAC-TRU";"0";"N";0.22;116;12;1;0;1;1 +"P0429";1;"TRAC-TRU";"0";"N";1.98;116;13;0;0;1;1 +"P0429";1;"TRAC-TRU";"0";"N";0.22;116;13;0;0;1;1 +"P0429";1;"TRAC-TRU";"0";"N";1.98;116;14;4;0;1;1 +"P0429";1;"TRAC-TRU";"0";"N";0.22;116;14;4;0;1;1 +"P0429";1;"TRAC-TRU";"0";"N";1.98;116;15;22;0;1;1 +"P0429";1;"TRAC-TRU";"0";"N";0.22;116;15;22;0;1;1 +"P0429";1;"TRAC-TRU";"0";"N";1.98;116;16;28;0;1;1 +"P0429";1;"TRAC-TRU";"0";"N";0.22;116;16;28;0;1;1 +"P0429";1;"TRAC-TRU";"0";"N";1.98;116;17;2;0;1;1 +"P0429";1;"TRAC-TRU";"0";"N";0.22;116;17;2;0;1;1 +"P0429";1;"TRAC-TRU";"0";"N";1.98;116;18;1;0;1;1 +"P0429";1;"TRAC-TRU";"0";"N";0.22;116;18;1;0;1;1 +"P0535";1;"MERL-MCC";"0";"N";0.62;6;27;1;0;1;1 +"P0535";1;"MERL-MNG";"0";"N";0.23;1;31;1;0;1;1 +"P0535";1;"SPRA-SPR";"0";"N";0.82;64;110;7;0;0;5 +"P0545";1;"MERL-MCC";"0";"N";3.46;25;26;2;0;1;1 +"P0545";1;"MERL-MCC";"0";"N";3.46;25;27;3;0;1;1 +"P0545";1;"MERL-MCC";"0";"N";3.46;25;28;3;0;1;1 +"P0545";1;"MERL-MCC";"0";"N";3.46;25;29;3;0;1;1 +"P0545";1;"MERL-MCC";"0";"N";3.46;25;47;1;0;1;1 +"P0545";1;"MERL-MCC";"0";"N";3.46;25;32;0;;1;1 +"P0545";1;"MICR-POU";"0";"N";0.1;1;25;1;0;1;1 +"P0545";1;"SARD-PIL";"0";"N";1.57;22;190;2;0;0;5 +"P0545";1;"SARD-PIL";"0";"N";1.57;22;195;3;0;0;5 +"P0545";1;"SARD-PIL";"0";"N";1.57;22;200;4;0;0;5 +"P0545";1;"SARD-PIL";"0";"N";1.57;22;205;6;0;0;5 +"P0545";1;"SARD-PIL";"0";"N";1.57;22;210;2;0;0;5 +"P0545";1;"SARD-PIL";"0";"N";1.57;22;215;3;0;0;5 +"P0545";1;"SARD-PIL";"0";"N";1.57;22;235;2;0;0;5 +"P0545";1;"SCOM-JAP";"0";"N";1.78;21;20;4;0;1;1 +"P0545";1;"SCOM-JAP";"0";"N";1.78;21;21;8;0;1;1 +"P0545";1;"SCOM-JAP";"0";"N";1.78;21;22;7;0;1;1 +"P0545";1;"SCOM-JAP";"0";"N";1.78;21;23;2;0;1;1 +"P0545";1;"SCOM-SCO";"0";"N";0.71;3;24;1;0;1;1 +"P0545";1;"SCOM-SCO";"0";"N";0.71;3;31;1;0;1;1 +"P0545";1;"SCOM-SCO";"0";"N";0.71;3;35;1;0;1;1 +"P0545";1;"TRAC-MED";"0";"N";3.74;40;15;1;0;1;1 +"P0545";1;"TRAC-MED";"0";"N";3.74;40;18;1;0;1;1 +"P0545";1;"TRAC-MED";"0";"N";3.74;40;19;3;0;1;1 +"P0545";1;"TRAC-MED";"0";"N";3.74;40;20;8;0;1;1 +"P0545";1;"TRAC-MED";"0";"N";3.74;40;21;7;0;1;1 +"P0545";1;"TRAC-MED";"0";"N";3.74;40;22;8;0;1;1 +"P0545";1;"TRAC-MED";"0";"N";3.74;40;23;2;0;1;1 +"P0545";1;"TRAC-MED";"0";"N";3.74;40;24;8;0;1;1 +"P0545";1;"TRAC-MED";"0";"N";3.74;40;25;2;0;1;1 +"P0545";1;"TRAC-TRU";"0";"N";5.54;156;12;2;0;1;1 +"P0545";1;"TRAC-TRU";"0";"N";5.54;156;13;2;0;1;1 +"P0545";1;"TRAC-TRU";"0";"N";5.54;156;14;2;0;1;1 +"P0545";1;"TRAC-TRU";"0";"N";5.54;156;15;12;0;1;1 +"P0545";1;"TRAC-TRU";"0";"N";5.54;156;16;71;0;1;1 +"P0545";1;"TRAC-TRU";"0";"N";5.54;156;17;52;0;1;1 +"P0545";1;"TRAC-TRU";"0";"N";5.54;156;18;15;0;1;1 +"P0563";1;"ENGR-ENC";"0";"N";1.6;87;120;5;0;0;5 +"P0563";1;"ENGR-ENC";"0";"N";1.6;87;125;6;0;0;5 +"P0563";1;"ENGR-ENC";"0";"N";1.6;87;130;12;0;0;5 +"P0563";1;"ENGR-ENC";"0";"N";1.6;87;135;16;0;0;5 +"P0563";1;"ENGR-ENC";"0";"N";1.6;87;140;21;0;0;5 +"P0563";1;"ENGR-ENC";"0";"N";1.6;87;145;15;0;0;5 +"P0563";1;"ENGR-ENC";"0";"N";1.6;87;150;7;0;0;5 +"P0563";1;"ENGR-ENC";"0";"N";1.6;87;155;1;0;0;5 +"P0563";1;"ENGR-ENC";"0";"N";1.6;87;160;3;0;0;5 +"P0563";1;"ENGR-ENC";"0";"N";1.6;87;165;1;0;0;5 +"P0563";1;"SCOM-JAP";"0";"N";0.16;1;26;1;0;1;1 +"P0563";1;"SCOM-SCO";"0";"N";0.89;6;23;2;0;1;1 +"P0563";1;"SCOM-SCO";"0";"N";0.89;6;24;1;0;1;1 +"P0563";1;"SCOM-SCO";"0";"N";0.89;6;25;1;0;1;1 +"P0563";1;"SCOM-SCO";"0";"N";0.89;6;26;1;0;1;1 +"P0563";1;"SCOM-SCO";"0";"N";0.89;6;34;1;0;1;1 +"P0563";1;"TRAC-MED";"0";"N";0.2;2;22;1;0;1;1 +"P0563";1;"TRAC-MED";"0";"N";0.2;2;24;1;0;1;1 +"P0442";1;"ENGR-ENC";"0";"N";1.87;144;145;1;0.02;0;5 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;17;1;0;1;1 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;18;2;0;1;1 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;19;4;0;1;1 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;20;3;0;1;1 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;21;5;0;1;1 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;22;5;0;1;1 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;23;5;0;1;1 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;24;5;0;1;1 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;25;0;0;1;1 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;26;1;0;1;1 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;27;2;0;1;1 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;28;0;0;1;1 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;29;1;0;1;1 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;30;1;0;1;1 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;31;0;0;1;1 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;32;1;0;1;1 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;35;1;0;1;1 +"P0474";1;"MERL-MCC";"0";"N";3.58;38;43;1;0;1;1 +"P0474";1;"MICR-POU";"0";"N";0.05;1;23;1;0;1;1 +"P0474";1;"SCOM-SCO";"0";"N";8.12;36;22;2;0;1;1 +"P0474";1;"SCOM-SCO";"0";"N";8.12;36;23;2;0;1;1 +"P0474";1;"SCOM-SCO";"0";"N";8.12;36;24;0;0;1;1 +"P0474";1;"SCOM-SCO";"0";"N";8.12;36;25;1;0;1;1 +"P0474";1;"SCOM-SCO";"0";"N";8.12;36;26;1;0;1;1 +"P0474";1;"SCOM-SCO";"0";"N";8.12;36;27;2;0;1;1 +"P0474";1;"SCOM-SCO";"0";"N";8.12;36;28;1;0;1;1 +"P0474";1;"SCOM-SCO";"0";"N";8.12;36;29;2;0;1;1 +"P0474";1;"SCOM-SCO";"0";"N";8.12;36;30;4;0;1;1 +"P0474";1;"SCOM-SCO";"0";"N";8.12;36;31;5;0;1;1 +"P0474";1;"SCOM-SCO";"0";"N";8.12;36;32;6;0;1;1 +"P0474";1;"SCOM-SCO";"0";"N";8.12;36;33;2;0;1;1 +"P0474";1;"SCOM-SCO";"0";"N";8.12;36;34;4;0;1;1 +"P0474";1;"SCOM-SCO";"0";"N";8.12;36;35;3;0;1;1 +"P0474";1;"SCOM-SCO";"0";"N";8.12;36;41;1;0;1;1 +"P0474";1;"TRAC-TRU";"0";"N";3.86;118;10;7;0;1;1 +"P0384";1;"SARD-PIL";"0";"N";4.9;71;155;2;0;0;5 +"P0384";1;"SARD-PIL";"0";"N";4.9;71;180;1;0;0;5 +"P0384";1;"SARD-PIL";"0";"N";4.9;71;190;1;0;0;5 +"P0385";1;"TRAC-TRU";"0";"N";2.16;81;19;1;0.05;1;1 +"P0535";1;"SPRA-SPR";"0";"N";0.82;64;115;33;0;0;5 +"P0535";1;"SPRA-SPR";"0";"N";0.82;64;120;22;0;0;5 +"P0535";1;"SPRA-SPR";"0";"N";0.82;64;125;2;0;0;5 +"P0535";1;"TRAC-TRU";"0";"N";0.06;6;10;2;0;1;1 \ No newline at end of file Property changes on: trunk/echobase-services/src/test/resources/import-data/catchesData/subsample.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Added: trunk/echobase-services/src/test/resources/import-data/catchesData/totalsample.csv =================================================================== --- trunk/echobase-services/src/test/resources/import-data/catchesData/totalsample.csv (rev 0) +++ trunk/echobase-services/src/test/resources/import-data/catchesData/totalsample.csv 2012-02-17 18:35:54 UTC (rev 322) @@ -0,0 +1,412 @@ +"operationID";"baracoudacode";"sizeCategory";"sampleWeight";"numberSampled";"meanLength";"meanWeight";"noPerKg";"sortedWeight" +"P0372";"DIVE-RS1";"0";0.75;0;0;0;0;0.75 +"P0372";"ENGR-ENC";"0";16.03;941;136.96;17;58.66;16.03 +"P0372";"LOPH-BUD";"0";"4.0e-03";2;55;2;500;"4.0e-03" +"P0372";"MOLA-MOL";"0";12.12;3;396.66;4040;0.24;12.12 +"P0372";"SCOM-SCO";"0";0.06;1;220;65;15.38;0.06 +"P0377";"BOOP-BOO";"0";0.52;3;253.33;173;5.76;0.52 +"P0377";"ENGR-ENC";"0";25.6;2572;118.91;10;100.48;25.6 +"P0377";"ILLE-COI";"0";0.29;1;180;295;3.38;0.29 +"P0377";"MERL-MCC";"0";17.2;50;334.2;344;2.9;17.2 +"P0377";"MICR-POU";"0";0.58;14;192.85;41;24.13;0.58 +"P0377";"SARD-PIL";"0";0.86;14;205.71;61;16.27;0.86 +"P0377";"SCOM-JAP";"0";40.2;129;332.6;310;3.22;40.2 +"P0377";"SCOM-SCO";"0";36.07;102;363.33;354;2.82;36.07 +"P0377";"TODA-EBL";"0";0.11;2;0;55;18.18;0.11 +"P0377";"TRAC-TRU";"0";229.6;1127;286.68;204;4.9;229.6 +"P0378";"ENGR-ENC";"0";41;3426;117.85;12;83.55;41 +"P0378";"MERL-MCC";"0";5.98;58;233.96;103;9.69;5.98 +"P0378";"MICR-POU";"0";0.19;1;310;195;5.12;0.19 +"P0378";"SARD-PIL";"0";39;632;200.54;62;16.2;39 +"P0378";"SCOM-JAP";"0";0.18;2;225;92;10.81;0.18 +"P0378";"SCOM-SCO";"0";9.72;32;344.68;304;3.29;9.72 +"P0378";"TRAC-TRU";"0";1.46;80;116;18;54.79;1.46 +"P0379";"ENGR-ENC";"0";525.62;32608;131.86;16;62.03;189.6 +"P0379";"EUTR-GUR";"0";0.94;8;253.33;113;8.82;0.34 +"P0379";"MERL-MCC";"0";7.04;36;287.69;195;5.11;2.54 +"P0379";"SARD-PIL";"0";26.05;363;208.85;72;13.92;9.4 +"P0379";"SCOM-JAP";"0";24.61;252;222.96;98;10.24;8.88 +"P0379";"SCOM-SCO";"0";262.81;686;366.73;383;2.61;94.8 +"P0379";"TRAC-TRU";"0";372.04;9570;162.8;39;25.72;134.2 +"P0383";"DIVE-RS2";"0";2.34;1170;0;2;500;2.34 +"P0383";"MICR-POU";"0";23.31;34281;45;1;1470.58;23.31 +"P0383";"MOLA-MOL";"0";4.92;1;420;4920;0.2;4.92 +"P0383";"MYCT-OPX";"0";0.09;97;50;1;1000;0.09 +"P0383";"SCOM-SCO";"0";0.58;780;45;1;1333.33;0.58 +"P0384";"CAPR-APE";"0";2.42;113;91.37;21;46.77;0.62 +"P0384";"ENGR-ENC";"0";982.86;60771;134.56;16;61.83;251.6 +"P0384";"MERL-MCC";"0";1.87;20;220;96;10.41;0.48 +"P0384";"MERL-MCC";"G";4.3;8;406.25;538;1.86;4.3 +"P0384";"SARD-PIL";"0";19.14;277;208.59;69;14.48;4.9 +"P0384";"SCOM-JAP";"0";115.94;1395;210.11;83;12.03;29.68 +"P0384";"SCOM-SCO";"0";30.93;102;343.84;305;3.28;7.92 +"P0384";"TRAC-TRU";"0";329.31;17522;126.94;19;53.2;84.3 +"P0384";"TRAC-TRU";"G";1.64;8;300;210;4.76;0.42 +"P0385";"ALLO-TEZ";"0";0.03;7;0;5;200;0.03 +"P0385";"ASPI-OBS";"0";0.16;1;280;160;6.25;0.16 +"P0385";"ENGR-ENC";"0";2.36;170;128.92;14;72.16;2.36 +"P0385";"GALE-GAL";"0";2.76;2;655;1380;0.72;2.76 +"P0385";"MERL-MCC";"0";2.73;48;196.25;57;17.58;2.73 +"P0385";"SARD-PIL";"0";1.78;23;212.39;77;12.92;1.78 +"P0385";"SARD-SAR";"0";1.44;1;530;1440;0.69;1.44 +"P0385";"SCOM-SCO";"0";1.09;4;327.5;272;3.66;1.09 +"P0385";"SEPI-OLZ";"0";0.01;6;0;2;400;0.01 +"P0385";"TRAC-TRU";"0";4.72;177;141.35;27;37.5;4.72 +"P0389";"ENGR-ENC";"0";39.9;2576;133.1;15;64.56;39.9 +"P0389";"MERL-MCC";"0";1.01;9;245.55;113;8.86;1.01 +"P0389";"MOLA-MOL";"0";21.32;5;404;4264;0.23;21.32 +"P0389";"POLL-POL";"0";3.14;1;830;3140;0.31;3.14 +"P0389";"SARD-PIL";"0";17.9;266;203.05;67;14.87;17.9 +"P0389";"SPON-CAN";"0";0.73;1;350;730;1.36;0.73 +"P0389";"TRAC-DRA";"0";0.25;4;212.5;62;16;0.25 +"P0389";"TRAC-TRU";"0";0.06;2;155;30;33.33;0.06 +"P0390";"ENGR-ENC";"0";1137.95;62737;137.46;18;55.13;385.3 +"P0390";"EUTR-GUR";"0";1.55;21;215.71;75;13.33;0.52 +"P0390";"EUTR-GUR";"G";0.73;1;460;735;1.36;0.73 +"P0390";"MERL-MCC";"0";1.03;12;227.5;88;11.42;0.35 +"P0390";"MOLA-MOL";"0";6.66;2;385;3330;0.3;6.66 +"P0390";"MUST-AST";"0";2.62;2;675;1310;0.76;2.62 +"P0390";"SARD-PIL";"0";17.72;310;191.71;57;17.5;6 +"P0390";"SCOM-JAP";"0";10.98;145;203.46;76;13.17;3.72 +"P0390";"SCOM-SCO";"0";4.43;18;325;250;4;1.5 +"P0390";"TRAC-TRU";"0";1.21;65;128.63;19;53.65;0.41 +"P0390";"ZEUS-FAB";"0";0.64;1;340;640;1.56;0.64 +"P0395";"DIVE-RS2";"0";0.83;291;0;3;350;0.83 +"P0395";"MICR-POU";"0";1.17;1898;41.8;1;1612.9;1.17 +"P0395";"MOLA-MOL";"0";5.02;1;430;5020;0.19;5.02 +"P0395";"MYCT-OPX";"0";3.6;2687;50;1;746.26;3.6 +"P0395";"SCOM-SCO";"0";0.09;83;50;1;923.07;0.09 +"P0396";"ENGR-ENC";"0";19.62;850;148.65;23;43.33;19.62 +"P0396";"MERL-MCC";"0";12.16;81;244.07;150;6.66;12.16 +"P0396";"MICR-POU";"0";0.2;1;310;200;5;0.2 +"P0396";"SARD-PIL";"0";0.43;8;189.37;54;18.6;0.43 +"P0396";"SCOM-JAP";"0";7.94;24;323.75;331;3.02;7.94 +"P0396";"SCOM-SCO";"0";1.46;5;344;292;3.42;1.46 +"P0396";"TRAC-TRU";"0";65.6;1813;159.92;36;27.63;65.6 +"P0396";"TRAC-TRU";"G";1.12;5;296;224;4.46;1.12 +"P0399";"ENGR-ENC";"0";29.9;1379;147.13;22;46.12;29.9 +"P0399";"EUTR-GUR";"0";0.1;1;240;100;10;0.1 +"P0399";"MERL-MCC";"0";9.2;52;271.73;177;5.65;9.2 +"P0399";"MOLA-MOL";"0";8.86;2;420;4430;0.22;8.86 +"P0399";"SARD-PIL";"0";70.1;977;209.19;72;13.93;70.1 +"P0399";"SARD-SAR";"0";5.2;1;760;5200;0.19;5.2 +"P0399";"SCOM-JAP";"0";0.38;6;196.66;63;15.78;0.38 +"P0399";"SCOM-SCO";"0";0.49;1;370;495;2.02;0.49 +"P0399";"TRAC-TRU";"0";160.5;8170;129.45;20;50.9;160.5 +"P0399";"TRAC-TRU";"G";0.5;3;303.33;167;6;0.5 +"P0400";"DIVE-RS2";"0";0.34;104;0;3;305.88;0.34 +"P0400";"LOPH-BUD";"0";0.02;3;70;8;120;0.02 +"P0400";"MOLA-MOL";"0";4.76;1;420;4760;0.21;4.76 +"P0400";"TRAC-TRU";"0";0.81;2;360;408;2.45;0.81 +"P0404";"ENGR-ENC";"0";68.24;3163;146.47;22;46.34;68.24 +"P0404";"MERL-MCC";"0";0.96;5;294;192;5.2;0.96 +"P0404";"MOLA-MOL";"0";4.06;1;410;4060;0.24;4.06 +"P0404";"SARD-PIL";"0";0.05;1;190;50;20;0.05 +"P0404";"SCOM-JAP";"0";0.24;1;320;240;4.16;0.24 +"P0404";"SCOM-SCO";"0";1.94;6;345;323;3.09;1.94 +"P0404";"SCYL-CAN";"0";0.29;1;440;295;3.38;0.29 +"P0404";"TRAC-DRA";"0";0.1;1;250;100;10;0.1 +"P0405";"BELO-BEO";"0";0.56;1;740;565;1.76;0.56 +"P0405";"ENGR-ENC";"0";31.88;2820;120.77;11;88.45;31.88 +"P0405";"MOLA-MOL";"0";4.16;1;410;4160;0.24;4.16 +"P0405";"SARD-PIL";"0";5.66;173;163.35;33;30.59;5.66 +"P0405";"SCOM-JAP";"0";9.28;41;301.95;226;4.41;9.28 +"P0405";"SCOM-SCO";"0";0.48;1;370;480;2.08;0.48 +"P0409";"ENGR-ENC";"0";39;1502;154.23;26;38.51;39 +"P0409";"MERL-MCC";"0";0.48;2;335;240;4.16;0.48 +"P0409";"SARD-PIL";"0";34.2;492;208.3;70;14.38;34.2 +"P0409";"SCOM-JAP";"0";2.99;40;207.75;75;13.37;2.99 +"P0409";"SCOM-SCO";"0";352.7;1430;306.98;247;4.05;352.7 +"P0409";"TRAC-TRU";"0";94.5;3194;153.83;30;33.79;94.5 +"P0410";"BELO-BEO";"0";4.5;7;732.85;643;1.55;4.5 +"P0410";"DIVE-RS1";"0";0.02;2;0;10;100;0.02 +"P0410";"ENGR-ENC";"0";104;3581;159.92;29;34.43;104 +"P0410";"LOPH-BUD";"0";0.01;3;70;5;187.5;0.01 +"P0410";"MOLA-MOL";"0";3.66;1;380;3660;0.27;3.66 +"P0410";"SCOM-JAP";"0";1.64;17;223.52;96;10.36;1.64 +"P0410";"SCOM-SCO";"0";1.86;20;224.5;93;10.75;1.86 +"P0417";"ENGR-ENC";"0";54.51;2385;144.1;23;43.75;10.64 +"P0417";"MERL-MCC";"0";4.27;15;330;278;3.59;0.83 +"P0417";"MERL-MCC";"G";6.9;12;414.16;575;1.73;6.9 +"P0417";"SARD-PIL";"0";325.84;4708;205.74;69;14.44;63.6 +"P0417";"SCOM-JAP";"0";383.74;3667;227.63;105;9.55;74.9 +"P0417";"TRAC-TRU";"0";1228.59;34879;155.95;35;28.38;239.8 +"P0422";"ENGR-ENC";"0";26.24;2742;116.62;10;104.5;26.24 +"P0422";"MERL-MCC";"0";0.12;1;250;120;8.33;0.12 +"P0422";"SARD-PIL";"0";0.83;26;161.34;32;31.13;0.83 +"P0422";"SCOM-JAP";"0";0.22;1;310;220;4.54;0.22 +"P0422";"SCOM-SCO";"0";2.75;7;364.28;394;2.54;2.75 +"P0422";"SPRA-SPR";"0";0.57;51;113.43;11;89.47;0.57 +"P0422";"TRAC-DRA";"0";0.34;3;263.33;113;8.82;0.34 +"P0423";"ENGR-ENC";"0";3148.8;269898;123.3;12;85.71;403.7 +"P0423";"MERL-MCC";"0";0.46;1;400;460;2.17;0.46 +"P0423";"SARD-PIL";"0";115.43;2480;179.54;47;21.48;14.8 +"P0423";"SCOM-JAP";"0";7.25;101;207.69;72;13.97;0.93 +"P0423";"SPRA-SPR";"0";313.55;29288;110.47;11;93.4;40.2 +"P0429";"ENGR-ENC";"0";82.6;4198;141.52;20;50.82;82.6 +"P0429";"MERL-MCC";"0";3.26;7;365.71;466;2.14;3.26 +"P0429";"SARD-PIL";"0";53;770;204.62;69;14.53;53 +"P0429";"SCOM-JAP";"0";33.6;331;224.23;102;9.85;33.6 +"P0429";"SCOM-SCO";"0";126.5;1026;247.05;123;8.11;126.5 +"P0429";"TRAC-TRU";"0";171.1;5012;154.82;34;29.29;171.1 +"P0429";"TRAC-TRU";"G";0.22;1;310;225;4.44;0.22 +"P0430";"ENGR-ENC";"0";128.32;7292;139.36;18;56.82;68.7 +"P0430";"EUTR-GUR";"0";1.83;9;298;196;5.1;0.98 +"P0430";"ILLE-COI";"0";0.07;4;80;20;50;0.04 +"P0430";"MERL-MCC";"0";2.57;13;292.85;197;5.07;1.38 +"P0430";"MERL-MCC";"G";7.08;10;432;708;1.41;7.08 +"P0430";"MICR-POU";"0";0.67;15;203.75;45;22.22;0.36 +"P0430";"SARD-PIL";"0";5.67;84;203.33;68;14.8;3.04 +"P0430";"SCOM-JAP";"0";0.67;7;217.5;90;11.11;0.36 +"P0430";"SCOM-SCO";"0";12.51;47;326;268;3.73;6.7 +"P0430";"TRAC-TRU";"0";425.31;11000;163.33;39;25.86;227.7 +"P0435";"ALLO-TEZ";"0";0.21;36;64;6;166.66;0.03 +"P0435";"ENGR-ENC";"0";2632.73;355907;106.98;7;135.18;366 +"P0435";"SCOM-JAP";"0";0.43;14;155;30;33.33;0.06 +"P0435";"SPRA-SPR";"0";54.66;5579;108.18;10;102.05;7.6 +"P0435";"TRAC-TRU";"0";0.5;58;98.75;9;114.28;0.07 +"P0436";"ENGR-ENC";"0";67.23;4233;136.03;16;62.95;33.8 +"P0436";"EUTR-GUR";"0";0.78;4;300;198;5.06;0.39 +"P0436";"MERL-MCC";"0";3.21;18;288.88;179;5.57;1.61 +"P0436";"MOLA-MOL";"0";4;1;390;4000;0.25;4 +"P0436";"SARD-PIL";"0";565.9;8790;201.62;64;15.53;284.5 +"P0436";"SCOM-JAP";"0";86.12;354;308.44;244;4.1;43.3 +"P0441";"ENGR-ENC";"0";81.28;6226;128.32;13;76.6;81.28 +"P0441";"EUTR-GUR";"0";0.49;5;242;98;10.2;0.49 +"P0441";"MERL-MCC";"0";0.63;5;262;126;7.93;0.63 +"P0441";"SARD-PIL";"0";0.31;8;175;39;25.39;0.31 +"P0441";"SCOM-JAP";"0";47.8;157;331.08;305;3.28;47.8 +"P0442";"ALOP-VUL";"0";108;1;3120;108000;"9.25925925925926e-03";108 +"P0442";"BELO-BEO";"0";12.62;30;675;421;2.37;12.62 +"P0442";"DICE-LAB";"0";0.69;1;410;695;1.43;0.69 +"P0442";"DIVE-RS1";"0";5.45;27;0;199;5.03;1.39 +"P0442";"ENGR-ENC";"0";1193.31;91892;123.22;13;77;304.1 +"P0443";"ALLO-TEZ";"0";0.66;180;0;4;272.72;0.66 +"P0443";"BOOP-BOO";"0";0.18;1;270;180;5.55;0.18 +"P0443";"ENGR-ENC";"0";37.7;3002;125.2;13;79.62;37.7 +"P0443";"HYPE-LAN";"0";0.03;1;260;35;28.57;0.03 +"P0443";"MERL-MNG";"0";2.05;16;251.87;128;7.78;2.05 +"P0443";"SARD-PIL";"0";96.8;2112;177.79;46;21.82;96.8 +"P0443";"SCOM-SCO";"0";3.02;13;312.3;232;4.3;3.02 +"P0443";"SPRA-SPR";"0";72.3;6120;111.86;12;84.65;72.3 +"P0443";"TRAC-DRA";"0";0.16;1;290;160;6.25;0.16 +"P0443";"TRAC-MED";"0";0.4;4;235;100;10;0.4 +"P0443";"TRAC-TRU";"0";9.46;265;157.33;36;28.03;9.46 +"P0444";"DIVE-RS1";"0";1.52;4;0;380;2.63;1.52 +"P0444";"ENGR-ENC";"0";92.8;7810;122.15;12;84.16;92.8 +"P0444";"ILLE-COI";"0";0.05;4;75;14;72.72;0.05 +"P0444";"MICR-POU";"0";0.2;3;216.66;68;14.63;0.2 +"P0449";"BELO-BEO";"0";1.82;2;830;910;1.09;1.82 +"P0449";"DIVE-RS1";"0";3.34;217;0;15;64.87;3.34 +"P0449";"ENGR-ENC";"0";1.13;46;154.67;25;40.7;1.13 +"P0449";"MICR-POU";"0";"1.0e-03";1;50;1;1000;"1.0e-03" +"P0449";"SARD-PIL";"0";18.66;301;200.21;62;16.12;18.66 +"P0449";"SCOM-SCO";"0";0.2;2;235;100;10;0.2 +"P0450";"ENGR-ENC";"0";72.2;3944;139.88;18;54.62;72.2 +"P0450";"MERL-MCC";"0";1.64;16;238.75;102;9.75;1.64 +"P0450";"MICR-POU";"0";1.03;11;241.81;94;10.67;1.03 +"P0450";"SARD-PIL";"0";1.59;26;198.84;61;16.35;1.59 +"P0450";"TODA-EBL";"0";0.13;1;120;130;7.69;0.13 +"P0450";"TRAC-TRU";"0";1.04;18;185.55;58;17.22;1.04 +"P0454";"ENGR-ENC";"0";116;8864;130.4;13;76.41;116 +"P0454";"EUTR-GUR";"0";0.96;5;294;193;5.18;0.96 +"P0454";"MERL-MCC";"0";0.56;4;262.5;140;7.14;0.56 +"P0454";"MICR-POU";"0";0.46;7;221.42;66;15.21;0.46 +"P0455";"ENGR-ENC";"0";191.5;11066;137.48;17;57.78;191.5 +"P0455";"MERL-MCC";"0";1.12;2;395;560;1.78;1.12 +"P0455";"MICR-POU";"0";0.28;6;201.66;47;21.42;0.28 +"P0455";"SARD-PIL";"0";17.6;277;206.08;64;15.72;17.6 +"P0455";"SCOM-JAP";"0";1.21;5;276;242;4.13;1.21 +"P0455";"SCOM-SCO";"0";1.86;6;346.66;310;3.22;1.86 +"P0455";"TRAC-TRU";"0";141;2958;174.41;48;20.97;141 +"P0460";"ENGR-ENC";"0";274.5;19151;130.63;14;69.76;274.5 +"P0460";"ILLE-COI";"0";0.25;3;96.66;85;11.76;0.25 +"P0460";"MERL-MCC";"0";1.02;10;241;102;9.75;1.02 +"P0460";"MICR-POU";"0";0.37;6;211.66;62;16;0.37 +"P0460";"SARD-PIL";"0";0.13;3;181.66;45;22.22;0.13 +"P0461";"ENGR-ENC";"0";59;3016;141.7;20;51.12;59 +"P0461";"MERL-MCC";"0";1.18;3;353.33;393;2.54;1.18 +"P0461";"SCOM-SCO";"0";4.78;18;324.44;266;3.76;4.78 +"P0461";"TRAC-TRU";"0";56.8;1094;181.5;52;19.26;56.8 +"P0463";"DIVE-RS2";"0";0.73;134;0;6;181.81;0.73 +"P0463";"ENGR-ENC";"0";117.1;5545;147.34;21;47.35;117.1 +"P0463";"MERL-MCC";"0";3.94;8;387.5;492;2.03;3.94 +"P0463";"SARD-PIL";"0";0.12;3;175;42;24;0.12 +"P0463";"TRAC-TRU";"0";10.56;208;180.2;51;19.68;10.56 +"P0464";"CAPR-APE";"0";18.9;1163;87.32;16;61.53;18.9 +"P0464";"DIVE-RS1";"0";0.09;7;0;14;73.68;0.09 +"P0464";"DIVE-RS2";"0";0.19;31;0;6;163.15;0.19 +"P0464";"ENGR-ENC";"0";0.65;20;159.25;32;30.76;0.65 +"P0464";"MERL-MCC";"0";1.63;4;392.5;409;2.44;1.63 +"P0464";"SCOM-JAP";"0";0.29;1;330;290;3.44;0.29 +"P0464";"TRAC-TRU";"0";172.6;2933;189.27;59;16.99;172.6 +"P0468";"AMMO-TOB";"0";0.08;2;250;40;25;0.08 +"P0468";"ENGR-ENC";"0";290.5;19218;131.86;15;66.15;290.5 +"P0468";"ILLE-COI";"0";0.02;2;160;12;80;0.02 +"P0473";"AMMO-TOB";"0";5.14;156;230;33;30.25;5.14 +"P0473";"ENGR-ENC";"0";0.57;46;125.21;12;80;0.57 +"P0473";"MOLA-MOL";"0";25.02;3;503.33;8340;0.11;25.02 +"P0473";"SARD-PIL";"0";77.2;1312;196.44;59;16.99;77.2 +"P0473";"SCOM-JAP";"0";0.08;1;210;85;11.76;0.08 +"P0473";"TRAC-TRU";"0";47;3528;113.28;13;75.07;47 +"P0474";"AMMO-TOB";"0";0.1;2;255;52;19.04;0.1 +"P0474";"DIVE-RS1";"0";0.16;14;0;11;87.5;0.16 +"P0474";"ENGR-ENC";"0";263.8;18531;126.71;14;70.24;263.8 +"P0474";"MERL-MCC";"0";3.58;38;233.68;94;10.61;3.58 +"P0474";"MICR-POU";"0";0.05;1;230;55;18.18;0.05 +"P0474";"SCOM-SCO";"0";8.12;36;304.44;226;4.43;8.12 +"P0474";"TRAC-TRU";"0";17.5;535;153.89;33;30.56;17.5 +"P0474";"ZEUS-FAB";"0";0.85;1;380;850;1.17;0.85 +"P0479";"ENGR-ENC";"0";79.6;6895;121.61;12;86.62;79.6 +"P0479";"ILLE-COI";"0";0.9;1;310;900;1.11;0.9 +"P0479";"MERL-MCC";"0";0.8;6;266.66;134;7.45;0.8 +"P0479";"MICR-POU";"0";2.5;90;139;28;36;2.5 +"P0479";"MYCT-OPX";"0";"4.0e-03";5;0;1;1250;"4.0e-03" +"P0479";"TRAC-TRU";"0";0.04;1;170;45;22.22;0.04 +"P0480";"AMMO-TOB";"0";1;5000;30;0;5000;1 +"P0480";"AMMO-TOB";"G";0.44;10;250;42;23.52;0.08 +"P0480";"CEPO-RUB";"0";0.41;5;490;80;12.5;0.08 +"P0480";"ENGR-ENC";"0";1036.73;140418;107.24;7;135.44;197.74 +"P0480";"MERL-MCC";"0";10.74;105;238;102;9.75;2.05 +"P0480";"MERL-MNG";"0";1.12;10;235;108;9.3;0.21 +"P0480";"MICR-POU";"0";1.73;26;208;66;15.15;0.33 +"P0480";"SCOM-SCO";"0";1.2;16;236.66;77;13.04;0.23 +"P0480";"SPRA-SPR";"0";18.73;15220;55.19;1;812.5;3.57 +"P0480";"SPRA-SPR";"G";3.03;202;130;15;66.66;0.57 +"P0484";"CLUP-HAR";"0";0.28;2;252.5;142;7.01;0.28 +"P0484";"DIVE-RS1";"0";0.09;3;0;30;33.33;0.09 +"P0484";"ENGR-ENC";"0";5.62;638;110.1;9;113.58;5.62 +"P0484";"ENGR-ENC";"G";0.35;36;115.13;10;102.85;0.35 +"P0484";"MERL-MCC";"0";23.74;106;272.64;224;4.46;23.74 +"P0484";"MICR-POU";"0";32.06;462;216.86;69;14.4;32.06 +"P0484";"SARD-PIL";"0";0.3;4;220;75;13.33;0.3 +"P0484";"SCOM-SCO";"0";2.6;29;225.51;90;11.15;2.6 +"P0484";"SPRA-SPR";"0";0.01;1;130;16;62.5;0.01 +"P0484";"TODA-EBL";"0";0.1;1;120;105;9.52;0.1 +"P0485";"MERL-MCC";"0";65.52;47;591.06;1394;0.71;65.52 +"P0485";"MICR-POU";"0";0.21;2;260;108;9.3;0.21 +"P0485";"PETR-MAR";"0";0.08;1;340;85;11.76;0.08 +"P0489";"ARGE-SPH";"0";0.1;2;200;50;20;0.1 +"P0489";"CLUP-HAR";"0";2.08;11;269.09;189;5.28;2.08 +"P0489";"DIVE-RS3";"0";0.67;13500;0;0;20000;0.67 +"P0489";"ENGR-ENC";"0";1.05;24;177.08;44;22.85;1.05 +"P0489";"ILLE-COI";"0";0.28;1;200;280;3.57;0.28 +"P0489";"MERL-MCC";"0";10.26;16;435;641;1.55;10.26 +"P0489";"MICR-POU";"0";308.8;5597;211.09;55;18.12;308.8 +"P0489";"MYCT-OPX";"0";"4.0e-03";3;50;1;750;"4.0e-03" +"P0489";"SARD-PIL";"0";0.25;3;233.33;83;12;0.25 +"P0489";"SCOM-SCO";"0";9.22;61;258.52;151;6.61;9.22 +"P0489";"TODA-EBL";"0";0.15;2;100;78;12.9;0.15 +"P0489";"TRAC-MED";"0";1.36;1;570;1360;0.73;1.36 +"P0489";"TRAC-TRU";"0";54.5;466;236.66;117;8.55;54.5 +"P0489";"ZEUS-FAB";"0";2.82;1;530;2820;0.35;2.82 +"P0493";"DIVE-RS1";"0";0.24;36;0;7;150;0.24 +"P0493";"ENGR-ENC";"0";0.04;3;133.33;16;61.22;0.04 +"P0493";"MERL-MCC";"0";0.1;1;260;100;10;0.1 +"P0493";"MICR-POU";"0";0.42;8;203.75;52;19.04;0.42 +"P0493";"SARD-PIL";"0";0.07;1;205;70;14.28;0.07 +"P0493";"SCOM-SCO";"0";4.62;18;321.11;257;3.89;4.62 +"P0494";"BELO-BEO";"0";2.96;5;762;592;1.68;2.96 +"P0494";"DIVE-RS2";"0";27;4355;0;6;161.29;27 +"P0494";"ENGR-ENC";"0";72.49;2048;168.35;35;28.25;72.49 +"P0494";"MOLA-MOL";"0";8.1;2;380;4050;0.24;8.1 +"P0494";"SARD-PIL";"0";168.1;2552;202.65;66;15.18;168.1 +"P0494";"SCOM-JAP";"0";7.3;81;213.92;90;11.15;7.3 +"P0494";"SCOM-SCO";"0";1.91;11;280;174;5.75;1.91 +"P0495";"DIVE-RS2";"0";6.57;1195;0;6;181.81;2.16 +"P0495";"MOLA-MOL";"0";7.4;1;470;7400;0.13;7.4 +"P0495";"TRAC-TRU";"0";908.69;14881;190.21;61;16.37;298.7 +"P0500";"DIVE-RS2";"0";0.11;20;0;6;181.81;0.11 +"P0500";"ENGR-ENC";"0";1.1;26;178.65;42;23.63;1.1 +"P0500";"MERL-MCC";"0";21.52;35;434;615;1.62;21.52 +"P0500";"MICR-POU";"0";0.53;9;213.33;59;16.98;0.53 +"P0500";"MOLA-MOL";"0";33.88;4;495;8470;0.11;33.88 +"P0500";"SARD-PIL";"0";1.71;27;202.22;63;15.78;1.71 +"P0500";"SCOM-JAP";"0";15.62;113;248.26;139;7.21;15.62 +"P0500";"SCOM-SCO";"0";68.52;182;362.58;376;2.66;68.52 +"P0500";"TRAC-TRU";"0";26.08;352;204.12;74;13.5;26.08 +"P0501";"BELO-BEO";"0";3.02;5;756;604;1.65;3.02 +"P0501";"DIVE-RS2";"0";0.39;57;0;7;144.3;0.39 +"P0501";"ENGR-ENC";"0";52.96;1848;157.9;29;34.89;52.96 +"P0501";"SCOM-JAP";"0";0.09;1;230;90;11.11;0.09 +"P0501";"SCOM-SCO";"0";11.01;44;308.63;250;3.99;11.01 +"P0501";"TRAC-TRU";"0";12.3;35;337.14;351;2.84;12.3 +"P0505";"BELO-BEO";"0";9.88;17;719.41;581;1.72;9.88 +"P0505";"DIVE-RS2";"0";0.18;34;0;5;188.88;0.18 +"P0505";"ENGR-ENC";"0";103.1;2856;170.95;36;27.69;103.1 +"P0505";"PRIO-GLA";"0";15.72;1;1580;15720;0.06;15.72 +"P0505";"SARD-PIL";"0";77.9;1056;211.66;74;13.55;77.9 +"P0505";"SCOM-SCO";"0";27.5;155;282.95;178;5.62;27.5 +"P0506";"DIVE-RS3";"0";0.27;0;;;0;0.27 +"P0506";"ENGR-ENC";"0";0.04;1;175;40;25;0.04 +"P0506";"MERL-MCC";"0";0.8;5;294;160;6.25;0.8 +"P0506";"MICR-POU";"0";0.16;3;200;53;18.75;0.16 +"P0506";"SCOM-SCO";"0";0.49;2;315;248;4.04;0.49 +"P0506";"TODA-EBL";"0";0.25;1;150;250;4;0.25 +"P0509";"BELO-BEO";"0";6.62;14;715;473;2.11;6.62 +"P0509";"ENGR-ENC";"0";14.51;425;167.26;34;29.26;14.51 +"P0509";"MOLA-MOL";"0";9.2;1;550;9200;0.1;9.2 +"P0509";"PRIO-GLA";"0";5;1;1140;5000;0.2;5 +"P0509";"SARD-PIL";"0";82.4;1712;182.32;48;20.77;82.4 +"P0509";"SCOM-JAP";"0";0.27;2;245;135;7.4;0.27 +"P0509";"SCOM-SCO";"0";15.68;131;241.12;119;8.37;15.68 +"P0510";"ARGE-SIL";"0";0.14;1;260;140;7.14;0.14 +"P0510";"BELO-BEO";"0";1.12;2;760;560;1.78;1.12 +"P0510";"CAPR-APE";"0";3.66;123;105.76;30;33.71;3.66 +"P0510";"DIVE-RS2";"0";0.32;43;0;7;134.37;0.32 +"P0510";"MERL-MCC";"0";5.38;4;560;1345;0.74;5.38 +"P0510";"MICR-POU";"0";0.62;11;203.63;56;17.74;0.62 +"P0510";"MYCT-OPX";"0";0.01;9;51.11;1;900;0.01 +"P0510";"SCOM-SCO";"0";0.33;1;360;330;3.03;0.33 +"P0510";"TRAC-TRU";"0";86.24;1013;207.84;85;11.74;86.24 +"P0511";"BELO-BEO";"0";2.44;6;681.66;407;2.45;2.44 +"P0511";"DIVE-RS1";"0";0.5;55;0;9;108.91;0.5 +"P0511";"DIVE-RS2";"0";0.05;8;0;7;145.45;0.05 +"P0511";"ENGR-ENC";"0";0.53;15;170.66;35;28.3;0.53 +"P0511";"LOPH-PIS";"0";0.03;1;120;30;33.33;0.03 +"P0511";"SARD-PIL";"0";89;1251;209.51;71;14.05;89 +"P0511";"SCOM-SCO";"0";3.18;32;233.12;99;10.06;3.18 +"P0512";"CAPR-APE";"0";1244.57;21099;133.78;59;16.95;302 +"P0512";"MERL-MCC";"0";2.9;3;493.33;967;1.03;2.9 +"P0512";"SCOM-SCO";"0";8.24;37;301.35;223;4.49;8.24 +"P0512";"TRAC-TRU";"0";0.92;8;225;112;8.88;0.22 +"P0512";"TRAC-TRU";"0";2;16;240;125;8;2 +"P0523";"ALLO-TEZ";"0";0.02;4;0;6;160;0.02 +"P0523";"DIVE-RS1";"0";0.49;2;0;245;4.08;0.49 +"P0523";"ENGR-ENC";"0";374.1;55787;102.41;7;149.12;374.1 +"P0523";"MERL-MCC";"0";0.11;1;250;115;8.69;0.11 +"P0523";"SCOM-SCO";"0";0.01;2;85;5;200;0.01 +"P0523";"SPRA-SPR";"0";2.42;212;110.37;11;87.77;2.42 +"P0523";"TRAC-DRA";"0";0.04;1;190;40;25;0.04 +"P0523";"TRAC-TRU";"0";0.02;3;96.66;8;120;0.02 +"P0535";"ENGR-ENC";"0";493.01;52024;114.94;9;105.52;288.7 +"P0535";"MERL-MCC";"0";1.05;10;238.33;103;9.67;0.62 +"P0535";"MERL-MNG";"0";0.39;2;310;230;4.34;0.23 +"P0535";"SPRA-SPR";"0";3.72;291;116.48;13;78.04;2.18 +"P0535";"TRAC-TRU";"0";0.11;10;106.66;11;92.3;0.06 +"P0545";"ENGR-ENC";"0";178.6;11069;132.6;16;61.97;178.6 +"P0545";"MERL-MCC";"0";3.46;25;260.4;138;7.22;3.46 +"P0545";"MICR-POU";"0";0.1;1;250;105;9.52;0.1 +"P0545";"SARD-PIL";"0";1.57;22;205.9;72;13.96;1.57 +"P0545";"SCOM-JAP";"0";1.78;21;213.33;85;11.76;1.78 +"P0545";"SCOM-SCO";"0";0.71;3;300;238;4.19;0.71 +"P0545";"TRAC-MED";"0";3.74;40;215.25;94;10.69;3.74 +"P0545";"TRAC-TRU";"0";5.54;156;163.33;36;28.15;5.54 +"P0553";"ENGR-ENC";"0";72.2;3651;142.27;20;50.56;72.2 +"P0553";"MERL-MCC";"0";1.75;20;231;88;11.39;1.75 +"P0553";"MICR-POU";"0";0.23;1;320;235;4.25;0.23 +"P0553";"SARD-PIL";"0";0.18;2;225;90;11.11;0.18 +"P0553";"SCOM-JAP";"0";3.72;36;226.94;103;9.67;3.72 +"P0553";"SCOM-SCO";"0";0.65;8;192.5;81;12.3;0.65 +"P0553";"TRAC-TRU";"0";26.8;121;161.48;221;4.51;26.8 +"P0553";"ZEUS-FAB";"0";1.66;1;480;1665;0.6;1.66 +"P0554";"ENGR-ENC";"0";84.8;4698;137.92;18;55.4;84.8 +"P0554";"MERL-MCC";"0";1.61;11;270;146;6.83;1.61 +"P0554";"MICR-POU";"0";0.14;1;270;140;7.14;0.14 +"P0554";"SCOM-JAP";"0";0.91;11;211.81;83;12.08;0.91 +"P0554";"SCOM-SCO";"0";0.14;15;113.33;10;103.44;0.14 +"P0554";"TRAC-TRU";"0";309;9787;152.69;32;31.67;309 +"P0563";"ENGR-ENC";"0";243.3;13188;138.33;18;54.2;243.3 +"P0563";"SCOM-JAP";"0";0.16;1;260;165;6.06;0.16 +"P0563";"SCOM-SCO";"0";0.89;6;258.33;148;6.74;0.89 +"P0563";"TRAC-MED";"0";0.2;2;230;102;9.75;0.2 \ No newline at end of file Property changes on: trunk/echobase-services/src/test/resources/import-data/catchesData/totalsample.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Added: trunk/echobase-services/src/test/resources/import-data/commonData/transect.csv =================================================================== --- trunk/echobase-services/src/test/resources/import-data/commonData/transect.csv (rev 0) +++ trunk/echobase-services/src/test/resources/import-data/commonData/transect.csv 2012-02-17 18:35:54 UTC (rev 322) @@ -0,0 +1,182 @@ +"title";"transectAbstract";"stratum";"comment";"voyageName";"dateCreated";"timeCoverageStart";"timeCoverageEnd";"geospatialLonMin";"geospatialLatMin";"geospatialVerticalMin";"geospatialLonMax";"geospatialLatMax";"geospatialVerticalMax";"linestring" +"PELGAS1157x52 cul ouvert2 CLA";"57x52 cul ouvert";"CLA";"57x52 cul ouvert,P0540,CLA";"PELGAS2011";"2011-05-29 07:13:36";"2011-05-29 07:13:36";"2011-05-29 09:45:07";-1.812378;45.7049792;43.15;-1.6157368;45.78285;54.64;"-179346.7848 5081896.35,-181279.761 5081161.3302,-201173.958 5073252.6912,-201173.958 5073252.6912" +"PELGAS1157x52 cul ouvert3 CLA";"57x52 cul ouvert";"CLA";"57x52 cul ouvert,P0542,CLA";"PELGAS2011";"2011-05-29 16:02:41";"2011-05-29 16:02:41";"2011-05-29 18:10:54";-1.8293162;45.697887;0;-1.6577318;45.7662047;62.44;"-203054.0982 5072465.457,-199063.8258 5074134.9747,-186753.0267 5078903.7012,-184008.2298 5080048.7217" +"PELGAS1157x52 cul ouvert4 CLA";"57x52 cul ouvert";"CLA";"57x52 cul ouvert,P0550,CLA";"PELGAS2011";"2011-05-31 06:14:53";"2011-05-31 06:14:53";"2011-05-31 10:38:03";-1.6076397;44.2804227;41.7;-1.3944412;44.4432638;99.57;"-178167.1212 4933202.2818,-178448.0067 4930108.1235,-156774.18 4915470.498,-154782.9732 4915126.9197" +"PELGAS1157x52 cul ouvert5 CLA";"57x52 cul ouvert";"CLA";"57x52 cul ouvert,P0557,CLA";"PELGAS2011";"2011-06-01 06:24:12";"2011-06-01 06:24:12";"2011-06-01 10:11:26";-1.5807383;44.171812;71.07;-1.5107642;44.3567295;96.49;"-175236.8322 4923596.9745,-175461.9513 4922805.2115,-168033.1653 4903651.3512,-167694.8262 4903071.132" +"PELGAS1157x52 cul ouvert6 CLA";"57x52 cul ouvert";"CLA";"57x52 cul ouvert,P0559,CLA";"PELGAS2011";"2011-06-01 16:50:17";"2011-06-01 16:50:17";"2011-06-01 19:45:44";-1.544388;44.1903917;71.68;-1.5089298;44.3466772;84.8;"-171427.068 4905133.4787,-171344.8725 4905817.827,-167654.3667 4920719.6103,-167491.2078 4922481.1692" +"PELGAS1157x521 CLA";"57x52";"CLA";"57x52,P0405,CLA";"PELGAS2011";"2011-05-02 17:47:57";"2011-05-02 17:47:57";"2011-05-02 19:00:54";-1.2885043;44.8195708;24.81;-1.2807723;44.9175472;28.93;"-142165.7253 4985847.7392,-142657.7328 4984334.5983,-142628.4288 4983746.9088,-142370.1762 4976120.5317,-142551.306 4975717.7682,-143023.9773 4974972.3588" +"PELGAS1157x522 CLA";"57x52";"CLA";"57x52,P0422,CLA";"PELGAS2011";"2011-05-05 06:40:22";"2011-05-05 06:40:22";"2011-05-05 07:46:22";-1.5017447;45.3964938;39.98;-1.4046475;45.4340465;47.57;"-166693.6617 5039010.8118,-164956.0122 5039730.0363,-163777.3365 5040180.3522,-156772.8702 5042746.3947,-156462.825 5042853.3432,-155915.8725 5043179.1615" +"PELGAS1157x523 CLA";"57x52";"CLA";"57x52,P0443,CLA";"PELGAS2011";"2011-05-10 12:33:51";"2011-05-10 12:33:51";"2011-05-10 13:36:35";-1.9724197;46.3363915;29.08;-1.8874198;46.3682763;37.82;"-218938.5867 5143339.4565,-217405.3548 5143859.436,-216429.2763 5144260.6788,-210740.0823 5146491.5235,-209588.5128 5146843.1937,-209503.5978 5146878.6693" +"PELGAS1176x701 SUR";"76x70";"SUR";"76x70,P0372,SUR";"PELGAS2011";"2011-04-26 15:58:12";"2011-04-26 15:58:12";"2011-04-26 17:25:48";-2.2815727;43.6618312;945.2;-2.1443565;43.6689083;1551.6;"-238023.5715 4847248.8213,-239934.1368 4846965.9822,-241867.2795 4846938.7872,-251970.3663 4847038.332,-253187.8365 4846518.186,-253254.5697 4846463.2632" +"PELGAS1176x7010 SUR";"76x70";"SUR";"76x70,P0395,SUR";"PELGAS2011";"2011-04-30 08:01:04";"2011-04-30 08:01:04";"2011-04-30 09:17:03";-2.5678162;44.2663897;1114.8;-2.4222628;44.2679052;1143.7;"-285027.5982 4913569.2567,-282912.0825 4913592.6,-280732.9305 4913616.2208,-271271.7678 4913651.6853,-270351.933 4913674.9065,-268871.1708 4913737.4772" +"PELGAS1176x7011 CLA";"76x70";"CLA";"76x70,P0396,CLA";"PELGAS2011";"2011-04-30 18:20:44";"2011-04-30 18:20:44";"2011-04-30 19:42:27";-2.0138693;44.4664032;124.61;-1.8841163;44.4688195;143.28;"-209136.9093 4935770.7552,-210912.321 4935796.3962,-213020.1333 4935803.9553,-221068.8987 4935792.1782,-223537.683 4936038.9645,-223539.4923 4936038.4872" +"PELGAS1176x7012 CLA";"76x70";"CLA";"76x70,P0399,CLA";"PELGAS2011";"2011-05-01 10:26:12";"2011-05-01 10:26:12";"2011-05-01 12:00:09";-1.9608768;44.6671477;116.37;-1.8043955;44.6685735;142.62;"-200287.9005 4958211.6585,-202230.5892 4958153.2503,-204192.6807 4958154.9042,-216044.0952 4958053.3947,-216795.6873 4958107.596,-217657.3248 4958198.9268" +"PELGAS1176x7013 NUL";"76x70";"NUL";"76x70,P0400,NUL";"PELGAS2011";"2011-05-01 17:00:04";"2011-05-01 17:00:04";"2011-05-01 18:18:48";-2.5107745;44.8398187;2320.96;-2.3882112;44.8700878;2669.71;"-278695.9695 4980579.7458,-276862.749 4980410.1822,-276038.8182 4980291.9117,-266157.3873 4978361.3553,-265606.6497 4977621.2517,-265091.4432 4977219.8757" +"PELGAS1176x7014 CLA";"76x70";"CLA";"76x70,P0404,CLA";"PELGAS2011";"2011-05-02 10:49:43";"2011-05-02 10:49:43";"2011-05-02 12:18:35";-1.6691328;44.6667415;71.21;-1.5227553;44.6679967;96.17;"-185273.7408 4958147.6337,-183224.7807 4958008.3065,-181259.8698 4958009.2278,-169821.8637 4958034.9687,-169025.8383 4958052.6732,-170414.6148 4958027.4318" +"PELGAS1176x7015 CLA";"76x70";"CLA";"76x70,P0409,CLA";"PELGAS2011";"2011-05-03 05:45:20";"2011-05-03 05:45:20";"2011-05-03 07:01:33";-2.350551;45.0146373;119.83;-2.2226728;45.0190788;147.98;"-260911.161 4996697.3898,-259083.8457 4996624.7403,-257326.6047 4996633.1652,-248909.7633 4997025.3615,-248160.8352 4997024.2293,-246716.6808 4997117.7468" +"PELGAS1176x7016 SUR";"76x70";"SUR";"76x70,P0410,SUR";"PELGAS2011";"2011-05-03 09:56:25";"2011-05-03 09:56:25";"2011-05-03 11:39:25";-2.6215875;44.982665;681.04;-2.4329692;45.009132;1837.23;"-270059.5812 4993075.815,-272071.9113 4994122.0677,-273333.8925 4994449.0848,-288573.3045 4996013.652,-289666.4547 4995787.1787,-290996.2125 4995482.1285" +"PELGAS1176x7017 CLA";"76x70";"CLA";"76x70,P0417,CLA";"PELGAS2011";"2011-05-04 17:41:18";"2011-05-04 17:41:18";"2011-05-04 19:07:34";-2.3928312;45.1488743;118.59;-2.2587222;45.1643467;129.14;"-265604.2632 5011525.0473,-263782.398 5011599.8058,-261956.0928 5011756.1493,-252783.963 5013036.5232,-251025.5232 5013154.05,-250718.1642 5013242.4837" +"PELGAS1176x702 CLA";"76x70";"CLA";"76x70,P0377,CLA";"PELGAS2011";"2011-04-27 06:21:16";"2011-04-27 06:21:16";"2011-04-27 07:41:31";-1.8623337;43.6584373;120.17;-1.7325612;43.6671347;403.21;"-192314.2932 4847051.9517,-193957.293 4847013.1683,-196001.7465 4846993.2882,-205418.7867 4847001.258,-206208.3075 4846813.4238,-206719.0407 4846086.5403" +"PELGAS1176x7020 CLA";"76x70";"CLA";"76x70,P0423,CLA";"PELGAS2011";"2011-05-05 15:28:39";"2011-05-05 15:28:39";"2011-05-05 16:35:37";-1.7040965;45.5251245;49.19;-1.5957788;45.5764733;60.33;"-177131.4468 5058988.5363,-178854.3555 5058220.9158,-179875.9773 5057825.9667,-187281.642 5054962.9437,-188019.0372 5054572.6677,-189154.7115 5053288.8195" +"PELGAS1176x7021 CLA";"76x70";"CLA";"76x70,P0429,CLA";"PELGAS2011";"2011-05-06 07:16:16";"2011-05-06 07:16:16";"2011-05-06 08:30:58";-2.5916513;45.1674712;127.27;-2.4868643;45.223091;134.82;"-287673.2943 5013589.3032,-286481.6982 5014071.0987,-284839.7862 5014707.6948,-277218.6372 5017992.762,-276742.758 5018349.6492,-276041.9373 5019763.101" +"PELGAS1176x7022 CLA";"76x70";"CLA";"76x70,P0430,CLA";"PELGAS2011";"2011-05-06 15:50:39";"2011-05-06 15:50:39";"2011-05-06 17:24:09";-2.8031877;45.3028577;130.47;-2.6747238;45.3649185;140;"-296894.3418 5035505.9535,-298751.3052 5034998.9943,-300509.8005 5034514.8012,-310210.4568 5030614.1613,-311063.0922 5029957.1967,-311153.8347 5028617.2047" +"PELGAS1176x7023 CLA";"76x70";"CLA";"76x70,P0435,CLA";"PELGAS2011";"2011-05-07 06:54:03";"2011-05-07 06:54:03";"2011-05-07 07:53:09";-1.7913777;45.713379;54.64;-1.7047352;45.752702;63.36;"-198842.9247 5074185.069,-197404.3758 5074667.475,-195745.947 5075422.8078,-190375.3008 5077609.3857,-189835.6965 5077896.798,-189225.6072 5078549.922" +"PELGAS1176x7024 CLA";"76x70";"CLA";"76x70,P0436,CLA";"PELGAS2011";"2011-05-07 12:29:30";"2011-05-07 12:29:30";"2011-05-07 13:50:13";-2.4469547;45.4591737;105.58;-2.3121087;45.522262;118.3;"-271611.9717 5045968.2807,-269576.4315 5046730.5843,-267375.8898 5047526.2212,-257610.354 5051426.7945,-257200.1868 5051671.8048,-256644.0657 5052971.082" +"PELGAS1176x7025 CLA";"76x70";"CLA";"76x70,P0441,CLA";"PELGAS2011";"2011-05-08 06:12:30";"2011-05-08 06:12:30";"2011-05-08 07:27:12";-2.3262128;45.7326873;89.5;-2.2129033;45.7859103;104.18;"-245632.2663 5082236.0433,-247245.6957 5081384.085,-248416.4127 5080834.5018,-257111.7753 5077260.7458,-257631.6993 5076977.7735,-258209.6208 5076328.2903" +"PELGAS1176x7027 SUR";"76x70";"SUR";"76x70,P0442,SUR";"PELGAS2011";"2011-05-08 16:34:49";"2011-05-08 16:34:49";"2011-05-08 18:01:02";-2.1964855;46.0146635;59.67;-2.0620947;46.0641357;77.54;"-243809.8905 5107627.6485,-241623.8232 5108472.8247,-240133.3707 5109032.9418,-230882.2755 5112558.435,-229881.6993 5112871.3662,-228892.5117 5113119.0627" +"PELGAS1176x7028 SUR";"76x70";"SUR";"76x70,P0444,SUR";"PELGAS2011";"2011-05-10 17:57:19";"2011-05-10 17:57:19";"2011-05-10 19:05:53";-2.6605323;46.070546;99.39;-2.5480557;46.114385;109.77;"-295319.0853 5113830.606,-293367.45 5114572.0305,-291961.635 5115153.393,-284433.9147 5118044.8653,-283772.3103 5118322.6872,-282834.1827 5118696.735" +"PELGAS1176x7029 SUR";"76x70";"SUR";"76x70,P0449,SUR";"PELGAS2011";"2011-05-11 07:33:13";"2011-05-11 07:33:13";"2011-05-11 08:53:02";-2.4132268;46.3933122;51.45;-2.2932678;46.4399692;61.15;"-267868.1748 5149657.6542,-265543.6017 5150628.7932,-264636.432 5151137.3175,-256109.0568 5154382.0362,-255395.7708 5154580.3932,-254552.7258 5154836.5812" +"PELGAS1176x703 CLA";"76x70";"CLA";"76x70,P0378,CLA";"PELGAS2011";"2011-04-27 12:44:56";"2011-04-27 12:44:56";"2011-04-27 14:04:00";-1.8163302;43.8663945;104.87;-1.6735877;43.8686382;119.47;"-201612.6522 4869418.8402,-199605.6612 4869260.7318,-197054.6037 4869204.9432,-188171.5068 4869169.7895,-187166.9013 4869205.1097,-185768.2347 4869256.9245" +"PELGAS1176x7030 CLA";"76x70";"CLA";"76x70,P0450,CLA";"PELGAS2011";"2011-05-11 13:51:18";"2011-05-11 13:51:18";"2011-05-11 14:53:56";-2.9953413;46.3871398;104.88;-2.8834058;46.4431943;109.13;"-320058.0438 5155194.5673,-321985.026 5154360.0027,-323918.313 5153646.6945,-331013.5773 5150757.3978,-331089.7788 5150725.9737,-332482.8843 5148972.5178" +"PELGAS1176x7031 CLA";"76x70";"CLA";"76x70,P0454,CLA";"PELGAS2011";"2011-05-12 06:54:02";"2011-05-12 06:54:02";"2011-05-12 08:01:48";-2.6643848;45.822963;0;-2.5688493;45.8623152;115.15;"-295746.7128 5086348.893,-294690.8475 5087312.2953,-293155.329 5088043.9185,-286517.3292 5090685.9072,-285752.3172 5090716.9872,-285142.2723 5090513.7573" +"PELGAS1176x7032 CLA";"76x70";"CLA";"76x70,P0455,CLA";"PELGAS2011";"2011-05-12 11:44:16";"2011-05-12 11:44:16";"2011-05-12 13:00:41";-3.2525177;45.588295;137.78;-3.1454785;45.6312985;145.53;"-361029.4647 5060300.745,-360163.1652 5061136.9857,-358571.07 5061941.4915,-351224.9235 5064993.6585,-350279.7585 5065074.1335,-349148.1135 5064643.287" +"PELGAS1176x7033 CLA";"76x70";"CLA";"76x70,P0460,CLA";"PELGAS2011";"2011-05-13 07:14:21";"2011-05-13 07:14:21";"2011-05-13 08:25:16";-2.8635707;45.9931083;110.55;-2.751762;46.0336402;118.51;"-305445.582 5109734.0622,-307388.1375 5109158.4828,-308915.442 5108503.2498,-315836.7027 5105789.6772,-316640.9088 5105544.345,-317856.3477 5105235.0213" +"PELGAS1176x7034 CLA";"76x70";"CLA";"76x70,P0461,CLA";"PELGAS2011";"2011-05-13 13:34:00";"2011-05-13 13:34:00";"2011-05-13 14:57:56";-3.4756925;45.9683187;135.48;-3.3508018;46.0101655;146.09;"-385801.8675 5102483.3757,-384389.9475 5103039.0972,-382724.6367 5103832.503,-374505.4863 5107128.3705,-373587.9492 5107102.7517,-371938.9998 5106499.8663" +"PELGAS1176x7035 CLA";"76x70";"CLA";"76x70,P0463,CLA";"PELGAS2011";"2011-05-14 06:53:52";"2011-05-14 06:53:52";"2011-05-14 08:15:32";-3.8088337;46.0635425;144.02;-3.6899332;46.122605;151.87;"-409582.5852 5119609.155,-411549.372 5118688.0215,-413842.299 5117699.3223,-421417.2165 5114764.1382,-422472.0273 5114027.5977,-422780.5407 5113053.2175" +"PELGAS1176x7036 CLA";"76x70";"CLA";"76x70,P0464,CLA";"PELGAS2011";"2011-05-14 18:08:09";"2011-05-14 18:08:09";"2011-05-14 19:27:40";-4.0658263;46.1847407;147.29;-3.952778;46.2272748;455.91;"-451306.7193 5126506.2177,-450590.6805 5127358.5978,-448712.6382 5128030.1922,-440563.6953 5131227.5028,-439434.0372 5131138.281,-438758.358 5130949.248" +"PELGAS1176x7037 CLA";"76x70";"CLA";"76x70,P0468,CLA";"PELGAS2011";"2011-05-15 06:57:35";"2011-05-15 06:57:35";"2011-05-15 07:57:18";-3.1033452;46.572012;102.79;-3.0107173;46.6142235;109.27;"-334189.6203 5174178.8085,-336223.3845 5173324.8078,-337964.3418 5172648.8178,-343273.4385 5170500.8457,-343877.3562 5170108.1055,-344471.3172 5169493.332" +"PELGAS1176x7038 CLA";"76x70";"CLA";"76x70,P0473,CLA";"PELGAS2011";"2011-05-16 06:51:18";"2011-05-16 06:51:18";"2011-05-16 08:23:54";-3.0315428;47.0709295;47.84;-2.902397;47.1193555;56.97;"-336501.2508 5224873.1745,-334845.3972 5225537.3097,-333510.4002 5226068.5557,-324177.0318 5229742.356,-322166.4888 5230248.4605,-322166.067 5230247.1618" +"PELGAS1176x7039 CLA";"76x70";"CLA";"76x70,P0474,CLA";"PELGAS2011";"2011-05-16 11:36:37";"2011-05-16 11:36:37";"2011-05-16 12:44:22";-3.3675692;46.9404882;96.2;-3.2488483;46.9880827;105.88;"-373800.1812 5210394.1902,-371854.107 5211190.0713,-370096.1445 5211897.7518,-362478.1257 5214992.3097,-361866.6933 5215201.9998,-360622.1613 5215677.1797" +"PELGAS1176x704 CLA";"76x70";"CLA";"76x70,P0379,CLA";"PELGAS2011";"2011-04-27 16:25:08";"2011-04-27 16:25:08";"2011-04-27 17:47:05";-2.0281513;43.866496;121.48;-1.8900952;43.8691178;238.72;"-225124.7943 4869472.0758,-222189.8433 4869308.3508,-220236.6318 4869181.056,-211967.8977 4869293.8875,-210403.6635 4869310.2267,-209800.5672 4869327.6648" +"PELGAS1176x7040 CLA";"76x70";"CLA";"76x70,P0479,CLA";"PELGAS2011";"2011-05-17 07:10:39";"2011-05-17 07:10:39";"2011-05-17 08:25:34";-3.9146918;47.1082192;111.41;-3.8045323;47.1750937;114.95;"-422303.0853 5236435.4007,-424362.2352 5235277.482,-426302.9037 5234288.139,-432519.2367 5230962.6567,-434026.539 5229853.7223,-434530.7898 5229012.3312" +"PELGAS1176x7041 CLA";"76x70";"CLA";"76x70,P0480,CLA";"PELGAS2011";"2011-05-17 15:13:27";"2011-05-17 15:13:27";"2011-05-17 16:21:26";-3.6762278;47.4952177;73.86;-3.5821943;47.544304;88.44;"-408061.2858 5271969.1647,-406347.1905 5272603.0635,-404910.8505 5273264.2017,-399231.8685 5276914.1703,-398461.3287 5277251.4993,-397623.5673 5277417.744" +"PELGAS1176x7042 CLA";"76x70";"CLA";"76x70,P0484,CLA";"PELGAS2011";"2011-05-18 07:26:16";"2011-05-18 07:26:16";"2011-05-18 08:49:51";-4.101942;47.4873888;97.56;-4.009956;47.5604683;103.55;"-445105.116 5279211.9813,-447443.2422 5277266.7618,-449071.0017 5276079.0063,-454377.8895 5272212.8763,-455312.9757 5271110.8128,-455315.562 5271100.1568" +"PELGAS1176x7043 CLA";"76x70";"CLA";"76x70,P0485,CLA";"PELGAS2011";"2011-05-18 18:10:48";"2011-05-18 18:10:48";"2011-05-18 19:27:32";-4.8355088;47.2580117;125.59;-4.749719;47.31726;130.9;"-536741.4768 5245639.2987,-535520.9097 5246468.9127,-534203.6838 5247531.3603,-528588.6933 5251962.8355,-528038.544 5252180.8617,-527218.809 5252215.86" +"PELGAS1176x7044 CLA";"76x70";"CLA";"76x70,P0489,CLA";"PELGAS2011";"2011-05-19 13:06:23";"2011-05-19 13:06:23";"2011-05-19 14:14:44";-5.0486845;47.689233;118.26;-4.9486678;47.7533722;125.64;"-560403.9795 5293504.863,-558846.7827 5294555.034,-557454.1545 5295574.9242,-551066.3043 5300387.9397,-550450.0212 5300624.3142,-549302.1258 5300542.9623" +"PELGAS1176x7045 CLA";"76x70";"CLA";"76x70,P0493,CLA";"PELGAS2011";"2011-05-20 11:07:51";"2011-05-20 11:07:51";"2011-05-20 12:34:10";-3.9550978;46.4663138;135.55;-3.8267858;46.5067558;143.03;"-439015.8558 5157760.8318,-437496.066 5158285.9173,-435560.6478 5158879.5453,-426554.0412 5162249.8938,-425012.895 5161955.0445,-424773.2238 5161825.1412" +"PELGAS1176x7046 SUR";"76x70";"SUR";"76x70,P0494,SUR";"PELGAS2011";"2011-05-20 15:18:05";"2011-05-20 15:18:05";"2011-05-20 16:29:44";-4.3018458;46.3305682;155.22;-4.1639483;46.3718998;339.31;"-477504.8838 5142693.0702,-474949.2975 5143372.1793,-473299.893 5143868.1717,-464401.4115 5147225.8995,-463639.9848 5147280.8778,-462198.2613 5147192.1" +"PELGAS1176x7047 CLA";"76x70";"CLA";"76x70,P0495,CLA";"PELGAS2011";"2011-05-20 17:07:59";"2011-05-20 17:07:59";"2011-05-20 18:34:37";-4.253129;46.3335;153.13;-4.1378057;46.3965855;177.73;"-459296.4327 5150020.9905,-461028.3102 5148749.5632,-463020.1053 5147725.7325,-470922.9945 5144622.4167,-471769.3473 5143624.227,-472097.319 5143018.5" +"PELGAS1176x7048 CLA";"76x70";"CLA";"76x70,P0500,CLA";"PELGAS2011";"2011-05-21 11:32:06";"2011-05-21 11:32:06";"2011-05-21 13:24:08";-4.7578432;46.5004423;199.54;-4.668185;46.5982782;203.98;"-528120.5952 5172408.8802,-527624.9802 5171157.7992,-527507.8197 5169227.6313,-519928.5177 5162603.0847,-518613.3342 5161824.7638,-518168.535 5161549.0953" +"PELGAS1176x7049 SUR";"76x70";"SUR";"76x70,P0501,SUR";"PELGAS2011";"2011-05-21 18:49:20";"2011-05-21 18:49:20";"2011-05-21 20:29:07";-5.308464;46.230533;3469.52;-5.2154532;46.3281213;4470.96;"-578915.3052 5142421.4643,-580248.7482 5141407.5792,-581171.4912 5140606.8807,-582457.1265 5139366.2448,-584371.155 5137469.8098,-588791.0418 5133018.0438,-589163.358 5132388.1188,-589239.504 5131589.163" +"PELGAS1176x705 SUR";"76x70";"SUR";"76x70,P0383,SUR";"PELGAS2011";"2011-04-28 06:13:57";"2011-04-28 06:13:57";"2011-04-28 07:26:50";-3.045986;44.0653118;1466.72;-2.913562;44.0667465;1714.64;"-323405.382 4891383.4647,-325406.934 4891404.7545,-326560.6458 4891408.8615,-336263.7663 4891386.5727,-337013.6712 4891347.7338,-338104.446 4891249.6098" +"PELGAS1176x7050 SUR";"76x70";"SUR";"76x70,P0505,SUR";"PELGAS2011";"2011-05-22 05:33:44";"2011-05-22 05:33:44";"2011-05-22 07:03:10";-5.0391885;46.4960177;0;-4.9275653;46.5748143;1404.54;"-546959.7483 5169804.3873,-548035.5825 5168897.1732,-549337.3683 5168004.045,-558269.1165 5162906.259,-559003.77 5162178.9648,-559349.9235 5161057.9647" +"PELGAS1176x7051 NUL";"76x70";"NUL";"76x70,P0506,NUL";"PELGAS2011";"2011-05-22 11:52:28";"2011-05-22 11:52:28";"2011-05-22 13:36:15";-4.4057432;46.8537532;133.27;-4.2612517;46.9310295;143.79;"-472998.9387 5209344.2745,-474911.5353 5208154.3545,-476866.1787 5207045.8752,-486969.9648 5201828.7198,-488187.324 5201224.0695,-489037.4952 5200766.6052" +"PELGAS1176x7052 SUR";"76x70";"SUR";"76x70,P0509,SUR";"PELGAS2011";"2011-05-24 17:12:56";"2011-05-24 17:12:56";"2011-05-24 18:48:23";-5.1306105;46.7309763;190.03;-4.9933477;46.8243673;921.15;"-569497.7655 5187138.3693,-567987.4662 5188107.477,-566175.3357 5189242.5297,-556528.6365 5196072.1488,-554261.5947 5197503.3495,-554263.1043 5197504.7703" +"PELGAS1176x7053 CLA";"76x70";"CLA";"76x70,P0510,CLA";"PELGAS2011";"2011-05-25 07:15:42";"2011-05-25 07:15:42";"2011-05-25 08:44:52";-5.2637042;46.9231093;158.25;-5.1542625;47.0116518;311.77;"-584271.1662 5208465.1323,-582292.6467 5210033.7843,-580271.9028 5211653.2188,-573297.6285 5217000.4773,-572534.5035 5217716.4162,-572123.1375 5218293.3498" +"PELGAS1176x7054 SUR";"76x70";"SUR";"76x70,P0511,SUR";"PELGAS2011";"2011-05-25 12:53:44";"2011-05-25 12:53:44";"2011-05-25 14:12:59";-5.5507878;46.9967828;170.81;-5.4512717;47.0788477;1139.61;"-605091.1587 5225752.0947,-606963.7842 5224406.2863,-608023.2015 5223737.3448,-615597.342 5217743.589,-615861.5442 5217400.5213,-616137.4458 5216642.8908" +"PELGAS1176x7055 CLA";"76x70";"CLA";"76x70,P0512,CLA";"PELGAS2011";"2011-05-25 14:57:39";"2011-05-25 14:57:39";"2011-05-25 15:53:01";-5.484334;47.0574093;79.52;-5.413577;47.1056103;82.43;"-608761.074 5223372.4323,-607434.0912 5224492.9662,-605983.0992 5225705.1195,-603251.0118 5227742.0472,-601897.4778 5228357.9862,-600907.047 5228722.7433" +"PELGAS1176x7056 CLA";"76x70";"CLA";"76x70,P0523,CLA";"PELGAS2011";"2011-05-27 15:22:39";"2011-05-27 15:22:39";"2011-05-27 15:49:26";-1.7299877;45.7345267;50.77;-1.6770243;45.7595562;55.87;"-186149.6973 5079310.7382,-187911.9888 5078514.9015,-188718.537 5078134.4823,-190794.0705 5077343.7405,-191123.0745 5077231.8747,-192028.6347 5076532.4637" +"PELGAS1176x7057 CLA";"76x70";"CLA";"76x70,P0535,CLA";"PELGAS2011";"2011-05-28 16:22:20";"2011-05-28 16:22:20";"2011-05-28 17:27:24";-1.9252288;45.6562365;63.29;-1.8414218;45.6879498;71.53;"-205829.7087 5070941.5713,-204397.8198 5071362.4278,-205586.2968 5070877.8795,-211251.5592 5068721.9265,-212280.3405 5068329.2307,-213700.3968 5067842.2515" +"PELGAS1176x7058 CLA";"76x70";"CLA";"76x70,P0545,CLA";"PELGAS2011";"2011-05-30 16:59:04";"2011-05-30 16:59:04";"2011-05-30 17:43:43";-1.5660237;44.2663007;65.4;-1.4830722;44.2686315;91.58;"-173828.6307 4913575.5393,-173761.62 4913572.3758,-172875.5958 4913559.3777,-166465.9785 4913818.0965,-165904.041 4913812.3023,-164621.0142 4913802.0792" +"PELGAS1176x7059 CLA";"76x70";"CLA";"76x70,P0553,CLA";"PELGAS2011";"2011-05-31 15:51:34";"2011-05-31 15:51:34";"2011-05-31 16:53:37";-1.5874398;44.2424503;92.84;-1.570825;44.3163878;98.62;"-174361.575 4910911.9833,-174710.5923 4912059.135,-175022.4468 4913118.2748,-176176.0698 4918015.7835,-176205.8178 4918490.7525,-175941.6267 4919119.0458" +"PELGAS1176x706 CLA";"76x70";"CLA";"76x70,P0384,CLA";"PELGAS2011";"2011-04-28 13:03:56";"2011-04-28 13:03:56";"2011-04-28 14:31:38";-1.9784785;44.0622012;119.17;-1.822899;44.0668072;139.39;"-202341.789 4891288.2933,-204059.8803 4891361.3757,-206292.5343 4891338.2433,-217664.2512 4891415.5992,-218518.6182 4891301.0472,-219611.1135 4890904.3332" +"PELGAS1176x7060 CLA";"76x70";"CLA";"76x70,P0554,CLA";"PELGAS2011";"2011-05-31 17:22:35";"2011-05-31 17:22:35";"2011-05-31 19:50:00";-1.543161;44.2750642;81.25;-1.5356088;44.32775;85.86;"-171290.871 4920380.25,-171153.4752 4919438.8368,-171066.8397 4918600.698,-170818.6548 4915122.9348,-170452.5768 4914532.1262,-170452.5768 4914532.1262" +"PELGAS1176x707 CLA";"76x70";"CLA";"76x70,P0385,CLA";"PELGAS2011";"2011-04-28 18:40:42";"2011-04-28 18:40:42";"2011-04-28 19:47:16";-1.6945545;44.0598607;81.8;-1.5795458;44.0665727;108.78;"-175329.5838 4891380.8007,-176984.7603 4891353.8943,-178925.1513 4891389.5697,-185910.57 4891379.391,-187246.0665 4891024.857,-188095.5495 4890644.5377" +"PELGAS1176x708 CLA";"76x70";"CLA";"76x70,P0389,CLA";"PELGAS2011";"2011-04-29 06:09:35";"2011-04-29 06:09:35";"2011-04-29 07:33:09";-1.5917088;44.2657525;44.94;-1.4498057;44.2666267;91.15;"-176679.6768 4913574.507,-174871.0983 4913566.4373,-172879.1145 4913594.4315,-163026.366 4913595.5637,-161635.7802 4913501.3802,-160928.4327 4913498.5275" +"PELGAS1176x709 CLA";"76x70";"CLA";"76x70,P0390,CLA";"PELGAS2011";"2011-04-29 09:56:19";"2011-04-29 09:56:19";"2011-04-29 13:40:24";-1.7977285;44.2634748;101.13;-1.6408157;44.2682853;119.26;"-199193.0853 4913548.2,-196894.3863 4913573.6523,-194977.05 4913565.294,-182130.5427 4913528.664,-197814.7317 4913779.6683,-199547.8635 4913245.7028" +"PELGAS11ACOU1 R1";"ACOU";"R1";"ACOU,R1";"PELGAS2011";"2011-04-26 08:27:01";"2011-04-26 08:27:01";"2011-04-26 19:36:12";-3.4998475;43.665663;673.1;-2.0023385;43.6676747;1839.03;"-388483.0725 4846888.593,-247253.721 4847085.3738,-254922.489 4846987.4385,-237818.0217 4847111.8917,-247575.5655 4846993.821,-222259.5735 4846999.7817" +"PELGAS11ACOU1 R1 INTER";"ACOU";"IR1";"ACOU,IR1";"PELGAS2011";"2011-04-26 19:36:13";"2011-04-26 19:36:13";"2011-04-26 08:27:00";-3.4998475;43.665663;673.1;-2.0023385;43.6666647;1839.03;"-2.0023385 43.6666647,-3.4998475 43.665663" +"PELGAS11ACOU10 R10";"ACOU";"R10";"ACOU,R10";"PELGAS2011";"2011-05-05 05:27:49";"2011-05-05 05:27:49";"2011-05-05 11:20:43";-2.1111078;45.173087;26.42;-1.2664417;45.4842563;110.71;"-140575.0287 5048752.4493,-161712.8253 5040903.5283,-161551.731 5040954.2553,-234227.1162 5014252.0065,-234332.9658 5014212.657" +"PELGAS11ACOU10 R10 INTER";"ACOU";"IR1";"ACOU,IR1";"PELGAS2011";"2011-05-05 09:37:43";"2011-05-05 09:37:43";"2011-05-05 05:27:48";-2.1101542;45.1734415;26.42;-1.2664417;45.4842563;110.24;"-2.1101542 45.1734415,-1.2664417 45.4842563" +"PELGAS11ACOU10 R11";"ACOU";"R11";"ACOU,R11";"PELGAS2011";"2011-05-05 12:15:24";"2011-05-05 12:15:24";"2011-05-05 18:37:57";-2.2337705;45.3177255;20.26;-1.3832715;45.6668638;111.7;"-247948.5255 5030267.5305,-178599.9435 5058709.4823,-178591.7517 5058659.0328,-153543.1365 5069021.8818" +"PELGAS11ACOU10 R11 INTER";"ACOU";"IR2";"ACOU,IR2";"PELGAS2011";"2011-05-05 19:24:45";"2011-05-05 19:24:45";"2011-05-05 12:15:23";-2.2337705;45.3177255;20.26;-1.3832715;45.6668638;111.7;"-1.3832715 45.6668638,-2.2337705 45.3177255" +"PELGAS11ACOU11 R11";"ACOU";"R11";"ACOU,R11";"PELGAS2011";"2011-05-06 05:20:15";"2011-05-06 05:20:15";"2011-05-06 11:55:14";-3.0937067;44.9594945;114.11;-2.2337268;45.3153618;1365.1801;"-247943.6748 5030005.1598,-281918.2218 5016043.269,-343150.7613 4990607.1417,-343401.4437 4990503.8895" +"PELGAS11ACOU11 R11 INTER";"ACOU";"IR3";"ACOU,IR3";"PELGAS2011";"2011-05-06 17:27:24";"2011-05-06 17:27:24";"2011-05-06 05:20:14";-3.0914483;44.9604247;114.11;-2.2337268;45.3153618;1364.49;"-3.0914483 44.9604247,-2.2337268 45.3153618" +"PELGAS11ACOU11 R12";"ACOU";"R12";"ACOU,R12";"PELGAS2011";"2011-05-06 13:03:52";"2011-05-06 13:03:52";"2011-05-06 19:39:17";-3.2475483;45.1454645;119.88;-2.4787857;45.4457905;2729.8799;"-360477.8613 5011146.5595,-296833.4583 5035809.7272,-300379.1202 5034574.3083,-275145.2127 5044482.7455" +"PELGAS11ACOU11 R12 INTER";"ACOU";"IR4";"ACOU,IR4";"PELGAS2011";"2011-05-06 16:44:52";"2011-05-06 16:44:52";"2011-05-06 13:03:51";-3.2475483;45.1454645;119.88;-2.4787857;45.4457905;2729.8799;"-2.4787857 45.4457905,-3.2475483 45.1454645" +"PELGAS11ACOU12 R12";"ACOU";"R12";"ACOU,R12";"PELGAS2011";"2011-05-07 04:53:03";"2011-05-07 04:53:03";"2011-05-07 12:11:49";-2.4636673;45.452303;25.61;-1.4004587;45.8662893;119.72;"-155450.9157 5091158.1123,-198862.716 5074306.8693,-189533.277 5077924.4592,-273467.0703 5045205.633,-258699.5082 5055347.0592" +"PELGAS11ACOU12 R12 INTER";"ACOU";"IR5";"ACOU,IR5";"PELGAS2011";"2011-05-07 21:26:01";"2011-05-07 21:26:01";"2011-05-07 04:53:02";-2.4636673;45.452303;25.61;-1.4004587;45.8662893;119.72;"-2.4636673 45.452303,-1.4004587 45.8662893" +"PELGAS11ACOU12 R13";"ACOU";"R13";"ACOU,R13";"PELGAS2011";"2011-05-07 15:12:21";"2011-05-07 15:12:21";"2011-05-07 19:30:16";-3.3453677;45.3175975;112.98;-2.4792435;45.6733458;1135.91;"-275196.0285 5069741.3838,-371335.8147 5030253.3225" +"PELGAS11ACOU12 R13 INTER";"ACOU";"IR4";"ACOU,IR4";"PELGAS2011";"2011-05-07 11:52:10";"2011-05-07 11:52:10";"2011-05-07 15:12:20";-3.3453677;45.3175975;112.98;-2.4792435;45.6733458;1135.91;"-3.3453677 45.3175975,-2.4792435 45.6733458" +"PELGAS11ACOU13 R13";"ACOU";"R13";"ACOU,R13";"PELGAS2011";"2011-05-08 04:48:04";"2011-05-08 04:48:04";"2011-05-08 12:14:06";-2.4838502;45.6722523;22.96;-1.3982555;46.1206127;113.89;"-275707.3722 5069620.0053,-246403.2945 5081657.1783,-248144.3073 5080944.3807,-155437.8843 5118933.054,-155206.3605 5119388.0097" +"PELGAS11ACOU13 R13 INTER";"ACOU";"IR5";"ACOU,IR5";"PELGAS2011";"2011-05-08 18:12:45";"2011-05-08 18:12:45";"2011-05-08 04:48:03";-2.4838502;45.6722523;33.22;-1.4003413;46.116514;113.89;"-1.4003413 46.116514,-2.4838502 45.6722523" +"PELGAS11ACOU14 R14";"ACOU";"R14";"ACOU,R14";"PELGAS2011";"2011-05-08 13:28:30";"2011-05-08 13:28:30";"2011-05-08 19:53:09";-2.3733087;45.9443565;20.62;-1.6675123;46.2218185;93.87;"-185093.8653 5130621.8535,-248578.9278 5105890.4208,-248010.5745 5105927.0175,-263437.2657 5099823.5715" +"PELGAS11ACOU14 R14 INTER";"ACOU";"IR6";"ACOU,IR6";"PELGAS2011";"2011-05-08 10:04:31";"2011-05-08 10:04:31";"2011-05-08 13:28:29";-2.3733087;45.9443565;20.62;-1.6675123;46.2218185;93.87;"-2.3733087 45.9443565,-1.6675123 46.2218185" +"PELGAS11ACOU15 R15";"ACOU";"R15";"ACOU,R15";"PELGAS2011";"2011-05-10 11:00:01";"2011-05-10 11:00:01";"2011-05-10 17:37:14";-2.7187683;46.0486572;21.45;-1.768617;46.416191;108.96;"-196316.487 5152197.201,-217645.7808 5143851.5328,-301783.2813 5111400.9492" +"PELGAS11ACOU15 R15 INTER";"ACOU";"IR7";"ACOU,IR7";"PELGAS2011";"2011-05-10 20:40:36";"2011-05-10 20:40:36";"2011-05-10 11:00:00";-2.7187683;46.0486572;21.45;-1.768617;46.416191;108.96;"-2.7187683 46.0486572,-1.768617 46.416191" +"PELGAS11ACOU16 R16";"ACOU";"R16";"ACOU,R16";"PELGAS2011";"2011-05-11 04:54:31";"2011-05-11 04:54:31";"2011-05-11 11:42:45";-2.8446362;46.2215162;21.86;-1.9343963;46.5826543;114.41;"-214717.9893 5170674.6273,-270964.2645 5148599.691,-266110.5453 5150340.171,-315416.4567 5130721.3095,-315754.6182 5130588.2982" +"PELGAS11ACOU16 R16 INTER";"ACOU";"IR5";"ACOU,IR5";"PELGAS2011";"2011-05-11 08:06:45";"2011-05-11 08:06:45";"2011-05-11 04:54:30";-2.8415897;46.2227145;21.86;-1.9343963;46.5826543;114.23;"-2.8415897 46.2227145,-1.9343963 46.5826543" +"PELGAS11ACOU16 R17";"ACOU";"R17";"ACOU,R17";"PELGAS2011";"2011-05-11 12:56:47";"2011-05-11 12:56:47";"2011-05-11 18:38:47";-3.020193;46.3909268;24.28;-2.2942643;46.6769548;112.47;"-335241.423 5149392.8748,-317497.5513 5156389.782,-317576.9163 5156180.6913,-254663.3373 5181141.9828" +"PELGAS11ACOU16 R17 INTER";"ACOU";"IR6";"ACOU,IR6";"PELGAS2011";"2011-05-11 13:50:57";"2011-05-11 13:50:57";"2011-05-11 12:56:46";-3.020193;46.3909268;24.28;-2.2942643;46.6769548;112.47;"-2.2942643 46.6769548,-3.020193 46.3909268" +"PELGAS11ACOU17 R14";"ACOU";"R14";"ACOU,R14";"PELGAS2011";"2011-05-12 04:44:42";"2011-05-12 04:44:42";"2011-05-12 15:14:58";-3.5613315;45.472933;90.98;-2.375809;45.9441022;2122.8899;"-263714.799 5099795.3442,-298613.2545 5085928.8912,-298327.929 5085996.5013,-360138.0237 5061444.0117,-360055.5507 5061467.9877,-395307.7965 5047495.563" +"PELGAS11ACOU17 R14 INTER";"ACOU";"IR7";"ACOU,IR7";"PELGAS2011";"2011-05-12 17:23:26";"2011-05-12 17:23:26";"2011-05-12 04:44:41";-3.5613315;45.472933;90.98;-2.375809;45.9441022;2122.8899;"-3.5613315 45.472933,-2.375809 45.9441022" +"PELGAS11ACOU17 R15";"ACOU";"R15";"ACOU,R15";"PELGAS2011";"2011-05-12 16:28:50";"2011-05-12 16:28:50";"2011-05-12 19:23:15";-3.7000283;45.6577775;124.77;-3.068009;45.9098997;2654.3899;"-410703.1413 5068013.3025,-340548.999 5095998.8667" +"PELGAS11ACOU17 R15 INTER";"ACOU";"IR8";"ACOU,IR8";"PELGAS2011";"2011-05-12 13:53:26";"2011-05-12 13:53:26";"2011-05-12 16:28:49";-3.7000283;45.6577775;124.77;-3.068009;45.9098997;2654.3899;"-3.068009 45.9098997,-3.7000283 45.6577775" +"PELGAS11ACOU18 R15";"ACOU";"R15";"ACOU,R15";"PELGAS2011";"2011-05-13 05:39:58";"2011-05-13 05:39:58";"2011-05-13 09:18:26";-3.0679627;45.9078425;111.19;-2.7323825;46.224748;123.83;"-340543.8597 5095770.5175,-310626.5847 5107791.5178,-310604.1405 5107770.9828,-303294.4575 5110713.9147,-315100.362 5130947.028" +"PELGAS11ACOU18 R15 INTER";"ACOU";"IR11";"ACOU,IR11";"PELGAS2011";"2011-05-13 15:56:57";"2011-05-13 15:56:57";"2011-05-13 05:39:57";-3.0679627;45.9078425;111.19;-2.7323825;46.0424677;123.83;"-2.7323825 46.0424677,-3.0679627 45.9078425" +"PELGAS11ACOU18 R16";"ACOU";"R16";"ACOU,R16";"PELGAS2011";"2011-05-13 10:31:37";"2011-05-13 10:31:37";"2011-05-13 20:39:57";-4.5112322;45.5544652;114.65;-2.8469665;46.2212693;4291.8198;"-316013.2815 5130560.8923,-385209.8823 5102903.877,-384993.8763 5102945.4798,-500746.7742 5056545.6372" +"PELGAS11ACOU18 R16 INTER";"ACOU";"IR7";"ACOU,IR7";"PELGAS2011";"2011-05-13 18:33:23";"2011-05-13 18:33:23";"2011-05-13 10:31:36";-4.5112322;45.5544652;114.65;-2.8469665;46.2212693;4291.8198;"-4.5112322 45.5544652,-2.8469665 46.2212693" +"PELGAS11ACOU19 R17";"ACOU";"R17";"ACOU,R17";"PELGAS2011";"2011-05-14 04:48:15";"2011-05-14 04:48:15";"2011-05-14 12:21:44";-4.0666947;45.9706745;117.8;-3.0483095;46.3782127;1169.38;"-451403.1117 5102744.8695,-407369.7558 5120473.4787,-408394.086 5120022.2748,-338362.3545 5147981.6097" +"PELGAS11ACOU19 R17 INTER";"ACOU";"IR8";"ACOU,IR8";"PELGAS2011";"2011-05-14 08:51:55";"2011-05-14 08:51:55";"2011-05-14 04:48:14";-4.0666947;45.9706745;117.8;-3.0483095;46.3782127;1169.38;"-3.0483095 46.3782127,-4.0666947 45.9706745" +"PELGAS11ACOU19 R18";"ACOU";"R18";"ACOU,R18";"PELGAS2011";"2011-05-14 13:38:09";"2011-05-14 13:38:09";"2011-05-14 21:05:00";-4.2602293;46.1094557;119.03;-3.1596315;46.5555548;1040.03;"-350719.0965 5167666.5828,-454237.974 5125719.7938,-451516.8867 5126780.1657,-472885.4523 5118149.5827" +"PELGAS11ACOU19 R18 INTER";"ACOU";"IR9";"ACOU,IR9";"PELGAS2011";"2011-05-14 17:27:07";"2011-05-14 17:27:07";"2011-05-14 13:38:08";-4.2602293;46.1094557;119.03;-3.1596315;46.5555548;1040.03;"-4.2602293 46.1094557,-3.1596315 46.5555548" +"PELGAS11ACOU2 R1";"ACOU";"R1";"ACOU,R1";"PELGAS2011";"2011-04-27 04:58:54";"2011-04-27 04:58:54";"2011-04-27 09:37:42";-1.9994352;43.6660277;19.07;-1.4637168;43.6774175;659.66;"-221937.3072 4847009.2722,-190509.3888 4846929.0747,-199042.536 4847011.1703,-162758.4897 4847013.468,-162472.5648 4848193.3425" +"PELGAS11ACOU2 R1 INTER";"ACOU";"IR10";"ACOU,IR10";"PELGAS2011";"2011-04-27 11:20:44";"2011-04-27 11:20:44";"2011-04-27 04:58:53";-1.9994352;43.6667502;34.16;-1.4662927;43.666788;659.66;"-1.4662927 43.666788,-1.9994352 43.6667502" +"PELGAS11ACOU2 R2";"ACOU";"R2";"ACOU,R2";"PELGAS2011";"2011-04-27 10:55:25";"2011-04-27 10:55:25";"2011-04-27 19:24:44";-2.2218067;43.866659;15.18;-1.4174158;43.8676555;608.23;"-157333.1538 4869224.3127,-196027.3653 4869201.2802,-195766.1268 4869200.8473,-231685.7157 4869288.8037,-228277.0278 4869309.7605,-246620.5437 4869199.149" +"PELGAS11ACOU2 R2 INTER";"ACOU";"IR11";"ACOU,IR11";"PELGAS2011";"2011-04-27 18:37:58";"2011-04-27 18:37:58";"2011-04-27 10:55:24";-2.2218067;43.866659;15.18;-1.4174158;43.8668857;608.23;"-2.2218067 43.866659,-1.4174158 43.8668857" +"PELGAS11ACOU20 R18";"ACOU";"R18";"ACOU,R18";"PELGAS2011";"2011-05-15 05:52:36";"2011-05-15 05:52:36";"2011-05-15 11:32:23";-3.1585398;46.555119;24.96;-2.3916512;46.8616512;115.37;"-350597.9178 5167618.209,-332047.4757 5174977.9752,-336608.6433 5173126.5063,-265473.2832 5201643.2832" +"PELGAS11ACOU20 R18 INTER";"ACOU";"IR11";"ACOU,IR11";"PELGAS2011";"2011-05-15 11:55:15";"2011-05-15 11:55:15";"2011-05-15 05:52:35";-3.1585398;46.555119;24.96;-2.3916512;46.8616512;115.37;"-2.3916512 46.8616512,-3.1585398 46.555119" +"PELGAS11ACOU20 R19";"ACOU";"R19";"ACOU,R19";"PELGAS2011";"2011-05-15 15:30:08";"2011-05-15 15:30:08";"2011-05-15 19:25:00";-3.2598278;46.7425372;25.91;-2.4014232;47.0820422;110.24;"-266557.9752 5226106.6842,-361840.8858 5188421.6292" +"PELGAS11ACOU20 R19 INTER";"ACOU";"IR12";"ACOU,IR12";"PELGAS2011";"2011-05-15 19:39:18";"2011-05-15 19:39:18";"2011-05-15 15:30:07";-3.2598278;46.7425372;25.91;-2.4014232;47.0820422;110.24;"-3.2598278 46.7425372,-2.4014232 47.0820422" +"PELGAS11ACOU21 R20";"ACOU";"R20";"ACOU,R20";"PELGAS2011";"2011-05-16 04:49:47";"2011-05-16 04:49:47";"2011-05-16 15:08:47";-3.5983917;46.8518437;26.08;-2.582826;47.2456975;121.53;"-286693.686 5244272.4225,-330775.6155 5227251.738,-330788.7912 5227255.2123,-373812.2802 5210512.9713,-373486.9503 5210612.7825,-399421.4787 5200554.6507" +"PELGAS11ACOU21 R20 INTER";"ACOU";"IR12";"ACOU,IR12";"PELGAS2011";"2011-05-16 12:11:50";"2011-05-16 12:11:50";"2011-05-16 04:49:46";-3.5983917;46.8518437;26.08;-2.582826;47.2456975;121.53;"-3.5983917 46.8518437,-2.582826 47.2456975" +"PELGAS11ACOU21 R21";"ACOU";"R21";"ACOU,R21";"PELGAS2011";"2011-05-16 16:11:52";"2011-05-16 16:11:52";"2011-05-16 20:01:09";-3.7284735;47.0055988;24.65;-2.9297405;47.3280783;118.75;"-413860.5585 5217621.4668,-325201.1955 5253416.6913" +"PELGAS11ACOU21 R21 INTER";"ACOU";"IR13";"ACOU,IR13";"PELGAS2011";"2011-05-16 19:30:17";"2011-05-16 19:30:17";"2011-05-16 16:11:51";-3.7284735;47.0055988;24.65;-2.9297405;47.3280783;118.75;"-2.9297405 47.3280783,-3.7284735 47.0055988" +"PELGAS11ACOU22 R22";"ACOU";"R22";"ACOU,R22";"PELGAS2011";"2011-05-17 06:02:16";"2011-05-17 06:02:16";"2011-05-17 12:14:22";-3.9706292;47.0864012;26.49;-3.1976243;47.4986132;123.05;"-440739.8412 5226590.5332,-420881.6748 5237205.3855,-421077.3123 5237099.658,-354936.2973 5272346.0652" +"PELGAS11ACOU22 R22 INTER";"ACOU";"IR13";"ACOU,IR13";"PELGAS2011";"2011-05-17 12:14:07";"2011-05-17 12:14:07";"2011-05-17 06:02:15";-3.9706292;47.0864012;26.49;-3.1976243;47.4986132;123.05;"-3.1976243 47.4986132,-3.9706292 47.0864012" +"PELGAS11ACOU22 R23";"ACOU";"R23";"ACOU,R23";"PELGAS2011";"2011-05-17 14:04:26";"2011-05-17 14:04:26";"2011-05-17 19:22:18";-4.1219803;47.2123482;40.34;-3.485332;47.6080903;123.1;"-386871.852 5284498.0233,-405035.7477 5273291.6853,-405404.1012 5273045.4762,-457539.8133 5240570.6502" +"PELGAS11ACOU22 R23 INTER";"ACOU";"IR14";"ACOU,IR14";"PELGAS2011";"2011-05-17 19:53:10";"2011-05-17 19:53:10";"2011-05-17 14:04:25";-4.1219803;47.2123482;40.34;-3.485332;47.6080903;123.1;"-4.1219803 47.2123482,-3.485332 47.6080903" +"PELGAS11ACOU23 R24";"ACOU";"R24";"ACOU,R24";"PELGAS2011";"2011-05-18 04:58:59";"2011-05-18 04:58:59";"2011-05-18 12:26:00";-4.386967;47.2807187;32.75;-3.7479587;47.7525113;120.72;"-486953.337 5248159.7757,-444734.9643 5279462.0532,-449208.9192 5275976.3868,-427919.1858 5291844.2475,-433038.8943 5287845.5835,-416238.2007 5300309.3073,-416023.4157 5300528.7543" +"PELGAS11ACOU23 R24 INTER";"ACOU";"IR15";"ACOU,IR15";"PELGAS2011";"2011-05-18 17:37:15";"2011-05-18 17:37:15";"2011-05-18 04:58:58";-4.386967;47.2807187;34.28;-3.7498937;47.7505343;120.72;"-3.7498937 47.7505343,-4.386967 47.2807187" +"PELGAS11ACOU23 R25";"ACOU";"R25";"ACOU,R25";"PELGAS2011";"2011-05-18 14:12:22";"2011-05-18 14:12:22";"2011-05-18 19:35:00";-4.8450417;47.250681;37.69;-4.1950137;47.7554207;132.01;"-465646.5207 5300851.6977,-537799.6287 5244825.591,-527189.4495 5252222.2758" +"PELGAS11ACOU23 R25 INTER";"ACOU";"IR16";"ACOU,IR16";"PELGAS2011";"2011-05-18 11:42:46";"2011-05-18 11:42:46";"2011-05-18 14:12:21";-4.7494545;47.3173178;37.69;-4.1950137;47.7554207;124.9;"-4.7494545 47.3173178,-4.1950137 47.7554207" +"PELGAS11ACOU24 R19";"ACOU";"R19";"ACOU,R19";"PELGAS2011";"2011-05-20 07:52:02";"2011-05-20 07:52:02";"2011-05-20 20:13:48";-4.5703292;46.2206268;0;-3.2565782;46.7377905;1481.33;"-361480.1802 5187894.7455,-436112.6175 5158595.685,-431400.6453 5160450.0177,-479796.3345 5141368.152,-476149.3185 5142064.5993,-507306.5412 5130489.5748" +"PELGAS11ACOU24 R19 INTER";"ACOU";"IR17";"ACOU,IR17";"PELGAS2011";"2011-05-20 18:38:48";"2011-05-20 18:38:48";"2011-05-20 07:52:01";-4.5703292;46.2206268;113.66;-3.2565782;46.7377905;1481.33;"-4.5703292 46.2206268,-3.2565782 46.7377905" +"PELGAS11ACOU24 R26";"ACOU";"R26";"ACOU,R26";"PELGAS2011";"2011-05-19 05:32:38";"2011-05-19 05:32:38";"2011-05-19 08:33:49";-4.8982003;47.5014947;22.18;-4.3980712;47.8787453;127.47;"-543700.2333 5272665.9117,-488185.9032 5314540.7283" +"PELGAS11ACOU24 R26 INTER";"ACOU";"IR14";"ACOU,IR14";"PELGAS2011";"2011-05-19 15:14:59";"2011-05-19 15:14:59";"2011-05-19 05:32:37";-4.8982003;47.5014947;22.18;-4.3980712;47.8787453;127.47;"-4.3980712 47.8787453,-4.8982003 47.5014947" +"PELGAS11ACOU24 R27";"ACOU";"R27";"ACOU,R27";"PELGAS2011";"2011-05-19 10:24:26";"2011-05-19 10:24:26";"2011-05-19 16:17:29";-5.247379;47.5347388;28.48;-4.6504577;47.9887752;139.04;"-516200.8047 5326754.0472,-561324.4803 5292635.622,-560116.6782 5293531.6362,-582459.069 5276356.0068" +"PELGAS11ACOU24 R27 INTER";"ACOU";"IR15";"ACOU,IR15";"PELGAS2011";"2011-05-19 19:23:16";"2011-05-19 19:23:16";"2011-05-19 10:24:25";-5.247379;47.5347388;28.48;-4.6504577;47.9887752;139.04;"-5.247379 47.5347388,-4.6504577 47.9887752" +"PELGAS11ACOU26 R20";"ACOU";"R20";"ACOU,R20";"PELGAS2011";"2011-05-21 04:59:45";"2011-05-21 04:59:45";"2011-05-21 17:18:43";-5.3834533;46.1495033;120.63;-3.5942655;46.853256;4572.8901;"-398963.4705 5200711.416,-521146.0878 5152748.0385,-520492.4643 5152968.4512,-597563.3163 5122594.8663,-578501.6415 5142865.9527" +"PELGAS11ACOU26 R20 INTER";"ACOU";"IR15";"ACOU,IR15";"PELGAS2011";"2011-05-21 09:18:27";"2011-05-21 09:18:27";"2011-05-21 04:59:44";-5.3834533;46.1495033;120.63;-3.5942655;46.853256;4572.8901;"-5.3834533 46.1495033,-3.5942655 46.853256" +"PELGAS11ACOU27 R22";"ACOU";"R22";"ACOU,R22";"PELGAS2011";"2011-05-22 04:49:30";"2011-05-22 04:49:30";"2011-05-22 16:05:31";-5.0356435;46.512835;122.86;-3.9686522;47.0874403;1061.62;"-558956.4285 5162924.685,-545858.8725 5170171.3977,-545783.4702 5170026.6093,-469710.2307 5211435.5478,-475240.9167 5208069.1842,-440670.7437 5226624.699,-440520.3942 5226705.8733" +"PELGAS11ACOU27 R22 INTER";"ACOU";"IR16";"ACOU,IR16";"PELGAS2011";"2011-05-22 20:39:58";"2011-05-22 20:39:58";"2011-05-22 04:49:29";-5.0356435;46.512835;122.98;-3.9700067;47.086709;1061.62;"-3.9700067 47.086709,-5.0356435 46.512835" +"PELGAS11ACOU28 R21";"ACOU";"R21";"ACOU,R21";"PELGAS2011";"2011-05-22 17:08:38";"2011-05-22 17:08:38";"2011-05-22 18:28:16";-3.9882623;46.8997102;119.55;-3.7342713;47.0018593;131.85;"-414504.1143 5217206.3823,-442697.1153 5205867.8322" +"PELGAS11ACOU28 R21 INTER";"ACOU";"IR17";"ACOU,IR17";"PELGAS2011";"2011-05-22 12:21:45";"2011-05-22 12:21:45";"2011-05-22 17:08:37";-3.9882623;46.8997102;119.55;-3.7342713;47.0018593;131.85;"-3.9882623 46.8997102,-3.7342713 47.0018593" +"PELGAS11ACOU29 R23";"ACOU";"R23";"ACOU,R23";"PELGAS2011";"2011-05-24 10:35:03";"2011-05-24 10:35:03";"2011-05-24 11:29:08";-4.2840328;47.1110567;124.14;-4.1179995;47.2148075;136.37;"-457097.9445 5240843.6325,-475288.4913 5229469.6623,-475527.6408 5229327.2937" +"PELGAS11ACOU29 R23 INTER";"ACOU";"IR18";"ACOU,IR18";"PELGAS2011";"2011-05-24 21:05:01";"2011-05-24 21:05:01";"2011-05-24 10:35:02";-4.2818783;47.1123393;124.14;-4.1179995;47.2148075;136.37;"-4.2818783 47.1123393,-4.1179995 47.2148075" +"PELGAS11ACOU29 R24";"ACOU";"R24";"ACOU,R24";"PELGAS2011";"2011-05-24 12:37:35";"2011-05-24 12:37:35";"2011-05-24 17:05:25";-5.1339012;46.7232033;118.35;-4.3890627;47.2755443;915.62;"-487185.9597 5247585.4173,-569863.0332 5186275.5663" +"PELGAS11ACOU29 R24 INTER";"ACOU";"IR18";"ACOU,IR18";"PELGAS2011";"2011-05-24 11:32:24";"2011-05-24 11:32:24";"2011-05-24 12:37:34";-5.1339012;46.7232033;118.35;-4.3890627;47.2755443;915.62;"-5.1339012 46.7232033,-4.3890627 47.2755443" +"PELGAS11ACOU3 R3";"ACOU";"R3";"ACOU,R3";"PELGAS2011";"2011-04-28 04:56:38";"2011-04-28 04:56:38";"2011-04-28 17:27:23";-3.1666603;44.06588;19.23;-1.3623967;44.0668685;1998.28;"-351499.2933 4891369.9005,-324133.2645 4891420.8828,-328385.6745 4891406.7525,-202250.991 4891312.68,-210728.8158 4891422.4035,-151226.0337 4891366.1043" +"PELGAS11ACOU3 R3 INTER";"ACOU";"IR19";"ACOU,IR19";"PELGAS2011";"2011-04-28 19:25:01";"2011-04-28 19:25:01";"2011-04-28 04:56:37";-3.1666603;44.0663613;19.23;-1.3623967;44.0663955;1998.28;"-1.3623967 44.0663613,-3.1666603 44.0663955" +"PELGAS11ACOU30 R25";"ACOU";"R25";"ACOU,R25";"PELGAS2011";"2011-05-25 04:18:10";"2011-05-25 04:18:10";"2011-05-25 10:43:17";-5.4379397;46.7870808;125.64;-4.8067988;47.2807862;1469.36;"-533554.6668 5248167.2682,-582370.6575 5210018.4552,-582276.2187 5210100.7728,-603483.7122 5193461.2068,-603611.3067 5193365.9688" +"PELGAS11ACOU30 R25 INTER";"ACOU";"IR20";"ACOU,IR20";"PELGAS2011";"2011-05-25 15:08:48";"2011-05-25 15:08:48";"2011-05-25 04:18:09";-5.4367902;46.7879388;125.64;-4.8067988;47.2807862;1456.13;"-5.4367902 46.7879388,-4.8067988 47.2807862" +"PELGAS11ACOU30 R26";"ACOU";"R26";"ACOU,R26";"PELGAS2011";"2011-05-25 11:58:04";"2011-05-25 11:58:04";"2011-05-25 19:02:35";-5.5883138;46.9793158;80.38;-4.981538;47.438879;1250.8101;"-620302.8318 5214704.0538,-608971.5855 5223160.6443,-608952.0717 5223205.6548,-608761.074 5223372.4323,-603175.1877 5227596.2043,-552950.718 5265715.569" +"PELGAS11ACOU30 R26 INTER";"ACOU";"IR21";"ACOU,IR21";"PELGAS2011";"2011-05-25 20:01:10";"2011-05-25 20:01:10";"2011-05-25 11:58:03";-5.5883138;46.9793158;130.05;-4.981538;47.438879;1250.8101;"-4.981538 47.438879,-5.5883138 46.9793158" +"PELGAS11ACOU32 R11";"ACOU";"R11";"ACOU,R11";"PELGAS2011";"2011-05-26 18:07:16";"2011-05-26 18:07:16";"2011-05-26 19:55:23";-1.7516713;45.5161303;19.22;-1.3833945;45.6664452;62.93;"-153556.7895 5068975.4172,-194435.5143 5052290.4633" +"PELGAS11ACOU32 R11 INTER";"ACOU";"IR22";"ACOU,IR22";"PELGAS2011";"2011-05-26 12:14:23";"2011-05-26 12:14:23";"2011-05-26 18:07:15";-1.7516713;45.5161303;19.22;-1.3833945;45.6664452;62.93;"-1.7516713 45.5161303,-1.3833945 45.6664452" +"PELGAS11ACOU32 R12";"ACOU";"R12";"ACOU,R12";"PELGAS2011";"2011-05-26 14:28:56";"2011-05-26 14:28:56";"2011-05-26 16:54:22";-1.8897495;45.6761667;18.77;-1.3716917;45.8772357;69.6;"-209762.1945 5070054.5037,-152599.2147 5092244.3472,-152257.7787 5092373.1627" +"PELGAS11ACOU32 R12 INTER";"ACOU";"IR23";"ACOU,IR23";"PELGAS2011";"2011-05-26 19:22:19";"2011-05-26 19:22:19";"2011-05-26 14:28:55";-1.8897495;45.6761667;18.87;-1.3747677;45.8760752;69.6;"-1.3747677 45.8760752,-1.8897495 45.6761667" +"PELGAS11ACOU38 R6";"ACOU";"R6";"ACOU,R6";"PELGAS2011";"2011-06-02 04:09:02";"2011-06-02 04:09:02";"2011-06-02 05:29:24";-1.6803622;44.6663613;40.72;-1.3732148;44.666757;99.78;"-186520.2042 4957966.1043,-152426.8428 4958010.027" +"PELGAS11ACOU38 R6 INTER";"ACOU";"IR24";"ACOU,IR24";"PELGAS2011";"2011-06-02 12:26:01";"2011-06-02 12:26:01";"2011-06-02 04:09:01";-1.6803622;44.6663613;40.72;-1.3732148;44.666757;99.78;"-1.3732148 44.666757,-1.6803622 44.6663613" +"PELGAS11ACOU4 R4";"ACOU";"R4";"ACOU,R4";"PELGAS2011";"2011-04-29 04:58:07";"2011-04-29 04:58:07";"2011-04-29 16:44:51";-2.1317277;44.2662063;0;-1.3279635;44.267396;127.15;"-147403.9485 4913680.956,-176811.4782 4913548.8993,-170762.4 4913605.365,-197930.205 4913613.3015,-194469.7023 4913583.5313,-210448.4742 4913597.4285,-212234.6418 4913581.5777,-236621.7747 4913581.7997" +"PELGAS11ACOU4 R4 INTER";"ACOU";"IR25";"ACOU,IR25";"PELGAS2011";"2011-04-29 19:35:01";"2011-04-29 19:35:01";"2011-04-29 04:58:06";-2.1317277;44.2665027;0;-1.3279635;44.267396;21.68;"-2.1317277 44.2665027,-1.3279635 44.267396" +"PELGAS11ACOU4 R5";"ACOU";"R5";"ACOU,R5";"PELGAS2011";"2011-04-29 18:00:22";"2011-04-29 18:00:22";"2011-04-29 21:26:00";-2.1141027;44.4653288;25.61;-1.3180702;44.468435;627.82;"-234665.3997 4935651.4968,-146305.7922 4935996.285" +"PELGAS11ACOU4 R5 INTER";"ACOU";"IR26";"ACOU,IR26";"PELGAS2011";"2011-04-29 08:33:50";"2011-04-29 08:33:50";"2011-04-29 18:00:21";-2.1141027;44.4653288;25.61;-1.3180702;44.468435;627.82;"-1.3180702 44.468435,-2.1141027 44.4653288" +"PELGAS11ACOU5 R4";"ACOU";"R4";"ACOU,R4";"PELGAS2011";"2011-04-30 06:02:08";"2011-04-30 06:02:08";"2011-04-30 11:52:09";-2.9732542;44.2665747;658.41;-2.1224753;44.2693727;1481.34;"-251793.4212 4913708.6727,-254156.3892 4913900.3697,-235594.7583 4913694.4092,-282425.9913 4913589.7917,-282294.5118 4913614.3782,-329666.781 4913594.4315,-330031.2162 4913615.9655" +"PELGAS11ACOU5 R4 INTER";"ACOU";"IR27";"ACOU,IR27";"PELGAS2011";"2011-04-30 16:17:30";"2011-04-30 16:17:30";"2011-04-30 06:02:07";-2.969971;44.2666165;658.41;-2.1224753;44.2675172;1476.99;"-2.969971 44.2666165,-2.1224753 44.2675172" +"PELGAS11ACOU5 R5";"ACOU";"R5";"ACOU,R5";"PELGAS2011";"2011-04-30 13:36:19";"2011-04-30 13:36:19";"2011-04-30 18:12:44";-2.9673618;44.4664985;125.44;-1.8993217;44.467279;1519.71;"-329377.1598 4935867.969,-210824.7087 4935781.3335" +"PELGAS11ACOU5 R5 INTER";"ACOU";"IR19";"ACOU,IR19";"PELGAS2011";"2011-04-30 20:13:49";"2011-04-30 20:13:49";"2011-04-30 13:36:18";-2.9673618;44.4664985;125.44;-1.8993217;44.467279;1519.71;"-1.8993217 44.4664985,-2.9673618 44.467279" +"PELGAS11ACOU6 R6";"ACOU";"R6";"ACOU,R6";"PELGAS2011";"2011-05-01 05:06:14";"2011-05-01 05:06:14";"2011-05-01 10:04:30";-2.9994072;44.6664743;115.27;-1.8239947;44.6666763;2118.3401;"-332934.1992 4957978.6473,-202463.4117 4958001.0693" +"PELGAS11ACOU6 R6 INTER";"ACOU";"IR20";"ACOU,IR20";"PELGAS2011";"2011-05-01 17:18:44";"2011-05-01 17:18:44";"2011-05-01 05:06:13";-2.9994072;44.6664743;115.27;-1.8239947;44.6666763;2118.3401;"-1.8239947 44.6666763,-2.9994072 44.6664743" +"PELGAS11ACOU6 R7";"ACOU";"R7";"ACOU,R7";"PELGAS2011";"2011-05-01 13:25:40";"2011-05-01 13:25:40";"2011-05-01 20:40:35";-2.8760417;44.8662198;104.61;-1.8239483;44.866747;3293.1499;"-202458.2613 4980178.8138,-252209.871 4980150.3978,-249449.8893 4980187.4607,-275315.8863 4980156.2142,-273218.4303 4980208.917,-319240.6287 4980196.6293" +"PELGAS11ACOU6 R7 INTER";"ACOU";"IR22";"ACOU,IR22";"PELGAS2011";"2011-05-01 16:05:32";"2011-05-01 16:05:32";"2011-05-01 13:25:39";-2.8760417;44.8664758;104.61;-1.8239483;44.8666363;3293.1499;"-2.8760417 44.8666363,-1.8239483 44.8664758" +"PELGAS11ACOU7 R5";"ACOU";"R5";"ACOU,R5";"PELGAS2011";"2011-05-02 06:06:06";"2011-05-02 06:06:06";"2011-05-02 08:06:44";-1.766431;44.4665327;26.45;-1.2992477;44.466638;114.54;"-196073.841 4935785.1297,-144216.4947 4935796.818,-144216.4947 4935796.818" +"PELGAS11ACOU7 R5 INTER";"ACOU";"IR21";"ACOU,IR21";"PELGAS2011";"2011-05-02 18:28:17";"2011-05-02 18:28:17";"2011-05-02 06:06:05";-1.766431;44.4665327;26.45;-1.2992477;44.466638;114.54;"-1.2992477 44.466638,-1.766431 44.4665327" +"PELGAS11ACOU7 R6";"ACOU";"R6";"ACOU,R6";"PELGAS2011";"2011-05-02 09:19:49";"2011-05-02 09:19:49";"2011-05-02 13:50:56";-1.8297293;44.6664682;25.5;-1.3321523;44.6666962;126.76;"-147868.9053 4958003.2782,-179215.383 4957977.9702,-179220.5667 4958002.3458,-203099.9523 4957996.8513" +"PELGAS11ACOU7 R6 INTER";"ACOU";"IR23";"ACOU,IR23";"PELGAS2011";"2011-05-02 11:29:09";"2011-05-02 11:29:09";"2011-05-02 09:19:48";-1.8297293;44.6666383;25.5;-1.3321523;44.6666962;126.76;"-1.8297293 44.6666383,-1.3321523 44.6666962" +"PELGAS11ACOU7 R7";"ACOU";"R7";"ACOU,R7";"PELGAS2011";"2011-05-02 15:00:54";"2011-05-02 15:00:54";"2011-05-02 17:23:25";-1.8211908;44.8666957;26.4;-1.2653502;44.8674132;110.73;"-202152.1788 4980282.8652,-140453.8722 4980203.2227" +"PELGAS11ACOU7 R7 INTER";"ACOU";"IR24";"ACOU,IR24";"PELGAS2011";"2011-05-02 17:05:26";"2011-05-02 17:05:26";"2011-05-02 15:00:53";-1.8211908;44.8666957;26.4;-1.2653502;44.8674132;110.73;"-1.2653502 44.8666957,-1.8211908 44.8674132" +"PELGAS11ACOU8 R11";"ACOU";"R11";"ACOU,R11";"PELGAS2011";"2011-05-03 14:09:22";"2011-05-03 14:09:22";"2011-05-03 15:56:56";-3.420752;44.8300903;2571.03;-3.0503435;44.977349;3548.49;"-338588.1285 4992485.739,-379703.472 4976140.0233" +"PELGAS11ACOU8 R11 INTER";"ACOU";"IR25";"ACOU,IR25";"PELGAS2011";"2011-05-03 10:43:18";"2011-05-03 10:43:18";"2011-05-03 14:09:21";-3.420752;44.8300903;2571.03;-3.0503435;44.977349;3548.49;"-3.420752 44.8300903,-3.0503435 44.977349" +"PELGAS11ACOU8 R7";"ACOU";"R7";"ACOU,R7";"PELGAS2011";"2011-05-03 16:20:02";"2011-05-03 16:20:02";"2011-05-03 18:33:22";-3.5046453;44.8416012;0;-2.9996975;44.8668652;3297.05;"-389015.6283 4977417.7332,-332966.4225 4980222.0372" +"PELGAS11ACOU8 R7 INTER";"ACOU";"IR26";"ACOU,IR26";"PELGAS2011";"2011-05-03 19:02:36";"2011-05-03 19:02:36";"2011-05-03 16:20:01";-3.5046453;44.8416012;0;-2.9996975;44.8668652;3297.05;"-2.9996975 44.8668652,-3.5046453 44.8416012" +"PELGAS11ACOU8 R8";"ACOU";"R8";"ACOU,R8";"PELGAS2011";"2011-05-03 04:57:18";"2011-05-03 04:57:18";"2011-05-03 13:53:25";-3.027619;44.9799743;120.19;-2.1675502;45.0213567;3011.53;"-240598.0722 4997370.5937,-256929.1137 4996594.626,-257510.1987 4996594.4373,-290405.3262 4995001.3542,-288358.0977 4995195.8928,-336065.709 4992777.1473" +"PELGAS11ACOU8 R8 INTER";"ACOU";"IR12";"ACOU,IR12";"PELGAS2011";"2011-05-03 16:54:23";"2011-05-03 16:54:23";"2011-05-03 04:57:17";-3.027619;44.9799743;120.19;-2.1675502;45.0213567;3011.53;"-3.027619 44.9799743,-2.1675502 45.0213567" +"PELGAS11ACOU9 R8";"ACOU";"R8";"ACOU,R8";"PELGAS2011";"2011-05-04 04:56:02";"2011-05-04 04:56:02";"2011-05-04 08:51:54";-2.164314;45.022488;23.96;-1.2373228;45.0673303;112.28;"-240238.854 4997496.168,-137433.0405 5002464.0507,-137342.8308 5002473.6633" +"PELGAS11ACOU9 R8 INTER";"ACOU";"IR11";"ACOU,IR11";"PELGAS2011";"2011-05-04 19:55:24";"2011-05-04 19:55:24";"2011-05-04 04:56:01";-2.164314;45.022488;23.96;-1.2381355;45.0672437;112.28;"-1.2381355 45.0672437,-2.164314 45.022488" +"PELGAS11ACOU9 R9";"ACOU";"R9";"ACOU,R9";"PELGAS2011";"2011-05-04 10:08:24";"2011-05-04 10:08:24";"2011-05-04 17:27:06";-2.4242678;45.1445283;24.32;-1.2332327;45.2665267;129.61;"-136888.8297 5024584.4637,-246725.0835 5013709.6383,-244458.8742 5013902.4453,-269093.7258 5011042.6413" +"PELGAS11ACOU9 R9 INTER";"ACOU";"IR6";"ACOU,IR6";"PELGAS2011";"2011-05-04 05:29:25";"2011-05-04 05:29:25";"2011-05-04 10:08:23";-2.4242678;45.1445283;24.32;-1.2332327;45.2665267;129.61;"-2.4242678 45.1445283,-1.2332327 45.2665267" +"PELGAS11MIK1 20m";"MIK";"20m";"MIK,P0411,20m";"PELGAS2011";"2011-05-03 19:51:15";"2011-05-03 19:51:15";"2011-05-03 20:17:53";-2.9470932;44.9855488;2301.3;-2.9334153;44.9943712;2484.02;"-325609.0983 4993395.9168,-325763.4438 4993491.3102,-326303.5698 4993844.157,-327127.3452 4994375.2032" +"PELGAS11MIK6 35m";"MIK";"35m";"MIK,P0541,35m";"PELGAS2011";"2011-05-29 12:29:39";"2011-05-29 12:29:39";"2011-05-29 13:00:00";-1.9090545;45.4555172;0;-1.8934698;45.4679335;78.8;"-211905.0495 5045562.4092,-211476.0678 5045907.3528,-210662.349 5046564.939,-210175.1478 5046940.6185" +"PELGAS11MIK7 70m";"MIK";"70m";"MIK,P0541,70m";"PELGAS2011";"2011-05-29 13:59:58";"2011-05-29 13:59:58";"2011-05-29 14:23:26";-1.8639282;45.4906073;72.23;-1.8497893;45.4966815;73.07;"-206896.0302 5049457.4103,-206474.5965 5049669.1428,-205326.6123 5050131.6465" +"PELGAS11MIK8 40m";"MIK";"40m";"MIK,P0558,40m";"PELGAS2011";"2011-06-01 13:28:58";"2011-06-01 13:28:58";"2011-06-01 13:52:32";-1.8715918;44.2866148;130.12;-1.8712855;44.2995695;131.01;"-207712.6905 4915814.2428,-207720.9267 4916045.9442,-207746.6898 4917252.2145" Property changes on: trunk/echobase-services/src/test/resources/import-data/commonData/transect.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Added: trunk/echobase-services/src/test/resources/import-data/commonData/transit.csv =================================================================== --- trunk/echobase-services/src/test/resources/import-data/commonData/transit.csv (rev 0) +++ trunk/echobase-services/src/test/resources/import-data/commonData/transit.csv 2012-02-17 18:35:54 UTC (rev 322) @@ -0,0 +1,4 @@ +"voyageName";"description";"startTime";"endTime";"startLocality";"endLocality" +"PELGAS2011";"PELGAS11CAMP1";"26/04/2011 08:00:01";"08/05/2011 20:00:00";"Santander";"La Rochelle" +"PELGAS2011";"PELGAS11CAMP2";"10/05/2011 07:36:45";"23/05/2011 08:00:00";"La Rochelle";"Lorient" +"PELGAS2011";"PELGAS11CAMP3";"24/05/2011 08:00:00";"04/06/2011 17:00:00";"Lorient";"Concarneau" Property changes on: trunk/echobase-services/src/test/resources/import-data/commonData/transit.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Added: trunk/echobase-services/src/test/resources/import-data/commonData/voyage.csv =================================================================== --- trunk/echobase-services/src/test/resources/import-data/commonData/voyage.csv (rev 0) +++ trunk/echobase-services/src/test/resources/import-data/commonData/voyage.csv 2012-02-17 18:35:54 UTC (rev 322) @@ -0,0 +1,2 @@ +"name";"startDate";"endDate";"startPort";"endPort" +"PELGAS2011";"26/04/2011";"04/06/2011";"Santander";"Concarneau" Property changes on: trunk/echobase-services/src/test/resources/import-data/commonData/voyage.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Added: trunk/echobase-services/src/test/resources/import-data/operation/gearmetadatavalue.csv =================================================================== --- trunk/echobase-services/src/test/resources/import-data/operation/gearmetadatavalue.csv (rev 0) +++ trunk/echobase-services/src/test/resources/import-data/operation/gearmetadatavalue.csv 2012-02-17 18:35:54 UTC (rev 322) @@ -0,0 +1,428 @@ +"vesselName";"operationID";"gearCode";"metadataType";"gearMetadataValue" +"THALASSA II";"P0372";"76x70";"CableLength";20.8333333333333 +"THALASSA II";"P0377";"76x70";"CableLength";111.833333333333 +"THALASSA II";"P0378";"76x70";"CableLength";106.166666666667 +"THALASSA II";"P0379";"76x70";"CableLength";106.5 +"THALASSA II";"P0383";"76x70";"CableLength";26.5 +"THALASSA II";"P0384";"76x70";"CableLength";106.333333333333 +"THALASSA II";"P0385";"76x70";"CableLength";80 +"THALASSA II";"P0389";"76x70";"CableLength";38.3333333333333 +"THALASSA II";"P0390";"76x70";"CableLength";67.8333333333333 +"THALASSA II";"P0395";"76x70";"CableLength";66.5 +"THALASSA II";"P0396";"76x70";"CableLength";106.666666666667 +"THALASSA II";"P0399";"76x70";"CableLength";110.666666666667 +"THALASSA II";"P0400";"76x70";"CableLength";20.6666666666667 +"THALASSA II";"P0404";"76x70";"CableLength";37.5 +"THALASSA II";"P0405";"57x52";"CableLength";14.5 +"THALASSA II";"P0409";"76x70";"CableLength";105.166666666667 +"THALASSA II";"P0410";"76x70";"CableLength";45 +"THALASSA II";"P0417";"76x70";"CableLength";109.333333333333 +"THALASSA II";"P0422";"57x52";"CableLength";31.6666666666667 +"THALASSA II";"P0423";"76x70";"CableLength";34.6666666666667 +"THALASSA II";"P0429";"76x70";"CableLength";121.333333333333 +"THALASSA II";"P0430";"76x70";"CableLength";115.5 +"THALASSA II";"P0435";"76x70";"CableLength";24 +"THALASSA II";"P0436";"76x70";"CableLength";100.666666666667 +"THALASSA II";"P0441";"76x70";"CableLength";61.3333333333333 +"THALASSA II";"P0442";"76x70";"CableLength";50.8333333333333 +"THALASSA II";"P0443";"57x52";"CableLength";35.5 +"THALASSA II";"P0444";"76x70";"CableLength";26 +"THALASSA II";"P0449";"76x70";"CableLength";37.1666666666667 +"THALASSA II";"P0450";"76x70";"CableLength";112.666666666667 +"THALASSA II";"P0454";"76x70";"CableLength";68.6666666666667 +"THALASSA II";"P0455";"76x70";"CableLength";121 +"THALASSA II";"P0460";"76x70";"CableLength";96.8333333333333 +"THALASSA II";"P0461";"76x70";"CableLength";125.5 +"THALASSA II";"P0463";"76x70";"CableLength";140.166666666667 +"THALASSA II";"P0464";"76x70";"CableLength";142.333333333333 +"THALASSA II";"P0468";"76x70";"CableLength";49 +"THALASSA II";"P0473";"76x70";"CableLength";36 +"THALASSA II";"P0474";"76x70";"CableLength";57.6666666666667 +"THALASSA II";"P0479";"76x70";"CableLength";66.3333333333333 +"THALASSA II";"P0480";"76x70";"CableLength";43.1666666666667 +"THALASSA II";"P0484";"76x70";"CableLength";75 +"THALASSA II";"P0485";"76x70";"CableLength";103 +"THALASSA II";"P0489";"76x70";"CableLength";88 +"THALASSA II";"P0493";"76x70";"CableLength";118.666666666667 +"THALASSA II";"P0494";"76x70";"CableLength";50.5 +"THALASSA II";"P0495";"76x70";"CableLength";138.5 +"THALASSA II";"P0500";"76x70";"CableLength";174.166666666667 +"THALASSA II";"P0501";"76x70";"CableLength";109.375 +"THALASSA II";"P0505";"76x70";"CableLength";78.6666666666667 +"THALASSA II";"P0506";"76x70";"CableLength";116.333333333333 +"THALASSA II";"P0509";"76x70";"CableLength";83.1666666666667 +"THALASSA II";"P0510";"76x70";"CableLength";133.666666666667 +"THALASSA II";"P0511";"76x70";"CableLength";67.5 +"THALASSA II";"P0512";"76x70";"CableLength";0 +"THALASSA II";"P0523";"76x70";"CableLength";28.8333333333333 +"THALASSA II";"P0535";"76x70";"CableLength";40.8333333333333 +"THALASSA II";"P0545";"76x70";"CableLength";53.6666666666667 +"THALASSA II";"P0553";"76x70";"CableLength";58.8333333333333 +"THALASSA II";"P0554";"76x70";"CableLength";25.1666666666667 +"THALASSA II";"P0563";"76x70";"CableLength";34.8333333333333 +"THALASSA II";"P0372";"76x70";"MinSpeed";2.97 +"THALASSA II";"P0377";"76x70";"MinSpeed";2.66 +"THALASSA II";"P0378";"76x70";"MinSpeed";3.02 +"THALASSA II";"P0379";"76x70";"MinSpeed";2.74 +"THALASSA II";"P0383";"76x70";"MinSpeed";2.94 +"THALASSA II";"P0384";"76x70";"MinSpeed";3.34 +"THALASSA II";"P0385";"76x70";"MinSpeed";3.48 +"THALASSA II";"P0389";"76x70";"MinSpeed";3.03 +"THALASSA II";"P0390";"76x70";"MinSpeed";3.21 +"THALASSA II";"P0395";"76x70";"MinSpeed";3.01 +"THALASSA II";"P0396";"76x70";"MinSpeed";2.82 +"THALASSA II";"P0399";"76x70";"MinSpeed";3.1 +"THALASSA II";"P0400";"76x70";"MinSpeed";3.04 +"THALASSA II";"P0404";"76x70";"MinSpeed";3.02 +"THALASSA II";"P0405";"57x52";"MinSpeed";2.03 +"THALASSA II";"P0409";"76x70";"MinSpeed";2.52 +"THALASSA II";"P0410";"76x70";"MinSpeed";3.13 +"THALASSA II";"P0417";"76x70";"MinSpeed";2.22 +"THALASSA II";"P0422";"57x52";"MinSpeed";1.57 +"THALASSA II";"P0423";"76x70";"MinSpeed";3.05 +"THALASSA II";"P0429";"76x70";"MinSpeed";2.54 +"THALASSA II";"P0430";"76x70";"MinSpeed";2.65 +"THALASSA II";"P0435";"76x70";"MinSpeed";1.58 +"THALASSA II";"P0436";"76x70";"MinSpeed";2.6 +"THALASSA II";"P0441";"76x70";"MinSpeed";2.59 +"THALASSA II";"P0442";"76x70";"MinSpeed";2.75 +"THALASSA II";"P0443";"57x52";"MinSpeed";3.06 +"THALASSA II";"P0444";"76x70";"MinSpeed";2.35 +"THALASSA II";"P0449";"76x70";"MinSpeed";2.62 +"THALASSA II";"P0450";"76x70";"MinSpeed";3.86 +"THALASSA II";"P0454";"76x70";"MinSpeed";2.53 +"THALASSA II";"P0455";"76x70";"MinSpeed";2.41 +"THALASSA II";"P0460";"76x70";"MinSpeed";2.75 +"THALASSA II";"P0461";"76x70";"MinSpeed";1.74 +"THALASSA II";"P0463";"76x70";"MinSpeed";3.31 +"THALASSA II";"P0464";"76x70";"MinSpeed";3.06 +"THALASSA II";"P0468";"76x70";"MinSpeed";2.83 +"THALASSA II";"P0473";"76x70";"MinSpeed";3.18 +"THALASSA II";"P0474";"76x70";"MinSpeed";3.41 +"THALASSA II";"P0479";"76x70";"MinSpeed";3.1 +"THALASSA II";"P0480";"76x70";"MinSpeed";2.64 +"THALASSA II";"P0484";"76x70";"MinSpeed";3.79 +"THALASSA II";"P0485";"76x70";"MinSpeed";1.11 +"THALASSA II";"P0489";"76x70";"MinSpeed";2.38 +"THALASSA II";"P0493";"76x70";"MinSpeed";2.87 +"THALASSA II";"P0494";"76x70";"MinSpeed";3.23 +"THALASSA II";"P0495";"76x70";"MinSpeed";3.52 +"THALASSA II";"P0500";"76x70";"MinSpeed";2.75 +"THALASSA II";"P0501";"76x70";"MinSpeed";3.18 +"THALASSA II";"P0505";"76x70";"MinSpeed";3.49 +"THALASSA II";"P0506";"76x70";"MinSpeed";2.55 +"THALASSA II";"P0509";"76x70";"MinSpeed";3.08 +"THALASSA II";"P0510";"76x70";"MinSpeed";3.57 +"THALASSA II";"P0511";"76x70";"MinSpeed";2.81 +"THALASSA II";"P0512";"76x70";"MinSpeed";7.32 +"THALASSA II";"P0523";"76x70";"MinSpeed";2.84 +"THALASSA II";"P0535";"76x70";"MinSpeed";3.04 +"THALASSA II";"P0545";"76x70";"MinSpeed";3.4 +"THALASSA II";"P0553";"76x70";"MinSpeed";2.65 +"THALASSA II";"P0554";"76x70";"MinSpeed";2.81 +"THALASSA II";"P0563";"76x70";"MinSpeed";2.71 +"THALASSA II";"P0372";"76x70";"MaxSpeed";4.62 +"THALASSA II";"P0377";"76x70";"MaxSpeed";7.6 +"THALASSA II";"P0378";"76x70";"MaxSpeed";5 +"THALASSA II";"P0379";"76x70";"MaxSpeed";9.25 +"THALASSA II";"P0383";"76x70";"MaxSpeed";5.75 +"THALASSA II";"P0384";"76x70";"MaxSpeed";5.09 +"THALASSA II";"P0385";"76x70";"MaxSpeed";4.99 +"THALASSA II";"P0389";"76x70";"MaxSpeed";6.18 +"THALASSA II";"P0390";"76x70";"MaxSpeed";5.11 +"THALASSA II";"P0395";"76x70";"MaxSpeed";5.13 +"THALASSA II";"P0396";"76x70";"MaxSpeed";6.14 +"THALASSA II";"P0399";"76x70";"MaxSpeed";8.18 +"THALASSA II";"P0400";"76x70";"MaxSpeed";5.33 +"THALASSA II";"P0404";"76x70";"MaxSpeed";9.51 +"THALASSA II";"P0405";"57x52";"MaxSpeed";7.21 +"THALASSA II";"P0409";"76x70";"MaxSpeed";5.63 +"THALASSA II";"P0410";"76x70";"MaxSpeed";5.88 +"THALASSA II";"P0417";"76x70";"MaxSpeed";6.79 +"THALASSA II";"P0422";"57x52";"MaxSpeed";6.57 +"THALASSA II";"P0423";"76x70";"MaxSpeed";4.57 +"THALASSA II";"P0429";"76x70";"MaxSpeed";5.02 +"THALASSA II";"P0430";"76x70";"MaxSpeed";5.95 +"THALASSA II";"P0435";"76x70";"MaxSpeed";5.2 +"THALASSA II";"P0436";"76x70";"MaxSpeed";7.56 +"THALASSA II";"P0441";"76x70";"MaxSpeed";7.34 +"THALASSA II";"P0442";"76x70";"MaxSpeed";8.25 +"THALASSA II";"P0443";"57x52";"MaxSpeed";6.76 +"THALASSA II";"P0444";"76x70";"MaxSpeed";8.93 +"THALASSA II";"P0449";"76x70";"MaxSpeed";7.98 +"THALASSA II";"P0450";"76x70";"MaxSpeed";8.67 +"THALASSA II";"P0454";"76x70";"MaxSpeed";5.77 +"THALASSA II";"P0455";"76x70";"MaxSpeed";5.45 +"THALASSA II";"P0460";"76x70";"MaxSpeed";7.01 +"THALASSA II";"P0461";"76x70";"MaxSpeed";4.47 +"THALASSA II";"P0463";"76x70";"MaxSpeed";9.16 +"THALASSA II";"P0464";"76x70";"MaxSpeed";4.91 +"THALASSA II";"P0468";"76x70";"MaxSpeed";9.6 +"THALASSA II";"P0473";"76x70";"MaxSpeed";4.62 +"THALASSA II";"P0474";"76x70";"MaxSpeed";7.73 +"THALASSA II";"P0479";"76x70";"MaxSpeed";9.54 +"THALASSA II";"P0480";"76x70";"MaxSpeed";6.07 +"THALASSA II";"P0484";"76x70";"MaxSpeed";6.82 +"THALASSA II";"P0485";"76x70";"MaxSpeed";8.2 +"THALASSA II";"P0489";"76x70";"MaxSpeed";9.85 +"THALASSA II";"P0493";"76x70";"MaxSpeed";4.97 +"THALASSA II";"P0494";"76x70";"MaxSpeed";9.19 +"THALASSA II";"P0495";"76x70";"MaxSpeed";4.69 +"THALASSA II";"P0500";"76x70";"MaxSpeed";4.42 +"THALASSA II";"P0501";"76x70";"MaxSpeed";5.78 +"THALASSA II";"P0505";"76x70";"MaxSpeed";5.28 +"THALASSA II";"P0506";"76x70";"MaxSpeed";8.58 +"THALASSA II";"P0509";"76x70";"MaxSpeed";7.33 +"THALASSA II";"P0510";"76x70";"MaxSpeed";6.74 +"THALASSA II";"P0511";"76x70";"MaxSpeed";7.48 +"THALASSA II";"P0512";"76x70";"MaxSpeed";10.29 +"THALASSA II";"P0523";"76x70";"MaxSpeed";7.03 +"THALASSA II";"P0535";"76x70";"MaxSpeed";4.8 +"THALASSA II";"P0545";"76x70";"MaxSpeed";5.88 +"THALASSA II";"P0553";"76x70";"MaxSpeed";5.92 +"THALASSA II";"P0554";"76x70";"MaxSpeed";5.83 +"THALASSA II";"P0563";"76x70";"MaxSpeed";7.65 +"THALASSA II";"P0372";"76x70";"AverageSpeed";3.745 +"THALASSA II";"P0377";"76x70";"AverageSpeed";4.31833333333333 +"THALASSA II";"P0378";"76x70";"AverageSpeed";4.34 +"THALASSA II";"P0379";"76x70";"AverageSpeed";4.79 +"THALASSA II";"P0383";"76x70";"AverageSpeed";4.125 +"THALASSA II";"P0384";"76x70";"AverageSpeed";4.19 +"THALASSA II";"P0385";"76x70";"AverageSpeed";4.42166666666667 +"THALASSA II";"P0389";"76x70";"AverageSpeed";4.28166666666667 +"THALASSA II";"P0390";"76x70";"AverageSpeed";4.17 +"THALASSA II";"P0395";"76x70";"AverageSpeed";4.31 +"THALASSA II";"P0396";"76x70";"AverageSpeed";4.205 +"THALASSA II";"P0399";"76x70";"AverageSpeed";4.59 +"THALASSA II";"P0400";"76x70";"AverageSpeed";3.98666666666667 +"THALASSA II";"P0404";"76x70";"AverageSpeed";4.89333333333333 +"THALASSA II";"P0405";"57x52";"AverageSpeed";4.28166666666667 +"THALASSA II";"P0409";"76x70";"AverageSpeed";3.81333333333333 +"THALASSA II";"P0410";"76x70";"AverageSpeed";4.59666666666667 +"THALASSA II";"P0417";"76x70";"AverageSpeed";4.22166666666667 +"THALASSA II";"P0422";"57x52";"AverageSpeed";3.84833333333333 +"THALASSA II";"P0423";"76x70";"AverageSpeed";3.88166666666667 +"THALASSA II";"P0429";"76x70";"AverageSpeed";3.81666666666667 +"THALASSA II";"P0430";"76x70";"AverageSpeed";4.40333333333333 +"THALASSA II";"P0435";"76x70";"AverageSpeed";3.50333333333333 +"THALASSA II";"P0436";"76x70";"AverageSpeed";4.725 +"THALASSA II";"P0441";"76x70";"AverageSpeed";4.49833333333333 +"THALASSA II";"P0442";"76x70";"AverageSpeed";4.63666666666667 +"THALASSA II";"P0443";"57x52";"AverageSpeed";4.16 +"THALASSA II";"P0444";"76x70";"AverageSpeed";4.62333333333333 +"THALASSA II";"P0449";"76x70";"AverageSpeed";4.31333333333333 +"THALASSA II";"P0450";"76x70";"AverageSpeed";5.24 +"THALASSA II";"P0454";"76x70";"AverageSpeed";4.27333333333333 +"THALASSA II";"P0455";"76x70";"AverageSpeed";3.77833333333333 +"THALASSA II";"P0460";"76x70";"AverageSpeed";4.27833333333333 +"THALASSA II";"P0461";"76x70";"AverageSpeed";3.62 +"THALASSA II";"P0463";"76x70";"AverageSpeed";5.12333333333333 +"THALASSA II";"P0464";"76x70";"AverageSpeed";3.89166666666667 +"THALASSA II";"P0468";"76x70";"AverageSpeed";4.92166666666667 +"THALASSA II";"P0473";"76x70";"AverageSpeed";3.76 +"THALASSA II";"P0474";"76x70";"AverageSpeed";4.785 +"THALASSA II";"P0479";"76x70";"AverageSpeed";4.925 +"THALASSA II";"P0480";"76x70";"AverageSpeed";3.98166666666667 +"THALASSA II";"P0484";"76x70";"AverageSpeed";4.48166666666667 +"THALASSA II";"P0485";"76x70";"AverageSpeed";3.96833333333333 +"THALASSA II";"P0489";"76x70";"AverageSpeed";4.955 +"THALASSA II";"P0493";"76x70";"AverageSpeed";3.78 +"THALASSA II";"P0494";"76x70";"AverageSpeed";5.06 +"THALASSA II";"P0495";"76x70";"AverageSpeed";4.00333333333333 +"THALASSA II";"P0500";"76x70";"AverageSpeed";3.84166666666667 +"THALASSA II";"P0501";"76x70";"AverageSpeed";4.23875 +"THALASSA II";"P0505";"76x70";"AverageSpeed";4.31666666666667 +"THALASSA II";"P0506";"76x70";"AverageSpeed";4.98 +"THALASSA II";"P0509";"76x70";"AverageSpeed";4.915 +"THALASSA II";"P0510";"76x70";"AverageSpeed";5.04333333333333 +"THALASSA II";"P0511";"76x70";"AverageSpeed";4.77333333333333 +"THALASSA II";"P0512";"76x70";"AverageSpeed";9.075 +"THALASSA II";"P0523";"76x70";"AverageSpeed";4.775 +"THALASSA II";"P0535";"76x70";"AverageSpeed";3.98666666666667 +"THALASSA II";"P0545";"76x70";"AverageSpeed";4.595 +"THALASSA II";"P0553";"76x70";"AverageSpeed";4.14666666666667 +"THALASSA II";"P0554";"76x70";"AverageSpeed";3.99166666666667 +"THALASSA II";"P0563";"76x70";"AverageSpeed";4.58333333333333 +"THALASSA II";"P0372";"76x70";"VesselHeading";260.566666666667 +"THALASSA II";"P0377";"76x70";"VesselHeading";253.891666666667 +"THALASSA II";"P0378";"76x70";"VesselHeading";90.185 +"THALASSA II";"P0379";"76x70";"VesselHeading";88.6666666666667 +"THALASSA II";"P0383";"76x70";"VesselHeading";273.671666666667 +"THALASSA II";"P0384";"76x70";"VesselHeading";268.878333333333 +"THALASSA II";"P0385";"76x70";"VesselHeading";268.193333333333 +"THALASSA II";"P0389";"76x70";"VesselHeading";83.9666666666667 +"THALASSA II";"P0390";"76x70";"VesselHeading";146.238333333333 +"THALASSA II";"P0395";"76x70";"VesselHeading";87.2033333333333 +"THALASSA II";"P0396";"76x70";"VesselHeading";263.028333333333 +"THALASSA II";"P0399";"76x70";"VesselHeading";271.435 +"THALASSA II";"P0400";"76x70";"VesselHeading";123.208333333333 +"THALASSA II";"P0404";"76x70";"VesselHeading";119.945 +"THALASSA II";"P0405";"57x52";"VesselHeading";212.875 +"THALASSA II";"P0409";"76x70";"VesselHeading";78.8933333333333 +"THALASSA II";"P0410";"76x70";"VesselHeading";293.245 +"THALASSA II";"P0417";"76x70";"VesselHeading";119.203333333333 +"THALASSA II";"P0422";"57x52";"VesselHeading";56.0483333333333 +"THALASSA II";"P0423";"76x70";"VesselHeading";236.07 +"THALASSA II";"P0429";"76x70";"VesselHeading";60.3366666666667 +"THALASSA II";"P0430";"76x70";"VesselHeading";223.166666666667 +"THALASSA II";"P0435";"76x70";"VesselHeading";67.5683333333333 +"THALASSA II";"P0436";"76x70";"VesselHeading";57.7933333333333 +"THALASSA II";"P0441";"76x70";"VesselHeading";236.111666666667 +"THALASSA II";"P0442";"76x70";"VesselHeading";58.9916666666667 +"THALASSA II";"P0443";"57x52";"VesselHeading";56.9566666666667 +"THALASSA II";"P0444";"76x70";"VesselHeading";53.405 +"THALASSA II";"P0449";"76x70";"VesselHeading";58.4166666666667 +"THALASSA II";"P0450";"76x70";"VesselHeading";237.625 +"THALASSA II";"P0454";"76x70";"VesselHeading";67.6916666666667 +"THALASSA II";"P0455";"76x70";"VesselHeading";59.5633333333333 +"THALASSA II";"P0460";"76x70";"VesselHeading";244.785 +"THALASSA II";"P0461";"76x70";"VesselHeading";104.303333333333 +"THALASSA II";"P0463";"76x70";"VesselHeading";231.531666666667 +"THALASSA II";"P0464";"76x70";"VesselHeading";66.83 +"THALASSA II";"P0468";"76x70";"VesselHeading";236.211666666667 +"THALASSA II";"P0473";"76x70";"VesselHeading";83.325 +"THALASSA II";"P0474";"76x70";"VesselHeading";51.7083333333333 +"THALASSA II";"P0479";"76x70";"VesselHeading";196.101666666667 +"THALASSA II";"P0480";"76x70";"VesselHeading";52.8833333333333 +"THALASSA II";"P0484";"76x70";"VesselHeading";211.955 +"THALASSA II";"P0485";"76x70";"VesselHeading";43.27 +"THALASSA II";"P0489";"76x70";"VesselHeading";54.3216666666667 +"THALASSA II";"P0493";"76x70";"VesselHeading";75.4716666666667 +"THALASSA II";"P0494";"76x70";"VesselHeading";65.6283333333333 +"THALASSA II";"P0495";"76x70";"VesselHeading";233.113333333333 +"THALASSA II";"P0500";"76x70";"VesselHeading";157.06 +"THALASSA II";"P0501";"76x70";"VesselHeading";219.94875 +"THALASSA II";"P0505";"76x70";"VesselHeading";228.405 +"THALASSA II";"P0506";"76x70";"VesselHeading";236.438333333333 +"THALASSA II";"P0509";"76x70";"VesselHeading";129.855 +"THALASSA II";"P0510";"76x70";"VesselHeading";72.9616666666667 +"THALASSA II";"P0511";"76x70";"VesselHeading";210.611666666667 +"THALASSA II";"P0512";"76x70";"VesselHeading";228.505 +"THALASSA II";"P0523";"76x70";"VesselHeading";242.451666666667 +"THALASSA II";"P0535";"76x70";"VesselHeading";246.216666666667 +"THALASSA II";"P0545";"76x70";"VesselHeading";83.3783333333333 +"THALASSA II";"P0553";"76x70";"VesselHeading";291.483333333333 +"THALASSA II";"P0554";"76x70";"VesselHeading";163.975 +"THALASSA II";"P0563";"76x70";"VesselHeading";187.58 +"THALASSA II";"P0372";"76x70";"DriftHeading";288.585 +"THALASSA II";"P0377";"76x70";"DriftHeading";209.458333333333 +"THALASSA II";"P0378";"76x70";"DriftHeading";162.17 +"THALASSA II";"P0379";"76x70";"DriftHeading";144.74 +"THALASSA II";"P0383";"76x70";"DriftHeading";215.28 +"THALASSA II";"P0384";"76x70";"DriftHeading";296.815 +"THALASSA II";"P0385";"76x70";"DriftHeading";267.73 +"THALASSA II";"P0389";"76x70";"DriftHeading";119.855 +"THALASSA II";"P0390";"76x70";"DriftHeading";180.563333333333 +"THALASSA II";"P0395";"76x70";"DriftHeading";119.651666666667 +"THALASSA II";"P0396";"76x70";"DriftHeading";319.951666666667 +"THALASSA II";"P0399";"76x70";"DriftHeading";134.876666666667 +"THALASSA II";"P0400";"76x70";"DriftHeading";172.071666666667 +"THALASSA II";"P0404";"76x70";"DriftHeading";176.118333333333 +"THALASSA II";"P0405";"57x52";"DriftHeading";198.505 +"THALASSA II";"P0409";"76x70";"DriftHeading";176.838333333333 +"THALASSA II";"P0410";"76x70";"DriftHeading";256.311666666667 +"THALASSA II";"P0417";"76x70";"DriftHeading";193.316666666667 +"THALASSA II";"P0422";"57x52";"DriftHeading";154.596666666667 +"THALASSA II";"P0423";"76x70";"DriftHeading";185.95 +"THALASSA II";"P0429";"76x70";"DriftHeading";185.255 +"THALASSA II";"P0430";"76x70";"DriftHeading";254.271666666667 +"THALASSA II";"P0435";"76x70";"DriftHeading";107.713333333333 +"THALASSA II";"P0436";"76x70";"DriftHeading";79.67 +"THALASSA II";"P0441";"76x70";"DriftHeading";252.41 +"THALASSA II";"P0442";"76x70";"DriftHeading";111.105 +"THALASSA II";"P0443";"57x52";"DriftHeading";160.406666666667 +"THALASSA II";"P0444";"76x70";"DriftHeading";95.465 +"THALASSA II";"P0449";"76x70";"DriftHeading";98.3616666666667 +"THALASSA II";"P0450";"76x70";"DriftHeading";257.561666666667 +"THALASSA II";"P0454";"76x70";"DriftHeading";135.806666666667 +"THALASSA II";"P0455";"76x70";"DriftHeading";176.491666666667 +"THALASSA II";"P0460";"76x70";"DriftHeading";232.185 +"THALASSA II";"P0461";"76x70";"DriftHeading";164.33 +"THALASSA II";"P0463";"76x70";"DriftHeading";299.055 +"THALASSA II";"P0464";"76x70";"DriftHeading";209.775 +"THALASSA II";"P0468";"76x70";"DriftHeading";246.626666666667 +"THALASSA II";"P0473";"76x70";"DriftHeading";226.94 +"THALASSA II";"P0474";"76x70";"DriftHeading";93.9466666666667 +"THALASSA II";"P0479";"76x70";"DriftHeading";264.918333333333 +"THALASSA II";"P0480";"76x70";"DriftHeading";130.208333333333 +"THALASSA II";"P0484";"76x70";"DriftHeading";232.348333333333 +"THALASSA II";"P0485";"76x70";"DriftHeading";165.846666666667 +"THALASSA II";"P0489";"76x70";"DriftHeading";91.4366666666667 +"THALASSA II";"P0493";"76x70";"DriftHeading";156.846666666667 +"THALASSA II";"P0494";"76x70";"DriftHeading";93.7133333333333 +"THALASSA II";"P0495";"76x70";"DriftHeading";183.271666666667 +"THALASSA II";"P0500";"76x70";"DriftHeading";145.89 +"THALASSA II";"P0501";"76x70";"DriftHeading";216.8375 +"THALASSA II";"P0505";"76x70";"DriftHeading";228.09 +"THALASSA II";"P0506";"76x70";"DriftHeading";276.798333333333 +"THALASSA II";"P0509";"76x70";"DriftHeading";55.7283333333333 +"THALASSA II";"P0510";"76x70";"DriftHeading";78.0416666666667 +"THALASSA II";"P0511";"76x70";"DriftHeading";245.72 +"THALASSA II";"P0512";"76x70";"DriftHeading";284.996666666667 +"THALASSA II";"P0523";"76x70";"DriftHeading";228.715 +"THALASSA II";"P0535";"76x70";"DriftHeading";243.266666666667 +"THALASSA II";"P0545";"76x70";"DriftHeading";143.886666666667 +"THALASSA II";"P0553";"76x70";"DriftHeading";166.721666666667 +"THALASSA II";"P0554";"76x70";"DriftHeading";244.895 +"THALASSA II";"P0563";"76x70";"DriftHeading";229.098333333333 +"THALASSA II";"P0372";"76x70";"DriftSpeed";0.261666666666667 +"THALASSA II";"P0377";"76x70";"DriftSpeed";0.25 +"THALASSA II";"P0378";"76x70";"DriftSpeed";0.685 +"THALASSA II";"P0379";"76x70";"DriftSpeed";0.386666666666667 +"THALASSA II";"P0383";"76x70";"DriftSpeed";0.308333333333333 +"THALASSA II";"P0384";"76x70";"DriftSpeed";0.56 +"THALASSA II";"P0385";"76x70";"DriftSpeed";0.596666666666667 +"THALASSA II";"P0389";"76x70";"DriftSpeed";0.598333333333333 +"THALASSA II";"P0390";"76x70";"DriftSpeed";0.665 +"THALASSA II";"P0395";"76x70";"DriftSpeed";0.621666666666667 +"THALASSA II";"P0396";"76x70";"DriftSpeed";0.62 +"THALASSA II";"P0399";"76x70";"DriftSpeed";0.726666666666667 +"THALASSA II";"P0400";"76x70";"DriftSpeed";0.383333333333333 +"THALASSA II";"P0404";"76x70";"DriftSpeed";0.62 +"THALASSA II";"P0405";"57x52";"DriftSpeed";0.768333333333333 +"THALASSA II";"P0409";"76x70";"DriftSpeed";0.745 +"THALASSA II";"P0410";"76x70";"DriftSpeed";0.725 +"THALASSA II";"P0417";"76x70";"DriftSpeed";0.905 +"THALASSA II";"P0422";"57x52";"DriftSpeed";0.585 +"THALASSA II";"P0423";"76x70";"DriftSpeed";0.273333333333333 +"THALASSA II";"P0429";"76x70";"DriftSpeed";0.405 +"THALASSA II";"P0430";"76x70";"DriftSpeed";0.531666666666667 +"THALASSA II";"P0435";"76x70";"DriftSpeed";0.698333333333333 +"THALASSA II";"P0436";"76x70";"DriftSpeed";0.61 +"THALASSA II";"P0441";"76x70";"DriftSpeed";0.56 +"THALASSA II";"P0442";"76x70";"DriftSpeed";0.511666666666667 +"THALASSA II";"P0443";"57x52";"DriftSpeed";0.446666666666667 +"THALASSA II";"P0444";"76x70";"DriftSpeed";0.705 +"THALASSA II";"P0449";"76x70";"DriftSpeed";0.595 +"THALASSA II";"P0450";"76x70";"DriftSpeed";0.7 +"THALASSA II";"P0454";"76x70";"DriftSpeed";0.506666666666667 +"THALASSA II";"P0455";"76x70";"DriftSpeed";0.593333333333333 +"THALASSA II";"P0460";"76x70";"DriftSpeed";0.741666666666667 +"THALASSA II";"P0461";"76x70";"DriftSpeed";0.723333333333333 +"THALASSA II";"P0463";"76x70";"DriftSpeed";0.746666666666667 +"THALASSA II";"P0464";"76x70";"DriftSpeed";0.508333333333333 +"THALASSA II";"P0468";"76x70";"DriftSpeed";0.753333333333333 +"THALASSA II";"P0473";"76x70";"DriftSpeed";0.628333333333333 +"THALASSA II";"P0474";"76x70";"DriftSpeed";0.941666666666667 +"THALASSA II";"P0479";"76x70";"DriftSpeed";0.823333333333333 +"THALASSA II";"P0480";"76x70";"DriftSpeed";0.853333333333333 +"THALASSA II";"P0484";"76x70";"DriftSpeed";0.406666666666667 +"THALASSA II";"P0485";"76x70";"DriftSpeed";1.065 +"THALASSA II";"P0489";"76x70";"DriftSpeed";0.89 +"THALASSA II";"P0493";"76x70";"DriftSpeed";0.425 +"THALASSA II";"P0494";"76x70";"DriftSpeed";1.23 +"THALASSA II";"P0495";"76x70";"DriftSpeed";0.618333333333333 +"THALASSA II";"P0500";"76x70";"DriftSpeed";0.568333333333333 +"THALASSA II";"P0501";"76x70";"DriftSpeed";0.31625 +"THALASSA II";"P0505";"76x70";"DriftSpeed";0.521666666666667 +"THALASSA II";"P0506";"76x70";"DriftSpeed";1.03 +"THALASSA II";"P0509";"76x70";"DriftSpeed";0.625 +"THALASSA II";"P0510";"76x70";"DriftSpeed";1.06666666666667 +"THALASSA II";"P0511";"76x70";"DriftSpeed";0.575 +"THALASSA II";"P0512";"76x70";"DriftSpeed";0.92 +"THALASSA II";"P0523";"76x70";"DriftSpeed";0.823333333333333 +"THALASSA II";"P0535";"76x70";"DriftSpeed";0.778333333333333 +"THALASSA II";"P0545";"76x70";"DriftSpeed";0.776666666666667 +"THALASSA II";"P0553";"76x70";"DriftSpeed";0.466666666666667 +"THALASSA II";"P0554";"76x70";"DriftSpeed";0.485 +"THALASSA II";"P0563";"76x70";"DriftSpeed";0.871666666666667 Property changes on: trunk/echobase-services/src/test/resources/import-data/operation/gearmetadatavalue.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Added: trunk/echobase-services/src/test/resources/import-data/operation/operation.csv =================================================================== --- trunk/echobase-services/src/test/resources/import-data/operation/operation.csv (rev 0) +++ trunk/echobase-services/src/test/resources/import-data/operation/operation.csv 2012-02-17 18:35:54 UTC (rev 322) @@ -0,0 +1,62 @@ +"vesselName";"operationID";"depthStratumID";"gearShootingStartTime";"midHaulLatitude";"midHaulLongitude";"gearShootingStartLatitude";"gearShootingStartLongitude";"gearShootingEndTime";"gearShootingEndLatitude";"gearShootingEndLongitude";"gearCode" +"THALASSA II";"P0372";"SURF";"26/04/2011 16:10:16";43.6666861;-2.21578605;43.6663602;-2.1615688;"26/04/2011 17:13:04";43.667012;-2.2700033;"76x70" +"THALASSA II";"P0377";"CLAS";"27/04/2011 06:31:39";43.66673165;-1.79899135;43.6667853;-1.747363;"27/04/2011 07:32:48";43.666678;-1.8506197;"76x70" +"THALASSA II";"P0378";"CLAS";"27/04/2011 12:55:28";43.86680415;-1.746744;43.8672138;-1.7982492;"27/04/2011 13:55:31";43.8663945;-1.6952388;"76x70" +"THALASSA II";"P0379";"CLAS";"27/04/2011 16:39:37";43.86757765;-1.9556655;43.8676428;-2.0017103;"27/04/2011 17:33:31";43.8675125;-1.9096207;"76x70" +"THALASSA II";"P0383";"SURF";"28/04/2011 06:25:57";44.0666276;-2.98049865;44.0667095;-2.931594;"28/04/2011 07:21:02";44.0665457;-3.0294033;"76x70" +"THALASSA II";"P0384";"CLAS";"28/04/2011 13:13:08";44.06656295;-1.89965825;44.0663187;-1.8383773;"28/04/2011 14:24:03";44.0668072;-1.9609392;"76x70" +"THALASSA II";"P0385";"CLAS";"28/04/2011 18:50:26";44.06636615;-1.63466365;44.0662513;-1.5944573;"28/04/2011 19:36:31";44.066481;-1.67487;"76x70" +"THALASSA II";"P0389";"CLAS";"29/04/2011 06:19:53";44.2664955;-1.52206065;44.2663643;-1.5754153;"29/04/2011 07:23:00";44.2666267;-1.468706;"76x70" +"THALASSA II";"P0390";"CLAS";"29/04/2011 10:07:58";44.26622665;-1.7073195;44.2664293;-1.7738233;"29/04/2011 11:26:04";44.266024;-1.6408157;"76x70" +"THALASSA II";"P0395";"SURF";"30/04/2011 08:10:51";44.26686615;-2.49632365;44.2666;-2.5487575;"30/04/2011 09:09:32";44.2671323;-2.4438898;"76x70" +"THALASSA II";"P0396";"CLAS";"30/04/2011 18:30:21";44.4666152;-1.94586135;44.4666342;-1.900111;"30/04/2011 19:22:25";44.4665962;-1.9916117;"76x70" +"THALASSA II";"P0399";"CLAS";"01/05/2011 10:35:59";44.6675975;-1.8841202;44.6680473;-1.8218972;"01/05/2011 11:53:04";44.6671477;-1.9463432;"76x70" +"THALASSA II";"P0400";"NUL";"01/05/2011 17:10:40";44.85933125;-2.44603665;44.8685602;-2.494259;"01/05/2011 18:08:30";44.8501023;-2.3978143;"76x70" +"THALASSA II";"P0404";"CLAS";"02/05/2011 10:59:50";44.6668616;-1.5903002;44.6667415;-1.6506737;"02/05/2011 12:12:36";44.6669817;-1.5299267;"76x70" +"THALASSA II";"P0405";"CLAS";"02/05/2011 17:58:21";44.866915;-1.2839095;44.9039153;-1.2852048;"02/05/2011 18:56:47";44.8299147;-1.2826142;"57x52" +"THALASSA II";"P0409";"CLAS";"03/05/2011 05:56:21";45.0164419;-2.2882595;45.0146373;-2.3340887;"03/05/2011 06:53:02";45.0182465;-2.2424303;"76x70" +"THALASSA II";"P0410";"SURF";"03/05/2011 10:11:15";45.00061135;-2.5254289;44.9920907;-2.4510983;"03/05/2011 11:31:10";45.009132;-2.5997595;"76x70" +"THALASSA II";"P0417";"CLAS";"04/05/2011 17:51:47";45.1560195;-2.3268755;45.1495478;-2.376418;"04/05/2011 18:51:40";45.1624912;-2.277333;"76x70" +"THALASSA II";"P0422";"CLAS";"05/05/2011 06:49:50";45.4165605;-1.4492292;45.4029733;-1.4860902;"05/05/2011 07:42:19";45.4301477;-1.4123682;"57x52" +"THALASSA II";"P0423";"CLAS";"05/05/2011 15:39:20";45.55488225;-1.64926125;45.5695578;-1.6113005;"05/05/2011 16:30:36";45.5402067;-1.687222;"76x70" +"THALASSA II";"P0429";"CLAS";"06/05/2011 07:25:49";45.18947685;-2.5391907;45.1718117;-2.5809162;"06/05/2011 08:23:42";45.207142;-2.4974652;"76x70" +"THALASSA II";"P0430";"CLAS";"06/05/2011 16:05:41";45.3405998;-2.743071;45.3603513;-2.6914532;"06/05/2011 17:13:24";45.3208483;-2.7946888;"76x70" +"THALASSA II";"P0435";"CLAS";"07/05/2011 07:04:49";45.73097685;-1.7467553;45.717725;-1.7784178;"07/05/2011 07:47:25";45.7442287;-1.7150928;"76x70" +"THALASSA II";"P0436";"CLAS";"07/05/2011 12:40:49";45.4871954;-2.37471525;45.4660413;-2.4286165;"07/05/2011 13:46:27";45.5083495;-2.320814;"76x70" +"THALASSA II";"P0441";"CLAS";"08/05/2011 06:22:08";45.7596614;-2.2718805;45.778235;-2.2274387;"08/05/2011 07:21:37";45.7410878;-2.3163223;"76x70" +"THALASSA II";"P0442";"SURF";"08/05/2011 16:48:56";46.04068135;-2.12840585;46.0222777;-2.1767912;"08/05/2011 17:52:01";46.059085;-2.0800205;"76x70" +"THALASSA II";"P0443";"CLAS";"10/05/2011 12:43:00";46.35293225;-1.92858305;46.341076;-1.9586068;"10/05/2011 13:24:40";46.3647885;-1.8985593;"57x52" +"THALASSA II";"P0444";"SURF";"10/05/2011 18:08:06";46.0928689;-2.60270885;46.0772255;-2.64295;"10/05/2011 18:59:31";46.1085123;-2.5624677;"76x70" +"THALASSA II";"P0449";"SURF";"11/05/2011 07:48:46";46.4189677;-2.34978675;46.4020612;-2.3922847;"11/05/2011 08:46:02";46.4358742;-2.3072888;"76x70" +"THALASSA II";"P0450";"CLAS";"11/05/2011 14:01:18";46.41944775;-2.94143515;46.4356757;-2.900766;"11/05/2011 14:53:30";46.4032198;-2.9821043;"76x70" +"THALASSA II";"P0454";"CLAS";"12/05/2011 07:05:26";45.84683875;-2.61805485;45.8316423;-2.6548725;"12/05/2011 07:54:23";45.8620352;-2.5812372;"76x70" +"THALASSA II";"P0455";"CLAS";"12/05/2011 11:53:52";45.6132011;-3.20445085;45.5958287;-3.2447132;"12/05/2011 12:50:31";45.6305735;-3.1641885;"76x70" +"THALASSA II";"P0460";"CLAS";"13/05/2011 07:26:04";46.01328;-2.8073191;46.0284548;-2.7692625;"13/05/2011 08:17:17";45.9981052;-2.8453757;"76x70" +"THALASSA II";"P0461";"CLAS";"13/05/2011 13:44:58";45.99174535;-3.4184479;45.9733252;-3.4629725;"13/05/2011 14:47:52";46.0101655;-3.3739233;"76x70" +"THALASSA II";"P0463";"CLAS";"14/05/2011 07:04:19";46.09663135;-3.75210175;46.1143065;-3.707652;"14/05/2011 08:03:26";46.0789562;-3.7965515;"76x70" +"THALASSA II";"P0464";"CLAS";"14/05/2011 18:17:12";46.2098473;-4.0142089;46.1924198;-4.0593755;"14/05/2011 19:15:39";46.2272748;-3.9690423;"76x70" +"THALASSA II";"P0468";"CLAS";"15/05/2011 07:08:30";46.59380925;-3.0607965;46.6065298;-3.0290395;"15/05/2011 07:50:01";46.5810887;-3.0925535;"76x70" +"THALASSA II";"P0473";"CLAS";"16/05/2011 07:04:19";47.09585435;-2.9685695;47.0769127;-3.0166252;"16/05/2011 08:07:44";47.114796;-2.9205138;"76x70" +"THALASSA II";"P0474";"CLAS";"16/05/2011 11:46:49";46.9647855;-3.30780285;46.9476583;-3.350037;"16/05/2011 12:39:19";46.9819127;-3.2655687;"76x70" +"THALASSA II";"P0479";"CLAS";"17/05/2011 07:21:17";47.14522585;-3.85982645;47.164662;-3.8230832;"17/05/2011 08:11:19";47.1257897;-3.8965697;"76x70" +"THALASSA II";"P0480";"CLAS";"17/05/2011 15:24:51";47.5203479;-3.6287345;47.5009285;-3.6607855;"17/05/2011 16:14:04";47.5397673;-3.5966835;"76x70" +"THALASSA II";"P0484";"CLAS";"18/05/2011 07:41:01";47.52017855;-4.06225735;47.5429438;-4.0310202;"18/05/2011 08:35:18";47.4974133;-4.0934945;"76x70" +"THALASSA II";"P0485";"CLAS";"18/05/2011 18:20:32";47.2902331;-4.7932865;47.2654857;-4.8245127;"18/05/2011 19:19:08";47.3149805;-4.7620603;"76x70" +"THALASSA II";"P0489";"CLAS";"19/05/2011 13:15:33";47.72496835;-4.9996085;47.698694;-5.0346557;"19/05/2011 14:08:45";47.7512427;-4.9645613;"76x70" +"THALASSA II";"P0493";"CLAS";"20/05/2011 11:17:24";46.48890005;-3.8921176;46.4710443;-3.941406;"20/05/2011 12:18:42";46.5067558;-3.8428292;"76x70" +"THALASSA II";"P0494";"SURF";"20/05/2011 15:29:41";46.3540454;-4.2313095;46.3366863;-4.2788225;"20/05/2011 16:23:35";46.3714045;-4.1837965;"76x70" +"THALASSA II";"P0495";"CLAS";"20/05/2011 17:23:27";46.36654045;-4.19797885;46.3851312;-4.1534082;"20/05/2011 18:21:10";46.3479497;-4.2425495;"76x70" +"THALASSA II";"P0500";"CLAS";"21/05/2011 11:41:44";46.54847245;-4.71870945;46.5870072;-4.7533782;"21/05/2011 13:07:19";46.5099377;-4.6840407;"76x70" +"THALASSA II";"P0501";"SURF";"21/05/2011 19:00:00";46.2811965;-5.265945;46.3189872;-5.2274662;"21/05/2011 20:20:33";46.2434058;-5.3044238;"76x70" +"THALASSA II";"P0505";"SURF";"22/05/2011 05:45:10";46.5396551;-4.9833545;46.5666412;-4.9372575;"22/05/2011 06:53:04";46.512669;-5.0294515;"76x70" +"THALASSA II";"P0506";"NUL";"22/05/2011 12:05:37";46.89181565;-4.33279955;46.9203095;-4.2784823;"22/05/2011 13:22:21";46.8633218;-4.3871168;"76x70" +"THALASSA II";"P0509";"SURF";"24/05/2011 17:23:57";46.7755839;-5.06538785;46.739707;-5.1170042;"24/05/2011 18:30:39";46.8114608;-5.0137715;"76x70" +"THALASSA II";"P0510";"CLAS";"25/05/2011 07:27:42";46.9686228;-5.2053616;46.9372413;-5.2458797;"25/05/2011 08:34:33";47.0000043;-5.1648435;"76x70" +"THALASSA II";"P0511";"SURF";"25/05/2011 13:04:56";47.03671115;-5.5070321;47.0667233;-5.4681422;"25/05/2011 14:07:39";47.006699;-5.545922;"76x70" +"THALASSA II";"P0512";"CLAS";"25/05/2011 15:07:48";47.0821397;-5.4535365;47.0675042;-5.4723792;"25/05/2011 15:39:12";47.0967752;-5.4346938;"76x70" +"THALASSA II";"P0523";"CLAS";"27/05/2011 15:30:59";45.747111;-1.70588315;45.7523865;-1.6929008;"27/05/2011 15:46:53";45.7418355;-1.7188655;"76x70" +"THALASSA II";"P0535";"CLAS";"28/05/2011 16:43:48";45.67605565;-1.8722945;45.6879498;-1.8414218;"28/05/2011 17:20:31";45.6641615;-1.9031672;"76x70" +"THALASSA II";"P0545";"CLAS";"30/05/2011 16:59:20";44.26752465;-1.53255675;44.2664178;-1.56542;"30/05/2011 17:39:30";44.2686315;-1.4996935;"76x70" +"THALASSA II";"P0553";"CLAS";"31/05/2011 16:00:50";44.27961675;-1.58057055;44.252785;-1.5739693;"31/05/2011 16:48:07";44.3064485;-1.5871718;"76x70" +"THALASSA II";"P0554";"CLAS";"31/05/2011 17:28:44";44.2998278;-1.540415;44.3192688;-1.5419232;"31/05/2011 18:03:21";44.2803868;-1.5389068;"76x70" +"THALASSA II";"P0563";"CLAS";"02/06/2011 17:34:41";44.4829427;-1.44727785;44.5207862;-1.4379057;"02/06/2011 18:32:34";44.4450992;-1.45665;"76x70" Property changes on: trunk/echobase-services/src/test/resources/import-data/operation/operation.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Added: trunk/echobase-services/src/test/resources/import-data/operation/operationmetadatavalue.csv =================================================================== --- trunk/echobase-services/src/test/resources/import-data/operation/operationmetadatavalue.csv (rev 0) +++ trunk/echobase-services/src/test/resources/import-data/operation/operationmetadatavalue.csv 2012-02-17 18:35:54 UTC (rev 322) @@ -0,0 +1,184 @@ +"vesselName";"operationID";"metadataType";"operationMetadataValue" +"THALASSA II";"P0372";"MeanWaterDepth";1248.4 +"THALASSA II";"P0377";"MeanWaterDepth";134.495 +"THALASSA II";"P0378";"MeanWaterDepth";114.37 +"THALASSA II";"P0379";"MeanWaterDepth";132.555 +"THALASSA II";"P0383";"MeanWaterDepth";1586.31 +"THALASSA II";"P0384";"MeanWaterDepth";128.31 +"THALASSA II";"P0385";"MeanWaterDepth";96.4 +"THALASSA II";"P0389";"MeanWaterDepth";69.795 +"THALASSA II";"P0390";"MeanWaterDepth";109.1 +"THALASSA II";"P0395";"MeanWaterDepth";1129.38 +"THALASSA II";"P0396";"MeanWaterDepth";131.385 +"THALASSA II";"P0399";"MeanWaterDepth";129.235 +"THALASSA II";"P0400";"MeanWaterDepth";2460.30005 +"THALASSA II";"P0404";"MeanWaterDepth";84.925 +"THALASSA II";"P0405";"MeanWaterDepth";26.865 +"THALASSA II";"P0409";"MeanWaterDepth";132.485 +"THALASSA II";"P0410";"MeanWaterDepth";1426.205 +"THALASSA II";"P0417";"MeanWaterDepth";124.06 +"THALASSA II";"P0422";"MeanWaterDepth";43.42 +"THALASSA II";"P0423";"MeanWaterDepth";55.6 +"THALASSA II";"P0429";"MeanWaterDepth";132.175 +"THALASSA II";"P0430";"MeanWaterDepth";134.69 +"THALASSA II";"P0435";"MeanWaterDepth";59.395 +"THALASSA II";"P0436";"MeanWaterDepth";109.085 +"THALASSA II";"P0441";"MeanWaterDepth";96.255 +"THALASSA II";"P0442";"MeanWaterDepth";68.665 +"THALASSA II";"P0443";"MeanWaterDepth";33.425 +"THALASSA II";"P0444";"MeanWaterDepth";105.45 +"THALASSA II";"P0449";"MeanWaterDepth";55.8 +"THALASSA II";"P0450";"MeanWaterDepth";107.73 +"THALASSA II";"P0454";"MeanWaterDepth";110.87 +"THALASSA II";"P0455";"MeanWaterDepth";140.855 +"THALASSA II";"P0460";"MeanWaterDepth";116.63 +"THALASSA II";"P0461";"MeanWaterDepth";140.48 +"THALASSA II";"P0463";"MeanWaterDepth";148.73 +"THALASSA II";"P0464";"MeanWaterDepth";151.005 +"THALASSA II";"P0468";"MeanWaterDepth";104.97 +"THALASSA II";"P0473";"MeanWaterDepth";52.495 +"THALASSA II";"P0474";"MeanWaterDepth";101.035 +"THALASSA II";"P0479";"MeanWaterDepth";113.085 +"THALASSA II";"P0480";"MeanWaterDepth";83.2 +"THALASSA II";"P0484";"MeanWaterDepth";101.315 +"THALASSA II";"P0485";"MeanWaterDepth";129.155 +"THALASSA II";"P0489";"MeanWaterDepth";121.86 +"THALASSA II";"P0493";"MeanWaterDepth";139.29 +"THALASSA II";"P0494";"MeanWaterDepth";182.52 +"THALASSA II";"P0495";"MeanWaterDepth";153.91 +"THALASSA II";"P0500";"MeanWaterDepth";202.175 +"THALASSA II";"P0501";"MeanWaterDepth";4020.505 +"THALASSA II";"P0505";"MeanWaterDepth";1171.31 +"THALASSA II";"P0506";"MeanWaterDepth";137.91 +"THALASSA II";"P0509";"MeanWaterDepth";558.225 +"THALASSA II";"P0510";"MeanWaterDepth";196.1 +"THALASSA II";"P0511";"MeanWaterDepth";564.87 +"THALASSA II";"P0512";"MeanWaterDepth";80.61 +"THALASSA II";"P0523";"MeanWaterDepth";53.365 +"THALASSA II";"P0535";"MeanWaterDepth";66.8 +"THALASSA II";"P0545";"MeanWaterDepth";80.45 +"THALASSA II";"P0553";"MeanWaterDepth";96.235 +"THALASSA II";"P0554";"MeanWaterDepth";84.11 +"THALASSA II";"P0563";"MeanWaterDepth";60.205 +"THALASSA II";"P0372";"WaterDepthShoot";945.2 +"THALASSA II";"P0377";"WaterDepthShoot";120.17 +"THALASSA II";"P0378";"WaterDepthShoot";118.33 +"THALASSA II";"P0379";"WaterDepthShoot";141.5 +"THALASSA II";"P0383";"WaterDepthShoot";1493.25 +"THALASSA II";"P0384";"WaterDepthShoot";120.62 +"THALASSA II";"P0385";"WaterDepthShoot";88.13 +"THALASSA II";"P0389";"WaterDepthShoot";87.24 +"THALASSA II";"P0390";"WaterDepthShoot";117.07 +"THALASSA II";"P0395";"WaterDepthShoot";1116.21 +"THALASSA II";"P0396";"WaterDepthShoot";125.75 +"THALASSA II";"P0399";"WaterDepthShoot";119.84 +"THALASSA II";"P0400";"WaterDepthShoot";2458.79 +"THALASSA II";"P0404";"WaterDepthShoot";96.17 +"THALASSA II";"P0405";"WaterDepthShoot";28.51 +"THALASSA II";"P0409";"WaterDepthShoot";143.65 +"THALASSA II";"P0410";"WaterDepthShoot";1015.18 +"THALASSA II";"P0417";"WaterDepthShoot";127.72 +"THALASSA II";"P0422";"WaterDepthShoot";46.23 +"THALASSA II";"P0423";"WaterDepthShoot";51.68 +"THALASSA II";"P0429";"WaterDepthShoot";134.6 +"THALASSA II";"P0430";"WaterDepthShoot";133.95 +"THALASSA II";"P0435";"WaterDepthShoot";62.62 +"THALASSA II";"P0436";"WaterDepthShoot";110.81 +"THALASSA II";"P0441";"WaterDepthShoot";90.4 +"THALASSA II";"P0442";"WaterDepthShoot";74.45 +"THALASSA II";"P0443";"WaterDepthShoot";36.43 +"THALASSA II";"P0444";"WaterDepthShoot";109.36 +"THALASSA II";"P0449";"WaterDepthShoot";59.23 +"THALASSA II";"P0450";"WaterDepthShoot";106.76 +"THALASSA II";"P0454";"WaterDepthShoot";112.48 +"THALASSA II";"P0455";"WaterDepthShoot";141.02 +"THALASSA II";"P0460";"WaterDepthShoot";114.75 +"THALASSA II";"P0461";"WaterDepthShoot";144.37 +"THALASSA II";"P0463";"WaterDepthShoot";147.7 +"THALASSA II";"P0464";"WaterDepthShoot";154.72 +"THALASSA II";"P0468";"WaterDepthShoot";103.4 +"THALASSA II";"P0473";"WaterDepthShoot";55.87 +"THALASSA II";"P0474";"WaterDepthShoot";104.24 +"THALASSA II";"P0479";"WaterDepthShoot";112.23 +"THALASSA II";"P0480";"WaterDepthShoot";86.27 +"THALASSA II";"P0484";"WaterDepthShoot";99.08 +"THALASSA II";"P0485";"WaterDepthShoot";130.26 +"THALASSA II";"P0489";"WaterDepthShoot";124.57 +"THALASSA II";"P0493";"WaterDepthShoot";143.03 +"THALASSA II";"P0494";"WaterDepthShoot";209.42 +"THALASSA II";"P0495";"WaterDepthShoot";154.69 +"THALASSA II";"P0500";"WaterDepthShoot";200.37 +"THALASSA II";"P0501";"WaterDepthShoot";3617.1799 +"THALASSA II";"P0505";"WaterDepthShoot";938.08 +"THALASSA II";"P0506";"WaterDepthShoot";134.82 +"THALASSA II";"P0509";"WaterDepthShoot";812.63 +"THALASSA II";"P0510";"WaterDepthShoot";233.61 +"THALASSA II";"P0511";"WaterDepthShoot";174.81 +"THALASSA II";"P0512";"WaterDepthShoot";79.52 +"THALASSA II";"P0523";"WaterDepthShoot";52.07 +"THALASSA II";"P0535";"WaterDepthShoot";64 +"THALASSA II";"P0545";"WaterDepthShoot";91.35 +"THALASSA II";"P0553";"WaterDepthShoot";93.85 +"THALASSA II";"P0554";"WaterDepthShoot";85.3 +"THALASSA II";"P0563";"WaterDepthShoot";57.27 +"THALASSA II";"P0372";"WaterDepthHaul";1551.6 +"THALASSA II";"P0377";"WaterDepthHaul";148.82 +"THALASSA II";"P0378";"WaterDepthHaul";110.41 +"THALASSA II";"P0379";"WaterDepthHaul";123.61 +"THALASSA II";"P0383";"WaterDepthHaul";1679.37 +"THALASSA II";"P0384";"WaterDepthHaul";136 +"THALASSA II";"P0385";"WaterDepthHaul";104.67 +"THALASSA II";"P0389";"WaterDepthHaul";52.35 +"THALASSA II";"P0390";"WaterDepthHaul";101.13 +"THALASSA II";"P0395";"WaterDepthHaul";1142.55 +"THALASSA II";"P0396";"WaterDepthHaul";137.02 +"THALASSA II";"P0399";"WaterDepthHaul";138.63 +"THALASSA II";"P0400";"WaterDepthHaul";2461.8101 +"THALASSA II";"P0404";"WaterDepthHaul";73.68 +"THALASSA II";"P0405";"WaterDepthHaul";25.22 +"THALASSA II";"P0409";"WaterDepthHaul";121.32 +"THALASSA II";"P0410";"WaterDepthHaul";1837.23 +"THALASSA II";"P0417";"WaterDepthHaul";120.4 +"THALASSA II";"P0422";"WaterDepthHaul";40.61 +"THALASSA II";"P0423";"WaterDepthHaul";59.52 +"THALASSA II";"P0429";"WaterDepthHaul";129.75 +"THALASSA II";"P0430";"WaterDepthHaul";135.43 +"THALASSA II";"P0435";"WaterDepthHaul";56.17 +"THALASSA II";"P0436";"WaterDepthHaul";107.36 +"THALASSA II";"P0441";"WaterDepthHaul";102.11 +"THALASSA II";"P0442";"WaterDepthHaul";62.88 +"THALASSA II";"P0443";"WaterDepthHaul";30.42 +"THALASSA II";"P0444";"WaterDepthHaul";101.54 +"THALASSA II";"P0449";"WaterDepthHaul";52.37 +"THALASSA II";"P0450";"WaterDepthHaul";108.7 +"THALASSA II";"P0454";"WaterDepthHaul";109.26 +"THALASSA II";"P0455";"WaterDepthHaul";140.69 +"THALASSA II";"P0460";"WaterDepthHaul";118.51 +"THALASSA II";"P0461";"WaterDepthHaul";136.59 +"THALASSA II";"P0463";"WaterDepthHaul";149.76 +"THALASSA II";"P0464";"WaterDepthHaul";147.29 +"THALASSA II";"P0468";"WaterDepthHaul";106.54 +"THALASSA II";"P0473";"WaterDepthHaul";49.12 +"THALASSA II";"P0474";"WaterDepthHaul";97.83 +"THALASSA II";"P0479";"WaterDepthHaul";113.94 +"THALASSA II";"P0480";"WaterDepthHaul";80.13 +"THALASSA II";"P0484";"WaterDepthHaul";103.55 +"THALASSA II";"P0485";"WaterDepthHaul";128.05 +"THALASSA II";"P0489";"WaterDepthHaul";119.15 +"THALASSA II";"P0493";"WaterDepthHaul";135.55 +"THALASSA II";"P0494";"WaterDepthHaul";155.62 +"THALASSA II";"P0495";"WaterDepthHaul";153.13 +"THALASSA II";"P0500";"WaterDepthHaul";203.98 +"THALASSA II";"P0501";"WaterDepthHaul";4423.8301 +"THALASSA II";"P0505";"WaterDepthHaul";1404.54 +"THALASSA II";"P0506";"WaterDepthHaul";141 +"THALASSA II";"P0509";"WaterDepthHaul";303.82 +"THALASSA II";"P0510";"WaterDepthHaul";158.59 +"THALASSA II";"P0511";"WaterDepthHaul";954.93 +"THALASSA II";"P0512";"WaterDepthHaul";81.7 +"THALASSA II";"P0523";"WaterDepthHaul";54.66 +"THALASSA II";"P0535";"WaterDepthHaul";69.6 +"THALASSA II";"P0545";"WaterDepthHaul";69.55 +"THALASSA II";"P0553";"WaterDepthHaul";98.62 +"THALASSA II";"P0554";"WaterDepthHaul";82.92 +"THALASSA II";"P0563";"WaterDepthHaul";63.14 Property changes on: trunk/echobase-services/src/test/resources/import-data/operation/operationmetadatavalue.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Modified: trunk/echobase-ui/src/main/java/fr/ifremer/echobase/ui/actions/importData/AbstractLaunchImport.java =================================================================== --- trunk/echobase-ui/src/main/java/fr/ifremer/echobase/ui/actions/importData/AbstractLaunchImport.java 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-ui/src/main/java/fr/ifremer/echobase/ui/actions/importData/AbstractLaunchImport.java 2012-02-17 18:35:54 UTC (rev 322) @@ -23,22 +23,15 @@ */ package fr.ifremer.echobase.ui.actions.importData; -import com.google.common.collect.Lists; -import com.google.common.collect.Maps; -import fr.ifremer.echobase.InputFile; -import fr.ifremer.echobase.entities.EchoBaseEntityEnum; import fr.ifremer.echobase.services.AbstractImportDataService; -import fr.ifremer.echobase.services.CsvImportResult; import fr.ifremer.echobase.services.ImportException; import fr.ifremer.echobase.services.configurations.AbstractImportConfiguration; -import fr.ifremer.echobase.services.configurations.ResultsImportConfiguration; +import fr.ifremer.echobase.services.csv.CsvFileImportResult; import fr.ifremer.echobase.ui.actions.AbstractWaitAndExecAction; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import java.util.List; -import java.util.Map; -import java.util.Set; /** * TODO @@ -61,7 +54,7 @@ protected transient Exception error; - protected List<CsvImportResult> result; + protected List<CsvFileImportResult> result; protected AbstractLaunchImport(Class<M> modelType, Class<S> serviceType) { this.modelType = modelType; @@ -73,7 +66,7 @@ return getEchoBaseSession().getImportDataConfiguration(modelType); } - public List<CsvImportResult> getResult() { + public List<CsvFileImportResult> getResult() { return result; } @@ -102,35 +95,9 @@ addActionMessage(_("echobase.info.import.succeded")); } catch (ImportException e) { - + addActionError(_("echobase.info.import.failed")); - - if (model instanceof ResultsImportConfiguration) { - ResultsImportConfiguration m = (ResultsImportConfiguration) model; - result = Lists.newLinkedList(); - CsvImportResult value; - - value = CsvImportResult.newResult( - EchoBaseEntityEnum.LengthAgeKey, - m.getLengthAgeKeyFile().getFile().getName(), - false - ); - value.incrementsNumberCreated(); - result.add(value); - - value = CsvImportResult.newResult( - EchoBaseEntityEnum.AcousticInstrument, - m.getLengthAgeKeyFile().getFile().getName(), - false - ); - value.incrementsNumberCreated(); - value.incrementsNumberCreated(); - value.incrementsNumberCreated(); - result.add(value); - - } - if (log.isErrorEnabled()) { log.error("Error while import ", e); } Modified: trunk/echobase-ui/src/main/webapp/WEB-INF/includes/importDataResults.jsp =================================================================== --- trunk/echobase-ui/src/main/webapp/WEB-INF/includes/importDataResults.jsp 2012-02-17 18:30:48 UTC (rev 321) +++ trunk/echobase-ui/src/main/webapp/WEB-INF/includes/importDataResults.jsp 2012-02-17 18:35:54 UTC (rev 322) @@ -40,12 +40,14 @@ <th><s:text name="echobase.common.nbCreatedObjects"/></th> </tr> </thead> - <s:iterator value="result"> + <s:iterator value="result" var="fileResult"> + <s:iterator value="%{#fileResult.entityTypes}" var="entityType"> <tr> - <td><s:property value="importFileName"/></td> - <td><s:property value="entityType"/></td> - <td><s:property value="numberCreated"/></td> + <td><s:property value="%{#importFileName}"/></td> + <td><s:property value="%{#entityType}"/></td> + <td><s:property value="%{#fileResult.getNumberCreated(#entityType)}"/></td> </tr> </s:iterator> + </s:iterator> </table> </s:else>
participants (1)
-
tchemit@users.forge.codelutin.com