diff --git a/FlowManager/displayManager.m b/FlowManager/displayManager.m index 741282ad0..5abf03902 100644 --- a/FlowManager/displayManager.m +++ b/FlowManager/displayManager.m @@ -112,7 +112,7 @@ function displayManager(windowTitle, sample_data, callbacks) mainWindow(windowTitle, sample_data, states, 3, @stateSelectCallback); function state = stateSelectCallback(event,... - panel, updateCallback, state, sample_data, graphType, setIdx, vars, extraSetIdx) + panel, updateCallback, state, sample_data, graphType, setIdx, vars, extraSetIdx, isFlagVisible) %STATESELECTCALLBACK Called when the user interacts with the main % window, by changing the state, the selected data set, the selected % variables or the selected graph type. @@ -127,6 +127,7 @@ function displayManager(windowTitle, sample_data, callbacks) % setIdx - currently selected sample_data struct (index) % vars - currently selected variables (indices). % extraSetIdx - currently selected extra sample_data struct (index) + % isFlagVisible - currently selected visibility of flags (boolean) % % Outputs: % state - If a state change was forced, tells the main window @@ -335,12 +336,14 @@ function qcDataCallback() [graphs, lines, vars] = graphFunc(panel, sample_data{setIdx}, vars, extra_sample_data); - if isempty(flagFunc) - warning(['Cannot display QC flags using ' graphType ... - '. Try a different graph type.']); - return; - else - flags = flagFunc( panel, graphs, sample_data{setIdx}, vars); + if isFlagVisible + if isempty(flagFunc) + warning(['Cannot display QC flags using ' graphType ... + '. Try a different graph type.']); + return; + else + flags = flagFunc( panel, graphs, sample_data{setIdx}, vars); + end end catch e @@ -477,8 +480,10 @@ function dataSelectCallback(ax, type, range) updateCallback(sample_data{setIdx}); % update graph - if ~isempty(flags), delete(flags(flags ~= 0)); end - flags = flagFunc(panel, graphs, sample_data{setIdx}, vars); + if isFlagVisible + if ~isempty(flags), delete(flags(flags ~= 0)); end + flags = flagFunc(panel, graphs, sample_data{setIdx}, vars); + end % write/update manual QC file for this dataset mqcFile = [sample_data{setIdx}.toolbox_input_file, '.mqc']; diff --git a/GUI/mainWindow.m b/GUI/mainWindow.m index 3c715898b..6bc18bd67 100644 --- a/GUI/mainWindow.m +++ b/GUI/mainWindow.m @@ -127,7 +127,7 @@ function mainWindow(windowTitle, sample_data, states, startState, selectionCallb % extra instrument check box extraSampleCb = uicontrol(... 'Style', 'checkbox',... - 'String', 'Graph extra instrument (black)',... + 'String', 'Graph extra instrument good data only (black)',... 'Value', 0,... 'Tag', 'extraSampleCheckBox'); @@ -139,6 +139,20 @@ function mainWindow(windowTitle, sample_data, states, startState, selectionCallb 'Enable', 'off',... 'Tag', 'extraSamplePopUpMenu'); +% flag visibility check box +visiFlagCb = uicontrol(... + 'Style', 'checkbox',... + 'String', 'Show data flag if any',... + 'Value', 1,... + 'Tag', 'visiFlagCheckBox'); + +% bad data visibility check box +visiBadCb = uicontrol(... + 'Style', 'checkbox',... + 'String', 'Hide bad data',... + 'Value', 0,... + 'Tag', 'visiBadCheckBox'); + % side panel sidePanel = uipanel(... 'Parent', fig,... @@ -181,6 +195,8 @@ function mainWindow(windowTitle, sample_data, states, startState, selectionCallb set(graphMenu, 'Units', 'normalized'); set(extraSampleCb, 'Units', 'normalized'); set(extraSampleMenu, 'Units', 'normalized'); +set(visiFlagCb, 'Units', 'normalized'); +set(visiBadCb, 'Units', 'normalized'); set(stateButtons, 'Units', 'normalized'); % set window position @@ -198,12 +214,14 @@ function mainWindow(windowTitle, sample_data, states, startState, selectionCallb set(fig, 'Units', 'normalized'); % set widget positions -set(sidePanel, 'Position', posUi2(fig, 100, 100, 11:100, 1:10, 0)); -set(mainPanel, 'Position', posUi2(fig, 100, 100, 11:100, 11:100, 0)); +set(sidePanel, 'Position', posUi2(fig, 100, 100, 16:100, 1:10, 0)); +set(mainPanel, 'Position', posUi2(fig, 100, 100, 16:100, 11:100, 0)); set(sampleMenu, 'Position', posUi2(fig, 100, 100, 1:5, 1:75, 0)); set(graphMenu, 'Position', posUi2(fig, 100, 100, 1:5, 76:100, 0)); set(extraSampleMenu, 'Position', posUi2(fig, 100, 100, 6:10, 1:75, 0)); set(extraSampleCb, 'Position', posUi2(fig, 100, 100, 6:10, 76:100, 0)); +set(visiFlagCb, 'Position', posUi2(fig, 100, 100, 11:15, 76:100, 0)); +set(visiBadCb, 'Position', posUi2(fig, 100, 100, 11:15, 51:75, 0)); % varPanel and butPanel are positioned relative to sidePanel set(butPanel, 'Position', posUi2(sidePanel, 10, 1, 1:5, 1, 0)); @@ -221,6 +239,8 @@ function mainWindow(windowTitle, sample_data, states, startState, selectionCallb set(graphMenu, 'Callback', @graphMenuCallback); set(extraSampleCb, 'Callback', @sampleMenuCallback); set(extraSampleMenu, 'Callback', @sampleMenuCallback); +set(visiFlagCb, 'Callback', @sampleMenuCallback); +set(visiBadCb, 'Callback', @sampleMenuCallback); set(stateButtons, 'Callback', @stateButtonCallback); set(fig, 'Visible', 'on'); @@ -342,6 +362,8 @@ function selectionChange(event) extraSam.meta.index = 0; end + isFlagVisible = get(visiFlagCb, 'value'); + % clear main panel children = get(mainPanel, 'Children'); delete(children); @@ -362,7 +384,8 @@ function selectionChange(event) graph, ... % currently selected graph type (string). sam.meta.index, ... % currently selected sample_data struct (index) vars, ... % currently selected variables (indices). - extraSam.meta.index); % currently selected extra sample_data struct (index) + extraSam.meta.index, ...% currently selected extra sample_data struct (index) + isFlagVisible); % currently selected visibility of flags (boolean) % set data cursor mode custom display dcm_obj = datacursormode(fig); diff --git a/Graph/DepthProfile/flagDepthProfileGeneric.m b/Graph/DepthProfile/flagDepthProfileGeneric.m index c6862a02d..985b9fd0c 100644 --- a/Graph/DepthProfile/flagDepthProfileGeneric.m +++ b/Graph/DepthProfile/flagDepthProfileGeneric.m @@ -43,7 +43,16 @@ if ~isnumeric(var), error('var must be numeric'); end qcSet = str2double(readProperty('toolbox.qc_set')); -rawFlag = imosQCFlag('raw', qcSet, 'flag'); +noDisplayFlag = imosQCFlag('raw', qcSet, 'flag'); % raw flags are not displayed by default + +visiBadCbh = findobj('Tag', 'visiBadCheckBox'); +isBadHidden = get(visiBadCbh, 'value'); +if isBadHidden + % we add bad flags to the list of flags not to be displayed + noDisplayFlag = [noDisplayFlag, ... + imosQCFlag('probablyBad', qcSet, 'flag'), ... + imosQCFlag('bad', qcSet, 'flag')]; +end % get the toolbox execution mode mode = readProperty('toolbox.mode'); @@ -76,9 +85,9 @@ % get a list of the different flag types to be graphed flagTypes = unique(fl); -% don't display raw data flags -iRawFlag = (flagTypes == rawFlag); -if any(iRawFlag), flagTypes(iRawFlag) = []; end +% don't display specific flags +iNoDisplayFlag = ismember(flagTypes, noDisplayFlag); +if any(iNoDisplayFlag), flagTypes(iNoDisplayFlag) = []; end lenFlag = length(flagTypes); diff --git a/Graph/DepthProfile/graphDepthProfileGeneric.m b/Graph/DepthProfile/graphDepthProfileGeneric.m index db556dd10..cc2f0410e 100644 --- a/Graph/DepthProfile/graphDepthProfileGeneric.m +++ b/Graph/DepthProfile/graphDepthProfileGeneric.m @@ -58,6 +58,20 @@ var = sample_data.variables{var}; +visiBadCbh = findobj('Tag', 'visiBadCheckBox'); +isBadHidden = get(visiBadCbh, 'value'); +if isBadHidden + % we replace values flagged as bad by NaN before plotting + qcSet = str2double(readProperty('toolbox.qc_set')); + rawFlag = imosQCFlag('raw', qcSet, 'flag'); + goodFlag = imosQCFlag('good', qcSet, 'flag'); + probGoodFlag = imosQCFlag('probablyGood', qcSet, 'flag'); + + iGood = ismember(var.flags, [rawFlag, goodFlag, probGoodFlag]); + + var.data(~iGood) = NaN; +end + switch mode case 'profile' h = line(var.data(:, 1), depth.data(:, 1), 'Parent', ax, 'LineStyle', '-', 'Color', color); % downcast diff --git a/Graph/TimeSeries/flagTimeSeriesGeneric.m b/Graph/TimeSeries/flagTimeSeriesGeneric.m index d4fce04e3..db8c1ba09 100644 --- a/Graph/TimeSeries/flagTimeSeriesGeneric.m +++ b/Graph/TimeSeries/flagTimeSeriesGeneric.m @@ -43,7 +43,16 @@ if ~isnumeric(var), error('var must be numeric'); end qcSet = str2double(readProperty('toolbox.qc_set')); -rawFlag = imosQCFlag('raw', qcSet, 'flag'); +noDisplayFlag = imosQCFlag('raw', qcSet, 'flag'); % raw flags are not displayed by default + +visiBadCbh = findobj('Tag', 'visiBadCheckBox'); +isBadHidden = get(visiBadCbh, 'value'); +if isBadHidden + % we add bad flags to the list of flags not to be displayed + noDisplayFlag = [noDisplayFlag, ... + imosQCFlag('probablyBad', qcSet, 'flag'), ... + imosQCFlag('bad', qcSet, 'flag')]; +end iTimeDim = getVar(sample_data.dimensions, 'TIME'); time = sample_data.dimensions{iTimeDim}; @@ -55,9 +64,9 @@ % get a list of the different flag types to be graphed flagTypes = unique(fl); -% don't display raw data flags -iRawFlag = (flagTypes == rawFlag); -if any(iRawFlag), flagTypes(iRawFlag) = []; end +% don't display specific flags +iNoDisplayFlag = ismember(flagTypes, noDisplayFlag); +if any(iNoDisplayFlag), flagTypes(iNoDisplayFlag) = []; end lenFlag = length(flagTypes); diff --git a/Graph/TimeSeries/flagTimeSeriesTimeDepth.m b/Graph/TimeSeries/flagTimeSeriesTimeDepth.m index 6fe4ded2e..cef42e7ed 100644 --- a/Graph/TimeSeries/flagTimeSeriesTimeDepth.m +++ b/Graph/TimeSeries/flagTimeSeriesTimeDepth.m @@ -42,7 +42,16 @@ if ~isnumeric(var), error('var must be numeric'); end qcSet = str2double(readProperty('toolbox.qc_set')); -rawFlag = imosQCFlag('raw', qcSet, 'flag'); +noDisplayFlag = imosQCFlag('raw', qcSet, 'flag'); % raw flags are not displayed by default + +visiBadCbh = findobj('Tag', 'visiBadCheckBox'); +isBadHidden = get(visiBadCbh, 'value'); +if isBadHidden + % we add bad flags to the list of flags not to be displayed + noDisplayFlag = [noDisplayFlag, ... + imosQCFlag('probablyBad', qcSet, 'flag'), ... + imosQCFlag('bad', qcSet, 'flag')]; +end iTimeDim = getVar(sample_data.dimensions, 'TIME'); depth = sample_data.variables{var}.dimensions(2); @@ -55,9 +64,9 @@ % get a list of the different flag types to be graphed flagTypes = unique(fl); -% don't display raw data flags -iRawFlag = (flagTypes == rawFlag); -if any(iRawFlag), flagTypes(iRawFlag) = []; end +% don't display specific flags +iNoDisplayFlag = ismember(flagTypes, noDisplayFlag); +if any(iNoDisplayFlag), flagTypes(iNoDisplayFlag) = []; end lenFlag = length(flagTypes); diff --git a/Graph/TimeSeries/flagTimeSeriesTimeFrequency.m b/Graph/TimeSeries/flagTimeSeriesTimeFrequency.m index 3bd02a0c7..5cd23733e 100644 --- a/Graph/TimeSeries/flagTimeSeriesTimeFrequency.m +++ b/Graph/TimeSeries/flagTimeSeriesTimeFrequency.m @@ -42,7 +42,16 @@ if ~isnumeric(var), error('var must be numeric'); end qcSet = str2double(readProperty('toolbox.qc_set')); -rawFlag = imosQCFlag('raw', qcSet, 'flag'); +noDisplayFlag = imosQCFlag('raw', qcSet, 'flag'); % raw flags are not displayed by default + +visiBadCbh = findobj('Tag', 'visiBadCheckBox'); +isBadHidden = get(visiBadCbh, 'value'); +if isBadHidden + % we add bad flags to the list of flags not to be displayed + noDisplayFlag = [noDisplayFlag, ... + imosQCFlag('probablyBad', qcSet, 'flag'), ... + imosQCFlag('bad', qcSet, 'flag')]; +end iTimeDim = getVar(sample_data.dimensions, 'TIME'); freq = sample_data.variables{var}.dimensions(2); @@ -55,9 +64,9 @@ % get a list of the different flag types to be graphed flagTypes = unique(fl); -% don't display raw data flags -iRawFlag = (flagTypes == rawFlag); -if any(iRawFlag), flagTypes(iRawFlag) = []; end +% don't display specific flags +iNoDisplayFlag = ismember(flagTypes, noDisplayFlag); +if any(iNoDisplayFlag), flagTypes(iNoDisplayFlag) = []; end lenFlag = length(flagTypes); diff --git a/Graph/TimeSeries/flagTimeSeriesTimeFrequencyDirection.m b/Graph/TimeSeries/flagTimeSeriesTimeFrequencyDirection.m index 8b6e2d363..0be49806b 100644 --- a/Graph/TimeSeries/flagTimeSeriesTimeFrequencyDirection.m +++ b/Graph/TimeSeries/flagTimeSeriesTimeFrequencyDirection.m @@ -41,7 +41,16 @@ if ~isnumeric(var), error('var must be numeric'); end qcSet = str2double(readProperty('toolbox.qc_set')); -rawFlag = imosQCFlag('raw', qcSet, 'flag'); +noDisplayFlag = imosQCFlag('raw', qcSet, 'flag'); % raw flags are not displayed by default + +visiBadCbh = findobj('Tag', 'visiBadCheckBox'); +isBadHidden = get(visiBadCbh, 'value'); +if isBadHidden + % we add bad flags to the list of flags not to be displayed + noDisplayFlag = [noDisplayFlag, ... + imosQCFlag('probablyBad', qcSet, 'flag'), ... + imosQCFlag('bad', qcSet, 'flag')]; +end freq = sample_data.variables{var}.dimensions(2); dir = sample_data.variables{var}.dimensions(3); @@ -67,9 +76,9 @@ % get a list of the different flag types to be graphed flagTypes = unique(sswvFlags); -% don't display raw data flags -iRawFlag = (flagTypes == rawFlag); -if any(iRawFlag), flagTypes(iRawFlag) = []; end +% don't display specific flags +iNoDisplayFlag = ismember(flagTypes, noDisplayFlag); +if any(iNoDisplayFlag), flagTypes(iNoDisplayFlag) = []; end lenFlag = length(flagTypes); diff --git a/Graph/TimeSeries/graphTimeSeriesGeneric.m b/Graph/TimeSeries/graphTimeSeriesGeneric.m index 8991f8a7f..952f74d51 100644 --- a/Graph/TimeSeries/graphTimeSeriesGeneric.m +++ b/Graph/TimeSeries/graphTimeSeriesGeneric.m @@ -49,6 +49,20 @@ if ischar(var.data), var.data = str2num(var.data); end % we assume data is an array of one single character +visiBadCbh = findobj('Tag', 'visiBadCheckBox'); +isBadHidden = get(visiBadCbh, 'value'); +if isBadHidden + % we replace values flagged as bad by NaN before plotting + qcSet = str2double(readProperty('toolbox.qc_set')); + rawFlag = imosQCFlag('raw', qcSet, 'flag'); + goodFlag = imosQCFlag('good', qcSet, 'flag'); + probGoodFlag = imosQCFlag('probablyGood', qcSet, 'flag'); + + iGood = ismember(var.flags, [rawFlag, goodFlag, probGoodFlag]); + + var.data(~iGood) = NaN; +end + h = line(time.data, var.data, 'Parent', ax, 'Color', color); set(ax, 'Tag', 'axis1D'); diff --git a/Graph/TimeSeries/graphTimeSeriesTimeDepth.m b/Graph/TimeSeries/graphTimeSeriesTimeDepth.m index 1b105b27a..1c0962501 100644 --- a/Graph/TimeSeries/graphTimeSeriesTimeDepth.m +++ b/Graph/TimeSeries/graphTimeSeriesTimeDepth.m @@ -50,6 +50,20 @@ depth = sample_data.dimensions{depth}; var = sample_data.variables {var}; +visiBadCbh = findobj('Tag', 'visiBadCheckBox'); +isBadHidden = get(visiBadCbh, 'value'); +if isBadHidden + % we replace values flagged as bad by NaN before plotting + qcSet = str2double(readProperty('toolbox.qc_set')); + rawFlag = imosQCFlag('raw', qcSet, 'flag'); + goodFlag = imosQCFlag('good', qcSet, 'flag'); + probGoodFlag = imosQCFlag('probablyGood', qcSet, 'flag'); + + iGood = ismember(var.flags, [rawFlag, goodFlag, probGoodFlag]); + + var.data(~iGood) = NaN; +end + xPcolor = time.data; yPcolor = depth.data; diff --git a/Graph/TimeSeries/graphTimeSeriesTimeFrequency.m b/Graph/TimeSeries/graphTimeSeriesTimeFrequency.m index b4089fc12..bf7fba4a0 100644 --- a/Graph/TimeSeries/graphTimeSeriesTimeFrequency.m +++ b/Graph/TimeSeries/graphTimeSeriesTimeFrequency.m @@ -50,6 +50,20 @@ freq = sample_data.dimensions{freq}; var = sample_data.variables {var}; +visiBadCbh = findobj('Tag', 'visiBadCheckBox'); +isBadHidden = get(visiBadCbh, 'value'); +if isBadHidden + % we replace values flagged as bad by NaN before plotting + qcSet = str2double(readProperty('toolbox.qc_set')); + rawFlag = imosQCFlag('raw', qcSet, 'flag'); + goodFlag = imosQCFlag('good', qcSet, 'flag'); + probGoodFlag = imosQCFlag('probablyGood', qcSet, 'flag'); + + iGood = ismember(var.flags, [rawFlag, goodFlag, probGoodFlag]); + + var.data(~iGood) = NaN; +end + xPcolor = time.data; yPcolor = freq.data; diff --git a/Graph/TimeSeries/graphTimeSeriesTimeFrequencyDirection.m b/Graph/TimeSeries/graphTimeSeriesTimeFrequencyDirection.m index 3723c26d2..c2f683634 100644 --- a/Graph/TimeSeries/graphTimeSeriesTimeFrequencyDirection.m +++ b/Graph/TimeSeries/graphTimeSeriesTimeFrequencyDirection.m @@ -56,7 +56,22 @@ timeData = sample_data.dimensions{iTimeDim}.data; dirData = sample_data.dimensions{dir}.data; freqData = sample_data.dimensions{freq}.data; -sswvData = sample_data.variables{var}.data; + +var = sample_data.variables{var}; + +visiBadCbh = findobj('Tag', 'visiBadCheckBox'); +isBadHidden = get(visiBadCbh, 'value'); +if isBadHidden + % we replace values flagged as bad by NaN before plotting + qcSet = str2double(readProperty('toolbox.qc_set')); + rawFlag = imosQCFlag('raw', qcSet, 'flag'); + goodFlag = imosQCFlag('good', qcSet, 'flag'); + probGoodFlag = imosQCFlag('probablyGood', qcSet, 'flag'); + + iGood = ismember(var.flags, [rawFlag, goodFlag, probGoodFlag]); + + var.data(~iGood) = NaN; +end varCheckbox = findobj('Tag', ['checkbox' sample_data.variables{var}.name]); iTime = get(varCheckbox, 'userData'); @@ -80,7 +95,7 @@ X(i, :) = r*sin(theta(i)); end -h = pcolor(ax, double(X), double(Y), double([squeeze(sswvData(iTime, :, :)), sswvData(iTime, :, 1)']')); % we need to repeat the first values at the end +h = pcolor(ax, double(X), double(Y), double([squeeze(var.data(iTime, :, :)), var.data(iTime, :, 1)']')); % we need to repeat the first values at the end axis equal tight shading flat set(ax, ... diff --git a/Graph/TimeSeries/setTimeSerieColorbarContextMenu.m b/Graph/TimeSeries/setTimeSerieColorbarContextMenu.m index 291a00ba4..92abc4308 100644 --- a/Graph/TimeSeries/setTimeSerieColorbarContextMenu.m +++ b/Graph/TimeSeries/setTimeSerieColorbarContextMenu.m @@ -53,7 +53,7 @@ switch upper(var.name(1:4)) case {'UCUR', 'VCUR', 'WCUR', 'ECUR', 'VEL1', 'VEL2', 'VEL3', 'VEL4'} % 0 centred parameters colormap(r_b); - cbCLimRange('', '', 'auto, 0 centred', var.data); + cbCLimRange('', '', 'full, 0 centred', var.data); % full is chosen to attract attention on any potential outlier % Define a context menu hMenu = uicontextmenu; @@ -116,7 +116,7 @@ case {'CSPD', 'VDEN', 'VDEV', 'VDEP', 'VDES'} % [0; oo[ paremeters colormap(parula); - cbCLimRange('', '', 'auto from 0', var.data); + cbCLimRange('', '', 'full', var.data); % full is chosen to attract attention on any potential outlier % Define a context menu hMenu = uicontextmenu; @@ -143,7 +143,7 @@ % let's apply a colormap like jet but starting from white load('jet_w.mat', '-mat', 'jet_w'); colormap(jet_w); - cbCLimRange('', '', 'auto from 0', var.data); + cbCLimRange('', '', 'full', var.data); % full is chosen to attract attention on any potential outlier % Define a context menu hMenu = uicontextmenu; @@ -170,7 +170,7 @@ otherwise colormap(parula); - cbCLimRange('', '', 'full', var.data); + cbCLimRange('', '', 'full', var.data); % full is chosen to attract attention on any potential outlier % Define a context menu hMenu = uicontextmenu; diff --git a/Graph/Transect/flagTransectGeneric.m b/Graph/Transect/flagTransectGeneric.m index 88ab2bd0e..a2c5f2541 100644 --- a/Graph/Transect/flagTransectGeneric.m +++ b/Graph/Transect/flagTransectGeneric.m @@ -42,7 +42,16 @@ if ~isnumeric(var), error('var must be numeric'); end qcSet = str2double(readProperty('toolbox.qc_set')); -rawFlag = imosQCFlag('raw', qcSet, 'flag'); +noDisplayFlag = imosQCFlag('raw', qcSet, 'flag'); % raw flags are not displayed by default + +visiBadCbh = findobj('Tag', 'visiBadCheckBox'); +isBadHidden = get(visiBadCbh, 'value'); +if isBadHidden + % we add bad flags to the list of flags not to be displayed + noDisplayFlag = [noDisplayFlag, ... + imosQCFlag('probablyBad', qcSet, 'flag'), ... + imosQCFlag('bad', qcSet, 'flag')]; +end % get latitude/longitude variables lat = getVar(sample_data.variables, 'LATITUDE'); @@ -55,9 +64,9 @@ % get a list of the different flag types to be graphed flagTypes = unique(var.flags); -% don't display raw data flags -iRawFlag = (flagTypes == rawFlag); -if any(iRawFlag), flagTypes(iRawFlag) = []; end +% don't display specific flags +iNoDisplayFlag = ismember(flagTypes, noDisplayFlag); +if any(iNoDisplayFlag), flagTypes(iNoDisplayFlag) = []; end lenFlag = length(flagTypes); diff --git a/Graph/Transect/graphTransectGeneric.m b/Graph/Transect/graphTransectGeneric.m index 8f4c96c29..481239a60 100644 --- a/Graph/Transect/graphTransectGeneric.m +++ b/Graph/Transect/graphTransectGeneric.m @@ -44,6 +44,20 @@ lon = sample_data.variables{lon}; var = sample_data.variables{var}; +visiBadCbh = findobj('Tag', 'visiBadCheckBox'); +isBadHidden = get(visiBadCbh, 'value'); +if isBadHidden + % we replace values flagged as bad by NaN before plotting + qcSet = str2double(readProperty('toolbox.qc_set')); + rawFlag = imosQCFlag('raw', qcSet, 'flag'); + goodFlag = imosQCFlag('good', qcSet, 'flag'); + probGoodFlag = imosQCFlag('probablyGood', qcSet, 'flag'); + + iGood = ismember(var.flags, [rawFlag, goodFlag, probGoodFlag]); + + var.data(~iGood) = NaN; +end + h = patch([lat.data' nan], [lon.data' nan], 0); set(h, 'CData', [var.data' nan]); diff --git a/Graph/XvY/flagXvYGeneric.m b/Graph/XvY/flagXvYGeneric.m index db24a0933..217b0add6 100644 --- a/Graph/XvY/flagXvYGeneric.m +++ b/Graph/XvY/flagXvYGeneric.m @@ -43,7 +43,16 @@ if ~isnumeric(var), error('var must be numeric'); end qcSet = str2double(readProperty('toolbox.qc_set')); -rawFlag = imosQCFlag('raw', qcSet, 'flag'); +noDisplayFlag = imosQCFlag('raw', qcSet, 'flag'); % raw flags are not displayed by default + +visiBadCbh = findobj('Tag', 'visiBadCheckBox'); +isBadHidden = get(visiBadCbh, 'value'); +if isBadHidden + % we add bad flags to the list of flags not to be displayed + noDisplayFlag = [noDisplayFlag, ... + imosQCFlag('probablyBad', qcSet, 'flag'), ... + imosQCFlag('bad', qcSet, 'flag')]; +end flags1 = sample_data.variables{var(1)}.flags; flags2 = sample_data.variables{var(2)}.flags; @@ -54,9 +63,9 @@ % get a list of the different flag types to be graphed flagTypes = unique(flags); -% don't display raw data flags -iRawFlag = (flagTypes == rawFlag); -if any(iRawFlag), flagTypes(iRawFlag) = []; end +% don't display specific flags +iNoDisplayFlag = ismember(flagTypes, noDisplayFlag); +if any(iNoDisplayFlag), flagTypes(iNoDisplayFlag) = []; end lenFlag = length(flagTypes); diff --git a/Graph/XvY/graphXvYGeneric.m b/Graph/XvY/graphXvYGeneric.m index 0319f0001..78f4ef633 100644 --- a/Graph/XvY/graphXvYGeneric.m +++ b/Graph/XvY/graphXvYGeneric.m @@ -42,6 +42,23 @@ xdata = sample_data.variables{vars(1)}.data(:); ydata = sample_data.variables{vars(2)}.data(:); +visiBadCbh = findobj('Tag', 'visiBadCheckBox'); +isBadHidden = get(visiBadCbh, 'value'); +if isBadHidden + % we replace values flagged as bad by NaN before plotting + qcSet = str2double(readProperty('toolbox.qc_set')); + rawFlag = imosQCFlag('raw', qcSet, 'flag'); + goodFlag = imosQCFlag('good', qcSet, 'flag'); + probGoodFlag = imosQCFlag('probablyGood', qcSet, 'flag'); + + iGood1 = ismember(sample_data.variables{vars(1)}.flags, [rawFlag, goodFlag, probGoodFlag]); + iGood2 = ismember(sample_data.variables{vars(2)}.flags, [rawFlag, goodFlag, probGoodFlag]); + iGood = iGood1 & iGood2; + + xdata(~iGood) = NaN; + ydata(~iGood) = NaN; +end + h = line(xdata, ydata, 'Color', color); set(ax, 'Tag', 'axis1D'); diff --git a/IMOS/imosParameters.txt b/IMOS/imosParameters.txt index 0ca6945ce..21c81c97b 100644 --- a/IMOS/imosParameters.txt +++ b/IMOS/imosParameters.txt @@ -16,14 +16,14 @@ ABSI1, 0, backscatter_intensity_from_acoustic_beam_1, ABSI2, 0, backscatter_intensity_from_acoustic_beam_2, decibel, , , A, 999999.0, 0.0, 150.0, float ABSI3, 0, backscatter_intensity_from_acoustic_beam_3, decibel, , , A, 999999.0, 0.0, 150.0, float ABSI4, 0, backscatter_intensity_from_acoustic_beam_4, decibel, , , A, 999999.0, 0.0, 150.0, float -ABSIC1, 0, backscatter_intensity_from_acoustic_beam_1, count, , , A, 999999.0, , , float -ABSIC2, 0, backscatter_intensity_from_acoustic_beam_2, count, , , A, 999999.0, , , float -ABSIC3, 0, backscatter_intensity_from_acoustic_beam_3, count, , , A, 999999.0, , , float -ABSIC4, 0, backscatter_intensity_from_acoustic_beam_4, count, , , A, 999999.0, , , float -CMAG1, 0, particle_distribution_correlation_magnitude_from_acoustic_beam_1, 1, , , E, 999999.0, 0.0, 250.0, float -CMAG2, 0, particle_distribution_correlation_magnitude_from_acoustic_beam_2, 1, , , E, 999999.0, 0.0, 250.0, float -CMAG3, 0, particle_distribution_correlation_magnitude_from_acoustic_beam_3, 1, , , E, 999999.0, 0.0, 250.0, float -CMAG4, 0, particle_distribution_correlation_magnitude_from_acoustic_beam_4, 1, , , E, 999999.0, 0.0, 250.0, float +ABSIC1, 0, backscatter_intensity_from_acoustic_beam_1, count, , , A, 999999.0, 0.0, 255.0, float +ABSIC2, 0, backscatter_intensity_from_acoustic_beam_2, count, , , A, 999999.0, 0.0, 255.0, float +ABSIC3, 0, backscatter_intensity_from_acoustic_beam_3, count, , , A, 999999.0, 0.0, 255.0, float +ABSIC4, 0, backscatter_intensity_from_acoustic_beam_4, count, , , A, 999999.0, 0.0, 255.0, float +CMAG1, 0, particle_distribution_correlation_magnitude_from_acoustic_beam_1, count, , , E, 999999.0, 0.0, 255.0, float +CMAG2, 0, particle_distribution_correlation_magnitude_from_acoustic_beam_2, count, , , E, 999999.0, 0.0, 255.0, float +CMAG3, 0, particle_distribution_correlation_magnitude_from_acoustic_beam_3, count, , , E, 999999.0, 0.0, 255.0, float +CMAG4, 0, particle_distribution_correlation_magnitude_from_acoustic_beam_4, count, , , E, 999999.0, 0.0, 255.0, float PERG1, 0, percentage_of_good_three_beam_solutions, percent, , , E, 999999.0, 0.0, 100.0, float PERG2, 0, percentage_of_transformations_rejected, percent, , , E, 999999.0, 0.0, 100.0, float PERG3, 0, percentage_of_measurements_with_more_than_one_beam_bad, percent, , , E, 999999.0, 0.0, 100.0, float @@ -81,7 +81,7 @@ MASS_NET, 1, upward_mass_flux_of_air, MAXZ, 0, maximum_number_of_samples_in_vertical_profile, , , , , , , , int mean_depth, 0, mean_cell_depth, m, , , E, 9999.0, 0.0, 10000, float mean_height, 0, mean_cell_height, m, , , E, 9999.0, 0.0, 100, float -NOBS, 1, number_of_observations, 1, , , , , , , byte +NOBS, 1, number_of_observations, 1, , , , , , , int NOMINAL_DEPTH, 1, depth, m, down, sea surface, Z, 999999.0, -5.0, 12000.0, float NTRA, 1, mole_concentration_of_nitrate_in_sea_water, umole l-1, , , K, 999999.0, , , float NTR2, 1, moles_of_nitrate_per_unit_mass_in_sea_water, umole kg-1, , , K, 999999.0, , , float @@ -106,7 +106,7 @@ SLC2, 1, moles_of_silicate_per_unit_mass_in_sea_water, SNR1, 0, signal_noise_ratio_from_acoustic_beam_1, decibel, , , A, 999999.0, 0.0, 150.0, float SNR2, 0, signal_noise_ratio_from_acoustic_beam_2, decibel, , , A, 999999.0, 0.0, 150.0, float SNR3, 0, signal_noise_ratio_from_acoustic_beam_3, decibel, , , A, 999999.0, 0.0, 150.0, float -SPCT, 0, awac_spectra_calculation_method, , , , , , , , byte +SPCT, 0, awac_spectra_calculation_method, , , , , 999999.0, 0.0, 3.0, float SPEC_CNDC, 0, sea_water_specific_electrical_conductivity_corrected_at_25degC, S m-1, , , C, 999999.0, 0.0, 50000.0, float SRAD, 1, isotropic_shortwave_radiance_in_air, W m-1 sr-1, , , F, 999999.0, , , float SSDS, 0, sea_surface_wave_directional_spread, degree, clockwise, true north, W, 999999.0, 0.0, 360.0, float diff --git a/Parser/aquadoppProfilerParse.m b/Parser/aquadoppProfilerParse.m index 7df1477ee..3a0af17b6 100644 --- a/Parser/aquadoppProfilerParse.m +++ b/Parser/aquadoppProfilerParse.m @@ -262,15 +262,20 @@ qcFlag(iBadOriented, :) = NaN; end dims = { - 'TIME', time, ['Time stamp corresponds to the start of the measurement which lasts ' num2str(user.AvgInterval) ' seconds.']; ... - 'DIST_ALONG_BEAMS', distance, 'Nortek instrument data is not vertically bin-mapped (no tilt correction applied). Cells are lying parallel to the beams, at heights above sensor that vary with tilt.' + 'TIME', time, ['Time stamp corresponds to the start of the measurement which lasts ' num2str(user.AvgInterval) ' seconds.']; ... + 'DIST_ALONG_BEAMS', distance, ['Values correspond to the distance between the instrument''s transducers and the centre of each cells. ' ... + 'Nortek instrument data is not vertically bin-mapped (no tilt correction applied). Cells are lying parallel to the beams, ' ... + 'at heights above sensor that vary with tilt.'] }; clear time distance; if velocityProcessed % we re-arrange dimensions like for RDI ADCPs dims(end+1, :) = dims(end, :); - dims(end-1, :) = {'HEIGHT_ABOVE_SENSOR', height(:), 'Data has been vertically bin-mapped using Nortek Storm software ''Remove tilt effects'' procedure. Cells have consistant heights above sensor in time.'}; + dims(end-1, :) = { + 'HEIGHT_ABOVE_SENSOR', height(:), ['Values correspond to the distance between the instrument''s transducers and the centre of each cells. ' ... + 'Data has been vertically bin-mapped using Nortek Storm software ''Remove tilt effects'' procedure. Cells have consistant heights above sensor in time.'] + }; end clear height; diff --git a/Parser/awacParse.m b/Parser/awacParse.m index 04fa23525..05fdb4101 100644 --- a/Parser/awacParse.m +++ b/Parser/awacParse.m @@ -230,15 +230,20 @@ end dims = { - 'TIME', time, ['Time stamp corresponds to the start of the measurement which lasts ' num2str(user.AvgInterval) ' seconds.']; ... - 'DIST_ALONG_BEAMS', distance, 'Nortek instrument data is not vertically bin-mapped (no tilt correction applied). Cells are lying parallel to the beams, at heights above sensor that vary with tilt.' + 'TIME', time, ['Time stamp corresponds to the start of the measurement which lasts ' num2str(user.AvgInterval) ' seconds.']; ... + 'DIST_ALONG_BEAMS', distance, ['Values correspond to the distance between the instrument''s transducers and the centre of each cells. ' ... + 'Nortek instrument data is not vertically bin-mapped (no tilt correction applied). Cells are lying parallel to the beams, ' ... + 'at heights above sensor that vary with tilt.'] }; clear time distance; if velocityProcessed % we re-arrange dimensions like for RDI ADCPs dims(end+1, :) = dims(end, :); - dims(end-1, :) = {'HEIGHT_ABOVE_SENSOR', height(:), 'Data has been vertically bin-mapped using Nortek Storm software ''Remove tilt effects'' procedure. Cells have consistant heights above sensor in time.'}; + dims(end-1, :) = { + 'HEIGHT_ABOVE_SENSOR', height(:), ['Values correspond to the distance between the instrument''s transducers and the centre of each cells. ' ... + 'Data has been vertically bin-mapped using Nortek Storm software ''Remove tilt effects'' procedure. Cells have consistant heights above sensor in time.'] + }; end clear height; diff --git a/Parser/continentalParse.m b/Parser/continentalParse.m index d963d39e1..6b4252f39 100644 --- a/Parser/continentalParse.m +++ b/Parser/continentalParse.m @@ -229,15 +229,20 @@ qcFlag(iBadOriented, :) = NaN; end dims = { - 'TIME', time, ['Time stamp corresponds to the start of the measurement which lasts ' num2str(user.AvgInterval) ' seconds.']; ... - 'DIST_ALONG_BEAMS', distance, 'Nortek instrument data is not vertically bin-mapped (no tilt correction applied). Cells are lying parallel to the beams, at heights above sensor that vary with tilt.' + 'TIME', time, ['Time stamp corresponds to the start of the measurement which lasts ' num2str(user.AvgInterval) ' seconds.']; ... + 'DIST_ALONG_BEAMS', distance, ['Values correspond to the distance between the instrument''s transducers and the centre of each cells. ' ... + 'Nortek instrument data is not vertically bin-mapped (no tilt correction applied). Cells are lying parallel to the beams, ' ... + 'at heights above sensor that vary with tilt.'] }; clear time distance; if velocityProcessed % we re-arrange dimensions like for RDI ADCPs dims(end+1, :) = dims(end, :); - dims(end-1, :) = {'HEIGHT_ABOVE_SENSOR', height, 'Data has been vertically bin-mapped using Nortek Storm software ''Remove tilt effects'' procedure. Cells have consistant heights above sensor in time.'}; + dims(end-1, :) = { + 'HEIGHT_ABOVE_SENSOR', height, ['Values correspond to the distance between the instrument''s transducers and the centre of each cells. ' ... + 'Data has been vertically bin-mapped using Nortek Storm software ''Remove tilt effects'' procedure. Cells have consistant heights above sensor in time.'] + }; end clear height; diff --git a/Parser/readWQMraw.m b/Parser/readWQMraw.m index 4c65c8b5d..ac7d450f8 100644 --- a/Parser/readWQMraw.m +++ b/Parser/readWQMraw.m @@ -92,8 +92,7 @@ 'that fluoresces in the region of 695nm. '... 'Originally expressed in ug/l, 1l = 0.001m3 was assumed.'}}; params{end+1} = {'backscatterance', {'TURB', ''}}; - % CJ where is PAR?? - % params{end+1} = {'PAR', {'PAR', ''}}; + params{end+1} = {'PAR', {'PAR', ''}}; % open file, get header and use it to generate a % format string which we can pass to textscan @@ -136,9 +135,11 @@ durationBurst = zeros(nBurst, 1); for i=1:nBurst timeBurst = time(iBurst(i):iBurst(i+1)-1); - sampleIntervalInBurst(i) = median(diff(timeBurst*24*3600)); - firstTimeBurst(i) = timeBurst(1); - durationBurst(i) = (timeBurst(end) - timeBurst(1))*24*3600 + sampleIntervalInBurst(i); + if numel(timeBurst)>1 % deals with the case of a file with a single sample in a single burst + sampleIntervalInBurst(i) = median(diff(timeBurst*24*3600)); + firstTimeBurst(i) = timeBurst(1); + durationBurst(i) = (timeBurst(end) - timeBurst(1))*24*3600 + sampleIntervalInBurst(i); + end end sample_data.meta.instrument_sample_interval = round(median(sampleIntervalInBurst)); @@ -258,12 +259,16 @@ headerLine(iline)=str{1}; end -wqmSNExpr = ['^WQM SN: +' '(\S+)$']; -ctdSNExpr = ['^CTDO SN: +' '(\S+)$']; -doSNExpr = 'DOSN=(\S+)'; -opticsSNExpr = ['Optics SN: +' '(\S+)']; +wqmSNExpr = '^WQM SN:\s+(\S+)$'; +ctdSNExpr = '^CTDO SN:\s+(\S+)$'; +doSNExpr = '^DOSN=(\S+)'; +opticsSNExpr = '^Optics SN:\s+(\S+)'; +doSNExpr2 = '^IDO SN:\s+(\S+)'; +opticsSNExpr2 = '^FL_NTU SN:\s+(\S+)'; +opticsSNExpr3 = '^ECO SN:\s+(\S+)'; +parSN = '^PAR SN=(\S+)'; -exprs = {wqmSNExpr ctdSNExpr doSNExpr opticsSNExpr}; +exprs = {wqmSNExpr ctdSNExpr doSNExpr opticsSNExpr doSNExpr2 opticsSNExpr2 opticsSNExpr3 parSN}; for l = 1:length(headerLine) @@ -294,6 +299,23 @@ % optics case 4 WQM.Optics_SN = tkns{1}{1}; + + % do v2 + case 5 + WQM.DO_SN = tkns{1}{1}; + if strcmpi(WQM.DO_SN, '0'), WQM.DO_SN = WQM.CTDO_SN; end + + % optics v2 + case 6 + WQM.Optics_SN = tkns{1}{1}; + + % optics v3 + case 7 + WQM.Optics_SN = tkns{1}{1}; + + % par + case 8 + WQM.PAR_SN = tkns{1}{1}; end break; end @@ -374,19 +396,75 @@ WQM.varlabel={'conductivity','temperature','pressure','salinity','oxygen','U_Cal_CHL','backscatterance'}; WQM.varunits={'S/m','C','dbar','PSU','ml/l','ug/l','NTU'}; +% Find column index for various variable +% Assume data starts after date/time section. Some example strings are +% File Format: SN,State,Date,Time,Cond,Temp,Pres,RawDO,RawCHL,RawTurb,Volts +% File Format: SN,State,Date,Time,Cond(S/m),Temp(C),Pres(dbar),RawDO(Hz),RawCHL(cts),RawTurb(cts),Volts +% File Format: SN,State,Date,Time,Cond(S/m),Temp(C),Pres(dbar),RawDO(Hz),Pumped,CHLa(Counts),Turbidity(Counts),Volts +% File Format: SN,State,Date,Time,Cond(S/m),Temp(C),Pres(dbar),RawDO(Hz),Pumped,CHLA(COUNTS),TURBIDITY(COUNTS),Volts +rExp = '^File Format:\s+(\S+)'; +indFileFormat = find(~cellfun(@isempty, regexpi(headerLine, rExp))); +if isempty(indFileFormat) + % very old file, have to assume default ordering + colCond = 1; + colTemp = 2; + colPres = 3; + colRawDO = 4; + colCHL = 5; + colTurb = 6; + colPar = 7; +else + % newer file, try and parse various variable names + tkns = regexp(headerLine{indFileFormat}, rExp, 'tokens'); + formatStr = tkns{1}{1}; + formatCellStr = textscan(formatStr, '%s', 'delimiter', ','); + formatCellStr = formatCellStr{1}; + + rExp = 'Cond'; + colCond = find(~cellfun(@isempty, regexpi(formatCellStr, rExp))) - 4; + rExp = 'Temp'; + colTemp = find(~cellfun(@isempty, regexpi(formatCellStr, rExp))) - 4; + rExp = 'Pres'; + colPres = find(~cellfun(@isempty, regexpi(formatCellStr, rExp))) - 4; + rExp = 'RawDO'; + colRawDO = find(~cellfun(@isempty, regexpi(formatCellStr, rExp))) - 4; + rExp = 'CHL'; % RawCHL | CHLa | CHLA + colCHL = find(~cellfun(@isempty, regexpi(formatCellStr, rExp))) - 4; + rExp = 'TURB'; % RawTurb | Turbidity | TURBIDITY + colTurb = find(~cellfun(@isempty, regexpi(formatCellStr, rExp))) - 4; + rExp = 'PAR'; % RawPAR | PAR + colPar = find(~cellfun(@isempty, regexpi(formatCellStr, rExp))) - 4; +end -% the next number is one of 7 codes - +% a standard data line looks like +% SN,State,DATE,TIME,data +% +% Currently known States are +% % These clearly contain physical data -% 4 - data fields -% 5 - data fields -% 6 - data fields - +% 4 - SN,4,DATE,TIME,comma seperated data fields +% 5 - SN,5,DATE,TIME,comma seperated data fields +% 6 - SN,6,DATE,TIME,comma seperated data fields +% % Not clear what these lines contain, maybe status and voltage stuff % 100 - 16 fields % 110 - 13 fields, perhaps an aborted sample? - only found it at end of file % 120 - 3 fields, pretty rare right near end as well -% 130 - 1 field Unable to Wake CTD +% 130 - SN,130,DATE,TIME,status message +% example status messages +% 'Low Voltage - BLIS Pumps Aborted' +% 'EDP Bio-Wiper Might Not have Closed' +% 140 - SN,140,DATE,TIME,status message +% example status messages +% 'Unable to Wake CTD' +% 'CTD Start Time is SLOW at 8.087 Seconds' +% 'Sample Mode: In Air - Not Pumped: 0.00007 S/M < 0.00150 C90-Limit' +% 'Sample Mode: Insitu - Pumped: 5.52542 S/M > 0.00150 C90-Limit' +% 'Stray CTD Data was removed' +% 200 - SN,200,DATE,TIME,comma seperated data fields +% 210 - SN,210,DATE,TIME,tab seperated data fields +% 211 - SN,211,DATE,TIME, empty? +% 230 - SN,230,DATE,TIME,comma seperated data fields % we will only retain data with line code 6 dcode = a{2}; @@ -490,11 +568,11 @@ A = A'; % C,T,P are in stored in engineering units -WQM.conductivity = A(:,1); % S/m +WQM.conductivity = A(:,colCond); % S/m % temperature and pressure in C and dbar -WQM.temperature = A(:,2); -WQM.pressure = A(:,3); +WQM.temperature = A(:,colTemp); +WQM.pressure = A(:,colPres); % compute conductivity ratio to use seawater salinity algorithm % Wetlabs conductivity is in S/m and gsw_C3515 in mS/cm @@ -506,34 +584,126 @@ % Oxygen % -Soc = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'Soc'))},'%4c%f'); -FOffset = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'FOffset'))},'%8c%f'); -A52 = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'A52'))},'%4c%f'); -B52 = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'B52'))},'%4c%f'); -C52 = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'C52'))},'%4c%f'); -E52 = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'E52'))},'%4c%f'); +try + Soc = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'Soc='))},'%4c%f'); + FOffset = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'FOffset='))},'%8c%f'); + Acal = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'A52='))},'%4c%f'); + Bcal = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'B52='))},'%4c%f'); + Ccal = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'C52='))},'%4c%f'); + Ecal = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'E52='))},'%4c%f'); +catch + Soc = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'IDO43 Soc='))},'%10c%f'); + FOffset = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'IDO43 FOffset='))},'%14c%f'); + Acal = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'IDO43 A='))},'%8c%f'); + Bcal = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'IDO43 B='))},'%8c%f'); + Ccal = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'IDO43 C='))},'%8c%f'); + Ecal = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'IDO43 E='))},'%8c%f'); +end O2.Soc = Soc{2}; O2.FOffset = FOffset{2}; -O2.A = A52{2}; -O2.B = B52{2}; -O2.C = C52{2}; -O2.E = E52{2}; +O2.A = Acal{2}; +O2.B = Bcal{2}; +O2.C = Ccal{2}; +O2.E = Ecal{2}; -oxygen = A(:,4); +oxygen = A(:,colRawDO); WQM.oxygen = O2cal(oxygen, O2, WQM); % FLNTU Sensor -chl = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'UserCHL'))},'%8c%f%f\n'); -ntu = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'NTU'))},'%4c%f%f\n'); -CHL.scale = chl{2}; -CHL.offset = chl{3}; -NTU.scale = ntu{2}; -NTU.offset = ntu{3}; - -fluor = A(:,5); -turb = A(:,6); +try + % example text in older files + % FactoryCHL=0.012 60 Scale and Offset + % UserCHL=0.012 60 Scale and Offset + % NTU=0.006 58 Scale and Offset + chl = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'UserCHL='))},'%8c%f%f\n'); + ntu = textscan(headerLine{~cellfun('isempty',strfind(headerLine,'NTU='))},'%4c%f%f\n'); + CHL.scale = chl{2}; + CHL.offset = chl{3}; + NTU.scale = ntu{2}; + NTU.offset = ntu{3}; +catch + % example text in newer raw files + % ECO Signal Count: 2 + % ECO Signal 1 Name: CHLA + % ECO Signal 1 Raw Units: COUNTS + % ECO Signal 1 Engr Units: UG/L + % ECO Signal 1 Type: 1 Std Scale'n'Offset + % ECO Signal 1 Cal Coef: 0.011200 49.000000 0.000000 0.000000 + % ECO Signal 2 Name: TURBIDITY + % ECO Signal 2 Raw Units: COUNTS + % ECO Signal 2 Engr Units: NTU + % ECO Signal 2 Type: 1 Std Scale'n'Offset + % ECO Signal 2 Cal Coef: 0.006200 50.000000 0.000000 0.000000 + + rExp = 'ECO Signal Count:\W+(\d+)'; + indNSignals = find(~cellfun(@isempty, regexp(headerLine, rExp))); + tkns = regexp(headerLine{indNSignals}, rExp, 'tokens'); + + % test for CHLA (or CHLa) + rExp = 'ECO Signal (\d) Name:\W+CHLA'; + indCHLA = find(~cellfun(@isempty, regexpi(headerLine, rExp))); + if ~isempty(indCHLA) + tkns = regexpi(headerLine{indCHLA}, rExp, 'tokens'); + nSignal = str2num(tkns{1}{1}); + signalStr = ['ECO Signal ' num2str(nSignal)]; + + str = headerLine{~cellfun('isempty',strfind(headerLine,[signalStr ' Raw Units:']))}; + rawUnits = regexp(str,':','split'); + rawUnits = strtrim(rawUnits{2}); + + str = headerLine{~cellfun('isempty',strfind(headerLine,[signalStr ' Engr Units:']))}; + engrUnits = regexp(str,':','split'); + engrUnits = strtrim(engrUnits{2}); + + str = headerLine{~cellfun('isempty',strfind(headerLine,[signalStr ' Type: 1']))}; + typeStr = strtrim(regexp(str,':','split')); + typeStr = typeStr{2}(1); + if str2num(typeStr) ~= 1 + error('readWQMraw only handles type 1 unit scaling'); + end + + str = headerLine{~cellfun('isempty',strfind(headerLine,[signalStr ' Cal Coef:']))}; + calStr = strtrim(regexp(str,':','split')); + calCoeffs = str2num(calStr{2}); + CHL.scale = calCoeffs(1); + CHL.offset = calCoeffs(2); + end + + % test for TURBIDITY (or Turbidity) + rExp = 'ECO Signal (\d) Name:\W+TURBIDITY'; + indTURB = find(~cellfun(@isempty, regexpi(headerLine, rExp))); + if ~isempty(indTURB) + tkns = regexpi(headerLine{indTURB}, rExp, 'tokens'); + nSignal = str2num(tkns{1}{1}); + signalStr = ['ECO Signal ' num2str(nSignal)]; + + str = headerLine{~cellfun('isempty',strfind(headerLine,[signalStr ' Raw Units:']))}; + rawUnits = regexp(str,':','split'); + rawUnits = strtrim(rawUnits{2}); + + str = headerLine{~cellfun('isempty',strfind(headerLine,[signalStr ' Engr Units:']))}; + engrUnits = regexp(str,':','split'); + engrUnits = strtrim(engrUnits{2}); + + str = headerLine{~cellfun('isempty',strfind(headerLine,[signalStr ' Type: 1']))}; + typeStr = strtrim(regexp(str,':','split')); + typeStr = typeStr{2}(1); + if str2num(typeStr) ~= 1 + error('readWQMraw only handles type 1 unit scaling'); + end + + str = headerLine{~cellfun('isempty',strfind(headerLine,[signalStr ' Cal Coef:']))}; + calStr = strtrim(regexp(str,':','split')); + calCoeffs = str2num(calStr{2}); + NTU.scale = calCoeffs(1); + NTU.offset = calCoeffs(2); + end +end + +fluor = A(:,colCHL); +turb = A(:,colTurb); WQM.U_Cal_CHL = FLNTUcal(fluor, CHL); WQM.backscatterance = FLNTUcal(turb, NTU); @@ -550,11 +720,10 @@ PAR.a0=par{3}; PAR.a1=par{4}; %par=cellfun(@(x) x(7),D); - par=A(:,7); + par=A(:,colPar); WQM.PAR=PARcal(par,PAR); - % nvars = 8 because of salinity (derived) - WQM.varlabel{nvars+1}='PAR'; - WQM.varunits{nvars+1}='umol/m^2/s'; + WQM.varlabel{end+1}='PAR'; + WQM.varunits{end+1}='umol/m^2/s'; Cal.PAR=PAR; end diff --git a/Parser/signatureParse.m b/Parser/signatureParse.m index 292a460b1..a958f7ec5 100644 --- a/Parser/signatureParse.m +++ b/Parser/signatureParse.m @@ -686,7 +686,9 @@ data.(acquisitionMode{i}).Correlation4(iBadOriented, :) = NaN; dims = [dims; ... - {'DIST_ALONG_BEAMS', distance, 'Nortek instrument data is not vertically bin-mapped (no tilt correction applied). Cells are lying parallel to the beams, at heights above sensor that vary with tilt.'}]; + {'DIST_ALONG_BEAMS', distance, ['Values correspond to the distance between the instrument''s transducers and the centre of each cells. ' ... + 'Nortek instrument data is not vertically bin-mapped (no tilt correction applied). Cells are lying parallel to the beams, ' ... + 'at heights above sensor that vary with tilt.']}]; end nDims = size(dims, 1); diff --git a/Parser/workhorseParse.m b/Parser/workhorseParse.m index 5ab58e8a1..ad6192128 100644 --- a/Parser/workhorseParse.m +++ b/Parser/workhorseParse.m @@ -338,9 +338,11 @@ percentGood3(iBadOriented, :) = NaN; percentGood4(iBadOriented, :) = NaN; dims = { - 'TIME', time, ['Time stamp corresponds to the start of the measurement which lasts ' num2str(sample_data.meta.instrument_average_interval) ' seconds.']; ... - 'HEIGHT_ABOVE_SENSOR', height, 'Data has been vertically bin-mapped using tilt information so that the cells have consistant heights above sensor in time.'; ... - 'DIST_ALONG_BEAMS', distance, 'Data is not vertically bin-mapped (no tilt correction applied). Cells are lying parallel to the beams, at heights above sensor that vary with tilt.' + 'TIME', time, ['Time stamp corresponds to the start of the measurement which lasts ' num2str(sample_data.meta.instrument_average_interval) ' seconds.']; ... + 'HEIGHT_ABOVE_SENSOR', height, ['Values correspond to the distance between the instrument''s transducers and the centre of each cells. ' ... + 'Data has been vertically bin-mapped using tilt information so that the cells have consistant heights above sensor in time.']; ... + 'DIST_ALONG_BEAMS', distance, ['Values correspond to the distance between the instrument''s transducers and the centre of each cells. ' ... + 'Data is not vertically bin-mapped (no tilt correction applied). Cells are lying parallel to the beams, at heights above sensor that vary with tilt.'] }; clear time height distance; diff --git a/Preprocessing/adcpBinMappingPP.m b/Preprocessing/adcpBinMappingPP.m index 070fd118d..671a0b5c5 100644 --- a/Preprocessing/adcpBinMappingPP.m +++ b/Preprocessing/adcpBinMappingPP.m @@ -189,7 +189,8 @@ sample_data{k}.dimensions{end}.standard_name = imosParameters('HEIGHT_ABOVE_SENSOR', 'standard_name'); sample_data{k}.dimensions{end}.axis = 'Z'; sample_data{k}.dimensions{end}.positive = imosParameters('HEIGHT_ABOVE_SENSOR', 'positive'); - sample_data{k}.dimensions{end}.comment = ['Data has been vertically bin-mapped using tilt information so that the cells ' ... + sample_data{k}.dimensions{end}.comment = ['Values correspond to the distance between the instrument''s transducers and the centre of each cells. ' ... + 'Data has been vertically bin-mapped using tilt information so that the cells ' ... 'have consistant heights above sensor in time.']; heightAboveSensorIdx = getVar(sample_data{k}.dimensions, 'HEIGHT_ABOVE_SENSOR'); diff --git a/imosToolbox.m b/imosToolbox.m index 86df48021..4119fe728 100644 --- a/imosToolbox.m +++ b/imosToolbox.m @@ -37,7 +37,7 @@ function imosToolbox(auto, varargin) % % Set current toolbox version -toolboxVersion = ['2.5.38 - ' computer]; +toolboxVersion = ['2.5.39 - ' computer]; if nargin == 0, auto = 'manual'; end diff --git a/imosToolbox_Linux64.bin b/imosToolbox_Linux64.bin index f92066eba..a57abb5ac 100755 Binary files a/imosToolbox_Linux64.bin and b/imosToolbox_Linux64.bin differ diff --git a/imosToolbox_Win32.exe b/imosToolbox_Win32.exe index 286208b54..e1b7c349e 100644 Binary files a/imosToolbox_Win32.exe and b/imosToolbox_Win32.exe differ diff --git a/imosToolbox_Win64.exe b/imosToolbox_Win64.exe index 0e09b7b15..015468a14 100644 Binary files a/imosToolbox_Win64.exe and b/imosToolbox_Win64.exe differ diff --git a/test/readWQMraw/WQM0045_016_v1.21_example.RAW b/test/readWQMraw/WQM0045_016_v1.21_example.RAW new file mode 100644 index 000000000..a3b1b2256 --- /dev/null +++ b/test/readWQMraw/WQM0045_016_v1.21_example.RAW @@ -0,0 +1,2000 @@ + +File Name: WQM0045.016 +Created On: 111309 111324 +WQM SN: 45 +WQM F/W V: 1.21 +CTDO SN: 5045 +DOSN=0 +Soc=1.366700e-04 +FOffset=-3.486623e+03 +A52=-2.283500e-03 +B52=1.025100e-04 +C52=-1.798000e-06 +E52=3.600000e-02 +Optics SN: 977 +FactoryCHL=0.007 56 Scale and Offset +UserCHL=0.007 56 Scale and Offset +NTU=0.002 50 Scale and Offset +Beta=0.000 1 0 Derived Scale and Offset +External Data Port: Off +WQM Control: Autonomous +Delay Seconds: 0 +Sample Seconds: 60 +Sample Interval Seconds: 900 +Outbits: 0xdb90a001 +Starting Free Flask Disk: 1022816 K +Total Flask Disk: 1022816 K +BLIS ul / squirt: 7.0 +Pumped Hour Interval: 1 +Pumped BLIS: 0 +Static BLIS: 6 +Starting Total BLIS Squirts: 0 +Recent UPS: No +Starting UPS Count: 0 +Starting Total UPS Count: 3 +Starting Voltage: 16.44 +Data Output: ON +Heartbeat: OFF +Update Date/Time: Normal +File Format: SN,State,Date,Time,Cond,Temp,Pres,RawDO,RawCHL,RawTurb,Volts + +45,100,111309,111324,1,0,3,11,15,0,1022816,0,1,0,1,0,0,3,0,16.44 +45,140,111309,111324,WAKE CTD:Startup 1086 ms, Purge 9 ms +45,140,111309,111329,Sample Mode: Insitu - Pumped: 0.73197 S/M > 0.00150 C90-Limit +45,140,111309,111329,WAKE CTD:Startup 1086 ms, Purge 10 ms +45,200,111309,111329, 7.3197, 21.4258, -0.08, 4.388 +45,3,111309,111329,0.73197,21.4258,-0.08,30000.0,0,0,16.41 +45,100,111309,111335,1,1,4,60,60,0,1022815,0,1,0,1,0,0,3,2,16.41 +45,4,111309,111337,0.14324,21.4218,-0.08,9515.1,0,0,16.40 +45,4,111309,111338,0.16154,21.4286,-0.08,9584.1,0,0,16.40 +45,4,111309,111339,0.19284,21.4300,-0.08,9630.1,0,0,16.40 +45,4,111309,111340,0.19026,21.4302,-0.08,9659.6,0,0,16.40 +45,4,111309,111341,0.17390,21.4329,-0.08,9674.7,0,0,16.40 +45,4,111309,111342,0.18662,21.4373,-0.08,9675.0,0,0,16.40 +45,4,111309,111343,0.20257,21.4369,-0.08,9672.2,0,0,16.40 +45,4,111309,111344,0.21723,21.4375,-0.08,9659.9,0,0,16.40 +45,4,111309,111345,0.18110,21.4386,-0.08,9641.2,0,0,16.40 +45,4,111309,111346,0.16828,21.4424,-0.08,9615.8,0,0,16.40 +45,4,111309,111347,0.16785,21.4478,-0.08,9591.3,0,0,16.40 +45,4,111309,111348,0.17034,21.4475,-0.08,9563.2,0,0,16.40 +45,4,111309,111349,0.18089,21.4482,-0.08,9537.6,0,0,16.40 +45,4,111309,111350,0.18219,21.4475,-0.08,9511.8,0,0,16.40 +45,4,111309,111351,0.19159,21.4550,-0.08,9480.5,0,0,16.40 +45,4,111309,111352,0.18843,21.4513,-0.08,9451.5,0,0,16.40 +45,4,111309,111353,0.19336,21.4559,-0.08,9425.9,0,0,16.40 +45,4,111309,111354,0.19977,21.4539,-0.08,9401.5,0,0,16.40 +45,4,111309,111355,0.23554,21.4571,-0.08,9386.5,0,0,16.40 +45,4,111309,111356,0.24441,21.4618,-0.08,9380.0,0,0,16.41 +45,4,111309,111357,0.22625,21.4578,-0.08,9385.0,0,0,16.41 +45,4,111309,111358,0.28506,21.4597,-0.08,9402.4,0,0,16.40 +45,4,111309,111359,0.47617,21.4655,-0.08,9425.3,0,0,16.41 +45,4,111309,111400,0.34412,21.4658,-0.08,9456.5,0,0,16.41 +45,4,111309,111401,0.22371,21.4670,-0.08,9490.2,0,0,16.41 +45,4,111309,111402,0.31261,21.4687,-0.08,9524.0,0,0,16.41 +45,4,111309,111403,0.45275,21.4701,-0.08,9549.3,0,0,16.41 +45,4,111309,111404,0.42159,21.4684,-0.08,9561.4,0,0,16.41 +45,4,111309,111405,0.37122,21.4699,-0.08,9573.9,0,0,16.41 +45,4,111309,111406,0.40999,21.4786,-0.08,9581.7,0,0,16.41 +45,4,111309,111407,0.41996,21.4760,-0.08,9591.1,0,0,16.41 +45,4,111309,111408,0.50427,21.4753,-0.08,9597.4,0,0,16.41 +45,4,111309,111409,0.40766,21.4770,-0.08,9597.2,0,0,16.41 +45,4,111309,111410,0.24709,21.4809,-0.08,9598.6,0,0,16.41 +45,4,111309,111411,0.40292,21.4820,-0.08,9609.4,0,0,16.41 +45,4,111309,111412,0.46721,21.4786,-0.08,9625.6,0,0,16.41 +45,4,111309,111413,0.40161,21.4854,-0.08,9642.8,0,0,16.41 +45,4,111309,111414,0.37904,21.4858,-0.08,9662.2,0,0,16.41 +45,4,111309,111415,0.33840,21.4866,-0.08,9682.3,0,0,16.41 +45,4,111309,111416,0.33478,21.4888,-0.08,9703.3,0,0,16.41 +45,4,111309,111417,0.35145,21.4880,-0.08,9721.9,0,0,16.41 +45,4,111309,111418,0.39345,21.4931,-0.08,9731.8,0,0,16.41 +45,4,111309,111419,0.37866,21.4908,-0.08,9739.8,0,0,16.41 +45,4,111309,111420,0.35005,21.4971,-0.08,9741.4,0,0,16.41 +45,4,111309,111421,0.37321,21.4976,-0.08,9735.1,0,0,16.41 +45,4,111309,111422,0.39426,21.4941,-0.08,9714.7,0,0,16.41 +45,4,111309,111423,0.28566,21.4983,-0.08,9685.5,0,0,16.41 +45,4,111309,111424,0.28412,21.5002,-0.08,9653.3,0,0,16.41 +45,4,111309,111425,0.36134,21.5041,-0.08,9619.9,0,0,16.41 +45,4,111309,111426,0.42887,21.5000,-0.08,9592.5,0,0,16.41 +45,100,111309,111427,1,1,5,8,60,3,1022812,20,1,0,1,0,0,3,2,16.41 +45,5,111309,111427,0.33456,21.5023,-0.08,9563.7,0,0,16.41 +45,5,111309,111428,0.19053,21.5071,-0.08,9529.2,0,0,16.28 +45,5,111309,111429,0.34696,21.5085,-0.08,9500.9,0,0,16.28 +45,5,111309,111430,0.36579,21.5088,-0.08,9470.0,0,0,16.27 +45,5,111309,111431,0.26375,21.5162,-0.08,9446.6,0,0,16.25 +45,210,111309,111431,11/13/09 04:21:08 695 66 700 123 554 +45,5,111309,111432,0.26067,21.5114,-0.08,9416.8,66,123,16.27 +45,5,111309,111433,0.24703,21.5139,-0.08,9391.5,57,122,16.25 +45,5,111309,111434,0.25057,21.5165,-0.08,9370.3,64,117,16.25 +45,100,111309,111435,1,1,6,60,60,3,1022812,20,1,0,0,0,0,3,2,16.26 +45,6,111309,111435,0.25419,21.5134,-0.08,9352.1,58,120,16.26 +45,6,111309,111436,0.16301,21.5174,-0.08,9334.5,62,123,16.25 +45,6,111309,111437,0.19713,21.5197,-0.08,9317.8,62,121,16.25 +45,6,111309,111438,0.22565,21.5227,-0.08,9299.6,60,125,16.25 +45,6,111309,111439,0.20427,21.5208,-0.08,9284.6,57,126,16.25 +45,6,111309,111440,0.24891,21.5243,-0.08,9269.7,67,128,16.25 +45,6,111309,111441,0.22940,21.5255,-0.08,9257.9,60,127,16.25 +45,6,111309,111442,0.15785,21.5308,-0.08,9245.4,56,123,16.25 +45,6,111309,111443,0.13700,21.5292,-0.08,9237.7,58,128,16.26 +45,6,111309,111444,0.13238,21.5300,-0.08,9235.6,59,141,16.26 +45,6,111309,111445,0.11853,21.5294,-0.08,9245.1,62,150,16.25 +45,6,111309,111446,0.13766,21.5323,-0.08,9255.1,59,140,16.25 +45,6,111309,111447,0.11790,21.5366,-0.08,9266.6,61,144,16.25 +45,6,111309,111448,0.12254,21.5336,-0.08,9271.8,53,141,16.25 +45,6,111309,111449,0.10945,21.5359,-0.08,9270.3,64,146,16.25 +45,6,111309,111450,0.11073,21.5397,-0.08,9267.2,57,139,16.25 +45,6,111309,111451,0.09365,21.5381,-0.08,9262.3,70,146,16.25 +45,6,111309,111452,0.08567,21.5404,-0.08,9250.2,64,143,16.25 +45,6,111309,111453,0.11823,21.5426,-0.08,9238.3,64,146,16.25 +45,6,111309,111454,0.11714,21.5479,-0.08,9226.9,51,141,16.26 +45,6,111309,111455,0.09377,21.5434,-0.08,9214.5,60,149,16.26 +45,6,111309,111456,0.07868,21.5489,-0.08,9206.2,59,144,16.25 +45,6,111309,111457,0.08655,21.5492,-0.08,9208.6,71,147,16.25 +45,6,111309,111458,0.07380,21.5481,-0.08,9214.5,59,139,16.25 +45,6,111309,111459,0.06642,21.5509,-0.08,9221.4,59,141,16.26 +45,6,111309,111500,0.06397,21.5546,-0.08,9233.4,63,146,16.25 +45,6,111309,111501,0.06138,21.5535,-0.08,9249.1,60,140,16.25 +45,6,111309,111502,0.06737,21.5606,-0.08,9260.8,58,142,16.25 +45,6,111309,111503,0.06244,21.5600,-0.08,9277.2,70,137,16.26 +45,6,111309,111504,0.05653,21.5609,-0.08,9294.7,62,123,16.25 +45,6,111309,111505,0.05649,21.5659,-0.08,9310.5,62,124,16.25 +45,6,111309,111506,0.07415,21.5658,-0.08,9328.1,54,130,16.25 +45,6,111309,111507,0.05899,21.5658,-0.08,9348.8,58,127,16.25 +45,6,111309,111508,0.05405,21.5682,-0.08,9374.2,65,126,16.25 +45,6,111309,111509,0.04995,21.5653,-0.08,9399.4,63,127,16.25 +45,6,111309,111510,0.06033,21.5697,-0.08,9418.5,57,125,16.25 +45,6,111309,111511,0.05883,21.5702,-0.08,9439.1,63,129,16.25 +45,6,111309,111512,0.05342,21.5730,-0.08,9464.3,69,123,16.25 +45,6,111309,111513,0.05630,21.5741,-0.08,9491.3,57,129,16.26 +45,6,111309,111514,0.06903,21.5711,-0.08,9527.9,61,130,16.25 +45,6,111309,111515,0.05406,21.5743,-0.08,9564.6,68,130,16.26 +45,6,111309,111516,0.04602,21.5810,-0.08,9591.4,55,125,16.26 +45,6,111309,111517,0.05540,21.5775,-0.08,9613.7,64,132,16.26 +45,6,111309,111518,0.05375,21.5815,-0.08,9649.7,60,126,16.26 +45,6,111309,111519,0.05394,21.5808,-0.08,9687.6,57,126,16.26 +45,6,111309,111520,0.05755,21.5871,-0.08,9724.7,55,127,16.25 +45,6,111309,111521,0.06213,21.5850,-0.08,9759.4,61,128,16.26 +45,6,111309,111522,0.04837,21.5900,-0.08,9792.0,72,127,16.26 +45,6,111309,111523,0.04283,21.5919,-0.08,9817.0,62,127,16.26 +45,6,111309,111524,0.04464,21.5908,-0.08,9836.2,56,127,16.26 +45,6,111309,111525,0.05072,21.5886,-0.08,9847.0,71,125,16.25 +45,6,111309,111526,0.04606,21.5923,-0.08,9851.7,61,131,16.26 +45,6,111309,111527,0.03963,21.5948,-0.08,9850.6,65,128,16.26 +45,6,111309,111528,0.04045,21.5953,-0.08,9845.3,58,125,16.26 +45,6,111309,111529,0.04294,21.5957,-0.08,9836.5,66,131,16.26 +45,6,111309,111530,0.04450,21.6022,-0.08,9827.9,65,127,16.26 +45,6,111309,111531,0.04143,21.6020,-0.08,9820.0,58,125,16.26 +45,6,111309,111532,0.04424,21.5965,-0.08,9819.6,66,129,16.26 +45,6,111309,111533,0.03863,21.6060,-0.08,9820.4,63,127,16.26 +45,6,111309,111534,0.03789,21.6049,-0.08,9819.2,61,130,16.26 +45,100,111309,111535,1,1,10,0,60,7,1022808,26,1,0,0,0,0,3,2,16.26 +45,100,111309,112824,1,1,3,11,15,7,1022799,26,1,0,0,0,0,3,2,17.03 +45,3,111309,112824,0.04365,21.6093,-0.08,9812.7,61,130,17.03 +45,140,111309,112825,WAKE CTD:Startup 1090 ms, Purge 10 ms +45,140,111309,112829,Sample Mode: Insitu - Pumped: 0.15267 S/M > 0.00150 C90-Limit +45,200,111309,112829, 1.5267, 22.3859, -0.09, 5.830 +45,3,111309,112829,0.15267,22.3859,-0.09,30000.0,0,0,16.45 +45,100,111309,112836,1,1,4,60,60,8,1022799,26,1,0,0,0,0,3,2,16.44 +45,4,111309,112838,0.27237,22.3039,-0.09,10651.5,0,0,16.47 +45,4,111309,112839,0.23135,22.2825,-0.09,10631.4,0,0,16.47 +45,4,111309,112840,0.18862,22.2562,-0.09,10609.5,0,0,16.46 +45,4,111309,112841,0.15843,22.2510,-0.09,10593.0,0,0,16.47 +45,4,111309,112842,0.14792,22.2444,-0.09,10581.9,0,0,16.46 +45,4,111309,112843,0.13598,22.2373,-0.10,10575.2,0,0,16.46 +45,4,111309,112844,0.12439,22.2463,-0.09,10577.1,0,0,16.47 +45,4,111309,112845,0.11214,22.2422,-0.09,10586.0,0,0,16.47 +45,4,111309,112846,0.10401,22.2467,-0.09,10605.6,0,0,16.47 +45,4,111309,112847,0.10160,22.2568,-0.09,10624.1,0,0,16.47 +45,4,111309,112848,0.09788,22.2664,-0.09,10648.1,0,0,16.46 +45,4,111309,112849,0.09200,22.2676,-0.09,10664.3,0,0,16.46 +45,4,111309,112850,0.08825,22.2810,-0.09,10675.2,0,0,16.46 +45,4,111309,112851,0.08497,22.2857,-0.09,10684.3,0,0,16.46 +45,4,111309,112852,0.08451,22.2936,-0.09,10688.6,0,0,16.46 +45,4,111309,112853,0.08354,22.3029,-0.09,10693.9,0,0,16.47 +45,4,111309,112854,0.08042,22.3065,-0.09,10696.7,0,0,16.47 +45,4,111309,112855,0.07671,22.3226,-0.09,10703.3,0,0,16.46 +45,4,111309,112856,0.07249,22.3267,-0.09,10704.7,0,0,16.46 +45,4,111309,112857,0.06881,22.3451,-0.09,10706.8,0,0,16.46 +45,4,111309,112858,0.06552,22.3578,-0.09,10709.7,0,0,16.45 +45,4,111309,112859,0.06225,22.3718,-0.09,10709.1,0,0,16.46 +45,4,111309,112900,0.05847,22.3829,-0.09,10708.7,0,0,16.47 +45,4,111309,112901,0.05505,22.3881,-0.09,10707.6,0,0,16.46 +45,4,111309,112902,0.05295,22.3987,-0.09,10706.4,0,0,16.47 +45,4,111309,112903,0.05108,22.4036,-0.09,10705.0,0,0,16.46 +45,4,111309,112904,0.04876,22.4095,-0.09,10705.1,0,0,16.46 +45,4,111309,112905,0.04387,22.4231,-0.09,10702.1,0,0,16.47 +45,4,111309,112906,0.03900,22.4354,-0.10,10702.0,0,0,16.47 +45,4,111309,112907,0.06694,22.4573,-0.11,10700.2,0,0,16.47 +45,4,111309,112908,0.10459,22.7209,-0.11,10700.6,0,0,16.46 +45,4,111309,112909,0.14488,22.7736,-0.12,10699.9,0,0,16.46 +45,4,111309,112910,0.12835,22.8282,-0.11,10699.3,0,0,16.47 +45,4,111309,112911,0.12498,22.8950,-0.11,10703.3,0,0,16.47 +45,4,111309,112912,0.12554,22.9022,-0.11,10706.2,0,0,16.45 +45,4,111309,112913,0.11529,22.9047,-0.12,10712.0,0,0,16.46 +45,4,111309,112914,0.10184,22.9048,-0.11,10719.6,0,0,16.46 +45,4,111309,112915,0.09007,22.8984,-0.11,10723.9,0,0,16.46 +45,4,111309,112916,0.08198,22.8967,-0.12,10728.3,0,0,16.45 +45,4,111309,112917,0.07876,22.8921,-0.11,10732.4,0,0,16.45 +45,4,111309,112918,0.07686,22.8836,-0.12,10739.0,0,0,16.45 +45,4,111309,112919,0.07314,22.8870,-0.11,10741.3,0,0,16.46 +45,4,111309,112920,0.06974,22.8789,-0.11,10742.6,0,0,16.45 +45,4,111309,112921,0.06610,22.8747,-0.11,10744.2,0,0,16.47 +45,4,111309,112922,0.06342,22.8689,-0.11,10749.4,0,0,16.46 +45,4,111309,112923,0.06226,22.8705,-0.12,10747.6,0,0,16.46 +45,4,111309,112924,0.06150,22.8652,-0.11,10749.5,0,0,16.46 +45,4,111309,112925,0.06046,22.8700,-0.11,10747.0,0,0,16.46 +45,4,111309,112926,0.05877,22.8672,-0.11,10749.0,0,0,16.46 +45,4,111309,112927,0.05752,22.8614,-0.11,10750.9,0,0,16.45 +45,100,111309,112928,1,1,5,8,60,11,1022796,26,1,0,0,0,0,3,2,16.45 +45,5,111309,112928,0.05551,22.8668,-0.11,10748.3,0,0,16.45 +45,5,111309,112929,0.05314,22.8620,-0.11,10749.8,0,0,16.33 +45,5,111309,112930,0.05097,22.8560,-0.11,10751.4,0,0,16.32 +45,5,111309,112931,0.04974,22.8492,-0.11,10750.4,0,0,16.33 +45,5,111309,112932,0.04873,22.8476,-0.11,10749.4,0,0,16.31 +45,210,111309,112932,11/13/09 04:36:09 695 56 700 113 553 +45,5,111309,112933,0.04542,22.8245,-0.11,10750.2,56,113,16.31 +45,5,111309,112934,0.04292,22.8093,-0.11,10749.9,55,121,16.30 +45,5,111309,112935,0.04216,22.8024,-0.11,10749.4,59,128,16.33 +45,100,111309,112936,1,1,6,60,60,11,1022796,26,1,0,0,0,0,3,2,16.32 +45,6,111309,112936,0.04185,22.7961,-0.11,10749.8,60,111,16.32 +45,6,111309,112937,0.04275,22.7995,-0.11,10752.0,71,112,16.30 +45,6,111309,112938,0.04359,22.8036,-0.11,10750.2,67,98,16.32 +45,6,111309,112939,0.04518,22.8029,-0.11,10750.2,62,91,16.33 +45,6,111309,112940,0.04546,22.8070,-0.11,10752.9,93,96,16.32 +45,6,111309,112941,0.04570,22.8073,-0.11,10751.8,58,101,16.32 +45,6,111309,112942,0.04589,22.8044,-0.11,10751.7,92,120,16.29 +45,6,111309,112943,0.04502,22.8088,-0.11,10753.2,54,118,16.33 +45,6,111309,112944,0.04345,22.8121,-0.11,10751.9,67,107,16.32 +45,6,111309,112945,0.04304,22.8082,-0.11,10753.0,71,108,16.32 +45,6,111309,112946,0.04342,22.8103,-0.11,10755.8,25,119,16.33 +45,6,111309,112947,0.04352,22.8113,-0.11,10753.3,49,115,16.32 +45,6,111309,112948,0.04358,22.8149,-0.11,10753.0,56,108,16.33 +45,6,111309,112949,0.04355,22.8171,-0.11,10752.3,72,123,16.32 +45,6,111309,112950,0.04365,22.8120,-0.11,10752.3,65,111,16.31 +45,6,111309,112951,0.04413,22.8180,-0.11,10754.0,28,128,16.33 +45,6,111309,112952,0.04471,22.8152,-0.11,10753.4,51,116,16.32 +45,6,111309,112953,0.04480,22.8159,-0.11,10754.3,56,124,16.32 +45,6,111309,112954,0.04444,22.8185,-0.11,10753.0,59,157,16.33 +45,6,111309,112955,0.04377,22.8163,-0.11,10754.6,87,138,16.33 +45,6,111309,112956,0.04314,22.8176,-0.11,10754.3,59,117,16.30 +45,6,111309,112957,0.04283,22.8233,-0.11,10753.6,86,108,16.32 +45,6,111309,112958,0.04261,22.8203,-0.11,10753.0,50,108,16.32 +45,6,111309,112959,0.04193,22.8206,-0.11,10754.1,87,100,16.32 +45,6,111309,113000,0.04105,22.8262,-0.11,10753.9,53,121,16.31 +45,6,111309,113001,0.03965,22.8253,-0.11,10754.1,71,288,16.31 +45,6,111309,113002,0.03967,22.8277,-0.11,10753.9,44,358,16.32 +45,6,111309,113003,0.03753,22.7932,-0.09,10755.5,41,473,16.32 +45,6,111309,113004,0.04397,22.7871,-0.13,10756.2,41,858,16.32 +45,6,111309,113005,0.04650,22.7729,-0.11,10756.6,78,126,16.33 +45,6,111309,113006,0.04267,22.7554,-0.11,10756.7,63,728,16.32 +45,6,111309,113007,0.03939,22.7487,-0.12,10758.3,119,4023,16.32 +45,6,111309,113008,0.03986,22.7339,-0.13,10758.9,120,4119,16.32 +45,6,111309,113009,0.04255,22.6975,-0.11,10756.7,73,103,16.31 +45,6,111309,113010,0.03675,22.6512,-0.11,10757.1,47,110,16.31 +45,6,111309,113011,0.03762,22.6097,-0.09,10757.4,69,117,16.31 +45,6,111309,113012,0.06755,22.5658,-0.11,10754.9,60,104,16.32 +45,6,111309,113013,0.07027,22.5111,-0.10,10755.2,76,123,16.32 +45,6,111309,113014,0.05608,22.4653,-0.10,10752.4,63,150,16.31 +45,6,111309,113015,0.05280,22.4229,-0.11,10752.6,60,117,16.31 +45,6,111309,113016,0.04575,22.4265,-0.11,10752.6,74,235,16.31 +45,6,111309,113017,0.04230,22.4410,-0.11,10753.4,58,433,16.31 +45,6,111309,113018,0.04093,22.4606,-0.11,10753.3,62,408,16.33 +45,6,111309,113019,0.03914,22.4734,-0.11,10754.9,69,411,16.31 +45,6,111309,113020,0.03701,22.4919,-0.11,10753.8,65,404,16.32 +45,6,111309,113021,0.03506,22.5021,-0.11,10755.4,55,289,16.31 +45,6,111309,113022,0.03339,22.5135,-0.11,10755.0,59,328,16.33 +45,6,111309,113023,0.03190,22.5283,-0.11,10756.2,56,315,16.32 +45,6,111309,113024,0.03066,22.5361,-0.11,10754.6,53,324,16.33 +45,6,111309,113025,0.02972,22.5479,-0.11,10754.3,68,309,16.32 +45,6,111309,113026,0.02888,22.5541,-0.11,10754.4,67,315,16.32 +45,6,111309,113027,0.02813,22.5633,-0.11,10755.7,53,324,16.32 +45,6,111309,113028,0.02743,22.5733,-0.11,10756.6,60,302,16.32 +45,6,111309,113029,0.02666,22.5739,-0.11,10755.4,68,424,16.32 +45,6,111309,113030,0.02595,22.5833,-0.11,10754.8,52,315,16.31 +45,6,111309,113031,0.02550,22.5938,-0.11,10755.3,66,275,16.29 +45,6,111309,113032,0.02501,22.5944,-0.11,10754.3,59,216,16.32 +45,6,111309,113033,0.02433,22.5947,-0.11,10754.0,66,191,16.31 +45,6,111309,113034,0.02394,22.6013,-0.11,10752.9,67,167,16.32 +45,6,111309,113035,0.02360,22.5940,-0.11,10756.0,65,216,16.31 +45,100,111309,113036,1,1,10,759,60,15,1022792,26,1,0,0,0,0,3,2,16.33 +45,100,111309,114324,1,1,3,11,15,15,1022783,26,1,0,0,0,0,3,2,17.03 +45,3,111309,114324,0.02309,22.6014,-0.11,10755.8,68,215,17.03 +45,140,111309,114325,WAKE CTD:Startup 1091 ms, Purge 10 ms +45,140,111309,114329,Sample Mode: Insitu - Pumped: 5.44064 S/M > 0.00150 C90-Limit +45,200,111309,114329, 54.4064, 26.4108, 0.45, 2.049 +45,3,111309,114329,5.44064,26.4108,0.45,30000.0,0,0,16.45 +45,100,111309,114336,1,1,4,60,60,15,1022783,26,1,0,0,0,0,3,2,16.42 +45,4,111309,114338,5.44099,26.4355,0.44,8567.2,0,0,16.42 +45,4,111309,114339,5.44235,26.4414,0.45,8866.5,0,0,16.41 +45,4,111309,114340,5.45060,26.4124,0.45,9104.9,0,0,16.41 +45,4,111309,114341,5.44479,26.3849,0.45,9280.8,0,0,16.41 +45,4,111309,114342,5.44028,26.3705,0.44,9414.6,0,0,16.41 +45,4,111309,114343,5.43674,26.3328,0.45,9515.2,0,0,16.41 +45,4,111309,114344,5.44180,26.3421,0.45,9589.5,0,0,16.41 +45,4,111309,114345,5.43744,26.3271,0.44,9644.6,0,0,16.41 +45,4,111309,114346,5.43890,26.3703,0.44,9686.8,0,0,16.41 +45,4,111309,114347,5.43723,26.3698,0.45,9716.9,0,0,16.41 +45,4,111309,114348,5.43305,26.3476,0.45,9743.1,0,0,16.41 +45,4,111309,114349,5.43455,26.3470,0.45,9762.9,0,0,16.41 +45,4,111309,114350,5.43973,26.3042,0.44,9777.6,0,0,16.41 +45,4,111309,114351,5.43756,26.3268,0.44,9788.9,0,0,16.41 +45,4,111309,114352,5.43684,26.3203,0.45,9799.5,0,0,16.41 +45,4,111309,114353,5.44293,26.3326,0.45,9808.4,0,0,16.41 +45,4,111309,114354,5.44391,26.3060,0.45,9816.4,0,0,16.41 +45,4,111309,114355,5.44106,26.3542,0.45,9825.5,0,0,16.41 +45,4,111309,114356,5.44659,26.3636,0.45,9829.9,0,0,16.41 +45,4,111309,114357,5.44375,26.4126,0.44,9834.7,0,0,16.41 +45,4,111309,114358,5.44420,26.3432,0.44,9841.9,0,0,16.41 +45,4,111309,114359,5.44714,26.3509,0.45,9846.8,0,0,16.41 +45,4,111309,114400,5.44770,26.2885,0.45,9850.4,0,0,16.41 +45,4,111309,114401,5.44998,26.2661,0.44,9853.2,0,0,16.41 +45,4,111309,114402,5.44881,26.3503,0.44,9855.2,0,0,16.40 +45,4,111309,114403,5.45292,26.3620,0.45,9858.9,0,0,16.41 +45,4,111309,114404,5.45197,26.3382,0.45,9861.3,0,0,16.41 +45,4,111309,114405,5.45474,26.3359,0.44,9864.4,0,0,16.41 +45,4,111309,114406,5.45480,26.3391,0.44,9864.8,0,0,16.41 +45,4,111309,114407,5.45207,26.3773,0.45,9865.7,0,0,16.41 +45,4,111309,114408,5.45387,26.3476,0.45,9867.5,0,0,16.41 +45,4,111309,114409,5.45408,26.3619,0.44,9870.8,0,0,16.41 +45,4,111309,114410,5.45747,26.3689,0.45,9873.3,0,0,16.41 +45,4,111309,114411,5.45862,26.3437,0.46,9874.2,0,0,16.40 +45,4,111309,114412,5.45702,26.3312,0.44,9875.3,0,0,16.40 +45,4,111309,114413,5.45528,26.3023,0.43,9875.0,0,0,16.41 +45,4,111309,114414,5.45642,26.3211,0.45,9876.8,0,0,16.40 +45,4,111309,114415,5.45903,26.3372,0.46,9878.5,0,0,16.40 +45,4,111309,114416,5.45963,26.3686,0.45,9879.5,0,0,16.41 +45,4,111309,114417,5.46006,26.3693,0.44,9878.9,0,0,16.40 +45,4,111309,114418,5.46187,26.3234,0.44,9880.3,0,0,16.41 +45,4,111309,114419,5.46278,26.3584,0.45,9880.7,0,0,16.41 +45,4,111309,114420,5.46140,26.3500,0.45,9881.3,0,0,16.41 +45,4,111309,114421,5.46173,26.3696,0.45,9883.5,0,0,16.41 +45,4,111309,114422,5.46193,26.3783,0.45,9883.1,0,0,16.40 +45,4,111309,114423,5.46177,26.3725,0.44,9883.4,0,0,16.40 +45,4,111309,114424,5.46389,26.3628,0.45,9887.2,0,0,16.40 +45,4,111309,114425,5.46341,26.3766,0.45,9885.3,0,0,16.40 +45,4,111309,114426,5.46209,26.3980,0.44,9886.2,0,0,16.40 +45,4,111309,114427,5.46392,26.3932,0.44,9887.0,0,0,16.41 +45,100,111309,114428,1,1,5,8,60,18,1022780,26,1,0,0,0,0,3,2,16.40 +45,5,111309,114428,5.46278,26.3795,0.45,9886.8,0,0,16.40 +45,5,111309,114429,5.46334,26.3804,0.45,9885.7,0,0,16.28 +45,5,111309,114430,5.46358,26.3791,0.44,9885.6,0,0,16.28 +45,5,111309,114431,5.46272,26.3828,0.44,9889.1,0,0,16.28 +45,5,111309,114432,5.46431,26.3843,0.45,9888.5,0,0,16.26 +45,210,111309,114432,11/13/09 04:51:09 695 74 700 858 553 +45,5,111309,114433,5.46503,26.3897,0.45,9889.1,74,858,16.27 +45,5,111309,114434,5.46576,26.3965,0.43,9891.3,75,862,16.26 +45,5,111309,114435,5.46659,26.3857,0.45,9892.0,73,853,16.28 +45,100,111309,114436,1,1,6,60,60,19,1022780,26,1,0,0,0,0,3,2,16.28 +45,6,111309,114436,5.46920,26.4161,0.46,9890.0,75,853,16.28 +45,6,111309,114437,5.46723,26.4153,0.45,9890.4,74,854,16.28 +45,6,111309,114438,5.46750,26.4252,0.43,9891.4,74,861,16.28 +45,6,111309,114439,5.46831,26.4032,0.44,9892.0,73,866,16.27 +45,6,111309,114440,5.46921,26.3983,0.46,9892.7,74,870,16.27 +45,6,111309,114441,5.46969,26.4067,0.45,9892.7,72,867,16.27 +45,6,111309,114442,5.46874,26.3971,0.44,9891.0,75,885,16.27 +45,6,111309,114443,5.46944,26.3942,0.45,9892.6,74,856,16.28 +45,6,111309,114444,5.46941,26.4027,0.46,9892.6,74,865,16.28 +45,6,111309,114445,5.47018,26.3930,0.44,9892.6,75,845,16.27 +45,6,111309,114446,5.46987,26.4067,0.44,9893.8,74,843,16.27 +45,6,111309,114447,5.47117,26.4063,0.45,9891.7,74,844,16.27 +45,6,111309,114448,5.47036,26.4052,0.46,9891.9,75,847,16.27 +45,6,111309,114449,5.47126,26.4173,0.44,9892.0,74,844,16.27 +45,6,111309,114450,5.47150,26.4129,0.44,9892.8,74,850,16.27 +45,6,111309,114451,5.47242,26.4074,0.45,9894.1,76,853,16.27 +45,6,111309,114452,5.47107,26.4030,0.46,9893.7,75,852,16.27 +45,6,111309,114453,5.47212,26.4003,0.45,9891.4,75,851,16.27 +45,6,111309,114454,5.47113,26.4032,0.44,9893.1,74,852,16.27 +45,6,111309,114455,5.47116,26.4068,0.44,9892.9,74,845,16.27 +45,6,111309,114456,5.47252,26.4182,0.46,9891.6,75,843,16.27 +45,6,111309,114457,5.47171,26.3921,0.45,9892.7,74,873,16.27 +45,6,111309,114458,5.47252,26.3933,0.43,9891.8,76,867,16.27 +45,6,111309,114459,5.47237,26.3880,0.44,9891.2,75,880,16.27 +45,6,111309,114500,5.47379,26.3971,0.46,9891.4,75,882,16.27 +45,6,111309,114501,5.47324,26.4031,0.45,9891.6,74,879,16.27 +45,6,111309,114502,5.47341,26.4180,0.44,9892.5,74,872,16.27 +45,6,111309,114503,5.47525,26.4216,0.45,9893.2,75,863,16.27 +45,6,111309,114504,5.47491,26.4203,0.45,9894.4,73,858,16.27 +45,6,111309,114505,5.47451,26.4273,0.44,9894.7,76,859,16.27 +45,6,111309,114506,5.47568,26.4358,0.44,9894.5,73,857,16.27 +45,6,111309,114507,5.47476,26.4141,0.45,9893.9,74,854,16.27 +45,6,111309,114508,5.47605,26.4062,0.44,9893.6,75,857,16.27 +45,6,111309,114509,5.47547,26.4116,0.45,9894.4,74,859,16.27 +45,6,111309,114510,5.47538,26.4139,0.45,9893.6,74,866,16.27 +45,6,111309,114511,5.47599,26.4432,0.45,9893.7,76,863,16.27 +45,6,111309,114512,5.47647,26.4362,0.45,9894.7,75,857,16.27 +45,6,111309,114513,5.47626,26.4488,0.44,9896.6,74,853,16.27 +45,6,111309,114514,5.47686,26.4189,0.45,9897.9,74,851,16.27 +45,6,111309,114515,5.47710,26.4398,0.45,9896.6,73,855,16.27 +45,6,111309,114516,5.47789,26.4172,0.45,9898.0,75,892,16.27 +45,6,111309,114517,5.47864,26.4313,0.44,9896.5,73,894,16.27 +45,6,111309,114518,5.47848,26.4460,0.45,9899.6,74,893,16.27 +45,6,111309,114519,5.47836,26.4289,0.45,9897.8,76,944,16.27 +45,6,111309,114520,5.47879,26.4242,0.45,9899.0,74,918,16.27 +45,6,111309,114521,5.47827,26.4271,0.44,9897.5,73,911,16.27 +45,6,111309,114522,5.47876,26.4401,0.44,9897.6,74,914,16.27 +45,6,111309,114523,5.47823,26.4449,0.45,9898.1,75,879,16.27 +45,6,111309,114524,5.47916,26.4558,0.45,9898.7,74,852,16.27 +45,6,111309,114525,5.47956,26.4408,0.44,9897.9,74,847,16.27 +45,6,111309,114526,5.47903,26.4480,0.44,9897.5,74,847,16.27 +45,6,111309,114527,5.47876,26.4430,0.45,9898.7,74,849,16.27 +45,6,111309,114528,5.47933,26.4355,0.45,9897.9,76,844,16.27 +45,6,111309,114529,5.48060,26.4473,0.45,9897.2,75,843,16.27 +45,6,111309,114530,5.47948,26.4606,0.44,9897.6,72,845,16.27 +45,6,111309,114531,5.48078,26.4480,0.44,9898.3,75,841,16.27 +45,6,111309,114532,5.48045,26.4423,0.46,9899.4,75,841,16.27 +45,6,111309,114533,5.48132,26.4312,0.45,9898.1,73,846,16.27 +45,6,111309,114534,5.48138,26.4648,0.44,9900.0,73,846,16.27 +45,6,111309,114535,5.48159,26.4590,0.44,9899.3,76,847,16.27 +45,100,111309,114536,1,1,10,762,60,22,1022776,26,1,0,0,0,0,3,2,16.27 +45,100,111309,115824,1,1,3,11,15,23,1022783,26,1,0,0,0,0,3,2,17.03 +45,3,111309,115824,5.48211,26.4581,0.45,9898.4,73,841,17.03 +45,140,111309,115825,WAKE CTD:Startup 1092 ms, Purge 10 ms +45,140,111309,115829,Sample Mode: Insitu - Pumped: 5.47126 S/M > 0.00150 C90-Limit +45,200,111309,115829, 54.7126, 26.4389, 0.45, 2.404 +45,3,111309,115829,5.47126,26.4389,0.45,30000.0,0,0,16.45 +45,100,111309,115836,1,1,4,60,60,23,1022783,26,1,0,0,0,0,3,2,16.42 +45,4,111309,115838,5.48051,26.4195,0.44,8772.2,0,0,16.42 +45,4,111309,115839,5.48039,26.4323,0.45,9011.5,0,0,16.42 +45,4,111309,115840,5.48094,26.4346,0.45,9202.9,0,0,16.42 +45,4,111309,115841,5.48002,26.4337,0.45,9344.4,0,0,16.42 +45,4,111309,115842,5.47945,26.4148,0.45,9453.8,0,0,16.42 +45,4,111309,115843,5.47885,26.4124,0.45,9532.4,0,0,16.42 +45,4,111309,115844,5.47789,26.4126,0.45,9594.3,0,0,16.42 +45,4,111309,115845,5.47707,26.4023,0.44,9637.4,0,0,16.42 +45,4,111309,115846,5.47701,26.4138,0.44,9671.0,0,0,16.42 +45,4,111309,115847,5.47644,26.3965,0.45,9696.6,0,0,16.42 +45,4,111309,115848,5.47653,26.3918,0.45,9717.2,0,0,16.42 +45,4,111309,115849,5.47710,26.3962,0.44,9732.4,0,0,16.42 +45,4,111309,115850,5.47659,26.3834,0.44,9742.7,0,0,16.42 +45,4,111309,115851,5.47647,26.3932,0.45,9754.3,0,0,16.42 +45,4,111309,115852,5.47662,26.3722,0.46,9762.9,0,0,16.42 +45,4,111309,115853,5.47668,26.3810,0.44,9771.0,0,0,16.42 +45,4,111309,115854,5.47685,26.3850,0.44,9778.3,0,0,16.42 +45,4,111309,115855,5.47688,26.4006,0.45,9784.9,0,0,16.41 +45,4,111309,115856,5.47781,26.3931,0.45,9790.6,0,0,16.41 +45,4,111309,115857,5.47808,26.3947,0.45,9794.8,0,0,16.41 +45,4,111309,115858,5.47765,26.3782,0.44,9798.2,0,0,16.41 +45,4,111309,115859,5.47716,26.3910,0.44,9803.7,0,0,16.42 +45,4,111309,115900,5.47756,26.3931,0.45,9809.0,0,0,16.42 +45,4,111309,115901,5.47810,26.4005,0.44,9811.8,0,0,16.42 +45,4,111309,115902,5.47876,26.3906,0.45,9813.6,0,0,16.42 +45,4,111309,115903,5.47843,26.3865,0.45,9817.6,0,0,16.42 +45,4,111309,115904,5.47864,26.4027,0.44,9819.6,0,0,16.41 +45,4,111309,115905,5.47894,26.3990,0.44,9821.7,0,0,16.41 +45,4,111309,115906,5.47954,26.4164,0.45,9824.7,0,0,16.42 +45,4,111309,115907,5.47942,26.4126,0.45,9826.7,0,0,16.42 +45,4,111309,115908,5.47942,26.4101,0.44,9828.2,0,0,16.42 +45,4,111309,115909,5.47997,26.4112,0.45,9830.4,0,0,16.41 +45,4,111309,115910,5.48012,26.4097,0.45,9832.5,0,0,16.41 +45,4,111309,115911,5.47994,26.4174,0.45,9832.6,0,0,16.41 +45,4,111309,115912,5.48018,26.4161,0.44,9833.3,0,0,16.41 +45,4,111309,115913,5.47972,26.4125,0.44,9834.3,0,0,16.42 +45,4,111309,115914,5.48009,26.4048,0.45,9835.8,0,0,16.41 +45,4,111309,115915,5.48024,26.4014,0.45,9837.0,0,0,16.41 +45,4,111309,115916,5.48036,26.4048,0.44,9838.5,0,0,16.41 +45,4,111309,115917,5.48075,26.3920,0.45,9841.4,0,0,16.41 +45,4,111309,115918,5.48051,26.4021,0.45,9841.2,0,0,16.41 +45,4,111309,115919,5.48051,26.4129,0.45,9842.2,0,0,16.41 +45,4,111309,115920,5.48058,26.4189,0.45,9843.4,0,0,16.41 +45,4,111309,115921,5.48058,26.4084,0.45,9845.3,0,0,16.41 +45,4,111309,115922,5.48051,26.4187,0.44,9844.9,0,0,16.41 +45,4,111309,115923,5.48094,26.4247,0.45,9845.9,0,0,16.41 +45,4,111309,115924,5.48088,26.4168,0.46,9844.9,0,0,16.41 +45,4,111309,115925,5.48101,26.3960,0.45,9846.4,0,0,16.41 +45,4,111309,115926,5.48076,26.4060,0.44,9845.5,0,0,16.42 +45,4,111309,115927,5.48094,26.4075,0.45,9846.9,0,0,16.41 +45,100,111309,115928,1,1,5,8,60,26,1022780,26,1,0,0,0,0,3,2,16.41 +45,5,111309,115928,5.48082,26.4023,0.46,9845.8,0,0,16.41 +45,5,111309,115929,5.48085,26.4076,0.44,9844.7,0,0,16.29 +45,5,111309,115930,5.48119,26.4174,0.44,9846.8,0,0,16.29 +45,5,111309,115931,5.48104,26.4146,0.46,9848.2,0,0,16.29 +45,5,111309,115932,5.48104,26.4181,0.45,9846.5,0,0,16.27 +45,210,111309,115932,11/13/09 05:06:09 695 75 700 840 551 +45,5,111309,115933,5.48113,26.4216,0.44,9847.0,73,846,16.27 +45,5,111309,115934,5.48150,26.4207,0.44,9847.7,74,847,16.27 +45,5,111309,115935,5.48119,26.4124,0.45,9849.6,76,850,16.27 +45,100,111309,115936,1,1,6,60,60,26,1022780,26,1,0,0,0,0,3,2,16.27 +45,6,111309,115936,5.48126,26.4088,0.45,9849.9,74,840,16.27 +45,6,111309,115937,5.48135,26.4195,0.44,9849.0,75,841,16.27 +45,6,111309,115938,5.48159,26.4208,0.44,9849.0,75,829,16.27 +45,6,111309,115939,5.48156,26.4114,0.46,9851.0,74,826,16.27 +45,6,111309,115940,5.48150,26.4164,0.45,9852.3,76,824,16.27 +45,6,111309,115941,5.48169,26.4253,0.44,9853.0,74,822,16.27 +45,6,111309,115942,5.48193,26.4156,0.45,9852.9,75,822,16.27 +45,6,111309,115943,5.48165,26.4130,0.46,9854.6,76,825,16.27 +45,6,111309,115944,5.48205,26.4263,0.44,9854.3,75,849,16.27 +45,6,111309,115945,5.48202,26.4244,0.44,9853.4,74,854,16.27 +45,6,111309,115946,5.48196,26.4265,0.45,9855.2,73,856,16.27 +45,6,111309,115947,5.48205,26.4259,0.45,9854.8,75,899,16.27 +45,6,111309,115948,5.48217,26.4161,0.44,9855.9,75,930,16.27 +45,6,111309,115949,5.48232,26.4234,0.45,9856.8,74,935,16.27 +45,6,111309,115950,5.48226,26.4133,0.46,9854.9,74,872,16.27 +45,6,111309,115951,5.48241,26.4167,0.44,9856.6,74,884,16.27 +45,6,111309,115952,5.48223,26.4213,0.45,9854.5,75,881,16.27 +45,6,111309,115953,5.48238,26.4223,0.45,9856.3,73,875,16.27 +45,6,111309,115954,5.48241,26.4139,0.45,9856.6,75,893,16.27 +45,6,111309,115955,5.48259,26.4238,0.45,9856.3,74,890,16.26 +45,6,111309,115956,5.48280,26.4120,0.45,9854.5,72,880,16.26 +45,6,111309,115957,5.48250,26.4164,0.44,9855.3,74,872,16.27 +45,6,111309,115958,5.48247,26.4204,0.45,9855.1,74,894,16.27 +45,6,111309,115959,5.48331,26.4230,0.46,9854.8,76,884,16.26 +45,6,111309,120000,5.48313,26.4196,0.45,9856.1,74,878,16.26 +45,6,111309,120001,5.48298,26.4192,0.43,9858.0,75,877,16.27 +45,6,111309,120002,5.48371,26.4154,0.45,9858.8,73,877,16.26 +45,6,111309,120003,5.48347,26.4214,0.45,9859.4,73,886,16.26 +45,6,111309,120004,5.48386,26.4236,0.45,9859.9,75,904,16.27 +45,6,111309,120005,5.48365,26.4224,0.44,9859.4,74,944,16.27 +45,6,111309,120006,5.48331,26.4291,0.45,9859.9,75,877,16.26 +45,6,111309,120007,5.48431,26.4331,0.46,9861.8,75,859,16.26 +45,6,111309,120008,5.48407,26.4320,0.45,9861.3,72,854,16.26 +45,6,111309,120009,5.48428,26.4330,0.44,9861.5,75,877,16.27 +45,6,111309,120010,5.48413,26.4252,0.45,9862.1,74,870,16.27 +45,6,111309,120011,5.48389,26.4244,0.45,9861.5,72,864,16.26 +45,6,111309,120012,5.48386,26.4207,0.45,9860.7,75,858,16.27 +45,6,111309,120013,5.48410,26.4277,0.44,9861.3,74,863,16.26 +45,6,111309,120014,5.48434,26.4206,0.45,9861.2,76,854,16.26 +45,6,111309,120015,5.48437,26.4350,0.46,9864.2,75,857,16.26 +45,6,111309,120016,5.48422,26.4210,0.44,9861.1,74,877,16.26 +45,6,111309,120017,5.48395,26.4336,0.43,9860.3,73,864,16.26 +45,6,111309,120018,5.48413,26.4291,0.46,9861.7,75,876,16.26 +45,6,111309,120019,5.48428,26.4264,0.46,9861.8,74,866,16.26 +45,6,111309,120020,5.48410,26.4227,0.44,9861.7,74,867,16.26 +45,6,111309,120021,5.48395,26.4282,0.44,9861.1,74,856,16.26 +45,6,111309,120022,5.48464,26.4372,0.46,9860.9,73,857,16.27 +45,6,111309,120023,5.48458,26.4437,0.46,9862.6,75,871,16.26 +45,6,111309,120024,5.48434,26.4308,0.44,9864.4,75,867,16.26 +45,6,111309,120025,5.48422,26.4385,0.44,9862.7,75,867,16.26 +45,6,111309,120026,5.48446,26.4426,0.46,9862.5,74,875,16.26 +45,6,111309,120027,5.48479,26.4411,0.45,9861.7,75,864,16.26 +45,6,111309,120028,5.48449,26.4361,0.44,9862.9,73,855,16.26 +45,6,111309,120029,5.48479,26.4320,0.45,9862.1,75,863,16.26 +45,6,111309,120030,5.48479,26.4406,0.46,9863.0,76,858,16.27 +45,6,111309,120031,5.48485,26.4417,0.44,9863.9,73,855,16.26 +45,6,111309,120032,5.48488,26.4463,0.45,9864.4,75,835,16.26 +45,6,111309,120033,5.48494,26.4389,0.45,9865.1,74,829,16.27 +45,6,111309,120034,5.48473,26.4372,0.45,9863.8,74,829,16.26 +45,6,111309,120035,5.48491,26.4388,0.45,9864.2,74,827,16.26 +45,100,111309,120036,1,1,10,762,60,30,1022776,32,1,0,0,0,0,3,2,16.26 +45,100,111309,121324,1,1,3,11,15,30,1022783,32,1,0,0,0,0,3,2,17.03 +45,3,111309,121324,5.48497,26.4393,0.44,9864.1,74,827,17.03 +45,140,111309,121329,Sample Mode: Insitu - Pumped: 5.48064 S/M > 0.00150 C90-Limit +45,200,111309,121329, 54.8064, 26.4027, 0.44, 2.034 +45,3,111309,121329,5.48064,26.4027,0.44,30000.0,0,0,16.45 +45,100,111309,121336,1,1,4,60,60,30,1022783,32,1,0,0,0,0,3,2,16.42 +45,4,111309,121338,5.48012,26.3923,0.45,8390.7,0,0,16.41 +45,4,111309,121339,5.48006,26.3916,0.45,8702.9,0,0,16.46 +45,4,111309,121340,5.47997,26.3898,0.44,8957.5,0,0,16.46 +45,4,111309,121341,5.47997,26.3893,0.45,9151.8,0,0,16.45 +45,4,111309,121342,5.47985,26.3875,0.45,9298.8,0,0,16.45 +45,4,111309,121343,5.47966,26.3859,0.46,9406.7,0,0,16.45 +45,4,111309,121344,5.47945,26.3828,0.44,9486.4,0,0,16.45 +45,4,111309,121345,5.47936,26.3837,0.44,9547.5,0,0,16.46 +45,4,111309,121346,5.47933,26.3806,0.45,9593.8,0,0,16.46 +45,4,111309,121347,5.47915,26.3807,0.45,9627.4,0,0,16.43 +45,4,111309,121348,5.47903,26.3781,0.45,9652.1,0,0,16.43 +45,4,111309,121349,5.47898,26.3728,0.44,9671.6,0,0,16.46 +45,4,111309,121350,5.47907,26.3729,0.45,9686.7,0,0,16.42 +45,4,111309,121351,5.47916,26.3750,0.45,9699.7,0,0,16.44 +45,4,111309,121352,5.47904,26.3700,0.45,9710.6,0,0,16.45 +45,4,111309,121353,5.47894,26.3727,0.45,9722.3,0,0,16.44 +45,4,111309,121354,5.47910,26.3729,0.45,9732.3,0,0,16.43 +45,4,111309,121355,5.47907,26.3787,0.45,9738.3,0,0,16.46 +45,4,111309,121356,5.47907,26.3786,0.45,9745.9,0,0,16.44 +45,4,111309,121357,5.47907,26.3830,0.45,9750.7,0,0,16.45 +45,4,111309,121358,5.47904,26.3781,0.45,9756.2,0,0,16.44 +45,4,111309,121359,5.47900,26.3800,0.44,9761.1,0,0,16.43 +45,4,111309,121400,5.47903,26.3756,0.45,9764.7,0,0,16.45 +45,4,111309,121401,5.47912,26.3790,0.45,9769.8,0,0,16.44 +45,4,111309,121402,5.47897,26.3785,0.45,9771.7,0,0,16.43 +45,4,111309,121403,5.47909,26.3775,0.44,9775.2,0,0,16.44 +45,4,111309,121404,5.47903,26.3792,0.44,9777.9,0,0,16.46 +45,4,111309,121405,5.47918,26.3789,0.46,9781.6,0,0,16.45 +45,4,111309,121406,5.47909,26.3774,0.45,9782.0,0,0,16.45 +45,4,111309,121407,5.47912,26.3771,0.43,9785.1,0,0,16.45 +45,4,111309,121408,5.47921,26.3785,0.46,9788.3,0,0,16.44 +45,4,111309,121409,5.47927,26.3799,0.46,9792.4,0,0,16.46 +45,4,111309,121410,5.47933,26.3820,0.44,9794.0,0,0,16.45 +45,4,111309,121411,5.47933,26.3809,0.45,9794.2,0,0,16.44 +45,4,111309,121412,5.47930,26.3763,0.45,9796.0,0,0,16.45 +45,4,111309,121413,5.47939,26.3772,0.44,9797.9,0,0,16.44 +45,4,111309,121414,5.47936,26.3763,0.44,9800.0,0,0,16.44 +45,4,111309,121415,5.47938,26.3778,0.44,9800.3,0,0,16.45 +45,4,111309,121416,5.47931,26.3804,0.44,9803.4,0,0,16.45 +45,4,111309,121417,5.47938,26.3816,0.47,9803.9,0,0,16.44 +45,4,111309,121418,5.47944,26.3800,0.46,9805.5,0,0,16.44 +45,4,111309,121419,5.47925,26.3769,0.41,9808.4,0,0,16.44 +45,4,111309,121420,5.47941,26.3771,0.45,9806.5,0,0,16.43 +45,4,111309,121421,5.47944,26.3788,0.47,9808.4,0,0,16.45 +45,4,111309,121422,5.47935,26.3786,0.45,9809.6,0,0,16.45 +45,4,111309,121423,5.47947,26.3775,0.43,9808.8,0,0,16.45 +45,4,111309,121424,5.47950,26.3773,0.44,9812.0,0,0,16.45 +45,4,111309,121425,5.47956,26.3796,0.46,9813.3,0,0,16.42 +45,4,111309,121426,5.47947,26.3783,0.46,9813.8,0,0,16.45 +45,4,111309,121427,5.47936,26.3780,0.44,9813.4,0,0,16.42 +45,100,111309,121428,1,1,5,8,60,33,1022780,32,1,0,0,0,0,3,2,16.46 +45,5,111309,121428,5.47939,26.3785,0.43,9815.6,0,0,16.46 +45,5,111309,121428,5.47948,26.3809,0.45,9818.3,0,0,16.46 +45,5,111309,121429,5.47939,26.3785,0.45,9816.0,0,0,16.29 +45,5,111309,121430,5.47945,26.3800,0.45,9817.0,0,0,16.29 +45,5,111309,121431,5.47945,26.3805,0.44,9817.7,0,0,16.29 +45,210,111309,121432,11/13/09 05:21:09 695 75 700 831 549 +45,5,111309,121432,5.47936,26.3805,0.44,9818.8,75,831,16.27 +45,5,111309,121433,5.47939,26.3807,0.45,9818.6,76,828,16.27 +45,5,111309,121434,5.47961,26.3840,0.46,9820.2,74,841,16.27 +45,5,111309,121435,5.47942,26.3827,0.44,9821.2,73,840,16.27 +45,100,111309,121436,1,1,6,60,60,34,1022780,32,1,0,0,0,0,3,2,16.27 +45,6,111309,121436,5.47942,26.3798,0.43,9821.9,75,845,16.27 +45,6,111309,121437,5.47948,26.3828,0.45,9820.4,73,857,16.38 +45,6,111309,121438,5.47957,26.3848,0.46,9820.2,74,835,16.36 +45,6,111309,121439,5.47942,26.3841,0.44,9819.6,74,828,16.37 +45,6,111309,121440,5.47957,26.3823,0.44,9822.8,75,868,16.38 +45,6,111309,121441,5.47966,26.3807,0.46,9822.2,72,1026,16.38 +45,6,111309,121442,5.47963,26.3829,0.46,9821.7,76,974,16.37 +45,6,111309,121443,5.47956,26.3811,0.44,9822.2,74,834,16.38 +45,6,111309,121444,5.47959,26.3814,0.43,9824.3,73,825,16.38 +45,6,111309,121445,5.47968,26.3857,0.46,9826.1,74,823,16.38 +45,6,111309,121446,5.47962,26.3848,0.46,9827.8,74,842,16.37 +45,6,111309,121447,5.47971,26.3849,0.44,9827.3,75,838,16.38 +45,6,111309,121448,5.47968,26.3832,0.44,9827.9,74,838,16.37 +45,6,111309,121449,5.47984,26.3847,0.45,9828.8,74,825,16.38 +45,6,111309,121450,5.47974,26.3848,0.45,9831.4,76,824,16.37 +45,6,111309,121451,5.47978,26.3844,0.44,9829.5,75,835,16.38 +45,6,111309,121452,5.47984,26.3848,0.45,9831.3,74,836,16.38 +45,6,111309,121453,5.47984,26.3868,0.45,9832.3,72,830,16.37 +45,6,111309,121454,5.47987,26.3838,0.43,9831.7,75,828,16.37 +45,6,111309,121455,5.47997,26.3849,0.44,9832.9,74,831,16.38 +45,6,111309,121456,5.48009,26.3821,0.47,9833.6,74,854,16.37 +45,6,111309,121457,5.47997,26.3799,0.46,9833.1,74,818,16.37 +45,6,111309,121458,5.47988,26.3799,0.43,9832.1,75,833,16.37 +45,6,111309,121459,5.47985,26.3849,0.44,9834.0,74,823,16.36 +45,6,111309,121500,5.47988,26.3868,0.45,9833.8,74,823,16.36 +45,6,111309,121501,5.48000,26.3832,0.46,9832.9,76,820,16.37 +45,6,111309,121502,5.48021,26.3892,0.44,9833.7,73,818,16.37 +45,6,111309,121503,5.48015,26.3898,0.45,9835.4,73,826,16.37 +45,6,111309,121504,5.48006,26.3870,0.44,9835.8,76,867,16.37 +45,6,111309,121505,5.48000,26.3874,0.45,9837.2,73,828,16.35 +45,6,111309,121506,5.47991,26.3833,0.46,9837.3,75,836,16.37 +45,6,111309,121507,5.48006,26.3847,0.45,9838.2,73,840,16.37 +45,6,111309,121508,5.48024,26.3875,0.44,9838.8,74,829,16.37 +45,6,111309,121509,5.48039,26.3873,0.44,9838.3,75,838,16.36 +45,6,111309,121510,5.48024,26.3834,0.45,9836.9,73,824,16.37 +45,6,111309,121511,5.48000,26.3804,0.46,9835.7,73,821,16.36 +45,6,111309,121512,5.47985,26.3806,0.45,9837.5,74,827,16.37 +45,6,111309,121513,5.47976,26.3823,0.44,9837.8,75,834,16.37 +45,6,111309,121514,5.47973,26.3828,0.45,9837.7,74,820,16.37 +45,6,111309,121515,5.47968,26.3832,0.45,9839.0,73,831,16.37 +45,6,111309,121516,5.47987,26.3858,0.45,9838.2,74,819,16.37 +45,6,111309,121517,5.48002,26.3840,0.44,9839.8,74,829,16.37 +45,6,111309,121518,5.47987,26.3830,0.44,9841.6,74,834,16.36 +45,6,111309,121519,5.47999,26.3839,0.44,9840.7,75,829,16.37 +45,6,111309,121520,5.47999,26.3822,0.45,9840.8,72,827,16.37 +45,6,111309,121521,5.48002,26.3820,0.47,9840.8,75,825,16.37 +45,6,111309,121522,5.47999,26.3828,0.45,9841.4,76,820,16.37 +45,6,111309,121523,5.47996,26.3825,0.42,9843.5,72,834,16.37 +45,6,111309,121524,5.47993,26.3823,0.44,9843.5,74,836,16.37 +45,6,111309,121525,5.47999,26.3823,0.47,9843.1,73,830,16.37 +45,6,111309,121526,5.48005,26.3817,0.45,9843.6,74,822,16.37 +45,6,111309,121527,5.48006,26.3830,0.42,9843.4,74,829,16.37 +45,6,111309,121528,5.48015,26.3831,0.44,9843.8,74,833,16.36 +45,6,111309,121529,5.48021,26.3825,0.47,9843.3,74,830,16.37 +45,6,111309,121530,5.48024,26.3828,0.46,9843.4,74,811,16.37 +45,6,111309,121531,5.48018,26.3826,0.44,9845.3,75,820,16.36 +45,6,111309,121532,5.48012,26.3840,0.43,9844.5,75,826,16.37 +45,6,111309,121533,5.48015,26.3829,0.44,9844.1,74,828,16.37 +45,6,111309,121534,5.48012,26.3839,0.46,9845.1,75,829,16.37 +45,6,111309,121535,5.47997,26.3839,0.46,9844.7,74,817,16.37 +45,100,111309,121536,1,1,10,758,60,38,1022776,32,1,0,0,0,0,3,2,16.36 +45,100,111309,122824,1,1,3,11,15,38,1022767,32,1,0,0,0,0,3,2,17.02 +45,3,111309,122824,5.47972,26.3850,0.45,9844.5,74,817,17.02 +45,140,111309,122829,Sample Mode: Insitu - Pumped: 5.47778 S/M > 0.00150 C90-Limit +45,200,111309,122829, 54.7778, 26.3414, 0.44, 2.015 +45,3,111309,122829,5.47778,26.3414,0.44,30000.0,0,0,16.45 +45,100,111309,122836,1,1,4,60,60,38,1022767,32,1,0,0,0,0,3,2,16.42 +45,4,111309,122838,5.47439,26.3344,0.45,8386.1,0,0,16.42 +45,4,111309,122839,5.47421,26.3264,0.43,8699.5,0,0,16.41 +45,4,111309,122840,5.47418,26.3253,0.43,8953.3,0,0,16.42 +45,4,111309,122841,5.47421,26.3192,0.46,9146.5,0,0,16.41 +45,4,111309,122842,5.47400,26.3169,0.45,9292.5,0,0,16.41 +45,4,111309,122843,5.47409,26.3317,0.43,9398.1,0,0,16.41 +45,4,111309,122844,5.47400,26.3346,0.44,9479.9,0,0,16.41 +45,4,111309,122845,5.47369,26.3276,0.45,9538.0,0,0,16.42 +45,4,111309,122846,5.47353,26.3289,0.46,9584.2,0,0,16.41 +45,4,111309,122847,5.47344,26.3257,0.44,9617.8,0,0,16.41 +45,4,111309,122848,5.47356,26.3221,0.44,9641.7,0,0,16.41 +45,4,111309,122849,5.47341,26.3235,0.45,9663.8,0,0,16.41 +45,4,111309,122850,5.47337,26.3143,0.45,9681.2,0,0,16.41 +45,4,111309,122851,5.47328,26.3035,0.45,9696.1,0,0,16.41 +45,4,111309,122852,5.47319,26.3126,0.44,9706.1,0,0,16.41 +45,4,111309,122853,5.47313,26.3108,0.45,9716.5,0,0,16.41 +45,4,111309,122854,5.47310,26.3073,0.46,9726.7,0,0,16.41 +45,4,111309,122855,5.47316,26.3128,0.45,9734.2,0,0,16.41 +45,4,111309,122856,5.47337,26.3206,0.44,9740.5,0,0,16.41 +45,4,111309,122857,5.47344,26.3230,0.44,9747.5,0,0,16.41 +45,4,111309,122858,5.47335,26.3157,0.44,9751.1,0,0,16.41 +45,4,111309,122859,5.47323,26.3176,0.45,9754.2,0,0,16.41 +45,4,111309,122900,5.47310,26.3184,0.45,9757.6,0,0,16.41 +45,4,111309,122901,5.47304,26.3184,0.44,9762.3,0,0,16.41 +45,4,111309,122902,5.47310,26.3207,0.43,9765.4,0,0,16.41 +45,4,111309,122903,5.47289,26.3145,0.45,9768.5,0,0,16.41 +45,4,111309,122904,5.47280,26.3151,0.47,9773.0,0,0,16.41 +45,4,111309,122905,5.47280,26.3138,0.44,9773.3,0,0,16.41 +45,4,111309,122906,5.47286,26.3159,0.42,9776.7,0,0,16.41 +45,4,111309,122907,5.47273,26.3109,0.45,9779.8,0,0,16.41 +45,4,111309,122908,5.47276,26.3135,0.46,9782.8,0,0,16.41 +45,4,111309,122909,5.47295,26.3124,0.44,9782.6,0,0,16.41 +45,4,111309,122910,5.47280,26.3091,0.43,9784.5,0,0,16.41 +45,4,111309,122911,5.47267,26.3050,0.45,9785.4,0,0,16.41 +45,4,111309,122912,5.47261,26.3101,0.46,9787.3,0,0,16.41 +45,4,111309,122913,5.47273,26.3135,0.44,9789.6,0,0,16.41 +45,4,111309,122914,5.47273,26.3134,0.44,9790.0,0,0,16.41 +45,4,111309,122915,5.47280,26.3159,0.45,9793.9,0,0,16.41 +45,4,111309,122916,5.47283,26.3165,0.45,9794.1,0,0,16.40 +45,4,111309,122917,5.47277,26.3154,0.45,9796.1,0,0,16.40 +45,4,111309,122918,5.47262,26.3113,0.45,9796.3,0,0,16.41 +45,4,111309,122919,5.47258,26.3098,0.45,9797.3,0,0,16.41 +45,4,111309,122920,5.47270,26.3070,0.45,9799.3,0,0,16.41 +45,4,111309,122921,5.47276,26.3062,0.45,9800.3,0,0,16.40 +45,4,111309,122922,5.47286,26.3043,0.45,9800.6,0,0,16.41 +45,4,111309,122923,5.47273,26.3074,0.44,9801.7,0,0,16.40 +45,4,111309,122924,5.47262,26.3060,0.44,9802.4,0,0,16.41 +45,4,111309,122925,5.47256,26.3080,0.46,9801.1,0,0,16.40 +45,4,111309,122926,5.47243,26.3084,0.45,9802.9,0,0,16.41 +45,4,111309,122927,5.47250,26.3055,0.44,9804.5,0,0,16.41 +45,100,111309,122928,1,1,5,8,60,41,1022764,32,1,0,0,0,0,3,2,16.41 +45,5,111309,122928,5.47252,26.3065,0.43,9807.2,0,0,16.41 +45,5,111309,122929,5.47256,26.3078,0.45,9808.2,0,0,16.29 +45,5,111309,122930,5.47256,26.3084,0.46,9809.4,0,0,16.29 +45,5,111309,122931,5.47264,26.3091,0.44,9810.2,0,0,16.29 +45,5,111309,122932,5.47261,26.3107,0.44,9809.2,0,0,16.27 +45,210,111309,122932,11/13/09 05:36:09 695 76 700 816 548 +45,5,111309,122933,5.47273,26.3085,0.45,9810.5,76,816,16.27 +45,5,111309,122934,5.47286,26.3113,0.45,9811.2,75,822,16.27 +45,5,111309,122935,5.47295,26.3120,0.44,9812.0,74,818,16.29 +45,100,111309,122936,1,1,6,60,60,42,1022764,32,1,0,0,0,0,3,2,16.29 +45,6,111309,122936,5.47292,26.3087,0.44,9811.8,74,816,16.29 +45,6,111309,122937,5.47286,26.3071,0.46,9813.5,74,819,16.28 +45,6,111309,122938,5.47280,26.3070,0.45,9813.0,75,815,16.28 +45,6,111309,122939,5.47289,26.3126,0.43,9812.8,72,811,16.28 +45,6,111309,122940,5.47283,26.3106,0.44,9814.6,76,817,16.28 +45,6,111309,122941,5.47273,26.3075,0.46,9816.0,73,847,16.28 +45,6,111309,122942,5.47280,26.3080,0.46,9816.1,73,819,16.28 +45,6,111309,122943,5.47273,26.3073,0.44,9815.3,73,809,16.29 +45,6,111309,122944,5.47258,26.3067,0.43,9816.8,75,812,16.28 +45,6,111309,122945,5.47258,26.3016,0.45,9814.1,74,829,16.28 +45,6,111309,122946,5.47267,26.3063,0.46,9816.8,74,825,16.28 +45,6,111309,122947,5.47268,26.3095,0.44,9816.9,77,812,16.28 +45,6,111309,122948,5.47268,26.3112,0.43,9818.6,74,824,16.28 +45,6,111309,122949,5.47262,26.3060,0.44,9818.2,74,822,16.28 +45,6,111309,122950,5.47259,26.3057,0.47,9816.9,75,825,16.28 +45,6,111309,122951,5.47256,26.3085,0.46,9819.1,72,819,16.28 +45,6,111309,122952,5.47256,26.3112,0.42,9820.5,75,830,16.28 +45,6,111309,122953,5.47240,26.3097,0.44,9819.6,75,837,16.28 +45,6,111309,122954,5.47230,26.3084,0.47,9820.3,73,902,16.28 +45,6,111309,122955,5.47233,26.3080,0.45,9822.2,72,819,16.28 +45,6,111309,122956,5.47258,26.3083,0.43,9822.4,74,823,16.28 +45,6,111309,122957,5.47261,26.3094,0.44,9822.3,76,907,16.28 +45,6,111309,122958,5.47250,26.3086,0.45,9822.5,74,867,16.27 +45,6,111309,122959,5.47252,26.3092,0.46,9821.6,74,869,16.28 +45,6,111309,123000,5.47240,26.3059,0.45,9823.7,75,826,16.28 +45,6,111309,123001,5.47222,26.3043,0.44,9823.0,73,837,16.28 +45,6,111309,123002,5.47213,26.3042,0.44,9824.3,73,830,16.28 +45,6,111309,123003,5.47222,26.3044,0.45,9825.2,74,846,16.28 +45,6,111309,123004,5.47197,26.3035,0.45,9825.1,74,833,16.28 +45,6,111309,123005,5.47184,26.3031,0.44,9824.8,75,827,16.28 +45,6,111309,123006,5.47160,26.2967,0.46,9826.7,74,844,16.28 +45,6,111309,123007,5.47160,26.2936,0.44,9825.7,76,825,16.28 +45,6,111309,123008,5.47175,26.2936,0.44,9826.4,77,824,16.28 +45,6,111309,123009,5.47162,26.2974,0.46,9826.9,74,826,16.28 +45,6,111309,123010,5.47159,26.2987,0.46,9828.4,74,824,16.28 +45,6,111309,123011,5.47168,26.3005,0.43,9826.9,75,830,16.28 +45,6,111309,123012,5.47165,26.3007,0.44,9827.5,75,822,16.28 +45,6,111309,123013,5.47144,26.3003,0.46,9826.7,74,833,16.28 +45,6,111309,123014,5.47132,26.2936,0.46,9827.6,75,824,16.28 +45,6,111309,123015,5.47129,26.2950,0.44,9828.4,74,830,16.31 +45,6,111309,123016,5.47132,26.2987,0.43,9828.3,73,839,16.28 +45,6,111309,123017,5.47141,26.2961,0.45,9829.9,74,820,16.28 +45,6,111309,123018,5.47150,26.2937,0.46,9830.5,75,836,16.28 +45,6,111309,123019,5.47135,26.2936,0.45,9832.3,73,825,16.28 +45,6,111309,123020,5.47153,26.3038,0.44,9831.0,74,830,16.27 +45,6,111309,123021,5.47156,26.2975,0.44,9830.4,74,828,16.28 +45,6,111309,123022,5.47153,26.2965,0.45,9830.7,75,830,16.28 +45,6,111309,123023,5.47153,26.2957,0.45,9829.9,76,828,16.28 +45,6,111309,123024,5.47147,26.2935,0.45,9829.5,74,832,16.28 +45,6,111309,123025,5.47147,26.2948,0.44,9830.0,74,827,16.27 +45,6,111309,123026,5.47160,26.2965,0.45,9829.7,75,833,16.28 +45,6,111309,123027,5.47150,26.2949,0.45,9831.1,74,835,16.28 +45,6,111309,123028,5.47150,26.2981,0.45,9830.5,75,832,16.28 +45,6,111309,123029,5.47153,26.2940,0.44,9831.0,73,817,16.28 +45,6,111309,123030,5.47156,26.2975,0.44,9831.9,74,818,16.28 +45,6,111309,123031,5.47156,26.2960,0.45,9833.2,75,819,16.28 +45,6,111309,123032,5.47150,26.2960,0.45,9831.0,74,825,16.28 +45,6,111309,123033,5.47147,26.2972,0.44,9830.9,73,822,16.28 +45,6,111309,123034,5.47147,26.2977,0.44,9831.7,76,829,16.27 +45,6,111309,123035,5.47138,26.2974,0.46,9832.5,75,822,16.27 +45,100,111309,123036,1,1,10,761,60,45,1022760,32,1,0,0,0,0,3,2,16.27 +45,100,111309,124324,1,1,3,11,15,45,1022767,32,1,0,0,0,0,3,2,17.02 +45,3,111309,124324,5.47135,26.2980,0.45,9829.6,73,819,17.02 +45,140,111309,124329,Sample Mode: Insitu - Pumped: 5.47166 S/M > 0.00150 C90-Limit +45,200,111309,124329, 54.7166, 26.2710, 0.46, 2.126 +45,3,111309,124329,5.47166,26.2710,0.46,30000.0,0,0,16.45 +45,100,111309,124336,1,1,4,60,60,46,1022767,32,1,0,0,0,0,3,2,16.43 +45,4,111309,124338,5.46770,26.2643,0.44,8533.2,0,0,16.41 +45,4,111309,124339,5.46754,26.2559,0.44,8814.0,0,0,16.41 +45,4,111309,124340,5.46776,26.2565,0.45,9040.8,0,0,16.41 +45,4,111309,124341,5.46789,26.2518,0.45,9210.4,0,0,16.41 +45,4,111309,124342,5.46783,26.2560,0.45,9338.8,0,0,16.41 +45,4,111309,124343,5.46768,26.2488,0.44,9435.4,0,0,16.41 +45,4,111309,124344,5.46762,26.2618,0.44,9504.4,0,0,16.41 +45,4,111309,124345,5.46757,26.2482,0.45,9558.9,0,0,16.41 +45,4,111309,124346,5.46757,26.2486,0.45,9597.8,0,0,16.41 +45,4,111309,124347,5.46748,26.2596,0.44,9627.4,0,0,16.41 +45,4,111309,124348,5.46748,26.2458,0.43,9651.3,0,0,16.41 +45,4,111309,124349,5.46732,26.2367,0.45,9668.3,0,0,16.41 +45,4,111309,124350,5.46720,26.2364,0.46,9684.9,0,0,16.41 +45,4,111309,124351,5.46753,26.2567,0.44,9696.5,0,0,16.41 +45,4,111309,124352,5.46735,26.2518,0.43,9706.0,0,0,16.41 +45,4,111309,124353,5.46721,26.2548,0.45,9715.6,0,0,16.41 +45,4,111309,124354,5.46727,26.2430,0.45,9721.1,0,0,16.41 +45,4,111309,124355,5.46727,26.2581,0.45,9729.2,0,0,16.41 +45,4,111309,124356,5.46705,26.2563,0.44,9733.6,0,0,16.41 +45,4,111309,124357,5.46687,26.2477,0.43,9738.7,0,0,16.41 +45,4,111309,124358,5.46690,26.2546,0.46,9744.4,0,0,16.41 +45,4,111309,124359,5.46681,26.2480,0.46,9748.6,0,0,16.41 +45,4,111309,124400,5.46690,26.2516,0.44,9752.1,0,0,16.41 +45,4,111309,124401,5.46687,26.2495,0.44,9756.1,0,0,16.41 +45,4,111309,124402,5.46671,26.2478,0.45,9757.3,0,0,16.41 +45,4,111309,124403,5.46671,26.2545,0.45,9759.2,0,0,16.40 +45,4,111309,124404,5.46684,26.2511,0.44,9760.5,0,0,16.41 +45,4,111309,124405,5.46669,26.2424,0.46,9763.4,0,0,16.41 +45,4,111309,124406,5.46699,26.2516,0.45,9764.8,0,0,16.41 +45,4,111309,124407,5.46708,26.2469,0.43,9768.2,0,0,16.41 +45,4,111309,124408,5.46662,26.2426,0.45,9769.6,0,0,16.41 +45,4,111309,124409,5.46622,26.2469,0.46,9770.9,0,0,16.41 +45,4,111309,124410,5.46629,26.2463,0.43,9774.2,0,0,16.41 +45,4,111309,124411,5.46603,26.2504,0.45,9775.6,0,0,16.41 +45,4,111309,124412,5.46627,26.2444,0.45,9777.9,0,0,16.41 +45,4,111309,124413,5.46639,26.2452,0.44,9779.5,0,0,16.41 +45,4,111309,124414,5.46630,26.2484,0.45,9781.7,0,0,16.41 +45,4,111309,124415,5.46629,26.2456,0.45,9784.5,0,0,16.41 +45,4,111309,124416,5.46644,26.2519,0.44,9784.8,0,0,16.41 +45,4,111309,124417,5.46656,26.2461,0.45,9787.3,0,0,16.41 +45,4,111309,124418,5.46657,26.2442,0.45,9785.8,0,0,16.41 +45,4,111309,124419,5.46657,26.2468,0.44,9788.2,0,0,16.41 +45,4,111309,124420,5.46651,26.2422,0.45,9789.6,0,0,16.41 +45,4,111309,124421,5.46651,26.2507,0.45,9791.0,0,0,16.41 +45,4,111309,124422,5.46644,26.2501,0.44,9790.0,0,0,16.41 +45,4,111309,124423,5.46635,26.2432,0.45,9791.7,0,0,16.40 +45,4,111309,124424,5.46656,26.2440,0.45,9791.9,0,0,16.41 +45,4,111309,124425,5.46650,26.2439,0.44,9791.9,0,0,16.41 +45,4,111309,124426,5.46636,26.2402,0.44,9793.4,0,0,16.41 +45,4,111309,124427,5.46633,26.2398,0.45,9794.2,0,0,16.41 +45,100,111309,124428,1,1,5,8,60,48,1022764,32,1,0,0,0,0,3,2,16.41 +45,5,111309,124428,5.46651,26.2464,0.45,9796.3,0,0,16.41 +45,5,111309,124429,5.46651,26.2440,0.45,9795.9,0,0,16.29 +45,5,111309,124430,5.46644,26.2440,0.45,9796.8,0,0,16.29 +45,5,111309,124431,5.46625,26.2390,0.44,9796.9,0,0,16.29 +45,5,111309,124432,5.46607,26.2391,0.45,9796.3,0,0,16.27 +45,210,111309,124432,11/13/09 05:51:09 695 73 700 813 548 +45,5,111309,124433,5.46594,26.2434,0.45,9796.8,73,813,16.27 +45,5,111309,124434,5.46597,26.2492,0.44,9800.1,73,812,16.27 +45,5,111309,124435,5.46579,26.2455,0.45,9799.6,75,810,16.27 +45,100,111309,124436,1,1,6,60,60,49,1022764,32,1,0,0,0,0,3,2,16.27 +45,6,111309,124436,5.46573,26.2358,0.45,9799.4,75,810,16.27 +45,6,111309,124437,5.46570,26.2395,0.44,9798.9,74,826,16.27 +45,6,111309,124438,5.46586,26.2417,0.45,9800.6,75,818,16.27 +45,6,111309,124439,5.46604,26.2386,0.45,9801.8,75,817,16.27 +45,6,111309,124440,5.46597,26.2372,0.45,9804.5,74,820,16.27 +45,6,111309,124441,5.46594,26.2353,0.44,9805.7,75,821,16.27 +45,6,111309,124442,5.46597,26.2365,0.44,9806.3,74,815,16.27 +45,6,111309,124443,5.46597,26.2402,0.45,9807.1,73,818,16.27 +45,6,111309,124444,5.46595,26.2474,0.45,9806.1,74,818,16.27 +45,6,111309,124445,5.46582,26.2458,0.45,9806.1,74,821,16.27 +45,6,111309,124446,5.46595,26.2446,0.44,9806.5,75,820,16.27 +45,6,111309,124447,5.46585,26.2418,0.45,9806.9,74,814,16.27 +45,6,111309,124448,5.46564,26.2370,0.46,9806.3,76,828,16.27 +45,6,111309,124449,5.46552,26.2332,0.45,9806.9,74,830,16.27 +45,6,111309,124450,5.46561,26.2448,0.44,9807.6,73,818,16.27 +45,6,111309,124451,5.46576,26.2390,0.44,9810.9,76,816,16.27 +45,6,111309,124452,5.46586,26.2368,0.45,9810.2,75,821,16.26 +45,6,111309,124453,5.46576,26.2437,0.46,9808.8,77,840,16.27 +45,6,111309,124454,5.46573,26.2448,0.45,9810.1,74,841,16.27 +45,6,111309,124455,5.46570,26.2429,0.44,9809.6,75,834,16.27 +45,6,111309,124456,5.46570,26.2355,0.44,9810.7,76,832,16.27 +45,6,111309,124457,5.46570,26.2362,0.45,9810.2,74,834,16.27 +45,6,111309,124458,5.46564,26.2352,0.44,9809.9,76,854,16.27 +45,6,111309,124459,5.46558,26.2346,0.45,9811.5,75,857,16.27 +45,6,111309,124500,5.46564,26.2352,0.45,9812.4,76,857,16.27 +45,6,111309,124501,5.46564,26.2404,0.44,9811.6,74,857,16.27 +45,6,111309,124502,5.46555,26.2350,0.45,9812.6,76,848,16.27 +45,6,111309,124503,5.46555,26.2352,0.45,9812.9,76,823,16.27 +45,6,111309,124504,5.46564,26.2408,0.45,9813.4,75,819,16.27 +45,6,111309,124505,5.46549,26.2371,0.44,9814.2,75,824,16.27 +45,6,111309,124506,5.46530,26.2365,0.44,9812.1,75,823,16.27 +45,6,111309,124507,5.46509,26.2354,0.45,9812.4,76,827,16.26 +45,6,111309,124508,5.46522,26.2272,0.45,9813.4,74,829,16.26 +45,6,111309,124509,5.46537,26.2263,0.45,9813.4,75,828,16.27 +45,6,111309,124510,5.46555,26.2307,0.45,9814.2,75,822,16.27 +45,6,111309,124511,5.46558,26.2356,0.44,9816.4,74,823,16.26 +45,6,111309,124512,5.46558,26.2354,0.45,9814.1,74,831,16.26 +45,6,111309,124513,5.46546,26.2321,0.46,9813.6,74,835,16.26 +45,6,111309,124514,5.46537,26.2325,0.44,9815.7,73,825,16.27 +45,6,111309,124515,5.46543,26.2400,0.44,9816.8,75,823,16.27 +45,6,111309,124516,5.46537,26.2390,0.45,9817.8,74,827,16.26 +45,6,111309,124517,5.46531,26.2305,0.45,9818.4,72,825,16.26 +45,6,111309,124518,5.46540,26.2269,0.44,9817.9,74,824,16.26 +45,6,111309,124519,5.46527,26.2339,0.45,9818.4,74,822,16.27 +45,6,111309,124520,5.46521,26.2309,0.45,9818.7,74,818,16.27 +45,6,111309,124521,5.46528,26.2371,0.44,9820.0,76,820,16.27 +45,6,111309,124522,5.46525,26.2380,0.44,9818.0,73,828,16.26 +45,6,111309,124523,5.46498,26.2317,0.45,9817.2,74,825,16.27 +45,6,111309,124524,5.46516,26.2325,0.45,9819.0,71,824,16.27 +45,6,111309,124525,5.46512,26.2289,0.45,9819.1,75,818,16.27 +45,6,111309,124526,5.46518,26.2325,0.45,9820.6,75,822,16.26 +45,6,111309,124527,5.46518,26.2339,0.44,9820.1,73,821,16.26 +45,6,111309,124528,5.46516,26.2350,0.45,9821.6,74,817,16.26 +45,6,111309,124529,5.46489,26.2270,0.45,9820.8,70,818,16.27 +45,6,111309,124530,5.46489,26.2267,0.44,9820.3,77,819,16.26 +45,6,111309,124531,5.46486,26.2288,0.44,9821.4,74,821,16.26 +45,6,111309,124532,5.46493,26.2280,0.45,9822.4,75,822,16.26 +45,6,111309,124533,5.46493,26.2281,0.45,9822.1,73,821,16.26 +45,6,111309,124534,5.46490,26.2252,0.44,9822.6,75,820,16.26 +45,6,111309,124535,5.46489,26.2235,0.44,9821.7,75,824,16.26 +45,100,111309,124536,1,1,10,762,60,53,1022760,32,1,0,0,0,0,3,2,16.26 +45,100,111309,125824,1,1,3,11,15,53,1022751,32,1,0,0,0,0,3,2,17.02 +45,3,111309,125824,5.46492,26.2255,0.46,9819.6,75,824,17.02 +45,140,111309,125829,Sample Mode: Insitu - Pumped: 5.46531 S/M > 0.00150 C90-Limit +45,200,111309,125829, 54.6531, 26.1903, 0.44, 2.138 +45,3,111309,125829,5.46531,26.1903,0.44,30000.0,0,0,16.45 +45,100,111309,125836,1,1,4,60,60,53,1022751,32,1,0,0,0,0,3,2,16.42 +45,4,111309,125838,5.45933,26.1689,0.44,8438.6,0,0,16.41 +45,4,111309,125839,5.45918,26.1667,0.44,8737.3,0,0,16.41 +45,4,111309,125840,5.45918,26.1771,0.45,8982.3,0,0,16.41 +45,4,111309,125841,5.45942,26.1723,0.45,9165.1,0,0,16.41 +45,4,111309,125842,5.45942,26.1720,0.44,9303.8,0,0,16.41 +45,4,111309,125843,5.45933,26.1712,0.44,9407.8,0,0,16.41 +45,4,111309,125844,5.45942,26.1761,0.45,9483.1,0,0,16.41 +45,4,111309,125845,5.45942,26.1769,0.45,9538.7,0,0,16.41 +45,4,111309,125846,5.45942,26.1740,0.44,9583.1,0,0,16.41 +45,4,111309,125847,5.45975,26.1758,0.44,9613.7,0,0,16.41 +45,4,111309,125848,5.45988,26.1798,0.45,9637.5,0,0,16.41 +45,4,111309,125849,5.46028,26.1820,0.44,9655.5,0,0,16.41 +45,4,111309,125850,5.46002,26.1794,0.44,9670.6,0,0,16.41 +45,4,111309,125851,5.46017,26.1836,0.45,9683.7,0,0,16.41 +45,4,111309,125852,5.46002,26.1875,0.44,9694.5,0,0,16.41 +45,4,111309,125853,5.45994,26.1833,0.44,9704.1,0,0,16.41 +45,4,111309,125854,5.45960,26.1779,0.44,9712.5,0,0,16.41 +45,4,111309,125855,5.45945,26.1793,0.46,9718.7,0,0,16.41 +45,4,111309,125856,5.45957,26.1779,0.45,9726.5,0,0,16.40 +45,4,111309,125857,5.45969,26.1789,0.43,9730.8,0,0,16.41 +45,4,111309,125858,5.45966,26.1801,0.44,9734.8,0,0,16.41 +45,4,111309,125859,5.45960,26.1758,0.45,9740.6,0,0,16.41 +45,4,111309,125900,5.45942,26.1702,0.45,9744.8,0,0,16.41 +45,4,111309,125901,5.45939,26.1743,0.45,9744.9,0,0,16.41 +45,4,111309,125902,5.45933,26.1782,0.45,9748.3,0,0,16.41 +45,4,111309,125903,5.45933,26.1808,0.44,9751.5,0,0,16.41 +45,4,111309,125904,5.45920,26.1768,0.44,9754.6,0,0,16.41 +45,4,111309,125905,5.45930,26.1755,0.45,9755.0,0,0,16.41 +45,4,111309,125906,5.45927,26.1763,0.45,9755.9,0,0,16.41 +45,4,111309,125907,5.45933,26.1792,0.44,9758.0,0,0,16.41 +45,4,111309,125908,5.45923,26.1736,0.44,9760.7,0,0,16.41 +45,4,111309,125909,5.45926,26.1728,0.45,9761.7,0,0,16.40 +45,4,111309,125910,5.45930,26.1765,0.45,9764.2,0,0,16.41 +45,4,111309,125911,5.45921,26.1785,0.45,9763.6,0,0,16.40 +45,4,111309,125912,5.45912,26.1739,0.44,9765.6,0,0,16.41 +45,4,111309,125913,5.45923,26.1721,0.43,9764.9,0,0,16.41 +45,4,111309,125914,5.45905,26.1735,0.45,9768.2,0,0,16.41 +45,4,111309,125915,5.45899,26.1738,0.45,9769.7,0,0,16.41 +45,4,111309,125916,5.45918,26.1730,0.44,9770.2,0,0,16.41 +45,4,111309,125917,5.45912,26.1752,0.44,9772.3,0,0,16.40 +45,4,111309,125918,5.45911,26.1750,0.45,9773.3,0,0,16.41 +45,4,111309,125919,5.45914,26.1716,0.45,9773.4,0,0,16.41 +45,4,111309,125920,5.45914,26.1737,0.44,9775.9,0,0,16.40 +45,4,111309,125921,5.45903,26.1730,0.44,9776.2,0,0,16.41 +45,4,111309,125922,5.45900,26.1725,0.45,9779.1,0,0,16.40 +45,4,111309,125923,5.45899,26.1754,0.44,9780.5,0,0,16.40 +45,4,111309,125924,5.45908,26.1736,0.44,9781.0,0,0,16.40 +45,4,111309,125925,5.45902,26.1761,0.45,9781.3,0,0,16.40 +45,4,111309,125926,5.45903,26.1733,0.45,9782.0,0,0,16.40 +45,4,111309,125927,5.45903,26.1723,0.44,9784.0,0,0,16.40 +45,100,111309,125928,1,1,5,8,60,56,1022748,32,1,0,0,0,0,3,2,16.41 +45,5,111309,125928,5.45912,26.1759,0.44,9785.3,0,0,16.41 +45,5,111309,125929,5.45899,26.1718,0.45,9784.9,0,0,16.29 +45,4,060610,231358,5.43399,26.5559,0.45,10473.4,0,0,12.05 +45,4,060610,231359,5.43412,26.5576,0.45,10478.2,0,0,12.05 +45,4,060610,231400,5.43420,26.5595,0.46,10481.2,0,0,12.05 +45,4,060610,231401,5.43420,26.5600,0.46,10484.4,0,0,12.05 +45,4,060610,231402,5.43421,26.5590,0.45,10485.6,0,0,12.05 +45,4,060610,231403,5.43423,26.5602,0.45,10489.9,0,0,12.05 +45,4,060610,231404,5.43436,26.5628,0.46,10493.3,0,0,12.05 +45,4,060610,231405,5.43436,26.5638,0.46,10498.6,0,0,12.05 +45,4,060610,231406,5.43433,26.5641,0.45,10501.3,0,0,12.05 +45,4,060610,231407,5.43430,26.5628,0.45,10502.3,0,0,12.05 +45,4,060610,231408,5.43426,26.5632,0.46,10504.9,0,0,12.05 +45,4,060610,231409,5.43430,26.5633,0.46,10506.6,0,0,12.05 +45,4,060610,231410,5.43429,26.5622,0.46,10509.3,0,0,12.05 +45,4,060610,231411,5.43429,26.5646,0.46,10509.6,0,0,12.05 +45,4,060610,231412,5.43436,26.5687,0.45,10512.6,0,0,12.05 +45,4,060610,231413,5.43433,26.5698,0.45,10514.0,0,0,12.05 +45,4,060610,231414,5.43421,26.5642,0.46,10517.2,0,0,12.05 +45,4,060610,231415,5.43411,26.5604,0.45,10517.1,0,0,12.05 +45,4,060610,231416,5.43396,26.5584,0.45,10518.1,0,0,12.05 +45,4,060610,231417,5.43382,26.5549,0.46,10517.6,0,0,12.05 +45,4,060610,231418,5.43390,26.5536,0.46,10518.1,0,0,12.05 +45,4,060610,231419,5.43400,26.5563,0.45,10520.2,0,0,12.05 +45,4,060610,231420,5.43414,26.5631,0.46,10522.5,0,0,12.05 +45,4,060610,231421,5.43420,26.5624,0.46,10522.6,0,0,12.05 +45,4,060610,231422,5.43421,26.5613,0.46,10522.8,0,0,12.05 +45,4,060610,231423,5.43423,26.5595,0.46,10525.7,0,0,12.05 +45,4,060610,231424,5.43430,26.5613,0.46,10527.7,0,0,12.05 +45,4,060610,231425,5.43426,26.5612,0.46,10529.5,0,0,12.05 +45,4,060610,231426,5.43429,26.5585,0.46,10528.8,0,0,12.05 +45,4,060610,231427,5.43421,26.5573,0.46,10530.2,0,0,12.05 +45,4,060610,231428,5.43414,26.5582,0.46,10529.2,0,0,12.05 +45,100,060610,231429,1,1,5,8,60,153681,869132,29618,1,0,0,0,0,3,2,12.05 +45,5,060610,231429,5.43418,26.5608,0.46,10530.0,0,0,12.05 +45,5,060610,231430,5.43429,26.5676,0.45,10534.0,0,0,11.92 +45,5,060610,231431,5.43429,26.5653,0.46,10534.0,0,0,11.92 +45,5,060610,231432,5.43424,26.5593,0.46,10534.4,0,0,11.92 +45,210,060610,231433,06/06/10 16:25:51 695 4113 700 4119 548 +45,5,060610,231433,5.43417,26.5582,0.46,10536.5,4113,4119,11.89 +45,5,060610,231434,5.43409,26.5570,0.46,10535.2,4114,4119,11.89 +45,5,060610,231435,5.43424,26.5562,0.45,10536.1,4115,4119,11.94 +45,5,060610,231436,5.43439,26.5613,0.45,10536.7,4115,4119,11.89 +45,100,060610,231437,1,1,6,60,60,153682,869132,29618,1,0,0,0,0,3,2,11.89 +45,6,060610,231437,5.43436,26.5659,0.46,10537.1,4115,4119,11.89 +45,6,060610,231438,5.43417,26.5623,0.46,10537.3,4115,4119,11.94 +45,6,060610,231439,5.43405,26.5558,0.46,10536.1,4115,4119,11.95 +45,6,060610,231440,5.43406,26.5579,0.46,10539.0,4115,4119,11.95 +45,6,060610,231441,5.43417,26.5619,0.45,10539.6,4115,4119,11.95 +45,6,060610,231442,5.43433,26.5628,0.46,10540.2,4116,4119,11.95 +45,6,060610,231443,5.43439,26.5648,0.46,10539.1,4115,4119,11.95 +45,6,060610,231444,5.43439,26.5641,0.46,10540.3,4115,4119,11.94 +45,6,060610,231445,5.43439,26.5636,0.45,10542.3,4115,4119,11.95 +45,6,060610,231446,5.43436,26.5648,0.45,10542.1,4116,4119,11.94 +45,6,060610,231447,5.43427,26.5630,0.45,10542.5,4115,4119,11.95 +45,6,060610,231448,5.43423,26.5626,0.46,10542.9,4115,4119,11.95 +45,6,060610,231449,5.43420,26.5613,0.46,10544.2,4115,4119,11.95 +45,6,060610,231450,5.43424,26.5623,0.46,10544.5,4116,4119,11.94 +45,6,060610,231451,5.43426,26.5623,0.45,10544.0,4116,4119,11.94 +45,6,060610,231452,5.43424,26.5615,0.46,10545.3,4115,4119,11.94 +45,6,060610,231453,5.43411,26.5587,0.46,10542.3,4115,4119,11.95 +45,6,060610,231454,5.43408,26.5568,0.45,10545.9,4116,4119,11.95 +45,6,060610,231455,5.43403,26.5572,0.45,10545.0,4116,4119,11.94 +45,6,060610,231456,5.43411,26.5573,0.46,10546.9,4116,4119,11.95 +45,6,060610,231457,5.43421,26.5605,0.46,10547.2,4115,4119,11.94 +45,6,060610,231458,5.43433,26.5638,0.46,10546.5,4116,4119,11.94 +45,6,060610,231459,5.43454,26.5671,0.46,10547.9,4116,4119,11.95 +45,6,060610,231500,5.43460,26.5677,0.45,10545.8,4116,4119,11.94 +45,6,060610,231501,5.43460,26.5654,0.45,10548.3,4116,4119,11.95 +45,6,060610,231502,5.43460,26.5627,0.46,10547.1,4116,4118,11.95 +45,6,060610,231503,5.43454,26.5595,0.46,10548.0,4115,4119,11.95 +45,6,060610,231504,5.43451,26.5622,0.46,10546.4,4116,4119,11.95 +45,6,060610,231505,5.43469,26.5660,0.45,10546.6,4115,4119,11.95 +45,6,060610,231506,5.43448,26.5578,0.45,10548.3,4116,4119,11.95 +45,6,060610,231507,5.43466,26.5678,0.46,10548.4,4116,4119,11.94 +45,6,060610,231508,5.43460,26.5649,0.46,10550.0,4115,4119,11.95 +45,6,060610,231509,5.43451,26.5639,0.46,10550.3,4115,4118,11.95 +45,6,060610,231510,5.43445,26.5554,0.45,10551.9,4115,4119,11.93 +45,6,060610,231511,5.43466,26.5617,0.45,10550.1,4115,4119,11.93 +45,6,060610,231512,5.43487,26.5710,0.46,10551.9,4115,4119,11.94 +45,6,060610,231513,5.43478,26.5738,0.46,10552.7,4116,4119,11.95 +45,6,060610,231514,5.43457,26.5752,0.45,10551.3,4116,4119,11.94 +45,6,060610,231515,5.43445,26.5740,0.45,10549.7,4116,4119,11.95 +45,6,060610,231516,5.43442,26.5683,0.46,10551.3,4115,4119,11.93 +45,6,060610,231517,5.43436,26.5582,0.46,10552.1,4116,4119,11.95 +45,6,060610,231518,5.43433,26.5556,0.46,10553.2,4115,4119,11.94 +45,6,060610,231519,5.43436,26.5623,0.46,10552.9,4115,4119,11.93 +45,6,060610,231520,5.43445,26.5670,0.47,10556.3,4115,4119,11.94 +45,6,060610,231521,5.43463,26.5733,0.46,10556.0,4115,4119,11.93 +45,6,060610,231522,5.43463,26.5747,0.46,10554.8,4116,4119,11.94 +45,6,060610,231523,5.43439,26.5686,0.46,10555.3,4115,4119,11.95 +45,6,060610,231524,5.43423,26.5629,0.46,10555.2,4115,4119,11.94 +45,6,060610,231525,5.43427,26.5613,0.46,10554.7,4115,4119,11.93 +45,6,060610,231526,5.43420,26.5654,0.46,10554.3,4115,4119,11.94 +45,6,060610,231527,5.43423,26.5675,0.47,10556.0,4116,4119,11.94 +45,6,060610,231528,5.43454,26.5644,0.47,10556.9,4115,4119,11.93 +45,6,060610,231529,5.43442,26.5643,0.47,10556.7,4089,4119,11.94 +45,6,060610,231530,5.43484,26.5691,0.46,10556.4,4080,4119,11.93 +45,6,060610,231531,5.43478,26.5701,0.47,10555.6,4115,4119,11.93 +45,6,060610,231532,5.43478,26.5700,0.48,10556.4,4119,4119,11.93 +45,6,060610,231533,5.43481,26.5721,0.47,10557.5,4119,4119,11.93 +45,6,060610,231534,5.43466,26.5694,0.47,10555.8,4119,4119,11.93 +45,6,060610,231535,5.43472,26.5692,0.48,10557.9,4119,4119,11.93 +45,6,060610,231536,5.43472,26.5697,0.48,10558.9,4119,4119,11.94 +45,100,060610,231537,1,1,10,756,60,153686,869128,29618,1,0,0,0,0,3,2,11.94 +45,100,060610,232824,1,1,3,11,15,153686,869119,29618,1,0,0,0,0,3,2,12.56 +45,3,060610,232824,5.43460,26.5678,0.47,10557.7,4119,4119,12.56 +45,140,060610,232830,Sample Mode: Insitu - Pumped: 5.43381 S/M > 0.00150 C90-Limit +45,200,060610,232830, 54.3381, 26.5997, 0.49, 3.557 +45,3,060610,232830,5.43381,26.5997,0.49,30000.0,0,0,12.10 +45,100,060610,232837,1,1,4,60,60,153686,869119,29618,1,0,0,0,0,3,2,12.07 +45,4,060610,232838,5.44051,26.6224,0.48,9818.3,0,0,12.06 +45,4,060610,232839,5.44051,26.6228,0.48,9976.1,0,0,12.06 +45,4,060610,232840,5.44057,26.6225,0.49,10102.4,0,0,12.06 +45,4,060610,232841,5.44057,26.6223,0.50,10200.2,0,0,12.06 +45,4,060610,232842,5.44066,26.6224,0.48,10275.1,0,0,12.06 +45,4,060610,232843,5.44069,26.6227,0.47,10330.8,0,0,12.06 +45,4,060610,232844,5.44063,26.6229,0.49,10374.8,0,0,12.06 +45,4,060610,232845,5.44075,26.6233,0.50,10407.6,0,0,12.05 +45,4,060610,232846,5.44076,26.6232,0.49,10432.2,0,0,12.06 +45,4,060610,232847,5.44079,26.6241,0.48,10452.6,0,0,12.06 +45,4,060610,232848,5.44090,26.6242,0.48,10468.0,0,0,12.06 +45,4,060610,232849,5.44091,26.6245,0.48,10479.9,0,0,12.05 +45,4,060610,232850,5.44088,26.6247,0.49,10488.6,0,0,12.06 +45,4,060610,232851,5.44087,26.6240,0.50,10495.8,0,0,12.05 +45,4,060610,232852,5.44088,26.6249,0.48,10503.1,0,0,12.05 +45,4,060610,232853,5.44097,26.6248,0.48,10508.7,0,0,12.05 +45,4,060610,232854,5.44096,26.6250,0.49,10514.1,0,0,12.06 +45,4,060610,232855,5.44103,26.6258,0.48,10518.4,0,0,12.05 +45,4,060610,232856,5.44103,26.6257,0.48,10524.2,0,0,12.06 +45,4,060610,232857,5.44108,26.6262,0.49,10526.1,0,0,12.05 +45,4,060610,232858,5.44112,26.6266,0.49,10527.6,0,0,12.05 +45,4,060610,232859,5.44114,26.6263,0.48,10529.7,0,0,12.05 +45,4,060610,232900,5.44114,26.6263,0.48,10534.0,0,0,12.05 +45,4,060610,232901,5.44115,26.6265,0.49,10535.1,0,0,12.05 +45,4,060610,232902,5.44108,26.6258,0.48,10538.6,0,0,12.05 +45,4,060610,232903,5.44111,26.6264,0.49,10537.9,0,0,12.05 +45,4,060610,232904,5.44112,26.6268,0.49,10540.6,0,0,12.05 +45,4,060610,232905,5.44117,26.6267,0.48,10542.8,0,0,12.05 +45,4,060610,232906,5.44123,26.6272,0.48,10542.7,0,0,12.05 +45,4,060610,232907,5.44118,26.6269,0.48,10545.1,0,0,12.05 +45,4,060610,232908,5.44117,26.6266,0.49,10546.3,0,0,12.05 +45,4,060610,232909,5.44126,26.6275,0.49,10546.4,0,0,12.05 +45,4,060610,232910,5.44127,26.6282,0.49,10548.7,0,0,12.05 +45,4,060610,232911,5.44132,26.6273,0.49,10549.7,0,0,12.05 +45,4,060610,232912,5.44123,26.6282,0.49,10551.1,0,0,12.05 +45,4,060610,232913,5.44143,26.6285,0.48,10551.7,0,0,12.05 +45,4,060610,232914,5.44138,26.6291,0.49,10552.0,0,0,12.05 +45,4,060610,232915,5.44137,26.6288,0.49,10553.0,0,0,12.05 +45,4,060610,232916,5.44152,26.6292,0.49,10554.2,0,0,12.05 +45,4,060610,232917,5.44147,26.6294,0.49,10554.5,0,0,12.05 +45,4,060610,232918,5.44158,26.6290,0.49,10556.0,0,0,12.05 +45,4,060610,232919,5.44149,26.6297,0.48,10553.2,0,0,12.05 +45,4,060610,232920,5.44153,26.6299,0.48,10556.7,0,0,12.05 +45,4,060610,232921,5.44152,26.6292,0.49,10558.4,0,0,12.05 +45,4,060610,232922,5.44155,26.6297,0.49,10558.9,0,0,12.05 +45,4,060610,232923,5.44153,26.6295,0.49,10558.1,0,0,12.05 +45,4,060610,232924,5.44161,26.6299,0.49,10559.4,0,0,12.05 +45,4,060610,232925,5.44170,26.6298,0.49,10558.7,0,0,12.05 +45,4,060610,232926,5.44162,26.6306,0.48,10559.2,0,0,12.05 +45,4,060610,232927,5.44170,26.6313,0.49,10560.7,0,0,12.05 +45,4,060610,232928,5.44170,26.6309,0.50,10561.7,0,0,12.05 +45,100,060610,232929,1,1,5,8,60,153689,869116,29618,1,0,0,0,0,3,2,12.05 +45,5,060610,232929,5.44171,26.6303,0.49,10562.3,0,0,12.05 +45,5,060610,232930,5.44170,26.6316,0.48,10564.0,0,0,11.92 +45,5,060610,232931,5.44173,26.6309,0.49,10567.5,0,0,11.92 +45,5,060610,232932,5.44168,26.6317,0.48,10563.4,0,0,11.91 +45,210,060610,232933,06/06/10 16:40:51 695 4106 700 4119 547 +45,5,060610,232933,5.44173,26.6314,0.48,10564.7,4106,4119,11.89 +45,5,060610,232934,5.44179,26.6316,0.49,10566.1,4106,4107,11.89 +45,5,060610,232935,5.44180,26.6325,0.49,10565.4,4107,4119,11.94 +45,5,060610,232936,5.44191,26.6327,0.48,10566.8,4105,4119,11.90 +45,100,060610,232937,1,1,6,60,60,153690,869116,29618,1,0,0,0,0,3,2,11.89 +45,6,060610,232937,5.44195,26.6334,0.48,10566.9,4108,4119,11.89 +45,6,060610,232938,5.44195,26.6330,0.49,10567.3,4105,4119,11.95 +45,6,060610,232939,5.44198,26.6332,0.49,10566.8,4107,4119,11.95 +45,6,060610,232940,5.44191,26.6331,0.49,10566.9,4106,4118,11.95 +45,6,060610,232941,5.44192,26.6334,0.49,10566.7,4108,4119,11.95 +45,6,060610,232942,5.44201,26.6328,0.48,10569.1,4107,4119,11.95 +45,6,060610,232943,5.44201,26.6332,0.48,10570.3,4107,4119,11.95 +45,6,060610,232944,5.44204,26.6337,0.49,10569.7,4108,4119,11.95 +45,6,060610,232945,5.44201,26.6329,0.49,10570.9,4107,4119,11.94 +45,6,060610,232946,5.44204,26.6338,0.49,10570.9,4108,4119,11.94 +45,6,060610,232947,5.44201,26.6340,0.49,10569.2,4108,4119,11.95 +45,6,060610,232948,5.44204,26.6337,0.48,10571.5,4108,4119,11.95 +45,6,060610,232949,5.44213,26.6343,0.49,10571.9,4108,4119,11.94 +45,6,060610,232950,5.44218,26.6349,0.48,10569.9,4106,4119,11.95 +45,6,060610,232951,5.44216,26.6353,0.48,10571.1,4104,4118,11.94 +45,6,060610,232952,5.44216,26.6358,0.50,10571.3,4107,4119,11.94 +45,6,060610,232953,5.44221,26.6353,0.50,10570.9,4107,4119,11.94 +45,6,060610,232954,5.44222,26.6354,0.48,10571.9,4108,4119,11.94 +45,6,060610,232955,5.44221,26.6358,0.48,10571.5,4106,4118,11.95 +45,6,060610,232956,5.44221,26.6356,0.48,10573.9,4107,4119,11.95 +45,6,060610,232957,5.44225,26.6356,0.50,10573.7,4106,4119,11.95 +45,6,060610,232958,5.44225,26.6363,0.49,10573.2,4105,4119,11.94 +45,6,060610,232959,5.44225,26.6360,0.49,10569.8,4107,4119,11.95 +45,6,060610,233000,5.44230,26.6358,0.48,10572.0,4108,4119,11.93 +45,6,060610,233001,5.44231,26.6364,0.48,10571.9,4108,4119,11.94 +45,6,060610,233002,5.44230,26.6363,0.48,10570.8,4109,4119,11.95 +45,6,060610,233003,5.44230,26.6357,0.50,10572.2,4107,4119,11.94 +45,6,060610,233004,5.44237,26.6371,0.50,10574.0,4107,4119,11.94 +45,6,060610,233005,5.44236,26.6367,0.49,10573.4,4107,4118,11.95 +45,6,060610,233006,5.44236,26.6360,0.48,10573.3,4107,4119,11.95 +45,6,060610,233007,5.44237,26.6371,0.49,10575.0,4108,4119,11.94 +45,6,060610,233008,5.44242,26.6367,0.49,10573.7,4107,4119,11.95 +45,6,060610,233009,5.44236,26.6369,0.49,10573.8,4107,4118,11.95 +45,6,060610,233010,5.44240,26.6373,0.48,10575.2,4107,4119,11.95 +45,6,060610,233011,5.44246,26.6375,0.48,10574.2,4108,4119,11.94 +45,6,060610,233012,5.44251,26.6376,0.50,10574.0,4107,4119,11.95 +45,6,060610,233013,5.44256,26.6381,0.49,10575.9,4107,4119,11.93 +45,6,060610,233014,5.44254,26.6380,0.48,10572.8,4107,4119,11.94 +45,6,060610,233015,5.44254,26.6382,0.49,10574.6,4107,4119,11.94 +45,6,060610,233016,5.44256,26.6381,0.49,10575.5,4107,4119,11.93 +45,6,060610,233017,5.44257,26.6380,0.48,10575.1,4108,4119,11.94 +45,6,060610,233018,5.44263,26.6389,0.49,10575.2,4107,4119,11.95 +45,6,060610,233019,5.44262,26.6387,0.49,10575.7,4108,4119,11.93 +45,6,060610,233020,5.44263,26.6389,0.49,10577.0,4108,4119,11.93 +45,6,060610,233021,5.44263,26.6387,0.49,10576.9,4108,4119,11.93 +45,6,060610,233022,5.44262,26.6391,0.49,10575.8,4107,4119,11.93 +45,6,060610,233023,5.44263,26.6389,0.49,10576.6,4107,4119,11.93 +45,6,060610,233024,5.44263,26.6384,0.49,10575.7,4108,4119,11.95 +45,6,060610,233025,5.44262,26.6382,0.49,10575.6,4107,4119,11.93 +45,6,060610,233026,5.44269,26.6389,0.49,10575.1,4108,4119,11.94 +45,6,060610,233027,5.44269,26.6391,0.48,10576.2,4107,4118,11.94 +45,6,060610,233028,5.44274,26.6398,0.48,10577.4,4107,4119,11.93 +45,6,060610,233029,5.44274,26.6398,0.49,10578.4,4107,4119,11.93 +45,6,060610,233030,5.44278,26.6407,0.49,10578.1,4108,4119,11.93 +45,6,060610,233031,5.44280,26.6403,0.49,10579.5,4107,4119,11.94 +45,6,060610,233032,5.44280,26.6400,0.49,10580.6,4108,4119,11.94 +45,6,060610,233033,5.44278,26.6407,0.49,10579.9,4108,4119,11.94 +45,6,060610,233034,5.44280,26.6398,0.49,10578.9,4107,4119,11.94 +45,6,060610,233035,5.44280,26.6404,0.49,10580.3,4108,4119,11.94 +45,6,060610,233036,5.44284,26.6414,0.49,10580.0,4107,4119,11.93 +45,100,060610,233037,1,1,10,758,60,153694,869112,29618,1,0,0,0,0,3,2,11.94 +45,100,060610,234324,1,1,3,11,15,153694,869119,29618,1,0,0,0,0,3,2,12.56 +45,3,060610,234324,5.44283,26.6408,0.49,10579.3,4107,4119,12.56 +45,140,060610,234330,Sample Mode: Insitu - Pumped: 5.44750 S/M > 0.00150 C90-Limit +45,200,060610,234330, 54.4750, 26.8067, 0.49, 3.305 +45,3,060610,234330,5.44750,26.8067,0.49,30000.0,0,0,12.11 +45,100,060610,234337,1,1,4,60,60,153694,869119,29618,1,0,0,0,0,3,2,12.07 +45,4,060610,234338,5.46179,26.8196,0.48,9656.7,0,0,12.06 +45,4,060610,234339,5.46192,26.8203,0.47,9856.4,0,0,12.06 +45,4,060610,234340,5.46196,26.8211,0.48,10016.8,0,0,12.06 +45,4,060610,234341,5.46201,26.8209,0.49,10143.3,0,0,12.06 +45,4,060610,234342,5.46210,26.8207,0.49,10238.5,0,0,12.06 +45,4,060610,234343,5.46216,26.8209,0.49,10311.2,0,0,12.06 +45,4,060610,234344,5.46220,26.8217,0.48,10367.0,0,0,12.06 +45,4,060610,234345,5.46220,26.8218,0.48,10407.0,0,0,12.06 +45,4,060610,234346,5.46232,26.8229,0.49,10438.9,0,0,12.06 +45,4,060610,234347,5.46237,26.8233,0.48,10463.6,0,0,12.06 +45,4,060610,234348,5.46241,26.8228,0.48,10482.1,0,0,12.06 +45,4,060610,234349,5.46244,26.8236,0.50,10496.7,0,0,12.06 +45,4,060610,234350,5.46247,26.8239,0.49,10508.0,0,0,12.06 +45,4,060610,234351,5.46253,26.8242,0.48,10518.8,0,0,12.06 +45,4,060610,234352,5.46253,26.8236,0.48,10525.7,0,0,12.06 +45,4,060610,234353,5.46259,26.8246,0.48,10532.2,0,0,12.05 +45,4,060610,234354,5.46271,26.8250,0.49,10536.8,0,0,12.05 +45,4,060610,234355,5.46271,26.8250,0.48,10542.4,0,0,12.05 +45,4,060610,234356,5.46274,26.8259,0.48,10548.4,0,0,12.05 +45,4,060610,234357,5.46274,26.8254,0.49,10551.2,0,0,12.05 +45,4,060610,234358,5.46274,26.8258,0.49,10555.3,0,0,12.05 +45,4,060610,234359,5.46280,26.8266,0.48,10557.7,0,0,12.05 +45,4,060610,234400,5.46287,26.8270,0.48,10557.3,0,0,12.05 +45,4,060610,234401,5.46295,26.8268,0.48,10561.3,0,0,12.05 +45,4,060610,234402,5.46292,26.8266,0.48,10562.0,0,0,12.05 +45,4,060610,234403,5.46295,26.8279,0.48,10565.8,0,0,12.05 +45,4,060610,234404,5.46299,26.8274,0.49,10565.9,0,0,12.05 +45,4,060610,234405,5.46302,26.8275,0.49,10568.3,0,0,12.05 +45,4,060610,234406,5.46302,26.8284,0.48,10571.2,0,0,12.05 +45,4,060610,234407,5.46310,26.8286,0.47,10570.6,0,0,12.05 +45,4,060610,234408,5.46313,26.8289,0.49,10572.3,0,0,12.05 +45,4,060610,234409,5.46322,26.8294,0.49,10576.2,0,0,12.05 +45,4,060610,234410,5.46319,26.8298,0.49,10575.0,0,0,12.05 +45,4,060610,234411,5.46333,26.8301,0.48,10577.4,0,0,12.05 +45,4,060610,234412,5.46333,26.8304,0.49,10579.5,0,0,12.05 +45,4,060610,234413,5.46337,26.8308,0.49,10579.3,0,0,12.05 +45,4,060610,234414,5.46343,26.8311,0.47,10580.8,0,0,12.05 +45,4,060610,234415,5.46343,26.8313,0.48,10581.6,0,0,12.05 +45,4,060610,234416,5.46346,26.8313,0.49,10583.7,0,0,12.06 +45,4,060610,234417,5.46351,26.8318,0.49,10585.7,0,0,12.05 +45,4,060610,234418,5.46360,26.8326,0.49,10584.7,0,0,12.05 +45,4,060610,234419,5.46354,26.8335,0.49,10585.9,0,0,12.05 +45,4,060610,234420,5.46361,26.8325,0.48,10586.3,0,0,12.05 +45,4,060610,234421,5.46361,26.8334,0.48,10586.8,0,0,12.05 +45,4,060610,234422,5.46358,26.8337,0.49,10586.7,0,0,12.05 +45,4,060610,234423,5.46363,26.8335,0.49,10589.0,0,0,12.05 +45,4,060610,234424,5.46366,26.8343,0.49,10589.2,0,0,12.05 +45,4,060610,234425,5.46372,26.8340,0.48,10590.0,0,0,12.05 +45,4,060610,234426,5.46370,26.8343,0.48,10591.4,0,0,12.05 +45,4,060610,234427,5.46376,26.8344,0.49,10592.1,0,0,12.05 +45,4,060610,234428,5.46382,26.8345,0.48,10590.7,0,0,12.05 +45,100,060610,234429,1,1,5,8,60,153697,869116,29618,1,0,0,0,0,3,2,12.05 +45,5,060610,234429,5.46378,26.8345,0.48,10590.5,0,0,12.05 +45,5,060610,234430,5.46385,26.8348,0.49,10591.9,0,0,11.92 +45,5,060610,234431,5.46388,26.8353,0.49,10594.0,0,0,11.91 +45,5,060610,234432,5.46400,26.8364,0.49,10595.0,0,0,11.91 +45,210,060610,234433,06/06/10 16:55:51 695 3865 700 4107 547 +45,5,060610,234433,5.46400,26.8372,0.48,10595.1,3865,4107,11.88 +45,5,060610,234434,5.46400,26.8368,0.48,10595.1,3906,4119,11.89 +45,5,060610,234435,5.46400,26.8370,0.49,10593.8,4101,4118,11.92 +45,5,060610,234436,5.46400,26.8365,0.49,10593.3,4105,4119,11.89 +45,100,060610,234437,1,1,6,60,60,153698,869116,29618,1,0,0,0,0,3,2,11.89 +45,6,060610,234437,5.46412,26.8374,0.48,10596.4,4100,4119,11.89 +45,6,060610,234438,5.46415,26.8379,0.49,10596.8,4038,4119,11.96 +45,6,060610,234439,5.46418,26.8379,0.49,10597.3,4102,4119,11.95 +45,6,060610,234440,5.46421,26.8387,0.48,10597.6,4103,4119,11.95 +45,6,060610,234441,5.46424,26.8386,0.48,10598.6,4108,4119,11.96 +45,6,060610,234442,5.46424,26.8393,0.49,10598.9,4073,4119,11.95 +45,6,060610,234443,5.46428,26.8388,0.50,10599.1,4081,4119,11.95 +45,6,060610,234444,5.46434,26.8398,0.49,10597.6,4053,4119,11.95 +45,6,060610,234445,5.46439,26.8400,0.48,10597.7,3632,4119,11.94 +45,6,060610,234446,5.46439,26.8403,0.48,10597.6,3867,4119,11.95 +45,6,060610,234447,5.46442,26.8406,0.48,10597.5,4084,4119,11.95 +45,6,060610,234448,5.46443,26.8406,0.49,10597.1,4106,4119,11.94 +45,6,060610,234449,5.46446,26.8409,0.49,10597.8,4106,4118,11.95 +45,6,060610,234450,5.46449,26.8409,0.49,10596.6,4106,4119,11.95 +45,6,060610,234451,5.46454,26.8418,0.49,10597.0,3758,4119,11.94 +45,6,060610,234452,5.46454,26.8419,0.49,10599.4,3881,4119,11.95 +45,6,060610,234453,5.46457,26.8415,0.47,10600.6,3743,4119,11.94 +45,6,060610,234454,5.46457,26.8419,0.47,10600.2,4107,4119,11.94 +45,6,060610,234455,5.46461,26.8415,0.49,10599.2,4103,4119,11.94 +45,6,060610,234456,5.46467,26.8421,0.49,10601.8,4107,4119,11.95 +45,6,060610,234457,5.46467,26.8426,0.48,10600.7,4108,4119,11.94 +45,6,060610,234458,5.46469,26.8425,0.48,10600.1,4066,4119,11.94 +45,6,060610,234459,5.46475,26.8430,0.48,10600.8,3945,4118,11.95 +45,6,060610,234500,5.46478,26.8430,0.48,10601.8,4092,4119,11.95 +45,6,060610,234501,5.46483,26.8444,0.49,10602.2,4103,4119,11.95 +45,6,060610,234502,5.46489,26.8443,0.48,10602.0,4107,4119,11.93 +45,6,060610,234503,5.46489,26.8444,0.48,10603.4,4106,4119,11.95 +45,6,060610,234504,5.46490,26.8438,0.49,10603.9,4105,4119,11.95 +45,6,060610,234505,5.46493,26.8449,0.49,10604.6,3979,4119,11.95 +45,6,060610,234506,5.46499,26.8454,0.48,10602.3,4094,4119,11.95 +45,6,060610,234507,5.46499,26.8455,0.48,10603.3,4042,4119,11.95 +45,6,060610,234508,5.46498,26.8451,0.48,10604.5,4105,4119,11.95 +45,6,060610,234509,5.46498,26.8454,0.49,10606.2,4104,4119,11.95 +45,6,060610,234510,5.46501,26.8457,0.49,10606.2,4106,4119,11.94 +45,6,060610,234511,5.46508,26.8463,0.49,10607.7,4104,4119,11.94 +45,6,060610,234512,5.46511,26.8460,0.48,10607.1,4104,4119,11.94 +45,6,060610,234513,5.46517,26.8461,0.49,10606.3,4090,4118,11.95 +45,6,060610,234514,5.46517,26.8469,0.50,10606.4,4038,4119,11.94 +45,6,060610,234515,5.46523,26.8475,0.48,10606.8,4016,4119,11.94 +45,6,060610,234516,5.46526,26.8481,0.48,10606.2,4105,4119,11.93 +45,6,060610,234517,5.46529,26.8481,0.49,10605.1,4105,4119,11.94 +45,6,060610,234518,5.46532,26.8484,0.50,10606.8,4103,4119,11.94 +45,6,060610,234519,5.46526,26.8476,0.48,10608.5,4094,4119,11.94 +45,6,060610,234520,5.46535,26.8489,0.48,10606.2,4045,4119,11.94 +45,6,060610,234521,5.46538,26.8490,0.49,10607.3,3993,4119,11.94 +45,6,060610,234522,5.46541,26.8492,0.49,10606.9,3932,4119,11.94 +45,6,060610,234523,5.46544,26.8495,0.48,10607.2,3886,4119,11.93 +45,6,060610,234524,5.46547,26.8496,0.49,10608.2,4108,4119,11.94 +45,6,060610,234525,5.46547,26.8501,0.49,10608.7,4107,4119,11.94 +45,6,060610,234526,5.46550,26.8502,0.49,10609.6,3937,4119,11.93 +45,6,060610,234527,5.46553,26.8504,0.49,10609.2,3905,4119,11.93 +45,6,060610,234528,5.46556,26.8500,0.48,10608.6,3984,4119,11.94 +45,6,060610,234529,5.46559,26.8504,0.48,10609.3,3863,4119,11.93 +45,6,060610,234530,5.46559,26.8507,0.48,10610.2,4097,4119,11.94 +45,6,060610,234531,5.46563,26.8511,0.50,10610.9,4085,4119,11.94 +45,6,060610,234532,5.46565,26.8516,0.49,10610.8,4108,4119,11.94 +45,6,060610,234533,5.46568,26.8514,0.48,10609.5,4094,4119,11.93 +45,6,060610,234534,5.46577,26.8521,0.49,10609.7,3500,4119,11.94 +45,6,060610,234535,5.46578,26.8526,0.49,10611.0,3967,4119,11.94 +45,6,060610,234536,5.46584,26.8530,0.48,10610.9,4015,4119,11.93 +45,100,060610,234537,1,1,10,759,60,153702,869112,29618,1,0,0,0,0,3,2,11.93 +45,100,060610,235824,1,1,3,11,15,153702,869103,29618,1,0,0,0,0,3,2,12.56 +45,3,060610,235824,5.46584,26.8531,0.48,10610.5,4015,4119,12.56 +45,140,060610,235830,Sample Mode: Insitu - Pumped: 5.47149 S/M > 0.00150 C90-Limit +45,200,060610,235830, 54.7149, 26.9758, 0.49, 3.515 +45,3,060610,235830,5.47149,26.9758,0.49,30000.0,0,0,12.11 +45,100,060610,235837,1,1,4,60,60,153702,869103,29618,1,0,0,0,0,3,2,12.07 +45,4,060610,235838,5.48826,27.0628,0.48,9889.4,0,0,12.06 +45,4,060610,235839,5.48837,27.0633,0.49,10045.5,0,0,12.06 +45,4,060610,235840,5.48848,27.0632,0.48,10168.6,0,0,12.06 +45,4,060610,235841,5.48851,27.0635,0.48,10263.9,0,0,12.06 +45,4,060610,235842,5.48863,27.0638,0.48,10335.7,0,0,12.06 +45,4,060610,235843,5.48869,27.0643,0.48,10391.5,0,0,12.06 +45,4,060610,235844,5.48876,27.0650,0.47,10433.1,0,0,12.06 +45,4,060610,235845,5.48882,27.0659,0.48,10466.5,0,0,12.06 +45,4,060610,235846,5.48882,27.0655,0.49,10489.4,0,0,12.06 +45,4,060610,235847,5.48888,27.0653,0.49,10508.8,0,0,12.06 +45,4,060610,235848,5.48885,27.0654,0.48,10523.4,0,0,12.06 +45,4,060610,235849,5.48898,27.0660,0.48,10536.3,0,0,12.05 +45,4,060610,235850,5.48901,27.0661,0.48,10545.3,0,0,12.05 +45,4,060610,235851,5.48904,27.0667,0.48,10553.7,0,0,12.05 +45,4,060610,235852,5.48907,27.0663,0.48,10560.8,0,0,12.06 +45,4,060610,235853,5.48910,27.0675,0.48,10567.8,0,0,12.06 +45,4,060610,235854,5.48916,27.0671,0.49,10571.8,0,0,12.05 +45,4,060610,235855,5.48922,27.0677,0.49,10576.0,0,0,12.05 +45,4,060610,235856,5.48922,27.0674,0.48,10577.6,0,0,12.05 +45,4,060610,235857,5.48922,27.0677,0.47,10581.3,0,0,12.05 +45,4,060610,235858,5.48925,27.0679,0.48,10582.2,0,0,12.05 +45,4,060610,235859,5.48934,27.0685,0.49,10587.1,0,0,12.06 +45,4,060610,235900,5.48937,27.0683,0.49,10587.7,0,0,12.05 +45,4,060610,235901,5.48943,27.0685,0.48,10592.1,0,0,12.05 +45,4,060610,235902,5.48950,27.0695,0.48,10591.1,0,0,12.05 +45,4,060610,235903,5.48950,27.0689,0.48,10593.8,0,0,12.05 +45,4,060610,235904,5.48956,27.0703,0.48,10595.5,0,0,12.05 +45,4,060610,235905,5.48956,27.0710,0.48,10599.6,0,0,12.05 +45,4,060610,235906,5.48959,27.0708,0.49,10600.1,0,0,12.05 +45,4,060610,235907,5.48962,27.0704,0.49,10600.6,0,0,12.05 +45,4,060610,235908,5.48962,27.0706,0.49,10602.8,0,0,12.05 +45,4,060610,235909,5.48965,27.0709,0.49,10602.0,0,0,12.05 +45,4,060610,235910,5.48967,27.0711,0.48,10605.3,0,0,12.05 +45,4,060610,235911,5.48979,27.0712,0.48,10607.3,0,0,12.05 +45,4,060610,235912,5.48982,27.0719,0.49,10606.7,0,0,12.05 +45,4,060610,235913,5.48985,27.0724,0.49,10607.1,0,0,12.05 +45,4,060610,235914,5.48985,27.0723,0.48,10609.3,0,0,12.05 +45,4,060610,235915,5.48988,27.0729,0.48,10609.6,0,0,12.05 +45,4,060610,235916,5.48988,27.0733,0.49,10609.6,0,0,12.05 +45,4,060610,235917,5.48997,27.0734,0.49,10611.3,0,0,12.05 +45,4,060610,235918,5.48997,27.0733,0.49,10611.4,0,0,12.05 +45,4,060610,235919,5.48997,27.0734,0.48,10612.7,0,0,12.05 +45,4,060610,235920,5.49003,27.0742,0.48,10614.9,0,0,12.05 +45,4,060610,235921,5.49009,27.0741,0.48,10614.5,0,0,12.05 +45,4,060610,235922,5.49009,27.0748,0.49,10614.0,0,0,12.05 +45,4,060610,235923,5.49008,27.0739,0.49,10614.2,0,0,12.05 +45,4,060610,235924,5.49008,27.0742,0.49,10615.4,0,0,12.05 +45,4,060610,235925,5.49015,27.0750,0.49,10615.7,0,0,12.05 +45,4,060610,235926,5.49021,27.0760,0.48,10614.7,0,0,12.05 +45,4,060610,235927,5.49024,27.0764,0.48,10617.8,0,0,12.05 +45,4,060610,235928,5.49027,27.0757,0.48,10619.3,0,0,12.05 +45,100,060610,235929,1,1,5,8,60,153705,869100,29618,1,0,0,0,0,3,2,12.05 +45,5,060610,235929,5.49033,27.0766,0.49,10618.7,0,0,12.05 +45,5,060610,235930,5.49039,27.0764,0.49,10619.0,0,0,11.92 +45,5,060610,235931,5.49046,27.0776,0.48,10619.4,0,0,11.92 +45,5,060610,235932,5.49046,27.0782,0.48,10619.6,0,0,11.91 +45,210,060610,235933,06/06/10 17:10:51 695 3771 700 4119 547 +45,5,060610,235933,5.49043,27.0778,0.48,10618.8,3771,4119,11.88 +45,5,060610,235934,5.49049,27.0777,0.48,10619.8,3842,4107,11.89 +45,5,060610,235935,5.49055,27.0787,0.49,10619.0,4074,4119,11.96 +45,5,060610,235936,5.49055,27.0789,0.49,10619.4,3875,4118,11.89 +45,100,060610,235937,1,1,6,60,60,153706,869100,29618,1,0,0,0,0,3,2,11.89 +45,6,060610,235937,5.49055,27.0783,0.48,10621.7,3889,4119,11.89 +45,6,060610,235938,5.49070,27.0803,0.48,10621.3,3970,4119,11.94 +45,6,060610,235939,5.49070,27.0802,0.48,10622.3,3695,4119,11.94 +45,6,060610,235940,5.49073,27.0803,0.48,10622.8,3926,4118,11.95 +45,6,060610,235941,5.49073,27.0805,0.48,10622.1,4028,4119,11.95 +45,6,060610,235942,5.49082,27.0808,0.48,10622.9,3835,4119,11.95 +45,6,060610,235943,5.49079,27.0806,0.49,10624.7,3951,4119,11.95 +45,6,060610,235944,5.49083,27.0805,0.48,10625.1,3777,4119,11.95 +45,6,060610,235945,5.49083,27.0811,0.49,10625.0,3678,4119,11.95 +45,6,060610,235946,5.49089,27.0820,0.49,10626.8,3937,4119,11.95 +45,6,060610,235947,5.49092,27.0822,0.48,10625.8,3952,4119,11.94 +45,6,060610,235948,5.49089,27.0815,0.48,10626.0,3931,4119,11.95 +45,6,060610,235949,5.49097,27.0821,0.48,10627.6,3763,4119,11.95 +45,6,060610,235950,5.49100,27.0833,0.48,10626.1,3965,4118,11.95 +45,6,060610,235951,5.49106,27.0832,0.49,10627.5,4033,4119,11.95 +45,6,060610,235952,5.49112,27.0836,0.49,10627.7,4021,4119,11.95 +45,6,060610,235953,5.49118,27.0839,0.48,10626.2,3941,4119,11.95 +45,6,060610,235954,5.49121,27.0852,0.49,10627.4,3868,4119,11.94 +45,6,060610,235955,5.49118,27.0844,0.48,10626.6,3863,4119,11.95 +45,6,060610,235956,5.49127,27.0849,0.48,10625.5,3848,4119,11.95 +45,6,060610,235957,5.49127,27.0857,0.48,10627.3,3924,4119,11.94 +45,6,060610,235958,5.49133,27.0856,0.49,10627.9,4090,4119,11.94 +45,6,060610,235959,5.49136,27.0856,0.48,10629.4,4015,4119,11.94 +45,6,060710,000000,5.49135,27.0859,0.49,10628.9,4083,4119,11.95 +45,6,060710,000001,5.49138,27.0864,0.49,10629.7,4042,4119,11.94 +45,6,060710,000002,5.49141,27.0863,0.49,10628.8,3908,4119,11.94 +45,6,060710,000003,5.49141,27.0867,0.47,10629.2,3827,4119,11.95 +45,6,060710,000004,5.49144,27.0864,0.48,10629.1,4059,4119,11.95 +45,6,060710,000005,5.49135,27.0871,0.48,10630.8,3876,4119,11.95 +45,6,060710,000006,5.49150,27.0869,0.49,10630.2,3973,4119,11.95 +45,6,060710,000007,5.49155,27.0871,0.49,10631.8,4073,4119,11.94 +45,6,060710,000008,5.49161,27.0880,0.48,10629.4,3914,4119,11.95 +45,6,060710,000009,5.49154,27.0880,0.49,10631.4,3959,4119,11.94 +45,6,060710,000010,5.49160,27.0881,0.48,10628.9,4064,4119,11.94 +45,6,060710,000011,5.49172,27.0891,0.47,10631.4,3987,4119,11.94 +45,6,060710,000012,5.49172,27.0889,0.48,10630.7,3837,4119,11.93 +45,6,060710,000013,5.49172,27.0898,0.49,10632.9,3756,4118,11.94 +45,6,060710,000014,5.49176,27.0891,0.49,10632.9,3696,4119,11.94 +45,6,060710,000015,5.49179,27.0890,0.49,10634.4,4010,4119,11.94 +45,6,060710,000016,5.49182,27.0899,0.48,10633.6,3965,4118,11.94 +45,6,060710,000017,5.49190,27.0908,0.48,10633.5,4046,4119,11.94 +45,6,060710,000018,5.49193,27.0904,0.48,10632.2,3970,4119,11.94 +45,6,060710,000019,5.49193,27.0909,0.49,10633.5,3494,4119,11.94 +45,6,060710,000020,5.49190,27.0910,0.49,10635.0,3620,4119,11.94 +45,6,060710,000021,5.49193,27.0910,0.48,10634.0,3989,4119,11.94 +45,6,060710,000022,5.49200,27.0916,0.48,10633.2,4008,4119,11.93 +45,6,060710,000023,5.49206,27.0919,0.49,10634.0,4077,4119,11.94 +45,6,060710,000024,5.49212,27.0924,0.49,10631.9,3998,4119,11.94 +45,6,060710,000025,5.49212,27.0929,0.48,10633.6,4056,4119,11.93 +45,6,060710,000026,5.49221,27.0936,0.48,10634.3,3688,4119,11.94 +45,6,060710,000027,5.49224,27.0934,0.48,10634.8,3614,4119,11.93 +45,6,060710,000028,5.49218,27.0935,0.49,10634.0,3781,4119,11.93 +45,6,060710,000029,5.49227,27.0943,0.48,10633.3,3882,4119,11.94 +45,6,060710,000030,5.49230,27.0944,0.48,10634.9,3952,4119,11.94 +45,6,060710,000031,5.49224,27.0939,0.49,10635.6,4066,4119,11.94 +45,6,060710,000032,5.49227,27.0945,0.49,10634.6,3973,4119,11.94 +45,6,060710,000033,5.49240,27.0961,0.48,10635.0,3792,4119,11.93 +45,6,060710,000034,5.49243,27.0955,0.48,10633.3,3948,4119,11.94 +45,6,060710,000035,5.49243,27.0959,0.48,10636.6,3708,4119,11.94 +45,6,060710,000036,5.49249,27.0956,0.49,10636.2,3718,4119,11.92 +45,100,060710,000037,1,1,10,759,60,153710,869096,29624,1,0,0,0,0,3,2,11.94 +45,100,060710,001324,1,1,3,11,15,153710,869103,29624,1,0,0,0,0,3,2,12.56 +45,3,060710,001324,5.49248,27.0963,0.49,10635.0,3718,4119,12.56 +45,140,060710,001330,Sample Mode: Insitu - Pumped: 5.49971 S/M > 0.00150 C90-Limit +45,200,060710,001330, 54.9971, 27.3082, 0.49, 3.211 +45,3,060710,001330,5.49971,27.3082,0.49,30000.0,0,0,12.10 +45,100,060710,001337,1,1,4,60,60,153710,869103,29624,1,0,0,0,0,3,2,12.07 +45,4,060710,001338,5.51601,27.3175,0.48,9699.9,0,0,12.06 +45,4,060710,001339,5.51620,27.3180,0.48,9904.5,0,0,12.06 +45,4,060710,001340,5.51623,27.3185,0.48,10065.3,0,0,12.06 +45,4,060710,001341,5.51635,27.3187,0.48,10190.9,0,0,12.06 +45,4,060710,001342,5.51641,27.3188,0.49,10283.4,0,0,12.06 +45,4,060710,001343,5.51653,27.3203,0.49,10353.3,0,0,12.06 +45,4,060710,001344,5.51645,27.3191,0.48,10407.2,0,0,12.06 +45,4,060710,001345,5.51653,27.3196,0.48,10447.5,0,0,12.06 +45,4,060710,001346,5.51665,27.3207,0.47,10477.3,0,0,12.06 +45,4,060710,001347,5.51665,27.3203,0.49,10505.0,0,0,12.06 +45,4,060710,001348,5.51670,27.3206,0.49,10522.4,0,0,12.06 +45,4,060710,001349,5.51680,27.3213,0.48,10537.8,0,0,12.05 +45,4,060710,001350,5.51677,27.3211,0.48,10550.0,0,0,12.06 +45,4,060710,001351,5.51686,27.3218,0.48,10556.6,0,0,12.06 +45,4,060710,001352,5.51688,27.3217,0.49,10566.1,0,0,12.05 +45,4,060710,001353,5.51695,27.3224,0.48,10572.6,0,0,12.05 +45,4,060710,001354,5.51698,27.3232,0.48,10578.5,0,0,12.05 +45,4,060710,001355,5.51711,27.3235,0.49,10582.6,0,0,12.05 +45,4,060710,001356,5.51713,27.3241,0.48,10586.7,0,0,12.05 +45,4,060710,001357,5.51717,27.3239,0.49,10590.2,0,0,12.05 +45,4,060710,001358,5.51717,27.3239,0.48,10594.8,0,0,12.05 +45,4,060710,001359,5.51713,27.3243,0.48,10597.2,0,0,12.05 +45,4,060710,001400,5.51723,27.3246,0.48,10600.1,0,0,12.05 +45,4,060710,001401,5.51723,27.3256,0.48,10600.7,0,0,12.05 +45,4,060710,001402,5.51729,27.3251,0.48,10603.7,0,0,12.05 +45,4,060710,001403,5.51735,27.3255,0.48,10605.5,0,0,12.06 +45,4,060710,001404,5.51735,27.3256,0.49,10607.4,0,0,12.05 +45,4,060710,001405,5.51741,27.3259,0.49,10610.1,0,0,12.05 +45,4,060710,001406,5.51747,27.3265,0.48,10610.0,0,0,12.05 +45,4,060710,001407,5.51747,27.3264,0.48,10612.9,0,0,12.05 +45,4,060710,001408,5.51753,27.3268,0.48,10615.3,0,0,12.05 +45,4,060710,001409,5.51762,27.3278,0.48,10615.4,0,0,12.05 +45,4,060710,001410,5.51765,27.3276,0.48,10615.7,0,0,12.05 +45,4,060710,001411,5.51766,27.3278,0.49,10617.5,0,0,12.05 +45,4,060710,001412,5.51759,27.3277,0.49,10617.5,0,0,12.05 +45,4,060710,001413,5.51768,27.3278,0.48,10620.4,0,0,12.05 +45,4,060710,001414,5.51769,27.3285,0.48,10622.3,0,0,12.05 +45,4,060710,001415,5.51772,27.3283,0.48,10623.2,0,0,12.05 +45,4,060710,001416,5.51781,27.3291,0.48,10623.6,0,0,12.05 +45,4,060710,001417,5.51784,27.3290,0.49,10625.7,0,0,12.05 +45,4,060710,001418,5.51791,27.3299,0.48,10625.9,0,0,12.05 +45,4,060710,001419,5.51793,27.3300,0.49,10627.8,0,0,12.05 +45,4,060710,001420,5.51793,27.3302,0.49,10627.8,0,0,12.05 +45,4,060710,001421,5.51793,27.3301,0.48,10630.8,0,0,12.05 +45,4,060710,001422,5.51794,27.3303,0.48,10630.5,0,0,12.05 +45,4,060710,001423,5.51799,27.3306,0.48,10632.8,0,0,12.05 +45,4,060710,001424,5.51808,27.3306,0.49,10633.2,0,0,12.05 +45,4,060710,001425,5.51808,27.3320,0.49,10633.6,0,0,12.05 +45,4,060710,001426,5.51813,27.3317,0.48,10632.1,0,0,12.05 +45,4,060710,001427,5.51814,27.3317,0.48,10632.5,0,0,12.05 +45,4,060710,001428,5.51814,27.3315,0.49,10634.5,0,0,12.05 +45,100,060710,001429,1,1,5,8,60,153713,869100,29624,1,0,0,0,0,3,2,12.05 +45,5,060710,001429,5.51816,27.3323,0.48,10634.3,0,0,12.05 +45,5,060710,001430,5.51823,27.3320,0.48,10636.4,0,0,11.92 +45,5,060710,001431,5.51826,27.3330,0.49,10635.7,0,0,11.92 +45,5,060710,001432,5.51829,27.3334,0.48,10635.0,0,0,11.92 +45,210,060710,001433,06/06/10 17:25:51 695 4023 700 4119 546 +45,5,060710,001433,5.51831,27.3335,0.48,10636.2,4023,4119,11.88 +45,5,060710,001434,5.51835,27.3340,0.48,10637.4,4057,4119,11.89 +45,5,060710,001435,5.51835,27.3337,0.48,10635.8,4082,4119,11.93 +45,5,060710,001436,5.51838,27.3337,0.48,10638.3,4103,4119,11.89 +45,100,060710,001437,1,1,6,60,60,153714,869100,29624,1,0,0,0,0,3,2,11.89 +45,6,060710,001437,5.51841,27.3346,0.48,10639.3,4106,4119,11.89 +45,6,060710,001438,5.51844,27.3342,0.49,10638.0,4100,4119,11.95 +45,6,060710,001439,5.51848,27.3347,0.48,10637.9,4102,4119,11.95 +45,6,060710,001440,5.51847,27.3345,0.48,10640.1,4100,4119,11.96 +45,6,060710,001441,5.51844,27.3353,0.48,10640.7,4040,4119,11.96 +45,6,060710,001442,5.51854,27.3350,0.49,10639.4,4074,4119,11.95 +45,6,060710,001443,5.51854,27.3349,0.48,10641.1,4096,4119,11.96 +45,6,060710,001444,5.51859,27.3354,0.48,10641.2,4077,4119,11.95 +45,6,060710,001445,5.51866,27.3364,0.49,10642.3,4074,4119,11.95 +45,6,060710,001446,5.51869,27.3364,0.48,10640.8,4100,4119,11.95 +45,6,060710,001447,5.51869,27.3375,0.48,10641.1,4103,4119,11.95 +45,6,060710,001448,5.51866,27.3367,0.48,10642.4,4103,4119,11.95 +45,6,060710,001449,5.51872,27.3362,0.49,10643.2,4100,4119,11.95 +45,6,060710,001450,5.51875,27.3372,0.49,10642.9,4060,4119,11.95 +45,6,060710,001451,5.51878,27.3373,0.48,10642.3,3997,4119,11.95 +45,6,060710,001452,5.51878,27.3374,0.48,10641.5,3812,4119,11.95 +45,6,060710,001453,5.51881,27.3376,0.48,10642.5,3793,4119,11.95 +45,6,060710,001454,5.51881,27.3376,0.48,10641.5,3676,4119,11.95 +45,6,060710,001455,5.51884,27.3375,0.49,10641.8,3631,4119,11.95 +45,6,060710,001456,5.51884,27.3379,0.48,10644.8,3769,4119,11.94 +45,6,060710,001457,5.51890,27.3381,0.48,10643.6,3706,4119,11.95 +45,6,060710,001458,5.51893,27.3384,0.49,10643.9,3952,4119,11.95 +45,6,060710,001459,5.51896,27.3383,0.49,10645.3,3906,4119,11.95 +45,6,060710,001500,5.51902,27.3395,0.48,10646.0,3669,4119,11.95 +45,6,060710,001501,5.51902,27.3404,0.48,10644.1,3848,4119,11.95 +45,6,060710,001502,5.51906,27.3402,0.48,10645.0,3985,4119,11.95 +45,6,060710,001503,5.51908,27.3400,0.48,10645.5,4063,4119,11.93 +45,6,060710,001504,5.51918,27.3403,0.49,10646.2,3978,4119,11.95 +45,6,060710,001505,5.51918,27.3407,0.49,10646.1,4006,4119,11.95 +45,6,060710,001506,5.51921,27.3409,0.48,10645.5,4057,4118,11.95 +45,6,060710,001507,5.51921,27.3413,0.48,10645.8,4088,4119,11.94 +45,6,060710,001508,5.51924,27.3414,0.49,10645.4,4068,4119,11.95 +45,6,060710,001509,5.51924,27.3410,0.49,10644.3,4090,4119,11.95 +45,6,060710,001510,5.51930,27.3417,0.48,10647.0,3989,4119,11.95 +45,6,060710,001511,5.51927,27.3421,0.48,10647.1,4081,4119,11.94 +45,6,060710,001512,5.51930,27.3417,0.49,10647.5,3970,4119,11.94 +45,6,060710,001513,5.51934,27.3424,0.49,10648.4,3927,4119,11.94 +45,6,060710,001514,5.51936,27.3423,0.48,10649.8,3965,4119,11.94 +45,6,060710,001515,5.51942,27.3424,0.48,10648.1,3821,4119,11.95 +45,6,060710,001516,5.51940,27.3427,0.48,10648.0,3857,4119,11.95 +45,6,060710,001517,5.51945,27.3435,0.48,10648.4,3877,4119,11.94 +45,6,060710,001518,5.51948,27.3433,0.48,10649.5,3938,4119,11.95 +45,6,060710,001519,5.51954,27.3440,0.49,10649.2,3877,4119,11.94 +45,6,060710,001520,5.51962,27.3441,0.49,10648.0,3708,4119,11.94 +45,6,060710,001521,5.51963,27.3448,0.48,10648.8,3612,4119,11.94 +45,6,060710,001522,5.51960,27.3447,0.48,10650.4,3813,4119,11.95 +45,6,060710,001523,5.51962,27.3446,0.49,10649.2,3899,4119,11.94 +45,6,060710,001524,5.51966,27.3447,0.48,10650.8,3911,4119,11.94 +45,6,060710,001525,5.51969,27.3450,0.49,10651.0,3964,4119,11.94 +45,6,060710,001526,5.51972,27.3459,0.49,10651.0,3965,4119,11.94 +45,6,060710,001527,5.51980,27.3463,0.48,10649.6,3770,4119,11.94 +45,6,060710,001528,5.51981,27.3463,0.48,10652.4,3574,4119,11.94 +45,6,060710,001529,5.51984,27.3457,0.48,10651.4,3641,4119,11.94 +45,6,060710,001530,5.51987,27.3471,0.49,10652.0,3613,4119,11.95 +45,6,060710,001531,5.51988,27.3477,0.49,10650.4,3911,4119,11.94 +45,6,060710,001532,5.51994,27.3480,0.48,10653.5,3517,4119,11.94 +45,6,060710,001533,5.52000,27.3484,0.48,10652.0,3817,4119,11.94 +45,6,060710,001534,5.52002,27.3485,0.48,10651.8,3971,4119,11.94 +45,6,060710,001535,5.52003,27.3482,0.48,10651.4,4056,4119,11.94 +45,6,060710,001536,5.52003,27.3480,0.48,10651.6,3875,4119,11.94 +45,100,060710,001537,1,1,10,756,60,153718,869096,29624,1,0,0,0,0,3,2,11.94 +45,100,060710,002824,1,1,3,11,15,153718,869087,29624,1,0,0,0,0,3,2,12.56 +45,3,060710,002824,5.52005,27.3483,0.49,10653.2,3875,4119,12.56 +45,140,060710,002830,Sample Mode: Insitu - Pumped: 5.52499 S/M > 0.00150 C90-Limit +45,200,060710,002830, 55.2499, 27.4791, 0.48, 3.334 +45,3,060710,002830,5.52499,27.4791,0.48,30000.0,0,0,12.10 +45,100,060710,002837,1,1,4,60,60,153718,869087,29624,1,0,0,0,0,3,2,12.07 +45,4,060710,002838,5.54320,27.5651,0.48,9955.0,0,0,12.06 +45,4,060710,002839,5.54337,27.5657,0.48,10109.1,0,0,12.06 +45,4,060710,002840,5.54355,27.5668,0.49,10226.3,0,0,12.06 +45,4,060710,002841,5.54363,27.5681,0.49,10315.2,0,0,12.06 +45,4,060710,002842,5.54365,27.5680,0.48,10383.0,0,0,12.06 +45,4,060710,002843,5.54379,27.5685,0.48,10435.5,0,0,12.06 +45,4,060710,002844,5.54392,27.5695,0.48,10474.8,0,0,12.06 +45,4,060710,002845,5.54395,27.5693,0.48,10503.6,0,0,12.06 +45,4,060710,002846,5.54398,27.5695,0.49,10526.7,0,0,12.06 +45,4,060710,002847,5.54401,27.5701,0.48,10545.4,0,0,12.05 +45,4,060710,002848,5.54410,27.5707,0.48,10557.7,0,0,12.06 +45,4,060710,002849,5.54420,27.5713,0.48,10572.6,0,0,12.05 +45,4,060710,002850,5.54420,27.5720,0.48,10579.6,0,0,12.05 +45,4,060710,002851,5.54426,27.5714,0.48,10587.0,0,0,12.06 +45,4,060710,002852,5.54429,27.5719,0.48,10593.6,0,0,12.06 +45,4,060710,002853,5.54429,27.5717,0.48,10596.8,0,0,12.05 +45,4,060710,002854,5.54432,27.5725,0.48,10603.4,0,0,12.05 +45,4,060710,002855,5.54444,27.5730,0.48,10607.2,0,0,12.05 +45,4,060710,002856,5.54444,27.5735,0.48,10611.6,0,0,12.05 +45,4,060710,002857,5.54447,27.5737,0.48,10614.9,0,0,12.06 +45,4,060710,002858,5.54447,27.5729,0.49,10617.0,0,0,12.05 +45,4,060710,002859,5.54453,27.5743,0.48,10617.9,0,0,12.05 +45,4,060710,002900,5.54459,27.5743,0.48,10620.7,0,0,12.05 +45,4,060710,002901,5.54462,27.5743,0.49,10623.6,0,0,12.06 +45,4,060710,002902,5.54469,27.5745,0.49,10625.0,0,0,12.05 +45,4,060710,002903,5.54469,27.5746,0.48,10628.8,0,0,12.05 +45,4,060710,002904,5.54479,27.5754,0.49,10630.8,0,0,12.05 +45,4,060710,002905,5.54487,27.5754,0.49,10633.2,0,0,12.05 +45,4,060710,002906,5.54485,27.5771,0.48,10634.8,0,0,12.05 +45,4,060710,002907,5.54487,27.5768,0.48,10636.7,0,0,12.05 +45,4,060710,002908,5.54495,27.5763,0.49,10636.0,0,0,12.05 +45,4,060710,002909,5.54496,27.5770,0.48,10639.5,0,0,12.05 +45,4,060710,002910,5.54501,27.5781,0.48,10639.5,0,0,12.05 +45,4,060710,002911,5.54502,27.5779,0.49,10640.0,0,0,12.05 +45,4,060710,002912,5.54516,27.5793,0.49,10640.7,0,0,12.05 +45,4,060710,002913,5.54514,27.5793,0.48,10641.3,0,0,12.05 +45,4,060710,002914,5.54516,27.5782,0.48,10641.2,0,0,12.05 +45,4,060710,002915,5.54524,27.5797,0.48,10643.7,0,0,12.05 +45,4,060710,002916,5.54523,27.5795,0.48,10646.1,0,0,12.05 +45,4,060710,002917,5.54524,27.5797,0.49,10646.2,0,0,12.05 +45,4,060710,002918,5.54529,27.5803,0.49,10648.8,0,0,12.05 +45,4,060710,002919,5.54533,27.5804,0.48,10649.6,0,0,12.05 +45,4,060710,002920,5.54529,27.5796,0.48,10647.5,0,0,12.05 +45,4,060710,002921,5.54545,27.5815,0.48,10651.5,0,0,12.05 +45,4,060710,002922,5.54545,27.5817,0.48,10649.2,0,0,12.05 +45,4,060710,002923,5.54560,27.5826,0.48,10650.5,0,0,12.05 +45,4,060710,002924,5.54557,27.5823,0.49,10650.9,0,0,12.05 +45,4,060710,002925,5.54563,27.5831,0.49,10651.3,0,0,12.05 +45,4,060710,002926,5.54563,27.5824,0.48,10651.5,0,0,12.05 +45,4,060710,002927,5.54570,27.5830,0.48,10652.1,0,0,12.05 +45,4,060710,002928,5.54573,27.5838,0.48,10653.5,0,0,12.05 +45,100,060710,002929,1,1,5,8,60,153721,869084,29624,1,0,0,0,0,3,2,12.05 +45,5,060710,002929,5.54576,27.5838,0.48,10654.4,0,0,12.05 +45,5,060710,002930,5.54582,27.5842,0.48,10654.5,0,0,11.92 +45,5,060710,002931,5.54585,27.5851,0.48,10654.1,0,0,11.92 +45,5,060710,002932,5.54588,27.5845,0.49,10655.3,0,0,11.91 +45,210,060710,002933,06/06/10 17:40:51 695 3948 700 4107 546 +45,5,060710,002933,5.54588,27.5847,0.48,10655.2,3948,4107,11.88 +45,5,060710,002934,5.54594,27.5854,0.48,10656.4,3942,4119,11.89 +45,5,060710,002935,5.54597,27.5862,0.48,10656.1,3635,4119,11.94 +45,5,060710,002936,5.54603,27.5859,0.48,10658.7,3721,4119,11.89 +45,100,060710,002937,1,1,6,60,60,153722,869084,29624,1,0,0,0,0,3,2,11.89 +45,6,060710,002937,5.54609,27.5870,0.49,10659.3,3845,4119,11.89 +45,6,060710,002938,5.54615,27.5880,0.48,10658.3,4040,4119,11.96 +45,6,060710,002939,5.54619,27.5879,0.48,10658.5,3801,4119,11.96 +45,6,060710,002940,5.54619,27.5887,0.49,10660.3,3906,4119,11.95 +45,6,060710,002941,5.54622,27.5883,0.48,10660.4,3827,4119,11.94 +45,6,060710,002942,5.54625,27.5883,0.48,10660.7,3914,4119,11.95 +45,6,060710,002943,5.54637,27.5895,0.48,10658.3,3709,4119,11.95 +45,6,060710,002944,5.54631,27.5890,0.48,10659.1,3756,4119,11.96 +45,6,060710,002945,5.54640,27.5901,0.48,10661.1,3730,4119,11.95 +45,6,060710,002946,5.54649,27.5906,0.49,10661.7,3719,4119,11.95 +45,6,060710,002947,5.54649,27.5907,0.49,10661.4,3759,4119,11.95 +45,6,060710,002948,5.54652,27.5908,0.48,10660.5,3438,4119,11.95 +45,6,060710,002949,5.54658,27.5918,0.48,10663.0,3588,4119,11.95 +45,6,060710,002950,5.54665,27.5920,0.48,10662.0,3668,4119,11.95 +45,6,060710,002951,5.54674,27.5925,0.48,10662.1,3884,4119,11.95 +45,6,060710,002952,5.54674,27.5934,0.49,10661.8,3697,4119,11.95 +45,6,060710,002953,5.54676,27.5931,0.48,10663.2,3825,4119,11.95 +45,6,060710,002954,5.54680,27.5932,0.48,10661.4,3933,4119,11.95 +45,6,060710,002955,5.54683,27.5935,0.49,10662.8,3645,4118,11.95 +45,6,060710,002956,5.54686,27.5936,0.49,10662.7,3820,4119,11.95 +45,6,060710,002957,5.54692,27.5944,0.48,10662.9,3725,4119,11.95 +45,6,060710,002958,5.54695,27.5938,0.48,10664.4,3776,4119,11.95 +45,6,060710,002959,5.54704,27.5954,0.48,10661.9,3626,4119,11.95 +45,6,060710,003000,5.54707,27.5956,0.49,10664.3,3941,4118,11.95 +45,6,060710,003001,5.54707,27.5964,0.49,10665.0,3973,4119,11.95 +45,6,060710,003002,5.54710,27.5965,0.48,10666.4,3779,4119,11.95 +45,6,060710,003003,5.54720,27.5966,0.48,10668.5,3518,4119,11.95 +45,6,060710,003004,5.54726,27.5978,0.49,10670.7,3890,4119,11.94 +45,6,060710,003005,5.54723,27.5974,0.49,10670.2,3843,4119,11.93 +45,6,060710,003006,5.54729,27.5980,0.48,10668.1,3917,4119,11.94 +45,6,060710,003007,5.54732,27.5985,0.48,10668.7,3580,4119,11.95 +45,6,060710,003008,5.54738,27.5985,0.48,10667.6,3721,4119,11.95 +45,6,060710,003009,5.54744,27.5987,0.48,10667.4,3871,4119,11.95 +45,6,060710,003010,5.54750,27.5991,0.49,10668.3,3865,4119,11.93 +45,6,060710,003011,5.54744,27.5992,0.49,10667.7,3805,4119,11.94 +45,6,060710,003012,5.54763,27.6007,0.48,10667.5,3431,4119,11.95 +45,6,060710,003013,5.54763,27.6012,0.48,10671.5,3605,4119,11.94 +45,6,060710,003014,5.54769,27.6014,0.48,10669.0,3633,4119,11.95 +45,6,060710,003015,5.54775,27.6019,0.48,10668.0,3790,4118,11.95 +45,6,060710,003016,5.54772,27.6019,0.48,10669.2,3622,4118,11.94 +45,6,060710,003017,5.54778,27.6023,0.49,10669.1,3827,4119,11.95 +45,6,060710,003018,5.54778,27.6022,0.49,10670.2,3604,4119,11.94 +45,6,060710,003019,5.54778,27.6017,0.48,10671.4,3565,4119,11.94 +45,6,060710,003020,5.54790,27.6033,0.48,10669.7,3955,4119,11.95 +45,6,060710,003021,5.54790,27.6031,0.49,10669.4,3795,4119,11.94 +45,6,060710,003022,5.54793,27.6028,0.48,10670.8,3701,4119,11.95 +45,6,060710,003023,5.54802,27.6047,0.48,10669.9,3877,4119,11.95 +45,6,060710,003024,5.54805,27.6052,0.48,10668.6,3690,4119,11.94 +45,6,060710,003025,5.54815,27.6060,0.49,10669.0,3911,4119,11.94 +45,6,060710,003026,5.54812,27.6054,0.49,10668.1,3951,4119,11.93 +45,6,060710,003027,5.54815,27.6053,0.48,10670.5,3690,4119,11.94 +45,6,060710,003028,5.54818,27.6059,0.49,10668.7,3503,4119,11.95 +45,6,060710,003029,5.54827,27.6068,0.49,10671.8,4034,4119,11.94 +45,6,060710,003030,5.54824,27.6061,0.48,10670.9,3677,4119,11.94 +45,6,060710,003031,5.54830,27.6074,0.48,10670.3,3884,4119,11.94 +45,6,060710,003032,5.54836,27.6076,0.49,10671.7,3870,4119,11.94 +45,6,060710,003033,5.54839,27.6082,0.48,10671.6,4006,4119,11.94 +45,6,060710,003034,5.54845,27.6092,0.48,10672.8,3771,4119,11.94 +45,6,060710,003035,5.54854,27.6089,0.49,10673.6,3728,4119,11.94 +45,6,060710,003036,5.54854,27.6100,0.48,10672.1,3846,4119,11.94 +45,100,060710,003037,1,1,10,759,60,153726,869080,29624,1,0,0,0,0,3,2,11.94 +45,100,060710,004324,1,1,3,11,15,153726,869087,29624,1,0,0,0,0,3,2,12.56 +45,3,060710,004324,5.54857,27.6095,0.48,10672.7,3846,4119,12.56 +45,140,060710,004330,Sample Mode: Insitu - Pumped: 0.03999 S/M > 0.00150 C90-Limit +45,200,060710,004330, 0.3999, 23.3806, -0.06, 5.791 +45,3,060710,004330,0.03999,23.3806,-0.06,30000.0,0,0,12.10 +45,100,060710,004337,1,1,4,60,60,153726,869087,29624,1,0,0,0,0,3,2,12.10 +45,4,060710,004338,0.03924,23.3397,-0.06,10755.0,0,0,12.08 +45,4,060710,004339,0.03915,23.3374,-0.06,10755.0,0,0,12.07 +45,4,060710,004340,0.03906,23.3334,-0.06,10755.8,0,0,12.07 +45,4,060710,004341,0.03900,23.3302,-0.06,10754.8,0,0,12.07 +45,4,060710,004342,0.03890,23.3265,-0.06,10757.2,0,0,12.07 +45,4,060710,004343,0.03885,23.3235,-0.06,10757.2,0,0,12.07 +45,4,060710,004344,0.03880,23.3213,-0.06,10758.2,0,0,12.07 +45,4,060710,004345,0.03872,23.3174,-0.06,10756.7,0,0,12.07 +45,4,060710,004346,0.03863,23.3139,-0.06,10758.0,0,0,12.07 +45,4,060710,004347,0.03855,23.3108,-0.06,10757.4,0,0,12.07 +45,4,060710,004348,0.03849,23.3074,-0.07,10758.6,0,0,12.07 +45,4,060710,004349,0.03840,23.3024,-0.06,10756.3,0,0,12.07 +45,4,060710,004350,0.03830,23.2748,-0.07,10757.8,0,0,12.07 +45,4,060710,004351,0.03822,23.2295,-0.06,10756.1,0,0,12.07 +45,4,060710,004352,0.03813,23.1796,-0.06,10756.3,0,0,12.07 +45,4,060710,004353,0.03806,23.1301,-0.06,10756.0,0,0,12.07 +45,4,060710,004354,0.03800,23.0907,-0.06,10753.9,0,0,12.07 +45,4,060710,004355,0.03792,23.0539,-0.06,10753.8,0,0,12.07 +45,4,060710,004356,0.03783,23.0129,-0.06,10752.2,0,0,12.07 +45,4,060710,004357,0.03773,22.9718,-0.06,10752.6,0,0,12.07 +45,4,060710,004358,0.03762,22.9307,-0.06,10751.0,0,0,12.07 +45,4,060710,004359,0.03756,22.8826,-0.06,10753.4,0,0,12.07 +45,4,060710,004400,0.03751,22.8359,-0.06,10753.7,0,0,12.07 +45,4,060710,004401,0.03745,22.7979,-0.06,10753.8,0,0,12.07 +45,4,060710,004402,0.03737,22.7657,-0.06,10753.4,0,0,12.06 +45,4,060710,004403,0.03729,22.7366,-0.07,10755.2,0,0,12.06 +45,4,060710,004404,0.03718,22.7136,-0.07,10755.2,0,0,12.07 +45,4,060710,004405,0.03708,22.6890,-0.06,10755.8,0,0,12.07 +45,4,060710,004406,0.03700,22.6641,-0.06,10757.5,0,0,12.06 +45,4,060710,004407,0.03697,22.6453,-0.07,10757.8,0,0,12.07 +45,4,060710,004408,0.03690,22.6659,-0.06,10757.6,0,0,12.06 +45,4,060710,004409,0.03683,22.6927,-0.06,10757.7,0,0,12.06 +45,4,060710,004410,0.03678,22.7189,-0.06,10759.8,0,0,12.07 +45,4,060710,004411,0.03670,22.7434,-0.06,10759.4,0,0,12.06 +45,4,060710,004412,0.03663,22.7642,-0.06,10760.6,0,0,12.07 +45,4,060710,004413,0.03659,22.7829,-0.06,10762.4,0,0,12.07 +45,4,060710,004414,0.03652,22.7998,-0.06,10761.0,0,0,12.06 +45,4,060710,004415,0.03647,22.8157,-0.07,10760.9,0,0,12.07 +45,4,060710,004416,0.03641,22.8302,-0.07,10761.4,0,0,12.07 +45,4,060710,004417,0.03635,22.8435,-0.06,10762.6,0,0,12.07 +45,4,060710,004418,0.03628,22.8542,-0.06,10762.2,0,0,12.07 +45,4,060710,004419,0.03621,22.8637,-0.06,10761.6,0,0,12.06 +45,4,060710,004420,0.03614,22.8726,-0.06,10761.0,0,0,12.06 +45,4,060710,004421,0.03605,22.8800,-0.06,10762.5,0,0,12.06 +45,4,060710,004422,0.03601,22.8873,-0.06,10760.8,0,0,12.06 +45,4,060710,004423,0.03598,22.8940,-0.07,10763.4,0,0,12.06 +45,4,060710,004424,0.03592,22.8993,-0.06,10762.6,0,0,12.06 +45,4,060710,004425,0.03585,22.9036,-0.06,10762.7,0,0,12.06 +45,4,060710,004426,0.03579,22.9073,-0.06,10763.9,0,0,12.06 +45,4,060710,004427,0.03572,22.9106,-0.06,10764.1,0,0,12.06 +45,4,060710,004428,0.03566,22.9135,-0.06,10764.8,0,0,12.06 +45,100,060710,004429,1,1,5,8,60,153729,869084,29624,1,0,0,0,0,3,2,12.06 +45,5,060710,004429,0.03563,22.9165,-0.06,10763.3,0,0,12.06 +45,5,060710,004430,0.03563,22.9182,-0.06,10762.1,0,0,11.94 +45,5,060710,004431,0.03558,22.9200,-0.06,10759.5,0,0,11.93 +45,5,060710,004432,0.03553,22.9218,-0.06,10754.7,0,0,11.93 +45,210,060710,004433,06/06/10 17:55:51 695 51 700 70 545 +45,5,060710,004433,0.03546,22.9225,-0.06,10739.1,51,70,11.90 +45,5,060710,004434,0.03537,22.9228,-0.06,10684.6,49,44,11.91 +45,5,060710,004435,0.03529,22.8777,-0.06,10580.2,82,74,11.92 +45,5,060710,004436,0.03524,22.8057,-0.06,10446.5,52,105,11.91 +45,100,060710,004437,1,1,6,60,60,153730,869084,29624,1,0,0,0,0,3,2,11.91 +45,6,060710,004437,0.03518,22.7364,-0.06,10300.5,42,96,11.91 +45,6,060710,004438,0.03511,22.6729,-0.06,10158.5,65,80,11.98 +45,6,060710,004439,0.03503,22.6171,-0.06,10021.0,62,82,11.96 +45,6,060710,004440,0.03496,22.5648,-0.06,9892.6,64,63,11.96 +45,6,060710,004441,0.03489,22.5184,-0.07,9770.1,78,56,11.97 +45,6,060710,004442,0.03482,22.4752,-0.06,9652.4,48,61,11.97 +45,6,060710,004443,0.03475,22.4282,-0.06,9540.3,54,63,11.97 +45,6,060710,004444,0.03469,22.3867,-0.06,9436.0,40,74,11.97 +45,6,060710,004445,0.03462,22.3519,-0.06,9333.7,38,80,11.97 +45,6,060710,004446,0.03456,22.3197,-0.06,9239.2,52,76,11.97 +45,6,060710,004447,0.03448,22.2905,-0.06,9149.5,60,73,11.97 +45,6,060710,004448,0.03442,22.2632,-0.06,9065.4,68,64,11.97 +45,6,060710,004449,0.03435,22.2417,-0.06,8986.4,33,85,11.96 +45,6,060710,004450,0.03426,22.2213,-0.06,8912.4,38,68,11.97 +45,6,060710,004451,0.03420,22.2036,-0.06,8845.1,41,67,11.97 +45,6,060710,004452,0.03415,22.1838,-0.06,8787.0,35,68,11.97 +45,6,060710,004453,0.03409,22.1614,-0.06,8736.3,59,61,11.97 +45,6,060710,004454,0.03401,22.1427,-0.06,8687.4,64,82,11.97 +45,6,060710,004455,0.03395,22.1247,-0.06,8637.1,54,68,11.97 +45,6,060710,004456,0.03389,22.1059,-0.06,8589.9,81,66,11.97 +45,6,060710,004457,0.03384,22.0869,-0.06,8543.0,14,85,11.97 +45,6,060710,004458,0.03377,22.0668,-0.06,8497.7,70,64,11.97 +45,6,060710,004459,0.03368,22.0513,-0.06,8455.4,55,86,11.97 +45,6,060710,004500,0.03360,22.0357,-0.06,8413.0,39,90,11.96 +45,6,060710,004501,0.03356,22.0207,-0.06,8375.7,43,86,11.97 +45,6,060710,004502,0.03350,22.0054,-0.06,8339.5,49,72,11.97 +45,6,060710,004503,0.03343,21.9920,-0.06,8303.1,66,67,11.95 +45,6,060710,004505,0.03336,21.9796,-0.06,8271.3,66,83,11.92 +45,6,060710,004505,0.03332,21.9667,-0.06,8239.9,67,67,11.92 +45,6,060710,004506,0.03329,21.9529,-0.06,8209.4,68,68,11.96 +45,6,060710,004507,0.03323,21.9411,-0.06,8181.1,39,68,11.97 +45,6,060710,004509,0.03317,21.9291,-0.06,8154.5,62,69,11.92 +45,6,060710,004510,0.03311,21.9174,-0.06,8127.4,55,74,11.92 +45,6,060710,004510,0.03302,21.9062,-0.06,8102.0,74,274,11.92 +45,6,060710,004512,0.03296,21.8929,-0.06,8079.4,68,267,11.92 +45,6,060710,004513,0.03292,21.8817,-0.06,8055.6,62,59,11.91 +45,6,060710,004513,0.03286,21.8727,-0.06,8035.0,47,82,11.91 +45,6,060710,004515,0.03281,21.8630,-0.06,8013.7,75,85,11.91 +45,6,060710,004516,0.03275,21.8552,-0.06,7994.0,30,82,11.91 +45,6,060710,004517,0.03268,21.8450,-0.06,7975.0,69,68,11.92 +45,6,060710,004518,0.03264,21.8339,-0.06,7955.8,53,67,11.93 +45,6,060710,004519,0.03261,21.8218,-0.06,7940.3,64,92,11.91 +45,6,060710,004520,0.03259,21.8062,-0.06,7922.2,77,60,11.91 +45,6,060710,004521,0.03255,21.7944,-0.06,7904.7,60,80,11.93 +45,6,060710,004522,0.03250,21.7854,-0.06,7890.2,43,74,11.91 +45,6,060710,004523,0.03245,21.7777,-0.06,7875.0,67,56,11.92 +45,6,060710,004524,0.03239,21.7637,-0.06,7858.9,70,85,11.93 +45,6,060710,004525,0.03233,21.7511,-0.07,7844.8,55,77,11.93 +45,6,060710,004526,0.03229,21.7409,-0.06,7828.8,94,68,11.94 +45,6,060710,004527,0.03224,21.7340,-0.06,7816.8,41,75,11.92 +45,6,060710,004528,0.03220,21.7258,-0.06,7803.6,47,69,11.91 +45,6,060710,004529,0.03216,21.7223,-0.06,7791.9,45,70,11.93 +45,6,060710,004530,0.03212,21.7164,-0.06,7777.1,69,66,11.93 +45,6,060710,004531,0.03207,21.7115,-0.06,7766.9,57,78,11.91 +45,6,060710,004532,0.03202,21.7073,-0.06,7751.7,37,64,11.94 +45,6,060710,004533,0.03201,21.7019,-0.06,7741.1,68,65,11.91 +45,6,060710,004534,0.03199,21.6977,-0.06,7728.7,75,59,11.94 +45,6,060710,004535,0.03195,21.7051,-0.06,7715.5,72,83,11.92 +45,6,060710,004536,0.03190,21.7393,-0.06,7704.0,53,64,11.91 +45,100,060710,004537,1,1,10,759,60,153733,869080,29624,1,0,0,0,0,3,2,11.92 +45,100,060710,005824,1,1,3,11,15,153733,869071,29624,1,0,0,0,0,3,2,14.00 +45,3,060710,005824,0.03182,21.7762,-0.06,7692.1,73,76,14.00 +45,140,060710,005830,Sample Mode: Insitu - Pumped: 0.02335 S/M > 0.00150 C90-Limit +45,200,060710,005830, 0.2335, 20.4886, -0.07, 3.101 +45,3,060710,005830,0.02335,20.4886,-0.07,30000.0,0,0,13.58 +45,100,060710,005837,1,1,4,60,60,153734,869071,29624,1,0,0,0,0,3,2,13.58 +45,4,060710,005838,0.02329,20.4751,-0.07,7118.8,0,0,13.57 +45,4,060710,005839,0.02328,20.4754,-0.07,7111.8,0,0,13.57 +45,4,060710,005840,0.02328,20.4763,-0.07,7108.4,0,0,13.57 +45,4,060710,005841,0.02330,20.4759,-0.07,7105.4,0,0,13.57 +45,4,060710,005842,0.02331,20.4749,-0.07,7101.8,0,0,13.57 +45,4,060710,005843,0.02329,20.4774,-0.07,7100.1,0,0,13.57 +45,4,060710,005844,0.02326,20.4785,-0.07,7094.8,0,0,13.57 +45,4,060710,005845,0.02326,20.4780,-0.07,7095.1,0,0,13.57 +45,4,060710,005846,0.02327,20.4753,-0.07,7089.6,0,0,13.57 +45,4,060710,005847,0.02329,20.4751,-0.07,7086.8,0,0,13.57 +45,4,060710,005848,0.02329,20.4763,-0.07,7085.4,0,0,13.57 +45,4,060710,005849,0.02325,20.4758,-0.07,7083.3,0,0,13.57 +45,4,060710,005850,0.02323,20.4764,-0.07,7082.4,0,0,13.57 +45,4,060710,005851,0.02322,20.4752,-0.07,7079.4,0,0,13.57 +45,4,060710,005852,0.02324,20.4743,-0.07,7077.1,0,0,13.57 +45,4,060710,005853,0.02324,20.4713,-0.07,7073.4,0,0,13.57 +45,4,060710,005854,0.02324,20.4722,-0.07,7071.9,0,0,13.57 +45,4,060710,005855,0.02324,20.4715,-0.07,7069.5,0,0,13.57 +45,4,060710,005856,0.02323,20.4700,-0.07,7064.4,0,0,13.57 +45,4,060710,005857,0.02322,20.4693,-0.07,7061.4,0,0,13.57 +45,4,060710,005858,0.02320,20.4680,-0.07,7057.9,0,0,13.57 +45,4,060710,005859,0.02318,20.4677,-0.07,7056.1,0,0,13.57 +45,4,060710,005900,0.02317,20.4669,-0.07,7051.0,0,0,13.57 +45,4,060710,005901,0.02318,20.4670,-0.07,7048.0,0,0,13.57 +45,4,060710,005902,0.02318,20.4662,-0.07,7044.3,0,0,13.57 +45,4,060710,005903,0.02318,20.4621,-0.07,7039.4,0,0,13.57 +45,4,060710,005904,0.02317,20.4593,-0.07,7035.8,0,0,13.58 +45,4,060710,005905,0.02316,20.4577,-0.07,7031.9,0,0,13.57 +45,4,060710,005906,0.02316,20.4583,-0.07,7031.2,0,0,13.57 +45,4,060710,005907,0.02315,20.4576,-0.07,7029.3,0,0,13.57 +45,4,060710,005908,0.02314,20.4565,-0.07,7028.7,0,0,13.57 +45,4,060710,005909,0.02313,20.4572,-0.07,7027.2,0,0,13.57 +45,4,060710,005910,0.02311,20.4559,-0.07,7028.1,0,0,13.57 +45,4,060710,005911,0.02310,20.4544,-0.07,7025.9,0,0,13.57 +45,4,060710,005912,0.02310,20.4539,-0.07,7024.3,0,0,13.57 +45,4,060710,005913,0.02311,20.4522,-0.07,7023.7,0,0,13.57 +45,4,060710,005914,0.02311,20.4520,-0.07,7023.3,0,0,13.57 +45,4,060710,005915,0.02310,20.4518,-0.07,7023.5,0,0,13.57 +45,4,060710,005916,0.02310,20.4509,-0.07,7023.0,0,0,13.57 +45,4,060710,005917,0.02308,20.4501,-0.07,7020.2,0,0,13.57 +45,4,060710,005918,0.02308,20.4513,-0.07,7019.1,0,0,13.57 +45,4,060710,005919,0.02309,20.4492,-0.07,7017.9,0,0,13.57 +45,4,060710,005920,0.02309,20.4491,-0.07,7016.4,0,0,13.57 +45,4,060710,005921,0.02309,20.4480,-0.07,7017.9,0,0,13.57 +45,4,060710,005922,0.02309,20.4466,-0.07,7018.5,0,0,13.57 +45,4,060710,005923,0.02308,20.4464,-0.07,7016.6,0,0,13.57 +45,4,060710,005924,0.02308,20.4461,-0.07,7019.9,0,0,13.57 +45,4,060710,005925,0.02307,20.4445,-0.07,7018.9,0,0,13.57 +45,4,060710,005926,0.02306,20.4435,-0.07,7020.2,0,0,13.57 +45,4,060710,005927,0.02306,20.4429,-0.07,7021.2,0,0,13.57 +45,4,060710,005928,0.02306,20.4439,-0.07,7018.9,0,0,13.57 +45,100,060710,005929,1,1,5,8,60,153737,869068,29624,1,0,0,0,0,3,2,13.57 +45,5,060710,005929,0.02304,20.4416,-0.07,7021.2,0,0,13.57 +45,5,060710,005930,0.02304,20.4413,-0.07,7019.6,0,0,13.51 +45,5,060710,005931,0.02305,20.4399,-0.07,7020.7,0,0,13.51 +45,5,060710,005932,0.02307,20.4394,-0.07,7021.7,0,0,13.51 +45,210,060710,005933,06/06/10 18:10:51 695 58 700 71 546 +45,5,060710,005933,0.02307,20.4392,-0.07,7024.6,58,71,13.51 +45,5,060710,005934,0.02304,20.4388,-0.07,7028.5,61,75,13.51 +45,5,060710,005935,0.02302,20.4406,-0.07,7032.5,60,74,13.56 +45,5,060710,005936,0.02301,20.4411,-0.07,7033.8,56,74,13.51 +45,100,060710,005937,1,1,6,60,60,153737,869068,29624,1,0,0,0,0,3,2,13.51 +45,6,060710,005937,0.02300,20.4413,-0.07,7033.3,58,74,13.51 +45,6,060710,005938,0.02300,20.4403,-0.07,7030.7,57,73,13.57 +45,6,060710,005939,0.02300,20.4406,-0.07,7032.5,63,75,13.57 +45,6,060710,005940,0.02301,20.4391,-0.07,7028.6,61,73,13.57 +45,6,060710,005941,0.02301,20.4391,-0.07,7028.0,56,74,13.58 +45,6,060710,005942,0.02299,20.4368,-0.07,7027.0,60,74,13.59 +45,6,060710,005943,0.02298,20.4354,-0.07,7025.4,61,75,13.59 +45,6,060710,005944,0.02297,20.4347,-0.07,7024.9,59,74,13.58 +45,6,060710,005945,0.02297,20.4335,-0.07,7023.8,63,74,13.58 +45,6,060710,005946,0.02297,20.4332,-0.07,7022.5,61,74,13.57 +45,6,060710,005947,0.02297,20.4326,-0.07,7019.9,62,73,13.58 +45,6,060710,005948,0.02296,20.4323,-0.07,7017.6,61,75,13.57 +45,6,060710,005949,0.02294,20.4319,-0.07,7013.0,62,73,13.57 +45,6,060710,005950,0.02294,20.4321,-0.07,7012.6,59,76,13.58 +45,6,060710,005951,0.02294,20.4314,-0.07,7010.5,60,77,13.51 +45,6,060710,005952,0.02294,20.4300,-0.07,7008.6,61,76,13.51 +45,6,060710,005953,0.02294,20.4293,-0.07,7006.1,58,75,13.51 +45,6,060710,005954,0.02293,20.4280,-0.07,7004.2,61,74,13.51 +45,6,060710,005955,0.02292,20.4272,-0.07,7001.2,61,73,13.51 +45,6,060710,005956,0.02292,20.4282,-0.07,7000.6,58,74,13.51 +45,6,060710,005957,0.02291,20.4266,-0.07,6997.6,63,73,13.51 +45,6,060710,005958,0.02291,20.4264,-0.07,6998.3,60,74,13.51 +45,6,060710,005959,0.02292,20.4248,-0.07,6995.2,56,76,13.51 +45,6,060710,010000,0.02292,20.4239,-0.07,6995.2,60,72,13.59 +45,6,060710,010001,0.02292,20.4227,-0.07,6993.1,57,73,13.58 +45,6,060710,010002,0.02290,20.4216,-0.07,6993.2,61,75,13.57 +45,6,060710,010003,0.02289,20.4214,-0.07,6992.5,58,74,13.58 +45,6,060710,010004,0.02289,20.4204,-0.07,6990.6,64,76,13.58 +45,6,060710,010005,0.02290,20.4206,-0.07,6987.7,60,75,13.58 +45,6,060710,010006,0.02290,20.4197,-0.07,6987.3,57,72,13.58 +45,6,060710,010007,0.02290,20.4167,-0.07,6985.7,58,73,13.58 +45,6,060710,010008,0.02289,20.4171,-0.07,6982.9,63,78,13.58 +45,6,060710,010009,0.02289,20.4165,-0.07,6982.8,60,79,13.58 +45,6,060710,010010,0.02288,20.4160,-0.07,6981.2,62,80,13.57 +45,6,060710,010011,0.02288,20.4157,-0.07,6979.9,61,78,13.59 +45,6,060710,010012,0.02287,20.4145,-0.07,6979.6,62,82,13.58 +45,6,060710,010013,0.02287,20.4143,-0.07,6976.9,64,82,13.58 +45,6,060710,010014,0.02287,20.4138,-0.07,6972.8,59,79,13.51 +45,6,060710,010015,0.02286,20.4145,-0.07,6973.1,62,83,13.51 +45,6,060710,010016,0.02286,20.4142,-0.07,6968.9,62,85,13.51 +45,6,060710,010017,0.02287,20.4142,-0.07,6968.5,62,82,13.51 +45,6,060710,010018,0.02287,20.4120,-0.07,6966.1,60,80,13.51 +45,6,060710,010019,0.02286,20.4106,-0.07,6964.1,62,84,13.51 +45,6,060710,010020,0.02285,20.4106,-0.07,6962.4,61,84,13.51 +45,6,060710,010021,0.02285,20.4110,-0.07,6958.3,58,81,13.59 +45,6,060710,010022,0.02285,20.4090,-0.07,6956.4,58,81,13.51 +45,6,060710,010023,0.02284,20.4082,-0.07,6954.9,65,84,13.58 +45,6,060710,010024,0.02283,20.4063,-0.07,6953.9,59,78,13.59 +45,6,060710,010025,0.02282,20.4060,-0.07,6953.4,58,72,13.51 +45,6,060710,010026,0.02283,20.4052,-0.07,6950.8,59,74,13.59 +45,6,060710,010027,0.02283,20.4030,-0.07,6946.1,61,72,13.51 +45,6,060710,010028,0.02282,20.4034,-0.07,6946.8,59,75,13.51 +45,6,060710,010029,0.02281,20.4034,-0.07,6943.5,62,74,13.51 +45,6,060710,010030,0.02282,20.4022,-0.07,6939.7,59,75,13.51 +45,100,060710,010031,1,1,15,1,60,153740,869064,29624,1,0,0,0,0,3,2,13.51 + \ No newline at end of file diff --git a/test/readWQMraw/WQM0047_003_v1.20_example.RAW b/test/readWQMraw/WQM0047_003_v1.20_example.RAW new file mode 100644 index 000000000..ec4e6eed2 --- /dev/null +++ b/test/readWQMraw/WQM0047_003_v1.20_example.RAW @@ -0,0 +1,2000 @@ + +File Name: WQM0047.003 +Created On: 060709 042711 +WQM SN: 47 +WQM F/W V: 1.20 +CTDO SN: 5047 +DOSN=0 +Soc=1.439800e-04 +FOffset=-3.383689e+03 +A52=-2.973800e-03 +B52=1.513400e-04 +C52=-2.712400e-06 +E52=3.600000e-02 +Optics SN: 978 +FactoryCHL=0.007 53 Scale and Offset +UserCHL=0.007 53 Scale and Offset +NTU=0.002 49 Scale and Offset +Beta=0.000 1 0 Derived Scale and Offset +External Data Port: Off +WQM Control: Autonomous +Delay Seconds: 0 +Sample Seconds: 60 +Sample Interval Seconds: 900 +Outbits: 0xa001df88 +Starting Free Flask Disk: 1022816 K +Total Flask Disk: 1022816 K +BLIS ul / squirt: 7.0 +Pumped Hour Interval: 1 +Pumped BLIS: 0 +Static BLIS: 6 +Starting Total BLIS Squirts: 86 +Recent UPS: No +Starting UPS Count: 0 +Starting Total UPS Count: 6 +Starting Voltage: 0.00 +Data Output: ON +Heartbeat: OFF +Update Date/Time: Normal +File Format: SN,State,Date,Time,Cond,Temp,Pres,RawDO,RawCHL,RawTurb,Volts + +47,100,060709,042711,1,0,3,11,15,0,1022816,86,1,0,1,0,0,6,0,0.00 +47,100,060709,042723,1,1,4,60,60,0,1022815,88,1,0,1,0,0,6,2,15.87 +47,4,060709,042723,0.00000,0.0000,0.00,0.0,0,0,15.86 +47,4,060709,042724,0.55190,25.1541,-0.06,7521.8,0,0,15.86 +47,4,060709,042725,0.51683,25.1105,-0.07,7633.4,0,0,15.86 +47,4,060709,042726,0.22843,25.1079,-0.07,7754.4,0,0,15.86 +47,4,060709,042727,0.32770,25.1350,-0.07,7877.3,0,0,15.86 +47,4,060709,042728,0.46805,25.1560,-0.06,8170.4,0,0,15.85 +47,4,060709,042729,0.61887,25.1704,-0.06,8650.3,0,0,15.85 +47,4,060709,042730,0.62264,25.1793,-0.07,9117.9,0,0,15.85 +47,4,060709,042731,0.57415,25.1851,-0.06,9491.5,0,0,15.85 +47,4,060709,042732,0.49030,25.1902,-0.06,9769.8,0,0,15.85 +47,4,060709,042733,0.40855,25.1929,-0.07,9973.1,0,0,15.85 +47,4,060709,042734,0.39782,25.1963,-0.06,10119.7,0,0,15.85 +47,4,060709,042735,0.39264,25.1989,-0.06,10159.5,0,0,15.85 +47,4,060709,042736,0.42830,25.2003,-0.06,10237.8,0,0,15.85 +47,4,060709,042737,0.36519,25.2007,-0.06,10294.3,0,0,15.85 +47,4,060709,042738,0.41060,25.2006,-0.06,10338.8,0,0,15.84 +47,4,060709,042739,0.55072,25.2018,-0.06,10373.3,0,0,15.85 +47,4,060709,042740,0.54110,25.2034,-0.06,10394.3,0,0,15.85 +47,4,060709,042741,0.42267,25.2067,-0.06,10414.5,0,0,15.85 +47,4,060709,042742,0.33370,25.2094,-0.06,10498.5,0,0,15.85 +47,4,060709,042743,0.34207,25.2082,-0.06,10511.9,0,0,15.85 +47,4,060709,042744,0.36964,25.2075,-0.06,10522.3,0,0,15.85 +47,4,060709,042745,0.37147,25.2073,-0.06,10531.1,0,0,15.86 +47,4,060709,042746,0.36278,25.2083,-0.06,10536.0,0,0,15.85 +47,4,060709,042747,0.33913,25.2096,-0.06,10541.8,0,0,15.86 +47,4,060709,042748,0.89393,25.2101,-0.06,10547.6,0,0,15.86 +47,4,060709,042749,0.44182,25.2122,-0.06,10550.1,0,0,15.86 +47,4,060709,042750,0.29142,25.2195,-0.06,10557.3,0,0,15.86 +47,4,060709,042751,0.22028,25.2332,-0.06,10558.3,0,0,15.86 +47,4,060709,042752,0.17035,25.2594,-0.06,10562.6,0,0,15.86 +47,4,060709,042753,0.13917,25.2863,-0.06,10566.1,0,0,15.86 +47,4,060709,042754,0.16655,25.3083,-0.06,10571.3,0,0,15.85 +47,4,060709,042755,0.14909,25.3248,-0.06,10572.7,0,0,15.86 +47,4,060709,042756,0.14841,25.3394,-0.06,10576.4,0,0,15.85 +47,4,060709,042757,0.14000,25.3490,-0.07,10576.2,0,0,15.86 +47,4,060709,042758,0.12837,25.3597,-0.06,10576.1,0,0,15.86 +47,4,060709,042759,0.12453,25.3690,-0.06,10578.1,0,0,15.86 +47,4,060709,042800,0.11360,25.3741,-0.06,10581.7,0,0,15.86 +47,4,060709,042801,0.10689,25.3751,-0.06,10582.5,0,0,15.86 +47,4,060709,042802,0.10320,25.3733,-0.06,10584.7,0,0,15.86 +47,4,060709,042803,0.09931,25.3714,-0.06,10587.3,0,0,15.86 +47,4,060709,042804,0.10296,25.3641,-0.06,10586.5,0,0,15.86 +47,4,060709,042805,0.10271,25.3554,-0.06,10587.9,0,0,15.86 +47,4,060709,042806,0.09570,25.3465,-0.06,10591.1,0,0,15.86 +47,4,060709,042807,0.08669,25.3366,-0.06,10592.9,0,0,15.86 +47,4,060709,042808,0.07939,25.3290,-0.06,10595.4,0,0,15.86 +47,4,060709,042809,0.07226,25.3223,-0.06,10595.3,0,0,15.86 +47,4,060709,042810,0.06632,25.3177,-0.06,10596.5,0,0,15.86 +47,4,060709,042811,0.06558,25.3140,-0.06,10598.1,0,0,15.86 +47,4,060709,042812,0.06896,25.3099,-0.06,10597.8,0,0,15.86 +47,4,060709,042813,0.06597,25.3044,-0.06,10599.1,0,0,15.86 +47,5,060709,042814,0.06025,25.3009,-0.06,10600.9,0,0,15.86 +47,100,060709,042815,1,1,5,8,60,3,1022812,106,1,0,1,0,0,6,2,15.86 +47,5,060709,042815,0.05524,25.2967,-0.06,10600.1,0,0,15.74 +47,5,060709,042816,0.04708,25.2929,-0.06,10600.9,0,0,15.74 +47,5,060709,042817,0.04629,25.2908,-0.06,10602.2,0,0,15.74 +47,5,060709,042818,0.04459,25.2861,-0.06,10603.5,0,0,15.72 +47,5,060709,042819,0.04227,25.2829,-0.06,10602.4,55,185,15.74 +47,5,060709,042820,0.04069,25.2786,-0.06,10603.8,55,185,15.72 +47,5,060709,042821,0.03953,25.2746,-0.06,10603.1,57,184,15.72 +47,6,060709,042822,0.03867,25.2716,-0.06,10605.2,60,183,15.72 +47,100,060709,042823,1,1,6,60,60,3,1022812,106,1,0,0,0,0,6,2,15.72 +47,6,060709,042823,0.03874,25.2684,-0.06,10605.5,53,184,15.72 +47,6,060709,042824,0.03829,25.2664,-0.06,10606.9,58,183,15.72 +47,6,060709,042825,0.03761,25.2631,-0.06,10606.5,65,183,15.72 +47,6,060709,042826,0.03723,25.2588,-0.06,10608.0,59,187,15.72 +47,6,060709,042827,0.03680,25.2571,-0.06,10608.1,56,181,15.72 +47,6,060709,042828,0.03599,25.2532,-0.06,10607.5,55,183,15.72 +47,6,060709,042829,0.03575,25.2493,-0.06,10608.8,56,182,15.72 +47,6,060709,042830,0.03641,25.2469,-0.06,10608.8,53,182,15.72 +47,6,060709,042831,0.03686,25.2436,-0.06,10608.3,54,182,15.71 +47,6,060709,042832,0.03647,25.2383,-0.06,10611.6,58,184,15.72 +47,6,060709,042833,0.03518,25.2346,-0.06,10607.7,61,172,15.71 +47,6,060709,042834,0.03709,25.2299,-0.06,10615.1,62,179,15.72 +47,6,060709,042835,0.31192,25.2126,-0.05,10611.3,60,94,15.72 +47,6,060709,042836,0.26185,25.1899,-0.06,10611.3,58,51,15.72 +47,6,060709,042837,0.17215,25.1316,-0.05,10611.8,58,51,15.72 +47,6,060709,042838,0.13450,25.0858,-0.05,10609.8,58,51,15.72 +47,6,060709,042839,0.12771,25.0484,-0.06,10611.5,58,51,15.72 +47,6,060709,042840,0.12820,25.0743,-0.05,10614.0,58,51,15.72 +47,6,060709,042841,0.12376,25.1007,-0.05,10614.3,71,741,15.71 +47,6,060709,042842,0.11096,25.1312,-0.06,10614.3,58,51,15.72 +47,6,060709,042843,0.10193,25.1615,-0.06,10615.7,58,51,15.72 +47,6,060709,042844,0.09498,25.1830,-0.06,10616.0,58,51,15.72 +47,6,060709,042845,0.08798,25.1996,-0.06,10615.5,58,51,15.72 +47,6,060709,042846,0.08810,25.2079,-0.06,10616.5,58,51,15.72 +47,6,060709,042847,0.08615,25.2141,-0.06,10615.6,58,51,15.72 +47,6,060709,042848,0.08607,25.7474,-0.05,10615.0,58,51,15.72 +47,6,060709,042849,0.23723,26.8860,0.12,10633.1,58,51,15.72 +47,6,060709,042850,0.75901,27.0562,0.13,10703.1,-47,1034,15.72 +47,6,060709,042851,5.47837,27.1294,0.12,10731.8,142,4116,15.70 +47,6,060709,042852,5.49589,27.1801,0.17,10513.4,200,3685,15.70 +47,6,060709,042853,5.51253,27.1926,0.19,10156.4,58,51,15.71 +47,6,060709,042854,5.51686,27.2000,0.18,9806.0,59,448,15.72 +47,6,060709,042855,5.51840,27.2054,0.17,9516.3,58,51,15.72 +47,6,060709,042856,5.51985,27.2047,0.17,9294.8,58,51,15.71 +47,6,060709,042857,5.52117,27.2041,0.19,9129.1,58,51,15.71 +47,6,060709,042858,5.52190,27.2045,0.16,9007.4,58,51,15.71 +47,6,060709,042859,5.52224,27.2025,0.17,8915.4,58,51,15.71 +47,6,060709,042900,5.52300,27.2040,0.16,8845.4,58,51,15.71 +47,6,060709,042901,5.50099,27.2067,0.16,8792.8,58,51,15.71 +47,6,060709,042902,5.46904,27.2084,0.17,8751.8,58,51,15.71 +47,6,060709,042903,5.52428,27.2087,0.17,8720.8,58,51,15.71 +47,6,060709,042904,5.52445,27.2090,0.17,8695.0,58,51,15.71 +47,6,060709,042905,5.52462,27.2072,0.16,8672.2,58,51,15.71 +47,6,060709,042906,5.43256,27.2083,0.16,8653.7,58,51,15.71 +47,6,060709,042907,5.52514,27.2087,0.16,8639.7,58,51,15.71 +47,6,060709,042908,5.52511,27.2078,0.16,8628.6,58,51,15.71 +47,6,060709,042909,5.52526,27.2071,0.17,8617.7,58,51,15.71 +47,6,060709,042910,5.52544,27.2088,0.17,8608.9,58,51,15.70 +47,6,060709,042911,5.52554,27.2094,0.17,8599.9,58,51,15.70 +47,6,060709,042912,5.52554,27.2095,0.17,8594.2,58,51,15.71 +47,6,060709,042913,5.52563,27.2099,0.17,8587.5,58,51,15.71 +47,6,060709,042914,5.52566,27.2107,0.17,8580.7,58,51,15.71 +47,6,060709,042915,5.52520,27.2061,0.17,8576.4,58,51,15.71 +47,6,060709,042916,5.52507,27.2026,0.18,8574.2,58,51,15.71 +47,6,060709,042917,5.52520,27.2036,0.20,8571.3,58,51,15.71 +47,6,060709,042918,5.52541,27.2054,0.19,8569.3,58,51,15.71 +47,6,060709,042919,5.52572,27.2075,0.17,8564.9,58,833,15.71 +47,6,060709,042920,5.52575,27.2073,0.17,8562.3,58,51,15.71 +47,6,060709,042921,5.52560,27.2055,0.19,8557.0,58,51,15.71 +47,6,060709,042922,5.52621,27.2101,0.33,8550.5,58,51,15.71 +47,100,060709,042930,1,1,10,0,60,7,1022808,112,1,0,0,0,0,6,2,15.71 +47,100,060709,044211,1,1,3,11,15,7,1022799,112,1,0,0,0,0,6,2,15.93 +47,100,060709,044222,1,1,4,60,60,7,1022799,112,1,0,0,0,0,6,2,15.92 +47,4,060709,044222,0.00000,0.0000,0.00,0.0,0,0,15.85 +47,4,060709,044223,0.00000,0.0000,0.00,0.0,0,0,15.86 +47,4,060709,044224,0.00000,0.0000,0.00,0.0,0,0,15.85 +47,4,060709,044225,5.53944,27.3081,0.43,8255.1,0,0,15.85 +47,4,060709,044226,5.53950,27.3088,0.42,8297.6,0,0,15.85 +47,4,060709,044227,5.53965,27.3087,0.43,8329.4,0,0,15.85 +47,4,060709,044228,5.53974,27.3094,0.43,8351.6,0,0,15.85 +47,4,060709,044229,5.53987,27.3091,0.43,8366.0,0,0,15.85 +47,4,060709,044230,5.53993,27.3096,0.43,8376.4,0,0,15.85 +47,4,060709,044231,5.54005,27.3098,0.43,8387.2,0,0,15.85 +47,4,060709,044232,5.54008,27.3091,0.43,8394.3,0,0,15.85 +47,4,060709,044233,5.54011,27.3091,0.43,8398.1,0,0,15.85 +47,4,060709,044234,5.54020,27.3094,0.44,8403.7,0,0,15.85 +47,4,060709,044235,5.54026,27.3097,0.43,8407.2,0,0,15.85 +47,4,060709,044236,5.54033,27.3103,0.42,8410.8,0,0,15.85 +47,4,060709,044237,5.54036,27.3101,0.43,8412.5,0,0,15.85 +47,4,060709,044238,5.54042,27.3106,0.43,8414.1,0,0,15.85 +47,4,060709,044239,5.54039,27.3101,0.43,8414.3,0,0,15.85 +47,4,060709,044240,5.54042,27.3104,0.43,8416.5,0,0,15.85 +47,4,060709,044241,5.54045,27.3105,0.43,8416.8,0,0,15.85 +47,4,060709,044242,5.54048,27.3110,0.43,8417.5,0,0,15.85 +47,4,060709,044243,5.54054,27.3111,0.42,8418.0,0,0,15.85 +47,4,060709,044244,5.54057,27.3116,0.43,8420.3,0,0,15.85 +47,4,060709,044245,5.54057,27.3115,0.43,8420.8,0,0,15.85 +47,4,060709,044246,5.54057,27.3106,0.44,8424.0,0,0,15.85 +47,4,060709,044247,5.54057,27.3105,0.43,8422.0,0,0,15.85 +47,4,060709,044248,5.54063,27.3112,0.42,8420.3,0,0,15.85 +47,4,060709,044249,5.54063,27.3112,0.42,8422.3,0,0,15.85 +47,4,060709,044250,5.54066,27.3107,0.42,8421.8,0,0,15.85 +47,4,060709,044251,5.54063,27.3119,0.43,8423.2,0,0,15.85 +47,4,060709,044252,5.54076,27.3120,0.44,8425.9,0,0,15.85 +47,4,060709,044253,5.54079,27.3127,0.44,8427.4,0,0,15.85 +47,4,060709,044254,5.54082,27.3127,0.43,8426.5,0,0,15.85 +47,4,060709,044255,5.54088,27.3128,0.43,8427.0,0,0,15.85 +47,4,060709,044256,5.54088,27.3130,0.43,8426.9,0,0,15.85 +47,4,060709,044257,5.54094,27.3133,0.42,8427.2,0,0,15.85 +47,4,060709,044258,5.54091,27.3137,0.43,8427.1,0,0,15.85 +47,4,060709,044259,5.54094,27.3127,0.44,8425.0,0,0,15.85 +47,4,060709,044300,5.54091,27.3130,0.44,8426.5,0,0,15.85 +47,4,060709,044301,5.54094,27.3135,0.43,8426.9,0,0,15.85 +47,4,060709,044302,5.54094,27.3124,0.42,8426.5,0,0,15.85 +47,4,060709,044303,5.54094,27.3134,0.43,8429.4,0,0,15.85 +47,4,060709,044304,5.54097,27.3136,0.44,8427.3,0,0,15.85 +47,4,060709,044305,5.54097,27.3134,0.43,8427.6,0,0,15.85 +47,4,060709,044306,5.54103,27.3137,0.43,8427.1,0,0,15.85 +47,4,060709,044307,5.54103,27.3138,0.43,8427.8,0,0,15.85 +47,4,060709,044308,5.54116,27.3164,0.43,8426.3,0,0,15.85 +47,4,060709,044309,5.54100,27.3137,0.44,8425.7,0,0,15.85 +47,4,060709,044310,5.54103,27.3139,0.44,8427.1,0,0,15.85 +47,4,060709,044311,5.54106,27.3134,0.42,8427.2,0,0,15.85 +47,4,060709,044312,5.54112,27.3147,0.42,8425.9,0,0,15.85 +47,5,060709,044313,5.54113,27.3141,0.43,8426.1,0,0,15.85 +47,100,060709,044314,1,1,5,8,60,10,1022796,112,1,0,0,0,0,6,2,15.85 +47,5,060709,044314,5.54112,27.3148,0.44,8426.8,0,0,15.74 +47,5,060709,044315,5.54113,27.3145,0.43,8425.1,0,0,15.74 +47,5,060709,044316,5.54121,27.3142,0.43,8426.4,0,0,15.73 +47,5,060709,044317,5.54124,27.3149,0.43,8425.7,0,0,15.72 +47,5,060709,044318,5.54124,27.3153,0.43,8425.8,64,1057,15.73 +47,5,060709,044319,5.54124,27.3149,0.43,8426.2,64,1057,15.72 +47,5,060709,044320,5.54130,27.3159,0.43,8426.0,65,1053,15.71 +47,6,060709,044321,5.54133,27.3153,0.43,8427.0,64,1046,15.72 +47,100,060709,044322,1,1,6,60,60,11,1022796,112,1,0,0,0,0,6,2,15.72 +47,6,060709,044322,5.54143,27.3163,0.43,8427.0,62,1065,15.72 +47,6,060709,044323,5.54137,27.3162,0.43,8427.4,59,1067,15.72 +47,6,060709,044324,5.54131,27.3152,0.43,8427.4,61,1071,15.71 +47,6,060709,044325,5.54134,27.3159,0.43,8428.0,64,1092,15.72 +47,6,060709,044326,5.54134,27.3163,0.43,8426.2,68,1067,15.72 +47,6,060709,044327,5.54140,27.3158,0.43,8427.0,62,1063,15.71 +47,6,060709,044328,5.54143,27.3167,0.43,8425.1,64,1073,15.72 +47,6,060709,044329,5.54143,27.3164,0.43,8424.9,62,1065,15.72 +47,6,060709,044330,5.54152,27.3179,0.44,8426.5,62,1093,15.71 +47,6,060709,044331,5.54155,27.3181,0.43,8426.0,65,1132,15.72 +47,6,060709,044332,5.54159,27.3178,0.42,8427.1,63,1064,15.71 +47,6,060709,044333,5.54155,27.3173,0.43,8429.6,67,1063,15.71 +47,6,060709,044334,5.54165,27.3183,0.43,8429.3,65,1044,15.71 +47,6,060709,044335,5.54165,27.3187,0.44,8430.8,65,1024,15.71 +47,6,060709,044336,5.54168,27.3194,0.42,8429.9,62,1031,15.71 +47,6,060709,044337,5.54168,27.3183,0.43,8429.1,67,1040,15.71 +47,6,060709,044338,5.54171,27.3187,0.44,8429.5,57,1043,15.71 +47,6,060709,044339,5.54174,27.3191,0.44,8428.9,64,1050,15.71 +47,6,060709,044340,5.54177,27.3196,0.43,8429.7,68,1044,15.71 +47,6,060709,044341,5.54180,27.3197,0.41,8427.3,76,1061,15.71 +47,6,060709,044342,5.54177,27.3195,0.42,8428.7,66,1051,15.71 +47,6,060709,044343,5.54183,27.3204,0.44,8428.7,65,1068,15.71 +47,6,060709,044344,5.54180,27.3195,0.43,8429.8,62,1069,15.71 +47,6,060709,044345,5.54183,27.3193,0.42,8431.3,61,1054,15.71 +47,6,060709,044346,5.54186,27.3193,0.43,8430.1,65,1068,15.71 +47,6,060709,044347,5.54189,27.3198,0.44,8430.1,64,1078,15.71 +47,6,060709,044348,5.54189,27.3196,0.44,8430.2,65,1050,15.71 +47,6,060709,044349,5.54192,27.3205,0.43,8429.0,64,1049,15.71 +47,6,060709,044350,5.54192,27.3206,0.43,8428.1,61,1042,15.71 +47,6,060709,044351,5.54192,27.3210,0.43,8428.5,67,1055,15.71 +47,6,060709,044352,5.54198,27.3209,0.43,8427.2,58,1049,15.71 +47,6,060709,044353,5.54192,27.3207,0.43,8428.8,67,1050,15.71 +47,6,060709,044354,5.54198,27.3203,0.44,8430.8,62,1066,15.71 +47,6,060709,044355,5.54201,27.3223,0.44,8432.0,60,1095,15.71 +47,6,060709,044356,5.54211,27.3227,0.44,8432.5,65,1091,15.71 +47,6,060709,044357,5.54201,27.3201,0.43,8433.3,62,1061,15.71 +47,6,060709,044358,5.54204,27.3208,0.43,8432.9,65,1089,15.71 +47,6,060709,044359,5.54208,27.3216,0.42,8432.1,59,1088,15.71 +47,6,060709,044400,5.54208,27.3224,0.43,8431.8,64,1082,15.71 +47,6,060709,044401,5.54211,27.3216,0.43,8432.0,59,1060,15.71 +47,6,060709,044402,5.54211,27.3222,0.44,8432.1,68,1052,15.71 +47,6,060709,044403,5.54217,27.3223,0.44,8431.6,67,1055,15.71 +47,6,060709,044404,5.54220,27.3226,0.43,8432.1,68,1054,15.71 +47,6,060709,044405,5.54214,27.3225,0.43,8432.3,61,1058,15.71 +47,6,060709,044406,5.54208,27.3226,0.43,8433.3,63,1067,15.71 +47,6,060709,044407,5.54214,27.3222,0.43,8433.9,65,1081,15.71 +47,6,060709,044408,5.54211,27.3223,0.43,8433.9,66,1060,15.71 +47,6,060709,044409,5.54217,27.3224,0.43,8433.6,62,1059,15.71 +47,6,060709,044410,5.54223,27.3228,0.44,8432.9,69,1075,15.71 +47,6,060709,044411,5.54223,27.3234,0.44,8432.8,70,1094,15.71 +47,6,060709,044412,5.54223,27.3228,0.43,8432.4,63,1079,15.71 +47,6,060709,044413,5.54223,27.3232,0.42,8431.1,66,1082,15.71 +47,6,060709,044414,5.54223,27.3235,0.43,8431.1,61,1051,15.70 +47,6,060709,044415,5.54226,27.3239,0.44,8430.0,61,1051,15.71 +47,6,060709,044416,5.54220,27.3233,0.43,8431.1,62,1085,15.71 +47,6,060709,044417,5.54223,27.3229,0.43,8429.6,64,1066,15.71 +47,6,060709,044418,5.54226,27.3227,0.44,8430.8,65,1052,15.71 +47,6,060709,044419,5.54232,27.3237,0.43,8430.7,66,1060,15.71 +47,6,060709,044420,5.54229,27.3231,0.42,8432.2,66,1062,15.71 +47,6,060709,044421,5.54229,27.3247,0.43,8430.4,63,1056,15.71 +47,100,060709,044426,1,1,10,3,60,14,1022792,112,1,0,0,0,0,6,2,15.71 +47,100,060709,045711,1,1,3,11,15,14,1022799,112,1,0,0,0,0,6,2,15.92 +47,100,060709,045722,1,1,4,60,60,14,1022799,112,1,0,0,0,0,6,2,15.92 +47,4,060709,045722,0.00000,0.0000,0.00,0.0,0,0,15.86 +47,4,060709,045723,0.00000,0.0000,0.00,0.0,0,0,15.86 +47,4,060709,045724,0.00000,0.0000,0.00,0.0,0,0,15.85 +47,4,060709,045725,0.45637,27.2503,-0.06,9116.3,0,0,15.86 +47,4,060709,045726,0.46850,27.2588,-0.06,9354.4,0,0,15.85 +47,4,060709,045727,0.48024,27.2638,-0.06,9527.5,0,0,15.86 +47,4,060709,045728,0.44693,27.2678,-0.06,9652.5,0,0,15.85 +47,4,060709,045729,0.38543,27.2711,-0.06,9743.5,0,0,15.85 +47,4,060709,045730,0.35826,27.2750,-0.06,9812.8,0,0,15.85 +47,4,060709,045731,0.35454,27.2765,-0.06,9859.7,0,0,15.85 +47,4,060709,045732,0.34425,27.2784,-0.06,9900.2,0,0,15.85 +47,4,060709,045733,0.34486,27.2818,-0.06,9937.3,0,0,15.85 +47,4,060709,045734,0.36592,27.2848,-0.06,9971.9,0,0,15.85 +47,4,060709,045735,0.38231,27.2869,-0.06,10005.0,0,0,15.85 +47,4,060709,045736,0.34627,27.2887,-0.06,10032.3,0,0,15.85 +47,4,060709,045737,0.29757,27.2906,-0.06,10057.6,0,0,15.85 +47,4,060709,045738,0.28692,27.2921,-0.06,10074.0,0,0,15.85 +47,4,060709,045739,0.31900,27.2932,-0.06,10091.0,0,0,15.85 +47,4,060709,045740,0.34882,27.2969,-0.06,10105.1,0,0,15.85 +47,4,060709,045741,0.32914,27.2997,-0.06,10119.2,0,0,15.85 +47,4,060709,045742,0.30751,27.3014,-0.06,10126.5,0,0,15.85 +47,4,060709,045743,0.30028,27.3033,-0.06,10135.8,0,0,15.85 +47,4,060709,045744,0.27270,27.3044,-0.06,10142.5,0,0,15.85 +47,4,060709,045745,0.26057,27.3072,-0.06,10150.3,0,0,15.85 +47,4,060709,045746,0.26289,27.3103,-0.06,10155.9,0,0,15.85 +47,4,060709,045747,0.27339,27.3134,-0.06,10161.5,0,0,15.85 +47,4,060709,045748,0.28430,27.3173,-0.06,10165.4,0,0,15.85 +47,4,060709,045749,0.26800,27.3206,-0.06,10171.1,0,0,15.85 +47,4,060709,045750,0.23264,27.3221,-0.06,10175.8,0,0,15.85 +47,4,060709,045751,0.18382,27.3247,-0.06,10179.0,0,0,15.85 +47,4,060709,045752,0.19684,27.3288,-0.06,10184.1,0,0,15.85 +47,4,060709,045753,0.25939,27.3343,-0.06,10186.3,0,0,15.85 +47,4,060709,045754,0.24219,27.3397,-0.06,10189.9,0,0,15.85 +47,4,060709,045755,0.19157,27.3438,-0.06,10192.9,0,0,15.85 +47,4,060709,045756,0.16621,27.3474,-0.06,10197.4,0,0,15.85 +47,4,060709,045757,0.16338,27.3520,-0.06,10200.0,0,0,15.85 +47,4,060709,045758,0.17781,27.3575,-0.06,10203.1,0,0,15.85 +47,4,060709,045759,0.20182,27.3637,-0.06,10206.4,0,0,15.85 +47,4,060709,045800,0.19254,27.3683,-0.06,10207.8,0,0,15.85 +47,4,060709,045801,0.18843,27.3749,-0.06,10210.2,0,0,15.85 +47,4,060709,045802,0.18033,27.3805,-0.06,10213.0,0,0,15.85 +47,4,060709,045803,0.16354,27.3862,-0.06,10214.3,0,0,15.85 +47,4,060709,045804,0.16055,27.3927,-0.06,10215.9,0,0,15.85 +47,4,060709,045805,0.18080,27.4011,-0.06,10220.0,0,0,15.85 +47,4,060709,045806,0.20305,27.4085,-0.06,10221.0,0,0,15.85 +47,4,060709,045807,0.19272,27.4151,-0.06,10223.1,0,0,15.85 +47,4,060709,045808,0.18353,27.4214,-0.06,10224.6,0,0,15.85 +47,4,060709,045809,0.16992,27.4278,-0.06,10226.2,0,0,15.85 +47,4,060709,045810,0.17792,27.4334,-0.06,10227.0,0,0,15.85 +47,4,060709,045811,0.18840,27.4386,-0.06,10230.5,0,0,15.85 +47,4,060709,045812,0.18807,27.4456,-0.06,10233.2,0,0,15.85 +47,5,060709,045813,0.21286,27.4509,-0.06,10232.6,0,0,15.85 +47,100,060709,045814,1,1,5,8,60,17,1022796,112,1,0,0,0,0,6,2,15.85 +47,5,060709,045814,0.18940,27.4547,-0.06,10235.4,0,0,15.74 +47,5,060709,045815,0.16603,27.4583,-0.06,10236.7,0,0,15.74 +47,5,060709,045816,0.16581,27.4643,-0.06,10239.7,0,0,15.74 +47,5,060709,045817,0.17515,27.4729,-0.06,10240.6,0,0,15.72 +47,5,060709,045818,0.05355,27.4829,-0.06,10242.0,58,51,15.74 +47,5,060709,045819,0.05305,27.4908,-0.06,10242.0,58,51,15.73 +47,5,060709,045820,0.05197,27.4968,-0.06,10242.8,58,51,15.73 +47,6,060709,045821,0.05080,27.5034,-0.06,10244.3,58,51,15.72 +47,100,060709,045822,1,1,6,60,60,18,1022796,112,1,0,0,0,0,6,2,15.72 +47,6,060709,045822,0.04746,27.5125,-0.06,10245.7,58,51,15.72 +47,6,060709,045823,0.04754,27.5222,-0.06,10247.6,58,51,15.73 +47,6,060709,045824,0.04639,27.5295,-0.06,10247.2,58,51,15.73 +47,6,060709,045825,0.04407,27.5379,-0.06,10250.3,58,51,15.73 +47,6,060709,045826,0.04370,27.5449,-0.06,10250.1,58,51,15.73 +47,6,060709,045827,0.04280,27.5509,-0.06,10251.9,58,51,15.72 +47,6,060709,045828,0.04166,27.5607,-0.06,10250.7,58,51,15.72 +47,6,060709,045829,0.04091,27.5687,-0.06,10252.4,58,51,15.73 +47,6,060709,045830,0.03962,27.5789,-0.06,10253.5,58,51,15.72 +47,6,060709,045831,0.03973,27.5862,-0.06,10254.1,58,51,15.73 +47,6,060709,045832,0.03808,27.5930,-0.06,10254.0,58,51,15.73 +47,6,060709,045833,0.03655,27.6026,-0.06,10255.2,58,51,15.73 +47,6,060709,045834,0.03546,27.6121,-0.06,10256.4,58,51,15.72 +47,6,060709,045835,0.03537,27.6205,-0.06,10257.4,58,51,15.72 +47,6,060709,045836,0.03458,27.6286,-0.06,10257.7,58,51,15.73 +47,6,060709,045837,0.03439,27.6384,-0.06,10259.0,58,51,15.72 +47,6,060709,045838,0.03318,27.6459,-0.06,10257.9,58,51,15.72 +47,6,060709,045839,0.03371,27.6549,-0.06,10255.5,58,51,15.72 +47,6,060709,045840,0.03253,27.6613,-0.06,10254.9,58,51,15.72 +47,6,060709,045841,0.03174,27.6698,-0.06,10255.7,58,51,15.73 +47,6,060709,045842,0.03119,27.6794,-0.06,10253.8,58,51,15.72 +47,6,060709,045843,0.03159,27.6880,-0.06,10253.7,58,51,15.72 +47,6,060709,045844,0.03124,27.6941,-0.06,10255.3,58,51,15.72 +47,6,060709,045845,0.03137,27.7003,-0.06,10255.3,58,51,15.72 +47,6,060709,045846,0.03040,27.7068,-0.06,10254.5,58,51,15.72 +47,6,060709,045847,0.03028,27.7159,-0.06,10256.1,58,51,15.72 +47,6,060709,045848,0.02959,27.7255,-0.06,10255.3,58,51,15.72 +47,6,060709,045849,0.02902,27.7339,-0.06,10257.6,58,51,15.72 +47,6,060709,045850,0.02860,27.7430,-0.06,10256.8,58,51,15.72 +47,6,060709,045851,0.02872,27.7491,-0.06,10257.0,58,51,15.72 +47,6,060709,045852,0.02808,27.7548,-0.06,10257.9,58,51,15.72 +47,6,060709,045853,0.02739,27.7639,-0.06,10259.1,58,51,15.72 +47,6,060709,045854,0.02790,27.7704,-0.06,10259.2,58,51,15.72 +47,6,060709,045855,0.02705,27.7770,-0.06,10259.8,58,51,15.71 +47,6,060709,045856,0.02657,27.7883,-0.06,10260.7,58,51,15.72 +47,6,060709,045857,0.02636,27.7961,-0.06,10259.8,58,51,15.72 +47,6,060709,045858,0.02635,27.8035,-0.06,10262.5,57,51,15.72 +47,6,060709,045859,0.02633,27.8078,-0.06,10262.0,58,51,15.72 +47,6,060709,045900,0.02620,27.8134,-0.06,10262.8,58,51,15.72 +47,6,060709,045901,0.02601,27.8204,-0.06,10262.9,58,51,15.72 +47,6,060709,045902,0.02602,27.8277,-0.06,10263.3,58,51,15.72 +47,6,060709,045903,0.02572,27.8362,-0.06,10264.5,58,51,15.72 +47,6,060709,045904,0.02549,27.8448,-0.06,10263.8,58,51,15.72 +47,6,060709,045905,0.02535,27.8523,-0.06,10263.1,58,51,15.72 +47,6,060709,045906,0.02564,27.8561,-0.06,10266.2,58,51,15.72 +47,6,060709,045907,0.02532,27.8606,-0.06,10265.5,58,51,15.72 +47,6,060709,045908,0.02498,27.8684,-0.06,10264.9,58,51,15.72 +47,6,060709,045909,0.02503,27.8744,-0.06,10265.8,58,51,15.72 +47,6,060709,045910,0.02462,27.8814,-0.06,10266.7,58,51,15.72 +47,6,060709,045911,0.02511,27.8903,-0.06,10267.7,58,51,15.72 +47,6,060709,045912,0.02606,27.8943,-0.06,10266.6,57,51,15.72 +47,6,060709,045913,0.02570,27.8989,-0.06,10267.5,58,51,15.72 +47,6,060709,045914,0.02523,27.9056,-0.06,10267.2,58,51,15.71 +47,6,060709,045915,0.02485,27.9122,-0.06,10267.2,58,51,15.72 +47,6,060709,045916,0.02454,27.9170,-0.06,10268.3,58,51,15.72 +47,6,060709,045917,0.02497,27.9212,-0.06,10267.7,58,51,15.72 +47,6,060709,045918,0.02577,27.9211,-0.06,10267.1,58,51,15.72 +47,6,060709,045919,0.02546,27.9184,-0.06,10267.4,58,51,15.72 +47,6,060709,045920,0.02551,27.9204,-0.06,10268.8,58,51,15.72 +47,6,060709,045921,0.02501,27.9196,-0.06,10269.7,58,51,15.72 +47,100,060709,045925,1,1,10,4,60,22,1022792,112,1,0,0,0,0,6,2,15.72 +47,100,060709,051211,1,1,3,11,15,22,1022783,112,1,0,0,0,0,6,2,15.92 +47,100,060709,051222,1,1,4,60,60,22,1022783,112,1,0,0,0,0,6,2,15.91 +47,4,060709,051222,0.00000,0.0000,0.00,0.0,0,0,15.86 +47,4,060709,051223,0.00000,0.0000,0.00,0.0,0,0,15.86 +47,4,060709,051224,0.00000,0.0000,0.00,0.0,0,0,15.85 +47,4,060709,051225,2.76861,27.6750,-0.06,10154.4,0,0,15.85 +47,4,060709,051226,2.77093,27.6777,-0.06,10155.2,0,0,15.85 +47,4,060709,051227,2.79758,27.6799,-0.06,10155.1,0,0,15.85 +47,4,060709,051228,2.80184,27.6821,-0.06,10155.0,0,0,15.85 +47,4,060709,051229,2.79487,27.6827,-0.06,10154.2,0,0,15.85 +47,4,060709,051230,2.79812,27.6860,-0.06,10155.2,0,0,15.85 +47,4,060709,051231,2.79853,27.6898,-0.06,10152.6,0,0,15.85 +47,4,060709,051232,2.80039,27.6906,-0.06,10154.1,0,0,15.85 +47,4,060709,051233,2.80474,27.6920,-0.06,10154.7,0,0,15.85 +47,4,060709,051234,2.80202,27.6916,-0.06,10156.6,0,0,15.85 +47,4,060709,051235,2.80037,27.6921,-0.06,10156.1,0,0,15.85 +47,4,060709,051236,2.81100,27.6933,-0.06,10154.2,0,0,15.85 +47,4,060709,051237,2.80537,27.6921,-0.06,10154.4,0,0,15.85 +47,4,060709,051238,2.81511,27.6922,-0.06,10154.1,0,0,15.85 +47,4,060709,051239,2.82089,27.6942,-0.06,10154.1,0,0,15.85 +47,4,060709,051240,2.81786,27.6945,-0.06,10155.6,0,0,15.85 +47,4,060709,051241,2.80404,27.6963,-0.06,10154.8,0,0,15.85 +47,4,060709,051242,2.79454,27.6996,-0.06,10154.7,0,0,15.85 +47,4,060709,051243,2.80158,27.7004,-0.06,10156.5,0,0,15.85 +47,4,060709,051244,2.81266,27.7010,-0.06,10155.7,0,0,15.85 +47,4,060709,051245,2.83165,27.7022,-0.06,10154.5,0,0,15.85 +47,4,060709,051246,2.81747,27.7039,-0.06,10154.7,0,0,15.85 +47,4,060709,051247,2.79301,27.7058,-0.06,10155.3,0,0,15.85 +47,4,060709,051248,2.78517,27.7083,-0.06,10154.4,0,0,15.85 +47,4,060709,051249,2.79679,27.7100,-0.06,10154.0,0,0,15.85 +47,4,060709,051250,2.80376,27.7113,-0.06,10155.3,0,0,15.85 +47,4,060709,051251,2.79860,27.7125,-0.06,10153.8,0,0,15.85 +47,4,060709,051252,2.79180,27.7165,-0.06,10153.2,0,0,15.85 +47,4,060709,051253,2.78389,27.7191,-0.06,10154.0,0,0,15.85 +47,4,060709,051254,2.78298,27.7210,-0.06,10155.2,0,0,15.85 +47,4,060709,051255,2.78002,27.7222,-0.06,10154.2,0,0,15.85 +47,4,060709,051256,2.77794,27.7224,-0.06,10153.1,0,0,15.85 +47,4,060709,051257,2.76991,27.7252,-0.06,10154.2,0,0,15.85 +47,4,060709,051258,2.78005,27.7280,-0.06,10153.7,0,0,15.85 +47,4,060709,051259,2.78043,27.7285,-0.06,10151.8,0,0,15.85 +47,4,060709,051300,2.77117,27.7294,-0.06,10152.9,0,0,15.85 +47,4,060709,051301,2.76511,27.7310,-0.06,10152.5,0,0,15.85 +47,4,060709,051302,2.77664,27.7324,-0.06,10154.7,0,0,15.85 +47,4,060709,051303,2.78012,27.7342,-0.06,10155.4,0,0,15.85 +47,4,060709,051304,2.77824,27.7343,-0.06,10153.4,0,0,15.85 +47,4,060709,051305,2.77663,27.7362,-0.06,10153.1,0,0,15.85 +47,4,060709,051306,2.78768,27.7364,-0.06,10153.3,0,0,15.85 +47,4,060709,051307,2.79381,27.7362,-0.06,10153.4,0,0,15.85 +47,4,060709,051308,2.77615,27.7358,-0.06,10154.9,0,0,15.85 +47,4,060709,051309,2.74038,27.7299,-0.06,10153.9,0,0,15.85 +47,4,060709,051310,2.73106,27.7263,-0.06,10153.8,0,0,15.85 +47,4,060709,051311,2.77344,27.7260,-0.06,10153.2,0,0,15.85 +47,4,060709,051312,2.80349,27.7276,-0.06,10153.4,0,0,15.85 +47,5,060709,051313,2.78763,27.7291,-0.06,10154.7,0,0,15.85 +47,100,060709,051314,1,1,5,8,60,25,1022780,112,1,0,0,0,0,6,2,15.85 +47,5,060709,051314,2.95515,27.7328,-0.06,10155.4,0,0,15.74 +47,5,060709,051315,2.93518,27.7352,-0.06,10157.7,0,0,15.74 +47,5,060709,051316,2.95129,27.7339,-0.06,10153.9,0,0,15.74 +47,5,060709,051317,2.99767,27.7342,-0.06,10153.0,0,0,15.71 +47,5,060709,051318,2.99846,27.7341,-0.06,10155.1,50,164,15.74 +47,5,060709,051319,2.94260,27.7322,-0.06,10153.6,50,164,15.72 +47,5,060709,051320,2.89135,27.7340,-0.06,10153.7,58,51,15.72 +47,6,060709,051321,2.84591,27.7359,-0.06,10154.9,58,51,15.72 +47,100,060709,051322,1,1,6,60,60,25,1022780,112,1,0,0,0,0,6,2,15.72 +47,6,060709,051322,2.85783,27.7385,-0.06,10154.7,58,51,15.72 +47,6,060709,051323,2.88870,27.7402,-0.06,10155.4,58,51,15.72 +47,6,060709,051324,2.87041,27.7414,-0.06,10155.1,58,51,15.73 +47,6,060709,051325,2.84458,27.7424,-0.06,10155.6,58,51,15.72 +47,6,060709,051326,2.82083,27.7437,-0.06,10153.7,58,51,15.72 +47,6,060709,051327,2.80465,27.7448,-0.06,10154.4,58,51,15.72 +47,6,060709,051328,2.79806,27.7460,-0.06,10152.3,58,51,15.72 +47,6,060709,051329,2.78734,27.7461,-0.06,10153.7,58,51,15.72 +47,6,060709,051330,2.78653,27.7472,-0.06,10155.1,58,51,15.72 +47,6,060709,051331,2.78951,27.7481,-0.06,10154.2,58,51,15.72 +47,6,060709,051332,2.77755,27.7483,-0.06,10154.3,58,51,15.72 +47,6,060709,051333,2.76282,27.7491,-0.06,10154.9,58,51,15.72 +47,6,060709,051334,2.74872,27.7502,-0.06,10156.0,58,51,15.72 +47,6,060709,051335,2.74885,27.7530,-0.06,10155.2,58,51,15.72 +47,6,060709,051336,2.74973,27.7537,-0.06,10154.7,58,51,15.72 +47,6,060709,051337,2.73574,27.7547,-0.06,10155.2,58,51,15.72 +47,6,060709,051338,2.72077,27.7549,-0.06,10153.3,58,51,15.72 +47,6,060709,051339,2.70421,27.7545,-0.06,10154.7,58,51,15.72 +47,6,060709,051340,2.69827,27.7527,-0.06,10155.2,58,51,15.72 +47,6,060709,051341,2.70447,27.7521,-0.06,10154.1,58,51,15.72 +47,6,060709,051342,2.71257,27.7509,-0.06,10153.1,58,51,15.72 +47,6,060709,051343,2.69619,27.7501,-0.06,10154.4,58,51,15.72 +47,6,060709,051344,2.66918,27.7506,-0.06,10153.1,58,51,15.72 +47,6,060709,051345,2.66699,27.7525,-0.06,10154.4,58,51,15.72 +47,6,060709,051346,2.68376,27.7493,-0.06,10153.2,58,51,15.72 +47,6,060709,051347,2.69341,27.7487,-0.06,10152.8,58,51,15.72 +47,6,060709,051348,2.67074,27.7484,-0.06,10154.8,58,51,15.72 +47,6,060709,051349,2.64534,27.7488,-0.06,10153.3,58,51,15.72 +47,6,060709,051350,2.65095,27.7492,-0.06,10153.2,58,51,15.72 +47,6,060709,051351,2.66490,27.7494,-0.06,10155.4,58,51,15.72 +47,6,060709,051352,2.66576,27.7487,-0.06,10153.3,58,51,15.72 +47,6,060709,051353,2.64948,27.7507,-0.06,10154.2,58,51,15.72 +47,6,060709,051354,2.63640,27.7502,-0.06,10154.2,58,51,15.72 +47,6,060709,051355,2.63766,27.7504,-0.06,10155.1,58,51,15.72 +47,6,060709,051356,2.64219,27.7521,-0.06,10153.5,58,51,15.72 +47,6,060709,051357,2.63796,27.7519,-0.06,10153.1,58,51,15.72 +47,6,060709,051358,2.63702,27.7502,-0.06,10154.2,58,51,15.72 +47,6,060709,051359,2.63427,27.7498,-0.06,10153.9,58,51,15.72 +47,6,060709,051400,2.62536,27.7490,-0.06,10155.2,58,51,15.72 +47,6,060709,051401,2.61811,27.7472,-0.06,10154.7,58,51,15.72 +47,6,060709,051402,2.61243,27.7475,-0.06,10153.9,58,51,15.72 +47,6,060709,051403,2.61865,27.7466,-0.06,10154.3,58,51,15.72 +47,6,060709,051404,2.61521,27.7476,-0.06,10154.4,58,51,15.72 +47,6,060709,051405,2.60607,27.7458,-0.06,10153.8,58,51,15.72 +47,6,060709,051406,2.61245,27.7462,-0.05,10154.9,58,51,15.72 +47,6,060709,051407,2.61658,27.7474,-0.06,10154.4,58,51,15.71 +47,6,060709,051408,2.60082,27.7478,-0.06,10153.9,58,51,15.72 +47,6,060709,051409,2.59357,27.7493,-0.06,10152.9,58,51,15.71 +47,6,060709,051410,2.59726,27.7498,-0.06,10152.3,58,51,15.72 +47,6,060709,051411,2.60596,27.7494,-0.06,10153.9,58,51,15.72 +47,6,060709,051412,2.61984,27.7428,-0.06,10153.8,58,51,15.72 +47,6,060709,051413,2.61509,27.7344,-0.06,10155.2,58,51,15.72 +47,6,060709,051414,2.58966,27.7314,-0.06,10154.9,58,51,15.72 +47,6,060709,051415,2.58448,27.7330,-0.06,10154.7,58,51,15.71 +47,6,060709,051416,2.59406,27.7366,-0.06,10153.4,58,51,15.72 +47,6,060709,051417,2.60308,27.7398,-0.06,10155.1,58,51,15.72 +47,6,060709,051418,2.60153,27.7430,-0.06,10152.3,62,166,15.71 +47,6,060709,051419,2.58791,27.7464,-0.06,10153.4,67,166,15.71 +47,6,060709,051420,2.58367,27.7502,-0.06,10153.9,59,154,15.71 +47,6,060709,051421,2.59757,27.7508,-0.06,10154.7,67,163,15.71 +47,100,060709,051428,1,1,10,3,60,29,1022776,118,1,0,0,0,0,6,2,15.71 +47,100,060709,052711,1,1,3,11,15,29,1022783,118,1,0,0,0,0,6,2,15.92 +47,100,060709,052722,1,1,4,60,60,29,1022783,118,1,0,0,0,0,6,2,15.91 +47,4,060709,052722,0.00000,0.0000,0.00,0.0,0,0,15.86 +47,4,060709,052723,0.00000,0.0000,0.00,0.0,0,0,15.85 +47,4,060709,052724,0.00000,0.0000,0.00,0.0,0,0,15.85 +47,4,060709,052725,2.49084,28.6111,-0.06,10153.4,0,0,15.85 +47,4,060709,052726,2.49175,28.6136,-0.06,10154.9,0,0,15.85 +47,4,060709,052727,2.47821,28.6174,-0.06,10153.5,0,0,15.85 +47,4,060709,052728,2.45821,28.6198,-0.06,10155.7,0,0,15.85 +47,4,060709,052729,2.47867,28.6229,-0.06,10155.4,0,0,15.85 +47,4,060709,052730,2.49617,28.6280,-0.06,10153.4,0,0,15.85 +47,4,060709,052731,2.49805,28.6310,-0.06,10154.0,0,0,15.85 +47,4,060709,052732,2.49039,28.6319,-0.06,10153.4,0,0,15.85 +47,4,060709,052733,2.48482,28.6313,-0.06,10155.0,0,0,15.85 +47,4,060709,052734,2.48856,28.6303,-0.06,10155.4,0,0,15.85 +47,4,060709,052735,2.48048,28.6301,-0.06,10155.4,0,0,15.85 +47,4,060709,052736,2.48318,28.6312,-0.06,10153.2,0,0,15.85 +47,4,060709,052737,2.49360,28.6320,-0.06,10156.2,0,0,15.84 +47,4,060709,052738,2.50039,28.6292,-0.06,10155.7,0,0,15.85 +47,4,060709,052739,2.50755,28.6258,-0.06,10154.9,0,0,15.85 +47,4,060709,052740,2.49883,28.6216,-0.06,10155.9,0,0,15.85 +47,4,060709,052741,2.46810,28.6204,-0.06,10156.4,0,0,15.85 +47,4,060709,052742,2.47249,28.6189,-0.06,10154.4,0,0,15.85 +47,4,060709,052743,2.49632,28.6161,-0.06,10155.0,0,0,15.85 +47,4,060709,052744,2.50176,28.6143,-0.06,10156.7,0,0,15.85 +47,4,060709,052745,2.49957,28.6136,-0.06,10154.4,0,0,15.85 +47,4,060709,052746,2.49652,28.6139,-0.06,10155.0,0,0,15.85 +47,4,060709,052747,2.49002,28.6143,-0.06,10156.2,0,0,15.85 +47,4,060709,052748,2.48897,28.6154,-0.06,10154.7,0,0,15.84 +47,4,060709,052749,2.49492,28.6153,-0.06,10155.9,0,0,15.85 +47,4,060709,052750,2.50157,28.6174,-0.06,10154.9,0,0,15.85 +47,4,060709,052751,2.50328,28.6184,-0.06,10154.2,0,0,15.85 +47,4,060709,052752,2.49097,28.6215,-0.06,10155.2,0,0,15.85 +47,4,060709,052753,2.47608,28.6225,-0.06,10156.0,0,0,15.85 +47,4,060709,052754,2.48731,28.6231,-0.06,10155.0,0,0,15.85 +47,4,060709,052755,2.50403,28.6252,-0.06,10156.0,0,0,15.85 +47,4,060709,052756,2.50741,28.6251,-0.06,10155.7,0,0,15.84 +47,4,060709,052757,2.50860,28.6275,-0.06,10155.5,0,0,15.85 +47,4,060709,052758,2.49049,28.6292,-0.06,10155.4,0,0,15.85 +47,4,060709,052759,2.47500,28.6295,-0.06,10154.9,0,0,15.85 +47,4,060709,052800,2.49275,28.6234,-0.06,10155.4,0,0,15.85 +47,4,060709,052801,2.50099,28.6204,-0.06,10154.4,0,0,15.85 +47,4,060709,052802,2.49883,28.6231,-0.06,10156.0,0,0,15.85 +47,4,060709,052803,2.50067,28.6263,-0.06,10155.4,0,0,15.84 +47,4,060709,052804,2.50432,28.6263,-0.06,10155.6,0,0,15.85 +47,4,060709,052805,2.49348,28.6291,-0.06,10154.7,0,0,15.85 +47,4,060709,052806,2.48914,28.6311,-0.06,10154.4,0,0,15.84 +47,4,060709,052807,2.50137,28.6325,-0.06,10154.7,0,0,15.85 +47,4,060709,052808,2.50039,28.6353,-0.06,10155.2,0,0,15.85 +47,4,060709,052809,2.49438,28.6364,-0.05,10154.6,0,0,15.85 +47,4,060709,052810,2.49663,28.6374,-0.06,10156.2,0,0,15.85 +47,4,060709,052811,2.49480,28.6363,-0.06,10155.5,0,0,15.84 +47,4,060709,052812,2.49712,28.6364,-0.06,10155.4,0,0,15.85 +47,5,060709,052813,2.50566,28.6383,-0.06,10154.2,0,0,15.85 +47,100,060709,052814,1,1,5,8,60,32,1022780,118,1,0,0,0,0,6,2,15.85 +47,5,060709,052814,2.50675,28.6405,-0.06,10154.9,0,0,15.74 +47,5,060709,052815,2.49358,28.6431,-0.06,10155.5,0,0,15.74 +47,5,060709,052816,2.48716,28.6406,-0.06,10154.9,0,0,15.74 +47,5,060709,052817,2.49867,28.6348,-0.06,10154.4,0,0,15.72 +47,5,060709,052818,2.50248,28.6358,-0.06,10155.2,58,51,15.74 +47,5,060709,052819,2.50427,28.6384,-0.06,10156.7,58,51,15.72 +47,5,060709,052820,2.50261,28.6411,-0.06,10154.4,58,51,15.72 +47,6,060709,052821,2.49700,28.6398,-0.06,10156.2,58,51,15.72 +47,100,060709,052822,1,1,6,60,60,33,1022780,118,1,0,0,0,0,6,2,15.72 +47,6,060709,052822,2.49253,28.6364,-0.06,10155.3,58,51,15.72 +47,6,060709,052823,2.50044,28.6353,-0.06,10155.5,58,51,15.72 +47,6,060709,052824,2.50537,28.6354,-0.06,10156.7,58,51,15.72 +47,6,060709,052825,2.50147,28.6337,-0.06,10155.4,58,51,15.72 +47,6,060709,052826,2.50243,28.6349,-0.06,10157.0,58,51,15.72 +47,6,060709,052827,2.50320,28.6342,-0.06,10155.1,58,51,15.72 +47,6,060709,052828,2.50079,28.6364,-0.06,10155.1,58,51,15.72 +47,6,060709,052829,2.49438,28.6381,-0.06,10154.3,58,51,15.72 +47,6,060709,052830,2.49647,28.6404,-0.06,10155.5,58,51,15.72 +47,6,060709,052831,2.50842,28.6418,-0.06,10155.7,58,51,15.72 +47,6,060709,052832,2.50579,28.6401,-0.06,10155.1,58,51,15.72 +47,6,060709,052833,2.50591,28.6388,-0.06,10157.2,58,51,15.72 +47,6,060709,052834,2.51416,28.6357,-0.06,10154.4,58,51,15.72 +47,6,060709,052835,2.49310,28.6305,-0.06,10156.6,58,51,15.72 +47,6,060709,052836,2.46723,28.6232,-0.06,10156.4,58,51,15.72 +47,6,060709,052837,2.49537,28.6198,-0.06,10156.4,58,51,15.72 +47,6,060709,052838,2.51838,28.6192,-0.06,10154.7,58,51,15.72 +47,6,060709,052839,2.51487,28.6196,-0.06,10155.1,58,51,15.72 +47,6,060709,052840,2.49550,28.6167,-0.06,10154.9,58,51,15.72 +47,6,060709,052841,2.49956,28.6165,-0.06,10155.1,58,51,15.72 +47,6,060709,052842,2.50221,28.6130,-0.06,10154.3,58,51,15.72 +47,6,060709,052843,2.48620,28.6106,-0.06,10156.3,58,51,15.72 +47,6,060709,052844,2.49955,28.6085,-0.06,10155.7,58,51,15.72 +47,6,060709,052845,2.51505,28.6051,-0.06,10157.1,57,51,15.72 +47,6,060709,052846,2.50338,28.6010,-0.06,10155.0,58,51,15.71 +47,6,060709,052847,2.49483,28.5984,-0.06,10156.3,84,139,15.71 +47,6,060709,052848,2.51037,28.5985,-0.06,10156.1,60,159,15.71 +47,6,060709,052849,2.51465,28.6004,-0.06,10155.7,61,159,15.72 +47,6,060709,052850,2.49960,28.6032,-0.06,10155.9,52,169,15.71 +47,6,060709,052851,2.49558,28.6038,-0.06,10155.9,72,170,15.71 +47,6,060709,052852,2.50628,28.6047,-0.06,10155.7,52,147,15.71 +47,6,060709,052853,2.50956,28.6050,-0.06,10156.1,73,77,15.72 +47,6,060709,052854,2.51085,28.6037,-0.06,10156.2,58,51,15.72 +47,6,060709,052855,2.50014,28.6040,-0.06,10154.7,57,95,15.71 +47,6,060709,052856,2.50037,28.6042,-0.06,10155.9,56,51,15.72 +47,6,060709,052857,2.51401,28.6054,-0.06,10155.6,58,51,15.72 +47,6,060709,052858,2.51801,28.6049,-0.06,10156.4,58,51,15.72 +47,6,060709,052859,2.50963,28.6046,-0.06,10155.7,58,51,15.72 +47,6,060709,052900,2.48749,28.6042,-0.06,10155.4,58,51,15.72 +47,6,060709,052901,2.49082,28.6054,-0.06,10155.7,58,51,15.72 +47,6,060709,052902,2.51708,28.6075,-0.06,10157.1,58,51,15.72 +47,6,060709,052903,2.52578,28.6099,-0.06,10155.4,58,51,15.72 +47,6,060709,052904,2.51065,28.6109,-0.06,10155.7,58,51,15.71 +47,6,060709,052905,2.49582,28.6096,-0.06,10156.4,58,51,15.71 +47,6,060709,052906,2.50522,28.6091,-0.06,10155.7,58,51,15.72 +47,6,060709,052907,2.51010,28.6095,-0.06,10154.8,58,51,15.71 +47,6,060709,052908,2.51534,28.6125,-0.06,10156.6,58,51,15.72 +47,6,060709,052909,2.52140,28.6154,-0.06,10155.7,58,51,15.71 +47,6,060709,052910,2.51682,28.6190,-0.06,10156.4,58,51,15.71 +47,6,060709,052911,2.50549,28.6238,-0.06,10155.4,58,51,15.71 +47,6,060709,052912,2.51030,28.6276,-0.06,10155.5,58,51,15.72 +47,6,060709,052913,2.52256,28.6301,-0.06,10155.0,58,51,15.72 +47,6,060709,052914,2.51710,28.6277,-0.06,10155.2,58,51,15.72 +47,6,060709,052915,2.51218,28.6221,-0.06,10156.7,58,51,15.71 +47,6,060709,052916,2.51441,28.6222,-0.06,10156.4,58,51,15.71 +47,6,060709,052917,2.51959,28.6227,-0.06,10156.7,58,51,15.71 +47,6,060709,052918,2.51702,28.6205,-0.06,10155.6,57,51,15.72 +47,6,060709,052919,2.51559,28.6161,-0.06,10155.0,56,68,15.71 +47,6,060709,052920,2.52141,28.6144,-0.06,10156.1,48,93,15.71 +47,6,060709,052921,2.52248,28.6113,-0.06,10157.4,64,114,15.71 +47,100,060709,052925,1,1,10,4,60,37,1022776,118,1,0,0,0,0,6,2,15.71 +47,100,060709,054211,1,1,3,11,15,37,1022767,118,1,0,0,0,0,6,2,15.91 +47,100,060709,054222,1,1,4,60,60,37,1022767,118,1,0,0,0,0,6,2,15.90 +47,4,060709,054222,0.00000,0.0000,0.00,0.0,0,0,15.84 +47,4,060709,054223,0.00000,0.0000,0.00,0.0,0,0,15.84 +47,4,060709,054224,0.00000,0.0000,0.00,0.0,0,0,15.84 +47,4,060709,054225,5.34109,25.5613,6.24,10313.1,0,0,15.84 +47,4,060709,054226,5.34052,25.5568,6.15,10388.3,0,0,15.84 +47,4,060709,054227,5.34076,25.5591,6.07,10441.1,0,0,15.84 +47,4,060709,054228,5.34052,25.5571,6.04,10481.9,0,0,15.84 +47,4,060709,054229,5.34076,25.5597,6.10,10509.0,0,0,15.84 +47,4,060709,054230,5.34052,25.5567,6.22,10529.7,0,0,15.84 +47,4,060709,054231,5.34082,25.5590,6.30,10549.7,0,0,15.84 +47,4,060709,054232,5.34073,25.5594,6.31,10563.5,0,0,15.84 +47,4,060709,054233,5.34074,25.5602,6.23,10571.6,0,0,15.84 +47,4,060709,054234,5.34046,25.5573,6.13,10577.7,0,0,15.84 +47,4,060709,054235,5.34046,25.5580,6.09,10582.9,0,0,15.84 +47,4,060709,054236,5.34100,25.5630,6.12,10587.5,0,0,15.84 +47,4,060709,054237,5.34088,25.5610,6.14,10592.2,0,0,15.84 +47,4,060709,054238,5.34099,25.5620,6.12,10592.7,0,0,15.84 +47,4,060709,054239,5.34127,25.5646,6.12,10596.3,0,0,15.84 +47,4,060709,054240,5.34058,25.5596,6.19,10599.5,0,0,15.84 +47,4,060709,054241,5.34070,25.5598,6.27,10600.8,0,0,15.84 +47,4,060709,054242,5.34067,25.5594,6.27,10602.0,0,0,15.84 +47,4,060709,054243,5.34061,25.5597,6.20,10602.3,0,0,15.84 +47,4,060709,054244,5.34064,25.5586,6.18,10603.8,0,0,15.84 +47,4,060709,054245,5.34093,25.5620,6.17,10605.5,0,0,15.84 +47,4,060709,054246,5.34103,25.5627,6.15,10606.8,0,0,15.84 +47,4,060709,054247,5.34080,25.5614,6.13,10610.7,0,0,15.84 +47,4,060709,054248,5.34049,25.5605,6.11,10609.1,0,0,15.84 +47,4,060709,054249,5.34091,25.5621,6.12,10613.0,0,0,15.84 +47,4,060709,054250,5.34080,25.5606,6.16,10613.1,0,0,15.84 +47,4,060709,054251,5.34070,25.5602,6.20,10613.9,0,0,15.84 +47,4,060709,054252,5.34064,25.5597,6.20,10615.3,0,0,15.84 +47,4,060709,054253,5.34083,25.5612,6.19,10614.5,0,0,15.84 +47,4,060709,054254,5.34099,25.5622,6.21,10615.2,0,0,15.84 +47,4,060709,054255,5.34105,25.5634,6.25,10613.5,0,0,15.84 +47,4,060709,054256,5.34078,25.5611,6.23,10617.1,0,0,15.84 +47,4,060709,054257,5.34123,25.5645,6.14,10616.8,0,0,15.84 +47,4,060709,054258,5.34126,25.5647,6.06,10615.0,0,0,15.84 +47,4,060709,054259,5.34141,25.5664,6.07,10614.2,0,0,15.84 +47,4,060709,054300,5.34150,25.5671,6.16,10613.6,0,0,15.84 +47,4,060709,054301,5.34141,25.5662,6.24,10616.1,0,0,15.84 +47,4,060709,054302,5.34129,25.5650,6.26,10615.7,0,0,15.84 +47,4,060709,054303,5.34123,25.5650,6.24,10616.0,0,0,15.84 +47,4,060709,054304,5.34112,25.5637,6.18,10617.7,0,0,15.84 +47,4,060709,054305,5.34117,25.5639,6.12,10618.2,0,0,15.84 +47,4,060709,054306,5.34123,25.5652,6.10,10620.7,0,0,15.84 +47,4,060709,054307,5.34121,25.5643,6.14,10619.7,0,0,15.84 +47,4,060709,054308,5.34117,25.5636,6.20,10619.5,0,0,15.84 +47,4,060709,054309,5.34112,25.5633,6.23,10622.2,0,0,15.84 +47,4,060709,054310,5.34103,25.5628,6.23,10621.1,0,0,15.84 +47,4,060709,054311,5.34091,25.5620,6.19,10622.5,0,0,15.84 +47,4,060709,054312,5.34067,25.5590,6.15,10621.0,0,0,15.84 +47,5,060709,054313,5.34064,25.5598,6.15,10621.5,0,0,15.84 +47,100,060709,054314,1,1,5,8,60,40,1022764,118,1,0,0,0,0,6,2,15.84 +47,5,060709,054314,5.34058,25.5588,6.17,10620.2,0,0,15.73 +47,5,060709,054315,5.34059,25.5601,6.16,10618.3,0,0,15.73 +47,5,060709,054316,5.34043,25.5581,6.14,10618.6,0,0,15.73 +47,5,060709,054317,5.34040,25.5585,6.15,10620.2,0,0,15.71 +47,5,060709,054318,5.34042,25.5577,6.18,10620.0,79,86,15.73 +47,5,060709,054319,5.34028,25.5564,6.23,10620.8,79,86,15.71 +47,5,060709,054320,5.33998,25.5544,6.23,10619.8,80,85,15.71 +47,6,060709,054321,5.33980,25.5528,6.19,10621.7,79,85,15.71 +47,100,060709,054322,1,1,6,60,60,40,1022764,118,1,0,0,0,0,6,2,15.71 +47,6,060709,054322,5.33965,25.5516,6.15,10621.5,79,88,15.71 +47,6,060709,054323,5.33974,25.5523,6.12,10620.2,80,92,15.71 +47,6,060709,054324,5.33965,25.5515,6.14,10621.8,81,87,15.71 +47,6,060709,054325,5.33953,25.5509,6.17,10622.1,78,85,15.71 +47,6,060709,054326,5.33953,25.5514,6.17,10623.7,78,86,15.71 +47,6,060709,054327,5.33962,25.5512,6.16,10623.2,79,87,15.71 +47,6,060709,054328,5.33965,25.5524,6.16,10622.5,79,84,15.71 +47,6,060709,054329,5.33950,25.5509,6.19,10624.6,78,85,15.71 +47,6,060709,054330,5.33938,25.5497,6.23,10623.5,78,92,15.71 +47,6,060709,054331,5.33920,25.5494,6.25,10623.9,79,86,15.71 +47,6,060709,054332,5.33902,25.5471,6.25,10624.7,84,91,15.71 +47,6,060709,054333,5.33911,25.5479,6.18,10624.8,79,88,15.71 +47,6,060709,054334,5.33932,25.5494,6.11,10624.9,79,86,15.71 +47,6,060709,054335,5.33977,25.5535,6.07,10624.7,83,106,15.71 +47,6,060709,054336,5.33971,25.5529,6.06,10626.1,78,86,15.71 +47,6,060709,054337,5.33971,25.5524,6.07,10624.0,81,86,15.71 +47,6,060709,054338,5.33960,25.5515,6.11,10622.3,77,85,15.71 +47,6,060709,054339,5.33926,25.5489,6.21,10622.6,78,84,15.71 +47,6,060709,054340,5.33917,25.5480,6.31,10621.9,79,85,15.71 +47,6,060709,054341,5.33907,25.5471,6.34,10621.8,77,84,15.71 +47,6,060709,054342,5.33902,25.5473,6.28,10622.0,76,85,15.71 +47,6,060709,054343,5.33917,25.5470,6.16,10622.9,80,87,15.71 +47,6,060709,054344,5.33957,25.5508,6.10,10623.9,81,84,15.71 +47,6,060709,054345,5.33986,25.5537,6.05,10622.1,79,87,15.71 +47,6,060709,054346,5.34007,25.5548,5.99,10624.9,79,88,15.71 +47,6,060709,054347,5.34021,25.5574,6.00,10623.9,77,87,15.70 +47,6,060709,054348,5.33929,25.5504,6.13,10620.5,76,92,15.71 +47,6,060709,054349,5.33914,25.5480,6.32,10622.4,78,85,15.71 +47,6,060709,054350,5.33927,25.5486,6.40,10623.3,82,93,15.71 +47,6,060709,054351,5.33926,25.5492,6.34,10624.2,84,100,15.71 +47,6,060709,054352,5.33971,25.5514,6.23,10625.1,80,85,15.71 +47,6,060709,054353,5.34064,25.5582,6.12,10625.5,79,83,15.71 +47,6,060709,054354,5.34070,25.5608,6.04,10626.4,80,84,15.71 +47,6,060709,054355,5.34070,25.5606,5.99,10626.6,79,88,15.71 +47,6,060709,054356,5.34061,25.5592,6.03,10623.5,78,82,15.70 +47,6,060709,054357,5.34046,25.5578,6.17,10625.8,78,93,15.70 +47,6,060709,054358,5.34042,25.5570,6.27,10626.1,78,86,15.70 +47,6,060709,054359,5.34046,25.5580,6.29,10625.4,80,87,15.70 +47,6,060709,054400,5.34088,25.5609,6.26,10624.9,78,94,15.71 +47,6,060709,054401,5.34083,25.5599,6.26,10623.0,78,89,15.71 +47,6,060709,054402,5.34085,25.5613,6.21,10624.8,80,87,15.70 +47,6,060709,054403,5.34078,25.5607,6.09,10626.9,79,84,15.71 +47,6,060709,054404,5.34092,25.5618,6.02,10625.9,80,85,15.70 +47,6,060709,054405,5.34097,25.5618,6.07,10627.5,77,87,15.70 +47,6,060709,054406,5.34105,25.5626,6.18,10626.2,80,87,15.71 +47,6,060709,054407,5.34105,25.5623,6.27,10626.8,79,84,15.70 +47,6,060709,054408,5.34064,25.5592,6.31,10626.6,78,85,15.70 +47,6,060709,054409,5.34073,25.5593,6.30,10625.8,82,88,15.71 +47,6,060709,054410,5.34073,25.5601,6.25,10627.8,79,85,15.70 +47,6,060709,054411,5.34082,25.5604,6.13,10627.1,81,85,15.71 +47,6,060709,054412,5.34118,25.5634,6.04,10625.2,81,84,15.70 +47,6,060709,054413,5.34117,25.5638,6.04,10627.9,79,84,15.70 +47,6,060709,054414,5.34108,25.5628,6.11,10628.8,80,86,15.71 +47,6,060709,054415,5.34092,25.5620,6.19,10627.5,81,87,15.70 +47,6,060709,054416,5.34061,25.5591,6.24,10627.9,79,84,15.70 +47,6,060709,054417,5.34073,25.5588,6.25,10628.1,81,83,15.71 +47,6,060709,054418,5.34051,25.5579,6.25,10626.4,78,85,15.70 +47,6,060709,054419,5.34043,25.5576,6.25,10627.1,80,85,15.70 +47,6,060709,054420,5.34052,25.5578,6.25,10629.2,79,88,15.70 +47,6,060709,054421,5.34055,25.5587,6.19,10628.6,82,90,15.70 +47,100,060709,054426,1,1,10,3,60,44,1022760,118,1,0,0,0,0,6,2,15.70 +47,100,060709,055711,1,1,3,11,15,44,1022767,118,1,0,0,0,0,6,2,15.91 +47,100,060709,055722,1,1,4,60,60,44,1022767,118,1,0,0,0,0,6,2,15.90 +47,4,060709,055722,0.00000,0.0000,0.00,0.0,0,0,15.84 +47,4,060709,055723,0.00000,0.0000,0.00,0.0,0,0,15.84 +47,4,060709,055724,0.00000,0.0000,0.00,0.0,0,0,15.84 +47,4,060709,055725,5.33496,25.5107,6.52,10308.3,0,0,15.84 +47,4,060709,055726,5.33550,25.5139,6.48,10382.1,0,0,15.84 +47,4,060709,055727,5.33571,25.5167,6.44,10438.6,0,0,15.84 +47,4,060709,055728,5.33550,25.5147,6.47,10478.7,0,0,15.84 +47,4,060709,055729,5.33529,25.5132,6.51,10507.3,0,0,15.84 +47,4,060709,055730,5.33535,25.5132,6.50,10530.3,0,0,15.84 +47,4,060709,055731,5.33550,25.5142,6.46,10546.0,0,0,15.83 +47,4,060709,055732,5.33634,25.5212,6.43,10556.8,0,0,15.84 +47,4,060709,055733,5.33571,25.5180,6.45,10565.4,0,0,15.84 +47,4,060709,055734,5.33574,25.5171,6.49,10572.0,0,0,15.83 +47,4,060709,055735,5.33565,25.5160,6.51,10579.8,0,0,15.84 +47,4,060709,055736,5.33571,25.5164,6.49,10584.0,0,0,15.84 +47,4,060709,055737,5.33556,25.5156,6.46,10587.4,0,0,15.84 +47,4,060709,055738,5.33562,25.5155,6.46,10590.9,0,0,15.83 +47,4,060709,055739,5.33565,25.5159,6.49,10593.2,0,0,15.84 +47,4,060709,055740,5.33559,25.5157,6.50,10597.3,0,0,15.84 +47,4,060709,055741,5.33571,25.5163,6.48,10598.3,0,0,15.84 +47,4,060709,055742,5.33582,25.5174,6.48,10602.0,0,0,15.83 +47,4,060709,055743,5.33571,25.5173,6.51,10602.3,0,0,15.84 +47,4,060709,055744,5.33586,25.5171,6.51,10604.2,0,0,15.84 +47,4,060709,055745,5.33588,25.5179,6.47,10604.4,0,0,15.84 +47,4,060709,055746,5.33586,25.5183,6.43,10604.7,0,0,15.83 +47,4,060709,055747,5.33598,25.5186,6.46,10605.5,0,0,15.84 +47,4,060709,055748,5.33571,25.5171,6.51,10605.1,0,0,15.84 +47,4,060709,055749,5.33568,25.5166,6.50,10607.2,0,0,15.84 +47,4,060709,055750,5.33595,25.5179,6.45,10608.7,0,0,15.83 +47,4,060709,055751,5.33610,25.5202,6.44,10609.0,0,0,15.83 +47,4,060709,055752,5.33601,25.5194,6.48,10611.5,0,0,15.83 +47,4,060709,055753,5.33613,25.5197,6.51,10609.8,0,0,15.83 +47,4,060709,055754,5.33595,25.5189,6.53,10613.2,0,0,15.83 +47,4,060709,055755,5.33591,25.5182,6.51,10614.9,0,0,15.83 +47,4,060709,055756,5.33598,25.5182,6.48,10615.7,0,0,15.83 +47,4,060709,055757,5.33595,25.5184,6.47,10614.2,0,0,15.83 +47,4,060709,055758,5.33609,25.5195,6.50,10615.4,0,0,15.83 +47,4,060709,055759,5.33607,25.5190,6.52,10616.4,0,0,15.83 +47,4,060709,055800,5.33610,25.5186,6.51,10614.0,0,0,15.83 +47,4,060709,055801,5.33591,25.5179,6.50,10615.2,0,0,15.83 +47,4,060709,055802,5.33622,25.5204,6.52,10614.8,0,0,15.83 +47,4,060709,055803,5.33625,25.5208,6.52,10618.8,0,0,15.83 +47,4,060709,055804,5.33614,25.5196,6.48,10618.4,0,0,15.83 +47,4,060709,055805,5.33607,25.5193,6.44,10619.4,0,0,15.83 +47,4,060709,055806,5.33634,25.5208,6.46,10621.4,0,0,15.83 +47,4,060709,055807,5.33634,25.5214,6.52,10621.1,0,0,15.83 +47,4,060709,055808,5.33657,25.5229,6.54,10619.6,0,0,15.83 +47,4,060709,055809,5.33667,25.5244,6.52,10622.0,0,0,15.83 +47,4,060709,055810,5.33655,25.5233,6.55,10621.2,0,0,15.83 +47,4,060709,055811,5.33652,25.5220,6.61,10622.1,0,0,15.83 +47,4,060709,055812,5.33652,25.5233,6.63,10620.9,0,0,15.83 +47,5,060709,055813,5.33652,25.5215,6.57,10622.4,0,0,15.83 +47,100,060709,055814,1,1,5,8,60,47,1022764,118,1,0,0,0,0,6,2,15.83 +47,5,060709,055814,5.33667,25.5230,6.50,10623.0,0,0,15.73 +47,5,060709,055815,5.33652,25.5226,6.46,10622.9,0,0,15.72 +47,5,060709,055816,5.33657,25.5228,6.46,10621.9,0,0,15.72 +47,5,060709,055817,5.33675,25.5245,6.51,10621.3,0,0,15.71 +47,5,060709,055818,5.33667,25.5236,6.59,10622.2,80,84,15.72 +47,5,060709,055819,5.33675,25.5239,6.64,10621.7,80,84,15.71 +47,5,060709,055820,5.33682,25.5245,6.65,10622.9,81,87,15.71 +47,6,060709,055821,5.33675,25.5245,6.64,10624.2,81,85,15.71 +47,100,060709,055822,1,1,6,60,60,48,1022764,118,1,0,0,0,0,6,2,15.71 +47,6,060709,055822,5.33714,25.5274,6.60,10622.9,79,87,15.71 +47,6,060709,055823,5.33734,25.5286,6.52,10622.9,81,89,15.71 +47,6,060709,055824,5.33717,25.5282,6.49,10622.1,80,87,15.71 +47,6,060709,055825,5.33699,25.5257,6.52,10622.0,89,105,15.71 +47,6,060709,055826,5.33696,25.5251,6.56,10621.1,83,90,15.71 +47,6,060709,055827,5.33687,25.5250,6.59,10620.6,85,93,15.71 +47,6,060709,055828,5.33678,25.5240,6.61,10622.3,83,90,15.71 +47,6,060709,055829,5.33699,25.5257,6.64,10622.9,79,86,15.71 +47,6,060709,055830,5.33690,25.5253,6.64,10624.7,83,89,15.71 +47,6,060709,055831,5.33720,25.5280,6.60,10625.6,82,87,15.71 +47,6,060709,055832,5.33732,25.5286,6.56,10623.9,80,85,15.71 +47,6,060709,055833,5.33738,25.5291,6.55,10626.4,80,88,15.71 +47,6,060709,055834,5.33711,25.5271,6.56,10625.9,79,87,15.71 +47,6,060709,055835,5.33714,25.5268,6.58,10625.9,80,86,15.71 +47,6,060709,055836,5.33717,25.5272,6.59,10626.2,83,93,15.71 +47,6,060709,055837,5.33726,25.5278,6.59,10625.8,79,85,15.71 +47,6,060709,055838,5.33726,25.5276,6.60,10623.9,81,86,15.71 +47,6,060709,055839,5.33720,25.5278,6.64,10625.7,83,88,15.71 +47,6,060709,055840,5.33723,25.5277,6.69,10627.5,81,90,15.71 +47,6,060709,055841,5.33717,25.5273,6.68,10629.6,79,86,15.71 +47,6,060709,055842,5.33780,25.5306,6.58,10627.6,83,88,15.71 +47,6,060709,055843,5.33735,25.5291,6.50,10628.3,81,88,15.71 +47,6,060709,055844,5.33729,25.5282,6.51,10627.0,81,87,15.71 +47,6,060709,055845,5.33738,25.5282,6.55,10627.6,80,89,15.71 +47,6,060709,055846,5.33738,25.5291,6.61,10626.6,81,88,15.71 +47,6,060709,055847,5.33737,25.5285,6.70,10627.1,78,85,15.71 +47,6,060709,055848,5.33744,25.5291,6.74,10627.8,79,87,15.71 +47,6,060709,055849,5.33747,25.5293,6.68,10626.1,83,89,15.70 +47,6,060709,055850,5.33784,25.5320,6.54,10627.3,81,87,15.71 +47,6,060709,055851,5.33786,25.5321,6.46,10625.1,81,89,15.71 +47,6,060709,055852,5.33771,25.5302,6.51,10625.8,79,87,15.71 +47,6,060709,055853,5.33752,25.5298,6.63,10626.6,79,88,15.71 +47,6,060709,055854,5.33735,25.5283,6.75,10624.4,80,89,15.71 +47,6,060709,055855,5.33723,25.5274,6.80,10626.1,80,86,15.71 +47,6,060709,055856,5.33687,25.5243,6.73,10624.1,81,94,15.71 +47,6,060709,055857,5.33768,25.5297,6.56,10624.5,82,86,15.71 +47,6,060709,055858,5.33789,25.5317,6.46,10625.0,80,85,15.70 +47,6,060709,055859,5.33786,25.5321,6.51,10626.8,82,89,15.71 +47,6,060709,055900,5.33765,25.5303,6.63,10624.8,80,88,15.70 +47,6,060709,055901,5.33753,25.5297,6.73,10626.0,79,88,15.71 +47,6,060709,055902,5.33753,25.5294,6.77,10624.4,81,84,15.71 +47,6,060709,055903,5.33747,25.5291,6.73,10624.6,83,92,15.71 +47,6,060709,055904,5.33732,25.5278,6.61,10625.3,81,86,15.70 +47,6,060709,055905,5.33744,25.5289,6.51,10622.9,82,87,15.71 +47,6,060709,055906,5.33741,25.5286,6.48,10622.5,80,88,15.70 +47,6,060709,055907,5.33723,25.5273,6.56,10622.9,81,87,15.70 +47,6,060709,055908,5.33729,25.5278,6.71,10622.1,81,86,15.70 +47,6,060709,055909,5.33750,25.5296,6.81,10622.8,80,89,15.71 +47,6,060709,055910,5.33735,25.5287,6.80,10626.0,81,86,15.70 +47,6,060709,055911,5.33759,25.5302,6.73,10627.5,81,84,15.70 +47,6,060709,055912,5.33765,25.5308,6.64,10630.1,82,86,15.70 +47,6,060709,055913,5.33765,25.5308,6.57,10629.9,81,88,15.70 +47,6,060709,055914,5.33750,25.5301,6.52,10628.2,80,88,15.70 +47,6,060709,055915,5.33759,25.5301,6.50,10629.5,80,88,15.71 +47,6,060709,055916,5.33771,25.5311,6.53,10629.1,77,88,15.70 +47,6,060709,055917,5.33765,25.5306,6.63,10626.8,79,86,15.70 +47,6,060709,055918,5.33744,25.5283,6.77,10628.7,80,91,15.70 +47,6,060709,055919,5.33690,25.5255,6.85,10628.5,81,87,15.70 +47,6,060709,055920,5.33735,25.5271,6.82,10631.6,79,87,15.70 +47,6,060709,055921,5.33741,25.5281,6.66,10630.3,84,98,15.70 +47,100,060709,055925,1,1,10,2,60,51,1022760,118,1,0,0,0,0,6,2,15.70 +47,100,060709,061211,1,1,3,11,15,51,1022751,118,1,0,0,0,0,6,2,15.90 +47,100,060709,061222,1,1,4,60,60,52,1022751,118,1,0,0,0,0,6,2,15.89 +47,4,060709,061222,0.00000,0.0000,0.00,0.0,0,0,15.83 +47,4,060709,061223,0.00000,0.0000,0.00,0.0,0,0,15.83 +47,4,060709,061224,0.00000,0.0000,0.00,0.0,0,0,15.83 +47,4,060709,061225,5.33655,25.5184,7.22,10335.9,0,0,15.83 +47,4,060709,061226,5.33646,25.5179,7.17,10404.7,0,0,15.83 +47,4,060709,061227,5.33616,25.5156,7.12,10453.3,0,0,15.83 +47,4,060709,061228,5.33598,25.5155,7.08,10487.4,0,0,15.83 +47,4,060709,061229,5.33600,25.5147,7.04,10514.6,0,0,15.82 +47,4,060709,061230,5.33631,25.5167,7.02,10533.2,0,0,15.83 +47,4,060709,061231,5.33628,25.5168,7.05,10547.9,0,0,15.83 +47,4,060709,061232,5.33612,25.5157,7.12,10561.1,0,0,15.82 +47,4,060709,061233,5.33613,25.5152,7.16,10572.7,0,0,15.82 +47,4,060709,061234,5.33622,25.5160,7.13,10578.8,0,0,15.82 +47,4,060709,061235,5.33656,25.5182,7.10,10586.7,0,0,15.83 +47,4,060709,061236,5.33652,25.5171,7.11,10590.2,0,0,15.82 +47,4,060709,061237,5.33646,25.5172,7.14,10594.7,0,0,15.82 +47,4,060709,061238,5.33641,25.5173,7.15,10599.2,0,0,15.82 +47,4,060709,061239,5.33640,25.5169,7.11,10602.9,0,0,15.82 +47,4,060709,061240,5.33619,25.5163,7.06,10604.6,0,0,15.82 +47,4,060709,061241,5.33612,25.5146,7.04,10606.1,0,0,15.82 +47,4,060709,061242,5.33631,25.5157,7.04,10606.9,0,0,15.82 +47,4,060709,061243,5.33634,25.5166,7.07,10609.3,0,0,15.82 +47,4,060709,061244,5.33634,25.5169,7.11,10610.4,0,0,15.82 +47,4,060709,061245,5.33634,25.5163,7.16,10612.5,0,0,15.83 +47,4,060709,061246,5.33622,25.5165,7.19,10613.6,0,0,15.82 +47,4,060709,061247,5.33610,25.5151,7.17,10615.4,0,0,15.82 +47,4,060709,061248,5.33616,25.5146,7.06,10615.9,0,0,15.82 +47,4,060709,061249,5.33607,25.5146,6.98,10617.9,0,0,15.83 +47,4,060709,061250,5.33643,25.5174,7.00,10617.8,0,0,15.82 +47,4,060709,061251,5.33631,25.5158,7.11,10618.0,0,0,15.82 +47,4,060709,061252,5.33652,25.5167,7.20,10620.0,0,0,15.82 +47,4,060709,061253,5.33672,25.5187,7.19,10620.2,0,0,15.82 +47,4,060709,061254,5.33644,25.5172,7.12,10622.2,0,0,15.83 +47,4,060709,061255,5.33622,25.5163,7.04,10623.5,0,0,15.82 +47,4,060709,061256,5.33652,25.5175,7.00,10622.7,0,0,15.82 +47,4,060709,061257,5.33691,25.5197,7.03,10623.5,0,0,15.82 +47,4,060709,061258,5.33667,25.5190,7.09,10625.2,0,0,15.82 +47,4,060709,061259,5.33669,25.5182,7.14,10627.1,0,0,15.82 +47,4,060709,061300,5.33664,25.5186,7.16,10629.4,0,0,15.82 +47,4,060709,061301,5.33655,25.5182,7.15,10628.7,0,0,15.82 +47,4,060709,061302,5.33687,25.5198,7.13,10628.7,0,0,15.82 +47,4,060709,061303,5.33661,25.5187,7.08,10626.9,0,0,15.83 +47,4,060709,061304,5.33687,25.5192,7.03,10628.7,0,0,15.82 +47,4,060709,061305,5.33682,25.5196,7.00,10628.6,0,0,15.82 +47,4,060709,061306,5.33676,25.5191,7.05,10628.5,0,0,15.83 +47,4,060709,061307,5.33672,25.5188,7.14,10628.2,0,0,15.82 +47,4,060709,061308,5.33669,25.5185,7.22,10627.2,0,0,15.82 +47,4,060709,061309,5.33656,25.5177,7.21,10628.0,0,0,15.82 +47,4,060709,061310,5.33577,25.5134,7.14,10628.5,0,0,15.83 +47,4,060709,061311,5.33571,25.5114,7.03,10630.4,0,0,15.82 +47,4,060709,061312,5.33583,25.5121,6.98,10628.2,0,0,15.82 +47,5,060709,061313,5.33589,25.5133,7.00,10630.3,0,0,15.82 +47,100,060709,061314,1,1,5,8,60,55,1022748,118,1,0,0,0,0,6,2,15.82 +47,5,060709,061314,5.33586,25.5128,7.05,10628.9,0,0,15.72 +47,5,060709,061315,5.33580,25.5134,7.11,10628.2,0,0,15.72 +47,5,060709,061316,5.33580,25.5131,7.16,10630.4,0,0,15.72 +47,5,060709,061317,5.33598,25.5139,7.19,10630.0,0,0,15.70 +47,5,060709,061318,5.33598,25.5144,7.19,10630.4,82,87,15.72 +47,5,060709,061319,5.33588,25.5133,7.16,10629.5,82,87,15.71 +47,5,060709,061320,5.33580,25.5124,7.08,10630.3,83,90,15.71 +47,6,060709,061321,5.33586,25.5128,7.01,10630.0,85,90,15.71 +47,100,060709,061322,1,1,6,60,60,55,1022748,118,1,0,0,0,0,6,2,15.71 +47,6,060709,061322,5.33606,25.5146,6.97,10629.6,82,88,15.71 +47,6,060709,061323,5.33601,25.5141,6.99,10631.1,84,89,15.71 +47,6,060709,061324,5.33601,25.5140,7.07,10630.8,84,89,15.70 +47,6,060709,061325,5.33600,25.5146,7.15,10630.1,84,87,15.70 +47,6,060709,061326,5.33598,25.5141,7.17,10630.9,84,87,15.70 +47,6,060709,061327,5.33634,25.5160,7.14,10632.5,90,104,15.70 +47,6,060709,061328,5.33612,25.5152,7.12,10629.3,82,89,15.70 +47,6,060709,061329,5.33643,25.5160,7.10,10632.5,85,88,15.71 +47,6,060709,061330,5.33664,25.5173,7.05,10632.1,83,87,15.71 +47,6,060709,061331,5.33652,25.5168,7.01,10633.9,84,94,15.71 +47,6,060709,061332,5.33640,25.5162,7.03,10632.5,86,91,15.70 +47,6,060709,061333,5.33640,25.5167,7.11,10631.4,85,133,15.70 +47,6,060709,061334,5.33631,25.5154,7.18,10631.1,81,88,15.70 +47,6,060709,061335,5.33619,25.5150,7.18,10633.3,85,107,15.70 +47,6,060709,061336,5.33628,25.5152,7.13,10635.1,83,97,15.70 +47,6,060709,061337,5.33643,25.5164,7.06,10635.9,87,88,15.70 +47,6,060709,061338,5.33640,25.5166,7.01,10635.4,83,88,15.70 +47,6,060709,061339,5.33652,25.5170,6.98,10635.2,83,89,15.70 +47,6,060709,061340,5.33646,25.5170,7.02,10635.5,85,89,15.70 +47,6,060709,061341,5.33641,25.5167,7.12,10635.4,82,97,15.70 +47,6,060709,061342,5.33649,25.5167,7.21,10633.6,85,86,15.70 +47,130,091309,014048,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014049,Bad_Power,_Return_to_Sleep +47,110,091309,014050,0,1,28,36947,36953,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014050,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014051,Bad_Power,_Return_to_Sleep +47,110,091309,014051,0,1,28,36948,36954,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014051,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014052,Bad_Power,_Return_to_Sleep +47,110,091309,014053,0,1,28,36949,36955,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014053,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014054,Bad_Power,_Return_to_Sleep +47,110,091309,014054,0,1,28,36950,36956,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014054,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014055,Bad_Power,_Return_to_Sleep +47,110,091309,014056,0,1,28,36951,36957,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014056,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014057,Bad_Power,_Return_to_Sleep +47,110,091309,014057,0,1,28,36952,36958,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014057,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014058,Bad_Power,_Return_to_Sleep +47,110,091309,014058,0,1,28,36953,36959,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014058,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014059,Bad_Power,_Return_to_Sleep +47,110,091309,014100,0,1,28,36954,36960,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014100,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014101,Bad_Power,_Return_to_Sleep +47,110,091309,014101,0,1,28,36955,36961,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014101,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014102,Bad_Power,_Return_to_Sleep +47,110,091309,014103,0,1,28,36956,36962,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014103,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014104,Bad_Power,_Return_to_Sleep +47,110,091309,014104,0,1,28,36957,36963,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014104,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014105,Bad_Power,_Return_to_Sleep +47,110,091309,014106,0,1,28,36958,36964,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014106,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014107,Bad_Power,_Return_to_Sleep +47,110,091309,014107,0,1,28,36959,36965,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014107,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014108,Bad_Power,_Return_to_Sleep +47,110,091309,014109,0,1,28,36960,36966,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014109,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014109,Bad_Power,_Return_to_Sleep +47,110,091309,014110,0,1,28,36961,36967,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014110,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014111,Bad_Power,_Return_to_Sleep +47,110,091309,014111,0,1,28,36962,36968,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014111,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014112,Bad_Power,_Return_to_Sleep +47,110,091309,014113,0,1,28,36963,36969,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014113,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014114,Bad_Power,_Return_to_Sleep +47,110,091309,014114,0,1,28,36964,36970,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014114,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014115,Bad_Power,_Return_to_Sleep +47,110,091309,014116,0,1,28,36965,36971,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014116,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014117,Bad_Power,_Return_to_Sleep +47,110,091309,014117,0,1,28,36966,36972,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014117,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014118,Bad_Power,_Return_to_Sleep +47,110,091309,014119,0,1,28,36967,36973,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014119,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014120,Bad_Power,_Return_to_Sleep +47,110,091309,014120,0,1,28,36968,36974,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014120,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014121,Bad_Power,_Return_to_Sleep +47,110,091309,014121,0,1,28,36969,36975,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014121,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014122,Bad_Power,_Return_to_Sleep +47,110,091309,014123,0,1,28,36970,36976,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014123,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014124,Bad_Power,_Return_to_Sleep +47,110,091309,014124,0,1,28,36971,36977,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014124,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014125,Bad_Power,_Return_to_Sleep +47,110,091309,014126,0,1,28,36972,36978,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014126,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014127,Bad_Power,_Return_to_Sleep +47,110,091309,014127,0,1,28,36973,36979,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014127,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014128,Bad_Power,_Return_to_Sleep +47,110,091309,014129,0,1,28,36974,36980,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014129,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014130,Bad_Power,_Return_to_Sleep +47,110,091309,014130,0,1,28,36975,36981,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014130,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014131,Bad_Power,_Return_to_Sleep +47,110,091309,014131,0,1,28,36976,36982,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014131,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014132,Bad_Power,_Return_to_Sleep +47,110,091309,014133,0,1,28,36977,36983,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014133,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014134,Bad_Power,_Return_to_Sleep +47,110,091309,014134,0,1,28,36978,36984,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014134,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014135,Bad_Power,_Return_to_Sleep +47,110,091309,014136,0,1,28,36979,36985,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014136,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014137,Bad_Power,_Return_to_Sleep +47,110,091309,014137,0,1,28,36980,36986,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014137,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014138,Bad_Power,_Return_to_Sleep +47,110,091309,014139,0,1,28,36981,36987,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014139,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014140,Bad_Power,_Return_to_Sleep +47,110,091309,014140,0,1,28,36982,36988,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014140,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014141,Bad_Power,_Return_to_Sleep +47,110,091309,014142,0,1,28,36983,36989,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014142,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014142,Bad_Power,_Return_to_Sleep +47,110,091309,014143,0,1,28,36984,36990,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014143,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014144,Bad_Power,_Return_to_Sleep +47,110,091309,014144,0,1,28,36985,36991,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014144,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014145,Bad_Power,_Return_to_Sleep +47,110,091309,014146,0,1,28,36986,36992,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014146,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014147,Bad_Power,_Return_to_Sleep +47,110,091309,014147,0,1,28,36987,36993,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014147,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014148,Bad_Power,_Return_to_Sleep +47,110,091309,014149,0,1,28,36988,36994,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014149,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014150,Bad_Power,_Return_to_Sleep +47,110,091309,014150,0,1,28,36989,36995,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014150,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014151,Bad_Power,_Return_to_Sleep +47,110,091309,014152,0,1,28,36990,36996,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014152,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014152,Bad_Power,_Return_to_Sleep +47,110,091309,014153,0,1,28,36991,36997,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014153,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014154,Bad_Power,_Return_to_Sleep +47,110,091309,014154,0,1,28,36992,36998,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014154,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014155,Bad_Power,_Return_to_Sleep +47,110,091309,014156,0,1,28,36993,36999,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014156,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014157,Bad_Power,_Return_to_Sleep +47,110,091309,014157,0,1,28,36994,37000,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014157,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014158,Bad_Power,_Return_to_Sleep +47,110,091309,014159,0,1,28,36995,37001,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014159,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014200,Bad_Power,_Return_to_Sleep +47,110,091309,014200,0,1,28,36996,37002,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014200,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014201,Bad_Power,_Return_to_Sleep +47,110,091309,014201,0,1,28,36997,37003,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014201,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014202,Bad_Power,_Return_to_Sleep +47,110,091309,014203,0,1,28,36998,37004,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014203,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014204,Bad_Power,_Return_to_Sleep +47,110,091309,014204,0,1,28,36999,37005,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014204,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014205,Bad_Power,_Return_to_Sleep +47,110,091309,014206,0,1,28,37000,37006,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014206,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014207,Bad_Power,_Return_to_Sleep +47,110,091309,014207,0,1,28,37001,37007,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014207,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014208,Bad_Power,_Return_to_Sleep +47,110,091309,014209,0,1,28,37002,37008,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014209,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014210,Bad_Power,_Return_to_Sleep +47,110,091309,014210,0,1,28,37003,37009,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014210,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014211,Bad_Power,_Return_to_Sleep +47,110,091309,014211,0,1,28,37004,37010,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014211,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014212,Bad_Power,_Return_to_Sleep +47,110,091309,014213,0,1,28,37005,37011,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014213,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014214,Bad_Power,_Return_to_Sleep +47,110,091309,014214,0,1,28,37006,37012,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014214,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014215,Bad_Power,_Return_to_Sleep +47,110,091309,014216,0,1,28,37007,37013,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014216,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014217,Bad_Power,_Return_to_Sleep +47,110,091309,014217,0,1,28,37008,37014,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014217,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014218,Bad_Power,_Return_to_Sleep +47,110,091309,014219,0,1,28,37009,37015,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014219,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014220,Bad_Power,_Return_to_Sleep +47,110,091309,014220,0,1,28,37010,37016,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014220,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014221,Bad_Power,_Return_to_Sleep +47,110,091309,014221,0,1,28,37011,37017,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014221,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014222,Bad_Power,_Return_to_Sleep +47,110,091309,014223,0,1,28,37012,37018,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014223,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014224,Bad_Power,_Return_to_Sleep +47,110,091309,014224,0,1,28,37013,37019,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014224,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014225,Bad_Power,_Return_to_Sleep +47,110,091309,014226,0,1,28,37014,37020,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014226,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014227,Bad_Power,_Return_to_Sleep +47,110,091309,014227,0,1,28,37015,37021,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014227,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014228,Bad_Power,_Return_to_Sleep +47,110,091309,014229,0,1,28,37016,37022,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014229,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014230,Bad_Power,_Return_to_Sleep +47,110,091309,014230,0,1,28,37017,37023,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014230,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014231,Bad_Power,_Return_to_Sleep +47,110,091309,014232,0,1,28,37018,37024,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014232,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014232,Bad_Power,_Return_to_Sleep +47,110,091309,014233,0,1,28,37019,37025,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014233,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014234,Bad_Power,_Return_to_Sleep +47,110,091309,014234,0,1,28,37020,37026,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014234,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014235,Bad_Power,_Return_to_Sleep +47,110,091309,014236,0,1,28,37021,37027,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014236,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014237,Bad_Power,_Return_to_Sleep +47,110,091309,014237,0,1,28,37022,37028,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014237,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014238,Bad_Power,_Return_to_Sleep +47,110,091309,014239,0,1,28,37023,37029,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014239,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014240,Bad_Power,_Return_to_Sleep +47,110,091309,014240,0,1,28,37024,37030,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014240,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014241,Bad_Power,_Return_to_Sleep +47,110,091309,014242,0,1,28,37025,37031,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014242,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014243,Bad_Power,_Return_to_Sleep +47,110,091309,014243,0,1,28,37026,37032,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014243,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014244,Bad_Power,_Return_to_Sleep +47,110,091309,014244,0,1,28,37027,37033,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014244,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014245,Bad_Power,_Return_to_Sleep +47,110,091309,014246,0,1,28,37028,37034,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014246,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014247,Bad_Power,_Return_to_Sleep +47,110,091309,014247,0,1,28,37029,37035,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014247,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014248,Bad_Power,_Return_to_Sleep +47,110,091309,014249,0,1,28,37030,37036,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014249,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014250,Bad_Power,_Return_to_Sleep +47,110,091309,014250,0,1,28,37031,37037,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014250,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014251,Bad_Power,_Return_to_Sleep +47,110,091309,014252,0,1,28,37032,37038,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014252,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014253,Bad_Power,_Return_to_Sleep +47,110,091309,014253,0,1,28,37033,37039,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014253,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014254,Bad_Power,_Return_to_Sleep +47,110,091309,014254,0,1,28,37034,37040,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014254,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014255,Bad_Power,_Return_to_Sleep +47,110,091309,014256,0,1,28,37035,37041,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014256,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014257,Bad_Power,_Return_to_Sleep +47,110,091309,014257,0,1,28,37036,37042,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014257,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014258,Bad_Power,_Return_to_Sleep +47,110,091309,014259,0,1,28,37037,37043,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014259,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014300,Bad_Power,_Return_to_Sleep +47,110,091309,014300,0,1,28,37038,37044,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014300,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014301,Bad_Power,_Return_to_Sleep +47,110,091309,014302,0,1,28,37039,37045,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014302,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014303,Bad_Power,_Return_to_Sleep +47,110,091309,014303,0,1,28,37040,37046,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014303,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014304,Bad_Power,_Return_to_Sleep +47,110,091309,014304,0,1,28,37041,37047,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014304,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014305,Bad_Power,_Return_to_Sleep +47,110,091309,014306,0,1,28,37042,37048,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014306,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014307,Bad_Power,_Return_to_Sleep +47,110,091309,014307,0,1,28,37043,37049,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014307,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014308,Bad_Power,_Return_to_Sleep +47,110,091309,014309,0,1,28,37044,37050,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014309,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014310,Bad_Power,_Return_to_Sleep +47,110,091309,014310,0,1,28,37045,37051,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014310,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014311,Bad_Power,_Return_to_Sleep +47,110,091309,014312,0,1,28,37046,37052,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014312,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014313,Bad_Power,_Return_to_Sleep +47,110,091309,014313,0,1,28,37047,37053,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014313,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014314,Bad_Power,_Return_to_Sleep +47,110,091309,014315,0,1,28,37048,37054,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014315,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014315,Bad_Power,_Return_to_Sleep +47,110,091309,014316,0,1,28,37049,37055,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014316,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014317,Bad_Power,_Return_to_Sleep +47,110,091309,014317,0,1,28,37050,37056,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014317,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014318,Bad_Power,_Return_to_Sleep +47,110,091309,014319,0,1,28,37051,37057,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014319,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014320,Bad_Power,_Return_to_Sleep +47,110,091309,014320,0,1,28,37052,37058,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014320,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014321,Bad_Power,_Return_to_Sleep +47,110,091309,014322,0,1,28,37053,37059,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014322,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014323,Bad_Power,_Return_to_Sleep +47,110,091309,014323,0,1,28,37054,37060,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014323,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014324,Bad_Power,_Return_to_Sleep +47,110,091309,014325,0,1,28,37055,37061,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014325,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014326,Bad_Power,_Return_to_Sleep +47,110,091309,014326,0,1,28,37056,37062,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014326,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014327,Bad_Power,_Return_to_Sleep +47,110,091309,014327,0,1,28,37057,37063,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014327,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014328,Bad_Power,_Return_to_Sleep +47,110,091309,014329,0,1,28,37058,37064,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014329,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014330,Bad_Power,_Return_to_Sleep +47,110,091309,014330,0,1,28,37059,37065,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014330,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014331,Bad_Power,_Return_to_Sleep +47,110,091309,014332,0,1,28,37060,37066,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014332,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014333,Bad_Power,_Return_to_Sleep +47,110,091309,014333,0,1,28,37061,37067,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014333,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014334,Bad_Power,_Return_to_Sleep +47,110,091309,014335,0,1,28,37062,37068,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014335,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014336,Bad_Power,_Return_to_Sleep +47,110,091309,014336,0,1,28,37063,37069,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014336,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014337,Bad_Power,_Return_to_Sleep +47,110,091309,014337,0,1,28,37064,37070,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014337,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014338,Bad_Power,_Return_to_Sleep +47,110,091309,014339,0,1,28,37065,37071,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014339,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014340,Bad_Power,_Return_to_Sleep +47,110,091309,014340,0,1,28,37066,37072,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014340,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014341,Bad_Power,_Return_to_Sleep +47,110,091309,014342,0,1,28,37067,37073,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014342,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014343,Bad_Power,_Return_to_Sleep +47,110,091309,014343,0,1,28,37068,37074,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014343,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014344,Bad_Power,_Return_to_Sleep +47,110,091309,014345,0,1,28,37069,37075,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014345,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014346,Bad_Power,_Return_to_Sleep +47,110,091309,014346,0,1,28,37070,37076,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014346,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014347,Bad_Power,_Return_to_Sleep +47,110,091309,014347,0,1,28,37071,37077,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014347,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014348,Bad_Power,_Return_to_Sleep +47,110,091309,014349,0,1,28,37072,37078,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014349,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014350,Bad_Power,_Return_to_Sleep +47,110,091309,014350,0,1,28,37073,37079,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014350,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014351,Bad_Power,_Return_to_Sleep +47,110,091309,014352,0,1,28,37074,37080,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014352,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014353,Bad_Power,_Return_to_Sleep +47,110,091309,014353,0,1,28,37075,37081,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014353,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014354,Bad_Power,_Return_to_Sleep +47,110,091309,014355,0,1,28,37076,37082,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014355,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014356,Bad_Power,_Return_to_Sleep +47,110,091309,014356,0,1,28,37077,37083,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014356,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014357,Bad_Power,_Return_to_Sleep +47,110,091309,014357,0,1,28,37078,37084,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014357,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014358,Bad_Power,_Return_to_Sleep +47,110,091309,014359,0,1,28,37079,37085,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014359,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014400,Bad_Power,_Return_to_Sleep +47,110,091309,014400,0,1,28,37080,37086,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014400,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014401,Bad_Power,_Return_to_Sleep +47,110,091309,014402,0,1,28,37081,37087,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014402,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014403,Bad_Power,_Return_to_Sleep +47,110,091309,014403,0,1,28,37082,37088,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014403,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014404,Bad_Power,_Return_to_Sleep +47,110,091309,014405,0,1,28,37083,37089,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014405,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014406,Bad_Power,_Return_to_Sleep +47,110,091309,014406,0,1,28,37084,37090,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014406,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014407,Bad_Power,_Return_to_Sleep +47,110,091309,014408,0,1,28,37085,37091,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014408,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014408,Bad_Power,_Return_to_Sleep +47,110,091309,014409,0,1,28,37086,37092,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014409,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014410,Bad_Power,_Return_to_Sleep +47,110,091309,014410,0,1,28,37087,37093,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014410,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014411,Bad_Power,_Return_to_Sleep +47,110,091309,014412,0,1,28,37088,37094,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014412,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014413,Bad_Power,_Return_to_Sleep +47,110,091309,014413,0,1,28,37089,37095,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014413,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014414,Bad_Power,_Return_to_Sleep +47,110,091309,014415,0,1,28,37090,37096,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014415,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014416,Bad_Power,_Return_to_Sleep +47,110,091309,014416,0,1,28,37091,37097,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014416,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014417,Bad_Power,_Return_to_Sleep +47,110,091309,014418,0,1,28,37092,37098,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014418,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014418,Bad_Power,_Return_to_Sleep +47,110,091309,014419,0,1,28,37093,37099,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014419,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014420,Bad_Power,_Return_to_Sleep +47,110,091309,014420,0,1,28,37094,37100,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014420,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014421,Bad_Power,_Return_to_Sleep +47,110,091309,014422,0,1,28,37095,37101,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014422,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014423,Bad_Power,_Return_to_Sleep +47,110,091309,014423,0,1,28,37096,37102,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014423,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014424,Bad_Power,_Return_to_Sleep +47,110,091309,014425,0,1,28,37097,37103,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014425,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014426,Bad_Power,_Return_to_Sleep +47,110,091309,014426,0,1,28,37098,37104,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014426,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014427,Bad_Power,_Return_to_Sleep +47,110,091309,014428,0,1,28,37099,37105,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014428,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014428,Bad_Power,_Return_to_Sleep +47,110,091309,014429,0,1,28,37100,37106,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014429,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014430,Bad_Power,_Return_to_Sleep +47,110,091309,014430,0,1,28,37101,37107,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014430,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014431,Bad_Power,_Return_to_Sleep +47,110,091309,014432,0,1,28,37102,37108,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014432,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014433,Bad_Power,_Return_to_Sleep +47,110,091309,014433,0,1,28,37103,37109,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014433,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014434,Bad_Power,_Return_to_Sleep +47,110,091309,014435,0,1,28,37104,37110,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014435,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014436,Bad_Power,_Return_to_Sleep +47,110,091309,014436,0,1,28,37105,37111,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014436,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014437,Bad_Power,_Return_to_Sleep +47,110,091309,014438,0,1,28,37106,37112,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014438,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014438,Bad_Power,_Return_to_Sleep +47,110,091309,014439,0,1,28,37107,37113,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014439,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014440,Bad_Power,_Return_to_Sleep +47,110,091309,014440,0,1,28,37108,37114,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014440,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014441,Bad_Power,_Return_to_Sleep +47,110,091309,014442,0,1,28,37109,37115,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014442,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014443,Bad_Power,_Return_to_Sleep +47,110,091309,014443,0,1,28,37110,37116,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014443,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014444,Bad_Power,_Return_to_Sleep +47,110,091309,014445,0,1,28,37111,37117,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014445,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014446,Bad_Power,_Return_to_Sleep +47,110,091309,014446,0,1,28,37112,37118,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014446,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014447,Bad_Power,_Return_to_Sleep +47,110,091309,014448,0,1,28,37113,37119,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014448,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014449,Bad_Power,_Return_to_Sleep +47,110,091309,014449,0,1,28,37114,37120,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014449,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014450,Bad_Power,_Return_to_Sleep +47,110,091309,014450,0,1,28,37115,37121,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014450,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014451,Bad_Power,_Return_to_Sleep +47,110,091309,014452,0,1,28,37116,37122,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014452,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014453,Bad_Power,_Return_to_Sleep +47,110,091309,014453,0,1,28,37117,37123,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014453,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014454,Bad_Power,_Return_to_Sleep +47,110,091309,014455,0,1,28,37118,37124,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014455,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014456,Bad_Power,_Return_to_Sleep +47,110,091309,014456,0,1,28,37119,37125,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014456,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014457,Bad_Power,_Return_to_Sleep +47,110,091309,014458,0,1,28,37120,37126,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014458,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014459,Bad_Power,_Return_to_Sleep +47,110,091309,014459,0,1,28,37121,37127,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014459,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014500,Bad_Power,_Return_to_Sleep +47,110,091309,014501,0,1,28,37122,37128,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014501,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014501,Bad_Power,_Return_to_Sleep +47,110,091309,014502,0,1,28,37123,37129,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014502,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014503,Bad_Power,_Return_to_Sleep +47,110,091309,014503,0,1,28,37124,37130,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014503,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014504,Bad_Power,_Return_to_Sleep +47,110,091309,014505,0,1,28,37125,37131,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014505,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014506,Bad_Power,_Return_to_Sleep +47,110,091309,014506,0,1,28,37126,37132,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014506,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014507,Bad_Power,_Return_to_Sleep +47,110,091309,014508,0,1,28,37127,37133,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014508,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014509,Bad_Power,_Return_to_Sleep +47,110,091309,014509,0,1,28,37128,37134,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014509,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014510,Bad_Power,_Return_to_Sleep +47,110,091309,014511,0,1,28,37129,37135,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014511,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014511,Bad_Power,_Return_to_Sleep +47,110,091309,014512,0,1,28,37130,37136,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014512,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014513,Bad_Power,_Return_to_Sleep +47,110,091309,014513,0,1,28,37131,37137,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014513,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014514,Bad_Power,_Return_to_Sleep +47,110,091309,014515,0,1,28,37132,37138,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014515,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014516,Bad_Power,_Return_to_Sleep +47,110,091309,014516,0,1,28,37133,37139,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014516,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014517,Bad_Power,_Return_to_Sleep +47,110,091309,014518,0,1,28,37134,37140,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014518,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014519,Bad_Power,_Return_to_Sleep +47,110,091309,014519,0,1,28,37135,37141,0, 5.2,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014519,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014520,Bad_Power,_Return_to_Sleep +47,110,091309,014521,0,1,28,37136,37142,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014521,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014521,Bad_Power,_Return_to_Sleep +47,110,091309,014522,0,1,28,37137,37143,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014522,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014523,Bad_Power,_Return_to_Sleep +47,110,091309,014523,0,1,28,37138,37144,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014523,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014524,Bad_Power,_Return_to_Sleep +47,110,091309,014525,0,1,28,37139,37145,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014525,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014526,Bad_Power,_Return_to_Sleep +47,110,091309,014526,0,1,28,37140,37146,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014526,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014527,Bad_Power,_Return_to_Sleep +47,110,091309,014528,0,1,28,37141,37147,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014528,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014529,Bad_Power,_Return_to_Sleep +47,110,091309,014529,0,1,28,37142,37148,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014529,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014530,Bad_Power,_Return_to_Sleep +47,110,091309,014531,0,1,28,37143,37149,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014531,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014531,Bad_Power,_Return_to_Sleep +47,110,091309,014532,0,1,28,37144,37150,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014532,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014533,Bad_Power,_Return_to_Sleep +47,110,091309,014533,0,1,28,37145,37151,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014533,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014534,Bad_Power,_Return_to_Sleep +47,110,091309,014535,0,1,28,37146,37152,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014535,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014536,Bad_Power,_Return_to_Sleep +47,110,091309,014536,0,1,28,37147,37153,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014536,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014537,Bad_Power,_Return_to_Sleep +47,110,091309,014538,0,1,28,37148,37154,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014538,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014539,Bad_Power,_Return_to_Sleep +47,110,091309,014539,0,1,28,37149,37155,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014539,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014540,Bad_Power,_Return_to_Sleep +47,110,091309,014541,0,1,28,37150,37156,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014541,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014541,Bad_Power,_Return_to_Sleep +47,110,091309,014542,0,1,28,37151,37157,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014542,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014543,Bad_Power,_Return_to_Sleep +47,110,091309,014543,0,1,28,37152,37158,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014543,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014544,Bad_Power,_Return_to_Sleep +47,110,091309,014545,0,1,28,37153,37159,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014545,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014546,Bad_Power,_Return_to_Sleep +47,110,091309,014546,0,1,28,37154,37160,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014546,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014547,Bad_Power,_Return_to_Sleep +47,110,091309,014548,0,1,28,37155,37161,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014548,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014549,Bad_Power,_Return_to_Sleep +47,110,091309,014549,0,1,28,37156,37162,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014549,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014550,Bad_Power,_Return_to_Sleep +47,110,091309,014551,0,1,28,37157,37163,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014551,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014551,Bad_Power,_Return_to_Sleep +47,110,091309,014552,0,1,28,37158,37164,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014552,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014553,Bad_Power,_Return_to_Sleep +47,110,091309,014553,0,1,28,37159,37165,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014553,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014554,Bad_Power,_Return_to_Sleep +47,110,091309,014555,0,1,28,37160,37166,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014555,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014556,Bad_Power,_Return_to_Sleep +47,110,091309,014556,0,1,28,37161,37167,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014556,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014557,Bad_Power,_Return_to_Sleep +47,110,091309,014558,0,1,28,37162,37168,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014558,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014559,Bad_Power,_Return_to_Sleep +47,110,091309,014559,0,1,28,37163,37169,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014559,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014600,Bad_Power,_Return_to_Sleep +47,110,091309,014601,0,1,28,37164,37170,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014601,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014602,Bad_Power,_Return_to_Sleep +47,110,091309,014602,0,1,28,37165,37171,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014602,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014603,Bad_Power,_Return_to_Sleep +47,110,091309,014603,0,1,28,37166,37172,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014603,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014604,Bad_Power,_Return_to_Sleep +47,110,091309,014605,0,1,28,37167,37173,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014605,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014606,Bad_Power,_Return_to_Sleep +47,110,091309,014606,0,1,28,37168,37174,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014606,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014607,Bad_Power,_Return_to_Sleep +47,110,091309,014608,0,1,28,37169,37175,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014608,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014609,Bad_Power,_Return_to_Sleep +47,110,091309,014609,0,1,28,37170,37176,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014609,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014610,Bad_Power,_Return_to_Sleep +47,110,091309,014611,0,1,28,37171,37177,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014611,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014612,Bad_Power,_Return_to_Sleep +47,110,091309,014612,0,1,28,37172,37178,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014612,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014613,Bad_Power,_Return_to_Sleep +47,110,091309,014614,0,1,28,37173,37179,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014614,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014614,Bad_Power,_Return_to_Sleep +47,110,091309,014615,0,1,28,37174,37180,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014615,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014616,Bad_Power,_Return_to_Sleep +47,110,091309,014616,0,1,28,37175,37181,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014616,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014617,Bad_Power,_Return_to_Sleep +47,110,091309,014618,0,1,28,37176,37182,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014618,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014619,Bad_Power,_Return_to_Sleep +47,110,091309,014619,0,1,28,37177,37183,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014619,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014620,Bad_Power,_Return_to_Sleep +47,110,091309,014621,0,1,28,37178,37184,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014621,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014622,Bad_Power,_Return_to_Sleep +47,110,091309,014622,0,1,28,37179,37185,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014622,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014623,Bad_Power,_Return_to_Sleep +47,110,091309,014624,0,1,28,37180,37186,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014624,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014625,Bad_Power,_Return_to_Sleep +47,110,091309,014625,0,1,28,37181,37187,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014625,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014626,Bad_Power,_Return_to_Sleep +47,110,091309,014626,0,1,28,37182,37188,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014626,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014627,Bad_Power,_Return_to_Sleep +47,110,091309,014628,0,1,28,37183,37189,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014628,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014629,Bad_Power,_Return_to_Sleep +47,110,091309,014629,0,1,28,37184,37190,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014629,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014630,Bad_Power,_Return_to_Sleep +47,110,091309,014631,0,1,28,37185,37191,0, 5.1,0, 4.5,0, 4.5,0, 4.4 +47,130,091309,014631,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014632,Bad_Power,_Return_to_Sleep +47,110,091309,014632,0,1,28,37186,37192,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014632,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014633,Bad_Power,_Return_to_Sleep +47,110,091309,014634,0,1,28,37187,37193,0, 5.1,0, 4.5,0, 4.5,0, 4.4 +47,130,091309,014634,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014635,Bad_Power,_Return_to_Sleep +47,110,091309,014635,0,1,28,37188,37194,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014635,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014636,Bad_Power,_Return_to_Sleep +47,110,091309,014636,0,1,28,37189,37195,0, 5.1,0, 4.5,0, 4.5,0, 4.4 +47,130,091309,014636,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014637,Bad_Power,_Return_to_Sleep +47,110,091309,014638,0,1,28,37190,37196,0, 5.1,0, 4.5,0, 4.5,0, 4.4 +47,130,091309,014638,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014639,Bad_Power,_Return_to_Sleep +47,110,091309,014639,0,1,28,37191,37197,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014639,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014640,Bad_Power,_Return_to_Sleep +47,110,091309,014641,0,1,28,37192,37198,0, 5.1,0, 4.5,0, 4.5,0, 4.4 +47,130,091309,014641,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014642,Bad_Power,_Return_to_Sleep +47,110,091309,014642,0,1,28,37193,37199,0, 5.1,0, 4.5,0, 4.5,0, 4.4 +47,130,091309,014642,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014643,Bad_Power,_Return_to_Sleep +47,110,091309,014644,0,1,28,37194,37200,0, 5.1,0, 4.5,0, 4.5,0, 4.4 +47,130,091309,014644,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014645,Bad_Power,_Return_to_Sleep +47,110,091309,014645,0,1,28,37195,37201,0, 5.1,0, 4.5,0, 4.5,0, 4.5 +47,130,091309,014645,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014646,Bad_Power,_Return_to_Sleep +47,110,091309,014646,0,1,28,37196,37202,0, 5.1,0, 4.5,0, 4.5,0, 4.4 +47,130,091309,014646,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014647,Bad_Power,_Return_to_Sleep +47,110,091309,014648,0,1,28,37197,37203,0, 5.1,0, 4.5,0, 4.5,0, 4.4 +47,130,091309,014648,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014649,Bad_Power,_Return_to_Sleep +47,110,091309,014649,0,1,28,37198,37204,0, 5.1,0, 4.5,0, 4.5,0, 4.4 +47,130,091309,014649,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014650,Bad_Power,_Return_to_Sleep +47,110,091309,014651,0,1,28,37199,37205,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014651,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014652,Bad_Power,_Return_to_Sleep +47,110,091309,014652,0,1,28,37200,37206,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014652,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014653,Bad_Power,_Return_to_Sleep +47,110,091309,014654,0,1,28,37201,37207,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014654,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014655,Bad_Power,_Return_to_Sleep +47,110,091309,014655,0,1,28,37202,37208,0, 5.1,0, 4.5,0, 4.5,0, 4.4 +47,130,091309,014655,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014656,Bad_Power,_Return_to_Sleep +47,110,091309,014657,0,1,28,37203,37209,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014657,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014657,Bad_Power,_Return_to_Sleep +47,110,091309,014658,0,1,28,37204,37210,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014658,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014659,Bad_Power,_Return_to_Sleep +47,110,091309,014659,0,1,28,37205,37211,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014659,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014700,Bad_Power,_Return_to_Sleep +47,110,091309,014701,0,1,28,37206,37212,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014701,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014702,Bad_Power,_Return_to_Sleep +47,110,091309,014702,0,1,28,37207,37213,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014702,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014703,Bad_Power,_Return_to_Sleep +47,110,091309,014704,0,1,28,37208,37214,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014704,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014705,Bad_Power,_Return_to_Sleep +47,110,091309,014705,0,1,28,37209,37215,0, 5.1,0, 4.5,0, 4.5,0, 4.4 +47,130,091309,014705,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014706,Bad_Power,_Return_to_Sleep +47,110,091309,014707,0,1,28,37210,37216,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014707,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014707,Bad_Power,_Return_to_Sleep +47,110,091309,014708,0,1,28,37211,37217,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014708,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014709,Bad_Power,_Return_to_Sleep +47,110,091309,014709,0,1,28,37212,37218,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014709,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014710,Bad_Power,_Return_to_Sleep +47,110,091309,014711,0,1,28,37213,37219,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014711,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014712,Bad_Power,_Return_to_Sleep +47,110,091309,014712,0,1,28,37214,37220,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014712,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014713,Bad_Power,_Return_to_Sleep +47,110,091309,014714,0,1,28,37215,37221,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014714,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014715,Bad_Power,_Return_to_Sleep +47,110,091309,014715,0,1,28,37216,37222,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014715,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014716,Bad_Power,_Return_to_Sleep +47,110,091309,014717,0,1,28,37217,37223,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014717,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014717,Bad_Power,_Return_to_Sleep +47,110,091309,014718,0,1,28,37218,37224,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014718,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014719,Bad_Power,_Return_to_Sleep +47,110,091309,014719,0,1,28,37219,37225,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014719,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014720,Bad_Power,_Return_to_Sleep +47,110,091309,014721,0,1,28,37220,37226,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014721,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014722,Bad_Power,_Return_to_Sleep +47,110,091309,014722,0,1,28,37221,37227,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014722,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014723,Bad_Power,_Return_to_Sleep +47,110,091309,014724,0,1,28,37222,37228,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014724,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014725,Bad_Power,_Return_to_Sleep +47,110,091309,014725,0,1,28,37223,37229,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014725,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014726,Bad_Power,_Return_to_Sleep +47,110,091309,014727,0,1,28,37224,37230,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014727,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014728,Bad_Power,_Return_to_Sleep +47,110,091309,014728,0,1,28,37225,37231,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014728,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014729,Bad_Power,_Return_to_Sleep +47,110,091309,014729,0,1,28,37226,37232,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014729,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014730,Bad_Power,_Return_to_Sleep +47,110,091309,014731,0,1,28,37227,37233,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014731,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014732,Bad_Power,_Return_to_Sleep +47,110,091309,014732,0,1,28,37228,37234,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014732,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014733,Bad_Power,_Return_to_Sleep +47,110,091309,014734,0,1,28,37229,37235,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014734,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014735,Bad_Power,_Return_to_Sleep +47,110,091309,014735,0,1,28,37230,37236,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014735,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014736,Bad_Power,_Return_to_Sleep +47,110,091309,014737,0,1,28,37231,37237,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014737,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014738,Bad_Power,_Return_to_Sleep +47,110,091309,014738,0,1,28,37232,37238,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014738,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014739,Bad_Power,_Return_to_Sleep +47,110,091309,014740,0,1,28,37233,37239,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014740,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014740,Bad_Power,_Return_to_Sleep +47,110,091309,014741,0,1,28,37234,37240,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014741,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014742,Bad_Power,_Return_to_Sleep +47,110,091309,014742,0,1,28,37235,37241,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014742,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014743,Bad_Power,_Return_to_Sleep +47,110,091309,014744,0,1,28,37236,37242,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014744,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014745,Bad_Power,_Return_to_Sleep +47,110,091309,014745,0,1,28,37237,37243,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014745,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014746,Bad_Power,_Return_to_Sleep +47,110,091309,014747,0,1,28,37238,37244,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014747,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014748,Bad_Power,_Return_to_Sleep +47,110,091309,014748,0,1,28,37239,37245,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014748,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014749,Bad_Power,_Return_to_Sleep +47,110,091309,014750,0,1,28,37240,37246,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014750,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014750,Bad_Power,_Return_to_Sleep +47,110,091309,014751,0,1,28,37241,37247,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014751,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014752,Bad_Power,_Return_to_Sleep +47,110,091309,014752,0,1,28,37242,37248,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014752,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014753,Bad_Power,_Return_to_Sleep +47,110,091309,014754,0,1,28,37243,37249,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014754,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014755,Bad_Power,_Return_to_Sleep +47,110,091309,014755,0,1,28,37244,37250,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014755,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014756,Bad_Power,_Return_to_Sleep +47,110,091309,014757,0,1,28,37245,37251,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014757,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014758,Bad_Power,_Return_to_Sleep +47,110,091309,014758,0,1,28,37246,37252,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014758,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014759,Bad_Power,_Return_to_Sleep +47,110,091309,014800,0,1,28,37247,37253,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014800,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014801,Bad_Power,_Return_to_Sleep +47,110,091309,014801,0,1,28,37248,37254,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014801,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014802,Bad_Power,_Return_to_Sleep +47,110,091309,014803,0,1,28,37249,37255,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014803,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014803,Bad_Power,_Return_to_Sleep +47,110,091309,014804,0,1,28,37250,37256,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014804,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014805,Bad_Power,_Return_to_Sleep +47,110,091309,014805,0,1,28,37251,37257,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014805,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014806,Bad_Power,_Return_to_Sleep +47,110,091309,014807,0,1,28,37252,37258,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014807,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014808,Bad_Power,_Return_to_Sleep +47,110,091309,014808,0,1,28,37253,37259,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014808,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014809,Bad_Power,_Return_to_Sleep +47,110,091309,014810,0,1,28,37254,37260,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014810,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014811,Bad_Power,_Return_to_Sleep +47,110,091309,014811,0,1,28,37255,37261,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014811,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014812,Bad_Power,_Return_to_Sleep +47,110,091309,014813,0,1,28,37256,37262,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014813,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014813,Bad_Power,_Return_to_Sleep +47,110,091309,014814,0,1,28,37257,37263,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014814,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014815,Bad_Power,_Return_to_Sleep +47,110,091309,014815,0,1,28,37258,37264,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014815,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014816,Bad_Power,_Return_to_Sleep +47,110,091309,014817,0,1,28,37259,37265,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014817,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014818,Bad_Power,_Return_to_Sleep +47,110,091309,014818,0,1,28,37260,37266,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014818,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014819,Bad_Power,_Return_to_Sleep +47,110,091309,014820,0,1,28,37261,37267,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014820,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014821,Bad_Power,_Return_to_Sleep +47,110,091309,014821,0,1,28,37262,37268,0, 5.1,0, 4.5,0, 4.4,0, 4.4 +47,130,091309,014821,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014822,Bad_Power,_Return_to_Sleep +47,110,091309,014823,0,1,28,37263,37269,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014823,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014823,Bad_Power,_Return_to_Sleep +47,110,091309,014824,0,1,28,37264,37270,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014824,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014825,Bad_Power,_Return_to_Sleep +47,110,091309,014825,0,1,28,37265,37271,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014825,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014826,Bad_Power,_Return_to_Sleep +47,110,091309,014827,0,1,28,37266,37272,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014827,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014828,Bad_Power,_Return_to_Sleep +47,110,091309,014828,0,1,28,37267,37273,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014828,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014829,Bad_Power,_Return_to_Sleep +47,110,091309,014830,0,1,28,37268,37274,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014830,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014831,Bad_Power,_Return_to_Sleep +47,110,091309,014831,0,1,28,37269,37275,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014831,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014832,Bad_Power,_Return_to_Sleep +47,110,091309,014833,0,1,28,37270,37276,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014833,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014834,Bad_Power,_Return_to_Sleep +47,110,091309,014834,0,1,28,37271,37277,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014834,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014835,Bad_Power,_Return_to_Sleep +47,110,091309,014835,0,1,28,37272,37278,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014835,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014836,Bad_Power,_Return_to_Sleep +47,110,091309,014837,0,1,28,37273,37279,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014837,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014838,Bad_Power,_Return_to_Sleep +47,110,091309,014838,0,1,28,37274,37280,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014838,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014839,Bad_Power,_Return_to_Sleep +47,110,091309,014840,0,1,28,37275,37281,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014840,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014841,Bad_Power,_Return_to_Sleep +47,110,091309,014841,0,1,28,37276,37282,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014841,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014842,Bad_Power,_Return_to_Sleep +47,110,091309,014843,0,1,28,37277,37283,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014843,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014844,Bad_Power,_Return_to_Sleep +47,110,091309,014844,0,1,28,37278,37284,0, 5.1,0, 4.4,0, 4.4,0, 4.4 +47,130,091309,014844,UPS_Action_-_Restart_After_a_24_Hour_Delay +47,130,091309,014845,Bad_Power,_Return_to_Sleep +47,110,091309,014845,0,1,28,37279,37285,0, 5.1,0, 4.4,0, 4.4,0, 4.4 + \ No newline at end of file diff --git a/test/readWQMraw/WQM0048_004_v1.62_example.RAW b/test/readWQMraw/WQM0048_004_v1.62_example.RAW new file mode 100644 index 000000000..c5c017e77 --- /dev/null +++ b/test/readWQMraw/WQM0048_004_v1.62_example.RAW @@ -0,0 +1,2000 @@ + +File Name: WQM0048.004 +Created On: 100717 034804 +File Version: 3 3=Includes Sample Mode +WQM SN: 48 +F/W V: 1.62 +==================================================================== +CTD SN: 5413 +Pressure Range: 160 psia +IDO SN: 3141 +IDO43 Soc=1.375800e-04 +IDO43 FOffset=-3.542750e+03 +IDO43 A=-3.230700e-03 +IDO43 B=2.377200e-04 +IDO43 C=-3.173900e-06 +IDO43 E=3.600000e-02 +DO Stability-Fit=Fixed +DO Stability-A=80.0000 +DO Stability-B=-2.2880 +DO Stability-C=60.8050 +==================================================================== +ECO SN: FLNTUS-3989 +ECO Baud: 19200 +ECO Delimiter: TAB +ECO IHM: 1 +ECO IOM: 2 +ECO Total Columns: 7 +ECO SN Column: None +ECO Date Column: 1 +ECO Time Column: 2 +ECO Signal Count: 2 +ECO Signal 1 Name: CHLA +ECO Signal 1 Raw Units: COUNTS +ECO Signal 1 Engr Units: UG/L +ECO Signal 1 Type: 1 Std Scale'n'Offset +ECO Signal 1 Cal Coef: 0.012200 49.000000 0.000000 0.000000 +ECO Signal 2 Name: TURBIDITY +ECO Signal 2 Raw Units: COUNTS +ECO Signal 2 Engr Units: NTU +ECO Signal 2 Type: 1 Std Scale'n'Offset +ECO Signal 2 Cal Coef: 0.006800 50.000000 0.000000 0.000000 +==================================================================== +External Data Port: Off +==================================================================== +Control: Autonomous +Delay Seconds: 0 +Sample Seconds: 60 +Sample Interval Seconds: 900 +==================================================================== +Starting Free Flask Disk: 1022816 K +Total Flask Disk: 1022816 K +==================================================================== +BLIS ul / squirt: 9.0 +Pumped Hour Interval: 0 +Pumped BLIS: 0 +Static BLIS: 0 +Starting Total BLIS Squirts: 0 +==================================================================== +Recent UPS: No +Starting UPS Count: 0 +Starting Total UPS Count: 0 +Starting Voltage: 15.85 +==================================================================== +Outbits - Version: 3 +Outbits - Misc: 0xCE01 +Outbits - CTD: 0xFCC0 +Outbits - ECO: 0xCC00 +Outbits - EDP: 0x0000 +Data Output: Averaged +==================================================================== +Heartbeat: OFF +Update Date/Time: Normal +File Format: SN,State,Date,Time,Cond(S/m),Temp(C),Pres(dbar),RawDO(Hz),Pumped,CHLA(COUNTS),TURBIDITY(COUNTS),Volts + +48,100,100717,034804,1,0,10,688,15,10,1022767,0,0,414724,0,0,0,0,1,15.85 +48,100,100717,035800,1,0,3,7,15,10,1022815,0,0,414724,0,0,0,0,1,15.87 +48,3,100717,035800,0.00017,25.3829,-0.01,11077.5,0,0,0,15.87 +48,230,100717,035801,3,24856,24856,24856 +48,100,100717,035807,1,0,4,15,15,10,1022799,0,0,414724,0,0,0,0,1,15.79 +48,200,100717,035807, 0.0017, 25.4117, 0.00, 11080.6, 0 +48,4,100717,035807,0.00017,25.4117,0.00,11080.6,0,0,0,15.79 +48,4,100717,035808,0.00018,25.4121,-0.01,11080.0,0,0,0,15.79 +48,4,100717,035809,0.00018,25.4119,0.00,11080.5,0,0,0,15.79 +48,4,100717,035810,0.00019,25.4121,-0.01,11081.2,0,0,0,15.79 +48,4,100717,035811,0.00018,25.4118,0.00,11081.1,0,0,0,15.79 +48,4,100717,035812,0.00018,25.4118,0.01,11080.4,0,0,0,15.79 +48,4,100717,035813,0.00018,25.4125,0.00,11081.1,0,0,0,15.79 +48,4,100717,035814,0.00018,25.4122,-0.01,11080.5,0,0,0,15.79 +48,4,100717,035815,0.00018,25.4113,-0.01,11080.6,0,0,0,15.79 +48,4,100717,035816,0.00019,25.4122,-0.02,11080.6,0,0,0,15.79 +48,4,100717,035817,0.00018,25.4122,0.00,11080.5,0,0,0,15.79 +48,4,100717,035818,0.00018,25.4124,0.00,11081.3,0,0,0,15.79 +48,4,100717,035819,0.00017,25.4119,0.00,11080.5,0,0,0,15.79 +48,4,100717,035820,0.00018,25.4114,-0.01,11081.0,0,0,0,15.79 +48,4,100717,035821,0.00018,25.4113,-0.01,11081.0,0,0,0,15.79 +48,4,100717,035822,0.00018,25.4112,-0.01,11081.4,0,0,0,15.79 +48,4,100717,035823,0.00018,25.4112,-0.01,11080.8,0,0,0,15.79 +48,4,100717,035824,0.00018,25.4123,-0.01,11080.5,0,0,0,15.78 +48,4,100717,035825,0.00018,25.4114,-0.01,11080.5,0,0,0,15.78 +48,4,100717,035826,0.00017,25.4111,0.00,11081.1,0,0,0,15.78 +48,4,100717,035827,0.00018,25.4120,-0.01,11080.4,0,0,0,15.78 +48,4,100717,035828,0.00018,25.4117,-0.01,11081.1,0,0,0,15.78 +48,4,100717,035829,0.00017,25.4115,-0.01,11080.7,0,0,0,15.78 +48,4,100717,035830,0.00018,25.4116,0.00,11080.7,0,0,0,15.78 +48,4,100717,035831,0.00018,25.4121,0.00,11081.4,0,0,0,15.78 +48,4,100717,035832,0.00018,25.4117,-0.01,11081.5,0,0,0,15.78 +48,4,100717,035833,0.00018,25.4120,-0.01,11081.2,0,0,0,15.78 +48,4,100717,035834,0.00018,25.4121,-0.01,11081.9,0,0,0,15.78 +48,4,100717,035835,0.00018,25.4116,-0.01,11081.1,0,0,0,15.78 +48,4,100717,035836,0.00018,25.4113,-0.01,11080.5,0,0,0,15.78 +48,4,100717,035837,0.00018,25.4120,0.00,11081.0,0,0,0,15.78 +48,4,100717,035838,0.00018,25.4124,-0.01,11080.5,0,0,0,15.78 +48,4,100717,035839,0.00018,25.4120,0.00,11081.2,0,0,0,15.78 +48,4,100717,035840,0.00018,25.4117,0.00,11080.9,0,0,0,15.78 +48,4,100717,035841,0.00018,25.4119,-0.01,11080.7,0,0,0,15.78 +48,4,100717,035842,0.00017,25.4118,-0.01,11081.5,0,0,0,15.78 +48,4,100717,035843,0.00017,25.4117,-0.01,11081.7,0,0,0,15.78 +48,4,100717,035844,0.00018,25.4124,-0.01,11081.1,0,0,0,15.78 +48,4,100717,035845,0.00018,25.4111,-0.01,11081.3,0,0,0,15.78 +48,4,100717,035846,0.00018,25.4118,-0.01,11080.6,0,0,0,15.78 +48,4,100717,035847,0.00018,25.4121,-0.01,11081.0,0,0,0,15.78 +48,4,100717,035848,0.00019,25.4113,-0.02,11081.8,0,0,0,15.78 +48,4,100717,035849,0.00018,25.4117,-0.01,11081.2,0,0,0,15.78 +48,4,100717,035850,0.00018,25.4113,-0.02,11080.9,0,0,0,15.78 +48,4,100717,035851,0.00018,25.4121,-0.01,11081.1,0,0,0,15.78 +48,4,100717,035852,0.00018,25.4113,0.00,11081.0,0,0,0,15.78 +48,4,100717,035853,0.00017,25.4117,-0.01,11081.3,0,0,0,15.78 +48,4,100717,035854,0.00018,25.4123,-0.01,11081.7,0,0,0,15.78 +48,4,100717,035855,0.00018,25.4119,-0.01,11081.1,0,0,0,15.78 +48,4,100717,035856,0.00018,25.4121,-0.01,11080.6,0,0,0,15.78 +48,4,100717,035857,0.00018,25.4116,-0.01,11080.9,0,0,0,15.78 +48,4,100717,035858,0.00018,25.4113,0.01,11080.5,0,0,0,15.78 +48,4,100717,035859,0.00019,25.4117,-0.02,11080.9,0,0,0,15.78 +48,4,100717,035900,0.00018,25.4127,0.00,11080.8,0,0,0,15.78 +48,4,100717,035901,0.00018,25.4121,-0.02,11081.0,0,0,0,15.78 +48,4,100717,035902,0.00018,25.4125,-0.01,11081.6,0,0,0,15.78 +48,4,100717,035903,0.00017,25.4117,0.00,11080.9,0,0,0,15.78 +48,4,100717,035904,0.00019,25.4124,-0.01,11080.3,0,0,0,15.78 +48,4,100717,035905,0.00018,25.4121,0.00,11080.8,0,0,0,15.78 +48,4,100717,035906,0.00019,25.4120,-0.01,11081.0,0,0,0,15.78 +48,4,100717,035907,0.00018,25.4124,-0.01,11081.2,0,0,0,15.78 +48,4,100717,035908,0.00018,25.4123,-0.02,11081.0,0,0,0,15.78 +48,4,100717,035909,0.00018,25.4118,-0.02,11080.6,0,0,0,15.78 +48,4,100717,035910,0.00018,25.4121,-0.01,11080.4,0,0,0,15.78 +48,4,100717,035911,0.00018,25.4129,-0.01,11081.0,0,0,0,15.78 +48,4,100717,035912,0.00018,25.4125,0.00,11081.7,0,0,0,15.78 +48,4,100717,035913,0.00018,25.4122,-0.01,11081.0,0,0,0,15.78 +48,4,100717,035914,0.00018,25.4128,-0.01,11081.3,0,0,0,15.78 +48,4,100717,035915,0.00019,25.4126,-0.01,11080.9,0,0,0,15.78 +48,4,100717,035916,0.00018,25.4128,-0.01,11081.7,0,0,0,15.78 +48,4,100717,035917,0.00018,25.4123,-0.01,11081.1,0,0,0,15.78 +48,4,100717,035918,0.00019,25.4127,0.00,11081.2,0,0,0,15.78 +48,100,100717,035919,1,0,5,8,80,14,1022795,0,0,414724,0,0,0,0,1,15.78 +48,5,100717,035919,0.00018,25.4124,0.00,11081.2,0,0,0,15.78 +48,5,100717,035920,0.00018,25.4124,-0.01,11081.4,0,0,0,15.67 +48,5,100717,035921,0.00019,25.4122,-0.01,11081.4,0,0,0,15.67 +48,5,100717,035922,0.00018,25.4127,-0.01,11081.4,0,0,0,15.58 +48,210,100717,035923,10/06/17 20:55:37 695 68 700 156 533 +48,5,100717,035923,0.00018,25.4123,-0.01,11081.5,0,68,156,15.65 +48,5,100717,035924,0.00018,25.4132,0.00,11080.9,0,48,171,15.65 +48,5,100717,035925,0.00018,25.4132,0.00,11081.1,0,98,185,15.65 +48,5,100717,035926,0.00019,25.4133,0.00,11080.5,0,43,150,15.65 +48,100,100717,035927,1,0,6,60,80,15,1022794,0,0,414724,0,0,0,0,1,15.65 +48,6,100717,035927,0.00018,25.4130,-0.01,11081.1,0,18,116,15.65 +48,6,100717,035928,0.00018,25.4130,-0.01,11081.4,0,56,138,15.65 +48,6,100717,035929,0.00018,25.4131,-0.01,11082.9,0,11,112,15.65 +48,6,100717,035930,0.00018,25.4136,0.00,11083.0,0,73,133,15.65 +48,6,100717,035931,0.00018,25.4133,0.00,11083.3,0,72,163,15.65 +48,6,100717,035932,0.00018,25.4133,0.00,11083.2,0,32,152,15.65 +48,6,100717,035933,0.00018,25.4133,-0.01,11084.1,0,35,120,15.65 +48,6,100717,035934,0.00018,25.4127,-0.01,11082.5,0,35,142,15.65 +48,6,100717,035935,0.00018,25.4136,-0.01,11082.6,0,53,127,15.65 +48,6,100717,035936,0.00018,25.4136,0.00,11082.7,0,76,163,15.65 +48,6,100717,035937,0.00018,25.4128,0.00,11081.4,0,66,134,15.65 +48,6,100717,035938,0.00018,25.4133,-0.02,11081.5,0,17,115,15.65 +48,6,100717,035939,0.00018,25.4132,-0.01,11081.1,0,41,136,15.65 +48,6,100717,035940,0.00018,25.4119,-0.01,11081.2,0,15,113,15.65 +48,6,100717,035941,0.00017,25.4130,-0.02,11081.6,0,67,148,15.65 +48,6,100717,035942,0.00018,25.4123,-0.02,11081.1,0,54,180,15.65 +48,6,100717,035943,0.00017,25.4124,0.00,11081.1,0,83,178,15.65 +48,6,100717,035944,0.00018,25.4124,-0.01,11081.4,0,96,175,15.65 +48,6,100717,035945,0.00017,25.4119,-0.02,11081.1,0,55,121,15.65 +48,6,100717,035946,0.00018,25.4122,-0.01,11080.6,0,52,131,15.65 +48,6,100717,035947,0.00019,25.4123,-0.01,11080.9,0,96,176,15.65 +48,6,100717,035948,0.00017,25.4117,-0.01,11080.7,0,59,163,15.65 +48,6,100717,035949,0.00018,25.4127,-0.01,11081.4,0,95,192,15.65 +48,6,100717,035950,0.00018,25.4119,0.00,11080.9,0,67,154,15.65 +48,6,100717,035951,0.00018,25.4120,-0.01,11080.7,0,93,195,15.65 +48,6,100717,035952,0.00018,25.4124,-0.01,11081.0,0,40,151,15.65 +48,6,100717,035953,0.00018,25.4124,-0.01,11080.9,0,61,163,15.65 +48,6,100717,035954,0.00018,25.4125,-0.01,11081.1,0,66,158,15.65 +48,6,100717,035955,0.00018,25.4121,0.00,11081.0,0,55,120,15.65 +48,6,100717,035956,0.00017,25.4115,-0.01,11081.4,0,35,125,15.65 +48,6,100717,035957,0.00018,25.4117,-0.01,11081.2,0,56,161,15.65 +48,6,100717,035958,0.00018,25.4108,0.00,11080.6,0,54,146,15.65 +48,6,100717,035959,0.00018,25.4122,-0.02,11081.6,0,84,150,15.65 +48,6,100717,040000,0.00019,25.4107,-0.01,11080.7,0,39,132,15.65 +48,6,100717,040001,0.00018,25.4111,0.00,11081.5,0,32,122,15.65 +48,6,100717,040002,0.00018,25.4105,0.00,11080.8,0,170,145,15.65 +48,6,100717,040003,0.00019,25.4107,-0.02,11080.7,0,26,162,15.65 +48,6,100717,040004,0.00017,25.4105,0.01,11081.8,0,37,120,15.65 +48,6,100717,040005,0.00019,25.4095,0.00,11081.4,0,17,154,15.64 +48,6,100717,040006,0.00017,25.4106,-0.01,11081.2,0,59,158,15.65 +48,6,100717,040007,0.00017,25.4094,-0.01,11081.0,0,23,114,15.65 +48,6,100717,040008,0.00018,25.4106,-0.01,11081.4,0,61,158,15.65 +48,6,100717,040009,0.00018,25.4098,-0.01,11081.3,0,111,215,15.65 +48,6,100717,040010,0.00018,25.4095,0.00,11082.5,0,58,143,15.65 +48,6,100717,040011,0.00018,25.4098,0.01,11082.2,0,54,170,15.65 +48,6,100717,040012,0.00018,25.4096,0.00,11082.8,0,85,189,15.65 +48,6,100717,040013,0.00018,25.4099,0.00,11084.0,0,16,123,15.65 +48,6,100717,040014,0.00018,25.4100,-0.01,11084.0,0,50,142,15.65 +48,6,100717,040015,0.00018,25.4101,-0.01,11084.0,0,50,150,15.65 +48,6,100717,040016,0.00018,25.4090,0.00,11083.9,0,-15,55,15.65 +48,6,100717,040017,0.00018,25.4090,0.00,11083.1,0,92,135,15.65 +48,6,100717,040018,0.00017,25.4092,-0.02,11083.6,0,62,145,15.65 +48,6,100717,040019,0.00018,25.4092,-0.01,11082.8,0,-21,57,15.65 +48,6,100717,040020,0.00017,25.4095,0.00,11082.3,0,70,141,15.65 +48,6,100717,040021,0.00018,25.4091,0.00,11082.7,0,-45,54,15.65 +48,6,100717,040022,0.00018,25.4100,-0.01,11083.2,0,-60,28,15.65 +48,6,100717,040023,0.00018,25.4093,-0.01,11082.0,0,174,290,15.65 +48,6,100717,040024,0.00018,25.4099,-0.01,11082.4,0,99,173,15.65 +48,6,100717,040025,0.00018,25.4097,0.00,11082.2,0,90,186,15.65 +48,6,100717,040026,0.00018,25.4097,-0.01,11081.9,0,139,235,15.65 +48,100,100717,040027,1,0,10,580,80,19,1022790,0,0,414724,0,0,0,0,1,15.65 +48,100,100717,041300,1,0,3,7,15,19,1022799,0,0,414724,0,0,0,0,1,15.87 +48,3,100717,041300,0.00017,25.4096,0.01,11082.8,0,0,0,15.87 +48,230,100717,041301,3,24864,24856,24848 +48,100,100717,041307,1,0,4,15,15,19,1022799,0,0,414724,0,0,0,0,1,15.73 +48,200,100717,041307, 53.0158, 24.5779, 0.32, 8117.7, 2 +48,4,100717,041307,5.30158,24.5779,0.32,8117.7,2,0,0,15.73 +48,4,100717,041308,5.30160,24.5783,0.32,8086.5,2,0,0,15.65 +48,4,100717,041309,5.20661,24.4991,0.33,8215.7,1,0,0,15.74 +48,4,100717,041310,5.32080,24.5678,0.32,8545.0,1,0,0,15.75 +48,4,100717,041311,5.32314,24.5493,0.32,8916.3,1,0,0,15.75 +48,4,100717,041312,5.32478,24.5229,0.31,9248.9,1,0,0,15.75 +48,4,100717,041313,5.32747,24.5452,0.31,9524.8,1,0,0,15.75 +48,4,100717,041314,5.32825,24.5543,0.32,9743.2,1,0,0,15.75 +48,4,100717,041315,5.32777,24.5633,0.32,9913.1,1,0,0,15.75 +48,4,100717,041316,5.32437,24.5928,0.32,10044.1,1,0,0,15.75 +48,4,100717,041317,5.31969,24.4066,0.32,10144.4,1,0,0,15.75 +48,4,100717,041318,5.31744,24.3626,0.33,10222.9,1,0,0,15.75 +48,4,100717,041319,5.31622,24.3331,0.32,10284.8,1,0,0,15.75 +48,4,100717,041320,5.31639,24.3075,0.32,10335.0,1,0,0,15.75 +48,4,100717,041321,5.32069,24.3706,0.32,10374.8,1,0,0,15.75 +48,4,100717,041322,5.32254,24.4437,0.31,10403.1,1,0,0,15.75 +48,4,100717,041323,5.31984,24.3938,0.32,10423.5,1,0,0,15.75 +48,4,100717,041324,5.31788,24.3803,0.32,10441.8,1,0,0,15.75 +48,4,100717,041325,5.31797,24.3825,0.32,10454.5,1,0,0,15.75 +48,4,100717,041326,5.31770,24.3610,0.32,10467.6,1,0,0,15.75 +48,4,100717,041327,5.31884,24.3847,0.31,10477.2,1,0,0,15.75 +48,4,100717,041328,5.31855,24.4217,0.32,10485.2,1,0,0,15.75 +48,4,100717,041329,5.31812,24.4728,0.32,10490.8,1,0,0,15.75 +48,4,100717,041330,5.31827,24.5026,0.31,10495.6,1,0,0,15.74 +48,4,100717,041331,5.31854,24.4725,0.32,10499.3,1,0,0,15.74 +48,4,100717,041332,5.32033,24.4410,0.33,10504.3,1,0,0,15.74 +48,4,100717,041333,5.32241,24.4716,0.32,10508.6,1,0,0,15.75 +48,4,100717,041334,5.32370,24.4897,0.32,10509.8,1,0,0,15.74 +48,4,100717,041335,5.32138,24.5235,0.32,10510.4,1,0,0,15.75 +48,4,100717,041336,5.31881,24.5172,0.32,10510.9,1,0,0,15.75 +48,4,100717,041337,5.31839,24.4853,0.32,10513.6,1,0,0,15.75 +48,4,100717,041338,5.32105,24.5073,0.32,10519.7,1,0,0,15.74 +48,4,100717,041339,5.32771,24.5478,0.31,10521.6,1,0,0,15.74 +48,4,100717,041340,5.32624,24.5287,0.32,10518.0,1,0,0,15.74 +48,4,100717,041341,5.32048,24.4539,0.32,10515.1,1,0,0,15.74 +48,4,100717,041342,5.31502,24.3350,0.33,10511.6,1,0,0,15.74 +48,4,100717,041343,5.31297,24.3351,0.33,10513.5,1,0,0,15.75 +48,4,100717,041344,5.31867,24.4370,0.32,10519.2,1,0,0,15.74 +48,4,100717,041345,5.32607,24.4990,0.32,10525.1,1,0,0,15.74 +48,4,100717,041346,5.33169,24.5122,0.32,10531.0,1,0,0,15.74 +48,4,100717,041347,5.33668,24.5760,0.32,10532.3,1,0,0,15.74 +48,4,100717,041348,5.33031,24.5692,0.32,10528.2,1,0,0,15.74 +48,4,100717,041349,5.32493,24.4798,0.33,10530.0,1,0,0,15.74 +48,4,100717,041350,5.32750,24.4171,0.32,10531.3,1,0,0,15.74 +48,4,100717,041351,5.32960,24.4727,0.32,10531.3,1,0,0,15.74 +48,4,100717,041352,5.32823,24.4486,0.32,10531.5,1,0,0,15.74 +48,4,100717,041353,5.32715,24.5114,0.32,10528.0,1,0,0,15.75 +48,4,100717,041354,5.32247,24.4928,0.32,10528.0,1,0,0,15.75 +48,4,100717,041355,5.32244,24.4262,0.32,10526.7,1,0,0,15.74 +48,4,100717,041356,5.32158,24.4096,0.33,10526.2,1,0,0,15.75 +48,4,100717,041357,5.32263,24.4231,0.32,10525.4,1,0,0,15.74 +48,4,100717,041358,5.32425,24.4337,0.32,10525.3,1,0,0,15.74 +48,4,100717,041359,5.32358,24.4582,0.32,10524.8,1,0,0,15.74 +48,4,100717,041400,5.32279,24.4766,0.32,10524.6,1,0,0,15.74 +48,4,100717,041401,5.32235,24.4875,0.33,10524.3,1,0,0,15.74 +48,4,100717,041402,5.32136,24.4587,0.33,10526.3,1,0,0,15.74 +48,4,100717,041403,5.32397,24.5163,0.32,10528.8,1,0,0,15.74 +48,4,100717,041404,5.32484,24.4571,0.32,10530.8,1,0,0,15.74 +48,4,100717,041405,5.32607,24.4524,0.32,10530.3,1,0,0,15.75 +48,4,100717,041406,5.32493,24.4625,0.33,10527.8,1,0,0,15.74 +48,4,100717,041407,5.32086,24.4340,0.32,10526.4,1,0,0,15.74 +48,4,100717,041408,5.31928,24.4150,0.33,10525.8,1,0,0,15.74 +48,4,100717,041409,5.32001,24.4049,0.32,10526.7,1,0,0,15.74 +48,4,100717,041410,5.32161,24.4210,0.32,10526.4,1,0,0,15.75 +48,4,100717,041411,5.32224,24.4097,0.32,10527.2,1,0,0,15.74 +48,4,100717,041412,5.31923,24.4095,0.32,10523.4,1,0,0,15.74 +48,4,100717,041413,5.31338,24.4123,0.33,10520.8,1,0,0,15.74 +48,4,100717,041414,5.31239,24.4037,0.32,10521.6,1,0,0,15.74 +48,4,100717,041415,5.31481,24.3903,0.33,10523.5,1,0,0,15.74 +48,4,100717,041416,5.31785,24.3570,0.32,10526.1,1,0,0,15.74 +48,4,100717,041417,5.31954,24.4046,0.32,10526.1,1,0,0,15.74 +48,4,100717,041418,5.31756,24.4256,0.32,10522.4,1,0,0,15.74 +48,100,100717,041419,1,1,5,8,80,24,1022795,0,0,414724,0,0,0,0,1,15.74 +48,5,100717,041419,5.31427,24.4332,0.33,10521.8,1,0,0,15.74 +48,5,100717,041420,5.31401,24.3793,0.33,10521.7,1,0,0,15.64 +48,5,100717,041421,5.31505,24.3907,0.32,10524.2,1,0,0,15.64 +48,5,100717,041422,5.31851,24.4301,0.32,10526.3,1,0,0,15.56 +48,210,100717,041423,10/06/17 21:10:37 695 911 700 4130 533 +48,5,100717,041423,5.32147,24.4273,0.32,10527.9,1,911,4130,15.62 +48,5,100717,041424,5.32107,24.4102,0.32,10526.5,1,938,4130,15.62 +48,5,100717,041425,5.31653,24.4381,0.32,10525.0,1,821,4130,15.62 +48,5,100717,041426,5.31376,24.4216,0.32,10525.0,1,917,4130,15.62 +48,100,100717,041427,1,1,6,60,80,24,1022794,0,0,414724,0,0,0,0,1,15.62 +48,6,100717,041427,5.31429,24.4330,0.32,10526.1,1,928,4130,15.62 +48,6,100717,041428,5.31750,24.4123,0.32,10526.3,1,889,4130,15.62 +48,6,100717,041429,5.31762,24.3872,0.32,10526.4,1,974,4130,15.62 +48,6,100717,041430,5.31827,24.3474,0.32,10525.2,1,895,4130,15.62 +48,6,100717,041431,5.31675,24.3369,0.32,10524.3,1,908,4130,15.62 +48,6,100717,041432,5.31645,24.3422,0.32,10523.7,1,827,4130,15.62 +48,6,100717,041433,5.31616,24.3246,0.31,10523.1,1,885,4130,15.62 +48,6,100717,041434,5.31730,24.3513,0.33,10524.2,1,880,4130,15.62 +48,6,100717,041435,5.31832,24.4141,0.32,10524.2,1,887,4130,15.62 +48,6,100717,041436,5.31773,24.3877,0.32,10523.2,1,947,4130,15.62 +48,6,100717,041437,5.31668,24.3453,0.32,10523.6,1,941,4130,15.62 +48,6,100717,041438,5.31741,24.3598,0.32,10523.8,1,892,4130,15.62 +48,6,100717,041439,5.31833,24.3703,0.32,10525.4,1,876,4130,15.62 +48,6,100717,041440,5.31869,24.3928,0.33,10525.6,1,850,4130,15.62 +48,6,100717,041441,5.31741,24.4016,0.32,10525.1,1,877,4130,15.62 +48,6,100717,041442,5.31732,24.3560,0.32,10525.1,1,883,4130,15.62 +48,6,100717,041443,5.31694,24.3705,0.32,10525.2,1,903,4130,15.62 +48,6,100717,041444,5.31703,24.3827,0.31,10525.6,1,952,4130,15.62 +48,6,100717,041445,5.31732,24.3795,0.32,10524.6,1,821,4130,15.62 +48,6,100717,041446,5.31703,24.3735,0.32,10525.1,1,896,4130,15.62 +48,6,100717,041447,5.31747,24.3855,0.33,10525.1,1,805,4130,15.62 +48,6,100717,041448,5.31741,24.4025,0.32,10525.2,1,863,4130,15.62 +48,6,100717,041449,5.31729,24.4086,0.32,10525.8,1,850,4130,15.62 +48,6,100717,041450,5.31782,24.4002,0.32,10526.2,1,922,4130,15.62 +48,6,100717,041451,5.31797,24.3877,0.32,10526.6,1,825,4130,15.62 +48,6,100717,041452,5.31794,24.3814,0.32,10525.6,1,896,4130,15.62 +48,6,100717,041453,5.31794,24.3834,0.32,10525.8,1,875,4130,15.62 +48,6,100717,041454,5.31832,24.4088,0.32,10526.0,1,867,4130,15.62 +48,6,100717,041455,5.31838,24.3799,0.33,10526.2,1,912,4130,15.62 +48,6,100717,041456,5.31864,24.3785,0.32,10527.0,1,940,4130,15.62 +48,6,100717,041457,5.31893,24.3824,0.32,10526.5,1,884,4130,15.62 +48,6,100717,041458,5.31824,24.3957,0.32,10526.7,1,915,4130,15.62 +48,6,100717,041459,5.31764,24.3828,0.32,10526.7,1,918,4130,15.62 +48,6,100717,041500,5.31770,24.3989,0.32,10527.0,1,887,4130,15.62 +48,6,100717,041501,5.31767,24.3973,0.33,10526.1,1,890,4130,15.62 +48,6,100717,041502,5.31753,24.3629,0.32,10525.9,1,971,4130,15.62 +48,6,100717,041503,5.31732,24.3818,0.32,10527.5,1,955,4130,15.62 +48,6,100717,041504,5.31724,24.4091,0.32,10526.4,1,845,4130,15.62 +48,6,100717,041505,5.31732,24.3993,0.32,10526.3,1,987,4130,15.62 +48,6,100717,041506,5.31662,24.3713,0.33,10526.2,1,901,4130,15.62 +48,6,100717,041507,5.31674,24.3662,0.32,10526.7,1,914,4130,15.61 +48,6,100717,041508,5.31753,24.3569,0.33,10525.4,1,861,4130,15.62 +48,6,100717,041509,5.31681,24.3656,0.32,10524.7,1,944,4130,15.62 +48,6,100717,041510,5.31600,24.3753,0.33,10524.7,1,956,4130,15.62 +48,6,100717,041511,5.31606,24.3706,0.32,10524.4,1,932,4130,15.61 +48,6,100717,041512,5.31601,24.3622,0.32,10524.7,1,930,4130,15.62 +48,6,100717,041513,5.31776,24.3461,0.32,10524.4,1,940,4130,15.61 +48,6,100717,041514,5.31686,24.3259,0.32,10523.8,1,920,4130,15.62 +48,6,100717,041515,5.31537,24.2979,0.33,10523.9,1,1000,4130,15.62 +48,6,100717,041516,5.31557,24.2982,0.32,10523.9,1,1014,4130,15.62 +48,6,100717,041517,5.31639,24.3038,0.32,10525.7,1,957,4130,15.62 +48,6,100717,041518,5.31729,24.3633,0.32,10526.5,1,1102,4130,15.61 +48,6,100717,041519,5.31729,24.3733,0.32,10526.6,1,1043,4130,15.61 +48,6,100717,041520,5.31726,24.3415,0.32,10525.9,1,1089,4130,15.61 +48,6,100717,041521,5.31556,24.2900,0.32,10524.0,1,1049,4130,15.62 +48,6,100717,041522,5.31431,24.2837,0.32,10524.4,1,1134,4130,15.62 +48,6,100717,041523,5.31397,24.2934,0.32,10523.2,1,1125,4130,15.61 +48,6,100717,041524,5.31435,24.2971,0.32,10522.8,1,1216,4130,15.62 +48,6,100717,041525,5.31467,24.2927,0.32,10522.6,1,1159,4130,15.62 +48,6,100717,041526,5.31365,24.3011,0.32,10522.6,1,1176,4130,15.62 +48,100,100717,041527,1,1,10,746,80,28,1022790,0,0,414724,0,0,0,0,1,15.62 +48,100,100717,042800,1,1,3,7,15,28,1022783,0,0,414724,0,0,0,0,1,15.87 +48,3,100717,042800,5.31409,24.2950,0.33,10523.1,1,0,0,15.87 +48,230,100717,042801,3,24856,24856,24856 +48,100,100717,042807,1,1,4,15,15,28,1022783,0,0,414724,0,0,0,0,1,15.79 +48,200,100717,042807, 53.3726, 24.7545, 0.32, 7295.5, 2 +48,4,100717,042807,5.33726,24.7545,0.32,7295.5,2,0,0,15.79 +48,4,100717,042808,5.33726,24.7545,0.32,7295.5,2,0,0,15.66 +48,4,100717,042809,5.30047,24.6848,0.32,7499.6,1,0,0,15.75 +48,4,100717,042810,5.34734,24.6034,0.32,7940.2,1,0,0,15.75 +48,4,100717,042811,5.34826,24.5588,0.32,8423.5,1,0,0,15.75 +48,4,100717,042812,5.34890,24.5504,0.32,8851.1,1,0,0,15.75 +48,4,100717,042813,5.34963,24.5618,0.33,9203.3,1,0,0,15.75 +48,4,100717,042814,5.34964,24.5917,0.32,9482.2,1,0,0,15.76 +48,4,100717,042815,5.34896,24.5747,0.32,9699.4,1,0,0,15.75 +48,4,100717,042816,5.34708,24.5505,0.32,9867.1,1,0,0,15.75 +48,4,100717,042817,5.34752,24.5489,0.32,9997.6,1,0,0,15.75 +48,4,100717,042818,5.34531,24.5504,0.32,10101.7,1,0,0,15.75 +48,4,100717,042819,5.34626,24.5882,0.32,10184.4,1,0,0,15.75 +48,4,100717,042820,5.34775,24.6150,0.32,10246.1,1,0,0,15.75 +48,4,100717,042821,5.34622,24.6133,0.32,10291.2,1,0,0,15.75 +48,4,100717,042822,5.33861,24.5010,0.32,10327.0,1,0,0,15.75 +48,4,100717,042823,5.33774,24.3730,0.32,10359.7,1,0,0,15.75 +48,4,100717,042824,5.34464,24.4319,0.33,10388.8,1,0,0,15.75 +48,4,100717,042825,5.34708,24.5135,0.33,10407.3,1,0,0,15.75 +48,4,100717,042826,5.34270,24.4880,0.32,10419.1,1,0,0,15.75 +48,4,100717,042827,5.33665,24.4596,0.32,10429.9,1,0,0,15.75 +48,4,100717,042828,5.33630,24.4458,0.32,10442.8,1,0,0,15.75 +48,4,100717,042829,5.34161,24.4654,0.32,10454.8,1,0,0,15.75 +48,4,100717,042830,5.34326,24.5038,0.32,10462.0,1,0,0,15.75 +48,4,100717,042831,5.34152,24.4896,0.33,10467.2,1,0,0,15.75 +48,4,100717,042832,5.33960,24.4724,0.32,10472.0,1,0,0,15.75 +48,4,100717,042833,5.34058,24.4807,0.32,10478.0,1,0,0,15.75 +48,4,100717,042834,5.34152,24.5161,0.32,10481.0,1,0,0,15.75 +48,4,100717,042835,5.34092,24.5180,0.32,10484.2,1,0,0,15.75 +48,4,100717,042836,5.34164,24.5312,0.32,10487.5,1,0,0,15.75 +48,4,100717,042837,5.34270,24.5664,0.32,10489.7,1,0,0,15.75 +48,4,100717,042838,5.34179,24.5656,0.32,10489.3,1,0,0,15.75 +48,4,100717,042839,5.33783,24.4321,0.33,10487.9,1,0,0,15.75 +48,4,100717,042840,5.33580,24.3632,0.32,10491.0,1,0,0,15.75 +48,4,100717,042841,5.33900,24.4438,0.32,10495.6,1,0,0,15.75 +48,4,100717,042842,5.34158,24.4904,0.32,10497.1,1,0,0,15.75 +48,4,100717,042843,5.34026,24.4832,0.32,10497.1,1,0,0,15.75 +48,4,100717,042844,5.33812,24.4640,0.32,10494.5,1,0,0,15.75 +48,4,100717,042845,5.33553,24.4236,0.32,10495.5,1,0,0,15.75 +48,4,100717,042846,5.33681,24.4315,0.32,10500.4,1,0,0,15.75 +48,4,100717,042847,5.34044,24.4589,0.32,10503.5,1,0,0,15.75 +48,4,100717,042848,5.33917,24.4758,0.33,10503.5,1,0,0,15.75 +48,4,100717,042849,5.33771,24.4410,0.32,10504.6,1,0,0,15.75 +48,4,100717,042850,5.33843,24.4123,0.33,10505.3,1,0,0,15.75 +48,4,100717,042851,5.33976,24.4568,0.32,10506.3,1,0,0,15.75 +48,4,100717,042852,5.34017,24.5051,0.33,10506.2,1,0,0,15.75 +48,4,100717,042853,5.34002,24.5223,0.33,10507.7,1,0,0,15.75 +48,4,100717,042854,5.34052,24.5340,0.32,10509.6,1,0,0,15.75 +48,4,100717,042855,5.34152,24.5429,0.32,10510.7,1,0,0,15.75 +48,4,100717,042856,5.34208,24.5511,0.32,10510.3,1,0,0,15.75 +48,4,100717,042857,5.34059,24.5250,0.32,10510.7,1,0,0,15.75 +48,4,100717,042858,5.34023,24.5219,0.33,10512.6,1,0,0,15.75 +48,4,100717,042859,5.34337,24.5142,0.32,10514.8,1,0,0,15.75 +48,4,100717,042900,5.34383,24.4907,0.32,10514.0,1,0,0,15.75 +48,4,100717,042901,5.34314,24.5514,0.32,10514.0,1,0,0,15.75 +48,4,100717,042902,5.34164,24.5721,0.32,10513.2,1,0,0,15.75 +48,4,100717,042903,5.34242,24.5785,0.32,10515.3,1,0,0,15.75 +48,4,100717,042904,5.34446,24.5455,0.32,10516.6,1,0,0,15.75 +48,4,100717,042905,5.34420,24.5643,0.32,10517.2,1,0,0,15.75 +48,4,100717,042906,5.34314,24.5829,0.32,10516.4,1,0,0,15.75 +48,4,100717,042907,5.34272,24.5538,0.32,10517.2,1,0,0,15.75 +48,4,100717,042908,5.34226,24.5013,0.32,10516.2,1,0,0,15.75 +48,4,100717,042909,5.34217,24.4983,0.32,10516.2,1,0,0,15.75 +48,4,100717,042910,5.34230,24.4945,0.32,10515.8,1,0,0,15.75 +48,4,100717,042911,5.34211,24.4973,0.32,10516.2,1,0,0,15.75 +48,4,100717,042912,5.34170,24.5206,0.32,10516.6,1,0,0,15.75 +48,4,100717,042913,5.34149,24.5351,0.32,10515.6,1,0,0,15.75 +48,4,100717,042914,5.34152,24.5340,0.33,10515.7,1,0,0,15.74 +48,4,100717,042915,5.34161,24.5336,0.32,10516.8,1,0,0,15.75 +48,4,100717,042916,5.34143,24.5404,0.32,10516.7,1,0,0,15.75 +48,4,100717,042917,5.34140,24.5371,0.32,10516.0,1,0,0,15.75 +48,4,100717,042918,5.34176,24.5238,0.32,10516.4,1,0,0,15.75 +48,100,100717,042919,1,1,5,8,80,33,1022779,0,0,414724,0,0,0,0,1,15.75 +48,5,100717,042919,5.34223,24.5361,0.32,10517.2,1,0,0,15.75 +48,5,100717,042920,5.34251,24.5422,0.33,10517.9,1,0,0,15.65 +48,5,100717,042921,5.34226,24.5165,0.32,10519.2,1,0,0,15.64 +48,5,100717,042922,5.34340,24.5141,0.33,10519.8,1,0,0,15.57 +48,210,100717,042923,10/06/17 21:25:37 695 1256 700 4130 533 +48,5,100717,042923,5.34419,24.5278,0.32,10520.9,1,1256,4130,15.63 +48,5,100717,042924,5.34429,24.5424,0.33,10521.3,1,1318,4130,15.63 +48,5,100717,042925,5.34387,24.5582,0.32,10520.4,1,1315,4130,15.63 +48,5,100717,042926,5.34236,24.5287,0.32,10520.0,1,1398,4130,15.63 +48,100,100717,042927,1,1,6,60,80,33,1022778,0,0,414724,0,0,0,0,1,15.62 +48,6,100717,042927,5.34223,24.5155,0.31,10518.7,1,1337,4130,15.62 +48,6,100717,042928,5.34279,24.5233,0.33,10519.7,1,1332,4130,15.63 +48,6,100717,042929,5.34314,24.5057,0.32,10519.1,1,1336,4130,15.62 +48,6,100717,042930,5.34299,24.4781,0.32,10518.7,1,1287,4130,15.63 +48,6,100717,042931,5.34279,24.4937,0.32,10518.1,1,1331,4130,15.63 +48,6,100717,042932,5.34214,24.5020,0.33,10516.2,1,1391,4130,15.62 +48,6,100717,042933,5.34209,24.5034,0.32,10516.8,1,1330,4130,15.62 +48,6,100717,042934,5.34249,24.4920,0.32,10516.8,1,1277,4130,15.62 +48,6,100717,042935,5.34252,24.4887,0.32,10516.6,1,1323,4130,15.62 +48,6,100717,042936,5.34152,24.5123,0.32,10516.6,1,1360,4130,15.62 +48,6,100717,042937,5.34129,24.5207,0.32,10515.8,1,1295,4130,15.62 +48,6,100717,042938,5.34173,24.5140,0.32,10515.2,1,1299,4130,15.62 +48,6,100717,042939,5.34143,24.5303,0.33,10515.0,1,1307,4130,15.62 +48,6,100717,042940,5.34082,24.5318,0.32,10515.2,1,1353,4130,15.62 +48,6,100717,042941,5.34152,24.5269,0.32,10516.2,1,1337,4130,15.62 +48,6,100717,042942,5.34182,24.5227,0.32,10517.5,1,1316,4130,15.62 +48,6,100717,042943,5.34167,24.5105,0.32,10518.5,1,1326,4130,15.62 +48,6,100717,042944,5.34176,24.4772,0.32,10518.4,1,1348,4130,15.62 +48,6,100717,042945,5.34158,24.4629,0.32,10518.7,1,1322,4130,15.62 +48,6,100717,042946,5.34128,24.4553,0.32,10519.3,1,1276,4130,15.62 +48,6,100717,042947,5.34143,24.4785,0.31,10519.6,1,1284,4130,15.62 +48,6,100717,042948,5.34079,24.4814,0.32,10517.3,1,1335,4130,15.62 +48,6,100717,042949,5.33818,24.4235,0.32,10516.9,1,1324,4130,15.62 +48,6,100717,042950,5.33948,24.4413,0.32,10519.5,1,1275,4130,15.62 +48,6,100717,042951,5.34229,24.4959,0.32,10520.0,1,1331,4130,15.62 +48,6,100717,042952,5.34149,24.5084,0.32,10516.9,1,1326,4130,15.62 +48,6,100717,042953,5.33771,24.4608,0.32,10514.6,1,1374,4130,15.62 +48,6,100717,042954,5.33633,24.4318,0.32,10514.9,1,1319,4130,15.62 +48,6,100717,042955,5.33659,24.4447,0.32,10515.7,1,1351,4130,15.62 +48,6,100717,042956,5.33750,24.4662,0.32,10517.8,1,1266,4130,15.62 +48,6,100717,042957,5.34029,24.4927,0.33,10519.5,1,1330,4130,15.62 +48,6,100717,042958,5.34014,24.4751,0.33,10517.5,1,1296,4130,15.62 +48,6,100717,042959,5.33553,24.4834,0.32,10515.4,1,1362,4130,15.62 +48,6,100717,043000,5.33471,24.4477,0.33,10516.9,1,1325,4130,15.62 +48,6,100717,043001,5.33627,24.4695,0.31,10518.5,1,1372,4130,15.62 +48,6,100717,043002,5.33788,24.4569,0.32,10520.9,1,1321,4130,15.62 +48,6,100717,043003,5.33903,24.4698,0.31,10522.5,1,1319,4130,15.62 +48,6,100717,043004,5.34101,24.5016,0.32,10523.4,1,1292,4130,15.62 +48,6,100717,043005,5.34041,24.5118,0.32,10521.5,1,1299,4130,15.62 +48,6,100717,043006,5.33653,24.4946,0.33,10518.8,1,1324,4130,15.62 +48,6,100717,043007,5.33589,24.4811,0.33,10520.1,1,1334,4130,15.62 +48,6,100717,043008,5.33903,24.4996,0.32,10521.8,1,1321,4130,15.62 +48,6,100717,043009,5.34135,24.5019,0.32,10520.8,1,1301,4130,15.62 +48,6,100717,043010,5.33897,24.4961,0.31,10519.4,1,1331,4130,15.62 +48,6,100717,043011,5.33700,24.4760,0.32,10518.6,1,1345,4130,15.62 +48,6,100717,043012,5.33819,24.4758,0.32,10520.0,1,1323,4130,15.62 +48,6,100717,043013,5.33993,24.4957,0.33,10520.2,1,1322,4130,15.62 +48,6,100717,043014,5.33967,24.4954,0.33,10519.9,1,1375,4130,15.62 +48,6,100717,043015,5.33798,24.4789,0.32,10519.2,1,1276,4130,15.62 +48,6,100717,043016,5.33691,24.4611,0.33,10519.3,1,1331,4130,15.62 +48,6,100717,043017,5.33694,24.4588,0.33,10520.6,1,1318,4130,15.62 +48,6,100717,043018,5.33882,24.4781,0.32,10521.7,1,1280,4130,15.62 +48,6,100717,043019,5.34128,24.4866,0.32,10521.3,1,1342,4130,15.62 +48,6,100717,043020,5.33991,24.4765,0.33,10519.9,1,1349,4130,15.62 +48,6,100717,043021,5.33776,24.4590,0.32,10519.5,1,1337,4130,15.62 +48,6,100717,043022,5.33721,24.4454,0.33,10519.8,1,1321,4130,15.62 +48,6,100717,043023,5.33792,24.4690,0.32,10520.0,1,1331,4130,15.62 +48,6,100717,043024,5.33829,24.4652,0.32,10521.7,1,1305,4130,15.62 +48,6,100717,043025,5.33967,24.4922,0.32,10521.3,1,1347,4130,15.62 +48,6,100717,043026,5.33810,24.4743,0.32,10520.1,1,1320,4130,15.62 +48,100,100717,043027,1,1,10,746,80,37,1022774,0,0,414724,0,0,0,0,1,15.62 +48,100,100717,044300,1,1,3,7,15,37,1022783,0,0,414724,0,0,0,0,1,15.87 +48,3,100717,044300,5.33644,24.4129,0.32,10520.2,1,0,0,15.87 +48,230,100717,044301,3,24856,24856,24856 +48,100,100717,044307,1,1,4,15,15,38,1022783,0,0,414724,0,0,0,0,1,15.74 +48,200,100717,044307, 53.6088, 25.1259, 0.33, 8071.1, 2 +48,4,100717,044307,5.36088,25.1259,0.33,8071.1,2,0,0,15.74 +48,4,100717,044308,5.36089,25.1263,0.32,8088.4,2,0,0,15.66 +48,4,100717,044309,5.26964,24.9242,0.32,8230.8,1,0,0,15.75 +48,4,100717,044310,5.36840,24.7520,0.33,8565.3,1,0,0,15.76 +48,4,100717,044311,5.36641,24.7354,0.33,8936.8,1,0,0,15.76 +48,4,100717,044312,5.36347,24.6799,0.32,9266.0,1,0,0,15.76 +48,4,100717,044313,5.36291,24.6725,0.32,9538.9,1,0,0,15.76 +48,4,100717,044314,5.36420,24.7155,0.32,9753.6,1,0,0,15.76 +48,4,100717,044315,5.36221,24.7039,0.32,9919.1,1,0,0,15.76 +48,4,100717,044316,5.35833,24.6506,0.32,10048.9,1,0,0,15.76 +48,4,100717,044317,5.35815,24.6547,0.32,10151.2,1,0,0,15.75 +48,4,100717,044318,5.36108,24.6806,0.33,10230.5,1,0,0,15.76 +48,4,100717,044319,5.36078,24.6877,0.32,10291.9,1,0,0,15.75 +48,4,100717,044320,5.35957,24.6952,0.32,10336.6,1,0,0,15.75 +48,4,100717,044321,5.35827,24.7068,0.32,10373.3,1,0,0,15.75 +48,4,100717,044322,5.35742,24.7126,0.33,10399.1,1,0,0,15.76 +48,4,100717,044323,5.35359,24.6267,0.32,10422.5,1,0,0,15.75 +48,4,100717,044324,5.35600,24.6459,0.32,10442.8,1,0,0,15.75 +48,4,100717,044325,5.36001,24.6346,0.33,10459.2,1,0,0,15.76 +48,4,100717,044326,5.36105,24.6611,0.32,10470.0,1,0,0,15.75 +48,4,100717,044327,5.35898,24.7112,0.32,10476.8,1,0,0,15.75 +48,4,100717,044328,5.35497,24.6244,0.33,10481.8,1,0,0,15.75 +48,4,100717,044329,5.35291,24.5605,0.32,10487.5,1,0,0,15.75 +48,4,100717,044330,5.35527,24.5762,0.32,10496.6,1,0,0,15.75 +48,4,100717,044331,5.35860,24.6690,0.32,10502.7,1,0,0,15.75 +48,4,100717,044332,5.36013,24.7046,0.32,10509.4,1,0,0,15.75 +48,4,100717,044333,5.36134,24.7145,0.32,10510.4,1,0,0,15.75 +48,4,100717,044334,5.35597,24.6636,0.32,10508.4,1,0,0,15.75 +48,4,100717,044335,5.35191,24.5837,0.33,10511.4,1,0,0,15.75 +48,4,100717,044336,5.35499,24.6079,0.32,10516.7,1,0,0,15.75 +48,4,100717,044337,5.36034,24.6914,0.32,10521.0,1,0,0,15.75 +48,4,100717,044338,5.36149,24.7047,0.32,10522.3,1,0,0,15.75 +48,4,100717,044339,5.35942,24.6617,0.32,10523.3,1,0,0,15.75 +48,4,100717,044340,5.35877,24.6346,0.32,10524.9,1,0,0,15.75 +48,4,100717,044341,5.36037,24.6431,0.32,10525.9,1,0,0,15.75 +48,4,100717,044342,5.36031,24.6550,0.32,10525.4,1,0,0,15.75 +48,4,100717,044343,5.35782,24.6462,0.32,10524.7,1,0,0,15.75 +48,4,100717,044344,5.35765,24.6219,0.32,10526.5,1,0,0,15.75 +48,4,100717,044345,5.36001,24.6684,0.33,10530.3,1,0,0,15.75 +48,4,100717,044346,5.36270,24.6889,0.32,10530.9,1,0,0,15.75 +48,4,100717,044347,5.36175,24.6786,0.32,10528.5,1,0,0,15.75 +48,4,100717,044348,5.35836,24.5764,0.33,10527.3,1,0,0,15.75 +48,4,100717,044349,5.35730,24.5428,0.32,10528.2,1,0,0,15.75 +48,4,100717,044350,5.35987,24.5631,0.32,10528.7,1,0,0,15.75 +48,4,100717,044351,5.35945,24.6366,0.32,10526.8,1,0,0,15.75 +48,4,100717,044352,5.35794,24.5743,0.32,10526.4,1,0,0,15.75 +48,4,100717,044353,5.35656,24.6077,0.32,10525.4,1,0,0,15.75 +48,4,100717,044354,5.35618,24.6214,0.32,10526.6,1,0,0,15.75 +48,4,100717,044355,5.35703,24.6036,0.32,10526.3,1,0,0,15.75 +48,4,100717,044356,5.35606,24.6273,0.33,10525.4,1,0,0,15.75 +48,4,100717,044357,5.35456,24.6334,0.32,10525.2,1,0,0,15.75 +48,4,100717,044358,5.35479,24.5916,0.33,10524.7,1,0,0,15.75 +48,4,100717,044359,5.35384,24.5462,0.32,10524.3,1,0,0,15.75 +48,4,100717,044400,5.35368,24.4973,0.32,10524.9,1,0,0,15.75 +48,4,100717,044401,5.35547,24.5159,0.32,10525.4,1,0,0,15.75 +48,4,100717,044402,5.35511,24.5887,0.32,10524.1,1,0,0,15.75 +48,4,100717,044403,5.35379,24.6281,0.32,10526.0,1,0,0,15.75 +48,4,100717,044404,5.35459,24.6167,0.33,10525.8,1,0,0,15.75 +48,4,100717,044405,5.35420,24.6003,0.32,10525.4,1,0,0,15.75 +48,4,100717,044406,5.35356,24.5897,0.33,10525.4,1,0,0,15.75 +48,4,100717,044407,5.35279,24.5425,0.33,10526.2,1,0,0,15.75 +48,4,100717,044408,5.35344,24.5138,0.33,10528.2,1,0,0,15.75 +48,4,100717,044409,5.35497,24.5397,0.33,10530.0,1,0,0,15.75 +48,4,100717,044410,5.35686,24.6383,0.32,10530.2,1,0,0,15.75 +48,4,100717,044411,5.35689,24.6186,0.32,10528.9,1,0,0,15.75 +48,4,100717,044412,5.35529,24.5469,0.33,10527.8,1,0,0,15.75 +48,4,100717,044413,5.35376,24.5197,0.33,10527.0,1,0,0,15.75 +48,4,100717,044414,5.35520,24.5333,0.32,10527.1,1,0,0,15.75 +48,4,100717,044415,5.35642,24.5907,0.32,10527.4,1,0,0,15.75 +48,4,100717,044416,5.35600,24.5991,0.32,10528.2,1,0,0,15.75 +48,4,100717,044417,5.35559,24.5871,0.32,10528.3,1,0,0,15.75 +48,4,100717,044418,5.35447,24.5653,0.33,10526.8,1,0,0,15.75 +48,100,100717,044419,1,1,5,8,80,42,1022779,0,0,414724,0,0,0,0,1,15.75 +48,5,100717,044419,5.35330,24.5573,0.32,10528.4,1,0,0,15.75 +48,5,100717,044420,5.35535,24.5573,0.32,10530.7,1,0,0,15.65 +48,5,100717,044421,5.35721,24.5722,0.32,10531.1,1,0,0,15.65 +48,5,100717,044422,5.35692,24.5797,0.32,10529.7,1,0,0,15.57 +48,210,100717,044423,10/06/17 21:40:37 695 1309 700 4130 534 +48,5,100717,044423,5.35465,24.5551,0.31,10527.3,1,1309,4130,15.63 +48,5,100717,044424,5.35306,24.5156,0.32,10527.8,1,1299,4130,15.63 +48,5,100717,044425,5.35373,24.5461,0.32,10528.4,1,1344,4130,15.63 +48,5,100717,044426,5.35695,24.5983,0.32,10530.5,1,1325,4130,15.63 +48,100,100717,044427,1,1,6,60,80,43,1022778,0,0,414724,0,0,0,0,1,15.63 +48,6,100717,044427,5.35848,24.6736,0.33,10529.4,1,1317,4130,15.63 +48,6,100717,044428,5.35659,24.6337,0.33,10527.7,1,1310,4130,15.63 +48,6,100717,044429,5.35429,24.5927,0.32,10526.7,1,1324,4130,15.63 +48,6,100717,044430,5.35232,24.5773,0.32,10527.8,1,1330,4130,15.63 +48,6,100717,044431,5.35388,24.5598,0.33,10529.0,1,1329,4130,15.63 +48,6,100717,044432,5.35665,24.5891,0.32,10531.1,1,1314,4130,15.63 +48,6,100717,044433,5.35701,24.6149,0.32,10531.0,1,1316,4130,15.63 +48,6,100717,044434,5.35667,24.6216,0.32,10529.8,1,1325,4130,15.63 +48,6,100717,044435,5.35491,24.5876,0.32,10527.6,1,1323,4130,15.63 +48,6,100717,044436,5.35318,24.6027,0.33,10527.6,1,1288,4130,15.63 +48,6,100717,044437,5.35494,24.6152,0.32,10531.0,1,1310,4130,15.63 +48,6,100717,044438,5.35895,24.5593,0.33,10532.9,1,1331,4130,15.63 +48,6,100717,044439,5.36140,24.6442,0.33,10534.3,1,1323,4130,15.63 +48,6,100717,044440,5.35916,24.7644,0.32,10530.6,1,1319,4130,15.63 +48,6,100717,044441,5.35462,24.6812,0.32,10528.1,1,1331,4130,15.63 +48,6,100717,044442,5.35238,24.6262,0.32,10528.3,1,1315,4130,15.63 +48,6,100717,044443,5.35491,24.6101,0.33,10529.7,1,1330,4130,15.62 +48,6,100717,044444,5.35754,24.6243,0.32,10532.0,1,1310,4130,15.63 +48,6,100717,044445,5.35957,24.6334,0.33,10529.8,1,1339,4130,15.63 +48,6,100717,044446,5.35604,24.6558,0.32,10527.2,1,1330,4130,15.62 +48,6,100717,044447,5.35344,24.5836,0.33,10525.3,1,1320,4130,15.62 +48,6,100717,044448,5.35300,24.5994,0.32,10525.0,1,1333,4130,15.63 +48,6,100717,044449,5.35314,24.5889,0.32,10527.0,1,1320,4130,15.63 +48,6,100717,044450,5.35506,24.5220,0.32,10528.2,1,1325,4130,15.62 +48,6,100717,044451,5.35511,24.5339,0.33,10528.1,1,1327,4130,15.63 +48,6,100717,044452,5.35450,24.5708,0.32,10527.5,1,1307,4130,15.62 +48,6,100717,044453,5.35501,24.5914,0.32,10529.6,1,1318,4130,15.63 +48,6,100717,044454,5.35910,24.7044,0.32,10532.0,1,1320,4130,15.62 +48,6,100717,044455,5.36101,24.8011,0.32,10532.4,1,1335,4130,15.62 +48,6,100717,044456,5.36299,24.6973,0.33,10530.1,1,1301,4130,15.62 +48,6,100717,044457,5.36010,24.6462,0.33,10527.3,1,1323,4130,15.63 +48,6,100717,044458,5.35701,24.6602,0.32,10524.6,1,1329,4130,15.63 +48,6,100717,044459,5.35485,24.6554,0.32,10524.3,1,1320,4130,15.62 +48,6,100717,044500,5.35541,24.6390,0.32,10524.5,1,1317,4130,15.62 +48,6,100717,044501,5.35680,24.6276,0.32,10527.1,1,1327,4130,15.62 +48,6,100717,044502,5.35789,24.6320,0.32,10529.6,1,1322,4130,15.62 +48,6,100717,044503,5.35913,24.6325,0.32,10531.4,1,1337,4130,15.62 +48,6,100717,044504,5.36049,24.6745,0.32,10533.2,1,1319,4130,15.62 +48,6,100717,044505,5.36089,24.6732,0.32,10533.6,1,1317,4130,15.62 +48,6,100717,044506,5.36050,24.6583,0.32,10532.5,1,1327,4130,15.62 +48,6,100717,044507,5.35890,24.6068,0.32,10532.9,1,1316,4130,15.62 +48,6,100717,044508,5.35972,24.6385,0.32,10534.3,1,1311,4130,15.62 +48,6,100717,044509,5.36282,24.6382,0.33,10535.3,1,1325,4130,15.63 +48,6,100717,044510,5.36435,24.6250,0.32,10538.9,1,1323,4130,15.62 +48,6,100717,044511,5.36648,24.6115,0.32,10537.8,1,1323,4130,15.62 +48,6,100717,044512,5.36261,24.5909,0.33,10537.5,1,1321,4130,15.62 +48,6,100717,044513,5.36131,24.6391,0.32,10538.0,1,1322,4130,15.62 +48,6,100717,044514,5.36364,24.6713,0.32,10539.9,1,1328,4130,15.62 +48,6,100717,044515,5.36462,24.7593,0.33,10538.2,1,1328,4130,15.62 +48,6,100717,044516,5.36084,24.7460,0.32,10535.3,1,1318,4130,15.62 +48,6,100717,044517,5.35892,24.6811,0.33,10533.9,1,1319,4130,15.62 +48,6,100717,044518,5.35842,24.6487,0.32,10532.3,1,1322,4130,15.62 +48,6,100717,044519,5.35860,24.6523,0.32,10533.0,1,1322,4130,15.62 +48,6,100717,044520,5.36020,24.6549,0.32,10534.2,1,1325,4130,15.62 +48,6,100717,044521,5.36356,24.6998,0.33,10535.5,1,1321,4130,15.63 +48,6,100717,044522,5.36315,24.7360,0.32,10536.0,1,1287,4130,15.62 +48,6,100717,044523,5.36285,24.6310,0.33,10534.9,1,1321,4130,15.62 +48,6,100717,044524,5.36110,24.6719,0.32,10534.7,1,1323,4130,15.62 +48,6,100717,044525,5.36075,24.6693,0.33,10536.6,1,1322,4130,15.62 +48,6,100717,044526,5.36391,24.7142,0.32,10541.0,1,1319,4130,15.62 +48,100,100717,044527,1,1,10,746,80,47,1022774,0,0,414724,0,0,0,0,1,15.62 +48,100,100717,045800,1,1,3,7,15,47,1022767,0,0,414724,0,0,0,0,1,15.87 +48,3,100717,045800,5.36887,24.8096,0.32,10542.1,1,0,0,15.87 +48,230,100717,045801,3,24856,24856,24856 +48,100,100717,045807,1,1,4,15,15,47,1022767,0,0,414724,0,0,0,0,1,15.75 +48,200,100717,045807, 53.7730, 24.3922, 0.38, 8765.0, 2 +48,4,100717,045807,5.37730,24.3922,0.38,8765.0,2,0,0,15.75 +48,4,100717,045808,5.37708,24.3851,0.38,8730.2,2,0,0,15.66 +48,4,100717,045809,5.32095,24.3536,0.38,8806.2,1,0,0,15.76 +48,4,100717,045810,5.32578,24.3322,0.38,9046.4,1,0,0,15.76 +48,4,100717,045811,5.32595,24.3328,0.37,9323.9,1,0,0,15.76 +48,4,100717,045812,5.32562,24.3333,0.38,9575.0,1,0,0,15.76 +48,4,100717,045813,5.32544,24.3345,0.38,9782.3,1,0,0,15.76 +48,4,100717,045814,5.32554,24.3389,0.37,9948.3,1,0,0,15.76 +48,4,100717,045815,5.32563,24.3379,0.38,10077.9,1,0,0,15.76 +48,4,100717,045816,5.32522,24.3366,0.38,10178.3,1,0,0,15.76 +48,4,100717,045817,5.32554,24.3366,0.38,10258.0,1,0,0,15.76 +48,4,100717,045818,5.32565,24.3368,0.38,10318.9,1,0,0,15.76 +48,4,100717,045819,5.32574,24.3379,0.38,10367.7,1,0,0,15.76 +48,4,100717,045820,5.32563,24.3393,0.38,10405.6,1,0,0,15.76 +48,4,100717,045821,5.32575,24.3402,0.38,10434.2,1,0,0,15.76 +48,4,100717,045822,5.32580,24.3423,0.38,10456.2,1,0,0,15.75 +48,4,100717,045823,5.32580,24.3417,0.38,10474.1,1,0,0,15.75 +48,4,100717,045824,5.32598,24.3448,0.37,10489.0,1,0,0,15.75 +48,4,100717,045825,5.32616,24.3471,0.38,10500.1,1,0,0,15.75 +48,4,100717,045826,5.32583,24.3517,0.38,10510.1,1,0,0,15.75 +48,4,100717,045827,5.32622,24.3488,0.38,10517.4,1,0,0,15.75 +48,4,100717,045828,5.32583,24.3438,0.38,10523.5,1,0,0,15.76 +48,4,100717,045829,5.32553,24.3404,0.37,10528.6,1,0,0,15.76 +48,4,100717,045830,5.32565,24.3412,0.38,10533.0,1,0,0,15.76 +48,4,100717,045831,5.32586,24.3436,0.38,10535.8,1,0,0,15.76 +48,4,100717,045832,5.32595,24.3433,0.38,10538.2,1,0,0,15.75 +48,4,100717,045833,5.32548,24.3426,0.38,10540.5,1,0,0,15.75 +48,4,100717,045834,5.32545,24.3398,0.38,10542.9,1,0,0,15.75 +48,4,100717,045835,5.32559,24.3401,0.37,10543.9,1,0,0,15.75 +48,4,100717,045836,5.32550,24.3397,0.38,10545.9,1,0,0,15.75 +48,4,100717,045837,5.32556,24.3396,0.38,10547.1,1,0,0,15.75 +48,4,100717,045838,5.32542,24.3389,0.38,10547.8,1,0,0,15.75 +48,4,100717,045839,5.32522,24.3385,0.38,10549.2,1,0,0,15.75 +48,4,100717,045840,5.32519,24.3396,0.38,10549.4,1,0,0,15.75 +48,4,100717,045841,5.32517,24.3384,0.38,10550.8,1,0,0,15.75 +48,4,100717,045842,5.32574,24.3428,0.38,10552.3,1,0,0,15.75 +48,4,100717,045843,5.32532,24.3391,0.38,10553.1,1,0,0,15.75 +48,4,100717,045844,5.32507,24.3381,0.38,10554.2,1,0,0,15.75 +48,4,100717,045845,5.32551,24.3411,0.38,10555.4,1,0,0,15.75 +48,4,100717,045846,5.32516,24.3388,0.37,10555.8,1,0,0,15.75 +48,4,100717,045847,5.32502,24.3386,0.38,10556.4,1,0,0,15.75 +48,4,100717,045848,5.32499,24.3370,0.38,10557.7,1,0,0,15.75 +48,4,100717,045849,5.32484,24.3372,0.38,10558.1,1,0,0,15.75 +48,4,100717,045850,5.32504,24.3375,0.38,10559.9,1,0,0,15.75 +48,4,100717,045851,5.32510,24.3383,0.38,10560.7,1,0,0,15.75 +48,4,100717,045852,5.32522,24.3396,0.38,10561.4,1,0,0,15.75 +48,4,100717,045853,5.32544,24.3429,0.38,10562.1,1,0,0,15.75 +48,4,100717,045854,5.32625,24.3502,0.38,10561.9,1,0,0,15.75 +48,4,100717,045855,5.32616,24.3495,0.38,10561.9,1,0,0,15.75 +48,4,100717,045856,5.32616,24.3480,0.38,10560.9,1,0,0,15.75 +48,4,100717,045857,5.32554,24.3437,0.38,10561.6,1,0,0,15.75 +48,4,100717,045858,5.32554,24.3427,0.38,10561.1,1,0,0,15.75 +48,4,100717,045859,5.32556,24.3441,0.37,10561.8,1,0,0,15.75 +48,4,100717,045900,5.32574,24.3467,0.38,10561.7,1,0,0,15.75 +48,4,100717,045901,5.32601,24.3457,0.38,10562.4,1,0,0,15.75 +48,4,100717,045902,5.32578,24.3469,0.38,10563.3,1,0,0,15.75 +48,4,100717,045903,5.32586,24.3482,0.38,10563.5,1,0,0,15.75 +48,4,100717,045904,5.32616,24.3493,0.37,10563.7,1,0,0,15.75 +48,4,100717,045905,5.32631,24.3520,0.39,10564.4,1,0,0,15.75 +48,4,100717,045906,5.32610,24.3508,0.38,10564.8,1,0,0,15.75 +48,4,100717,045907,5.32601,24.3485,0.38,10564.1,1,0,0,15.75 +48,4,100717,045908,5.32604,24.3482,0.38,10565.4,1,0,0,15.75 +48,4,100717,045909,5.32592,24.3484,0.38,10566.2,1,0,0,15.75 +48,4,100717,045910,5.32668,24.3473,0.38,10565.6,1,0,0,15.75 +48,4,100717,045911,5.32652,24.3503,0.38,10565.5,1,0,0,15.75 +48,4,100717,045912,5.32592,24.3477,0.37,10564.8,1,0,0,15.75 +48,4,100717,045913,5.32592,24.3479,0.39,10564.3,1,0,0,15.75 +48,4,100717,045914,5.32563,24.3461,0.38,10564.8,1,0,0,15.75 +48,4,100717,045915,5.32566,24.3436,0.38,10565.1,1,0,0,15.75 +48,4,100717,045916,5.32598,24.3436,0.38,10564.5,1,0,0,15.75 +48,4,100717,045917,5.32574,24.3444,0.38,10563.8,1,0,0,15.75 +48,4,100717,045918,5.32550,24.3446,0.38,10563.6,1,0,0,15.75 +48,100,100717,045919,1,1,5,8,80,51,1022763,0,0,414724,0,0,0,0,1,15.75 +48,5,100717,045919,5.32566,24.3455,0.39,10563.8,1,0,0,15.75 +48,5,100717,045920,5.32566,24.3457,0.38,10564.1,1,0,0,15.65 +48,5,100717,045921,5.32566,24.3463,0.37,10564.6,1,0,0,15.65 +48,5,100717,045922,5.32569,24.3459,0.38,10564.9,1,0,0,15.57 +48,210,100717,045923,10/06/17 21:55:37 695 1270 700 4130 534 +48,5,100717,045923,5.32577,24.3460,0.37,10564.1,1,1270,4130,15.63 +48,5,100717,045924,5.32578,24.3488,0.38,10564.8,1,1262,4130,15.63 +48,5,100717,045925,5.32595,24.3481,0.38,10564.2,1,1287,4130,15.63 +48,5,100717,045926,5.32586,24.3491,0.38,10565.6,1,1267,4130,15.63 +48,100,100717,045927,1,1,6,60,80,52,1022762,0,0,414724,0,0,0,0,1,15.63 +48,6,100717,045927,5.32616,24.3496,0.38,10565.7,1,1314,4130,15.63 +48,6,100717,045928,5.32595,24.3481,0.37,10566.1,1,1277,4130,15.63 +48,6,100717,045929,5.32586,24.3457,0.38,10565.5,1,1324,4130,15.63 +48,6,100717,045930,5.32592,24.3450,0.38,10565.9,1,1273,4130,15.63 +48,6,100717,045931,5.32592,24.3471,0.37,10565.8,1,1326,4130,15.63 +48,6,100717,045932,5.32598,24.3466,0.37,10566.1,1,1317,4130,15.63 +48,6,100717,045933,5.32578,24.3474,0.38,10565.2,1,1299,4130,15.63 +48,6,100717,045934,5.32535,24.3431,0.38,10565.6,1,1245,4130,15.63 +48,6,100717,045935,5.32517,24.3401,0.38,10565.5,1,1268,4130,15.63 +48,6,100717,045936,5.32545,24.3412,0.38,10565.0,1,1283,4130,15.63 +48,6,100717,045937,5.32566,24.3422,0.38,10565.8,1,1324,4130,15.63 +48,6,100717,045938,5.32616,24.3430,0.37,10566.5,1,1261,4130,15.63 +48,6,100717,045939,5.32616,24.3502,0.38,10565.7,1,1280,4130,15.63 +48,6,100717,045940,5.32562,24.3474,0.38,10566.5,1,1271,4130,15.63 +48,6,100717,045941,5.32580,24.3453,0.38,10565.9,1,1288,4130,15.63 +48,6,100717,045942,5.32554,24.3423,0.39,10565.5,1,1266,4130,15.63 +48,6,100717,045943,5.32537,24.3413,0.38,10566.1,1,1295,4130,15.63 +48,6,100717,045944,5.32525,24.3413,0.37,10566.1,1,1272,4130,15.63 +48,6,100717,045945,5.32531,24.3423,0.38,10565.8,1,1298,4130,15.63 +48,6,100717,045946,5.32547,24.3463,0.37,10565.8,1,1277,4130,15.63 +48,6,100717,045947,5.32538,24.3425,0.38,10564.9,1,1265,4130,15.63 +48,6,100717,045948,5.32548,24.3429,0.38,10565.5,1,1343,4130,15.63 +48,6,100717,045949,5.32569,24.3432,0.38,10566.0,1,1269,4130,15.63 +48,6,100717,045950,5.32580,24.3431,0.38,10565.9,1,1250,4130,15.63 +48,6,100717,045951,5.32551,24.3427,0.38,10566.1,1,1281,4130,15.63 +48,6,100717,045952,5.32571,24.3422,0.38,10566.7,1,1289,4130,15.63 +48,6,100717,045953,5.32649,24.3437,0.38,10567.0,1,1278,4130,15.63 +48,6,100717,045954,5.32695,24.3503,0.38,10567.4,1,1294,4130,15.63 +48,6,100717,045955,5.32844,24.3737,0.38,10566.3,1,1265,4130,15.63 +48,6,100717,045956,5.32850,24.3851,0.38,10565.7,1,1261,4130,15.63 +48,6,100717,045957,5.32783,24.3724,0.38,10563.8,1,1266,4130,15.63 +48,6,100717,045958,5.32750,24.3777,0.37,10562.7,1,1336,4130,15.63 +48,6,100717,045959,5.32706,24.3551,0.38,10562.1,1,1315,4130,15.63 +48,6,100717,050000,5.32671,24.3649,0.38,10562.0,1,1272,4130,15.63 +48,6,100717,050001,5.32671,24.3797,0.38,10561.9,1,1196,4130,15.63 +48,6,100717,050002,5.32677,24.3712,0.38,10562.7,1,1223,4130,15.63 +48,6,100717,050003,5.32729,24.3716,0.38,10563.3,1,1259,4130,15.63 +48,6,100717,050004,5.32661,24.3597,0.38,10562.1,1,1256,4130,15.63 +48,6,100717,050005,5.32616,24.3469,0.38,10564.0,1,1280,4130,15.63 +48,6,100717,050006,5.32595,24.3455,0.38,10563.8,1,1285,4130,15.63 +48,6,100717,050007,5.32613,24.3462,0.38,10564.2,1,1312,4130,15.63 +48,6,100717,050008,5.32686,24.3648,0.38,10563.5,1,1272,4130,15.63 +48,6,100717,050009,5.32658,24.3502,0.38,10564.1,1,1282,4130,15.63 +48,6,100717,050010,5.32724,24.3607,0.38,10564.7,1,1285,4130,15.63 +48,6,100717,050011,5.32701,24.3711,0.38,10563.4,1,1262,4130,15.63 +48,6,100717,050012,5.32645,24.3554,0.38,10564.0,1,1291,4130,15.63 +48,6,100717,050013,5.32633,24.3504,0.38,10564.5,1,1292,4130,15.63 +48,6,100717,050014,5.32646,24.3470,0.38,10564.9,1,1294,4130,15.63 +48,6,100717,050015,5.32721,24.3516,0.37,10565.6,1,1288,4130,15.63 +48,6,100717,050016,5.32762,24.3680,0.38,10565.2,1,1287,4130,15.63 +48,6,100717,050017,5.32786,24.3723,0.39,10566.5,1,1310,4130,15.63 +48,6,100717,050018,5.32762,24.3712,0.38,10566.1,1,1301,4130,15.63 +48,6,100717,050019,5.32715,24.3729,0.37,10566.3,1,1287,4130,15.63 +48,6,100717,050020,5.32708,24.3672,0.38,10566.0,1,1287,4130,15.63 +48,6,100717,050021,5.32732,24.3670,0.38,10564.9,1,1260,4130,15.62 +48,6,100717,050022,5.32733,24.3619,0.37,10565.1,1,1231,4130,15.62 +48,6,100717,050023,5.32739,24.3583,0.37,10565.7,1,1226,4130,15.63 +48,6,100717,050024,5.32709,24.3470,0.38,10565.1,1,1299,4130,15.62 +48,6,100717,050025,5.32682,24.3469,0.38,10564.9,1,1221,4130,15.62 +48,6,100717,050026,5.32682,24.3504,0.38,10563.8,1,1247,4130,15.62 +48,100,100717,050027,1,1,10,746,80,56,1022758,0,0,414724,0,0,0,0,1,15.62 +48,100,100717,051300,1,1,3,7,15,56,1022751,0,0,414724,0,0,0,0,1,15.87 +48,3,100717,051300,5.32671,24.3557,0.38,10565.5,1,0,0,15.87 +48,230,100717,051301,3,24856,24856,24848 +48,100,100717,051307,1,1,4,15,15,56,1022751,0,0,414724,0,0,0,0,1,15.74 +48,200,100717,051307, 53.3780, 24.1819, 0.39, 9324.6, 2 +48,4,100717,051307,5.33780,24.1819,0.39,9324.6,2,0,0,15.74 +48,4,100717,051308,5.33760,24.1823,0.39,9315.6,2,0,0,15.66 +48,4,100717,051309,5.29083,24.1703,0.39,9413.0,1,0,0,15.75 +48,4,100717,051310,5.30712,24.1628,0.38,9617.1,1,0,0,15.76 +48,4,100717,051311,5.30671,24.1619,0.38,9840.8,1,0,0,15.76 +48,4,100717,051312,5.30636,24.1597,0.38,10037.4,1,0,0,15.76 +48,4,100717,051313,5.30624,24.1594,0.38,10199.1,1,0,0,15.76 +48,4,100717,051314,5.30589,24.1573,0.38,10327.7,1,0,0,15.76 +48,4,100717,051315,5.30595,24.1574,0.39,10429.5,1,0,0,15.76 +48,4,100717,051316,5.30569,24.1566,0.38,10509.5,1,0,0,15.76 +48,4,100717,051317,5.30534,24.1539,0.39,10570.6,1,0,0,15.76 +48,4,100717,051318,5.30528,24.1538,0.39,10617.9,1,0,0,15.76 +48,4,100717,051319,5.30511,24.1530,0.38,10655.3,1,0,0,15.76 +48,4,100717,051320,5.30514,24.1521,0.39,10685.2,1,0,0,15.76 +48,4,100717,051321,5.30511,24.1530,0.39,10709.3,1,0,0,15.76 +48,4,100717,051322,5.30514,24.1524,0.38,10726.9,1,0,0,15.76 +48,4,100717,051323,5.30484,24.1510,0.39,10741.4,1,0,0,15.76 +48,4,100717,051324,5.30478,24.1504,0.39,10752.6,1,0,0,15.76 +48,4,100717,051325,5.30475,24.1497,0.38,10762.2,1,0,0,15.75 +48,4,100717,051326,5.30451,24.1490,0.39,10768.5,1,0,0,15.75 +48,4,100717,051327,5.30442,24.1472,0.39,10775.3,1,0,0,15.76 +48,4,100717,051328,5.30409,24.1447,0.39,10780.1,1,0,0,15.76 +48,4,100717,051329,5.30400,24.1446,0.38,10784.8,1,0,0,15.76 +48,4,100717,051330,5.30435,24.1465,0.38,10788.6,1,0,0,15.76 +48,4,100717,051331,5.30374,24.1420,0.39,10791.3,1,0,0,15.75 +48,4,100717,051332,5.30374,24.1436,0.39,10793.9,1,0,0,15.76 +48,4,100717,051333,5.30380,24.1418,0.39,10795.3,1,0,0,15.75 +48,4,100717,051334,5.30380,24.1426,0.38,10797.6,1,0,0,15.75 +48,4,100717,051335,5.30359,24.1411,0.39,10798.5,1,0,0,15.75 +48,4,100717,051336,5.30385,24.1436,0.39,10799.6,1,0,0,15.75 +48,4,100717,051337,5.30356,24.1407,0.38,10801.7,1,0,0,15.75 +48,4,100717,051338,5.30356,24.1414,0.38,10801.7,1,0,0,15.75 +48,4,100717,051339,5.30318,24.1392,0.39,10802.3,1,0,0,15.75 +48,4,100717,051340,5.30313,24.1369,0.38,10803.5,1,0,0,15.75 +48,4,100717,051341,5.30289,24.1351,0.38,10804.3,1,0,0,15.75 +48,4,100717,051342,5.30310,24.1360,0.39,10805.8,1,0,0,15.75 +48,4,100717,051343,5.30321,24.1376,0.39,10806.7,1,0,0,15.75 +48,4,100717,051344,5.30283,24.1346,0.38,10806.9,1,0,0,15.75 +48,4,100717,051345,5.30248,24.1326,0.39,10808.2,1,0,0,15.75 +48,4,100717,051346,5.30263,24.1319,0.38,10809.7,1,0,0,15.75 +48,4,100717,051347,5.30248,24.1307,0.38,10811.0,1,0,0,15.75 +48,4,100717,051348,5.30269,24.1324,0.39,10812.3,1,0,0,15.75 +48,4,100717,051349,5.30246,24.1323,0.39,10813.2,1,0,0,15.75 +48,4,100717,051350,5.30217,24.1282,0.39,10813.8,1,0,0,15.75 +48,4,100717,051351,5.30193,24.1270,0.38,10813.8,1,0,0,15.75 +48,4,100717,051352,5.30179,24.1250,0.39,10813.8,1,0,0,15.75 +48,4,100717,051353,5.30176,24.1255,0.39,10815.9,1,0,0,15.75 +48,4,100717,051354,5.30190,24.1258,0.39,10816.9,1,0,0,15.75 +48,4,100717,051355,5.30202,24.1283,0.38,10817.0,1,0,0,15.75 +48,4,100717,051356,5.30176,24.1259,0.39,10817.2,1,0,0,15.75 +48,4,100717,051357,5.30132,24.1217,0.39,10817.7,1,0,0,15.75 +48,4,100717,051358,5.30118,24.1201,0.39,10818.7,1,0,0,15.75 +48,4,100717,051359,5.30141,24.1215,0.39,10819.5,1,0,0,15.75 +48,4,100717,051400,5.30141,24.1226,0.39,10820.8,1,0,0,15.75 +48,4,100717,051401,5.30129,24.1227,0.39,10821.1,1,0,0,15.75 +48,4,100717,051402,5.30080,24.1175,0.39,10821.4,1,0,0,15.75 +48,4,100717,051403,5.30068,24.1148,0.38,10823.1,1,0,0,15.75 +48,4,100717,051404,5.30062,24.1152,0.39,10823.3,1,0,0,15.75 +48,4,100717,051405,5.30062,24.1163,0.38,10825.1,1,0,0,15.75 +48,4,100717,051406,5.30071,24.1152,0.39,10825.2,1,0,0,15.75 +48,4,100717,051407,5.30029,24.1143,0.39,10825.2,1,0,0,15.75 +48,4,100717,051408,5.30047,24.1135,0.38,10826.1,1,0,0,15.75 +48,4,100717,051409,5.30029,24.1124,0.39,10826.3,1,0,0,15.75 +48,4,100717,051410,5.30002,24.1103,0.38,10827.9,1,0,0,15.75 +48,4,100717,051411,5.30017,24.1116,0.39,10828.5,1,0,0,15.75 +48,4,100717,051412,5.30038,24.1124,0.39,10828.1,1,0,0,15.75 +48,4,100717,051413,5.29999,24.1098,0.39,10828.9,1,0,0,15.75 +48,4,100717,051414,5.29990,24.1093,0.38,10829.6,1,0,0,15.75 +48,4,100717,051415,5.29961,24.1075,0.38,10828.8,1,0,0,15.75 +48,4,100717,051416,5.29966,24.1065,0.38,10829.5,1,0,0,15.75 +48,4,100717,051417,5.29940,24.1051,0.38,10829.4,1,0,0,15.75 +48,4,100717,051418,5.29934,24.1048,0.38,10831.1,1,0,0,15.75 +48,100,100717,051419,1,1,5,8,80,61,1022747,0,0,414724,0,0,0,0,1,15.75 +48,5,100717,051419,5.29917,24.1026,0.39,10832.7,1,0,0,15.75 +48,5,100717,051420,5.29955,24.1061,0.38,10832.3,1,0,0,15.66 +48,5,100717,051421,5.29929,24.1039,0.39,10832.4,1,0,0,15.65 +48,5,100717,051422,5.29908,24.1025,0.39,10832.4,1,0,0,15.58 +48,210,100717,051423,10/06/17 22:10:37 695 1276 700 4130 535 +48,5,100717,051423,5.29911,24.1026,0.39,10833.0,1,1276,4130,15.63 +48,5,100717,051424,5.29905,24.1015,0.39,10832.9,1,1336,4130,15.63 +48,5,100717,051425,5.29894,24.1009,0.39,10833.1,1,1393,4130,15.63 +48,5,100717,051426,5.29911,24.1017,0.39,10834.1,1,1357,4130,15.64 +48,100,100717,051427,1,1,6,60,80,61,1022746,0,0,414724,0,0,0,0,1,15.63 +48,6,100717,051427,5.29879,24.0998,0.39,10834.6,1,1365,4130,15.63 +48,6,100717,051428,5.29842,24.0959,0.38,10834.6,1,1325,4130,15.63 +48,6,100717,051429,5.29859,24.0963,0.39,10834.8,1,1249,4130,15.63 +48,6,100717,051430,5.29845,24.0955,0.38,10835.7,1,1204,4130,15.63 +48,6,100717,051431,5.29866,24.0958,0.39,10835.9,1,1274,4130,15.63 +48,6,100717,051432,5.29833,24.0957,0.38,10837.7,1,1267,4130,15.63 +48,6,100717,051433,5.29857,24.0963,0.39,10837.6,1,1201,4130,15.63 +48,6,100717,051434,5.29830,24.0947,0.39,10838.3,1,1348,4130,15.63 +48,6,100717,051435,5.29839,24.0951,0.39,10838.0,1,1254,4130,15.63 +48,6,100717,051436,5.29839,24.0960,0.38,10838.2,1,1263,4130,15.63 +48,6,100717,051437,5.29824,24.0939,0.39,10838.9,1,1235,4130,15.63 +48,6,100717,051438,5.29792,24.0915,0.39,10840.3,1,1314,4130,15.63 +48,6,100717,051439,5.29774,24.0896,0.38,10840.0,1,1379,4130,15.63 +48,6,100717,051440,5.29769,24.0885,0.39,10840.4,1,1392,4130,15.63 +48,6,100717,051441,5.29763,24.0875,0.38,10841.5,1,1282,4130,15.63 +48,6,100717,051442,5.29801,24.0905,0.39,10841.9,1,1235,4130,15.63 +48,6,100717,051443,5.29766,24.0900,0.38,10842.0,1,1404,4130,15.63 +48,6,100717,051444,5.29731,24.0853,0.39,10842.4,1,1266,4130,15.63 +48,6,100717,051445,5.29748,24.0872,0.38,10842.4,1,1284,4130,15.63 +48,6,100717,051446,5.29728,24.0851,0.39,10843.3,1,1233,4130,15.63 +48,6,100717,051447,5.29708,24.0841,0.39,10843.9,1,1414,4130,15.63 +48,6,100717,051448,5.29735,24.0843,0.39,10843.8,1,1268,4130,15.63 +48,6,100717,051449,5.29702,24.0836,0.39,10844.7,1,1172,4130,15.63 +48,6,100717,051450,5.29720,24.0843,0.38,10845.5,1,1423,4130,15.63 +48,6,100717,051451,5.29694,24.0830,0.39,10845.4,1,1332,4130,15.63 +48,6,100717,051452,5.29679,24.0819,0.38,10846.2,1,1293,4130,15.63 +48,6,100717,051453,5.29661,24.0794,0.39,10846.7,1,1175,4130,15.63 +48,6,100717,051454,5.29650,24.0779,0.39,10847.9,1,1196,4130,15.63 +48,6,100717,051455,5.29635,24.0780,0.39,10848.5,1,1371,4130,15.63 +48,6,100717,051456,5.29661,24.0787,0.39,10850.7,1,1421,4130,15.63 +48,6,100717,051457,5.29693,24.0820,0.38,10850.8,1,1347,4130,15.63 +48,6,100717,051458,5.29679,24.0818,0.38,10849.7,1,1259,4130,15.63 +48,6,100717,051459,5.29621,24.0764,0.39,10850.6,1,1361,4130,15.63 +48,6,100717,051500,5.29603,24.0737,0.39,10851.0,1,1326,4130,15.63 +48,6,100717,051501,5.29621,24.0753,0.39,10850.9,1,1228,4130,15.63 +48,6,100717,051502,5.29628,24.0759,0.38,10851.3,1,1411,4130,15.63 +48,6,100717,051503,5.29584,24.0720,0.39,10851.5,1,1407,4130,15.63 +48,6,100717,051504,5.29587,24.0712,0.38,10852.3,1,1199,4130,15.63 +48,6,100717,051505,5.29572,24.0717,0.39,10852.4,1,1300,4130,15.63 +48,6,100717,051506,5.29584,24.0716,0.38,10853.8,1,1430,4130,15.63 +48,6,100717,051507,5.29572,24.0711,0.39,10853.5,1,1329,4130,15.63 +48,6,100717,051508,5.29560,24.0699,0.39,10855.1,1,1376,4130,15.63 +48,6,100717,051509,5.29545,24.0687,0.39,10855.8,1,1229,4130,15.63 +48,6,100717,051510,5.29562,24.0701,0.38,10856.4,1,1194,4130,15.63 +48,6,100717,051511,5.29533,24.0684,0.38,10857.3,1,1266,4130,15.63 +48,6,100717,051512,5.29539,24.0680,0.39,10857.3,1,1431,4130,15.63 +48,6,100717,051513,5.29513,24.0657,0.39,10857.2,1,1424,4130,15.63 +48,6,100717,051514,5.29519,24.0664,0.38,10857.3,1,1175,4130,15.63 +48,6,100717,051515,5.29504,24.0649,0.38,10858.8,1,1201,4130,15.63 +48,6,100717,051516,5.29548,24.0682,0.39,10859.3,1,1415,4130,15.63 +48,6,100717,051517,5.29527,24.0675,0.39,10858.6,1,1288,4130,15.63 +48,6,100717,051518,5.29486,24.0637,0.39,10858.9,1,1173,4130,15.63 +48,6,100717,051519,5.29480,24.0627,0.38,10859.7,1,1246,4130,15.63 +48,6,100717,051520,5.29477,24.0620,0.39,10859.5,1,1425,4130,15.63 +48,6,100717,051521,5.29447,24.0591,0.39,10860.9,1,1292,4130,15.63 +48,6,100717,051522,5.29458,24.0601,0.39,10862.3,1,1438,4130,15.63 +48,6,100717,051523,5.29437,24.0583,0.39,10863.4,1,1200,4130,15.63 +48,6,100717,051524,5.29440,24.0581,0.39,10863.8,1,1259,4130,15.63 +48,6,100717,051525,5.29429,24.0576,0.39,10865.3,1,1303,4130,15.63 +48,6,100717,051526,5.29446,24.0595,0.39,10864.4,1,1270,4130,15.63 +48,100,100717,051527,1,1,10,746,80,65,1022742,0,0,414724,0,0,0,0,1,15.63 +48,100,100717,052800,1,1,3,7,15,65,1022751,0,0,414724,0,0,0,0,1,15.86 +48,3,100717,052800,5.29420,24.0576,0.38,10865.2,1,0,0,15.86 +48,230,100717,052801,3,24856,24848,24848 +48,100,100717,052807,1,1,4,15,15,65,1022751,0,0,414724,0,0,0,0,1,15.74 +48,200,100717,052807, 52.8460, 23.8714, 0.38, 9545.8, 2 +48,4,100717,052807,5.28460,23.8714,0.38,9545.8,2,0,0,15.74 +48,4,100717,052808,5.28455,23.8715,0.38,9483.6,2,0,0,15.67 +48,4,100717,052809,5.23665,23.8681,0.38,9536.4,1,0,0,15.75 +48,4,100717,052810,5.27104,23.8652,0.38,9731.7,1,0,0,15.76 +48,4,100717,052811,5.27405,23.8649,0.38,9961.7,1,0,0,15.76 +48,4,100717,052812,5.27397,23.8650,0.37,10170.5,1,0,0,15.76 +48,4,100717,052813,5.27389,23.8649,0.38,10342.9,1,0,0,15.76 +48,4,100717,052814,5.27385,23.8648,0.39,10480.8,1,0,0,15.76 +48,4,100717,052815,5.27376,23.8641,0.38,10592.4,1,0,0,15.76 +48,4,100717,052816,5.27366,23.8637,0.38,10678.2,1,0,0,15.76 +48,4,100717,052817,5.27380,23.8639,0.38,10746.1,1,0,0,15.76 +48,4,100717,052818,5.27373,23.8638,0.38,10798.4,1,0,0,15.76 +48,4,100717,052819,5.27370,23.8641,0.37,10839.2,1,0,0,15.76 +48,4,100717,052820,5.27363,23.8638,0.38,10870.7,1,0,0,15.76 +48,4,100717,052821,5.27374,23.8640,0.38,10895.7,1,0,0,15.75 +48,4,100717,052822,5.27364,23.8641,0.37,10915.1,1,0,0,15.75 +48,4,100717,052823,5.27367,23.8637,0.38,10930.7,1,0,0,15.76 +48,4,100717,052824,5.27363,23.8639,0.38,10944.0,1,0,0,15.76 +48,4,100717,052825,5.27363,23.8644,0.38,10952.9,1,0,0,15.76 +48,4,100717,052826,5.27373,23.8646,0.39,10960.4,1,0,0,15.75 +48,4,100717,052827,5.27355,23.8638,0.37,10966.6,1,0,0,15.76 +48,4,100717,052828,5.27374,23.8644,0.38,10971.0,1,0,0,15.76 +48,4,100717,052829,5.27366,23.8641,0.38,10974.7,1,0,0,15.76 +48,4,100717,052830,5.27364,23.8645,0.39,10977.5,1,0,0,15.76 +48,4,100717,052831,5.27358,23.8631,0.38,10980.3,1,0,0,15.75 +48,4,100717,052832,5.27366,23.8636,0.38,10982.2,1,0,0,15.75 +48,4,041018,214349,0.06137,21.9392,-0.27,10909.0,1,0,0,12.34 +48,4,041018,214350,0.06137,21.9393,-0.27,10910.3,1,0,0,12.35 +48,4,041018,214351,0.06139,21.9388,-0.27,10910.0,1,0,0,12.35 +48,4,041018,214352,0.06135,21.9382,-0.27,10909.1,1,0,0,12.34 +48,4,041018,214353,0.06131,21.9392,-0.27,10909.6,1,0,0,12.34 +48,4,041018,214354,0.06136,21.9387,-0.26,10909.6,1,0,0,12.34 +48,4,041018,214355,0.06142,21.9385,-0.27,10909.5,1,0,0,12.35 +48,4,041018,214356,0.06133,21.9377,-0.27,10909.2,1,0,0,12.34 +48,4,041018,214357,0.06135,21.9385,-0.27,10909.7,1,0,0,12.34 +48,4,041018,214358,0.06135,21.9376,-0.27,10910.0,1,0,0,12.34 +48,4,041018,214359,0.06138,21.9367,-0.26,10909.6,1,0,0,12.34 +48,4,041018,214400,0.06137,21.9364,-0.27,10909.6,1,0,0,12.34 +48,4,041018,214401,0.06135,21.9370,-0.26,10910.0,1,0,0,12.34 +48,4,041018,214402,0.06139,21.9371,-0.26,10909.8,1,0,0,12.34 +48,4,041018,214403,0.06136,21.9372,-0.28,10909.9,1,0,0,12.34 +48,4,041018,214404,0.06134,21.9372,-0.25,10909.6,1,0,0,12.34 +48,4,041018,214405,0.06136,21.9363,-0.27,10908.9,1,0,0,12.34 +48,4,041018,214406,0.06135,21.9361,-0.26,10910.1,1,0,0,12.34 +48,4,041018,214407,0.06136,21.9363,-0.26,10909.6,1,0,0,12.34 +48,4,041018,214408,0.06139,21.9352,-0.26,10909.8,1,0,0,12.34 +48,4,041018,214409,0.06134,21.9353,-0.27,10911.1,1,0,0,12.34 +48,4,041018,214410,0.06136,21.9358,-0.26,10909.6,1,0,0,12.34 +48,4,041018,214411,0.06132,21.9354,-0.26,10909.3,1,0,0,12.34 +48,4,041018,214412,0.06138,21.9348,-0.26,10909.3,1,0,0,12.34 +48,4,041018,214413,0.06138,21.9338,-0.26,10909.5,1,0,0,12.34 +48,4,041018,214414,0.06131,21.9350,-0.26,10909.1,1,0,0,12.34 +48,4,041018,214415,0.06137,21.9348,-0.26,10910.1,1,0,0,12.34 +48,4,041018,214416,0.06138,21.9337,-0.25,10909.2,1,0,0,12.34 +48,4,041018,214417,0.06132,21.9330,-0.26,10910.0,1,0,0,12.34 +48,4,041018,214418,0.06136,21.9339,-0.26,10909.6,1,0,0,12.34 +48,4,041018,214419,0.06134,21.9333,-0.26,10909.2,1,0,0,12.34 +48,100,041018,214420,1,1,5,8,80,163855,858955,0,0,414724,0,0,0,0,1,12.34 +48,5,041018,214420,0.06137,21.9331,-0.25,10909.9,1,0,0,12.34 +48,5,041018,214421,0.06135,21.9327,-0.26,10909.5,1,0,0,12.26 +48,5,041018,214422,0.06135,21.9329,-0.26,10909.4,1,0,0,12.25 +48,5,041018,214423,0.06136,21.9318,-0.26,10910.1,1,0,0,12.18 +48,5,041018,214424,0.06130,21.9325,-0.27,10908.6,1,0,0,12.22 +48,210,041018,214424,04/10/18 14:39:29 695 85 700 1473 537 +48,5,041018,214425,0.06136,21.9319,-0.26,10909.7,1,85,1473,12.22 +48,5,041018,214426,0.06138,21.9315,-0.25,10909.3,1,81,1474,12.22 +48,5,041018,214427,0.06132,21.9318,-0.26,10909.6,1,80,1477,12.22 +48,100,041018,214428,1,1,6,60,80,163856,858954,0,0,414724,0,0,0,0,1,12.22 +48,6,041018,214428,0.06136,21.9314,-0.27,10909.5,1,83,1472,12.22 +48,6,041018,214429,0.06136,21.9305,-0.26,10909.8,1,80,1476,12.22 +48,6,041018,214430,0.06131,21.9309,-0.25,10909.6,1,81,1475,12.22 +48,6,041018,214431,0.06136,21.9310,-0.25,10909.3,1,78,1475,12.22 +48,6,041018,214432,0.06137,21.9307,-0.27,10909.4,1,81,1477,12.21 +48,6,041018,214433,0.06136,21.9308,-0.26,10908.2,1,81,1475,12.21 +48,6,041018,214434,0.06134,21.9307,-0.25,10909.5,1,79,1475,12.21 +48,6,041018,214435,0.06131,21.9308,-0.26,10909.1,1,79,1474,12.21 +48,6,041018,214436,0.06136,21.9305,-0.26,10909.5,1,79,1476,12.21 +48,6,041018,214437,0.06136,21.9294,-0.27,10909.7,1,81,1474,12.21 +48,6,041018,214438,0.06133,21.9294,-0.26,10909.4,1,87,1478,12.21 +48,6,041018,214439,0.06132,21.9303,-0.27,10909.2,1,81,1477,12.21 +48,6,041018,214440,0.06138,21.9291,-0.25,10909.5,1,80,1474,12.21 +48,6,041018,214441,0.06133,21.9288,-0.26,10909.5,1,77,1474,12.21 +48,6,041018,214442,0.06132,21.9293,-0.26,10908.8,1,80,1474,12.21 +48,6,041018,214443,0.06136,21.9289,-0.26,10909.0,1,79,1475,12.20 +48,6,041018,214444,0.06137,21.9279,-0.27,10909.6,1,79,1474,12.20 +48,6,041018,214445,0.06135,21.9285,-0.26,10909.5,1,82,1475,12.21 +48,6,041018,214446,0.06134,21.9285,-0.25,10909.5,1,79,1475,12.20 +48,6,041018,214447,0.06134,21.9279,-0.26,10908.9,1,79,1474,12.21 +48,6,041018,214448,0.06131,21.9273,-0.26,10909.4,1,84,1465,12.20 +48,6,041018,214449,0.06136,21.9277,-0.25,10908.7,1,80,1474,12.20 +48,6,041018,214450,0.06136,21.9265,-0.26,10909.9,1,79,1474,12.20 +48,6,041018,214451,0.06130,21.9271,-0.26,10909.5,1,80,1475,12.20 +48,6,041018,214452,0.06133,21.9266,-0.25,10909.3,1,81,1473,12.20 +48,6,041018,214453,0.06135,21.9268,-0.26,10909.8,1,80,1476,12.20 +48,6,041018,214454,0.06134,21.9258,-0.26,10909.1,1,79,1473,12.20 +48,6,041018,214455,0.06131,21.9257,-0.26,10908.6,1,79,1473,12.20 +48,6,041018,214456,0.06133,21.9257,-0.25,10909.3,1,81,1474,12.20 +48,6,041018,214457,0.06135,21.9247,-0.25,10909.6,1,79,1475,12.20 +48,6,041018,214458,0.06129,21.9250,-0.25,10909.3,1,79,1478,12.20 +48,6,041018,214459,0.06130,21.9260,-0.26,10909.2,1,79,1474,12.20 +48,6,041018,214500,0.06137,21.9239,-0.24,10909.5,1,78,1474,12.20 +48,6,041018,214501,0.06132,21.9236,-0.26,10909.6,1,79,1475,12.20 +48,6,041018,214502,0.06126,21.9246,-0.26,10910.2,1,79,1473,12.20 +48,6,041018,214503,0.06136,21.9247,-0.25,10909.7,1,80,1475,12.20 +48,6,041018,214504,0.06135,21.9236,-0.26,10910.0,1,80,1475,12.20 +48,6,041018,214505,0.06128,21.9245,-0.25,10909.2,1,79,1474,12.20 +48,6,041018,214506,0.06135,21.9237,-0.26,10909.0,1,81,1474,12.20 +48,6,041018,214507,0.06138,21.9229,-0.25,10909.1,1,79,1473,12.20 +48,6,041018,214508,0.06129,21.9230,-0.26,10909.9,1,79,1472,12.20 +48,6,041018,214509,0.06133,21.9240,-0.25,10910.2,1,82,1474,12.20 +48,6,041018,214510,0.06135,21.9229,-0.26,10909.2,1,78,1474,12.20 +48,6,041018,214511,0.06138,21.9223,-0.25,10909.4,1,79,1473,12.20 +48,6,041018,214512,0.06135,21.9215,-0.26,10909.8,1,79,1473,12.20 +48,6,041018,214513,0.06135,21.9218,-0.26,10909.2,1,78,1473,12.20 +48,6,041018,214514,0.06137,21.9215,-0.26,10909.4,1,80,1474,12.20 +48,6,041018,214515,0.06139,21.9209,-0.25,10909.9,1,82,1475,12.20 +48,6,041018,214516,0.06135,21.9208,-0.25,10909.7,1,80,1472,12.20 +48,6,041018,214517,0.06135,21.9214,-0.25,10908.6,1,82,1474,12.20 +48,6,041018,214518,0.06135,21.9207,-0.25,10909.8,1,76,1476,12.20 +48,6,041018,214519,0.06138,21.9194,-0.25,10909.4,1,81,1474,12.20 +48,6,041018,214520,0.06132,21.9190,-0.26,10909.4,1,80,1472,12.20 +48,6,041018,214521,0.06136,21.9196,-0.25,10909.3,1,78,1474,12.20 +48,6,041018,214522,0.06137,21.9198,-0.25,10909.8,1,80,1472,12.19 +48,6,041018,214523,0.06138,21.9189,-0.25,10909.4,1,79,1475,12.20 +48,6,041018,214524,0.06137,21.9189,-0.25,10909.9,1,79,1472,12.20 +48,6,041018,214525,0.06132,21.9188,-0.26,10909.2,1,81,1472,12.20 +48,6,041018,214526,0.06136,21.9179,-0.25,10909.6,1,81,1472,12.20 +48,6,041018,214527,0.06134,21.9178,-0.26,10909.7,1,80,1474,12.20 +48,100,041018,214528,1,1,10,743,80,163860,858950,0,0,414724,0,0,0,0,1,12.20 +48,100,041018,215800,1,1,3,7,15,163860,858959,0,0,414724,0,0,0,0,1,12.48 +48,3,041018,215800,0.06136,21.9168,-0.26,10909.5,1,0,0,12.48 +48,230,041018,215801,3,19504,19504,19504 +48,100,041018,215807,1,1,4,15,15,163860,858959,0,0,414724,0,0,0,0,1,12.39 +48,200,041018,215808, 0.6002, 21.7219, -0.36, 10910.0, 2 +48,4,041018,215808,0.06002,21.7219,-0.36,10910.0,2,0,0,12.32 +48,4,041018,215809,0.05999,21.7227,-0.35,10911.0,2,0,0,12.36 +48,4,041018,215810,0.06000,21.7235,-0.34,10911.8,1,0,0,12.37 +48,4,041018,215811,0.06001,21.7213,-0.34,10911.9,1,0,0,12.37 +48,4,041018,215812,0.05999,21.7219,-0.31,10911.8,1,0,0,12.36 +48,4,041018,215813,0.05999,21.7223,-0.32,10912.0,1,0,0,12.37 +48,4,041018,215814,0.05999,21.7224,-0.31,10912.1,1,0,0,12.36 +48,4,041018,215815,0.05998,21.7232,-0.30,10911.7,1,0,0,12.36 +48,4,041018,215816,0.05999,21.7228,-0.30,10911.6,1,0,0,12.36 +48,4,041018,215817,0.05998,21.7225,-0.30,10911.7,1,0,0,12.36 +48,4,041018,215818,0.05997,21.7234,-0.29,10911.0,1,0,0,12.36 +48,4,041018,215819,0.05997,21.7233,-0.30,10911.5,1,0,0,12.36 +48,4,041018,215820,0.05996,21.7235,-0.28,10911.3,1,0,0,12.36 +48,4,041018,215821,0.05997,21.7226,-0.29,10911.7,1,0,0,12.36 +48,4,041018,215822,0.05997,21.7232,-0.29,10912.4,1,0,0,12.36 +48,4,041018,215823,0.05998,21.7229,-0.28,10911.5,1,0,0,12.36 +48,4,041018,215824,0.05997,21.7231,-0.29,10912.0,1,0,0,12.35 +48,4,041018,215825,0.05995,21.7231,-0.28,10912.3,1,0,0,12.35 +48,4,041018,215826,0.05996,21.7229,-0.29,10911.9,1,0,0,12.35 +48,4,041018,215827,0.05995,21.7231,-0.28,10911.2,1,0,0,12.35 +48,4,041018,215828,0.05994,21.7232,-0.28,10911.4,1,0,0,12.35 +48,4,041018,215829,0.05995,21.7225,-0.28,10911.5,1,0,0,12.35 +48,4,041018,215830,0.05995,21.7222,-0.28,10911.3,1,0,0,12.35 +48,4,041018,215831,0.05994,21.7212,-0.27,10912.3,1,0,0,12.35 +48,4,041018,215832,0.05995,21.7217,-0.27,10911.9,1,0,0,12.35 +48,4,041018,215833,0.05996,21.7224,-0.26,10911.9,1,0,0,12.35 +48,4,041018,215834,0.05994,21.7226,-0.27,10912.1,1,0,0,12.35 +48,4,041018,215835,0.05994,21.7228,-0.27,10912.4,1,0,0,12.35 +48,4,041018,215836,0.05995,21.7221,-0.26,10911.6,1,0,0,12.35 +48,4,041018,215837,0.05992,21.7224,-0.27,10911.5,1,0,0,12.35 +48,4,041018,215838,0.05991,21.7233,-0.25,10911.9,1,0,0,12.35 +48,4,041018,215839,0.05992,21.7227,-0.25,10911.5,1,0,0,12.35 +48,4,041018,215840,0.05995,21.7225,-0.26,10911.5,1,0,0,12.35 +48,4,041018,215841,0.05993,21.7233,-0.27,10910.7,1,0,0,12.35 +48,4,041018,215842,0.05991,21.7234,-0.27,10911.5,1,0,0,12.35 +48,4,041018,215843,0.05993,21.7234,-0.27,10911.1,1,0,0,12.35 +48,4,041018,215844,0.05993,21.7232,-0.27,10911.9,1,0,0,12.35 +48,4,041018,215845,0.05990,21.7235,-0.27,10911.5,1,0,0,12.35 +48,4,041018,215846,0.05990,21.7232,-0.26,10912.1,1,0,0,12.35 +48,4,041018,215847,0.05993,21.7232,-0.27,10911.6,1,0,0,12.35 +48,4,041018,215848,0.05994,21.7236,-0.26,10912.4,1,0,0,12.35 +48,4,041018,215849,0.05990,21.7235,-0.27,10911.5,1,0,0,12.35 +48,4,041018,215850,0.05989,21.7243,-0.26,10911.2,1,0,0,12.34 +48,4,041018,215851,0.05989,21.7243,-0.27,10912.7,1,0,0,12.35 +48,4,041018,215852,0.05992,21.7236,-0.26,10911.4,1,0,0,12.34 +48,4,041018,215853,0.05989,21.7243,-0.25,10911.7,1,0,0,12.34 +48,4,041018,215854,0.05988,21.7246,-0.25,10911.5,1,0,0,12.35 +48,4,041018,215855,0.05989,21.7244,-0.27,10911.5,1,0,0,12.34 +48,4,041018,215856,0.05992,21.7245,-0.26,10912.7,1,0,0,12.34 +48,4,041018,215857,0.05990,21.7244,-0.26,10911.9,1,0,0,12.34 +48,4,041018,215858,0.05989,21.7243,-0.26,10910.5,1,0,0,12.35 +48,4,041018,215859,0.05988,21.7247,-0.25,10911.9,1,0,0,12.34 +48,4,041018,215900,0.05988,21.7248,-0.25,10910.7,1,0,0,12.35 +48,4,041018,215901,0.05988,21.7244,-0.26,10911.9,1,0,0,12.34 +48,4,041018,215902,0.05990,21.7252,-0.26,10911.5,1,0,0,12.34 +48,4,041018,215903,0.05987,21.7255,-0.24,10911.6,1,0,0,12.34 +48,4,041018,215904,0.05987,21.7251,-0.26,10912.1,1,0,0,12.34 +48,4,041018,215905,0.05988,21.7250,-0.26,10912.1,1,0,0,12.34 +48,4,041018,215906,0.05987,21.7249,-0.27,10911.8,1,0,0,12.34 +48,4,041018,215907,0.05988,21.7256,-0.26,10911.7,1,0,0,12.34 +48,4,041018,215908,0.05988,21.7257,-0.26,10911.9,1,0,0,12.34 +48,4,041018,215909,0.05987,21.7258,-0.25,10911.2,1,0,0,12.34 +48,4,041018,215910,0.05986,21.7266,-0.26,10912.0,1,0,0,12.34 +48,4,041018,215911,0.05988,21.7266,-0.26,10911.6,1,0,0,12.34 +48,4,041018,215912,0.05986,21.7257,-0.26,10911.8,1,0,0,12.34 +48,4,041018,215913,0.05985,21.7263,-0.27,10911.3,1,0,0,12.34 +48,4,041018,215914,0.05986,21.7265,-0.26,10911.5,1,0,0,12.34 +48,4,041018,215915,0.05987,21.7268,-0.26,10912.4,1,0,0,12.34 +48,4,041018,215916,0.05985,21.7271,-0.25,10912.1,1,0,0,12.34 +48,4,041018,215917,0.05984,21.7263,-0.26,10912.2,1,0,0,12.34 +48,4,041018,215918,0.05985,21.7265,-0.25,10911.9,1,0,0,12.34 +48,4,041018,215919,0.05985,21.7278,-0.25,10912.2,1,0,0,12.34 +48,100,041018,215920,1,1,5,8,80,163864,858955,0,0,414724,0,0,0,0,1,12.34 +48,5,041018,215920,0.05984,21.7272,-0.26,10911.5,1,0,0,12.34 +48,5,041018,215921,0.05984,21.7274,-0.24,10912.4,1,0,0,12.25 +48,5,041018,215922,0.05983,21.7282,-0.26,10912.4,1,0,0,12.25 +48,5,041018,215923,0.05984,21.7287,-0.27,10911.5,1,0,0,12.18 +48,5,041018,215924,0.05985,21.7282,-0.26,10911.0,1,0,0,12.22 +48,210,041018,215924,04/10/18 14:54:29 695 82 700 1481 537 +48,5,041018,215925,0.05982,21.7280,-0.24,10912.7,1,82,1481,12.22 +48,5,041018,215926,0.05983,21.7288,-0.26,10912.0,1,81,1478,12.22 +48,5,041018,215927,0.05984,21.7287,-0.26,10912.0,1,79,1486,12.22 +48,100,041018,215928,1,1,6,60,80,163865,858954,0,0,414724,0,0,0,0,1,12.22 +48,6,041018,215928,0.05984,21.7285,-0.25,10911.1,1,81,1482,12.22 +48,6,041018,215929,0.05982,21.7292,-0.26,10912.4,1,79,1484,12.22 +48,6,041018,215930,0.05983,21.7295,-0.24,10911.3,1,78,1482,12.21 +48,6,041018,215931,0.05983,21.7291,-0.25,10911.6,1,80,1484,12.21 +48,6,041018,215932,0.05982,21.7287,-0.25,10912.5,1,80,1485,12.21 +48,6,041018,215933,0.05981,21.7293,-0.25,10912.1,1,82,1486,12.21 +48,6,041018,215934,0.05982,21.7295,-0.26,10912.0,1,79,1483,12.21 +48,6,041018,215935,0.05984,21.7294,-0.25,10912.1,1,79,1481,12.21 +48,6,041018,215936,0.05982,21.7302,-0.25,10911.8,1,80,1484,12.21 +48,6,041018,215937,0.05981,21.7291,-0.26,10912.4,1,79,1485,12.21 +48,6,041018,215938,0.05981,21.7297,-0.26,10912.1,1,85,1480,12.21 +48,6,041018,215939,0.05983,21.7298,-0.25,10912.0,1,80,1484,12.21 +48,6,041018,215940,0.05981,21.7300,-0.25,10911.7,1,82,1484,12.21 +48,6,041018,215941,0.05981,21.7302,-0.27,10912.4,1,79,1483,12.21 +48,6,041018,215942,0.05980,21.7306,-0.25,10912.4,1,80,1482,12.21 +48,6,041018,215943,0.05979,21.7306,-0.26,10911.8,1,80,1484,12.21 +48,6,041018,215944,0.05979,21.7302,-0.26,10912.4,1,81,1483,12.21 +48,6,041018,215945,0.05979,21.7312,-0.25,10912.2,1,82,1484,12.21 +48,6,041018,215946,0.05980,21.7318,-0.25,10912.3,1,78,1483,12.21 +48,6,041018,215947,0.05980,21.7312,-0.26,10912.0,1,79,1483,12.20 +48,6,041018,215948,0.05978,21.7317,-0.24,10912.4,1,81,1484,12.21 +48,6,041018,215949,0.05979,21.7316,-0.25,10911.4,1,79,1484,12.20 +48,6,041018,215950,0.05979,21.7320,-0.25,10912.8,1,79,1486,12.21 +48,6,041018,215951,0.05978,21.7323,-0.25,10911.5,1,81,1481,12.20 +48,6,041018,215952,0.05979,21.7323,-0.25,10912.4,1,79,1484,12.20 +48,6,041018,215953,0.05978,21.7323,-0.25,10910.9,1,79,1482,12.20 +48,6,041018,215954,0.05978,21.7325,-0.26,10911.5,1,80,1484,12.20 +48,6,041018,215955,0.05976,21.7324,-0.26,10911.8,1,81,1482,12.20 +48,6,041018,215956,0.05977,21.7326,-0.25,10911.9,1,81,1483,12.20 +48,6,041018,215957,0.05979,21.7323,-0.25,10912.6,1,80,1482,12.20 +48,6,041018,215958,0.05978,21.7326,-0.26,10912.1,1,70,1493,12.20 +48,6,041018,215959,0.05976,21.7329,-0.25,10911.9,1,80,1483,12.20 +48,6,041018,220000,0.05976,21.7331,-0.25,10911.9,1,79,1484,12.20 +48,6,041018,220001,0.05977,21.7330,-0.27,10911.9,1,79,1481,12.20 +48,6,041018,220002,0.05976,21.7333,-0.26,10911.5,1,82,1482,12.20 +48,6,041018,220003,0.05977,21.7333,-0.25,10911.5,1,78,1480,12.20 +48,6,041018,220004,0.05975,21.7342,-0.25,10911.8,1,80,1483,12.20 +48,6,041018,220005,0.05975,21.7343,-0.24,10911.7,1,80,1484,12.20 +48,6,041018,220006,0.05976,21.7338,-0.26,10911.5,1,80,1483,12.20 +48,6,041018,220007,0.05975,21.7343,-0.25,10911.2,1,78,1481,12.20 +48,6,041018,220008,0.05975,21.7341,-0.25,10911.5,1,78,1477,12.20 +48,6,041018,220009,0.05975,21.7344,-0.26,10911.5,1,78,1482,12.20 +48,6,041018,220010,0.05974,21.7349,-0.25,10912.1,1,81,1482,12.20 +48,6,041018,220011,0.05974,21.7348,-0.25,10912.7,1,81,1482,12.20 +48,6,041018,220012,0.05975,21.7351,-0.25,10912.2,1,80,1482,12.20 +48,6,041018,220013,0.05976,21.7348,-0.25,10912.1,1,78,1482,12.20 +48,6,041018,220014,0.05973,21.7346,-0.25,10912.3,1,79,1482,12.20 +48,6,041018,220015,0.05973,21.7347,-0.25,10911.8,1,79,1483,12.20 +48,6,041018,220016,0.05973,21.7347,-0.27,10911.5,1,80,1482,12.19 +48,6,041018,220017,0.05975,21.7351,-0.25,10913.0,1,81,1482,12.20 +48,6,041018,220018,0.05975,21.7346,-0.25,10912.0,1,75,1485,12.20 +48,6,041018,220019,0.05973,21.7354,-0.24,10912.5,1,80,1480,12.20 +48,6,041018,220020,0.05973,21.7349,-0.25,10912.5,1,78,1482,12.20 +48,6,041018,220021,0.05974,21.7357,-0.25,10911.9,1,80,1482,12.20 +48,6,041018,220022,0.05973,21.7353,-0.25,10911.6,1,80,1481,12.20 +48,6,041018,220023,0.05972,21.7365,-0.25,10912.1,1,80,1482,12.20 +48,6,041018,220024,0.05972,21.7367,-0.26,10912.1,1,82,1480,12.20 +48,6,041018,220025,0.05971,21.7361,-0.24,10912.3,1,80,1481,12.20 +48,6,041018,220026,0.05973,21.7370,-0.25,10912.4,1,80,1480,12.20 +48,6,041018,220027,0.05971,21.7369,-0.25,10912.3,1,81,1481,12.20 +48,100,041018,220028,1,1,10,744,80,163869,858950,0,0,414724,0,0,0,0,1,12.20 +48,100,041018,221300,1,1,3,7,15,163869,858943,0,0,414724,0,0,0,0,1,12.48 +48,3,041018,221300,0.05972,21.7372,-0.25,10912.5,1,0,0,12.48 +48,230,041018,221301,3,19504,19504,19512 +48,100,041018,221307,1,1,4,15,15,163869,858943,0,0,414724,0,0,0,0,1,12.39 +48,200,041018,221308, 0.5859, 21.7907, -0.37, 10912.3, 2 +48,4,041018,221308,0.05859,21.7907,-0.37,10912.3,2,0,0,12.32 +48,4,041018,221309,0.05860,21.7911,-0.35,10913.2,2,0,0,12.36 +48,4,041018,221310,0.05861,21.7916,-0.34,10913.8,1,0,0,12.37 +48,4,041018,221311,0.05856,21.7913,-0.33,10913.7,1,0,0,12.37 +48,4,041018,221312,0.05854,21.7902,-0.32,10913.3,1,0,0,12.36 +48,4,041018,221313,0.05858,21.7902,-0.33,10913.8,1,0,0,12.36 +48,4,041018,221314,0.05859,21.7908,-0.31,10913.2,1,0,0,12.36 +48,4,041018,221315,0.05859,21.7915,-0.30,10913.7,1,0,0,12.36 +48,4,041018,221316,0.05858,21.7910,-0.30,10913.2,1,0,0,12.36 +48,4,041018,221317,0.05857,21.7916,-0.29,10913.5,1,0,0,12.36 +48,4,041018,221318,0.05856,21.7915,-0.29,10913.4,1,0,0,12.36 +48,4,041018,221319,0.05856,21.7910,-0.31,10913.1,1,0,0,12.36 +48,4,041018,221320,0.05858,21.7918,-0.29,10913.0,1,0,0,12.35 +48,4,041018,221321,0.05857,21.7908,-0.27,10913.8,1,0,0,12.36 +48,4,041018,221322,0.05856,21.7918,-0.29,10913.9,1,0,0,12.36 +48,4,041018,221323,0.05856,21.7917,-0.27,10913.7,1,0,0,12.36 +48,4,041018,221324,0.05854,21.7919,-0.29,10914.3,1,0,0,12.35 +48,4,041018,221325,0.05854,21.7919,-0.29,10913.5,1,0,0,12.35 +48,4,041018,221326,0.05855,21.7915,-0.29,10913.4,1,0,0,12.35 +48,4,041018,221327,0.05856,21.7917,-0.28,10913.1,1,0,0,12.35 +48,4,041018,221328,0.05856,21.7923,-0.29,10913.5,1,0,0,12.35 +48,4,041018,221329,0.05855,21.7929,-0.27,10913.3,1,0,0,12.35 +48,4,041018,221330,0.05852,21.7938,-0.27,10913.6,1,0,0,12.35 +48,4,041018,221331,0.05848,21.7935,-0.27,10912.7,1,0,0,12.35 +48,4,041018,221332,0.05852,21.7919,-0.27,10913.3,1,0,0,12.35 +48,4,041018,221333,0.05855,21.7926,-0.28,10913.4,1,0,0,12.35 +48,4,041018,221334,0.05857,21.7923,-0.27,10913.8,1,0,0,12.35 +48,4,041018,221335,0.05857,21.7910,-0.27,10914.1,1,0,0,12.35 +48,4,041018,221336,0.05855,21.7922,-0.27,10913.9,1,0,0,12.35 +48,4,041018,221337,0.05854,21.7915,-0.25,10913.9,1,0,0,12.35 +48,4,041018,221338,0.05851,21.7910,-0.26,10913.7,1,0,0,12.35 +48,4,041018,221339,0.05852,21.7910,-0.27,10912.9,1,0,0,12.35 +48,4,041018,221340,0.05854,21.7903,-0.25,10913.8,1,0,0,12.35 +48,4,041018,221341,0.05858,21.7913,-0.27,10913.6,1,0,0,12.35 +48,4,041018,221342,0.05856,21.7915,-0.27,10914.2,1,0,0,12.35 +48,4,041018,221343,0.05853,21.7922,-0.26,10914.0,1,0,0,12.35 +48,4,041018,221344,0.05850,21.7919,-0.26,10913.8,1,0,0,12.35 +48,4,041018,221345,0.05851,21.7915,-0.27,10914.0,1,0,0,12.35 +48,4,041018,221346,0.05851,21.7909,-0.26,10913.8,1,0,0,12.35 +48,4,041018,221347,0.05853,21.7917,-0.26,10913.4,1,0,0,12.35 +48,4,041018,221348,0.05855,21.7917,-0.24,10914.2,1,0,0,12.35 +48,4,041018,221349,0.05854,21.7919,-0.26,10913.9,1,0,0,12.34 +48,4,041018,221350,0.05851,21.7921,-0.27,10913.8,1,0,0,12.34 +48,4,041018,221351,0.05850,21.7921,-0.26,10913.8,1,0,0,12.35 +48,4,041018,221352,0.05851,21.7926,-0.26,10914.3,1,0,0,12.34 +48,4,041018,221353,0.05852,21.7923,-0.26,10913.0,1,0,0,12.35 +48,4,041018,221354,0.05853,21.7921,-0.26,10913.3,1,0,0,12.35 +48,4,041018,221355,0.05851,21.7928,-0.26,10913.6,1,0,0,12.35 +48,4,041018,221356,0.05850,21.7925,-0.26,10913.4,1,0,0,12.34 +48,4,041018,221357,0.05851,21.7925,-0.25,10915.0,1,0,0,12.34 +48,4,041018,221358,0.05852,21.7925,-0.27,10913.8,1,0,0,12.34 +48,4,041018,221359,0.05850,21.7937,-0.24,10914.5,1,0,0,12.34 +48,4,041018,221400,0.05848,21.7934,-0.26,10913.4,1,0,0,12.34 +48,4,041018,221401,0.05851,21.7928,-0.27,10913.8,1,0,0,12.34 +48,4,041018,221402,0.05851,21.7926,-0.26,10913.8,1,0,0,12.34 +48,4,041018,221403,0.05851,21.7938,-0.27,10913.9,1,0,0,12.34 +48,4,041018,221404,0.05850,21.7934,-0.26,10913.2,1,0,0,12.34 +48,4,041018,221405,0.05849,21.7938,-0.26,10913.3,1,0,0,12.34 +48,4,041018,221406,0.05848,21.7935,-0.25,10914.3,1,0,0,12.34 +48,4,041018,221407,0.05849,21.7941,-0.26,10914.3,1,0,0,12.34 +48,4,041018,221408,0.05848,21.7950,-0.24,10913.4,1,0,0,12.34 +48,4,041018,221409,0.05850,21.7946,-0.25,10913.4,1,0,0,12.34 +48,4,041018,221410,0.05848,21.7943,-0.26,10913.7,1,0,0,12.34 +48,4,041018,221411,0.05848,21.7944,-0.26,10913.6,1,0,0,12.34 +48,4,041018,221412,0.05848,21.7945,-0.25,10914.1,1,0,0,12.34 +48,4,041018,221413,0.05850,21.7946,-0.26,10913.8,1,0,0,12.34 +48,4,041018,221414,0.05850,21.7941,-0.26,10913.7,1,0,0,12.34 +48,4,041018,221415,0.05846,21.7953,-0.26,10914.0,1,0,0,12.34 +48,4,041018,221416,0.05846,21.7960,-0.25,10913.3,1,0,0,12.34 +48,4,041018,221417,0.05848,21.7953,-0.26,10913.8,1,0,0,12.34 +48,4,041018,221418,0.05848,21.7954,-0.25,10913.7,1,0,0,12.34 +48,4,041018,221419,0.05848,21.7960,-0.26,10913.8,1,0,0,12.34 +48,100,041018,221420,1,1,5,8,80,163874,858939,0,0,414724,0,0,0,0,1,12.34 +48,5,041018,221420,0.05846,21.7960,-0.26,10913.4,1,0,0,12.34 +48,5,041018,221421,0.05845,21.7961,-0.25,10912.9,1,0,0,12.26 +48,5,041018,221422,0.05847,21.7957,-0.26,10913.3,1,0,0,12.25 +48,5,041018,221423,0.05845,21.7963,-0.25,10913.3,1,0,0,12.18 +48,5,041018,221424,0.05845,21.7962,-0.24,10913.6,1,0,0,12.22 +48,210,041018,221424,04/10/18 15:09:29 695 81 700 1480 537 +48,5,041018,221425,0.05849,21.7961,-0.26,10913.5,1,81,1480,12.23 +48,5,041018,221426,0.05846,21.7965,-0.26,10914.3,1,80,1479,12.22 +48,5,041018,221427,0.05845,21.7964,-0.25,10913.8,1,78,1488,12.22 +48,100,041018,221428,1,1,6,60,80,163874,858938,0,0,414724,0,0,0,0,1,12.22 +48,6,041018,221428,0.05846,21.7965,-0.25,10914.6,1,79,1475,12.22 +48,6,041018,221429,0.05846,21.7973,-0.25,10913.7,1,79,1482,12.22 +48,6,041018,221430,0.05845,21.7971,-0.25,10914.6,1,80,1482,12.21 +48,6,041018,221431,0.05845,21.7967,-0.25,10914.0,1,81,1479,12.21 +48,6,041018,221432,0.05844,21.7973,-0.25,10914.2,1,80,1480,12.21 +48,6,041018,221433,0.05844,21.7966,-0.25,10913.9,1,80,1480,12.21 +48,6,041018,221434,0.05847,21.7971,-0.26,10915.0,1,81,1477,12.21 +48,6,041018,221435,0.05847,21.7977,-0.25,10914.7,1,80,1478,12.21 +48,6,041018,221436,0.05846,21.7977,-0.25,10915.2,1,79,1478,12.21 +48,6,041018,221437,0.05845,21.7971,-0.25,10915.7,1,78,1479,12.21 +48,6,041018,221438,0.05842,21.7979,-0.25,10915.2,1,84,1482,12.21 +48,6,041018,221439,0.05842,21.7980,-0.26,10916.0,1,78,1476,12.21 +48,6,041018,221440,0.05844,21.7980,-0.25,10915.7,1,80,1480,12.21 +48,6,041018,221441,0.05846,21.7982,-0.25,10915.0,1,83,1483,12.21 +48,6,041018,221442,0.05845,21.7986,-0.25,10914.9,1,80,1478,12.21 +48,6,041018,221443,0.05844,21.7986,-0.25,10914.8,1,79,1477,12.21 +48,6,041018,221444,0.05844,21.7986,-0.26,10914.4,1,79,1479,12.21 +48,6,041018,221445,0.05843,21.7993,-0.26,10914.9,1,80,1477,12.20 +48,6,041018,221446,0.05842,21.7997,-0.24,10914.8,1,81,1479,12.20 +48,6,041018,221447,0.05843,21.7989,-0.25,10915.1,1,81,1477,12.20 +48,6,041018,221448,0.05843,21.7998,-0.24,10915.6,1,86,1481,12.20 +48,6,041018,221449,0.05843,21.8000,-0.25,10914.3,1,82,1479,12.20 +48,6,041018,221450,0.05843,21.8008,-0.25,10915.7,1,79,1480,12.20 +48,6,041018,221451,0.05844,21.8004,-0.25,10915.0,1,80,1478,12.20 +48,6,041018,221452,0.05843,21.8004,-0.25,10915.2,1,80,1478,12.20 +48,6,041018,221453,0.05839,21.8000,-0.24,10914.1,1,82,1478,12.20 +48,6,041018,221454,0.05839,21.7999,-0.25,10914.2,1,78,1480,12.20 +48,6,041018,221455,0.05844,21.8003,-0.25,10913.9,1,80,1477,12.20 +48,6,041018,221456,0.05845,21.8010,-0.24,10914.0,1,80,1478,12.20 +48,6,041018,221457,0.05844,21.8008,-0.24,10914.6,1,82,1480,12.20 +48,6,041018,221458,0.05845,21.8014,-0.25,10913.4,1,77,1481,12.20 +48,6,041018,221459,0.05840,21.8016,-0.25,10914.9,1,81,1479,12.20 +48,6,041018,221500,0.05837,21.8015,-0.25,10913.9,1,79,1478,12.20 +48,6,041018,221501,0.05840,21.8009,-0.25,10913.7,1,80,1476,12.20 +48,6,041018,221502,0.05842,21.8011,-0.27,10913.7,1,80,1477,12.20 +48,6,041018,221503,0.05842,21.8015,-0.25,10914.3,1,81,1478,12.20 +48,6,041018,221504,0.05843,21.8017,-0.26,10914.3,1,78,1477,12.20 +48,6,041018,221505,0.05845,21.8011,-0.26,10913.8,1,81,1476,12.20 +48,6,041018,221506,0.05841,21.8016,-0.25,10913.6,1,79,1475,12.20 +48,6,041018,221507,0.05839,21.8020,-0.25,10913.8,1,80,1475,12.20 +48,6,041018,221508,0.05842,21.8016,-0.24,10913.7,1,83,1478,12.20 +48,6,041018,221509,0.05843,21.8012,-0.25,10913.5,1,80,1477,12.20 +48,6,041018,221510,0.05844,21.8021,-0.25,10914.1,1,79,1477,12.20 +48,6,041018,221511,0.05843,21.8019,-0.25,10913.7,1,79,1477,12.20 +48,6,041018,221512,0.05841,21.8015,-0.23,10914.1,1,80,1477,12.20 +48,6,041018,221513,0.05840,21.8014,-0.25,10913.1,1,79,1477,12.20 +48,6,041018,221514,0.05841,21.8017,-0.24,10913.4,1,81,1477,12.20 +48,6,041018,221515,0.05841,21.8017,-0.25,10913.6,1,80,1477,12.20 +48,6,041018,221516,0.05842,21.8025,-0.25,10913.6,1,80,1475,12.20 +48,6,041018,221517,0.05840,21.8027,-0.25,10913.6,1,77,1476,12.20 +48,6,041018,221518,0.05839,21.8023,-0.25,10913.8,1,79,1470,12.20 +48,6,041018,221519,0.05840,21.8024,-0.25,10914.2,1,81,1478,12.20 +48,6,041018,221520,0.05843,21.8031,-0.25,10913.5,1,79,1476,12.20 +48,6,041018,221521,0.05840,21.8029,-0.25,10913.9,1,80,1476,12.20 +48,6,041018,221522,0.05838,21.8034,-0.25,10914.2,1,80,1476,12.20 +48,6,041018,221523,0.05836,21.8029,-0.25,10913.3,1,80,1477,12.19 +48,6,041018,221524,0.05837,21.8024,-0.25,10913.7,1,82,1478,12.19 +48,6,041018,221525,0.05841,21.8023,-0.25,10912.9,1,76,1476,12.20 +48,6,041018,221526,0.05842,21.8028,-0.25,10914.1,1,80,1476,12.20 +48,6,041018,221527,0.05842,21.8025,-0.26,10913.8,1,81,1476,12.20 +48,100,041018,221528,1,1,10,744,80,163878,858934,0,0,414724,0,0,0,0,1,12.20 +48,100,041018,222800,1,1,3,7,15,163878,858943,0,0,414724,0,0,0,0,1,12.48 +48,3,041018,222800,0.05840,21.8032,-0.25,10913.7,1,0,0,12.48 +48,230,041018,222801,3,19512,19504,19496 +48,100,041018,222807,1,1,4,15,15,163878,858943,0,0,414724,0,0,0,0,1,12.39 +48,200,041018,222808, 0.5753, 21.9087, -0.36, 10914.1, 2 +48,4,041018,222808,0.05753,21.9087,-0.36,10914.1,2,0,0,12.32 +48,4,041018,222809,0.05752,21.9084,-0.34,10914.3,2,0,0,12.36 +48,4,041018,222810,0.05748,21.9092,-0.34,10915.3,1,0,0,12.37 +48,4,041018,222811,0.05748,21.9088,-0.33,10914.6,1,0,0,12.37 +48,4,041018,222812,0.05748,21.9091,-0.32,10915.5,1,0,0,12.36 +48,4,041018,222813,0.05751,21.9094,-0.31,10915.0,1,0,0,12.36 +48,4,041018,222814,0.05752,21.9092,-0.31,10915.0,1,0,0,12.36 +48,4,041018,222815,0.05750,21.9095,-0.30,10914.4,1,0,0,12.36 +48,4,041018,222816,0.05748,21.9095,-0.30,10914.7,1,0,0,12.36 +48,4,041018,222817,0.05749,21.9089,-0.29,10915.5,1,0,0,12.36 +48,4,041018,222818,0.05749,21.9101,-0.29,10914.7,1,0,0,12.36 +48,4,041018,222819,0.05749,21.9095,-0.29,10915.2,1,0,0,12.36 +48,4,041018,222820,0.05749,21.9100,-0.29,10915.2,1,0,0,12.36 +48,4,041018,222821,0.05748,21.9099,-0.28,10914.8,1,0,0,12.35 +48,4,041018,222822,0.05748,21.9095,-0.29,10915.5,1,0,0,12.35 +48,4,041018,222823,0.05749,21.9102,-0.28,10914.9,1,0,0,12.35 +48,4,041018,222824,0.05747,21.9108,-0.27,10915.2,1,0,0,12.36 +48,4,041018,222825,0.05747,21.9106,-0.28,10915.3,1,0,0,12.35 +48,4,041018,222826,0.05749,21.9107,-0.28,10914.8,1,0,0,12.35 +48,4,041018,222827,0.05748,21.9111,-0.27,10915.2,1,0,0,12.35 +48,4,041018,222828,0.05747,21.9111,-0.27,10915.1,1,0,0,12.35 +48,4,041018,222829,0.05746,21.9108,-0.28,10915.2,1,0,0,12.35 +48,4,041018,222830,0.05744,21.9103,-0.26,10915.0,1,0,0,12.35 +48,4,041018,222831,0.05744,21.9103,-0.26,10914.8,1,0,0,12.35 +48,4,041018,222832,0.05747,21.9110,-0.27,10914.7,1,0,0,12.35 +48,4,041018,222833,0.05748,21.9109,-0.27,10915.3,1,0,0,12.35 +48,4,041018,222834,0.05747,21.9114,-0.26,10914.9,1,0,0,12.35 +48,4,041018,222835,0.05747,21.9116,-0.27,10915.0,1,0,0,12.35 +48,4,041018,222836,0.05748,21.9119,-0.28,10915.3,1,0,0,12.35 +48,4,041018,222837,0.05744,21.9121,-0.27,10915.2,1,0,0,12.35 +48,4,041018,222838,0.05743,21.9124,-0.27,10914.9,1,0,0,12.35 +48,4,041018,222839,0.05745,21.9118,-0.27,10915.0,1,0,0,12.35 +48,4,041018,222840,0.05746,21.9124,-0.27,10915.2,1,0,0,12.35 +48,4,041018,222841,0.05744,21.9121,-0.26,10915.0,1,0,0,12.35 +48,4,041018,222842,0.05745,21.9118,-0.27,10914.9,1,0,0,12.35 +48,4,041018,222843,0.05744,21.9120,-0.26,10915.7,1,0,0,12.35 +48,4,041018,222844,0.05745,21.9120,-0.27,10915.4,1,0,0,12.35 +48,4,041018,222845,0.05745,21.9119,-0.26,10914.4,1,0,0,12.35 +48,4,041018,222846,0.05745,21.9126,-0.27,10915.0,1,0,0,12.35 +48,4,041018,222847,0.05744,21.9126,-0.26,10915.4,1,0,0,12.34 +48,4,041018,222848,0.05745,21.9128,-0.26,10916.3,1,0,0,12.35 +48,4,041018,222849,0.05743,21.9122,-0.27,10915.6,1,0,0,12.35 +48,4,041018,222850,0.05742,21.9127,-0.24,10915.4,1,0,0,12.34 +48,4,041018,222851,0.05744,21.9129,-0.26,10914.7,1,0,0,12.34 +48,4,041018,222852,0.05745,21.9132,-0.26,10915.3,1,0,0,12.35 +48,4,041018,222853,0.05742,21.9136,-0.26,10915.5,1,0,0,12.34 +48,4,041018,222854,0.05742,21.9122,-0.26,10915.6,1,0,0,12.35 +48,4,041018,222855,0.05744,21.9125,-0.25,10914.7,1,0,0,12.34 +48,4,041018,222856,0.05742,21.9136,-0.26,10915.2,1,0,0,12.34 +48,4,041018,222857,0.05741,21.9133,-0.24,10915.9,1,0,0,12.34 +48,4,041018,222858,0.05744,21.9131,-0.27,10915.2,1,0,0,12.34 +48,4,041018,222859,0.05742,21.9135,-0.26,10915.0,1,0,0,12.34 +48,4,041018,222900,0.05740,21.9138,-0.24,10914.7,1,0,0,12.34 +48,4,041018,222901,0.05743,21.9135,-0.26,10915.2,1,0,0,12.34 +48,4,041018,222902,0.05744,21.9135,-0.26,10914.8,1,0,0,12.34 +48,4,041018,222903,0.05743,21.9141,-0.26,10915.0,1,0,0,12.34 +48,4,041018,222904,0.05743,21.9139,-0.26,10914.3,1,0,0,12.34 +48,4,041018,222905,0.05743,21.9147,-0.25,10914.8,1,0,0,12.34 +48,4,041018,222906,0.05740,21.9137,-0.26,10914.9,1,0,0,12.34 +48,4,041018,222907,0.05739,21.9142,-0.25,10914.8,1,0,0,12.34 +48,4,041018,222908,0.05742,21.9139,-0.27,10914.1,1,0,0,12.34 +48,4,041018,222909,0.05745,21.9141,-0.25,10915.0,1,0,0,12.34 +48,4,041018,222910,0.05743,21.9147,-0.26,10914.5,1,0,0,12.34 +48,4,041018,222911,0.05742,21.9150,-0.26,10915.2,1,0,0,12.34 +48,4,041018,222912,0.05740,21.9151,-0.24,10914.6,1,0,0,12.34 +48,4,041018,222913,0.05737,21.9149,-0.26,10915.3,1,0,0,12.34 +48,4,041018,222914,0.05739,21.9144,-0.25,10914.7,1,0,0,12.34 +48,4,041018,222915,0.05742,21.9142,-0.24,10914.7,1,0,0,12.34 +48,4,041018,222916,0.05743,21.9141,-0.25,10914.6,1,0,0,12.34 +48,4,041018,222917,0.05742,21.9150,-0.25,10915.3,1,0,0,12.34 +48,4,041018,222918,0.05743,21.9152,-0.25,10915.2,1,0,0,12.34 +48,4,041018,222919,0.05741,21.9154,-0.25,10915.2,1,0,0,12.34 +48,100,041018,222920,1,1,5,8,80,163883,858939,0,0,414724,0,0,0,0,1,12.34 +48,5,041018,222920,0.05739,21.9158,-0.25,10914.9,1,0,0,12.34 +48,5,041018,222921,0.05739,21.9160,-0.25,10915.5,1,0,0,12.26 +48,5,041018,222922,0.05739,21.9152,-0.25,10915.1,1,0,0,12.25 +48,5,041018,222923,0.05741,21.9154,-0.25,10914.7,1,0,0,12.18 +48,5,041018,222924,0.05742,21.9157,-0.25,10915.1,1,0,0,12.22 +48,210,041018,222924,04/10/18 15:24:29 695 81 700 1488 537 +48,5,041018,222925,0.05742,21.9162,-0.25,10915.2,1,81,1488,12.22 +48,5,041018,222926,0.05740,21.9160,-0.26,10915.6,1,79,1489,12.22 +48,5,041018,222927,0.05740,21.9154,-0.27,10915.6,1,77,1483,12.21 +48,100,041018,222928,1,1,6,60,80,163884,858938,0,0,414724,0,0,0,0,1,12.22 +48,6,041018,222928,0.05740,21.9165,-0.25,10915.1,1,79,1491,12.22 +48,6,041018,222929,0.05740,21.9164,-0.25,10915.2,1,79,1486,12.21 +48,6,041018,222930,0.05740,21.9164,-0.26,10914.3,1,79,1485,12.21 +48,6,041018,222931,0.05739,21.9161,-0.24,10914.5,1,81,1487,12.21 +48,6,041018,222932,0.05740,21.9157,-0.24,10915.5,1,80,1485,12.21 +48,6,041018,222933,0.05742,21.9168,-0.25,10914.3,1,80,1485,12.21 +48,6,041018,222934,0.05740,21.9175,-0.24,10914.2,1,79,1484,12.21 +48,6,041018,222935,0.05738,21.9167,-0.25,10914.6,1,80,1487,12.21 +48,6,041018,222936,0.05740,21.9167,-0.25,10915.3,1,79,1486,12.21 +48,6,041018,222937,0.05740,21.9174,-0.25,10914.5,1,81,1485,12.21 +48,6,041018,222938,0.05739,21.9171,-0.25,10915.2,1,80,1489,12.21 +48,6,041018,222939,0.05737,21.9179,-0.25,10914.2,1,81,1486,12.21 +48,6,041018,222940,0.05738,21.9169,-0.25,10915.2,1,81,1482,12.21 +48,6,041018,222941,0.05740,21.9180,-0.26,10915.6,1,80,1486,12.21 +48,6,041018,222942,0.05737,21.9182,-0.25,10914.7,1,79,1485,12.21 +48,6,041018,222943,0.05737,21.9170,-0.25,10914.3,1,79,1486,12.20 +48,6,041018,222944,0.05739,21.9159,-0.25,10915.1,1,78,1483,12.20 +48,6,041018,222945,0.05738,21.9168,-0.25,10915.4,1,80,1485,12.20 +48,6,041018,222946,0.05736,21.9166,-0.25,10914.9,1,81,1483,12.20 +48,6,041018,222947,0.05736,21.9159,-0.25,10914.5,1,79,1482,12.21 +48,6,041018,222948,0.05738,21.9167,-0.25,10914.8,1,80,1482,12.20 +48,6,041018,222949,0.05740,21.9164,-0.25,10914.6,1,79,1483,12.20 +48,6,041018,222950,0.05738,21.9167,-0.25,10914.7,1,80,1482,12.20 +48,6,041018,222951,0.05737,21.9173,-0.25,10915.0,1,80,1485,12.20 +48,6,041018,222952,0.05737,21.9166,-0.25,10914.8,1,79,1484,12.20 +48,6,041018,222953,0.05738,21.9167,-0.23,10915.8,1,79,1481,12.20 +48,6,041018,222954,0.05736,21.9176,-0.24,10914.9,1,81,1485,12.20 +48,6,041018,222955,0.05735,21.9179,-0.25,10914.8,1,80,1484,12.20 +48,6,041018,222956,0.05737,21.9173,-0.25,10914.8,1,81,1483,12.20 +48,6,041018,222957,0.05734,21.9173,-0.25,10914.8,1,79,1483,12.20 +48,6,041018,222958,0.05734,21.9182,-0.25,10915.4,1,80,1488,12.20 +48,6,041018,222959,0.05738,21.9180,-0.25,10915.2,1,80,1484,12.20 +48,6,041018,223000,0.05738,21.9187,-0.26,10915.2,1,83,1484,12.20 +48,6,041018,223001,0.05736,21.9197,-0.25,10914.4,1,80,1483,12.20 +48,6,041018,223002,0.05734,21.9195,-0.25,10914.9,1,81,1482,12.20 +48,6,041018,223003,0.05736,21.9189,-0.25,10915.0,1,80,1484,12.20 +48,6,041018,223004,0.05737,21.9191,-0.25,10915.2,1,81,1482,12.20 +48,6,041018,223005,0.05735,21.9201,-0.24,10915.2,1,79,1483,12.20 +48,6,041018,223006,0.05733,21.9194,-0.25,10914.8,1,82,1484,12.20 +48,6,041018,223007,0.05736,21.9193,-0.24,10914.7,1,79,1482,12.20 +48,6,041018,223008,0.05733,21.9198,-0.25,10914.1,1,79,1483,12.20 +48,6,041018,223009,0.05734,21.9191,-0.24,10914.3,1,80,1483,12.20 +48,6,041018,223010,0.05737,21.9191,-0.24,10914.7,1,81,1483,12.20 +48,6,041018,223011,0.05736,21.9195,-0.24,10915.0,1,79,1482,12.20 +48,6,041018,223012,0.05735,21.9204,-0.24,10915.2,1,81,1481,12.20 +48,6,041018,223013,0.05733,21.9195,-0.25,10914.9,1,81,1483,12.20 +48,6,041018,223014,0.05732,21.9198,-0.25,10914.0,1,80,1481,12.20 +48,6,041018,223015,0.05732,21.9196,-0.25,10915.2,1,79,1485,12.20 +48,6,041018,223016,0.05736,21.9194,-0.24,10914.1,1,81,1484,12.20 +48,6,041018,223017,0.05736,21.9194,-0.24,10915.0,1,81,1482,12.20 +48,6,041018,223018,0.05734,21.9206,-0.24,10915.5,1,80,1485,12.20 +48,6,041018,223019,0.05732,21.9196,-0.25,10914.9,1,81,1482,12.20 +48,6,041018,223020,0.05730,21.9198,-0.25,10915.4,1,79,1482,12.20 +48,6,041018,223021,0.05731,21.9194,-0.24,10914.7,1,81,1483,12.20 +48,6,041018,223022,0.05733,21.9194,-0.24,10914.7,1,79,1482,12.19 +48,6,041018,223023,0.05734,21.9200,-0.25,10914.3,1,80,1482,12.20 +48,6,041018,223024,0.05735,21.9197,-0.25,10914.8,1,81,1482,12.20 +48,6,041018,223025,0.05735,21.9200,-0.25,10915.0,1,80,1483,12.20 +48,6,041018,223026,0.05731,21.9198,-0.24,10914.9,1,81,1483,12.20 +48,6,041018,223027,0.05732,21.9196,-0.25,10913.9,1,80,1482,12.20 +48,100,041018,223028,1,1,10,744,80,163888,858934,0,0,414724,0,0,0,0,1,12.20 +48,100,041018,224300,1,1,3,7,15,163888,858927,0,0,414724,0,0,0,0,1,12.48 +48,3,041018,224300,0.05734,21.9208,-0.25,10915.2,1,0,0,12.48 +48,230,041018,224301,3,19504,19504,19504 +48,100,041018,224307,1,1,4,15,15,163888,858927,0,0,414724,0,0,0,0,1,12.39 +48,200,041018,224308, 0.5665, 22.0448, -0.37, 10911.8, 2 +48,4,041018,224308,0.05665,22.0448,-0.37,10911.8,2,0,0,12.33 +48,4,041018,224309,0.05663,22.0445,-0.35,10912.4,2,0,0,12.36 +48,4,041018,224310,0.05662,22.0449,-0.32,10913.5,1,0,0,12.37 +48,4,041018,224311,0.05664,22.0446,-0.32,10912.9,1,0,0,12.37 +48,4,041018,224312,0.05665,22.0450,-0.33,10913.7,1,0,0,12.37 +48,4,041018,224313,0.05664,22.0443,-0.32,10913.5,1,0,0,12.36 +48,4,041018,224314,0.05662,22.0447,-0.30,10913.4,1,0,0,12.36 +48,4,041018,224315,0.05662,22.0447,-0.30,10913.5,1,0,0,12.36 +48,4,041018,224316,0.05662,22.0449,-0.30,10912.9,1,0,0,12.36 +48,4,041018,224317,0.05661,22.0443,-0.28,10913.9,1,0,0,12.36 +48,4,041018,224318,0.05664,22.0448,-0.29,10913.9,1,0,0,12.36 +48,4,041018,224319,0.05665,22.0454,-0.29,10913.4,1,0,0,12.36 +48,4,041018,224320,0.05664,22.0459,-0.28,10914.3,1,0,0,12.36 +48,4,041018,224321,0.05663,22.0462,-0.29,10913.2,1,0,0,12.36 +48,4,041018,224322,0.05661,22.0463,-0.28,10913.8,1,0,0,12.36 +48,4,041018,224323,0.05662,22.0467,-0.29,10913.1,1,0,0,12.36 +48,4,041018,224324,0.05664,22.0468,-0.28,10913.4,1,0,0,12.35 +48,4,041018,224325,0.05663,22.0465,-0.27,10913.2,1,0,0,12.35 +48,4,041018,224326,0.05662,22.0462,-0.28,10913.0,1,0,0,12.35 +48,4,041018,224327,0.05662,22.0464,-0.28,10913.9,1,0,0,12.35 +48,4,041018,224328,0.05664,22.0463,-0.28,10913.6,1,0,0,12.35 +48,4,041018,224329,0.05664,22.0461,-0.27,10913.8,1,0,0,12.35 +48,4,041018,224330,0.05664,22.0471,-0.27,10913.5,1,0,0,12.35 +48,4,041018,224331,0.05661,22.0472,-0.26,10913.3,1,0,0,12.35 +48,4,041018,224332,0.05660,22.0468,-0.26,10912.9,1,0,0,12.35 +48,4,041018,224333,0.05663,22.0470,-0.28,10912.2,1,0,0,12.35 +48,4,041018,224334,0.05663,22.0472,-0.27,10912.9,1,0,0,12.35 +48,4,041018,224335,0.05661,22.0468,-0.27,10913.0,1,0,0,12.35 +48,4,041018,224336,0.05663,22.0473,-0.27,10912.8,1,0,0,12.35 +48,4,041018,224337,0.05662,22.0471,-0.26,10912.9,1,0,0,12.35 +48,4,041018,224338,0.05661,22.0472,-0.27,10913.1,1,0,0,12.35 +48,4,041018,224339,0.05661,22.0466,-0.27,10913.1,1,0,0,12.35 +48,4,041018,224340,0.05660,22.0466,-0.26,10913.9,1,0,0,12.35 +48,4,041018,224341,0.05659,22.0464,-0.26,10913.1,1,0,0,12.35 +48,4,041018,224342,0.05662,22.0463,-0.25,10914.0,1,0,0,12.35 +48,4,041018,224343,0.05664,22.0472,-0.26,10913.2,1,0,0,12.35 +48,4,041018,224344,0.05664,22.0474,-0.27,10914.0,1,0,0,12.35 +48,4,041018,224345,0.05663,22.0474,-0.26,10913.0,1,0,0,12.35 +48,4,041018,224346,0.05659,22.0470,-0.27,10913.7,1,0,0,12.35 +48,4,041018,224347,0.05657,22.0468,-0.26,10912.5,1,0,0,12.35 +48,4,041018,224348,0.05660,22.0466,-0.26,10913.5,1,0,0,12.35 +48,4,041018,224349,0.05663,22.0467,-0.26,10913.3,1,0,0,12.35 +48,4,041018,224350,0.05664,22.0463,-0.26,10912.8,1,0,0,12.35 +48,4,041018,224351,0.05662,22.0469,-0.26,10912.5,1,0,0,12.35 +48,4,041018,224352,0.05657,22.0470,-0.26,10912.7,1,0,0,12.35 +48,4,041018,224353,0.05655,22.0464,-0.25,10912.0,1,0,0,12.34 +48,4,041018,224354,0.05658,22.0458,-0.26,10912.9,1,0,0,12.34 +48,4,041018,224355,0.05662,22.0461,-0.25,10912.8,1,0,0,12.34 +48,4,041018,224356,0.05662,22.0460,-0.26,10912.5,1,0,0,12.34 +48,4,041018,224357,0.05662,22.0468,-0.26,10912.7,1,0,0,12.34 +48,4,041018,224358,0.05662,22.0471,-0.26,10912.9,1,0,0,12.34 +48,4,041018,224359,0.05655,22.0469,-0.26,10913.7,1,0,0,12.34 +48,4,041018,224400,0.05656,22.0458,-0.25,10912.7,1,0,0,12.34 +48,4,041018,224401,0.05662,22.0456,-0.24,10912.5,1,0,0,12.34 +48,4,041018,224402,0.05662,22.0451,-0.25,10912.7,1,0,0,12.34 +48,4,041018,224403,0.05661,22.0461,-0.25,10912.9,1,0,0,12.34 +48,4,041018,224404,0.05661,22.0463,-0.26,10913.5,1,0,0,12.34 +48,4,041018,224405,0.05662,22.0457,-0.26,10912.9,1,0,0,12.34 +48,4,041018,224406,0.05660,22.0454,-0.26,10913.2,1,0,0,12.34 +48,4,041018,224407,0.05658,22.0455,-0.26,10912.8,1,0,0,12.34 +48,4,041018,224408,0.05658,22.0457,-0.24,10913.4,1,0,0,12.34 +48,4,041018,224409,0.05661,22.0460,-0.26,10913.2,1,0,0,12.34 +48,4,041018,224410,0.05661,22.0464,-0.26,10913.0,1,0,0,12.34 +48,4,041018,224411,0.05659,22.0459,-0.25,10912.9,1,0,0,12.34 +48,4,041018,224412,0.05659,22.0460,-0.26,10913.4,1,0,0,12.34 +48,4,041018,224413,0.05658,22.0461,-0.25,10913.7,1,0,0,12.34 +48,4,041018,224414,0.05660,22.0471,-0.25,10913.9,1,0,0,12.34 +48,4,041018,224415,0.05662,22.0463,-0.26,10913.8,1,0,0,12.34 +48,4,041018,224416,0.05659,22.0474,-0.25,10914.0,1,0,0,12.34 +48,4,041018,224417,0.05658,22.0460,-0.25,10914.4,1,0,0,12.34 +48,4,041018,224418,0.05660,22.0463,-0.26,10913.4,1,0,0,12.34 +48,4,041018,224419,0.05655,22.0467,-0.25,10913.5,1,0,0,12.34 +48,100,041018,224420,1,1,5,8,80,163892,858923,0,0,414724,0,0,0,0,1,12.34 +48,5,041018,224420,0.05657,22.0463,-0.27,10913.8,1,0,0,12.34 +48,5,041018,224421,0.05660,22.0455,-0.25,10913.8,1,0,0,12.26 +48,5,041018,224422,0.05660,22.0462,-0.25,10914.3,1,0,0,12.25 +48,5,041018,224423,0.05659,22.0468,-0.25,10913.4,1,0,0,12.17 +48,5,041018,224424,0.05661,22.0458,-0.27,10913.2,1,0,0,12.22 +48,210,041018,224424,04/10/18 15:39:29 695 84 700 1477 537 +48,5,041018,224425,0.05657,22.0457,-0.26,10913.2,1,84,1477,12.22 +48,5,041018,224426,0.05658,22.0459,-0.25,10913.6,1,79,1477,12.22 +48,5,041018,224427,0.05661,22.0457,-0.25,10913.7,1,80,1483,12.22 +48,100,041018,224428,1,1,6,60,80,163893,858922,0,0,414724,0,0,0,0,1,12.22 +48,6,041018,224428,0.05661,22.0460,-0.25,10913.5,1,80,1482,12.22 +48,6,041018,224429,0.05661,22.0449,-0.25,10913.8,1,78,1484,12.22 +48,6,041018,224430,0.05660,22.0451,-0.25,10913.5,1,79,1482,12.21 +48,6,041018,224431,0.05656,22.0460,-0.25,10913.2,1,80,1483,12.21 +48,6,041018,224432,0.05654,22.0457,-0.25,10913.0,1,81,1484,12.21 +48,6,041018,224433,0.05657,22.0453,-0.24,10913.8,1,80,1480,12.21 +48,6,041018,224434,0.05659,22.0457,-0.25,10913.1,1,81,1482,12.21 +48,6,041018,224435,0.05659,22.0459,-0.25,10913.9,1,79,1482,12.21 +48,6,041018,224436,0.05656,22.0457,-0.24,10913.7,1,81,1484,12.21 +48,6,041018,224437,0.05658,22.0450,-0.25,10913.6,1,80,1481,12.21 +48,6,041018,224438,0.05661,22.0455,-0.26,10914.6,1,83,1484,12.21 +48,6,041018,224439,0.05662,22.0469,-0.27,10913.7,1,80,1482,12.21 +48,6,041018,224440,0.05659,22.0463,-0.25,10913.3,1,80,1480,12.21 +48,6,041018,224441,0.05657,22.0466,-0.23,10913.9,1,80,1482,12.21 +48,6,041018,224442,0.05655,22.0470,-0.25,10914.2,1,78,1480,12.21 +48,6,041018,224443,0.05654,22.0463,-0.25,10914.0,1,79,1481,12.21 +48,6,041018,224444,0.05656,22.0455,-0.25,10914.0,1,80,1483,12.20 +48,6,041018,224445,0.05658,22.0459,-0.26,10913.8,1,80,1482,12.20 +48,6,041018,224446,0.05656,22.0472,-0.25,10914.5,1,80,1481,12.20 +48,6,041018,224447,0.05656,22.0468,-0.24,10913.8,1,80,1483,12.20 +48,6,041018,224448,0.05658,22.0479,-0.26,10914.1,1,76,1478,12.20 +48,6,041018,224449,0.05658,22.0472,-0.25,10913.7,1,78,1479,12.20 +48,6,041018,224450,0.05655,22.0477,-0.25,10913.6,1,80,1479,12.20 +48,6,041018,224451,0.05653,22.0475,-0.25,10914.0,1,80,1483,12.20 +48,6,041018,224452,0.05655,22.0466,-0.25,10914.0,1,79,1483,12.20 +48,6,041018,224453,0.05657,22.0470,-0.26,10913.6,1,79,1482,12.20 +48,6,041018,224454,0.05658,22.0477,-0.24,10914.1,1,80,1482,12.20 +48,6,041018,224455,0.05657,22.0472,-0.24,10913.1,1,81,1483,12.20 +48,6,041018,224456,0.05656,22.0473,-0.26,10914.5,1,80,1481,12.20 +48,6,041018,224457,0.05656,22.0466,-0.25,10913.5,1,79,1480,12.20 +48,6,041018,224458,0.05655,22.0476,-0.25,10913.1,1,78,1476,12.20 +48,6,041018,224459,0.05657,22.0475,-0.25,10913.7,1,80,1480,12.20 +48,6,041018,224500,0.05658,22.0479,-0.25,10914.3,1,81,1480,12.20 +48,6,041018,224501,0.05658,22.0481,-0.24,10914.2,1,80,1481,12.20 +48,6,041018,224502,0.05657,22.0491,-0.25,10913.9,1,78,1480,12.20 +48,6,041018,224503,0.05654,22.0483,-0.24,10914.3,1,79,1479,12.20 +48,6,041018,224504,0.05653,22.0482,-0.25,10914.7,1,81,1481,12.20 +48,6,041018,224505,0.05654,22.0479,-0.25,10914.1,1,79,1482,12.20 +48,6,041018,224506,0.05655,22.0483,-0.25,10913.9,1,79,1479,12.20 +48,6,041018,224507,0.05656,22.0477,-0.25,10914.5,1,82,1481,12.20 +48,6,041018,224508,0.05658,22.0469,-0.25,10913.8,1,78,1478,12.20 +48,6,041018,224509,0.05657,22.0475,-0.25,10913.9,1,81,1480,12.20 +48,6,041018,224510,0.05654,22.0479,-0.24,10913.1,1,78,1479,12.20 +48,6,041018,224511,0.05653,22.0468,-0.25,10914.4,1,81,1480,12.20 +48,6,041018,224512,0.05655,22.0463,-0.26,10913.3,1,81,1481,12.20 +48,6,041018,224513,0.05655,22.0468,-0.24,10913.8,1,80,1481,12.20 +48,6,041018,224514,0.05657,22.0477,-0.25,10913.8,1,78,1481,12.20 +48,6,041018,224515,0.05656,22.0486,-0.24,10913.3,1,82,1482,12.19 +48,6,041018,224516,0.05654,22.0484,-0.25,10912.9,1,80,1480,12.20 +48,6,041018,224517,0.05653,22.0475,-0.25,10913.8,1,80,1481,12.20 +48,6,041018,224518,0.05655,22.0474,-0.26,10913.3,1,84,1478,12.20 +48,6,041018,224519,0.05655,22.0479,-0.25,10913.1,1,81,1480,12.20 +48,6,041018,224520,0.05654,22.0488,-0.26,10914.0,1,81,1480,12.20 +48,6,041018,224521,0.05652,22.0486,-0.25,10913.8,1,81,1480,12.19 +48,6,041018,224522,0.05652,22.0483,-0.25,10913.4,1,81,1480,12.20 +48,6,041018,224523,0.05656,22.0478,-0.25,10913.7,1,80,1479,12.20 +48,6,041018,224524,0.05654,22.0483,-0.25,10913.0,1,80,1480,12.19 +48,6,041018,224525,0.05654,22.0488,-0.24,10913.1,1,82,1481,12.19 +48,6,041018,224526,0.05655,22.0490,-0.25,10912.5,1,81,1480,12.20 +48,6,041018,224527,0.05654,22.0488,-0.25,10913.5,1,80,1480,12.20 +48,100,041018,224528,1,1,10,744,80,163897,858918,0,0,414724,0,0,0,0,1,12.20 +48,100,041018,225800,1,1,3,7,15,163897,858911,0,0,414724,0,0,0,0,1,12.48 +48,3,041018,225800,0.05653,22.0479,-0.25,10913.7,1,0,0,12.48 +48,230,041018,225801,3,19504,19504,19504 +48,100,041018,225807,1,1,4,15,15,163897,858911,0,0,414724,0,0,0,0,1,12.39 +48,200,041018,225808, 0.5598, 22.2113, -0.36, 10911.5, 2 +48,4,041018,225808,0.05598,22.2113,-0.36,10911.5,2,0,0,12.33 +48,4,041018,225809,0.05601,22.2120,-0.35,10912.3,2,0,0,12.36 +48,4,041018,225810,0.05602,22.2133,-0.32,10912.3,1,0,0,12.37 +48,4,041018,225811,0.05600,22.2127,-0.33,10912.9,1,0,0,12.37 +48,4,041018,225812,0.05602,22.2131,-0.32,10913.2,1,0,0,12.36 +48,4,041018,225813,0.05600,22.2138,-0.30,10913.2,1,0,0,12.36 +48,4,041018,225814,0.05599,22.2139,-0.31,10912.9,1,0,0,12.36 +48,4,041018,225815,0.05601,22.2138,-0.31,10912.5,1,0,0,12.36 +48,4,041018,225816,0.05600,22.2145,-0.29,10913.0,1,0,0,12.36 +48,4,041018,225817,0.05600,22.2149,-0.30,10914.0,1,0,0,12.36 +48,4,041018,225818,0.05602,22.2157,-0.30,10913.3,1,0,0,12.36 +48,4,041018,225819,0.05601,22.2153,-0.29,10912.9,1,0,0,12.36 +48,4,041018,225820,0.05598,22.2159,-0.28,10912.9,1,0,0,12.36 +48,4,041018,225821,0.05595,22.2158,-0.29,10913.4,1,0,0,12.36 +48,4,041018,225822,0.05599,22.2161,-0.28,10912.9,1,0,0,12.36 +48,4,041018,225823,0.05601,22.2161,-0.28,10912.9,1,0,0,12.36 +48,4,041018,225824,0.05603,22.2166,-0.27,10913.1,1,0,0,12.35 +48,4,041018,225825,0.05600,22.2166,-0.27,10913.5,1,0,0,12.35 +48,4,041018,225826,0.05599,22.2172,-0.28,10912.9,1,0,0,12.35 +48,4,041018,225827,0.05600,22.2174,-0.28,10912.6,1,0,0,12.35 +48,4,041018,225828,0.05599,22.2178,-0.27,10913.3,1,0,0,12.35 +48,4,041018,225829,0.05599,22.2187,-0.27,10912.4,1,0,0,12.35 +48,4,041018,225830,0.05599,22.2188,-0.27,10913.3,1,0,0,12.35 +48,4,041018,225831,0.05597,22.2189,-0.27,10913.5,1,0,0,12.35 +48,4,041018,225832,0.05599,22.2191,-0.27,10913.3,1,0,0,12.35 +48,4,041018,225833,0.05599,22.2197,-0.28,10913.3,1,0,0,12.35 +48,4,041018,225834,0.05599,22.2201,-0.27,10913.5,1,0,0,12.35 +48,4,041018,225835,0.05600,22.2204,-0.27,10912.6,1,0,0,12.35 +48,4,041018,225836,0.05600,22.2204,-0.27,10914.3,1,0,0,12.35 +48,4,041018,225837,0.05598,22.2204,-0.27,10912.5,1,0,0,12.35 +48,4,041018,225838,0.05597,22.2203,-0.26,10913.2,1,0,0,12.35 +48,4,041018,225839,0.05596,22.2204,-0.26,10913.1,1,0,0,12.35 +48,4,041018,225840,0.05599,22.2210,-0.27,10912.9,1,0,0,12.35 +48,4,041018,225841,0.05600,22.2210,-0.27,10912.2,1,0,0,12.35 +48,4,041018,225842,0.05598,22.2213,-0.27,10912.9,1,0,0,12.35 +48,4,041018,225843,0.05596,22.2216,-0.27,10913.2,1,0,0,12.35 +48,4,041018,225844,0.05596,22.2210,-0.27,10913.3,1,0,0,12.35 +48,4,041018,225845,0.05596,22.2218,-0.25,10913.3,1,0,0,12.34 +48,4,041018,225846,0.05596,22.2224,-0.26,10912.9,1,0,0,12.34 +48,4,041018,225847,0.05599,22.2221,-0.26,10913.6,1,0,0,12.34 +48,4,041018,225848,0.05600,22.2226,-0.26,10913.4,1,0,0,12.35 +48,4,041018,225849,0.05597,22.2221,-0.26,10913.4,1,0,0,12.35 +48,4,041018,225850,0.05598,22.2223,-0.25,10913.0,1,0,0,12.35 +48,4,041018,225851,0.05599,22.2226,-0.27,10914.0,1,0,0,12.35 +48,4,041018,225852,0.05598,22.2235,-0.26,10914.0,1,0,0,12.34 +48,4,041018,225853,0.05596,22.2239,-0.26,10912.7,1,0,0,12.34 +48,4,041018,225854,0.05595,22.2241,-0.26,10913.0,1,0,0,12.35 +48,4,041018,225855,0.05596,22.2238,-0.26,10913.9,1,0,0,12.34 +48,4,041018,225856,0.05598,22.2242,-0.26,10913.1,1,0,0,12.34 +48,4,041018,225857,0.05599,22.2245,-0.25,10913.3,1,0,0,12.34 +48,4,041018,225858,0.05597,22.2235,-0.25,10912.6,1,0,0,12.34 +48,4,041018,225859,0.05596,22.2245,-0.26,10912.4,1,0,0,12.34 +48,4,041018,225900,0.05596,22.2238,-0.26,10913.0,1,0,0,12.34 +48,4,041018,225901,0.05597,22.2246,-0.25,10912.7,1,0,0,12.34 +48,4,041018,225902,0.05598,22.2247,-0.25,10913.2,1,0,0,12.34 +48,4,041018,225903,0.05597,22.2247,-0.25,10913.1,1,0,0,12.34 +48,4,041018,225904,0.05595,22.2256,-0.25,10912.7,1,0,0,12.34 +48,4,041018,225905,0.05593,22.2253,-0.25,10913.2,1,0,0,12.34 +48,4,041018,225906,0.05595,22.2260,-0.25,10913.6,1,0,0,12.34 +48,4,041018,225907,0.05597,22.2263,-0.25,10913.2,1,0,0,12.34 +48,4,041018,225908,0.05596,22.2269,-0.25,10914.2,1,0,0,12.34 +48,4,041018,225909,0.05597,22.2274,-0.25,10913.2,1,0,0,12.34 +48,4,041018,225910,0.05592,22.2267,-0.25,10913.4,1,0,0,12.34 +48,4,041018,225911,0.05590,22.2275,-0.25,10913.1,1,0,0,12.34 +48,4,041018,225912,0.05596,22.2271,-0.24,10913.6,1,0,0,12.34 +48,4,041018,225913,0.05598,22.2274,-0.25,10913.2,1,0,0,12.34 +48,4,041018,225914,0.05596,22.2280,-0.25,10913.7,1,0,0,12.34 +48,4,041018,225915,0.05596,22.2279,-0.24,10913.7,1,0,0,12.34 +48,4,041018,225916,0.05591,22.2282,-0.24,10913.2,1,0,0,12.34 +48,4,041018,225917,0.05590,22.2283,-0.25,10912.3,1,0,0,12.34 +48,4,041018,225918,0.05597,22.2282,-0.25,10912.9,1,0,0,12.34 +48,4,041018,225919,0.05598,22.2283,-0.24,10912.9,1,0,0,12.34 +48,100,041018,225920,1,1,5,8,80,163902,858907,0,0,414724,0,0,0,0,1,12.34 +48,5,041018,225920,0.05597,22.2279,-0.24,10912.8,1,0,0,12.34 +48,5,041018,225921,0.05595,22.2286,-0.25,10913.1,1,0,0,12.26 +48,5,041018,225922,0.05594,22.2289,-0.27,10913.4,1,0,0,12.25 +48,5,041018,225923,0.05593,22.2280,-0.26,10913.3,1,0,0,12.17 +48,5,041018,225924,0.05593,22.2291,-0.25,10912.9,1,0,0,12.22 +48,210,041018,225924,04/10/18 15:54:29 695 79 700 1490 537 +48,5,041018,225925,0.05595,22.2288,-0.25,10913.4,1,79,1490,12.22 +48,5,041018,225926,0.05597,22.2288,-0.25,10912.8,1,81,1488,12.22 +48,5,041018,225927,0.05597,22.2292,-0.25,10912.4,1,80,1489,12.22 +48,100,041018,225928,1,1,6,60,80,163902,858906,0,0,414724,0,0,0,0,1,12.22 +48,6,041018,225928,0.05595,22.2290,-0.25,10913.3,1,78,1490,12.22 +48,6,041018,225929,0.05591,22.2296,-0.24,10913.3,1,79,1494,12.21 +48,6,041018,225930,0.05591,22.2294,-0.25,10913.6,1,79,1491,12.21 +48,6,041018,225931,0.05593,22.2296,-0.24,10912.3,1,80,1492,12.21 +48,6,041018,225932,0.05595,22.2299,-0.24,10913.5,1,81,1493,12.21 +48,6,041018,225933,0.05595,22.2304,-0.26,10913.2,1,80,1493,12.21 +48,6,041018,225934,0.05597,22.2307,-0.25,10914.0,1,79,1490,12.21 +48,6,041018,225935,0.05593,22.2303,-0.24,10913.5,1,80,1490,12.21 +48,6,041018,225936,0.05589,22.2302,-0.26,10913.1,1,80,1492,12.21 +48,6,041018,225937,0.05592,22.2314,-0.25,10913.0,1,78,1493,12.21 +48,6,041018,225938,0.05596,22.2317,-0.25,10912.8,1,79,1492,12.21 +48,6,041018,225939,0.05594,22.2325,-0.26,10912.7,1,81,1490,12.21 +48,6,041018,225940,0.05591,22.2330,-0.25,10913.5,1,79,1490,12.20 +48,6,041018,225941,0.05592,22.2336,-0.25,10914.0,1,81,1489,12.21 +48,6,041018,225942,0.05593,22.2328,-0.25,10913.4,1,80,1491,12.21 +48,6,041018,225943,0.05592,22.2339,-0.25,10912.9,1,79,1490,12.21 +48,6,041018,225944,0.05592,22.2344,-0.24,10913.6,1,80,1492,12.20 +48,6,041018,225945,0.05592,22.2353,-0.25,10912.7,1,81,1489,12.20 +48,6,041018,225946,0.05593,22.2346,-0.24,10913.3,1,82,1489,12.20 +48,6,041018,225947,0.05588,22.2346,-0.25,10912.9,1,79,1491,12.20 +48,6,041018,225948,0.05591,22.2357,-0.25,10912.3,1,80,1486,12.20 +48,6,041018,225949,0.05595,22.2347,-0.25,10913.1,1,80,1489,12.20 +48,6,041018,225950,0.05594,22.2355,-0.25,10912.9,1,80,1486,12.20 +48,6,041018,225951,0.05593,22.2355,-0.25,10912.9,1,80,1484,12.20 +48,6,041018,225952,0.05591,22.2351,-0.25,10912.7,1,81,1486,12.20 +48,6,041018,225953,0.05588,22.2359,-0.26,10912.0,1,82,1487,12.20 +48,6,041018,225954,0.05587,22.2359,-0.23,10913.6,1,78,1487,12.20 +48,6,041018,225955,0.05591,22.2367,-0.25,10913.3,1,81,1490,12.20 +48,6,041018,225956,0.05592,22.2373,-0.25,10913.0,1,79,1486,12.20 +48,6,041018,225957,0.05591,22.2371,-0.24,10912.2,1,79,1487,12.20 +48,6,041018,225958,0.05590,22.2371,-0.25,10912.2,1,76,1485,12.20 +48,6,041018,225959,0.05588,22.2371,-0.24,10912.8,1,79,1493,12.20 +48,6,041018,230000,0.05592,22.2372,-0.25,10913.0,1,81,1498,12.20 +48,6,041018,230001,0.05592,22.2371,-0.24,10912.7,1,81,1499,12.20 +48,6,041018,230002,0.05591,22.2370,-0.25,10913.5,1,81,1496,12.20 +48,6,041018,230003,0.05590,22.2375,-0.26,10913.3,1,80,1497,12.20 +48,6,041018,230004,0.05586,22.2372,-0.26,10912.8,1,81,1497,12.20 +48,6,041018,230005,0.05586,22.2375,-0.24,10913.2,1,80,1498,12.20 +48,6,041018,230006,0.05591,22.2378,-0.25,10912.6,1,81,1497,12.20 +48,6,041018,230007,0.05593,22.2384,-0.25,10913.3,1,79,1497,12.20 +48,6,041018,230008,0.05591,22.2378,-0.26,10913.3,1,78,1496,12.20 +48,6,041018,230009,0.05589,22.2385,-0.25,10913.1,1,81,1497,12.20 +48,6,041018,230010,0.05587,22.2396,-0.25,10912.4,1,81,1498,12.20 +48,6,041018,230011,0.05591,22.2393,-0.25,10912.7,1,80,1496,12.20 +48,6,041018,230012,0.05589,22.2401,-0.26,10913.0,1,82,1495,12.20 +48,6,041018,230013,0.05587,22.2398,-0.25,10913.0,1,78,1498,12.19 +48,6,041018,230014,0.05589,22.2403,-0.25,10912.9,1,81,1498,12.19 +48,6,041018,230015,0.05592,22.2398,-0.24,10913.4,1,79,1498,12.20 +48,6,041018,230016,0.05592,22.2407,-0.25,10913.1,1,81,1500,12.20 +48,6,041018,230017,0.05590,22.2401,-0.25,10913.0,1,79,1498,12.20 +48,6,041018,230018,0.05586,22.2406,-0.24,10912.9,1,79,1500,12.19 +48,6,041018,230019,0.05588,22.2407,-0.24,10913.2,1,80,1496,12.20 +48,6,041018,230020,0.05588,22.2411,-0.26,10913.2,1,79,1499,12.20 +48,6,041018,230021,0.05588,22.2417,-0.25,10913.2,1,81,1498,12.20 +48,6,041018,230022,0.05586,22.2420,-0.23,10913.3,1,81,1499,12.20 +48,6,041018,230023,0.05590,22.2422,-0.25,10913.0,1,79,1496,12.19 +48,6,041018,230024,0.05590,22.2427,-0.25,10913.3,1,80,1495,12.19 +48,6,041018,230025,0.05585,22.2424,-0.23,10912.6,1,80,1499,12.20 +48,6,041018,230026,0.05586,22.2422,-0.25,10913.0,1,79,1498,12.19 +48,6,041018,230027,0.05591,22.2427,-0.25,10912.9,1,81,1500,12.19 +48,100,041018,230028,1,1,10,744,80,163906,858902,0,0,414724,0,0,0,0,1,12.19 +48,100,041018,231300,1,1,3,7,15,163906,858911,0,0,414724,0,0,0,0,1,12.48 +48,3,041018,231300,0.05589,22.2440,-0.25,10913.0,1,0,0,12.48 +48,230,041018,231301,3,19496,19496,19496 +48,100,041018,231307,1,1,4,15,15,163906,858911,0,0,414724,0,0,0,0,1,12.39 +48,200,041018,231308, 0.5554, 22.3800, -0.37, 10909.9, 2 +48,4,041018,231308,0.05554,22.3800,-0.37,10909.9,2,0,0,12.32 +48,4,041018,231309,0.05554,22.3801,-0.35,10909.9,2,0,0,12.36 +48,4,041018,231310,0.05550,22.3811,-0.34,10910.0,1,0,0,12.37 +48,4,041018,231311,0.05552,22.3810,-0.33,10910.5,1,0,0,12.37 +48,4,041018,231312,0.05549,22.3817,-0.32,10911.2,1,0,0,12.36 +48,4,041018,231313,0.05558,22.3813,-0.30,10911.2,1,0,0,12.36 +48,4,041018,231314,0.05554,22.3820,-0.30,10912.0,1,0,0,12.36 +48,4,041018,231315,0.05552,22.3824,-0.30,10911.6,1,0,0,12.36 +48,4,041018,231316,0.05549,22.3828,-0.29,10911.3,1,0,0,12.36 +48,4,041018,231317,0.05554,22.3825,-0.29,10912.2,1,0,0,12.36 +48,4,041018,231318,0.05551,22.3838,-0.29,10911.2,1,0,0,12.36 +48,4,041018,231319,0.05553,22.3841,-0.29,10911.3,1,0,0,12.35 +48,4,041018,231320,0.05548,22.3847,-0.28,10911.9,1,0,0,12.35 +48,4,041018,231321,0.05551,22.3849,-0.29,10911.9,1,0,0,12.35 +48,4,041018,231322,0.05550,22.3850,-0.28,10911.1,1,0,0,12.35 +48,4,041018,231323,0.05549,22.3859,-0.28,10911.3,1,0,0,12.35 +48,4,041018,231324,0.05551,22.3858,-0.28,10911.8,1,0,0,12.35 +48,4,041018,231325,0.05553,22.3853,-0.28,10911.1,1,0,0,12.35 +48,4,041018,231326,0.05553,22.3871,-0.28,10911.5,1,0,0,12.35 +48,4,041018,231327,0.05550,22.3867,-0.28,10911.2,1,0,0,12.35 +48,4,041018,231328,0.05546,22.3872,-0.27,10910.5,1,0,0,12.35 +48,4,041018,231329,0.05551,22.3876,-0.27,10911.6,1,0,0,12.35 +48,4,041018,231330,0.05554,22.3878,-0.28,10911.0,1,0,0,12.35 +48,4,041018,231331,0.05553,22.3891,-0.27,10910.8,1,0,0,12.35 +48,4,041018,231332,0.05556,22.3890,-0.27,10911.1,1,0,0,12.35 +48,4,041018,231333,0.05550,22.3891,-0.28,10911.1,1,0,0,12.35 +48,4,041018,231334,0.05549,22.3889,-0.28,10911.5,1,0,0,12.35 +48,4,041018,231335,0.05549,22.3890,-0.27,10911.0,1,0,0,12.34 +48,4,041018,231336,0.05547,22.3890,-0.28,10909.8,1,0,0,12.34 +48,4,041018,231337,0.05553,22.3898,-0.29,10910.5,1,0,0,12.35 +48,4,041018,231338,0.05555,22.3900,-0.26,10911.0,1,0,0,12.34 +48,4,041018,231339,0.05550,22.3904,-0.27,10911.3,1,0,0,12.34 +48,4,041018,231340,0.05547,22.3904,-0.28,10910.8,1,0,0,12.35 +48,4,041018,231341,0.05549,22.3904,-0.27,10911.3,1,0,0,12.35 +48,4,041018,231342,0.05549,22.3911,-0.28,10911.0,1,0,0,12.34 +48,4,041018,231343,0.05552,22.3919,-0.27,10910.5,1,0,0,12.34 +48,4,041018,231344,0.05556,22.3915,-0.27,10910.7,1,0,0,12.34 +48,4,041018,231345,0.05552,22.3928,-0.28,10910.3,1,0,0,12.34 +48,4,041018,231346,0.05545,22.3930,-0.27,10911.6,1,0,0,12.34 +48,4,041018,231347,0.05546,22.3922,-0.27,10910.0,1,0,0,12.34 +48,4,041018,231348,0.05550,22.3925,-0.28,10909.7,1,0,0,12.34 +48,4,041018,231349,0.05550,22.3942,-0.26,10910.5,1,0,0,12.34 +48,4,041018,231350,0.05550,22.3938,-0.26,10910.9,1,0,0,12.34 +48,4,041018,231351,0.05550,22.3953,-0.27,10910.6,1,0,0,12.34 +48,4,041018,231352,0.05549,22.3954,-0.26,10911.0,1,0,0,12.34 +48,4,041018,231353,0.05547,22.3953,-0.27,10910.8,1,0,0,12.34 +48,4,041018,231354,0.05550,22.3957,-0.25,10910.6,1,0,0,12.34 +48,4,041018,231355,0.05549,22.3964,-0.27,10910.7,1,0,0,12.34 +48,4,041018,231356,0.05552,22.3964,-0.25,10911.3,1,0,0,12.34 +48,4,041018,231357,0.05552,22.3971,-0.26,10911.9,1,0,0,12.34 +48,4,041018,231358,0.05549,22.3969,-0.25,10910.5,1,0,0,12.34 +48,4,041018,231359,0.05549,22.3972,-0.25,10911.1,1,0,0,12.34 +48,4,041018,231400,0.05551,22.3976,-0.24,10911.0,1,0,0,12.34 +48,4,041018,231401,0.05550,22.3997,-0.24,10909.8,1,0,0,12.34 +48,4,041018,231402,0.05549,22.3995,-0.26,10910.8,1,0,0,12.34 +48,4,041018,231403,0.05552,22.3996,-0.25,10910.0,1,0,0,12.34 +48,4,041018,231404,0.05549,22.3998,-0.26,10910.3,1,0,0,12.34 +48,4,041018,231405,0.05546,22.4001,-0.25,10910.4,1,0,0,12.34 +48,4,041018,231406,0.05547,22.4005,-0.26,10910.5,1,0,0,12.34 +48,4,041018,231407,0.05546,22.4016,-0.25,10910.1,1,0,0,12.34 +48,4,041018,231408,0.05547,22.4017,-0.26,10911.0,1,0,0,12.34 +48,4,041018,231409,0.05550,22.4018,-0.25,10910.6,1,0,0,12.34 +48,4,041018,231410,0.05549,22.4026,-0.27,10910.3,1,0,0,12.34 +48,4,041018,231411,0.05543,22.4034,-0.25,10910.5,1,0,0,12.34 +48,4,041018,231412,0.05543,22.4029,-0.26,10909.6,1,0,0,12.33 +48,4,041018,231413,0.05550,22.4043,-0.26,10910.5,1,0,0,12.34 +48,4,041018,231414,0.05550,22.4046,-0.25,10910.5,1,0,0,12.33 +48,4,041018,231415,0.05550,22.4049,-0.25,10910.6,1,0,0,12.34 +48,4,041018,231416,0.05548,22.4042,-0.25,10909.3,1,0,0,12.33 +48,4,041018,231417,0.05548,22.4052,-0.27,10909.4,1,0,0,12.34 +48,4,041018,231418,0.05549,22.4058,-0.27,10910.2,1,0,0,12.33 +48,4,041018,231419,0.05549,22.4067,-0.25,10910.0,1,0,0,12.34 +48,100,041018,231420,1,1,5,8,80,163911,858907,0,0,414724,0,0,0,0,1,12.34 +48,5,041018,231420,0.05548,22.4067,-0.26,10909.8,1,0,0,12.34 +48,5,041018,231421,0.05549,22.4064,-0.26,10909.6,1,0,0,12.25 +48,5,041018,231422,0.05551,22.4076,-0.27,10909.6,1,0,0,12.24 +48,5,041018,231423,0.05543,22.4084,-0.27,10909.9,1,0,0,12.17 +48,5,041018,231424,0.05547,22.4089,-0.26,10909.8,1,0,0,12.21 +48,210,041018,231424,04/10/18 16:09:29 695 110 700 1282 537 +48,5,041018,231425,0.05549,22.4088,-0.27,10909.5,1,110,1282,12.22 +48,5,041018,231426,0.05547,22.4091,-0.27,10910.6,1,40,1250,12.21 +48,5,041018,231427,0.05545,22.4098,-0.26,10910.8,1,-6,1288,12.22 +48,100,041018,231428,1,1,6,60,80,163911,858906,0,0,414724,0,0,0,0,1,12.21 +48,6,041018,231428,0.05547,22.4100,-0.26,10909.5,1,113,1280,12.21 +48,6,041018,231429,0.05546,22.4105,-0.26,10910.5,1,-34,1190,12.21 +48,6,041018,231430,0.05544,22.4106,-0.27,10910.3,1,87,1267,12.21 +48,6,041018,231431,0.05546,22.4120,-0.26,10910.7,1,68,1277,12.21 +48,6,041018,231432,0.05545,22.4120,-0.27,10910.4,1,111,1212,12.21 +48,6,041018,231433,0.05548,22.4138,-0.26,10910.4,1,67,1288,12.20 +48,6,041018,231434,0.05548,22.4131,-0.25,10909.8,1,102,1271,12.20 +48,6,041018,231435,0.05543,22.4144,-0.26,10910.5,1,29,1226,12.20 +48,6,041018,231436,0.05549,22.4144,-0.26,10910.6,1,48,1240,12.20 +48,6,041018,231437,0.05546,22.4150,-0.24,10910.0,1,77,1302,12.21 +48,6,041018,231438,0.05547,22.4152,-0.26,10910.0,1,82,1182,12.21 +48,6,041018,231439,0.05541,22.4153,-0.25,10910.0,1,126,1247,12.20 +48,6,041018,231440,0.05541,22.4164,-0.25,10910.2,1,59,1219,12.20 +48,6,041018,231441,0.05543,22.4164,-0.25,10910.5,1,72,1266,12.20 +48,6,041018,231442,0.05549,22.4169,-0.23,10910.0,1,110,1340,12.20 +48,6,041018,231443,0.05540,22.4161,-0.25,10909.7,1,85,1214,12.20 +48,6,041018,231444,0.05540,22.4165,-0.25,10909.9,1,92,1224,12.20 +48,6,041018,231445,0.05546,22.4177,-0.25,10910.5,1,127,1272,12.20 +48,6,041018,231446,0.05549,22.4178,-0.25,10910.0,1,79,1254,12.20 +48,6,041018,231447,0.05546,22.4182,-0.25,10910.4,1,101,1264,12.20 +48,6,041018,231448,0.05547,22.4182,-0.25,10910.0,1,94,1217,12.20 +48,6,041018,231449,0.05545,22.4193,-0.25,10910.5,1,29,1234,12.20 +48,6,041018,231450,0.05541,22.4186,-0.23,10910.5,1,86,1272,12.20 +48,6,041018,231451,0.05541,22.4190,-0.24,10910.1,1,128,1282,12.20 +48,6,041018,231452,0.05546,22.4202,-0.25,10910.5,1,67,1223,12.20 +48,6,041018,231453,0.05546,22.4198,-0.25,10910.4,1,159,1306,12.20 +48,6,041018,231454,0.05546,22.4211,-0.25,10909.8,1,-4,1257,12.20 +48,6,041018,231455,0.05545,22.4212,-0.26,10909.8,1,119,1168,12.20 +48,6,041018,231456,0.05546,22.4218,-0.26,10910.4,1,49,1275,12.20 +48,6,041018,231457,0.05543,22.4215,-0.25,10909.8,1,57,1314,12.20 +48,6,041018,231458,0.05542,22.4218,-0.27,10910.0,1,91,1256,12.20 +48,6,041018,231459,0.05543,22.4231,-0.25,10910.8,1,79,1272,12.20 +48,6,041018,231500,0.05548,22.4232,-0.24,10909.1,1,72,1259,12.20 +48,6,041018,231501,0.05544,22.4246,-0.26,10910.8,1,35,1279,12.20 +48,6,041018,231502,0.05542,22.4239,-0.26,10910.6,1,115,1288,12.20 +48,6,041018,231503,0.05548,22.4243,-0.26,10910.4,1,86,1223,12.20 +48,6,041018,231504,0.05544,22.4246,-0.26,10911.0,1,96,1360,12.19 +48,6,041018,231505,0.05543,22.4264,-0.25,10910.3,1,49,1286,12.19 +48,6,041018,231506,0.05544,22.4260,-0.26,10909.8,1,14,1230,12.19 +48,6,041018,231507,0.05544,22.4270,-0.26,10910.3,1,83,1300,12.20 +48,6,041018,231508,0.05543,22.4265,-0.26,10910.9,1,206,1292,12.20 +48,6,041018,231509,0.05542,22.4280,-0.24,10910.1,1,60,1228,12.19 +48,6,041018,231510,0.05541,22.4283,-0.27,10910.0,1,77,1271,12.20 +48,6,041018,231511,0.05545,22.4286,-0.26,10911.3,1,93,1336,12.19 +48,6,041018,231512,0.05545,22.4287,-0.26,10911.2,1,64,1199,12.19 +48,6,041018,231513,0.05543,22.4296,-0.25,10910.9,1,60,1299,12.19 +48,6,041018,231514,0.05543,22.4302,-0.26,10910.7,1,74,1169,12.19 +48,6,041018,231515,0.05543,22.4310,-0.25,10910.3,1,-20,1288,12.19 +48,6,041018,231516,0.05543,22.4304,-0.25,10910.2,1,93,1299,12.19 +48,6,041018,231517,0.05537,22.4312,-0.24,10910.8,1,159,1264,12.19 +48,6,041018,231518,0.05543,22.4319,-0.26,10910.0,1,95,1299,12.19 +48,6,041018,231519,0.05544,22.4324,-0.24,10910.3,1,139,1214,12.19 +48,6,041018,231520,0.05544,22.4328,-0.24,10911.1,1,74,1265,12.19 +48,6,041018,231521,0.05543,22.4328,-0.25,10910.5,1,86,1289,12.19 +48,6,041018,231522,0.05544,22.4334,-0.24,10910.6,1,138,1239,12.19 +48,6,041018,231523,0.05538,22.4335,-0.21,10910.4,1,13,1293,12.19 +48,6,041018,231524,0.05538,22.4337,-0.24,10910.5,1,45,1296,12.19 +48,6,041018,231525,0.05543,22.4339,-0.24,10910.9,1,17,1188,12.19 +48,6,041018,231526,0.05546,22.4348,-0.25,10910.3,1,76,1271,12.19 +48,6,041018,231527,0.05544,22.4353,-0.25,10909.5,1,82,1235,12.19 +48,100,041018,231528,1,1,10,581,80,163915,858902,0,0,414724,0,0,0,0,1,12.19 +48,100,041018,232800,1,1,3,7,15,163916,858895,0,0,414724,0,0,0,0,1,12.47 +48,100,041018,232800,1,1,15,1,15,163916,858895,0,0,414724,0,0,0,0,1,12.47 + \ No newline at end of file diff --git a/test/readWQMraw/WQM0049_000_v1.19_example.RAW b/test/readWQMraw/WQM0049_000_v1.19_example.RAW new file mode 100644 index 000000000..c4785560f --- /dev/null +++ b/test/readWQMraw/WQM0049_000_v1.19_example.RAW @@ -0,0 +1,125 @@ + +File Name: WQM0049.000 +Created On: 042509 004902 +WQM SN: 49 +WQM F/W V: 1.19 +CTDO SN: 5049 +DOSN=0 +Soc=1.373800e-04 +FOffset=-3.243719e+03 +A52=-2.043000e-03 +B52=1.532700e-04 +C52=-3.483000e-06 +E52=3.600000e-02 +Optics SN: 981 +FactoryCHL=0.007 55 Scale and Offset +UserCHL=0.007 55 Scale and Offset +NTU=0.002 49 Scale and Offset +Beta=0.000 1 0 Derived Scale and Offset +External Data Port: Off +WQM Control: Autonomous +Delay Seconds: 0 +Sample Seconds: 60 +Sample Interval Seconds: 900 +Outbits: 0xa001db90 +Starting Free Flask Disk: 1022800 K +Total Flask Disk: 1022816 K +BLIS ul / squirt: 7.0 +Pumped Hour Interval: 1 +Pumped BLIS: 0 +Static BLIS: 4 +Starting Total BLIS Squirts: 112 +Recent UPS: No +Starting UPS Count: 0 +Starting Total UPS Count: 1 +Starting Voltage: 15.85 +Data Output: ON +Heartbeat: OFF +Update Date/Time: Normal + +49,100,042509,004902,1,1,15,1,15,8,1022799,112,1,0,0,0,0,1,2,15.85 +49,100,042509,005053,1,1,10,600,15,8,1022799,112,1,0,0,0,0,1,2,15.83 +49,100,042509,005904,1,1,3,11,15,8,1022799,112,1,0,0,0,0,1,2,16.43 +49,100,042509,005915,1,1,4,19,19,8,1022799,112,1,0,0,0,0,1,2,15.87 +49,4,042509,005915,0.00000,0.0000,0.00,0.0,0,0 +49,4,042509,005916,0.00000,0.0000,0.00,0.0,0,0 +49,4,042509,005917,0.00000,0.0000,0.00,0.0,0,0 +49,4,042509,005918,0.04885,27.1503,-0.02,10708.8,0,0 +49,4,042509,005919,0.04885,27.0270,-0.02,10712.9,0,0 +49,4,042509,005920,0.04891,26.9138,-0.02,10712.6,0,0 +49,4,042509,005921,0.04901,26.8114,-0.02,10706.7,0,0 +49,4,042509,005922,0.04892,26.7165,-0.02,10711.8,0,0 +49,4,042509,005923,0.04901,26.6345,-0.02,10713.3,0,0 +49,4,042509,005924,0.04891,26.5459,-0.03,10710.5,0,0 +49,5,042509,005925,0.04882,26.4883,-0.03,10715.9,0,0 +49,100,042509,005926,1,1,5,8,19,9,1022799,112,1,0,0,0,0,1,2,15.79 +49,5,042509,005926,0.04970,26.4340,-0.03,10712.9,0,0 +49,5,042509,005927,0.05250,26.3876,-0.03,10714.5,0,0 +49,5,042509,005928,0.06296,26.3310,-0.03,10714.4,0,0 +49,5,042509,005929,0.07209,26.2800,-0.03,10714.4,0,0 +49,5,042509,005930,0.07574,26.2229,-0.02,10711.7,50,161 +49,5,042509,005931,0.07696,26.1640,-0.02,10711.8,55,133 +49,5,042509,005932,0.07815,26.1038,-0.02,10713.5,55,133 +49,6,042509,005933,0.07935,26.0450,-0.02,10713.7,51,133 +49,100,042509,005934,1,1,6,60,19,9,1022798,112,1,0,0,0,0,1,2,15.71 +49,6,042509,005934,0.07989,25.9880,-0.02,10712.3,57,139 +49,6,042509,005935,0.07987,25.9348,-0.02,10714.0,59,129 +49,6,042509,005936,0.07997,25.8876,-0.02,10716.6,58,128 +49,6,042509,005937,0.08008,25.8363,-0.02,10715.2,57,117 +49,6,042509,005938,0.08025,25.7903,-0.02,10715.2,53,116 +49,6,042509,005939,0.08040,25.7442,-0.02,10713.7,59,127 +49,6,042509,005940,0.08056,25.6976,-0.02,10718.7,54,128 +49,6,042509,005941,0.08066,25.6551,-0.02,10716.2,60,123 +49,6,042509,005942,0.08078,25.6321,-0.02,10713.8,57,119 +49,6,042509,005943,0.08087,25.6113,-0.02,10714.5,59,122 +49,6,042509,005944,0.08084,25.6030,-0.02,10715.9,59,123 +49,6,042509,005945,0.08091,25.6015,-0.02,10715.4,59,113 +49,6,042509,005946,0.08092,25.5976,-0.02,10714.6,59,117 +49,6,042509,005947,0.08090,25.5889,-0.02,10717.2,63,114 +49,6,042509,005948,0.08096,25.5900,-0.02,10714.7,57,97 +49,6,042509,005949,0.08152,25.5898,-0.02,10718.8,59,126 +49,6,042509,005950,0.08206,25.5865,-0.02,10717.0,55,117 +49,6,042509,005951,0.08164,25.5718,-0.02,10716.3,56,120 +49,6,042509,005952,0.08149,25.5486,-0.02,10714.8,71,131 +49,6,042509,005953,0.08138,25.5052,-0.02,10713.7,60,124 +49,6,042509,005954,0.08135,25.4557,-0.02,10712.8,55,113 +49,6,042509,005955,0.08132,25.4105,-0.02,10714.8,58,124 +49,6,042509,005956,0.08131,25.3679,-0.02,10716.8,53,132 +49,6,042509,005957,0.08137,25.3448,-0.02,10717.2,54,108 +49,6,042509,005958,0.08147,25.3198,-0.02,10714.5,60,92 +49,6,042509,005959,0.08772,25.2995,-0.03,10716.7,62,94 +49,6,042509,010000,0.10046,25.2812,-0.03,10715.9,55,91 +49,6,042509,010001,0.12515,25.2610,-0.03,10715.7,54,99 +49,6,042509,010002,0.12091,25.2546,-0.03,10717.2,55,94 +49,6,042509,010003,0.11190,25.2622,-0.03,10713.0,55,93 +49,6,042509,010004,0.10890,25.2707,-0.03,10719.2,51,103 +49,6,042509,010005,0.10960,25.2793,-0.03,10718.9,73,1562 +49,6,042509,010006,0.11197,25.2831,-0.03,10717.7,54,140 +49,6,042509,010007,0.10881,25.2880,-0.02,10715.5,59,224 +49,6,042509,010008,0.10347,25.2874,-0.02,10719.1,63,122 +49,6,042509,010009,0.10156,25.2831,-0.02,10719.3,61,119 +49,6,042509,010010,0.10060,25.2858,-0.02,10719.2,59,114 +49,6,042509,010011,0.10017,25.2722,-0.02,10721.7,51,123 +49,6,042509,010012,0.09985,25.2713,-0.02,10717.4,58,122 +49,6,042509,010013,0.09976,25.2759,-0.02,10717.2,55,123 +49,6,042509,010014,0.09978,25.2673,-0.02,10718.6,57,101 +49,6,042509,010015,0.10069,25.2399,-0.02,10719.0,57,93 +49,6,042509,010016,0.11052,25.2250,-0.04,10720.7,63,99 +49,6,042509,010017,0.18058,25.2445,-0.05,10717.5,58,97 +49,6,042509,010018,0.18312,25.2965,-0.05,10715.5,57,99 +49,6,042509,010019,0.20225,25.3675,-0.05,10717.7,57,99 +49,6,042509,010020,0.27059,25.4602,-0.05,10721.0,61,103 +49,6,042509,010021,0.29719,25.5580,-0.05,10717.2,58,104 +49,6,042509,010022,0.27698,25.6620,-0.05,10718.5,57,101 +49,6,042509,010023,0.25756,25.7537,-0.05,10717.3,59,101 +49,6,042509,010024,0.23114,25.8457,-0.05,10717.0,50,102 +49,6,042509,010025,0.20834,25.9485,-0.05,10716.8,55,104 +49,6,042509,010026,0.19174,26.0601,-0.05,10715.9,50,101 +49,6,042509,010027,0.17901,26.1711,-0.05,10719.8,53,109 +49,6,042509,010028,0.16896,26.2795,-0.05,10719.6,64,103 +49,6,042509,010029,0.15870,26.3748,-0.05,10715.2,53,103 +49,6,042509,010030,0.14862,26.4653,-0.05,10717.0,58,107 +49,6,042509,010031,0.13972,26.5584,-0.05,10720.1,50,99 +49,6,042509,010032,0.13383,26.6534,-0.05,10715.7,51,104 +49,6,042509,010033,0.12854,26.7444,-0.05,10717.3,44,105 + \ No newline at end of file diff --git a/test/readWQMraw/WQM0052_014_fw1.21_example.Raw b/test/readWQMraw/WQM0052_014_fw1.21_example.Raw new file mode 100644 index 000000000..6898223db --- /dev/null +++ b/test/readWQMraw/WQM0052_014_fw1.21_example.Raw @@ -0,0 +1,600 @@ + +File Name: WQM0052.014 +Created On: 042410 031324 +WQM SN: 52 +WQM F/W V: 1.21 +CTDO SN: 5052 +DOSN=0 +Soc=1.255100e-04 +FOffset=-3.190418e+03 +A52=-9.509600e-04 +B52=9.874000e-05 +C52=-2.681400e-06 +E52=3.600000e-02 +Optics SN: 1001 +FactoryCHL=0.007 59 Scale and Offset +UserCHL=0.007 59 Scale and Offset +NTU=0.002 50 Scale and Offset +Beta=0.000 1 0 Derived Scale and Offset +External Data Port: ON +PAR SN=0500 +PAR=4.8000 0.0500 0.2500 Im, ao, and a1 +WQM Control: Autonomous +Delay Seconds: 0 +Sample Seconds: 60 +Sample Interval Seconds: 900 +Outbits: 0xdb90a005 +Starting Free Flask Disk: 1022816 K +Total Flask Disk: 1022816 K +BLIS ul / squirt: 7.0 +Pumped Hour Interval: 1 +Pumped BLIS: 0 +Static BLIS: 4 +Starting Total BLIS Squirts: 0 +Recent UPS: No +Starting UPS Count: 0 +Starting Total UPS Count: 14 +Starting Voltage: 17.15 +Data Output: Averaged +Heartbeat: OFF +Update Date/Time: Normal +File Format: SN,State,Date,Time,Cond,Temp,Pres,RawDO,RawCHL,RawTurb,Volts,RawPAR + +52,100,042410,031324,1,0,3,11,15,0,1022816,0,1,0,1,0,0,14,0,17.15 +52,140,042410,031324,WAKE CTD:Startup 1074 ms, Purge 9 ms +52,140,042410,031329,Sample Mode: In Air - Not Pumped: 0.00000 S/M < 0.00150 C90-Limit +52,140,042410,031329,WAKE CTD:Startup 1074 ms, Purge 10 ms +52,200,042410,031329, -0.0000, 31.6342, 0.03, 5.246 +52,3,042410,031329,0.00000,31.6342,0.03,30000.0,0,0,17.13,0 +52,3,042410,031333,0.00000,31.6242,0.03,30000.0,0,0,17.14,0 +52,100,042410,031335,1,0,4,60,60,0,1022815,0,1,0,1,0,0,14,2,17.19 +52,100,042410,031427,1,0,5,8,60,0,1022815,0,1,0,1,0,0,14,2,17.18 +52,210,042410,031431,04/23/10 20:19:39 695 63 700 319 543 +52,100,042410,031435,1,0,6,60,60,0,1022815,0,1,0,1,0,0,14,2,17.02 +52,6,042410,031444,0.00000,31.4095,0.03,30000.0,66,132,16.99,0 +52,6,042410,031454,0.00000,31.3869,0.03,30000.0,66,129,16.98,0 +52,6,042410,031504,0.00000,31.3517,0.03,30000.0,68,208,16.98,0 +52,6,042410,031514,0.00000,31.3156,0.03,30000.0,64,158,16.98,0 +52,6,042410,031524,0.00000,31.2957,0.03,30000.0,66,146,16.98,0 +52,6,042410,031534,0.00000,31.2691,0.03,30000.0,59,51,16.99,0 +52,130,042410,031535,EDP Bio-Wiper Might Not have Closed +52,100,042410,031535,1,0,10,0,60,1,1022814,0,1,242740,1,0,0,14,2,16.99 +52,100,042410,032824,1,0,3,11,15,1,1022799,0,1,242740,1,0,0,14,2,17.87 +52,140,042410,032829,Sample Mode: Insitu - Pumped: 5.54308 S/M > 0.00150 C90-Limit +52,200,042410,032829, 55.4308, 26.4037, 2.32, 4.150 +52,3,042410,032829,5.54308,26.4037,2.32,30000.0,0,0,17.14,0 +52,100,042410,032836,1,1,4,60,60,1,1022799,0,1,242740,1,0,0,14,2,17.12 +52,4,042410,032838,5.45130,26.1786,2.11,10744.0,0,0,17.13,0 +52,4,042410,032839,5.45263,26.1935,2.31,10849.0,0,0,17.10,0 +52,4,042410,032840,5.45194,26.1946,2.42,10918.5,0,0,17.11,0 +52,4,042410,032841,5.45112,26.1886,2.16,10966.9,0,0,17.11,0 +52,4,042410,032842,5.45164,26.1871,2.39,10998.3,0,0,17.10,0 +52,4,042410,032843,5.45149,26.1915,2.31,11022.9,0,0,17.10,0 +52,4,042410,032844,5.45169,26.1938,2.45,11036.4,0,0,17.10,0 +52,4,042410,032845,5.44965,26.1808,2.10,11047.9,0,0,17.10,0 +52,4,042410,032845,5.44929,26.1712,2.32,11053.8,0,0,17.10,0 +52,4,042410,032847,5.44825,26.1623,2.23,11054.8,0,0,17.10,0 +52,4,042410,032847,5.44773,26.1601,2.45,11057.7,0,0,17.10,0 +52,4,042410,032849,5.44705,26.1566,2.14,11063.2,0,0,17.10,0 +52,4,042410,032850,5.44719,26.1517,2.32,11066.8,0,0,17.10,0 +52,4,042410,032851,5.44753,26.1545,2.49,11068.1,0,0,17.10,0 +52,4,042410,032851,5.44564,26.1454,2.27,11065.2,0,0,17.10,0 +52,4,042410,032853,5.44433,26.1250,2.15,11066.3,0,0,17.10,0 +52,4,042410,032853,5.44457,26.1266,2.24,11067.4,0,0,17.10,0 +52,4,042410,032854,5.44518,26.1358,2.56,11072.2,0,0,17.10,0 +52,4,042410,032855,5.44428,26.1296,2.37,11073.7,0,0,17.10,0 +52,4,042410,032856,5.44990,26.1729,2.11,11076.4,0,0,17.10,0 +52,4,042410,032857,5.44950,26.1821,2.21,11077.3,0,0,17.10,0 +52,4,042410,032858,5.44755,26.1671,2.41,11077.8,0,0,17.10,0 +52,4,042410,032900,5.44704,26.1553,2.46,11078.8,0,0,17.10,0 +52,4,042410,032900,5.45015,26.1752,2.58,11079.2,0,0,17.10,0 +52,4,042410,032901,5.44862,26.1747,2.37,11080.3,0,0,17.10,0 +52,4,042410,032903,5.45011,26.1842,2.30,11079.5,0,0,17.10,0 +52,4,042410,032904,5.45045,26.1865,2.13,11082.8,0,0,17.10,0 +52,4,042410,032905,5.44990,26.1848,2.28,11079.9,0,0,17.10,0 +52,4,042410,032906,5.44997,26.1848,2.49,11079.8,0,0,17.10,0 +52,4,042410,032906,5.44990,26.1836,2.46,11083.0,0,0,17.10,0 +52,4,042410,032907,5.44971,26.1815,2.47,11077.1,0,0,17.10,0 +52,4,042410,032908,5.44917,26.1752,2.34,11080.3,0,0,17.10,0 +52,4,042410,032909,5.44886,26.1737,2.11,11082.0,0,0,17.10,0 +52,4,042410,032911,5.44889,26.1760,2.26,11083.1,0,0,17.10,0 +52,4,042410,032911,5.44971,26.1801,2.42,11079.9,0,0,17.10,0 +52,4,042410,032913,5.44801,26.1681,2.28,11078.1,0,0,17.10,0 +52,4,042410,032913,5.44437,26.1296,2.46,11079.4,0,0,17.10,0 +52,4,042410,032915,5.44630,26.1447,2.39,11077.2,0,0,17.10,0 +52,4,042410,032916,5.44831,26.1707,2.48,11079.3,0,0,17.10,0 +52,4,042410,032917,5.44953,26.1771,2.29,11082.0,0,0,17.10,0 +52,4,042410,032918,5.44962,26.1835,2.41,11083.3,0,0,17.10,0 +52,4,042410,032918,5.45015,26.1869,2.27,11085.7,0,0,17.10,0 +52,4,042410,032919,5.45026,26.1890,2.42,11083.4,0,0,17.10,0 +52,4,042410,032920,5.44987,26.1848,2.41,11082.9,0,0,17.10,0 +52,4,042410,032922,5.44926,26.1778,2.19,11083.2,0,0,17.10,0 +52,4,042410,032922,5.44810,26.1687,2.52,11085.6,0,0,17.10,0 +52,4,042410,032924,5.44743,26.1614,2.12,11083.5,0,0,17.10,0 +52,4,042410,032924,5.44660,26.1526,2.55,11081.0,0,0,17.10,0 +52,4,042410,032926,5.44649,26.1539,2.17,11079.7,0,0,17.10,0 +52,4,042410,032926,5.44610,26.1509,2.35,11078.5,0,0,17.10,0 +52,4,042410,032927,5.44658,26.1532,2.36,11078.6,0,0,17.10,0 +52,100,042410,032928,1,1,5,8,60,4,1022796,20,1,242740,1,0,0,14,2,17.10 +52,5,042410,032928,5.44561,26.1432,2.26,11077.6,0,0,17.10,0 +52,5,042410,032929,5.44470,26.1302,2.60,11073.6,0,0,16.98,0 +52,5,042410,032930,5.44232,26.1193,2.16,11074.8,0,0,16.98,0 +52,5,042410,032931,5.44246,26.1143,2.38,11077.3,0,0,16.98,0 +52,210,042410,032932,04/23/10 20:34:40 695 82 700 98 542 +52,5,042410,032932,5.44317,26.1183,2.37,11077.7,82,98,16.94,0 +52,5,042410,032933,5.44384,26.1296,2.15,11079.4,79,112,16.96,0 +52,5,042410,032934,5.44700,26.1590,2.20,11084.3,73,84,17.02,0 +52,5,042410,032935,5.44822,26.1666,2.67,11084.2,95,88,16.96,0 +52,100,042410,032936,1,1,6,60,60,5,1022796,20,1,242740,0,0,0,14,2,16.96 +52,6,042410,032936,5.44902,26.1747,2.29,11085.5,75,78,16.96,0 +52,6,042410,032937,5.44862,26.1777,2.39,11086.2,80,75,16.96,0 +52,6,042410,032938,5.44935,26.1814,2.27,11086.7,105,90,16.96,0 +52,6,042410,032939,5.44956,26.1811,2.31,11084.3,102,99,16.96,0 +52,6,042410,032940,5.44862,26.1762,2.31,11081.8,85,99,16.96,0 +52,6,042410,032941,5.44714,26.1595,2.31,11079.8,79,85,16.96,0 +52,6,042410,032942,5.44661,26.1538,2.55,11080.1,83,84,16.96,0 +52,6,042410,032943,5.44694,26.1556,2.23,11082.1,81,83,16.96,0 +52,6,042410,032944,5.44818,26.1670,2.40,11084.6,83,76,16.96,0 +52,6,042410,032945,5.44868,26.1743,2.55,11083.2,77,90,16.96,0 +52,6,042410,032946,5.44911,26.1774,2.41,11082.9,74,89,16.96,0 +52,6,042410,032947,5.44892,26.1787,2.19,11083.7,80,99,16.96,0 +52,6,042410,032948,5.44810,26.1697,2.28,11084.1,81,96,16.96,0 +52,6,042410,032949,5.44851,26.1724,2.38,11083.7,79,86,16.96,0 +52,6,042410,032950,5.44853,26.1717,2.56,11083.0,92,105,16.96,0 +52,6,042410,032951,5.44818,26.1681,2.29,11083.7,83,83,16.96,0 +52,6,042410,032952,5.44905,26.1783,2.27,11085.9,83,83,16.96,0 +52,6,042410,032953,5.44920,26.1797,2.49,11084.6,92,82,16.96,0 +52,6,042410,032954,5.44920,26.1786,2.58,11082.6,82,84,16.96,0 +52,6,042410,032955,5.44902,26.1775,2.40,11083.1,77,88,16.96,0 +52,6,042410,032956,5.44716,26.1627,2.22,11079.7,85,93,16.96,0 +52,6,042410,032957,5.44792,26.1638,2.20,11077.8,65,84,16.96,0 +52,6,042410,032958,5.44691,26.1578,2.45,11078.6,77,85,16.96,0 +52,6,042410,032959,5.44729,26.1596,2.47,11079.5,81,95,16.96,0 +52,6,042410,033000,5.44597,26.1474,2.48,11080.0,81,86,16.96,0 +52,6,042410,033001,5.44570,26.1462,2.45,11079.7,76,92,16.96,0 +52,6,042410,033002,5.44639,26.1522,2.29,11079.8,84,91,16.96,0 +52,6,042410,033003,5.44524,26.1429,2.24,11078.3,77,89,16.96,0 +52,6,042410,033004,5.44550,26.1443,2.54,11077.1,82,86,16.96,0 +52,6,042410,033005,5.44405,26.1326,2.45,11077.7,81,83,16.96,0 +52,6,042410,033006,5.44515,26.1385,2.23,11083.4,81,89,16.96,0 +52,6,042410,033007,5.44789,26.1660,2.47,11083.2,81,86,16.96,0 +52,6,042410,033008,5.44792,26.1681,2.58,11084.9,85,86,16.96,0 +52,6,042410,033009,5.44759,26.1652,2.17,11082.9,72,90,16.96,0 +52,6,042410,033010,5.44670,26.1563,2.47,11082.6,83,86,16.96,0 +52,6,042410,033011,5.44746,26.1618,2.46,11079.7,74,91,16.95,0 +52,6,042410,033012,5.44634,26.1533,2.34,11083.1,81,88,16.96,0 +52,6,042410,033013,5.44716,26.1590,2.49,11084.9,79,87,16.96,0 +52,6,042410,033014,5.44726,26.1596,2.40,11087.7,77,94,16.96,0 +52,6,042410,033015,5.44743,26.1615,2.59,11084.8,82,87,16.96,0 +52,6,042410,033016,5.44646,26.1540,2.44,11085.4,90,87,16.96,0 +52,6,042410,033017,5.44649,26.1574,2.13,11085.4,72,92,16.96,0 +52,6,042410,033018,5.44737,26.1627,2.40,11082.9,81,90,16.96,0 +52,6,042410,033019,5.44687,26.1588,2.48,11079.3,81,85,16.96,0 +52,6,042410,033020,5.44649,26.1540,2.47,11078.8,86,84,16.96,0 +52,6,042410,033021,5.44618,26.1501,2.55,11078.5,84,86,16.96,0 +52,6,042410,033022,5.44470,26.1393,2.40,11082.7,86,85,16.96,0 +52,6,042410,033023,5.44430,26.1322,2.39,11079.4,79,84,16.96,0 +52,6,042410,033024,5.44452,26.1344,2.23,11078.7,73,82,16.95,0 +52,6,042410,033025,5.44457,26.1349,2.21,11074.7,82,86,16.96,0 +52,6,042410,033026,5.44539,26.1429,2.58,11078.2,79,91,16.96,0 +52,6,042410,033027,5.44652,26.1491,2.59,11077.8,90,87,16.96,0 +52,6,042410,033028,5.44795,26.1667,2.35,11081.4,80,93,16.96,0 +52,6,042410,033029,5.44869,26.1748,2.39,11080.5,101,75,16.96,0 +52,6,042410,033030,5.44822,26.1724,2.24,11083.6,83,89,16.96,0 +52,6,042410,033031,5.44831,26.1710,2.42,11083.7,80,86,16.96,0 +52,6,042410,033032,5.44866,26.1746,2.48,11082.8,79,87,16.96,0 +52,6,042410,033033,5.44883,26.1766,2.41,11083.8,84,85,16.96,0 +52,6,042410,033034,5.44881,26.1762,2.27,11079.5,85,88,16.96,0 +52,6,042410,033035,5.44846,26.1735,2.18,11082.0,79,85,16.95,0 +52,130,042410,033036,EDP Bio-Wiper Might Not have Closed +52,100,042410,033036,1,1,10,754,60,9,1022792,24,1,0,0,0,0,14,2,16.95 +52,100,042410,034324,1,1,3,11,15,9,1022799,24,1,0,0,0,0,14,2,17.86 +52,3,042410,034324,5.44962,26.1850,2.10,11084.5,82,87,17.86,0 +52,140,042410,034325,WAKE CTD:Startup 1075 ms, Purge 10 ms +52,140,042410,034329,Sample Mode: Insitu - Pumped: 5.39995 S/M > 0.00150 C90-Limit +52,200,042410,034329, 53.9995, 25.9760, 9.74, 4.091 +52,3,042410,034329,5.39995,25.9760,9.74,30000.0,0,0,17.14,0 +52,100,042410,034336,1,1,4,60,60,9,1022799,24,1,0,0,0,0,14,2,17.12 +52,4,042410,034338,5.42858,25.9767,9.84,10762.0,0,0,17.11,0 +52,4,042410,034339,5.42800,25.9747,9.83,10846.5,0,0,17.11,0 +52,4,042410,034340,5.42746,25.9688,9.70,10906.3,0,0,17.11,0 +52,4,042410,034341,5.42761,25.9711,9.42,10945.8,0,0,17.11,0 +52,4,042410,034342,5.42779,25.9724,9.13,10974.8,0,0,17.11,0 +52,4,042410,034343,5.42800,25.9742,9.17,10992.9,0,0,17.11,0 +52,4,042410,034344,5.42834,25.9774,9.52,11006.5,0,0,17.11,0 +52,4,042410,034345,5.42876,25.9826,9.85,11014.1,0,0,17.10,0 +52,4,042410,034346,5.42797,25.9741,9.98,11019.3,0,0,17.11,0 +52,4,042410,034347,5.42752,25.9701,9.86,11024.8,0,0,17.11,0 +52,4,042410,034348,5.42735,25.9684,9.57,11029.0,0,0,17.10,0 +52,4,042410,034349,5.42761,25.9718,9.26,11034.3,0,0,17.10,0 +52,4,042410,034350,5.42779,25.9734,9.15,11034.6,0,0,17.10,0 +52,4,042410,034351,5.42794,25.9743,9.35,11035.9,0,0,17.10,0 +52,4,042410,034352,5.42901,25.9824,9.75,11039.1,0,0,17.11,0 +52,4,042410,034353,5.42855,25.9812,10.05,11036.9,0,0,17.10,0 +52,4,042410,034354,5.42788,25.9746,10.03,11039.2,0,0,17.11,0 +52,4,042410,034355,5.42709,25.9667,9.73,11039.9,0,0,17.10,0 +52,4,042410,034356,5.42746,25.9709,9.42,11038.9,0,0,17.10,0 +52,4,042410,034357,5.42767,25.9726,9.34,11039.7,0,0,17.11,0 +52,4,042410,034358,5.42776,25.9724,9.46,11042.2,0,0,17.11,0 +52,4,042410,034359,5.42785,25.9744,9.63,11043.2,0,0,17.10,0 +52,4,042410,034400,5.42776,25.9727,9.73,11044.0,0,0,17.10,0 +52,4,042410,034401,5.42770,25.9709,9.72,11046.2,0,0,17.10,0 +52,4,042410,034402,5.42740,25.9709,9.62,11049.1,0,0,17.10,0 +52,4,042410,034403,5.42738,25.9691,9.53,11050.7,0,0,17.11,0 +52,4,042410,034404,5.42734,25.9686,9.51,11050.6,0,0,17.10,0 +52,4,042410,034405,5.42749,25.9705,9.59,11050.2,0,0,17.10,0 +52,4,042410,034406,5.42752,25.9708,9.72,11047.8,0,0,17.10,0 +52,4,042410,034407,5.42731,25.9690,9.78,11046.7,0,0,17.10,0 +52,4,042410,034408,5.42717,25.9675,9.71,11046.0,0,0,17.10,0 +52,4,042410,034409,5.42716,25.9675,9.55,11051.3,0,0,17.10,0 +52,4,042410,034410,5.42723,25.9675,9.45,11050.1,0,0,17.10,0 +52,4,042410,034411,5.42746,25.9702,9.48,11051.4,0,0,17.10,0 +52,4,042410,034412,5.42515,25.9739,9.52,11052.6,0,0,17.10,0 +52,4,042410,034413,5.42764,25.9728,9.54,11051.0,0,0,17.10,0 +52,4,042410,034414,5.42770,25.9729,9.58,11049.0,0,0,17.10,0 +52,4,042410,034415,5.42749,25.9711,9.65,11047.6,0,0,17.10,0 +52,4,042410,034416,5.42737,25.9696,9.74,11050.3,0,0,17.10,0 +52,4,042410,034417,5.42723,25.9680,9.84,11049.9,0,0,17.10,0 +52,4,042410,034418,5.42734,25.9681,9.82,11052.1,0,0,17.10,0 +52,4,042410,034419,5.42711,25.9682,9.63,11051.9,0,0,17.10,0 +52,4,042410,034420,5.42737,25.9695,9.32,11056.3,0,0,17.10,0 +52,4,042410,034421,5.42770,25.9727,9.12,11055.2,0,0,17.10,0 +52,4,042410,034422,5.42788,25.9746,9.17,11054.0,0,0,17.10,0 +52,4,042410,034423,5.42794,25.9758,9.37,11055.9,0,0,17.10,0 +52,4,042410,034424,5.42776,25.9738,9.64,11052.8,0,0,17.10,0 +52,4,042410,034425,5.42764,25.9726,9.93,11052.9,0,0,17.10,0 +52,4,042410,034426,5.42749,25.9713,10.11,11052.4,0,0,17.10,0 +52,4,042410,034427,5.42712,25.9687,10.07,11052.8,0,0,17.10,0 +52,100,042410,034428,1,1,5,8,60,12,1022796,24,1,0,0,0,0,14,2,17.10 +52,5,042410,034428,5.42693,25.9660,9.79,11051.7,0,0,17.10,0 +52,5,042410,034429,5.42731,25.9694,9.41,11054.3,0,0,16.98,0 +52,5,042410,034430,5.42776,25.9733,9.14,11053.8,0,0,16.98,0 +52,5,042410,034431,5.42809,25.9774,9.15,11052.9,0,0,16.98,0 +52,5,042410,034432,5.42812,25.9766,9.37,11054.7,0,0,16.95,0 +52,210,042410,034432,04/23/10 20:49:40 695 91 700 183 543 +52,5,042410,034433,5.42794,25.9761,9.67,11055.0,91,183,16.96,0 +52,5,042410,034434,5.42776,25.9744,9.90,11054.7,92,91,16.96,0 +52,5,042410,034435,5.42740,25.9701,9.97,11055.0,92,88,16.98,0 +52,100,042410,034436,1,1,6,60,60,13,1022795,24,1,0,0,0,0,14,2,16.98 +52,6,042410,034436,5.42722,25.9690,9.83,11056.3,91,84,16.98,0 +52,6,042410,034437,5.42723,25.9697,9.58,11056.2,92,85,16.98,0 +52,6,042410,034438,5.42746,25.9719,9.36,11056.1,93,87,16.98,0 +52,6,042410,034439,5.42785,25.9745,9.34,11056.7,90,86,16.98,0 +52,6,042410,034440,5.42791,25.9756,9.53,11053.9,91,87,16.98,0 +52,6,042410,034441,5.42779,25.9743,9.73,11051.8,94,90,16.98,0 +52,6,042410,034442,5.42770,25.9731,9.83,11050.1,93,85,16.98,0 +52,6,042410,034443,5.42741,25.9709,9.82,11049.7,96,84,16.98,0 +52,6,042410,034444,5.42731,25.9699,9.74,11050.5,95,84,16.98,0 +52,6,042410,034445,5.42740,25.9710,9.57,11051.8,101,93,16.97,0 +52,6,042410,034446,5.42773,25.9733,9.35,11055.7,91,86,16.97,0 +52,6,042410,034447,5.42791,25.9756,9.32,11053.3,92,86,16.97,0 +52,6,042410,034448,5.42794,25.9759,9.53,11053.7,91,83,16.97,0 +52,6,042410,034449,5.42785,25.9755,9.77,11054.4,93,92,16.97,0 +52,6,042410,034450,5.42767,25.9739,9.88,11053.3,92,86,16.97,0 +52,6,042410,034451,5.42740,25.9704,9.81,11055.2,93,84,16.97,0 +52,6,042410,034452,5.42735,25.9707,9.69,11052.1,92,86,16.97,0 +52,6,042410,034453,5.42734,25.9699,9.59,11051.5,94,85,16.97,0 +52,6,042410,034454,5.42746,25.9710,9.54,11053.4,90,84,16.97,0 +52,6,042410,034455,5.42755,25.9728,9.41,11052.4,94,89,16.98,0 +52,6,042410,034456,5.42773,25.9734,9.28,11052.6,92,85,16.97,0 +52,6,042410,034457,5.42785,25.9756,9.35,11053.8,92,87,16.98,0 +52,6,042410,034458,5.42785,25.9757,9.64,11056.2,92,88,16.97,0 +52,6,042410,034459,5.42773,25.9745,9.91,11053.7,94,85,16.97,0 +52,6,042410,034500,5.42740,25.9711,9.98,11055.4,91,84,16.97,0 +52,6,042410,034501,5.42723,25.9685,9.86,11057.1,91,84,16.97,0 +52,6,042410,034502,5.42722,25.9685,9.66,11054.7,91,85,16.97,0 +52,6,042410,034503,5.42729,25.9695,9.46,11055.5,96,89,16.97,0 +52,6,042410,034504,5.42743,25.9703,9.34,11055.5,91,82,16.97,0 +52,6,042410,034505,5.42758,25.9727,9.40,11054.7,91,84,16.97,0 +52,6,042410,034506,5.42755,25.9730,9.59,11052.5,90,85,16.97,0 +52,6,042410,034507,5.42749,25.9720,9.75,11052.9,94,93,16.97,0 +52,6,042410,034508,5.42732,25.9709,9.79,11053.8,94,88,16.97,0 +52,6,042410,034509,5.42712,25.9681,9.75,11053.2,91,85,16.97,0 +52,6,042410,034510,5.42708,25.9677,9.62,11050.3,90,85,16.97,0 +52,6,042410,034511,5.42719,25.9694,9.46,11054.9,97,93,16.97,0 +52,6,042410,034512,5.42732,25.9701,9.43,11054.9,95,98,16.97,0 +52,6,042410,034513,5.42743,25.9713,9.59,11053.8,93,92,16.97,0 +52,6,042410,034514,5.42740,25.9706,9.76,11052.9,96,87,16.99,0 +52,6,042410,034515,5.42722,25.9699,9.75,11054.2,91,86,16.97,0 +52,6,042410,034516,5.42709,25.9675,9.64,11054.9,94,87,16.97,0 +52,6,042410,034517,5.42711,25.9681,9.58,11053.5,91,87,16.97,0 +52,6,042410,034518,5.42719,25.9689,9.62,11050.1,96,126,16.97,0 +52,6,042410,034519,5.42723,25.9691,9.61,11051.1,92,82,16.97,0 +52,6,042410,034520,5.42719,25.9694,9.56,11051.6,90,87,16.97,0 +52,6,042410,034521,5.42714,25.9687,9.57,11052.4,92,89,16.98,0 +52,6,042410,034522,5.42722,25.9687,9.66,11056.0,94,90,16.97,0 +52,6,042410,034523,5.42711,25.9688,9.72,11052.5,93,84,16.97,0 +52,6,042410,034524,5.42707,25.9672,9.69,11052.7,94,86,16.97,0 +52,6,042410,034525,5.42694,25.9664,9.59,11052.0,93,83,16.97,0 +52,6,042410,034526,5.42697,25.9681,9.46,11051.5,95,100,16.97,0 +52,6,042410,034527,5.42703,25.9683,9.45,11051.8,90,94,16.97,0 +52,6,042410,034528,5.42711,25.9691,9.61,11051.5,93,86,16.97,0 +52,6,042410,034529,5.42709,25.9684,9.79,11050.7,94,84,16.97,0 +52,6,042410,034530,5.42693,25.9664,9.79,11050.0,91,86,16.97,0 +52,6,042410,034531,5.42682,25.9658,9.64,11050.6,88,86,16.97,0 +52,6,042410,034532,5.42687,25.9659,9.46,11051.4,89,85,16.97,0 +52,6,042410,034533,5.42694,25.9667,9.35,11055.9,91,86,16.97,0 +52,6,042410,034534,5.42707,25.9682,9.38,11054.0,92,91,16.97,0 +52,6,042410,034535,5.42707,25.9674,9.55,11054.0,91,87,16.97,0 +52,130,042410,034536,EDP Bio-Wiper Might Not have Closed +52,100,042410,034536,1,1,10,751,60,16,1022792,24,1,0,0,0,0,14,2,16.97 +52,100,042410,035824,1,1,3,11,15,17,1022783,24,1,0,0,0,0,14,2,17.85 +52,3,042410,035824,5.42706,25.9685,9.33,11054.6,93,88,17.85,0 +52,140,042410,035829,Sample Mode: Insitu - Pumped: 5.43395 S/M > 0.00150 C90-Limit +52,200,042410,035829, 54.3395, 25.9970, 9.93, 3.784 +52,3,042410,035829,5.43395,25.9970,9.93,30000.0,0,0,17.14,0 +52,100,042410,035836,1,1,4,60,60,17,1022783,24,1,0,0,0,0,14,2,17.11 +52,4,042410,035838,5.42743,25.9716,9.67,10710.6,0,0,17.12,0 +52,4,042410,035839,5.42773,25.9720,9.67,10805.8,0,0,17.13,0 +52,4,042410,035840,5.42782,25.9721,9.71,10871.8,0,0,17.13,0 +52,4,042410,035841,5.42779,25.9721,9.80,10916.5,0,0,17.11,0 +52,4,042410,035842,5.42758,25.9713,9.88,10948.0,0,0,17.11,0 +52,4,042410,035843,5.42770,25.9719,9.87,10968.4,0,0,17.11,0 +52,4,042410,035844,5.42749,25.9709,9.76,10980.9,0,0,17.11,0 +52,4,042410,035845,5.42750,25.9702,9.63,10993.6,0,0,17.11,0 +52,4,042410,035846,5.42761,25.9716,9.55,11004.0,0,0,17.10,0 +52,4,042410,035847,5.42767,25.9718,9.61,11011.5,0,0,17.11,0 +52,4,042410,035848,5.42773,25.9710,9.76,11019.7,0,0,17.11,0 +52,4,042410,035849,5.42773,25.9723,9.91,11020.5,0,0,17.11,0 +52,4,042410,035850,5.42756,25.9704,9.90,11025.9,0,0,17.11,0 +52,4,042410,035851,5.42749,25.9702,9.69,11027.6,0,0,17.10,0 +52,4,042410,035852,5.42770,25.9712,9.42,11033.7,0,0,17.12,0 +52,4,042410,035853,5.42822,25.9770,9.34,11034.1,0,0,17.10,0 +52,4,042410,035854,5.42842,25.9796,9.52,11032.4,0,0,17.10,0 +52,4,042410,035855,5.42813,25.9769,9.83,11035.0,0,0,17.12,0 +52,4,042410,035856,5.42788,25.9740,10.09,11033.5,0,0,17.10,0 +52,4,042410,035857,5.42749,25.9712,10.16,11031.2,0,0,17.11,0 +52,4,042410,035858,5.42725,25.9690,10.02,11036.5,0,0,17.12,0 +52,4,042410,035859,5.42740,25.9693,9.75,11034.7,0,0,17.11,0 +52,4,042410,035900,5.42776,25.9717,9.39,11040.6,0,0,17.10,0 +52,4,042410,035901,5.42824,25.9775,9.18,11040.9,0,0,17.12,0 +52,4,042410,035902,5.42834,25.9803,9.38,11041.1,0,0,17.12,0 +52,4,042410,035903,5.42827,25.9789,9.86,11042.3,0,0,17.10,0 +52,4,042410,035904,5.42800,25.9749,10.24,11042.5,0,0,17.11,0 +52,4,042410,035905,5.42753,25.9722,10.29,11044.0,0,0,17.12,0 +52,4,042410,035906,5.42709,25.9680,10.01,11042.9,0,0,17.11,0 +52,4,042410,035907,5.42720,25.9675,9.58,11046.2,0,0,17.10,0 +52,4,042410,035908,5.42797,25.9749,9.31,11047.5,0,0,17.10,0 +52,4,042410,035909,5.42822,25.9801,9.43,11046.7,0,0,17.10,0 +52,4,042410,035910,5.42825,25.9784,9.84,11043.6,0,0,17.10,0 +52,4,042410,035911,5.42810,25.9764,10.18,11045.4,0,0,17.10,0 +52,4,042410,035912,5.42758,25.9732,10.25,11042.9,0,0,17.10,0 +52,4,042410,035913,5.42712,25.9677,9.99,11044.0,0,0,17.12,0 +52,4,042410,035914,5.42732,25.9685,9.58,11045.2,0,0,17.10,0 +52,4,042410,035915,5.42813,25.9767,9.35,11044.9,0,0,17.12,0 +52,4,042410,035916,5.42818,25.9784,9.47,11046.7,0,0,17.10,0 +52,4,042410,035917,5.42825,25.9783,9.81,11047.0,0,0,17.10,0 +52,4,042410,035918,5.42794,25.9766,10.14,11047.6,0,0,17.12,0 +52,4,042410,035919,5.42767,25.9724,10.28,11046.1,0,0,17.12,0 +52,4,042410,035920,5.42746,25.9699,10.18,11048.0,0,0,17.10,0 +52,4,042410,035921,5.42719,25.9676,9.91,11050.4,0,0,17.10,0 +52,4,042410,035922,5.42728,25.9686,9.66,11047.6,0,0,17.12,0 +52,4,042410,035923,5.42782,25.9736,9.55,11047.3,0,0,17.10,0 +52,4,042410,035924,5.42813,25.9764,9.50,11049.1,0,0,17.11,0 +52,4,042410,035925,5.42809,25.9777,9.53,11053.2,0,0,17.10,0 +52,4,042410,035926,5.42810,25.9774,9.68,11051.6,0,0,17.10,0 +52,4,042410,035927,5.42797,25.9759,9.95,11051.5,0,0,17.10,0 +52,100,042410,035928,1,1,5,8,60,20,1022780,24,1,0,0,0,0,14,2,17.10 +52,5,042410,035928,5.42776,25.9727,10.18,11051.5,0,0,17.10,0 +52,5,042410,035928,5.42749,25.9709,10.22,11050.7,0,0,17.10,0 +52,5,042410,035929,5.42725,25.9684,10.05,11048.8,0,0,16.98,0 +52,5,042410,035930,5.42737,25.9677,9.76,11052.2,0,0,16.98,0 +52,5,042410,035931,5.42767,25.9741,9.61,11054.2,0,0,16.98,0 +52,210,042410,035932,04/23/10 21:04:40 695 94 700 127 545 +52,5,042410,035932,5.42816,25.9770,9.64,11052.6,94,127,16.95,0 +52,5,042410,035933,5.42770,25.9755,9.72,11054.0,99,136,16.95,0 +52,5,042410,035934,5.42785,25.9736,9.73,11052.3,97,92,16.97,0 +52,5,042410,035935,5.42776,25.9749,9.66,11051.1,97,92,16.96,0 +52,100,042410,035936,1,1,6,60,60,21,1022779,24,1,0,0,0,0,14,2,16.94 +52,6,042410,035936,5.42828,25.9765,9.70,11050.0,96,93,16.94,0 +52,6,042410,035937,5.42821,25.9754,9.88,11047.8,95,87,16.96,0 +52,6,042410,035938,5.42782,25.9739,10.06,11049.7,93,88,16.96,0 +52,6,042410,035939,5.42764,25.9723,10.09,11049.1,94,87,16.96,0 +52,6,042410,035940,5.42734,25.9691,9.95,11049.3,92,88,16.96,0 +52,6,042410,035941,5.42749,25.9702,9.75,11052.7,94,95,16.96,0 +52,6,042410,035942,5.42782,25.9741,9.61,11051.9,93,87,16.96,0 +52,6,042410,035943,5.42800,25.9759,9.57,11049.9,94,88,16.96,0 +52,6,042410,035944,5.42809,25.9776,9.53,11047.6,92,94,16.96,0 +52,6,042410,035945,5.42810,25.9761,9.58,11049.4,94,84,16.96,0 +52,6,042410,035946,5.42791,25.9754,9.76,11047.4,92,88,16.96,0 +52,6,042410,035947,5.42810,25.9751,9.95,11049.1,91,87,16.96,0 +52,6,042410,035948,5.42779,25.9741,10.00,11051.0,94,88,16.96,0 +52,6,042410,035949,5.42776,25.9738,9.89,11050.3,96,98,16.96,0 +52,6,042410,035950,5.42776,25.9734,9.74,11050.9,92,84,16.96,0 +52,6,042410,035951,5.42788,25.9745,9.73,11053.6,94,88,16.96,0 +52,6,042410,035952,5.42782,25.9748,9.78,11054.8,94,84,16.96,0 +52,6,042410,035953,5.42782,25.9740,9.81,11052.1,100,113,16.96,0 +52,6,042410,035954,5.42779,25.9732,9.75,11050.6,92,96,16.96,0 +52,6,042410,035955,5.42788,25.9754,9.66,11052.9,95,86,16.96,0 +52,6,042410,035956,5.42785,25.9746,9.58,11057.3,94,83,16.96,0 +52,6,042410,035957,5.42773,25.9756,9.56,11053.8,91,88,16.96,0 +52,6,042410,035958,5.42791,25.9745,9.63,11056.0,92,86,16.96,0 +52,6,042410,035959,5.42785,25.9743,9.77,11056.0,96,86,16.96,0 +52,6,042410,040000,5.42785,25.9747,9.91,11054.0,93,88,16.96,0 +52,6,042410,040001,5.42773,25.9724,9.97,11052.7,94,86,16.96,0 +52,6,042410,040002,5.42764,25.9717,9.94,11055.5,95,84,16.96,0 +52,6,042410,040003,5.42755,25.9722,9.86,11054.4,90,87,16.96,0 +52,6,042410,040004,5.42758,25.9719,9.74,11052.7,94,84,16.96,0 +52,6,042410,040005,5.42764,25.9723,9.58,11053.2,94,85,16.96,0 +52,6,042410,040006,5.42779,25.9737,9.49,11054.8,89,76,16.96,0 +52,6,042410,040007,5.42773,25.9732,9.58,11052.2,88,87,16.96,0 +52,6,042410,040008,5.42779,25.9739,9.75,11051.1,97,99,16.96,0 +52,6,042410,040009,5.42767,25.9728,9.83,11051.1,91,88,16.96,0 +52,6,042410,040010,5.42764,25.9725,9.80,11046.8,93,87,16.96,0 +52,6,042410,040011,5.42758,25.9712,9.76,11046.9,92,85,16.96,0 +52,6,042410,040012,5.42761,25.9725,9.77,11049.7,93,83,16.96,0 +52,6,042410,040013,5.42764,25.9719,9.82,11046.2,97,91,16.96,0 +52,6,042410,040014,5.42752,25.9708,9.84,11048.4,93,84,16.96,0 +52,6,042410,040015,5.42744,25.9696,9.77,11049.5,93,85,16.96,0 +52,6,042410,040016,5.42737,25.9702,9.62,11052.6,92,77,16.96,0 +52,6,042410,040017,5.42732,25.9705,9.51,11050.7,90,85,16.96,0 +52,6,042410,040018,5.42749,25.9713,9.56,11054.1,92,86,16.96,0 +52,6,042410,040019,5.42750,25.9703,9.76,11052.7,94,87,16.96,0 +52,6,042410,040020,5.42640,25.9697,9.92,11052.7,94,86,16.96,0 +52,6,042410,040021,5.42728,25.9689,9.96,11055.0,93,85,16.96,0 +52,6,042410,040022,5.42722,25.9682,9.85,11053.9,93,85,16.96,0 +52,6,042410,040023,5.42722,25.9677,9.72,11051.4,93,86,16.96,0 +52,6,042410,040024,5.42717,25.9681,9.63,11052.1,96,87,16.96,0 +52,6,042410,040025,5.42722,25.9678,9.59,11052.2,91,82,16.96,0 +52,6,042410,040026,5.40637,25.9687,9.62,11052.7,87,74,16.96,0 +52,6,042410,040027,5.42700,25.9679,9.71,11054.2,92,85,16.96,0 +52,6,042410,040028,5.42726,25.9680,9.78,11053.8,91,85,16.96,0 +52,6,042410,040029,5.42728,25.9684,9.78,11053.8,91,84,16.95,0 +52,6,042410,040030,5.42725,25.9688,9.71,11052.8,91,84,16.96,0 +52,6,042410,040031,5.42719,25.9681,9.64,11051.1,96,100,16.96,0 +52,6,042410,040032,5.42722,25.9674,9.61,11053.7,92,83,16.96,0 +52,6,042410,040033,5.42726,25.9683,9.63,11051.1,91,88,16.96,0 +52,6,042410,040034,5.42722,25.9681,9.76,11051.5,91,90,16.96,0 +52,6,042410,040035,5.42723,25.9671,9.92,11052.2,94,106,16.96,0 +52,130,042410,040036,EDP Bio-Wiper Might Not have Closed +52,100,042410,040036,1,1,10,753,60,24,1022776,28,1,0,0,0,0,14,2,16.96 +52,100,042410,041324,1,1,3,11,15,24,1022783,28,1,0,0,0,0,14,2,17.85 +52,3,042410,041324,5.42711,25.9672,10.23,11053.1,93,88,17.85,0 +52,140,042410,041329,Sample Mode: Insitu - Pumped: 5.43097 S/M > 0.00150 C90-Limit +52,200,042410,041329, 54.3097, 26.0002, 10.04, 4.224 +52,3,042410,041329,5.43097,26.0002,10.04,30000.0,0,0,17.14,0 +52,100,042410,041336,1,1,4,60,60,25,1022783,28,1,0,0,0,0,14,2,17.11 +52,4,042410,041338,5.42868,25.9801,9.81,10878.8,0,0,17.11,0 +52,4,042410,041339,5.42871,25.9809,9.99,10929.6,0,0,17.10,0 +52,4,042410,041340,5.42861,25.9801,10.19,10961.7,0,0,17.11,0 +52,4,042410,041341,5.42819,25.9746,10.25,10981.4,0,0,17.10,0 +52,4,042410,041342,5.42794,25.9726,10.11,10996.1,0,0,17.11,0 +52,4,042410,041343,5.42810,25.9733,9.74,11008.7,0,0,17.10,0 +52,4,042410,041344,5.42871,25.9808,9.40,11016.9,0,0,17.10,0 +52,4,042410,041345,5.42888,25.9829,9.42,11023.8,0,0,17.10,0 +52,4,042410,041346,5.42886,25.9823,9.78,11027.3,0,0,17.10,0 +52,4,042410,041347,5.42879,25.9820,10.16,11028.2,0,0,17.10,0 +52,4,042410,041348,5.42859,25.9791,10.36,11030.8,0,0,17.10,0 +52,4,042410,041349,5.42810,25.9740,10.31,11032.0,0,0,17.10,0 +52,4,042410,041350,5.42770,25.9714,10.08,11033.3,0,0,17.10,0 +52,4,042410,041351,5.42791,25.9724,9.76,11036.5,0,0,17.10,0 +52,4,042410,041352,5.42849,25.9781,9.53,11041.0,0,0,17.10,0 +52,4,042410,041353,5.42876,25.9816,9.53,11041.3,0,0,17.10,0 +52,4,042410,041354,5.42870,25.9806,9.77,11040.3,0,0,17.10,0 +52,4,042410,041355,5.42852,25.9797,10.04,11043.4,0,0,17.10,0 +52,4,042410,041356,5.42840,25.9764,10.18,11041.4,0,0,17.10,0 +52,4,042410,041357,5.42809,25.9747,10.14,11040.4,0,0,17.10,0 +52,4,042410,041358,5.42776,25.9708,10.02,11040.1,0,0,17.10,0 +52,4,042410,041359,5.42797,25.9728,9.95,11039.8,0,0,17.10,0 +52,4,042410,041400,5.42822,25.9759,9.95,11043.7,0,0,17.10,0 +52,4,042410,041401,5.42815,25.9748,9.95,11045.3,0,0,17.10,0 +52,4,042410,041402,5.42810,25.9749,9.84,11045.9,0,0,17.10,0 +52,4,042410,041403,5.42834,25.9771,9.71,11043.6,0,0,17.10,0 +52,4,042410,041404,5.42849,25.9788,9.72,11043.8,0,0,17.10,0 +52,4,042410,041405,5.42837,25.9779,9.88,11046.2,0,0,17.10,0 +52,4,042410,041406,5.42828,25.9762,10.03,11047.1,0,0,17.10,0 +52,4,042410,041407,5.42822,25.9760,10.07,11049.7,0,0,17.10,0 +52,4,042410,041408,5.42800,25.9727,10.02,11047.2,0,0,17.10,0 +52,4,042410,041409,5.42797,25.9736,9.95,11045.1,0,0,17.10,0 +52,4,042410,041410,5.42806,25.9740,9.91,11045.5,0,0,17.10,0 +52,4,042410,041411,5.42813,25.9740,9.94,11045.4,0,0,17.10,0 +52,4,042410,041412,5.42800,25.9740,10.00,11044.5,0,0,17.10,0 +52,4,042410,041413,5.42794,25.9728,9.97,11048.1,0,0,17.10,0 +52,4,042410,041414,5.42800,25.9748,9.83,11049.4,0,0,17.10,0 +52,4,042410,041415,5.42816,25.9752,9.68,11047.5,0,0,17.10,0 +52,4,042410,041416,5.42828,25.9761,9.66,11049.9,0,0,17.10,0 +52,4,042410,041417,5.42825,25.9760,9.77,11050.5,0,0,17.10,0 +52,4,042410,041418,5.42822,25.9749,9.94,11049.9,0,0,17.10,0 +52,4,042410,041419,5.42818,25.9739,10.07,11050.0,0,0,17.10,0 +52,4,042410,041420,5.42806,25.9740,10.11,11053.8,0,0,17.10,0 +52,4,042410,041421,5.42785,25.9726,10.10,11049.1,0,0,17.10,0 +52,4,042410,041422,5.42773,25.9703,10.07,11049.0,0,0,17.10,0 +52,4,042410,041423,5.42776,25.9714,9.96,11046.9,0,0,17.10,0 +52,4,042410,041424,5.42797,25.9727,9.74,11048.3,0,0,17.09,0 +52,4,042410,041425,5.42818,25.9756,9.53,11050.0,0,0,17.10,0 +52,4,042410,041426,5.42825,25.9758,9.56,11048.5,0,0,17.09,0 +52,4,042410,041427,5.42825,25.9763,9.80,11049.3,0,0,17.10,0 +52,100,042410,041428,1,1,5,8,60,28,1022780,28,1,0,0,0,0,14,2,17.09 +52,5,042410,041428,5.42822,25.9756,10.05,11050.8,0,0,17.09,0 +52,5,042410,041429,5.42810,25.9755,10.22,11052.2,0,0,16.98,0 +52,5,042410,041430,5.42800,25.9738,10.20,11050.3,0,0,16.98,0 +52,5,042410,041431,5.42779,25.9709,10.00,11051.7,0,0,16.98,0 +52,5,042410,041432,5.42794,25.9732,9.75,11053.9,0,0,16.95,0 +52,210,042410,041432,04/23/10 21:19:40 695 97 700 107 546 +52,5,042410,041433,5.42806,25.9750,9.62,11056.9,97,107,16.96,0 +52,5,042410,041434,5.42809,25.9755,9.66,11052.9,92,90,16.97,0 +52,5,042410,041435,5.42806,25.9753,9.81,11053.3,90,104,16.98,0 +52,100,042410,041436,1,1,6,60,60,28,1022779,28,1,0,0,0,0,14,2,16.98 +52,6,042410,041436,5.42806,25.9744,9.97,11052.0,92,92,16.98,0 +52,6,042410,041437,5.42803,25.9734,10.06,11052.8,96,97,16.98,0 +52,6,042410,041438,5.42803,25.9736,10.03,11052.7,92,86,16.98,0 +52,6,042410,041439,5.42797,25.9729,9.95,11053.4,93,90,16.97,0 +52,6,042410,041440,5.42803,25.9746,9.90,11051.5,92,90,16.98,0 +52,6,042410,041441,5.42800,25.9738,9.93,11052.2,95,86,16.98,0 +52,6,042410,041442,5.42797,25.9734,9.92,11051.8,96,87,16.98,0 +52,6,042410,041443,5.42806,25.9739,9.85,11051.0,96,87,16.97,0 +52,6,042410,041444,5.42810,25.9743,9.74,11050.2,93,86,16.98,0 +52,6,042410,041445,5.42809,25.9743,9.67,11049.8,92,89,16.97,0 +52,6,042410,041446,5.42816,25.9750,9.77,11046.3,89,87,16.97,0 +52,6,042410,041447,5.42815,25.9740,9.95,11048.0,91,85,16.97,0 +52,6,042410,041448,5.42816,25.9740,10.07,11052.7,91,89,16.97,0 +52,6,042410,041449,5.42816,25.9749,10.04,11053.1,93,87,16.97,0 +52,6,042410,041450,5.42806,25.9745,9.92,11052.2,95,88,16.97,0 +52,6,042410,041451,5.42800,25.9731,9.81,11054.0,92,87,16.97,0 +52,6,042410,041452,5.42803,25.9738,9.76,11050.9,91,86,16.97,0 +52,6,042410,041453,5.42803,25.9737,9.80,11051.6,90,92,16.97,0 +52,6,042410,041454,5.42803,25.9738,9.87,11056.9,110,216,16.97,0 +52,6,042410,041455,5.42803,25.9735,9.92,11056.0,93,84,16.97,0 +52,6,042410,041456,5.42806,25.9731,9.92,11053.9,98,100,16.97,0 +52,6,042410,041457,5.42800,25.9734,9.88,11052.4,91,86,16.97,0 +52,6,042410,041458,5.42797,25.9730,9.82,11054.3,92,85,16.97,0 +52,6,042410,041459,5.42791,25.9729,9.80,11053.0,91,90,16.97,0 +52,6,042410,041500,5.42797,25.9727,9.86,11054.6,95,86,16.97,0 +52,6,042410,041501,5.42797,25.9730,9.94,11053.3,93,92,16.97,0 +52,6,042410,041502,5.42797,25.9732,9.99,11052.2,93,89,16.97,0 +52,6,042410,041503,5.42794,25.9731,9.96,11053.5,92,84,16.97,0 +52,6,042410,041504,5.42788,25.9722,9.86,11049.5,95,86,16.97,0 +52,6,042410,041505,5.42785,25.9717,9.71,11052.5,93,89,16.97,0 +52,6,042410,041506,5.42788,25.9733,9.63,11053.8,93,86,16.97,0 +52,6,042410,041507,5.42800,25.9735,9.76,11053.7,91,84,16.97,0 +52,6,042410,041508,5.42800,25.9730,10.03,11051.0,92,86,16.97,0 +52,6,042410,041509,5.42794,25.9734,10.11,11052.2,96,92,16.97,0 +52,6,042410,041510,5.42776,25.9709,9.95,11054.4,95,90,16.97,0 +52,6,042410,041511,5.42773,25.9711,9.70,11054.3,94,85,16.97,0 +52,6,042410,041512,5.42788,25.9722,9.67,11053.2,94,85,16.97,0 +52,6,042410,041513,5.42794,25.9727,9.81,11055.0,90,85,16.97,0 +52,6,042410,041514,5.42788,25.9723,9.98,11053.7,94,89,16.97,0 +52,6,042410,041515,5.42782,25.9721,10.09,11056.2,91,86,16.97,0 +52,6,042410,041516,5.42782,25.9709,10.10,11054.9,94,86,16.97,0 +52,6,042410,041517,5.42773,25.9713,10.00,11055.1,93,87,16.97,0 +52,6,042410,041518,5.42770,25.9707,9.85,11055.0,93,86,16.97,0 +52,6,042410,041519,5.42767,25.9705,9.72,11055.0,91,85,16.97,0 +52,6,042410,041520,5.42776,25.9714,9.68,11055.4,92,85,16.97,0 +52,6,042410,041521,5.42779,25.9712,9.70,11055.6,92,85,16.97,0 +52,6,042410,041522,5.42779,25.9711,9.76,11055.5,93,88,16.97,0 +52,6,042410,041523,5.42773,25.9712,9.89,11054.7,93,84,16.97,0 +52,6,042410,041524,5.42770,25.9702,10.07,11054.1,94,86,16.97,0 +52,6,042410,041525,5.42770,25.9701,10.19,11053.8,93,87,16.97,0 +52,6,042410,041526,5.42758,25.9695,10.14,11055.4,94,86,16.97,0 +52,6,042410,041527,5.42750,25.9686,9.92,11058.5,92,86,16.97,0 +52,6,042410,041528,5.42758,25.9699,9.72,11056.9,93,87,16.97,0 +52,6,042410,041529,5.42764,25.9702,9.65,11056.0,94,84,16.97,0 +52,6,042410,041530,5.42776,25.9711,9.67,11055.2,90,86,16.97,0 +52,6,042410,041531,5.42776,25.9719,9.74,11056.3,92,88,16.97,0 +52,6,042410,041532,5.42773,25.9711,9.88,11055.6,93,88,16.97,0 +52,6,042410,041533,5.42773,25.9710,10.08,11053.2,95,85,16.97,0 +52,6,042410,041534,5.42767,25.9702,10.21,11052.7,103,88,16.97,0 +52,6,042410,041535,5.42758,25.9695,10.16,11054.0,94,85,16.97,0 +52,130,042410,041536,EDP Bio-Wiper Might Not have Closed +52,100,042410,041536,1,1,10,751,60,32,1022776,28,1,0,0,0,0,14,2,16.97 +52,100,042410,042824,1,1,3,11,15,32,1022767,28,1,0,0,0,0,14,2,17.84 +52,3,042410,042824,5.42734,25.9677,10.00,11054.8,93,89,17.84,0 +52,140,042410,042829,Sample Mode: Insitu - Pumped: 5.43005 S/M > 0.00150 C90-Limit +52,200,042410,042829, 54.3005, 25.9945, 9.93, 3.939 +52,3,042410,042829,5.43005,25.9945,9.93,30000.0,0,0,17.14,0 +52,100,042410,042836,1,1,4,60,60,33,1022767,28,1,0,0,0,0,14,2,17.11 +52,4,042410,042838,5.42997,25.9938,9.84,10780.7,0,0,17.13,0 +52,4,042410,042839,5.42985,25.9937,9.86,10865.5,0,0,17.12,0 +52,4,042410,042840,5.42985,25.9933,9.88,10916.5,0,0,17.11,0 +52,4,042410,042841,5.42993,25.9934,9.95,10953.5,0,0,17.10,0 +52,4,042410,042842,5.42979,25.9933,10.04,10977.8,0,0,17.12,0 +52,4,042410,042843,5.42987,25.9930,10.14,10995.8,0,0,17.10,0 +52,4,042410,042844,5.42991,25.9929,10.22,11008.0,0,0,17.10,0 +52,4,042410,042845,5.42981,25.9928,10.24,11017.9,0,0,17.10,0 +52,4,042410,042846,5.42979,25.9927,10.17,11024.5,0,0,17.10,0 +52,4,042410,042847,5.42964,25.9925,10.03,11023.9,0,0,17.10,0 +52,4,042410,042848,5.42970,25.9914,9.88,11032.2,0,0,17.10,0 +52,4,042410,042849,5.42985,25.9921,9.80,11033.4,0,0,17.12,0 +52,4,042410,042850,5.42967,25.9922,9.83,11039.1,0,0,17.10,0 +52,4,042410,042851,5.42988,25.9924,9.94,11040.4,0,0,17.10,0 +52,4,042410,042852,5.42993,25.9924,10.05,11043.5,0,0,17.10,0 diff --git a/test/readWQMraw/WQM0054_003_v1.62_example.RAW b/test/readWQMraw/WQM0054_003_v1.62_example.RAW new file mode 100644 index 000000000..e9216fa60 --- /dev/null +++ b/test/readWQMraw/WQM0054_003_v1.62_example.RAW @@ -0,0 +1,2000 @@ + +File Name: WQM0054.003 +Created On: 100717 015800 +File Version: 3 3=Includes Sample Mode +WQM SN: 54 +F/W V: 1.62 +==================================================================== +CTD SN: 5352 +Pressure Range: 160 psia +IDO SN: 2793 +IDO43 Soc=1.247700e-04 +IDO43 FOffset=-3.233250e+03 +IDO43 A=-3.561300e-03 +IDO43 B=2.240500e-04 +IDO43 C=-3.404800e-06 +IDO43 E=3.600000e-02 +DO Stability-Fit=Fixed +DO Stability-A=80.0000 +DO Stability-B=-2.2880 +DO Stability-C=60.8050 +==================================================================== +ECO SN: FLNTUS=1062 +ECO Baud: 19200 +ECO Delimiter: TAB +ECO IHM: 1 +ECO IOM: 2 +ECO Total Columns: 7 +ECO SN Column: None +ECO Date Column: 1 +ECO Time Column: 2 +ECO Signal Count: 2 +ECO Signal 1 Name: CHLa +ECO Signal 1 Raw Units: Counts +ECO Signal 1 Engr Units: ug/l +ECO Signal 1 Type: 1 Std Scale'n'Offset +ECO Signal 1 Cal Coef: 0.011800 50.000000 0.000000 0.000000 +ECO Signal 2 Name: Turbidity +ECO Signal 2 Raw Units: Counts +ECO Signal 2 Engr Units: NTU +ECO Signal 2 Type: 1 Std Scale'n'Offset +ECO Signal 2 Cal Coef: 0.006400 50.000000 0.000000 0.000000 +==================================================================== +External Data Port: Off +==================================================================== +Control: Autonomous +Delay Seconds: 0 +Sample Seconds: 60 +Sample Interval Seconds: 900 +==================================================================== +Starting Free Flask Disk: 1000608 K +Total Flask Disk: 1000640 K +==================================================================== +BLIS ul / squirt: 9.0 +Pumped Hour Interval: 0 +Pumped BLIS: 0 +Static BLIS: 0 +Starting Total BLIS Squirts: 0 +==================================================================== +Recent UPS: No +Starting UPS Count: 0 +Starting Total UPS Count: 0 +Starting Voltage: 19.76 +==================================================================== +Outbits - Version: 3 +Outbits - Misc: 0xCE01 +Outbits - CTD: 0xFCC0 +Outbits - ECO: 0xCC00 +Outbits - EDP: 0x0000 +Data Output: Averaged +==================================================================== +Heartbeat: OFF +Update Date/Time: Normal +File Format: SN,State,Date,Time,Cond(S/m),Temp(C),Pres(dbar),RawDO(Hz),Pumped,CHLa(Counts),Turbidity(Counts),Volts + +54,100,100717,015800,1,0,3,7,15,1,1000607,0,0,414722,0,0,0,0,1,19.76 +54,230,100717,015801,3,24848,24848,24840 +54,100,100717,015807,1,0,4,15,15,1,1000607,0,0,414722,0,0,0,0,1,19.65 +54,200,100717,015807, -0.0018, 25.1537, 0.08, 11784.5, 0 +54,4,100717,015807,-0.00018,25.1537,0.08,11784.5,0,0,0,19.65 +54,4,100717,015808,-0.00019,25.1538,0.08,11786.0,0,0,0,19.66 +54,4,100717,015809,-0.00018,25.1544,0.08,11785.2,0,0,0,19.67 +54,4,100717,015810,-0.00018,25.1530,0.08,11785.6,0,0,0,19.67 +54,4,100717,015811,-0.00018,25.1541,0.08,11785.0,0,0,0,19.66 +54,4,100717,015812,-0.00018,25.1544,0.08,11786.3,0,0,0,19.67 +54,4,100717,015813,-0.00019,25.1543,0.08,11785.8,0,0,0,19.66 +54,4,100717,015814,-0.00018,25.1538,0.08,11785.1,0,0,0,19.66 +54,4,100717,015815,-0.00019,25.1537,0.08,11785.3,0,0,0,19.66 +54,4,100717,015816,-0.00018,25.1540,0.08,11786.2,0,0,0,19.66 +54,4,100717,015817,-0.00018,25.1537,0.08,11786.1,0,0,0,19.66 +54,4,100717,015818,-0.00019,25.1536,0.08,11785.0,0,0,0,19.66 +54,4,100717,015819,-0.00019,25.1532,0.08,11785.2,0,0,0,19.66 +54,4,100717,015820,-0.00019,25.1528,0.08,11784.9,0,0,0,19.66 +54,4,100717,015821,-0.00018,25.1529,0.08,11785.8,0,0,0,19.66 +54,4,100717,015822,-0.00018,25.1531,0.08,11785.9,0,0,0,19.66 +54,4,100717,015823,-0.00018,25.1531,0.08,11786.6,0,0,0,19.66 +54,4,100717,015824,-0.00018,25.1525,0.08,11785.3,0,0,0,19.66 +54,4,100717,015825,-0.00018,25.1525,0.08,11786.1,0,0,0,19.66 +54,4,100717,015826,-0.00018,25.1526,0.08,11785.7,0,0,0,19.66 +54,4,100717,015827,-0.00018,25.1531,0.08,11785.2,0,0,0,19.66 +54,4,100717,015828,-0.00018,25.1526,0.08,11785.3,0,0,0,19.66 +54,4,100717,015829,-0.00018,25.1527,0.08,11785.4,0,0,0,19.66 +54,4,100717,015830,-0.00018,25.1533,0.08,11784.9,0,0,0,19.66 +54,4,100717,015831,-0.00018,25.1521,0.08,11786.7,0,0,0,19.66 +54,4,100717,015832,-0.00018,25.1533,0.08,11785.4,0,0,0,19.66 +54,4,100717,015833,-0.00018,25.1534,0.08,11784.8,0,0,0,19.66 +54,4,100717,015834,-0.00018,25.1536,0.08,11784.9,0,0,0,19.66 +54,4,100717,015835,-0.00018,25.1530,0.08,11787.1,0,0,0,19.66 +54,4,100717,015836,-0.00018,25.1526,0.08,11784.6,0,0,0,19.66 +54,4,100717,015837,-0.00018,25.1526,0.08,11785.5,0,0,0,19.66 +54,4,100717,015838,-0.00018,25.1528,0.08,11786.1,0,0,0,19.66 +54,4,100717,015839,-0.00018,25.1535,0.08,11785.3,0,0,0,19.65 +54,4,100717,015840,-0.00018,25.1530,0.08,11786.1,0,0,0,19.66 +54,4,100717,015841,-0.00018,25.1530,0.08,11785.3,0,0,0,19.66 +54,4,100717,015842,-0.00018,25.1531,0.08,11786.0,0,0,0,19.66 +54,4,100717,015843,-0.00018,25.1525,0.08,11786.2,0,0,0,19.66 +54,4,100717,015844,-0.00018,25.1518,0.08,11786.4,0,0,0,19.66 +54,4,100717,015845,-0.00018,25.1523,0.08,11786.3,0,0,0,19.66 +54,4,100717,015846,-0.00018,25.1520,0.08,11784.5,0,0,0,19.66 +54,4,100717,015847,-0.00018,25.1516,0.08,11786.4,0,0,0,19.66 +54,4,100717,015848,-0.00018,25.1522,0.08,11786.2,0,0,0,19.66 +54,4,100717,015849,-0.00018,25.1520,0.08,11785.0,0,0,0,19.66 +54,4,100717,015850,-0.00019,25.1517,0.08,11785.6,0,0,0,19.66 +54,4,100717,015851,-0.00017,25.1516,0.08,11785.2,0,0,0,19.66 +54,4,100717,015852,-0.00018,25.1512,0.08,11786.2,0,0,0,19.65 +54,4,100717,015853,-0.00018,25.1519,0.08,11784.7,0,0,0,19.66 +54,4,100717,015854,-0.00018,25.1516,0.08,11786.3,0,0,0,19.66 +54,4,100717,015855,-0.00018,25.1525,0.08,11786.3,0,0,0,19.65 +54,4,100717,015856,-0.00018,25.1520,0.08,11785.7,0,0,0,19.66 +54,4,100717,015857,-0.00018,25.1519,0.08,11785.4,0,0,0,19.66 +54,4,100717,015858,-0.00018,25.1517,0.08,11784.6,0,0,0,19.65 +54,4,100717,015859,-0.00018,25.1519,0.08,11786.5,0,0,0,19.65 +54,4,100717,015900,-0.00019,25.1523,0.08,11786.3,0,0,0,19.65 +54,4,100717,015901,-0.00018,25.1520,0.08,11785.3,0,0,0,19.65 +54,4,100717,015902,-0.00019,25.1526,0.08,11785.0,0,0,0,19.66 +54,4,100717,015903,-0.00018,25.1516,0.08,11787.5,0,0,0,19.66 +54,4,100717,015904,-0.00018,25.1517,0.08,11787.4,0,0,0,19.65 +54,4,100717,015905,-0.00018,25.1521,0.08,11785.5,0,0,0,19.65 +54,4,100717,015906,-0.00018,25.1514,0.08,11785.3,0,0,0,19.65 +54,4,100717,015907,-0.00018,25.1514,0.08,11785.5,0,0,0,19.65 +54,4,100717,015908,-0.00018,25.1511,0.08,11784.9,0,0,0,19.65 +54,4,100717,015909,-0.00018,25.1514,0.08,11785.9,0,0,0,19.66 +54,4,100717,015910,-0.00018,25.1514,0.08,11786.5,0,0,0,19.65 +54,4,100717,015911,-0.00019,25.1510,0.08,11786.0,0,0,0,19.65 +54,4,100717,015912,-0.00018,25.1517,0.08,11786.4,0,0,0,19.65 +54,4,100717,015913,-0.00018,25.1515,0.08,11785.7,0,0,0,19.65 +54,4,100717,015914,-0.00018,25.1516,0.08,11785.1,0,0,0,19.65 +54,4,100717,015915,-0.00018,25.1508,0.08,11785.9,0,0,0,19.65 +54,4,100717,015916,-0.00018,25.1509,0.08,11785.6,0,0,0,19.65 +54,4,100717,015917,-0.00018,25.1516,0.08,11785.8,0,0,0,19.65 +54,4,100717,015918,-0.00018,25.1512,0.08,11785.4,0,0,0,19.65 +54,100,100717,015919,1,0,5,8,80,6,1000603,0,0,414722,0,0,0,0,1,19.65 +54,5,100717,015919,-0.00018,25.1509,0.08,11784.7,0,0,0,19.65 +54,5,100717,015920,-0.00018,25.1508,0.08,11785.9,0,0,0,19.53 +54,5,100717,015921,-0.00018,25.1509,0.08,11784.8,0,0,0,19.53 +54,5,100717,015922,-0.00018,25.1515,0.08,11786.2,0,0,0,19.40 +54,5,100717,015923,-0.00018,25.1513,0.08,11785.2,0,0,0,19.49 +54,210,100717,015923,10/06/17 18:44:24 695 78 700 371 532 +54,5,100717,015924,-0.00018,25.1517,0.08,11786.6,0,78,371,19.53 +54,5,100717,015925,-0.00018,25.1512,0.08,11786.7,0,75,343,19.51 +54,5,100717,015926,-0.00018,25.1517,0.08,11784.8,0,74,343,19.52 +54,100,100717,015927,1,0,6,60,80,6,1000602,0,0,414722,0,0,0,0,1,19.52 +54,6,100717,015927,-0.00019,25.1521,0.08,11785.9,0,73,341,19.52 +54,6,100717,015928,-0.00018,25.1516,0.08,11786.3,0,77,346,19.52 +54,6,100717,015929,-0.00018,25.1519,0.08,11785.4,0,75,347,19.52 +54,6,100717,015930,-0.00018,25.1508,0.08,11784.9,0,77,350,19.52 +54,6,100717,015931,-0.00018,25.1515,0.08,11786.2,0,75,352,19.52 +54,6,100717,015932,-0.00018,25.1519,0.08,11785.9,0,76,348,19.52 +54,6,100717,015933,-0.00018,25.1511,0.08,11785.8,0,72,343,19.52 +54,6,100717,015934,-0.00018,25.1518,0.08,11785.5,0,73,341,19.51 +54,6,100717,015935,-0.00018,25.1516,0.08,11785.6,0,70,342,19.52 +54,6,100717,015936,-0.00018,25.1515,0.08,11785.9,0,77,349,19.52 +54,6,100717,015937,-0.00018,25.1515,0.08,11785.6,0,77,346,19.52 +54,6,100717,015938,-0.00018,25.1515,0.08,11784.8,0,78,348,19.52 +54,6,100717,015939,-0.00018,25.1505,0.08,11785.0,0,77,350,19.52 +54,6,100717,015940,-0.00018,25.1514,0.08,11786.1,0,75,351,19.52 +54,6,100717,015941,-0.00018,25.1506,0.08,11785.3,0,76,350,19.52 +54,6,100717,015942,-0.00018,25.1514,0.08,11785.2,0,75,348,19.52 +54,6,100717,015943,-0.00018,25.1510,0.08,11785.7,0,80,349,19.52 +54,6,100717,015944,-0.00018,25.1510,0.08,11786.1,0,77,352,19.52 +54,6,100717,015945,-0.00018,25.1510,0.08,11785.9,0,77,351,19.51 +54,6,100717,015946,-0.00018,25.1508,0.08,11785.4,0,73,344,19.51 +54,6,100717,015947,-0.00018,25.1509,0.08,11785.7,0,72,343,19.52 +54,6,100717,015948,-0.00018,25.1505,0.08,11785.4,0,77,347,19.52 +54,6,100717,015949,-0.00018,25.1508,0.08,11785.6,0,75,346,19.52 +54,6,100717,015950,-0.00018,25.1508,0.08,11785.4,0,78,353,19.52 +54,6,100717,015951,-0.00018,25.1505,0.08,11786.2,0,69,361,19.52 +54,6,100717,015952,-0.00018,25.1507,0.08,11785.5,0,70,341,19.52 +54,6,100717,015953,-0.00018,25.1507,0.08,11785.3,0,68,341,19.52 +54,6,100717,015954,-0.00018,25.1507,0.08,11785.2,0,68,339,19.52 +54,6,100717,015955,-0.00018,25.1501,0.08,11786.0,0,66,338,19.52 +54,6,100717,015956,-0.00018,25.1498,0.08,11785.2,0,67,338,19.52 +54,6,100717,015957,-0.00018,25.1502,0.08,11786.6,0,65,342,19.52 +54,6,100717,015958,-0.00018,25.1504,0.08,11786.5,0,70,342,19.52 +54,6,100717,015959,-0.00018,25.1502,0.08,11785.6,0,66,338,19.52 +54,6,100717,020000,-0.00018,25.1500,0.08,11784.8,0,68,334,19.52 +54,6,100717,020001,-0.00018,25.1499,0.08,11786.1,0,64,334,19.52 +54,6,100717,020002,-0.00018,25.1501,0.08,11785.1,0,65,334,19.51 +54,6,100717,020003,-0.00018,25.1501,0.08,11784.7,0,64,332,19.52 +54,6,100717,020004,-0.00018,25.1504,0.08,11784.2,0,69,339,19.52 +54,6,100717,020005,-0.00018,25.1496,0.08,11785.0,0,71,338,19.52 +54,6,100717,020006,-0.00018,25.1499,0.08,11784.9,0,69,335,19.52 +54,6,100717,020007,-0.00018,25.1501,0.08,11785.7,0,66,335,19.52 +54,6,100717,020008,-0.00018,25.1504,0.08,11785.5,0,69,337,19.52 +54,6,100717,020009,-0.00018,25.1499,0.08,11785.4,0,66,335,19.52 +54,6,100717,020010,-0.00018,25.1503,0.08,11786.0,0,66,335,19.52 +54,6,100717,020011,-0.00018,25.1501,0.08,11786.2,0,70,335,19.51 +54,6,100717,020012,-0.00018,25.1496,0.08,11786.2,0,67,332,19.51 +54,6,100717,020013,-0.00018,25.1495,0.08,11785.0,0,64,334,19.51 +54,6,100717,020014,-0.00018,25.1501,0.08,11785.3,0,69,333,19.51 +54,6,100717,020015,-0.00018,25.1496,0.08,11784.9,0,66,333,19.52 +54,6,100717,020016,-0.00018,25.1498,0.08,11785.8,0,65,334,19.52 +54,6,100717,020017,-0.00018,25.1494,0.08,11785.9,0,64,343,19.51 +54,6,100717,020018,-0.00018,25.1499,0.08,11786.5,0,64,331,19.51 +54,6,100717,020019,-0.00018,25.1505,0.08,11785.6,0,68,337,19.51 +54,6,100717,020020,-0.00018,25.1501,0.08,11785.4,0,68,337,19.51 +54,6,100717,020021,-0.00018,25.1505,0.08,11785.3,0,66,334,19.52 +54,6,100717,020022,-0.00018,25.1492,0.08,11785.1,0,64,335,19.51 +54,6,100717,020023,-0.00018,25.1501,0.08,11785.2,0,67,336,19.52 +54,6,100717,020024,-0.00018,25.1505,0.08,11785.6,0,69,335,19.52 +54,6,100717,020025,-0.00018,25.1496,0.08,11785.3,0,69,336,19.52 +54,6,100717,020026,-0.00018,25.1495,0.08,11785.8,0,66,332,19.52 +54,100,100717,020027,1,0,10,884,80,10,1000598,0,0,414722,0,0,0,0,1,19.52 +54,100,100717,021300,1,0,3,7,15,10,1000591,0,0,414722,0,0,0,0,1,19.76 +54,3,100717,021300,-0.00018,25.1499,0.08,11784.9,0,0,0,19.76 +54,230,100717,021301,3,24848,24848,24848 +54,100,100717,021307,1,0,4,15,15,10,1000591,0,0,414722,0,0,0,0,1,19.65 +54,200,100717,021307, 52.2617, 23.7504, 0.37, 8171.9, 2 +54,4,100717,021307,5.22617,23.7504,0.37,8171.9,2,0,0,19.65 +54,4,100717,021308,5.22561,23.7503,0.37,8133.3,2,0,0,19.47 +54,4,100717,021309,5.16523,23.7227,0.37,8341.2,1,0,0,19.60 +54,4,100717,021310,5.25863,23.7001,0.37,8765.9,1,0,0,19.61 +54,4,100717,021311,5.25826,23.6986,0.37,9219.0,1,0,0,19.61 +54,4,100717,021312,5.25863,23.6981,0.37,9617.8,1,0,0,19.61 +54,4,100717,021313,5.25867,23.6985,0.37,9945.9,1,0,0,19.61 +54,4,100717,021314,5.25789,23.6997,0.37,10208.9,1,0,0,19.61 +54,4,100717,021315,5.25869,23.7010,0.37,10411.8,1,0,0,19.61 +54,4,100717,021316,5.25769,23.6990,0.37,10570.1,1,0,0,19.61 +54,4,100717,021317,5.25798,23.6986,0.37,10690.8,1,0,0,19.61 +54,4,100717,021318,5.25786,23.6981,0.37,10784.3,1,0,0,19.61 +54,4,100717,021319,5.25713,23.6947,0.37,10853.8,1,0,0,19.61 +54,4,100717,021320,5.25675,23.6963,0.37,10909.3,1,0,0,19.61 +54,4,100717,021321,5.25730,23.6927,0.37,10952.0,1,0,0,19.61 +54,4,100717,021322,5.25669,23.6980,0.37,10983.8,1,0,0,19.61 +54,4,100717,021323,5.25769,23.6924,0.37,11010.3,1,0,0,19.61 +54,4,100717,021324,5.25700,23.6901,0.37,11030.2,1,0,0,19.61 +54,4,100717,021325,5.25648,23.6966,0.37,11046.2,1,0,0,19.61 +54,4,100717,021326,5.25771,23.6957,0.36,11059.4,1,0,0,19.61 +54,4,100717,021327,5.25728,23.6974,0.37,11070.2,1,0,0,19.61 +54,4,100717,021328,5.25705,23.6914,0.37,11077.8,1,0,0,19.60 +54,4,100717,021329,5.25675,23.6859,0.37,11083.4,1,0,0,19.60 +54,4,100717,021330,5.25602,23.6839,0.37,11089.6,1,0,0,19.61 +54,4,100717,021331,5.25742,23.6922,0.36,11093.7,1,0,0,19.61 +54,4,100717,021332,5.25682,23.6951,0.36,11099.0,1,0,0,19.60 +54,4,100717,021333,5.25598,23.6914,0.37,11099.7,1,0,0,19.61 +54,4,100717,021334,5.25567,23.6800,0.37,11102.9,1,0,0,19.61 +54,4,100717,021335,5.25628,23.6859,0.36,11106.6,1,0,0,19.60 +54,4,100717,021336,5.25683,23.6887,0.36,11110.1,1,0,0,19.61 +54,4,100717,021337,5.25598,23.6904,0.36,11113.2,1,0,0,19.61 +54,4,100717,021338,5.25686,23.6767,0.36,11114.0,1,0,0,19.60 +54,4,100717,021339,5.25575,23.6754,0.36,11116.4,1,0,0,19.61 +54,4,100717,021340,5.25613,23.6798,0.36,11117.0,1,0,0,19.60 +54,4,100717,021341,5.25596,23.6847,0.36,11117.7,1,0,0,19.60 +54,4,100717,021342,5.25716,23.6845,0.36,11117.9,1,0,0,19.60 +54,4,100717,021343,5.25737,23.6841,0.36,11118.7,1,0,0,19.60 +54,4,100717,021344,5.25654,23.6904,0.36,11118.9,1,0,0,19.60 +54,4,100717,021345,5.25567,23.6902,0.36,11118.9,1,0,0,19.60 +54,4,100717,021346,5.25587,23.6840,0.36,11120.1,1,0,0,19.60 +54,4,100717,021347,5.25697,23.6846,0.36,11121.0,1,0,0,19.60 +54,4,100717,021348,5.25575,23.6810,0.36,11120.6,1,0,0,19.61 +54,4,100717,021349,5.25636,23.6798,0.36,11123.7,1,0,0,19.61 +54,4,100717,021350,5.25604,23.6879,0.36,11124.6,1,0,0,19.60 +54,4,100717,021351,5.25714,23.6888,0.36,11125.5,1,0,0,19.60 +54,4,100717,021352,5.25595,23.6892,0.36,11125.8,1,0,0,19.60 +54,4,100717,021353,5.25639,23.6785,0.36,11125.7,1,0,0,19.60 +54,4,100717,021354,5.25698,23.6705,0.36,11126.4,1,0,0,19.61 +54,4,100717,021355,5.25713,23.6834,0.36,11125.7,1,0,0,19.60 +54,4,100717,021356,5.25704,23.6891,0.36,11125.1,1,0,0,19.61 +54,4,100717,021357,5.25654,23.6847,0.36,11124.8,1,0,0,19.60 +54,4,100717,021358,5.25631,23.6791,0.36,11126.3,1,0,0,19.60 +54,4,100717,021359,5.25642,23.6736,0.36,11126.2,1,0,0,19.60 +54,4,100717,021400,5.25567,23.6820,0.36,11125.8,1,0,0,19.60 +54,4,100717,021401,5.25616,23.6894,0.36,11126.8,1,0,0,19.60 +54,4,100717,021402,5.25633,23.6848,0.36,11126.6,1,0,0,19.60 +54,4,100717,021403,5.25513,23.6721,0.36,11128.8,1,0,0,19.60 +54,4,100717,021404,5.25611,23.6735,0.36,11129.9,1,0,0,19.61 +54,4,100717,021405,5.25519,23.6754,0.36,11130.4,1,0,0,19.60 +54,4,100717,021406,5.25536,23.6754,0.36,11130.6,1,0,0,19.60 +54,4,100717,021407,5.25548,23.6790,0.36,11131.9,1,0,0,19.60 +54,4,100717,021408,5.25502,23.6752,0.36,11132.9,1,0,0,19.60 +54,4,100717,021409,5.25496,23.6736,0.36,11131.9,1,0,0,19.61 +54,4,100717,021410,5.25493,23.6776,0.36,11131.7,1,0,0,19.60 +54,4,100717,021411,5.25598,23.6759,0.36,11131.4,1,0,0,19.60 +54,4,100717,021412,5.25543,23.6775,0.36,11129.6,1,0,0,19.60 +54,4,100717,021413,5.25498,23.6783,0.36,11131.6,1,0,0,19.60 +54,4,100717,021414,5.25493,23.6820,0.36,11131.2,1,0,0,19.60 +54,4,100717,021415,5.25478,23.6783,0.36,11132.6,1,0,0,19.60 +54,4,100717,021416,5.25604,23.6784,0.36,11132.8,1,0,0,19.60 +54,4,100717,021417,5.25599,23.6797,0.36,11131.4,1,0,0,19.60 +54,4,100717,021418,5.25554,23.6791,0.36,11133.4,1,0,0,19.60 +54,100,100717,021419,1,1,5,8,80,15,1000587,0,0,414722,0,0,0,0,1,19.60 +54,5,100717,021419,5.25605,23.6788,0.36,11133.2,1,0,0,19.60 +54,5,100717,021420,5.25604,23.6767,0.36,11134.0,1,0,0,19.49 +54,5,100717,021421,5.25604,23.6732,0.36,11132.7,1,0,0,19.49 +54,5,100717,021422,5.25595,23.6790,0.36,11132.5,1,0,0,19.38 +54,210,100717,021423,10/06/17 18:59:23 695 1379 700 4130 533 +54,5,100717,021423,5.25645,23.6829,0.36,11130.5,1,1379,4130,19.47 +54,5,100717,021424,5.25587,23.6790,0.36,11131.5,1,1336,4130,19.47 +54,5,100717,021425,5.25607,23.6810,0.36,11132.4,1,1342,4130,19.47 +54,5,100717,021426,5.25573,23.6806,0.36,11133.0,1,1383,4130,19.47 +54,100,100717,021427,1,1,6,60,80,15,1000586,0,0,414722,0,0,0,0,1,19.46 +54,6,100717,021427,5.25560,23.6816,0.36,11132.9,1,273,566,19.46 +54,6,100717,021428,5.25521,23.6804,0.36,11134.2,1,1406,4130,19.47 +54,6,100717,021429,5.25551,23.6828,0.36,11134.2,1,1421,4130,19.47 +54,6,100717,021430,5.25564,23.6812,0.36,11133.3,1,1404,4130,19.46 +54,6,100717,021431,5.25545,23.6822,0.36,11133.4,1,1399,4130,19.47 +54,6,100717,021432,5.25547,23.6839,0.36,11133.3,1,1406,4130,19.47 +54,6,100717,021433,5.25563,23.6856,0.36,11133.4,1,1434,4130,19.47 +54,6,100717,021434,5.25575,23.6843,0.36,11132.9,1,1401,4130,19.46 +54,6,100717,021435,5.25569,23.6841,0.36,11132.8,1,1420,4130,19.47 +54,6,100717,021436,5.25545,23.6805,0.35,11132.3,1,1402,4130,19.47 +54,6,100717,021437,5.25545,23.6842,0.35,11133.2,1,1361,4130,19.47 +54,6,100717,021438,5.25631,23.6838,0.36,11133.7,1,1392,4130,19.47 +54,6,100717,021439,5.25556,23.6834,0.36,11133.2,1,667,2036,19.46 +54,6,100717,021440,5.25560,23.6826,0.36,11134.0,1,1437,4130,19.47 +54,6,100717,021441,5.25559,23.6820,0.35,11133.2,1,1425,4130,19.47 +54,6,100717,021442,5.25551,23.6821,0.35,11133.7,1,1400,4130,19.47 +54,6,100717,021443,5.25556,23.6809,0.35,11134.0,1,1405,4130,19.47 +54,6,100717,021444,5.25557,23.6806,0.35,11134.9,1,1408,4130,19.46 +54,6,100717,021445,5.25544,23.6787,0.35,11135.7,1,1412,4130,19.47 +54,6,100717,021446,5.25557,23.6770,0.35,11136.3,1,1431,4130,19.47 +54,6,100717,021447,5.25572,23.6801,0.35,11138.5,1,1381,4130,19.46 +54,6,100717,021448,5.25543,23.6845,0.35,11136.6,1,1410,4130,19.47 +54,6,100717,021449,5.25557,23.6826,0.35,11135.9,1,1401,4130,19.47 +54,6,100717,021450,5.25543,23.6827,0.35,11135.3,1,1415,4130,19.47 +54,6,100717,021451,5.25528,23.6817,0.35,11134.8,1,1413,4130,19.47 +54,6,100717,021452,5.25510,23.6783,0.35,11135.1,1,1394,4130,19.46 +54,6,100717,021453,5.25525,23.6760,0.35,11135.5,1,1413,4130,19.47 +54,6,100717,021454,5.25538,23.6794,0.35,11135.0,1,1405,4130,19.47 +54,6,100717,021455,5.25548,23.6798,0.35,11135.9,1,1410,4130,19.47 +54,6,100717,021456,5.25556,23.6789,0.35,11136.1,1,1424,4130,19.47 +54,6,100717,021457,5.25560,23.6800,0.35,11136.5,1,1364,4130,19.46 +54,6,100717,021458,5.25556,23.6798,0.35,11137.6,1,1411,4130,19.47 +54,6,100717,021459,5.25545,23.6819,0.35,11135.9,1,1405,4130,19.47 +54,6,100717,021500,5.25547,23.6824,0.35,11137.0,1,1400,4130,19.47 +54,6,100717,021501,5.25548,23.6800,0.35,11137.0,1,1403,4130,19.47 +54,6,100717,021502,5.25540,23.6783,0.35,11136.6,1,1417,4130,19.46 +54,6,100717,021503,5.25528,23.6798,0.35,11136.3,1,1428,4130,19.46 +54,6,100717,021504,5.25510,23.6772,0.35,11137.3,1,1432,4130,19.47 +54,6,100717,021505,5.25513,23.6764,0.35,11137.8,1,1408,4130,19.46 +54,6,100717,021506,5.25519,23.6788,0.35,11136.6,1,1399,4130,19.47 +54,6,100717,021507,5.25524,23.6775,0.35,11137.5,1,1373,4130,19.47 +54,6,100717,021508,5.25507,23.6774,0.35,11138.5,1,1410,4130,19.47 +54,6,100717,021509,5.25541,23.6784,0.35,11136.9,1,1423,4130,19.47 +54,6,100717,021510,5.25540,23.6761,0.35,11136.3,1,1429,4130,19.47 +54,6,100717,021511,5.25541,23.6818,0.35,11137.5,1,1405,4130,19.47 +54,6,100717,021512,5.25543,23.6816,0.35,11135.9,1,1397,4130,19.47 +54,6,100717,021513,5.25538,23.6812,0.35,11134.8,1,1394,4130,19.46 +54,6,100717,021514,5.25516,23.6761,0.35,11136.7,1,1402,4130,19.47 +54,6,100717,021515,5.25525,23.6805,0.35,11137.4,1,1395,4130,19.46 +54,6,100717,021516,5.25501,23.6772,0.35,11139.2,1,1421,4130,19.47 +54,6,100717,021517,5.25516,23.6814,0.35,11139.0,1,1370,4130,19.47 +54,6,100717,021518,5.25538,23.6811,0.35,11139.2,1,1404,4130,19.47 +54,6,100717,021519,5.25554,23.6826,0.35,11138.4,1,1394,4130,19.47 +54,6,100717,021520,5.25553,23.6850,0.35,11138.7,1,1396,4130,19.47 +54,6,100717,021521,5.25537,23.6810,0.35,11139.0,1,1410,4130,19.47 +54,6,100717,021522,5.25530,23.6790,0.35,11139.1,1,1260,3625,19.46 +54,6,100717,021523,5.25534,23.6745,0.35,11138.9,1,1024,3227,19.46 +54,6,100717,021524,5.25530,23.6827,0.35,11139.0,1,1406,4130,19.47 +54,6,100717,021525,5.25537,23.6808,0.35,11138.5,1,1391,4130,19.47 +54,6,100717,021526,5.25573,23.6790,0.35,11137.2,1,1399,4130,19.46 +54,100,100717,021527,1,1,10,746,80,19,1000582,0,0,414722,0,0,0,0,1,19.46 +54,100,100717,022800,1,1,3,7,15,19,1000575,0,0,414722,0,0,0,0,1,19.77 +54,3,100717,022800,5.25554,23.6829,0.35,11136.1,1,0,0,19.77 +54,230,100717,022801,3,24856,24848,24848 +54,100,100717,022807,1,1,4,15,15,20,1000575,0,0,414722,0,0,0,0,1,19.66 +54,200,100717,022807, 52.6054, 23.7331, 0.29, 7443.5, 2 +54,4,100717,022807,5.26054,23.7331,0.29,7443.5,2,0,0,19.66 +54,4,100717,022808,5.26042,23.7335,0.29,7438.4,2,0,0,19.48 +54,4,100717,022809,5.25149,23.7237,0.29,7725.4,1,0,0,19.61 +54,4,100717,022810,5.25726,23.7140,0.29,8238.6,1,0,0,19.61 +54,4,100717,022811,5.25954,23.7163,0.29,8781.1,1,0,0,19.61 +54,4,100717,022812,5.25846,23.7146,0.29,9257.3,1,0,0,19.61 +54,4,100717,022813,5.25863,23.7126,0.29,9651.9,1,0,0,19.61 +54,4,100717,022814,5.25836,23.7133,0.29,9966.6,1,0,0,19.61 +54,4,100717,022815,5.25936,23.7145,0.29,10213.2,1,0,0,19.61 +54,4,100717,022816,5.25910,23.7149,0.29,10405.9,1,0,0,19.61 +54,4,100717,022817,5.25933,23.7129,0.29,10553.7,1,0,0,19.61 +54,4,100717,022818,5.25880,23.7104,0.29,10668.6,1,0,0,19.61 +54,4,100717,022819,5.25889,23.7145,0.29,10755.5,1,0,0,19.61 +54,4,100717,022820,5.25877,23.7120,0.29,10823.7,1,0,0,19.61 +54,4,100717,022821,5.25933,23.7130,0.29,10877.1,1,0,0,19.61 +54,4,100717,022822,5.25868,23.7161,0.29,10918.2,1,0,0,19.61 +54,4,100717,022823,5.25869,23.7130,0.29,10950.8,1,0,0,19.61 +54,4,100717,022824,5.25933,23.7169,0.29,10976.0,1,0,0,19.61 +54,4,100717,022825,5.26042,23.7220,0.29,10998.5,1,0,0,19.61 +54,4,100717,022826,5.26030,23.7477,0.29,11013.7,1,0,0,19.61 +54,4,100717,022827,5.25995,23.7253,0.29,11025.4,1,0,0,19.61 +54,4,100717,022828,5.25960,23.7184,0.29,11036.2,1,0,0,19.61 +54,4,100717,022829,5.26010,23.7247,0.29,11044.5,1,0,0,19.61 +54,4,100717,022830,5.26095,23.7600,0.29,11051.5,1,0,0,19.61 +54,4,100717,022831,5.26039,23.7270,0.29,11054.9,1,0,0,19.61 +54,4,100717,022832,5.25995,23.7176,0.29,11060.2,1,0,0,19.61 +54,4,100717,022833,5.26001,23.7226,0.29,11064.8,1,0,0,19.61 +54,4,100717,022834,5.26074,23.7280,0.29,11069.3,1,0,0,19.61 +54,4,100717,022835,5.26071,23.7302,0.29,11072.6,1,0,0,19.61 +54,4,100717,022836,5.26157,23.7318,0.29,11074.3,1,0,0,19.61 +54,4,100717,022837,5.26121,23.7367,0.29,11076.6,1,0,0,19.60 +54,4,100717,022838,5.26177,23.7328,0.29,11080.3,1,0,0,19.61 +54,4,100717,022839,5.26113,23.7325,0.29,11082.4,1,0,0,19.61 +54,4,100717,022840,5.26189,23.7306,0.29,11086.3,1,0,0,19.61 +54,4,100717,022841,5.26068,23.7301,0.29,11089.4,1,0,0,19.61 +54,4,100717,022842,5.26168,23.7306,0.29,11092.2,1,0,0,19.61 +54,4,100717,022843,5.26062,23.7209,0.29,11092.4,1,0,0,19.61 +54,4,100717,022844,5.26030,23.7157,0.29,11095.0,1,0,0,19.61 +54,4,100717,022845,5.26212,23.7458,0.29,11097.3,1,0,0,19.61 +54,4,100717,022846,5.26169,23.7483,0.29,11099.7,1,0,0,19.61 +54,4,100717,022847,5.26136,23.7294,0.29,11102.2,1,0,0,19.61 +54,4,100717,022848,5.26131,23.7210,0.29,11102.4,1,0,0,19.60 +54,4,100717,022849,5.26115,23.7188,0.29,11105.1,1,0,0,19.61 +54,4,100717,022850,5.26036,23.7343,0.29,11104.2,1,0,0,19.61 +54,4,100717,022851,5.25965,23.7418,0.29,11104.9,1,0,0,19.61 +54,4,100717,022852,5.26045,23.7410,0.29,11106.3,1,0,0,19.61 +54,4,100717,022853,5.26136,23.7376,0.29,11107.8,1,0,0,19.61 +54,4,100717,022854,5.26247,23.7333,0.29,11107.6,1,0,0,19.61 +54,4,100717,022855,5.26136,23.7467,0.29,11108.1,1,0,0,19.61 +54,4,100717,022856,5.26177,23.7272,0.29,11108.1,1,0,0,19.60 +54,4,100717,022857,5.25992,23.7172,0.29,11107.2,1,0,0,19.61 +54,4,100717,022858,5.25993,23.7172,0.29,11108.2,1,0,0,19.60 +54,4,100717,022859,5.26048,23.7276,0.29,11110.1,1,0,0,19.60 +54,4,100717,022900,5.26146,23.7281,0.29,11109.5,1,0,0,19.61 +54,4,100717,022901,5.26001,23.7257,0.29,11109.7,1,0,0,19.60 +54,4,100717,022902,5.26054,23.7500,0.29,11110.1,1,0,0,19.61 +54,4,100717,022903,5.25951,23.7280,0.29,11112.0,1,0,0,19.60 +54,4,100717,022904,5.26036,23.7137,0.29,11111.6,1,0,0,19.61 +54,4,100717,022905,5.26039,23.7236,0.29,11111.5,1,0,0,19.61 +54,4,100717,022906,5.26028,23.7301,0.29,11112.8,1,0,0,19.60 +54,4,100717,022907,5.26101,23.7549,0.29,11114.6,1,0,0,19.61 +54,4,100717,022908,5.26177,23.7272,0.29,11116.0,1,0,0,19.61 +54,4,100717,022909,5.26157,23.7256,0.29,11113.7,1,0,0,19.60 +54,4,100717,022910,5.26128,23.7307,0.29,11114.1,1,0,0,19.61 +54,4,100717,022911,5.26101,23.7262,0.29,11114.4,1,0,0,19.61 +54,4,100717,022912,5.25933,23.7237,0.29,11115.1,1,0,0,19.60 +54,4,100717,022913,5.25892,23.7138,0.29,11116.6,1,0,0,19.60 +54,4,100717,022914,5.25884,23.7093,0.29,11117.1,1,0,0,19.60 +54,4,100717,022915,5.25910,23.7083,0.29,11117.9,1,0,0,19.60 +54,4,100717,022916,5.26002,23.7245,0.29,11117.8,1,0,0,19.61 +54,4,100717,022917,5.26118,23.7266,0.29,11118.3,1,0,0,19.61 +54,4,100717,022918,5.25944,23.7117,0.29,11118.8,1,0,0,19.61 +54,100,100717,022919,1,1,5,8,80,24,1000571,0,0,414722,0,0,0,0,1,19.61 +54,5,100717,022919,5.25924,23.7151,0.29,11120.1,1,0,0,19.61 +54,5,100717,022920,5.25944,23.7100,0.29,11119.8,1,0,0,19.49 +54,5,100717,022921,5.25927,23.7114,0.29,11120.7,1,0,0,19.49 +54,5,100717,022922,5.26039,23.7264,0.29,11122.4,1,0,0,19.38 +54,210,100717,022923,10/06/17 19:14:23 695 1371 700 4130 534 +54,5,100717,022923,5.26257,23.7407,0.29,11122.6,1,1371,4130,19.47 +54,5,100717,022924,5.26198,23.7448,0.29,11124.7,1,1367,4130,19.47 +54,5,100717,022925,5.26162,23.7408,0.29,11124.1,1,1348,4130,19.47 +54,5,100717,022926,5.26137,23.7216,0.29,11125.1,1,1365,4130,19.47 +54,100,100717,022927,1,1,6,60,80,25,1000570,0,0,414722,0,0,0,0,1,19.47 +54,6,100717,022927,5.26101,23.7269,0.29,11124.3,1,1361,4130,19.47 +54,6,100717,022928,5.26088,23.7230,0.29,11122.5,1,1358,4130,19.47 +54,6,100717,022929,5.26189,23.7422,0.29,11124.6,1,1394,4130,19.47 +54,6,100717,022930,5.26183,23.7422,0.29,11124.0,1,1398,4130,19.47 +54,6,100717,022931,5.26183,23.7538,0.29,11124.6,1,1392,4130,19.47 +54,6,100717,022932,5.26140,23.7358,0.29,11124.6,1,1397,4130,19.47 +54,6,100717,022933,5.26154,23.7334,0.29,11123.6,1,1396,4130,19.47 +54,6,100717,022934,5.26137,23.7298,0.29,11126.4,1,1394,4130,19.47 +54,6,100717,022935,5.26133,23.7225,0.29,11126.6,1,1393,4130,19.47 +54,6,100717,022936,5.26085,23.7303,0.29,11125.1,1,1396,4130,19.47 +54,6,100717,022937,5.26113,23.7215,0.29,11126.2,1,1391,4130,19.47 +54,6,100717,022938,5.26085,23.7235,0.29,11126.2,1,1394,4130,19.47 +54,6,100717,022939,5.26068,23.7155,0.29,11127.2,1,357,1196,19.47 +54,6,100717,022940,5.26095,23.7167,0.29,11127.2,1,1374,4130,19.47 +54,6,100717,022941,5.26130,23.7285,0.29,11126.1,1,1399,4130,19.47 +54,6,100717,022942,5.26165,23.7213,0.29,11126.0,1,1390,4130,19.47 +54,6,100717,022943,5.26083,23.7146,0.29,11127.8,1,1394,4130,19.47 +54,6,100717,022944,5.26001,23.7071,0.29,11127.2,1,1394,4130,19.47 +54,6,100717,022945,5.25960,23.7125,0.29,11127.3,1,1346,4130,19.47 +54,6,100717,022946,5.25918,23.7143,0.29,11128.0,1,1355,4130,19.47 +54,6,100717,022947,5.25924,23.7175,0.29,11128.7,1,1358,4130,19.47 +54,6,100717,022948,5.25951,23.7219,0.29,11129.4,1,1392,4130,19.47 +54,6,100717,022949,5.26018,23.7086,0.29,11128.8,1,1394,4130,19.47 +54,6,100717,022950,5.26010,23.7034,0.29,11129.5,1,1393,4130,19.47 +54,6,100717,022951,5.26080,23.7328,0.29,11129.4,1,1377,4130,19.47 +54,6,100717,022952,5.26224,23.7489,0.29,11130.4,1,50,47,19.46 +54,6,100717,022953,5.26324,23.7605,0.29,11130.7,1,1371,4130,19.47 +54,6,100717,022954,5.26259,23.7673,0.29,11129.9,1,1391,4130,19.47 +54,6,100717,022955,5.26251,23.7629,0.29,11131.8,1,1391,4130,19.47 +54,6,100717,022956,5.26186,23.7438,0.29,11130.6,1,1397,4130,19.47 +54,6,100717,022957,5.26148,23.7299,0.29,11130.6,1,1349,4130,19.47 +54,6,100717,022958,5.26089,23.7241,0.29,11129.5,1,1385,4130,19.47 +54,6,100717,022959,5.26123,23.7273,0.29,11128.5,1,1394,4130,19.47 +54,6,100717,023000,5.26115,23.7322,0.29,11128.7,1,1390,4130,19.47 +54,6,100717,023001,5.26059,23.7180,0.29,11129.6,1,1390,4130,19.47 +54,6,100717,023002,5.26051,23.7058,0.29,11127.3,1,1348,4130,19.47 +54,6,100717,023003,5.26019,23.7078,0.29,11126.3,1,929,2633,19.46 +54,6,100717,023004,5.25992,23.7076,0.29,11126.7,1,1031,3615,19.47 +54,6,100717,023005,5.25961,23.7068,0.29,11125.6,1,1207,3910,19.47 +54,6,100717,023006,5.25963,23.7040,0.29,11126.0,1,1250,4130,19.46 +54,6,100717,023007,5.25987,23.7114,0.29,11125.4,1,1052,3429,19.46 +54,6,100717,023008,5.25954,23.7163,0.29,11125.0,1,998,3219,19.47 +54,6,100717,023009,5.25959,23.7126,0.29,11127.1,1,1136,3609,19.47 +54,6,100717,023010,5.26039,23.7191,0.29,11126.4,1,951,3297,19.47 +54,6,100717,023011,5.26080,23.7184,0.29,11126.4,1,1268,4019,19.47 +54,6,100717,023012,5.26060,23.7140,0.29,11126.2,1,1390,4130,19.47 +54,6,100717,023013,5.26016,23.7079,0.29,11125.3,1,1388,4130,19.47 +54,6,100717,023014,5.25939,23.7036,0.29,11124.4,1,1190,3811,19.46 +54,6,100717,023015,5.25924,23.7030,0.29,11124.5,1,909,2824,19.47 +54,6,100717,023016,5.26121,23.7347,0.29,11126.4,1,1112,3601,19.47 +54,6,100717,023017,5.26183,23.7452,0.29,11125.8,1,1236,3896,19.47 +54,6,100717,023018,5.26136,23.7333,0.29,11125.1,1,1386,4130,19.47 +54,6,100717,023019,5.25999,23.7167,0.29,11127.1,1,1386,4130,19.47 +54,6,100717,023020,5.26007,23.7202,0.29,11125.6,1,1214,3822,19.47 +54,6,100717,023021,5.26033,23.7305,0.29,11126.9,1,854,2574,19.47 +54,6,100717,023022,5.26098,23.7188,0.29,11128.8,1,1380,4130,19.47 +54,6,100717,023023,5.26149,23.7287,0.29,11129.8,1,1392,4130,19.47 +54,6,100717,023024,5.26221,23.7432,0.29,11128.1,1,1386,4130,19.47 +54,6,100717,023025,5.26203,23.7424,0.29,11129.2,1,1389,4130,19.47 +54,6,100717,023026,5.26180,23.7335,0.29,11128.8,1,1383,4130,19.47 +54,100,100717,023027,1,1,10,746,80,29,1000566,0,0,414722,0,0,0,0,1,19.47 +54,100,100717,024300,1,1,3,7,15,29,1000575,0,0,414722,0,0,0,0,1,19.77 +54,3,100717,024300,5.26074,23.7259,0.29,11128.4,1,0,0,19.77 +54,230,100717,024301,3,24856,24848,24848 +54,100,100717,024307,1,1,4,15,15,29,1000575,0,0,414722,0,0,0,0,1,19.66 +54,200,100717,024307, 52.6245, 23.7958, 0.27, 7809.8, 2 +54,4,100717,024307,5.26245,23.7958,0.27,7809.8,2,0,0,19.66 +54,4,100717,024308,5.26301,23.7964,0.27,7815.2,2,0,0,19.49 +54,4,100717,024309,5.25892,23.7831,0.27,8078.8,1,0,0,19.61 +54,4,100717,024310,5.26545,23.7688,0.27,8542.8,1,0,0,19.62 +54,4,100717,024311,5.26422,23.7661,0.27,9028.8,1,0,0,19.62 +54,4,100717,024312,5.26439,23.7652,0.27,9455.5,1,0,0,19.61 +54,4,100717,024313,5.26445,23.7649,0.27,9808.5,1,0,0,19.62 +54,4,100717,024314,5.26518,23.7635,0.27,10087.0,1,0,0,19.61 +54,4,100717,024315,5.26500,23.7646,0.27,10306.5,1,0,0,19.61 +54,4,100717,024316,5.26498,23.7645,0.27,10475.1,1,0,0,19.61 +54,4,100717,024317,5.26468,23.7612,0.27,10602.1,1,0,0,19.61 +54,4,100717,024318,5.26409,23.7649,0.27,10702.2,1,0,0,19.61 +54,4,100717,024319,5.26515,23.7702,0.27,10777.8,1,0,0,19.61 +54,4,100717,024320,5.26395,23.7705,0.27,10838.7,1,0,0,19.61 +54,4,100717,024321,5.26483,23.7603,0.27,10885.2,1,0,0,19.61 +54,4,100717,024322,5.26439,23.7657,0.27,10921.3,1,0,0,19.61 +54,4,100717,024323,5.26392,23.7704,0.27,10951.5,1,0,0,19.61 +54,4,100717,024324,5.26434,23.7717,0.27,10972.9,1,0,0,19.61 +54,4,100717,024325,5.26489,23.7709,0.27,10989.0,1,0,0,19.61 +54,4,100717,024326,5.26460,23.7659,0.27,11003.3,1,0,0,19.61 +54,4,100717,024327,5.26574,23.7704,0.27,11015.4,1,0,0,19.61 +54,4,100717,024328,5.26855,23.7891,0.27,11025.3,1,0,0,19.61 +54,4,100717,024329,5.26833,23.7925,0.27,11036.1,1,0,0,19.61 +54,4,100717,024330,5.26939,23.7750,0.27,11043.0,1,0,0,19.61 +54,4,100717,024331,5.26848,23.7713,0.27,11051.0,1,0,0,19.61 +54,4,100717,024332,5.26889,23.7895,0.27,11056.7,1,0,0,19.61 +54,4,100717,024333,5.26722,23.7930,0.27,11060.1,1,0,0,19.61 +54,4,100717,024334,5.26627,23.7649,0.27,11065.8,1,0,0,19.61 +54,4,100717,024335,5.26448,23.7601,0.27,11068.1,1,0,0,19.61 +54,4,100717,024336,5.26539,23.7692,0.27,11072.3,1,0,0,19.61 +54,4,100717,024337,5.26437,23.7739,0.27,11074.7,1,0,0,19.61 +54,4,100717,024338,5.26389,23.7674,0.27,11076.4,1,0,0,19.61 +54,4,100717,024339,5.26504,23.7603,0.27,11079.2,1,0,0,19.61 +54,4,100717,024340,5.26465,23.7723,0.27,11083.5,1,0,0,19.61 +54,4,100717,024341,5.26833,23.7901,0.27,11086.1,1,0,0,19.61 +54,4,100717,024342,5.26650,23.7803,0.27,11086.4,1,0,0,19.61 +54,4,100717,024343,5.26695,23.7752,0.27,11088.0,1,0,0,19.61 +54,4,100717,024344,5.26736,23.8323,0.27,11089.0,1,0,0,19.60 +54,4,100717,024345,5.26589,23.7760,0.27,11089.8,1,0,0,19.61 +54,4,100717,024346,5.26543,23.7623,0.27,11092.6,1,0,0,19.61 +54,4,100717,024347,5.26792,23.7988,0.27,11096.3,1,0,0,19.61 +54,4,100717,024348,5.27119,23.8698,0.27,11097.5,1,0,0,19.61 +54,4,100717,024349,5.27155,23.8484,0.27,11098.4,1,0,0,19.61 +54,4,100717,024350,5.27066,23.7911,0.27,11098.3,1,0,0,19.61 +54,4,100717,024351,5.26950,23.7859,0.27,11098.5,1,0,0,19.61 +54,4,100717,024352,5.26615,23.7735,0.27,11099.0,1,0,0,19.61 +54,4,100717,024353,5.26656,23.7903,0.27,11101.8,1,0,0,19.61 +54,4,100717,024354,5.26957,23.7913,0.27,11104.1,1,0,0,19.61 +54,4,100717,024355,5.27107,23.7959,0.27,11104.6,1,0,0,19.61 +54,4,100717,024356,5.26783,23.7788,0.27,11103.0,1,0,0,19.61 +54,4,100717,024357,5.26727,23.7579,0.27,11104.7,1,0,0,19.60 +54,4,100717,024358,5.26962,23.7691,0.27,11106.6,1,0,0,19.61 +54,4,100717,024359,5.27160,23.7950,0.27,11106.5,1,0,0,19.61 +54,4,100717,024400,5.27039,23.8082,0.27,11108.0,1,0,0,19.61 +54,4,100717,024401,5.27290,23.8371,0.27,11108.9,1,0,0,19.61 +54,4,100717,024402,5.27213,23.8519,0.27,11109.0,1,0,0,19.61 +54,4,100717,024403,5.27094,23.8270,0.27,11107.9,1,0,0,19.61 +54,4,100717,024404,5.26892,23.8039,0.27,11106.8,1,0,0,19.61 +54,4,100717,024405,5.26961,23.8319,0.27,11110.3,1,0,0,19.61 +54,4,100717,024406,5.27366,23.8320,0.27,11109.8,1,0,0,19.61 +54,4,100717,024407,5.27355,23.8196,0.27,11108.4,1,0,0,19.60 +54,4,100717,024408,5.27155,23.8009,0.27,11109.1,1,0,0,19.61 +54,4,100717,024409,5.26933,23.7996,0.27,11107.9,1,0,0,19.61 +54,4,100717,024410,5.26768,23.7931,0.27,11109.0,1,0,0,19.60 +54,4,100717,024411,5.26839,23.7978,0.27,11110.2,1,0,0,19.61 +54,4,100717,024412,5.26757,23.7984,0.27,11112.2,1,0,0,19.61 +54,4,100717,024413,5.26866,23.7821,0.27,11112.0,1,0,0,19.61 +54,4,100717,024414,5.26733,23.7813,0.27,11113.0,1,0,0,19.61 +54,4,100717,024415,5.26621,23.7806,0.27,11112.0,1,0,0,19.61 +54,4,100717,024416,5.26545,23.7594,0.27,11112.0,1,0,0,19.61 +54,4,100717,024417,5.26728,23.7653,0.27,11111.2,1,0,0,19.61 +54,4,100717,024418,5.26724,23.7740,0.27,11113.1,1,0,0,19.61 +54,100,100717,024419,1,1,5,8,80,33,1000571,0,0,414722,0,0,0,0,1,19.61 +54,5,100717,024419,5.26982,23.7875,0.27,11113.8,1,0,0,19.61 +54,5,100717,024420,5.26916,23.8088,0.27,11113.1,1,0,0,19.51 +54,5,100717,024421,5.26807,23.8044,0.27,11111.1,1,0,0,19.49 +54,5,100717,024422,5.26501,23.7704,0.27,11112.2,1,0,0,19.39 +54,210,100717,024423,10/06/17 19:29:23 695 1400 700 4130 534 +54,5,100717,024423,5.26553,23.7961,0.27,11111.8,1,1400,4130,19.48 +54,5,100717,024424,5.26558,23.7964,0.27,11111.4,1,1345,4130,19.47 +54,5,100717,024425,5.26556,23.7866,0.27,11110.7,1,1328,4130,19.47 +54,5,100717,024426,5.26592,23.7666,0.27,11111.5,1,1367,4130,19.47 +54,100,100717,024427,1,1,6,60,80,34,1000570,0,0,414722,0,0,0,0,1,19.47 +54,6,100717,024427,5.26504,23.7721,0.27,11112.6,1,1339,4130,19.47 +54,6,100717,024428,5.26569,23.7646,0.27,11111.9,1,1384,4130,19.47 +54,6,100717,024429,5.26545,23.7718,0.27,11111.9,1,1397,4130,19.48 +54,6,100717,024430,5.26690,23.7779,0.27,11112.7,1,1396,4130,19.47 +54,6,100717,024431,5.26765,23.7934,0.27,11113.7,1,1385,4130,19.47 +54,6,100717,024432,5.26863,23.8266,0.27,11116.3,1,1375,4130,19.48 +54,6,100717,024433,5.26832,23.8002,0.27,11115.9,1,1377,4130,19.47 +54,6,100717,024434,5.26677,23.7670,0.27,11116.6,1,1390,4130,19.47 +54,6,100717,024435,5.26670,23.7840,0.27,11118.1,1,1397,4130,19.48 +54,6,100717,024436,5.26768,23.7773,0.27,11117.5,1,1392,4130,19.48 +54,6,100717,024437,5.26843,23.7873,0.27,11118.7,1,1369,4130,19.47 +54,6,100717,024438,5.27007,23.8077,0.27,11120.4,1,1386,4130,19.47 +54,6,100717,024439,5.27019,23.8061,0.27,11120.4,1,1383,4130,19.47 +54,6,100717,024440,5.26829,23.7766,0.27,11120.4,1,1390,4130,19.47 +54,6,100717,024441,5.26904,23.8010,0.27,11122.4,1,1394,4130,19.48 +54,6,100717,024442,5.27054,23.8280,0.27,11124.5,1,1388,4130,19.47 +54,6,100717,024443,5.27013,23.8099,0.27,11124.0,1,1386,4130,19.47 +54,6,100717,024444,5.26947,23.7846,0.27,11122.4,1,1373,4130,19.48 +54,6,100717,024445,5.26760,23.7761,0.27,11120.5,1,1379,4130,19.47 +54,6,100717,024446,5.26695,23.7917,0.27,11121.3,1,1388,4130,19.47 +54,6,100717,024447,5.26762,23.8091,0.27,11120.2,1,1342,4130,19.48 +54,6,100717,024448,5.26966,23.8096,0.27,11120.6,1,1384,4130,19.47 +54,6,100717,024449,5.27037,23.8123,0.27,11123.5,1,1373,4130,19.47 +54,6,100717,024450,5.27087,23.8335,0.27,11121.6,1,1378,4130,19.47 +54,6,100717,024451,5.27114,23.8217,0.27,11123.4,1,1384,4130,19.47 +54,6,100717,024452,5.27104,23.8543,0.27,11124.0,1,1385,4130,19.47 +54,6,100717,024453,5.27086,23.8813,0.27,11124.4,1,1388,4130,19.47 +54,6,100717,024454,5.27068,23.8477,0.27,11122.5,1,1385,4130,19.47 +54,6,100717,024455,5.26860,23.8133,0.27,11120.3,1,1385,4130,19.48 +54,6,100717,024456,5.26788,23.7813,0.27,11117.0,1,1377,4130,19.47 +54,6,100717,024457,5.26680,23.7639,0.27,11117.9,1,1347,4130,19.47 +54,6,100717,024458,5.26866,23.7766,0.27,11117.0,1,1386,4130,19.47 +54,6,100717,024459,5.26795,23.7886,0.27,11118.3,1,1385,4130,19.47 +54,6,100717,024500,5.26874,23.7948,0.27,11116.0,1,1388,4130,19.48 +54,6,100717,024501,5.26837,23.7968,0.27,11116.3,1,1389,4130,19.47 +54,6,100717,024502,5.26851,23.8185,0.27,11117.0,1,1373,4130,19.47 +54,6,100717,024503,5.26941,23.8923,0.27,11117.1,1,1372,4130,19.47 +54,6,100717,024504,5.26998,23.8314,0.27,11116.7,1,1386,4130,19.47 +54,6,100717,024505,5.26990,23.8115,0.27,11118.6,1,1387,4130,19.47 +54,6,100717,024506,5.27087,23.8531,0.27,11121.2,1,1378,4130,19.47 +54,6,100717,024507,5.27083,23.8737,0.27,11122.1,1,1319,4130,19.47 +54,6,100717,024508,5.26904,23.8628,0.27,11123.3,1,1366,4130,19.47 +54,6,100717,024509,5.26839,23.8364,0.27,11121.8,1,1368,4130,19.47 +54,6,100717,024510,5.26690,23.7684,0.27,11120.9,1,1369,4130,19.47 +54,6,100717,024511,5.26668,23.7575,0.27,11119.8,1,1370,4130,19.48 +54,6,100717,024512,5.26742,23.7625,0.27,11119.2,1,1371,4130,19.47 +54,6,100717,024513,5.26724,23.7571,0.27,11117.3,1,1370,4130,19.47 +54,6,100717,024514,5.26710,23.7563,0.27,11116.1,1,1365,4130,19.47 +54,6,100717,024515,5.26644,23.7574,0.27,11115.7,1,1365,4130,19.47 +54,6,100717,024516,5.26565,23.7579,0.27,11113.0,1,1365,4130,19.47 +54,6,100717,024517,5.26546,23.7639,0.27,11115.7,1,1340,4130,19.47 +54,6,100717,024518,5.26539,23.7574,0.27,11117.5,1,1362,4130,19.47 +54,6,100717,024519,5.27166,23.8430,0.27,11120.6,1,1366,4130,19.47 +54,6,100717,024520,5.27266,23.8499,0.27,11121.0,1,1362,4130,19.47 +54,6,100717,024521,5.27140,23.8072,0.27,11122.0,1,1360,4130,19.47 +54,6,100717,024522,5.26941,23.8468,0.27,11123.4,1,1362,4130,19.47 +54,6,100717,024523,5.26975,23.7961,0.27,11124.3,1,1363,4130,19.48 +54,6,100717,024524,5.27062,23.8257,0.27,11124.8,1,1365,4130,19.47 +54,6,100717,024525,5.27036,23.8245,0.27,11124.5,1,1363,4130,19.47 +54,6,100717,024526,5.26872,23.8003,0.27,11125.5,1,1361,4130,19.47 +54,100,100717,024527,1,1,10,746,80,38,1000566,0,0,414722,0,0,0,0,1,19.47 +54,100,100717,025800,1,1,3,7,15,38,1000559,0,0,414722,0,0,0,0,1,19.77 +54,3,100717,025800,5.26730,23.7577,0.27,11123.7,1,0,0,19.77 +54,230,100717,025801,3,24856,24848,24848 +54,100,100717,025807,1,1,4,15,15,38,1000559,0,0,414722,0,0,0,0,1,19.67 +54,200,100717,025807, 52.6980, 23.8690, 0.26, 7754.2, 2 +54,4,100717,025807,5.26980,23.8690,0.26,7754.2,2,0,0,19.67 +54,4,100717,025808,5.26895,23.8694,0.27,7764.4,2,0,0,19.49 +54,4,100717,025809,5.22287,23.8593,0.26,8031.5,1,0,0,19.61 +54,4,100717,025810,5.27458,23.8579,0.26,8503.1,1,0,0,19.62 +54,4,100717,025811,5.27426,23.8856,0.26,8996.8,1,0,0,19.61 +54,4,100717,025812,5.27432,23.8467,0.27,9430.0,1,0,0,19.61 +54,4,100717,025813,5.27196,23.8323,0.27,9785.0,1,0,0,19.61 +54,4,100717,025814,5.27083,23.8284,0.26,10067.2,1,0,0,19.61 +54,4,100717,025815,5.27101,23.8293,0.26,10289.3,1,0,0,19.61 +54,4,100717,025816,5.27426,23.8861,0.26,10458.2,1,0,0,19.61 +54,4,100717,025817,5.27296,23.8876,0.26,10589.3,1,0,0,19.61 +54,4,100717,025818,5.27260,23.8663,0.26,10689.1,1,0,0,19.61 +54,4,100717,025819,5.27317,23.8575,0.26,10767.1,1,0,0,19.61 +54,4,100717,025820,5.27243,23.8391,0.27,10826.5,1,0,0,19.61 +54,4,100717,025821,5.27241,23.8338,0.26,10872.5,1,0,0,19.61 +54,4,100717,025822,5.27210,23.8466,0.26,10907.6,1,0,0,19.61 +54,4,100717,025823,5.27331,23.8428,0.26,10935.7,1,0,0,19.61 +54,4,100717,025824,5.27241,23.8507,0.26,10958.9,1,0,0,19.61 +54,4,100717,025825,5.27213,23.8464,0.26,10977.5,1,0,0,19.61 +54,4,100717,025826,5.27161,23.8636,0.27,10993.6,1,0,0,19.61 +54,4,100717,025827,5.27210,23.8615,0.27,11008.6,1,0,0,19.61 +54,4,100717,025828,5.27711,23.9077,0.26,11017.6,1,0,0,19.61 +54,4,100717,025829,5.27828,23.9272,0.26,11028.4,1,0,0,19.61 +54,4,100717,025830,5.27720,23.9556,0.27,11036.5,1,0,0,19.61 +54,4,100717,025831,5.27874,24.0048,0.26,11043.1,1,0,0,19.61 +54,4,100717,025832,5.27678,23.9063,0.26,11049.7,1,0,0,19.61 +54,4,100717,025833,5.27564,23.9310,0.27,11055.6,1,0,0,19.61 +54,4,100717,025834,5.27776,23.8874,0.27,11061.6,1,0,0,19.61 +54,4,100717,025835,5.28022,23.9592,0.26,11066.7,1,0,0,19.61 +54,4,100717,025836,5.28222,23.9435,0.26,11069.2,1,0,0,19.61 +54,4,100717,025837,5.27912,23.9174,0.27,11072.1,1,0,0,19.61 +54,4,100717,025838,5.27938,23.9109,0.26,11075.3,1,0,0,19.61 +54,4,100717,025839,5.28019,23.8758,0.26,11078.0,1,0,0,19.61 +54,4,100717,025840,5.28193,23.8864,0.27,11081.2,1,0,0,19.61 +54,4,100717,025841,5.28218,23.9101,0.27,11083.6,1,0,0,19.61 +54,4,100717,025842,5.27995,23.9196,0.26,11085.6,1,0,0,19.61 +54,4,100717,025843,5.27886,23.9034,0.26,11087.4,1,0,0,19.61 +54,4,100717,025844,5.27741,23.8899,0.26,11088.5,1,0,0,19.61 +54,4,100717,025845,5.27756,23.8600,0.26,11089.0,1,0,0,19.61 +54,4,100717,025846,5.27666,23.8897,0.26,11090.7,1,0,0,19.61 +54,4,100717,025847,5.27654,23.8720,0.26,11090.8,1,0,0,19.61 +54,4,100717,025848,5.27564,23.8452,0.26,11091.6,1,0,0,19.61 +54,4,100717,025849,5.27568,23.8439,0.26,11093.1,1,0,0,19.61 +54,4,100717,025850,5.27659,23.8401,0.26,11095.3,1,0,0,19.61 +54,4,100717,025851,5.27771,23.8615,0.26,11096.5,1,0,0,19.61 +54,4,100717,025852,5.27744,23.9174,0.26,11096.5,1,0,0,19.61 +54,4,100717,025853,5.27812,23.9046,0.26,11096.6,1,0,0,19.61 +54,4,100717,025854,5.27508,23.8506,0.26,11097.5,1,0,0,19.61 +54,4,100717,025855,5.27374,23.8216,0.26,11097.3,1,0,0,19.60 +54,4,100717,025856,5.27278,23.8388,0.26,11098.2,1,0,0,19.61 +54,4,100717,025857,5.27495,23.8633,0.26,11103.8,1,0,0,19.61 +54,4,100717,025858,5.27727,23.8589,0.27,11104.6,1,0,0,19.61 +54,4,100717,025859,5.27954,23.8770,0.26,11107.9,1,0,0,19.61 +54,4,100717,025900,5.27981,23.8847,0.26,11107.0,1,0,0,19.61 +54,4,100717,025901,5.27650,23.8562,0.26,11108.4,1,0,0,19.61 +54,4,100717,025902,5.27815,23.8504,0.27,11108.8,1,0,0,19.61 +54,4,100717,025903,5.27646,23.8490,0.27,11110.9,1,0,0,19.61 +54,4,100717,025904,5.27889,23.9055,0.26,11109.7,1,0,0,19.61 +54,4,100717,025905,5.27818,23.8771,0.26,11110.3,1,0,0,19.61 +54,4,100717,025906,5.27750,23.8727,0.26,11109.1,1,0,0,19.60 +54,4,100717,025907,5.27555,23.8900,0.27,11108.2,1,0,0,19.61 +54,4,100717,025908,5.27540,23.8738,0.27,11111.0,1,0,0,19.61 +54,4,100717,025909,5.27880,23.9572,0.26,11111.2,1,0,0,19.61 +54,4,100717,025910,5.28015,23.9771,0.26,11112.2,1,0,0,19.60 +54,4,100717,025911,5.28025,23.8945,0.26,11111.4,1,0,0,19.61 +54,4,100717,025912,5.27880,23.8382,0.26,11109.9,1,0,0,19.61 +54,4,100717,025913,5.27682,23.8286,0.26,11111.7,1,0,0,19.61 +54,4,100717,025914,5.27689,23.8505,0.26,11112.3,1,0,0,19.60 +54,4,100717,025915,5.27837,23.8650,0.27,11113.6,1,0,0,19.60 +54,4,100717,025916,5.27711,23.8893,0.26,11112.8,1,0,0,19.60 +54,4,100717,025917,5.27822,23.8722,0.26,11115.6,1,0,0,19.60 +54,4,100717,025918,5.28092,23.8882,0.26,11116.7,1,0,0,19.61 +54,100,100717,025919,1,1,5,8,80,43,1000555,0,0,414722,0,0,0,0,1,19.61 +54,5,100717,025919,5.28019,23.8870,0.26,11116.9,1,0,0,19.61 +54,5,100717,025920,5.27929,23.8573,0.26,11115.9,1,0,0,19.51 +54,5,100717,025921,5.27549,23.8419,0.26,11114.9,1,0,0,19.50 +54,5,100717,025922,5.27585,23.8631,0.26,11114.3,1,0,0,19.40 +54,210,100717,025923,10/06/17 19:44:23 695 1413 700 4130 534 +54,5,100717,025923,5.27389,23.8379,0.26,11112.8,1,1413,4130,19.48 +54,5,100717,025924,5.27310,23.8313,0.26,11111.3,1,1401,4130,19.48 +54,5,100717,025925,5.27178,23.8269,0.26,11111.6,1,1351,4130,19.48 +54,5,100717,025926,5.27246,23.8333,0.26,11110.5,1,1406,4130,19.48 +54,100,100717,025927,1,1,6,60,80,43,1000554,0,0,414722,0,0,0,0,1,19.47 +54,6,100717,025927,5.27089,23.8369,0.26,11110.6,1,1413,4130,19.47 +54,6,100717,025928,5.27247,23.8171,0.26,11111.1,1,1410,4130,19.47 +54,6,100717,025929,5.27143,23.8157,0.27,11110.7,1,1409,4130,19.47 +54,6,100717,025930,5.27097,23.8177,0.26,11111.1,1,1411,4130,19.48 +54,6,100717,025931,5.27104,23.8258,0.26,11110.0,1,1410,4130,19.47 +54,6,100717,025932,5.27131,23.8278,0.26,11111.7,1,1410,4130,19.48 +54,6,100717,025933,5.27192,23.8437,0.26,11111.1,1,1407,4130,19.47 +54,6,100717,025934,5.27137,23.8181,0.26,11110.9,1,1410,4130,19.48 +54,6,100717,025935,5.27086,23.8217,0.26,11112.1,1,1415,4130,19.48 +54,6,100717,025936,5.27030,23.8259,0.26,11111.6,1,1408,4130,19.48 +54,6,100717,025937,5.27072,23.8243,0.26,11112.2,1,1377,4130,19.47 +54,6,100717,025938,5.27057,23.8280,0.27,11111.6,1,1399,4130,19.48 +54,6,100717,025939,5.27116,23.8216,0.26,11112.7,1,1409,4130,19.47 +54,6,100717,025940,5.27103,23.8170,0.26,11112.2,1,1412,4130,19.47 +54,6,100717,025941,5.27125,23.8142,0.26,11114.4,1,1407,4130,19.48 +54,6,100717,025942,5.27193,23.8130,0.26,11113.3,1,1405,4130,19.47 +54,6,100717,025943,5.27138,23.8096,0.26,11113.6,1,1400,4130,19.48 +54,6,100717,025944,5.27134,23.8098,0.26,11113.5,1,1403,4130,19.48 +54,6,100717,025945,5.27149,23.8145,0.26,11113.6,1,1411,4130,19.47 +54,6,100717,025946,5.27169,23.8318,0.26,11114.0,1,1408,4130,19.48 +54,6,100717,025947,5.27119,23.8186,0.26,11114.1,1,1374,4130,19.48 +54,6,100717,025948,5.27008,23.8005,0.27,11114.8,1,1399,4130,19.47 +54,6,100717,025949,5.26989,23.7994,0.26,11112.6,1,1415,4130,19.47 +54,6,100717,025950,5.27013,23.8046,0.26,11115.1,1,1423,4130,19.47 +54,6,100717,025951,5.27151,23.8464,0.26,11115.1,1,1423,4130,19.47 +54,6,100717,025952,5.27227,23.8402,0.26,11115.6,1,1411,4130,19.47 +54,6,100717,025953,5.27216,23.8698,0.26,11114.0,1,1400,4130,19.47 +54,6,100717,025954,5.27087,23.8121,0.26,11113.6,1,1401,4130,19.47 +54,6,100717,025955,5.26985,23.7961,0.26,11115.0,1,1420,4130,19.48 +54,6,100717,025956,5.27166,23.8062,0.26,11115.7,1,1416,4130,19.48 +54,6,100717,025957,5.27406,23.8457,0.26,11117.3,1,1384,4130,19.47 +54,6,100717,025958,5.27573,23.9098,0.26,11116.6,1,1414,4130,19.48 +54,6,100717,025959,5.27387,23.8884,0.26,11114.6,1,1399,4130,19.47 +54,6,100717,030000,5.27276,23.8296,0.27,11115.9,1,1410,4130,19.47 +54,6,100717,030001,5.27219,23.8121,0.26,11115.9,1,1414,4130,19.47 +54,6,100717,030002,5.27374,23.8293,0.26,11116.7,1,1414,4130,19.47 +54,6,100717,030003,5.27614,23.8613,0.26,11116.7,1,1406,4130,19.47 +54,6,100717,030004,5.27673,23.8563,0.26,11117.1,1,1403,4130,19.47 +54,6,100717,030005,5.27548,23.8961,0.26,11116.9,1,1406,4130,19.47 +54,6,100717,030006,5.27378,23.8663,0.26,11115.7,1,1416,4130,19.47 +54,6,100717,030007,5.27249,23.8347,0.26,11116.5,1,1410,4130,19.47 +54,6,100717,030008,5.27305,23.8431,0.26,11116.9,1,1405,4130,19.47 +54,6,100717,030009,5.27387,23.8503,0.26,11116.3,1,1418,4130,19.47 +54,6,100717,030010,5.27458,23.8503,0.26,11116.4,1,1417,4130,19.47 +54,6,100717,030011,5.27476,23.8496,0.26,11117.5,1,1394,4130,19.47 +54,6,100717,030012,5.27484,23.8360,0.27,11116.8,1,1398,4130,19.47 +54,6,100717,030013,5.27265,23.8224,0.27,11117.5,1,1408,4130,19.47 +54,6,100717,030014,5.27346,23.8335,0.26,11117.5,1,1403,4130,19.47 +54,6,100717,030015,5.27452,23.8546,0.26,11118.9,1,1415,4130,19.47 +54,6,100717,030016,5.27756,23.8679,0.26,11121.4,1,1417,4130,19.47 +54,6,100717,030017,5.27597,23.8656,0.26,11118.6,1,1394,4130,19.47 +54,6,100717,030018,5.27516,23.8382,0.26,11118.7,1,1408,4130,19.47 +54,6,100717,030019,5.27261,23.8138,0.26,11116.6,1,1409,4130,19.47 +54,6,100717,030020,5.27387,23.8307,0.26,11117.2,1,1408,4130,19.47 +54,6,100717,030021,5.27542,23.8744,0.26,11118.5,1,1405,4130,19.47 +54,6,100717,030022,5.27750,23.8755,0.27,11118.9,1,1416,4130,19.47 +54,6,100717,030023,5.27570,23.8389,0.26,11120.2,1,1416,4130,19.47 +54,6,100717,030024,5.27519,23.8557,0.26,11121.0,1,1411,4130,19.47 +54,6,100717,030025,5.27611,23.8367,0.27,11123.2,1,1406,4130,19.47 +54,6,100717,030026,5.27741,23.8535,0.26,11126.4,1,1399,4130,19.47 +54,100,100717,030027,1,1,10,746,80,47,1000550,0,0,414722,0,0,0,0,1,19.47 +54,100,100717,031300,1,1,3,7,15,47,1000543,0,0,414722,0,0,0,0,1,19.77 +54,3,100717,031300,5.28091,23.8907,0.26,11129.3,1,0,0,19.77 +54,230,100717,031301,3,24848,24848,24848 +54,100,100717,031307,1,1,4,15,15,47,1000543,0,0,414722,0,0,0,0,1,19.60 +54,200,100717,031307, 52.7717, 23.9616, 0.26, 8367.1, 2 +54,4,100717,031307,5.27717,23.9616,0.26,8367.1,2,0,0,19.60 +54,4,100717,031308,5.27638,23.9618,0.26,8379.8,2,0,0,19.49 +54,4,100717,031309,5.27965,23.9490,0.27,8575.7,1,0,0,19.61 +54,4,100717,031310,5.28241,23.9446,0.27,8961.6,1,0,0,19.61 +54,4,100717,031311,5.28323,23.9540,0.26,9376.5,1,0,0,19.61 +54,4,100717,031312,5.28244,23.9513,0.27,9741.8,1,0,0,19.61 +54,4,100717,031313,5.28291,23.9329,0.27,10039.5,1,0,0,19.61 +54,4,100717,031314,5.28187,23.9193,0.27,10274.7,1,0,0,19.61 +54,4,100717,031315,5.28071,23.9162,0.27,10458.3,1,0,0,19.61 +54,4,100717,031316,5.27970,23.9075,0.27,10597.7,1,0,0,19.61 +54,4,100717,031317,5.28128,23.9313,0.27,10705.5,1,0,0,19.62 +54,4,100717,031318,5.28247,23.9421,0.27,10790.1,1,0,0,19.61 +54,4,100717,031319,5.28598,23.9389,0.27,10857.2,1,0,0,19.61 +54,4,100717,031320,5.28973,24.0606,0.27,10909.3,1,0,0,19.61 +54,4,100717,031321,5.28823,23.9724,0.26,10946.6,1,0,0,19.61 +54,4,100717,031322,5.28740,23.9734,0.27,10978.7,1,0,0,19.61 +54,4,100717,031323,5.28699,24.0118,0.27,11000.8,1,0,0,19.61 +54,4,100717,031324,5.28550,23.9828,0.27,11018.5,1,0,0,19.61 +54,4,100717,031325,5.28566,23.9646,0.27,11030.3,1,0,0,19.61 +54,4,100717,031326,5.28476,23.9355,0.27,11040.5,1,0,0,19.61 +54,4,100717,031327,5.28479,23.9279,0.27,11048.6,1,0,0,19.61 +54,4,100717,031328,5.28361,23.9255,0.27,11056.1,1,0,0,19.61 +54,4,100717,031329,5.28328,23.9327,0.27,11058.2,1,0,0,19.61 +54,4,100717,031330,5.28296,23.9409,0.27,11064.4,1,0,0,19.61 +54,4,100717,031331,5.28379,23.9415,0.27,11067.6,1,0,0,19.61 +54,4,100717,031332,5.28415,23.9406,0.27,11071.2,1,0,0,19.61 +54,4,100717,031333,5.28537,23.9417,0.27,11075.6,1,0,0,19.61 +54,4,100717,031334,5.28406,23.9457,0.27,11080.4,1,0,0,19.61 +54,4,100717,031335,5.28574,23.9717,0.27,11085.0,1,0,0,19.61 +54,4,100717,031336,5.28774,23.9959,0.27,11088.5,1,0,0,19.61 +54,4,100717,031337,5.28654,23.9777,0.27,11088.8,1,0,0,19.61 +54,4,100717,031338,5.28657,23.9676,0.27,11091.0,1,0,0,19.61 +54,4,100717,031339,5.28447,23.9327,0.27,11093.3,1,0,0,19.61 +54,4,100717,031340,5.28392,23.9156,0.27,11097.8,1,0,0,19.61 +54,4,100717,031341,5.28967,24.0012,0.27,11097.8,1,0,0,19.61 +54,4,100717,031342,5.28672,24.0162,0.27,11100.1,1,0,0,19.61 +54,4,100717,031343,5.28725,24.0127,0.27,11100.9,1,0,0,19.61 +54,4,100717,031344,5.28589,23.9996,0.27,11103.4,1,0,0,19.61 +54,4,100717,031345,5.28660,24.0177,0.27,11104.5,1,0,0,19.61 +54,4,100717,031346,5.28566,23.9871,0.27,11102.5,1,0,0,19.61 +54,4,100717,031347,5.28470,23.9546,0.27,11104.3,1,0,0,19.61 +54,4,100717,031348,5.28509,23.9758,0.27,11103.3,1,0,0,19.61 +54,4,100717,031349,5.28470,23.9714,0.27,11103.5,1,0,0,19.61 +54,4,100717,031350,5.28389,23.9800,0.27,11103.5,1,0,0,19.61 +54,4,100717,031351,5.28311,23.9651,0.27,11103.8,1,0,0,19.61 +54,4,100717,031352,5.28275,23.9274,0.27,11104.1,1,0,0,19.61 +54,4,100717,031353,5.28383,23.9361,0.27,11102.9,1,0,0,19.61 +54,4,100717,031354,5.28346,23.9581,0.27,11102.6,1,0,0,19.61 +54,4,100717,031355,5.28397,23.9750,0.27,11103.0,1,0,0,19.61 +54,4,100717,031356,5.28412,23.9726,0.27,11104.6,1,0,0,19.61 +54,4,100717,031357,5.28392,23.9450,0.27,11104.0,1,0,0,19.61 +54,4,100717,031358,5.28332,23.9159,0.27,11107.6,1,0,0,19.61 +54,4,100717,031359,5.28566,24.0345,0.27,11110.3,1,0,0,19.61 +54,4,100717,031400,5.28876,23.9730,0.26,11111.7,1,0,0,19.61 +54,4,100717,031401,5.28938,24.0122,0.27,11112.2,1,0,0,19.61 +54,4,100717,031402,5.28926,24.0192,0.27,11110.3,1,0,0,19.61 +54,4,100717,031403,5.28572,23.9747,0.27,11110.3,1,0,0,19.61 +54,4,100717,031404,5.28482,23.9291,0.27,11111.1,1,0,0,19.61 +54,4,100717,031405,5.28701,23.9245,0.27,11110.7,1,0,0,19.61 +54,4,100717,031406,5.28678,23.9514,0.27,11113.7,1,0,0,19.61 +54,4,100717,031407,5.28731,23.9614,0.27,11112.2,1,0,0,19.61 +54,4,100717,031408,5.28666,23.9765,0.27,11115.1,1,0,0,19.61 +54,4,100717,031409,5.28660,23.9178,0.27,11118.7,1,0,0,19.61 +54,4,100717,031410,5.29273,23.9924,0.27,11118.7,1,0,0,19.61 +54,4,100717,031411,5.28998,24.0250,0.27,11119.0,1,0,0,19.60 +54,4,100717,031412,5.28932,23.9353,0.27,11118.9,1,0,0,19.61 +54,4,100717,031413,5.29151,23.9297,0.27,11120.1,1,0,0,19.61 +54,4,100717,031414,5.28943,23.9294,0.27,11121.7,1,0,0,19.61 +54,4,100717,031415,5.28873,23.9129,0.27,11121.9,1,0,0,19.60 +54,4,100717,031416,5.28950,23.9561,0.27,11120.6,1,0,0,19.61 +54,4,100717,031417,5.28763,23.9698,0.27,11121.8,1,0,0,19.61 +54,4,100717,031418,5.28774,23.9594,0.27,11124.0,1,0,0,19.61 +54,100,100717,031419,1,1,5,8,80,52,1000539,0,0,414722,0,0,0,0,1,19.61 +54,5,100717,031419,5.28995,24.0194,0.27,11122.3,1,0,0,19.61 +54,5,100717,031420,5.28595,23.9759,0.27,11121.7,1,0,0,19.51 +54,5,100717,031421,5.28435,23.9099,0.27,11120.2,1,0,0,19.50 +54,5,100717,031422,5.28288,23.9063,0.27,11120.4,1,0,0,19.39 +54,210,100717,031423,10/06/17 19:59:23 695 1400 700 4130 534 +54,5,100717,031423,5.28157,23.9113,0.27,11120.1,1,1400,4130,19.48 +54,5,100717,031424,5.28314,23.9426,0.27,11119.1,1,1370,4130,19.48 +54,5,100717,031425,5.28340,23.9332,0.27,11119.7,1,1356,4130,19.48 +54,5,100717,031426,5.28154,23.9143,0.27,11118.1,1,1368,4130,19.49 +54,100,100717,031427,1,1,6,60,80,53,1000538,0,0,414722,0,0,0,0,1,19.48 +54,6,100717,031427,5.28101,23.8886,0.27,11118.4,1,1414,4130,19.48 +54,6,100717,031428,5.28210,23.9419,0.27,11119.3,1,1417,4130,19.48 +54,6,100717,031429,5.28447,23.9492,0.27,11120.7,1,1417,4130,19.48 +54,6,100717,031430,5.28471,23.9367,0.27,11120.8,1,1413,4130,19.48 +54,6,100717,031431,5.28331,23.9250,0.27,11120.2,1,1417,4130,19.48 +54,6,100717,031432,5.28146,23.9086,0.27,11119.7,1,1414,4130,19.49 +54,6,100717,031433,5.28140,23.9214,0.27,11120.4,1,1417,4130,19.48 +54,6,100717,031434,5.28305,24.0137,0.27,11122.2,1,1414,4130,19.47 +54,6,100717,031435,5.28409,23.9692,0.27,11122.6,1,1414,4130,19.48 +54,6,100717,031436,5.28417,23.9610,0.27,11120.7,1,1413,4130,19.48 +54,6,100717,031437,5.28211,23.9019,0.27,11121.6,1,1405,4130,19.48 +54,6,100717,031438,5.28195,23.8925,0.27,11121.0,1,1414,4130,19.48 +54,6,100717,031439,5.28137,23.8928,0.27,11121.0,1,1415,4130,19.47 +54,6,100717,031440,5.28217,23.9145,0.27,11122.7,1,1418,4130,19.47 +54,6,100717,031441,5.28632,23.9927,0.27,11122.8,1,1414,4130,19.48 +54,6,100717,031442,5.28722,24.0064,0.27,11124.6,1,1419,4130,19.48 +54,6,100717,031443,5.28926,23.9595,0.27,11124.1,1,1417,4130,19.48 +54,6,100717,031444,5.28920,23.9162,0.27,11124.8,1,1416,4130,19.48 +54,6,100717,031445,5.28777,23.9174,0.27,11125.6,1,1413,4130,19.48 +54,6,100717,031446,5.28888,23.9680,0.27,11125.8,1,1416,4130,19.47 +54,6,100717,031447,5.28814,23.9328,0.27,11126.2,1,1387,4130,19.47 +54,6,100717,031448,5.29009,23.9460,0.27,11127.7,1,1412,4130,19.48 +54,6,100717,031449,5.29027,23.9821,0.27,11125.8,1,1411,4130,19.48 +54,6,100717,031450,5.28837,23.9734,0.27,11124.8,1,1411,4130,19.48 +54,6,100717,031451,5.28831,24.0374,0.27,11127.6,1,1408,4130,19.47 +54,6,100717,031452,5.29218,24.1001,0.27,11127.7,1,1407,4130,19.48 +54,6,100717,031453,5.29235,24.0939,0.27,11129.1,1,1409,4130,19.48 +54,6,100717,031454,5.29148,24.0609,0.27,11127.9,1,1411,4130,19.47 +54,6,100717,031455,5.28938,24.0408,0.27,11126.5,1,1410,4130,19.47 +54,6,100717,031456,5.28725,24.0269,0.27,11126.6,1,1409,4130,19.48 +54,6,100717,031457,5.28560,23.9445,0.27,11126.0,1,1365,4130,19.48 +54,6,100717,031458,5.28586,23.9275,0.27,11126.1,1,1411,4130,19.47 +54,6,100717,031459,5.28701,24.0117,0.27,11124.4,1,1414,4130,19.47 +54,6,100717,031500,5.28635,24.0086,0.27,11123.9,1,1413,4130,19.47 +54,6,100717,031501,5.28533,23.9187,0.27,11125.2,1,1414,4130,19.48 +54,6,100717,031502,5.28479,23.9042,0.27,11123.4,1,1412,4130,19.47 +54,6,100717,031503,5.28204,23.9089,0.27,11123.4,1,1413,4130,19.48 +54,6,100717,031504,5.28386,23.9682,0.27,11124.2,1,1415,4130,19.47 +54,6,100717,031505,5.28689,23.9911,0.27,11125.1,1,1413,4130,19.47 +54,6,100717,031506,5.28574,23.9451,0.27,11122.4,1,1411,4130,19.47 +54,6,100717,031507,5.28366,23.9065,0.27,11121.6,1,1366,4130,19.48 +54,6,100717,031508,5.28409,23.9072,0.27,11122.4,1,1411,4130,19.47 +54,6,100717,031509,5.28278,23.9106,0.27,11121.6,1,1413,4130,19.47 +54,6,100717,031510,5.28459,23.9333,0.27,11123.7,1,1410,4130,19.48 +54,6,100717,031511,5.28636,23.9739,0.27,11124.6,1,1411,4130,19.47 +54,6,100717,031512,5.28645,23.9834,0.27,11126.5,1,1410,4130,19.47 +54,6,100717,031513,5.28835,23.9666,0.27,11126.9,1,1410,4130,19.47 +54,6,100717,031514,5.28734,23.9715,0.27,11126.1,1,1411,4130,19.47 +54,6,100717,031515,5.28722,24.0536,0.27,11128.1,1,1412,4130,19.47 +54,6,100717,031516,5.28864,24.0815,0.27,11129.9,1,1415,4130,19.47 +54,6,100717,031517,5.29038,24.0157,0.26,11130.3,1,1380,4130,19.47 +54,6,100717,031518,5.28824,23.9381,0.27,11126.5,1,1418,4130,19.47 +54,6,100717,031519,5.28376,23.9275,0.27,11126.1,1,1420,4130,19.47 +54,6,100717,031520,5.28398,23.9559,0.27,11129.0,1,1419,4130,19.47 +54,6,100717,031521,5.28653,23.9719,0.27,11130.3,1,1419,4130,19.47 +54,6,100717,031522,5.28710,23.9880,0.27,11129.7,1,1424,4130,19.47 +54,6,100717,031523,5.28601,23.9388,0.27,11127.5,1,1421,4130,19.47 +54,6,100717,031524,5.28363,23.9062,0.27,11126.4,1,1423,4130,19.47 +54,6,100717,031525,5.28119,23.8911,0.27,11126.1,1,1420,4130,19.47 +54,6,100717,031526,5.28329,23.9032,0.27,11125.8,1,1419,4130,19.47 +54,100,100717,031527,1,1,10,746,80,57,1000534,0,0,414722,0,0,0,0,1,19.47 +54,100,100717,032800,1,1,3,7,15,57,1000543,0,0,414722,0,0,0,0,1,19.76 +54,3,100717,032800,5.28632,23.9900,0.27,11124.7,1,0,0,19.76 +54,230,100717,032801,3,24848,24848,24840 +54,100,100717,032807,1,1,4,15,15,57,1000543,0,0,414722,0,0,0,0,1,19.60 +54,200,100717,032807, 53.0422, 24.4437, 0.28, 8356.3, 2 +54,4,100717,032807,5.30422,24.4437,0.28,8356.3,2,0,0,19.60 +54,4,100717,032808,5.30347,24.4465,0.28,8369.8,2,0,0,19.49 +54,4,100717,032809,5.30118,24.2863,0.28,8571.2,1,0,0,19.61 +54,4,100717,032810,5.30405,24.1267,0.28,8967.1,1,0,0,19.62 +54,4,100717,032811,5.30376,24.1006,0.28,9385.5,1,0,0,19.61 +54,4,100717,032812,5.30316,24.1224,0.28,9752.8,1,0,0,19.61 +54,4,100717,032813,5.30168,24.1122,0.28,10052.7,1,0,0,19.62 +54,4,100717,032814,5.30066,24.1016,0.28,10291.2,1,0,0,19.62 +54,4,100717,032815,5.30153,24.0947,0.28,10474.5,1,0,0,19.61 +54,4,100717,032816,5.30162,24.0678,0.28,10616.1,1,0,0,19.61 +54,4,100717,032817,5.30150,24.0918,0.28,10724.9,1,0,0,19.61 +54,4,100717,032818,5.30227,24.1142,0.27,10808.9,1,0,0,19.61 +54,4,100717,032819,5.30252,24.1193,0.28,10873.0,1,0,0,19.61 +54,4,100717,032820,5.30229,24.1223,0.28,10921.5,1,0,0,19.61 +54,4,100717,032821,5.30296,24.1182,0.28,10957.7,1,0,0,19.61 +54,4,100717,032822,5.30063,24.0833,0.28,10987.4,1,0,0,19.61 +54,4,100717,032823,5.29939,24.0659,0.28,11010.0,1,0,0,19.61 +54,4,100717,032824,5.30028,24.1041,0.27,11030.4,1,0,0,19.61 +54,4,100717,032825,5.30348,24.1465,0.28,11044.5,1,0,0,19.61 +54,4,100717,032826,5.30188,24.1270,0.28,11056.9,1,0,0,19.61 +54,4,100717,032827,5.30264,24.1029,0.28,11064.1,1,0,0,19.61 +54,4,100717,032828,5.30063,24.0886,0.28,11072.3,1,0,0,19.61 +54,4,100717,032829,5.30117,24.1011,0.27,11077.6,1,0,0,19.61 +54,4,100717,032830,5.30248,24.1268,0.28,11082.6,1,0,0,19.61 +54,4,100717,032831,5.30025,24.1328,0.28,11087.4,1,0,0,19.61 +54,4,100717,032832,5.30197,24.1118,0.28,11091.5,1,0,0,19.61 +54,4,100717,032833,5.30182,24.1127,0.27,11095.4,1,0,0,19.61 +54,4,100717,032834,5.30194,24.0777,0.28,11096.7,1,0,0,19.61 +54,4,041018,224348,0.02745,20.7980,-0.01,11620.9,1,0,0,15.38 +54,4,041018,224349,0.02741,20.7989,-0.01,11620.6,1,0,0,15.39 +54,4,041018,224350,0.02738,20.8003,-0.01,11620.3,1,0,0,15.39 +54,4,041018,224351,0.02738,20.7997,-0.01,11618.9,1,0,0,15.39 +54,4,041018,224352,0.02744,20.7965,-0.01,11619.5,1,0,0,15.38 +54,4,041018,224353,0.02747,20.7890,-0.01,11620.2,1,0,0,15.37 +54,4,041018,224354,0.02749,20.7830,-0.01,11620.6,1,0,0,15.39 +54,4,041018,224355,0.02749,20.7780,-0.01,11619.5,1,0,0,15.39 +54,4,041018,224356,0.02744,20.7772,-0.01,11619.9,1,0,0,15.39 +54,4,041018,224357,0.02739,20.7755,-0.01,11620.7,1,0,0,15.38 +54,4,041018,224358,0.02741,20.7715,-0.01,11619.9,1,0,0,15.38 +54,4,041018,224359,0.02736,20.7675,-0.01,11619.1,1,0,0,15.37 +54,4,041018,224400,0.02735,20.7653,-0.01,11619.7,1,0,0,15.38 +54,4,041018,224401,0.02742,20.7676,-0.01,11621.2,1,0,0,15.37 +54,4,041018,224402,0.02747,20.7648,-0.01,11619.2,1,0,0,15.38 +54,4,041018,224403,0.02739,20.7591,-0.01,11620.0,1,0,0,15.37 +54,4,041018,224404,0.02738,20.7615,-0.01,11619.7,1,0,0,15.38 +54,4,041018,224405,0.02736,20.7637,-0.01,11619.7,1,0,0,15.37 +54,4,041018,224406,0.02736,20.7649,-0.01,11620.6,1,0,0,15.38 +54,4,041018,224407,0.02739,20.7652,-0.01,11619.4,1,0,0,15.37 +54,4,041018,224408,0.02743,20.7668,-0.01,11620.0,1,0,0,15.37 +54,4,041018,224409,0.02742,20.7694,-0.01,11619.8,1,0,0,15.38 +54,4,041018,224410,0.02738,20.7759,-0.01,11620.4,1,0,0,15.38 +54,4,041018,224411,0.02735,20.7802,-0.01,11618.4,1,0,0,15.37 +54,4,041018,224412,0.02738,20.7814,-0.01,11618.4,1,0,0,15.38 +54,4,041018,224413,0.02737,20.7815,-0.01,11618.4,1,0,0,15.37 +54,4,041018,224414,0.02737,20.7778,-0.01,11619.3,1,0,0,15.38 +54,4,041018,224415,0.02737,20.7758,-0.01,11618.8,1,0,0,15.37 +54,4,041018,224416,0.02736,20.7787,-0.01,11619.0,1,0,0,15.38 +54,4,041018,224417,0.02735,20.7857,-0.01,11619.7,1,0,0,15.38 +54,4,041018,224418,0.02737,20.7929,-0.01,11618.5,1,0,0,15.37 +54,4,041018,224419,0.02734,20.7975,-0.01,11619.4,1,0,0,15.38 +54,100,041018,224420,1,1,5,8,80,164180,836411,0,0,414722,0,0,0,0,1,15.37 +54,5,041018,224420,0.02731,20.8018,-0.01,11619.2,1,0,0,15.37 +54,5,041018,224421,0.02738,20.8069,-0.01,11618.5,1,0,0,15.28 +54,5,041018,224422,0.02736,20.8144,-0.01,11619.5,1,0,0,15.27 +54,5,041018,224423,0.02733,20.8180,-0.01,11618.4,1,0,0,15.18 +54,210,041018,224424,04/10/18 15:24:06 695 583 700 4130 536 +54,5,041018,224424,0.02734,20.8173,-0.01,11617.6,1,583,4130,15.23 +54,5,041018,224425,0.02741,20.8217,-0.01,11618.7,1,582,4130,15.23 +54,5,041018,224426,0.02737,20.8289,-0.01,11619.8,1,583,4130,15.24 +54,5,041018,224427,0.02732,20.8350,-0.01,11617.5,1,588,4130,15.23 +54,100,041018,224428,1,1,6,60,80,164181,836410,0,0,414722,0,0,0,0,1,15.22 +54,6,041018,224428,0.02741,20.8392,-0.01,11617.6,1,583,4130,15.22 +54,6,041018,224429,0.02739,20.8442,-0.01,11619.4,1,583,4130,15.24 +54,6,041018,224430,0.02731,20.8473,-0.01,11619.4,1,582,4130,15.24 +54,6,041018,224431,0.02732,20.8508,-0.01,11617.4,1,581,4130,15.23 +54,6,041018,224432,0.02733,20.8549,-0.01,11618.9,1,582,4130,15.22 +54,6,041018,224433,0.02735,20.8582,-0.01,11618.0,1,583,4130,15.22 +54,6,041018,224434,0.02732,20.8596,-0.01,11619.9,1,584,4130,15.22 +54,6,041018,224435,0.02734,20.8587,-0.01,11618.2,1,583,4130,15.22 +54,6,041018,224436,0.02738,20.8610,-0.01,11618.8,1,584,4130,15.22 +54,6,041018,224437,0.02736,20.8646,-0.01,11618.6,1,584,4130,15.22 +54,6,041018,224438,0.02729,20.8606,-0.01,11618.4,1,584,4130,15.23 +54,6,041018,224439,0.02726,20.8618,-0.01,11618.2,1,583,4130,15.23 +54,6,041018,224440,0.02730,20.8616,-0.01,11617.9,1,582,4130,15.22 +54,6,041018,224441,0.02734,20.8603,-0.01,11617.1,1,585,4130,15.22 +54,6,041018,224442,0.02733,20.8578,-0.01,11617.8,1,583,4130,15.22 +54,6,041018,224443,0.02732,20.8564,-0.01,11618.1,1,583,4130,15.22 +54,6,041018,224444,0.02738,20.8590,-0.01,11618.5,1,582,4130,15.23 +54,6,041018,224445,0.02735,20.8604,-0.01,11617.7,1,584,4130,15.22 +54,6,041018,224446,0.02728,20.8602,-0.01,11617.3,1,583,4130,15.22 +54,6,041018,224447,0.02729,20.8601,-0.01,11617.7,1,584,4130,15.22 +54,6,041018,224448,0.02732,20.8575,-0.01,11617.6,1,582,4130,15.22 +54,6,041018,224449,0.02730,20.8572,-0.01,11617.1,1,584,4130,15.22 +54,6,041018,224450,0.02729,20.8641,-0.01,11618.0,1,584,4130,15.22 +54,6,041018,224451,0.02732,20.8699,-0.01,11617.4,1,584,4130,15.22 +54,6,041018,224452,0.02731,20.8735,-0.01,11617.7,1,583,4130,15.21 +54,6,041018,224453,0.02732,20.8760,-0.01,11616.6,1,582,4130,15.22 +54,6,041018,224454,0.02732,20.8809,-0.01,11617.6,1,582,4130,15.22 +54,6,041018,224455,0.02731,20.8890,-0.01,11617.8,1,584,4130,15.22 +54,6,041018,224456,0.02719,20.8978,-0.01,11616.4,1,584,4130,15.21 +54,6,041018,224457,0.02728,20.9068,-0.01,11616.1,1,585,4130,15.22 +54,6,041018,224458,0.02734,20.9143,-0.01,11617.3,1,584,4130,15.22 +54,6,041018,224459,0.02731,20.9212,-0.01,11617.6,1,584,4130,15.22 +54,6,041018,224500,0.02729,20.9320,-0.01,11617.7,1,582,4130,15.22 +54,6,041018,224501,0.02724,20.9409,-0.01,11616.8,1,584,4130,15.21 +54,6,041018,224502,0.02726,20.9496,-0.01,11616.6,1,583,4130,15.22 +54,6,041018,224503,0.02726,20.9564,-0.01,11616.0,1,583,4130,15.22 +54,6,041018,224504,0.02731,20.9584,-0.01,11618.0,1,584,4130,15.22 +54,6,041018,224505,0.02734,20.9616,-0.01,11615.9,1,583,4130,15.21 +54,6,041018,224506,0.02730,20.9680,-0.01,11617.0,1,583,4130,15.22 +54,6,041018,224507,0.02727,20.9775,-0.01,11616.1,1,584,4130,15.21 +54,6,041018,224508,0.02726,20.9824,-0.01,11617.0,1,582,4130,15.21 +54,6,041018,224509,0.02729,20.9837,-0.01,11616.9,1,583,4130,15.21 +54,6,041018,224510,0.02726,20.9842,-0.01,11616.9,1,583,4130,15.22 +54,6,041018,224511,0.02730,20.9874,-0.01,11616.5,1,583,4130,15.22 +54,6,041018,224512,0.02725,20.9952,-0.01,11617.3,1,586,4130,15.22 +54,6,041018,224513,0.02720,21.0027,-0.01,11615.8,1,583,4130,15.21 +54,6,041018,224514,0.02728,21.0063,-0.01,11615.7,1,583,4130,15.22 +54,6,041018,224515,0.02728,21.0079,-0.01,11616.7,1,583,4130,15.22 +54,6,041018,224516,0.02727,21.0059,-0.01,11617.2,1,584,4130,15.22 +54,6,041018,224517,0.02727,21.0022,-0.01,11617.1,1,584,4130,15.22 +54,6,041018,224518,0.02730,21.0020,-0.01,11617.5,1,585,4130,15.21 +54,6,041018,224519,0.02728,21.0074,-0.01,11615.9,1,582,4130,15.21 +54,6,041018,224520,0.02721,21.0179,-0.01,11615.9,1,584,4130,15.21 +54,6,041018,224521,0.02717,21.0251,-0.01,11615.7,1,583,4130,15.22 +54,6,041018,224522,0.02724,21.0257,-0.01,11615.6,1,584,4130,15.21 +54,6,041018,224523,0.02728,21.0266,-0.01,11614.8,1,584,4130,15.21 +54,6,041018,224524,0.02725,21.0347,-0.01,11615.6,1,583,4130,15.22 +54,6,041018,224525,0.02719,21.0405,-0.01,11615.1,1,583,4130,15.22 +54,6,041018,224526,0.02721,21.0485,-0.01,11615.5,1,583,4130,15.22 +54,6,041018,224527,0.02725,21.0526,-0.01,11614.4,1,585,4130,15.22 +54,100,041018,224528,1,1,10,744,80,164185,836406,0,0,414722,0,0,0,0,1,15.22 +54,100,041018,225800,1,1,3,7,15,164185,836415,0,0,414722,0,0,0,0,1,15.57 +54,3,041018,225800,0.02720,21.0582,-0.01,11616.6,1,0,0,15.57 +54,230,041018,225801,3,19552,19552,19560 +54,100,041018,225807,1,1,4,15,15,164185,836415,0,0,414722,0,0,0,0,1,15.46 +54,200,041018,225808, 0.2745, 22.2499, -0.01, 11617.9, 2 +54,4,041018,225808,0.02745,22.2499,-0.01,11617.9,2,0,0,15.35 +54,4,041018,225809,0.02748,22.2497,-0.01,11618.9,2,0,0,15.39 +54,4,041018,225810,0.02738,22.1900,-0.01,11619.5,1,0,0,15.42 +54,4,041018,225811,0.02733,21.9223,-0.01,11619.1,1,0,0,15.41 +54,4,041018,225812,0.02735,21.8206,-0.01,11618.6,1,0,0,15.41 +54,4,041018,225813,0.02733,21.7522,-0.01,11622.0,1,0,0,15.41 +54,4,041018,225814,0.02731,21.6926,-0.01,11620.9,1,0,0,15.42 +54,4,041018,225815,0.02734,21.6365,-0.01,11621.0,1,0,0,15.40 +54,4,041018,225816,0.02735,21.5871,-0.01,11622.6,1,0,0,15.41 +54,4,041018,225817,0.02732,21.5392,-0.01,11623.6,1,0,0,15.41 +54,4,041018,225818,0.02731,21.4879,-0.01,11621.4,1,0,0,15.40 +54,4,041018,225819,0.02736,21.4388,-0.01,11621.7,1,0,0,15.40 +54,4,041018,225820,0.02732,21.3947,-0.01,11624.3,1,0,0,15.40 +54,4,041018,225821,0.02725,21.3570,-0.01,11622.3,1,0,0,15.40 +54,4,041018,225822,0.02730,21.3258,-0.01,11623.1,1,0,0,15.40 +54,4,041018,225823,0.02732,21.2969,-0.01,11624.1,1,0,0,15.39 +54,4,041018,225824,0.02734,21.2673,-0.01,11623.3,1,0,0,15.39 +54,4,041018,225825,0.02731,21.2408,-0.01,11623.0,1,0,0,15.40 +54,4,041018,225826,0.02738,21.2182,-0.01,11622.5,1,0,0,15.40 +54,4,041018,225827,0.02740,21.1982,-0.01,11622.8,1,0,0,15.40 +54,4,041018,225828,0.02730,21.1806,-0.01,11622.0,1,0,0,15.39 +54,4,041018,225829,0.02726,21.1662,-0.01,11621.6,1,0,0,15.39 +54,4,041018,225830,0.02727,21.1506,-0.01,11622.6,1,0,0,15.38 +54,4,041018,225831,0.02728,21.1337,-0.01,11623.7,1,0,0,15.38 +54,4,041018,225832,0.02735,21.1168,-0.01,11622.2,1,0,0,15.39 +54,4,041018,225833,0.02743,21.1034,-0.01,11623.0,1,0,0,15.38 +54,4,041018,225834,0.02735,21.0915,-0.01,11623.6,1,0,0,15.39 +54,4,041018,225835,0.02723,21.0851,-0.01,11623.7,1,0,0,15.38 +54,4,041018,225836,0.02726,21.0763,-0.01,11623.7,1,0,0,15.38 +54,4,041018,225837,0.02727,21.0642,-0.01,11623.8,1,0,0,15.38 +54,4,041018,225838,0.02729,21.0562,-0.01,11622.9,1,0,0,15.39 +54,4,041018,225839,0.02734,21.0523,-0.01,11624.4,1,0,0,15.38 +54,4,041018,225840,0.02739,21.0468,-0.01,11623.7,1,0,0,15.39 +54,4,041018,225841,0.02727,21.0475,-0.01,11623.3,1,0,0,15.38 +54,4,041018,225842,0.02727,21.0441,-0.01,11621.8,1,0,0,15.39 +54,4,041018,225843,0.02731,21.0403,-0.01,11621.1,1,0,0,15.39 +54,4,041018,225844,0.02734,21.0335,-0.01,11623.9,1,0,0,15.38 +54,4,041018,225845,0.02731,21.0322,-0.01,11622.0,1,0,0,15.39 +54,4,041018,225846,0.02727,21.0342,-0.01,11622.5,1,0,0,15.39 +54,4,041018,225847,0.02720,21.0363,-0.01,11622.8,1,0,0,15.39 +54,4,041018,225848,0.02720,21.0353,-0.01,11621.1,1,0,0,15.39 +54,4,041018,225849,0.02727,21.0284,-0.01,11622.3,1,0,0,15.38 +54,4,041018,225850,0.02731,21.0235,-0.01,11622.6,1,0,0,15.38 +54,4,041018,225851,0.02728,21.0208,-0.01,11623.1,1,0,0,15.38 +54,4,041018,225852,0.02724,21.0221,-0.01,11622.6,1,0,0,15.38 +54,4,041018,225853,0.02721,21.0246,-0.01,11621.8,1,0,0,15.38 +54,4,041018,225854,0.02714,21.0268,-0.01,11621.8,1,0,0,15.38 +54,4,041018,225855,0.02714,21.0240,-0.01,11622.0,1,0,0,15.38 +54,4,041018,225856,0.02720,21.0212,-0.01,11622.9,1,0,0,15.38 +54,4,041018,225857,0.02728,21.0226,-0.01,11621.1,1,0,0,15.38 +54,4,041018,225858,0.02724,21.0226,-0.01,11624.3,1,0,0,15.38 +54,4,041018,225859,0.02721,21.0266,-0.01,11622.8,1,0,0,15.39 +54,4,041018,225900,0.02714,21.0299,-0.01,11622.9,1,0,0,15.38 +54,4,041018,225901,0.02720,21.0310,-0.01,11622.4,1,0,0,15.38 +54,4,041018,225902,0.02718,21.0302,-0.01,11623.3,1,0,0,15.38 +54,4,041018,225903,0.02718,21.0287,-0.01,11623.2,1,0,0,15.38 +54,4,041018,225904,0.02720,21.0274,-0.01,11621.6,1,0,0,15.38 +54,4,041018,225905,0.02721,21.0286,-0.01,11622.7,1,0,0,15.37 +54,4,041018,225906,0.02717,21.0305,-0.01,11622.5,1,0,0,15.37 +54,4,041018,225907,0.02710,21.0301,-0.01,11622.6,1,0,0,15.37 +54,4,041018,225908,0.02711,21.0300,-0.01,11621.9,1,0,0,15.37 +54,4,041018,225909,0.02716,21.0312,-0.01,11621.9,1,0,0,15.38 +54,4,041018,225910,0.02720,21.0323,-0.01,11621.9,1,0,0,15.38 +54,4,041018,225911,0.02712,21.0351,-0.01,11620.4,1,0,0,15.37 +54,4,041018,225912,0.02717,21.0380,-0.01,11620.5,1,0,0,15.37 +54,4,041018,225913,0.02722,21.0452,-0.01,11622.0,1,0,0,15.38 +54,4,041018,225914,0.02723,21.0501,-0.01,11621.6,1,0,0,15.37 +54,4,041018,225915,0.02716,21.0500,-0.01,11622.6,1,0,0,15.37 +54,4,041018,225916,0.02715,21.0493,-0.01,11621.4,1,0,0,15.37 +54,4,041018,225917,0.02717,21.0502,-0.01,11622.2,1,0,0,15.37 +54,4,041018,225918,0.02712,21.0516,-0.01,11621.4,1,0,0,15.37 +54,4,041018,225919,0.02710,21.0576,-0.01,11621.6,1,0,0,15.37 +54,100,041018,225920,1,1,5,8,80,164190,836411,0,0,414722,0,0,0,0,1,15.37 +54,5,041018,225920,0.02719,21.0628,-0.01,11622.5,1,0,0,15.37 +54,5,041018,225921,0.02716,21.0616,-0.01,11622.6,1,0,0,15.28 +54,5,041018,225922,0.02715,21.0639,-0.01,11622.0,1,0,0,15.28 +54,5,041018,225923,0.02724,21.0682,-0.01,11622.0,1,0,0,15.17 +54,210,041018,225924,04/10/18 15:39:06 695 583 700 4130 536 +54,5,041018,225924,0.02720,21.0710,-0.01,11622.6,1,583,4130,15.24 +54,5,041018,225925,0.02714,21.0748,-0.01,11621.8,1,581,4130,15.24 +54,5,041018,225926,0.02720,21.0792,-0.01,11622.7,1,581,4130,15.24 +54,5,041018,225927,0.02717,21.0870,-0.01,11621.8,1,586,4130,15.23 +54,100,041018,225928,1,1,6,60,80,164190,836410,0,0,414722,0,0,0,0,1,15.23 +54,6,041018,225928,0.02714,21.0936,-0.01,11622.3,1,583,4130,15.23 +54,6,041018,225929,0.02720,21.0985,-0.01,11622.0,1,581,4130,15.24 +54,6,041018,225930,0.02721,21.1023,-0.01,11623.0,1,583,4130,15.24 +54,6,041018,225931,0.02715,21.1085,-0.01,11622.8,1,584,4130,15.23 +54,6,041018,225932,0.02714,21.1116,-0.01,11622.4,1,584,4130,15.22 +54,6,041018,225933,0.02714,21.1137,-0.01,11621.4,1,583,4130,15.24 +54,6,041018,225934,0.02711,21.1208,-0.01,11622.2,1,585,4130,15.22 +54,6,041018,225935,0.02714,21.1267,-0.01,11621.0,1,584,4130,15.22 +54,6,041018,225936,0.02713,21.1295,-0.01,11622.0,1,582,4130,15.22 +54,6,041018,225937,0.02713,21.1379,-0.01,11621.6,1,583,4130,15.22 +54,6,041018,225938,0.02714,21.1487,-0.01,11620.5,1,584,4130,15.22 +54,6,041018,225939,0.02713,21.1587,-0.01,11620.4,1,585,4130,15.22 +54,6,041018,225940,0.02707,21.1647,-0.01,11622.5,1,584,4130,15.22 +54,6,041018,225941,0.02708,21.1707,-0.01,11622.9,1,584,4130,15.22 +54,6,041018,225942,0.02718,21.1788,-0.01,11624.1,1,584,4130,15.22 +54,6,041018,225943,0.02720,21.1881,-0.01,11624.3,1,584,4130,15.22 +54,6,041018,225944,0.02716,21.1973,-0.01,11623.7,1,584,4130,15.22 +54,6,041018,225945,0.02711,21.2057,-0.01,11622.7,1,585,4130,15.22 +54,6,041018,225946,0.02718,21.2115,-0.01,11621.9,1,583,4130,15.23 +54,6,041018,225947,0.02722,21.2160,-0.01,11621.9,1,584,4130,15.23 +54,6,041018,225948,0.02715,21.2201,-0.01,11622.3,1,583,4130,15.22 +54,6,041018,225949,0.02713,21.2299,-0.01,11623.1,1,586,4130,15.22 +54,6,041018,225950,0.02706,21.2378,-0.01,11622.3,1,584,4130,15.22 +54,6,041018,225951,0.02707,21.2390,-0.01,11621.4,1,583,4130,15.22 +54,6,041018,225952,0.02708,21.2397,-0.01,11620.9,1,585,4130,15.22 +54,6,041018,225953,0.02707,21.2404,-0.01,11622.3,1,583,4130,15.22 +54,6,041018,225954,0.02712,21.2418,-0.01,11622.7,1,585,4130,15.22 +54,6,041018,225955,0.02714,21.2489,-0.01,11620.3,1,584,4130,15.22 +54,6,041018,225956,0.02710,21.2592,-0.01,11620.2,1,583,4130,15.21 +54,6,041018,225957,0.02712,21.2624,-0.01,11622.3,1,585,4130,15.22 +54,6,041018,225958,0.02704,21.2646,-0.01,11622.0,1,586,4130,15.21 +54,6,041018,225959,0.02706,21.2709,-0.01,11621.2,1,584,4130,15.22 +54,6,041018,230000,0.02714,21.2761,-0.01,11621.7,1,584,4130,15.23 +54,6,041018,230001,0.02715,21.2808,-0.01,11621.7,1,585,4130,15.22 +54,6,041018,230002,0.02704,21.2810,-0.01,11622.1,1,584,4130,15.22 +54,6,041018,230003,0.02705,21.2861,-0.01,11621.6,1,585,4130,15.21 +54,6,041018,230004,0.02712,21.2885,-0.01,11622.0,1,583,4130,15.22 +54,6,041018,230005,0.02709,21.2903,-0.01,11621.0,1,585,4130,15.22 +54,6,041018,230006,0.02708,21.2911,-0.01,11621.0,1,584,4130,15.22 +54,6,041018,230007,0.02703,21.2971,-0.01,11621.3,1,584,4130,15.22 +54,6,041018,230008,0.02707,21.3043,-0.01,11619.9,1,581,4130,15.22 +54,6,041018,230009,0.02710,21.3104,-0.01,11621.9,1,582,4130,15.21 +54,6,041018,230010,0.02702,21.3129,-0.01,11620.0,1,584,4130,15.22 +54,6,041018,230011,0.02703,21.3149,-0.01,11620.8,1,585,4130,15.22 +54,6,041018,230012,0.02712,21.3193,-0.01,11620.6,1,584,4130,15.22 +54,6,041018,230013,0.02712,21.3268,-0.01,11620.8,1,585,4130,15.22 +54,6,041018,230014,0.02704,21.3310,-0.01,11620.8,1,584,4130,15.21 +54,6,041018,230015,0.02709,21.3332,-0.01,11621.3,1,585,4130,15.22 +54,6,041018,230016,0.02709,21.3365,-0.01,11621.1,1,584,4130,15.21 +54,6,041018,230017,0.02705,21.3401,-0.01,11622.8,1,584,4130,15.22 +54,6,041018,230018,0.02709,21.3435,-0.01,11621.6,1,585,4130,15.20 +54,6,041018,230019,0.02709,21.3477,-0.01,11621.7,1,585,4130,15.22 +54,6,041018,230020,0.02707,21.3536,-0.01,11620.9,1,583,4130,15.22 +54,6,041018,230021,0.02704,21.3587,-0.01,11621.1,1,584,4130,15.21 +54,6,041018,230022,0.02701,21.3606,-0.01,11621.9,1,584,4130,15.21 +54,6,041018,230023,0.02703,21.3643,-0.01,11621.4,1,585,4130,15.21 +54,6,041018,230024,0.02706,21.3652,-0.01,11619.9,1,582,4130,15.21 +54,6,041018,230025,0.02703,21.3658,-0.01,11620.5,1,585,4130,15.21 +54,6,041018,230026,0.02700,21.3687,-0.01,11620.0,1,584,4130,15.22 +54,6,041018,230027,0.02711,21.3760,-0.01,11620.9,1,585,4130,15.22 +54,100,041018,230028,1,1,10,744,80,164194,836406,0,0,414722,0,0,0,0,1,15.22 +54,100,041018,231300,1,1,3,7,15,164194,836399,0,0,414722,0,0,0,0,1,15.57 +54,3,041018,231300,0.02710,21.3767,-0.01,11620.1,1,0,0,15.57 +54,230,041018,231301,3,19552,19552,19560 +54,100,041018,231307,1,1,4,15,15,164195,836399,0,0,414722,0,0,0,0,1,15.45 +54,200,041018,231308, 0.2736, 22.4695, -0.02, 11619.0, 2 +54,4,041018,231308,0.02736,22.4695,-0.02,11619.0,2,0,0,15.35 +54,4,041018,231309,0.02739,22.4693,-0.01,11620.3,2,0,0,15.38 +54,4,041018,231310,0.02730,22.4031,-0.02,11621.1,1,0,0,15.42 +54,4,041018,231311,0.02725,22.1264,-0.02,11621.4,1,0,0,15.40 +54,4,041018,231312,0.02717,22.0199,-0.02,11620.0,1,0,0,15.41 +54,4,041018,231313,0.02717,21.9412,-0.02,11620.7,1,0,0,15.40 +54,4,041018,231314,0.02721,21.8689,-0.02,11621.0,1,0,0,15.40 +54,4,041018,231315,0.02739,21.8066,-0.02,11621.6,1,0,0,15.42 +54,4,041018,231316,0.02731,21.7519,-0.01,11623.0,1,0,0,15.40 +54,4,041018,231317,0.02718,21.7054,-0.02,11622.5,1,0,0,15.40 +54,4,041018,231318,0.02724,21.6638,-0.02,11623.3,1,0,0,15.40 +54,4,041018,231319,0.02728,21.6159,-0.02,11623.4,1,0,0,15.40 +54,4,041018,231320,0.02730,21.5681,-0.02,11624.5,1,0,0,15.40 +54,4,041018,231321,0.02724,21.5330,-0.02,11624.2,1,0,0,15.40 +54,4,041018,231322,0.02722,21.5068,-0.02,11624.7,1,0,0,15.40 +54,4,041018,231323,0.02718,21.4775,-0.02,11624.2,1,0,0,15.40 +54,4,041018,231324,0.02712,21.4460,-0.02,11624.4,1,0,0,15.40 +54,4,041018,231325,0.02719,21.4120,-0.02,11624.1,1,0,0,15.39 +54,4,041018,231326,0.02724,21.3853,-0.02,11623.7,1,0,0,15.39 +54,4,041018,231327,0.02725,21.3664,-0.02,11624.4,1,0,0,15.39 +54,4,041018,231328,0.02721,21.3541,-0.02,11624.9,1,0,0,15.39 +54,4,041018,231329,0.02713,21.3410,-0.02,11625.1,1,0,0,15.38 +54,4,041018,231330,0.02720,21.3222,-0.02,11625.3,1,0,0,15.38 +54,4,041018,231331,0.02730,21.2981,-0.02,11624.3,1,0,0,15.39 +54,4,041018,231332,0.02724,21.2793,-0.02,11626.1,1,0,0,15.39 +54,4,041018,231333,0.02720,21.2713,-0.02,11624.8,1,0,0,15.38 +54,4,041018,231334,0.02717,21.2662,-0.02,11625.5,1,0,0,15.38 +54,4,041018,231335,0.02715,21.2578,-0.02,11625.6,1,0,0,15.38 +54,4,041018,231336,0.02716,21.2454,-0.02,11624.9,1,0,0,15.38 +54,4,041018,231337,0.02715,21.2351,-0.02,11626.8,1,0,0,15.39 +54,4,041018,231338,0.02719,21.2252,-0.02,11625.2,1,0,0,15.38 +54,4,041018,231339,0.02723,21.2185,-0.02,11625.6,1,0,0,15.39 +54,4,041018,231340,0.02713,21.2104,-0.02,11624.4,1,0,0,15.38 +54,4,041018,231341,0.02710,21.2045,-0.02,11623.8,1,0,0,15.38 +54,4,041018,231342,0.02713,21.1983,-0.02,11624.3,1,0,0,15.38 +54,4,041018,231343,0.02719,21.1914,-0.02,11622.9,1,0,0,15.39 +54,4,041018,231344,0.02720,21.1841,-0.02,11625.0,1,0,0,15.38 +54,4,041018,231345,0.02714,21.1782,-0.02,11624.6,1,0,0,15.38 +54,4,041018,231346,0.02708,21.1772,-0.02,11625.1,1,0,0,15.38 +54,4,041018,231347,0.02709,21.1766,-0.02,11623.0,1,0,0,15.39 +54,4,041018,231348,0.02714,21.1684,-0.02,11624.0,1,0,0,15.38 +54,4,041018,231349,0.02719,21.1612,-0.02,11625.2,1,0,0,15.37 +54,4,041018,231350,0.02723,21.1598,-0.02,11625.1,1,0,0,15.39 +54,4,041018,231351,0.02724,21.1618,-0.02,11624.2,1,0,0,15.38 +54,4,041018,231352,0.02719,21.1649,-0.02,11623.2,1,0,0,15.38 +54,4,041018,231353,0.02704,21.1675,-0.02,11623.6,1,0,0,15.39 +54,4,041018,231354,0.02705,21.1695,-0.02,11624.6,1,0,0,15.39 +54,4,041018,231355,0.02713,21.1674,-0.02,11624.4,1,0,0,15.38 +54,4,041018,231356,0.02727,21.1628,-0.02,11623.3,1,0,0,15.39 +54,4,041018,231357,0.02731,21.1653,-0.02,11623.9,1,0,0,15.38 +54,4,041018,231358,0.02732,21.1746,-0.02,11623.9,1,0,0,15.38 +54,4,041018,231359,0.02728,21.1808,-0.02,11624.2,1,0,0,15.38 +54,4,041018,231400,0.02714,21.1884,-0.02,11621.9,1,0,0,15.37 +54,4,041018,231401,0.02719,21.1921,-0.02,11622.3,1,0,0,15.38 +54,4,041018,231402,0.02718,21.1923,-0.02,11622.5,1,0,0,15.38 +54,4,041018,231403,0.02712,21.1944,-0.02,11622.8,1,0,0,15.38 +54,4,041018,231404,0.02715,21.1961,-0.02,11622.3,1,0,0,15.37 +54,4,041018,231405,0.02713,21.1931,-0.02,11623.1,1,0,0,15.38 +54,4,041018,231406,0.02714,21.1910,-0.02,11623.0,1,0,0,15.37 +54,4,041018,231407,0.02721,21.1851,-0.02,11623.7,1,0,0,15.38 +54,4,041018,231408,0.02718,21.1853,-0.02,11622.2,1,0,0,15.38 +54,4,041018,231409,0.02709,21.1882,-0.02,11624.2,1,0,0,15.37 +54,4,041018,231410,0.02708,21.1917,-0.02,11623.0,1,0,0,15.37 +54,4,041018,231411,0.02714,21.1941,-0.02,11624.4,1,0,0,15.37 +54,4,041018,231412,0.02713,21.1984,-0.02,11623.0,1,0,0,15.37 +54,4,041018,231413,0.02714,21.2067,-0.02,11623.4,1,0,0,15.37 +54,4,041018,231414,0.02712,21.2132,-0.02,11624.6,1,0,0,15.37 +54,4,041018,231415,0.02710,21.2221,-0.02,11624.0,1,0,0,15.37 +54,4,041018,231416,0.02708,21.2282,-0.02,11621.8,1,0,0,15.37 +54,4,041018,231417,0.02710,21.2308,-0.02,11623.8,1,0,0,15.37 +54,4,041018,231418,0.02712,21.2345,-0.02,11624.5,1,0,0,15.37 +54,4,041018,231419,0.02709,21.2392,-0.02,11624.2,1,0,0,15.37 +54,100,041018,231420,1,1,5,8,80,164199,836395,0,0,414722,0,0,0,0,1,15.37 +54,5,041018,231420,0.02708,21.2480,-0.02,11623.8,1,0,0,15.37 +54,5,041018,231421,0.02704,21.2602,-0.02,11622.5,1,0,0,15.28 +54,5,041018,231422,0.02702,21.2658,-0.02,11624.0,1,0,0,15.26 +54,5,041018,231423,0.02706,21.2666,-0.02,11623.6,1,0,0,15.18 +54,210,041018,231424,04/10/18 15:54:06 695 590 700 4130 536 +54,5,041018,231424,0.02711,21.2720,-0.02,11622.4,1,590,4130,15.23 +54,5,041018,231425,0.02717,21.2775,-0.02,11624.2,1,579,4130,15.24 +54,5,041018,231426,0.02717,21.2852,-0.02,11622.2,1,587,4130,15.23 +54,5,041018,231427,0.02706,21.2946,-0.02,11622.7,1,587,4130,15.24 +54,100,041018,231428,1,1,6,60,80,164200,836394,0,0,414722,0,0,0,0,1,15.23 +54,6,041018,231428,0.02704,21.3038,-0.02,11621.2,1,580,4130,15.23 +54,6,041018,231429,0.02713,21.3104,-0.02,11622.8,1,579,4130,15.23 +54,6,041018,231430,0.02715,21.3172,-0.02,11622.3,1,583,4130,15.24 +54,6,041018,231431,0.02706,21.3244,-0.02,11622.2,1,589,4130,15.23 +54,6,041018,231432,0.02703,21.3337,-0.02,11622.2,1,582,4130,15.23 +54,6,041018,231433,0.02700,21.3401,-0.02,11622.3,1,586,4130,15.23 +54,6,041018,231434,0.02701,21.3429,-0.02,11622.4,1,584,4130,15.22 +54,6,041018,231435,0.02713,21.3476,-0.02,11622.0,1,588,4130,15.22 +54,6,041018,231436,0.02715,21.3575,-0.02,11621.8,1,594,4130,15.22 +54,6,041018,231437,0.02706,21.3677,-0.02,11621.7,1,583,4130,15.22 +54,6,041018,231438,0.02699,21.3768,-0.02,11622.0,1,573,4130,15.21 +54,6,041018,231439,0.02704,21.3845,-0.02,11623.3,1,586,4130,15.22 +54,6,041018,231440,0.02704,21.3888,-0.02,11621.5,1,587,4130,15.22 +54,6,041018,231441,0.02702,21.3951,-0.02,11623.3,1,581,4130,15.22 +54,6,041018,231442,0.02704,21.3991,-0.02,11621.9,1,591,4130,15.22 +54,6,041018,231443,0.02707,21.4065,-0.02,11621.7,1,586,4130,15.22 +54,6,041018,231444,0.02706,21.4171,-0.02,11623.4,1,584,4130,15.22 +54,6,041018,231445,0.02696,21.4248,-0.02,11622.8,1,576,4130,15.22 +54,6,041018,231446,0.02697,21.4285,-0.02,11622.9,1,576,4130,15.21 +54,6,041018,231447,0.02701,21.4325,-0.02,11622.0,1,578,4130,15.22 +54,6,041018,231448,0.02704,21.4382,-0.02,11624.3,1,578,4130,15.22 +54,6,041018,231449,0.02711,21.4433,-0.02,11621.6,1,592,4130,15.22 +54,6,041018,231450,0.02713,21.4538,-0.02,11622.4,1,585,4130,15.22 +54,6,041018,231451,0.02701,21.4583,-0.02,11622.8,1,586,4130,15.22 +54,6,041018,231452,0.02695,21.4633,-0.02,11621.8,1,581,4130,15.22 +54,6,041018,231453,0.02697,21.4662,-0.02,11623.1,1,578,4130,15.21 +54,6,041018,231454,0.02710,21.4689,-0.02,11623.5,1,582,4130,15.22 +54,6,041018,231455,0.02716,21.4735,-0.02,11622.3,1,587,4130,15.23 +54,6,041018,231456,0.02707,21.4766,-0.02,11621.3,1,596,4130,15.21 +54,6,041018,231457,0.02699,21.4841,-0.02,11623.7,1,585,4130,15.22 +54,6,041018,231458,0.02706,21.4888,-0.02,11622.1,1,583,4130,15.22 +54,6,041018,231459,0.02701,21.4908,-0.02,11622.3,1,580,4130,15.21 +54,6,041018,231500,0.02698,21.4904,-0.02,11621.4,1,591,4130,15.21 +54,6,041018,231501,0.02706,21.4932,-0.02,11621.2,1,588,4130,15.21 +54,6,041018,231502,0.02705,21.4982,-0.02,11622.8,1,580,4130,15.21 +54,6,041018,231503,0.02704,21.5049,-0.02,11622.7,1,576,4130,15.21 +54,6,041018,231504,0.02702,21.5116,-0.02,11622.6,1,573,4130,15.22 +54,6,041018,231505,0.02700,21.5175,-0.02,11620.8,1,577,4130,15.22 +54,6,041018,231506,0.02693,21.5198,-0.02,11622.6,1,583,4130,15.22 +54,6,041018,231507,0.02695,21.5207,-0.02,11621.4,1,578,4130,15.21 +54,6,041018,231508,0.02709,21.5214,-0.02,11620.8,1,581,4130,15.21 +54,6,041018,231509,0.02708,21.5245,-0.02,11620.5,1,581,4130,15.21 +54,6,041018,231510,0.02700,21.5298,-0.02,11621.4,1,596,4130,15.22 +54,6,041018,231511,0.02697,21.5365,-0.02,11621.1,1,584,4130,15.22 +54,6,041018,231512,0.02693,21.5420,-0.02,11621.3,1,582,4130,15.22 +54,6,041018,231513,0.02698,21.5429,-0.02,11621.6,1,592,4130,15.21 +54,6,041018,231514,0.02700,21.5438,-0.02,11621.2,1,587,4130,15.22 +54,6,041018,231515,0.02701,21.5472,-0.02,11622.2,1,586,4130,15.21 +54,6,041018,231516,0.02698,21.5540,-0.02,11621.7,1,590,4130,15.21 +54,6,041018,231517,0.02690,21.5594,-0.02,11620.7,1,578,4130,15.22 +54,6,041018,231518,0.02694,21.5602,-0.02,11621.3,1,579,4130,15.21 +54,6,041018,231519,0.02700,21.5580,-0.02,11621.6,1,589,4130,15.22 +54,6,041018,231520,0.02700,21.5587,-0.02,11620.2,1,583,4130,15.21 +54,6,041018,231521,0.02697,21.5622,-0.02,11620.4,1,586,4130,15.22 +54,6,041018,231522,0.02693,21.5683,-0.02,11620.7,1,587,4130,15.21 +54,6,041018,231523,0.02688,21.5665,-0.02,11621.2,1,588,4130,15.22 +54,6,041018,231524,0.02694,21.5647,-0.02,11621.3,1,576,4130,15.21 +54,6,041018,231525,0.02705,21.5638,-0.02,11620.6,1,588,4130,15.21 +54,6,041018,231526,0.02704,21.5713,-0.02,11622.0,1,593,4130,15.21 +54,6,041018,231527,0.02692,21.5767,-0.02,11621.2,1,583,4130,15.21 +54,100,041018,231528,1,1,10,744,80,164204,836390,0,0,414722,0,0,0,0,1,15.21 +54,100,041018,232800,1,1,3,7,15,164204,836399,0,0,414722,0,0,0,0,1,15.57 +54,3,041018,232800,0.02691,21.5851,-0.02,11620.7,1,0,0,15.57 +54,230,041018,232801,3,19552,19552,19560 +54,100,041018,232807,1,1,4,15,15,164204,836399,0,0,414722,0,0,0,0,1,15.45 +54,200,041018,232808, 0.2732, 22.7544, -0.02, 11619.0, 2 +54,4,041018,232808,0.02732,22.7544,-0.02,11619.0,2,0,0,15.35 +54,4,041018,232809,0.02730,22.7534,-0.02,11621.4,2,0,0,15.40 +54,4,041018,232810,0.02721,22.6861,-0.02,11620.9,1,0,0,15.42 +54,4,041018,232811,0.02721,22.4159,-0.02,11622.5,1,0,0,15.41 +54,4,041018,232812,0.02719,22.3128,-0.02,11622.0,1,0,0,15.41 +54,4,041018,232813,0.02711,22.2297,-0.02,11621.8,1,0,0,15.42 +54,4,041018,232814,0.02717,22.1529,-0.02,11621.5,1,0,0,15.41 +54,4,041018,232815,0.02721,22.0810,-0.02,11622.1,1,0,0,15.41 +54,4,041018,232816,0.02716,22.0144,-0.02,11621.6,1,0,0,15.41 +54,4,041018,232817,0.02715,21.9626,-0.02,11622.1,1,0,0,15.41 +54,4,041018,232818,0.02717,21.9055,-0.02,11622.6,1,0,0,15.40 +54,4,041018,232819,0.02713,21.8497,-0.02,11622.1,1,0,0,15.41 +54,4,041018,232820,0.02717,21.8047,-0.02,11622.3,1,0,0,15.39 +54,4,041018,232821,0.02728,21.7629,-0.02,11622.8,1,0,0,15.40 +54,4,041018,232822,0.02732,21.7250,-0.02,11622.3,1,0,0,15.40 +54,4,041018,232823,0.02720,21.6969,-0.02,11623.2,1,0,0,15.39 +54,4,041018,232824,0.02717,21.6747,-0.02,11623.2,1,0,0,15.40 +54,4,041018,232825,0.02718,21.6590,-0.02,11622.7,1,0,0,15.40 +54,4,041018,232826,0.02715,21.6367,-0.02,11622.6,1,0,0,15.40 +54,4,041018,232827,0.02715,21.6115,-0.02,11622.8,1,0,0,15.40 +54,4,041018,232828,0.02722,21.5865,-0.02,11622.6,1,0,0,15.39 +54,4,041018,232829,0.02723,21.5699,-0.02,11622.6,1,0,0,15.38 +54,4,041018,232830,0.02718,21.5580,-0.02,11622.5,1,0,0,15.40 +54,4,041018,232831,0.02718,21.5484,-0.02,11621.4,1,0,0,15.39 +54,4,041018,232832,0.02711,21.5421,-0.02,11623.0,1,0,0,15.39 +54,4,041018,232833,0.02708,21.5298,-0.02,11621.2,1,0,0,15.40 +54,4,041018,232834,0.02713,21.5103,-0.02,11622.1,1,0,0,15.39 +54,4,041018,232835,0.02712,21.4923,-0.02,11622.7,1,0,0,15.40 +54,4,041018,232836,0.02708,21.4780,-0.02,11621.3,1,0,0,15.39 +54,4,041018,232837,0.02713,21.4758,-0.02,11622.6,1,0,0,15.39 +54,4,041018,232838,0.02713,21.4761,-0.02,11622.8,1,0,0,15.39 +54,4,041018,232839,0.02712,21.4782,-0.02,11622.6,1,0,0,15.38 +54,4,041018,232840,0.02706,21.4774,-0.02,11622.7,1,0,0,15.38 +54,4,041018,232841,0.02709,21.4681,-0.02,11622.0,1,0,0,15.38 +54,4,041018,232842,0.02711,21.4592,-0.02,11621.8,1,0,0,15.39 +54,4,041018,232843,0.02715,21.4552,-0.02,11622.6,1,0,0,15.39 +54,4,041018,232844,0.02712,21.4574,-0.02,11622.8,1,0,0,15.38 +54,4,041018,232845,0.02705,21.4640,-0.02,11622.8,1,0,0,15.38 +54,4,041018,232846,0.02712,21.4692,-0.02,11622.0,1,0,0,15.39 +54,4,041018,232847,0.02711,21.4629,-0.02,11623.3,1,0,0,15.38 +54,4,041018,232848,0.02708,21.4566,-0.02,11622.4,1,0,0,15.39 +54,4,041018,232849,0.02712,21.4575,-0.02,11622.7,1,0,0,15.39 +54,4,041018,232850,0.02722,21.4634,-0.02,11622.7,1,0,0,15.38 +54,4,041018,232851,0.02718,21.4681,-0.02,11622.2,1,0,0,15.38 +54,4,041018,232852,0.02707,21.4777,-0.02,11621.7,1,0,0,15.38 +54,4,041018,232853,0.02703,21.4814,-0.02,11622.4,1,0,0,15.38 +54,4,041018,232854,0.02711,21.4782,-0.02,11624.3,1,0,0,15.39 +54,4,041018,232855,0.02717,21.4709,-0.02,11623.7,1,0,0,15.39 +54,4,041018,232856,0.02715,21.4684,-0.02,11622.0,1,0,0,15.38 +54,4,041018,232857,0.02710,21.4757,-0.02,11621.5,1,0,0,15.38 +54,4,041018,232858,0.02712,21.4872,-0.02,11621.3,1,0,0,15.39 +54,4,041018,232859,0.02708,21.4926,-0.02,11623.4,1,0,0,15.38 +54,4,041018,232900,0.02707,21.4926,-0.02,11621.9,1,0,0,15.38 +54,4,041018,232901,0.02718,21.4936,-0.02,11621.2,1,0,0,15.38 +54,4,041018,232902,0.02710,21.4911,-0.02,11621.4,1,0,0,15.39 +54,4,041018,232903,0.02707,21.4850,-0.02,11622.6,1,0,0,15.38 +54,4,041018,232904,0.02714,21.4835,-0.02,11622.5,1,0,0,15.38 +54,4,041018,232905,0.02716,21.4823,-0.02,11622.4,1,0,0,15.38 +54,4,041018,232906,0.02710,21.4840,-0.02,11622.3,1,0,0,15.38 +54,4,041018,232907,0.02712,21.4922,-0.02,11621.9,1,0,0,15.38 +54,4,041018,232908,0.02711,21.4966,-0.02,11622.8,1,0,0,15.38 +54,4,041018,232909,0.02702,21.4995,-0.02,11622.8,1,0,0,15.38 +54,4,041018,232910,0.02706,21.5025,-0.02,11622.1,1,0,0,15.38 +54,4,041018,232911,0.02710,21.5043,-0.02,11621.8,1,0,0,15.38 +54,4,041018,232912,0.02706,21.5035,-0.02,11621.6,1,0,0,15.38 +54,4,041018,232913,0.02710,21.5106,-0.02,11621.3,1,0,0,15.38 +54,4,041018,232914,0.02712,21.5149,-0.02,11623.2,1,0,0,15.37 +54,4,041018,232915,0.02711,21.5159,-0.02,11620.9,1,0,0,15.37 +54,4,041018,232916,0.02706,21.5180,-0.02,11622.7,1,0,0,15.38 +54,4,041018,232917,0.02707,21.5219,-0.02,11622.6,1,0,0,15.37 +54,4,041018,232918,0.02706,21.5225,-0.02,11621.4,1,0,0,15.38 +54,4,041018,232919,0.02707,21.5258,-0.02,11622.8,1,0,0,15.38 +54,100,041018,232920,1,1,5,8,80,164209,836395,0,0,414722,0,0,0,0,1,15.38 +54,5,041018,232920,0.02708,21.5218,-0.02,11622.2,1,0,0,15.38 +54,5,041018,232921,0.02704,21.5206,-0.02,11620.8,1,0,0,15.29 +54,5,041018,232922,0.02702,21.5249,-0.02,11622.1,1,0,0,15.27 +54,5,041018,232923,0.02710,21.5355,-0.02,11623.3,1,0,0,15.19 +54,210,041018,232924,04/10/18 16:09:06 695 588 700 4130 536 +54,5,041018,232924,0.02706,21.5460,-0.02,11621.2,1,588,4130,15.24 +54,5,041018,232925,0.02700,21.5538,-0.02,11622.2,1,593,4130,15.24 +54,5,041018,232926,0.02703,21.5605,-0.02,11622.1,1,587,4130,15.25 +54,5,041018,232927,0.02701,21.5645,-0.02,11622.7,1,582,4130,15.24 +54,100,041018,232928,1,1,6,60,80,164209,836394,0,0,414722,0,0,0,0,1,15.24 +54,6,041018,232928,0.02704,21.5721,-0.02,11622.6,1,591,4130,15.24 +54,6,041018,232929,0.02710,21.5856,-0.02,11621.7,1,593,4130,15.23 +54,6,041018,232930,0.02706,21.5979,-0.02,11620.6,1,592,4130,15.22 +54,6,041018,232931,0.02702,21.6088,-0.02,11621.7,1,591,4130,15.24 +54,6,041018,232932,0.02706,21.6200,-0.02,11622.3,1,578,4130,15.24 +54,6,041018,232933,0.02709,21.6234,-0.02,11621.5,1,593,4130,15.24 +54,6,041018,232934,0.02707,21.6300,-0.02,11622.2,1,584,4130,15.23 +54,6,041018,232935,0.02703,21.6407,-0.02,11622.8,1,591,4130,15.23 +54,6,041018,232936,0.02708,21.6533,-0.02,11622.8,1,589,4130,15.23 +54,6,041018,232937,0.02702,21.6598,-0.02,11620.8,1,582,4130,15.22 +54,6,041018,232938,0.02699,21.6627,-0.02,11621.5,1,588,4130,15.22 +54,6,041018,232939,0.02702,21.6632,-0.02,11622.2,1,601,4130,15.23 +54,6,041018,232940,0.02704,21.6650,-0.02,11622.0,1,582,4130,15.22 +54,6,041018,232941,0.02703,21.6658,-0.02,11622.6,1,585,4130,15.23 +54,6,041018,232942,0.02706,21.6698,-0.02,11621.8,1,593,4130,15.22 +54,6,041018,232943,0.02704,21.6740,-0.02,11621.3,1,585,4130,15.22 +54,6,041018,232944,0.02702,21.6747,-0.02,11622.0,1,584,4130,15.22 +54,6,041018,232945,0.02702,21.6722,-0.02,11621.4,1,578,4130,15.22 +54,6,041018,232946,0.02705,21.6747,-0.02,11620.8,1,587,4130,15.22 +54,6,041018,232947,0.02707,21.6807,-0.02,11621.5,1,590,4130,15.22 +54,6,041018,232948,0.02699,21.6857,-0.02,11623.7,1,585,4130,15.22 +54,6,041018,232949,0.02701,21.6935,-0.02,11623.3,1,589,4130,15.22 +54,6,041018,232950,0.02700,21.7022,-0.02,11622.8,1,594,4130,15.23 +54,6,041018,232951,0.02701,21.7044,-0.02,11622.1,1,589,4130,15.22 +54,6,041018,232952,0.02696,21.7061,-0.02,11622.6,1,581,4130,15.22 +54,6,041018,232953,0.02701,21.7149,-0.02,11621.8,1,583,4130,15.21 +54,6,041018,232954,0.02707,21.7209,-0.02,11621.3,1,591,4130,15.21 +54,6,041018,232955,0.02702,21.7249,-0.02,11621.5,1,588,4130,15.22 +54,6,041018,232956,0.02695,21.7305,-0.02,11622.9,1,587,4130,15.21 +54,6,041018,232957,0.02699,21.7407,-0.02,11623.2,1,586,4130,15.21 +54,6,041018,232958,0.02703,21.7464,-0.02,11621.0,1,590,4130,15.21 +54,6,041018,232959,0.02694,21.7484,-0.02,11622.8,1,593,4130,15.22 +54,6,041018,233000,0.02698,21.7515,-0.02,11622.7,1,591,4130,15.22 +54,6,041018,233001,0.02701,21.7543,-0.02,11621.3,1,593,4130,15.21 +54,6,041018,233002,0.02698,21.7572,-0.02,11622.2,1,589,4130,15.22 +54,6,041018,233003,0.02700,21.7678,-0.02,11621.7,1,581,4130,15.22 +54,6,041018,233004,0.02703,21.7774,-0.02,11621.6,1,590,4130,15.22 +54,6,041018,233005,0.02702,21.7805,-0.02,11621.7,1,588,4130,15.22 +54,6,041018,233006,0.02689,21.7850,-0.02,11621.2,1,578,4130,15.22 +54,6,041018,233007,0.02704,21.7835,-0.02,11622.4,1,592,4130,15.22 +54,6,041018,233008,0.02713,21.7854,-0.02,11622.0,1,587,4130,15.21 +54,6,041018,233009,0.02699,21.7886,-0.02,11623.0,1,589,4130,15.22 +54,6,041018,233010,0.02702,21.7959,-0.02,11621.4,1,585,4130,15.21 +54,6,041018,233011,0.02705,21.8051,-0.02,11620.8,1,586,4130,15.21 +54,6,041018,233012,0.02704,21.8095,-0.02,11621.3,1,597,4130,15.22 +54,6,041018,233013,0.02701,21.8162,-0.02,11621.0,1,591,4130,15.21 +54,6,041018,233014,0.02695,21.8241,-0.02,11621.1,1,584,4130,15.21 +54,6,041018,233015,0.02701,21.8303,-0.02,11621.4,1,591,4130,15.21 +54,6,041018,233016,0.02703,21.8323,-0.02,11621.5,1,586,4130,15.22 +54,6,041018,233017,0.02700,21.8337,-0.02,11620.4,1,587,4130,15.21 +54,6,041018,233018,0.02695,21.8350,-0.02,11621.4,1,588,4130,15.22 +54,6,041018,233019,0.02697,21.8380,-0.02,11620.2,1,591,4130,15.21 +54,6,041018,233020,0.02696,21.8430,-0.02,11620.3,1,581,4130,15.21 +54,6,041018,233021,0.02696,21.8482,-0.02,11620.9,1,589,4130,15.22 +54,6,041018,233022,0.02693,21.8491,-0.02,11619.4,1,588,4130,15.22 +54,6,041018,233023,0.02693,21.8454,-0.02,11621.1,1,587,4130,15.22 +54,6,041018,233024,0.02694,21.8466,-0.02,11620.1,1,590,4130,15.21 +54,6,041018,233025,0.02702,21.8518,-0.02,11620.9,1,597,4130,15.22 +54,6,041018,233026,0.02698,21.8594,-0.02,11619.2,1,591,4130,15.21 +54,6,041018,233027,0.02695,21.8663,-0.02,11620.9,1,579,4130,15.21 +54,100,041018,233028,1,1,10,744,80,164213,836390,0,0,414722,0,0,0,0,1,15.21 +54,100,041018,234300,1,1,3,7,15,164213,836383,0,0,414722,0,0,0,0,1,15.57 +54,3,041018,234300,0.02695,21.8732,-0.02,11621.9,1,0,0,15.57 +54,230,041018,234301,3,19544,19560,19560 +54,100,041018,234307,1,1,4,15,15,164213,836383,0,0,414722,0,0,0,0,1,15.45 +54,200,041018,234308, 0.2735, 22.9567, -0.02, 11620.4, 2 +54,4,041018,234308,0.02735,22.9567,-0.02,11620.4,2,0,0,15.35 +54,4,041018,234309,0.02733,22.9568,-0.02,11620.6,2,0,0,15.38 +54,4,041018,234310,0.02714,22.8844,-0.02,11620.8,1,0,0,15.42 +54,4,041018,234311,0.02706,22.5581,-0.02,11620.6,1,0,0,15.42 +54,4,041018,234312,0.02706,22.4153,-0.02,11620.6,1,0,0,15.41 +54,4,041018,234313,0.02714,22.3171,-0.02,11621.6,1,0,0,15.42 +54,4,041018,234314,0.02722,22.2419,-0.02,11621.6,1,0,0,15.40 +54,4,041018,234315,0.02725,22.1816,-0.02,11623.6,1,0,0,15.40 +54,4,041018,234316,0.02720,22.1274,-0.02,11622.0,1,0,0,15.40 +54,4,041018,234317,0.02713,22.0667,-0.02,11621.8,1,0,0,15.40 +54,4,041018,234318,0.02710,22.0081,-0.02,11622.6,1,0,0,15.40 +54,4,041018,234319,0.02711,21.9552,-0.02,11621.7,1,0,0,15.39 +54,4,041018,234320,0.02717,21.9117,-0.02,11622.5,1,0,0,15.40 +54,4,041018,234321,0.02718,21.8777,-0.02,11623.0,1,0,0,15.40 +54,4,041018,234322,0.02711,21.8474,-0.02,11621.4,1,0,0,15.41 +54,4,041018,234323,0.02705,21.8154,-0.02,11622.2,1,0,0,15.39 +54,4,041018,234324,0.02716,21.7825,-0.02,11622.3,1,0,0,15.40 +54,4,041018,234325,0.02720,21.7547,-0.02,11622.9,1,0,0,15.39 +54,4,041018,234326,0.02716,21.7323,-0.02,11622.3,1,0,0,15.38 +54,4,041018,234327,0.02709,21.7171,-0.02,11621.7,1,0,0,15.40 +54,4,041018,234328,0.02707,21.7010,-0.02,11623.1,1,0,0,15.40 +54,4,041018,234329,0.02708,21.6775,-0.02,11621.7,1,0,0,15.40 +54,4,041018,234330,0.02705,21.6471,-0.02,11621.8,1,0,0,15.39 +54,4,041018,234331,0.02705,21.6258,-0.02,11623.4,1,0,0,15.39 +54,4,041018,234332,0.02716,21.6102,-0.02,11622.5,1,0,0,15.38 +54,4,041018,234333,0.02718,21.5974,-0.02,11623.3,1,0,0,15.39 +54,4,041018,234334,0.02713,21.5949,-0.02,11622.8,1,0,0,15.40 +54,4,041018,234335,0.02706,21.5893,-0.02,11621.6,1,0,0,15.40 +54,4,041018,234336,0.02705,21.5702,-0.02,11623.8,1,0,0,15.40 +54,4,041018,234337,0.02708,21.5529,-0.02,11622.9,1,0,0,15.40 +54,4,041018,234338,0.02713,21.5422,-0.02,11622.1,1,0,0,15.40 +54,4,041018,234339,0.02709,21.5354,-0.02,11624.3,1,0,0,15.40 +54,4,041018,234340,0.02704,21.5374,-0.02,11624.0,1,0,0,15.38 +54,4,041018,234341,0.02711,21.5391,-0.02,11622.8,1,0,0,15.40 +54,4,041018,234342,0.02704,21.5331,-0.02,11622.9,1,0,0,15.40 +54,4,041018,234343,0.02702,21.5212,-0.02,11622.5,1,0,0,15.40 +54,4,041018,234344,0.02716,21.5177,-0.02,11623.9,1,0,0,15.39 +54,4,041018,234345,0.02733,21.5247,-0.02,11622.6,1,0,0,15.40 +54,4,041018,234346,0.02731,21.5391,-0.02,11623.0,1,0,0,15.38 +54,4,041018,234347,0.02713,21.5489,-0.02,11623.2,1,0,0,15.39 +54,4,041018,234348,0.02704,21.5547,-0.02,11623.4,1,0,0,15.38 +54,4,041018,234349,0.02709,21.5515,-0.02,11622.3,1,0,0,15.39 +54,4,041018,234350,0.02711,21.5486,-0.02,11624.7,1,0,0,15.39 +54,4,041018,234351,0.02716,21.5476,-0.02,11623.3,1,0,0,15.38 +54,4,041018,234352,0.02714,21.5493,-0.02,11623.8,1,0,0,15.39 +54,4,041018,234353,0.02708,21.5517,-0.02,11624.3,1,0,0,15.38 +54,4,041018,234354,0.02710,21.5615,-0.02,11622.7,1,0,0,15.38 +54,4,041018,234355,0.02711,21.5677,-0.02,11624.6,1,0,0,15.38 +54,4,041018,234356,0.02706,21.5717,-0.02,11623.4,1,0,0,15.39 +54,4,041018,234357,0.02697,21.5677,-0.02,11622.4,1,0,0,15.38 +54,4,041018,234358,0.02697,21.5631,-0.02,11621.4,1,0,0,15.38 +54,4,041018,234359,0.02704,21.5599,-0.02,11622.2,1,0,0,15.39 +54,4,041018,234400,0.02710,21.5622,-0.02,11622.5,1,0,0,15.39 +54,4,041018,234401,0.02711,21.5687,-0.02,11623.3,1,0,0,15.38 +54,4,041018,234402,0.02709,21.5775,-0.02,11623.6,1,0,0,15.38 +54,4,041018,234403,0.02705,21.5891,-0.02,11623.1,1,0,0,15.38 +54,4,041018,234404,0.02709,21.6009,-0.02,11621.9,1,0,0,15.38 +54,4,041018,234405,0.02704,21.6096,-0.02,11622.8,1,0,0,15.38 +54,4,041018,234406,0.02698,21.6140,-0.02,11621.4,1,0,0,15.38 +54,4,041018,234407,0.02708,21.6137,-0.02,11621.4,1,0,0,15.38 +54,4,041018,234408,0.02707,21.6137,-0.02,11622.2,1,0,0,15.39 +54,4,041018,234409,0.02702,21.6171,-0.02,11622.8,1,0,0,15.38 +54,4,041018,234410,0.02701,21.6152,-0.02,11620.5,1,0,0,15.38 +54,4,041018,234411,0.02702,21.6157,-0.02,11621.6,1,0,0,15.38 +54,4,041018,234412,0.02705,21.6173,-0.02,11622.6,1,0,0,15.37 +54,4,041018,234413,0.02706,21.6207,-0.02,11622.3,1,0,0,15.37 +54,4,041018,234414,0.02705,21.6263,-0.02,11621.4,1,0,0,15.38 +54,4,041018,234415,0.02700,21.6331,-0.02,11622.4,1,0,0,15.38 +54,4,041018,234416,0.02694,21.6398,-0.02,11621.5,1,0,0,15.38 +54,4,041018,234417,0.02699,21.6429,-0.02,11620.8,1,0,0,15.38 +54,4,041018,234418,0.02702,21.6465,-0.02,11621.1,1,0,0,15.38 +54,4,041018,234419,0.02700,21.6506,-0.02,11620.0,1,0,0,15.38 +54,100,041018,234420,1,1,5,8,80,164218,836379,0,0,414722,0,0,0,0,1,15.37 +54,5,041018,234420,0.02694,21.6545,-0.02,11621.5,1,0,0,15.37 +54,5,041018,234421,0.02695,21.6566,-0.02,11623.1,1,0,0,15.28 +54,5,041018,234422,0.02698,21.6561,-0.02,11622.6,1,0,0,15.28 +54,5,041018,234423,0.02706,21.6635,-0.02,11621.8,1,0,0,15.19 +54,210,041018,234424,04/10/18 16:24:06 695 586 700 4130 536 +54,5,041018,234424,0.02703,21.6796,-0.02,11622.4,1,586,4130,15.24 +54,5,041018,234425,0.02696,21.6991,-0.02,11622.4,1,592,4130,15.24 +54,5,041018,234426,0.02695,21.7182,-0.02,11621.9,1,590,4130,15.24 +54,5,041018,234427,0.02694,21.7241,-0.02,11621.6,1,586,4130,15.23 +54,100,041018,234428,1,1,6,60,80,164219,836378,0,0,414722,0,0,0,0,1,15.23 +54,6,041018,234428,0.02695,21.7212,-0.02,11622.0,1,576,4130,15.23 +54,6,041018,234429,0.02697,21.7257,-0.02,11623.3,1,591,4130,15.24 +54,6,041018,234430,0.02708,21.7382,-0.02,11622.6,1,603,4130,15.23 +54,6,041018,234431,0.02710,21.7509,-0.02,11622.7,1,582,4130,15.22 +54,6,041018,234432,0.02693,21.7595,-0.02,11622.8,1,594,4130,15.23 +54,6,041018,234433,0.02693,21.7666,-0.02,11622.8,1,577,4130,15.23 +54,6,041018,234434,0.02697,21.7617,-0.02,11622.7,1,592,4130,15.23 +54,6,041018,234435,0.02703,21.7635,-0.02,11622.7,1,598,4130,15.22 +54,6,041018,234436,0.02706,21.7671,-0.02,11621.4,1,588,4130,15.24 +54,6,041018,234437,0.02708,21.7812,-0.02,11621.6,1,599,4130,15.22 +54,6,041018,234438,0.02700,21.7968,-0.02,11622.5,1,589,4130,15.22 +54,6,041018,234439,0.02701,21.8109,-0.02,11623.2,1,586,4130,15.23 +54,6,041018,234440,0.02697,21.8165,-0.02,11621.3,1,585,4130,15.23 +54,6,041018,234441,0.02696,21.8139,-0.02,11622.1,1,592,4130,15.22 +54,6,041018,234442,0.02692,21.8136,-0.02,11622.8,1,585,4130,15.22 +54,6,041018,234443,0.02696,21.8135,-0.02,11622.2,1,585,4130,15.22 +54,6,041018,234444,0.02698,21.8152,-0.02,11622.6,1,572,4130,15.23 +54,6,041018,234445,0.02704,21.8261,-0.02,11624.6,1,586,4130,15.23 +54,6,041018,234446,0.02704,21.8392,-0.02,11623.1,1,586,4130,15.23 +54,6,041018,234447,0.02691,21.8537,-0.02,11624.2,1,585,4130,15.22 +54,6,041018,234448,0.02685,21.8669,-0.02,11622.6,1,577,4130,15.22 +54,6,041018,234449,0.02696,21.8700,-0.02,11622.9,1,583,4130,15.22 +54,6,041018,234450,0.02706,21.8647,-0.02,11622.8,1,579,4130,15.22 +54,6,041018,234451,0.02704,21.8593,-0.02,11622.3,1,588,4130,15.23 +54,6,041018,234452,0.02700,21.8627,-0.02,11622.1,1,595,4130,15.23 +54,6,041018,234453,0.02703,21.8706,-0.02,11624.1,1,590,4130,15.22 +54,6,041018,234454,0.02701,21.8782,-0.02,11622.6,1,587,4130,15.22 +54,6,041018,234455,0.02693,21.8769,-0.02,11622.5,1,592,4130,15.22 +54,6,041018,234456,0.02692,21.8814,-0.02,11622.3,1,583,4130,15.22 +54,6,041018,234457,0.02700,21.8881,-0.03,11624.2,1,592,4130,15.22 +54,6,041018,234458,0.02713,21.9037,-0.02,11622.9,1,602,4130,15.22 +54,6,041018,234459,0.02702,21.9114,-0.02,11621.1,1,585,4130,15.22 +54,6,041018,234500,0.02696,21.9162,-0.02,11621.0,1,591,4130,15.22 +54,6,041018,234501,0.02698,21.9168,-0.02,11623.9,1,580,4130,15.22 +54,6,041018,234502,0.02697,21.9119,-0.02,11622.8,1,578,4130,15.22 +54,6,041018,234503,0.02697,21.9106,-0.02,11623.3,1,582,4130,15.21 +54,6,041018,234504,0.02697,21.9115,-0.02,11621.7,1,598,4130,15.22 +54,6,041018,234505,0.02696,21.9162,-0.02,11621.9,1,595,4130,15.22 +54,6,041018,234506,0.02699,21.9225,-0.02,11621.3,1,595,4130,15.22 +54,6,041018,234507,0.02702,21.9253,-0.02,11622.4,1,593,4130,15.22 +54,6,041018,234508,0.02697,21.9309,-0.02,11622.6,1,595,4130,15.22 +54,6,041018,234509,0.02688,21.9368,-0.02,11623.4,1,585,4130,15.22 +54,6,041018,234510,0.02693,21.9485,-0.02,11622.1,1,583,4130,15.22 +54,6,041018,234511,0.02693,21.9539,-0.02,11621.7,1,585,4130,15.22 +54,6,041018,234512,0.02686,21.9536,-0.02,11623.4,1,588,4130,15.22 +54,6,041018,234513,0.02689,21.9532,-0.02,11622.3,1,596,4130,15.22 +54,6,041018,234514,0.02699,21.9552,-0.02,11622.2,1,588,4130,15.22 +54,6,041018,234515,0.02697,21.9617,-0.02,11622.5,1,592,4130,15.21 +54,6,041018,234516,0.02691,21.9758,-0.02,11623.6,1,595,4130,15.22 +54,6,041018,234517,0.02686,21.9895,-0.02,11622.1,1,593,4130,15.22 +54,6,041018,234518,0.02681,21.9965,-0.02,11621.7,1,589,4130,15.21 +54,6,041018,234519,0.02684,21.9938,-0.02,11621.7,1,586,4130,15.22 +54,6,041018,234520,0.02690,21.9915,-0.02,11622.6,1,600,4130,15.21 +54,6,041018,234521,0.02694,21.9929,-0.02,11622.2,1,602,4130,15.21 +54,6,041018,234522,0.02697,22.0062,-0.02,11622.3,1,589,4130,15.21 +54,6,041018,234523,0.02690,22.0150,-0.02,11623.3,1,573,4130,15.21 +54,6,041018,234524,0.02685,22.0229,-0.02,11623.0,1,587,4130,15.22 +54,6,041018,234525,0.02687,22.0239,-0.02,11622.6,1,588,4130,15.22 +54,6,041018,234526,0.02683,22.0199,-0.02,11623.7,1,596,4130,15.22 +54,6,041018,234527,0.02691,22.0188,-0.02,11622.0,1,583,4130,15.21 +54,100,041018,234528,1,1,10,744,80,164223,836374,0,0,414722,0,0,0,0,1,15.21 +54,100,041018,235800,1,1,3,7,15,164223,836383,0,0,414722,0,0,0,0,1,15.57 +54,3,041018,235800,0.02700,22.0277,-0.02,11622.6,1,0,0,15.57 +54,230,041018,235801,3,19552,19552,19560 +54,100,041018,235807,1,1,4,15,15,164223,836383,0,0,414722,0,0,0,0,1,15.45 +54,200,041018,235808, 0.2716, 23.1121, -0.02, 11618.8, 2 +54,4,041018,235808,0.02716,23.1121,-0.02,11618.8,2,0,0,15.35 +54,4,041018,235809,0.02711,23.1133,-0.02,11620.4,2,0,0,15.38 +54,4,041018,235810,0.02696,23.0345,-0.02,11619.2,1,0,0,15.42 +54,4,041018,235811,0.02674,22.6859,-0.02,11621.9,1,0,0,15.41 +54,4,041018,235812,0.02684,22.5430,-0.02,11621.4,1,0,0,15.41 +54,4,041018,235813,0.02692,22.4368,-0.02,11620.4,1,0,0,15.40 +54,4,041018,235814,0.02702,22.3551,-0.02,11620.7,1,0,0,15.40 +54,4,041018,235815,0.02711,22.2934,-0.02,11620.2,1,0,0,15.40 +54,4,041018,235816,0.02704,22.2344,-0.02,11622.6,1,0,0,15.40 +54,4,041018,235817,0.02700,22.1787,-0.02,11621.4,1,0,0,15.40 +54,4,041018,235818,0.02697,22.1219,-0.02,11622.1,1,0,0,15.40 +54,4,041018,235819,0.02692,22.0650,-0.02,11621.3,1,0,0,15.40 +54,4,041018,235820,0.02690,22.0178,-0.02,11621.3,1,0,0,15.40 +54,4,041018,235821,0.02694,21.9785,-0.02,11621.0,1,0,0,15.40 +54,4,041018,235822,0.02691,21.9328,-0.02,11622.4,1,0,0,15.40 +54,4,041018,235823,0.02688,21.8856,-0.02,11623.1,1,0,0,15.38 +54,4,041018,235824,0.02696,21.8398,-0.02,11621.9,1,0,0,15.39 +54,4,041018,235825,0.02695,21.8018,-0.02,11622.2,1,0,0,15.38 +54,4,041018,235826,0.02681,21.7712,-0.02,11621.9,1,0,0,15.39 +54,4,041018,235827,0.02686,21.7418,-0.02,11621.7,1,0,0,15.39 +54,4,041018,235828,0.02691,21.7082,-0.02,11622.4,1,0,0,15.39 +54,4,041018,235829,0.02687,21.6769,-0.02,11621.5,1,0,0,15.39 +54,4,041018,235830,0.02694,21.6568,-0.02,11621.9,1,0,0,15.39 +54,4,041018,235831,0.02695,21.6451,-0.02,11621.0,1,0,0,15.40 +54,4,041018,235832,0.02695,21.6457,-0.02,11621.7,1,0,0,15.39 +54,4,041018,235833,0.02687,21.6457,-0.02,11623.5,1,0,0,15.38 +54,4,041018,235834,0.02680,21.6476,-0.02,11620.9,1,0,0,15.38 +54,4,041018,235835,0.02683,21.6504,-0.02,11621.7,1,0,0,15.38 +54,4,041018,235836,0.02690,21.6480,-0.02,11621.7,1,0,0,15.40 +54,4,041018,235837,0.02686,21.6368,-0.02,11622.3,1,0,0,15.40 +54,4,041018,235838,0.02687,21.6122,-0.02,11621.1,1,0,0,15.38 +54,4,041018,235839,0.02694,21.5950,-0.02,11621.6,1,0,0,15.38 +54,4,041018,235840,0.02701,21.5981,-0.02,11622.7,1,0,0,15.38 +54,4,041018,235841,0.02699,21.6090,-0.02,11622.1,1,0,0,15.38 +54,4,041018,235842,0.02692,21.6191,-0.02,11621.2,1,0,0,15.38 +54,4,041018,235843,0.02678,21.6190,-0.02,11622.2,1,0,0,15.38 +54,4,041018,235844,0.02678,21.6089,-0.02,11621.2,1,0,0,15.39 +54,4,041018,235845,0.02697,21.5949,-0.02,11621.2,1,0,0,15.38 +54,4,041018,235846,0.02701,21.5919,-0.02,11622.0,1,0,0,15.38 +54,4,041018,235847,0.02698,21.5992,-0.02,11622.8,1,0,0,15.38 +54,4,041018,235848,0.02692,21.6107,-0.02,11622.1,1,0,0,15.38 +54,4,041018,235849,0.02689,21.6129,-0.02,11620.4,1,0,0,15.38 +54,4,041018,235850,0.02688,21.6102,-0.02,11621.4,1,0,0,15.38 +54,4,041018,235851,0.02687,21.6041,-0.02,11622.0,1,0,0,15.38 +54,4,041018,235852,0.02687,21.5982,-0.02,11620.7,1,0,0,15.38 +54,4,041018,235853,0.02688,21.6017,-0.02,11622.0,1,0,0,15.38 +54,4,041018,235854,0.02685,21.6129,-0.02,11622.0,1,0,0,15.37 +54,4,041018,235855,0.02681,21.6239,-0.02,11622.9,1,0,0,15.38 +54,4,041018,235856,0.02675,21.6268,-0.02,11622.0,1,0,0,15.38 +54,4,041018,235857,0.02677,21.6190,-0.02,11621.6,1,0,0,15.39 +54,4,041018,235858,0.02688,21.6146,-0.02,11620.6,1,0,0,15.38 +54,4,041018,235859,0.02696,21.6229,-0.02,11622.6,1,0,0,15.37 +54,4,041018,235900,0.02689,21.6367,-0.02,11620.8,1,0,0,15.38 +54,4,041018,235901,0.02680,21.6525,-0.02,11620.3,1,0,0,15.38 +54,4,041018,235902,0.02687,21.6625,-0.02,11622.3,1,0,0,15.37 +54,4,041018,235903,0.02698,21.6633,-0.02,11621.3,1,0,0,15.38 +54,4,041018,235904,0.02688,21.6585,-0.02,11621.5,1,0,0,15.38 +54,4,041018,235905,0.02684,21.6654,-0.02,11621.2,1,0,0,15.38 +54,4,041018,235906,0.02685,21.6796,-0.02,11620.9,1,0,0,15.38 +54,4,041018,235907,0.02676,21.6967,-0.02,11621.1,1,0,0,15.38 +54,4,041018,235908,0.02675,21.7085,-0.02,11621.4,1,0,0,15.38 +54,4,041018,235909,0.02686,21.7098,-0.02,11622.5,1,0,0,15.38 +54,4,041018,235910,0.02688,21.7040,-0.02,11622.2,1,0,0,15.38 +54,4,041018,235911,0.02682,21.7082,-0.02,11620.8,1,0,0,15.38 +54,4,041018,235912,0.02689,21.7223,-0.02,11620.8,1,0,0,15.37 +54,4,041018,235913,0.02685,21.7350,-0.02,11621.6,1,0,0,15.38 +54,4,041018,235914,0.02678,21.7408,-0.02,11621.7,1,0,0,15.38 +54,4,041018,235915,0.02679,21.7436,-0.02,11619.8,1,0,0,15.38 +54,4,041018,235916,0.02692,21.7457,-0.02,11621.4,1,0,0,15.38 +54,4,041018,235917,0.02684,21.7493,-0.02,11620.7,1,0,0,15.38 +54,4,041018,235918,0.02675,21.7683,-0.02,11621.5,1,0,0,15.38 +54,4,041018,235919,0.02671,21.7844,-0.02,11621.4,1,0,0,15.38 +54,100,041018,235920,1,1,5,8,80,164227,836379,0,0,414722,0,0,0,0,1,15.38 +54,5,041018,235920,0.02679,21.7890,-0.02,11620.5,1,0,0,15.38 +54,5,041018,235921,0.02684,21.7894,-0.02,11621.1,1,0,0,15.28 +54,5,041018,235922,0.02686,21.7853,-0.02,11622.1,1,0,0,15.27 +54,5,041018,235923,0.02682,21.7854,-0.02,11621.9,1,0,0,15.19 +54,210,041018,235924,04/10/18 16:39:06 695 586 700 4130 536 +54,5,041018,235924,0.02678,21.7802,-0.02,11620.9,1,586,4130,15.24 +54,5,041018,235925,0.02683,21.7735,-0.02,11621.6,1,600,4130,15.24 +54,5,041018,235926,0.02684,21.7707,-0.02,11621.6,1,583,4130,15.24 +54,5,041018,235927,0.02677,21.7714,-0.02,11621.0,1,595,4130,15.24 +54,100,041018,235928,1,1,6,60,80,164228,836378,0,0,414722,0,0,0,0,1,15.24 +54,6,041018,235928,0.02666,21.7772,-0.02,11620.8,1,576,4130,15.24 +54,6,041018,235929,0.02667,21.7770,-0.02,11621.4,1,578,4130,15.24 +54,6,041018,235930,0.02684,21.7641,-0.02,11620.6,1,590,4130,15.24 +54,6,041018,235931,0.02692,21.7595,-0.02,11621.1,1,610,4130,15.23 +54,6,041018,235932,0.02693,21.7645,-0.02,11622.0,1,583,4130,15.23 +54,6,041018,235933,0.02692,21.7786,-0.02,11619.0,1,601,4130,15.24 +54,6,041018,235934,0.02684,21.7869,-0.02,11619.7,1,602,4130,15.23 +54,6,041018,235935,0.02686,21.7869,-0.02,11621.1,1,592,4130,15.23 +54,6,041018,235936,0.02682,21.7837,-0.02,11621.4,1,588,4130,15.24 +54,6,041018,235937,0.02669,21.7881,-0.02,11619.8,1,580,4130,15.23 +54,6,041018,235938,0.02672,21.8009,-0.02,11620.9,1,599,4130,15.23 +54,6,041018,235939,0.02682,21.8046,-0.02,11620.9,1,605,4130,15.23 +54,6,041018,235940,0.02687,21.8080,-0.02,11620.9,1,604,4130,15.22 +54,6,041018,235941,0.02688,21.8053,-0.02,11621.7,1,579,4130,15.22 +54,6,041018,235942,0.02680,21.8069,-0.02,11621.0,1,595,4130,15.22 +54,6,041018,235943,0.02671,21.8206,-0.02,11620.0,1,589,4130,15.23 +54,6,041018,235944,0.02674,21.8338,-0.02,11620.3,1,582,4130,15.22 +54,6,041018,235945,0.02673,21.8359,-0.02,11620.9,1,582,4130,15.23 +54,6,041018,235946,0.02675,21.8383,-0.02,11621.8,1,576,4130,15.22 +54,6,041018,235947,0.02683,21.8477,-0.02,11619.9,1,575,4130,15.23 +54,6,041018,235948,0.02682,21.8700,-0.02,11621.2,1,576,4130,15.23 +54,6,041018,235949,0.02673,21.8919,-0.02,11620.0,1,592,4130,15.22 +54,6,041018,235950,0.02674,21.9131,-0.02,11620.4,1,602,4130,15.22 +54,6,041018,235951,0.02678,21.9258,-0.02,11620.9,1,602,4130,15.22 +54,6,041018,235952,0.02671,21.9297,-0.02,11619.5,1,575,4130,15.22 +54,6,041018,235953,0.02670,21.9354,-0.02,11620.5,1,588,4130,15.23 +54,6,041018,235954,0.02669,21.9353,-0.02,11620.4,1,574,4130,15.22 +54,6,041018,235955,0.02668,21.9299,-0.02,11620.5,1,582,4130,15.22 +54,6,041018,235956,0.02676,21.9332,-0.02,11620.4,1,601,4130,15.22 +54,6,041018,235957,0.02676,21.9461,-0.02,11621.9,1,601,4130,15.22 +54,6,041018,235958,0.02670,21.9627,-0.02,11621.7,1,576,4130,15.22 +54,6,041018,235959,0.02670,21.9763,-0.02,11621.6,1,607,4130,15.22 +54,6,041118,000000,0.02671,21.9833,-0.02,11620.3,1,599,4130,15.22 +54,6,041118,000001,0.02668,21.9796,-0.02,11621.3,1,594,4130,15.22 +54,6,041118,000002,0.02670,21.9751,-0.02,11621.1,1,578,4130,15.21 +54,6,041118,000003,0.02667,21.9704,-0.02,11620.8,1,581,4130,15.22 +54,6,041118,000004,0.02668,21.9677,-0.02,11620.4,1,589,4130,15.22 +54,6,041118,000005,0.02670,21.9702,-0.02,11622.2,1,572,4130,15.22 +54,6,041118,000006,0.02667,21.9718,-0.02,11621.3,1,574,4130,15.22 +54,6,041118,000007,0.02662,21.9653,-0.02,11620.8,1,595,4130,15.22 +54,6,041118,000008,0.02661,21.9538,-0.02,11621.1,1,588,4130,15.21 +54,6,041118,000009,0.02664,21.9413,-0.02,11620.6,1,599,4130,15.22 +54,6,041118,000010,0.02669,21.9347,-0.02,11619.2,1,596,4130,15.22 +54,6,041118,000011,0.02681,21.9341,-0.02,11620.6,1,583,4130,15.21 +54,6,041118,000012,0.02690,21.9508,-0.02,11621.3,1,602,4130,15.21 +54,6,041118,000013,0.02674,21.9706,-0.02,11621.0,1,602,4130,15.21 +54,6,041118,000014,0.02668,21.9881,-0.02,11620.2,1,585,4130,15.22 +54,6,041118,000015,0.02672,21.9978,-0.02,11621.1,1,595,4130,15.21 +54,6,041118,000016,0.02680,21.9930,-0.02,11620.2,1,597,4130,15.22 +54,6,041118,000017,0.02678,21.9879,-0.02,11620.0,1,590,4130,15.21 +54,6,041118,000018,0.02672,21.9926,-0.02,11621.2,1,592,4130,15.22 +54,6,041118,000019,0.02664,22.0070,-0.02,11620.5,1,606,4130,15.21 +54,6,041118,000020,0.02666,22.0175,-0.02,11620.5,1,578,4130,15.22 +54,6,041118,000021,0.02669,22.0167,-0.02,11621.3,1,591,4130,15.21 +54,6,041118,000022,0.02674,22.0078,-0.02,11619.9,1,602,4130,15.22 +54,6,041118,000023,0.02676,22.0034,-0.02,11621.0,1,585,4130,15.22 +54,6,041118,000024,0.02669,22.0194,-0.02,11620.2,1,582,4130,15.22 +54,6,041118,000025,0.02657,22.0330,-0.02,11620.0,1,589,4130,15.22 +54,6,041118,000026,0.02656,22.0296,-0.02,11620.2,1,596,4130,15.22 +54,6,041118,000027,0.02659,22.0190,-0.02,11620.0,1,616,4130,15.21 +54,100,041118,000028,1,1,10,744,80,164232,836374,0,0,414722,0,0,0,0,1,15.21 +54,100,041118,001300,1,1,3,7,15,164232,836367,0,0,414722,0,0,0,0,1,15.57 +54,3,041118,001300,0.02665,22.0170,-0.02,11620.4,1,0,0,15.57 +54,230,041118,001301,3,19544,19552,19552 +54,100,041118,001307,1,1,4,15,15,164232,836367,0,0,414722,0,0,0,0,1,15.45 +54,200,041118,001308, 0.2684, 23.1669, -0.02, 11618.4, 2 +54,4,041118,001308,0.02684,23.1669,-0.02,11618.4,2,0,0,15.35 +54,4,041118,001309,0.02696,23.1674,-0.01,11617.7,2,0,0,15.37 +54,4,041118,001310,0.02681,23.0840,-0.01,11618.9,1,0,0,15.42 +54,4,041118,001311,0.02675,22.7641,-0.02,11618.6,1,0,0,15.42 +54,4,041118,001312,0.02681,22.6403,-0.01,11621.3,1,0,0,15.41 +54,4,041118,001313,0.02683,22.5428,-0.01,11619.2,1,0,0,15.41 +54,4,041118,001314,0.02681,22.4530,-0.01,11620.0,1,0,0,15.40 +54,4,041118,001315,0.02677,22.3766,-0.01,11621.0,1,0,0,15.40 +54,4,041118,001316,0.02682,22.3168,-0.02,11620.4,1,0,0,15.40 +54,4,041118,001317,0.02679,22.2639,-0.01,11621.7,1,0,0,15.41 +54,4,041118,001318,0.02668,22.2138,-0.01,11621.5,1,0,0,15.40 +54,4,041118,001319,0.02670,22.1654,-0.01,11621.4,1,0,0,15.40 +54,4,041118,001320,0.02677,22.1167,-0.02,11620.6,1,0,0,15.39 +54,4,041118,001321,0.02680,22.0780,-0.01,11620.5,1,0,0,15.39 +54,4,041118,001322,0.02678,22.0405,-0.01,11619.0,1,0,0,15.41 +54,4,041118,001323,0.02674,22.0059,-0.02,11618.5,1,0,0,15.39 +54,4,041118,001324,0.02677,21.9704,-0.02,11617.4,1,0,0,15.40 +54,4,041118,001325,0.02682,21.9405,-0.01,11618.2,1,0,0,15.39 +54,4,041118,001326,0.02678,21.9146,-0.01,11617.1,1,0,0,15.40 +54,4,041118,001327,0.02666,21.8882,-0.01,11618.7,1,0,0,15.39 +54,4,041118,001328,0.02665,21.8650,-0.01,11619.5,1,0,0,15.40 +54,4,041118,001329,0.02673,21.8403,-0.01,11620.2,1,0,0,15.40 +54,4,041118,001330,0.02679,21.8183,-0.01,11619.8,1,0,0,15.40 +54,4,041118,001331,0.02685,21.8068,-0.02,11619.7,1,0,0,15.39 +54,4,041118,001332,0.02687,21.7967,-0.01,11621.2,1,0,0,15.38 +54,4,041118,001333,0.02677,21.7935,-0.01,11621.0,1,0,0,15.40 +54,4,041118,001334,0.02672,21.7934,-0.01,11620.3,1,0,0,15.39 +54,4,041118,001335,0.02672,21.7898,-0.01,11621.8,1,0,0,15.39 +54,4,041118,001336,0.02677,21.7831,-0.01,11622.6,1,0,0,15.39 +54,4,041118,001337,0.02680,21.7790,-0.01,11620.4,1,0,0,15.38 +54,4,041118,001338,0.02678,21.7762,-0.02,11620.8,1,0,0,15.40 +54,4,041118,001339,0.02684,21.7810,-0.02,11618.7,1,0,0,15.40 +54,4,041118,001340,0.02678,21.7802,-0.01,11617.7,1,0,0,15.37 +54,4,041118,001341,0.02663,21.7843,-0.01,11617.2,1,0,0,15.38 +54,4,041118,001342,0.02667,21.7843,-0.01,11615.5,1,0,0,15.38 +54,4,041118,001343,0.02674,21.7843,-0.01,11615.7,1,0,0,15.39 +54,4,041118,001344,0.02680,21.7823,-0.02,11615.5,1,0,0,15.40 +54,4,041118,001345,0.02692,21.7901,-0.02,11615.0,1,0,0,15.38 +54,4,041118,001346,0.02701,21.8006,-0.02,11615.7,1,0,0,15.38 +54,4,041118,001347,0.02681,21.8154,-0.01,11614.3,1,0,0,15.39 +54,4,041118,001348,0.02673,21.8282,-0.01,11614.3,1,0,0,15.39 +54,4,041118,001349,0.02675,21.8289,-0.01,11613.3,1,0,0,15.38 +54,4,041118,001350,0.02685,21.8293,-0.01,11614.5,1,0,0,15.37 +54,4,041118,001351,0.02686,21.8356,-0.02,11614.7,1,0,0,15.38 +54,4,041118,001352,0.02693,21.8502,-0.02,11614.4,1,0,0,15.38 +54,4,041118,001353,0.02691,21.8608,-0.01,11615.4,1,0,0,15.38 +54,4,041118,001354,0.02676,21.8766,-0.01,11615.4,1,0,0,15.38 +54,4,041118,001355,0.02668,21.8911,-0.02,11614.1,1,0,0,15.38 +54,4,041118,001356,0.02667,21.8995,-0.01,11616.5,1,0,0,15.38 +54,4,041118,001357,0.02670,21.9067,-0.01,11616.2,1,0,0,15.38 +54,4,041118,001358,0.02675,21.9106,-0.02,11617.3,1,0,0,15.38 +54,4,041118,001359,0.02678,21.9214,-0.02,11615.7,1,0,0,15.38 +54,4,041118,001400,0.02684,21.9251,-0.02,11614.3,1,0,0,15.38 +54,4,041118,001401,0.02677,21.9231,-0.01,11614.4,1,0,0,15.38 +54,4,041118,001402,0.02668,21.9208,-0.02,11615.7,1,0,0,15.38 +54,4,041118,001403,0.02682,21.9223,-0.02,11615.5,1,0,0,15.38 +54,4,041118,001404,0.02683,21.9223,-0.01,11615.7,1,0,0,15.38 +54,4,041118,001405,0.02670,21.9218,-0.01,11617.7,1,0,0,15.37 +54,4,041118,001406,0.02673,21.9269,-0.02,11616.3,1,0,0,15.38 +54,4,041118,001407,0.02679,21.9324,-0.01,11618.2,1,0,0,15.38 +54,4,041118,001408,0.02676,21.9388,-0.01,11617.9,1,0,0,15.38 +54,4,041118,001409,0.02674,21.9456,-0.01,11618.5,1,0,0,15.39 +54,4,041118,001410,0.02671,21.9508,-0.02,11617.4,1,0,0,15.39 +54,4,041118,001411,0.02671,21.9596,-0.01,11617.0,1,0,0,15.38 +54,4,041118,001412,0.02668,21.9679,-0.01,11617.8,1,0,0,15.37 +54,4,041118,001413,0.02660,21.9757,-0.01,11617.2,1,0,0,15.37 +54,4,041118,001414,0.02661,21.9778,-0.02,11616.7,1,0,0,15.37 +54,4,041118,001415,0.02669,21.9824,-0.02,11617.6,1,0,0,15.37 +54,4,041118,001416,0.02669,21.9819,-0.01,11619.1,1,0,0,15.38 +54,4,041118,001417,0.02670,21.9847,-0.02,11619.4,1,0,0,15.38 +54,4,041118,001418,0.02671,21.9948,-0.02,11618.6,1,0,0,15.37 +54,4,041118,001419,0.02666,22.0022,-0.01,11619.0,1,0,0,15.38 +54,100,041118,001420,1,1,5,8,80,164237,836363,0,0,414722,0,0,0,0,1,15.37 +54,5,041118,001420,0.02658,22.0085,-0.01,11619.2,1,0,0,15.37 +54,5,041118,001421,0.02666,22.0170,-0.02,11619.5,1,0,0,15.28 +54,5,041118,001422,0.02668,22.0317,-0.01,11617.6,1,0,0,15.26 +54,5,041118,001423,0.02654,22.0350,-0.01,11619.2,1,0,0,15.18 +54,210,041118,001424,04/10/18 16:54:06 695 594 700 4130 536 +54,5,041118,001424,0.02655,22.0368,-0.02,11620.3,1,594,4130,15.24 +54,5,041118,001425,0.02663,22.0399,-0.02,11620.5,1,598,4130,15.23 +54,5,041118,001426,0.02681,22.0403,-0.02,11619.7,1,597,4130,15.24 +54,5,041118,001427,0.02691,22.0490,-0.01,11618.5,1,597,4130,15.22 +54,100,041118,001428,1,1,6,60,80,164237,836362,0,0,414722,0,0,0,0,1,15.23 +54,6,041118,001428,0.02676,22.0624,-0.02,11620.0,1,599,4130,15.23 +54,6,041118,001429,0.02671,22.0781,-0.02,11618.8,1,601,4130,15.22 +54,6,041118,001430,0.02661,22.0844,-0.01,11619.0,1,597,4130,15.23 +54,6,041118,001431,0.02663,22.0804,-0.01,11619.5,1,595,4130,15.23 +54,6,041118,001432,0.02677,22.0737,-0.02,11618.7,1,596,4130,15.22 +54,6,041118,001433,0.02681,22.0779,-0.01,11620.1,1,593,4130,15.23 +54,6,041118,001434,0.02668,22.0859,-0.02,11619.7,1,602,4130,15.22 +54,6,041118,001435,0.02663,22.0951,-0.02,11620.0,1,599,4130,15.22 +54,6,041118,001436,0.02662,22.0968,-0.01,11620.4,1,595,4130,15.22 +54,6,041118,001437,0.02664,22.0893,-0.02,11620.9,1,594,4130,15.22 +54,6,041118,001438,0.02677,22.0876,-0.02,11619.8,1,594,4130,15.22 +54,6,041118,001439,0.02681,22.0989,-0.02,11620.6,1,595,4130,15.22 +54,6,041118,001440,0.02679,22.1114,-0.02,11619.9,1,597,4130,15.22 +54,6,041118,001441,0.02667,22.1222,-0.01,11619.5,1,599,4130,15.22 +54,6,041118,001442,0.02656,22.1303,-0.01,11620.0,1,598,4130,15.21 +54,6,041118,001443,0.02653,22.1298,-0.01,11619.4,1,596,4130,15.22 +54,6,041118,001444,0.02664,22.1241,-0.02,11619.6,1,595,4130,15.22 +54,6,041118,001445,0.02677,22.1267,-0.02,11620.1,1,593,4130,15.21 +54,6,041118,001446,0.02685,22.1348,-0.01,11620.9,1,594,4130,15.22 +54,6,041118,001447,0.02679,22.1476,-0.01,11620.2,1,595,4130,15.22 +54,6,041118,001448,0.02673,22.1578,-0.02,11619.3,1,598,4130,15.21 +54,6,041118,001449,0.02668,22.1648,-0.01,11620.7,1,600,4130,15.21 +54,6,041118,001450,0.02661,22.1664,-0.02,11620.0,1,595,4130,15.21 +54,6,041118,001451,0.02669,22.1569,-0.01,11620.3,1,594,4130,15.22 +54,6,041118,001452,0.02672,22.1516,-0.02,11620.4,1,592,4130,15.22 +54,6,041118,001453,0.02675,22.1592,-0.02,11619.4,1,595,4130,15.22 +54,6,041118,001454,0.02668,22.1689,-0.02,11620.0,1,599,4130,15.21 +54,6,041118,001455,0.02659,22.1758,-0.01,11620.4,1,596,4130,15.21 +54,6,041118,001456,0.02658,22.1705,-0.01,11619.3,1,593,4130,15.22 +54,6,041118,001457,0.02665,22.1638,-0.01,11620.0,1,594,4130,15.21 +54,6,041118,001458,0.02666,22.1595,-0.02,11618.3,1,596,4130,15.22 +54,6,041118,001459,0.02672,22.1700,-0.02,11618.5,1,591,4130,15.22 +54,6,041118,001500,0.02673,22.1773,-0.02,11620.7,1,597,4130,15.21 +54,6,041118,001501,0.02663,22.1879,-0.02,11619.7,1,597,4130,15.22 +54,6,041118,001502,0.02660,22.1899,-0.01,11618.6,1,596,4130,15.22 +54,6,041118,001503,0.02658,22.1880,-0.01,11620.0,1,593,4130,15.22 +54,6,041118,001504,0.02668,22.1843,-0.02,11619.5,1,595,4130,15.21 +54,6,041118,001505,0.02667,22.1817,-0.01,11620.5,1,596,4130,15.22 +54,6,041118,001506,0.02656,22.1863,-0.02,11620.2,1,595,4130,15.22 +54,6,041118,001507,0.02661,22.1904,-0.02,11620.2,1,592,4130,15.21 +54,6,041118,001508,0.02658,22.1907,-0.01,11618.6,1,597,4130,15.22 +54,6,041118,001509,0.02651,22.1896,-0.02,11619.4,1,595,4130,15.22 +54,6,041118,001510,0.02661,22.1871,-0.02,11618.6,1,597,4130,15.22 +54,6,041118,001511,0.02669,22.1858,-0.01,11619.7,1,599,4130,15.22 +54,6,041118,001512,0.02659,22.1938,-0.02,11618.7,1,600,4130,15.22 +54,6,041118,001513,0.02658,22.2005,-0.01,11618.9,1,599,4130,15.21 +54,6,041118,001514,0.02653,22.1998,-0.01,11619.5,1,596,4130,15.22 +54,6,041118,001515,0.02653,22.1917,-0.01,11619.0,1,593,4130,15.22 +54,6,041118,001516,0.02651,22.1882,-0.01,11618.9,1,595,4130,15.21 +54,6,041118,001517,0.02651,22.1913,-0.02,11618.5,1,597,4130,15.21 +54,6,041118,001518,0.02654,22.1914,-0.01,11619.7,1,595,4130,15.21 +54,6,041118,001519,0.02654,22.1966,-0.01,11620.4,1,595,4130,15.22 +54,6,041118,001520,0.02651,22.2001,-0.01,11619.8,1,597,4130,15.22 +54,6,041118,001521,0.02653,22.1987,-0.02,11618.9,1,595,4130,15.21 +54,6,041118,001522,0.02656,22.1956,-0.01,11621.0,1,595,4130,15.21 +54,6,041118,001523,0.02649,22.1986,-0.01,11619.8,1,597,4130,15.21 +54,6,041118,001524,0.02646,22.1993,-0.01,11621.7,1,594,4130,15.21 +54,6,041118,001525,0.02641,22.1983,-0.01,11620.4,1,594,4130,15.20 +54,6,041118,001526,0.02647,22.1936,-0.02,11621.5,1,593,4130,15.21 +54,6,041118,001527,0.02663,22.1900,-0.01,11621.7,1,595,4130,15.21 +54,100,041118,001528,1,1,10,744,80,164241,836358,0,0,414722,0,0,0,0,1,15.21 +54,100,041118,001726,1,1,15,1,80,164241,836351,0,0,414722,0,0,0,0,1,15.53 + \ No newline at end of file diff --git a/test/readWQMraw/WQM0063_002_fw1.26_example.Raw b/test/readWQMraw/WQM0063_002_fw1.26_example.Raw new file mode 100644 index 000000000..d0c61dec7 --- /dev/null +++ b/test/readWQMraw/WQM0063_002_fw1.26_example.Raw @@ -0,0 +1,600 @@ + +File Name: WQM0063.002 +Created On: 011914 063803 +File Version: 1 1=Original, 2=Line #'s +WQM SN: 63 +F/W V: 1.26 +CTDO SN: 5010 +Conductivity Limit(S/m): 0.00150 Above this is in-situ +DOSN=414 +Soc=1.162200e-04 +FOffset=-3.353020e+03 +A52=-3.475500e-03 +B52=1.600400e-04 +C52=-2.472000e-06 +E52=3.600000e-02 +DO Stability-Fit=Fixed +DO Stability-A=80.0000 +DO Stability-B=-2.2880 +DO Stability-C=60.8050 +FL_NTU SN: 1175 +FactoryCHL=0.007 53 Scale and Offset +UserCHL=0.007 53 Scale and Offset +NTU=0.002 52 Scale and Offset +Beta=0.000 1 0 Derived Scale and Offset +External Data Port: Off +Control: Autonomous +Delay Seconds: 0 +Sample Seconds: 60 +Sample Interval Seconds: 900 +Outbits: 0xdff3e021 +Starting Free Flash Disk: 1022784 K +Total Flask Disk: 1022816 K +BLIS ul / squirt: 7.0 +Pumped Hour Interval: 1 +Pumped BLIS: 0 +Static BLIS: 4 +Starting Total BLIS Squirts: 0 +Recent UPS: No +Starting UPS Count: 0 +Starting Total UPS Count: 0 +Starting Voltage: 12.88 +Data Output: Averaged +Heartbeat: OFF +Update Date/Time: Normal +File Format: SN,State,Date,Time,Cond(S/m),Temp(C),Pres(dbar),RawDO(Hz),RawCHL(cts),RawTurb(cts),Volts + +63,100,011914,063803,2,0,10,0,15,0,1022783,0,1,336463,1,0,0,0,1,12.88 +63,100,011914,065800,2,0,3,11,15,0,1022783,0,1,336463,1,0,0,0,1,12.86 +63,140,011914,065805,Sample Mode: In Air - Not Pumped: 0.00000 S/M < 0.00150 C90-Limit +63,200,011914,065805, -0.0000, 26.1542, -0.00, 5.955 +63,3,011914,065805,0.00000,26.1542,0.00,6.0,0,0,12.85 +63,100,011914,065811,2,0,4,80,80,0,1022767,0,1,336463,1,0,0,0,1,12.88 +63,100,011914,065923,2,0,5,8,80,0,1022767,0,1,336463,1,0,0,0,1,12.88 +63,211,011914,065926, +63,210,011914,065927,01/18/14 23:59:57 695 50 700 173 530 +63,100,011914,065931,2,0,6,60,80,0,1022767,0,1,336463,1,0,0,0,1,12.83 +63,6,011914,065944,0.00000,26.1568,0.00,6.0,57,170,12.80 +63,6,011914,065954,0.00000,26.1576,0.00,6.0,55,171,12.80 +63,6,011914,070004,0.00000,26.1576,0.00,6.0,55,172,12.80 +63,6,011914,070014,0.00000,26.1583,0.00,6.0,53,175,12.80 +63,6,011914,070024,0.00001,26.1579,0.00,6.0,51,177,12.81 +63,100,011914,070031,2,0,10,1193,80,1,1022767,0,1,336464,1,0,0,0,1,12.81 +63,100,011914,071300,2,0,3,11,15,1,1022767,0,1,336464,1,0,0,0,1,12.86 +63,140,011914,071305,Sample Mode: In Air - Not Pumped: 0.00000 S/M < 0.00150 C90-Limit +63,200,011914,071305, -0.0000, 26.2127, 0.00, 5.956 +63,3,011914,071305,0.00000,26.2127,0.00,6.0,0,0,12.85 +63,100,011914,071311,2,0,4,80,80,1,1022767,0,1,336464,1,0,0,0,1,12.85 +63,100,011914,071423,2,0,5,8,80,1,1022767,0,1,336464,1,0,0,0,1,12.88 +63,211,011914,071426, +63,210,011914,071427,01/19/14 00:14:57 695 56 700 174 530 +63,100,011914,071431,2,0,6,60,80,1,1022767,0,1,336464,1,0,0,0,1,12.82 +63,6,011914,071444,-0.00001,26.2256,0.00,6.0,52,174,12.81 +63,6,011914,071454,-0.00001,26.2267,0.00,6.0,56,170,12.83 +63,6,011914,071504,-0.00001,26.2288,0.00,6.0,54,171,12.83 +63,6,011914,071514,0.00000,26.2289,0.00,6.0,54,169,12.83 +63,6,011914,071524,0.00000,26.2302,0.00,6.0,55,170,12.80 +63,100,011914,071531,2,0,10,742,80,1,1022767,0,1,336464,1,0,0,0,1,12.80 +63,100,011914,072800,2,0,3,11,15,2,1022767,0,1,336464,1,0,0,0,1,12.87 +63,140,011914,072805,Sample Mode: In Air - Not Pumped: -0.00001 S/M < 0.00150 C90-Limit +63,200,011914,072805, -0.0001, 26.3432, 0.00, 5.949 +63,3,011914,072805,-0.00001,26.3432,0.00,5.9,0,0,12.86 +63,100,011914,072811,2,0,4,80,80,2,1022767,0,1,336464,1,0,0,0,1,12.85 +63,100,011914,072923,2,0,5,8,80,2,1022767,0,1,336464,1,0,0,0,1,12.88 +63,211,011914,072926, +63,210,011914,072927,01/19/14 00:29:57 695 55 700 174 530 +63,100,011914,072931,2,0,6,60,80,2,1022767,0,1,336464,1,0,0,0,1,12.83 +63,6,011914,072944,-0.00001,26.3574,0.00,5.9,54,171,12.81 +63,6,011914,072954,0.00000,26.3587,0.00,5.9,54,171,12.83 +63,6,011914,073004,0.00000,26.3597,0.00,5.9,53,175,12.83 +63,6,011914,073014,0.00000,26.3611,0.00,5.9,54,174,12.84 +63,6,011914,073024,0.00000,26.3624,0.00,5.9,52,175,12.81 +63,100,011914,073031,2,0,10,742,80,2,1022767,0,1,336464,1,0,0,0,1,12.81 +63,100,011914,074513,2,0,3,11,15,2,1022767,0,1,336464,1,0,0,0,1,15.56 +63,140,011914,074518,Sample Mode: In Air - Not Pumped: -0.00001 S/M < 0.00150 C90-Limit +63,200,011914,074518, -0.0001, 26.8521, 0.00, 5.899 +63,3,011914,074518,-0.00001,26.8521,0.00,5.9,0,0,15.55 +63,100,011914,074524,2,0,4,80,80,3,1022767,0,1,336464,1,0,0,0,1,15.62 +63,100,011914,074636,2,0,5,8,80,3,1022767,0,1,336464,1,0,0,0,1,15.63 +63,211,011914,074639, +63,210,011914,074640,01/19/14 00:47:10 695 56 700 189 530 +63,100,011914,074644,2,0,6,60,80,3,1022767,0,1,336464,1,0,0,0,1,15.50 +63,6,011914,074654,0.00000,26.8507,0.00,5.9,55,182,15.49 +63,6,011914,074704,0.00000,26.8510,0.00,5.9,55,184,15.49 +63,6,011914,074714,0.00000,26.8507,0.00,5.9,51,187,15.50 +63,6,011914,074724,0.00000,26.8507,0.00,5.9,51,183,15.49 +63,6,011914,074734,0.00000,26.8506,0.00,5.9,58,182,15.50 +63,100,011914,074744,2,0,10,742,80,3,1022767,0,1,336464,1,0,0,0,1,15.50 +63,100,011914,075800,2,0,3,11,15,3,1022767,0,1,336464,1,0,0,0,1,15.60 +63,3,011914,075800,0.00000,26.8520,0.00,5.9,54,184,15.60 +63,140,011914,075805,Sample Mode: In Air - Not Pumped: 0.00001 S/M < 0.00150 C90-Limit +63,200,011914,075805, 0.0001, 26.8271, 0.00, 5.907 +63,3,011914,075805,0.00001,26.8271,0.00,5.9,0,0,15.59 +63,100,011914,075811,2,0,4,80,80,4,1022767,0,1,336464,1,0,0,0,1,15.63 +63,100,011914,075923,2,0,5,8,80,4,1022767,0,1,336464,1,0,0,0,1,15.64 +63,211,011914,075926, +63,210,011914,075927,01/19/14 00:59:57 695 58 700 189 530 +63,100,011914,075931,2,0,6,60,80,4,1022767,0,1,336464,1,0,0,0,1,15.51 +63,6,011914,075944,0.00000,26.8247,0.00,5.9,53,180,15.47 +63,6,011914,075954,0.00000,26.8250,0.00,5.9,54,179,15.47 +63,6,011914,080004,0.00000,26.8243,0.00,5.9,56,180,15.47 +63,6,011914,080014,0.00001,26.8235,0.00,5.9,58,184,15.47 +63,6,011914,080024,0.00001,26.8235,0.00,5.9,61,180,15.47 +63,100,011914,080031,2,0,10,610,80,4,1022767,0,1,336465,1,0,0,0,1,15.47 +63,100,011914,081300,2,0,3,11,15,4,1022767,0,1,336465,1,0,0,0,1,15.60 +63,140,011914,081305,Sample Mode: In Air - Not Pumped: 0.00000 S/M < 0.00150 C90-Limit +63,200,011914,081305, 0.0000, 26.7961, -0.00, 5.911 +63,3,011914,081305,0.00000,26.7961,0.00,5.9,0,0,15.59 +63,100,011914,081311,2,0,4,80,80,5,1022767,0,1,336465,1,0,0,0,1,15.63 +63,100,011914,081423,2,0,5,8,80,5,1022767,0,1,336465,1,0,0,0,1,15.64 +63,211,011914,081426, +63,210,011914,081427,01/19/14 01:14:57 695 53 700 149 530 +63,100,011914,081431,2,0,6,60,80,5,1022767,0,1,336465,1,0,0,0,1,15.51 +63,6,011914,081444,0.00000,26.8694,0.00,5.9,57,147,15.47 +63,6,011914,081454,0.00000,26.8747,0.00,5.9,53,145,15.47 +63,6,011914,081504,0.00000,26.8886,0.00,5.9,56,160,15.47 +63,6,011914,081514,0.00000,26.8823,0.00,5.9,54,138,15.47 +63,6,011914,081524,0.00001,26.8827,0.00,5.9,60,140,15.46 +63,100,011914,081531,2,0,10,742,80,5,1022767,0,1,336465,1,0,0,0,1,15.46 +63,100,011914,082800,2,0,3,11,15,5,1022767,0,1,336465,1,0,0,0,1,15.60 +63,140,011914,082805,Sample Mode: In Air - Not Pumped: 0.00000 S/M < 0.00150 C90-Limit +63,200,011914,082805, 0.0000, 26.8627, -0.00, 5.909 +63,3,011914,082805,0.00000,26.8627,0.00,5.9,0,0,15.59 +63,100,011914,082811,2,0,4,80,80,5,1022767,0,1,336465,1,0,0,0,1,15.64 +63,100,011914,082923,2,0,5,8,80,6,1022767,0,1,336465,1,0,0,0,1,15.64 +63,211,011914,082926, +63,210,011914,082927,01/19/14 01:29:57 695 50 700 141 530 +63,100,011914,082931,2,0,6,60,80,6,1022767,0,1,336465,1,0,0,0,1,15.52 +63,6,011914,082944,0.00000,26.8491,0.00,5.9,58,141,15.47 +63,6,011914,082954,0.00000,26.8511,0.00,5.9,54,140,15.50 +63,6,011914,083004,0.00000,26.8510,0.00,5.9,55,139,15.47 +63,6,011914,083014,0.00001,26.8538,0.00,5.9,55,140,15.47 +63,6,011914,083024,0.00000,26.8445,0.00,5.9,55,139,15.47 +63,100,011914,083031,2,0,10,742,80,6,1022767,0,1,336465,1,0,0,0,1,15.47 +63,100,011914,084300,2,0,3,11,15,6,1022767,0,1,336465,1,0,0,0,1,15.60 +63,140,011914,084305,Sample Mode: In Air - Not Pumped: 0.00000 S/M < 0.00150 C90-Limit +63,200,011914,084305, 0.0000, 26.8520, -0.00, 5.915 +63,3,011914,084305,0.00000,26.8520,0.00,5.9,0,0,15.59 +63,100,011914,084311,2,0,4,80,80,6,1022767,0,1,336465,1,0,0,0,1,15.63 +63,100,011914,084423,2,0,5,8,80,6,1022767,0,1,336465,1,0,0,0,1,15.64 +63,211,011914,084426, +63,210,011914,084427,01/19/14 01:44:57 695 52 700 144 529 +63,100,011914,084431,2,0,6,60,80,7,1022767,0,1,336465,1,0,0,0,1,15.51 +63,6,011914,084444,0.00000,26.8568,0.00,5.9,51,146,15.51 +63,6,011914,084454,0.00000,26.8556,0.00,5.9,53,143,15.47 +63,6,011914,084504,0.00000,26.8559,0.00,5.9,55,142,15.52 +63,6,011914,084514,0.00000,26.8511,0.00,5.9,55,143,15.47 +63,6,011914,084524,0.00000,26.8489,0.00,5.9,52,144,15.47 +63,100,011914,084531,2,0,10,742,80,7,1022767,0,1,336465,1,0,0,0,1,15.47 +63,100,011914,085800,2,0,3,11,15,7,1022767,0,1,336465,1,0,0,0,1,15.60 +63,140,011914,085805,Sample Mode: In Air - Not Pumped: 0.00000 S/M < 0.00150 C90-Limit +63,200,011914,085805, 0.0000, 26.7297, -0.00, 5.928 +63,3,011914,085805,0.00000,26.7297,0.00,5.9,0,0,15.59 +63,100,011914,085811,2,0,4,80,80,7,1022767,0,1,336465,1,0,0,0,1,15.63 +63,100,011914,085923,2,0,5,8,80,7,1022767,0,1,336465,1,0,0,0,1,15.64 +63,211,011914,085926, +63,210,011914,085927,01/19/14 01:59:57 695 55 700 144 529 +63,100,011914,085931,2,0,6,60,80,8,1022767,0,1,336465,1,0,0,0,1,15.52 +63,6,011914,085944,0.00000,26.7506,0.00,5.9,50,144,15.48 +63,6,011914,085954,0.00000,26.7548,0.00,5.9,55,145,15.48 +63,6,011914,090004,0.00001,26.7436,0.00,5.9,60,142,15.47 +63,6,011914,090014,0.00000,26.7521,0.00,5.9,54,147,15.47 +63,6,011914,090024,0.00000,26.7462,0.00,5.9,54,146,15.47 +63,100,011914,090031,2,0,10,742,80,8,1022767,0,1,336466,1,0,0,0,1,15.47 +63,100,011914,091300,2,0,3,11,15,8,1022767,0,1,336466,1,0,0,0,1,15.60 +63,140,011914,091305,Sample Mode: In Air - Not Pumped: 0.00001 S/M < 0.00150 C90-Limit +63,200,011914,091305, 0.0001, 26.8026, -0.00, 5.920 +63,3,011914,091305,0.00001,26.8026,0.00,5.9,0,0,15.59 +63,100,011914,091311,2,0,4,80,80,8,1022767,0,1,336466,1,0,0,0,1,15.63 +63,100,011914,091423,2,0,5,8,80,8,1022767,0,1,336466,1,0,0,0,1,15.64 +63,211,011914,091426, +63,210,011914,091427,01/19/14 02:14:57 695 52 700 145 530 +63,100,011914,091431,2,0,6,60,80,8,1022767,0,1,336466,1,0,0,0,1,15.52 +63,6,011914,091444,0.00000,26.7876,0.00,5.9,58,147,15.48 +63,6,011914,091454,0.00000,26.7860,0.00,5.9,53,142,15.48 +63,6,011914,091504,0.00000,26.7822,0.00,5.9,56,143,15.48 +63,6,011914,091514,0.00000,26.7831,0.00,5.9,55,141,15.49 +63,6,011914,091524,0.00000,26.7831,0.00,5.9,50,143,15.48 +63,100,011914,091531,2,0,10,742,80,9,1022767,0,1,336466,1,0,0,0,1,15.48 +63,100,011914,092800,2,0,3,11,15,9,1022767,0,1,336466,1,0,0,0,1,15.60 +63,140,011914,092805,Sample Mode: In Air - Not Pumped: 0.00000 S/M < 0.00150 C90-Limit +63,200,011914,092805, 0.0000, 26.8707, -0.00, 5.913 +63,3,011914,092805,0.00000,26.8707,0.00,5.9,0,0,15.59 +63,100,011914,092811,2,0,4,80,80,9,1022767,0,1,336466,1,0,0,0,1,15.63 +63,100,011914,092923,2,0,5,8,80,9,1022767,0,1,336466,1,0,0,0,1,15.63 +63,211,011914,092926, +63,210,011914,092927,01/19/14 02:29:57 695 54 700 147 529 +63,100,011914,092931,2,0,6,60,80,9,1022767,0,1,336466,1,0,0,0,1,15.52 +63,6,011914,092944,0.00000,26.8744,0.00,5.9,53,142,15.48 +63,6,011914,092954,0.00000,26.8723,0.00,5.9,56,140,15.48 +63,6,011914,093004,0.00000,26.8729,0.00,5.9,54,139,15.48 +63,6,011914,093014,0.00000,26.8715,0.00,5.9,56,143,15.48 +63,6,011914,093024,0.00000,26.8697,0.00,5.9,57,145,15.51 +63,100,011914,093031,2,0,10,742,80,10,1022767,0,1,336466,1,0,0,0,1,15.51 +63,100,011914,094300,2,0,3,11,15,10,1022767,0,1,336466,1,0,0,0,1,15.60 +63,140,011914,094305,Sample Mode: In Air - Not Pumped: 0.00000 S/M < 0.00150 C90-Limit +63,200,011914,094305, -0.0000, 26.9706, 0.00, 5.903 +63,3,011914,094305,0.00000,26.9706,0.00,5.9,0,0,15.59 +63,100,011914,094311,2,0,4,80,80,10,1022767,0,1,336466,1,0,0,0,1,15.59 +63,100,011914,094423,2,0,5,8,80,10,1022767,0,1,336466,1,0,0,0,1,15.63 +63,211,011914,094426, +63,210,011914,094427,01/19/14 02:44:57 695 55 700 153 529 +63,100,011914,094431,2,0,6,60,80,10,1022767,0,1,336466,1,0,0,0,1,15.52 +63,6,011914,094444,0.00000,26.9724,0.00,5.9,52,153,15.52 +63,6,011914,094454,0.00000,26.9733,0.00,5.9,54,153,15.51 +63,6,011914,094504,0.00000,26.9858,0.00,5.9,54,154,15.51 +63,6,011914,094514,-0.00001,26.9754,0.00,5.9,55,151,15.51 +63,6,011914,094524,0.00000,26.9763,0.00,5.9,53,149,15.51 +63,100,011914,094531,2,0,10,742,80,11,1022767,0,1,336466,1,0,0,0,1,15.51 +63,100,011914,095800,2,0,3,11,15,11,1022767,0,1,336466,1,0,0,0,1,15.60 +63,140,011914,095805,Sample Mode: Insitu - Pumped: 4.28386 S/M > 0.00150 C90-Limit +63,200,011914,095805, 42.8386, 28.3349, 0.32, 2.477 +63,3,011914,095805,4.28386,28.3349,0.32,2.5,0,0,15.59 +63,100,011914,095812,2,1,4,80,80,11,1022767,0,1,336466,1,0,0,0,1,15.53 +63,4,011914,095813,4.27514,28.1786,0.32,10793.2,0,0,15.52 +63,4,011914,095814,4.30249,28.2303,0.32,11123.9,0,0,15.52 +63,4,011914,095815,4.29971,28.2386,0.32,11365.2,0,0,15.51 +63,4,011914,095816,4.28081,28.2580,0.32,11533.1,0,0,15.51 +63,4,011914,095817,4.25074,28.2338,0.32,11653.8,0,0,15.51 +63,4,011914,095818,4.22255,28.1955,0.32,11740.4,0,0,15.51 +63,4,011914,095819,4.18524,28.1329,0.32,11805.9,0,0,15.51 +63,4,011914,095820,4.15346,28.0929,0.32,11856.6,0,0,15.51 +63,4,011914,095821,4.14077,28.1044,0.32,11897.4,0,0,15.51 +63,4,011914,095822,4.14207,28.1424,0.32,11932.4,0,0,15.51 +63,4,011914,095823,4.16162,28.2057,0.32,11960.9,0,0,15.51 +63,4,011914,095824,4.17682,28.2513,0.32,11980.9,0,0,15.50 +63,4,011914,095825,4.18748,28.2185,0.32,11994.7,0,0,15.51 +63,4,011914,095826,4.17088,28.1390,0.32,12003.5,0,0,15.51 +63,4,011914,095827,4.13666,28.0585,0.32,12009.4,0,0,15.51 +63,4,011914,095828,4.09069,28.0067,0.32,12018.3,0,0,15.51 +63,4,011914,095829,4.07274,27.9948,0.32,12028.5,0,0,15.51 +63,4,011914,095830,4.10688,28.0008,0.32,12042.8,0,0,15.51 +63,4,011914,095831,4.18959,28.0171,0.32,12054.0,0,0,15.51 +63,4,011914,095832,4.27434,28.1242,0.32,12061.2,0,0,15.51 +63,4,011914,095833,4.30587,28.1864,0.32,12062.2,0,0,15.51 +63,4,011914,095834,4.27434,28.1351,0.32,12057.3,0,0,15.52 +63,4,011914,095835,4.20492,28.1246,0.32,12052.3,0,0,15.52 +63,4,011914,095836,4.13901,28.1824,0.32,12049.9,0,0,15.52 +63,4,011914,095837,4.10324,28.1760,0.32,12055.1,0,0,15.53 +63,4,011914,095838,4.13264,28.2319,0.32,12065.0,0,0,15.53 +63,4,011914,095839,4.18295,28.2795,0.32,12071.9,0,0,15.53 +63,4,011914,095840,4.20807,28.2816,0.32,12077.7,0,0,15.53 +63,4,011914,095841,4.22165,28.2968,0.32,12081.5,0,0,15.53 +63,4,011914,095842,4.19888,28.1832,0.32,12079.8,0,0,15.53 +63,4,011914,095843,4.16301,28.0877,0.32,12078.4,0,0,15.53 +63,4,011914,095844,4.12319,28.0598,0.32,12079.5,0,0,15.53 +63,4,011914,095845,4.11050,28.1782,0.32,12081.7,0,0,15.53 +63,4,011914,095846,4.13250,28.2375,0.32,12087.8,0,0,15.53 +63,4,011914,095847,4.18579,28.3159,0.32,12092.3,0,0,15.53 +63,4,011914,095848,4.23188,28.3269,0.32,12091.7,0,0,15.53 +63,4,011914,095849,4.22473,28.2610,0.32,12086.7,0,0,15.53 +63,4,011914,095850,4.18702,28.1891,0.32,12081.4,0,0,15.53 +63,4,011914,095851,4.13872,28.1584,0.32,12074.5,0,0,15.53 +63,4,011914,095852,4.08428,28.0520,0.32,12073.9,0,0,15.53 +63,4,011914,095853,4.09062,28.1366,0.32,12080.2,0,0,15.54 +63,4,011914,095854,4.15212,28.2625,0.32,12088.6,0,0,15.53 +63,4,011914,095855,4.21317,28.2852,0.32,12094.8,0,0,15.53 +63,4,011914,095856,4.27326,28.2719,0.32,12095.1,0,0,15.53 +63,4,011914,095857,4.30387,28.2555,0.32,12092.9,0,0,15.53 +63,4,011914,095858,4.29445,28.2553,0.32,12089.1,0,0,15.53 +63,4,011914,095859,4.27240,28.3348,0.32,12085.4,0,0,15.53 +63,4,011914,095900,4.25675,28.3769,0.32,12084.2,0,0,15.54 +63,4,011914,095901,4.25822,28.3652,0.32,12085.9,0,0,15.53 +63,4,011914,095902,4.26871,28.3694,0.32,12089.4,0,0,15.53 +63,4,011914,095903,4.29473,28.3756,0.32,12094.3,0,0,15.53 +63,4,011914,095904,4.32001,28.3743,0.32,12097.9,0,0,15.53 +63,4,011914,095905,4.32612,28.3560,0.32,12096.9,0,0,15.53 +63,4,011914,095906,4.31131,28.3324,0.32,12093.8,0,0,15.53 +63,4,011914,095907,4.28615,28.3005,0.32,12089.9,0,0,15.53 +63,4,011914,095908,4.25285,28.2323,0.32,12087.4,0,0,15.53 +63,4,011914,095909,4.21988,28.1903,0.32,12088.4,0,0,15.53 +63,4,011914,095910,4.22547,28.1940,0.32,12091.3,0,0,15.53 +63,4,011914,095911,4.23357,28.2090,0.32,12091.4,0,0,15.53 +63,4,011914,095912,4.23329,28.2090,0.32,12088.9,0,0,15.53 +63,4,011914,095913,4.21253,28.1914,0.32,12090.0,0,0,15.53 +63,4,011914,095914,4.21693,28.2071,0.32,12093.0,0,0,15.53 +63,4,011914,095915,4.21352,28.2026,0.32,12096.5,0,0,15.53 +63,4,011914,095916,4.21917,28.1897,0.32,12102.2,0,0,15.53 +63,4,011914,095917,4.25365,28.2181,0.32,12108.2,0,0,15.53 +63,4,011914,095918,4.29328,28.2803,0.32,12110.1,0,0,15.53 +63,4,011914,095919,4.31949,28.3521,0.32,12110.9,0,0,15.54 +63,4,011914,095920,4.33569,28.3993,0.32,12107.4,0,0,15.53 +63,4,011914,095921,4.31270,28.3797,0.32,12103.3,0,0,15.53 +63,4,011914,095922,4.28988,28.3272,0.32,12100.9,0,0,15.54 +63,4,011914,095923,4.27756,28.2585,0.32,12100.1,0,0,15.53 +63,100,011914,095924,2,1,5,8,80,15,1022763,20,1,336466,1,0,0,0,1,15.53 +63,5,011914,095924,4.27724,28.2312,0.32,12099.5,0,0,15.53 +63,5,011914,095925,4.26409,28.2494,0.32,12099.0,0,0,15.46 +63,5,011914,095926,4.26001,28.2746,0.32,12100.1,0,0,15.46 +63,211,011914,095927, +63,5,011914,095927,4.27573,28.2837,0.32,12100.8,0,0,15.39 +63,210,011914,095928,01/19/14 02:59:58 695 82 700 1961 529 +63,5,011914,095928,4.27460,28.2837,0.32,12100.2,82,1961,15.44 +63,5,011914,095929,4.25830,28.2872,0.32,12097.8,79,1969,15.44 +63,5,011914,095930,4.24990,28.2862,0.32,12097.0,84,1958,15.44 +63,5,011914,095931,4.24635,28.2564,0.32,12099.2,84,1955,15.44 +63,100,011914,095932,2,1,6,60,80,16,1022762,20,1,336466,0,0,0,0,1,15.44 +63,6,011914,095932,4.25935,28.2762,0.32,12102.1,83,1956,15.44 +63,6,011914,095933,4.27068,28.2757,0.32,12104.3,83,1961,15.44 +63,6,011914,095934,4.29853,28.3055,0.32,12107.5,80,1965,15.44 +63,6,011914,095935,4.33302,28.3293,0.32,12110.4,80,1961,15.44 +63,6,011914,095936,4.35610,28.3350,0.32,12112.3,82,1957,15.44 +63,6,011914,095937,4.36423,28.3347,0.32,12111.7,79,1962,15.44 +63,6,011914,095938,4.33264,28.3221,0.32,12111.1,79,1961,15.43 +63,6,011914,095939,4.31897,28.3311,0.32,12111.4,84,1965,15.44 +63,6,011914,095940,4.31919,28.3431,0.32,12113.2,84,1964,15.44 +63,6,011914,095941,4.32831,28.3519,0.32,12114.7,86,1964,15.44 +63,6,011914,095942,4.32085,28.3392,0.32,12112.9,87,1967,15.44 +63,6,011914,095943,4.30406,28.2990,0.32,12110.5,79,1965,15.44 +63,6,011914,095944,4.27724,28.2649,0.32,12109.1,83,1974,15.43 +63,6,011914,095945,4.26251,28.2310,0.32,12109.3,81,1982,15.44 +63,6,011914,095946,4.24926,28.2128,0.32,12109.4,76,1984,15.44 +63,6,011914,095947,4.23186,28.2174,0.32,12111.2,81,1989,15.44 +63,6,011914,095948,4.23318,28.2375,0.32,12113.1,81,1989,15.44 +63,6,011914,095949,4.23747,28.2381,0.32,12114.0,80,1992,15.44 +63,6,011914,095950,4.24281,28.2531,0.32,12114.8,84,1998,15.43 +63,6,011914,095951,4.24590,28.2596,0.32,12114.7,81,1996,15.44 +63,6,011914,095952,4.23929,28.2608,0.32,12113.4,84,1997,15.43 +63,6,011914,095953,4.23579,28.2561,0.32,12112.5,85,1996,15.43 +63,6,011914,095954,4.22030,28.2436,0.32,12112.1,78,1993,15.44 +63,6,011914,095955,4.20875,28.2472,0.32,12114.5,84,1991,15.44 +63,6,011914,095956,4.22418,28.2716,0.32,12117.5,84,1987,15.43 +63,6,011914,095957,4.24522,28.2900,0.32,12119.9,84,1983,15.43 +63,6,011914,095958,4.25842,28.2953,0.32,12119.7,78,1977,15.43 +63,6,011914,095959,4.25509,28.2864,0.32,12116.9,82,1984,15.44 +63,6,011914,100000,4.24234,28.2545,0.32,12111.2,80,1979,15.43 +63,6,011914,100001,4.22964,28.2168,0.32,12108.3,84,1976,15.43 +63,6,011914,100002,4.22990,28.2101,0.32,12110.2,80,1975,15.43 +63,6,011914,100003,4.22687,28.2344,0.32,12114.8,81,1973,15.44 +63,6,011914,100004,4.24911,28.2493,0.32,12119.2,82,1971,15.43 +63,6,011914,100005,4.26717,28.2545,0.32,12121.6,80,1969,15.43 +63,6,011914,100006,4.26392,28.2368,0.32,12123.2,83,1968,15.43 +63,6,011914,100007,4.26874,28.2619,0.32,12123.0,81,1968,15.43 +63,6,011914,100008,4.27421,28.2893,0.32,12122.8,80,1967,15.43 +63,6,011914,100009,4.26107,28.2992,0.32,12120.3,81,1961,15.43 +63,6,011914,100010,4.23731,28.2872,0.32,12119.0,81,1957,15.43 +63,6,011914,100011,4.23185,28.2645,0.32,12119.8,79,1956,15.44 +63,6,011914,100012,4.22621,28.2783,0.32,12119.7,81,1951,15.43 +63,6,011914,100013,4.23193,28.2308,0.32,12119.0,81,1947,15.43 +63,6,011914,100014,4.23373,28.2064,0.32,12118.5,81,1949,15.43 +63,6,011914,100015,4.20855,28.1949,0.32,12116.2,79,1949,15.43 +63,6,011914,100016,4.18077,28.1633,0.32,12115.2,81,1946,15.43 +63,6,011914,100017,4.18120,28.1319,0.32,12114.6,77,1944,15.43 +63,6,011914,100018,4.17520,28.1624,0.32,12117.6,82,1939,15.43 +63,6,011914,100019,4.20329,28.1732,0.32,12120.4,79,1945,15.42 +63,6,011914,100020,4.22244,28.1545,0.32,12118.5,82,1952,15.43 +63,6,011914,100021,4.22222,28.1390,0.32,12114.2,77,1961,15.43 +63,6,011914,100022,4.21379,28.1405,0.32,12113.0,77,1968,15.43 +63,6,011914,100023,4.21317,28.1876,0.32,12112.2,79,1970,15.43 +63,6,011914,100024,4.21302,28.2126,0.32,12112.2,78,1977,15.43 +63,6,011914,100025,4.20730,28.2094,0.32,12113.8,80,1974,15.43 +63,6,011914,100026,4.20510,28.2013,0.32,12114.5,78,1972,15.43 +63,6,011914,100027,4.20791,28.2077,0.32,12116.4,81,1976,15.43 +63,6,011914,100028,4.22301,28.2065,0.32,12118.4,77,1981,15.43 +63,6,011914,100029,4.24568,28.2430,0.32,12120.7,78,1976,15.43 +63,6,011914,100030,4.26200,28.2719,0.32,12123.7,79,1979,15.43 +63,6,011914,100031,4.27473,28.2678,0.32,12125.0,77,1973,15.43 +63,100,011914,100032,2,1,10,742,80,19,1022759,24,1,0,0,0,0,0,1,15.57 +63,100,011914,101300,2,1,3,11,15,20,1022751,24,1,0,0,0,0,0,1,15.60 +63,3,011914,101300,4.27576,28.2582,0.32,12123.7,81,1970,15.60 +63,140,011914,101305,Sample Mode: Insitu - Pumped: 4.28820 S/M > 0.00150 C90-Limit +63,200,011914,101305, 42.8820, 28.3785, 0.32, 2.500 +63,3,011914,101305,4.28820,28.3785,0.32,2.5,0,0,15.59 +63,100,011914,101312,2,1,4,80,80,20,1022751,24,1,0,0,0,0,0,1,15.54 +63,4,011914,101313,4.11961,28.0532,0.32,10826.2,0,0,15.55 +63,4,011914,101314,4.15687,28.0835,0.32,11144.9,0,0,15.54 +63,4,011914,101315,4.16196,28.1011,0.32,11374.7,0,0,15.54 +63,4,011914,101316,4.15233,28.1154,0.32,11534.7,0,0,15.54 +63,4,011914,101317,4.12006,28.0968,0.32,11647.8,0,0,15.54 +63,4,011914,101318,4.10651,28.0785,0.32,11730.5,0,0,15.54 +63,4,011914,101319,4.07360,28.0476,0.32,11794.8,0,0,15.54 +63,4,011914,101320,4.05748,28.0313,0.32,11845.8,0,0,15.54 +63,4,011914,101321,4.04335,28.0328,0.32,11889.5,0,0,15.54 +63,4,011914,101322,4.07479,28.0813,0.32,11925.8,0,0,15.54 +63,4,011914,101323,4.11046,28.1331,0.32,11951.7,0,0,15.54 +63,4,011914,101324,4.13750,28.1567,0.32,11970.6,0,0,15.54 +63,4,011914,101325,4.13488,28.1294,0.32,11982.6,0,0,15.54 +63,4,011914,101326,4.09338,28.0595,0.32,11990.6,0,0,15.54 +63,4,011914,101327,4.06023,28.0040,0.32,11999.5,0,0,15.54 +63,4,011914,101328,4.04614,27.9906,0.32,12009.2,0,0,15.54 +63,4,011914,101329,4.08085,28.0288,0.32,12018.6,0,0,15.54 +63,4,011914,101330,4.15674,28.1107,0.32,12019.6,0,0,15.54 +63,4,011914,101331,4.22525,28.1937,0.32,12012.7,0,0,15.54 +63,4,011914,101332,4.24341,28.2096,0.32,12002.5,0,0,15.54 +63,4,011914,101333,4.20155,28.1692,0.32,11995.6,0,0,15.54 +63,4,011914,101334,4.13152,28.1020,0.32,11997.1,0,0,15.54 +63,4,011914,101335,4.07357,28.0392,0.32,12006.9,0,0,15.54 +63,4,011914,101336,4.07689,28.0571,0.32,12025.0,0,0,15.54 +63,4,011914,101337,4.13238,28.2016,0.32,12043.4,0,0,15.54 +63,4,011914,101338,4.18655,28.2748,0.32,12052.9,0,0,15.54 +63,4,011914,101339,4.18916,28.2196,0.32,12054.6,0,0,15.54 +63,4,011914,101340,4.16778,28.1207,0.32,12055.1,0,0,15.54 +63,4,011914,101341,4.14350,28.0907,0.32,12056.3,0,0,15.54 +63,4,011914,101342,4.12029,28.1631,0.32,12057.5,0,0,15.54 +63,4,011914,101343,4.09622,28.1761,0.32,12061.4,0,0,15.54 +63,4,011914,101344,4.11402,28.1852,0.32,12067.5,0,0,15.54 +63,4,011914,101345,4.15515,28.1909,0.32,12072.7,0,0,15.54 +63,4,011914,101346,4.17962,28.1537,0.32,12072.7,0,0,15.54 +63,4,011914,101347,4.17807,28.0982,0.32,12070.0,0,0,15.54 +63,4,011914,101348,4.15228,28.0655,0.32,12067.9,0,0,15.54 +63,4,011914,101349,4.11693,28.0365,0.32,12069.2,0,0,15.54 +63,4,011914,101350,4.09297,28.0215,0.32,12073.1,0,0,15.54 +63,4,011914,101351,4.10942,28.0549,0.32,12080.9,0,0,15.54 +63,4,011914,101352,4.14663,28.2484,0.32,12084.7,0,0,15.54 +63,4,011914,101353,4.15797,28.2963,0.32,12083.1,0,0,15.54 +63,4,011914,101354,4.16249,28.2668,0.32,12081.7,0,0,15.54 +63,4,011914,101355,4.18327,28.1823,0.32,12077.5,0,0,15.54 +63,4,011914,101356,4.13880,28.0720,0.32,12072.5,0,0,15.54 +63,4,011914,101357,4.12143,28.0254,0.32,12071.0,0,0,15.54 +63,4,011914,101358,4.13102,28.0721,0.32,12072.9,0,0,15.54 +63,4,011914,101359,4.12740,28.1324,0.32,12075.3,0,0,15.54 +63,4,011914,101400,4.13267,28.2124,0.32,12077.6,0,0,15.54 +63,4,011914,101401,4.13687,28.2085,0.32,12079.5,0,0,15.54 +63,4,011914,101402,4.14415,28.1967,0.32,12082.0,0,0,15.54 +63,4,011914,101403,4.15541,28.1889,0.32,12083.9,0,0,15.54 +63,4,011914,101404,4.17789,28.1846,0.32,12084.3,0,0,15.54 +63,4,011914,101405,4.18590,28.1838,0.32,12083.5,0,0,15.54 +63,4,011914,101406,4.18548,28.1841,0.32,12082.5,0,0,15.54 +63,4,011914,101407,4.18190,28.1944,0.32,12080.3,0,0,15.54 +63,4,011914,101408,4.17109,28.2135,0.32,12077.0,0,0,15.53 +63,4,011914,101409,4.14182,28.1892,0.32,12076.7,0,0,15.54 +63,4,011914,101410,4.13221,28.1879,0.32,12077.1,0,0,15.54 +63,4,011914,101411,4.14028,28.1876,0.32,12077.3,0,0,15.54 +63,4,011914,101412,4.14011,28.1653,0.32,12077.0,0,0,15.54 +63,4,011914,101413,4.13898,28.1671,0.32,12076.0,0,0,15.54 +63,4,011914,101414,4.13918,28.1537,0.32,12076.2,0,0,15.53 +63,4,011914,101415,4.15201,28.1680,0.32,12078.1,0,0,15.54 +63,4,011914,101416,4.15892,28.1769,0.32,12080.6,0,0,15.52 +63,4,011914,101417,4.18483,28.2012,0.32,12082.8,0,0,15.54 +63,4,011914,101418,4.20233,28.2188,0.32,12084.9,0,0,15.54 +63,4,011914,101419,4.19241,28.1910,0.32,12083.0,0,0,15.54 +63,4,011914,101420,4.16042,28.1250,0.32,12081.9,0,0,15.53 +63,4,011914,101421,4.14753,28.1254,0.32,12085.1,0,0,15.53 +63,4,011914,101422,4.16828,28.1692,0.32,12087.6,0,0,15.53 +63,4,011914,101423,4.17860,28.1730,0.32,12088.6,0,0,15.54 +63,100,011914,101424,2,1,5,8,80,24,1022747,24,1,0,0,0,0,0,1,15.53 +63,5,011914,101424,4.18485,28.1938,0.32,12091.3,0,0,15.53 +63,5,011914,101425,4.20882,28.2246,0.32,12091.9,0,0,15.46 +63,5,011914,101426,4.20018,28.2249,0.32,12090.5,0,0,15.46 +63,211,011914,101427, +63,5,011914,101427,4.18422,28.2273,0.32,12090.0,0,0,15.40 +63,210,011914,101428,01/19/14 03:14:58 695 81 700 1955 527 +63,5,011914,101428,4.18050,28.2423,0.32,12090.7,81,1955,15.44 +63,5,011914,101429,4.20355,28.2635,0.32,12093.2,84,1962,15.44 +63,5,011914,101430,4.21390,28.2871,0.32,12095.7,79,1949,15.45 +63,5,011914,101431,4.22638,28.2967,0.32,12099.2,78,1946,15.45 +63,100,011914,101432,2,1,6,60,80,25,1022746,24,1,0,0,0,0,0,1,15.44 +63,6,011914,101432,4.21560,28.2814,0.32,12101.8,80,1946,15.44 +63,6,011914,101433,4.23081,28.2910,0.32,12104.8,81,1944,15.44 +63,6,011914,101434,4.24130,28.3271,0.32,12105.9,79,1944,15.44 +63,6,011914,101435,4.24479,28.3456,0.32,12108.2,79,1945,15.44 +63,6,011914,101436,4.25072,28.3276,0.32,12107.6,80,1942,15.44 +63,6,011914,101437,4.24125,28.2809,0.32,12105.4,84,1941,15.44 +63,6,011914,101438,4.22181,28.2525,0.32,12103.4,80,1934,15.44 +63,6,011914,101439,4.20505,28.2307,0.32,12104.4,83,1933,15.44 +63,6,011914,101440,4.20554,28.2621,0.32,12105.9,79,1932,15.44 +63,6,011914,101441,4.19348,28.2417,0.32,12106.3,78,1930,15.44 +63,6,011914,101442,4.18434,28.2222,0.32,12109.0,79,1933,15.44 +63,6,011914,101443,4.19635,28.2245,0.32,12112.2,81,1936,15.44 +63,6,011914,101444,4.20902,28.2199,0.32,12115.0,83,1932,15.44 +63,6,011914,101445,4.22954,28.1814,0.32,12115.2,77,1936,15.44 +63,6,011914,101446,4.24346,28.2185,0.32,12112.4,81,1942,15.44 +63,6,011914,101447,4.21875,28.2625,0.32,12111.2,81,1939,15.44 +63,6,011914,101448,4.21066,28.2439,0.32,12110.3,80,1933,15.44 +63,6,011914,101449,4.20074,28.2472,0.32,12109.3,80,1935,15.44 +63,6,011914,101450,4.18122,28.2459,0.32,12108.8,80,1932,15.44 +63,6,011914,101451,4.17422,28.2497,0.32,12110.4,78,1932,15.44 +63,6,011914,101452,4.18534,28.2217,0.32,12112.5,75,1932,15.44 +63,6,011914,101453,4.20259,28.2200,0.32,12114.2,77,1929,15.44 +63,6,011914,101454,4.22125,28.2181,0.32,12113.9,82,1926,15.44 +63,6,011914,101455,4.20733,28.2047,0.32,12111.0,80,1924,15.44 +63,6,011914,101456,4.18621,28.2060,0.32,12109.1,79,1924,15.44 +63,6,011914,101457,4.18994,28.2224,0.32,12109.7,78,1927,15.44 +63,6,011914,101458,4.19651,28.2326,0.32,12109.3,79,1925,15.44 +63,6,011914,101459,4.18733,28.2300,0.32,12109.8,78,1927,15.44 +63,6,011914,101500,4.17308,28.2051,0.32,12110.0,81,1930,15.44 +63,6,011914,101501,4.16639,28.1724,0.32,12112.4,80,1926,15.44 +63,6,011914,101502,4.17071,28.1741,0.32,12114.4,80,1929,15.44 +63,6,011914,101503,4.18704,28.1905,0.32,12114.1,81,1929,15.44 +63,6,011914,101504,4.17699,28.1974,0.32,12113.6,79,1931,15.44 +63,6,011914,101505,4.18434,28.2112,0.32,12113.9,81,1932,15.44 +63,6,011914,101506,4.18885,28.2209,0.32,12115.5,78,1934,15.44 +63,6,011914,101507,4.21032,28.2398,0.32,12117.7,82,1936,15.44 +63,6,011914,101508,4.22749,28.2439,0.32,12118.0,81,1935,15.44 +63,6,011914,101509,4.22288,28.2820,0.32,12115.5,80,1936,15.44 +63,6,011914,101510,4.20941,28.2540,0.32,12110.8,83,1941,15.44 +63,6,011914,101511,4.19627,28.2372,0.32,12109.1,80,1943,15.44 +63,6,011914,101512,4.19014,28.2378,0.32,12109.3,79,1946,15.44 +63,6,011914,101513,4.19072,28.2281,0.32,12110.2,82,1949,15.44 +63,6,011914,101514,4.18120,28.1838,0.32,12110.8,78,1947,15.44 +63,6,011914,101515,4.18873,28.1880,0.32,12111.2,83,1952,15.44 +63,6,011914,101516,4.21651,28.2282,0.32,12110.7,81,1951,15.44 +63,6,011914,101517,4.21236,28.2367,0.32,12108.2,82,1955,15.44 +63,6,011914,101518,4.19695,28.1933,0.32,12107.2,81,1954,15.44 +63,6,011914,101519,4.19566,28.1948,0.32,12106.8,79,1958,15.42 +63,6,011914,101520,4.19506,28.1979,0.32,12105.9,76,1959,15.43 +63,6,011914,101521,4.19151,28.1945,0.32,12104.9,80,1959,15.44 +63,6,011914,101522,4.18584,28.1859,0.32,12106.2,77,1960,15.44 +63,6,011914,101523,4.20580,28.1906,0.32,12107.4,79,1957,15.44 +63,6,011914,101524,4.19533,28.1946,0.32,12106.6,81,1960,15.44 +63,6,011914,101525,4.17849,28.1787,0.32,12107.5,78,1954,15.44 +63,6,011914,101526,4.18042,28.1816,0.32,12111.0,80,1955,15.43 +63,6,011914,101527,4.18924,28.1971,0.32,12115.5,84,1950,15.43 +63,6,011914,101528,4.22150,28.2522,0.32,12116.9,80,1949,15.44 +63,6,011914,101529,4.23566,28.2865,0.32,12118.2,83,1948,15.44 +63,6,011914,101530,4.23561,28.2534,0.32,12119.1,79,1946,15.44 +63,6,011914,101531,4.23748,28.2328,0.32,12118.2,82,1950,15.44 +63,100,011914,101532,2,1,10,739,80,28,1022743,24,1,0,0,0,0,0,1,15.44 +63,100,011914,102800,2,1,3,11,15,28,1022751,24,1,0,0,0,0,0,1,15.59 +63,3,011914,102800,4.21993,28.2290,0.32,12116.8,80,1940,15.59 +63,140,011914,102805,Sample Mode: Insitu - Pumped: 4.23702 S/M > 0.00150 C90-Limit +63,200,011914,102805, 42.3702, 28.3203, 0.32, 2.815 +63,3,011914,102805,4.23702,28.3203,0.32,2.8,0,0,15.60 +63,100,011914,102812,2,1,4,80,80,29,1022751,24,1,0,0,0,0,0,1,15.54 +63,4,011914,102813,4.09191,28.0159,0.32,11014.7,0,0,15.54 +63,4,011914,102814,4.11106,28.0410,0.32,11290.9,0,0,15.54 +63,4,011914,102815,4.11283,28.0453,0.32,11489.4,0,0,15.54 +63,4,011914,102816,4.09884,28.0406,0.32,11628.0,0,0,15.54 +63,4,011914,102817,4.08916,28.0380,0.32,11726.3,0,0,15.54 +63,4,011914,102818,4.06726,28.0277,0.32,11798.4,0,0,15.54 +63,4,011914,102819,4.04401,28.0075,0.32,11851.3,0,0,15.54 +63,4,011914,102820,4.02818,28.0054,0.32,11894.5,0,0,15.54 +63,4,011914,102821,4.04307,28.0462,0.32,11930.5,0,0,15.54 +63,4,011914,102822,4.07114,28.0936,0.32,11961.1,0,0,15.54 +63,4,011914,102823,4.11552,28.1331,0.32,11985.3,0,0,15.54 +63,4,011914,102824,4.13565,28.1279,0.32,12000.1,0,0,15.54 +63,4,011914,102825,4.10344,28.0681,0.32,12008.7,0,0,15.54 +63,4,011914,102826,4.04985,27.9946,0.32,12016.0,0,0,15.54 +63,4,011914,102827,4.01164,27.9528,0.32,12025.5,0,0,15.54 +63,4,011914,102828,4.00421,27.9633,0.32,12035.5,0,0,15.54 +63,4,011914,102829,4.05649,28.0304,0.32,12043.5,0,0,15.54 +63,4,011914,102830,4.13052,28.0711,0.32,12044.7,0,0,15.54 +63,4,011914,102831,4.19688,28.1313,0.32,12038.4,0,0,15.54 +63,4,011914,102832,4.19207,28.1410,0.32,12029.1,0,0,15.54 +63,4,011914,102833,4.12853,28.0994,0.32,12024.7,0,0,15.54 +63,4,011914,102834,4.06267,28.0424,0.32,12028.3,0,0,15.54 +63,4,011914,102835,4.03057,28.0098,0.32,12039.2,0,0,15.54 +63,4,011914,102836,4.05399,28.0397,0.32,12053.3,0,0,15.54 +63,4,011914,102837,4.10456,28.0911,0.32,12065.9,0,0,15.54 +63,4,011914,102838,4.13138,28.1357,0.32,12069.5,0,0,15.54 +63,4,011914,102839,4.11970,28.1190,0.32,12068.0,0,0,15.54 +63,4,011914,102840,4.06815,28.0636,0.32,12064.7,0,0,15.54 +63,4,011914,102841,4.00849,28.0081,0.32,12067.4,0,0,15.54 +63,4,011914,102842,4.00891,28.0323,0.32,12073.7,0,0,15.54 +63,4,011914,102843,4.04018,28.1099,0.32,12082.1,0,0,15.54 +63,4,011914,102844,4.07859,28.1441,0.32,12088.3,0,0,15.54 +63,4,011914,102845,4.11573,28.1507,0.32,12090.1,0,0,15.54 +63,4,011914,102846,4.13500,28.1080,0.32,12087.8,0,0,15.54 +63,4,011914,102847,4.12336,28.0669,0.32,12083.4,0,0,15.54 +63,4,011914,102848,4.09935,28.0445,0.32,12080.4,0,0,15.54 +63,4,011914,102849,4.07349,28.0149,0.32,12078.1,0,0,15.54 +63,4,011914,102850,4.02920,28.0072,0.32,12077.5,0,0,15.54 +63,4,011914,102851,4.03605,28.0170,0.32,12082.9,0,0,15.54 +63,4,011914,102852,4.05406,28.0751,0.32,12088.4,0,0,15.54 +63,4,011914,102853,4.06728,28.1367,0.32,12092.2,0,0,15.54 +63,4,011914,102854,4.08759,28.1363,0.32,12093.8,0,0,15.54 +63,4,011914,102855,4.08031,28.1067,0.32,12094.3,0,0,15.54 +63,4,011914,102856,4.06592,28.0774,0.32,12094.0,0,0,15.54 +63,4,011914,102857,4.05023,28.0446,0.32,12093.2,0,0,15.54 +63,4,011914,102858,4.02141,28.1001,0.32,12095.5,0,0,15.54 +63,4,011914,102859,4.04937,28.1745,0.32,12100.1,0,0,15.54 +63,4,011914,102900,4.09555,28.1985,0.32,12102.4,0,0,15.54 +63,4,011914,102901,4.09434,28.1874,0.32,12100.3,0,0,15.54 +63,4,011914,102902,4.04776,28.1582,0.32,12098.3,0,0,15.54 +63,4,011914,102903,4.02561,28.1293,0.32,12099.4,0,0,15.54 +63,4,011914,102904,4.03557,28.1183,0.32,12099.8,0,0,15.54 +63,4,011914,102905,4.03631,28.1134,0.32,12101.3,0,0,15.54 +63,4,011914,102906,4.05155,28.1122,0.32,12100.9,0,0,15.54 +63,4,011914,102907,4.05222,28.0977,0.32,12102.1,0,0,15.54 +63,4,011914,102908,4.06784,28.0935,0.32,12102.6,0,0,15.54 +63,4,011914,102909,4.08319,28.1092,0.32,12099.9,0,0,15.54 +63,4,011914,102910,4.08068,28.1133,0.32,12097.3,0,0,15.54 +63,4,011914,102911,4.09233,28.1066,0.32,12095.3,0,0,15.53 +63,4,011914,102912,4.11065,28.1437,0.32,12092.3,0,0,15.54 +63,4,011914,102913,4.10192,28.1749,0.32,12091.4,0,0,15.54 +63,4,011914,102914,4.08031,28.1651,0.32,12092.1,0,0,15.53 +63,4,011914,102915,4.10037,28.1585,0.32,12092.8,0,0,15.54 +63,4,011914,102916,4.09041,28.0972,0.32,12093.3,0,0,15.53 +63,4,011914,102917,4.08307,28.1380,0.32,12097.6,0,0,15.54 +63,4,011914,102918,4.10227,28.1362,0.32,12099.6,0,0,15.54 +63,4,011914,102919,4.12046,28.1198,0.32,12099.0,0,0,15.54 diff --git a/test/readWQMraw/WQM0063_1711_fw1.59_example.Raw b/test/readWQMraw/WQM0063_1711_fw1.59_example.Raw new file mode 100644 index 000000000..8c127b20e --- /dev/null +++ b/test/readWQMraw/WQM0063_1711_fw1.59_example.Raw @@ -0,0 +1,600 @@ + +File Name: WQM0063.001 +Created On: 060117 022821 +File Version: 3 3=Includes Sample Mode +WQM SN: 63 +F/W V: 1.59 +==================================================================== +CTD SN: 5442 +Pressure Range: 160 psia +IDO SN: 3393 +IDO43 Soc=1.351000e-04 +IDO43 FOffset=-3.193880e+03 +IDO43 A=-3.094100e-03 +IDO43 B=1.589000e-04 +IDO43 C=-2.651300e-06 +IDO43 E=1.000000e+00 +DO Stability-Fit=Fixed +DO Stability-A=80.0000 +DO Stability-B=-2.2880 +DO Stability-C=60.8050 +==================================================================== +ECO SN: FLNTUS-2927 +ECO Baud: 19200 +ECO Delimiter: TAB +ECO IHM: 1 +ECO IOM: 2 +ECO Total Columns: 7 +ECO SN Column: None +ECO Date Column: 1 +ECO Time Column: 2 +ECO Signal Count: 2 +ECO Signal 1 Name: CHLA +ECO Signal 1 Raw Units: COUNTS +ECO Signal 1 Engr Units: UG/L +ECO Signal 1 Type: 1 Std Scale'n'Offset +ECO Signal 1 Cal Coef: 0.011200 49.000000 0.000000 0.000000 +ECO Signal 2 Name: TURBIDITY +ECO Signal 2 Raw Units: COUNTS +ECO Signal 2 Engr Units: NTU +ECO Signal 2 Type: 1 Std Scale'n'Offset +ECO Signal 2 Cal Coef: 0.006200 50.000000 0.000000 0.000000 +==================================================================== +External Data Port: Off +==================================================================== +Control: Autonomous +Delay Seconds: 0 +Sample Seconds: 60 +Sample Interval Seconds: 900 +==================================================================== +Starting Free Flask Disk: 1022816 K +Total Flask Disk: 1022816 K +==================================================================== +BLIS ul / squirt: 9.0 +Pumped Hour Interval: 1 +Pumped BLIS: 0 +Static BLIS: 4 +Starting Total BLIS Squirts: 2 +==================================================================== +Recent UPS: No +Starting UPS Count: 0 +Starting Total UPS Count: 0 +Starting Voltage: 15.77 +==================================================================== +Outbits - Version: 3 +Outbits - Misc: 0xCE01 +Outbits - CTD: 0xFCC0 +Outbits - ECO: 0xCC00 +Outbits - EDP: 0x0000 +Data Output: Averaged +==================================================================== +Heartbeat: OFF +Update Date/Time: Normal +File Format: SN,State,Date,Time,Cond(S/m),Temp(C),Pres(dbar),RawDO(Hz),Pumped,CHLA(COUNTS),TURBIDITY(COUNTS),Volts + +63,100,060117,022821,1,1,10,0,15,0,1022767,2,1,0,1,0,0,0,1,15.77 +63,100,060117,025800,1,1,3,7,15,0,1022815,2,1,0,1,0,0,0,1,15.79 +63,230,060117,025801,3,24688,24680,24680 +63,200,060117,025806, 0.5745, 23.9504, 0.01, 11025.4, 2 +63,3,060117,025806,0.05745,23.9504,0.01,11025.4,2,0,0,15.60 +63,100,060117,025807,1,1,4,80,80,0,1022799,6,1,0,1,0,0,0,1,15.68 +63,4,060117,025807,0.05731,23.9491,0.01,11025.9,2,0,0,15.68 +63,4,060117,025808,0.05703,23.9398,0.01,11026.8,1,0,0,15.70 +63,4,060117,025809,0.05695,23.9216,0.01,11028.2,1,0,0,15.69 +63,4,060117,025810,0.05695,23.9112,0.01,11030.7,1,0,0,15.69 +63,4,060117,025811,0.05692,23.9009,0.01,11031.6,1,0,0,15.69 +63,4,060117,025812,0.05712,23.8907,0.01,11032.6,1,0,0,15.69 +63,4,060117,025813,0.05737,23.8809,0.01,11032.9,1,0,0,15.69 +63,4,060117,025814,0.05718,23.8721,0.01,11033.6,1,0,0,15.69 +63,4,060117,025815,0.05702,23.8621,0.01,11033.8,1,0,0,15.69 +63,4,060117,025816,0.05706,23.8522,0.01,11033.7,1,0,0,15.69 +63,4,060117,025817,0.05690,23.8427,0.01,11033.7,1,0,0,15.69 +63,4,060117,025818,0.05702,23.8344,0.01,11034.0,1,0,0,15.69 +63,4,060117,025819,0.05711,23.8253,0.01,11033.9,1,0,0,15.68 +63,4,060117,025820,0.05696,23.8173,0.01,11033.8,1,0,0,15.69 +63,4,060117,025821,0.05678,23.8099,0.01,11033.8,1,0,0,15.68 +63,4,060117,025822,0.05695,23.8032,0.01,11034.0,1,0,0,15.70 +63,4,060117,025823,0.05697,23.7968,0.01,11033.8,1,0,0,15.70 +63,4,060117,025824,0.05686,23.7901,0.01,11033.9,1,0,0,15.70 +63,4,060117,025825,0.05689,23.7852,0.01,11033.5,1,0,0,15.70 +63,4,060117,025826,0.05700,23.7793,0.01,11033.8,1,0,0,15.71 +63,4,060117,025827,0.05684,23.7738,0.01,11034.1,1,0,0,15.70 +63,4,060117,025828,0.05663,23.7692,0.01,11033.9,1,0,0,15.70 +63,4,060117,025829,0.05684,23.7653,0.01,11034.3,1,0,0,15.71 +63,4,060117,025830,0.05714,23.7603,0.01,11034.4,1,0,0,15.71 +63,4,060117,025831,0.05709,23.7560,0.01,11034.3,1,0,0,15.71 +63,4,060117,025832,0.05696,23.7520,0.01,11034.4,1,0,0,15.71 +63,4,060117,025833,0.05688,23.7478,0.01,11034.2,1,0,0,15.71 +63,4,060117,025834,0.05700,23.7443,0.01,11034.3,1,0,0,15.71 +63,4,060117,025835,0.05724,23.7406,0.01,11034.0,1,0,0,15.71 +63,4,060117,025836,0.05719,23.7384,0.01,11033.9,1,0,0,15.71 +63,4,060117,025837,0.05699,23.7348,0.01,11034.3,1,0,0,15.71 +63,4,060117,025838,0.05698,23.7313,0.01,11033.7,1,0,0,15.71 +63,4,060117,025839,0.05719,23.7288,0.01,11034.1,1,0,0,15.71 +63,4,060117,025840,0.05743,23.7249,0.01,11034.3,1,0,0,15.71 +63,4,060117,025841,0.05764,23.7207,0.01,11034.0,1,0,0,15.71 +63,4,060117,025842,0.05786,23.7175,0.01,11033.8,1,0,0,15.71 +63,4,060117,025843,0.05779,23.7157,0.01,11033.8,1,0,0,15.71 +63,4,060117,025844,0.05740,23.7126,0.01,11034.4,1,0,0,15.71 +63,4,060117,025845,0.05747,23.7092,0.01,11033.8,1,0,0,15.71 +63,4,060117,025846,0.05849,23.7066,0.01,11033.9,1,0,0,15.71 +63,4,060117,025847,0.05928,23.7042,0.01,11033.9,1,0,0,15.71 +63,4,060117,025848,0.05923,23.7024,0.01,11034.2,1,0,0,15.71 +63,4,060117,025849,0.05858,23.7009,0.01,11034.1,1,0,0,15.71 +63,4,060117,025850,0.05827,23.6992,0.01,11033.8,1,0,0,15.71 +63,4,060117,025851,0.05866,23.6986,0.01,11034.6,1,0,0,15.71 +63,4,060117,025852,0.05936,23.6985,0.01,11034.1,1,0,0,15.71 +63,4,060117,025853,0.05988,23.6982,0.01,11033.8,1,0,0,15.71 +63,4,060117,025854,0.06000,23.6979,0.01,11034.0,1,0,0,15.71 +63,4,060117,025855,0.05960,23.6981,0.01,11034.3,1,0,0,15.71 +63,4,060117,025856,0.05921,23.6980,0.01,11033.9,1,0,0,15.71 +63,4,060117,025857,0.05948,23.6979,0.01,11034.6,1,0,0,15.71 +63,4,060117,025858,0.06117,23.6981,0.01,11034.2,1,0,0,15.71 +63,4,060117,025859,0.06251,23.6973,0.01,11034.3,1,0,0,15.71 +63,4,060117,025900,0.06180,23.6970,0.01,11034.3,1,0,0,15.71 +63,4,060117,025901,0.06092,23.6971,0.01,11034.3,1,0,0,15.71 +63,4,060117,025902,0.06151,23.6973,0.01,11034.3,1,0,0,15.71 +63,4,060117,025903,0.06243,23.6973,0.01,11034.2,1,0,0,15.71 +63,4,060117,025904,0.06241,23.6966,0.01,11034.7,1,0,0,15.71 +63,4,060117,025905,0.06247,23.6966,0.01,11034.4,1,0,0,15.71 +63,4,060117,025906,0.06302,23.6966,0.01,11034.3,1,0,0,15.71 +63,4,060117,025907,0.06284,23.6975,0.01,11034.5,1,0,0,15.71 +63,4,060117,025908,0.06205,23.6973,0.01,11034.4,1,0,0,15.71 +63,4,060117,025909,0.06269,23.6975,0.01,11034.4,1,0,0,15.71 +63,4,060117,025910,0.06482,23.6976,0.01,11034.5,1,0,0,15.71 +63,4,060117,025911,0.06517,23.6977,0.01,11034.4,1,0,0,15.71 +63,4,060117,025912,0.06396,23.6974,0.01,11034.6,1,0,0,15.71 +63,4,060117,025913,0.06336,23.6979,0.01,11035.1,1,0,0,15.71 +63,4,060117,025914,0.06389,23.6979,0.01,11034.8,1,0,0,15.71 +63,4,060117,025915,0.06398,23.6979,0.01,11034.8,1,0,0,15.71 +63,4,060117,025916,0.06409,23.6987,0.01,11034.5,1,0,0,15.71 +63,4,060117,025917,0.06511,23.6994,0.01,11034.9,1,0,0,15.71 +63,4,060117,025918,0.06526,23.7002,0.01,11034.8,1,0,0,15.71 +63,100,060117,025919,1,1,5,8,80,5,1022795,20,1,0,1,0,0,0,1,15.71 +63,5,060117,025919,0.06477,23.7010,0.01,11034.3,1,0,0,15.71 +63,5,060117,025920,0.06485,23.7014,0.01,11034.4,1,0,0,15.64 +63,5,060117,025921,0.06518,23.7031,0.01,11034.4,1,0,0,15.64 +63,5,060117,025922,0.06578,23.7042,0.01,11034.8,1,0,0,15.63 +63,210,060117,025922,05/31/17 19:59:14 695 69 700 792 533 +63,5,060117,025923,0.06636,23.7055,0.01,11034.9,1,69,792,15.64 +63,5,060117,025924,0.06665,23.7061,0.01,11034.2,1,65,783,15.63 +63,5,060117,025925,0.06646,23.7068,0.01,11035.0,1,64,786,15.63 +63,5,060117,025926,0.06616,23.7073,0.01,11035.2,1,68,791,15.63 +63,100,060117,025927,1,1,6,60,80,5,1022794,20,1,0,0,0,0,0,1,15.62 +63,6,060117,025927,0.06639,23.7073,0.01,11035.4,1,63,805,15.62 +63,6,060117,025928,0.06705,23.7075,0.01,11034.3,1,64,786,15.63 +63,6,060117,025929,0.06803,23.7073,0.01,11035.0,1,67,776,15.63 +63,6,060117,025930,0.06809,23.7068,0.01,11035.2,1,65,790,15.63 +63,6,060117,025931,0.06726,23.7056,0.01,11034.9,1,66,793,15.63 +63,6,060117,025932,0.06725,23.7050,0.01,11035.1,1,67,787,15.63 +63,6,060117,025933,0.06826,23.7040,0.01,11035.0,1,67,788,15.63 +63,6,060117,025934,0.06876,23.7028,0.01,11035.2,1,67,805,15.63 +63,6,060117,025935,0.06850,23.7039,0.01,11034.8,1,67,782,15.63 +63,6,060117,025936,0.06907,23.7039,0.01,11035.1,1,66,767,15.62 +63,6,060117,025937,0.06948,23.7051,0.01,11034.8,1,65,781,15.63 +63,6,060117,025938,0.06876,23.7054,0.01,11034.7,1,69,811,15.63 +63,6,060117,025939,0.06788,23.7068,0.01,11034.5,1,67,800,15.63 +63,6,060117,025940,0.07020,23.7076,0.01,11034.9,1,67,772,15.63 +63,6,060117,025941,0.07252,23.7100,0.01,11034.7,1,65,783,15.62 +63,6,060117,025942,0.07115,23.7104,0.01,11034.8,1,68,798,15.63 +63,6,060117,025943,0.06984,23.7122,0.01,11034.9,1,67,789,15.63 +63,6,060117,025944,0.07061,23.7134,0.01,11034.5,1,66,799,15.63 +63,6,060117,025945,0.07225,23.7157,0.01,11034.6,1,68,794,15.62 +63,6,060117,025946,0.07301,23.7163,0.01,11034.7,1,67,799,15.63 +63,6,060117,025947,0.07231,23.7185,0.01,11034.6,1,68,793,15.63 +63,6,060117,025948,0.07186,23.7201,0.01,11034.8,1,67,780,15.62 +63,6,060117,025949,0.07302,23.7222,0.01,11034.5,1,67,780,15.63 +63,6,060117,025950,0.07341,23.7238,0.01,11034.7,1,66,810,15.62 +63,6,060117,025951,0.07213,23.7262,0.01,11034.5,1,68,794,15.63 +63,6,060117,025952,0.07264,23.7273,0.01,11034.3,1,68,772,15.62 +63,6,060117,025953,0.07483,23.7299,0.01,11034.4,1,68,783,15.63 +63,6,060117,025954,0.07364,23.7313,0.01,11034.3,1,69,795,15.62 +63,6,060117,025955,0.07230,23.7329,0.01,11034.5,1,67,784,15.62 +63,6,060117,025956,0.07341,23.7349,0.01,11034.0,1,69,785,15.62 +63,6,060117,025957,0.07430,23.7369,0.01,11034.3,1,71,800,15.63 +63,6,060117,025958,0.07338,23.7383,0.01,11034.1,1,68,805,15.62 +63,6,060117,025959,0.07479,23.7397,0.01,11034.5,1,67,773,15.62 +63,6,060117,030000,0.07649,23.7408,0.01,11034.7,1,66,766,15.62 +63,6,060117,030001,0.07449,23.7426,0.01,11034.5,1,67,795,15.62 +63,6,060117,030002,0.07327,23.7436,0.01,11034.5,1,68,817,15.62 +63,6,060117,030003,0.07421,23.7448,0.01,11034.6,1,66,801,15.62 +63,6,060117,030004,0.07748,23.7461,0.01,11034.4,1,66,790,15.62 +63,6,060117,030005,0.07862,23.7469,0.01,11034.9,1,67,772,15.62 +63,6,060117,030006,0.07722,23.7476,0.01,11034.9,1,68,785,15.62 +63,6,060117,030007,0.07519,23.7488,0.01,11034.8,1,69,788,15.62 +63,6,060117,030008,0.07514,23.7497,0.01,11034.5,1,69,801,15.62 +63,6,060117,030009,0.07640,23.7501,0.01,11035.1,1,67,817,15.62 +63,6,060117,030010,0.07716,23.7513,0.01,11034.9,1,68,790,15.62 +63,6,060117,030011,0.07934,23.7529,0.01,11035.2,1,67,752,15.62 +63,6,060117,030012,0.07924,23.7532,0.01,11034.7,1,68,779,15.62 +63,6,060117,030013,0.07590,23.7548,0.01,11034.6,1,64,812,15.62 +63,6,060117,030014,0.07583,23.7556,0.01,11035.1,1,69,805,15.62 +63,6,060117,030015,0.07873,23.7558,0.01,11035.1,1,67,798,15.62 +63,6,060117,030016,0.08025,23.7570,0.01,11034.8,1,66,797,15.62 +63,6,060117,030017,0.07960,23.7586,0.01,11034.8,1,68,765,15.62 +63,6,060117,030018,0.07952,23.7596,0.01,11034.9,1,68,794,15.62 +63,6,060117,030019,0.07696,23.7607,0.01,11034.9,1,65,785,15.62 +63,6,060117,030020,0.07688,23.7615,0.01,11034.8,1,68,809,15.62 +63,6,060117,030021,0.07764,23.7621,0.01,11035.3,1,66,804,15.62 +63,6,060117,030022,0.08008,23.7628,0.01,11035.3,1,67,778,15.62 +63,6,060117,030023,0.08078,23.7635,0.01,11035.1,1,66,792,15.62 +63,6,060117,030024,0.07817,23.7632,0.01,11035.1,1,67,773,15.62 +63,6,060117,030025,0.07839,23.7640,0.01,11034.6,1,67,797,15.62 +63,6,060117,030026,0.07741,23.7657,0.01,11034.9,1,69,817,15.62 +63,100,060117,030027,1,1,10,1775,80,9,1022790,24,1,0,0,0,0,0,1,15.72 +63,100,060117,031300,1,1,3,7,15,9,1022799,24,1,0,0,0,0,0,1,15.79 +63,3,060117,031300,0.07792,23.7658,0.01,11035.4,1,0,0,15.79 +63,230,060117,031301,3,24688,24680,24672 +63,100,060117,031307,1,1,4,15,15,9,1022799,24,1,0,0,0,0,0,1,15.66 +63,200,060117,031307, 0.9683, 23.8921, 0.01, 11027.5, 2 +63,4,060117,031307,0.09683,23.8921,0.01,11027.5,2,0,0,15.66 +63,4,060117,031308,0.09697,23.8926,0.01,11027.4,2,0,0,15.71 +63,4,060117,031309,0.09726,23.8838,0.01,11027.7,1,0,0,15.73 +63,4,060117,031310,0.09690,23.8622,0.01,11028.0,1,0,0,15.73 +63,4,060117,031311,0.09675,23.8474,0.01,11028.6,1,0,0,15.73 +63,4,060117,031312,0.09724,23.8372,0.01,11029.0,1,0,0,15.72 +63,4,060117,031313,0.09708,23.8271,0.01,11028.9,1,0,0,15.72 +63,4,060117,031314,0.09677,23.8175,0.01,11029.3,1,0,0,15.72 +63,4,060117,031315,0.09641,23.8073,0.01,11029.3,1,0,0,15.72 +63,4,060117,031316,0.09654,23.7980,0.01,11029.7,1,0,0,15.72 +63,4,060117,031317,0.09663,23.7886,0.01,11029.9,1,0,0,15.72 +63,4,060117,031318,0.09633,23.7807,0.01,11030.1,1,0,0,15.72 +63,4,060117,031319,0.09654,23.7724,0.01,11029.9,1,0,0,15.72 +63,4,060117,031320,0.09648,23.7652,0.01,11029.8,1,0,0,15.72 +63,4,060117,031321,0.09587,23.7586,0.01,11030.1,1,0,0,15.72 +63,4,060117,031322,0.09530,23.7508,0.01,11029.9,1,0,0,15.72 +63,4,060117,031323,0.09555,23.7437,0.01,11030.1,1,0,0,15.72 +63,4,060117,031324,0.09550,23.7369,0.01,11030.1,1,0,0,15.72 +63,4,060117,031325,0.09484,23.7295,0.01,11030.0,1,0,0,15.72 +63,4,060117,031326,0.09445,23.7227,0.01,11030.3,1,0,0,15.72 +63,4,060117,031327,0.09397,23.7157,0.01,11030.0,1,0,0,15.72 +63,4,060117,031328,0.09416,23.7091,0.01,11030.2,1,0,0,15.72 +63,4,060117,031329,0.09442,23.7047,0.01,11030.3,1,0,0,15.72 +63,4,060117,031330,0.09428,23.7011,0.01,11030.3,1,0,0,15.72 +63,4,060117,031331,0.09415,23.6987,0.01,11030.6,1,0,0,15.72 +63,4,060117,031332,0.09418,23.6960,0.01,11030.1,1,0,0,15.72 +63,4,060117,031333,0.09384,23.6951,0.01,11030.5,1,0,0,15.72 +63,4,060117,031334,0.09387,23.6942,0.01,11030.2,1,0,0,15.72 +63,4,060117,031335,0.09427,23.6927,0.01,11030.4,1,0,0,15.72 +63,4,060117,031336,0.09433,23.6926,0.01,11030.6,1,0,0,15.72 +63,4,060117,031337,0.09424,23.6933,0.01,11030.5,1,0,0,15.72 +63,4,060117,031338,0.09428,23.6942,0.01,11030.4,1,0,0,15.72 +63,4,060117,031339,0.09434,23.6944,0.01,11030.2,1,0,0,15.72 +63,4,060117,031340,0.09470,23.6953,0.01,11030.5,1,0,0,15.72 +63,4,060117,031341,0.09504,23.6953,0.01,11030.3,1,0,0,15.72 +63,4,060117,031342,0.09503,23.6957,0.01,11030.4,1,0,0,15.72 +63,4,060117,031343,0.09502,23.6960,0.01,11030.1,1,0,0,15.72 +63,4,060117,031344,0.09494,23.6968,0.01,11030.3,1,0,0,15.72 +63,4,060117,031345,0.09482,23.6978,0.01,11030.5,1,0,0,15.72 +63,4,060117,031346,0.09500,23.6987,0.01,11030.7,1,0,0,15.72 +63,4,060117,031347,0.09529,23.6999,0.01,11030.4,1,0,0,15.72 +63,4,060117,031348,0.09530,23.7004,0.01,11030.1,1,0,0,15.72 +63,4,060117,031349,0.09512,23.7022,0.01,11030.3,1,0,0,15.72 +63,4,060117,031350,0.09503,23.7022,0.01,11030.2,1,0,0,15.72 +63,4,060117,031351,0.09489,23.7014,0.01,11030.4,1,0,0,15.72 +63,4,060117,031352,0.09499,23.7009,0.01,11030.3,1,0,0,15.72 +63,4,060117,031353,0.09511,23.7000,0.01,11029.9,1,0,0,15.72 +63,4,060117,031354,0.09488,23.6983,0.01,11030.5,1,0,0,15.71 +63,4,060117,031355,0.09496,23.6957,0.01,11030.5,1,0,0,15.72 +63,4,060117,031356,0.09523,23.6949,0.01,11030.4,1,0,0,15.72 +63,4,060117,031357,0.09511,23.6941,0.01,11030.6,1,0,0,15.72 +63,4,060117,031358,0.09477,23.6937,0.01,11030.5,1,0,0,15.71 +63,4,060117,031359,0.09457,23.6938,0.01,11030.4,1,0,0,15.71 +63,4,060117,031400,0.09432,23.6929,0.01,11030.7,1,0,0,15.72 +63,4,060117,031401,0.09442,23.6932,0.01,11030.0,1,0,0,15.71 +63,4,060117,031402,0.09452,23.6920,0.01,11030.0,1,0,0,15.72 +63,4,060117,031403,0.09427,23.6919,0.01,11030.0,1,0,0,15.72 +63,4,060117,031404,0.09365,23.6935,0.01,11030.1,1,0,0,15.71 +63,4,060117,031405,0.09341,23.6935,0.01,11030.5,1,0,0,15.72 +63,4,060117,031406,0.09360,23.6947,0.01,11030.6,1,0,0,15.72 +63,4,060117,031407,0.09368,23.6949,0.01,11030.6,1,0,0,15.71 +63,4,060117,031408,0.09376,23.6960,0.01,11030.0,1,0,0,15.72 +63,4,060117,031409,0.09357,23.6977,0.01,11030.2,1,0,0,15.72 +63,4,060117,031410,0.09304,23.6993,0.01,11029.6,1,0,0,15.71 +63,4,060117,031411,0.09275,23.7010,0.01,11030.0,1,0,0,15.72 +63,4,060117,031412,0.09297,23.7014,0.01,11029.8,1,0,0,15.71 +63,4,060117,031413,0.09342,23.7043,0.01,11030.1,1,0,0,15.72 +63,4,060117,031414,0.09330,23.7060,0.01,11029.9,1,0,0,15.71 +63,4,060117,031415,0.09288,23.7075,0.01,11030.0,1,0,0,15.72 +63,4,060117,031416,0.09249,23.7091,0.01,11029.9,1,0,0,15.72 +63,4,060117,031417,0.09231,23.7111,0.01,11030.0,1,0,0,15.71 +63,4,060117,031418,0.09239,23.7128,0.01,11030.3,1,0,0,15.71 +63,100,060117,031419,1,1,5,8,80,14,1022795,24,1,0,0,0,0,0,1,15.71 +63,5,060117,031419,0.09256,23.7153,0.01,11029.5,1,0,0,15.71 +63,5,060117,031420,0.09254,23.7171,0.01,11029.7,1,0,0,15.64 +63,5,060117,031421,0.09222,23.7187,0.01,11029.6,1,0,0,15.64 +63,5,060117,031422,0.09193,23.7193,0.01,11030.0,1,0,0,15.57 +63,5,060117,031423,0.09181,23.7208,0.01,11029.8,1,0,0,15.63 +63,210,060117,031423,05/31/17 20:14:15 695 53 700 295 532 +63,5,060117,031424,0.09191,23.7215,0.01,11029.4,1,53,295,15.64 +63,5,060117,031425,0.09183,23.7234,0.01,11029.6,1,58,296,15.62 +63,5,060117,031426,0.09165,23.7231,0.01,11030.4,1,56,297,15.63 +63,100,060117,031427,1,1,6,60,80,14,1022794,24,1,0,0,0,0,0,1,15.63 +63,6,060117,031427,0.09155,23.7239,0.01,11029.3,1,57,295,15.63 +63,6,060117,031428,0.09137,23.7244,0.01,11030.0,1,56,295,15.62 +63,6,060117,031429,0.09121,23.7257,0.01,11029.7,1,57,289,15.62 +63,6,060117,031430,0.09101,23.7254,0.01,11029.7,1,60,293,15.63 +63,6,060117,031431,0.09079,23.7262,0.01,11029.9,1,59,292,15.63 +63,6,060117,031432,0.09075,23.7281,0.01,11029.8,1,59,308,15.62 +63,6,060117,031433,0.09081,23.7289,0.01,11029.7,1,56,291,15.62 +63,6,060117,031434,0.09080,23.7310,0.01,11030.0,1,58,290,15.63 +63,6,060117,031435,0.09064,23.7316,0.01,11030.0,1,56,290,15.63 +63,6,060117,031436,0.09042,23.7332,0.01,11029.8,1,59,293,15.62 +63,6,060117,031437,0.09032,23.7344,0.01,11029.5,1,57,288,15.62 +63,6,060117,031438,0.09028,23.7348,0.01,11029.9,1,57,290,15.63 +63,6,060117,031439,0.09019,23.7369,0.01,11029.8,1,58,289,15.63 +63,6,060117,031440,0.09009,23.7377,0.01,11029.7,1,56,291,15.62 +63,6,060117,031441,0.09001,23.7384,0.01,11030.2,1,57,295,15.62 +63,6,060117,031442,0.08998,23.7400,0.01,11030.0,1,56,290,15.62 +63,6,060117,031443,0.08989,23.7404,0.01,11030.1,1,56,289,15.63 +63,6,060117,031444,0.08962,23.7411,0.01,11029.8,1,58,292,15.63 +63,6,060117,031445,0.08961,23.7423,0.01,11030.2,1,59,290,15.62 +63,6,060117,031446,0.08973,23.7421,0.01,11029.9,1,57,287,15.63 +63,6,060117,031447,0.08971,23.7431,0.01,11029.7,1,58,290,15.63 +63,6,060117,031448,0.08955,23.7429,0.01,11030.2,1,55,291,15.63 +63,6,060117,031449,0.08942,23.7438,0.01,11030.5,1,58,290,15.62 +63,6,060117,031450,0.08932,23.7440,0.01,11029.9,1,57,288,15.62 +63,6,060117,031451,0.08926,23.7437,0.01,11030.5,1,58,290,15.63 +63,6,060117,031452,0.08930,23.7435,0.01,11030.5,1,57,292,15.62 +63,6,060117,031453,0.08922,23.7423,0.01,11030.0,1,59,288,15.62 +63,6,060117,031454,0.08909,23.7419,0.01,11030.2,1,59,289,15.63 +63,6,060117,031455,0.08899,23.7411,0.01,11030.0,1,55,289,15.63 +63,6,060117,031456,0.08890,23.7400,0.01,11030.4,1,58,289,15.62 +63,6,060117,031457,0.08893,23.7372,0.01,11030.6,1,58,290,15.63 +63,6,060117,031458,0.08893,23.7366,0.01,11030.4,1,59,289,15.62 +63,6,060117,031459,0.08891,23.7355,0.01,11030.4,1,56,290,15.62 +63,6,060117,031500,0.08885,23.7344,0.01,11030.8,1,58,287,15.62 +63,6,060117,031501,0.08870,23.7339,0.01,11030.6,1,59,289,15.62 +63,6,060117,031502,0.08861,23.7324,0.01,11030.9,1,60,291,15.62 +63,6,060117,031503,0.08863,23.7305,0.01,11030.5,1,59,290,15.63 +63,6,060117,031504,0.08859,23.7294,0.01,11030.9,1,58,291,15.62 +63,6,060117,031505,0.08854,23.7294,0.01,11030.9,1,59,290,15.62 +63,6,060117,031506,0.08846,23.7281,0.01,11030.6,1,58,290,15.62 +63,6,060117,031507,0.08837,23.7274,0.01,11030.4,1,57,291,15.62 +63,6,060117,031508,0.08820,23.7265,0.01,11030.2,1,57,290,15.62 +63,6,060117,031509,0.08806,23.7260,0.01,11030.5,1,59,290,15.63 +63,6,060117,031510,0.08812,23.7244,0.01,11030.6,1,57,292,15.62 +63,6,060117,031511,0.08815,23.7228,0.01,11030.4,1,56,293,15.62 +63,6,060117,031512,0.08814,23.7192,0.01,11030.7,1,59,289,15.62 +63,6,060117,031513,0.08809,23.7179,0.01,11030.6,1,57,289,15.62 +63,6,060117,031514,0.08790,23.7175,0.01,11030.5,1,56,290,15.62 +63,6,060117,031515,0.08758,23.7168,0.01,11030.8,1,58,291,15.62 +63,6,060117,031516,0.08756,23.7155,0.01,11030.3,1,59,291,15.62 +63,6,060117,031517,0.08802,23.7138,0.01,11030.6,1,57,290,15.62 +63,6,060117,031518,0.08828,23.7127,0.01,11030.3,1,56,285,15.62 +63,6,060117,031519,0.08800,23.7128,0.01,11030.3,1,56,294,15.62 +63,6,060117,031520,0.08755,23.7130,0.01,11030.2,1,57,292,15.62 +63,6,060117,031521,0.08742,23.7124,0.01,11030.1,1,58,288,15.62 +63,6,060117,031522,0.08778,23.7130,0.01,11030.6,1,59,287,15.62 +63,6,060117,031523,0.08804,23.7129,0.01,11030.4,1,56,291,15.62 +63,6,060117,031524,0.08792,23.7145,0.01,11030.0,1,57,292,15.62 +63,6,060117,031525,0.08769,23.7149,0.01,11030.4,1,59,289,15.62 +63,6,060117,031526,0.08735,23.7166,0.01,11030.2,1,57,288,15.62 +63,100,060117,031527,1,1,10,744,80,18,1022790,24,1,0,0,0,0,0,1,15.62 +63,100,060117,032800,1,1,3,7,15,18,1022783,24,1,0,0,0,0,0,1,15.79 +63,3,060117,032800,0.08708,23.7178,0.01,11030.2,1,0,0,15.79 +63,230,060117,032801,3,24680,24672,24680 +63,100,060117,032807,1,1,4,15,15,18,1022783,24,1,0,0,0,0,0,1,15.65 +63,200,060117,032807, 0.6641, 23.8663, 0.00, 11028.5, 2 +63,4,060117,032807,0.06641,23.8663,0.00,11028.5,2,0,0,15.65 +63,4,060117,032808,0.06647,23.8662,0.00,11027.9,2,0,0,15.71 +63,4,060117,032809,0.06641,23.8580,0.00,11028.3,1,0,0,15.73 +63,4,060117,032810,0.06592,23.8412,0.00,11028.4,1,0,0,15.72 +63,4,060117,032811,0.06573,23.8284,0.00,11028.7,1,0,0,15.72 +63,4,060117,032812,0.06561,23.8214,0.00,11028.7,1,0,0,15.72 +63,4,060117,032813,0.06553,23.8147,0.00,11029.1,1,0,0,15.72 +63,4,060117,032814,0.06550,23.8092,0.00,11029.2,1,0,0,15.72 +63,4,060117,032815,0.06542,23.8018,0.00,11029.0,1,0,0,15.72 +63,4,060117,032816,0.06531,23.7929,0.00,11028.6,1,0,0,15.72 +63,4,060117,032817,0.06510,23.7866,0.00,11028.8,1,0,0,15.72 +63,4,060117,032818,0.06488,23.7786,0.00,11029.0,1,0,0,15.72 +63,4,060117,032819,0.06468,23.7724,0.00,11028.7,1,0,0,15.72 +63,4,060117,032820,0.06460,23.7671,0.00,11028.9,1,0,0,15.72 +63,4,060117,032821,0.06461,23.7614,0.00,11029.0,1,0,0,15.72 +63,4,060117,032822,0.06462,23.7546,0.00,11028.7,1,0,0,15.72 +63,4,060117,032823,0.06459,23.7496,0.00,11028.5,1,0,0,15.72 +63,4,060117,032824,0.06447,23.7435,0.00,11028.3,1,0,0,15.72 +63,4,060117,032825,0.06432,23.7378,0.00,11028.3,1,0,0,15.72 +63,4,060117,032826,0.06423,23.7340,0.00,11028.1,1,0,0,15.72 +63,4,060117,032827,0.06425,23.7296,0.00,11028.1,1,0,0,15.72 +63,4,060117,032828,0.06422,23.7247,0.00,11028.1,1,0,0,15.72 +63,4,060117,032829,0.06429,23.7188,0.00,11028.0,1,0,0,15.72 +63,4,060117,032830,0.06403,23.7146,0.00,11027.7,1,0,0,15.72 +63,4,060117,032831,0.06386,23.7106,0.00,11027.8,1,0,0,15.71 +63,4,060117,032832,0.06371,23.7065,0.00,11027.7,1,0,0,15.71 +63,4,060117,032833,0.06363,23.7006,0.00,11027.9,1,0,0,15.72 +63,4,060117,032834,0.06367,23.6960,0.00,11027.9,1,0,0,15.72 +63,4,060117,032835,0.06371,23.6935,0.00,11027.6,1,0,0,15.72 +63,4,060117,032836,0.06366,23.6906,0.00,11028.1,1,0,0,15.72 +63,4,060117,032837,0.06348,23.6880,0.00,11028.8,1,0,0,15.71 +63,4,060117,032838,0.06332,23.6850,0.00,11028.5,1,0,0,15.72 +63,4,060117,032839,0.06329,23.6834,0.00,11028.5,1,0,0,15.72 +63,4,060117,032840,0.06334,23.6827,0.00,11028.6,1,0,0,15.71 +63,4,060117,032841,0.06336,23.6818,0.00,11027.5,1,0,0,15.72 +63,4,060117,032842,0.06315,23.6823,0.00,11027.5,1,0,0,15.72 +63,4,060117,032843,0.06287,23.6822,0.00,11027.4,1,0,0,15.71 +63,4,060117,032844,0.06272,23.6812,0.00,11027.4,1,0,0,15.72 +63,4,060117,032845,0.06255,23.6805,0.00,11027.0,1,0,0,15.72 +63,4,060117,032846,0.06251,23.6799,0.00,11026.5,1,0,0,15.71 +63,4,060117,032847,0.06250,23.6788,0.00,11026.2,1,0,0,15.72 +63,4,060117,032848,0.06235,23.6791,0.00,11025.5,1,0,0,15.72 +63,4,060117,032849,0.06220,23.6770,0.00,11025.5,1,0,0,15.72 +63,4,060117,032850,0.06223,23.6748,0.00,11025.1,1,0,0,15.72 +63,4,060117,032851,0.06222,23.6745,0.00,11025.8,1,0,0,15.72 +63,4,060117,032852,0.06210,23.6743,0.00,11026.1,1,0,0,15.72 +63,4,060117,032853,0.06198,23.6736,0.00,11025.4,1,0,0,15.72 +63,4,060117,032854,0.06188,23.6729,0.00,11025.3,1,0,0,15.71 +63,4,060117,032855,0.06172,23.6722,0.00,11025.7,1,0,0,15.72 +63,4,060117,032856,0.06169,23.6706,0.00,11025.8,1,0,0,15.71 +63,4,060117,032857,0.06194,23.6702,0.00,11025.0,1,0,0,15.71 +63,4,060117,032858,0.06215,23.6693,0.00,11025.6,1,0,0,15.72 +63,4,060117,032859,0.06205,23.6693,0.00,11024.7,1,0,0,15.71 +63,4,060117,032900,0.06181,23.6684,0.00,11024.9,1,0,0,15.71 +63,4,060117,032901,0.06162,23.6658,0.00,11024.2,1,0,0,15.71 +63,4,060117,032902,0.06149,23.6657,0.00,11024.6,1,0,0,15.71 +63,4,060117,032903,0.06147,23.6659,0.00,11024.7,1,0,0,15.71 +63,4,060117,032904,0.06152,23.6664,0.00,11024.4,1,0,0,15.72 +63,4,060117,032905,0.06151,23.6667,0.00,11024.6,1,0,0,15.71 +63,4,060117,032906,0.06143,23.6666,0.00,11024.7,1,0,0,15.71 +63,4,060117,032907,0.06133,23.6659,0.00,11025.1,1,0,0,15.71 +63,4,060117,032908,0.06127,23.6649,0.00,11025.2,1,0,0,15.71 +63,4,060117,032909,0.06117,23.6653,0.00,11025.2,1,0,0,15.71 +63,4,060117,032910,0.06097,23.6646,0.00,11025.0,1,0,0,15.71 +63,4,060117,032911,0.06085,23.6635,0.00,11024.4,1,0,0,15.71 +63,4,060117,032912,0.06095,23.6624,0.00,11024.8,1,0,0,15.71 +63,4,060117,032913,0.06111,23.6609,0.00,11024.8,1,0,0,15.71 +63,4,060117,032914,0.06104,23.6604,0.00,11024.6,1,0,0,15.71 +63,4,060117,032915,0.06084,23.6608,0.00,11025.0,1,0,0,15.71 +63,4,060117,032916,0.06055,23.6610,0.00,11025.2,1,0,0,15.72 +63,4,060117,032917,0.06044,23.6617,0.00,11025.1,1,0,0,15.71 +63,4,060117,032918,0.06068,23.6619,0.00,11024.8,1,0,0,15.71 +63,100,060117,032919,1,1,5,8,80,23,1022779,24,1,0,0,0,0,0,1,15.71 +63,5,060117,032919,0.06090,23.6620,0.00,11025.2,1,0,0,15.71 +63,5,060117,032920,0.06084,23.6612,0.00,11025.0,1,0,0,15.64 +63,5,060117,032921,0.06059,23.6625,0.00,11025.3,1,0,0,15.64 +63,5,060117,032922,0.06028,23.6642,0.00,11025.1,1,0,0,15.57 +63,210,060117,032923,05/31/17 20:29:15 695 56 700 313 532 +63,5,060117,032923,0.06015,23.6638,0.00,11024.8,1,56,313,15.62 +63,5,060117,032924,0.06035,23.6635,0.00,11024.6,1,61,318,15.62 +63,5,060117,032925,0.06048,23.6635,0.00,11024.5,1,57,314,15.62 +63,5,060117,032926,0.06032,23.6636,0.00,11024.1,1,57,315,15.62 +63,100,060117,032927,1,1,6,60,80,23,1022778,24,1,0,0,0,0,0,1,15.63 +63,6,060117,032927,0.06013,23.6648,0.00,11024.0,1,58,316,15.63 +63,6,060117,032928,0.05995,23.6658,0.00,11023.7,1,57,314,15.63 +63,6,060117,032929,0.05985,23.6678,0.00,11023.5,1,57,315,15.63 +63,6,060117,032930,0.05993,23.6700,0.00,11022.7,1,60,316,15.63 +63,6,060117,032931,0.06007,23.6731,0.00,11023.1,1,59,314,15.63 +63,6,060117,032932,0.05994,23.6743,0.00,11023.2,1,60,316,15.62 +63,6,060117,032933,0.05966,23.6754,0.00,11023.3,1,58,318,15.63 +63,6,060117,032934,0.05952,23.6769,0.00,11023.3,1,58,315,15.62 +63,6,060117,032935,0.05970,23.6783,0.00,11023.8,1,59,314,15.63 +63,6,060117,032936,0.05987,23.6798,0.00,11023.6,1,58,316,15.63 +63,6,060117,032937,0.05968,23.6806,0.00,11023.8,1,60,315,15.62 +63,6,060117,032938,0.05939,23.6821,0.00,11024.2,1,59,319,15.62 +63,6,060117,032939,0.05920,23.6845,0.00,11024.2,1,56,319,15.62 +63,6,060117,032940,0.05920,23.6872,0.00,11024.1,1,58,318,15.63 +63,6,060117,032941,0.05943,23.6884,0.00,11024.1,1,55,314,15.63 +63,6,060117,032942,0.05949,23.6888,0.00,11024.3,1,56,316,15.62 +63,6,060117,032943,0.05934,23.6888,0.00,11024.2,1,57,317,15.63 +63,6,060117,032944,0.05908,23.6877,0.00,11024.5,1,59,374,15.62 +63,6,060117,032945,0.05875,23.6876,0.00,11024.3,1,57,440,15.62 +63,6,060117,032946,0.05870,23.6868,0.00,11024.2,1,59,397,15.62 +63,6,060117,032947,0.05908,23.6855,0.00,11024.8,1,53,494,15.63 +63,6,060117,032948,0.05935,23.6855,0.00,11024.7,1,61,417,15.62 +63,6,060117,032949,0.05914,23.6850,0.00,11024.7,1,60,316,15.63 +63,6,060117,032950,0.05872,23.6848,0.00,11024.5,1,58,329,15.62 +63,6,060117,032951,0.05842,23.6835,0.00,11024.7,1,58,340,15.62 +63,6,060117,032952,0.05857,23.6820,0.00,11025.3,1,59,338,15.62 +63,6,060117,032953,0.05911,23.6808,0.00,11024.7,1,58,313,15.62 +63,6,060117,032954,0.05924,23.6819,0.00,11024.9,1,59,312,15.62 +63,6,060117,032955,0.05882,23.6807,0.00,11025.0,1,58,312,15.63 +63,6,060117,032956,0.05835,23.6811,0.00,11025.3,1,57,317,15.62 +63,6,060117,032957,0.05819,23.6825,0.00,11025.0,1,58,336,15.62 +63,6,060117,032958,0.05858,23.6838,0.00,11025.2,1,59,434,15.63 +63,6,060117,032959,0.05894,23.6850,0.00,11025.5,1,58,320,15.63 +63,6,060117,033000,0.05886,23.6856,0.00,11025.2,1,60,317,15.63 +63,6,060117,033001,0.05856,23.6872,0.00,11025.0,1,62,322,15.62 +63,6,060117,033002,0.05817,23.6894,0.00,11025.2,1,60,320,15.62 +63,6,060117,033003,0.05798,23.6913,0.00,11024.9,1,61,319,15.63 +63,6,060117,033004,0.05831,23.6932,0.00,11025.4,1,57,317,15.63 +63,6,060117,033005,0.05864,23.6942,0.00,11024.9,1,58,314,15.62 +63,6,060117,033006,0.05849,23.6955,0.00,11024.8,1,57,348,15.63 +63,6,060117,033007,0.05814,23.6952,0.00,11024.8,1,69,558,15.62 +63,6,060117,033008,0.05772,23.6962,0.00,11024.5,1,59,334,15.62 +63,6,060117,033009,0.05764,23.6972,0.00,11023.9,1,58,316,15.62 +63,6,060117,033010,0.05804,23.6956,0.00,11024.1,1,61,401,15.63 +63,6,060117,033011,0.05825,23.6944,0.00,11024.2,1,59,416,15.63 +63,6,060117,033012,0.05801,23.6938,0.00,11023.7,1,60,424,15.62 +63,6,060117,033013,0.05767,23.6920,0.00,11024.0,1,61,454,15.62 +63,6,060117,033014,0.05735,23.6931,0.00,11024.5,1,58,451,15.63 +63,6,060117,033015,0.05727,23.6929,0.00,11024.2,1,60,420,15.63 +63,6,060117,033016,0.05765,23.6943,0.00,11024.7,1,59,348,15.62 +63,6,060117,033017,0.05801,23.6945,0.00,11025.0,1,60,351,15.62 +63,6,060117,033018,0.05776,23.6965,0.00,11024.3,1,62,416,15.62 +63,6,060117,033019,0.05725,23.6982,0.00,11024.5,1,61,854,15.62 +63,6,060117,033020,0.05690,23.6994,0.00,11025.0,1,58,757,15.62 +63,6,060117,033021,0.05694,23.7003,0.00,11024.5,1,59,553,15.63 +63,6,060117,033022,0.05735,23.7023,0.00,11024.8,1,62,534,15.62 +63,6,060117,033023,0.05761,23.7035,0.00,11024.7,1,61,505,15.62 +63,6,060117,033024,0.05730,23.7058,0.00,11024.6,1,61,500,15.63 +63,6,060117,033025,0.05684,23.7071,0.00,11024.7,1,59,500,15.62 +63,6,060117,033026,0.05669,23.7091,0.00,11024.6,1,61,498,15.62 +63,100,060117,033027,1,1,10,746,80,27,1022774,24,1,0,0,0,0,0,1,15.62 +63,100,060117,034300,1,1,3,7,15,27,1022783,24,1,0,0,0,0,0,1,15.79 +63,3,060117,034300,0.05691,23.7110,0.00,11024.4,1,0,0,15.79 +63,230,060117,034301,3,24680,24680,24680 +63,100,060117,034307,1,1,4,15,15,27,1022783,24,1,0,0,0,0,0,1,15.66 +63,200,060117,034307, 0.4762, 23.9035, -0.00, 11020.4, 2 +63,4,060117,034307,0.04762,23.9035,0.00,11020.4,2,0,0,15.66 +63,4,060117,034308,0.04761,23.9038,0.00,11020.2,2,0,0,15.72 +63,4,060117,034309,0.04758,23.8990,0.00,11021.0,1,0,0,15.73 +63,4,060117,034310,0.04732,23.8901,0.00,11022.8,1,0,0,15.72 +63,4,060117,034311,0.04767,23.8852,0.00,11025.1,1,0,0,15.72 +63,4,060117,034312,0.04770,23.8815,0.00,11027.2,1,0,0,15.72 +63,4,060117,034313,0.04739,23.8781,0.00,11028.2,1,0,0,15.73 +63,4,060117,034314,0.04746,23.8732,0.00,11029.5,1,0,0,15.72 +63,4,060117,034315,0.04755,23.8674,0.00,11030.5,1,0,0,15.72 +63,4,060117,034316,0.04744,23.8615,0.00,11030.8,1,0,0,15.72 +63,4,060117,034317,0.04750,23.8571,0.00,11031.7,1,0,0,15.72 +63,4,060117,034318,0.04752,23.8525,0.00,11031.9,1,0,0,15.72 +63,4,060117,034319,0.04737,23.8470,0.00,11032.5,1,0,0,15.72 +63,4,060117,034320,0.04725,23.8435,0.00,11032.8,1,0,0,15.72 +63,4,060117,034321,0.04730,23.8398,0.00,11032.8,1,0,0,15.72 +63,4,060117,034322,0.04751,23.8366,0.00,11033.7,1,0,0,15.72 +63,4,060117,034323,0.04763,23.8332,0.00,11033.3,1,0,0,15.72 +63,4,060117,034324,0.04755,23.8299,0.00,11033.3,1,0,0,15.72 +63,4,060117,034325,0.04739,23.8282,0.00,11033.5,1,0,0,15.72 +63,4,060117,034326,0.04726,23.8255,0.00,11033.5,1,0,0,15.72 +63,4,060117,034327,0.04743,23.8226,0.00,11033.3,1,0,0,15.72 +63,4,060117,034328,0.04763,23.8206,0.00,11033.8,1,0,0,15.72 +63,4,060117,034329,0.04763,23.8175,0.00,11033.6,1,0,0,15.72 +63,4,060117,034330,0.04749,23.8153,0.00,11033.5,1,0,0,15.72 +63,4,060117,034331,0.04732,23.8119,0.00,11033.7,1,0,0,15.72 +63,4,060117,034332,0.04729,23.8101,0.00,11034.0,1,0,0,15.72 +63,4,060117,034333,0.04747,23.8070,0.00,11034.1,1,0,0,15.72 +63,4,060117,034334,0.04755,23.8044,0.00,11034.0,1,0,0,15.72 +63,4,060117,034335,0.04750,23.8020,0.00,11033.9,1,0,0,15.72 +63,4,060117,034336,0.04736,23.7992,0.00,11034.0,1,0,0,15.72 +63,4,060117,034337,0.04721,23.7963,0.00,11033.6,1,0,0,15.72 +63,4,060117,034338,0.04726,23.7950,0.00,11033.8,1,0,0,15.72 +63,4,060117,034339,0.04738,23.7936,0.00,11033.6,1,0,0,15.72 +63,4,060117,034340,0.04744,23.7917,0.00,11033.7,1,0,0,15.72 +63,4,060117,034341,0.04733,23.7921,0.00,11033.2,1,0,0,15.72 +63,4,060117,034342,0.04721,23.7908,0.00,11033.5,1,0,0,15.72 +63,4,060117,034343,0.04716,23.7914,0.00,11033.3,1,0,0,15.72 +63,4,060117,034344,0.04718,23.7913,0.00,11033.5,1,0,0,15.72 +63,4,060117,034345,0.04731,23.7907,0.00,11033.5,1,0,0,15.72 +63,4,060117,034346,0.04736,23.7912,0.00,11033.4,1,0,0,15.72 +63,4,060117,034347,0.04724,23.7910,0.00,11031.9,1,0,0,15.72 +63,4,060117,034348,0.04713,23.7913,0.00,11029.9,1,0,0,15.72 +63,4,060117,034349,0.04706,23.7909,0.00,11029.5,1,0,0,15.72 +63,4,060117,034350,0.04704,23.7914,0.00,11029.0,1,0,0,15.71 +63,4,060117,034351,0.04708,23.7908,0.00,11029.1,1,0,0,15.72 +63,4,060117,034352,0.04710,23.7909,0.00,11029.5,1,0,0,15.71 +63,4,060117,034353,0.04710,23.7917,0.00,11030.4,1,0,0,15.72 +63,4,060117,034354,0.04699,23.7914,0.00,11031.0,1,0,0,15.72 +63,4,060117,034355,0.04683,23.7916,0.00,11030.9,1,0,0,15.72 +63,4,060117,034356,0.04684,23.7912,0.00,11030.8,1,0,0,15.72 +63,4,060117,034357,0.04694,23.7919,0.00,11031.3,1,0,0,15.72 +63,4,060117,034358,0.04701,23.7917,0.00,11031.3,1,0,0,15.72 +63,4,060117,034359,0.04695,23.7919,0.00,11032.6,1,0,0,15.72 +63,4,060117,034400,0.04675,23.7934,0.00,11032.4,1,0,0,15.71 +63,4,060117,034401,0.04665,23.7943,0.00,11032.2,1,0,0,15.72 +63,4,060117,034402,0.04674,23.7949,0.00,11032.7,1,0,0,15.72 +63,4,060117,034403,0.04695,23.7965,0.00,11032.6,1,0,0,15.71 +63,4,060117,034404,0.04700,23.7973,0.00,11033.0,1,0,0,15.72 +63,4,060117,034405,0.04686,23.7979,0.00,11032.4,1,0,0,15.71 +63,4,060117,034406,0.04668,23.7992,0.00,11033.1,1,0,0,15.72 +63,4,060117,034407,0.04661,23.8001,0.00,11032.5,1,0,0,15.71 +63,4,060117,034408,0.04682,23.8013,0.00,11032.9,1,0,0,15.71 +63,4,060117,034409,0.04709,23.8010,0.00,11033.1,1,0,0,15.72 +63,4,060117,034410,0.04712,23.8019,0.00,11032.7,1,0,0,15.71 +63,4,060117,034411,0.04696,23.8020,0.00,11032.7,1,0,0,15.71 +63,4,060117,034412,0.04676,23.8025,0.00,11032.0,1,0,0,15.72 +63,4,060117,034413,0.04674,23.8024,0.00,11032.2,1,0,0,15.72 +63,4,060117,034414,0.04702,23.8020,0.00,11031.5,1,0,0,15.72 +63,4,060117,034415,0.04724,23.8024,0.00,11030.6,1,0,0,15.72 +63,4,060117,034416,0.04723,23.8013,0.00,11030.0,1,0,0,15.72 +63,4,060117,034417,0.04708,23.8012,0.00,11029.7,1,0,0,15.72 +63,4,060117,034418,0.04689,23.8016,0.00,11029.1,1,0,0,15.72 +63,100,060117,034419,1,1,5,8,80,32,1022779,24,1,0,0,0,0,0,1,15.71 diff --git a/test/readWQMraw/WQM0064_003_fw1.59_example.Raw b/test/readWQMraw/WQM0064_003_fw1.59_example.Raw new file mode 100644 index 000000000..21e37b264 --- /dev/null +++ b/test/readWQMraw/WQM0064_003_fw1.59_example.Raw @@ -0,0 +1,600 @@ + +File Name: WQM0064.003 +Created On: 052317 030800 +File Version: 3 3=Includes Sample Mode +WQM SN: 64 +F/W V: 1.59 +==================================================================== +CTD SN: 5253 +Pressure Range: 160 psia +IDO SN: 0716 +IDO43 Soc=1.541500e-04 +IDO43 FOffset=-3.394510e+03 +IDO43 A=-2.178800e-03 +IDO43 B=1.006200e-04 +IDO43 C=-2.180200e-06 +IDO43 E=3.600000e-02 +DO Stability-Fit=Fixed +DO Stability-A=80.0000 +DO Stability-B=-2.2880 +DO Stability-C=60.8050 +==================================================================== +ECO SN: FLNTUS-1350 +ECO Baud: 19200 +ECO Delimiter: TAB +ECO IHM: 1 +ECO IOM: 2 +ECO Total Columns: 7 +ECO SN Column: None +ECO Date Column: 1 +ECO Time Column: 2 +ECO Signal Count: 2 +ECO Signal 1 Name: CHLA +ECO Signal 1 Raw Units: COUNTS +ECO Signal 1 Engr Units: UG/L +ECO Signal 1 Type: 1 Std Scale'n'Offset +ECO Signal 1 Cal Coef: 0.011400 45.000000 0.000000 0.000000 +ECO Signal 2 Name: TURBIDITY +ECO Signal 2 Raw Units: COUNTS +ECO Signal 2 Engr Units: NTU +ECO Signal 2 Type: 1 Std Scale'n'Offset +ECO Signal 2 Cal Coef: 0.006300 50.000000 0.000000 0.000000 +==================================================================== +External Data Port: Off +==================================================================== +Control: Autonomous +Delay Seconds: 0 +Sample Seconds: 60 +Sample Interval Seconds: 300 +==================================================================== +Starting Free Flask Disk: 1022768 K +Total Flask Disk: 1022816 K +==================================================================== +BLIS ul / squirt: 9.0 +Pumped Hour Interval: 1 +Pumped BLIS: 0 +Static BLIS: 4 +Starting Total BLIS Squirts: 0 +==================================================================== +Recent UPS: No +Starting UPS Count: 0 +Starting Total UPS Count: 0 +Starting Voltage: 13.34 +==================================================================== +Outbits - Version: 3 +Outbits - Misc: 0xCE01 +Outbits - CTD: 0xFCC0 +Outbits - ECO: 0xCC00 +Outbits - EDP: 0x0000 +Data Output: Averaged +==================================================================== +Heartbeat: OFF +Update Date/Time: Normal +File Format: SN,State,Date,Time,Cond(S/m),Temp(C),Pres(dbar),RawDO(Hz),Pumped,CHLA(COUNTS),TURBIDITY(COUNTS),Volts + +64,100,052317,030800,1,0,3,7,15,1,1022767,0,1,411433,1,0,0,0,1,13.34 +64,230,052317,030801,3,20888,20888,20888 +64,100,052317,030807,1,0,4,15,15,1,1022767,0,1,411433,1,0,0,0,1,13.31 +64,200,052317,030807, -0.0003, 23.5701, -0.02, 10269.6, 0 +64,4,052317,030807,-0.00003,23.5701,-0.02,10269.6,0,0,0,13.31 +64,4,052317,030808,-0.00003,23.5699,-0.02,10269.8,0,0,0,13.31 +64,4,052317,030809,-0.00003,23.5699,-0.02,10271.0,0,0,0,13.31 +64,4,052317,030810,-0.00003,23.5708,-0.02,10270.5,0,0,0,13.31 +64,4,052317,030811,-0.00003,23.5705,-0.02,10270.1,0,0,0,13.31 +64,4,052317,030812,-0.00002,23.5710,-0.02,10269.9,0,0,0,13.31 +64,4,052317,030813,-0.00004,23.5709,-0.02,10270.7,0,0,0,13.31 +64,4,052317,030814,-0.00004,23.5705,-0.02,10270.8,0,0,0,13.31 +64,4,052317,030815,-0.00003,23.5717,-0.02,10271.3,0,0,0,13.31 +64,4,052317,030816,-0.00003,23.5713,-0.02,10270.1,0,0,0,13.31 +64,4,052317,030817,-0.00003,23.5719,-0.02,10271.2,0,0,0,13.31 +64,4,052317,030818,-0.00003,23.5715,-0.02,10270.9,0,0,0,13.31 +64,4,052317,030819,-0.00003,23.5723,-0.02,10270.4,0,0,0,13.31 +64,4,052317,030820,-0.00003,23.5717,-0.02,10270.2,0,0,0,13.31 +64,4,052317,030821,-0.00003,23.5723,-0.02,10270.1,0,0,0,13.31 +64,4,052317,030822,-0.00003,23.5723,-0.02,10270.7,0,0,0,13.31 +64,4,052317,030823,-0.00003,23.5728,-0.02,10270.4,0,0,0,13.31 +64,4,052317,030824,-0.00004,23.5731,-0.02,10270.7,0,0,0,13.31 +64,4,052317,030825,-0.00003,23.5732,-0.02,10271.8,0,0,0,13.31 +64,4,052317,030826,-0.00003,23.5735,-0.02,10271.1,0,0,0,13.31 +64,4,052317,030827,-0.00003,23.5733,-0.02,10271.0,0,0,0,13.31 +64,4,052317,030828,-0.00003,23.5735,-0.02,10271.7,0,0,0,13.31 +64,4,052317,030829,-0.00003,23.5739,-0.02,10270.9,0,0,0,13.31 +64,4,052317,030830,-0.00003,23.5735,-0.02,10270.9,0,0,0,13.31 +64,4,052317,030831,-0.00003,23.5737,-0.02,10271.3,0,0,0,13.31 +64,4,052317,030832,-0.00003,23.5746,-0.02,10270.8,0,0,0,13.31 +64,4,052317,030833,-0.00003,23.5743,-0.02,10270.7,0,0,0,13.31 +64,4,052317,030834,-0.00003,23.5741,-0.02,10271.2,0,0,0,13.31 +64,4,052317,030835,-0.00003,23.5748,-0.02,10270.9,0,0,0,13.31 +64,4,052317,030836,-0.00003,23.5747,-0.02,10271.1,0,0,0,13.31 +64,4,052317,030837,-0.00003,23.5753,-0.02,10271.2,0,0,0,13.31 +64,4,052317,030838,-0.00003,23.5755,-0.02,10270.8,0,0,0,13.31 +64,4,052317,030839,-0.00003,23.5752,-0.02,10270.3,0,0,0,13.31 +64,4,052317,030840,-0.00003,23.5752,-0.02,10271.3,0,0,0,13.31 +64,4,052317,030841,-0.00004,23.5757,-0.02,10270.8,0,0,0,13.31 +64,4,052317,030842,-0.00004,23.5755,-0.02,10270.3,0,0,0,13.31 +64,4,052317,030843,-0.00003,23.5752,-0.02,10270.3,0,0,0,13.31 +64,4,052317,030844,-0.00003,23.5759,-0.02,10270.7,0,0,0,13.31 +64,4,052317,030845,-0.00003,23.5763,-0.02,10271.4,0,0,0,13.31 +64,4,052317,030846,-0.00003,23.5763,-0.02,10271.0,0,0,0,13.31 +64,4,052317,030847,-0.00003,23.5768,-0.02,10270.4,0,0,0,13.31 +64,4,052317,030848,-0.00003,23.5764,-0.02,10270.5,0,0,0,13.31 +64,4,052317,030849,-0.00003,23.5770,-0.02,10271.6,0,0,0,13.31 +64,4,052317,030850,-0.00003,23.5767,-0.02,10271.4,0,0,0,13.31 +64,4,052317,030851,-0.00003,23.5770,-0.02,10271.8,0,0,0,13.31 +64,4,052317,030852,-0.00003,23.5775,-0.02,10271.9,0,0,0,13.31 +64,4,052317,030853,-0.00004,23.5771,-0.02,10271.5,0,0,0,13.31 +64,4,052317,030854,-0.00004,23.5778,-0.02,10271.2,0,0,0,13.31 +64,4,052317,030855,-0.00003,23.5779,-0.02,10271.2,0,0,0,13.31 +64,4,052317,030856,-0.00003,23.5773,-0.02,10270.9,0,0,0,13.31 +64,4,052317,030857,-0.00003,23.5783,-0.02,10271.6,0,0,0,13.31 +64,4,052317,030858,-0.00003,23.5786,-0.02,10270.7,0,0,0,13.31 +64,4,052317,030859,-0.00003,23.5787,-0.02,10270.1,0,0,0,13.31 +64,4,052317,030900,-0.00003,23.5789,-0.02,10270.7,0,0,0,13.31 +64,4,052317,030901,-0.00002,23.5789,-0.02,10270.9,0,0,0,13.31 +64,4,052317,030902,-0.00004,23.5785,-0.02,10270.7,0,0,0,13.31 +64,4,052317,030903,-0.00003,23.5791,-0.02,10271.6,0,0,0,13.31 +64,4,052317,030904,-0.00003,23.5798,-0.02,10270.7,0,0,0,13.31 +64,4,052317,030905,-0.00003,23.5798,-0.02,10271.1,0,0,0,13.31 +64,4,052317,030906,-0.00003,23.5795,-0.02,10271.2,0,0,0,13.31 +64,4,052317,030907,-0.00003,23.5803,-0.02,10270.7,0,0,0,13.31 +64,4,052317,030908,-0.00003,23.5799,-0.02,10271.8,0,0,0,13.31 +64,4,052317,030909,-0.00003,23.5806,-0.02,10270.4,0,0,0,13.31 +64,4,052317,030910,-0.00003,23.5803,-0.02,10269.9,0,0,0,13.31 +64,4,052317,030911,-0.00004,23.5811,-0.02,10271.7,0,0,0,13.31 +64,4,052317,030912,-0.00003,23.5811,-0.02,10270.7,0,0,0,13.31 +64,4,052317,030913,-0.00003,23.5809,-0.02,10270.7,0,0,0,13.31 +64,4,052317,030914,-0.00003,23.5812,-0.02,10271.2,0,0,0,13.31 +64,4,052317,030915,-0.00003,23.5813,-0.02,10271.4,0,0,0,13.31 +64,4,052317,030916,-0.00004,23.5822,-0.02,10271.2,0,0,0,13.31 +64,4,052317,030917,-0.00004,23.5817,-0.02,10270.7,0,0,0,13.31 +64,4,052317,030918,-0.00003,23.5823,-0.02,10271.2,0,0,0,13.31 +64,100,052317,030919,1,0,5,8,80,6,1022763,0,1,411433,1,0,0,0,1,13.31 +64,5,052317,030919,-0.00003,23.5818,-0.02,10271.1,0,0,0,13.31 +64,5,052317,030920,-0.00003,23.5824,-0.02,10271.7,0,0,0,13.28 +64,5,052317,030921,-0.00003,23.5823,-0.02,10271.3,0,0,0,13.28 +64,5,052317,030922,-0.00003,23.5833,-0.02,10271.3,0,0,0,13.26 +64,210,052317,030922,05/22/17 20:21:49 695 48 700 192 540 +64,5,052317,030923,-0.00003,23.5828,-0.02,10270.8,0,48,192,13.28 +64,5,052317,030924,-0.00003,23.5833,-0.02,10271.1,0,52,193,13.27 +64,5,052317,030925,-0.00003,23.5836,-0.02,10270.5,0,48,180,13.27 +64,5,052317,030926,-0.00003,23.5828,-0.02,10271.0,0,61,190,13.27 +64,100,052317,030927,1,0,6,60,80,7,1022762,0,1,411433,1,0,0,0,1,13.27 +64,6,052317,030927,-0.00003,23.5837,-0.02,10270.6,0,69,184,13.27 +64,6,052317,030928,-0.00003,23.5836,-0.02,10271.1,0,47,179,13.27 +64,6,052317,030929,-0.00003,23.5844,-0.02,10270.6,0,56,183,13.27 +64,6,052317,030930,-0.00003,23.5843,-0.02,10271.0,0,58,184,13.28 +64,6,052317,030931,-0.00003,23.5847,-0.02,10271.4,0,67,190,13.27 +64,6,052317,030932,-0.00003,23.5851,-0.02,10270.9,0,52,185,13.26 +64,6,052317,030933,-0.00003,23.5847,-0.02,10270.6,0,65,183,13.26 +64,6,052317,030934,-0.00003,23.5852,-0.02,10271.4,0,56,200,13.27 +64,6,052317,030935,-0.00003,23.5854,-0.02,10270.7,0,62,184,13.27 +64,6,052317,030936,-0.00003,23.5855,-0.02,10271.2,0,45,183,13.28 +64,6,052317,030937,-0.00003,23.5854,-0.02,10270.8,0,59,206,13.27 +64,6,052317,030938,-0.00003,23.5859,-0.02,10271.4,0,64,182,13.28 +64,6,052317,030939,-0.00003,23.5858,-0.02,10271.5,0,65,191,13.27 +64,6,052317,030940,-0.00003,23.5862,-0.02,10271.3,0,49,176,13.27 +64,6,052317,030941,-0.00002,23.5860,-0.02,10270.6,0,55,177,13.27 +64,6,052317,030942,-0.00003,23.5868,-0.02,10271.5,0,49,173,13.27 +64,6,052317,030943,-0.00003,23.5868,-0.02,10270.2,0,52,176,13.26 +64,6,052317,030944,-0.00003,23.5871,-0.02,10270.9,0,72,194,13.27 +64,6,052317,030945,-0.00004,23.5872,-0.02,10271.3,0,58,170,13.26 +64,6,052317,030946,-0.00003,23.5873,-0.02,10271.2,0,59,176,13.27 +64,6,052317,030947,-0.00003,23.5870,-0.02,10271.1,0,61,193,13.27 +64,6,052317,030948,-0.00003,23.5874,-0.02,10270.1,0,62,193,13.27 +64,6,052317,030949,-0.00003,23.5875,-0.02,10271.2,0,64,176,13.26 +64,6,052317,030950,-0.00003,23.5884,-0.02,10270.4,0,46,178,13.27 +64,6,052317,030951,-0.00003,23.5887,-0.02,10271.2,0,65,181,13.27 +64,6,052317,030952,-0.00003,23.5888,-0.02,10271.3,0,58,194,13.27 +64,6,052317,030953,-0.00004,23.5887,-0.02,10269.8,0,54,185,13.27 +64,6,052317,030954,-0.00003,23.5891,-0.02,10271.2,0,66,189,13.27 +64,6,052317,030955,-0.00003,23.5887,-0.02,10271.2,0,56,192,13.26 +64,6,052317,030956,-0.00003,23.5893,-0.02,10271.5,0,50,190,13.27 +64,6,052317,030957,-0.00003,23.5896,-0.02,10271.0,0,58,179,13.26 +64,6,052317,030958,-0.00003,23.5894,-0.02,10270.9,0,58,184,13.27 +64,6,052317,030959,-0.00003,23.5885,-0.02,10271.3,0,65,199,13.26 +64,6,052317,031000,-0.00003,23.5896,-0.02,10271.3,0,62,173,13.27 +64,6,052317,031001,-0.00003,23.5903,-0.02,10270.6,0,51,189,13.26 +64,6,052317,031002,-0.00003,23.5901,-0.02,10271.7,0,62,197,13.26 +64,6,052317,031003,-0.00003,23.5904,-0.02,10271.2,0,64,185,13.27 +64,6,052317,031004,-0.00003,23.5903,-0.02,10270.6,0,50,190,13.27 +64,6,052317,031005,-0.00003,23.5905,-0.02,10270.9,0,49,197,13.27 +64,6,052317,031006,-0.00003,23.5907,-0.02,10271.2,0,84,191,13.27 +64,6,052317,031007,-0.00004,23.5907,-0.02,10271.8,0,54,210,13.26 +64,6,052317,031008,-0.00004,23.5907,-0.02,10271.4,0,62,183,13.27 +64,6,052317,031009,-0.00003,23.5913,-0.02,10272.2,0,60,190,13.27 +64,6,052317,031010,-0.00003,23.5920,-0.02,10270.3,0,55,175,13.27 +64,6,052317,031011,-0.00004,23.5925,-0.02,10271.1,0,69,212,13.26 +64,6,052317,031012,-0.00003,23.5921,-0.02,10270.3,0,50,184,13.26 +64,6,052317,031013,-0.00003,23.5922,-0.02,10270.6,0,47,187,13.27 +64,6,052317,031014,-0.00003,23.5920,-0.02,10270.3,0,58,187,13.27 +64,6,052317,031015,-0.00003,23.5924,-0.02,10271.4,0,62,175,13.26 +64,6,052317,031016,-0.00003,23.5921,-0.02,10271.5,0,52,172,13.27 +64,6,052317,031017,-0.00003,23.5934,-0.02,10270.8,0,58,183,13.27 +64,6,052317,031018,-0.00003,23.5929,-0.02,10271.9,0,61,181,13.27 +64,6,052317,031019,-0.00003,23.5935,-0.02,10271.3,0,50,189,13.26 +64,6,052317,031020,-0.00003,23.5935,-0.02,10270.6,0,69,196,13.26 +64,6,052317,031021,-0.00003,23.5936,-0.02,10270.4,0,57,182,13.27 +64,6,052317,031022,-0.00003,23.5938,-0.02,10271.7,0,59,186,13.27 +64,6,052317,031023,-0.00003,23.5937,-0.02,10271.2,0,58,183,13.26 +64,6,052317,031024,-0.00003,23.5939,-0.02,10271.0,0,61,172,13.27 +64,6,052317,031025,-0.00004,23.5945,-0.02,10270.6,0,68,188,13.27 +64,6,052317,031026,-0.00003,23.5942,-0.02,10270.8,0,54,185,13.27 +64,100,052317,031027,1,0,10,14,80,11,1022758,0,1,411436,1,0,0,0,1,13.27 +64,100,052317,031300,1,0,3,7,15,11,1022751,0,1,411436,1,0,0,0,1,13.34 +64,3,052317,031300,-0.00003,23.5953,-0.02,10271.6,0,0,0,13.34 +64,230,052317,031301,3,20888,20888,20888 +64,200,052317,031306, -0.0003, 23.6259, -0.02, 10269.0, 0 +64,3,052317,031306,-0.00003,23.6259,-0.02,10269.0,0,0,0,13.31 +64,100,052317,031307,1,0,4,80,80,11,1022751,0,1,411436,1,0,0,0,1,13.31 +64,4,052317,031307,-0.00003,23.6261,-0.02,10270.9,0,0,0,13.31 +64,4,052317,031308,-0.00003,23.6259,-0.02,10269.8,0,0,0,13.31 +64,4,052317,031309,-0.00003,23.6262,-0.02,10270.1,0,0,0,13.31 +64,4,052317,031310,-0.00003,23.6266,-0.02,10270.3,0,0,0,13.31 +64,4,052317,031311,-0.00004,23.6270,-0.02,10269.4,0,0,0,13.31 +64,4,052317,031312,-0.00002,23.6269,-0.02,10270.2,0,0,0,13.31 +64,4,052317,031313,-0.00003,23.6270,-0.02,10270.3,0,0,0,13.31 +64,4,052317,031314,-0.00003,23.6269,-0.02,10270.5,0,0,0,13.31 +64,4,052317,031315,-0.00003,23.6273,-0.02,10270.4,0,0,0,13.31 +64,4,052317,031316,-0.00003,23.6274,-0.02,10269.3,0,0,0,13.31 +64,4,052317,031317,-0.00003,23.6281,-0.02,10269.8,0,0,0,13.31 +64,4,052317,031318,-0.00003,23.6279,-0.02,10269.9,0,0,0,13.31 +64,4,052317,031319,-0.00003,23.6281,-0.02,10270.1,0,0,0,13.31 +64,4,052317,031320,-0.00004,23.6282,-0.02,10270.7,0,0,0,13.31 +64,4,052317,031321,-0.00003,23.6282,-0.02,10271.1,0,0,0,13.31 +64,4,052317,031322,-0.00003,23.6287,-0.02,10270.5,0,0,0,13.31 +64,4,052317,031323,-0.00003,23.6294,-0.02,10271.4,0,0,0,13.31 +64,4,052317,031324,-0.00003,23.6292,-0.02,10271.2,0,0,0,13.31 +64,4,052317,031325,-0.00003,23.6293,-0.02,10271.2,0,0,0,13.31 +64,4,052317,031326,-0.00003,23.6295,-0.02,10270.1,0,0,0,13.31 +64,4,052317,031327,-0.00003,23.6292,-0.02,10270.7,0,0,0,13.31 +64,4,052317,031328,-0.00003,23.6295,-0.02,10269.4,0,0,0,13.31 +64,4,052317,031329,-0.00002,23.6298,-0.02,10270.5,0,0,0,13.31 +64,4,052317,031330,-0.00003,23.6302,-0.02,10270.3,0,0,0,13.31 +64,4,052317,031331,-0.00003,23.6304,-0.02,10269.7,0,0,0,13.31 +64,4,052317,031332,-0.00003,23.6302,-0.02,10269.5,0,0,0,13.31 +64,4,052317,031333,-0.00003,23.6308,-0.02,10271.0,0,0,0,13.31 +64,4,052317,031334,-0.00003,23.6302,-0.02,10270.7,0,0,0,13.31 +64,4,052317,031335,-0.00003,23.6310,-0.02,10270.4,0,0,0,13.31 +64,4,052317,031336,-0.00003,23.6309,-0.02,10270.3,0,0,0,13.31 +64,4,052317,031337,-0.00003,23.6307,-0.02,10270.7,0,0,0,13.31 +64,4,052317,031338,-0.00003,23.6320,-0.02,10270.3,0,0,0,13.31 +64,4,052317,031339,-0.00003,23.6324,-0.02,10271.2,0,0,0,13.31 +64,4,052317,031340,-0.00003,23.6319,-0.02,10270.9,0,0,0,13.31 +64,4,052317,031341,-0.00003,23.6320,-0.02,10270.3,0,0,0,13.31 +64,4,052317,031342,-0.00002,23.6324,-0.02,10270.9,0,0,0,13.31 +64,4,052317,031343,-0.00003,23.6332,-0.02,10270.8,0,0,0,13.31 +64,4,052317,031344,-0.00003,23.6323,-0.02,10270.4,0,0,0,13.31 +64,4,052317,031345,-0.00003,23.6330,-0.02,10270.0,0,0,0,13.31 +64,4,052317,031346,-0.00003,23.6337,-0.02,10270.7,0,0,0,13.31 +64,4,052317,031347,-0.00003,23.6337,-0.02,10271.3,0,0,0,13.31 +64,4,052317,031348,-0.00003,23.6336,-0.02,10270.3,0,0,0,13.31 +64,4,052317,031349,-0.00003,23.6338,-0.02,10270.7,0,0,0,13.31 +64,4,052317,031350,-0.00003,23.6343,-0.02,10270.7,0,0,0,13.31 +64,4,052317,031351,-0.00003,23.6347,-0.02,10270.5,0,0,0,13.31 +64,4,052317,031352,-0.00003,23.6341,-0.02,10269.5,0,0,0,13.31 +64,4,052317,031353,-0.00003,23.6343,-0.02,10271.3,0,0,0,13.31 +64,4,052317,031354,-0.00003,23.6353,-0.02,10270.3,0,0,0,13.31 +64,4,052317,031355,-0.00003,23.6360,-0.02,10270.1,0,0,0,13.31 +64,4,052317,031356,-0.00003,23.6354,-0.02,10270.6,0,0,0,13.31 +64,4,052317,031357,-0.00003,23.6356,-0.02,10270.7,0,0,0,13.31 +64,4,052317,031358,-0.00003,23.6352,-0.02,10270.6,0,0,0,13.31 +64,4,052317,031359,-0.00003,23.6360,-0.02,10270.6,0,0,0,13.31 +64,4,052317,031400,-0.00003,23.6366,-0.02,10270.6,0,0,0,13.31 +64,4,052317,031401,-0.00003,23.6360,-0.02,10271.3,0,0,0,13.31 +64,4,052317,031402,-0.00003,23.6369,-0.02,10270.5,0,0,0,13.31 +64,4,052317,031403,-0.00003,23.6367,-0.02,10270.4,0,0,0,13.31 +64,4,052317,031404,-0.00003,23.6373,-0.02,10270.5,0,0,0,13.31 +64,4,052317,031405,-0.00003,23.6375,-0.02,10270.3,0,0,0,13.31 +64,4,052317,031406,-0.00003,23.6374,-0.02,10270.6,0,0,0,13.31 +64,4,052317,031407,-0.00003,23.6377,-0.02,10270.5,0,0,0,13.30 +64,4,052317,031408,-0.00003,23.6375,-0.02,10270.0,0,0,0,13.31 +64,4,052317,031409,-0.00003,23.6380,-0.02,10270.3,0,0,0,13.31 +64,4,052317,031410,-0.00003,23.6382,-0.02,10270.4,0,0,0,13.31 +64,4,052317,031411,-0.00003,23.6384,-0.02,10270.2,0,0,0,13.31 +64,4,052317,031412,-0.00003,23.6385,-0.02,10270.8,0,0,0,13.31 +64,4,052317,031413,-0.00003,23.6392,-0.02,10270.6,0,0,0,13.31 +64,4,052317,031414,-0.00003,23.6387,-0.02,10271.4,0,0,0,13.31 +64,4,052317,031415,-0.00003,23.6395,-0.02,10270.5,0,0,0,13.31 +64,4,052317,031416,-0.00003,23.6391,-0.02,10270.5,0,0,0,13.31 +64,4,052317,031417,-0.00003,23.6396,-0.02,10270.6,0,0,0,13.31 +64,4,052317,031418,-0.00003,23.6404,-0.02,10270.3,0,0,0,13.31 +64,100,052317,031419,1,0,5,8,80,15,1022747,0,1,411436,1,0,0,0,1,13.31 +64,5,052317,031419,-0.00003,23.6403,-0.02,10270.4,0,0,0,13.31 +64,5,052317,031420,-0.00003,23.6400,-0.02,10270.5,0,0,0,13.27 +64,5,052317,031421,-0.00003,23.6408,-0.02,10270.8,0,0,0,13.27 +64,5,052317,031422,-0.00003,23.6412,-0.02,10270.0,0,0,0,13.22 +64,210,052317,031423,05/22/17 20:26:50 695 64 700 186 539 +64,5,052317,031423,-0.00004,23.6412,-0.02,10270.5,0,64,186,13.27 +64,5,052317,031424,-0.00003,23.6411,-0.02,10271.3,0,53,186,13.27 +64,5,052317,031425,-0.00003,23.6418,-0.02,10270.5,0,58,195,13.27 +64,5,052317,031426,-0.00003,23.6417,-0.02,10271.0,0,51,195,13.27 +64,100,052317,031427,1,0,6,60,80,16,1022746,0,1,411436,1,0,0,0,1,13.27 +64,6,052317,031427,-0.00003,23.6414,-0.02,10271.5,0,64,187,13.27 +64,6,052317,031428,-0.00003,23.6422,-0.02,10270.8,0,51,188,13.27 +64,6,052317,031429,-0.00003,23.6430,-0.02,10270.8,0,63,201,13.27 +64,6,052317,031430,-0.00003,23.6431,-0.02,10270.1,0,77,197,13.28 +64,6,052317,031431,-0.00003,23.6429,-0.02,10270.6,0,58,187,13.27 +64,6,052317,031432,-0.00003,23.6433,-0.02,10269.7,0,50,180,13.27 +64,6,052317,031433,-0.00003,23.6435,-0.02,10271.3,0,57,190,13.27 +64,6,052317,031434,-0.00003,23.6432,-0.02,10270.2,0,66,198,13.27 +64,6,052317,031435,-0.00003,23.6436,-0.02,10270.7,0,56,181,13.27 +64,6,052317,031436,-0.00003,23.6437,-0.02,10270.0,0,63,185,13.27 +64,6,052317,031437,-0.00004,23.6441,-0.02,10270.4,0,51,197,13.28 +64,6,052317,031438,-0.00003,23.6441,-0.02,10270.9,0,53,185,13.27 +64,6,052317,031439,-0.00003,23.6445,-0.02,10271.2,0,63,184,13.27 +64,6,052317,031440,-0.00003,23.6442,-0.02,10270.1,0,58,181,13.28 +64,6,052317,031441,-0.00003,23.6447,-0.02,10269.8,0,48,183,13.27 +64,6,052317,031442,-0.00002,23.6447,-0.02,10270.0,0,65,188,13.28 +64,6,052317,031443,-0.00003,23.6452,-0.02,10270.1,0,58,192,13.28 +64,6,052317,031444,-0.00003,23.6458,-0.02,10270.7,0,55,178,13.28 +64,6,052317,031445,-0.00003,23.6452,-0.02,10270.6,0,51,188,13.28 +64,6,052317,031446,-0.00003,23.6465,-0.02,10270.0,0,57,177,13.28 +64,6,052317,031447,-0.00003,23.6462,-0.02,10271.0,0,56,194,13.28 +64,6,052317,031448,-0.00003,23.6466,-0.02,10271.0,0,62,193,13.28 +64,6,052317,031449,-0.00003,23.6466,-0.02,10270.6,0,64,192,13.27 +64,6,052317,031450,-0.00003,23.6466,-0.02,10270.9,0,59,196,13.28 +64,6,052317,031451,-0.00003,23.6465,-0.02,10271.2,0,62,190,13.28 +64,6,052317,031452,-0.00003,23.6473,-0.02,10270.5,0,45,186,13.28 +64,6,052317,031453,-0.00002,23.6474,-0.02,10270.4,0,47,195,13.28 +64,6,052317,031454,-0.00003,23.6480,-0.02,10270.0,0,60,187,13.28 +64,6,052317,031455,-0.00003,23.6475,-0.02,10271.4,0,63,183,13.28 +64,6,052317,031456,-0.00003,23.6478,-0.02,10270.4,0,49,185,13.28 +64,6,052317,031457,-0.00003,23.6475,-0.02,10270.2,0,55,164,13.27 +64,6,052317,031458,-0.00003,23.6486,-0.02,10270.8,0,63,185,13.28 +64,6,052317,031459,-0.00003,23.6486,-0.02,10270.9,0,64,176,13.28 +64,6,052317,031500,-0.00003,23.6494,-0.02,10270.7,0,66,187,13.27 +64,6,052317,031501,-0.00004,23.6487,-0.02,10270.1,0,74,199,13.28 +64,6,052317,031502,-0.00003,23.6496,-0.02,10270.4,0,67,187,13.28 +64,6,052317,031503,-0.00003,23.6492,-0.02,10269.8,0,56,200,13.28 +64,6,052317,031504,-0.00003,23.6493,-0.02,10270.9,0,49,182,13.27 +64,6,052317,031505,-0.00003,23.6493,-0.02,10270.6,0,44,192,13.27 +64,6,052317,031506,-0.00003,23.6497,-0.02,10270.3,0,61,198,13.27 +64,6,052317,031507,-0.00003,23.6502,-0.02,10270.4,0,61,194,13.27 +64,6,052317,031508,-0.00003,23.6501,-0.02,10270.4,0,60,183,13.27 +64,6,052317,031509,-0.00003,23.6510,-0.02,10271.0,0,53,159,13.28 +64,6,052317,031510,-0.00004,23.6508,-0.02,10269.7,0,62,190,13.27 +64,6,052317,031511,-0.00003,23.6508,-0.02,10270.8,0,75,194,13.28 +64,6,052317,031512,-0.00003,23.6509,-0.02,10270.1,0,56,197,13.27 +64,6,052317,031513,-0.00003,23.6509,-0.02,10270.3,0,52,197,13.27 +64,6,052317,031514,-0.00003,23.6515,-0.02,10270.4,0,56,187,13.27 +64,6,052317,031515,-0.00003,23.6518,-0.02,10271.4,0,63,190,13.27 +64,6,052317,031516,-0.00003,23.6523,-0.02,10270.9,0,65,179,13.28 +64,6,052317,031517,-0.00003,23.6525,-0.02,10271.2,0,54,191,13.28 +64,6,052317,031518,-0.00002,23.6525,-0.02,10270.6,0,63,186,13.28 +64,6,052317,031519,-0.00003,23.6531,-0.02,10270.0,0,51,195,13.28 +64,6,052317,031520,-0.00003,23.6530,-0.02,10270.6,0,66,202,13.28 +64,6,052317,031521,-0.00002,23.6527,-0.02,10270.7,0,60,189,13.27 +64,6,052317,031522,-0.00003,23.6537,-0.02,10270.3,0,53,178,13.28 +64,6,052317,031523,-0.00003,23.6541,-0.02,10270.6,0,54,187,13.28 +64,6,052317,031524,-0.00002,23.6540,-0.02,10270.6,0,65,175,13.28 +64,6,052317,031525,-0.00003,23.6542,-0.02,10269.3,0,59,189,13.28 +64,6,052317,031526,-0.00003,23.6542,-0.02,10270.3,0,51,193,13.28 +64,100,052317,031527,1,0,10,116,80,20,1022742,0,1,411436,1,0,0,0,1,13.28 +64,100,052317,031800,1,0,3,7,15,20,1022735,0,1,411436,1,0,0,0,1,13.34 +64,3,052317,031800,-0.00002,23.6545,-0.02,10270.1,0,0,0,13.34 +64,230,052317,031801,3,20888,20888,20888 +64,200,052317,031806, -0.0003, 23.6885, -0.02, 10269.0, 0 +64,3,052317,031806,-0.00003,23.6885,-0.02,10269.0,0,0,0,13.31 +64,100,052317,031807,1,0,4,80,80,20,1022735,0,1,411436,1,0,0,0,1,13.31 +64,4,052317,031807,-0.00003,23.6879,-0.02,10269.7,0,0,0,13.31 +64,4,052317,031809,-0.00004,23.6888,-0.02,10269.8,0,0,0,13.31 +64,4,052317,031810,-0.00003,23.6892,-0.02,10269.7,0,0,0,13.31 +64,4,052317,031811,-0.00004,23.6883,-0.02,10270.0,0,0,0,13.31 +64,4,052317,031812,-0.00003,23.6888,-0.02,10269.6,0,0,0,13.31 +64,4,052317,031813,-0.00004,23.6893,-0.02,10269.5,0,0,0,13.31 +64,4,052317,031814,-0.00004,23.6895,-0.02,10269.6,0,0,0,13.31 +64,4,052317,031815,-0.00003,23.6898,-0.02,10269.7,0,0,0,13.31 +64,4,052317,031816,-0.00003,23.6903,-0.02,10269.3,0,0,0,13.31 +64,4,052317,031817,-0.00003,23.6902,-0.02,10269.5,0,0,0,13.31 +64,4,052317,031818,-0.00003,23.6903,-0.02,10270.3,0,0,0,13.31 +64,4,052317,031819,-0.00003,23.6911,-0.02,10269.3,0,0,0,13.31 +64,4,052317,031820,-0.00004,23.6912,-0.02,10269.9,0,0,0,13.31 +64,4,052317,031821,-0.00003,23.6916,-0.02,10269.9,0,0,0,13.31 +64,4,052317,031822,-0.00004,23.6914,-0.02,10270.1,0,0,0,13.31 +64,4,052317,031823,-0.00003,23.6924,-0.02,10269.6,0,0,0,13.31 +64,4,052317,031824,-0.00003,23.6916,-0.02,10270.4,0,0,0,13.31 +64,4,052317,031825,-0.00003,23.6920,-0.02,10269.3,0,0,0,13.31 +64,4,052317,031826,-0.00003,23.6923,-0.02,10270.8,0,0,0,13.31 +64,4,052317,031827,-0.00003,23.6920,-0.02,10269.8,0,0,0,13.31 +64,4,052317,031828,-0.00003,23.6934,-0.02,10269.5,0,0,0,13.31 +64,4,052317,031829,-0.00003,23.6927,-0.02,10269.7,0,0,0,13.31 +64,4,052317,031830,-0.00003,23.6940,-0.02,10269.9,0,0,0,13.31 +64,4,052317,031831,-0.00003,23.6929,-0.02,10270.2,0,0,0,13.31 +64,4,052317,031832,-0.00002,23.6938,-0.02,10269.2,0,0,0,13.31 +64,4,052317,031833,-0.00003,23.6939,-0.02,10270.6,0,0,0,13.31 +64,4,052317,031834,-0.00003,23.6942,-0.02,10269.3,0,0,0,13.31 +64,4,052317,031835,-0.00002,23.6948,-0.02,10270.4,0,0,0,13.31 +64,4,052317,031836,-0.00004,23.6949,-0.02,10269.6,0,0,0,13.31 +64,4,052317,031837,-0.00003,23.6946,-0.02,10270.2,0,0,0,13.31 +64,4,052317,031838,-0.00004,23.6949,-0.02,10270.1,0,0,0,13.31 +64,4,052317,031839,-0.00003,23.6956,-0.02,10269.6,0,0,0,13.31 +64,4,052317,031840,-0.00003,23.6949,-0.02,10270.3,0,0,0,13.31 +64,4,052317,031841,-0.00003,23.6956,-0.02,10270.5,0,0,0,13.31 +64,4,052317,031842,-0.00003,23.6954,-0.02,10270.6,0,0,0,13.31 +64,4,052317,031843,-0.00003,23.6957,-0.02,10270.2,0,0,0,13.31 +64,4,052317,031844,-0.00003,23.6964,-0.02,10269.6,0,0,0,13.31 +64,4,052317,031845,-0.00003,23.6964,-0.02,10270.1,0,0,0,13.31 +64,4,052317,031846,-0.00003,23.6964,-0.02,10269.2,0,0,0,13.31 +64,4,052317,031847,-0.00003,23.6971,-0.02,10270.6,0,0,0,13.31 +64,4,052317,031848,-0.00003,23.6975,-0.02,10269.5,0,0,0,13.31 +64,4,052317,031849,-0.00003,23.6976,-0.02,10269.7,0,0,0,13.31 +64,4,052317,031850,-0.00003,23.6974,-0.02,10269.6,0,0,0,13.31 +64,4,052317,031851,-0.00003,23.6978,-0.02,10269.6,0,0,0,13.31 +64,4,052317,031852,-0.00002,23.6984,-0.02,10269.9,0,0,0,13.31 +64,4,052317,031853,-0.00003,23.6980,-0.02,10269.8,0,0,0,13.31 +64,4,052317,031854,-0.00003,23.6988,-0.02,10269.7,0,0,0,13.31 +64,4,052317,031855,-0.00003,23.6987,-0.02,10269.5,0,0,0,13.31 +64,4,052317,031856,-0.00003,23.6980,-0.02,10269.8,0,0,0,13.31 +64,4,052317,031857,-0.00003,23.6989,-0.02,10269.9,0,0,0,13.31 +64,4,052317,031858,-0.00002,23.6987,-0.02,10269.5,0,0,0,13.31 +64,4,052317,031859,-0.00003,23.6993,-0.02,10270.1,0,0,0,13.31 +64,4,052317,031900,-0.00003,23.6997,-0.02,10270.3,0,0,0,13.31 +64,4,052317,031901,-0.00003,23.6998,-0.02,10270.2,0,0,0,13.31 +64,4,052317,031902,-0.00004,23.7000,-0.02,10269.8,0,0,0,13.31 +64,4,052317,031903,-0.00003,23.7000,-0.02,10269.9,0,0,0,13.31 +64,4,052317,031904,-0.00003,23.6995,-0.02,10269.2,0,0,0,13.31 +64,4,052317,031905,-0.00003,23.7004,-0.02,10269.7,0,0,0,13.31 +64,4,052317,031906,-0.00003,23.7011,-0.02,10270.0,0,0,0,13.31 +64,4,052317,031907,-0.00003,23.7010,-0.02,10270.3,0,0,0,13.31 +64,4,052317,031908,-0.00003,23.7009,-0.02,10269.8,0,0,0,13.31 +64,4,052317,031909,-0.00003,23.7018,-0.02,10270.5,0,0,0,13.31 +64,4,052317,031910,-0.00002,23.7017,-0.02,10269.6,0,0,0,13.31 +64,4,052317,031911,-0.00003,23.7019,-0.02,10270.2,0,0,0,13.31 +64,4,052317,031912,-0.00003,23.7019,-0.02,10270.0,0,0,0,13.31 +64,4,052317,031913,-0.00003,23.7026,-0.02,10270.4,0,0,0,13.31 +64,4,052317,031914,-0.00002,23.7030,-0.02,10270.4,0,0,0,13.31 +64,4,052317,031915,-0.00003,23.7018,-0.02,10270.2,0,0,0,13.31 +64,4,052317,031916,-0.00002,23.7026,-0.02,10269.8,0,0,0,13.31 +64,4,052317,031917,-0.00003,23.7032,-0.02,10271.0,0,0,0,13.31 +64,4,052317,031918,-0.00004,23.7035,-0.02,10270.3,0,0,0,13.31 +64,100,052317,031919,1,0,5,8,80,25,1022731,0,1,411436,1,0,0,0,1,13.31 +64,5,052317,031919,-0.00003,23.7033,-0.02,10269.8,0,0,0,13.31 +64,5,052317,031919,-0.00003,23.7039,-0.02,10270.1,0,0,0,13.31 +64,5,052317,031920,-0.00003,23.7034,-0.02,10270.2,0,0,0,13.27 +64,5,052317,031921,-0.00003,23.7044,-0.02,10269.8,0,0,0,13.27 +64,5,052317,031922,-0.00002,23.7047,-0.02,10270.1,0,0,0,13.22 +64,210,052317,031923,05/22/17 20:31:50 695 58 700 179 539 +64,5,052317,031923,-0.00003,23.7044,-0.02,10269.5,0,58,179,13.26 +64,5,052317,031924,-0.00003,23.7050,-0.02,10269.8,0,56,196,13.27 +64,5,052317,031925,-0.00003,23.7048,-0.02,10270.2,0,64,204,13.27 +64,5,052317,031926,-0.00003,23.7059,-0.02,10269.6,0,53,192,13.27 +64,100,052317,031927,1,0,6,60,80,26,1022730,0,1,411436,1,0,0,0,1,13.27 +64,6,052317,031927,-0.00003,23.7060,-0.02,10269.6,0,53,188,13.27 +64,6,052317,031928,-0.00003,23.7056,-0.02,10270.2,0,65,194,13.27 +64,6,052317,031929,-0.00003,23.7059,-0.02,10270.0,0,50,177,13.27 +64,6,052317,031930,-0.00003,23.7059,-0.02,10269.6,0,47,188,13.27 +64,6,052317,031931,-0.00004,23.7064,-0.02,10270.1,0,76,190,13.27 +64,6,052317,031932,-0.00003,23.7063,-0.02,10269.9,0,60,189,13.27 +64,6,052317,031933,-0.00003,23.7063,-0.02,10271.1,0,74,193,13.27 +64,6,052317,031934,-0.00003,23.7071,-0.02,10269.3,0,67,199,13.28 +64,6,052317,031935,-0.00003,23.7071,-0.02,10269.8,0,65,176,13.27 +64,6,052317,031936,-0.00002,23.7072,-0.02,10269.5,0,42,190,13.27 +64,6,052317,031937,-0.00003,23.7070,-0.02,10269.9,0,58,197,13.28 +64,6,052317,031938,-0.00003,23.7079,-0.02,10270.1,0,64,187,13.27 +64,6,052317,031939,-0.00003,23.7077,-0.02,10271.4,0,67,192,13.28 +64,6,052317,031940,-0.00003,23.7085,-0.02,10269.5,0,54,180,13.28 +64,6,052317,031941,-0.00003,23.7083,-0.02,10270.1,0,66,195,13.28 +64,6,052317,031942,-0.00004,23.7092,-0.02,10269.6,0,48,168,13.28 +64,6,052317,031943,-0.00003,23.7089,-0.02,10270.5,0,68,193,13.28 +64,6,052317,031944,-0.00003,23.7090,-0.02,10270.2,0,51,193,13.28 +64,6,052317,031945,-0.00003,23.7092,-0.02,10270.4,0,54,187,13.28 +64,6,052317,031946,-0.00003,23.7093,-0.02,10269.4,0,57,194,13.27 +64,6,052317,031947,-0.00003,23.7097,-0.02,10269.8,0,50,177,13.27 +64,6,052317,031948,-0.00003,23.7091,-0.02,10270.2,0,61,205,13.28 +64,6,052317,031949,-0.00002,23.7098,-0.02,10270.1,0,65,191,13.27 +64,6,052317,031950,-0.00003,23.7105,-0.02,10269.6,0,56,188,13.28 +64,6,052317,031951,-0.00002,23.7108,-0.02,10270.7,0,47,184,13.27 +64,6,052317,031952,-0.00003,23.7105,-0.02,10270.3,0,66,190,13.27 +64,6,052317,031953,-0.00003,23.7106,-0.02,10270.0,0,48,176,13.27 +64,6,052317,031954,-0.00003,23.7108,-0.02,10270.3,0,64,194,13.27 +64,6,052317,031955,-0.00003,23.7109,-0.02,10270.3,0,62,195,13.27 +64,6,052317,031956,-0.00003,23.7115,-0.02,10270.1,0,63,182,13.27 +64,6,052317,031957,-0.00003,23.7115,-0.02,10270.6,0,60,179,13.27 +64,6,052317,031958,-0.00003,23.7113,-0.02,10270.1,0,43,178,13.27 +64,6,052317,031959,-0.00003,23.7122,-0.02,10269.3,0,63,193,13.27 +64,6,052317,032000,-0.00003,23.7128,-0.02,10269.8,0,62,193,13.27 +64,6,052317,032001,-0.00004,23.7126,-0.02,10269.5,0,53,187,13.27 +64,6,052317,032002,-0.00003,23.7129,-0.02,10270.5,0,65,187,13.27 +64,6,052317,032003,-0.00004,23.7135,-0.02,10270.6,0,55,187,13.28 +64,6,052317,032004,-0.00003,23.7132,-0.02,10269.7,0,67,186,13.28 +64,6,052317,032005,-0.00003,23.7134,-0.02,10270.2,0,61,181,13.28 +64,6,052317,032006,-0.00003,23.7131,-0.02,10269.7,0,53,183,13.27 +64,6,052317,032007,-0.00004,23.7138,-0.02,10269.2,0,48,184,13.28 +64,6,052317,032008,-0.00003,23.7144,-0.02,10269.6,0,67,193,13.28 +64,6,052317,032009,-0.00004,23.7142,-0.02,10269.8,0,67,194,13.27 +64,6,052317,032010,-0.00003,23.7141,-0.02,10269.8,0,55,191,13.27 +64,6,052317,032011,-0.00003,23.7149,-0.02,10270.7,0,57,196,13.27 +64,6,052317,032012,-0.00004,23.7156,-0.02,10270.3,0,57,176,13.28 +64,6,052317,032013,-0.00003,23.7150,-0.02,10270.5,0,66,186,13.27 +64,6,052317,032014,-0.00003,23.7151,-0.02,10270.2,0,51,182,13.28 +64,6,052317,032015,-0.00003,23.7150,-0.02,10269.8,0,59,187,13.28 +64,6,052317,032016,-0.00003,23.7150,-0.02,10270.1,0,69,186,13.28 +64,6,052317,032017,-0.00003,23.7160,-0.02,10269.8,0,53,172,13.27 +64,6,052317,032018,-0.00002,23.7154,-0.02,10270.5,0,67,186,13.28 +64,6,052317,032019,-0.00002,23.7165,-0.02,10271.1,0,71,188,13.28 +64,6,052317,032020,-0.00002,23.7168,-0.02,10270.7,0,56,197,13.27 +64,6,052317,032021,-0.00002,23.7173,-0.02,10270.3,0,41,184,13.27 +64,6,052317,032022,-0.00003,23.7164,-0.02,10269.5,0,54,189,13.27 +64,6,052317,032023,-0.00002,23.7175,-0.02,10270.3,0,70,187,13.28 +64,6,052317,032024,-0.00003,23.7178,-0.02,10270.1,0,52,179,13.28 +64,6,052317,032025,-0.00003,23.7177,-0.02,10269.8,0,72,185,13.27 +64,6,052317,032026,-0.00003,23.7175,-0.02,10271.6,0,59,175,13.28 +64,100,052317,032027,1,0,10,145,80,29,1022726,0,1,411436,1,0,0,0,1,13.28 +File Name: WQM0064.003 +Created On: 060117 034300 +File Version: 3 3=Includes Sample Mode +WQM SN: 64 +F/W V: 1.59 +==================================================================== +CTD SN: 5253 +Pressure Range: 160 psia +IDO SN: 0716 +IDO43 Soc=1.541500e-04 +IDO43 FOffset=-3.394510e+03 +IDO43 A=-2.178800e-03 +IDO43 B=1.006200e-04 +IDO43 C=-2.180200e-06 +IDO43 E=3.600000e-02 +DO Stability-Fit=Fixed +DO Stability-A=80.0000 +DO Stability-B=-2.2880 +DO Stability-C=60.8050 +==================================================================== +ECO SN: FLNTUS-1350 +ECO Baud: 19200 +ECO Delimiter: TAB +ECO IHM: 1 +ECO IOM: 2 +ECO Total Columns: 7 +ECO SN Column: None +ECO Date Column: 1 +ECO Time Column: 2 +ECO Signal Count: 2 +ECO Signal 1 Name: CHLA +ECO Signal 1 Raw Units: COUNTS +ECO Signal 1 Engr Units: UG/L +ECO Signal 1 Type: 1 Std Scale'n'Offset +ECO Signal 1 Cal Coef: 0.011400 45.000000 0.000000 0.000000 +ECO Signal 2 Name: TURBIDITY +ECO Signal 2 Raw Units: COUNTS +ECO Signal 2 Engr Units: NTU +ECO Signal 2 Type: 1 Std Scale'n'Offset +ECO Signal 2 Cal Coef: 0.006300 50.000000 0.000000 0.000000 +==================================================================== +External Data Port: Off +==================================================================== +Control: Autonomous +Delay Seconds: 0 +Sample Seconds: 60 +Sample Interval Seconds: 900 +==================================================================== +Starting Free Flask Disk: 1022480 K +Total Flask Disk: 1022816 K +==================================================================== +BLIS ul / squirt: 9.0 +Pumped Hour Interval: 1 +Pumped BLIS: 0 +Static BLIS: 4 +Starting Total BLIS Squirts: 0 +==================================================================== +Recent UPS: No +Starting UPS Count: 0 +Starting Total UPS Count: 0 +Starting Voltage: 15.72 +==================================================================== +Outbits - Version: 3 +Outbits - Misc: 0xCE01 +Outbits - CTD: 0xFCC0 +Outbits - ECO: 0xCC00 +Outbits - EDP: 0x0000 +Data Output: Averaged +==================================================================== +Heartbeat: OFF +Update Date/Time: Normal +File Format: SN,State,Date,Time,Cond(S/m),Temp(C),Pres(dbar),RawDO(Hz),Pumped,CHLA(COUNTS),TURBIDITY(COUNTS),Volts + +64,100,060117,034300,1,0,3,7,15,0,1022479,0,1,411652,1,0,0,0,1,15.72 +64,230,060117,034301,3,24672,24664,24664 +64,100,060117,034307,1,0,4,15,15,0,1022479,0,1,411652,1,0,0,0,1,15.66 +64,200,060117,034307, 0.0129, 23.8172, -0.00, 10280.3, 0 +64,4,060117,034307,0.00129,23.8172,0.00,10280.3,0,0,0,15.66 diff --git a/test/readWQMraw/WQM0067_002_fw1.59_example.Raw b/test/readWQMraw/WQM0067_002_fw1.59_example.Raw new file mode 100644 index 000000000..219d675ab --- /dev/null +++ b/test/readWQMraw/WQM0067_002_fw1.59_example.Raw @@ -0,0 +1,600 @@ + +File Name: WQM0067.001 +Created On: 081315 080544 +File Version: 3 3=Includes Sample Mode +WQM SN: 67 +F/W V: 1.59 +==================================================================== +CTD SN: 5292 +Pressure Range: 160 psia +IDO SN: 2455 +IDO43 Soc=1.372300e-04 +IDO43 FOffset=-3.456860e+03 +IDO43 A=-3.225600e-03 +IDO43 B=1.561300e-04 +IDO43 C=-2.419600e-06 +IDO43 E=3.600000e-02 +DO Stability-Fit=Fixed +DO Stability-A=80.0000 +DO Stability-B=-2.2880 +DO Stability-C=60.8050 +==================================================================== +ECO SN: FLNTUS-1054 +ECO Baud: 19200 +ECO Delimiter: TAB +ECO IHM: 1 +ECO IOM: 2 +ECO Total Columns: 7 +ECO SN Column: None +ECO Date Column: 1 +ECO Time Column: 2 +ECO Signal Count: 2 +ECO Signal 1 Name: CHLa +ECO Signal 1 Raw Units: Counts +ECO Signal 1 Engr Units: ug/l +ECO Signal 1 Type: 1 Std Scale'n'Offset +ECO Signal 1 Cal Coef: 0.010100 49.000000 0.000000 0.000000 +ECO Signal 2 Name: Turbidity +ECO Signal 2 Raw Units: Counts +ECO Signal 2 Engr Units: NTU +ECO Signal 2 Type: 1 Std Scale'n'Offset +ECO Signal 2 Cal Coef: 0.005500 50.000000 0.000000 0.000000 +==================================================================== +External Data Port: Off +==================================================================== +Control: Autonomous +Delay Seconds: 0 +Sample Seconds: 60 +Sample Interval Seconds: 900 +==================================================================== +Starting Free Flask Disk: 1022800 K +Total Flask Disk: 1022816 K +==================================================================== +BLIS ul / squirt: 9.0 +Pumped Hour Interval: 1 +Pumped BLIS: 0 +Static BLIS: 4 +Starting Total BLIS Squirts: 0 +==================================================================== +Recent UPS: No +Starting UPS Count: 0 +Starting Total UPS Count: 0 +Starting Voltage: 17.00 +==================================================================== +Outbits - Version: 3 +Outbits - Misc: 0xCE01 +Outbits - CTD: 0xFCC0 +Outbits - ECO: 0xCC00 +Outbits - EDP: 0x0000 +Data Output: Averaged +==================================================================== +Heartbeat: OFF +Update Date/Time: Normal +File Format: SN,State,Date,Time,Cond(S/m),Temp(C),Pres(dbar),RawDO(Hz),Pumped,CHLa(Counts),Turbidity(Counts),Volts + +67,230,081315,080544,3,24768,24760,24760 +67,100,081315,080544,1,0,3,7,15,0,1022799,0,1,0,1,0,0,0,1,15.79 +67,200,081315,080549, 0.0006, 26.8852, 0.00, 8324.6, 0 +67,3,081315,080549,0.00006,26.8852,0.00,8324.6,0,0,0,15.74 +67,3,081315,080550,0.00006,26.8860,0.00,8323.1,0,0,0,15.73 +67,100,081315,080551,1,0,4,80,80,0,1022799,0,1,0,1,0,0,0,1,15.73 +67,4,081315,080551,0.00006,26.8840,0.00,8323.1,0,0,0,15.73 +67,4,081315,080552,0.00006,26.8847,0.00,8323.3,0,0,0,15.73 +67,4,081315,080553,0.00006,26.8840,0.00,8324.3,0,0,0,15.73 +67,4,081315,080554,0.00006,26.8845,0.00,8324.1,0,0,0,15.73 +67,4,081315,080555,0.00006,26.8807,0.00,8323.0,0,0,0,15.73 +67,4,081315,080556,0.00006,26.8783,0.00,8324.4,0,0,0,15.73 +67,4,081315,080557,0.00006,26.8786,0.00,8324.2,0,0,0,15.73 +67,4,081315,080558,0.00006,26.8779,0.00,8323.3,0,0,0,15.73 +67,4,081315,080559,0.00006,26.8798,0.00,8324.2,0,0,0,15.73 +67,4,081315,080600,0.00006,26.8777,0.00,8324.4,0,0,0,15.73 +67,4,081315,080601,0.00006,26.8769,0.00,8323.7,0,0,0,15.73 +67,4,081315,080602,0.00006,26.8755,0.00,8324.1,0,0,0,15.73 +67,4,081315,080603,0.00006,26.8745,0.00,8324.1,0,0,0,15.73 +67,4,081315,080604,0.00006,26.8770,0.00,8324.6,0,0,0,15.73 +67,4,081315,080605,0.00006,26.8770,0.00,8323.9,0,0,0,15.73 +67,4,081315,080606,0.00006,26.8796,0.00,8322.7,0,0,0,15.73 +67,4,081315,080607,0.00006,26.8788,0.00,8325.2,0,0,0,15.73 +67,4,081315,080608,0.00007,26.8779,0.00,8323.7,0,0,0,15.73 +67,4,081315,080609,0.00005,26.8781,0.00,8324.2,0,0,0,15.73 +67,4,081315,080610,0.00006,26.8779,0.00,8324.4,0,0,0,15.73 +67,4,081315,080611,0.00007,26.8779,0.00,8322.8,0,0,0,15.73 +67,4,081315,080612,0.00006,26.8766,0.00,8325.8,0,0,0,15.73 +67,4,081315,080613,0.00006,26.8765,0.00,8325.0,0,0,0,15.73 +67,4,081315,080614,0.00006,26.8763,0.00,8324.0,0,0,0,15.73 +67,4,081315,080615,0.00006,26.8775,0.00,8324.7,0,0,0,15.73 +67,4,081315,080616,0.00006,26.8759,0.00,8323.4,0,0,0,15.73 +67,4,081315,080617,0.00006,26.8750,0.00,8324.6,0,0,0,15.73 +67,4,081315,080618,0.00006,26.8755,0.00,8324.1,0,0,0,15.73 +67,4,081315,080619,0.00006,26.8755,0.00,8324.4,0,0,0,15.73 +67,4,081315,080620,0.00005,26.8751,0.00,8324.0,0,0,0,15.73 +67,4,081315,080621,0.00006,26.8749,0.00,8324.8,0,0,0,15.73 +67,4,081315,080622,0.00006,26.8746,0.00,8323.0,0,0,0,15.73 +67,4,081315,080623,0.00006,26.8746,0.00,8325.3,0,0,0,15.73 +67,100,081315,080624,1,0,15,1,80,2,1022797,0,1,365409,1,0,0,0,1,15.73 +67,100,081315,080832,1,0,10,0,15,2,1022783,0,1,365409,1,0,0,0,1,15.79 +ignal Count: 2 +ECO Signal 1 Name: CHLa +ECO Signal 1 Raw Units: Counts +ECO Signal 1 Engr Units: ug/l +ECO Signal 1 Type: 1 Std Scale'n'Offset +ECO Signal 1 Cal Coef: 0.010100 49.000000 0.000000 0.000000 +ECO Signal 2 Name: Turbidity +ECO Signal 2 Raw Units: Counts +ECO Sign7,4,081315,075459,0.00006,27.1041,-0.02,8319.8,0,0,0,15.73 +67,4,081315,075500,0.00006,27.1001,-0.02,8320.0,0,0,0,15.73 +67,4,081315,075501,0.00006,27.0960,-0.02,8317.7,0,0,0,15.73 +67,4,081315,075502,0.00011,27.0947,-0.02,8317.5,0,0,0,15.73 +67,4,081315,075503,0.00007,27.0932,-0.02,8319.6,0,0,0,15.73 +67,100,081315,075504,0,0,15,1,80,2,1022797,0,1,365408,0,0,0,0,1,15.73 +67,210,081315,075644,08/13/15 00:50:59 695 64 700 203 528 +67,100,081315,080042,1,0,24,120,15,3,1022783,0,1,365408,0,0,0,0,1,15.79 +67,100,081315,080042,1,0,15,1,15,3,1022783,0,1,365408,0,0,0,0,1,15.79 +File Name: WQM0067.002 +Created On: 081315 081259 +File Version: 3 3=Includes Sample Mode +WQM SN: 67 +F/W V: 1.59 +==================================================================== +CTD SN: 5292 +Pressure Range: 160 psia +IDO SN: 2455 +IDO43 Soc=1.372300e-04 +IDO43 FOffset=-3.456860e+03 +IDO43 A=-3.225600e-03 +IDO43 B=1.561300e-04 +IDO43 C=-2.419600e-06 +IDO43 E=3.600000e-02 +DO Stability-Fit=Fixed +DO Stability-A=80.0000 +DO Stability-B=-2.2880 +DO Stability-C=60.8050 +==================================================================== +ECO SN: FLNTUS-1054 +ECO Baud: 19200 +ECO Delimiter: TAB +ECO IHM: 1 +ECO IOM: 2 +ECO Total Columns: 7 +ECO SN Column: None +ECO Date Column: 1 +ECO Time Column: 2 +ECO Signal Count: 2 +ECO Signal 1 Name: CHLa +ECO Signal 1 Raw Units: Counts +ECO Signal 1 Engr Units: ug/l +ECO Signal 1 Type: 1 Std Scale'n'Offset +ECO Signal 1 Cal Coef: 0.010100 49.000000 0.000000 0.000000 +ECO Signal 2 Name: Turbidity +ECO Signal 2 Raw Units: Counts +ECO Signal 2 Engr Units: NTU +ECO Signal 2 Type: 1 Std Scale'n'Offset +ECO Signal 2 Cal Coef: 0.005500 50.000000 0.000000 0.000000 +==================================================================== +External Data Port: Off +==================================================================== +Control: Autonomous +Delay Seconds: 0 +Sample Seconds: 60 +Sample Interval Seconds: 900 +==================================================================== +Starting Free Flask Disk: 1022784 K +Total Flask Disk: 1022816 K +==================================================================== +BLIS ul / squirt: 9.0 +Pumped Hour Interval: 1 +Pumped BLIS: 0 +Static BLIS: 4 +Starting Total BLIS Squirts: 0 +==================================================================== +Recent UPS: No +Starting UPS Count: 0 +Starting Total UPS Count: 0 +Starting Voltage: 15.80 +==================================================================== +Outbits - Version: 3 +Outbits - Misc: 0xCE01 +Outbits - CTD: 0xFCC0 +Outbits - ECO: 0xCC00 +Outbits - EDP: 0x0000 +Data Output: Averaged +==================================================================== +Heartbeat: OFF +Update Date/Time: Normal +File Format: SN,State,Date,Time,Cond(S/m),Temp(C),Pres(dbar),RawDO(Hz),Pumped,CHLa(Counts),Turbidity(Counts),Volts + +67,100,081315,081259,1,0,3,7,15,2,1022783,0,1,365409,1,0,0,0,1,15.80 +67,230,081315,081300,3,24784,24776,24776 +67,100,081315,081306,1,0,4,15,15,2,1022783,0,1,365409,1,0,0,0,1,15.74 +67,200,081315,081306, 0.0008, 26.7603, 0.00, 8326.2, 0 +67,4,081315,081306,0.00008,26.7603,0.00,8326.2,0,0,0,15.74 +67,4,081315,081307,0.00006,26.7607,0.00,8327.0,0,0,0,15.75 +67,4,081315,081308,0.00006,26.7625,0.00,8326.8,0,0,0,15.74 +67,4,081315,081309,0.00006,26.7633,0.00,8327.4,0,0,0,15.74 +67,4,081315,081310,0.00005,26.7648,0.00,8326.8,0,0,0,15.74 +67,4,081315,081311,0.00006,26.7650,0.00,8328.7,0,0,0,15.74 +67,4,081315,081312,0.00006,26.7663,0.00,8327.5,0,0,0,15.74 +67,4,081315,081313,0.00006,26.7659,0.00,8327.1,0,0,0,15.74 +67,4,081315,081314,0.00006,26.7661,0.00,8327.7,0,0,0,15.74 +67,4,081315,081315,0.00006,26.7662,0.00,8326.5,0,0,0,15.74 +67,4,081315,081316,0.00008,26.7640,0.00,8327.4,0,0,0,15.74 +67,4,081315,081317,0.00006,26.7638,0.00,8326.7,0,0,0,15.74 +67,4,081315,081318,0.00006,26.7635,0.00,8328.5,0,0,0,15.74 +67,4,081315,081319,0.00006,26.7590,0.00,8328.2,0,0,0,15.74 +67,4,081315,081320,0.00006,26.7585,0.00,8329.3,0,0,0,15.74 +67,4,081315,081321,0.00006,26.7545,0.00,8327.1,0,0,0,15.74 +67,4,081315,081322,0.00006,26.7545,0.00,8327.4,0,0,0,15.74 +67,4,081315,081323,0.00006,26.7560,0.00,8328.8,0,0,0,15.74 +67,4,081315,081324,0.00006,26.7549,0.00,8327.5,0,0,0,15.74 +67,4,081315,081325,0.00006,26.7545,0.00,8327.3,0,0,0,15.74 +67,4,081315,081326,0.00006,26.7564,0.00,8327.3,0,0,0,15.74 +67,4,081315,081327,0.00006,26.7582,0.00,8328.0,0,0,0,15.74 +67,4,081315,081328,0.00006,26.7581,0.00,8326.8,0,0,0,15.74 +67,4,081315,081329,0.00006,26.7584,0.00,8329.0,0,0,0,15.74 +67,4,081315,081330,0.00006,26.7595,0.00,8326.1,0,0,0,15.74 +67,4,081315,081331,0.00006,26.7585,0.00,8327.9,0,0,0,15.74 +67,4,081315,081332,0.00006,26.7561,0.00,8327.4,0,0,0,15.74 +67,4,081315,081333,0.00006,26.7534,0.00,8328.4,0,0,0,15.74 +67,4,081315,081334,0.00006,26.7500,0.00,8328.5,0,0,0,15.74 +67,4,081315,081335,0.00005,26.7480,0.00,8328.2,0,0,0,15.74 +67,4,081315,081336,0.00006,26.7441,0.00,8328.3,0,0,0,15.74 +67,4,081315,081337,0.00006,26.7414,0.00,8326.8,0,0,0,15.74 +67,4,081315,081338,0.00009,26.7409,0.00,8327.1,0,0,0,15.74 +67,4,081315,081339,0.00005,26.7410,0.00,8327.3,0,0,0,15.74 +67,4,081315,081340,0.00006,26.7393,0.00,8328.9,0,0,0,15.74 +67,4,081315,081341,0.00006,26.7406,0.00,8328.2,0,0,0,15.74 +67,4,081315,081342,0.00006,26.7392,0.00,8329.2,0,0,0,15.74 +67,4,081315,081343,0.00006,26.7380,0.00,8329.1,0,0,0,15.74 +67,4,081315,081344,0.00006,26.7356,0.00,8329.3,0,0,0,15.74 +67,4,081315,081345,0.00006,26.7354,0.00,8328.2,0,0,0,15.74 +67,4,081315,081346,0.00002,26.7311,0.00,8328.7,0,0,0,15.74 +67,4,081315,081347,0.00003,26.7265,0.00,8326.0,0,0,0,15.73 +67,4,081315,081348,0.00009,26.7229,0.00,8328.3,0,0,0,15.74 +67,4,081315,081349,0.00006,26.7216,0.00,8327.3,0,0,0,15.74 +67,4,081315,081350,0.00006,26.7225,0.00,8327.8,0,0,0,15.74 +67,4,081315,081351,0.00006,26.7236,0.00,8329.2,0,0,0,15.74 +67,4,081315,081352,0.00006,26.7245,0.00,8328.4,0,0,0,15.74 +67,4,081315,081353,0.00006,26.7245,0.00,8329.4,0,0,0,15.73 +67,4,081315,081354,0.00006,26.7250,0.00,8327.3,0,0,0,15.74 +67,4,081315,081355,0.00006,26.7254,0.00,8327.5,0,0,0,15.74 +67,4,081315,081356,0.00006,26.7267,0.00,8327.7,0,0,0,15.73 +67,4,081315,081357,0.00006,26.7283,0.00,8329.4,0,0,0,15.74 +67,4,081315,081358,0.00006,26.7291,0.00,8327.8,0,0,0,15.74 +67,4,081315,081359,0.00006,26.7259,0.00,8329.2,0,0,0,15.74 +67,4,081315,081400,0.00005,26.7264,0.00,8327.6,0,0,0,15.73 +67,4,081315,081401,0.00006,26.7225,0.00,8328.3,0,0,0,15.74 +67,4,081315,081402,0.00006,26.7196,0.00,8329.3,0,0,0,15.74 +67,4,081315,081403,0.00006,26.7202,0.00,8328.9,0,0,0,15.73 +67,4,081315,081404,0.00006,26.7171,0.00,8328.5,0,0,0,15.73 +67,4,081315,081405,0.00006,26.7165,0.00,8327.4,0,0,0,15.74 +67,4,081315,081406,0.00006,26.7179,0.00,8328.9,0,0,0,15.74 +67,4,081315,081407,0.00006,26.7193,0.00,8328.2,0,0,0,15.74 +67,4,081315,081408,0.00007,26.7212,0.00,8327.7,0,0,0,15.73 +67,4,081315,081409,0.00006,26.7232,0.00,8328.4,0,0,0,15.74 +67,4,081315,081410,0.00006,26.7251,0.00,8328.3,0,0,0,15.73 +67,4,081315,081411,0.00006,26.7241,0.00,8328.3,0,0,0,15.74 +67,4,081315,081412,0.00006,26.7218,0.00,8328.9,0,0,0,15.73 +67,4,081315,081413,0.00006,26.7212,0.00,8328.5,0,0,0,15.74 +67,4,081315,081414,0.00006,26.7206,0.00,8328.7,0,0,0,15.74 +67,4,081315,081415,0.00006,26.7189,0.00,8328.3,0,0,0,15.74 +67,4,081315,081416,0.00006,26.7151,0.00,8328.5,0,0,0,15.74 +67,4,081315,081417,0.00005,26.7135,0.00,8328.9,0,0,0,15.73 +67,100,081315,081418,1,0,5,8,80,6,1022779,0,1,365409,1,0,0,0,1,15.73 +67,5,081315,081418,0.00006,26.7125,0.00,8328.9,0,0,0,15.73 +67,5,081315,081419,0.00006,26.7141,0.00,8329.3,0,0,0,15.65 +67,5,081315,081420,0.00006,26.7130,0.00,8328.7,0,0,0,15.64 +67,5,081315,081421,0.00006,26.7136,0.00,8327.8,0,0,0,15.56 +67,210,081315,081422,08/13/15 01:08:38 695 48 700 194 531 +67,5,081315,081422,0.00006,26.7145,0.00,8328.8,0,48,194,15.64 +67,5,081315,081423,0.00006,26.7133,0.00,8329.0,0,51,185,15.64 +67,5,081315,081424,0.00006,26.7141,0.00,8327.5,0,60,190,15.63 +67,5,081315,081425,0.00006,26.7160,0.00,8329.9,0,50,181,15.63 +67,100,081315,081426,1,0,6,60,80,7,1022778,0,1,365409,1,0,0,0,1,15.63 +67,6,081315,081426,0.00006,26.7174,0.00,8329.2,0,57,183,15.63 +67,6,081315,081427,0.00006,26.7178,0.00,8328.8,0,55,181,15.63 +67,6,081315,081428,0.00005,26.7151,0.00,8328.3,0,54,182,15.63 +67,6,081315,081429,0.00006,26.7148,0.00,8329.3,0,57,185,15.63 +67,6,081315,081430,0.00007,26.7138,0.00,8327.9,0,59,184,15.63 +67,6,081315,081431,0.00006,26.7138,0.00,8328.8,0,56,182,15.63 +67,6,081315,081432,0.00006,26.7136,0.00,8329.0,0,57,187,15.63 +67,6,081315,081433,0.00006,26.7143,0.00,8328.2,0,52,186,15.63 +67,6,081315,081434,0.00006,26.7122,0.00,8329.9,0,55,178,15.63 +67,6,081315,081435,0.00006,26.7058,0.00,8329.0,0,59,185,15.63 +67,6,081315,081436,0.00006,26.7007,0.00,8328.5,0,61,181,15.63 +67,6,081315,081437,0.00001,26.6992,0.00,8328.1,0,56,184,15.63 +67,6,081315,081438,0.00010,26.6986,0.00,8330.1,0,55,185,15.63 +67,6,081315,081439,0.00006,26.6996,0.00,8328.2,0,57,178,15.63 +67,6,081315,081440,0.00006,26.6968,0.00,8328.2,0,54,188,15.63 +67,6,081315,081441,0.00006,26.6962,0.00,8326.3,0,54,186,15.64 +67,6,081315,081442,0.00006,26.6978,0.00,8328.4,0,56,184,15.63 +67,6,081315,081443,0.00007,26.6977,0.00,8328.6,0,60,185,15.63 +67,6,081315,081444,0.00004,26.6989,0.00,8329.3,0,56,184,15.63 +67,6,081315,081445,0.00006,26.6979,0.00,8328.2,0,52,182,15.63 +67,6,081315,081446,0.00007,26.6946,0.00,8329.1,0,48,189,15.63 +67,6,081315,081447,0.00004,26.6944,0.00,8328.8,0,55,184,15.63 +67,6,081315,081448,0.00007,26.6936,0.00,8328.5,0,55,183,15.63 +67,6,081315,081449,0.00004,26.6953,0.00,8327.5,0,55,183,15.63 +67,6,081315,081450,0.00006,26.6942,0.00,8329.1,0,54,184,15.63 +67,6,081315,081451,0.00006,26.6927,0.00,8330.3,0,55,183,15.63 +67,6,081315,081452,0.00006,26.6885,0.00,8327.5,0,58,184,15.63 +67,6,081315,081453,0.00006,26.6840,0.00,8328.6,0,52,187,15.63 +67,6,081315,081454,0.00006,26.6761,0.00,8329.0,0,55,181,15.63 +67,6,081315,081455,0.00006,26.6709,0.00,8329.4,0,53,183,15.63 +67,6,081315,081456,0.00006,26.6707,0.00,8330.3,0,61,181,15.63 +67,6,081315,081457,0.00006,26.6705,0.00,8329.4,0,51,183,15.63 +67,6,081315,081458,0.00006,26.6639,0.00,8329.2,0,57,181,15.63 +67,6,081315,081459,0.00006,26.6620,0.00,8329.9,0,54,187,15.63 +67,6,081315,081500,0.00006,26.6578,0.00,8329.0,0,54,187,15.63 +67,6,081315,081501,0.00006,26.6523,0.00,8328.4,0,50,186,15.63 +67,6,081315,081502,0.00006,26.6472,0.00,8327.8,0,53,182,15.63 +67,6,081315,081503,0.00006,26.6443,0.00,8328.7,0,59,183,15.63 +67,6,081315,081504,0.00006,26.6454,0.00,8330.2,0,55,185,15.63 +67,6,081315,081505,0.00006,26.6389,0.00,8327.2,0,58,189,15.63 +67,6,081315,081506,0.00006,26.6408,0.00,8330.0,0,53,181,15.63 +67,6,081315,081507,0.00006,26.6445,0.00,8329.7,0,55,182,15.63 +67,6,081315,081508,-0.00007,26.6461,0.00,8328.6,0,58,186,15.63 +67,6,081315,081509,0.00006,26.6432,0.00,8329.5,0,53,184,15.63 +67,6,081315,081510,0.00006,26.6428,0.00,8329.2,0,56,184,15.63 +67,6,081315,081511,0.00006,26.6407,0.00,8327.8,0,60,183,15.63 +67,6,081315,081512,0.00006,26.6399,0.00,8327.8,0,58,182,15.63 +67,6,081315,081513,0.00006,26.6409,0.00,8330.1,0,52,182,15.63 +67,6,081315,081514,0.00006,26.6393,0.00,8330.5,0,52,186,15.63 +67,6,081315,081515,0.00006,26.6371,0.00,8329.9,0,56,180,15.63 +67,6,081315,081516,0.00006,26.6368,0.00,8328.4,0,52,188,15.63 +67,6,081315,081517,0.00006,26.6328,0.00,8327.5,0,54,183,15.63 +67,6,081315,081518,0.00005,26.6322,0.00,8329.9,0,57,187,15.63 +67,6,081315,081519,0.00006,26.6317,0.00,8328.5,0,58,182,15.63 +67,6,081315,081520,0.00006,26.6299,0.00,8329.4,0,56,186,15.63 +67,6,081315,081521,0.00006,26.6319,0.00,8329.5,0,58,186,15.63 +67,6,081315,081522,0.00006,26.6318,0.00,8329.4,0,56,185,15.63 +67,6,081315,081523,0.00007,26.6309,0.00,8327.9,0,54,187,15.63 +67,6,081315,081524,0.00006,26.6307,0.00,8329.1,0,55,179,15.63 +67,6,081315,081525,0.00006,26.6304,0.00,8330.4,0,60,181,15.63 +67,100,081315,081526,1,0,10,263,80,11,1022775,0,1,365409,1,0,0,0,1,15.63 +67,100,081315,082759,1,0,3,7,15,11,1022767,0,1,365409,1,0,0,0,1,15.81 +67,3,081315,082759,0.00006,26.6314,0.00,8329.4,0,0,0,15.81 +67,230,081315,082800,3,24784,24784,24776 +67,100,081315,082806,1,0,4,15,15,11,1022767,0,1,365409,1,0,0,0,1,15.74 +67,200,081315,082806, 0.0006, 26.5145, 0.00, 8334.9, 0 +67,4,081315,082806,0.00006,26.5145,0.00,8334.9,0,0,0,15.74 +67,4,081315,082807,0.00006,26.5154,0.00,8335.8,0,0,0,15.75 +67,4,081315,082808,0.00008,26.5154,0.00,8335.6,0,0,0,15.74 +67,4,081315,082809,0.00005,26.5132,0.00,8336.3,0,0,0,15.74 +67,4,081315,082810,0.00006,26.5107,0.00,8336.7,0,0,0,15.74 +67,4,081315,082811,0.00005,26.5085,0.00,8336.0,0,0,0,15.74 +67,4,081315,082812,0.00006,26.5083,0.00,8337.4,0,0,0,15.74 +67,4,081315,082813,0.00003,26.5094,0.00,8336.5,0,0,0,15.74 +67,4,081315,082814,0.00005,26.5099,0.00,8335.4,0,0,0,15.74 +67,4,081315,082815,0.00006,26.5088,0.00,8337.3,0,0,0,15.74 +67,4,081315,082816,0.00006,26.5096,0.00,8336.7,0,0,0,15.74 +67,4,081315,082817,0.00006,26.5107,0.00,8335.8,0,0,0,15.74 +67,4,081315,082818,0.00006,26.5119,0.00,8336.5,0,0,0,15.74 +67,4,081315,082819,0.00006,26.5108,0.00,8335.3,0,0,0,15.74 +67,4,081315,082820,0.00005,26.5086,0.00,8337.8,0,0,0,15.74 +67,4,081315,082821,0.00006,26.5084,0.00,8336.2,0,0,0,15.74 +67,4,081315,082822,0.00005,26.5067,0.00,8337.0,0,0,0,15.74 +67,4,081315,082823,0.00006,26.5065,0.00,8335.8,0,0,0,15.74 +67,4,081315,082824,0.00005,26.5068,0.00,8336.7,0,0,0,15.74 +67,4,081315,082825,0.00006,26.5087,0.00,8336.0,0,0,0,15.74 +67,4,081315,082826,0.00005,26.5081,0.00,8335.4,0,0,0,15.74 +67,4,081315,082827,0.00006,26.5060,0.00,8335.3,0,0,0,15.74 +67,4,081315,082828,0.00006,26.5058,0.00,8336.8,0,0,0,15.74 +67,4,081315,082829,0.00005,26.5080,0.00,8336.3,0,0,0,15.74 +67,4,081315,082830,0.00006,26.5069,0.00,8335.9,0,0,0,15.74 +67,4,081315,082831,0.00006,26.5038,0.00,8336.1,0,0,0,15.74 +67,4,081315,082832,0.00006,26.5027,0.00,8337.9,0,0,0,15.74 +67,4,081315,082833,0.00006,26.5033,0.00,8337.0,0,0,0,15.74 +67,4,081315,082834,0.00006,26.5044,0.00,8337.5,0,0,0,15.74 +67,4,081315,082835,0.00005,26.5045,0.00,8336.7,0,0,0,15.74 +67,4,081315,082836,0.00006,26.5031,0.00,8336.6,0,0,0,15.74 +67,4,081315,082837,0.00005,26.5031,0.00,8338.0,0,0,0,15.74 +67,4,081315,082838,0.00009,26.5036,0.00,8337.4,0,0,0,15.74 +67,4,081315,082839,0.00005,26.5044,0.00,8337.4,0,0,0,15.74 +67,4,081315,082840,0.00006,26.5062,0.00,8337.3,0,0,0,15.74 +67,4,081315,082841,0.00005,26.5060,0.00,8336.5,0,0,0,15.74 +67,4,081315,082842,0.00006,26.5072,0.00,8336.2,0,0,0,15.74 +67,4,081315,082843,0.00006,26.5077,0.00,8336.9,0,0,0,15.74 +67,4,081315,082844,0.00006,26.5090,0.00,8337.0,0,0,0,15.74 +67,4,081315,082845,0.00005,26.5081,0.00,8337.6,0,0,0,15.74 +67,4,081315,082846,0.00006,26.5096,0.00,8336.0,0,0,0,15.74 +67,4,081315,082847,0.00006,26.5063,0.00,8336.1,0,0,0,15.74 +67,4,081315,082848,0.00005,26.5074,0.00,8337.5,0,0,0,15.74 +67,4,081315,082849,0.00007,26.5060,0.00,8336.6,0,0,0,15.73 +67,4,081315,082850,0.00003,26.5040,0.00,8335.9,0,0,0,15.74 +67,4,081315,082851,0.00006,26.5024,0.00,8337.0,0,0,0,15.74 +67,4,081315,082852,0.00005,26.5014,0.00,8336.9,0,0,0,15.74 +67,4,081315,082853,0.00006,26.5035,0.00,8336.4,0,0,0,15.74 +67,4,081315,082854,0.00006,26.5025,0.00,8337.4,0,0,0,15.73 +67,4,081315,082855,0.00006,26.5031,0.00,8338.1,0,0,0,15.74 +67,4,081315,082856,0.00005,26.5032,0.00,8338.0,0,0,0,15.74 +67,4,081315,082857,0.00006,26.5026,0.00,8336.7,0,0,0,15.73 +67,4,081315,082858,0.00006,26.5032,0.00,8338.3,0,0,0,15.74 +67,4,081315,082859,0.00002,26.5032,0.00,8336.4,0,0,0,15.74 +67,4,081315,082900,0.00005,26.5044,0.00,8336.7,0,0,0,15.74 +67,4,081315,082901,0.00006,26.5045,0.00,8337.2,0,0,0,15.74 +67,4,081315,082902,0.00006,26.5035,0.00,8339.2,0,0,0,15.74 +67,4,081315,082903,0.00006,26.5043,0.00,8335.8,0,0,0,15.73 +67,4,081315,082904,0.00006,26.5015,0.00,8336.3,0,0,0,15.73 +67,4,081315,082905,0.00006,26.5008,0.00,8337.4,0,0,0,15.74 +67,4,081315,082906,0.00006,26.5009,0.00,8337.3,0,0,0,15.74 +67,4,081315,082907,0.00006,26.5013,0.00,8338.2,0,0,0,15.74 +67,4,081315,082908,0.00002,26.5024,0.00,8337.4,0,0,0,15.74 +67,4,081315,082909,0.00006,26.5021,0.00,8337.3,0,0,0,15.73 +67,4,081315,082910,0.00006,26.5013,0.00,8337.1,0,0,0,15.74 +67,4,081315,082911,0.00006,26.5014,0.00,8336.9,0,0,0,15.74 +67,4,081315,082912,0.00006,26.5016,0.00,8337.9,0,0,0,15.74 +67,4,081315,082913,0.00005,26.5002,0.00,8338.1,0,0,0,15.74 +67,4,081315,082914,0.00006,26.5016,0.00,8335.7,0,0,0,15.74 +67,4,081315,082915,0.00006,26.5026,0.00,8337.1,0,0,0,15.74 +67,4,081315,082916,0.00005,26.5032,0.00,8337.2,0,0,0,15.74 +67,4,081315,082917,0.00005,26.5021,0.00,8337.8,0,0,0,15.74 +67,100,081315,082918,1,0,5,8,80,15,1022763,0,1,365409,1,0,0,0,1,15.73 +67,5,081315,082918,0.00006,26.5021,0.00,8337.3,0,0,0,15.73 +67,5,081315,082919,0.00006,26.5021,0.00,8338.0,0,0,0,15.65 +67,5,081315,082920,0.00005,26.5025,0.00,8336.8,0,0,0,15.64 +67,5,081315,082921,0.00006,26.5030,0.00,8336.7,0,0,0,15.56 +67,210,081315,082922,08/13/15 01:23:38 695 62 700 189 532 +67,5,081315,082922,0.00006,26.5021,0.00,8337.6,0,62,189,15.63 +67,5,081315,082923,0.00005,26.5011,0.00,8337.8,0,52,176,15.64 +67,5,081315,082924,0.00006,26.5027,0.00,8336.8,0,62,184,15.64 +67,5,081315,082925,0.00005,26.5029,0.00,8338.2,0,57,188,15.63 +67,100,081315,082926,1,0,6,60,80,16,1022762,0,1,365409,1,0,0,0,1,15.64 +67,6,081315,082926,0.00004,26.5019,0.00,8336.7,0,62,192,15.64 +67,6,081315,082927,0.00006,26.5025,0.00,8336.9,0,57,188,15.64 +67,6,081315,082928,0.00003,26.5015,0.00,8337.6,0,50,185,15.63 +67,6,081315,082929,0.00006,26.5010,0.00,8337.8,0,57,185,15.64 +67,6,081315,082930,0.00006,26.5004,0.00,8336.9,0,57,185,15.64 +67,6,081315,082931,0.00006,26.5003,0.00,8337.2,0,58,184,15.63 +67,6,081315,082932,0.00006,26.4994,0.00,8337.0,0,59,185,15.64 +67,6,081315,082933,0.00006,26.5013,0.00,8339.2,0,58,187,15.64 +67,6,081315,082934,0.00006,26.5006,0.00,8337.9,0,55,195,15.63 +67,6,081315,082935,0.00006,26.5010,0.00,8337.4,0,54,189,15.64 +67,6,081315,082936,0.00006,26.5021,0.00,8337.7,0,56,187,15.63 +67,6,081315,082937,0.00006,26.5004,0.00,8335.3,0,51,187,15.63 +67,6,081315,082938,0.00008,26.4995,0.00,8338.6,0,55,186,15.64 +67,6,081315,082939,0.00006,26.4992,0.00,8336.6,0,50,191,15.64 +67,6,081315,082940,0.00006,26.4987,0.00,8337.8,0,54,183,15.64 +67,6,081315,082941,0.00006,26.5008,0.00,8336.3,0,60,184,15.64 +67,6,081315,082942,0.00006,26.5014,0.00,8337.0,0,55,182,15.64 +67,6,081315,082943,0.00006,26.5002,0.00,8337.8,0,55,185,15.63 +67,6,081315,082944,0.00006,26.5013,0.00,8337.9,0,51,186,15.63 +67,6,081315,082945,0.00006,26.5017,0.00,8337.7,0,55,183,15.63 +67,6,081315,082946,0.00006,26.5026,0.00,8338.4,0,53,187,15.63 +67,6,081315,082947,0.00006,26.5042,0.00,8337.5,0,59,185,15.64 +67,6,081315,082948,0.00006,26.5053,0.00,8338.1,0,54,186,15.64 +67,6,081315,082949,0.00006,26.5046,0.00,8336.8,0,56,186,15.63 +67,6,081315,082950,0.00008,26.5052,0.00,8337.2,0,58,184,15.64 +67,6,081315,082951,0.00007,26.5026,0.00,8336.3,0,55,183,15.64 +67,6,081315,082952,0.00007,26.5036,0.00,8338.0,0,59,189,15.64 +67,6,081315,082953,0.00006,26.5032,0.00,8337.9,0,61,191,15.63 +67,6,081315,082954,0.00006,26.5032,0.00,8337.9,0,55,183,15.64 +67,6,081315,082955,0.00006,26.5045,0.00,8337.6,0,58,185,15.63 +67,6,081315,082956,0.00006,26.5047,0.00,8337.7,0,61,193,15.64 +67,6,081315,082957,0.00007,26.5061,0.00,8337.9,0,58,185,15.63 +67,6,081315,082958,0.00006,26.5051,0.00,8337.4,0,60,186,15.63 +67,6,081315,082959,0.00006,26.5055,0.00,8338.3,0,57,188,15.63 +67,6,081315,083000,0.00006,26.5055,0.00,8336.1,0,51,180,15.64 +67,6,081315,083001,0.00006,26.5065,0.00,8338.0,0,56,182,15.63 +67,6,081315,083002,0.00006,26.5055,0.00,8338.5,0,55,187,15.63 +67,6,081315,083003,0.00006,26.5045,0.00,8337.1,0,53,186,15.63 +67,6,081315,083004,0.00006,26.5048,0.00,8337.5,0,57,185,15.63 +67,6,081315,083005,0.00006,26.5044,0.00,8336.6,0,50,182,15.63 +67,6,081315,083006,0.00006,26.5040,0.00,8337.5,0,55,176,15.63 +67,6,081315,083007,0.00006,26.5023,0.00,8337.6,0,54,190,15.63 +67,6,081315,083008,0.00008,26.5015,0.00,8337.5,0,59,188,15.63 +67,6,081315,083009,0.00006,26.5019,0.00,8337.9,0,54,183,15.63 +67,6,081315,083010,0.00006,26.5015,0.00,8338.4,0,54,181,15.63 +67,6,081315,083011,0.00006,26.5016,0.00,8337.5,0,57,182,15.64 +67,6,081315,083012,0.00006,26.5036,0.00,8338.4,0,56,185,15.63 +67,6,081315,083013,0.00006,26.5020,0.00,8336.5,0,57,183,15.63 +67,6,081315,083014,0.00006,26.5026,0.00,8337.3,0,54,184,15.64 +67,6,081315,083015,0.00006,26.5023,0.00,8339.6,0,56,182,15.63 +67,6,081315,083016,0.00006,26.5017,0.00,8337.6,0,57,183,15.63 +67,6,081315,083017,0.00006,26.5005,0.00,8337.5,0,57,184,15.63 +67,6,081315,083018,0.00006,26.5011,0.00,8338.1,0,57,186,15.63 +67,6,081315,083019,0.00006,26.5013,0.00,8337.6,0,59,185,15.63 +67,6,081315,083020,0.00006,26.5025,0.00,8337.7,0,55,186,15.63 +67,6,081315,083021,0.00006,26.5021,0.00,8337.6,0,55,181,15.63 +67,6,081315,083022,0.00006,26.5014,0.00,8338.3,0,53,187,15.63 +67,6,081315,083023,0.00006,26.5002,0.00,8338.2,0,55,186,15.63 +67,6,081315,083024,0.00006,26.5002,0.00,8337.5,0,57,183,15.63 +67,6,081315,083025,0.00006,26.5001,0.00,8338.7,0,50,185,15.63 +67,100,081315,083026,1,0,10,746,80,20,1022759,0,1,365409,1,0,0,0,1,15.63 +67,100,081315,084259,1,0,3,7,15,20,1022767,0,1,365409,1,0,0,0,1,15.80 +67,3,081315,084259,0.00007,26.5000,0.00,8339.4,0,0,0,15.80 +67,230,081315,084300,3,24784,24776,24776 +67,100,081315,084306,1,0,4,15,15,20,1022767,0,1,365409,1,0,0,0,1,15.74 +67,200,081315,084306, 0.0005, 26.1744, 0.00, 8344.0, 0 +67,4,081315,084306,0.00005,26.1744,0.00,8344.0,0,0,0,15.74 +67,4,081315,084307,0.00005,26.1732,0.00,8342.8,0,0,0,15.74 +67,4,081315,084308,0.00003,26.1763,0.00,8345.4,0,0,0,15.74 +67,4,081315,084309,0.00006,26.1773,0.00,8346.2,0,0,0,15.74 +67,4,081315,084310,0.00007,26.1772,0.00,8343.2,0,0,0,15.74 +67,4,081315,084311,0.00005,26.1793,0.00,8345.5,0,0,0,15.74 +67,4,081315,084312,0.00005,26.1761,0.00,8344.8,0,0,0,15.74 +67,4,081315,084313,0.00005,26.1765,0.00,8344.6,0,0,0,15.74 +67,4,081315,084314,0.00005,26.1739,0.00,8344.0,0,0,0,15.74 +67,4,081315,084315,0.00006,26.1710,0.00,8345.4,0,0,0,15.74 +67,4,081315,084316,0.00005,26.1715,0.00,8345.0,0,0,0,15.74 +67,4,081315,084317,0.00005,26.1699,0.00,8346.0,0,0,0,15.74 +67,4,081315,084318,0.00005,26.1648,0.00,8345.0,0,0,0,15.74 +67,4,081315,084319,0.00005,26.1634,0.00,8343.9,0,0,0,15.74 +67,4,081315,084320,0.00005,26.1582,0.00,8347.0,0,0,0,15.74 +67,4,081315,084321,0.00005,26.1566,0.00,8344.9,0,0,0,15.74 +67,4,081315,084322,0.00007,26.1586,0.00,8345.7,0,0,0,15.74 +67,4,081315,084323,0.00005,26.1593,0.00,8347.4,0,0,0,15.74 +67,4,081315,084324,0.00005,26.1608,0.00,8345.2,0,0,0,15.74 +67,4,081315,084325,0.00005,26.1627,0.00,8345.1,0,0,0,15.74 +67,4,081315,084326,0.00006,26.1630,0.00,8345.8,0,0,0,15.74 +67,4,081315,084327,0.00006,26.1645,0.00,8345.3,0,0,0,15.74 +67,4,081315,084328,0.00005,26.1665,0.00,8345.5,0,0,0,15.74 +67,4,081315,084329,0.00006,26.1669,0.00,8346.5,0,0,0,15.74 +67,4,081315,084330,0.00006,26.1686,0.00,8344.7,0,0,0,15.74 +67,4,081315,084331,0.00006,26.1692,0.00,8345.2,0,0,0,15.74 +67,4,081315,084332,0.00006,26.1703,0.00,8346.7,0,0,0,15.74 +67,4,081315,084333,0.00006,26.1694,0.00,8344.6,0,0,0,15.74 +67,4,081315,084334,0.00005,26.1693,0.00,8345.1,0,0,0,15.74 +67,4,081315,084335,0.00005,26.1729,0.00,8345.5,0,0,0,15.74 +67,4,081315,084336,0.00005,26.1741,0.00,8346.3,0,0,0,15.74 +67,4,081315,084337,0.00006,26.1735,0.00,8346.1,0,0,0,15.74 +67,4,081315,084338,0.00002,26.1727,0.00,8346.8,0,0,0,15.74 +67,4,081315,084339,0.00005,26.1710,0.00,8344.5,0,0,0,15.73 +67,4,081315,084340,0.00008,26.1712,0.00,8346.3,0,0,0,15.74 +67,4,081315,084341,0.00006,26.1719,0.00,8346.2,0,0,0,15.74 +67,4,081315,084342,0.00005,26.1729,0.00,8345.6,0,0,0,15.74 +67,4,081315,084343,0.00006,26.1727,0.00,8345.3,0,0,0,15.73 +67,4,081315,084344,0.00006,26.1726,0.00,8346.0,0,0,0,15.74 +67,4,081315,084345,0.00006,26.1718,0.00,8345.9,0,0,0,15.74 +67,4,081315,084346,0.00006,26.1718,0.00,8345.4,0,0,0,15.74 +67,4,081315,084347,0.00005,26.1743,0.00,8346.1,0,0,0,15.73 +67,4,081315,084348,0.00006,26.1708,0.00,8345.8,0,0,0,15.74 +67,4,081315,084349,0.00006,26.1729,0.00,8346.4,0,0,0,15.74 +67,4,081315,084350,0.00005,26.1729,0.00,8346.3,0,0,0,15.74 +67,4,081315,084351,0.00006,26.1739,0.00,8346.0,0,0,0,15.73 +67,4,081315,084352,0.00006,26.1735,0.00,8345.8,0,0,0,15.74 +67,4,081315,084353,0.00005,26.1680,0.00,8346.2,0,0,0,15.73 +67,4,081315,084354,0.00006,26.1660,0.00,8346.6,0,0,0,15.73 +67,4,081315,084355,0.00006,26.1660,0.00,8346.5,0,0,0,15.74 +67,4,081315,084356,0.00005,26.1602,0.00,8345.8,0,0,0,15.74 +67,4,081315,084357,0.00006,26.1546,0.00,8346.2,0,0,0,15.74 +67,4,081315,084358,0.00006,26.1526,0.00,8346.2,0,0,0,15.74 +67,4,081315,084359,0.00005,26.1523,0.00,8345.2,0,0,0,15.74 +67,4,081315,084400,0.00005,26.1547,0.00,8345.8,0,0,0,15.74 +67,4,081315,084401,0.00006,26.1567,0.00,8345.6,0,0,0,15.73 +67,4,081315,084402,0.00006,26.1574,0.00,8347.1,0,0,0,15.74 +67,4,081315,084403,0.00005,26.1598,0.00,8346.2,0,0,0,15.74 +67,4,081315,084404,0.00006,26.1618,0.00,8346.5,0,0,0,15.73 +67,4,081315,084405,0.00006,26.1604,0.00,8346.6,0,0,0,15.73 +67,4,081315,084406,0.00005,26.1620,0.00,8346.7,0,0,0,15.74 +67,4,081315,084407,0.00006,26.1628,0.00,8346.7,0,0,0,15.74 +67,4,081315,084408,0.00003,26.1650,0.00,8345.8,0,0,0,15.74 +67,4,081315,084409,0.00006,26.1614,0.00,8345.8,0,0,0,15.73 +67,4,081315,084410,0.00006,26.1615,0.00,8346.9,0,0,0,15.73 +67,4,081315,084411,0.00005,26.1601,0.00,8345.8,0,0,0,15.74 +67,4,081315,084412,0.00006,26.1594,0.00,8346.1,0,0,0,15.74 +67,4,081315,084413,0.00006,26.1579,0.00,8346.8,0,0,0,15.73 +67,4,081315,084414,0.00005,26.1578,0.00,8346.3,0,0,0,15.73 +67,4,081315,084415,0.00005,26.1589,0.00,8346.7,0,0,0,15.73 +67,4,081315,084416,0.00006,26.1593,0.00,8346.4,0,0,0,15.73 +67,4,081315,084417,0.00006,26.1593,0.00,8346.3,0,0,0,15.73 +67,100,081315,084418,1,0,5,8,80,24,1022763,0,1,365409,1,0,0,0,1,15.73 +67,5,081315,084418,0.00006,26.1586,0.00,8347.2,0,0,0,15.73 +67,5,081315,084419,0.00006,26.1624,0.00,8347.2,0,0,0,15.65 +67,5,081315,084420,0.00006,26.1637,0.00,8347.3,0,0,0,15.64 +67,5,081315,084421,0.00005,26.1649,0.00,8345.4,0,0,0,15.56 +67,210,081315,084422,08/13/15 01:38:38 695 58 700 197 532 +67,5,081315,084422,0.00006,26.1654,0.00,8346.0,0,58,197,15.63 +67,5,081315,084423,0.00006,26.1653,0.00,8346.5,0,54,176,15.63 +67,5,081315,084424,0.00006,26.1641,0.00,8345.9,0,60,191,15.64 +67,5,081315,084425,0.00006,26.1624,0.00,8346.5,0,53,184,15.64 +67,100,081315,084426,1,0,6,60,80,25,1022762,0,1,365409,1,0,0,0,1,15.64 +67,6,081315,084426,0.00006,26.1620,0.00,8346.2,0,60,186,15.64 +67,6,081315,084427,0.00006,26.1617,0.00,8345.7,0,56,183,15.64 +67,6,081315,084428,0.00000,26.1605,0.00,8346.7,0,51,183,15.63 +67,6,081315,084429,0.00006,26.1588,0.00,8346.2,0,56,188,15.63 +67,6,081315,084430,0.00006,26.1570,0.00,8345.6,0,50,182,15.63 +67,6,081315,084431,0.00005,26.1548,0.00,8346.5,0,57,182,15.63 +67,6,081315,084432,0.00005,26.1551,0.00,8345.2,0,57,184,15.64 +67,6,081315,084433,0.00006,26.1549,0.00,8346.3,0,56,188,15.64 +67,6,081315,084434,0.00005,26.1531,0.00,8346.5,0,56,184,15.63 +67,6,081315,084435,0.00006,26.1532,0.00,8344.3,0,54,185,15.63 diff --git a/test/readWQMraw/WQM0140_002_fw1.26_example.Raw b/test/readWQMraw/WQM0140_002_fw1.26_example.Raw new file mode 100644 index 000000000..73f0da6c5 --- /dev/null +++ b/test/readWQMraw/WQM0140_002_fw1.26_example.Raw @@ -0,0 +1,600 @@ + +File Name: WQM0140.002 +Created On: 091314 043711 +File Version: 1 1=Original, 2=Line #'s +WQM SN: 140 +F/W V: 1.26 +CTDO SN: 5131 +Conductivity Limit(S/m): 0.00150 Above this is in-situ +DOSN=445 +Soc=1.438400e-04 +FOffset=-3.324860e+03 +A52=-3.632200e-03 +B52=1.535500e-04 +C52=-2.193100e-06 +E52=4.490000e-02 +DO Stability-Fit=Fixed +DO Stability-A=80.0000 +DO Stability-B=-2.2880 +DO Stability-C=60.8050 +FL_NTU SN: 3028 +FactoryCHL=0.012 49 Scale and Offset +UserCHL=0.012 49 Scale and Offset +NTU=0.006 50 Scale and Offset +Beta=0.000 1 0 Derived Scale and Offset +External Data Port: Off +Control: Autonomous +Delay Seconds: 0 +Sample Seconds: 60 +Sample Interval Seconds: 900 +Outbits: 0xdff3e021 +Starting Free Flash Disk: 1022784 K +Total Flask Disk: 1022816 K +BLIS ul / squirt: 7.0 +Pumped Hour Interval: 1 +Pumped BLIS: 0 +Static BLIS: 4 +Starting Total BLIS Squirts: 0 +Recent UPS: No +Starting UPS Count: 0 +Starting Total UPS Count: 0 +Starting Voltage: 15.70 +Data Output: Averaged +Heartbeat: OFF +Update Date/Time: Normal +File Format: SN,State,Date,Time,Cond(S/m),Temp(C),Pres(dbar),RawDO(Hz),RawCHL(cts),RawTurb(cts),Volts + +140,100,091314,043711,1,0,10,0,15,0,1022783,0,1,342149,1,0,0,0,1,15.70 +140,100,091314,045759,1,0,3,11,15,0,1022783,0,1,342149,1,0,0,0,1,15.65 +140,140,091314,045804,Sample Mode: In Air - Not Pumped: 0.00003 S/M < 0.00150 C90-Limit +140,200,091314,045804, 0.0003, 27.8900, 0.01, 5.658 +140,3,091314,045804,0.00003,27.8900,0.01,5.7,0,0,15.63 +140,3,091314,045809,0.00003,27.8924,0.01,5.7,0,0,15.62 +140,100,091314,045810,1,0,4,80,80,0,1022767,0,1,342149,1,0,0,0,1,15.70 +140,4,091314,045814,0.00002,27.8954,0.01,5.7,0,0,15.62 +140,100,091314,045922,1,0,5,8,80,0,1022767,0,1,342149,1,0,0,0,1,15.70 +140,211,091314,045925, +140,210,091314,045926,09/12/14 22:00:00 695 50 700 388 535 +140,100,091314,045930,1,0,6,60,80,0,1022767,0,1,342149,1,0,0,0,1,15.58 +140,6,091314,045944,0.00003,27.9465,0.01,5.7,52,385,15.53 +140,6,091314,045954,0.00002,27.9519,0.01,5.7,54,386,15.52 +140,6,091314,050004,0.00003,27.9566,0.01,5.7,50,389,15.52 +140,6,091314,050014,0.00003,27.9621,0.01,5.7,52,386,15.52 +140,6,091314,050024,0.00003,27.9682,0.01,5.6,53,386,15.53 +140,100,091314,050030,1,0,10,1239,80,1,1022767,0,1,342150,1,0,0,0,1,15.53 +140,100,091314,051259,1,0,3,11,15,1,1022767,0,1,342150,1,0,0,0,1,15.66 +140,140,091314,051304,Sample Mode: In Air - Not Pumped: 0.00003 S/M < 0.00150 C90-Limit +140,200,091314,051304, 0.0003, 28.3654, 0.01, 5.613 +140,3,091314,051304,0.00003,28.3654,0.01,5.6,0,0,15.65 +140,3,091314,051309,0.00003,28.3674,0.00,5.6,0,0,15.64 +140,100,091314,051310,1,0,4,80,80,1,1022767,0,1,342150,1,0,0,0,1,15.70 +140,4,091314,051314,0.00002,28.3700,0.01,5.6,0,0,15.63 +140,100,091314,051422,1,0,5,8,80,1,1022767,0,1,342150,1,0,0,0,1,15.71 +140,211,091314,051425, +140,210,091314,051426,09/12/14 22:15:00 695 53 700 391 534 +140,100,091314,051430,1,0,6,60,80,1,1022767,0,1,342150,1,0,0,0,1,15.59 +140,6,091314,051444,0.00005,28.4122,0.01,5.6,52,386,15.54 +140,6,091314,051454,0.00003,28.4158,0.00,5.6,52,384,15.54 +140,6,091314,051504,0.00002,28.4205,0.00,5.6,53,386,15.54 +140,6,091314,051514,0.00003,28.4260,0.01,5.6,53,384,15.53 +140,6,091314,051524,0.00003,28.4308,0.00,5.6,53,385,15.53 +140,100,091314,051530,1,0,10,742,80,2,1022767,0,1,342150,1,0,0,0,1,15.53 +140,100,091314,052759,1,0,3,11,15,2,1022767,0,1,342150,1,0,0,0,1,15.66 +140,140,091314,052804,Sample Mode: In Air - Not Pumped: 0.00002 S/M < 0.00150 C90-Limit +140,200,091314,052804, 0.0002, 28.8528, 0.00, 5.568 +140,3,091314,052804,0.00002,28.8528,0.00,5.6,0,0,15.65 +140,3,091314,052809,0.00002,28.8542,0.00,5.6,0,0,15.65 +140,100,091314,052810,1,0,4,80,80,2,1022767,0,1,342150,1,0,0,0,1,15.70 +140,4,091314,052814,0.00002,28.8574,0.00,5.6,0,0,15.64 +140,100,091314,052922,1,0,5,8,80,2,1022767,0,1,342150,1,0,0,0,1,15.71 +140,211,091314,052925, +140,210,091314,052926,09/12/14 22:30:00 695 53 700 373 533 +140,100,091314,052930,1,0,6,60,80,2,1022767,0,1,342150,1,0,0,0,1,15.59 +140,6,091314,052944,0.00002,28.9020,0.00,5.6,52,374,15.54 +140,6,091314,052954,0.00003,28.9055,0.00,5.6,53,373,15.54 +140,6,091314,053004,0.00003,28.9106,0.00,5.6,53,373,15.54 +140,6,091314,053014,0.00003,28.9140,0.00,5.6,53,373,15.54 +140,6,091314,053024,0.00003,28.9188,0.00,5.6,53,373,15.54 +140,100,091314,053030,1,0,10,742,80,3,1022767,0,1,342150,1,0,0,0,1,15.54 +140,100,091314,054259,1,0,3,11,15,3,1022767,0,1,342150,1,0,0,0,1,15.66 +140,140,091314,054304,Sample Mode: In Air - Not Pumped: 0.00003 S/M < 0.00150 C90-Limit +140,200,091314,054304, 0.0003, 29.2884, 0.00, 5.529 +140,3,091314,054304,0.00003,29.2884,0.00,5.5,0,0,15.65 +140,3,091314,054309,0.00003,29.2927,0.00,5.5,0,0,15.65 +140,100,091314,054310,1,0,4,80,80,3,1022767,0,1,342150,1,0,0,0,1,15.70 +140,4,091314,054314,0.00002,29.2957,0.00,5.5,0,0,15.64 +140,100,091314,054422,1,0,5,8,80,3,1022767,0,1,342150,1,0,0,0,1,15.71 +140,211,091314,054425, +140,210,091314,054426,09/12/14 22:45:00 695 51 700 373 532 +140,100,091314,054430,1,0,6,60,80,3,1022767,0,1,342150,1,0,0,0,1,15.60 +140,6,091314,054444,0.00002,29.3714,0.00,5.5,54,371,15.54 +140,6,091314,054454,0.00002,29.3789,0.00,5.5,55,371,15.54 +140,6,091314,054504,0.00002,29.3872,0.00,5.5,54,371,15.54 +140,6,091314,054514,0.00003,29.3972,0.00,5.5,52,371,15.54 +140,6,091314,054524,0.00002,29.4053,0.00,5.5,53,370,15.54 +140,100,091314,054530,1,0,10,742,80,4,1022767,0,1,342150,1,0,0,0,1,15.54 +140,100,091314,204904,1,0,3,11,15,4,1022767,0,1,342150,1,0,0,0,1,15.54 +140,140,091314,204909,Sample Mode: In Air - Not Pumped: 0.00003 S/M < 0.00150 C90-Limit +140,200,091314,204909, 0.0003, 24.9621, 0.01, 5.981 +140,3,091314,204909,0.00003,24.9621,0.01,6.0,0,0,15.53 +140,3,091314,204914,0.00003,24.9627,0.01,6.0,0,0,15.53 +140,100,091314,204915,1,0,4,80,80,4,1022767,0,1,342150,1,0,0,0,1,15.64 +140,100,091314,205027,1,0,5,8,80,4,1022767,0,1,342150,1,0,0,0,1,15.66 +140,211,091314,205030, +140,210,091314,205031,09/13/14 13:51:06 695 55 700 380 536 +140,100,091314,205035,1,0,6,60,80,4,1022767,0,1,342150,1,0,0,0,1,15.52 +140,6,091314,205044,0.00003,24.9738,-0.02,6.0,53,383,15.47 +140,6,091314,205054,0.00003,24.9734,0.01,6.0,53,384,15.48 +140,6,091314,205104,0.00003,24.9748,0.02,6.0,53,383,15.48 +140,6,091314,205114,0.00003,24.9738,0.01,6.0,53,383,15.49 +140,6,091314,205124,0.00003,24.9751,0.01,6.0,53,383,15.49 +140,6,091314,205134,0.00003,24.9760,0.01,6.0,53,384,15.49 +140,100,091314,205135,1,0,10,742,80,5,1022767,0,1,342165,1,0,0,0,1,15.49 +140,100,091314,205759,1,0,3,11,15,5,1022767,0,1,342165,1,0,0,0,1,15.64 +140,140,091314,205804,Sample Mode: In Air - Not Pumped: 0.00003 S/M < 0.00150 C90-Limit +140,200,091314,205804, 0.0003, 25.0188, 0.01, 5.975 +140,3,091314,205804,0.00003,25.0188,0.01,6.0,0,0,15.61 +140,3,091314,205809,0.00003,25.0193,0.01,6.0,0,0,15.61 +140,100,091314,205810,1,0,4,80,80,5,1022767,0,1,342165,1,0,0,0,1,15.69 +140,4,091314,205814,0.00003,25.0197,0.01,6.0,0,0,15.61 +140,100,091314,205922,1,0,5,8,80,5,1022767,0,1,342165,1,0,0,0,1,15.69 +140,211,091314,205925, +140,210,091314,205926,09/13/14 14:00:01 695 50 700 387 535 +140,100,091314,205930,1,0,6,60,80,5,1022767,0,1,342165,1,0,0,0,1,15.56 +140,6,091314,205944,-0.00001,25.0232,0.01,6.0,54,387,15.54 +140,6,091314,205954,0.00009,25.0224,0.01,6.0,54,388,15.50 +140,6,091314,210004,0.00002,25.0229,0.02,6.0,53,389,15.51 +140,6,091314,210014,0.00003,25.0217,0.02,6.0,54,386,15.51 +140,6,091314,210024,-0.00004,25.0221,0.01,6.0,53,385,15.52 +140,100,091314,210030,1,0,10,377,80,6,1022767,0,1,342166,1,0,0,0,1,15.52 +140,100,091314,211259,1,0,3,11,15,6,1022767,0,1,342166,1,0,0,0,1,15.64 +140,140,091314,211304,Sample Mode: In Air - Not Pumped: 0.00003 S/M < 0.00150 C90-Limit +140,200,091314,211304, 0.0003, 25.0890, 0.02, 5.968 +140,3,091314,211304,0.00003,25.0890,0.02,6.0,0,0,15.63 +140,3,091314,211309,0.00003,25.0894,0.02,6.0,0,0,15.62 +140,100,091314,211310,1,0,4,80,80,6,1022767,0,1,342166,1,0,0,0,1,15.69 +140,4,091314,211314,0.00003,25.0909,0.02,6.0,0,0,15.62 +140,100,091314,211422,1,0,5,8,80,6,1022767,0,1,342166,1,0,0,0,1,15.70 +140,211,091314,211425, +140,210,091314,211426,09/13/14 14:15:01 695 50 700 384 536 +140,100,091314,211430,1,0,6,60,80,6,1022767,0,1,342166,1,0,0,0,1,15.57 +140,6,091314,211444,0.00003,25.1010,0.02,6.0,55,385,15.52 +140,6,091314,211454,0.00003,25.1011,0.01,6.0,54,384,15.52 +140,6,091314,211504,0.00003,25.1006,0.02,6.0,55,383,15.52 +140,6,091314,211514,0.00003,25.1022,0.01,6.0,55,384,15.52 +140,6,091314,211524,0.00003,25.1039,0.01,6.0,55,383,15.52 +140,100,091314,211530,1,0,10,742,80,7,1022767,0,1,342166,1,0,0,0,1,15.52 +140,100,091314,212759,1,0,3,11,15,7,1022767,0,1,342166,1,0,0,0,1,15.65 +140,140,091314,212804,Sample Mode: In Air - Not Pumped: 0.00003 S/M < 0.00150 C90-Limit +140,200,091314,212804, 0.0003, 25.2528, 0.02, 5.950 +140,3,091314,212804,0.00003,25.2528,0.02,6.0,0,0,15.64 +140,3,091314,212809,0.00003,25.2598,0.02,5.9,0,0,15.63 +140,100,091314,212810,1,0,4,80,80,7,1022767,0,1,342166,1,0,0,0,1,15.70 +140,4,091314,212814,0.00003,25.2664,0.00,5.9,0,0,15.62 +140,100,091314,212922,1,0,5,8,80,7,1022767,0,1,342166,1,0,0,0,1,15.70 +140,211,091314,212925, +140,210,091314,212926,09/13/14 14:30:01 695 75 700 184 536 +140,100,091314,212930,1,0,6,60,80,8,1022767,0,1,342166,1,0,0,0,1,15.58 +140,140,091314,212944,Possible Change in Sample Mode to INSITU, C90=5.16843 +140,6,091314,212944,5.16843,25.8040,5.91,4.3,74,186,15.53 +140,140,091314,212954,Switching Sample Mode to INSITU, C90=5.16225 +140,6,091314,212954,5.16225,25.7549,5.90,4.4,73,185,15.53 +140,6,091314,213002,5.25233,25.8575,5.85,10379.7,71,183,15.50 +140,6,091314,213003,5.31732,25.8570,5.85,10422.9,74,187,15.47 +140,6,091314,213004,5.31732,25.8561,5.92,10451.2,73,184,15.47 +140,6,091314,213005,5.31663,25.8558,5.89,10470.1,72,183,15.47 +140,6,091314,213006,5.31669,25.8537,5.77,10484.0,73,184,15.47 +140,6,091314,213007,5.31679,25.8547,5.68,10492.9,72,197,15.47 +140,6,091314,213008,5.31691,25.8553,6.00,10502.3,73,195,15.47 +140,6,091314,213009,5.31755,25.8568,6.35,10506.2,75,189,15.47 +140,6,091314,213010,5.31762,25.8572,6.50,10508.4,73,193,15.47 +140,6,091314,213011,5.31761,25.8566,6.93,10511.1,72,183,15.47 +140,6,091314,213012,5.31788,25.8577,7.04,10511.9,73,186,15.47 +140,6,091314,213013,5.31791,25.8589,7.28,10514.2,72,187,15.47 +140,6,091314,213014,5.31801,25.8588,7.23,10514.5,76,182,15.47 +140,6,091314,213015,5.31741,25.8570,7.29,10515.9,71,186,15.47 +140,6,091314,213016,5.31805,25.8588,7.20,10516.8,72,182,15.47 +140,6,091314,213017,5.31770,25.8579,7.32,10517.4,71,182,15.47 +140,6,091314,213018,5.31729,25.8561,7.11,10517.7,73,188,15.47 +140,6,091314,213019,5.31783,25.8575,7.12,10518.3,73,189,15.47 +140,6,091314,213020,5.31764,25.8571,7.03,10518.8,72,189,15.47 +140,6,091314,213021,5.31767,25.8564,6.90,10517.3,74,192,15.47 +140,6,091314,213022,5.31770,25.8560,7.11,10518.8,72,188,15.47 +140,6,091314,213023,5.31747,25.8550,6.94,10519.4,73,188,15.47 +140,6,091314,213024,5.31798,25.8578,6.93,10520.8,74,184,15.47 +140,6,091314,213025,5.31788,25.8575,6.97,10518.4,72,187,15.47 +140,6,091314,213026,5.31776,25.8581,6.80,10520.3,72,182,15.47 +140,6,091314,213027,5.31773,25.8560,6.83,10520.7,73,189,15.47 +140,6,091314,213028,5.31714,25.8528,6.83,10521.6,73,185,15.47 +140,6,091314,213029,5.31752,25.8527,6.79,10523.4,73,190,15.47 +140,100,091314,213030,1,1,10,742,80,10,1022765,4,1,0,1,0,0,0,1,15.62 +140,100,091314,214259,1,1,3,11,15,10,1022767,4,1,0,1,0,0,0,1,15.65 +140,3,091314,214259,5.31723,25.8516,6.77,10524.4,73,187,15.65 +140,140,091314,214304,Sample Mode: Insitu - Pumped: 5.25147 S/M > 0.00150 C90-Limit +140,200,091314,214304, 52.5147, 25.2193, 30.63, 4.410 +140,3,091314,214304,5.25147,25.2193,30.63,4.4,0,0,15.65 +140,100,091314,214311,1,1,4,80,80,10,1022767,4,1,0,1,0,0,0,1,15.61 +140,4,091314,214312,5.25139,25.2188,30.68,10067.7,0,0,15.59 +140,4,091314,214313,5.25139,25.2191,30.65,10078.2,0,0,15.58 +140,4,091314,214314,5.25142,25.2197,30.64,10081.8,0,0,15.58 +140,4,091314,214315,5.25142,25.2195,30.63,10084.8,0,0,15.58 +140,4,091314,214316,5.25144,25.2202,30.64,10087.8,0,0,15.58 +140,4,091314,214317,5.25145,25.2206,30.65,10087.7,0,0,15.58 +140,4,091314,214318,5.25145,25.2195,30.68,10089.9,0,0,15.58 +140,4,091314,214319,5.25144,25.2199,30.69,10090.2,0,0,15.58 +140,4,091314,214320,5.25145,25.2197,30.71,10089.3,0,0,15.58 +140,4,091314,214321,5.25145,25.2206,30.72,10090.6,0,0,15.58 +140,4,091314,214322,5.25144,25.2194,30.72,10091.9,0,0,15.57 +140,4,091314,214323,5.25142,25.2194,30.71,10091.6,0,0,15.58 +140,4,091314,214324,5.25145,25.2197,30.68,10092.5,0,0,15.58 +140,4,091314,214325,5.25144,25.2206,30.64,10093.0,0,0,15.57 +140,4,091314,214326,5.25145,25.2203,30.60,10092.9,0,0,15.57 +140,4,091314,214327,5.25145,25.2195,30.56,10091.5,0,0,15.57 +140,4,091314,214328,5.25144,25.2199,30.55,10091.5,0,0,15.57 +140,4,091314,214329,5.25144,25.2205,30.57,10093.7,0,0,15.57 +140,4,091314,214330,5.25145,25.2206,30.62,10092.2,0,0,15.57 +140,4,091314,214331,5.25144,25.2201,30.68,10092.4,0,0,15.57 +140,4,091314,214332,5.25144,25.2196,30.73,10090.7,0,0,15.59 +140,4,091314,214333,5.25145,25.2196,30.79,10092.2,0,0,15.59 +140,4,091314,214334,5.25144,25.2199,30.82,10090.2,0,0,15.59 +140,4,091314,214335,5.25147,25.2195,30.82,10092.7,0,0,15.59 +140,4,091314,214336,5.25142,25.2195,30.79,10092.9,0,0,15.60 +140,4,091314,214337,5.25147,25.2191,30.74,10091.7,0,0,15.60 +140,4,091314,214338,5.25147,25.2198,30.66,10092.5,0,0,15.60 +140,4,091314,214339,5.25154,25.2209,30.60,10093.0,0,0,15.60 +140,4,091314,214340,5.25153,25.2206,30.56,10092.7,0,0,15.60 +140,4,091314,214341,5.25159,25.2216,30.53,10093.7,0,0,15.60 +140,4,091314,214342,5.25157,25.2221,30.53,10095.1,0,0,15.60 +140,4,091314,214343,5.25159,25.2216,30.55,10096.1,0,0,15.60 +140,4,091314,214344,5.25162,25.2212,30.58,10094.7,0,0,15.60 +140,4,091314,214345,5.25168,25.2220,30.63,10093.9,0,0,15.60 +140,4,091314,214346,5.25173,25.2227,30.68,10093.0,0,0,15.60 +140,4,091314,214347,5.25168,25.2225,30.71,10094.0,0,0,15.60 +140,4,091314,214348,5.25174,25.2231,30.74,10093.0,0,0,15.60 +140,4,091314,214349,5.25162,25.2215,30.76,10092.5,0,0,15.60 +140,4,091314,214350,5.25156,25.2208,30.77,10092.4,0,0,15.60 +140,4,091314,214351,5.25139,25.2192,30.77,10093.2,0,0,15.60 +140,4,091314,214352,5.25125,25.2175,30.77,10091.8,0,0,15.60 +140,4,091314,214353,5.25124,25.2172,30.75,10091.8,0,0,15.60 +140,4,091314,214354,5.25116,25.2171,30.72,10092.3,0,0,15.60 +140,4,091314,214355,5.25119,25.2162,30.67,10092.2,0,0,15.60 +140,4,091314,214356,5.25112,25.2163,30.63,10092.0,0,0,15.60 +140,4,091314,214357,5.25105,25.2163,30.60,10090.2,0,0,15.60 +140,4,091314,214358,5.25119,25.2171,30.58,10089.9,0,0,15.60 +140,4,091314,214359,5.25118,25.2168,30.57,10089.9,0,0,15.60 +140,4,091314,214400,5.25119,25.2170,30.57,10091.0,0,0,15.60 +140,4,091314,214401,5.25119,25.2173,30.57,10090.7,0,0,15.60 +140,4,091314,214402,5.25118,25.2172,30.60,10091.5,0,0,15.60 +140,4,091314,214403,5.25116,25.2168,30.64,10088.5,0,0,15.60 +140,4,091314,214404,5.25116,25.2168,30.69,10089.5,0,0,15.60 +140,4,091314,214405,5.25121,25.2168,30.72,10090.1,0,0,15.60 +140,4,091314,214406,5.25122,25.2162,30.76,10088.9,0,0,15.60 +140,4,091314,214407,5.25125,25.2174,30.78,10089.6,0,0,15.60 +140,4,091314,214408,5.25124,25.2177,30.79,10089.4,0,0,15.60 +140,4,091314,214409,5.25119,25.2168,30.78,10089.6,0,0,15.60 +140,4,091314,214410,5.25116,25.2172,30.75,10090.9,0,0,15.60 +140,4,091314,214411,5.25121,25.2173,30.71,10090.5,0,0,15.60 +140,4,091314,214412,5.25119,25.2176,30.66,10088.9,0,0,15.60 +140,4,091314,214413,5.25119,25.2164,30.63,10088.3,0,0,15.60 +140,4,091314,214414,5.25124,25.2177,30.59,10090.0,0,0,15.60 +140,4,091314,214415,5.25121,25.2168,30.58,10089.8,0,0,15.60 +140,4,091314,214416,5.25122,25.2177,30.58,10089.3,0,0,15.60 +140,4,091314,214417,5.25124,25.2178,30.59,10089.5,0,0,15.60 +140,4,091314,214418,5.25126,25.2183,30.62,10089.0,0,0,15.60 +140,4,091314,214419,5.25128,25.2175,30.64,10089.4,0,0,15.60 +140,4,091314,214420,5.25126,25.2179,30.66,10089.1,0,0,15.60 +140,4,091314,214421,5.25129,25.2185,30.68,10088.9,0,0,15.60 +140,4,091314,214422,5.25131,25.2177,30.69,10089.3,0,0,15.60 +140,100,091314,214423,1,1,5,8,80,14,1022763,24,1,0,1,0,0,0,1,15.60 +140,5,091314,214423,5.25132,25.2190,30.70,10087.8,0,0,15.60 +140,5,091314,214424,5.25132,25.2183,30.71,10090.1,0,0,15.53 +140,5,091314,214425,5.25134,25.2186,30.71,10089.6,0,0,15.53 +140,211,091314,214426, +140,5,091314,214426,5.25132,25.2182,30.70,10087.7,0,0,15.44 +140,210,091314,214427,09/13/14 14:45:02 695 100 700 294 535 +140,5,091314,214427,5.25132,25.2177,30.68,10089.4,100,294,15.48 +140,5,091314,214428,5.25128,25.2184,30.68,10090.0,103,279,15.50 +140,5,091314,214429,5.25135,25.2194,30.67,10089.1,101,272,15.50 +140,5,091314,214430,5.25135,25.2195,30.66,10088.9,100,276,15.50 +140,100,091314,214431,1,1,6,60,80,15,1022762,24,1,0,0,0,0,0,1,15.51 +140,6,091314,214431,5.25139,25.2188,30.66,10087.3,101,268,15.51 +140,6,091314,214432,5.25138,25.2187,30.67,10089.6,102,264,15.50 +140,6,091314,214433,5.25135,25.2185,30.68,10090.0,102,276,15.49 +140,6,091314,214434,5.25139,25.2186,30.68,10090.1,101,271,15.50 +140,6,091314,214435,5.25135,25.2191,30.68,10089.7,101,277,15.51 +140,6,091314,214436,5.25135,25.2185,30.68,10089.7,102,271,15.50 +140,6,091314,214437,5.25136,25.2189,30.68,10088.0,101,274,15.49 +140,6,091314,214438,5.25135,25.2183,30.67,10087.9,99,269,15.51 +140,6,091314,214439,5.25126,25.2177,30.66,10088.9,100,276,15.49 +140,6,091314,214440,5.25125,25.2177,30.64,10088.5,100,290,15.49 +140,6,091314,214441,5.25131,25.2183,30.63,10088.2,99,267,15.51 +140,6,091314,214442,5.25132,25.2182,30.64,10089.1,101,277,15.51 +140,6,091314,214443,5.25134,25.2183,30.65,10087.0,103,282,15.50 +140,6,091314,214444,5.25128,25.2175,30.68,10086.5,100,277,15.49 +140,6,091314,214445,5.25124,25.2172,30.71,10085.9,99,283,15.51 +140,6,091314,214446,5.25125,25.2176,30.75,10088.2,102,280,15.49 +140,6,091314,214447,5.25128,25.2187,30.77,10086.3,100,285,15.49 +140,6,091314,214448,5.25126,25.2177,30.78,10088.4,100,279,15.51 +140,6,091314,214449,5.25119,25.2172,30.77,10087.3,102,276,15.49 +140,6,091314,214450,5.25122,25.2177,30.74,10088.1,100,278,15.49 +140,6,091314,214451,5.25121,25.2179,30.70,10087.6,102,275,15.49 +140,6,091314,214452,5.25125,25.2172,30.66,10089.0,100,281,15.49 +140,6,091314,214453,5.25125,25.2174,30.62,10089.4,100,296,15.49 +140,6,091314,214454,5.25124,25.2172,30.59,10088.8,104,276,15.49 +140,6,091314,214455,5.25125,25.2174,30.58,10088.0,103,285,15.49 +140,6,091314,214456,5.25125,25.2180,30.59,10089.6,101,286,15.49 +140,6,091314,214457,5.25127,25.2171,30.61,10087.5,101,283,15.49 +140,6,091314,214458,5.25128,25.2181,30.63,10087.2,102,287,15.49 +140,6,091314,214459,5.25122,25.2177,30.66,10087.1,100,282,15.51 +140,6,091314,214500,5.25124,25.2169,30.70,10086.9,104,291,15.49 +140,6,091314,214501,5.25125,25.2172,30.71,10086.7,102,278,15.48 +140,6,091314,214502,5.25125,25.2173,30.74,10086.7,100,275,15.49 +140,6,091314,214503,5.25126,25.2178,30.76,10087.7,101,279,15.49 +140,6,091314,214504,5.25131,25.2182,30.75,10086.6,100,281,15.49 +140,6,091314,214505,5.25131,25.2183,30.73,10087.0,101,290,15.51 +140,6,091314,214506,5.25129,25.2176,30.70,10086.9,100,282,15.49 +140,6,091314,214507,5.25129,25.2184,30.66,10087.4,103,274,15.49 +140,6,091314,214508,5.25128,25.2181,30.63,10086.7,106,268,15.49 +140,6,091314,214509,5.25126,25.2177,30.61,10088.8,101,277,15.49 +140,6,091314,214510,5.25126,25.2178,30.60,10088.4,100,281,15.49 +140,6,091314,214511,5.25128,25.2179,30.60,10087.7,102,278,15.49 +140,6,091314,214512,5.25129,25.2176,30.62,10088.9,101,275,15.49 +140,6,091314,214513,5.25129,25.2181,30.64,10089.2,102,273,15.51 +140,6,091314,214514,5.25128,25.2174,30.66,10088.1,102,292,15.49 +140,6,091314,214515,5.25129,25.2179,30.68,10087.5,101,274,15.49 +140,6,091314,214516,5.25129,25.2177,30.69,10087.5,105,276,15.49 +140,6,091314,214517,5.25131,25.2181,30.69,10086.1,101,271,15.49 +140,6,091314,214518,5.25132,25.2187,30.68,10086.6,99,284,15.49 +140,6,091314,214519,5.25129,25.2183,30.66,10087.7,101,268,15.49 +140,6,091314,214520,5.25131,25.2184,30.63,10086.1,102,278,15.49 +140,6,091314,214521,5.25144,25.2193,30.61,10087.1,102,268,15.49 +140,6,091314,214522,5.25144,25.2197,30.62,10088.4,101,262,15.49 +140,6,091314,214523,5.25145,25.2203,30.63,10088.6,101,276,15.49 +140,6,091314,214524,5.25150,25.2202,30.66,10087.5,102,273,15.49 +140,6,091314,214525,5.25150,25.2201,30.70,10087.0,100,268,15.49 +140,6,091314,214526,5.25151,25.2201,30.73,10087.5,100,266,15.49 +140,6,091314,214527,5.25138,25.2193,30.74,10087.6,102,275,15.49 +140,6,091314,214528,5.25135,25.2180,30.74,10088.2,103,262,15.51 +140,6,091314,214529,5.25136,25.2182,30.72,10088.7,100,278,15.49 +140,6,091314,214530,5.25141,25.2184,30.69,10089.0,99,269,15.50 +140,100,091314,214531,1,1,10,740,80,19,1022758,24,1,0,0,0,0,0,1,15.50 +140,100,091314,215759,1,1,3,11,15,19,1022751,24,1,0,0,0,0,0,1,15.66 +140,3,091314,215759,5.25138,25.2188,30.63,10087.0,101,277,15.66 +140,140,091314,215804,Sample Mode: Insitu - Pumped: 5.25100 S/M > 0.00150 C90-Limit +140,200,091314,215804, 52.5100, 25.2127, 30.74, 4.379 +140,3,091314,215804,5.25100,25.2127,30.74,4.4,0,0,15.65 +140,100,091314,215811,1,1,4,80,80,19,1022751,24,1,0,0,0,0,0,1,15.62 +140,4,091314,215812,5.25093,25.2134,30.71,10045.2,0,0,15.62 +140,4,091314,215813,5.25096,25.2126,30.71,10061.4,0,0,15.61 +140,4,091314,215814,5.25099,25.2135,30.71,10070.4,0,0,15.61 +140,4,091314,215815,5.25105,25.2139,30.73,10074.3,0,0,15.61 +140,4,091314,215816,5.25103,25.2139,30.76,10078.7,0,0,15.61 +140,4,091314,215817,5.25105,25.2141,30.79,10081.0,0,0,15.61 +140,4,091314,215818,5.25105,25.2144,30.82,10082.7,0,0,15.61 +140,4,091314,215819,5.25109,25.2140,30.84,10083.2,0,0,15.61 +140,4,091314,215820,5.25110,25.2143,30.84,10085.1,0,0,15.61 +140,4,091314,215821,5.25114,25.2158,30.83,10086.8,0,0,15.61 +140,4,091314,215822,5.25112,25.2150,30.81,10087.2,0,0,15.61 +140,4,091314,215823,5.25116,25.2149,30.77,10090.4,0,0,15.61 +140,4,091314,215824,5.25116,25.2155,30.74,10091.1,0,0,15.61 +140,4,091314,215825,5.25115,25.2150,30.70,10090.0,0,0,15.61 +140,4,091314,215826,5.25114,25.2152,30.69,10090.0,0,0,15.61 +140,4,091314,215827,5.25114,25.2159,30.69,10093.0,0,0,15.61 +140,4,091314,215828,5.25118,25.2152,30.70,10089.8,0,0,15.61 +140,4,091314,215829,5.25116,25.2160,30.72,10091.6,0,0,15.61 +140,4,091314,215830,5.25119,25.2154,30.75,10091.2,0,0,15.61 +140,4,091314,215831,5.25118,25.2160,30.76,10092.0,0,0,15.61 +140,4,091314,215832,5.25116,25.2148,30.78,10092.2,0,0,15.61 +140,4,091314,215833,5.25114,25.2162,30.80,10090.1,0,0,15.61 +140,4,091314,215834,5.25118,25.2155,30.81,10090.0,0,0,15.61 +140,4,091314,215835,5.25121,25.2156,30.82,10088.5,0,0,15.61 +140,4,091314,215836,5.25125,25.2161,30.80,10088.9,0,0,15.61 +140,4,091314,215837,5.25124,25.2166,30.78,10089.2,0,0,15.61 +140,4,091314,215838,5.25121,25.2164,30.78,10090.2,0,0,15.61 +140,4,091314,215839,5.25125,25.2163,30.77,10089.1,0,0,15.61 +140,4,091314,215840,5.25121,25.2166,30.77,10090.5,0,0,15.61 +140,4,091314,215841,5.25121,25.2158,30.77,10091.1,0,0,15.61 +140,4,091314,215842,5.25122,25.2162,30.78,10092.0,0,0,15.61 +140,4,091314,215843,5.25124,25.2172,30.79,10092.5,0,0,15.61 +140,4,091314,215844,5.25129,25.2164,30.78,10091.5,0,0,15.61 +140,4,091314,215845,5.25134,25.2172,30.76,10091.4,0,0,15.61 +140,4,091314,215846,5.25132,25.2173,30.75,10091.6,0,0,15.61 +140,4,091314,215847,5.25129,25.2166,30.72,10090.8,0,0,15.61 +140,4,091314,215848,5.25128,25.2165,30.70,10091.8,0,0,15.61 +140,4,091314,215849,5.25129,25.2171,30.70,10090.7,0,0,15.61 +140,4,091314,215850,5.25127,25.2167,30.72,10089.4,0,0,15.61 +140,4,091314,215851,5.25131,25.2169,30.75,10090.2,0,0,15.61 +140,4,091314,215852,5.25132,25.2168,30.77,10089.6,0,0,15.61 +140,4,091314,215853,5.25135,25.2178,30.78,10089.9,0,0,15.61 +140,4,091314,215854,5.25134,25.2168,30.80,10090.2,0,0,15.61 +140,4,091314,215855,5.25132,25.2175,30.81,10091.6,0,0,15.61 +140,4,091314,215856,5.25124,25.2166,30.81,10092.1,0,0,15.61 +140,4,091314,215857,5.25116,25.2164,30.82,10089.6,0,0,15.61 +140,4,091314,215858,5.25135,25.2176,30.82,10089.1,0,0,15.61 +140,4,091314,215859,5.25129,25.2171,30.80,10089.0,0,0,15.61 +140,4,091314,215900,5.25134,25.2173,30.78,10090.3,0,0,15.61 +140,4,091314,215901,5.25132,25.2171,30.75,10087.5,0,0,15.60 +140,4,091314,215902,5.25124,25.2158,30.71,10087.0,0,0,15.61 +140,4,091314,215903,5.25125,25.2162,30.69,10088.9,0,0,15.61 +140,4,091314,215904,5.25119,25.2161,30.67,10088.4,0,0,15.61 +140,4,091314,215905,5.25115,25.2162,30.68,10089.2,0,0,15.60 +140,4,091314,215906,5.25119,25.2157,30.70,10088.1,0,0,15.61 +140,4,091314,215907,5.25122,25.2153,30.73,10088.0,0,0,15.61 +140,4,091314,215908,5.25115,25.2155,30.76,10089.9,0,0,15.61 +140,4,091314,215909,5.25116,25.2152,30.81,10089.0,0,0,15.61 +140,4,091314,215910,5.25114,25.2154,30.83,10091.2,0,0,15.61 +140,4,091314,215911,5.25118,25.2156,30.85,10089.4,0,0,15.61 +140,4,091314,215912,5.25119,25.2152,30.87,10090.7,0,0,15.60 +140,4,091314,215913,5.25119,25.2153,30.85,10089.9,0,0,15.60 +140,4,091314,215914,5.25118,25.2155,30.82,10090.4,0,0,15.61 +140,4,091314,215915,5.25116,25.2155,30.79,10090.2,0,0,15.61 +140,4,091314,215916,5.25108,25.2150,30.76,10089.2,0,0,15.61 +140,4,091314,215917,5.25109,25.2150,30.73,10089.4,0,0,15.61 +140,4,091314,215918,5.25110,25.2143,30.72,10090.4,0,0,15.60 +140,4,091314,215919,5.25119,25.2157,30.71,10090.8,0,0,15.60 +140,4,091314,215920,5.25124,25.2149,30.72,10090.7,0,0,15.60 +140,4,091314,215921,5.25116,25.2162,30.74,10090.6,0,0,15.61 +140,4,091314,215922,5.25116,25.2155,30.76,10089.9,0,0,15.61 +140,100,091314,215923,1,1,5,8,80,23,1022747,24,1,0,0,0,0,0,1,15.61 +140,5,091314,215923,5.25121,25.2159,30.77,10088.4,0,0,15.61 +140,5,091314,215924,5.25114,25.2150,30.78,10088.0,0,0,15.53 +140,5,091314,215925,5.25116,25.2142,30.78,10087.7,0,0,15.53 +140,211,091314,215926, +140,5,091314,215926,5.25118,25.2140,30.78,10089.3,0,0,15.45 +140,210,091314,215927,09/13/14 15:00:02 695 103 700 268 535 +140,5,091314,215927,5.25110,25.2154,30.78,10090.9,103,268,15.49 +140,5,091314,215928,5.25114,25.2154,30.77,10090.1,100,274,15.50 +140,5,091314,215929,5.25082,25.2143,30.77,10091.1,117,272,15.51 +140,5,091314,215930,5.25112,25.2150,30.78,10090.9,104,276,15.52 +140,100,091314,215931,1,1,6,60,80,24,1022746,24,1,0,0,0,0,0,1,15.50 +140,6,091314,215931,5.25114,25.2152,30.78,10090.0,102,289,15.50 +140,6,091314,215932,5.25121,25.2154,30.79,10091.4,101,268,15.50 +140,6,091314,215933,5.25115,25.2161,30.79,10090.0,101,275,15.52 +140,6,091314,215934,5.25116,25.2153,30.80,10091.3,100,274,15.50 +140,6,091314,215935,5.25115,25.2151,30.80,10090.4,101,279,15.50 +140,6,091314,215936,5.25118,25.2154,30.80,10091.4,101,271,15.49 +140,6,091314,215937,5.25116,25.2158,30.80,10090.6,100,269,15.50 +140,6,091314,215938,5.25115,25.2148,30.78,10091.0,103,268,15.50 +140,6,091314,215939,5.25109,25.2145,30.76,10089.8,101,275,15.50 +140,6,091314,215940,5.25114,25.2144,30.74,10088.8,103,268,15.50 +140,6,091314,215941,5.25118,25.2147,30.72,10090.3,102,276,15.52 +140,6,091314,215942,5.25112,25.2157,30.71,10089.9,100,279,15.52 +140,6,091314,215943,5.25114,25.2147,30.72,10092.3,102,278,15.50 +140,6,091314,215944,5.25115,25.2155,30.74,10091.0,101,262,15.50 +140,6,091314,215945,5.25118,25.2156,30.76,10091.5,101,279,15.51 +140,6,091314,215946,5.25116,25.2150,30.79,10089.1,102,265,15.49 +140,6,091314,215947,5.25118,25.2151,30.80,10091.1,100,279,15.50 +140,6,091314,215948,5.25118,25.2157,30.83,10087.7,105,278,15.49 +140,6,091314,215949,5.25116,25.2151,30.83,10090.3,108,274,15.50 +140,6,091314,215950,5.25115,25.2149,30.83,10089.4,109,282,15.51 +140,6,091314,215951,5.25112,25.2147,30.82,10088.6,100,272,15.50 +140,6,091314,215952,5.25116,25.2155,30.81,10089.1,102,268,15.49 +140,6,091314,215953,5.25121,25.2153,30.78,10091.2,102,264,15.50 +140,6,091314,215954,5.25124,25.2158,30.74,10090.5,105,268,15.50 +140,6,091314,215955,5.25122,25.2161,30.72,10090.5,106,275,15.50 +140,6,091314,215956,5.25121,25.2158,30.71,10090.5,101,265,15.50 +140,6,091314,215957,5.25118,25.2154,30.71,10090.5,100,261,15.50 +140,6,091314,215958,5.25105,25.2136,30.72,10091.5,102,263,15.50 +140,6,091314,215959,5.25103,25.2137,30.73,10091.0,102,265,15.50 +140,6,091314,220000,5.25100,25.2135,30.76,10092.0,101,269,15.50 +140,6,091314,220001,5.25108,25.2142,30.77,10090.9,101,279,15.50 +140,6,091314,220002,5.25099,25.2132,30.79,10090.1,103,271,15.51 +140,6,091314,220003,5.25103,25.2139,30.80,10089.2,103,273,15.51 +140,6,091314,220004,5.25108,25.2143,30.81,10088.7,101,274,15.50 +140,6,091314,220005,5.25108,25.2148,30.82,10090.2,101,265,15.50 +140,6,091314,220006,5.25115,25.2150,30.80,10088.3,102,269,15.50 +140,6,091314,220007,5.25114,25.2144,30.78,10087.9,105,277,15.50 +140,6,091314,220008,5.25110,25.2148,30.76,10089.7,101,270,15.49 +140,6,091314,220009,5.25112,25.2145,30.74,10090.2,102,272,15.50 +140,6,091314,220010,5.25110,25.2155,30.72,10090.6,101,261,15.50 +140,6,091314,220011,5.25108,25.2144,30.71,10091.0,101,263,15.49 +140,6,091314,220012,5.25106,25.2138,30.71,10090.7,99,271,15.49 +140,6,091314,220013,5.25110,25.2144,30.71,10089.3,102,260,15.51 +140,6,091314,220014,5.25114,25.2149,30.73,10088.4,101,267,15.50 +140,6,091314,220015,5.25115,25.2155,30.75,10088.7,103,258,15.50 +140,6,091314,220016,5.25110,25.2152,30.77,10089.1,100,262,15.49 +140,6,091314,220017,5.25114,25.2158,30.78,10089.8,101,277,15.50 +140,6,091314,220018,5.25118,25.2148,30.78,10088.5,102,267,15.50 +140,6,091314,220019,5.25110,25.2154,30.78,10087.3,103,272,15.50 +140,6,091314,220020,5.25102,25.2133,30.77,10090.2,100,268,15.49 +140,6,091314,220021,5.25103,25.2137,30.76,10089.3,100,274,15.49 +140,6,091314,220022,5.25108,25.2143,30.74,10090.5,101,261,15.50 +140,6,091314,220023,5.25105,25.2133,30.74,10090.1,105,273,15.50 +140,6,091314,220024,5.25118,25.2148,30.75,10089.4,102,276,15.50 +140,6,091314,220025,5.25122,25.2157,30.76,10089.9,101,266,15.51 +140,6,091314,220026,5.25114,25.2152,30.78,10089.6,102,263,15.49 +140,6,091314,220027,5.25121,25.2151,30.80,10088.4,101,260,15.50 +140,6,091314,220028,5.25119,25.2159,30.81,10089.3,103,256,15.49 +140,6,091314,220029,5.25116,25.2154,30.81,10090.0,103,258,15.51 +140,6,091314,220030,5.25124,25.2161,30.79,10089.9,101,264,15.49 +140,100,091314,220031,1,1,10,741,80,28,1022742,28,1,0,0,0,0,0,1,15.62 +140,100,091314,221259,1,1,3,11,15,28,1022751,28,1,0,0,0,0,0,1,15.66 +140,3,091314,221259,5.25118,25.2157,30.76,10089.6,102,270,15.66 +140,140,091314,221304,Sample Mode: Insitu - Pumped: 5.25132 S/M > 0.00150 C90-Limit +140,200,091314,221304, 52.5132, 25.2157, 30.85, 4.370 +140,3,091314,221304,5.25132,25.2157,30.85,4.4,0,0,15.65 +140,100,091314,221311,1,1,4,80,80,28,1022751,28,1,0,0,0,0,0,1,15.62 +140,4,091314,221312,5.25141,25.2173,30.77,10034.4,0,0,15.62 +140,4,091314,221313,5.25144,25.2167,30.79,10051.2,0,0,15.62 +140,4,091314,221314,5.25144,25.2178,30.81,10063.1,0,0,15.62 +140,4,091314,221315,5.25145,25.2171,30.82,10071.0,0,0,15.62 +140,4,091314,221316,5.25151,25.2174,30.83,10075.2,0,0,15.62 +140,4,091314,221317,5.25153,25.2177,30.84,10080.8,0,0,15.61 +140,4,091314,221318,5.25154,25.2182,30.84,10083.3,0,0,15.62 +140,4,091314,221319,5.25157,25.2188,30.84,10084.7,0,0,15.61 +140,4,091314,221320,5.25156,25.2185,30.84,10087.2,0,0,15.62 +140,4,091314,221321,5.25157,25.2186,30.84,10088.0,0,0,15.62 +140,4,091314,221322,5.25157,25.2183,30.85,10088.1,0,0,15.61 +140,4,091314,221323,5.25150,25.2187,30.85,10089.4,0,0,15.61 +140,4,091314,221324,5.25148,25.2180,30.85,10091.1,0,0,15.62 +140,4,091314,221325,5.25151,25.2179,30.84,10091.5,0,0,15.61 +140,4,091314,221326,5.25150,25.2178,30.83,10091.9,0,0,15.61 +140,4,091314,221327,5.25145,25.2175,30.82,10091.2,0,0,15.61 +140,4,091314,221328,5.25145,25.2173,30.82,10093.4,0,0,15.62 +140,4,091314,221329,5.25150,25.2169,30.81,10095.4,0,0,15.61 +140,4,091314,221330,5.25141,25.2171,30.80,10094.4,0,0,15.62 +140,4,091314,221331,5.25148,25.2177,30.79,10094.1,0,0,15.61 +140,4,091314,221332,5.25147,25.2174,30.78,10094.4,0,0,15.61 +140,4,091314,221333,5.25144,25.2170,30.79,10094.3,0,0,15.61 +140,4,091314,221334,5.25125,25.2155,30.79,10094.2,0,0,15.61 +140,4,091314,221335,5.25124,25.2146,30.80,10093.9,0,0,15.61 +140,4,091314,221336,5.25124,25.2148,30.80,10095.4,0,0,15.61 +140,4,091314,221337,5.25119,25.2147,30.81,10094.1,0,0,15.61 +140,4,091314,221338,5.25115,25.2136,30.82,10096.1,0,0,15.61 +140,4,091314,221339,5.25115,25.2133,30.83,10093.4,0,0,15.61 +140,4,091314,221340,5.25116,25.2134,30.85,10093.7,0,0,15.61 +140,4,091314,221341,5.25112,25.2143,30.86,10093.9,0,0,15.61 +140,4,091314,221342,5.25115,25.2133,30.87,10093.3,0,0,15.61 +140,4,091314,221343,5.25110,25.2130,30.86,10092.7,0,0,15.61 +140,4,091314,221344,5.25115,25.2134,30.86,10093.2,0,0,15.61 +140,4,091314,221345,5.25112,25.2129,30.85,10093.2,0,0,15.61 +140,4,091314,221346,5.25116,25.2137,30.83,10090.7,0,0,15.61 +140,4,091314,221347,5.25103,25.2129,30.81,10091.0,0,0,15.61 +140,4,091314,221348,5.25097,25.2119,30.79,10091.8,0,0,15.61 +140,4,091314,221349,5.25096,25.2123,30.79,10092.4,0,0,15.61 +140,4,091314,221350,5.25097,25.2119,30.78,10092.4,0,0,15.61 +140,4,091314,221351,5.25097,25.2118,30.79,10093.9,0,0,15.61 +140,4,091314,221352,5.25099,25.2116,30.80,10091.6,0,0,15.61 +140,4,091314,221353,5.25097,25.2120,30.81,10090.7,0,0,15.61 +140,4,091314,221354,5.25103,25.2119,30.81,10090.3,0,0,15.61 +140,4,091314,221355,5.25102,25.2121,30.82,10090.3,0,0,15.61 +140,4,091314,221356,5.25103,25.2119,30.83,10090.5,0,0,15.61 +140,4,091314,221357,5.25103,25.2121,30.84,10091.0,0,0,15.61 +140,4,091314,221358,5.25102,25.2123,30.83,10090.9,0,0,15.61 +140,4,091314,221359,5.25103,25.2122,30.84,10092.5,0,0,15.61 +140,4,091314,221400,5.25100,25.2128,30.84,10092.7,0,0,15.61 +140,4,091314,221401,5.25105,25.2126,30.84,10091.0,0,0,15.61 +140,4,091314,221402,5.25106,25.2127,30.83,10091.9,0,0,15.61 +140,4,091314,221403,5.25109,25.2129,30.81,10090.4,0,0,15.61 +140,4,091314,221404,5.25110,25.2135,30.81,10091.1,0,0,15.61 +140,4,091314,221405,5.25109,25.2127,30.80,10090.5,0,0,15.61 +140,4,091314,221406,5.25112,25.2134,30.80,10090.2,0,0,15.61 +140,4,091314,221407,5.25110,25.2131,30.81,10090.5,0,0,15.61 +140,4,091314,221408,5.25110,25.2138,30.81,10090.4,0,0,15.61 +140,4,091314,221409,5.25112,25.2136,30.82,10091.1,0,0,15.61 +140,4,091314,221410,5.25114,25.2132,30.82,10090.0,0,0,15.61 +140,4,091314,221411,5.25114,25.2137,30.82,10092.0,0,0,15.61 +140,4,091314,221412,5.25112,25.2140,30.80,10092.0,0,0,15.60 +140,4,091314,221413,5.25114,25.2140,30.80,10091.7,0,0,15.60 +140,4,091314,221414,5.25119,25.2140,30.80,10092.8,0,0,15.61 +140,4,091314,221415,5.25115,25.2140,30.80,10091.5,0,0,15.60 +140,4,091314,221416,5.25116,25.2140,30.80,10092.2,0,0,15.61 +140,4,091314,221417,5.25116,25.2140,30.80,10093.0,0,0,15.61 +140,4,091314,221418,5.25124,25.2142,30.81,10092.5,0,0,15.61 +140,4,091314,221419,5.25119,25.2138,30.81,10093.3,0,0,15.61 +140,4,091314,221420,5.25119,25.2139,30.83,10093.8,0,0,15.61 +140,4,091314,221421,5.25121,25.2145,30.83,10093.5,0,0,15.61 +140,4,091314,221422,5.25119,25.2148,30.84,10092.7,0,0,15.61 +140,100,091314,221423,1,1,5,8,80,33,1022747,28,1,0,0,0,0,0,1,15.61 +140,5,091314,221423,5.25116,25.2137,30.84,10092.3,0,0,15.61 +140,5,091314,221424,5.25118,25.2143,30.84,10092.3,0,0,15.54 +140,5,091314,221425,5.25125,25.2153,30.84,10092.0,0,0,15.53 +140,211,091314,221426, +140,5,091314,221426,5.25125,25.2147,30.83,10091.9,0,0,15.45 +140,210,091314,221427,09/13/14 15:15:02 695 100 700 284 536 +140,5,091314,221427,5.25124,25.2147,30.82,10091.8,100,284,15.50 +140,5,091314,221428,5.25122,25.2144,30.81,10092.0,103,260,15.51 +140,5,091314,221429,5.25128,25.2162,30.79,10091.8,108,261,15.51 +140,5,091314,221430,5.25129,25.2157,30.78,10092.2,101,245,15.51 +140,100,091314,221431,1,1,6,60,80,33,1022746,28,1,0,0,0,0,0,1,15.51 +140,6,091314,221431,5.25134,25.2151,30.76,10091.3,102,247,15.51 diff --git a/test/readWQMraw/WQM0142_026_fw1.23_example.Raw b/test/readWQMraw/WQM0142_026_fw1.23_example.Raw new file mode 100644 index 000000000..d8b8770de --- /dev/null +++ b/test/readWQMraw/WQM0142_026_fw1.23_example.Raw @@ -0,0 +1,600 @@ + +File Name: WQM0142.026 +Created On: 062011 123131 +WQM SN: 142 +WQM F/W V: 1.23 +CTDO SN: 5154 +DOSN=0 +Soc=1.522830e-04 +FOffset=-3.354160e+03 +A52=-2.256200e-03 +B52=9.284400e-05 +C52=-1.484500e-06 +E52=4.370000e-02 +Optics SN: 1741 +FactoryCHL=0.007 50 Scale and Offset +UserCHL=0.007 50 Scale and Offset +NTU=0.002 51 Scale and Offset +Beta=0.000 1 0 Derived Scale and Offset +External Data Port: Off +WQM Control: Autonomous +Delay Seconds: 0 +Sample Seconds: 60 +Sample Interval Seconds: 900 +Outbits: 0xdff3e001 +Starting Free Flask Disk: 998800 K +Total Flask Disk: 1022816 K +BLIS ul / squirt: 7.0 +Pumped Hour Interval: 1 +Pumped BLIS: 0 +Static BLIS: 4 +Starting Total BLIS Squirts: 3928 +Recent UPS: No +Starting UPS Count: 0 +Starting Total UPS Count: 12 +Starting Voltage: 14.45 +Data Output: ON +Heartbeat: OFF +Update Date/Time: Normal +File Format: SN,State,Date,Time,Cond,Temp,Pres,RawDO,RawCHL,RawTurb,Volts + +142,100,062011,123131,1,1,10,793,15,24004,998799,3928,1,0,0,0,0,12,2,14.45 +142,100,062011,124500,1,1,3,11,15,24004,998799,3928,1,0,0,0,0,12,2,15.08 +142,3,062011,124500,0.14651,15.7657,0.00,8787.1,69,655,15.08 +142,140,062011,124505,Sample Mode: Insitu - Pumped: 0.11664 S/M > 0.00150 C90-Limit +142,200,062011,124505, 1.1664, 15.4679, 0.00, 5.699 +142,3,062011,124505,0.11664,15.4679,0.00,30000.0,0,0,14.48 +142,100,062011,124512,1,1,4,35,35,24005,998783,3928,1,0,0,0,0,12,2,14.43 +142,140,062011,124512,SBE 90570 WQM CTD V2.1S>S> 1.1664, 15.4679, 0.00, 5.699SBE 9 +142,4,062011,124514,0.14242,15.4703,0.00,8832.2,0,0,14.34 +142,4,062011,124515,0.13348,15.4702,0.00,8833.2,0,0,14.33 +142,4,062011,124516,0.12028,15.4729,0.00,8833.7,0,0,14.32 +142,4,062011,124517,0.12073,15.4701,0.00,8836.1,0,0,14.31 +142,4,062011,124518,0.12043,15.4713,0.00,8834.2,0,0,14.31 +142,4,062011,124519,0.12043,15.4737,0.00,8835.2,0,0,14.31 +142,4,062011,124520,0.12511,15.4720,0.00,8838.4,0,0,14.30 +142,4,062011,124521,0.14249,15.4691,0.00,8835.0,0,0,14.29 +142,4,062011,124522,0.12988,15.4719,0.00,8833.9,0,0,14.29 +142,4,062011,124523,0.12424,15.4725,0.00,8835.9,0,0,14.28 +142,4,062011,124524,0.12411,15.4681,0.00,8833.7,0,0,14.27 +142,4,062011,124525,0.12380,15.4691,0.00,8835.1,0,0,14.28 +142,4,062011,124526,0.13052,15.4684,0.00,8835.4,0,0,14.27 +142,4,062011,124527,0.13209,15.4674,0.00,8837.8,0,0,14.26 +142,4,062011,124528,0.13229,15.4664,0.00,8836.2,0,0,14.26 +142,4,062011,124529,0.13898,15.4678,0.00,8834.5,0,0,14.26 +142,4,062011,124530,0.12764,15.4676,0.00,8835.3,0,0,14.26 +142,4,062011,124531,0.11779,15.4649,0.00,8835.2,0,0,14.25 +142,4,062011,124532,0.12576,15.4631,0.00,8838.3,0,0,14.25 +142,4,062011,124533,0.12524,15.4628,0.00,8835.6,0,0,14.24 +142,4,062011,124534,0.11809,15.4647,0.00,8836.2,0,0,14.24 +142,4,062011,124535,0.11456,15.4634,0.00,8839.7,0,0,14.24 +142,4,062011,124536,0.12822,15.4661,0.00,8836.5,0,0,14.23 +142,4,062011,124537,0.12579,15.4683,0.00,8836.1,0,0,14.23 +142,4,062011,124538,0.11196,15.4629,0.00,8836.5,0,0,14.23 +142,100,062011,124539,1,1,5,8,35,24006,998782,3928,1,0,0,0,0,12,2,14.23 +142,5,062011,124539,0.11890,15.4631,0.00,8836.4,0,0,14.23 +142,5,062011,124540,0.10838,15.4645,0.00,8836.3,0,0,13.78 +142,5,062011,124541,0.11671,15.4653,0.00,8835.8,0,0,13.75 +142,5,062011,124542,0.11174,15.4628,0.00,8835.7,0,0,13.06 +142,211,062011,124542, +142,5,062011,124543,0.10543,15.4594,0.00,8837.8,0,0,13.54 +142,210,062011,124543,06/19/31 19:46:40 695 57 700 211 547 +142,5,062011,124544,0.11369,15.4600,0.00,8835.5,57,211,13.66 +142,5,062011,124545,0.11057,15.4612,0.00,8838.6,50,95,13.66 +142,5,062011,124546,0.11866,15.4571,0.00,8837.7,51,226,13.64 +142,100,062011,124547,1,1,6,60,35,24007,998781,3928,1,0,0,0,0,12,2,13.67 +142,6,062011,124547,0.11491,15.4578,0.00,8836.1,47,213,13.67 +142,6,062011,124548,0.13339,15.4575,0.00,8836.1,54,94,13.64 +142,6,062011,124549,0.13810,15.4592,0.00,8836.4,44,237,13.62 +142,6,062011,124550,0.11823,15.4597,0.00,8839.1,78,235,13.62 +142,6,062011,124551,0.14290,15.4614,0.00,8838.3,68,222,13.62 +142,6,062011,124552,0.14307,15.4629,0.00,8837.7,63,217,13.60 +142,6,062011,124553,0.12521,15.4641,0.01,8837.5,75,225,13.60 +142,6,062011,124554,0.13273,15.4636,0.01,8837.5,50,215,13.59 +142,6,062011,124555,0.14150,15.4637,0.01,8834.9,63,218,13.59 +142,6,062011,124556,0.12781,15.4634,0.00,8834.5,67,231,13.59 +142,6,062011,124557,0.11034,15.4635,0.00,8835.8,54,239,13.58 +142,6,062011,124558,0.12209,15.4556,0.00,8837.0,68,225,13.58 +142,6,062011,124559,0.12046,15.4558,0.00,8836.2,43,231,13.58 +142,6,062011,124600,0.11006,15.4517,0.00,8835.6,52,218,13.57 +142,6,062011,124601,0.11507,15.4518,0.01,8836.3,34,217,13.57 +142,6,062011,124602,0.12783,15.4495,0.01,8835.3,52,229,13.57 +142,6,062011,124603,0.12000,15.4513,0.01,8837.8,61,209,13.56 +142,6,062011,124604,0.12105,15.4492,0.01,8836.8,50,221,13.56 +142,6,062011,124605,0.13158,15.4473,0.01,8835.8,49,218,13.56 +142,6,062011,124606,0.13637,15.4492,0.01,8837.4,38,230,13.56 +142,6,062011,124607,0.12732,15.4494,0.01,8836.7,54,229,13.55 +142,6,062011,124608,0.12576,15.4485,0.01,8836.3,50,207,13.55 +142,6,062011,124609,0.11858,15.4511,0.01,8840.3,62,230,13.55 +142,6,062011,124610,0.11942,15.4510,0.01,8838.6,48,232,13.54 +142,6,062011,124611,0.12044,15.4487,0.01,8837.7,50,218,13.54 +142,6,062011,124612,0.11569,15.4452,0.01,8836.5,50,222,13.53 +142,6,062011,124613,0.11303,15.4438,0.01,8839.6,57,212,13.53 +142,6,062011,124614,0.11463,15.4443,0.01,8837.1,57,240,13.53 +142,6,062011,124615,0.10832,15.4452,0.01,8835.9,62,201,13.52 +142,6,062011,124616,0.12022,15.4435,0.01,8836.1,44,211,13.51 +142,6,062011,124617,0.12273,15.4417,0.02,8837.4,52,241,13.52 +142,6,062011,124618,0.15167,15.4418,0.01,8838.5,48,226,13.51 +142,6,062011,124619,0.15950,15.4404,0.02,8838.3,42,219,13.51 +142,6,062011,124620,0.14583,15.4411,0.01,8837.7,55,234,13.51 +142,6,062011,124621,0.15199,15.4392,0.01,8837.2,60,216,13.51 +142,6,062011,124622,0.14873,15.4398,0.01,8836.7,58,217,13.51 +142,6,062011,124623,0.13529,15.4412,0.01,8837.5,43,218,13.51 +142,6,062011,124624,0.13253,15.4390,0.01,8839.2,50,211,13.51 +142,6,062011,124625,0.14354,15.4384,0.01,8838.6,43,228,13.50 +142,6,062011,124626,0.13395,15.4377,0.01,8837.9,64,226,13.50 +142,6,062011,124627,0.12484,15.4407,0.01,8836.9,44,223,13.50 +142,6,062011,124628,0.13331,15.4402,0.01,8836.8,50,230,13.50 +142,6,062011,124629,0.13225,15.4398,0.01,8836.5,47,222,13.50 +142,6,062011,124630,0.12301,15.4400,0.01,8835.0,56,214,13.50 +142,6,062011,124631,0.12411,15.4394,0.01,8835.9,51,223,13.49 +142,6,062011,124632,0.13869,15.4371,0.01,8839.1,48,207,13.49 +142,6,062011,124633,0.13921,15.4335,0.01,8835.8,56,213,13.49 +142,6,062011,124634,0.12262,15.4372,0.01,8836.5,49,228,13.49 +142,6,062011,124635,0.11403,15.4364,0.01,8837.4,60,228,13.49 +142,6,062011,124636,0.12282,15.4386,0.01,8837.7,61,235,13.48 +142,6,062011,124637,0.13029,15.4395,0.01,8836.9,59,208,13.48 +142,6,062011,124638,0.11765,15.4415,0.02,8839.8,48,216,13.48 +142,6,062011,124639,0.12586,15.4422,0.02,8837.3,42,220,13.48 +142,6,062011,124640,0.13548,15.4416,0.02,8837.2,57,243,13.48 +142,6,062011,124641,0.12933,15.4389,0.02,8835.5,49,213,13.48 +142,6,062011,124642,0.11996,15.4388,0.01,8836.2,59,202,13.48 +142,6,062011,124643,0.11143,15.4393,0.01,8839.4,58,195,13.48 +142,6,062011,124644,0.13046,15.4374,0.01,8839.3,43,219,13.48 +142,6,062011,124645,0.13791,15.4329,0.01,8835.0,59,227,13.48 +142,6,062011,124646,0.12433,15.4341,0.01,8836.6,56,216,13.47 +142,100,062011,124647,1,1,10,805,35,24011,998777,3928,1,0,0,0,0,12,2,13.47 +142,100,062011,130000,1,1,3,11,15,24011,998783,3928,1,0,0,0,0,12,2,15.06 +142,3,062011,130000,0.13323,15.4317,0.02,8838.2,39,219,15.06 +142,140,062011,130005,Sample Mode: Insitu - Pumped: 4.75399 S/M > 0.00150 C90-Limit +142,200,062011,130005, 47.5399, 19.3140, 16.69, 4.373 +142,3,062011,130005,4.75399,19.3140,16.69,30000.0,0,0,14.46 +142,100,062011,130012,1,1,4,30,30,24011,998783,3928,1,0,0,0,0,12,2,14.25 +142,140,062011,130012,SBE 90570 WQM CTD V2.1S>S> 47.5399, 19.3140, 16.69, 4.373SBE 9 +142,4,062011,130014,4.78987,19.3272,16.87,9240.6,0,0,14.21 +142,4,062011,130015,4.78984,19.3275,16.79,9321.4,0,0,14.20 +142,4,062011,130016,4.79001,19.3275,16.73,9384.5,0,0,14.19 +142,4,062011,130017,4.79011,19.3277,16.73,9437.8,0,0,14.19 +142,4,062011,130018,4.78982,19.3245,16.76,9480.5,0,0,14.18 +142,4,062011,130019,4.78986,19.3244,16.77,9514.3,0,0,14.18 +142,4,062011,130020,4.78996,19.3248,16.75,9542.1,0,0,14.17 +142,4,062011,130021,4.79002,19.3254,16.70,9564.1,0,0,14.16 +142,4,062011,130022,4.79016,19.3256,16.68,9578.7,0,0,14.16 +142,4,062011,130023,4.78979,19.3231,16.70,9596.7,0,0,14.16 +142,4,062011,130024,4.78957,19.3208,16.76,9607.8,0,0,14.15 +142,4,062011,130025,4.78960,19.3198,16.83,9616.0,0,0,14.14 +142,4,062011,130026,4.78952,19.3191,16.87,9622.1,0,0,14.14 +142,4,062011,130027,4.78949,19.3188,16.86,9630.5,0,0,14.14 +142,4,062011,130028,4.78955,19.3189,16.80,9636.2,0,0,14.13 +142,4,062011,130029,4.78955,19.3199,16.72,9640.5,0,0,14.13 +142,4,062011,130030,4.78946,19.3191,16.65,9644.9,0,0,14.13 +142,4,062011,130031,4.78941,19.3188,16.64,9645.5,0,0,14.12 +142,4,062011,130032,4.78917,19.3165,16.68,9648.8,0,0,14.11 +142,4,062011,130033,4.78908,19.3147,16.76,9651.6,0,0,14.11 +142,100,062011,130034,1,1,5,8,30,24012,998782,3928,1,0,0,0,0,12,2,14.11 +142,5,062011,130034,4.78902,19.3141,16.82,9652.8,0,0,14.11 +142,5,062011,130035,4.78902,19.3142,16.82,9650.7,0,0,13.66 +142,5,062011,130036,4.78900,19.3144,16.76,9653.0,0,0,13.64 +142,5,062011,130037,4.78917,19.3159,16.67,9654.6,0,0,12.96 +142,211,062011,130037, +142,5,062011,130038,4.78933,19.3174,16.61,9656.1,0,0,13.43 +142,210,062011,130038,06/19/31 20:01:35 695 204 700 201 548 +142,5,062011,130039,4.78933,19.3172,16.61,9657.2,204,201,13.53 +142,5,062011,130040,4.78919,19.3153,16.69,9660.3,196,203,13.53 +142,5,062011,130041,4.78917,19.3148,16.81,9657.7,195,195,13.52 +142,100,062011,130042,1,1,6,60,30,24013,998781,3928,1,0,0,0,0,12,2,13.52 +142,6,062011,130042,4.78895,19.3129,16.93,9658.6,191,191,13.52 +142,6,062011,130043,4.78901,19.3138,16.99,9659.0,182,168,13.51 +142,6,062011,130044,4.78909,19.3131,16.95,9660.1,190,201,13.51 +142,6,062011,130045,4.78838,19.3098,16.81,9660.3,190,203,13.50 +142,6,062011,130046,4.78887,19.3137,16.64,9662.7,204,211,13.50 +142,6,062011,130047,4.78952,19.3184,16.52,9661.6,186,193,13.49 +142,6,062011,130048,4.78919,19.3155,16.51,9660.8,191,195,13.48 +142,6,062011,130049,4.78886,19.3142,16.61,9661.2,183,203,13.48 +142,6,062011,130050,4.78886,19.3141,16.74,9661.5,193,189,13.48 +142,6,062011,130051,4.78891,19.3145,16.86,9659.5,182,189,13.47 +142,6,062011,130052,4.78873,19.3112,16.92,9663.4,174,195,13.46 +142,6,062011,130053,4.78841,19.3095,16.92,9661.6,187,201,13.46 +142,6,062011,130054,4.78841,19.3080,16.88,9663.0,183,202,13.46 +142,6,062011,130055,4.78836,19.3063,16.81,9663.6,196,204,13.45 +142,6,062011,130056,4.78819,19.3071,16.74,9662.2,190,201,13.45 +142,6,062011,130057,4.78808,19.3065,16.66,9662.9,205,193,13.44 +142,6,062011,130058,4.78841,19.3077,16.58,9663.2,186,193,13.44 +142,6,062011,130059,4.78871,19.3101,16.52,9663.6,193,197,13.43 +142,6,062011,130100,4.78838,19.3093,16.53,9661.5,187,200,13.43 +142,6,062011,130101,4.78817,19.3066,16.61,9661.9,177,194,13.43 +142,6,062011,130102,4.78822,19.3059,16.75,9661.0,191,204,13.42 +142,6,062011,130103,4.78833,19.3073,16.90,9663.7,190,199,13.41 +142,6,062011,130104,4.78800,19.3060,17.00,9664.5,192,202,13.42 +142,6,062011,130105,4.78784,19.3033,17.00,9664.9,195,207,13.41 +142,6,062011,130106,4.78775,19.3028,16.91,9664.4,187,198,13.41 +142,6,062011,130107,4.78759,19.3024,16.77,9663.4,205,190,13.41 +142,6,062011,130108,4.78847,19.3080,16.61,9663.7,190,201,13.41 +142,6,062011,130109,4.78879,19.3111,16.52,9664.5,184,198,13.40 +142,6,062011,130110,4.78836,19.3083,16.53,9666.1,194,209,13.39 +142,6,062011,130111,4.78779,19.3035,16.65,9666.5,175,199,13.40 +142,6,062011,130112,4.78811,19.3056,16.80,9663.6,177,194,13.40 +142,6,062011,130113,4.78819,19.3050,16.93,9663.6,185,209,13.39 +142,6,062011,130114,4.78819,19.3048,16.96,9662.9,192,205,13.39 +142,6,062011,130115,4.78822,19.3060,16.91,9664.4,205,202,13.39 +142,6,062011,130116,4.78833,19.3064,16.79,9663.3,190,201,13.39 +142,6,062011,130117,4.78819,19.3067,16.68,9663.9,204,191,13.38 +142,6,062011,130118,4.78844,19.3077,16.62,9665.2,193,204,13.38 +142,6,062011,130119,4.78838,19.3082,16.64,9665.0,185,190,13.38 +142,6,062011,130120,4.78811,19.3051,16.70,9666.5,181,200,13.37 +142,6,062011,130121,4.78811,19.3044,16.75,9663.7,198,204,13.38 +142,6,062011,130122,4.78792,19.3039,16.76,9664.8,185,198,13.37 +142,6,062011,130123,4.78800,19.3045,16.73,9663.7,191,185,13.37 +142,6,062011,130124,4.78833,19.3058,16.72,9663.0,195,192,13.37 +142,6,062011,130125,4.78830,19.3059,16.73,9663.5,190,191,13.37 +142,6,062011,130126,4.78817,19.3065,16.73,9664.8,182,193,13.36 +142,6,062011,130127,4.78803,19.3061,16.74,9666.3,184,188,13.36 +142,6,062011,130128,4.78819,19.3051,16.76,9665.3,177,203,13.37 +142,6,062011,130129,4.78787,19.3035,16.79,9664.9,196,205,13.36 +142,6,062011,130130,4.78790,19.3038,16.82,9664.0,179,193,13.36 +142,6,062011,130131,4.78782,19.3033,16.82,9665.0,182,187,13.36 +142,6,062011,130132,4.78792,19.3027,16.80,9664.1,180,190,13.36 +142,6,062011,130133,4.78803,19.3031,16.77,9665.5,192,198,13.35 +142,6,062011,130134,4.78825,19.3052,16.74,9665.9,198,193,13.35 +142,6,062011,130135,4.78817,19.3070,16.73,9664.7,197,196,13.35 +142,6,062011,130136,4.78836,19.3072,16.73,9667.7,186,192,13.35 +142,6,062011,130137,4.78803,19.3049,16.74,9665.9,187,196,13.35 +142,6,062011,130138,4.78811,19.3042,16.74,9665.5,198,193,13.35 +142,6,062011,130139,4.78795,19.3053,16.71,9667.2,196,203,13.35 +142,6,062011,130140,4.78820,19.3060,16.65,9665.9,196,187,13.35 +142,6,062011,130141,4.78803,19.3055,16.61,9663.4,191,189,13.34 +142,100,062011,130142,1,1,10,786,30,24017,998777,3932,1,0,0,0,0,12,2,13.34 +142,100,062011,131500,1,1,3,11,15,24017,998783,3932,1,0,0,0,0,12,2,15.06 +142,3,062011,131500,4.78808,19.3052,16.69,9666.2,191,190,15.06 +142,140,062011,131505,Sample Mode: Insitu - Pumped: 4.77445 S/M > 0.00150 C90-Limit +142,200,062011,131505, 47.7445, 19.2057, 16.91, 4.325 +142,3,062011,131505,4.77445,19.2057,16.91,30000.0,0,0,14.46 +142,100,062011,131512,1,1,4,30,30,24017,998783,3932,1,0,0,0,0,12,2,14.25 +142,140,062011,131512,SBE 90570 WQM CTD V2.1S>S> 47.7445, 19.2057, 16.91, 4.325SBE 9 +142,4,062011,131514,4.77693,19.2132,16.69,9122.5,0,0,14.20 +142,4,062011,131515,4.77731,19.2140,16.80,9215.0,0,0,14.20 +142,4,062011,131516,4.77687,19.2117,16.88,9292.6,0,0,14.18 +142,4,062011,131517,4.77712,19.2126,16.91,9356.9,0,0,14.18 +142,4,062011,131518,4.77753,19.2161,16.86,9410.3,0,0,14.18 +142,4,062011,131519,4.77745,19.2150,16.76,9451.3,0,0,14.17 +142,4,062011,131520,4.77814,19.2207,16.65,9487.1,0,0,14.17 +142,4,062011,131521,4.77836,19.2231,16.56,9515.2,0,0,14.17 +142,4,062011,131522,4.77839,19.2241,16.53,9539.6,0,0,14.16 +142,4,062011,131523,4.77820,19.2223,16.53,9557.0,0,0,14.15 +142,4,062011,131524,4.77806,19.2200,16.57,9571.8,0,0,14.15 +142,4,062011,131525,4.77833,19.2222,16.63,9582.6,0,0,14.15 +142,4,062011,131526,4.77823,19.2215,16.72,9592.5,0,0,14.14 +142,4,062011,131527,4.77806,19.2203,16.79,9602.0,0,0,14.13 +142,4,062011,131528,4.77793,19.2192,16.83,9606.8,0,0,14.13 +142,4,062011,131529,4.77736,19.2139,16.83,9611.9,0,0,14.13 +142,4,062011,131530,4.77761,19.2155,16.79,9615.9,0,0,14.12 +142,4,062011,131531,4.77788,19.2181,16.76,9623.6,0,0,14.11 +142,4,062011,131532,4.77793,19.2187,16.70,9624.8,0,0,14.12 +142,4,062011,131533,4.77709,19.2122,16.61,9628.4,0,0,14.11 +142,100,062011,131534,1,1,5,8,30,24019,998782,3932,1,0,0,0,0,12,2,14.11 +142,5,062011,131534,4.77728,19.2131,16.51,9629.1,0,0,14.11 +142,5,062011,131535,4.77796,19.2181,16.45,9631.8,0,0,13.67 +142,5,062011,131536,4.77796,19.2183,16.48,9632.5,0,0,13.64 +142,5,062011,131537,4.77726,19.2135,16.60,9634.0,0,0,12.93 +142,211,062011,131537, +142,5,062011,131538,4.77720,19.2120,16.74,9635.0,0,0,13.39 +142,210,062011,131538,06/19/31 20:16:35 695 190 700 186 546 +142,5,062011,131539,4.77707,19.2114,16.83,9634.5,190,186,13.53 +142,5,062011,131540,4.77658,19.2079,16.86,9636.0,196,195,13.53 +142,5,062011,131541,4.77653,19.2056,16.83,9636.4,195,195,13.53 +142,100,062011,131542,1,1,6,60,30,24019,998781,3932,1,0,0,0,0,12,2,13.52 +142,6,062011,131542,4.77634,19.2047,16.76,9638.2,195,202,13.52 +142,6,062011,131543,4.77650,19.2065,16.68,9638.1,178,197,13.51 +142,6,062011,131544,4.77666,19.2063,16.60,9639.5,203,191,13.51 +142,6,062011,131545,4.77720,19.2112,16.53,9638.5,207,203,13.50 +142,6,062011,131546,4.77707,19.2120,16.49,9640.2,195,199,13.49 +142,6,062011,131547,4.77726,19.2130,16.51,9640.5,179,209,13.49 +142,6,062011,131548,4.77635,19.2061,16.59,9640.0,192,196,13.48 +142,6,062011,131549,4.77665,19.2072,16.69,9642.8,194,192,13.48 +142,6,062011,131550,4.77635,19.2080,16.77,9641.4,183,198,13.47 +142,6,062011,131551,4.77635,19.2045,16.79,9643.1,172,207,13.47 +142,6,062011,131552,4.77684,19.2092,16.76,9641.9,203,199,13.47 +142,6,062011,131553,4.77654,19.2075,16.73,9643.5,199,212,13.46 +142,6,062011,131554,4.77657,19.2090,16.71,9645.6,190,199,13.46 +142,6,062011,131555,4.77773,19.2154,16.71,9644.8,186,200,13.44 +142,6,062011,131556,4.77786,19.2168,16.71,9646.2,177,194,13.45 +142,6,062011,131557,4.77723,19.2150,16.71,9646.9,189,208,13.44 +142,6,062011,131558,4.77739,19.2132,16.70,9647.3,196,197,13.44 +142,6,062011,131559,4.77717,19.2136,16.67,9647.6,196,194,13.43 +142,6,062011,131600,4.77793,19.2171,16.62,9646.8,194,196,13.43 +142,6,062011,131601,4.77728,19.2168,16.58,9647.2,190,182,13.42 +142,6,062011,131602,4.77850,19.2230,16.56,9647.6,184,188,13.42 +142,6,062011,131603,4.77852,19.2232,16.59,9649.9,206,201,13.42 +142,6,062011,131604,4.77863,19.2223,16.65,9653.7,182,184,13.41 +142,6,062011,131605,4.77804,19.2213,16.70,9651.9,177,196,13.41 +142,6,062011,131606,4.77833,19.2215,16.70,9651.5,211,183,13.40 +142,6,062011,131607,4.77863,19.2269,16.67,9650.0,187,196,13.41 +142,6,062011,131608,4.77909,19.2267,16.63,9652.8,177,205,13.40 +142,6,062011,131609,4.78014,19.2374,16.65,9654.4,198,187,13.40 +142,6,062011,131610,4.77963,19.2355,16.73,9655.5,209,196,13.39 +142,6,062011,131611,4.77898,19.2296,16.83,9654.8,196,183,13.40 +142,6,062011,131612,4.77944,19.2305,16.89,9653.6,201,180,13.39 +142,6,062011,131613,4.78001,19.2349,16.86,9656.0,178,202,13.39 +142,6,062011,131614,4.78044,19.2403,16.74,9655.3,216,198,13.39 +142,6,062011,131615,4.78149,19.2492,16.57,9656.8,190,202,13.39 +142,6,062011,131616,4.78144,19.2496,16.43,9653.9,187,197,13.39 +142,6,062011,131617,4.78136,19.2473,16.38,9658.0,183,208,13.38 +142,6,062011,131618,4.78165,19.2491,16.43,9655.4,188,201,13.38 +142,6,062011,131619,4.78130,19.2464,16.56,9657.3,187,208,13.37 +142,6,062011,131620,4.78136,19.2470,16.72,9657.2,181,187,13.37 +142,6,062011,131621,4.78106,19.2465,16.85,9657.7,210,202,13.37 +142,6,062011,131622,4.78049,19.2425,16.92,9657.1,199,202,13.37 +142,6,062011,131623,4.78084,19.2414,16.93,9655.9,191,216,13.37 +142,6,062011,131624,4.78060,19.2411,16.88,9656.8,204,191,13.37 +142,6,062011,131625,4.78055,19.2388,16.80,9656.0,204,209,13.37 +142,6,062011,131626,4.77966,19.2347,16.69,9657.1,196,201,13.37 +142,6,062011,131627,4.78109,19.2444,16.58,9657.2,192,190,13.36 +142,6,062011,131628,4.78290,19.2604,16.50,9659.6,192,199,13.36 +142,6,062011,131629,4.78146,19.2520,16.47,9659.9,186,207,13.36 +142,6,062011,131630,4.78057,19.2419,16.50,9660.0,189,202,13.36 +142,6,062011,131631,4.78071,19.2407,16.58,9659.2,186,189,13.35 +142,6,062011,131632,4.78052,19.2398,16.64,9660.3,192,205,13.35 +142,6,062011,131633,4.78017,19.2381,16.69,9658.9,182,185,13.36 +142,6,062011,131634,4.78057,19.2427,16.72,9661.3,205,187,13.35 +142,6,062011,131635,4.78128,19.2466,16.75,9659.6,201,202,13.34 +142,6,062011,131636,4.78130,19.2462,16.78,9660.9,185,196,13.35 +142,6,062011,131637,4.78160,19.2486,16.82,9659.1,180,198,13.35 +142,6,062011,131638,4.78182,19.2496,16.84,9660.3,205,195,13.35 +142,6,062011,131639,4.78098,19.2445,16.80,9660.6,210,189,13.34 +142,6,062011,131640,4.78211,19.2530,16.70,9658.8,197,189,13.34 +142,6,062011,131641,4.78371,19.2705,16.56,9662.1,192,197,13.35 +142,100,062011,131642,1,1,10,789,30,24023,998777,3932,1,0,0,0,0,12,2,13.34 +142,100,062011,133000,1,1,3,11,15,24023,998767,3932,1,0,0,0,0,12,2,15.06 +142,3,062011,133000,4.78527,19.2818,16.43,9664.5,205,221,15.06 +142,140,062011,133005,Sample Mode: Insitu - Pumped: 4.79039 S/M > 0.00150 C90-Limit +142,200,062011,133005, 47.9039, 19.2249, 16.54, 4.351 +142,3,062011,133005,4.79039,19.2249,16.54,30000.0,0,0,14.46 +142,100,062011,133012,1,1,4,30,30,24024,998767,3932,1,0,0,0,0,12,2,14.25 +142,140,062011,133012,SBE 90570 WQM CTD V2.1S>S> 47.9039, 19.2249, 16.54, 4.351SBE 9 +142,4,062011,133014,4.77939,19.2296,16.68,9049.2,0,0,14.21 +142,4,062011,133015,4.77933,19.2315,16.77,9156.5,0,0,14.20 +142,4,062011,133016,4.77930,19.2316,16.83,9250.9,0,0,14.19 +142,4,062011,133017,4.77897,19.2280,16.80,9331.4,0,0,14.19 +142,4,062011,133018,4.77930,19.2318,16.66,9391.5,0,0,14.19 +142,4,062011,133019,4.77988,19.2353,16.47,9445.6,0,0,14.18 +142,4,062011,133020,4.78261,19.2584,16.32,9489.0,0,0,14.17 +142,4,062011,133021,4.78294,19.2627,16.29,9521.1,0,0,14.17 +142,4,062011,133022,4.78051,19.2455,16.38,9548.5,0,0,14.16 +142,4,062011,133023,4.78054,19.2434,16.53,9569.8,0,0,14.15 +142,4,062011,133024,4.77988,19.2377,16.71,9585.9,0,0,14.16 +142,4,062011,133025,4.77999,19.2369,16.87,9602.7,0,0,14.15 +142,4,062011,133026,4.77971,19.2366,17.00,9607.7,0,0,14.14 +142,4,062011,133027,4.77875,19.2269,17.04,9619.8,0,0,14.14 +142,4,062011,133028,4.77770,19.2210,16.96,9626.9,0,0,14.14 +142,4,062011,133029,4.77740,19.2160,16.76,9634.0,0,0,14.13 +142,4,062011,133030,4.77949,19.2331,16.50,9642.0,0,0,14.13 +142,4,062011,133031,4.78344,19.2680,16.27,9648.8,0,0,14.12 +142,4,062011,133032,4.78471,19.2809,16.17,9648.3,0,0,14.11 +142,4,062011,133033,4.78267,19.2643,16.23,9654.5,0,0,14.12 +142,100,062011,133034,1,1,5,8,30,24025,998766,3932,1,0,0,0,0,12,2,14.11 +142,5,062011,133034,4.78123,19.2494,16.41,9656.3,0,0,14.11 +142,5,062011,133035,4.78090,19.2457,16.62,9655.7,0,0,13.67 +142,5,062011,133036,4.78129,19.2508,16.78,9660.0,0,0,13.64 +142,5,062011,133037,4.78109,19.2487,16.87,9663.0,0,0,12.91 +142,211,062011,133037, +142,5,062011,133038,4.78096,19.2465,16.89,9659.8,0,0,13.40 +142,210,062011,133038,06/19/31 20:31:35 695 201 700 198 545 +142,5,062011,133039,4.78090,19.2462,16.86,9664.2,201,198,13.53 +142,5,062011,133040,4.77993,19.2387,16.80,9662.4,209,194,13.53 +142,5,062011,133041,4.77913,19.2314,16.72,9663.7,197,197,13.53 +142,100,062011,133042,1,1,6,60,30,24026,998765,3932,1,0,0,0,0,12,2,13.52 +142,6,062011,133042,4.77938,19.2336,16.62,9664.8,196,191,13.52 +142,6,062011,133043,4.77952,19.2345,16.52,9665.5,194,206,13.52 +142,6,062011,133044,4.77960,19.2369,16.45,9667.2,197,230,13.51 +142,6,062011,133045,4.77941,19.2357,16.43,9667.6,193,188,13.50 +142,6,062011,133046,4.77858,19.2282,16.47,9667.2,191,213,13.49 +142,6,062011,133047,4.77847,19.2277,16.56,9666.3,202,185,13.49 +142,6,062011,133048,4.77882,19.2298,16.64,9668.0,209,182,13.48 +142,6,062011,133049,4.77939,19.2325,16.68,9669.3,178,201,13.48 +142,6,062011,133050,4.77917,19.2330,16.68,9670.1,196,195,13.48 +142,6,062011,133051,4.77949,19.2345,16.68,9669.6,194,183,13.47 +142,6,062011,133052,4.77936,19.2343,16.70,9670.5,193,201,13.46 +142,6,062011,133053,4.77928,19.2340,16.73,9668.3,194,196,13.46 +142,6,062011,133054,4.77912,19.2305,16.74,9671.3,192,192,13.46 +142,6,062011,133055,4.77917,19.2329,16.72,9668.7,209,191,13.45 +142,6,062011,133056,4.77936,19.2336,16.68,9671.7,190,207,13.45 +142,6,062011,133057,4.78001,19.2383,16.62,9670.4,200,204,13.44 +142,6,062011,133058,4.78017,19.2417,16.56,9672.5,200,195,13.44 +142,6,062011,133059,4.78071,19.2458,16.52,9671.5,207,205,13.43 +142,6,062011,133100,4.78009,19.2418,16.50,9673.7,190,187,13.43 +142,6,062011,133101,4.77987,19.2378,16.51,9673.7,190,199,13.43 +142,6,062011,133102,4.77949,19.2361,16.54,9672.6,201,200,13.43 +142,6,062011,133103,4.77858,19.2283,16.56,9672.9,184,194,13.42 +142,6,062011,133104,4.77855,19.2265,16.60,9673.6,220,190,13.42 +142,6,062011,133105,4.77779,19.2205,16.66,9671.6,187,202,13.42 +142,6,062011,133106,4.77801,19.2225,16.75,9674.0,186,195,13.41 +142,6,062011,133107,4.77839,19.2260,16.82,9674.3,194,197,13.41 +142,6,062011,133108,4.77863,19.2272,16.84,9673.5,204,209,13.41 +142,6,062011,133109,4.77906,19.2304,16.79,9672.5,181,189,13.41 +142,6,062011,133110,4.77885,19.2320,16.68,9672.7,194,203,13.40 +142,6,062011,133111,4.77949,19.2342,16.57,9675.0,206,200,13.40 +142,6,062011,133112,4.77922,19.2343,16.49,9675.5,197,212,13.40 +142,6,062011,133113,4.77922,19.2326,16.48,9673.8,199,195,13.39 +142,6,062011,133114,4.77858,19.2290,16.51,9674.7,207,192,13.39 +142,6,062011,133115,4.77877,19.2293,16.54,9673.1,206,192,13.39 +142,6,062011,133116,4.77844,19.2285,16.55,9674.8,210,186,13.38 +142,6,062011,133117,4.77882,19.2283,16.54,9673.0,202,191,13.38 +142,6,062011,133118,4.77833,19.2250,16.54,9673.1,206,191,13.38 +142,6,062011,133119,4.77715,19.2153,16.57,9675.5,204,192,13.38 +142,6,062011,133120,4.77726,19.2171,16.62,9671.6,201,185,13.37 +142,6,062011,133121,4.77742,19.2177,16.69,9673.3,206,189,13.38 +142,6,062011,133122,4.77750,19.2173,16.77,9673.8,189,206,13.37 +142,6,062011,133123,4.77747,19.2176,16.85,9672.2,199,193,13.37 +142,6,062011,133124,4.77693,19.2152,16.89,9673.1,187,202,13.37 +142,6,062011,133125,4.77645,19.2106,16.84,9670.2,198,249,13.37 +142,6,062011,133126,4.77400,19.1923,16.70,9670.8,187,203,13.37 +142,6,062011,133127,4.77310,19.1780,16.48,9670.7,198,199,13.36 +142,6,062011,133128,4.77585,19.2025,16.29,9672.5,208,196,13.36 +142,6,062011,133129,4.77588,19.2076,16.18,9670.3,204,206,13.36 +142,6,062011,133130,4.77557,19.2025,16.22,9673.0,195,200,13.36 +142,6,062011,133131,4.77505,19.1990,16.40,9670.7,187,205,13.36 +142,6,062011,133132,4.77563,19.2015,16.65,9671.1,192,215,13.36 +142,6,062011,133133,4.77513,19.1994,16.87,9670.2,197,194,13.35 +142,6,062011,133134,4.77408,19.1893,17.00,9668.8,209,212,13.35 +142,6,062011,133135,4.77232,19.1759,17.02,9669.3,200,223,13.36 +142,6,062011,133136,4.77063,19.1638,16.92,9669.2,213,195,13.36 +142,6,062011,133137,4.76810,19.1430,16.76,9668.9,190,201,13.35 +142,6,062011,133138,4.77049,19.1571,16.56,9669.6,207,207,13.35 +142,6,062011,133139,4.77249,19.1743,16.39,9671.9,201,201,13.35 +142,6,062011,133140,4.77402,19.1910,16.29,9671.3,183,197,13.34 +142,6,062011,133141,4.77230,19.1791,16.30,9671.0,183,207,13.35 +142,100,062011,133142,1,1,10,791,30,24029,998761,3932,1,0,0,0,0,12,2,13.35 +142,100,062011,134500,1,1,3,11,15,24029,998767,3932,1,0,0,0,0,12,2,15.06 +142,3,062011,134500,4.77100,19.1630,16.58,9669.7,176,202,15.06 +142,140,062011,134505,Sample Mode: Insitu - Pumped: 4.74433 S/M > 0.00150 C90-Limit +142,200,062011,134505, 47.4433, 18.8753, 16.33, 4.246 +142,3,062011,134505,4.74433,18.8753,16.33,30000.0,0,0,14.46 +142,100,062011,134512,1,1,4,30,30,24030,998767,3932,1,0,0,0,0,12,2,14.26 +142,140,062011,134512,SBE 90570 WQM CTD V2.1S>S> 47.4433, 18.8753, 16.33, 4.246SBE 9 +142,4,062011,134514,4.73161,18.8443,16.70,9137.5,0,0,14.21 +142,4,062011,134515,4.73147,18.8439,16.73,9222.9,0,0,14.20 +142,4,062011,134516,4.73136,18.8433,16.73,9295.8,0,0,14.19 +142,4,062011,134517,4.73093,18.8398,16.69,9360.4,0,0,14.19 +142,4,062011,134518,4.72843,18.8212,16.59,9410.0,0,0,14.18 +142,4,062011,134519,4.72758,18.8101,16.47,9450.1,0,0,14.17 +142,4,062011,134520,4.72811,18.8160,16.34,9482.4,0,0,14.17 +142,4,062011,134521,4.72987,18.8307,16.24,9509.8,0,0,14.17 +142,4,062011,134522,4.72940,18.8296,16.21,9529.6,0,0,14.17 +142,4,062011,134523,4.72910,18.8259,16.26,9550.1,0,0,14.16 +142,4,062011,134524,4.72897,18.8226,16.38,9565.5,0,0,14.16 +142,4,062011,134525,4.72894,18.8230,16.53,9578.3,0,0,14.14 +142,4,062011,134526,4.72812,18.8177,16.69,9587.1,0,0,14.15 +142,4,062011,134527,4.72801,18.8156,16.81,9594.8,0,0,14.14 +142,4,062011,134528,4.72812,18.8162,16.87,9602.0,0,0,14.14 +142,4,062011,134529,4.72853,18.8172,16.86,9604.0,0,0,14.13 +142,4,062011,134530,4.72622,18.8042,16.78,9610.3,0,0,14.13 +142,4,062011,134531,4.72404,18.7821,16.66,9611.4,0,0,14.13 +142,4,062011,134532,4.72378,18.7796,16.55,9616.7,0,0,14.12 +142,4,062011,134533,4.72420,18.7828,16.44,9617.4,0,0,14.11 +142,100,062011,134534,1,1,5,8,30,24031,998766,3932,1,0,0,0,0,12,2,14.12 +142,5,062011,134534,4.72383,18.7810,16.34,9622.8,0,0,14.12 +142,5,062011,134535,4.72453,18.7870,16.26,9624.0,0,0,13.67 +142,5,062011,134536,4.72463,18.7893,16.23,9628.0,0,0,13.64 +142,5,062011,134537,4.72464,18.7884,16.26,9630.3,0,0,12.94 +142,211,062011,134537, +142,5,062011,134538,4.72439,18.7875,16.37,9629.3,0,0,13.44 +142,210,062011,134538,06/19/31 20:46:35 695 203 700 226 545 +142,5,062011,134539,4.72352,18.7796,16.55,9628.5,203,226,13.54 +142,5,062011,134540,4.72277,18.7704,16.76,9629.7,198,216,13.54 +142,5,062011,134541,4.72255,18.7690,16.91,9629.7,199,219,13.53 +142,100,062011,134542,1,1,6,60,30,24032,998765,3932,1,0,0,0,0,12,2,13.52 +142,6,062011,134542,4.72239,18.7669,16.93,9631.5,204,213,13.52 +142,6,062011,134543,4.72010,18.7519,16.82,9631.2,206,208,13.52 +142,6,062011,134544,4.71775,18.7278,16.62,9629.0,193,213,13.51 +142,6,062011,134545,4.71983,18.7452,16.39,9630.8,205,217,13.50 +142,6,062011,134546,4.72115,18.7592,16.25,9631.0,209,226,13.49 +142,6,062011,134547,4.72083,18.7570,16.24,9632.5,202,222,13.49 +142,6,062011,134548,4.72011,18.7507,16.37,9630.9,193,222,13.49 +142,6,062011,134549,4.72072,18.7550,16.54,9633.6,192,233,13.48 +142,6,062011,134550,4.72040,18.7529,16.66,9633.9,204,218,13.48 +142,6,062011,134551,4.71866,18.7383,16.68,9633.9,188,216,13.48 +142,6,062011,134552,4.71862,18.7370,16.60,9632.7,219,230,13.47 +142,6,062011,134553,4.71516,18.7092,16.47,9632.4,211,219,13.47 +142,6,062011,134554,4.71453,18.6991,16.36,9632.7,203,207,13.46 +142,6,062011,134555,4.71673,18.7191,16.34,9633.5,200,220,13.45 +142,6,062011,134556,4.71629,18.7203,16.42,9632.1,207,225,13.45 +142,6,062011,134557,4.71632,18.7175,16.56,9632.7,183,214,13.45 +142,6,062011,134558,4.71618,18.7164,16.68,9631.8,195,220,13.44 +142,6,062011,134559,4.71497,18.7078,16.76,9632.8,189,215,13.43 +142,6,062011,134600,4.71504,18.7069,16.74,9634.3,203,234,13.43 +142,6,062011,134601,4.71448,18.7032,16.64,9633.3,189,211,13.43 +142,6,062011,134602,4.71440,18.7022,16.49,9630.4,203,216,13.43 +142,6,062011,134603,4.71556,18.7119,16.37,9633.1,198,224,13.43 +142,6,062011,134604,4.71622,18.7197,16.32,9633.3,197,231,13.42 +142,6,062011,134605,4.71567,18.7142,16.34,9635.8,206,219,13.41 +142,6,062011,134606,4.71396,18.7001,16.42,9634.7,222,227,13.41 +142,6,062011,134607,4.71382,18.6956,16.50,9634.6,211,238,13.41 +142,6,062011,134608,4.71388,18.6970,16.57,9635.2,210,219,13.41 +142,6,062011,134609,4.71398,18.6984,16.62,9632.6,213,239,13.40 +142,6,062011,134610,4.71385,18.6979,16.66,9632.7,195,234,13.41 +142,6,062011,134611,4.71315,18.6922,16.68,9631.2,219,208,13.40 +142,6,062011,134612,4.71339,18.6944,16.68,9633.9,195,221,13.40 +142,6,062011,134613,4.71421,18.7015,16.63,9635.7,198,225,13.40 +142,6,062011,134614,4.71478,18.7073,16.54,9633.5,211,210,13.40 +142,6,062011,134615,4.71510,18.7096,16.43,9633.4,206,207,13.39 +142,6,062011,134616,4.71543,18.7126,16.36,9636.3,201,226,13.39 +142,6,062011,134617,4.71589,18.7159,16.36,9635.3,206,239,13.39 +142,6,062011,134618,4.71435,18.7050,16.42,9635.8,195,216,13.39 +142,6,062011,134619,4.71440,18.7029,16.51,9635.6,209,218,13.38 +142,6,062011,134620,4.71464,18.7054,16.61,9634.4,199,205,13.38 +142,6,062011,134621,4.71461,18.7061,16.68,9635.8,194,210,13.38 +142,6,062011,134622,4.71543,18.7130,16.69,9635.3,199,219,13.38 +142,6,062011,134623,4.71597,18.7173,16.62,9637.4,191,206,13.37 +142,6,062011,134624,4.71671,18.7223,16.49,9638.2,199,222,13.38 +142,6,062011,134625,4.71700,18.7258,16.39,9637.8,205,222,13.37 +142,6,062011,134626,4.71706,18.7278,16.36,9638.4,186,207,13.37 +142,6,062011,134627,4.71565,18.7173,16.44,9638.0,201,225,13.37 +142,6,062011,134628,4.71605,18.7171,16.58,9637.2,187,218,13.37 +142,6,062011,134629,4.71703,18.7248,16.70,9637.2,192,205,13.36 +142,6,062011,134630,4.71678,18.7252,16.74,9635.3,235,233,13.36 +142,6,062011,134631,4.71679,18.7245,16.70,9637.2,197,217,13.36 +142,6,062011,134632,4.71624,18.7192,16.58,9635.9,202,215,13.36 +142,6,062011,134633,4.71647,18.7211,16.43,9640.9,220,221,13.36 +142,6,062011,134634,4.71793,18.7340,16.31,9639.6,212,234,13.36 +142,6,062011,134635,4.71798,18.7367,16.25,9637.5,189,209,13.36 +142,6,062011,134636,4.71765,18.7329,16.29,9640.5,210,220,13.36 +142,6,062011,134637,4.71613,18.7206,16.40,9640.2,199,208,13.35 +142,6,062011,134638,4.71624,18.7186,16.54,9639.4,202,242,13.35 +142,6,062011,134639,4.71642,18.7211,16.67,9638.6,229,220,13.35 +142,6,062011,134640,4.71632,18.7202,16.76,9638.6,200,219,13.35 +142,6,062011,134641,4.71626,18.7188,16.78,9637.9,193,220,13.35 +142,100,062011,134642,1,1,10,791,30,24036,998761,3932,1,0,0,0,0,12,2,13.35 +142,100,062011,140000,1,1,3,11,15,24036,998751,3932,1,0,0,0,0,12,2,15.06 +142,3,062011,140000,4.71619,18.7200,16.62,9636.7,227,224,15.06 +142,140,062011,140005,Sample Mode: Insitu - Pumped: 4.72467 S/M > 0.00150 C90-Limit +142,200,062011,140005, 47.2467, 18.7204, 16.51, 4.327 +142,3,062011,140005,4.72467,18.7204,16.51,30000.0,0,0,14.46 +142,100,062011,140012,1,1,4,30,30,24036,998751,3932,1,0,0,0,0,12,2,14.26 +142,140,062011,140012,SBE 90570 WQM CTD V2.1S>S> 47.2467, 18.7204, 16.51, 4.327SBE 9 +142,4,062011,140014,4.71313,18.7090,16.38,8933.1,0,0,14.21 +142,4,062011,140015,4.71363,18.7148,16.34,9053.1,0,0,14.20 +142,4,062011,140016,4.71337,18.7133,16.35,9161.8,0,0,14.19 +142,4,062011,140017,4.71258,18.7067,16.41,9253.6,0,0,14.19 +142,4,062011,140018,4.71270,18.7058,16.51,9327.5,0,0,14.19 +142,4,062011,140019,4.71250,18.7074,16.59,9388.3,0,0,14.17 +142,4,062011,140020,4.71238,18.7038,16.61,9437.6,0,0,14.17 +142,4,062011,140021,4.71328,18.7115,16.56,9478.6,0,0,14.17 +142,4,062011,140022,4.71427,18.7207,16.46,9511.6,0,0,14.16 +142,4,062011,140023,4.71635,18.7375,16.37,9538.9,0,0,14.16 +142,4,062011,140024,4.71581,18.7376,16.38,9560.0,0,0,14.15 +142,4,062011,140025,4.71474,18.7255,16.46,9577.8,0,0,14.15 +142,4,062011,140026,4.71483,18.7256,16.56,9595.0,0,0,14.14 +142,4,062011,140027,4.71411,18.7205,16.60,9604.3,0,0,14.14 +142,4,062011,140028,4.71451,18.7227,16.57,9613.7,0,0,14.14 +142,4,062011,140029,4.71554,18.7315,16.48,9622.7,0,0,14.13 +142,4,062011,140030,4.71605,18.7367,16.40,9630.6,0,0,14.13 +142,4,062011,140031,4.71711,18.7462,16.37,9634.9,0,0,14.13 +142,4,062011,140032,4.71798,18.7542,16.37,9640.1,0,0,14.12 +142,4,062011,140033,4.71737,18.7498,16.39,9645.1,0,0,14.12 +142,100,062011,140034,1,1,5,8,30,24037,998750,3932,1,0,0,0,0,12,2,14.12 +142,5,062011,140034,4.71733,18.7486,16.40,9649.7,0,0,14.12 +142,5,062011,140035,4.71687,18.7442,16.41,9651.4,0,0,13.67 +142,5,062011,140036,4.71681,18.7428,16.44,9656.1,0,0,13.64 +142,5,062011,140037,4.71668,18.7434,16.49,9654.0,0,0,12.97 +142,211,062011,140037, +142,5,062011,140038,4.71657,18.7417,16.53,9655.6,0,0,13.43 +142,210,062011,140038,06/19/31 21:01:35 695 200 700 212 545 +142,5,062011,140039,4.71597,18.7367,16.53,9654.8,200,212,13.54 +142,5,062011,140040,4.71666,18.7408,16.49,9660.0,229,216,13.54 +142,5,062011,140041,4.71774,18.7506,16.45,9659.4,218,220,13.53 +142,100,062011,140042,1,1,6,60,30,24038,998749,3932,1,0,0,0,0,12,2,13.53 +142,6,062011,140042,4.71804,18.7545,16.43,9663.2,225,209,13.53 +142,6,062011,140043,4.71836,18.7583,16.44,9663.0,215,205,13.52 +142,6,062011,140044,4.71801,18.7572,16.45,9668.9,214,231,13.51 +142,6,062011,140045,4.71771,18.7521,16.44,9666.4,213,214,13.51 +142,6,062011,140046,4.71814,18.7538,16.43,9667.9,195,210,13.50 +142,6,062011,140047,4.71820,18.7576,16.45,9669.4,223,210,13.49 +142,6,062011,140048,4.71830,18.7567,16.51,9668.6,228,224,13.49 +142,6,062011,140049,4.71836,18.7572,16.56,9669.0,204,219,13.48 +142,6,062011,140050,4.71809,18.7558,16.58,9668.3,226,219,13.48 +142,6,062011,140051,4.71774,18.7518,16.53,9669.8,210,217,13.48 +142,6,062011,140052,4.71846,18.7574,16.44,9670.3,215,215,13.47 +142,6,062011,140053,4.71763,18.7527,16.36,9673.5,215,214,13.46 +142,6,062011,140054,4.71804,18.7552,16.34,9674.0,207,215,13.46 +142,6,062011,140055,4.71790,18.7542,16.37,9675.3,207,219,13.46 +142,6,062011,140056,4.71748,18.7515,16.41,9675.2,207,217,13.45 diff --git a/test/readWQMraw/WQM0144_015_fw1.20c_example.Raw b/test/readWQMraw/WQM0144_015_fw1.20c_example.Raw new file mode 100644 index 000000000..d7fce1f6f --- /dev/null +++ b/test/readWQMraw/WQM0144_015_fw1.20c_example.Raw @@ -0,0 +1,600 @@ + +File Name: WQM0144.015 +Created On: 043011 102540 +WQM SN: 144 +WQM F/W V: 1.20c +CTDO SN: 5156 +DOSN=0 +Soc=1.367400e-04 +FOffset=-3.352380e+03 +A52=-2.479800e-03 +B52=2.052500e-04 +C52=-3.304700e-06 +E52=4.470000e-02 +Optics SN: 1542 +FactoryCHL=0.007 50 Scale and Offset +UserCHL=0.007 50 Scale and Offset +NTU=0.002 51 Scale and Offset +Beta=0.000 1 0 Derived Scale and Offset +External Data Port: Off +WQM Control: Autonomous +Delay Seconds: 0 +Sample Seconds: 60 +Sample Interval Seconds: 900 +Outbits: 0xe001dff3 +Starting Free Flask Disk: 1006032 K +Total Flask Disk: 1022816 K +BLIS ul / squirt: 7.0 +Pumped Hour Interval: 1 +Pumped BLIS: 0 +Static BLIS: 4 +Starting Total BLIS Squirts: 0 +Recent UPS: No +Starting UPS Count: 0 +Starting Total UPS Count: 37 +Starting Voltage: 0.00 +Data Output: ON +Heartbeat: OFF +Update Date/Time: Normal +File Format: SN,State,Date,Time,Cond,Temp,Pres,RawDO,RawCHL,RawTurb,Volts + +144,100,043011,102540,1,0,3,11,15,0,1006032,0,1,0,1,0,0,37,0,0.00 +144,100,043011,102551,1,1,4,26,26,0,1006031,2,1,0,1,0,0,37,2,13.30 +144,4,043011,102551,0.00000,0.0000,0.00,0.0,0,0,13.27 +144,4,043011,102552,0.00000,0.0000,0.00,0.0,0,0,13.26 +144,4,043011,102553,5.04564,22.0999,15.92,10265.9,0,0,13.26 +144,4,043011,102554,5.04538,22.1001,15.85,10301.5,0,0,13.25 +144,4,043011,102555,5.04530,22.0981,15.74,10325.8,0,0,13.24 +144,4,043011,102556,5.04640,22.1070,15.61,10350.9,0,0,13.24 +144,4,043011,102557,5.04713,22.1144,15.48,10364.4,0,0,13.23 +144,4,043011,102558,5.04691,22.1167,15.43,10379.9,0,0,13.23 +144,4,043011,102559,5.04680,22.1136,15.49,10389.0,0,0,13.22 +144,4,043011,102600,5.04641,22.1085,15.64,10400.4,0,0,13.22 +144,4,043011,102601,5.04691,22.1126,15.84,10405.8,0,0,13.22 +144,4,043011,102602,5.04685,22.1153,15.99,10410.0,0,0,13.21 +144,4,043011,102603,5.04663,22.1095,16.07,10413.9,0,0,13.21 +144,4,043011,102604,5.04603,22.1080,16.04,10418.5,0,0,13.20 +144,4,043011,102605,5.04651,22.1111,15.93,10423.7,0,0,13.20 +144,4,043011,102606,5.04745,22.1205,15.74,10423.6,0,0,13.19 +144,4,043011,102607,5.04762,22.1218,15.50,10425.2,0,0,13.19 +144,5,043011,102608,5.04770,22.1227,15.34,10428.8,0,0,13.18 +144,100,043011,102609,1,1,5,8,26,1,1006030,20,1,0,1,0,0,37,2,13.18 +144,5,043011,102609,5.04852,22.1288,15.33,10428.7,0,0,12.97 +144,5,043011,102610,5.04776,22.1238,15.47,10428.4,0,0,12.98 +144,5,043011,102611,5.04774,22.1238,15.67,10431.0,0,0,12.98 +144,5,043011,102612,5.04799,22.1235,15.82,10430.0,78,105,12.98 +144,5,043011,102613,5.04717,22.1178,15.89,10430.4,78,105,12.98 +144,5,043011,102614,5.04634,22.1120,15.87,10430.5,77,105,13.02 +144,5,043011,102615,5.04586,22.1049,15.85,10430.4,78,103,13.00 +144,6,043011,102616,5.04575,22.1003,15.85,10429.7,81,104,13.00 +144,100,043011,102617,1,1,6,60,26,1,1006030,20,1,0,0,0,0,37,2,13.00 +144,6,043011,102617,5.04586,22.1040,15.88,10431.8,81,104,13.00 +144,6,043011,102618,5.04595,22.1030,15.85,10433.6,77,104,12.96 +144,6,043011,102619,5.04617,22.1074,15.74,10435.3,82,110,13.00 +144,6,043011,102620,5.04736,22.1160,15.55,10437.0,83,110,13.03 +144,6,043011,102621,5.04827,22.1262,15.36,10439.2,81,110,13.03 +144,6,043011,102622,5.04823,22.1285,15.30,10438.1,75,99,13.03 +144,6,043011,102623,5.04773,22.1234,15.45,10438.2,75,105,12.97 +144,6,043011,102624,5.04756,22.1192,15.73,10438.3,78,106,13.02 +144,6,043011,102625,5.04773,22.1214,16.03,10437.6,78,110,13.00 +144,6,043011,102626,5.04773,22.1232,16.22,10436.7,77,99,13.01 +144,6,043011,102627,5.04668,22.1126,16.21,10434.6,78,106,13.02 +144,6,043011,102628,5.04581,22.1025,16.02,10435.4,78,106,12.98 +144,6,043011,102629,5.04566,22.1002,15.70,10437.4,79,108,12.99 +144,6,043011,102630,5.04631,22.1058,15.40,10438.8,78,102,12.96 +144,6,043011,102631,5.04674,22.1144,15.25,10440.9,79,101,12.96 +144,6,043011,102632,5.04682,22.1164,15.32,10439.1,73,102,13.01 +144,6,043011,102633,5.04693,22.1162,15.51,10441.4,78,118,13.00 +144,6,043011,102634,5.04719,22.1183,15.75,10439.2,77,103,13.00 +144,6,043011,102635,5.04759,22.1203,15.93,10440.1,77,107,13.00 +144,6,043011,102636,5.04733,22.1186,16.00,10438.4,75,99,13.01 +144,6,043011,102637,5.04680,22.1159,16.00,10439.1,78,104,12.95 +144,6,043011,102638,5.04660,22.1161,15.96,10441.0,77,101,12.95 +144,6,043011,102639,5.04722,22.1174,15.90,10440.0,82,106,13.00 +144,6,043011,102640,5.04736,22.1205,15.81,10440.0,82,103,12.95 +144,6,043011,102641,5.04799,22.1242,15.65,10441.2,79,100,12.99 +144,6,043011,102642,5.04901,22.1316,15.49,10441.4,80,104,12.99 +144,6,043011,102643,5.05002,22.1417,15.42,10439.1,80,98,12.98 +144,6,043011,102644,5.04878,22.1346,15.53,10436.2,75,96,13.01 +144,6,043011,102645,5.04847,22.1266,15.74,10435.0,75,105,13.01 +144,6,043011,102646,5.04849,22.1284,15.89,10436.7,78,101,13.01 +144,6,043011,102647,5.04867,22.1304,15.93,10436.3,78,103,13.00 +144,6,043011,102648,5.04867,22.1298,15.86,10434.8,77,104,12.95 +144,6,043011,102649,5.04884,22.1330,15.76,10435.5,77,102,12.99 +144,6,043011,102650,5.04844,22.1287,15.64,10434.1,79,103,12.98 +144,6,043011,102651,5.04835,22.1259,15.52,10434.2,78,104,12.95 +144,6,043011,102652,5.04849,22.1270,15.46,10435.7,75,103,13.00 +144,6,043011,102653,5.04835,22.1277,15.51,10434.8,80,107,12.99 +144,6,043011,102654,5.04833,22.1268,15.69,10434.4,77,100,12.99 +144,6,043011,102655,5.04847,22.1303,15.86,10435.0,77,106,12.98 +144,6,043011,102656,5.04846,22.1287,16.01,10433.2,74,103,12.97 +144,6,043011,102657,5.04847,22.1287,16.05,10433.7,74,106,12.98 +144,6,043011,102658,5.04799,22.1261,15.99,10436.0,78,104,12.99 +144,6,043011,102659,5.04827,22.1263,15.83,10434.8,79,98,12.98 +144,6,043011,102700,5.04810,22.1266,15.63,10436.4,78,107,12.99 +144,6,043011,102701,5.04782,22.1235,15.49,10436.6,75,107,12.95 +144,6,043011,102702,5.04878,22.1305,15.42,10435.8,76,101,12.98 +144,6,043011,102703,5.04833,22.1298,15.42,10435.6,82,106,12.99 +144,6,043011,102704,5.04821,22.1267,15.50,10436.1,78,103,12.98 +144,6,043011,102705,5.04830,22.1277,15.65,10437.2,75,102,12.93 +144,6,043011,102706,5.04818,22.1257,15.82,10436.6,75,109,12.98 +144,6,043011,102707,5.04830,22.1266,15.94,10436.6,75,107,12.97 +144,6,043011,102708,5.04830,22.1273,15.97,10438.6,78,105,12.97 +144,6,043011,102709,5.04881,22.1282,15.92,10438.6,78,108,12.95 +144,6,043011,102710,5.04895,22.1318,15.84,10436.9,77,101,12.96 +144,6,043011,102711,5.04884,22.1305,15.76,10437.2,80,101,12.98 +144,6,043011,102712,5.04926,22.1335,15.68,10438.2,76,105,12.97 +144,6,043011,102713,5.04923,22.1350,15.60,10437.0,78,110,12.98 +144,6,043011,102714,5.04937,22.1334,15.54,10437.1,80,106,12.92 +144,6,043011,102715,5.04935,22.1332,15.53,10436.9,81,98,12.97 +144,6,043011,102716,5.04915,22.1332,15.58,10435.2,77,102,12.98 +144,100,043011,102723,1,1,10,0,26,5,1006026,24,1,0,0,0,0,37,2,12.98 +144,100,043011,104040,1,1,3,11,15,5,1006026,24,1,0,0,0,0,37,2,14.02 +144,100,043011,104051,1,1,4,26,26,5,1006015,24,1,0,0,0,0,37,2,13.65 +144,4,043011,104051,0.00000,0.0000,0.00,0.0,0,0,13.43 +144,4,043011,104052,0.00000,0.0000,0.00,0.0,0,0,13.43 +144,4,043011,104053,0.00000,0.0000,0.00,0.0,0,0,13.43 +144,4,043011,104054,5.04708,22.1093,15.89,10161.4,0,0,13.41 +144,4,043011,104055,5.04693,22.1058,15.98,10210.9,0,0,13.41 +144,4,043011,104056,5.04671,22.1040,15.94,10251.8,0,0,13.40 +144,4,043011,104057,5.04638,22.1019,15.83,10284.2,0,0,13.40 +144,4,043011,104058,5.04634,22.1027,15.73,10309.5,0,0,13.40 +144,4,043011,104059,5.04632,22.1016,15.66,10331.2,0,0,13.39 +144,4,043011,104100,5.04668,22.1046,15.58,10349.0,0,0,13.39 +144,4,043011,104101,5.04674,22.1055,15.51,10362.2,0,0,13.39 +144,4,043011,104102,5.04702,22.1072,15.46,10373.9,0,0,13.39 +144,4,043011,104103,5.04705,22.1071,15.49,10384.2,0,0,13.39 +144,4,043011,104104,5.04688,22.1051,15.58,10391.5,0,0,13.38 +144,4,043011,104105,5.04685,22.1064,15.70,10397.1,0,0,13.38 +144,4,043011,104106,5.04694,22.1066,15.81,10402.2,0,0,13.38 +144,4,043011,104107,5.04691,22.1071,15.91,10408.0,0,0,13.37 +144,5,043011,104108,5.04690,22.1056,15.95,10411.2,0,0,13.37 +144,100,043011,104109,1,1,5,8,26,6,1006014,24,1,0,0,0,0,37,2,13.37 +144,5,043011,104109,5.04680,22.1057,15.88,10413.7,0,0,13.16 +144,5,043011,104110,5.04680,22.1059,15.70,10417.5,0,0,13.15 +144,5,043011,104111,5.04671,22.1051,15.49,10419.0,0,0,12.87 +144,5,043011,104112,5.04745,22.1107,15.32,10422.6,0,0,13.10 +144,5,043011,104113,5.04748,22.1107,15.27,10422.5,86,111,13.12 +144,5,043011,104114,5.04725,22.1100,15.37,10423.5,86,111,13.11 +144,5,043011,104115,5.04733,22.1113,15.58,10422.6,84,109,13.10 +144,6,043011,104116,5.04733,22.1083,15.85,10425.3,82,107,13.10 +144,100,043011,104117,1,1,6,60,26,7,1006014,24,1,0,0,0,0,37,2,13.10 +144,6,043011,104117,5.04722,22.1093,16.05,10425.2,80,99,13.10 +144,6,043011,104118,5.04728,22.1086,16.15,10426.0,88,100,13.09 +144,6,043011,104119,5.04728,22.1106,16.07,10426.8,89,106,13.09 +144,6,043011,104120,5.04736,22.1090,15.83,10426.7,86,101,13.09 +144,6,043011,104121,5.04725,22.1076,15.50,10427.8,89,111,13.08 +144,6,043011,104122,5.04725,22.1103,15.18,10431.5,93,103,13.08 +144,6,043011,104123,5.04725,22.1104,15.12,10431.4,91,101,13.07 +144,6,043011,104124,5.04722,22.1093,15.27,10431.5,83,108,13.07 +144,6,043011,104125,5.04728,22.1086,15.53,10431.1,83,101,13.07 +144,6,043011,104126,5.04728,22.1086,15.76,10430.8,83,99,13.06 +144,6,043011,104127,5.04725,22.1074,15.94,10430.1,95,101,13.06 +144,6,043011,104128,5.04728,22.1073,16.02,10432.0,89,105,13.06 +144,6,043011,104129,5.04731,22.1078,16.02,10431.9,90,102,13.05 +144,6,043011,104130,5.04687,22.1055,15.93,10432.5,86,105,13.05 +144,6,043011,104131,5.04670,22.1037,15.77,10433.1,87,110,13.05 +144,6,043011,104132,5.04691,22.1041,15.55,10434.1,91,101,13.05 +144,6,043011,104133,5.04691,22.1039,15.34,10433.1,86,98,13.04 +144,6,043011,104134,5.04722,22.1070,15.22,10434.6,88,110,13.04 +144,6,043011,104135,5.04708,22.1078,15.26,10432.8,91,109,13.03 +144,6,043011,104136,5.04713,22.1075,15.44,10431.5,85,100,13.03 +144,6,043011,104137,5.04714,22.1064,15.72,10433.4,87,107,13.03 +144,6,043011,104138,5.04708,22.1077,16.02,10432.9,84,100,13.03 +144,6,043011,104139,5.04711,22.1059,16.23,10434.6,90,105,13.03 +144,6,043011,104140,5.04711,22.1091,16.25,10435.9,87,108,13.02 +144,6,043011,104141,5.04714,22.1076,16.06,10435.5,90,101,13.02 +144,6,043011,104142,5.04677,22.1075,15.68,10436.3,86,104,13.02 +144,6,043011,104143,5.04708,22.1065,15.29,10437.1,86,102,13.01 +144,6,043011,104144,5.04699,22.1071,15.07,10436.8,91,105,13.02 +144,6,043011,104145,5.04725,22.1100,15.12,10437.9,88,109,13.01 +144,6,043011,104146,5.04711,22.1078,15.35,10438.9,86,110,13.01 +144,6,043011,104147,5.04711,22.1090,15.63,10437.2,87,123,13.00 +144,6,043011,104148,5.04702,22.1054,15.90,10436.7,83,101,13.00 +144,6,043011,104149,5.04699,22.1066,16.11,10437.6,88,100,13.00 +144,6,043011,104150,5.04702,22.1079,16.21,10437.8,90,98,13.00 +144,6,043011,104151,5.04688,22.1052,16.15,10437.0,91,109,12.99 +144,6,043011,104152,5.04666,22.1035,15.90,10437.3,86,104,12.99 +144,6,043011,104153,5.04680,22.1046,15.54,10438.2,88,106,12.99 +144,6,043011,104154,5.04699,22.1076,15.21,10440.6,91,98,12.99 +144,6,043011,104155,5.04702,22.1060,15.09,10439.7,87,100,12.99 +144,6,043011,104156,5.04707,22.1084,15.22,10439.2,90,104,12.98 +144,6,043011,104157,5.04711,22.1086,15.51,10435.7,87,104,12.98 +144,6,043011,104158,5.04708,22.1089,15.85,10436.4,90,100,12.98 +144,6,043011,104159,5.04717,22.1081,16.14,10437.1,88,103,12.98 +144,6,043011,104200,5.04728,22.1076,16.25,10438.8,86,97,12.98 +144,6,043011,104201,5.04671,22.1062,16.14,10437.1,90,102,12.98 +144,6,043011,104202,5.04699,22.1068,15.85,10437.7,89,107,12.97 +144,6,043011,104203,5.04691,22.1069,15.49,10438.0,88,100,12.97 +144,6,043011,104204,5.04694,22.1055,15.26,10437.3,91,97,12.97 +144,6,043011,104205,5.04694,22.1070,15.25,10437.5,85,96,12.97 +144,6,043011,104206,5.04699,22.1082,15.38,10437.8,87,109,12.97 +144,6,043011,104207,5.04701,22.1068,15.56,10437.6,79,102,12.97 +144,6,043011,104208,5.04694,22.1061,15.72,10436.8,85,103,12.96 +144,6,043011,104209,5.04702,22.1080,15.83,10436.9,90,106,12.96 +144,6,043011,104210,5.04694,22.1063,15.91,10438.6,93,109,12.96 +144,6,043011,104211,5.04697,22.1075,15.98,10438.6,88,101,12.96 +144,6,043011,104212,5.04691,22.1087,15.98,10438.3,89,101,12.96 +144,6,043011,104213,5.04660,22.1046,15.88,10436.0,88,104,12.96 +144,6,043011,104214,5.04640,22.1020,15.69,10436.0,90,98,12.95 +144,6,043011,104215,5.04626,22.1024,15.46,10438.9,89,101,12.95 +144,6,043011,104216,5.04660,22.1032,15.31,10439.0,90,106,12.95 +144,100,043011,104221,1,1,10,793,26,11,1006010,24,1,0,0,0,0,37,2,12.95 +144,100,043011,105540,1,1,3,11,15,11,1006010,24,1,0,0,0,0,37,2,14.03 +144,100,043011,105551,1,1,4,26,26,11,1006015,24,1,0,0,0,0,37,2,13.66 +144,4,043011,105551,0.00000,0.0000,0.00,0.0,0,0,13.44 +144,4,043011,105552,0.00000,0.0000,0.00,0.0,0,0,13.44 +144,4,043011,105553,0.00000,0.0000,0.00,0.0,0,0,13.43 +144,4,043011,105554,5.04759,22.1076,15.64,10132.9,0,0,13.43 +144,4,043011,105555,5.04745,22.1059,15.85,10184.6,0,0,13.43 +144,4,043011,105556,5.04725,22.1034,15.99,10228.7,0,0,13.43 +144,4,043011,105557,5.04784,22.1094,15.97,10263.4,0,0,13.43 +144,4,043011,105558,5.04807,22.1093,15.80,10292.2,0,0,13.43 +144,4,043011,105559,5.04765,22.1088,15.55,10316.9,0,0,13.42 +144,4,043011,105600,5.04759,22.1081,15.33,10334.2,0,0,13.42 +144,4,043011,105601,5.04759,22.1079,15.25,10346.6,0,0,13.42 +144,4,043011,105602,5.04750,22.1079,15.33,10361.4,0,0,13.41 +144,4,043011,105603,5.04753,22.1059,15.54,10372.0,0,0,13.41 +144,4,043011,105604,5.04759,22.1055,15.77,10380.6,0,0,13.41 +144,4,043011,105605,5.04762,22.1065,15.94,10388.4,0,0,13.41 +144,4,043011,105606,5.04759,22.1075,15.98,10392.1,0,0,13.41 +144,4,043011,105607,5.04745,22.1049,15.89,10396.5,0,0,13.40 +144,5,043011,105608,5.04742,22.1046,15.78,10399.2,0,0,13.40 +144,100,043011,105609,1,1,5,8,26,12,1006014,24,1,0,0,0,0,37,2,13.40 +144,5,043011,105609,5.04767,22.1064,15.67,10402.2,0,0,13.18 +144,5,043011,105610,5.04773,22.1083,15.56,10403.9,0,0,13.17 +144,5,043011,105611,5.04770,22.1072,15.47,10406.3,0,0,12.90 +144,5,043011,105612,5.04807,22.1109,15.39,10408.9,0,0,13.13 +144,5,043011,105613,5.04790,22.1091,15.40,10411.2,79,101,13.14 +144,5,043011,105614,5.04784,22.1081,15.49,10412.7,79,101,13.13 +144,5,043011,105615,5.04787,22.1077,15.65,10413.6,75,104,13.13 +144,6,043011,105616,5.04779,22.1089,15.74,10413.1,77,106,13.12 +144,100,043011,105617,1,1,6,60,26,12,1006014,24,1,0,0,0,0,37,2,13.12 +144,6,043011,105617,5.04770,22.1071,15.76,10415.4,91,91,13.12 +144,6,043011,105618,5.04770,22.1082,15.76,10416.1,86,105,13.12 +144,6,043011,105619,5.04713,22.1037,15.80,10414.8,83,102,13.11 +144,6,043011,105620,5.04728,22.1035,15.86,10417.4,78,98,13.11 +144,6,043011,105621,5.04722,22.1027,15.89,10416.4,85,102,13.11 +144,6,043011,105622,5.04699,22.1024,15.80,10417.1,83,109,13.10 +144,6,043011,105623,5.04652,22.0989,15.60,10418.0,84,108,13.10 +144,6,043011,105624,5.04629,22.0984,15.33,10419.8,82,105,13.09 +144,6,043011,105625,5.04646,22.1004,15.15,10421.0,82,109,13.09 +144,6,043011,105626,5.04649,22.0992,15.18,10420.9,80,115,13.09 +144,6,043011,105627,5.04660,22.0999,15.34,10423.3,86,115,13.08 +144,6,043011,105628,5.04646,22.0975,15.57,10421.3,80,103,13.08 +144,6,043011,105629,5.04654,22.0998,15.82,10421.7,84,103,13.08 +144,6,043011,105630,5.04650,22.0995,16.01,10422.9,79,97,13.07 +144,6,043011,105631,5.04634,22.0975,16.10,10422.1,86,100,13.07 +144,6,043011,105632,5.04620,22.0968,16.00,10423.6,81,109,13.07 +144,6,043011,105633,5.04609,22.0950,15.80,10427.1,83,109,13.07 +144,6,043011,105634,5.04637,22.0965,15.56,10423.6,87,111,13.06 +144,6,043011,105635,5.04617,22.0950,15.42,10426.3,85,102,13.06 +144,6,043011,105636,5.04697,22.1021,15.37,10425.4,83,103,13.06 +144,6,043011,105637,5.04690,22.1008,15.31,10427.6,90,100,13.05 +144,6,043011,105638,5.04699,22.1010,15.29,10424.2,86,101,13.05 +144,6,043011,105639,5.04699,22.1035,15.33,10424.7,86,109,13.05 +144,6,043011,105640,5.04688,22.1024,15.49,10425.7,83,107,13.04 +144,6,043011,105641,5.04690,22.1014,15.75,10423.3,86,106,13.04 +144,6,043011,105642,5.04688,22.1003,16.01,10426.5,88,106,13.04 +144,6,043011,105643,5.04685,22.1001,16.14,10424.9,85,101,13.04 +144,6,043011,105644,5.04671,22.1016,16.09,10425.4,87,103,13.03 +144,6,043011,105645,5.04668,22.1002,15.91,10425.4,85,102,13.03 +144,6,043011,105646,5.04719,22.1071,15.64,10425.7,86,101,13.03 +144,6,043011,105647,5.04719,22.1039,15.39,10425.8,91,105,13.03 +144,6,043011,105648,5.04733,22.1035,15.22,10427.7,82,102,13.03 +144,6,043011,105649,5.04759,22.1073,15.19,10427.0,81,103,13.02 +144,6,043011,105650,5.04736,22.1065,15.32,10424.9,83,102,13.02 +144,6,043011,105651,5.04736,22.1048,15.52,10425.2,86,104,13.02 +144,6,043011,105652,5.04736,22.1042,15.71,10424.2,86,107,13.02 +144,6,043011,105653,5.04702,22.1042,15.82,10424.9,87,104,13.01 +144,6,043011,105654,5.04680,22.1018,15.83,10426.0,82,102,13.01 +144,6,043011,105655,5.04620,22.0959,15.80,10426.9,87,103,13.01 +144,6,043011,105656,5.04603,22.0943,15.79,10425.7,84,110,13.01 +144,6,043011,105657,5.04620,22.0972,15.77,10426.2,84,99,13.00 +144,6,043011,105658,5.04651,22.0982,15.72,10425.8,89,102,13.00 +144,6,043011,105659,5.04753,22.1041,15.63,10426.6,89,103,13.00 +144,6,043011,105700,5.04787,22.1080,15.54,10427.2,86,109,13.00 +144,6,043011,105701,5.04770,22.1089,15.44,10427.6,89,102,13.00 +144,6,043011,105702,5.04790,22.1088,15.36,10427.3,86,104,12.99 +144,6,043011,105703,5.04771,22.1090,15.32,10425.2,84,97,13.00 +144,6,043011,105704,5.04745,22.1067,15.40,10426.7,85,115,13.00 +144,6,043011,105705,5.04748,22.1063,15.62,10425.1,87,104,12.99 +144,6,043011,105706,5.04759,22.1069,15.84,10424.3,86,102,12.99 +144,6,043011,105707,5.04756,22.1074,15.96,10423.6,88,102,12.99 +144,6,043011,105708,5.04697,22.1035,15.93,10424.5,84,103,12.99 +144,6,043011,105709,5.04609,22.0942,15.77,10424.2,84,104,12.98 +144,6,043011,105710,5.04606,22.0955,15.62,10424.1,88,104,12.98 +144,6,043011,105711,5.04603,22.0914,15.54,10423.6,87,102,12.98 +144,6,043011,105712,5.04629,22.0953,15.58,10425.3,84,96,12.98 +144,6,043011,105713,5.04629,22.0980,15.61,10424.3,83,112,12.98 +144,6,043011,105714,5.04624,22.0984,15.53,10424.7,85,118,12.97 +144,6,043011,105715,5.04626,22.0964,15.43,10425.9,86,111,12.97 +144,6,043011,105716,5.04629,22.0969,15.41,10424.7,86,104,12.97 +144,100,043011,105721,1,1,10,795,26,16,1006010,24,1,0,0,0,0,37,2,12.97 +144,100,043011,111040,1,1,3,11,15,16,1006010,24,1,0,0,0,0,37,2,14.03 +144,100,043011,111051,1,1,4,26,26,16,1005999,24,1,0,0,0,0,37,2,13.66 +144,4,043011,111051,0.00000,0.0000,0.00,0.0,0,0,13.44 +144,4,043011,111052,0.00000,0.0000,0.00,0.0,0,0,13.44 +144,4,043011,111053,0.00000,0.0000,0.00,0.0,0,0,13.44 +144,4,043011,111054,5.04612,22.0852,15.79,10150.7,0,0,13.43 +144,4,043011,111055,5.04612,22.0848,15.72,10195.8,0,0,13.43 +144,4,043011,111056,5.04629,22.0851,15.61,10232.7,0,0,13.43 +144,4,043011,111057,5.04623,22.0862,15.59,10259.8,0,0,13.43 +144,4,043011,111058,5.04634,22.0864,15.68,10282.1,0,0,13.43 +144,4,043011,111059,5.04654,22.0875,15.77,10299.8,0,0,13.43 +144,4,043011,111100,5.04618,22.0848,15.80,10314.3,0,0,13.42 +144,4,043011,111101,5.04514,22.0758,15.74,10327.0,0,0,13.42 +144,4,043011,111102,5.04581,22.0780,15.59,10336.5,0,0,13.42 +144,4,043011,111103,5.04501,22.0779,15.39,10344.0,0,0,13.41 +144,4,043011,111104,5.04629,22.0855,15.23,10351.4,0,0,13.41 +144,4,043011,111105,5.04649,22.0874,15.19,10355.5,0,0,13.41 +144,4,043011,111106,5.04586,22.0822,15.30,10359.4,0,0,13.41 +144,4,043011,111107,5.04612,22.0845,15.53,10363.5,0,0,13.41 +144,5,043011,111108,5.04589,22.0812,15.83,10366.1,0,0,13.41 +144,100,043011,111109,1,1,5,8,26,18,1005998,24,1,0,0,0,0,37,2,13.41 +144,5,043011,111109,5.04524,22.0749,16.08,10369.3,0,0,13.18 +144,5,043011,111110,5.04490,22.0715,16.14,10370.2,0,0,13.17 +144,5,043011,111111,5.04439,22.0622,16.01,10372.3,0,0,12.90 +144,5,043011,111112,5.04453,22.0611,15.72,10373.5,0,0,13.12 +144,5,043011,111113,5.04663,22.0819,15.40,10378.0,101,96,13.15 +144,5,043011,111114,5.04705,22.0950,15.19,10378.4,101,96,13.13 +144,5,043011,111115,5.04661,22.0903,15.19,10381.7,96,99,13.13 +144,6,043011,111116,5.04657,22.0878,15.30,10382.3,101,99,13.13 +144,100,043011,111117,1,1,6,60,26,18,1005998,24,1,0,0,0,0,37,2,13.13 +144,6,043011,111117,5.04682,22.0891,15.44,10385.1,91,94,13.13 +144,6,043011,111118,5.04685,22.0902,15.56,10385.8,92,103,13.12 +144,6,043011,111119,5.04676,22.0884,15.72,10385.9,91,107,13.12 +144,6,043011,111120,5.04685,22.0883,15.94,10387.4,98,107,13.11 +144,6,043011,111121,5.04535,22.0786,16.05,10387.4,97,106,13.11 +144,6,043011,111122,5.04524,22.0751,15.98,10388.6,97,106,13.11 +144,6,043011,111123,5.04606,22.0798,15.73,10388.0,98,102,13.10 +144,6,043011,111124,5.04572,22.0804,15.40,10390.2,97,106,13.10 +144,6,043011,111125,5.04668,22.0894,15.26,10391.6,98,107,13.10 +144,6,043011,111126,5.04638,22.0882,15.33,10391.0,93,104,13.09 +144,6,043011,111127,5.04654,22.0866,15.50,10391.2,96,95,13.08 +144,6,043011,111128,5.04666,22.0884,15.65,10392.5,95,99,13.08 +144,6,043011,111129,5.04632,22.0862,15.70,10391.4,92,105,13.08 +144,6,043011,111130,5.04643,22.0872,15.63,10392.2,94,101,13.08 +144,6,043011,111131,5.04668,22.0895,15.52,10392.9,98,104,13.07 +144,6,043011,111132,5.04668,22.0927,15.47,10394.2,96,102,13.07 +144,6,043011,111133,5.04666,22.0886,15.51,10394.5,91,106,13.06 +144,6,043011,111134,5.04654,22.0874,15.62,10395.0,93,106,13.07 +144,6,043011,111135,5.04671,22.0890,15.71,10393.4,94,100,13.06 +144,6,043011,111136,5.04660,22.0882,15.77,10393.6,95,106,13.06 +144,6,043011,111137,5.04641,22.0846,15.76,10393.4,103,98,13.05 +144,6,043011,111138,5.04629,22.0848,15.70,10394.3,97,105,13.05 +144,6,043011,111139,5.04629,22.0818,15.62,10395.1,98,115,13.05 +144,6,043011,111140,5.04615,22.0847,15.52,10395.2,94,105,13.05 +144,6,043011,111141,5.04708,22.0929,15.46,10392.9,98,105,13.04 +144,6,043011,111142,5.04674,22.0919,15.47,10394.2,90,99,13.04 +144,6,043011,111143,5.04634,22.0854,15.52,10393.3,90,103,13.04 +144,6,043011,111144,5.04632,22.0847,15.57,10394.5,92,102,13.04 +144,6,043011,111145,5.04612,22.0843,15.63,10391.8,94,107,13.03 +144,6,043011,111146,5.04581,22.0784,15.69,10390.9,96,106,13.03 +144,6,043011,111147,5.04581,22.0812,15.77,10391.9,106,95,13.03 +144,6,043011,111148,5.04572,22.0795,15.79,10390.4,97,103,13.02 +144,6,043011,111149,5.04530,22.0775,15.68,10391.2,92,108,13.02 +144,6,043011,111150,5.04773,22.0905,15.49,10393.2,98,111,13.02 +144,6,043011,111151,5.04849,22.1044,15.31,10395.2,98,103,13.02 +144,6,043011,111152,5.04869,22.1065,15.28,10396.0,97,108,13.02 +144,6,043011,111153,5.04790,22.1009,15.43,10395.7,94,100,13.02 +144,6,043011,111154,5.04804,22.1006,15.65,10395.8,96,112,13.01 +144,6,043011,111155,5.04748,22.0959,15.84,10396.0,99,103,13.01 +144,6,043011,111156,5.04680,22.0884,15.91,10395.9,100,103,13.01 +144,6,043011,111157,5.04586,22.0768,15.88,10395.8,90,108,13.01 +144,6,043011,111158,5.04564,22.0752,15.74,10395.4,97,102,13.00 +144,6,043011,111159,5.04603,22.0791,15.54,10396.8,96,102,13.00 +144,6,043011,111200,5.04646,22.0876,15.38,10393.9,95,104,13.00 +144,6,043011,111201,5.04651,22.0861,15.34,10394.1,93,100,13.00 +144,6,043011,111202,5.04651,22.0867,15.42,10394.0,97,110,13.00 +144,6,043011,111203,5.04651,22.0871,15.58,10392.8,88,107,12.99 +144,6,043011,111204,5.04651,22.0851,15.70,10395.7,88,97,13.00 +144,6,043011,111205,5.04683,22.0885,15.75,10394.7,96,100,12.99 +144,6,043011,111206,5.04583,22.0782,15.73,10394.4,85,102,12.99 +144,6,043011,111207,5.04615,22.0798,15.66,10396.2,90,103,12.99 +144,6,043011,111208,5.04688,22.0890,15.57,10394.3,90,105,12.99 +144,6,043011,111209,5.04717,22.0921,15.51,10394.8,94,102,12.98 +144,6,043011,111210,5.04685,22.0881,15.47,10395.7,96,101,12.98 +144,6,043011,111211,5.04719,22.0909,15.44,10393.8,96,102,12.98 +144,6,043011,111212,5.04748,22.0941,15.44,10395.7,89,100,12.98 +144,6,043011,111213,5.04714,22.0916,15.49,10395.2,90,103,12.97 +144,6,043011,111214,5.04711,22.0899,15.57,10396.0,107,107,12.98 +144,6,043011,111215,5.04714,22.0901,15.67,10395.5,94,100,12.98 +144,6,043011,111216,5.04725,22.0923,15.79,10396.2,87,99,12.98 +144,100,043011,111223,1,1,10,795,26,22,1005994,28,1,0,0,0,0,37,2,12.97 +144,100,043011,112540,1,1,3,11,15,22,1005994,28,1,0,0,0,0,37,2,14.03 +144,100,043011,112551,1,1,4,26,26,22,1005999,28,1,0,0,0,0,37,2,13.66 +144,4,043011,112551,0.00000,0.0000,0.00,0.0,0,0,13.44 +144,4,043011,112552,0.00000,0.0000,0.00,0.0,0,0,13.42 +144,4,043011,112553,0.00000,0.0000,0.00,0.0,0,0,13.41 +144,4,043011,112554,5.04969,22.1052,15.91,10114.2,0,0,13.42 +144,4,043011,112555,5.04974,22.1058,16.10,10163.1,0,0,13.41 +144,4,043011,112556,5.04980,22.1059,16.11,10202.8,0,0,13.41 +144,4,043011,112557,5.04951,22.1037,15.93,10238.0,0,0,13.41 +144,4,043011,112558,5.04983,22.1031,15.65,10266.2,0,0,13.40 +144,4,043011,112559,5.05059,22.1083,15.40,10287.7,0,0,13.40 +144,4,043011,112600,5.05082,22.1114,15.31,10303.2,0,0,13.40 +144,4,043011,112601,5.05036,22.1103,15.38,10318.3,0,0,13.40 +144,4,043011,112602,5.05062,22.1113,15.54,10329.4,0,0,13.40 +144,4,043011,112603,5.05079,22.1094,15.64,10338.5,0,0,13.39 +144,4,043011,112604,5.05068,22.1118,15.63,10346.2,0,0,13.39 +144,4,043011,112605,5.05065,22.1133,15.54,10352.7,0,0,13.39 +144,4,043011,112606,5.05085,22.1107,15.46,10355.2,0,0,13.39 +144,4,043011,112607,5.04940,22.1030,15.50,10362.2,0,0,13.39 +144,5,043011,112608,5.05008,22.1044,15.61,10364.2,0,0,13.38 +144,100,043011,112609,1,1,5,8,26,23,1005998,28,1,0,0,0,0,37,2,13.38 +144,5,043011,112609,5.05037,22.1103,15.71,10368.7,0,0,13.16 +144,5,043011,112610,5.05002,22.1084,15.73,10370.4,0,0,13.16 +144,5,043011,112611,5.04903,22.1000,15.69,10373.2,0,0,12.88 +144,5,043011,112612,5.04875,22.0971,15.63,10373.9,0,0,13.10 +144,5,043011,112613,5.04889,22.0984,15.64,10377.4,84,99,13.13 +144,5,043011,112614,5.04906,22.1004,15.68,10377.2,84,99,13.11 +144,5,043011,112615,5.04909,22.1008,15.67,10377.9,85,105,13.11 +144,6,043011,112616,5.04884,22.0976,15.58,10378.4,83,103,13.10 +144,100,043011,112617,1,1,6,60,26,24,1005998,28,1,0,0,0,0,37,2,13.10 +144,6,043011,112617,5.04903,22.0992,15.44,10379.4,84,103,13.10 +144,6,043011,112618,5.04895,22.0986,15.35,10381.0,85,100,13.09 +144,6,043011,112619,5.04903,22.1002,15.38,10381.9,87,103,13.09 +144,6,043011,112620,5.04903,22.1007,15.47,10382.4,85,99,13.09 +144,6,043011,112621,5.04917,22.1018,15.59,10383.2,81,103,13.09 +144,6,043011,112622,5.04912,22.0996,15.69,10384.6,87,107,13.08 +144,6,043011,112623,5.04923,22.1022,15.77,10385.1,88,104,13.08 +144,6,043011,112624,5.04926,22.1020,15.80,10384.7,85,101,13.08 +144,6,043011,112625,5.04912,22.1026,15.80,10384.7,88,102,13.08 +144,6,043011,112626,5.04878,22.0990,15.74,10386.0,86,115,13.07 +144,6,043011,112627,5.04867,22.0960,15.64,10386.9,89,103,13.07 +144,6,043011,112628,5.04878,22.0976,15.50,10386.2,85,105,13.06 +144,6,043011,112629,5.04946,22.1020,15.32,10387.1,85,100,13.06 +144,6,043011,112630,5.04935,22.1012,15.21,10388.0,85,102,13.05 +144,6,043011,112631,5.04943,22.1015,15.23,10388.7,83,101,13.05 +144,6,043011,112632,5.04960,22.1034,15.40,10390.2,79,100,13.05 +144,6,043011,112633,5.04935,22.1024,15.61,10389.0,85,104,13.05 +144,6,043011,112634,5.04951,22.1026,15.79,10389.9,85,102,13.04 +144,6,043011,112635,5.04991,22.1037,15.91,10389.5,86,100,13.04 +144,6,043011,112636,5.04977,22.1047,15.94,10392.4,87,111,13.04 +144,6,043011,112637,5.05090,22.1107,15.84,10391.5,87,100,13.04 +144,6,043011,112638,5.05107,22.1127,15.68,10392.0,86,96,13.03 +144,6,043011,112639,5.05011,22.1064,15.50,10390.5,82,96,13.03 +144,6,043011,112640,5.05059,22.1114,15.35,10390.5,87,103,13.02 +144,6,043011,112641,5.05051,22.1105,15.28,10388.7,82,99,13.02 +144,6,043011,112642,5.05003,22.1076,15.31,10388.0,79,110,13.02 +144,6,043011,112643,5.05011,22.1059,15.41,10389.3,88,112,13.02 +144,6,043011,112644,5.05000,22.1067,15.55,10387.1,82,101,13.02 +144,6,043011,112645,5.04963,22.1022,15.68,10388.8,86,101,13.01 +144,6,043011,112646,5.04909,22.1011,15.80,10388.4,78,100,13.01 +144,6,043011,112647,5.04954,22.1023,15.89,10388.5,88,113,13.01 +144,6,043011,112648,5.04971,22.1046,15.89,10388.2,78,101,13.00 +144,6,043011,112649,5.04864,22.0988,15.74,10390.5,87,102,13.00 +144,6,043011,112650,5.04881,22.0964,15.50,10389.9,89,101,13.00 +144,6,043011,112651,5.04974,22.1039,15.22,10390.6,87,103,13.00 +144,6,043011,112652,5.05130,22.1107,15.07,10390.0,83,105,13.00 +144,6,043011,112653,5.05119,22.1142,15.21,10391.1,82,105,12.99 +144,6,043011,112654,5.05051,22.1099,15.57,10389.2,86,100,12.99 +144,6,043011,112655,5.04994,22.1056,15.88,10389.5,87,102,12.99 +144,6,043011,112656,5.04966,22.1042,16.00,10391.9,80,99,12.99 +144,6,043011,112657,5.04966,22.1014,15.89,10389.8,89,104,12.99 +144,6,043011,112658,5.04940,22.1027,15.62,10390.3,92,104,12.98 +144,6,043011,112659,5.05011,22.1032,15.37,10388.2,85,102,12.98 +144,6,043011,112700,5.04994,22.1048,15.30,10389.0,87,100,12.98 +144,6,043011,112701,5.04966,22.1014,15.40,10390.2,88,99,12.98 +144,6,043011,112702,5.04976,22.1015,15.51,10390.2,81,110,12.98 +144,6,043011,112703,5.04980,22.1023,15.57,10389.7,87,99,12.97 +144,6,043011,112704,5.04886,22.0973,15.60,10387.8,80,93,12.97 +144,6,043011,112705,5.04875,22.0955,15.63,10386.9,91,97,12.97 +144,6,043011,112706,5.04895,22.0975,15.69,10386.1,88,100,12.97 +144,6,043011,112707,5.04881,22.0974,15.72,10387.7,82,102,12.97 +144,6,043011,112708,5.04867,22.0974,15.70,10386.6,83,103,12.96 +144,6,043011,112709,5.04878,22.0992,15.66,10387.2,87,102,12.96 +144,6,043011,112710,5.04875,22.0969,15.61,10388.2,91,105,12.96 +144,6,043011,112711,5.04849,22.0962,15.52,10388.3,89,100,12.96 +144,6,043011,112712,5.04790,22.0916,15.39,10388.7,91,98,12.96 +144,6,043011,112713,5.04799,22.0922,15.26,10387.5,83,162,12.96 +144,6,043011,112714,5.04801,22.0911,15.21,10388.0,78,100,12.96 +144,6,043011,112715,5.04804,22.0915,15.29,10387.4,86,106,12.95 +144,6,043011,112716,5.04813,22.0906,15.45,10389.2,86,104,12.95 +144,100,043011,112721,1,1,10,793,26,28,1005994,28,1,0,0,0,0,37,2,12.95 +144,100,043011,114040,1,1,3,11,15,28,1005994,28,1,0,0,0,0,37,2,14.03 +144,100,043011,114051,1,1,4,26,26,28,1005999,28,1,0,0,0,0,37,2,13.66 +144,4,043011,114051,0.00000,0.0000,0.00,0.0,0,0,13.44 +144,4,043011,114052,0.00000,0.0000,0.00,0.0,0,0,13.42 +144,4,043011,114053,0.00000,0.0000,0.00,0.0,0,0,13.42 +144,4,043011,114054,5.05816,22.1401,15.67,10012.1,0,0,13.42 +144,4,043011,114055,5.05873,22.1462,15.82,10075.2,0,0,13.42 +144,4,043011,114056,5.05868,22.1462,15.85,10128.7,0,0,13.41 +144,4,043011,114057,5.05856,22.1444,15.77,10174.4,0,0,13.41 +144,4,043011,114058,5.05900,22.1492,15.62,10209.2,0,0,13.41 +144,4,043011,114059,5.05947,22.1502,15.48,10238.6,0,0,13.41 +144,4,043011,114100,5.05956,22.1524,15.37,10262.5,0,0,13.40 +144,4,043011,114101,5.05936,22.1509,15.29,10280.6,0,0,13.40 +144,4,043011,114102,5.05984,22.1548,15.28,10295.4,0,0,13.40 +144,4,043011,114103,5.05936,22.1518,15.35,10308.1,0,0,13.39 +144,4,043011,114104,5.05918,22.1486,15.52,10316.8,0,0,13.39 +144,4,043011,114105,5.05902,22.1494,15.71,10325.4,0,0,13.39 +144,4,043011,114106,5.05868,22.1451,15.85,10330.3,0,0,13.39 +144,4,043011,114107,5.05865,22.1436,15.90,10336.1,0,0,13.39 +144,5,043011,114108,5.05805,22.1417,15.82,10341.1,0,0,13.39 +144,100,043011,114109,1,1,5,8,26,29,1005998,28,1,0,0,0,0,37,2,13.39 +144,5,043011,114109,5.05816,22.1416,15.67,10345.1,0,0,13.17 +144,5,043011,114110,5.05825,22.1425,15.48,10348.2,0,0,13.16 +144,5,043011,114111,5.05828,22.1417,15.35,10350.8,0,0,12.88 +144,5,043011,114112,5.05816,22.1422,15.34,10350.9,0,0,13.10 +144,5,043011,114113,5.05839,22.1428,15.41,10354.2,76,101,13.12 +144,5,043011,114114,5.05859,22.1461,15.47,10356.0,76,101,13.11 +144,5,043011,114115,5.05870,22.1472,15.45,10357.5,81,101,13.11 +144,6,043011,114116,5.05938,22.1507,15.40,10358.5,79,103,13.10 +144,100,043011,114117,1,1,6,60,26,29,1005998,28,1,0,0,0,0,37,2,13.10 +144,6,043011,114117,5.05936,22.1506,15.38,10359.8,81,102,13.10 +144,6,043011,114118,5.05893,22.1494,15.44,10363.3,75,98,13.09 +144,6,043011,114119,5.05876,22.1481,15.57,10363.7,79,99,13.09 +144,6,043011,114120,5.05882,22.1462,15.72,10364.1,79,104,13.09 +144,6,043011,114121,5.05873,22.1467,15.81,10364.1,84,99,13.09 +144,6,043011,114122,5.05856,22.1443,15.82,10365.6,79,105,13.08 +144,6,043011,114123,5.05865,22.1443,15.77,10366.6,84,104,13.08 +144,6,043011,114124,5.05811,22.1417,15.67,10365.8,84,100,13.08 +144,6,043011,114125,5.05845,22.1423,15.50,10365.6,82,101,13.07 +144,6,043011,114126,5.05836,22.1447,15.32,10368.0,83,100,13.07 +144,6,043011,114127,5.05862,22.1465,15.24,10369.2,86,106,13.07 +144,6,043011,114128,5.05859,22.1454,15.35,10368.3,82,105,13.06 +144,6,043011,114129,5.05859,22.1435,15.53,10368.8,81,107,13.06 +144,6,043011,114130,5.05876,22.1454,15.67,10369.3,79,97,13.06 +144,6,043011,114131,5.05876,22.1452,15.70,10369.6,78,104,13.05 +144,6,043011,114132,5.05836,22.1462,15.66,10368.4,82,98,13.05 +144,6,043011,114133,5.05813,22.1428,15.57,10369.6,83,99,13.05 +144,6,043011,114134,5.05819,22.1411,15.49,10371.3,81,101,13.04 +144,6,043011,114135,5.05899,22.1469,15.40,10372.8,85,98,13.04 +144,6,043011,114136,5.05927,22.1498,15.34,10371.8,80,98,13.03 +144,6,043011,114137,5.05907,22.1495,15.36,10372.1,79,101,13.03 +144,6,043011,114138,5.05867,22.1452,15.47,10370.1,83,105,13.03 +144,6,043011,114139,5.05882,22.1454,15.64,10372.9,80,98,13.03 +144,6,043011,114140,5.05879,22.1465,15.76,10371.2,82,99,13.03 +144,6,043011,114141,5.05899,22.1480,15.78,10371.8,83,100,13.02 +144,6,043011,114142,5.05910,22.1497,15.69,10371.7,85,99,13.02 +144,6,043011,114143,5.05836,22.1455,15.54,10373.3,79,98,13.02 +144,6,043011,114144,5.05896,22.1471,15.40,10370.9,88,102,13.02 +144,6,043011,114145,5.05865,22.1461,15.33,10371.7,85,97,13.01 +144,6,043011,114146,5.05845,22.1441,15.30,10372.5,76,104,13.01 +144,6,043011,114147,5.05879,22.1476,15.32,10369.0,85,105,13.01 +144,6,043011,114148,5.05879,22.1465,15.40,10371.7,79,100,13.00 +144,6,043011,114149,5.05850,22.1456,15.53,10370.4,81,101,13.01 +144,6,043011,114150,5.05851,22.1445,15.64,10369.8,82,106,13.00 +144,6,043011,114151,5.05842,22.1444,15.73,10371.7,77,102,13.00 +144,6,043011,114152,5.05853,22.1447,15.73,10370.4,82,97,13.00 +144,6,043011,114153,5.05833,22.1428,15.67,10371.8,79,91,13.00 +144,6,043011,114154,5.05856,22.1438,15.58,10370.2,79,100,13.00 +144,6,043011,114155,5.05822,22.1419,15.44,10371.0,86,108,12.99 +144,6,043011,114156,5.05831,22.1436,15.30,10370.7,85,103,12.99 +144,6,043011,114157,5.05831,22.1435,15.21,10372.3,91,120,12.99 +144,6,043011,114158,5.05839,22.1436,15.25,10371.1,83,103,12.99 +144,6,043011,114159,5.05845,22.1454,15.42,10372.4,85,98,12.98 +144,6,043011,114200,5.05842,22.1440,15.62,10372.2,80,101,12.98 +144,6,043011,114201,5.05833,22.1424,15.78,10371.9,79,103,12.98 +144,6,043011,114202,5.05808,22.1405,15.82,10370.8,80,97,12.98 +144,6,043011,114203,5.05811,22.1411,15.70,10373.9,81,97,12.98 +144,6,043011,114204,5.05814,22.1428,15.55,10372.6,79,100,12.98 +144,6,043011,114205,5.05802,22.1433,15.44,10373.8,83,98,12.97 +144,6,043011,114206,5.05811,22.1439,15.37,10372.4,81,98,12.97 +144,6,043011,114207,5.05813,22.1411,15.31,10373.1,80,105,12.97 +144,6,043011,114208,5.05816,22.1436,15.29,10373.1,83,101,12.97 +144,6,043011,114209,5.05833,22.1424,15.36,10371.2,81,98,12.97 +144,6,043011,114210,5.05836,22.1445,15.54,10372.4,80,102,12.96 +144,6,043011,114211,5.05839,22.1454,15.74,10373.4,82,97,12.96 +144,6,043011,114212,5.05848,22.1450,15.88,10373.5,77,93,12.96 +144,6,043011,114213,5.05860,22.1466,15.89,10374.2,82,100,12.96 +144,6,043011,114214,5.05913,22.1476,15.73,10374.8,81,98,12.96 +144,6,043011,114215,5.05936,22.1508,15.45,10376.4,80,97,12.96 +144,6,043011,114216,5.06015,22.1565,15.22,10376.2,81,106,12.95 +144,100,043011,114221,1,1,10,795,26,33,1005994,28,1,0,0,0,0,37,2,12.95 +144,100,043011,115540,1,1,3,11,15,33,1005994,28,1,0,0,0,0,37,2,14.03 +144,100,043011,115551,1,1,4,26,26,33,1005983,28,1,0,0,0,0,37,2,13.66 +144,4,043011,115551,0.00000,0.0000,0.00,0.0,0,0,13.44 +144,4,043011,115552,0.00000,0.0000,0.00,0.0,0,0,13.42 +144,4,043011,115553,0.00000,0.0000,0.00,0.0,0,0,13.42 +144,4,043011,115554,5.05300,22.0651,15.61,10054.0,0,0,13.42 +144,4,043011,115555,5.05306,22.0646,15.73,10099.9,0,0,13.42 +144,4,043011,115556,5.05317,22.0667,15.84,10138.3,0,0,13.41 +144,4,043011,115557,5.05323,22.0661,15.87,10168.7,0,0,13.41 +144,4,043011,115558,5.05331,22.0670,15.78,10193.6,0,0,13.40 +144,4,043011,115559,5.05309,22.0653,15.59,10213.6,0,0,13.40 +144,4,043011,115600,5.05048,22.0557,15.38,10227.6,0,0,13.40 +144,4,043011,115601,5.04844,22.0378,15.25,10239.9,0,0,13.40 +144,4,043011,115602,5.04838,22.0396,15.22,10252.7,0,0,13.40 diff --git a/test/readWQMraw/testReadWQMraw.m b/test/readWQMraw/testReadWQMraw.m new file mode 100644 index 000000000..ee4893c6d --- /dev/null +++ b/test/readWQMraw/testReadWQMraw.m @@ -0,0 +1,55 @@ +function testReadWQMraw() +%TESTREADWQMRAW exercises the function readWQMraw. This function parses +% WetLabs WQM generated files. +% +% Author: Guillaume Galibert +% + +% +% Copyright (C) 2017, Australian Ocean Data Network (AODN) and Integrated +% Marine Observing System (IMOS). +% +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation version 3 of the License. +% +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. + +% You should have received a copy of the GNU General Public License +% along with this program. +% If not, see . +% + +% we check that the instrument serial number is properly picked-up by the +% parser +testFilesInstruments = {... + 'WQM0045_016_v1.21_example.RAW', '45'; ... + 'WQM0047_003_v1.20_example.RAW', '47'; ... + 'WQM0048_004_v1.62_example.RAW', '48'; ... + 'WQM0049_000_v1.19_example.RAW', '49'; ... + 'WQM0052_014_fw1.21_example.Raw', '52'; ... + 'WQM0054_003_v1.62_example.RAW', '54'; ... + 'WQM0063_002_fw1.26_example.Raw', '63'; ... + 'WQM0063_1711_fw1.59_example.Raw', '63'; ... + 'WQM0064_003_fw1.59_example.Raw', '64'; ... + 'WQM0067_002_fw1.59_example.Raw', '67'; ... + 'WQM0140_002_fw1.26_example.Raw', '140'; ... + 'WQM0142_026_fw1.23_example.Raw', '142'; ... + 'WQM0144_015_fw1.20c_example.Raw', '144'}; + +for i=1:length(testFilesInstruments) + try + clear sample_data; + sample_data = readWQMraw(fullfile('test', 'readWQMraw', testFilesInstruments{i, 1}), 'timeSeries'); + assert(strcmp(sample_data.meta.instrument_serial_no, testFilesInstruments{i, 2}), ... + ['Failed to parse ' testFilesInstruments{i, 1}]); + catch ex + errorString = getErrorString(ex); + fprintf('%s\n', ['Error says : ' errorString]); + error(['Failed to parse ' testFilesInstruments{i, 1}]); + end +end +end \ No newline at end of file diff --git a/test/runTests.m b/test/runTests.m index c25d2f76c..33cb52051 100644 --- a/test/runTests.m +++ b/test/runTests.m @@ -36,6 +36,7 @@ function runTests() % run the unit tests testOxygenPP(); +testReadWQMraw(); testSBE19Parse(); end