diff --git a/AUTHORS.md b/AUTHORS.md new file mode 100644 index 0000000..fb8c80a --- /dev/null +++ b/AUTHORS.md @@ -0,0 +1,4 @@ +**NUCLEUS** is developed by + +* Stephan Costabel (since 2020), stephan.costabel@bgr.de +* Thomas Hiller (since 2018), thomas.hiller@bgr.de \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index b9fb491..2274cc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.1.14] - 2023-09-27 + +### Added +- New optional sub GUI *FixedTimeView* in **NUCLEUSinv** that allows to fix relaxation times (up to five) if the *N free exp. (2-5)* option for inversion is chosen and thus only the corresponding amplitudes are fitted +- New import routine in **NUCLEUSinv** for the LIAG core scanner (several NMR measurements along a core) + +### Changed +- Changed the import routines in **NUCLEUSinv** for *BGR* devices (*Mouse* and *Helios*) due to device software updates + ## [0.1.13] - 2022-08-11 ### Changed @@ -65,7 +74,7 @@ ### Added - A *last export* entry added to the export menu. It always shows the last chosen export routine (speeds up exporting when handling a lot of data). **NUCLEUSinv** -- Session files from an older *NUCLEUSinv* version can now be imported (starting from v.0.1.8). **NUCLEUSinv** +- Session files from an older **NUCLEUSinv** version can now be imported (starting from v.0.1.8). **NUCLEUSinv** ### Changed - Within the context menu of the signal list the entry *all* was renamed to *batch*. Now it indicates what it is actually doing - batch processing of multiple files. **NUCLEUSinv** @@ -181,6 +190,7 @@ Initial Version +[0.1.14]: https://github.com/ThoHiller/nmr-nucleus/compare/v.0.1.13...v.0.1.14 [0.1.13]: https://github.com/ThoHiller/nmr-nucleus/compare/v.0.1.12...v.0.1.13 [0.1.12]: https://github.com/ThoHiller/nmr-nucleus/compare/v.0.1.11...v.0.1.12 [0.1.11]: https://github.com/ThoHiller/nmr-nucleus/compare/v.0.1.10...v.0.1.11 diff --git a/NUCLEUSinv/NUCLEUSinv.m b/NUCLEUSinv/NUCLEUSinv.m index edc8bdd..0a0df4d 100644 --- a/NUCLEUSinv/NUCLEUSinv.m +++ b/NUCLEUSinv/NUCLEUSinv.m @@ -38,8 +38,8 @@ if ~isempty(h0); close(h0); end %% GUI 'header' info and defaults -myui.version = '0.1.13'; -myui.date = '11.08.2022'; +myui.version = '0.1.14'; +myui.date = '27.09.2023'; myui.author = {'Stephan Costabel','Thomas Hiller'}; myui.email = 'thomas.hiller[at]bgr.de'; myui.fontsize = 10; diff --git a/NUCLEUSinv/NUCLEUSinv_createMenus.m b/NUCLEUSinv/NUCLEUSinv_createMenus.m index b1c535a..e132cee 100644 --- a/NUCLEUSinv/NUCLEUSinv_createMenus.m +++ b/NUCLEUSinv/NUCLEUSinv_createMenus.m @@ -67,17 +67,17 @@ % 1.1.1.2.3 Mouse CPMG data, single data subfolders from CPMG gui.menu.file_import_lab_bgr_mouse_cpmg = uimenu(gui.menu.file_import_lab_bgr,... 'Label','MouseCPMG','Tag','Lab','Callback',@onMenuImport); -% 1.1.1.2.4 Mouse plus Lift, single data subfolder from t1test,... -% ...cpmgfastautotest, or (old Prospa Versions) cpmgfastauto -gui.menu.file_import_lab_bgr_mouse_liftsingle = uimenu(gui.menu.file_import_lab_bgr,... - 'Label','MouseLiftSingle','Tag','Lab','Callback',@onMenuImport); -% 1.1.1.2.5 Mouse plus Lift, all data subfolders from t1test,... +% 1.1.1.2.4 Mouse plus Lift, all data subfolders from t1test,... % cpmgfastautotest, or (old Prospa Versions) cpmgfastauto -gui.menu.file_import_lab_bgr_mouse_liftall = uimenu(gui.menu.file_import_lab_bgr,... - 'Label','MouseLiftAll','Tag','Lab','Callback',@onMenuImport); -% 1.1.1.2.6 Helios -gui.menu.file_import_lab_bgr_helios = uimenu(gui.menu.file_import_lab_bgr,... - 'Label','Helios','Tag','Lab','Callback',@onMenuImport); +gui.menu.file_import_lab_bgr_mouse_lift = uimenu(gui.menu.file_import_lab_bgr,... + 'Label','MouseLift','Tag','Lab','Callback',@onMenuImport); +% 1.1.1.2.5 Helios CPMG standard data, single subfolders with individual data files +gui.menu.file_import_lab_bgr_helios_cpmg = uimenu(gui.menu.file_import_lab_bgr,... + 'Label','HeliosCPMG','Tag','Lab','Callback',@onMenuImport); +% 1.1.1.2.6 Helios series of CPMG data, several files of a series in the target +% folder, as used e.g. for T1 measurements +gui.menu.file_import_lab_bgr_helios_series = uimenu(gui.menu.file_import_lab_bgr,... + 'Label','HeliosSeries','Tag','Lab','Callback',@onMenuImport); % 1.1.1.3 LIAG gui.menu.file_import_lab_liag = uimenu(gui.menu.file_import_lab,... @@ -88,6 +88,9 @@ % 1.1.1.3.2 LIAG gui.menu.file_import_lab_liag_project = uimenu(gui.menu.file_import_lab_liag,... 'Label','LIAG from project','Tag','Lab','Callback',@onMenuImport); +% 1.1.1.3.3 LIAG +gui.menu.file_import_lab_liag_core = uimenu(gui.menu.file_import_lab_liag,... + 'Label','LIAG core','Tag','Lab','Callback',@onMenuImport); % 1.1.1.4 RWTH gui.menu.file_import_lab_rwth = uimenu(gui.menu.file_import_lab,... @@ -203,6 +206,9 @@ % 1.2.1.9 LIAG CSV T2 gui.menu.file_export_data_liag_csvT2 = uimenu(gui.menu.file_export_data,... 'Label','LIAG CSV T2','Callback',@onMenuExportData); +% 1.2.1.10 BGR data repository ascii +gui.menu.file_export_data_bgr_repo = uimenu(gui.menu.file_export_data,... + 'Label','BGR repository','Callback',@onMenuExportData); % 1.2.2 Graphics gui.menu.file_export_graphics = uimenu(gui.menu.file_export,... @@ -306,6 +312,9 @@ % 2.7 ConductVIEW -> hydraulic conductivity gui.menu.extra_conduct = uimenu(gui.menu.view,... 'Label','ConductView GUI','Enable','off','Callback',@onMenuViewFigures); +% 2.8 FixedTime VIEW +gui.menu.extra_fixedtime = uimenu(gui.menu.view,... + 'Label','FixedTimeView GUI','Enable','off','Callback',@FixedTimeView); %% 3. Extras gui.menu.extra = uimenu(gui.figh,... diff --git a/NUCLEUSinv/NUCLEUSinv_loadDefaults.m b/NUCLEUSinv/NUCLEUSinv_loadDefaults.m index 5e3985b..38b8a15 100644 --- a/NUCLEUSinv/NUCLEUSinv_loadDefaults.m +++ b/NUCLEUSinv/NUCLEUSinv_loadDefaults.m @@ -103,6 +103,9 @@ out.invstd.invtype = 'NNLS'; % when inversion method is 'free' choose No. of free relaxation times out.invstd.freeDT = 2; +% option to fix some of the 'free' relaxation times to a certain value +out.invstd.Tfixed_bool = [0 0 0 0 0]; +out.invstd.Tfixed_val = [0 0 0 0 0]; % regularization options for multi-exponential fitting routines % 'NNLS' and 'LU' out.invstd.regtype = 'manual'; diff --git a/NUCLEUSinv/NUCLEUSinv_updateInterface.m b/NUCLEUSinv/NUCLEUSinv_updateInterface.m index 9141613..b47f550 100644 --- a/NUCLEUSinv/NUCLEUSinv_updateInterface.m +++ b/NUCLEUSinv/NUCLEUSinv_updateInterface.m @@ -102,7 +102,7 @@ 'Value',data.invstd.freeDT,... 'String',{'1','2','3','4','5'}); set(gui.text_handles.invstd_InvTypeOpt,... - 'String','No. of free decay times T'); + 'String','No. of free relaxation times T'); % lambda, smoothness constraint and RTD limits gui = updateLambda(gui,data.invstd.regtype,0,0,0); @@ -586,7 +586,7 @@ 'Value',data.invstd.freeDT,... 'String',{'1','2','3','4','5'}); set(gui.text_handles.invstd_InvTypeOpt,... - 'String','No. of free decay times T'); + 'String','No. of relaxation decay times T'); % lambda, smoothness constraint and RTD limits gui = updateLambda(gui,data.invstd.regtype,0,0,0); @@ -675,22 +675,19 @@ switch gatetype - case 'log' - + case 'log' set(gui.radio_handles.process_gates_log,'Value',1); set(gui.radio_handles.process_gates_lin,'Value',0); set(gui.radio_handles.process_gates_none,'Value',0); set(gui.edit_handles.process_Nechoes,'Enable','on'); - case 'lin' - + case 'lin' set(gui.radio_handles.process_gates_log,'Value',0); set(gui.radio_handles.process_gates_lin,'Value',1); set(gui.radio_handles.process_gates_none,'Value',0); set(gui.edit_handles.process_Nechoes,'Enable','on'); - case 'raw' - + case 'raw' set(gui.radio_handles.process_gates_log,'Value',0); set(gui.radio_handles.process_gates_lin,'Value',0); set(gui.radio_handles.process_gates_none,'Value',1); diff --git a/NUCLEUSmod/NUCLEUSmod.m b/NUCLEUSmod/NUCLEUSmod.m index 9ed5920..1b1d52a 100644 --- a/NUCLEUSmod/NUCLEUSmod.m +++ b/NUCLEUSmod/NUCLEUSmod.m @@ -41,8 +41,8 @@ if ~isempty(h0); close(h0); end %% GUI 'header' info and defaults -myui.version = '0.1.13'; -myui.date = '11.08.2022'; +myui.version = '0.1.14'; +myui.date = '27.09.2023'; myui.author = {'Stephan Costabel','Thomas Hiller'}; myui.email = 'thomas.hiller[at]bgr.de'; myui.fontsize = 10; diff --git a/README.md b/README.md index ec75e0e..4c0cd75 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ In no particular order and without guarantee that it will ever happen :-) : ### Cite as If you use NUCLEUS for your research, please cite it as: -Thomas Hiller. (2022, Aug 11). ThoHiller/nmr-nucleus: v0.1.13 (Version v0.1.13). Zenodo. [https://doi.org/10.5281/zenodo.4022195] +Thomas Hiller. (2023, Sep 27). ThoHiller/nmr-nucleus: v0.1.14 (Version v0.1.14). Zenodo. [https://doi.org/10.5281/zenodo.4022195] Note: Even though the version number might change due to updates, this DOI is permanent (represents all versions) and always links to the latest version. diff --git a/callbacks/listboxes/onListboxData.m b/callbacks/listboxes/onListboxData.m index 07706f7..1adc6b3 100644 --- a/callbacks/listboxes/onListboxData.m +++ b/callbacks/listboxes/onListboxData.m @@ -69,6 +69,13 @@ function onListboxData(src,~) data_upd.calib = data.calib; data_upd.pressure = data.pressure; data = data_upd; + + % if "mono" or "free" inversion is chossen update the internal + % fixed relaxation times field + if strcmp(data.invstd.invtype,'mono') ||... + strcmp(data.invstd.invtype,'free') + data.invstd.Tfixed_val = [data.results.invstd.T zeros(1,5-data.invstd.freeDT)]; + end setappdata(fig,'data',data); % update interface and plot axes @@ -190,6 +197,10 @@ function onListboxData(src,~) if ~isempty(findobj('Tag','PHASEVIEW')) PhaseView(gui.menu.extra_phaseview); end + % if the FixedTimeView window is open update it + if ~isempty(findobj('Tag','FIXEDTIMEVIEW')) + FixedTimeView(gui.menu.extra_fixedtime); + end else helpdlg({'onListboxData:','Only choose one data set at a time.'},... 'too many data'); diff --git a/callbacks/menus/onMenuExpert.m b/callbacks/menus/onMenuExpert.m index f566e50..f7505cf 100644 --- a/callbacks/menus/onMenuExpert.m +++ b/callbacks/menus/onMenuExpert.m @@ -55,6 +55,17 @@ function onMenuExpert(src,~) % update GUI data setappdata(fig,'data',data); setappdata(fig,'gui',gui); + + % dectivate FixedTime View GUI + data.invstd.Tfixed_bool = zeros(1,5); + data.invstd.Tfixed_val = zeros(1,5); + setappdata(fig,'data',data); + % check if the figure is already open + fig_fixedtime = findobj('Tag','FIXEDTIMEVIEW'); + if ~isempty(fig_fixedtime) + delete(fig_fixedtime); + end + set(gui.menu.extra_fixedtime,'Enable','off'); % deactivate solver menu and set to default onMenuSolver(gui.menu.extra_solver_lsqnonneg); @@ -87,7 +98,10 @@ function onMenuExpert(src,~) data.info.ExpertMode = 'on'; % menu entry set(gui.menu.extra_expert,'Checked','on'); - + + % activate FixedTime View GUI + set(gui.menu.extra_fixedtime,'Enable','on'); + % activate solver menu if optimization toolbox is available switch data.info.has_optim case 'on' diff --git a/callbacks/menus/onMenuExportData.m b/callbacks/menus/onMenuExportData.m index 9765c05..7d562b0 100644 --- a/callbacks/menus/onMenuExportData.m +++ b/callbacks/menus/onMenuExportData.m @@ -58,7 +58,9 @@ function onMenuExportData(src,~) case 'LIAG archive' exportData(fig_tag,'LIAG'); case 'LIAG CSV T2' - exportData(fig_tag,'LIAGcsvT2'); + exportData(fig_tag,'LIAGcsvT2'); + case 'BGR repository' + exportData(fig_tag,'BGR_repos'); end % update the "last export" value within the ini-file gui = getappdata(fig,'gui'); diff --git a/callbacks/menus/onMenuExtraColor.m b/callbacks/menus/onMenuExtraColor.m index 2c0860a..0fcb813 100644 --- a/callbacks/menus/onMenuExtraColor.m +++ b/callbacks/menus/onMenuExtraColor.m @@ -33,7 +33,6 @@ function onMenuExtraColor(src,~) fig = ancestor(src,'figure','toplevel'); fig_tag = get(fig,'Tag'); gui = getappdata(fig,'gui'); -data = getappdata(fig,'data'); % get the menu label label = get(src,'Label'); @@ -65,6 +64,11 @@ function onMenuExtraColor(src,~) % adjust the colors changeColorTheme(fig_tag,label); +% check the sub GUIs +if ~isempty(findobj('Tag','FIXEDTIMEVIEW')) + changeColorTheme('FIXEDTIMEVIEW',label); +end + end %------------- END OF CODE -------------- diff --git a/callbacks/popup/onPopupInvstdType.m b/callbacks/popup/onPopupInvstdType.m index fe4c6ee..f646451 100644 --- a/callbacks/popup/onPopupInvstdType.m +++ b/callbacks/popup/onPopupInvstdType.m @@ -47,12 +47,32 @@ function onPopupInvstdType(src,~) data.invstd.invtype = 'mono'; data.invstd.regtype = 'none'; data.invstd.lambda = 1; + data.invstd.freeDT = 1; + +% % if the FixedTimeView window is open update it +% if ~isempty(findobj('Tag','FIXEDTIMEVIEW')) +% data.invstd.Tfixed_bool = zeros(1,5); +% % update GUI data +% setappdata(fig,'data',data); +% FixedTimeView(gui.menu.extra_fixedtime); +% data = getappdata(fig,'data'); +% end case 2 data.invstd.invtype = 'free'; data.invstd.regtype = 'none'; data.invstd.lambda = 1; - + data.invstd.freeDT = 2; + +% % if the FixedTimeView window is open update it +% if ~isempty(findobj('Tag','FIXEDTIMEVIEW')) +% data.invstd.Tfixed_bool = zeros(1,5); +% % update GUI data +% setappdata(fig,'data',data); +% FixedTimeView(gui.menu.extra_fixedtime); +% data = getappdata(fig,'data'); +% end + case 3 data.invstd.invtype = 'NNLS'; data.invstd.regtype = 'manual'; @@ -75,11 +95,13 @@ function onPopupInvstdType(src,~) data.invstd.invtype = 'mono'; data.invstd.regtype = 'none'; data.invstd.lambda = 1; + data.invstd.freeDT = 1; case 2 data.invstd.invtype = 'free'; data.invstd.regtype = 'none'; data.invstd.lambda = 1; + data.invstd.freeDT = 2; case 3 data.invstd.invtype = 'NNLS'; @@ -107,6 +129,16 @@ function onPopupInvstdType(src,~) data.invstd.lambda = 1; end end + +% if the FixedTimeView window is open update it +if ~isempty(findobj('Tag','FIXEDTIMEVIEW')) + data.invstd.Tfixed_bool = zeros(1,5); + % update GUI data + setappdata(fig,'data',data); + FixedTimeView(gui.menu.extra_fixedtime); + data = getappdata(fig,'data'); +end + % update GUI data setappdata(fig,'data',data); % update interface diff --git a/callbacks/popup/onPopupInvstdTypeOptional.m b/callbacks/popup/onPopupInvstdTypeOptional.m index e9b6278..39371ca 100644 --- a/callbacks/popup/onPopupInvstdTypeOptional.m +++ b/callbacks/popup/onPopupInvstdTypeOptional.m @@ -46,8 +46,16 @@ function onPopupInvstdTypeOptional(src,~) % change settings accordingly switch invtype case 'free' - % # free decay times = value (1 to 5) + % # free relaxation times = value (1 to 5) data.invstd.freeDT = value; + + % if the FixedTimeView window is open update it + if ~isempty(findobj('Tag','FIXEDTIMEVIEW')) + % update GUI data + setappdata(fig,'data',data); + FixedTimeView(gui.menu.extra_fixedtime); + data = getappdata(fig,'data'); + end case 'NNLS' switch data.info.ExpertMode diff --git a/doc/menu.html b/doc/menu.html index 1cd7e85..2a650a4 100644 --- a/doc/menu.html +++ b/doc/menu.html @@ -16,7 +16,7 @@

Matlab Index

Matlab Directories

- +
Generated by m2html © 2005
diff --git a/doc/nucleus/NUCLEUSinv/NUCLEUSinv.html b/doc/nucleus/NUCLEUSinv/NUCLEUSinv.html index 38415d7..84214d8 100644 --- a/doc/nucleus/NUCLEUSinv/NUCLEUSinv.html +++ b/doc/nucleus/NUCLEUSinv/NUCLEUSinv.html @@ -111,8 +111,8 @@

SOURCE CODE ^if ~isempty(h0); close(h0); end 0039 0040 %% GUI 'header' info and defaults -0041 myui.version = '0.1.13'; -0042 myui.date = '11.08.2022'; +0041 myui.version = '0.1.14'; +0042 myui.date = '27.09.2023'; 0043 myui.author = {'Stephan Costabel','Thomas Hiller'}; 0044 myui.email = 'thomas.hiller[at]bgr.de'; 0045 myui.fontsize = 10; diff --git a/doc/nucleus/NUCLEUSinv/NUCLEUSinv_createMenus.html b/doc/nucleus/NUCLEUSinv/NUCLEUSinv_createMenus.html index 5cd56ee..fd8a866 100644 --- a/doc/nucleus/NUCLEUSinv/NUCLEUSinv_createMenus.html +++ b/doc/nucleus/NUCLEUSinv/NUCLEUSinv_createMenus.html @@ -59,7 +59,7 @@

DESCRIPTION ^CROSS-REFERENCE INFORMATION ^

This function calls: +
  • onMenuExpert handles the call from the menu that activates / deactivates
  • onMenuExportData handles the calls from the export menu
  • onMenuExportGraphics handles the graphics export menu and calls the export
  • onMenuExtraColor handles the color theme menu of both GUIs
  • onMenuExtraRhoBounds sets inversion bounds for the surface relaxivity
  • onMenuHelp shows the Help Information for both GUIs
  • onMenuImport handles the import menu entries
  • onMenuJointInversion handles the call from the menu that activates / deactivates
  • onMenuRestartQuit restarts or closes the GUIs
  • onMenuSolver handles the call from the menu that allows to choose the LSQ
  • onMenuView handles the view menu entries
  • onMenuViewFigures handles the extra menu entries to show additional
  • FixedTimeView is an extra subGUI to fix certain relaxation times during
  • PhaseView is an extra subGUI to visualize the phase of a T2 signal
  • This function is called by: @@ -137,17 +137,17 @@

    SOURCE CODE ^% 1.1.1.2.3 Mouse CPMG data, single data subfolders from CPMG 0068 gui.menu.file_import_lab_bgr_mouse_cpmg = uimenu(gui.menu.file_import_lab_bgr,... 0069 'Label','MouseCPMG','Tag','Lab','Callback',@onMenuImport); -0070 % 1.1.1.2.4 Mouse plus Lift, single data subfolder from t1test,... -0071 % ...cpmgfastautotest, or (old Prospa Versions) cpmgfastauto -0072 gui.menu.file_import_lab_bgr_mouse_liftsingle = uimenu(gui.menu.file_import_lab_bgr,... -0073 'Label','MouseLiftSingle','Tag','Lab','Callback',@onMenuImport); -0074 % 1.1.1.2.5 Mouse plus Lift, all data subfolders from t1test,... -0075 % cpmgfastautotest, or (old Prospa Versions) cpmgfastauto -0076 gui.menu.file_import_lab_bgr_mouse_liftall = uimenu(gui.menu.file_import_lab_bgr,... -0077 'Label','MouseLiftAll','Tag','Lab','Callback',@onMenuImport); -0078 % 1.1.1.2.6 Helios -0079 gui.menu.file_import_lab_bgr_helios = uimenu(gui.menu.file_import_lab_bgr,... -0080 'Label','Helios','Tag','Lab','Callback',@onMenuImport); +0070 % 1.1.1.2.4 Mouse plus Lift, all data subfolders from t1test,... +0071 % cpmgfastautotest, or (old Prospa Versions) cpmgfastauto +0072 gui.menu.file_import_lab_bgr_mouse_lift = uimenu(gui.menu.file_import_lab_bgr,... +0073 'Label','MouseLift','Tag','Lab','Callback',@onMenuImport); +0074 % 1.1.1.2.5 Helios CPMG standard data, single subfolders with individual data files +0075 gui.menu.file_import_lab_bgr_helios_cpmg = uimenu(gui.menu.file_import_lab_bgr,... +0076 'Label','HeliosCPMG','Tag','Lab','Callback',@onMenuImport); +0077 % 1.1.1.2.6 Helios series of CPMG data, several files of a series in the target +0078 % folder, as used e.g. for T1 measurements +0079 gui.menu.file_import_lab_bgr_helios_series = uimenu(gui.menu.file_import_lab_bgr,... +0080 'Label','HeliosSeries','Tag','Lab','Callback',@onMenuImport); 0081 0082 % 1.1.1.3 LIAG 0083 gui.menu.file_import_lab_liag = uimenu(gui.menu.file_import_lab,... @@ -158,337 +158,346 @@

    SOURCE CODE ^% 1.1.1.3.2 LIAG 0089 gui.menu.file_import_lab_liag_project = uimenu(gui.menu.file_import_lab_liag,... 0090 'Label','LIAG from project','Tag','Lab','Callback',@onMenuImport); -0091 -0092 % 1.1.1.4 RWTH -0093 gui.menu.file_import_lab_rwth = uimenu(gui.menu.file_import_lab,... -0094 'Label','RWTH'); -0095 % 1.1.1.4.1 IBAC -0096 gui.menu.file_import_lab_ibac = uimenu(gui.menu.file_import_lab_rwth,... -0097 'Label','IBAC'); -0098 % 1.1.1.4.1.1 IBAC -0099 gui.menu.file_import_lab_ibac_pm5 = uimenu(gui.menu.file_import_lab_ibac,... -0100 'Label','PM5','Tag','Lab','Callback',@onMenuImport); -0101 % 1.1.1.4.1.2 IBAC -0102 gui.menu.file_import_lab_ibac_pm25 = uimenu(gui.menu.file_import_lab_ibac,... -0103 'Label','PM25','Tag','Lab','Callback',@onMenuImport); -0104 -0105 % 1.1.1.4.2 GGE -0106 gui.menu.file_import_lab_gge = uimenu(gui.menu.file_import_lab_rwth,... -0107 'Label','GGE'); -0108 % 1.1.1.4.2.1 GGE ascii -0109 gui.menu.file_import_lab_gge_ascii = uimenu(gui.menu.file_import_lab_gge,... -0110 'Label','GGE ascii','Tag','Lab','Callback',@onMenuImport); -0111 % 1.1.1.4.2.2 GGE field -0112 gui.menu.file_import_lab_gge_field = uimenu(gui.menu.file_import_lab_gge,... -0113 'Label','GGE field','Tag','Lab','Callback',@onMenuImport); -0114 % 1.1.1.4.2.3 GGE Dart -0115 gui.menu.file_import_lab_gge_dart = uimenu(gui.menu.file_import_lab_gge,... -0116 'Label','GGE Dart','Tag','Lab','Callback',@onMenuImport); -0117 -0118 % 1.1.1.5 OTHER -0119 gui.menu.file_import_lab_other = uimenu(gui.menu.file_import_lab,... -0120 'Label','OTHER'); -0121 % 1.1.1.5.1 CoreLab ascii -0122 gui.menu.file_import_lab_corelab = uimenu(gui.menu.file_import_lab_other,... -0123 'Label','CoreLab ascii','Tag','Lab','Callback',@onMenuImport); -0124 % 1.1.1.5.2 MOUSE -0125 gui.menu.file_import_lab_mouse = uimenu(gui.menu.file_import_lab_other,... -0126 'Label','MOUSE','Tag','Lab','Callback',@onMenuImport); -0127 % 1.1.1.5.3 DART (University of Vienna) -0128 gui.menu.file_import_lab_dart = uimenu(gui.menu.file_import_lab_other,... -0129 'Label','DART','Tag','Lab','Callback',@onMenuImport); -0130 -0131 % 1.1.2 Ascii -0132 gui.menu.file_import_ascii = uimenu(gui.menu.file_import,... -0133 'Label','Ascii'); -0134 % 1.1.2.1 T1 -0135 gui.menu.file_import_lab_ascii_T1 = uimenu(gui.menu.file_import_ascii,... -0136 'Label','T1','Tag','Ascii','Callback',@onMenuImport); -0137 % 1.1.2.2 T2 -0138 gui.menu.file_import_lab_ascii_T2 = uimenu(gui.menu.file_import_ascii,... -0139 'Label','T2','Tag','Ascii','Callback',@onMenuImport); -0140 -0141 % 1.1.3 Excel -0142 gui.menu.file_import_excel = uimenu(gui.menu.file_import,... -0143 'Label','Excel'); -0144 % 1.1.3.1 T1 -0145 gui.menu.file_import_lab_excel_T1 = uimenu(gui.menu.file_import_excel,... -0146 'Label','T1','Tag','Excel','Callback',@onMenuImport); -0147 % 1.1.3.2 T2 -0148 gui.menu.file_import_lab_excel_T2 = uimenu(gui.menu.file_import_excel,... -0149 'Label','T2','Tag','Excel','Callback',@onMenuImport); -0150 -0151 % 1.1.4 NUCLEUSinv -0152 gui.menu.file_import_nmrinv = uimenu(gui.menu.file_import,... -0153 'Label','NUCLEUSinv','Separator','on'); -0154 % 1.1.4.1 NUCLEUSinv session file -0155 gui.menu.file_import_nmrinv_file = uimenu(gui.menu.file_import_nmrinv,... -0156 'Label','Session','Tag','NUCLEUSinv','Callback',@onMenuImport); -0157 -0158 % 1.1.5 NUCLEUSmod -0159 gui.menu.file_import_nmrmod = uimenu(gui.menu.file_import,... -0160 'Label','NUCLEUSmod'); -0161 % 1.1.5.1 NUCLEUSmod from file -0162 gui.menu.file_import_nmrmod_file = uimenu(gui.menu.file_import_nmrmod,... -0163 'Label','File','Tag','NUCLEUSmod','Callback',@onMenuImport); -0164 % 1.1.5.2 NUCLEUSmod from GUI -0165 gui.menu.file_import_nmrmod_gui = uimenu(gui.menu.file_import_nmrmod,.... -0166 'Label','GUI','Tag','NUCLEUSmod','Callback',@onMenuImport); -0167 -0168 % 1.2 Export -0169 gui.menu.file_export = uimenu(gui.menu.file,... -0170 'Label','Export'); -0171 % 1.2.0 Last export -0172 lastexport = gui.myui.inidata.lastexport; -0173 gui.menu.file_export_lastexport = uimenu(gui.menu.file_export,... -0174 'Label',lastexport,'Callback',@onMenuExportData); -0175 % 1.2.1 Data -0176 gui.menu.file_export_data = uimenu(gui.menu.file_export,... -0177 'Label','Data'); -0178 % 1.2.1.1 GUI raw data mat-file -0179 gui.menu.file_export_data_GUImat = uimenu(gui.menu.file_export_data,... -0180 'Label','NUCLEUSinv (raw)','Callback',@onMenuExportData); -0181 % 1.2.1.2 GUI session mat-file +0091 % 1.1.1.3.3 LIAG +0092 gui.menu.file_import_lab_liag_core = uimenu(gui.menu.file_import_lab_liag,... +0093 'Label','LIAG core','Tag','Lab','Callback',@onMenuImport); +0094 +0095 % 1.1.1.4 RWTH +0096 gui.menu.file_import_lab_rwth = uimenu(gui.menu.file_import_lab,... +0097 'Label','RWTH'); +0098 % 1.1.1.4.1 IBAC +0099 gui.menu.file_import_lab_ibac = uimenu(gui.menu.file_import_lab_rwth,... +0100 'Label','IBAC'); +0101 % 1.1.1.4.1.1 IBAC +0102 gui.menu.file_import_lab_ibac_pm5 = uimenu(gui.menu.file_import_lab_ibac,... +0103 'Label','PM5','Tag','Lab','Callback',@onMenuImport); +0104 % 1.1.1.4.1.2 IBAC +0105 gui.menu.file_import_lab_ibac_pm25 = uimenu(gui.menu.file_import_lab_ibac,... +0106 'Label','PM25','Tag','Lab','Callback',@onMenuImport); +0107 +0108 % 1.1.1.4.2 GGE +0109 gui.menu.file_import_lab_gge = uimenu(gui.menu.file_import_lab_rwth,... +0110 'Label','GGE'); +0111 % 1.1.1.4.2.1 GGE ascii +0112 gui.menu.file_import_lab_gge_ascii = uimenu(gui.menu.file_import_lab_gge,... +0113 'Label','GGE ascii','Tag','Lab','Callback',@onMenuImport); +0114 % 1.1.1.4.2.2 GGE field +0115 gui.menu.file_import_lab_gge_field = uimenu(gui.menu.file_import_lab_gge,... +0116 'Label','GGE field','Tag','Lab','Callback',@onMenuImport); +0117 % 1.1.1.4.2.3 GGE Dart +0118 gui.menu.file_import_lab_gge_dart = uimenu(gui.menu.file_import_lab_gge,... +0119 'Label','GGE Dart','Tag','Lab','Callback',@onMenuImport); +0120 +0121 % 1.1.1.5 OTHER +0122 gui.menu.file_import_lab_other = uimenu(gui.menu.file_import_lab,... +0123 'Label','OTHER'); +0124 % 1.1.1.5.1 CoreLab ascii +0125 gui.menu.file_import_lab_corelab = uimenu(gui.menu.file_import_lab_other,... +0126 'Label','CoreLab ascii','Tag','Lab','Callback',@onMenuImport); +0127 % 1.1.1.5.2 MOUSE +0128 gui.menu.file_import_lab_mouse = uimenu(gui.menu.file_import_lab_other,... +0129 'Label','MOUSE','Tag','Lab','Callback',@onMenuImport); +0130 % 1.1.1.5.3 DART (University of Vienna) +0131 gui.menu.file_import_lab_dart = uimenu(gui.menu.file_import_lab_other,... +0132 'Label','DART','Tag','Lab','Callback',@onMenuImport); +0133 +0134 % 1.1.2 Ascii +0135 gui.menu.file_import_ascii = uimenu(gui.menu.file_import,... +0136 'Label','Ascii'); +0137 % 1.1.2.1 T1 +0138 gui.menu.file_import_lab_ascii_T1 = uimenu(gui.menu.file_import_ascii,... +0139 'Label','T1','Tag','Ascii','Callback',@onMenuImport); +0140 % 1.1.2.2 T2 +0141 gui.menu.file_import_lab_ascii_T2 = uimenu(gui.menu.file_import_ascii,... +0142 'Label','T2','Tag','Ascii','Callback',@onMenuImport); +0143 +0144 % 1.1.3 Excel +0145 gui.menu.file_import_excel = uimenu(gui.menu.file_import,... +0146 'Label','Excel'); +0147 % 1.1.3.1 T1 +0148 gui.menu.file_import_lab_excel_T1 = uimenu(gui.menu.file_import_excel,... +0149 'Label','T1','Tag','Excel','Callback',@onMenuImport); +0150 % 1.1.3.2 T2 +0151 gui.menu.file_import_lab_excel_T2 = uimenu(gui.menu.file_import_excel,... +0152 'Label','T2','Tag','Excel','Callback',@onMenuImport); +0153 +0154 % 1.1.4 NUCLEUSinv +0155 gui.menu.file_import_nmrinv = uimenu(gui.menu.file_import,... +0156 'Label','NUCLEUSinv','Separator','on'); +0157 % 1.1.4.1 NUCLEUSinv session file +0158 gui.menu.file_import_nmrinv_file = uimenu(gui.menu.file_import_nmrinv,... +0159 'Label','Session','Tag','NUCLEUSinv','Callback',@onMenuImport); +0160 +0161 % 1.1.5 NUCLEUSmod +0162 gui.menu.file_import_nmrmod = uimenu(gui.menu.file_import,... +0163 'Label','NUCLEUSmod'); +0164 % 1.1.5.1 NUCLEUSmod from file +0165 gui.menu.file_import_nmrmod_file = uimenu(gui.menu.file_import_nmrmod,... +0166 'Label','File','Tag','NUCLEUSmod','Callback',@onMenuImport); +0167 % 1.1.5.2 NUCLEUSmod from GUI +0168 gui.menu.file_import_nmrmod_gui = uimenu(gui.menu.file_import_nmrmod,.... +0169 'Label','GUI','Tag','NUCLEUSmod','Callback',@onMenuImport); +0170 +0171 % 1.2 Export +0172 gui.menu.file_export = uimenu(gui.menu.file,... +0173 'Label','Export'); +0174 % 1.2.0 Last export +0175 lastexport = gui.myui.inidata.lastexport; +0176 gui.menu.file_export_lastexport = uimenu(gui.menu.file_export,... +0177 'Label',lastexport,'Callback',@onMenuExportData); +0178 % 1.2.1 Data +0179 gui.menu.file_export_data = uimenu(gui.menu.file_export,... +0180 'Label','Data'); +0181 % 1.2.1.1 GUI raw data mat-file 0182 gui.menu.file_export_data_GUImat = uimenu(gui.menu.file_export_data,... -0183 'Label','NUCLEUSinv (session)','Callback',@onMenuExportData); -0184 % 1.2.1.3 Inversion results single xls -0185 gui.menu.file_export_data_invstd_excel = uimenu(gui.menu.file_export_data,... -0186 'Label','EXCEL single (std)','Separator','on','Callback',@onMenuExportData); -0187 % 1.2.1.4 Inversion results single mat-file -0188 gui.menu.file_export_data_invstd_mat_single = uimenu(gui.menu.file_export_data,... -0189 'Label','MAT single (std)','Callback',@onMenuExportData); -0190 % 1.2.1.5 Inversion results all mat-file -0191 gui.menu.file_export_data_invstd_mat_all = uimenu(gui.menu.file_export_data,... -0192 'Label','MAT all (std)','Callback',@onMenuExportData); -0193 % 1.2.1.6 Joint Inversion results xls -0194 gui.menu.file_export_data_invjoint_excel = uimenu(gui.menu.file_export_data,... -0195 'Label','EXCEL all (joint)','Separator','on','Enable','off',... -0196 'Callback',@onMenuExportData); -0197 % 1.2.1.7 Joint Inversion results mat-file -0198 gui.menu.file_export_data_invjoint_mat = uimenu(gui.menu.file_export_data,... -0199 'Label','MAT all (joint)','Enable','off','Callback',@onMenuExportData); -0200 % 1.2.1.8 LIAG archive -0201 gui.menu.file_export_data_liag_archive = uimenu(gui.menu.file_export_data,... -0202 'Label','LIAG archive','Separator','on','Callback',@onMenuExportData); -0203 % 1.2.1.9 LIAG CSV T2 -0204 gui.menu.file_export_data_liag_csvT2 = uimenu(gui.menu.file_export_data,... -0205 'Label','LIAG CSV T2','Callback',@onMenuExportData); -0206 -0207 % 1.2.2 Graphics -0208 gui.menu.file_export_graphics = uimenu(gui.menu.file_export,... -0209 'Label','Graphics'); -0210 % 1.2.2.1 Layout -0211 gui.menu.file_export_graphics_layout = uimenu(gui.menu.file_export_graphics,... -0212 'Label','Layout'); -0213 % 1.2.2.1.1 Layout vertical -0214 gui.menu.file_export_graphics_layout_vert = uimenu(gui.menu.file_export_graphics_layout,... -0215 'Label','vert','Checked','on','Callback',@onMenuExportGraphics); -0216 % 1.2.2.1.2 Layout horizontal -0217 gui.menu.file_export_graphics_layout_horz = uimenu(gui.menu.file_export_graphics_layout,... -0218 'Label','horz','Callback',@onMenuExportGraphics); -0219 % 1.2.2.2 fig -0220 gui.menu.file_export_graphics_fig = uimenu(gui.menu.file_export_graphics,... -0221 'Label','FIG','Callback',@onMenuExportGraphics); -0222 % 1.2.2.3 png -0223 gui.menu.file_export_graphicspng = uimenu(gui.menu.file_export_graphics,... -0224 'Label','PNG','Callback',@onMenuExportGraphics); -0225 % 1.2.2.4 tiff -0226 gui.menu.file_export_graphicstiff = uimenu(gui.menu.file_export_graphics,... -0227 'Label','TIFF','Callback',@onMenuExportGraphics); -0228 % 1.2.2.5 eps -0229 gui.menu.file_export_graphicseps = uimenu(gui.menu.file_export_graphics,... -0230 'Label','EPS','Callback',@onMenuExportGraphics); -0231 -0232 % 1.3 Restart -0233 gui.menu.file_restart = uimenu(gui.menu.file,... -0234 'Label','Restart','Separator','on','Callback',@onMenuRestartQuit); -0235 -0236 % 1.4 Quit -0237 gui.menu.file_quit = uimenu(gui.menu.file,... -0238 'Label','Quit','Callback',@onMenuRestartQuit); -0239 -0240 %% 2. View -0241 gui.menu.view = uimenu(gui.figh,... -0242 'Label','View','Enable','off'); -0243 -0244 % 2.1 tooltips (on/off) -0245 gui.menu.view_tooltips = uimenu(gui.menu.view,... -0246 'Label','Tooltips','Checked','off','Callback',@onMenuView); -0247 switch gui.myui.inidata.tooltips -0248 case 'on' -0249 set(gui.menu.view_tooltips,'Checked','on'); -0250 case 'off' -0251 set(gui.menu.view_tooltips,'Checked','off'); -0252 end -0253 % 2.2 Figure Toolbar -0254 gui.menu.view_toolbar = uimenu(gui.menu.view,... -0255 'Label','Figure Toolbar','Callback',@onMenuView); -0256 -0257 % 2.3 INFO fields in plot panels (on/off) -0258 gui.menu.view_infofields = uimenu(gui.menu.view,... -0259 'Label','INFO fields','Separator','on','Callback',@onMenuView); -0260 -0261 % 2.4 inversion info on command line (on/off) -0262 gui.menu.view_invinfo = uimenu(gui.menu.view,... -0263 'Label','CLI Inv. Info','Callback',@onMenuView); -0264 switch gui.myui.inidata.invinfo -0265 case 'on' -0266 set(gui.menu.view_invinfo,'Checked','on'); -0267 case 'off' -0268 set(gui.menu.view_invinfo,'Checked','off'); -0269 end -0270 -0271 % 2.5 figures -0272 gui.menu.extra_graphics = uimenu(gui.menu.view,... -0273 'Label','Figures','Separator','on'); -0274 % 2.5.1 parameter file info -0275 gui.menu.extra_graphics_parinfo = uimenu(gui.menu.extra_graphics,... -0276 'Label','Parameter Info','Callback',@onMenuViewFigures); -0277 % 2.5.2 fit statistics -0278 gui.menu.extra_graphics_stats = uimenu(gui.menu.extra_graphics,... -0279 'Label','Fit statistics','Callback',@onMenuViewFigures); -0280 switch gui.myui.inidata.expertmode -0281 case 'on' -0282 % 2.5.3 amplitude over time -0283 gui.menu.extra_graphics_amp = uimenu(gui.menu.extra_graphics,... -0284 'Label','AMP-TLGM-SNR','Callback',@onMenuViewFigures); -0285 % 2.5.4 amplitude vs tlgm -0286 gui.menu.extra_graphics_amp2 = uimenu(gui.menu.extra_graphics,... -0287 'Label','AMP vs TLGM','Callback',@onMenuViewFigures); -0288 % 2.5.5 relaxation time distribution over time -0289 gui.menu.extra_graphics_rtd = uimenu(gui.menu.extra_graphics,... -0290 'Label','RTD','Callback',@onMenuViewFigures); -0291 case 'off' -0292 % 2.5.3 amplitude over time -0293 gui.menu.extra_graphics_amp = uimenu(gui.menu.extra_graphics,... -0294 'Label','AMP-TLGM-SNR','Enable','off','Callback',@onMenuViewFigures); -0295 % 2.5.4 amplitude vs tlgm -0296 gui.menu.extra_graphics_amp2 = uimenu(gui.menu.extra_graphics,... -0297 'Label','AMP vs TLGM','Enable','off','Callback',@onMenuViewFigures); -0298 % 2.5.5 relaxation time distribution over time -0299 gui.menu.extra_graphics_rtd = uimenu(gui.menu.extra_graphics,... -0300 'Label','RTD','Enable','off','Callback',@onMenuViewFigures); -0301 end -0302 -0303 % 2.6 PhaseView -0304 gui.menu.extra_phaseview = uimenu(gui.menu.view,... -0305 'Label','PhaseView GUI','Enable','off','Callback',@PhaseView); -0306 % 2.7 ConductVIEW -> hydraulic conductivity -0307 gui.menu.extra_conduct = uimenu(gui.menu.view,... -0308 'Label','ConductView GUI','Enable','off','Callback',@onMenuViewFigures); -0309 -0310 %% 3. Extras -0311 gui.menu.extra = uimenu(gui.figh,... -0312 'Label','Extra','Enable','off'); -0313 -0314 % 3.1 expert mode (on/off) -0315 gui.menu.extra_expert = uimenu(gui.menu.extra,... -0316 'Label','Expert Mode','Callback',@onMenuExpert); -0317 switch gui.myui.inidata.expertmode -0318 case 'on' -0319 set(gui.menu.extra_expert,'Checked','on'); -0320 case 'off' -0321 set(gui.menu.extra_expert,'Checked','of'); -0322 end -0323 -0324 % 3.2 optimization toolbox (on/off) -0325 switch gui.myui.inidata.expertmode -0326 case 'on' -0327 switch data.info.has_optim -0328 case 'on' -0329 gui.menu.extra_solver = uimenu(gui.menu.extra,... -0330 'Label','LSQ Solver','Enable','on'); -0331 case 'off' -0332 gui.menu.extra_solver = uimenu(gui.menu.extra,... -0333 'Label','LSQ Solver','Enable','off'); -0334 end -0335 case 'off' -0336 gui.menu.extra_solver = uimenu(gui.menu.extra,... -0337 'Label','LSQ Solver','Enable','off'); -0338 end -0339 gui.menu.extra_solver_lsqlin = uimenu(gui.menu.extra_solver,... -0340 'Label','LSQLIN (Optim. TB)','Callback',@onMenuSolver); -0341 gui.menu.extra_solver_lsqnonneg = uimenu(gui.menu.extra_solver,... -0342 'Label','LSQNONNEG (default)','Checked','on','Callback',@onMenuSolver); -0343 -0344 % 3.3 joint inversion (on/off) -0345 gui.menu.extra_joint = uimenu(gui.menu.extra,... -0346 'Label','Joint Inversion','Checked','off','Separator','on',... -0347 'Callback',@onMenuJointInversion); -0348 switch gui.myui.inidata.expertmode -0349 case 'on' -0350 set(gui.menu.extra_joint,'Enable','on'); -0351 case 'off' -0352 set(gui.menu.extra_joint,'Enable','off'); -0353 end -0354 -0355 % 3.4 set inversion bounds for surface relaxivity rho -0356 gui.menu.extra_joint_rhobounds = uimenu(gui.menu.extra,... -0357 'Label','Surface relaxivity bounds','Enable','off',... -0358 'Callback',@onMenuExtraRhoBounds); -0359 -0360 -0361 %% 4. Color theme -0362 gui.menu.color_theme = uimenu(gui.figh,... -0363 'Label','Color Theme','Enable','off'); -0364 -0365 % 4.1 default color theme -0366 gui.menu.color_theme_standard = uimenu(gui.menu.color_theme,... -0367 'Label','standard','Callback',@onMenuExtraColor); -0368 % 4.2 basic color theme -0369 gui.menu.color_theme_basic = uimenu(gui.menu.color_theme,... -0370 'Label','basic','Callback',@onMenuExtraColor); -0371 % 4.3 dark color theme -0372 gui.menu.color_theme_dark = uimenu(gui.menu.color_theme,... -0373 'Label','dark','Callback',@onMenuExtraColor); -0374 % 4.4 black color theme -0375 gui.menu.color_theme_black = uimenu(gui.menu.color_theme,... -0376 'Label','black','Callback',@onMenuExtraColor); -0377 switch gui.myui.inidata.colortheme -0378 case 'standard' -0379 set(gui.menu.color_theme_standard,'Checked','on'); -0380 case 'basic' -0381 set(gui.menu.color_theme_basic,'Checked','on'); -0382 case 'dark' -0383 set(gui.menu.color_theme_dark,'Checked','on'); -0384 case 'black' -0385 set(gui.menu.color_theme_black,'Checked','on'); -0386 end -0387 -0388 %% 5. Help -0389 gui.menu.help = uimenu(gui.figh,... -0390 'Label','Help','Enable','off'); -0391 -0392 % 5.1 About -0393 gui.menu.help_about = uimenu(gui.menu.help,... -0394 'Label','About','Callback',@onMenuHelp); -0395 -0396 return -0397 -0398 %------------- END OF CODE -------------- -0399 -0400 %% License: -0401 % MIT License -0402 % -0403 % Copyright (c) 2018 Thomas Hiller -0404 % -0405 % Permission is hereby granted, free of charge, to any person obtaining a copy -0406 % of this software and associated documentation files (the "Software"), to deal -0407 % in the Software without restriction, including without limitation the rights -0408 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0409 % copies of the Software, and to permit persons to whom the Software is -0410 % furnished to do so, subject to the following conditions: +0183 'Label','NUCLEUSinv (raw)','Callback',@onMenuExportData); +0184 % 1.2.1.2 GUI session mat-file +0185 gui.menu.file_export_data_GUImat = uimenu(gui.menu.file_export_data,... +0186 'Label','NUCLEUSinv (session)','Callback',@onMenuExportData); +0187 % 1.2.1.3 Inversion results single xls +0188 gui.menu.file_export_data_invstd_excel = uimenu(gui.menu.file_export_data,... +0189 'Label','EXCEL single (std)','Separator','on','Callback',@onMenuExportData); +0190 % 1.2.1.4 Inversion results single mat-file +0191 gui.menu.file_export_data_invstd_mat_single = uimenu(gui.menu.file_export_data,... +0192 'Label','MAT single (std)','Callback',@onMenuExportData); +0193 % 1.2.1.5 Inversion results all mat-file +0194 gui.menu.file_export_data_invstd_mat_all = uimenu(gui.menu.file_export_data,... +0195 'Label','MAT all (std)','Callback',@onMenuExportData); +0196 % 1.2.1.6 Joint Inversion results xls +0197 gui.menu.file_export_data_invjoint_excel = uimenu(gui.menu.file_export_data,... +0198 'Label','EXCEL all (joint)','Separator','on','Enable','off',... +0199 'Callback',@onMenuExportData); +0200 % 1.2.1.7 Joint Inversion results mat-file +0201 gui.menu.file_export_data_invjoint_mat = uimenu(gui.menu.file_export_data,... +0202 'Label','MAT all (joint)','Enable','off','Callback',@onMenuExportData); +0203 % 1.2.1.8 LIAG archive +0204 gui.menu.file_export_data_liag_archive = uimenu(gui.menu.file_export_data,... +0205 'Label','LIAG archive','Separator','on','Callback',@onMenuExportData); +0206 % 1.2.1.9 LIAG CSV T2 +0207 gui.menu.file_export_data_liag_csvT2 = uimenu(gui.menu.file_export_data,... +0208 'Label','LIAG CSV T2','Callback',@onMenuExportData); +0209 % 1.2.1.10 BGR data repository ascii +0210 gui.menu.file_export_data_bgr_repo = uimenu(gui.menu.file_export_data,... +0211 'Label','BGR repository','Callback',@onMenuExportData); +0212 +0213 % 1.2.2 Graphics +0214 gui.menu.file_export_graphics = uimenu(gui.menu.file_export,... +0215 'Label','Graphics'); +0216 % 1.2.2.1 Layout +0217 gui.menu.file_export_graphics_layout = uimenu(gui.menu.file_export_graphics,... +0218 'Label','Layout'); +0219 % 1.2.2.1.1 Layout vertical +0220 gui.menu.file_export_graphics_layout_vert = uimenu(gui.menu.file_export_graphics_layout,... +0221 'Label','vert','Checked','on','Callback',@onMenuExportGraphics); +0222 % 1.2.2.1.2 Layout horizontal +0223 gui.menu.file_export_graphics_layout_horz = uimenu(gui.menu.file_export_graphics_layout,... +0224 'Label','horz','Callback',@onMenuExportGraphics); +0225 % 1.2.2.2 fig +0226 gui.menu.file_export_graphics_fig = uimenu(gui.menu.file_export_graphics,... +0227 'Label','FIG','Callback',@onMenuExportGraphics); +0228 % 1.2.2.3 png +0229 gui.menu.file_export_graphicspng = uimenu(gui.menu.file_export_graphics,... +0230 'Label','PNG','Callback',@onMenuExportGraphics); +0231 % 1.2.2.4 tiff +0232 gui.menu.file_export_graphicstiff = uimenu(gui.menu.file_export_graphics,... +0233 'Label','TIFF','Callback',@onMenuExportGraphics); +0234 % 1.2.2.5 eps +0235 gui.menu.file_export_graphicseps = uimenu(gui.menu.file_export_graphics,... +0236 'Label','EPS','Callback',@onMenuExportGraphics); +0237 +0238 % 1.3 Restart +0239 gui.menu.file_restart = uimenu(gui.menu.file,... +0240 'Label','Restart','Separator','on','Callback',@onMenuRestartQuit); +0241 +0242 % 1.4 Quit +0243 gui.menu.file_quit = uimenu(gui.menu.file,... +0244 'Label','Quit','Callback',@onMenuRestartQuit); +0245 +0246 %% 2. View +0247 gui.menu.view = uimenu(gui.figh,... +0248 'Label','View','Enable','off'); +0249 +0250 % 2.1 tooltips (on/off) +0251 gui.menu.view_tooltips = uimenu(gui.menu.view,... +0252 'Label','Tooltips','Checked','off','Callback',@onMenuView); +0253 switch gui.myui.inidata.tooltips +0254 case 'on' +0255 set(gui.menu.view_tooltips,'Checked','on'); +0256 case 'off' +0257 set(gui.menu.view_tooltips,'Checked','off'); +0258 end +0259 % 2.2 Figure Toolbar +0260 gui.menu.view_toolbar = uimenu(gui.menu.view,... +0261 'Label','Figure Toolbar','Callback',@onMenuView); +0262 +0263 % 2.3 INFO fields in plot panels (on/off) +0264 gui.menu.view_infofields = uimenu(gui.menu.view,... +0265 'Label','INFO fields','Separator','on','Callback',@onMenuView); +0266 +0267 % 2.4 inversion info on command line (on/off) +0268 gui.menu.view_invinfo = uimenu(gui.menu.view,... +0269 'Label','CLI Inv. Info','Callback',@onMenuView); +0270 switch gui.myui.inidata.invinfo +0271 case 'on' +0272 set(gui.menu.view_invinfo,'Checked','on'); +0273 case 'off' +0274 set(gui.menu.view_invinfo,'Checked','off'); +0275 end +0276 +0277 % 2.5 figures +0278 gui.menu.extra_graphics = uimenu(gui.menu.view,... +0279 'Label','Figures','Separator','on'); +0280 % 2.5.1 parameter file info +0281 gui.menu.extra_graphics_parinfo = uimenu(gui.menu.extra_graphics,... +0282 'Label','Parameter Info','Callback',@onMenuViewFigures); +0283 % 2.5.2 fit statistics +0284 gui.menu.extra_graphics_stats = uimenu(gui.menu.extra_graphics,... +0285 'Label','Fit statistics','Callback',@onMenuViewFigures); +0286 switch gui.myui.inidata.expertmode +0287 case 'on' +0288 % 2.5.3 amplitude over time +0289 gui.menu.extra_graphics_amp = uimenu(gui.menu.extra_graphics,... +0290 'Label','AMP-TLGM-SNR','Callback',@onMenuViewFigures); +0291 % 2.5.4 amplitude vs tlgm +0292 gui.menu.extra_graphics_amp2 = uimenu(gui.menu.extra_graphics,... +0293 'Label','AMP vs TLGM','Callback',@onMenuViewFigures); +0294 % 2.5.5 relaxation time distribution over time +0295 gui.menu.extra_graphics_rtd = uimenu(gui.menu.extra_graphics,... +0296 'Label','RTD','Callback',@onMenuViewFigures); +0297 case 'off' +0298 % 2.5.3 amplitude over time +0299 gui.menu.extra_graphics_amp = uimenu(gui.menu.extra_graphics,... +0300 'Label','AMP-TLGM-SNR','Enable','off','Callback',@onMenuViewFigures); +0301 % 2.5.4 amplitude vs tlgm +0302 gui.menu.extra_graphics_amp2 = uimenu(gui.menu.extra_graphics,... +0303 'Label','AMP vs TLGM','Enable','off','Callback',@onMenuViewFigures); +0304 % 2.5.5 relaxation time distribution over time +0305 gui.menu.extra_graphics_rtd = uimenu(gui.menu.extra_graphics,... +0306 'Label','RTD','Enable','off','Callback',@onMenuViewFigures); +0307 end +0308 +0309 % 2.6 PhaseView +0310 gui.menu.extra_phaseview = uimenu(gui.menu.view,... +0311 'Label','PhaseView GUI','Enable','off','Callback',@PhaseView); +0312 % 2.7 ConductVIEW -> hydraulic conductivity +0313 gui.menu.extra_conduct = uimenu(gui.menu.view,... +0314 'Label','ConductView GUI','Enable','off','Callback',@onMenuViewFigures); +0315 % 2.8 FixedTime VIEW +0316 gui.menu.extra_fixedtime = uimenu(gui.menu.view,... +0317 'Label','FixedTimeView GUI','Enable','off','Callback',@FixedTimeView); +0318 +0319 %% 3. Extras +0320 gui.menu.extra = uimenu(gui.figh,... +0321 'Label','Extra','Enable','off'); +0322 +0323 % 3.1 expert mode (on/off) +0324 gui.menu.extra_expert = uimenu(gui.menu.extra,... +0325 'Label','Expert Mode','Callback',@onMenuExpert); +0326 switch gui.myui.inidata.expertmode +0327 case 'on' +0328 set(gui.menu.extra_expert,'Checked','on'); +0329 case 'off' +0330 set(gui.menu.extra_expert,'Checked','of'); +0331 end +0332 +0333 % 3.2 optimization toolbox (on/off) +0334 switch gui.myui.inidata.expertmode +0335 case 'on' +0336 switch data.info.has_optim +0337 case 'on' +0338 gui.menu.extra_solver = uimenu(gui.menu.extra,... +0339 'Label','LSQ Solver','Enable','on'); +0340 case 'off' +0341 gui.menu.extra_solver = uimenu(gui.menu.extra,... +0342 'Label','LSQ Solver','Enable','off'); +0343 end +0344 case 'off' +0345 gui.menu.extra_solver = uimenu(gui.menu.extra,... +0346 'Label','LSQ Solver','Enable','off'); +0347 end +0348 gui.menu.extra_solver_lsqlin = uimenu(gui.menu.extra_solver,... +0349 'Label','LSQLIN (Optim. TB)','Callback',@onMenuSolver); +0350 gui.menu.extra_solver_lsqnonneg = uimenu(gui.menu.extra_solver,... +0351 'Label','LSQNONNEG (default)','Checked','on','Callback',@onMenuSolver); +0352 +0353 % 3.3 joint inversion (on/off) +0354 gui.menu.extra_joint = uimenu(gui.menu.extra,... +0355 'Label','Joint Inversion','Checked','off','Separator','on',... +0356 'Callback',@onMenuJointInversion); +0357 switch gui.myui.inidata.expertmode +0358 case 'on' +0359 set(gui.menu.extra_joint,'Enable','on'); +0360 case 'off' +0361 set(gui.menu.extra_joint,'Enable','off'); +0362 end +0363 +0364 % 3.4 set inversion bounds for surface relaxivity rho +0365 gui.menu.extra_joint_rhobounds = uimenu(gui.menu.extra,... +0366 'Label','Surface relaxivity bounds','Enable','off',... +0367 'Callback',@onMenuExtraRhoBounds); +0368 +0369 +0370 %% 4. Color theme +0371 gui.menu.color_theme = uimenu(gui.figh,... +0372 'Label','Color Theme','Enable','off'); +0373 +0374 % 4.1 default color theme +0375 gui.menu.color_theme_standard = uimenu(gui.menu.color_theme,... +0376 'Label','standard','Callback',@onMenuExtraColor); +0377 % 4.2 basic color theme +0378 gui.menu.color_theme_basic = uimenu(gui.menu.color_theme,... +0379 'Label','basic','Callback',@onMenuExtraColor); +0380 % 4.3 dark color theme +0381 gui.menu.color_theme_dark = uimenu(gui.menu.color_theme,... +0382 'Label','dark','Callback',@onMenuExtraColor); +0383 % 4.4 black color theme +0384 gui.menu.color_theme_black = uimenu(gui.menu.color_theme,... +0385 'Label','black','Callback',@onMenuExtraColor); +0386 switch gui.myui.inidata.colortheme +0387 case 'standard' +0388 set(gui.menu.color_theme_standard,'Checked','on'); +0389 case 'basic' +0390 set(gui.menu.color_theme_basic,'Checked','on'); +0391 case 'dark' +0392 set(gui.menu.color_theme_dark,'Checked','on'); +0393 case 'black' +0394 set(gui.menu.color_theme_black,'Checked','on'); +0395 end +0396 +0397 %% 5. Help +0398 gui.menu.help = uimenu(gui.figh,... +0399 'Label','Help','Enable','off'); +0400 +0401 % 5.1 About +0402 gui.menu.help_about = uimenu(gui.menu.help,... +0403 'Label','About','Callback',@onMenuHelp); +0404 +0405 return +0406 +0407 %------------- END OF CODE -------------- +0408 +0409 %% License: +0410 % MIT License 0411 % -0412 % The above copyright notice and this permission notice shall be included in all -0413 % copies or substantial portions of the Software. -0414 % -0415 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0416 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0417 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0418 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0419 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0420 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0421 % SOFTWARE. +0412 % Copyright (c) 2018 Thomas Hiller +0413 % +0414 % Permission is hereby granted, free of charge, to any person obtaining a copy +0415 % of this software and associated documentation files (the "Software"), to deal +0416 % in the Software without restriction, including without limitation the rights +0417 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0418 % copies of the Software, and to permit persons to whom the Software is +0419 % furnished to do so, subject to the following conditions: +0420 % +0421 % The above copyright notice and this permission notice shall be included in all +0422 % copies or substantial portions of the Software. +0423 % +0424 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0425 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0426 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0427 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0428 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0429 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0430 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/NUCLEUSinv/NUCLEUSinv_loadDefaults.html b/doc/nucleus/NUCLEUSinv/NUCLEUSinv_loadDefaults.html index 0a433a9..8edb209 100644 --- a/doc/nucleus/NUCLEUSinv/NUCLEUSinv_loadDefaults.html +++ b/doc/nucleus/NUCLEUSinv/NUCLEUSinv_loadDefaults.html @@ -172,111 +172,114 @@

    SOURCE CODE ^'NNLS'; 0104 % when inversion method is 'free' choose No. of free relaxation times 0105 out.invstd.freeDT = 2; -0106 % regularization options for multi-exponential fitting routines -0107 % 'NNLS' and 'LU' -0108 out.invstd.regtype = 'manual'; -0109 % smoothness constraint (order) for multi-exponential fitting routines +0106 % option to fix some of the 'free' relaxation times to a certain value +0107 out.invstd.Tfixed_bool = [0 0 0 0 0]; +0108 out.invstd.Tfixed_val = [0 0 0 0 0]; +0109 % regularization options for multi-exponential fitting routines 0110 % 'NNLS' and 'LU' -0111 out.invstd.Lorder = 1; -0112 % regularization parameter for multi-exponential fitting routines +0111 out.invstd.regtype = 'manual'; +0112 % smoothness constraint (order) for multi-exponential fitting routines 0113 % 'NNLS' and 'LU' -0114 out.invstd.lambda = 1; -0115 % L-curve range (lambda) for multi-exponential fitting routine 'NNLS' -0116 out.invstd.lambdaR = [1e-3 1e2]; -0117 % initial L-curve range (lambda) for multi-exponential fitting routine -0118 % 'NNLS' -0119 out.invstd.lambdaRinit = [1e-3 1e2]; -0120 % number of lambda values in L-curve -0121 out.invstd.NlambdaR = 20; -0122 % range for RTD [min max] in [s] -0123 out.invstd.time = [1e-4 1e2]; -0124 % number of points per decade in RTD -0125 out.invstd.Ntime = 30; -0126 % noise level (taken from data if available) -0127 out.invstd.noise = 0; -0128 % water bulk relaxation time [s] -0129 out.invstd.Tbulk = 1e6; -0130 % diffusion relaxation time [s] -0131 out.invstd.Tdiff = 1e6; -0132 % porosity value between 0 and 1 [-] -0133 out.invstd.porosity = 1; -0134 -0135 out.invstd.useUncert = 1; -0136 out.invstd.uncertMethod = 'thresh'; -0137 out.invstd.uncertThresh = 0.05; -0138 out.invstd.uncertChi2 = 0.005; -0139 out.invstd.uncertN = 100; -0140 out.invstd.uncertMax = 1e4; -0141 -0142 %% joint inversion panel defaults -0143 % joint inversion methods to choose 'free' | 'fixed' | 'shape' -0144 out.invjoint.invtype = 'free'; -0145 % pore size distribution in [m] -0146 out.invjoint.radii = [1e-8 1e-2]; -0147 % No. of steps per decade in pore size distribution -0148 out.invjoint.Nradii = 25; -0149 % regularization options for joint inversion 'free' -0150 out.invjoint.regtype = 'manual'; -0151 % smoothness constraint (order) for joint inversion 'free' -0152 out.invjoint.Lorder = 1; -0153 % regularization parameter for joint inversion 'free' -0154 out.invjoint.lambda = 1; -0155 % L-curve range (lambda) for joint inversion 'free' -0156 out.invjoint.lambdaR = [1e-3 1e2]; -0157 % initial L-curve range (lambda) for joint inversion 'free' -0158 out.invjoint.lambdaRinit = [1e-3 1e2]; -0159 out.invjoint.NlambdaR = 20; -0160 % available pore geometries 'cyl' | 'ang' | 'poly' -0161 out.invjoint.geometry_type = 'cyl'; -0162 % number of polygon sides for geometry 'poly' (3 to 12) -0163 out.invjoint.polyN = 3; -0164 % angle alpha [deg] - fixed to 90° -0165 out.invjoint.alpha = 90; -0166 % angle beta [deg] - changed by user -0167 out.invjoint.beta = 60; -0168 % gamma [deg] - alpha-beta -0169 out.invjoint.gamma = 30; -0170 % start value rho [µm/s] -0171 out.invjoint.rhostart = 20; -0172 % lower and upper boundary for rho [µm/s] -0173 out.invjoint.rhobounds = [0.01 1000]; -0174 % sart value beta [deg] -0175 out.invjoint.anglestart = 25; -0176 -0177 % pressure settings -0178 % CPS table initial values (use,p,S,drain/imb) -0179 out.pressure.table = {true,0,1,'D'}; -0180 % pressure units 'Pa' | 'kPa' | 'MPa' | 'bar' -0181 out.pressure.unit = 'Pa'; -0182 % corresponding scale factors - 1 | 1e-3 | 1e-6 | 1e-5 -0183 out.pressure.unitfac = 1; -0184 -0185 return -0186 -0187 %------------- END OF CODE -------------- -0188 -0189 %% License: -0190 % MIT License -0191 % -0192 % Copyright (c) 2018 Thomas Hiller -0193 % -0194 % Permission is hereby granted, free of charge, to any person obtaining a copy -0195 % of this software and associated documentation files (the "Software"), to deal -0196 % in the Software without restriction, including without limitation the rights -0197 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0198 % copies of the Software, and to permit persons to whom the Software is -0199 % furnished to do so, subject to the following conditions: -0200 % -0201 % The above copyright notice and this permission notice shall be included in all -0202 % copies or substantial portions of the Software. +0114 out.invstd.Lorder = 1; +0115 % regularization parameter for multi-exponential fitting routines +0116 % 'NNLS' and 'LU' +0117 out.invstd.lambda = 1; +0118 % L-curve range (lambda) for multi-exponential fitting routine 'NNLS' +0119 out.invstd.lambdaR = [1e-3 1e2]; +0120 % initial L-curve range (lambda) for multi-exponential fitting routine +0121 % 'NNLS' +0122 out.invstd.lambdaRinit = [1e-3 1e2]; +0123 % number of lambda values in L-curve +0124 out.invstd.NlambdaR = 20; +0125 % range for RTD [min max] in [s] +0126 out.invstd.time = [1e-4 1e2]; +0127 % number of points per decade in RTD +0128 out.invstd.Ntime = 30; +0129 % noise level (taken from data if available) +0130 out.invstd.noise = 0; +0131 % water bulk relaxation time [s] +0132 out.invstd.Tbulk = 1e6; +0133 % diffusion relaxation time [s] +0134 out.invstd.Tdiff = 1e6; +0135 % porosity value between 0 and 1 [-] +0136 out.invstd.porosity = 1; +0137 +0138 out.invstd.useUncert = 1; +0139 out.invstd.uncertMethod = 'thresh'; +0140 out.invstd.uncertThresh = 0.05; +0141 out.invstd.uncertChi2 = 0.005; +0142 out.invstd.uncertN = 100; +0143 out.invstd.uncertMax = 1e4; +0144 +0145 %% joint inversion panel defaults +0146 % joint inversion methods to choose 'free' | 'fixed' | 'shape' +0147 out.invjoint.invtype = 'free'; +0148 % pore size distribution in [m] +0149 out.invjoint.radii = [1e-8 1e-2]; +0150 % No. of steps per decade in pore size distribution +0151 out.invjoint.Nradii = 25; +0152 % regularization options for joint inversion 'free' +0153 out.invjoint.regtype = 'manual'; +0154 % smoothness constraint (order) for joint inversion 'free' +0155 out.invjoint.Lorder = 1; +0156 % regularization parameter for joint inversion 'free' +0157 out.invjoint.lambda = 1; +0158 % L-curve range (lambda) for joint inversion 'free' +0159 out.invjoint.lambdaR = [1e-3 1e2]; +0160 % initial L-curve range (lambda) for joint inversion 'free' +0161 out.invjoint.lambdaRinit = [1e-3 1e2]; +0162 out.invjoint.NlambdaR = 20; +0163 % available pore geometries 'cyl' | 'ang' | 'poly' +0164 out.invjoint.geometry_type = 'cyl'; +0165 % number of polygon sides for geometry 'poly' (3 to 12) +0166 out.invjoint.polyN = 3; +0167 % angle alpha [deg] - fixed to 90° +0168 out.invjoint.alpha = 90; +0169 % angle beta [deg] - changed by user +0170 out.invjoint.beta = 60; +0171 % gamma [deg] - alpha-beta +0172 out.invjoint.gamma = 30; +0173 % start value rho [µm/s] +0174 out.invjoint.rhostart = 20; +0175 % lower and upper boundary for rho [µm/s] +0176 out.invjoint.rhobounds = [0.01 1000]; +0177 % sart value beta [deg] +0178 out.invjoint.anglestart = 25; +0179 +0180 % pressure settings +0181 % CPS table initial values (use,p,S,drain/imb) +0182 out.pressure.table = {true,0,1,'D'}; +0183 % pressure units 'Pa' | 'kPa' | 'MPa' | 'bar' +0184 out.pressure.unit = 'Pa'; +0185 % corresponding scale factors - 1 | 1e-3 | 1e-6 | 1e-5 +0186 out.pressure.unitfac = 1; +0187 +0188 return +0189 +0190 %------------- END OF CODE -------------- +0191 +0192 %% License: +0193 % MIT License +0194 % +0195 % Copyright (c) 2018 Thomas Hiller +0196 % +0197 % Permission is hereby granted, free of charge, to any person obtaining a copy +0198 % of this software and associated documentation files (the "Software"), to deal +0199 % in the Software without restriction, including without limitation the rights +0200 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0201 % copies of the Software, and to permit persons to whom the Software is +0202 % furnished to do so, subject to the following conditions: 0203 % -0204 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0205 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0206 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0207 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0208 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0209 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0210 % SOFTWARE. +0204 % The above copyright notice and this permission notice shall be included in all +0205 % copies or substantial portions of the Software. +0206 % +0207 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0208 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0209 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0210 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0211 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0212 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0213 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/NUCLEUSinv/NUCLEUSinv_updateInterface.html b/doc/nucleus/NUCLEUSinv/NUCLEUSinv_updateInterface.html index 2b0bc55..d1d526e 100644 --- a/doc/nucleus/NUCLEUSinv/NUCLEUSinv_updateInterface.html +++ b/doc/nucleus/NUCLEUSinv/NUCLEUSinv_updateInterface.html @@ -182,7 +182,7 @@

    SOURCE CODE ^'Value',data.invstd.freeDT,... 0103 'String',{'1','2','3','4','5'}); 0104 set(gui.text_handles.invstd_InvTypeOpt,... -0105 'String','No. of free decay times T'); +0105 'String','No. of free relaxation times T'); 0106 0107 % lambda, smoothness constraint and RTD limits 0108 gui = updateLambda(gui,data.invstd.regtype,0,0,0); @@ -666,7 +666,7 @@

    SOURCE CODE ^'Value',data.invstd.freeDT,... 0587 'String',{'1','2','3','4','5'}); 0588 set(gui.text_handles.invstd_InvTypeOpt,... -0589 'String','No. of free decay times T'); +0589 'String','No. of relaxation decay times T'); 0590 0591 % lambda, smoothness constraint and RTD limits 0592 gui = updateLambda(gui,data.invstd.regtype,0,0,0); @@ -755,291 +755,288 @@

    SOURCE CODE ^switch gatetype 0677 -0678 case 'log' -0679 -0680 set(gui.radio_handles.process_gates_log,'Value',1); -0681 set(gui.radio_handles.process_gates_lin,'Value',0); -0682 set(gui.radio_handles.process_gates_none,'Value',0); -0683 set(gui.edit_handles.process_Nechoes,'Enable','on'); -0684 -0685 case 'lin' -0686 -0687 set(gui.radio_handles.process_gates_log,'Value',0); -0688 set(gui.radio_handles.process_gates_lin,'Value',1); -0689 set(gui.radio_handles.process_gates_none,'Value',0); -0690 set(gui.edit_handles.process_Nechoes,'Enable','on'); -0691 -0692 case 'raw' -0693 -0694 set(gui.radio_handles.process_gates_log,'Value',0); -0695 set(gui.radio_handles.process_gates_lin,'Value',0); -0696 set(gui.radio_handles.process_gates_none,'Value',1); -0697 set(gui.edit_handles.process_Nechoes,'Enable','off'); -0698 -0699 end -0700 -0701 end -0702 -0703 function gui = updateNormalize(gui,norm) -0704 -0705 switch norm -0706 case 0 -0707 set(gui.radio_handles.process_normalize_on,'Enable','on','Value',0); -0708 set(gui.radio_handles.process_normalize_off,'Enable','on','Value',1); -0709 -0710 case 1 -0711 set(gui.radio_handles.process_normalize_on,'Enable','on','Value',1); -0712 set(gui.radio_handles.process_normalize_off,'Enable','on','Value',0); -0713 end -0714 -0715 end -0716 -0717 function gui = updateTimescale(gui,timescale) -0718 -0719 switch timescale -0720 -0721 case 's' -0722 set(gui.radio_handles.process_timescale_s,'Enable','on','Value',1); -0723 set(gui.radio_handles.process_timescale_ms,'Enable','on','Value',0); -0724 set(gui.text_handles.invstd_RTDtimes,'String','RTD - min [s] | max [s] | # / dec',... -0725 'FontSize',10); -0726 set(gui.text_handles.petro_Tbulk,'String','Tbulk [s] | Tdiff [s]'); -0727 set(gui.text_handles.petro_rho,'String',[char(hex2dec('03C1')),' [µm/s] | geom ']); -0728 -0729 case 'ms' -0730 set(gui.radio_handles.process_timescale_s,'Enable','on','Value',0); -0731 set(gui.radio_handles.process_timescale_ms,'Enable','on','Value',1); -0732 set(gui.text_handles.invstd_RTDtimes,'String','RTD - min [ms] | max [ms] | # / dec',... -0733 'FontSize',9); -0734 set(gui.text_handles.petro_Tbulk,'String','Tbulk [ms] | Tdiff [ms]'); -0735 set(gui.text_handles.petro_rho,'String',[char(hex2dec('03C1')),' [µm/s] | geom ']); -0736 end -0737 -0738 end -0739 -0740 function gui = updateInvstdTime(gui,invtype,time,Ntime) -0741 -0742 switch invtype -0743 -0744 case {'mono','free'} -0745 set(gui.edit_handles.invstd_time_min,'Enable','off'); -0746 set(gui.edit_handles.invstd_time_max,'Enable','off'); -0747 set(gui.edit_handles.invstd_Ntime,'Enable','off'); -0748 -0749 case {'LU','NNLS','MUMO'} -0750 set(gui.edit_handles.invstd_time_min,'Enable','on','String',num2str(time(1))); -0751 set(gui.edit_handles.invstd_time_max,'Enable','on','String',num2str(time(2))); -0752 set(gui.edit_handles.invstd_Ntime,'Enable','on','String',num2str(Ntime)); -0753 end -0754 -0755 end -0756 -0757 function gui = updateInvjointRadii(gui,invtype,radii,Nradii) -0758 -0759 switch invtype -0760 case {'fixed','shape','off'} -0761 set(gui.edit_handles.invjoint_radii_min,'Enable','off'); -0762 set(gui.edit_handles.invjoint_radii_max,'Enable','off'); -0763 set(gui.edit_handles.invjoint_Nradii,'Enable','off'); -0764 -0765 case {'free'} -0766 set(gui.edit_handles.invjoint_radii_min,'Enable','on','String',num2str(radii(1))); -0767 set(gui.edit_handles.invjoint_radii_max,'Enable','on','String',num2str(radii(2))); -0768 set(gui.edit_handles.invjoint_Nradii,'Enable','on','String',num2str(Nradii)); -0769 end -0770 -0771 end -0772 -0773 function gui = updateLambda(gui,regtype,lambda,lambdaR,NlambdaR) -0774 -0775 switch regtype -0776 case 'none' -0777 set(gui.edit_handles.invstd_lambda_min,'Enable','off'); -0778 set(gui.edit_handles.invstd_lambda_max,'Enable','off'); -0779 set(gui.edit_handles.invstd_NlambdaR,'Enable','off'); -0780 gui.plots.DistPanel.TabTitles = {'RTD','PSD','PSD (joint)'}; -0781 -0782 case 'manual' -0783 set(gui.edit_handles.invstd_lambda_min,'Enable','on','String',num2str(lambda)); -0784 set(gui.edit_handles.invstd_lambda_max,'Enable','off'); -0785 set(gui.edit_handles.invstd_NlambdaR,'Enable','off'); -0786 gui.plots.DistPanel.TabTitles = {'RTD','PSD','PSD (joint)'}; -0787 -0788 case 'auto' -0789 set(gui.edit_handles.invstd_lambda_min,'Enable','off','String',num2str(lambda)); -0790 set(gui.edit_handles.invstd_lambda_max,'Enable','off'); -0791 set(gui.edit_handles.invstd_NlambdaR,'Enable','off'); -0792 gui.plots.DistPanel.TabTitles = {'RTD','PSD','PSD (joint)'}; -0793 -0794 case 'lcurve' -0795 set(gui.edit_handles.invstd_lambda_min,'Enable','on','String',num2str(lambdaR(1))); -0796 set(gui.edit_handles.invstd_lambda_max,'Enable','on','String',num2str(lambdaR(2))); -0797 set(gui.edit_handles.invstd_NlambdaR,'Enable','on','String',num2str(NlambdaR)); -0798 gui.plots.DistPanel.TabTitles = {'L-CURVE','RMS','PSD (joint)'}; -0799 -0800 case {'gcv_tikh','gcv_trunc','gcv_damp','discrep'} -0801 set(gui.edit_handles.invstd_lambda_min,'Enable','off','String',num2str(lambda)); -0802 set(gui.edit_handles.invstd_lambda_max,'Enable','off'); -0803 set(gui.edit_handles.invstd_NlambdaR,'Enable','off'); -0804 gui.plots.DistPanel.TabTitles = {'RTD','PSD','PSD (joint)'}; -0805 end -0806 -0807 end -0808 -0809 function gui = updateLambdaJoint(gui,regtype,lambda,lambdaR,NlambdaR,regtypestd) -0810 -0811 switch regtype -0812 case 'none' -0813 switch regtypestd -0814 case 'lcurve' -0815 set(gui.edit_handles.invjoint_lambda_min,'Enable','off'); -0816 set(gui.edit_handles.invjoint_lambda_max,'Enable','off'); -0817 set(gui.edit_handles.invjoint_NlambdaR,'Enable','off'); -0818 gui.plots.DistPanel.TabTitles = {'L-CURVE','RMS','PSD (joint)'}; -0819 -0820 otherwise -0821 set(gui.edit_handles.invjoint_lambda_min,'Enable','off'); -0822 set(gui.edit_handles.invjoint_lambda_max,'Enable','off'); -0823 set(gui.edit_handles.invjoint_NlambdaR,'Enable','off'); -0824 gui.plots.DistPanel.TabTitles = {'RTD','PSD','PSD (joint)'}; -0825 end -0826 -0827 case 'manual' -0828 switch regtypestd -0829 case 'lcurve' -0830 set(gui.edit_handles.invjoint_lambda_min,'Enable','on','String',num2str(lambda)); -0831 set(gui.edit_handles.invjoint_lambda_max,'Enable','off'); -0832 set(gui.edit_handles.invjoint_NlambdaR,'Enable','off'); -0833 gui.plots.DistPanel.TabTitles = {'L-CURVE','RMS','PSD (joint)'}; -0834 -0835 otherwise -0836 set(gui.edit_handles.invjoint_lambda_min,'Enable','on','String',num2str(lambda)); -0837 set(gui.edit_handles.invjoint_lambda_max,'Enable','off'); -0838 set(gui.edit_handles.invjoint_NlambdaR,'Enable','off'); -0839 gui.plots.DistPanel.TabTitles = {'RTD','PSD','PSD (joint)'}; -0840 end -0841 -0842 case 'lcurve' -0843 set(gui.edit_handles.invjoint_lambda_min,'Enable','on','String',num2str(lambdaR(1))); -0844 set(gui.edit_handles.invjoint_lambda_max,'Enable','on','String',num2str(lambdaR(2))); -0845 set(gui.edit_handles.invjoint_NlambdaR,'Enable','on','String',num2str(NlambdaR)); -0846 gui.plots.DistPanel.TabTitles = {'L-CURVE','RMS','PSD (joint)'}; -0847 end -0848 -0849 end -0850 -0851 function gui = updateLorder(gui,invtype,Lorder) -0852 -0853 switch invtype -0854 case {'mono','free','MUMO'} -0855 set(gui.radio_handles.invstd_Lorder0,'Enable','off'); -0856 set(gui.radio_handles.invstd_Lorder1,'Enable','off'); -0857 set(gui.radio_handles.invstd_Lorder2,'Enable','off'); -0858 -0859 case {'LU','NNLS'} -0860 set(gui.radio_handles.invstd_Lorder0,'Enable','on'); -0861 set(gui.radio_handles.invstd_Lorder1,'Enable','on'); -0862 set(gui.radio_handles.invstd_Lorder2,'Enable','on'); -0863 -0864 switch Lorder -0865 case 0 -0866 set(gui.radio_handles.invstd_Lorder0,'Value',1); -0867 set(gui.radio_handles.invstd_Lorder1,'Value',0); -0868 set(gui.radio_handles.invstd_Lorder2,'Value',0); -0869 -0870 case 1 -0871 set(gui.radio_handles.invstd_Lorder0,'Value',0); -0872 set(gui.radio_handles.invstd_Lorder1,'Value',1); -0873 set(gui.radio_handles.invstd_Lorder2,'Value',0); -0874 -0875 case 2 -0876 set(gui.radio_handles.invstd_Lorder0,'Value',0); -0877 set(gui.radio_handles.invstd_Lorder1,'Value',0); -0878 set(gui.radio_handles.invstd_Lorder2,'Value',1); -0879 end -0880 end -0881 -0882 end -0883 -0884 function gui = updateLorderJoint(gui,invtype,Lorder) -0885 -0886 switch invtype -0887 case {'fixed','shape','off'} -0888 set(gui.radio_handles.invjoint_Lorder0,'Enable','off'); -0889 set(gui.radio_handles.invjoint_Lorder1,'Enable','off'); -0890 set(gui.radio_handles.invjoint_Lorder2,'Enable','off'); -0891 -0892 case 'free' -0893 set(gui.radio_handles.invjoint_Lorder0,'Enable','on'); -0894 set(gui.radio_handles.invjoint_Lorder1,'Enable','on'); -0895 set(gui.radio_handles.invjoint_Lorder2,'Enable','on'); -0896 -0897 switch Lorder -0898 case 0 -0899 set(gui.radio_handles.invjoint_Lorder0,'Value',1); -0900 set(gui.radio_handles.invjoint_Lorder1,'Value',0); -0901 set(gui.radio_handles.invjoint_Lorder2,'Value',0); -0902 -0903 case 1 -0904 set(gui.radio_handles.invjoint_Lorder0,'Value',0); -0905 set(gui.radio_handles.invjoint_Lorder1,'Value',1); -0906 set(gui.radio_handles.invjoint_Lorder2,'Value',0); -0907 -0908 case 2 -0909 set(gui.radio_handles.invjoint_Lorder0,'Value',0); -0910 set(gui.radio_handles.invjoint_Lorder1,'Value',0); -0911 set(gui.radio_handles.invjoint_Lorder2,'Value',1); -0912 end -0913 end -0914 -0915 end -0916 -0917 function gui = updateParams(gui,invtype,p) -0918 -0919 switch invtype -0920 case {'mono','free'} -0921 set(gui.edit_handles.param_CBW,'Enable','off','String',num2str(p.CBWcutoff)); -0922 set(gui.edit_handles.param_BVI,'Enable','off','String',num2str(p.BVIcutoff)); -0923 set(gui.edit_handles.param_rho,'Enable','on','String',num2str(p.rho)); -0924 set(gui.edit_handles.param_geom,'Enable','on','String',num2str(p.a)); -0925 -0926 case {'LU','NNLS','MUMO'} -0927 set(gui.edit_handles.param_CBW,'Enable','on','String',num2str(p.CBWcutoff)); -0928 set(gui.edit_handles.param_BVI,'Enable','on','String',num2str(p.BVIcutoff)); -0929 set(gui.edit_handles.param_rho,'Enable','on','String',num2str(p.rho)); -0930 set(gui.edit_handles.param_geom,'Enable','on','String',num2str(p.a)); -0931 -0932 end -0933 set(gui.edit_handles.param_calibVol,'Enable','on','String',num2str(p.calibVol)); -0934 set(gui.edit_handles.param_calibAmp,'Enable','on','String',num2str(p.calibAmp)); -0935 set(gui.edit_handles.param_sampVol,'Enable','on','String',num2str(p.sampVol)); -0936 -0937 end -0938 -0939 %------------- END OF CODE -------------- -0940 -0941 %% License: -0942 % MIT License -0943 % -0944 % Copyright (c) 2018 Thomas Hiller -0945 % -0946 % Permission is hereby granted, free of charge, to any person obtaining a copy -0947 % of this software and associated documentation files (the "Software"), to deal -0948 % in the Software without restriction, including without limitation the rights -0949 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0950 % copies of the Software, and to permit persons to whom the Software is -0951 % furnished to do so, subject to the following conditions: +0678 case 'log' +0679 set(gui.radio_handles.process_gates_log,'Value',1); +0680 set(gui.radio_handles.process_gates_lin,'Value',0); +0681 set(gui.radio_handles.process_gates_none,'Value',0); +0682 set(gui.edit_handles.process_Nechoes,'Enable','on'); +0683 +0684 case 'lin' +0685 set(gui.radio_handles.process_gates_log,'Value',0); +0686 set(gui.radio_handles.process_gates_lin,'Value',1); +0687 set(gui.radio_handles.process_gates_none,'Value',0); +0688 set(gui.edit_handles.process_Nechoes,'Enable','on'); +0689 +0690 case 'raw' +0691 set(gui.radio_handles.process_gates_log,'Value',0); +0692 set(gui.radio_handles.process_gates_lin,'Value',0); +0693 set(gui.radio_handles.process_gates_none,'Value',1); +0694 set(gui.edit_handles.process_Nechoes,'Enable','off'); +0695 +0696 end +0697 +0698 end +0699 +0700 function gui = updateNormalize(gui,norm) +0701 +0702 switch norm +0703 case 0 +0704 set(gui.radio_handles.process_normalize_on,'Enable','on','Value',0); +0705 set(gui.radio_handles.process_normalize_off,'Enable','on','Value',1); +0706 +0707 case 1 +0708 set(gui.radio_handles.process_normalize_on,'Enable','on','Value',1); +0709 set(gui.radio_handles.process_normalize_off,'Enable','on','Value',0); +0710 end +0711 +0712 end +0713 +0714 function gui = updateTimescale(gui,timescale) +0715 +0716 switch timescale +0717 +0718 case 's' +0719 set(gui.radio_handles.process_timescale_s,'Enable','on','Value',1); +0720 set(gui.radio_handles.process_timescale_ms,'Enable','on','Value',0); +0721 set(gui.text_handles.invstd_RTDtimes,'String','RTD - min [s] | max [s] | # / dec',... +0722 'FontSize',10); +0723 set(gui.text_handles.petro_Tbulk,'String','Tbulk [s] | Tdiff [s]'); +0724 set(gui.text_handles.petro_rho,'String',[char(hex2dec('03C1')),' [µm/s] | geom ']); +0725 +0726 case 'ms' +0727 set(gui.radio_handles.process_timescale_s,'Enable','on','Value',0); +0728 set(gui.radio_handles.process_timescale_ms,'Enable','on','Value',1); +0729 set(gui.text_handles.invstd_RTDtimes,'String','RTD - min [ms] | max [ms] | # / dec',... +0730 'FontSize',9); +0731 set(gui.text_handles.petro_Tbulk,'String','Tbulk [ms] | Tdiff [ms]'); +0732 set(gui.text_handles.petro_rho,'String',[char(hex2dec('03C1')),' [µm/s] | geom ']); +0733 end +0734 +0735 end +0736 +0737 function gui = updateInvstdTime(gui,invtype,time,Ntime) +0738 +0739 switch invtype +0740 +0741 case {'mono','free'} +0742 set(gui.edit_handles.invstd_time_min,'Enable','off'); +0743 set(gui.edit_handles.invstd_time_max,'Enable','off'); +0744 set(gui.edit_handles.invstd_Ntime,'Enable','off'); +0745 +0746 case {'LU','NNLS','MUMO'} +0747 set(gui.edit_handles.invstd_time_min,'Enable','on','String',num2str(time(1))); +0748 set(gui.edit_handles.invstd_time_max,'Enable','on','String',num2str(time(2))); +0749 set(gui.edit_handles.invstd_Ntime,'Enable','on','String',num2str(Ntime)); +0750 end +0751 +0752 end +0753 +0754 function gui = updateInvjointRadii(gui,invtype,radii,Nradii) +0755 +0756 switch invtype +0757 case {'fixed','shape','off'} +0758 set(gui.edit_handles.invjoint_radii_min,'Enable','off'); +0759 set(gui.edit_handles.invjoint_radii_max,'Enable','off'); +0760 set(gui.edit_handles.invjoint_Nradii,'Enable','off'); +0761 +0762 case {'free'} +0763 set(gui.edit_handles.invjoint_radii_min,'Enable','on','String',num2str(radii(1))); +0764 set(gui.edit_handles.invjoint_radii_max,'Enable','on','String',num2str(radii(2))); +0765 set(gui.edit_handles.invjoint_Nradii,'Enable','on','String',num2str(Nradii)); +0766 end +0767 +0768 end +0769 +0770 function gui = updateLambda(gui,regtype,lambda,lambdaR,NlambdaR) +0771 +0772 switch regtype +0773 case 'none' +0774 set(gui.edit_handles.invstd_lambda_min,'Enable','off'); +0775 set(gui.edit_handles.invstd_lambda_max,'Enable','off'); +0776 set(gui.edit_handles.invstd_NlambdaR,'Enable','off'); +0777 gui.plots.DistPanel.TabTitles = {'RTD','PSD','PSD (joint)'}; +0778 +0779 case 'manual' +0780 set(gui.edit_handles.invstd_lambda_min,'Enable','on','String',num2str(lambda)); +0781 set(gui.edit_handles.invstd_lambda_max,'Enable','off'); +0782 set(gui.edit_handles.invstd_NlambdaR,'Enable','off'); +0783 gui.plots.DistPanel.TabTitles = {'RTD','PSD','PSD (joint)'}; +0784 +0785 case 'auto' +0786 set(gui.edit_handles.invstd_lambda_min,'Enable','off','String',num2str(lambda)); +0787 set(gui.edit_handles.invstd_lambda_max,'Enable','off'); +0788 set(gui.edit_handles.invstd_NlambdaR,'Enable','off'); +0789 gui.plots.DistPanel.TabTitles = {'RTD','PSD','PSD (joint)'}; +0790 +0791 case 'lcurve' +0792 set(gui.edit_handles.invstd_lambda_min,'Enable','on','String',num2str(lambdaR(1))); +0793 set(gui.edit_handles.invstd_lambda_max,'Enable','on','String',num2str(lambdaR(2))); +0794 set(gui.edit_handles.invstd_NlambdaR,'Enable','on','String',num2str(NlambdaR)); +0795 gui.plots.DistPanel.TabTitles = {'L-CURVE','RMS','PSD (joint)'}; +0796 +0797 case {'gcv_tikh','gcv_trunc','gcv_damp','discrep'} +0798 set(gui.edit_handles.invstd_lambda_min,'Enable','off','String',num2str(lambda)); +0799 set(gui.edit_handles.invstd_lambda_max,'Enable','off'); +0800 set(gui.edit_handles.invstd_NlambdaR,'Enable','off'); +0801 gui.plots.DistPanel.TabTitles = {'RTD','PSD','PSD (joint)'}; +0802 end +0803 +0804 end +0805 +0806 function gui = updateLambdaJoint(gui,regtype,lambda,lambdaR,NlambdaR,regtypestd) +0807 +0808 switch regtype +0809 case 'none' +0810 switch regtypestd +0811 case 'lcurve' +0812 set(gui.edit_handles.invjoint_lambda_min,'Enable','off'); +0813 set(gui.edit_handles.invjoint_lambda_max,'Enable','off'); +0814 set(gui.edit_handles.invjoint_NlambdaR,'Enable','off'); +0815 gui.plots.DistPanel.TabTitles = {'L-CURVE','RMS','PSD (joint)'}; +0816 +0817 otherwise +0818 set(gui.edit_handles.invjoint_lambda_min,'Enable','off'); +0819 set(gui.edit_handles.invjoint_lambda_max,'Enable','off'); +0820 set(gui.edit_handles.invjoint_NlambdaR,'Enable','off'); +0821 gui.plots.DistPanel.TabTitles = {'RTD','PSD','PSD (joint)'}; +0822 end +0823 +0824 case 'manual' +0825 switch regtypestd +0826 case 'lcurve' +0827 set(gui.edit_handles.invjoint_lambda_min,'Enable','on','String',num2str(lambda)); +0828 set(gui.edit_handles.invjoint_lambda_max,'Enable','off'); +0829 set(gui.edit_handles.invjoint_NlambdaR,'Enable','off'); +0830 gui.plots.DistPanel.TabTitles = {'L-CURVE','RMS','PSD (joint)'}; +0831 +0832 otherwise +0833 set(gui.edit_handles.invjoint_lambda_min,'Enable','on','String',num2str(lambda)); +0834 set(gui.edit_handles.invjoint_lambda_max,'Enable','off'); +0835 set(gui.edit_handles.invjoint_NlambdaR,'Enable','off'); +0836 gui.plots.DistPanel.TabTitles = {'RTD','PSD','PSD (joint)'}; +0837 end +0838 +0839 case 'lcurve' +0840 set(gui.edit_handles.invjoint_lambda_min,'Enable','on','String',num2str(lambdaR(1))); +0841 set(gui.edit_handles.invjoint_lambda_max,'Enable','on','String',num2str(lambdaR(2))); +0842 set(gui.edit_handles.invjoint_NlambdaR,'Enable','on','String',num2str(NlambdaR)); +0843 gui.plots.DistPanel.TabTitles = {'L-CURVE','RMS','PSD (joint)'}; +0844 end +0845 +0846 end +0847 +0848 function gui = updateLorder(gui,invtype,Lorder) +0849 +0850 switch invtype +0851 case {'mono','free','MUMO'} +0852 set(gui.radio_handles.invstd_Lorder0,'Enable','off'); +0853 set(gui.radio_handles.invstd_Lorder1,'Enable','off'); +0854 set(gui.radio_handles.invstd_Lorder2,'Enable','off'); +0855 +0856 case {'LU','NNLS'} +0857 set(gui.radio_handles.invstd_Lorder0,'Enable','on'); +0858 set(gui.radio_handles.invstd_Lorder1,'Enable','on'); +0859 set(gui.radio_handles.invstd_Lorder2,'Enable','on'); +0860 +0861 switch Lorder +0862 case 0 +0863 set(gui.radio_handles.invstd_Lorder0,'Value',1); +0864 set(gui.radio_handles.invstd_Lorder1,'Value',0); +0865 set(gui.radio_handles.invstd_Lorder2,'Value',0); +0866 +0867 case 1 +0868 set(gui.radio_handles.invstd_Lorder0,'Value',0); +0869 set(gui.radio_handles.invstd_Lorder1,'Value',1); +0870 set(gui.radio_handles.invstd_Lorder2,'Value',0); +0871 +0872 case 2 +0873 set(gui.radio_handles.invstd_Lorder0,'Value',0); +0874 set(gui.radio_handles.invstd_Lorder1,'Value',0); +0875 set(gui.radio_handles.invstd_Lorder2,'Value',1); +0876 end +0877 end +0878 +0879 end +0880 +0881 function gui = updateLorderJoint(gui,invtype,Lorder) +0882 +0883 switch invtype +0884 case {'fixed','shape','off'} +0885 set(gui.radio_handles.invjoint_Lorder0,'Enable','off'); +0886 set(gui.radio_handles.invjoint_Lorder1,'Enable','off'); +0887 set(gui.radio_handles.invjoint_Lorder2,'Enable','off'); +0888 +0889 case 'free' +0890 set(gui.radio_handles.invjoint_Lorder0,'Enable','on'); +0891 set(gui.radio_handles.invjoint_Lorder1,'Enable','on'); +0892 set(gui.radio_handles.invjoint_Lorder2,'Enable','on'); +0893 +0894 switch Lorder +0895 case 0 +0896 set(gui.radio_handles.invjoint_Lorder0,'Value',1); +0897 set(gui.radio_handles.invjoint_Lorder1,'Value',0); +0898 set(gui.radio_handles.invjoint_Lorder2,'Value',0); +0899 +0900 case 1 +0901 set(gui.radio_handles.invjoint_Lorder0,'Value',0); +0902 set(gui.radio_handles.invjoint_Lorder1,'Value',1); +0903 set(gui.radio_handles.invjoint_Lorder2,'Value',0); +0904 +0905 case 2 +0906 set(gui.radio_handles.invjoint_Lorder0,'Value',0); +0907 set(gui.radio_handles.invjoint_Lorder1,'Value',0); +0908 set(gui.radio_handles.invjoint_Lorder2,'Value',1); +0909 end +0910 end +0911 +0912 end +0913 +0914 function gui = updateParams(gui,invtype,p) +0915 +0916 switch invtype +0917 case {'mono','free'} +0918 set(gui.edit_handles.param_CBW,'Enable','off','String',num2str(p.CBWcutoff)); +0919 set(gui.edit_handles.param_BVI,'Enable','off','String',num2str(p.BVIcutoff)); +0920 set(gui.edit_handles.param_rho,'Enable','on','String',num2str(p.rho)); +0921 set(gui.edit_handles.param_geom,'Enable','on','String',num2str(p.a)); +0922 +0923 case {'LU','NNLS','MUMO'} +0924 set(gui.edit_handles.param_CBW,'Enable','on','String',num2str(p.CBWcutoff)); +0925 set(gui.edit_handles.param_BVI,'Enable','on','String',num2str(p.BVIcutoff)); +0926 set(gui.edit_handles.param_rho,'Enable','on','String',num2str(p.rho)); +0927 set(gui.edit_handles.param_geom,'Enable','on','String',num2str(p.a)); +0928 +0929 end +0930 set(gui.edit_handles.param_calibVol,'Enable','on','String',num2str(p.calibVol)); +0931 set(gui.edit_handles.param_calibAmp,'Enable','on','String',num2str(p.calibAmp)); +0932 set(gui.edit_handles.param_sampVol,'Enable','on','String',num2str(p.sampVol)); +0933 +0934 end +0935 +0936 %------------- END OF CODE -------------- +0937 +0938 %% License: +0939 % MIT License +0940 % +0941 % Copyright (c) 2018 Thomas Hiller +0942 % +0943 % Permission is hereby granted, free of charge, to any person obtaining a copy +0944 % of this software and associated documentation files (the "Software"), to deal +0945 % in the Software without restriction, including without limitation the rights +0946 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0947 % copies of the Software, and to permit persons to whom the Software is +0948 % furnished to do so, subject to the following conditions: +0949 % +0950 % The above copyright notice and this permission notice shall be included in all +0951 % copies or substantial portions of the Software. 0952 % -0953 % The above copyright notice and this permission notice shall be included in all -0954 % copies or substantial portions of the Software. -0955 % -0956 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0957 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0958 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0959 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0960 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0961 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0962 % SOFTWARE. +0953 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0954 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0955 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0956 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0957 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0958 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0959 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/NUCLEUSmod/NUCLEUSmod.html b/doc/nucleus/NUCLEUSmod/NUCLEUSmod.html index 862a4be..aa903e2 100644 --- a/doc/nucleus/NUCLEUSmod/NUCLEUSmod.html +++ b/doc/nucleus/NUCLEUSmod/NUCLEUSmod.html @@ -117,8 +117,8 @@

    SOURCE CODE ^if ~isempty(h0); close(h0); end 0042 0043 %% GUI 'header' info and defaults -0044 myui.version = '0.1.13'; -0045 myui.date = '11.08.2022'; +0044 myui.version = '0.1.14'; +0045 myui.date = '27.09.2023'; 0046 myui.author = {'Stephan Costabel','Thomas Hiller'}; 0047 myui.email = 'thomas.hiller[at]bgr.de'; 0048 myui.fontsize = 10; diff --git a/doc/nucleus/callbacks/listboxes/onListboxData.html b/doc/nucleus/callbacks/listboxes/onListboxData.html index 35d90c8..42d9183 100644 --- a/doc/nucleus/callbacks/listboxes/onListboxData.html +++ b/doc/nucleus/callbacks/listboxes/onListboxData.html @@ -67,7 +67,7 @@

    DESCRIPTION ^CROSS-REFERENCE INFORMATION ^

    This function calls: +
  • NUCLEUSinv_updateInterface updates all GUI elements
  • onPopupInvstdType selects the inversion method for the standard inversion
  • onPushRun handles the callbacks to all RUN push buttons in both GUIs and
  • FixedTimeView is an extra subGUI to fix certain relaxation times during
  • PhaseView is an extra subGUI to visualize the phase of a T2 signal
  • clearSingleAxis clears an individual axis
  • processNMRDataControl prepares simple NMR raw data processing
  • removeInversionFields deletes all inversion result fields from NUCLEUSinv
  • showFitStatistics shows an extra fit statistics figure (for T2 data)
  • updateInfo updates the information shown in all information list boxes
  • updatePlotsDistribution plots the RTD and PSD curves into NUCLEUSinv
  • updatePlotsJointInversion plots the joint-inversion results in NUCLEUSinv
  • updatePlotsLcurve plots the results of the L-curve calculation
  • updatePlotsSignal plots the raw and processed NMR signals in NUCLEUSinv
  • This function is called by: @@ -147,165 +147,176 @@

    SOURCE CODE ^'data',data); -0073 -0074 % update interface and plot axes -0075 NUCLEUSinv_updateInterface; -0076 updatePlotsSignal; -0077 updateInfo(gui.plots.SignalPanel); -0078 gui = getappdata(fig,'gui'); -0079 if isfield(data,'results') -0080 if isfield(data.results,'invstd') -0081 updatePlotsDistribution; -0082 end -0083 if isfield(data.results,'invjoint') -0084 updatePlotsJointInversion; -0085 end -0086 if isfield(data.results,'lcurve') -0087 updatePlotsLcurve; -0088 end -0089 end -0090 else -0091 % remove temporary data fields -0092 data = removeInversionFields(data); -0093 -0094 % set format and T1/T2 dependent GUI elements -0095 switch data.import.NMR.data{id}.flag -0096 case 'T1' -0097 data.process.gatetype = 'raw'; -0098 data.process.start = 1; -0099 case 'T2' -0100 switch data.import.fileformat -0101 case {'dart','excel','field','helios','mouse','NMRMOD'} -0102 data.process.gatetype = 'raw'; -0103 data.process.start = 1; -0104 otherwise -0105 % standard T2 -0106 data.process.gatetype = 'log'; -0107 data.process.start = 1; -0108 end -0109 otherwise -0110 disp('onListboxData: Something is utterly wrong.') -0111 end -0112 -0113 % take all echoes -0114 data.process.end = length(data.import.NMR.data{id}.signal); -0115 -0116 % --- -0117 % special treatments -0118 % there is no volume or porosity -0119 data.param.sampVol = 1; -0120 if isfield(data.import,'BGR') -0121 data.invstd.porosity = data.import.BGR.porosity; -0122 else -0123 data.invstd.porosity = 1; -0124 end -0125 if isfield(data.import,'LIAG') -0126 data.param.sampVol = data.import.LIAG.sampleVol(id); -0127 if ~isempty(strfind(data.import.NMR.filesShort{id},' - calibration')) -0128 data.param.calibVol = data.import.LIAG.sampleVol(id); -0129 % update the GUI data -0130 setappdata(fig,'data',data); -0131 % set mono fit as default -0132 set(gui.popup_handles.invstd_InvType,'Value',1); -0133 onPopupInvstdType(gui.popup_handles.invstd_InvType); -0134 data = getappdata(fig,'data'); -0135 end -0136 if isempty(strfind(data.import.NMR.filesShort{id},' - calibration')) -0137 data.invstd.Tbulk = data.import.LIAG.Tbulk; -0138 % update the GUI data -0139 setappdata(fig,'data',data); -0140 % set mono fit as default -0141 set(gui.popup_handles.invstd_InvType,'Value',3); -0142 onPopupInvstdType(gui.popup_handles.invstd_InvType); -0143 data = getappdata(fig,'data'); -0144 end -0145 else -0146 data.param.sampVol = 1; -0147 end -0148 if isfield(data.import,'NMRMOD') -0149 data.param.rho = data.import.NMR.para{id}.rho*1e6; -0150 data.invstd.Tbulk = data.import.NMR.para{id}.Tbulk; -0151 data.invstd.Tdiff = data.import.NMR.para{id}.Tdiff; -0152 data.invstd.porosity = data.import.NMR.para{id}.porosity; -0153 end -0154 % --- -0155 -0156 % update the figure data -0157 setappdata(fig,'data',data); -0158 -0159 % process the NMR data -0160 processNMRDataControl(fig,id); -0161 % update interface -0162 NUCLEUSinv_updateInterface; -0163 -0164 % update the data plot axes -0165 updatePlotsSignal; -0166 % update the info fields -0167 updateInfo(gui.plots.SignalPanel); -0168 gui = getappdata(fig,'gui'); -0169 -0170 % clear inversion axes -0171 clearSingleAxis(gui.axes_handles.rtd); -0172 clearSingleAxis(gui.axes_handles.psd); -0173 end -0174 -0175 % set focus on data -0176 % set(gui.plots.SignalPanel,'Selection',1); -0177 % set(gui.plots.DistPanel,'Selection',1); -0178 -0179 % reset all RUN buttons -0180 set(gui.push_handles.invstd_run,'String','<HTML><u>R</u>UN',... -0181 'BackgroundColor','g','Enable','on','Callback',@onPushRun); -0182 set(gui.push_handles.invjoint_run,'String','<HTML><u>R</u>UN',... -0183 'BackgroundColor','g','Enable','on','Callback',@onPushRun); -0184 -0185 % if the Fit Statistics window is open update it -0186 if ~isempty(findobj('Tag','FITSTATS')) -0187 showFitStatistics; -0188 end -0189 % if the PhaseView window is open update it -0190 if ~isempty(findobj('Tag','PHASEVIEW')) -0191 PhaseView(gui.menu.extra_phaseview); -0192 end -0193 else -0194 helpdlg({'onListboxData:','Only choose one data set at a time.'},... -0195 'too many data'); -0196 end -0197 else -0198 helpdlg('Nothing to do because there is no data loaded!',... -0199 'onListboxData: Load NMR data first.'); -0200 end -0201 -0202 % update the figure data -0203 setappdata(fig,'gui',gui); -0204 -0205 end -0206 -0207 %------------- END OF CODE -------------- -0208 -0209 %% License: -0210 % MIT License -0211 % -0212 % Copyright (c) 2018 Thomas Hiller -0213 % -0214 % Permission is hereby granted, free of charge, to any person obtaining a copy -0215 % of this software and associated documentation files (the "Software"), to deal -0216 % in the Software without restriction, including without limitation the rights -0217 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0218 % copies of the Software, and to permit persons to whom the Software is -0219 % furnished to do so, subject to the following conditions: -0220 % -0221 % The above copyright notice and this permission notice shall be included in all -0222 % copies or substantial portions of the Software. -0223 % -0224 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0225 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0226 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0227 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0228 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0229 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0230 % SOFTWARE. +0072 +0073 % if "mono" or "free" inversion is chossen update the internal +0074 % fixed relaxation times field +0075 if strcmp(data.invstd.invtype,'mono') ||... +0076 strcmp(data.invstd.invtype,'free') +0077 data.invstd.Tfixed_val = [data.results.invstd.T zeros(1,5-data.invstd.freeDT)]; +0078 end +0079 setappdata(fig,'data',data); +0080 +0081 % update interface and plot axes +0082 NUCLEUSinv_updateInterface; +0083 updatePlotsSignal; +0084 updateInfo(gui.plots.SignalPanel); +0085 gui = getappdata(fig,'gui'); +0086 if isfield(data,'results') +0087 if isfield(data.results,'invstd') +0088 updatePlotsDistribution; +0089 end +0090 if isfield(data.results,'invjoint') +0091 updatePlotsJointInversion; +0092 end +0093 if isfield(data.results,'lcurve') +0094 updatePlotsLcurve; +0095 end +0096 end +0097 else +0098 % remove temporary data fields +0099 data = removeInversionFields(data); +0100 +0101 % set format and T1/T2 dependent GUI elements +0102 switch data.import.NMR.data{id}.flag +0103 case 'T1' +0104 data.process.gatetype = 'raw'; +0105 data.process.start = 1; +0106 case 'T2' +0107 switch data.import.fileformat +0108 case {'dart','excel','field','helios','mouse','NMRMOD'} +0109 data.process.gatetype = 'raw'; +0110 data.process.start = 1; +0111 otherwise +0112 % standard T2 +0113 data.process.gatetype = 'log'; +0114 data.process.start = 1; +0115 end +0116 otherwise +0117 disp('onListboxData: Something is utterly wrong.') +0118 end +0119 +0120 % take all echoes +0121 data.process.end = length(data.import.NMR.data{id}.signal); +0122 +0123 % --- +0124 % special treatments +0125 % there is no volume or porosity +0126 data.param.sampVol = 1; +0127 if isfield(data.import,'BGR') +0128 data.invstd.porosity = data.import.BGR.porosity; +0129 else +0130 data.invstd.porosity = 1; +0131 end +0132 if isfield(data.import,'LIAG') +0133 data.param.sampVol = data.import.LIAG.sampleVol(id); +0134 if ~isempty(strfind(data.import.NMR.filesShort{id},' - calibration')) +0135 data.param.calibVol = data.import.LIAG.sampleVol(id); +0136 % update the GUI data +0137 setappdata(fig,'data',data); +0138 % set mono fit as default +0139 set(gui.popup_handles.invstd_InvType,'Value',1); +0140 onPopupInvstdType(gui.popup_handles.invstd_InvType); +0141 data = getappdata(fig,'data'); +0142 end +0143 if isempty(strfind(data.import.NMR.filesShort{id},' - calibration')) +0144 data.invstd.Tbulk = data.import.LIAG.Tbulk; +0145 % update the GUI data +0146 setappdata(fig,'data',data); +0147 % set mono fit as default +0148 set(gui.popup_handles.invstd_InvType,'Value',3); +0149 onPopupInvstdType(gui.popup_handles.invstd_InvType); +0150 data = getappdata(fig,'data'); +0151 end +0152 else +0153 data.param.sampVol = 1; +0154 end +0155 if isfield(data.import,'NMRMOD') +0156 data.param.rho = data.import.NMR.para{id}.rho*1e6; +0157 data.invstd.Tbulk = data.import.NMR.para{id}.Tbulk; +0158 data.invstd.Tdiff = data.import.NMR.para{id}.Tdiff; +0159 data.invstd.porosity = data.import.NMR.para{id}.porosity; +0160 end +0161 % --- +0162 +0163 % update the figure data +0164 setappdata(fig,'data',data); +0165 +0166 % process the NMR data +0167 processNMRDataControl(fig,id); +0168 % update interface +0169 NUCLEUSinv_updateInterface; +0170 +0171 % update the data plot axes +0172 updatePlotsSignal; +0173 % update the info fields +0174 updateInfo(gui.plots.SignalPanel); +0175 gui = getappdata(fig,'gui'); +0176 +0177 % clear inversion axes +0178 clearSingleAxis(gui.axes_handles.rtd); +0179 clearSingleAxis(gui.axes_handles.psd); +0180 end +0181 +0182 % set focus on data +0183 % set(gui.plots.SignalPanel,'Selection',1); +0184 % set(gui.plots.DistPanel,'Selection',1); +0185 +0186 % reset all RUN buttons +0187 set(gui.push_handles.invstd_run,'String','<HTML><u>R</u>UN',... +0188 'BackgroundColor','g','Enable','on','Callback',@onPushRun); +0189 set(gui.push_handles.invjoint_run,'String','<HTML><u>R</u>UN',... +0190 'BackgroundColor','g','Enable','on','Callback',@onPushRun); +0191 +0192 % if the Fit Statistics window is open update it +0193 if ~isempty(findobj('Tag','FITSTATS')) +0194 showFitStatistics; +0195 end +0196 % if the PhaseView window is open update it +0197 if ~isempty(findobj('Tag','PHASEVIEW')) +0198 PhaseView(gui.menu.extra_phaseview); +0199 end +0200 % if the FixedTimeView window is open update it +0201 if ~isempty(findobj('Tag','FIXEDTIMEVIEW')) +0202 FixedTimeView(gui.menu.extra_fixedtime); +0203 end +0204 else +0205 helpdlg({'onListboxData:','Only choose one data set at a time.'},... +0206 'too many data'); +0207 end +0208 else +0209 helpdlg('Nothing to do because there is no data loaded!',... +0210 'onListboxData: Load NMR data first.'); +0211 end +0212 +0213 % update the figure data +0214 setappdata(fig,'gui',gui); +0215 +0216 end +0217 +0218 %------------- END OF CODE -------------- +0219 +0220 %% License: +0221 % MIT License +0222 % +0223 % Copyright (c) 2018 Thomas Hiller +0224 % +0225 % Permission is hereby granted, free of charge, to any person obtaining a copy +0226 % of this software and associated documentation files (the "Software"), to deal +0227 % in the Software without restriction, including without limitation the rights +0228 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0229 % copies of the Software, and to permit persons to whom the Software is +0230 % furnished to do so, subject to the following conditions: +0231 % +0232 % The above copyright notice and this permission notice shall be included in all +0233 % copies or substantial portions of the Software. +0234 % +0235 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0236 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0237 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0238 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0239 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0240 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0241 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/callbacks/menus/onMenuExpert.html b/doc/nucleus/callbacks/menus/onMenuExpert.html index 982a24b..3b2a2f2 100644 --- a/doc/nucleus/callbacks/menus/onMenuExpert.html +++ b/doc/nucleus/callbacks/menus/onMenuExpert.html @@ -132,94 +132,108 @@

    SOURCE CODE ^% update GUI data 0056 setappdata(fig,'data',data); 0057 setappdata(fig,'gui',gui); -0058 -0059 % deactivate solver menu and set to default -0060 onMenuSolver(gui.menu.extra_solver_lsqnonneg); -0061 % get changed GUI data -0062 data = getappdata(fig,'data'); -0063 set(gui.menu.extra_solver,'Enable','off'); -0064 -0065 % update GUI data -0066 setappdata(fig,'data',data); -0067 setappdata(fig,'gui',gui); -0068 -0069 % deactivate joint inversion panels -0070 set(gui.menu.extra_joint,'Checked','on'); -0071 onMenuJointInversion(gui.menu.extra_joint); +0058 +0059 % dectivate FixedTime View GUI +0060 data.invstd.Tfixed_bool = zeros(1,5); +0061 data.invstd.Tfixed_val = zeros(1,5); +0062 setappdata(fig,'data',data); +0063 % check if the figure is already open +0064 fig_fixedtime = findobj('Tag','FIXEDTIMEVIEW'); +0065 if ~isempty(fig_fixedtime) +0066 delete(fig_fixedtime); +0067 end +0068 set(gui.menu.extra_fixedtime,'Enable','off'); +0069 +0070 % deactivate solver menu and set to default +0071 onMenuSolver(gui.menu.extra_solver_lsqnonneg); 0072 % get changed GUI data 0073 data = getappdata(fig,'data'); -0074 INVdata = getappdata(fig,'INVdata'); -0075 % default std inversion settings -0076 data.invstd.invtype = 'NNLS'; -0077 data.invstd.regtype = 'manual'; -0078 data.invstd.lambda = 1; -0079 % deactivate joint inversion menu -0080 set(gui.menu.extra_joint,'Enable','off'); -0081 -0082 set(gui.menu.extra_graphics_amp,'Enable','off'); -0083 set(gui.menu.extra_graphics_amp2,'Enable','off'); -0084 set(gui.menu.extra_graphics_rtd,'Enable','off'); -0085 -0086 case 'off' % it it's off, switch it on -0087 data.info.ExpertMode = 'on'; -0088 % menu entry -0089 set(gui.menu.extra_expert,'Checked','on'); -0090 -0091 % activate solver menu if optimization toolbox is available -0092 switch data.info.has_optim -0093 case 'on' -0094 set(gui.menu.extra_solver,'Enable','on'); -0095 case 'off' -0096 set(gui.menu.extra_solver,'Enable','off'); -0097 end -0098 -0099 % activate joint inversion menu -0100 set(gui.menu.extra_joint,'Enable','on'); -0101 -0102 set(gui.menu.extra_graphics_amp,'Enable','on'); -0103 set(gui.menu.extra_graphics_amp2,'Enable','on'); -0104 set(gui.menu.extra_graphics_rtd,'Enable','on'); -0105 end -0106 -0107 % update GUI data -0108 setappdata(fig,'data',data); -0109 setappdata(fig,'gui',gui); -0110 % update ini-file -0111 gui.myui.inidata.expertmode = data.info.ExpertMode; -0112 gui = makeINIfile(gui,'update'); -0113 % update interface -0114 NUCLEUSinv_updateInterface; -0115 % update status information -0116 updateStatusInformation(fig); -0117 updateToolTips; -0118 onFigureSizeChange(fig); -0119 -0120 end -0121 -0122 %------------- END OF CODE -------------- -0123 -0124 %% License: -0125 % MIT License -0126 % -0127 % Copyright (c) 2018 Thomas Hiller -0128 % -0129 % Permission is hereby granted, free of charge, to any person obtaining a copy -0130 % of this software and associated documentation files (the "Software"), to deal -0131 % in the Software without restriction, including without limitation the rights -0132 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0133 % copies of the Software, and to permit persons to whom the Software is -0134 % furnished to do so, subject to the following conditions: -0135 % -0136 % The above copyright notice and this permission notice shall be included in all -0137 % copies or substantial portions of the Software. -0138 % -0139 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0140 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0141 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0142 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0143 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0144 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0145 % SOFTWARE. +0074 set(gui.menu.extra_solver,'Enable','off'); +0075 +0076 % update GUI data +0077 setappdata(fig,'data',data); +0078 setappdata(fig,'gui',gui); +0079 +0080 % deactivate joint inversion panels +0081 set(gui.menu.extra_joint,'Checked','on'); +0082 onMenuJointInversion(gui.menu.extra_joint); +0083 % get changed GUI data +0084 data = getappdata(fig,'data'); +0085 INVdata = getappdata(fig,'INVdata'); +0086 % default std inversion settings +0087 data.invstd.invtype = 'NNLS'; +0088 data.invstd.regtype = 'manual'; +0089 data.invstd.lambda = 1; +0090 % deactivate joint inversion menu +0091 set(gui.menu.extra_joint,'Enable','off'); +0092 +0093 set(gui.menu.extra_graphics_amp,'Enable','off'); +0094 set(gui.menu.extra_graphics_amp2,'Enable','off'); +0095 set(gui.menu.extra_graphics_rtd,'Enable','off'); +0096 +0097 case 'off' % it it's off, switch it on +0098 data.info.ExpertMode = 'on'; +0099 % menu entry +0100 set(gui.menu.extra_expert,'Checked','on'); +0101 +0102 % activate FixedTime View GUI +0103 set(gui.menu.extra_fixedtime,'Enable','on'); +0104 +0105 % activate solver menu if optimization toolbox is available +0106 switch data.info.has_optim +0107 case 'on' +0108 set(gui.menu.extra_solver,'Enable','on'); +0109 case 'off' +0110 set(gui.menu.extra_solver,'Enable','off'); +0111 end +0112 +0113 % activate joint inversion menu +0114 set(gui.menu.extra_joint,'Enable','on'); +0115 +0116 set(gui.menu.extra_graphics_amp,'Enable','on'); +0117 set(gui.menu.extra_graphics_amp2,'Enable','on'); +0118 set(gui.menu.extra_graphics_rtd,'Enable','on'); +0119 end +0120 +0121 % update GUI data +0122 setappdata(fig,'data',data); +0123 setappdata(fig,'gui',gui); +0124 % update ini-file +0125 gui.myui.inidata.expertmode = data.info.ExpertMode; +0126 gui = makeINIfile(gui,'update'); +0127 % update interface +0128 NUCLEUSinv_updateInterface; +0129 % update status information +0130 updateStatusInformation(fig); +0131 updateToolTips; +0132 onFigureSizeChange(fig); +0133 +0134 end +0135 +0136 %------------- END OF CODE -------------- +0137 +0138 %% License: +0139 % MIT License +0140 % +0141 % Copyright (c) 2018 Thomas Hiller +0142 % +0143 % Permission is hereby granted, free of charge, to any person obtaining a copy +0144 % of this software and associated documentation files (the "Software"), to deal +0145 % in the Software without restriction, including without limitation the rights +0146 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0147 % copies of the Software, and to permit persons to whom the Software is +0148 % furnished to do so, subject to the following conditions: +0149 % +0150 % The above copyright notice and this permission notice shall be included in all +0151 % copies or substantial portions of the Software. +0152 % +0153 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0154 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0155 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0156 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0157 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0158 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0159 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/callbacks/menus/onMenuExportData.html b/doc/nucleus/callbacks/menus/onMenuExportData.html index c1fb58a..6f73fec 100644 --- a/doc/nucleus/callbacks/menus/onMenuExportData.html +++ b/doc/nucleus/callbacks/menus/onMenuExportData.html @@ -128,57 +128,59 @@

    SOURCE CODE ^case 'LIAG archive' 0059 exportData(fig_tag,'LIAG'); 0060 case 'LIAG CSV T2' -0061 exportData(fig_tag,'LIAGcsvT2'); -0062 end -0063 % update the "last export" value within the ini-file -0064 gui = getappdata(fig,'gui'); -0065 gui.myui.inidata.lastexport = label; -0066 setappdata(fig,'gui',gui); -0067 gui = makeINIfile(gui,'update'); -0068 % and the menu entry itself -0069 set(gui.menu.file_export_lastexport,'Label',label,... -0070 'Callback',@onMenuExportData); -0071 setappdata(fig,'gui',gui); -0072 -0073 case 'MOD' -0074 switch label -0075 case 'NUCLEUSmod' -0076 exportData(fig_tag,'mat'); -0077 case 'XLS file' -0078 exportData(fig_tag,'xls'); -0079 case 'CSV file' -0080 exportData(fig_tag,'csv'); -0081 case 'DAT files' -0082 exportData(fig_tag,'dat'); -0083 end -0084 end -0085 +0061 exportData(fig_tag,'LIAGcsvT2'); +0062 case 'BGR repository' +0063 exportData(fig_tag,'BGR_repos'); +0064 end +0065 % update the "last export" value within the ini-file +0066 gui = getappdata(fig,'gui'); +0067 gui.myui.inidata.lastexport = label; +0068 setappdata(fig,'gui',gui); +0069 gui = makeINIfile(gui,'update'); +0070 % and the menu entry itself +0071 set(gui.menu.file_export_lastexport,'Label',label,... +0072 'Callback',@onMenuExportData); +0073 setappdata(fig,'gui',gui); +0074 +0075 case 'MOD' +0076 switch label +0077 case 'NUCLEUSmod' +0078 exportData(fig_tag,'mat'); +0079 case 'XLS file' +0080 exportData(fig_tag,'xls'); +0081 case 'CSV file' +0082 exportData(fig_tag,'csv'); +0083 case 'DAT files' +0084 exportData(fig_tag,'dat'); +0085 end 0086 end 0087 -0088 %------------- END OF CODE -------------- +0088 end 0089 -0090 %% License: -0091 % MIT License -0092 % -0093 % Copyright (c) 2018 Thomas Hiller +0090 %------------- END OF CODE -------------- +0091 +0092 %% License: +0093 % MIT License 0094 % -0095 % Permission is hereby granted, free of charge, to any person obtaining a copy -0096 % of this software and associated documentation files (the "Software"), to deal -0097 % in the Software without restriction, including without limitation the rights -0098 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0099 % copies of the Software, and to permit persons to whom the Software is -0100 % furnished to do so, subject to the following conditions: -0101 % -0102 % The above copyright notice and this permission notice shall be included in all -0103 % copies or substantial portions of the Software. -0104 % -0105 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0106 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0107 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0108 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0109 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0110 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0111 % SOFTWARE. +0095 % Copyright (c) 2018 Thomas Hiller +0096 % +0097 % Permission is hereby granted, free of charge, to any person obtaining a copy +0098 % of this software and associated documentation files (the "Software"), to deal +0099 % in the Software without restriction, including without limitation the rights +0100 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0101 % copies of the Software, and to permit persons to whom the Software is +0102 % furnished to do so, subject to the following conditions: +0103 % +0104 % The above copyright notice and this permission notice shall be included in all +0105 % copies or substantial portions of the Software. +0106 % +0107 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0108 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0109 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0110 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0111 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0112 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0113 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/callbacks/menus/onMenuExtraColor.html b/doc/nucleus/callbacks/menus/onMenuExtraColor.html index bdad2b5..96e5cb8 100644 --- a/doc/nucleus/callbacks/menus/onMenuExtraColor.html +++ b/doc/nucleus/callbacks/menus/onMenuExtraColor.html @@ -102,64 +102,68 @@

    SOURCE CODE ^'figure','toplevel'); 0034 fig_tag = get(fig,'Tag'); 0035 gui = getappdata(fig,'gui'); -0036 data = getappdata(fig,'data'); -0037 -0038 % get the menu label -0039 label = get(src,'Label'); -0040 -0041 % mark the selected menu entry -0042 switch label -0043 case 'standard' -0044 set(gui.menu.color_theme_standard,'Checked','on'); -0045 set(gui.menu.color_theme_basic,'Checked','off'); -0046 set(gui.menu.color_theme_dark,'Checked','off'); -0047 set(gui.menu.color_theme_black,'Checked','off'); -0048 case 'basic' -0049 set(gui.menu.color_theme_standard,'Checked','off'); -0050 set(gui.menu.color_theme_basic,'Checked','on'); -0051 set(gui.menu.color_theme_dark,'Checked','off'); -0052 set(gui.menu.color_theme_black,'Checked','off'); -0053 case 'dark' -0054 set(gui.menu.color_theme_standard,'Checked','off'); -0055 set(gui.menu.color_theme_basic,'Checked','off'); -0056 set(gui.menu.color_theme_dark,'Checked','on'); -0057 set(gui.menu.color_theme_black,'Checked','off'); -0058 case 'black' -0059 set(gui.menu.color_theme_standard,'Checked','off'); -0060 set(gui.menu.color_theme_basic,'Checked','off'); -0061 set(gui.menu.color_theme_dark,'Checked','off'); -0062 set(gui.menu.color_theme_black,'Checked','on'); -0063 end -0064 -0065 % adjust the colors -0066 changeColorTheme(fig_tag,label); -0067 -0068 end -0069 -0070 %------------- END OF CODE -------------- +0036 +0037 % get the menu label +0038 label = get(src,'Label'); +0039 +0040 % mark the selected menu entry +0041 switch label +0042 case 'standard' +0043 set(gui.menu.color_theme_standard,'Checked','on'); +0044 set(gui.menu.color_theme_basic,'Checked','off'); +0045 set(gui.menu.color_theme_dark,'Checked','off'); +0046 set(gui.menu.color_theme_black,'Checked','off'); +0047 case 'basic' +0048 set(gui.menu.color_theme_standard,'Checked','off'); +0049 set(gui.menu.color_theme_basic,'Checked','on'); +0050 set(gui.menu.color_theme_dark,'Checked','off'); +0051 set(gui.menu.color_theme_black,'Checked','off'); +0052 case 'dark' +0053 set(gui.menu.color_theme_standard,'Checked','off'); +0054 set(gui.menu.color_theme_basic,'Checked','off'); +0055 set(gui.menu.color_theme_dark,'Checked','on'); +0056 set(gui.menu.color_theme_black,'Checked','off'); +0057 case 'black' +0058 set(gui.menu.color_theme_standard,'Checked','off'); +0059 set(gui.menu.color_theme_basic,'Checked','off'); +0060 set(gui.menu.color_theme_dark,'Checked','off'); +0061 set(gui.menu.color_theme_black,'Checked','on'); +0062 end +0063 +0064 % adjust the colors +0065 changeColorTheme(fig_tag,label); +0066 +0067 % check the sub GUIs +0068 if ~isempty(findobj('Tag','FIXEDTIMEVIEW')) +0069 changeColorTheme('FIXEDTIMEVIEW',label); +0070 end 0071 -0072 %% License: -0073 % MIT License -0074 % -0075 % Copyright (c) 2018 Thomas Hiller -0076 % -0077 % Permission is hereby granted, free of charge, to any person obtaining a copy -0078 % of this software and associated documentation files (the "Software"), to deal -0079 % in the Software without restriction, including without limitation the rights -0080 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0081 % copies of the Software, and to permit persons to whom the Software is -0082 % furnished to do so, subject to the following conditions: -0083 % -0084 % The above copyright notice and this permission notice shall be included in all -0085 % copies or substantial portions of the Software. -0086 % -0087 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0088 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0089 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0090 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0091 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0092 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0093 % SOFTWARE. +0072 end +0073 +0074 %------------- END OF CODE -------------- +0075 +0076 %% License: +0077 % MIT License +0078 % +0079 % Copyright (c) 2018 Thomas Hiller +0080 % +0081 % Permission is hereby granted, free of charge, to any person obtaining a copy +0082 % of this software and associated documentation files (the "Software"), to deal +0083 % in the Software without restriction, including without limitation the rights +0084 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0085 % copies of the Software, and to permit persons to whom the Software is +0086 % furnished to do so, subject to the following conditions: +0087 % +0088 % The above copyright notice and this permission notice shall be included in all +0089 % copies or substantial portions of the Software. +0090 % +0091 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0092 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0093 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0094 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0095 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0096 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0097 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/callbacks/popup/onPopupInvstdType.html b/doc/nucleus/callbacks/popup/onPopupInvstdType.html index 37a51e5..61c72aa 100644 --- a/doc/nucleus/callbacks/popup/onPopupInvstdType.html +++ b/doc/nucleus/callbacks/popup/onPopupInvstdType.html @@ -60,7 +60,7 @@

    DESCRIPTION ^CROSS-REFERENCE INFORMATION ^

    This function calls: +
  • NUCLEUSinv_updateInterface updates all GUI elements
  • onRadioGates selects the re-sampling / gating method ("log", "lin" or "none")
  • FixedTimeView is an extra subGUI to fix certain relaxation times during
  • This function is called by: @@ -118,97 +118,129 @@

    SOURCE CODE ^'mono'; 0048 data.invstd.regtype = 'none'; 0049 data.invstd.lambda = 1; -0050 -0051 case 2 -0052 data.invstd.invtype = 'free'; -0053 data.invstd.regtype = 'none'; -0054 data.invstd.lambda = 1; -0055 -0056 case 3 -0057 data.invstd.invtype = 'NNLS'; -0058 data.invstd.regtype = 'manual'; -0059 data.invstd.lambda = 1; +0050 data.invstd.freeDT = 1; +0051 +0052 % % if the FixedTimeView window is open update it +0053 % if ~isempty(findobj('Tag','FIXEDTIMEVIEW')) +0054 % data.invstd.Tfixed_bool = zeros(1,5); +0055 % % update GUI data +0056 % setappdata(fig,'data',data); +0057 % FixedTimeView(gui.menu.extra_fixedtime); +0058 % data = getappdata(fig,'data'); +0059 % end 0060 -0061 case 4 -0062 data.invstd.invtype = 'LU'; -0063 data.invstd.regtype = 'auto'; -0064 data.invstd.lambda = -1; -0065 -0066 case 5 -0067 data.invstd.invtype = 'MUMO'; -0068 data.invstd.regtype = 'none'; -0069 data.invstd.lambda = 1; -0070 end -0071 -0072 case 'off' -0073 switch value -0074 case 1 -0075 data.invstd.invtype = 'mono'; -0076 data.invstd.regtype = 'none'; -0077 data.invstd.lambda = 1; -0078 -0079 case 2 -0080 data.invstd.invtype = 'free'; -0081 data.invstd.regtype = 'none'; -0082 data.invstd.lambda = 1; -0083 -0084 case 3 -0085 data.invstd.invtype = 'NNLS'; -0086 % for multi-exponential inversion log-gating is default -0087 data.process.gatetype = 'log'; -0088 -0089 % set LIAG defaults -0090 if isfield(data.import,'LIAG') -0091 data.invstd.regtype = 'lcurve'; -0092 data.invstd.lambda = 1; -0093 data.invstd.lambdaR = [1e-5 1]; -0094 else -0095 data.invstd.regtype = 'manual'; -0096 data.invstd.lambda = 1e-2; -0097 end -0098 % update GUI data -0099 setappdata(fig,'data',data); -0100 % because the gate type could have changed update data -0101 onRadioGates(gui.radio_handles.process_gates_log); -0102 data = getappdata(fig,'data'); -0103 -0104 case 4 -0105 data.invstd.invtype = 'MUMO'; -0106 data.invstd.regtype = 'none'; -0107 data.invstd.lambda = 1; -0108 end -0109 end -0110 % update GUI data -0111 setappdata(fig,'data',data); -0112 % update interface -0113 NUCLEUSinv_updateInterface; -0114 -0115 end -0116 -0117 %------------- END OF CODE -------------- -0118 -0119 %% License: -0120 % MIT License -0121 % -0122 % Copyright (c) 2018 Thomas Hiller -0123 % -0124 % Permission is hereby granted, free of charge, to any person obtaining a copy -0125 % of this software and associated documentation files (the "Software"), to deal -0126 % in the Software without restriction, including without limitation the rights -0127 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0128 % copies of the Software, and to permit persons to whom the Software is -0129 % furnished to do so, subject to the following conditions: -0130 % -0131 % The above copyright notice and this permission notice shall be included in all -0132 % copies or substantial portions of the Software. -0133 % -0134 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0135 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0136 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0137 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0138 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0139 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0140 % SOFTWARE. +0061 case 2 +0062 data.invstd.invtype = 'free'; +0063 data.invstd.regtype = 'none'; +0064 data.invstd.lambda = 1; +0065 data.invstd.freeDT = 2; +0066 +0067 % % if the FixedTimeView window is open update it +0068 % if ~isempty(findobj('Tag','FIXEDTIMEVIEW')) +0069 % data.invstd.Tfixed_bool = zeros(1,5); +0070 % % update GUI data +0071 % setappdata(fig,'data',data); +0072 % FixedTimeView(gui.menu.extra_fixedtime); +0073 % data = getappdata(fig,'data'); +0074 % end +0075 +0076 case 3 +0077 data.invstd.invtype = 'NNLS'; +0078 data.invstd.regtype = 'manual'; +0079 data.invstd.lambda = 1; +0080 +0081 case 4 +0082 data.invstd.invtype = 'LU'; +0083 data.invstd.regtype = 'auto'; +0084 data.invstd.lambda = -1; +0085 +0086 case 5 +0087 data.invstd.invtype = 'MUMO'; +0088 data.invstd.regtype = 'none'; +0089 data.invstd.lambda = 1; +0090 end +0091 +0092 case 'off' +0093 switch value +0094 case 1 +0095 data.invstd.invtype = 'mono'; +0096 data.invstd.regtype = 'none'; +0097 data.invstd.lambda = 1; +0098 data.invstd.freeDT = 1; +0099 +0100 case 2 +0101 data.invstd.invtype = 'free'; +0102 data.invstd.regtype = 'none'; +0103 data.invstd.lambda = 1; +0104 data.invstd.freeDT = 2; +0105 +0106 case 3 +0107 data.invstd.invtype = 'NNLS'; +0108 % for multi-exponential inversion log-gating is default +0109 data.process.gatetype = 'log'; +0110 +0111 % set LIAG defaults +0112 if isfield(data.import,'LIAG') +0113 data.invstd.regtype = 'lcurve'; +0114 data.invstd.lambda = 1; +0115 data.invstd.lambdaR = [1e-5 1]; +0116 else +0117 data.invstd.regtype = 'manual'; +0118 data.invstd.lambda = 1e-2; +0119 end +0120 % update GUI data +0121 setappdata(fig,'data',data); +0122 % because the gate type could have changed update data +0123 onRadioGates(gui.radio_handles.process_gates_log); +0124 data = getappdata(fig,'data'); +0125 +0126 case 4 +0127 data.invstd.invtype = 'MUMO'; +0128 data.invstd.regtype = 'none'; +0129 data.invstd.lambda = 1; +0130 end +0131 end +0132 +0133 % if the FixedTimeView window is open update it +0134 if ~isempty(findobj('Tag','FIXEDTIMEVIEW')) +0135 data.invstd.Tfixed_bool = zeros(1,5); +0136 % update GUI data +0137 setappdata(fig,'data',data); +0138 FixedTimeView(gui.menu.extra_fixedtime); +0139 data = getappdata(fig,'data'); +0140 end +0141 +0142 % update GUI data +0143 setappdata(fig,'data',data); +0144 % update interface +0145 NUCLEUSinv_updateInterface; +0146 +0147 end +0148 +0149 %------------- END OF CODE -------------- +0150 +0151 %% License: +0152 % MIT License +0153 % +0154 % Copyright (c) 2018 Thomas Hiller +0155 % +0156 % Permission is hereby granted, free of charge, to any person obtaining a copy +0157 % of this software and associated documentation files (the "Software"), to deal +0158 % in the Software without restriction, including without limitation the rights +0159 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0160 % copies of the Software, and to permit persons to whom the Software is +0161 % furnished to do so, subject to the following conditions: +0162 % +0163 % The above copyright notice and this permission notice shall be included in all +0164 % copies or substantial portions of the Software. +0165 % +0166 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0167 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0168 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0169 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0170 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0171 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0172 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/callbacks/popup/onPopupInvstdTypeOptional.html b/doc/nucleus/callbacks/popup/onPopupInvstdTypeOptional.html index b4741b1..819b096 100644 --- a/doc/nucleus/callbacks/popup/onPopupInvstdTypeOptional.html +++ b/doc/nucleus/callbacks/popup/onPopupInvstdTypeOptional.html @@ -62,7 +62,7 @@

    DESCRIPTION ^CROSS-REFERENCE INFORMATION ^

    This function calls: +
  • NUCLEUSinv_updateInterface updates all GUI elements
  • FixedTimeView is an extra subGUI to fix certain relaxation times during
  • clearSingleAxis clears an individual axis
  • This function is called by: @@ -119,132 +119,140 @@

    SOURCE CODE ^% change settings accordingly 0047 switch invtype 0048 case 'free' -0049 % # free decay times = value (1 to 5) +0049 % # free relaxation times = value (1 to 5) 0050 data.invstd.freeDT = value; -0051 -0052 case 'NNLS' -0053 switch data.info.ExpertMode -0054 case 'on' -0055 switch value % different regularization options/methods -0056 case 1 % manual -0057 data.invstd.regtype = 'manual'; -0058 data.invstd.lambda = 1; -0059 % if there is an optimal lambda from the L-curve -0060 % use it -0061 if isfield(data,'results') && ... -0062 isfield(data.results,'lcurve') -0063 index = data.results.lcurve.index; -0064 data.invstd.lambda = data.results.lcurve.lambda(index); -0065 end -0066 -0067 case 2 % gcv_tikh -0068 data.invstd.regtype = 'gcv_tikh'; -0069 data.invstd.lambda = 1; -0070 -0071 case 3 % gcv_trunc -0072 data.invstd.regtype = 'gcv_trunc'; -0073 data.invstd.lambda = 1; +0051 +0052 % if the FixedTimeView window is open update it +0053 if ~isempty(findobj('Tag','FIXEDTIMEVIEW')) +0054 % update GUI data +0055 setappdata(fig,'data',data); +0056 FixedTimeView(gui.menu.extra_fixedtime); +0057 data = getappdata(fig,'data'); +0058 end +0059 +0060 case 'NNLS' +0061 switch data.info.ExpertMode +0062 case 'on' +0063 switch value % different regularization options/methods +0064 case 1 % manual +0065 data.invstd.regtype = 'manual'; +0066 data.invstd.lambda = 1; +0067 % if there is an optimal lambda from the L-curve +0068 % use it +0069 if isfield(data,'results') && ... +0070 isfield(data.results,'lcurve') +0071 index = data.results.lcurve.index; +0072 data.invstd.lambda = data.results.lcurve.lambda(index); +0073 end 0074 -0075 case 4 % gcv_damp -0076 data.invstd.regtype = 'gcv_damp'; +0075 case 2 % gcv_tikh +0076 data.invstd.regtype = 'gcv_tikh'; 0077 data.invstd.lambda = 1; 0078 -0079 case 5 % discrep. principle -0080 if data.results.nmrproc.noise == 0 -0081 helpdlg('Discrepancy Principle does not work with noise = 0','Change Regularization Method'); -0082 data.invstd.regtype = 'manual'; -0083 data.invstd.lambda = 1; -0084 else -0085 data.invstd.regtype = 'discrep'; -0086 data.invstd.lambda = 1; -0087 end -0088 -0089 case 6 % l-curve -0090 data.invstd.regtype = 'lcurve'; -0091 lambdaFAK = 1; -0092 if strcmp(data.process.gatetype,'log') || strcmp(data.process.gatetype,'lin') -0093 lambdaFAK = 100; -0094 end -0095 data.invstd.lambdaR = data.invstd.lambdaRinit./lambdaFAK; -0096 clearSingleAxis(gui.axes_handles.rtd); -0097 clearSingleAxis(gui.axes_handles.psd); -0098 end -0099 -0100 case 'off' -0101 switch value % different regularization options/methods -0102 case 1 % manual -0103 data.invstd.regtype = 'manual'; -0104 lambdaFAK = 1; -0105 if strcmp(data.process.gatetype,'log') || strcmp(data.process.gatetype,'lin') -0106 lambdaFAK = 100; -0107 end -0108 data.invstd.lambda = 1/lambdaFAK; -0109 % if there is an optimal lambda from the L-curve -0110 % use it -0111 if isfield(data,'results') && ... -0112 isfield(data.results,'lcurve') -0113 index = data.results.lcurve.index; -0114 data.invstd.lambda = data.results.lcurve.lambda(index); -0115 end -0116 case 2 % l-curve -0117 data.invstd.regtype = 'lcurve'; -0118 lambdaFAK = 1; -0119 if strcmp(data.process.gatetype,'log') || strcmp(data.process.gatetype,'lin') -0120 lambdaFAK = 100; -0121 end -0122 data.invstd.lambdaR = data.invstd.lambdaRinit./lambdaFAK; -0123 clearSingleAxis(gui.axes_handles.rtd); -0124 clearSingleAxis(gui.axes_handles.psd); -0125 end -0126 end -0127 -0128 case 'LU' -0129 switch value % different regularization options/methods -0130 case 1 % manual -0131 data.invstd.regtype = 'manual'; -0132 data.invstd.lambda = 1; -0133 -0134 case 2 % automatic -0135 data.invstd.regtype = 'auto'; -0136 data.invstd.lambda = -1; -0137 end -0138 -0139 case 'MUMO' -0140 % # free distributions = value (1 to 4) -0141 data.invstd.freeDT = value; -0142 end -0143 -0144 % update GUI data -0145 setappdata(fig,'data',data); -0146 % update interface -0147 NUCLEUSinv_updateInterface; -0148 -0149 end -0150 -0151 %------------- END OF CODE -------------- -0152 -0153 %% License: -0154 % MIT License -0155 % -0156 % Copyright (c) 2018 Thomas Hiller -0157 % -0158 % Permission is hereby granted, free of charge, to any person obtaining a copy -0159 % of this software and associated documentation files (the "Software"), to deal -0160 % in the Software without restriction, including without limitation the rights -0161 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0162 % copies of the Software, and to permit persons to whom the Software is -0163 % furnished to do so, subject to the following conditions: -0164 % -0165 % The above copyright notice and this permission notice shall be included in all -0166 % copies or substantial portions of the Software. -0167 % -0168 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0169 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0170 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0171 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0172 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0173 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0174 % SOFTWARE. +0079 case 3 % gcv_trunc +0080 data.invstd.regtype = 'gcv_trunc'; +0081 data.invstd.lambda = 1; +0082 +0083 case 4 % gcv_damp +0084 data.invstd.regtype = 'gcv_damp'; +0085 data.invstd.lambda = 1; +0086 +0087 case 5 % discrep. principle +0088 if data.results.nmrproc.noise == 0 +0089 helpdlg('Discrepancy Principle does not work with noise = 0','Change Regularization Method'); +0090 data.invstd.regtype = 'manual'; +0091 data.invstd.lambda = 1; +0092 else +0093 data.invstd.regtype = 'discrep'; +0094 data.invstd.lambda = 1; +0095 end +0096 +0097 case 6 % l-curve +0098 data.invstd.regtype = 'lcurve'; +0099 lambdaFAK = 1; +0100 if strcmp(data.process.gatetype,'log') || strcmp(data.process.gatetype,'lin') +0101 lambdaFAK = 100; +0102 end +0103 data.invstd.lambdaR = data.invstd.lambdaRinit./lambdaFAK; +0104 clearSingleAxis(gui.axes_handles.rtd); +0105 clearSingleAxis(gui.axes_handles.psd); +0106 end +0107 +0108 case 'off' +0109 switch value % different regularization options/methods +0110 case 1 % manual +0111 data.invstd.regtype = 'manual'; +0112 lambdaFAK = 1; +0113 if strcmp(data.process.gatetype,'log') || strcmp(data.process.gatetype,'lin') +0114 lambdaFAK = 100; +0115 end +0116 data.invstd.lambda = 1/lambdaFAK; +0117 % if there is an optimal lambda from the L-curve +0118 % use it +0119 if isfield(data,'results') && ... +0120 isfield(data.results,'lcurve') +0121 index = data.results.lcurve.index; +0122 data.invstd.lambda = data.results.lcurve.lambda(index); +0123 end +0124 case 2 % l-curve +0125 data.invstd.regtype = 'lcurve'; +0126 lambdaFAK = 1; +0127 if strcmp(data.process.gatetype,'log') || strcmp(data.process.gatetype,'lin') +0128 lambdaFAK = 100; +0129 end +0130 data.invstd.lambdaR = data.invstd.lambdaRinit./lambdaFAK; +0131 clearSingleAxis(gui.axes_handles.rtd); +0132 clearSingleAxis(gui.axes_handles.psd); +0133 end +0134 end +0135 +0136 case 'LU' +0137 switch value % different regularization options/methods +0138 case 1 % manual +0139 data.invstd.regtype = 'manual'; +0140 data.invstd.lambda = 1; +0141 +0142 case 2 % automatic +0143 data.invstd.regtype = 'auto'; +0144 data.invstd.lambda = -1; +0145 end +0146 +0147 case 'MUMO' +0148 % # free distributions = value (1 to 4) +0149 data.invstd.freeDT = value; +0150 end +0151 +0152 % update GUI data +0153 setappdata(fig,'data',data); +0154 % update interface +0155 NUCLEUSinv_updateInterface; +0156 +0157 end +0158 +0159 %------------- END OF CODE -------------- +0160 +0161 %% License: +0162 % MIT License +0163 % +0164 % Copyright (c) 2018 Thomas Hiller +0165 % +0166 % Permission is hereby granted, free of charge, to any person obtaining a copy +0167 % of this software and associated documentation files (the "Software"), to deal +0168 % in the Software without restriction, including without limitation the rights +0169 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0170 % copies of the Software, and to permit persons to whom the Software is +0171 % furnished to do so, subject to the following conditions: +0172 % +0173 % The above copyright notice and this permission notice shall be included in all +0174 % copies or substantial portions of the Software. +0175 % +0176 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0177 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0178 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0179 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0180 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0181 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0182 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/functions/import/LoadNMRData_driver.html b/doc/nucleus/functions/import/LoadNMRData_driver.html index c36ee62..6656f6c 100644 --- a/doc/nucleus/functions/import/LoadNMRData_driver.html +++ b/doc/nucleus/functions/import/LoadNMRData_driver.html @@ -74,7 +74,7 @@

    DESCRIPTION ^CROSS-REFERENCE INFORMATION ^

    This function calls: +
  • LoadNMRData_bamtom loads BAM TOM data
  • LoadNMRData_bgr loads standard BGR NMR data
  • LoadNMRData_bgrmat loads already preprocessed BGR NMR data; check the
  • LoadNMRData_corelab loads NMR data as provided by Corelab
  • LoadNMRData_dart loads RWTH NMR data (recorded with the Dart device); the
  • LoadNMRData_field loads RWTH field NMR data (Blümich group bore-hole tool)
  • LoadNMRData_helios loads BGR NMR data from a typical folder structure
  • LoadNMRData_ibac imports NMR data from the PM5 and PM25
  • LoadNMRData_liag loads LIAG NMR data
  • LoadNMRData_mouse loads NMR data saved by the MOUSE
  • LoadNMRData_mousecpmg
  • LoadNMRData_mouselift loads NMR Mouse data from an original folder structure as
  • LoadNMRData_rwth loads RWTH NMR data (saved by the old Prospa version)
  • fitDataFree is a control routine that uses 'lsqcurvefit' to fit NMR data
  • This function is called by: @@ -136,24 +136,24 @@

    SOURCE CODE ^LoadNMRData_bamtom(in); 0052 case 'bgr' 0053 out = LoadNMRData_bgr(in); -0054 case 'MouseCPMG' -0055 out = LoadNMRData_mousecpmg(in); -0056 case 'bgrmat' -0057 out = LoadNMRData_bgrmat(in); -0058 case {'MouseLiftSingle','MouseLiftAll'} -0059 out = LoadNMRData_mouselift(in); -0060 case 'helios' -0061 out = LoadNMRData_helios(in); -0062 case 'corelab' -0063 out = LoadNMRData_corelab(in); -0064 case 'dart' -0065 out = LoadNMRData_dart(in); -0066 case 'field' -0067 out = LoadNMRData_field(in); -0068 case 'liag' -0069 out = LoadNMRData_liag(in); -0070 case 'mouse' -0071 out = LoadNMRData_mouse(in); +0054 case 'bgrmat' +0055 out = LoadNMRData_bgrmat(in); +0056 case 'corelab' +0057 out = LoadNMRData_corelab(in); +0058 case 'dart' +0059 out = LoadNMRData_dart(in); +0060 case 'field' +0061 out = LoadNMRData_field(in); +0062 case {'heliosCPMG','heliosSeries'} +0063 out = LoadNMRData_helios(in); +0064 case 'liag' +0065 out = LoadNMRData_liag(in); +0066 case 'mouse' +0067 out = LoadNMRData_mouse(in); +0068 case 'MouseCPMG' +0069 out = LoadNMRData_mousecpmg(in); +0070 case 'MouseLift' +0071 out = LoadNMRData_mouselift(in); 0072 case 'rwth' 0073 out = LoadNMRData_rwth(in); 0074 case 'pm5' @@ -164,47 +164,50 @@

    SOURCE CODE ^% if an imported T2 signal has no imaginary part, the noise is estimated 0081 % from an exponential fit -0082 if ~strcmp(in.fileformat,'helios') -0083 for i = 1:numel(out.nmrData) -0084 if isreal(out.nmrData{i}.signal) -0085 disp('NUCLUESinv import: Estimating noise from exponential fit ...'); -0086 param.T1IRfac = out.nmrData{i}.T1IRfac; -0087 param.noise = 0; -0088 param.optim = 'off'; -0089 invstd = fitDataFree(out.nmrData{i}.time,out.nmrData{i}.signal,... -0090 out.nmrData{i}.flag,param,5); -0091 out.nmrData{i}.noise = invstd.rms; -0092 disp('NUCLUESinv import: done.') -0093 end -0094 end -0095 end -0096 -0097 return -0098 -0099 %------------- END OF CODE -------------- -0100 -0101 %% License: -0102 % MIT License -0103 % -0104 % Copyright (c) 2018 Thomas Hiller -0105 % -0106 % Permission is hereby granted, free of charge, to any person obtaining a copy -0107 % of this software and associated documentation files (the "Software"), to deal -0108 % in the Software without restriction, including without limitation the rights -0109 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0110 % copies of the Software, and to permit persons to whom the Software is -0111 % furnished to do so, subject to the following conditions: -0112 % -0113 % The above copyright notice and this permission notice shall be included in all -0114 % copies or substantial portions of the Software. +0082 if ~strcmp(in.fileformat,'heliosCPMG') && ~strcmp(in.fileformat,'heliosSeries')... +0083 && (isfield(in,'T1T2') && ~strcmp(in.T1T2,'T1')) +0084 for i = 1:numel(out.nmrData) +0085 if isreal(out.nmrData{i}.signal) +0086 disp('NUCLUESinv import: Estimating noise from exponential fit ...'); +0087 param.T1IRfac = out.nmrData{i}.T1IRfac; +0088 param.noise = 0; +0089 param.optim = 'off'; +0090 param.Tfixed_bool = [0 0 0 0 0]; +0091 param.Tfixed_val = [0 0 0 0 0]; +0092 invstd = fitDataFree(out.nmrData{i}.time,out.nmrData{i}.signal,... +0093 out.nmrData{i}.flag,param,5); +0094 out.nmrData{i}.noise = invstd.rms; +0095 disp('NUCLUESinv import: done.') +0096 end +0097 end +0098 end +0099 +0100 return +0101 +0102 %------------- END OF CODE -------------- +0103 +0104 %% License: +0105 % MIT License +0106 % +0107 % Copyright (c) 2018 Thomas Hiller +0108 % +0109 % Permission is hereby granted, free of charge, to any person obtaining a copy +0110 % of this software and associated documentation files (the "Software"), to deal +0111 % in the Software without restriction, including without limitation the rights +0112 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0113 % copies of the Software, and to permit persons to whom the Software is +0114 % furnished to do so, subject to the following conditions: 0115 % -0116 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0117 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0118 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0119 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0120 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0121 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0122 % SOFTWARE. +0116 % The above copyright notice and this permission notice shall be included in all +0117 % copies or substantial portions of the Software. +0118 % +0119 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0120 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0121 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0122 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0123 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0124 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0125 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/functions/import/LoadNMRData_helios.html b/doc/nucleus/functions/import/LoadNMRData_helios.html index 42ebcea..0fedea1 100644 --- a/doc/nucleus/functions/import/LoadNMRData_helios.html +++ b/doc/nucleus/functions/import/LoadNMRData_helios.html @@ -26,8 +26,8 @@

    SYNOPSIS ^function out = LoadNMRData_helios(in)

    DESCRIPTION ^

    -
    LoadNMRData_helios loads BGR NMR data from a typical folder structure 
    -produced by the Helios NMR Scanner 
    +
    LoadNMRData_helios loads BGR NMR data from a typical folder structure
    +produced by the Helios NMR Scanner
     
      Syntax:
            out = LoadNMRData_helios(in)
    @@ -143,53 +143,76 @@ 

    SOURCE CODE ^%% load NMR data file 0067 function [data,pardata] = LoadDataFile(datapath,fname,flag) 0068 -0069 A = importdata(fullfile(datapath,fname),'\t'); -0070 t_echo = A(1,2); -0071 n_echo = A(1,3); -0072 -0073 time = t_echo:t_echo:t_echo*n_echo; -0074 time = time(:); -0075 re = -A(2,1:length(time)); -0076 im = -A(3,1:length(time)); -0077 re = re(:); -0078 im = im(:); -0079 -0080 data.flag = flag; -0081 data.time = time; -0082 data.signal = complex(re,im); -0083 [data.signal,data.phase] = rotateT2phase(data.signal); +0069 % importdata is rather slow for row data +0070 % A = importdata(fullfile(datapath,fname),'\t'); +0071 +0072 % first read the file to get the number of echos +0073 fid = fopen(fullfile(datapath,fname)); +0074 A0 = textscan(fid,'%f','Delimiter','\n'); +0075 fclose(fid); +0076 % now read all three lines +0077 fid = fopen(fullfile(datapath,fname)); +0078 A1 = textscan(fid,'%f',A0{1}(3)); +0079 A2 = textscan(fid,'%f',A0{1}(3)); +0080 A3 = textscan(fid,'%f',A0{1}(3)); +0081 fclose(fid); +0082 % and stitch them together +0083 A = [A1{1}';A2{1}';A3{1}']; 0084 -0085 data.raw.time = data.time; -0086 data.raw.signal = data.signal; -0087 -0088 pardata.t_echo = t_echo; -0089 pardata.n_echo = n_echo; -0090 -0091 end -0092 %------------- END OF CODE -------------- -0093 -0094 %% License: -0095 % MIT License -0096 % -0097 % Copyright (c) 2021 Stephan Costabel -0098 % -0099 % Permission is hereby granted, free of charge, to any person obtaining a copy -0100 % of this software and associated documentation files (the "Software"), to deal -0101 % in the Software without restriction, including without limitation the rights -0102 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0103 % copies of the Software, and to permit persons to whom the Software is -0104 % furnished to do so, subject to the following conditions: -0105 % -0106 % The above copyright notice and this permission notice shall be included in all -0107 % copies or substantial portions of the Software. -0108 % -0109 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0110 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0111 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0112 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0113 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0114 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0115 % SOFTWARE.

    +0085 t_echo = A(1,2); +0086 n_echo = A(1,3); +0087 freq = A(1,4); +0088 Nscans = A(1,5); +0089 +0090 time = t_echo:t_echo:t_echo*n_echo; +0091 time = time(:); +0092 re = A(2,1:length(time)); +0093 im = A(3,1:length(time)); +0094 re = re(:); +0095 im = im(:); +0096 +0097 data.flag = flag; +0098 data.raw.time = time; +0099 data.raw.signal = complex(re,im); +0100 [data.signal,data.phase] = rotateT2phase(data.raw.signal); +0101 +0102 data.time = data.raw.time; +0103 +0104 pardata.t_echo = t_echo; +0105 pardata.n_echo = n_echo; +0106 pardata.freq = freq; +0107 pardata.Nscans = Nscans; +0108 d{1}{1,1} = ['t_echo = ',num2str(t_echo)]; +0109 d{1}{2,1} = ['n_echo = ',num2str(n_echo)]; +0110 d{1}{3,1} = ['freq = ',num2str(freq)]; +0111 d{1}{4,1} = ['Nscans = ',num2str(Nscans)]; +0112 pardata.all = d; +0113 +0114 end +0115 %------------- END OF CODE -------------- +0116 +0117 %% License: +0118 % MIT License +0119 % +0120 % Copyright (c) 2021 Stephan Costabel +0121 % +0122 % Permission is hereby granted, free of charge, to any person obtaining a copy +0123 % of this software and associated documentation files (the "Software"), to deal +0124 % in the Software without restriction, including without limitation the rights +0125 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0126 % copies of the Software, and to permit persons to whom the Software is +0127 % furnished to do so, subject to the following conditions: +0128 % +0129 % The above copyright notice and this permission notice shall be included in all +0130 % copies or substantial portions of the Software. +0131 % +0132 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0133 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0134 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0135 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0136 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0137 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0138 % SOFTWARE.

    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/functions/import/LoadNMRData_liag.html b/doc/nucleus/functions/import/LoadNMRData_liag.html index 6b3f19d..e7182f1 100644 --- a/doc/nucleus/functions/import/LoadNMRData_liag.html +++ b/doc/nucleus/functions/import/LoadNMRData_liag.html @@ -195,7 +195,7 @@

    SOURCE CODE ^for i = 1:size(d{1},1) 0120 str = char(d{1}(i)); 0121 str = fixParameterString(str); -0122 eval(['data.',str,';']); +0122 eval(['data.',str,';']); %#ok<EVLDOT> 0123 end 0124 data.all = d; 0125 diff --git a/doc/nucleus/functions/import/LoadNMRData_mousecpmg.html b/doc/nucleus/functions/import/LoadNMRData_mousecpmg.html new file mode 100644 index 0000000..54addb5 --- /dev/null +++ b/doc/nucleus/functions/import/LoadNMRData_mousecpmg.html @@ -0,0 +1,227 @@ + + + + Description of LoadNMRData_mousecpmg + + + + + + + + + + + +

    LoadNMRData_mousecpmg +

    + +

    PURPOSE ^

    +
    + +

    SYNOPSIS ^

    +
    function out = LoadNMRData_mousecpmg(in)
    + +

    DESCRIPTION ^

    +
    LoadNMRData_bgr2 loads BGR NMR data from an original folder structure as
    +generated by the NMR MOUSE (the routines are also similar to
    +"LoadNMRData_mouse" the only difference is the in.T1T2 input flag)
    +
    + Syntax:
    +       out = LoadNMRData_mousecpmg(in)
    +
    + Inputs:
    +       in - input structure
    +       in.path - data path
    +       in.T1T2 - T1 / T2 flag
    +       in.fileformat - 'mouse'
    +
    + Outputs:
    +       out - output structure
    +       out.parData - parameter file data
    +       out.nmrData - NMR data
    +
    + Example:
    +       out = LoadNMRData_mousecpmg(in)
    +
    + Other m-files required:
    +       fixParameterString
    +
    + Subfunctions:
    +       LoadDataFile
    +       LoadParameterFile
    +
    + MAT-files required:
    +       none
    +
    + See also: NUCLEUSinv
    + Author: Stephan Costabel
    + email: stephan.costabel[at]bgr.de
    + License: MIT License (at end)
    + + +

    CROSS-REFERENCE INFORMATION ^

    +This function calls: + +This function is called by: + + + +

    SUBFUNCTIONS ^

    + + +

    SOURCE CODE ^

    +
    0001 function out = LoadNMRData_mousecpmg(in)
    +0002 %LoadNMRData_bgr2 loads BGR NMR data from an original folder structure as
    +0003 %generated by the NMR MOUSE (the routines are also similar to
    +0004 %"LoadNMRData_mouse" the only difference is the in.T1T2 input flag)
    +0005 %
    +0006 % Syntax:
    +0007 %       out = LoadNMRData_mousecpmg(in)
    +0008 %
    +0009 % Inputs:
    +0010 %       in - input structure
    +0011 %       in.path - data path
    +0012 %       in.T1T2 - T1 / T2 flag
    +0013 %       in.fileformat - 'mouse'
    +0014 %
    +0015 % Outputs:
    +0016 %       out - output structure
    +0017 %       out.parData - parameter file data
    +0018 %       out.nmrData - NMR data
    +0019 %
    +0020 % Example:
    +0021 %       out = LoadNMRData_mousecpmg(in)
    +0022 %
    +0023 % Other m-files required:
    +0024 %       fixParameterString
    +0025 %
    +0026 % Subfunctions:
    +0027 %       LoadDataFile
    +0028 %       LoadParameterFile
    +0029 %
    +0030 % MAT-files required:
    +0031 %       none
    +0032 %
    +0033 % See also: NUCLEUSinv
    +0034 % Author: Stephan Costabel
    +0035 % email: stephan.costabel[at]bgr.de
    +0036 % License: MIT License (at end)
    +0037 
    +0038 %------------- BEGIN CODE --------------
    +0039 
    +0040 %% start processing the files
    +0041 % load Parameter file
    +0042 [parData] = LoadParameterFile(in.path,'acqu.par');
    +0043 
    +0044 % find all data files
    +0045 files = dir(fullfile(in.path,'*.csv'));
    +0046 
    +0047 % remove not needed csv-files
    +0048 files = files(~ismember({files.name},'data2.csv'));
    +0049 
    +0050 nmrData = cell(1,size(files,1));
    +0051 for i = 1:size(files,1)
    +0052     % read the data file
    +0053     data  = Load_csvDataFile(in.path,files(i).name,in.T1T2);
    +0054     
    +0055     % get file statistics
    +0056     nmrData{i}.datfile = files(i).name;
    +0057     nmrData{i}.date = files(i).date;
    +0058     nmrData{i}.datenum = files(i).datenum;
    +0059     nmrData{i}.bytes = files(i).bytes;
    +0060     
    +0061     % save the NMR data
    +0062     nmrData{i}.flag = data.flag;
    +0063     nmrData{i}.T1IRfac = 1;
    +0064     nmrData{i}.time = data.time;
    +0065     nmrData{i}.signal = data.signal;
    +0066     nmrData{i}.raw = data.raw;
    +0067     if strcmp(in.T1T2,'T2')
    +0068         %nmrData{i}.phase = data.phase;
    +0069         nmrData{i}.phase = 0;
    +0070     end
    +0071     clear data
    +0072 end
    +0073 
    +0074 % save data to output struct
    +0075 out.parData = parData;
    +0076 out.nmrData = nmrData;
    +0077 
    +0078 end
    +0079 
    +0080 %% load NMR data file
    +0081 function [data] = Load_csvDataFile(datapath,fname,flag)
    +0082 
    +0083 d = csvread(fullfile(datapath,fname));
    +0084 
    +0085 if size(d,2) == 2
    +0086     data.flag = flag;
    +0087     data.time = d(:,1)/1000000;
    +0088     data.signal = d(:,2);
    +0089 
    +0090 else
    +0091     data.flag = '0';
    +0092     data.time = 0;
    +0093     data.signal = 0;
    +0094     data.phase = 0;
    +0095 end
    +0096 
    +0097 data.raw.time = data.time;
    +0098 data.raw.signal = data.signal;
    +0099 
    +0100 end
    +0101 
    +0102 %% load parameter file
    +0103 function [data] = LoadParameterFile(datapath,fname)
    +0104 
    +0105 fid = fopen(fullfile(datapath,fname));
    +0106 d = textscan(fid,'%s','Delimiter','\n');
    +0107 fclose(fid);
    +0108 
    +0109 for i = 1:size(d{1},1)
    +0110     str = char(d{1}(i));
    +0111     str = fixParameterString(str);
    +0112     if strcmp(str(end),'d')
    +0113         str = str(1:end-1);
    +0114         %frag nich...
    +0115     end
    +0116     eval(['data.',str,';']);
    +0117 end
    +0118 data.all = d;
    +0119 
    +0120 end
    +0121 
    +0122 %------------- END OF CODE --------------
    +0123 
    +0124 %% License:
    +0125 % MIT License
    +0126 %
    +0127 % Copyright (c) 2018 Thomas Hiller
    +0128 %
    +0129 % Permission is hereby granted, free of charge, to any person obtaining a copy
    +0130 % of this software and associated documentation files (the "Software"), to deal
    +0131 % in the Software without restriction, including without limitation the rights
    +0132 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +0133 % copies of the Software, and to permit persons to whom the Software is
    +0134 % furnished to do so, subject to the following conditions:
    +0135 %
    +0136 % The above copyright notice and this permission notice shall be included in all
    +0137 % copies or substantial portions of the Software.
    +0138 %
    +0139 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +0140 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +0141 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +0142 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +0143 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +0144 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +0145 % SOFTWARE.
    +
    Generated by m2html © 2005
    + + \ No newline at end of file diff --git a/doc/nucleus/functions/import/LoadNMRData_mouselift.html b/doc/nucleus/functions/import/LoadNMRData_mouselift.html index 5fe5694..3736f33 100644 --- a/doc/nucleus/functions/import/LoadNMRData_mouselift.html +++ b/doc/nucleus/functions/import/LoadNMRData_mouselift.html @@ -197,7 +197,7 @@

    SOURCE CODE ^for i = 1:size(d{1},1) 0120 str = char(d{1}(i)); 0121 str = fixParameterString(str); -0122 eval(['data.',str,';']); +0122 eval(['data.',str,';']); %#ok<EVLDOT> 0123 end 0124 data.all = d; 0125 diff --git a/doc/nucleus/functions/import/fixParameterString.html b/doc/nucleus/functions/import/fixParameterString.html index c89dc8e..6f3ebad 100644 --- a/doc/nucleus/functions/import/fixParameterString.html +++ b/doc/nucleus/functions/import/fixParameterString.html @@ -62,7 +62,7 @@

    CROSS-REFERENCE INFORMATION ^
 </ul>
 This function is called by:
 <ul style= -
  • LoadNMRData_bamtom loads BAM TOM data
  • LoadNMRData_bgr loads standard BGR NMR data
  • LoadNMRData_bgr2 loads BGR NMR data from an original folder structure as
  • LoadNMRData_field loads RWTH field NMR data (Blümich group bore-hole tool)
  • LoadNMRData_ibac imports NMR data from the PM5 and PM25
  • LoadNMRData_liag loads LIAG NMR data
  • LoadNMRData_mouse loads NMR data saved by the MOUSE
  • LoadNMRData_mouselift loads NMR Mouse data from an original folder structure as
  • LoadNMRData_rwth loads RWTH NMR data (saved by the old Prospa version)
  • importNMRdata is the general import routine for NMR data
  • +
  • LoadNMRData_bamtom loads BAM TOM data
  • LoadNMRData_bgr loads standard BGR NMR data
  • LoadNMRData_bgr2 loads BGR NMR data from an original folder structure as
  • LoadNMRData_field loads RWTH field NMR data (Blümich group bore-hole tool)
  • LoadNMRData_ibac imports NMR data from the PM5 and PM25
  • LoadNMRData_liag loads LIAG NMR data
  • LoadNMRData_mouse loads NMR data saved by the MOUSE
  • LoadNMRData_mousecpmg
  • LoadNMRData_mouselift loads NMR Mouse data from an original folder structure as
  • LoadNMRData_rwth loads RWTH NMR data (saved by the old Prospa version)
  • importNMRdata is the general import routine for NMR data
  • @@ -115,32 +115,37 @@

    SOURCE CODE ^%% check for " and make it '' 0046 str = strrep(str,'"',''''); 0047 -0048 return -0049 -0050 %------------- END OF CODE -------------- -0051 -0052 %% License: -0053 % MIT License -0054 % -0055 % Copyright (c) 2018 Thomas Hiller -0056 % -0057 % Permission is hereby granted, free of charge, to any person obtaining a copy -0058 % of this software and associated documentation files (the "Software"), to deal -0059 % in the Software without restriction, including without limitation the rights -0060 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0061 % copies of the Software, and to permit persons to whom the Software is -0062 % furnished to do so, subject to the following conditions: -0063 % -0064 % The above copyright notice and this permission notice shall be included in all -0065 % copies or substantial portions of the Software. -0066 % -0067 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0068 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0069 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0070 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0071 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0072 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0073 % SOFTWARE. +0048 %% check for "d" at the end of a number and delete it +0049 if strncmpi(str,'b1Freq',6) +0050 str = strrep(str,'d',''); +0051 end +0052 +0053 return +0054 +0055 %------------- END OF CODE -------------- +0056 +0057 %% License: +0058 % MIT License +0059 % +0060 % Copyright (c) 2018 Thomas Hiller +0061 % +0062 % Permission is hereby granted, free of charge, to any person obtaining a copy +0063 % of this software and associated documentation files (the "Software"), to deal +0064 % in the Software without restriction, including without limitation the rights +0065 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0066 % copies of the Software, and to permit persons to whom the Software is +0067 % furnished to do so, subject to the following conditions: +0068 % +0069 % The above copyright notice and this permission notice shall be included in all +0070 % copies or substantial portions of the Software. +0071 % +0072 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0073 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0074 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0075 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0076 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0077 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0078 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/functions/import/menu.html b/doc/nucleus/functions/import/menu.html index 11c11c6..9b2cf27 100644 --- a/doc/nucleus/functions/import/menu.html +++ b/doc/nucleus/functions/import/menu.html @@ -18,7 +18,7 @@

    Index for nucleus\functions\import

    Matlab files in this directory:

    +
  • LoadNMRData_bamtom
  • LoadNMRData_bgr
  • LoadNMRData_bgr2
  • LoadNMRData_bgrmat
  • LoadNMRData_corelab
  • LoadNMRData_dart
  • LoadNMRData_driver
  • LoadNMRData_field
  • LoadNMRData_helios
  • LoadNMRData_ibac
  • LoadNMRData_liag
  • LoadNMRData_mouse
  • LoadNMRData_mousecpmg
  • LoadNMRData_mouselift
  • LoadNMRData_rwth
  • fixParameterString
  • rotateT2phase
  • diff --git a/doc/nucleus/functions/interface/FixedTimeView.html b/doc/nucleus/functions/interface/FixedTimeView.html new file mode 100644 index 0000000..6efb83e --- /dev/null +++ b/doc/nucleus/functions/interface/FixedTimeView.html @@ -0,0 +1,297 @@ + + + + Description of FixedTimeView + + + + + + + + + + + +

    FixedTimeView +

    + +

    PURPOSE ^

    +
    is an extra subGUI to fix certain relaxation times during
    + +

    SYNOPSIS ^

    +
    function FixedTimeView(src,~)
    + +

    DESCRIPTION ^

    +
    FixedTimeView is an extra subGUI to fix certain relaxation times during
    +the free inversion with #1-5 free relaxation times; thus only the
    +amplitude gets fitted
    +
    + Syntax:
    +       FixedTimeView
    +
    + Inputs:
    +       src - handle of the calling object
    +
    + Outputs:
    +       none
    +
    + Example:
    +       FixedTimeView(src,~)
    +
    + Other m-files required:
    +       none
    +
    + Subfunctions:
    +       ft_closeme
    +       ft_updateChecked
    +       ft_updateEdit
    +
    + MAT-files required:
    +       none
    +
    + See also: NUCLEUSinv
    + Author: see AUTHORS.md
    + email: see AUTHORS.md
    + License: MIT License (at end)
    + + +

    CROSS-REFERENCE INFORMATION ^

    +This function calls: + +This function is called by: + + + +

    SUBFUNCTIONS ^

    + + +

    SOURCE CODE ^

    +
    0001 function FixedTimeView(src,~)
    +0002 %FixedTimeView is an extra subGUI to fix certain relaxation times during
    +0003 %the free inversion with #1-5 free relaxation times; thus only the
    +0004 %amplitude gets fitted
    +0005 %
    +0006 % Syntax:
    +0007 %       FixedTimeView
    +0008 %
    +0009 % Inputs:
    +0010 %       src - handle of the calling object
    +0011 %
    +0012 % Outputs:
    +0013 %       none
    +0014 %
    +0015 % Example:
    +0016 %       FixedTimeView(src,~)
    +0017 %
    +0018 % Other m-files required:
    +0019 %       none
    +0020 %
    +0021 % Subfunctions:
    +0022 %       ft_closeme
    +0023 %       ft_updateChecked
    +0024 %       ft_updateEdit
    +0025 %
    +0026 % MAT-files required:
    +0027 %       none
    +0028 %
    +0029 % See also: NUCLEUSinv
    +0030 % Author: see AUTHORS.md
    +0031 % email: see AUTHORS.md
    +0032 % License: MIT License (at end)
    +0033 
    +0034 %------------- BEGIN CODE --------------
    +0035 
    +0036 %% get GUI handle and data
    +0037 figh_nucleus = ancestor(src,'figure','toplevel');
    +0038 nucleus.data = getappdata(figh_nucleus,'data');
    +0039 nucleus.gui = getappdata(figh_nucleus,'gui');
    +0040 colors = nucleus.gui.myui.colors;
    +0041 
    +0042 %% proceed if the correct inversion type is chosen
    +0043 if strcmp(nucleus.data.invstd.invtype,'mono') || strcmp(nucleus.data.invstd.invtype,'free')
    +0044 
    +0045     % check if the figure is already open
    +0046     fig_fixedtime = findobj('Tag','FIXEDTIMEVIEW');
    +0047     % if not, create it
    +0048     if isempty(fig_fixedtime)
    +0049         % draw the figure on top of NUCLEUSinv
    +0050         fig_fixedtime = figure('Name','NUCLEUSinv - Fix Relaxation Time',...
    +0051             'NumberTitle','off','Resize','on','ToolBar','none',...
    +0052             'CloseRequestFcn',@ft_closeme,...
    +0053             'MenuBar','none','Tag','FIXEDTIMEVIEW');
    +0054         pos0 = get(figh_nucleus,'Position');
    +0055         cent(1) = (pos0(1)+pos0(3)/2);
    +0056         cent(2) = (pos0(2)+pos0(4)/2);
    +0057         posf = [cent(1)-pos0(3)/6 pos0(2)+pos0(4)-pos0(4)/5 pos0(3)/3 pos0(4)/5];
    +0058 %         posf = [cent(1)-pos0(3)/6 pos0(2)+pos0(4)-140 350 145];
    +0059         set(fig_fixedtime,'Position',posf);
    +0060 
    +0061         % create the main layout
    +0062         gui.main = uix.VBox('Parent',fig_fixedtime,'BackGroundColor',colors.panelBG,'Spacing',5,'Padding',5);
    +0063         gui.row1 = uicontainer('Parent',gui.main,'BackGroundColor',colors.panelBG); % check boxes
    +0064         gui.row2 = uicontainer('Parent',gui.main,'BackGroundColor',colors.panelBG); % edit fields
    +0065         gui.row3 = uicontainer('Parent',gui.main,'BackGroundColor',colors.panelBG); % text fields
    +0066         set(gui.main,'Heights',[-1 -1 -1]);
    +0067 
    +0068         % horizontal boxes
    +0069         gui.hbox1 = uix.HBox('Parent',gui.row1,'BackGroundColor',colors.panelBG,'Spacing',5,'Padding',5); % control elements
    +0070         gui.hbox2 = uix.HBox('Parent',gui.row2,'BackGroundColor',colors.panelBG,'Spacing',5,'Padding',5); % control elements
    +0071         gui.hbox3 = uix.HBox('Parent',gui.row3,'BackGroundColor',colors.panelBG,'Spacing',5,'Padding',5); % text
    +0072 
    +0073         % create the ui elements inside the horizontal boxes
    +0074         for i = 1:5
    +0075             % check boxes
    +0076             gui.check(i).fixed = uicontrol('Parent',gui.hbox1,...
    +0077                 'Style','checkbox','FontSize',nucleus.gui.myui.fontsize,'Tag',num2str(i),...
    +0078                 'Value',nucleus.data.invstd.Tfixed_bool(i),'String','fix it',...
    +0079                 'BackGroundColor',colors.panelBG,'ForeGroundColor',colors.panelFG,...
    +0080                 'Callback',@ft_updateChecked);
    +0081             jh = findjobj(gui.check(i).fixed);
    +0082             jh.setHorizontalAlignment(javax.swing.JLabel.CENTER);
    +0083 
    +0084             % edit fields
    +0085             gui.edit(i).fixed = uicontrol('Parent',gui.hbox2,...
    +0086                 'Style','edit','FontSize',nucleus.gui.myui.fontsize,'Tag',num2str(i),...
    +0087                 'String',sprintf('%6.4f',nucleus.data.invstd.Tfixed_val(i)),...
    +0088                 'BackGroundColor',colors.editBG,'ForeGroundColor',colors.panelFG,...
    +0089                 'Callback',@ft_updateEdit);
    +0090 
    +0091             % text fields
    +0092             gui.text(i).fixed = uicontrol('Parent',gui.hbox3,...
    +0093                 'Style','text','FontSize',nucleus.gui.myui.fontsize,'Tag',['text',num2str(i)],...
    +0094                 'HorizontalAlignment','center',...
    +0095                 'BackGroundColor',colors.panelBG,'ForeGroundColor',colors.panelFG,...
    +0096                 'String',['#',num2str(i)]);
    +0097         end
    +0098 
    +0099         % store main GUI settings
    +0100         gui.myui = nucleus.gui.myui;
    +0101         gui.figh_nucleus = figh_nucleus;
    +0102 
    +0103         % save to GUI
    +0104         setappdata(fig_fixedtime,'gui',gui);
    +0105     end
    +0106 
    +0107     % if the figure is already open load the GUI data
    +0108     gui = getappdata(fig_fixedtime,'gui');
    +0109     
    +0110     % update all edit fields and check boxes
    +0111     for i = 1:5
    +0112         set(gui.edit(i).fixed,'String',sprintf('%6.4f',nucleus.data.invstd.Tfixed_val(i)));
    +0113         set(gui.check(i).fixed,'Value',nucleus.data.invstd.Tfixed_bool(i))
    +0114 
    +0115         % enable only the needed ones
    +0116         if i <=nucleus.data.invstd.freeDT
    +0117             set(gui.check(i).fixed,'Enable','on');
    +0118             set(gui.edit(i).fixed,'Enable','on');
    +0119         else
    +0120             set(gui.check(i).fixed,'Enable','off');
    +0121             set(gui.edit(i).fixed,'Enable','off');
    +0122         end
    +0123     end
    +0124 else
    +0125     % check if the figure is already open
    +0126     fig_fixedtime = findobj('Tag','FIXEDTIMEVIEW');
    +0127     if ~isempty(fig_fixedtime)
    +0128         ft_closeme(fig_fixedtime)
    +0129     else
    +0130         helpdlg({'function: FixedTimeView',...
    +0131             'Cannot continue because wrong inversion method!'},...
    +0132             'Wrong inversion method.');
    +0133     end
    +0134 end
    +0135 
    +0136 end
    +0137 
    +0138 % subfunction to update the check boxes
    +0139 function ft_updateChecked(src,~)
    +0140 fig_fixedtime = ancestor(src,'figure','toplevel');
    +0141 gui = getappdata(fig_fixedtime,'gui');
    +0142 data = getappdata(gui.figh_nucleus,'data');
    +0143 
    +0144 id = str2double(get(src,'Tag'));
    +0145 value = get(src,'Value');
    +0146 
    +0147 data.invstd.Tfixed_bool(id) = value;
    +0148 
    +0149 % update local GUI
    +0150 setappdata(fig_fixedtime,'gui',gui);
    +0151 
    +0152 % update NUCLEUSinv
    +0153 setappdata(gui.figh_nucleus,'data',data);
    +0154 end
    +0155 
    +0156 % subfunction to update the edit fields
    +0157 function ft_updateEdit(src,~)
    +0158 fig_fixedtime = ancestor(src,'figure','toplevel');
    +0159 gui = getappdata(fig_fixedtime,'gui');
    +0160 data = getappdata(gui.figh_nucleus,'data');
    +0161 
    +0162 id = str2double(get(src,'Tag'));
    +0163 value = str2double(get(src,'String'));
    +0164 
    +0165 data.invstd.Tfixed_val(id) = value;
    +0166 
    +0167 % update local GUI
    +0168 setappdata(fig_fixedtime,'gui',gui);
    +0169 
    +0170 % update NUCLEUSinv
    +0171 setappdata(gui.figh_nucleus,'data',data);
    +0172 end
    +0173 
    +0174 % subfunction to update the edit fields
    +0175 function ft_closeme(src,~)
    +0176 fig_fixedtime = ancestor(src,'figure','toplevel');
    +0177 % try to close the sub GUI in a clean manner
    +0178 try
    +0179     gui = getappdata(fig_fixedtime,'gui');
    +0180     data = getappdata(gui.figh_nucleus,'data');
    +0181     % reset ui controls
    +0182     data.invstd.Tfixed_bool = zeros(1,5);
    +0183     data.invstd.Tfixed_val = zeros(1,5);
    +0184 
    +0185     % update NUCLEUSinv
    +0186     setappdata(gui.figh_nucleus,'data',data);
    +0187     delete(fig_fixedtime);
    +0188 catch
    +0189     % if this is not working: just close it
    +0190     delete(fig_fixedtime);
    +0191 end
    +0192 
    +0193 
    +0194 end
    +0195 
    +0196 %------------- END OF CODE --------------
    +0197 
    +0198 %% License:
    +0199 % MIT License
    +0200 %
    +0201 % Copyright (c) 2023 Thomas Hiller
    +0202 %
    +0203 % Permission is hereby granted, free of charge, to any person obtaining a copy
    +0204 % of this software and associated documentation files (the "Software"), to deal
    +0205 % in the Software without restriction, including without limitation the rights
    +0206 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +0207 % copies of the Software, and to permit persons to whom the Software is
    +0208 % furnished to do so, subject to the following conditions:
    +0209 %
    +0210 % The above copyright notice and this permission notice shall be included in all
    +0211 % copies or substantial portions of the Software.
    +0212 %
    +0213 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +0214 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +0215 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +0216 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +0217 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +0218 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +0219 % SOFTWARE.
    +
    Generated by m2html © 2005
    + + \ No newline at end of file diff --git a/doc/nucleus/functions/interface/changeColorTheme.html b/doc/nucleus/functions/interface/changeColorTheme.html index e25643e..289a155 100644 --- a/doc/nucleus/functions/interface/changeColorTheme.html +++ b/doc/nucleus/functions/interface/changeColorTheme.html @@ -262,34 +262,51 @@

    SOURCE CODE ^updatePlotsPSD; 0186 updatePlotsCPS; 0187 updatePlotsNMR; -0188 end -0189 -0190 end -0191 -0192 %------------- END OF CODE -------------- -0193 -0194 %% License: -0195 % MIT License -0196 % -0197 % Copyright (c) 2018 Thomas Hiller -0198 % -0199 % Permission is hereby granted, free of charge, to any person obtaining a copy -0200 % of this software and associated documentation files (the "Software"), to deal -0201 % in the Software without restriction, including without limitation the rights -0202 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0203 % copies of the Software, and to permit persons to whom the Software is -0204 % furnished to do so, subject to the following conditions: -0205 % -0206 % The above copyright notice and this permission notice shall be included in all -0207 % copies or substantial portions of the Software. -0208 % -0209 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0210 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0211 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0212 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0213 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0214 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0215 % SOFTWARE. +0188 +0189 case 'FIXEDTIMEVIEW' +0190 % set the background color for all uicontainer (HBox, VBox, etc.) +0191 h = findall(fig,'-depth',inf,'Type','uicontainer'); +0192 set(h,'BackGroundColor',myui.colors.panelBG); +0193 +0194 % chekcbox controls +0195 h = findobj(fig,'Type','uicontrol','-and','Style','checkbox'); +0196 set(h,'BackGroundColor',myui.colors.panelBG,'ForeGroundColor',myui.colors.panelFG); +0197 +0198 % edit field +0199 h = findall(fig,'Type','uicontrol','-and','Style','edit'); +0200 set(h,'BackGroundColor',myui.colors.editBG,'ForeGroundColor',myui.colors.panelFG); +0201 +0202 % text field +0203 h = findobj(fig,'Type','uicontrol','-and','Style','text'); +0204 set(h,'BackGroundColor',myui.colors.panelBG,'ForeGroundColor',myui.colors.panelFG); +0205 end +0206 +0207 end +0208 +0209 %------------- END OF CODE -------------- +0210 +0211 %% License: +0212 % MIT License +0213 % +0214 % Copyright (c) 2018 Thomas Hiller +0215 % +0216 % Permission is hereby granted, free of charge, to any person obtaining a copy +0217 % of this software and associated documentation files (the "Software"), to deal +0218 % in the Software without restriction, including without limitation the rights +0219 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0220 % copies of the Software, and to permit persons to whom the Software is +0221 % furnished to do so, subject to the following conditions: +0222 % +0223 % The above copyright notice and this permission notice shall be included in all +0224 % copies or substantial portions of the Software. +0225 % +0226 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0227 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0228 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0229 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0230 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0231 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0232 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/functions/interface/exportData.html b/doc/nucleus/functions/interface/exportData.html index 96e5aae..24ec3cd 100644 --- a/doc/nucleus/functions/interface/exportData.html +++ b/doc/nucleus/functions/interface/exportData.html @@ -33,7 +33,7 @@

    DESCRIPTION ^DESCRIPTION ^CROSS-REFERENCE INFORMATION ^
 
 <h2><a name=SUBFUNCTIONS ^

    +
  • function exportINV_EXCEL(gui,INVdata,id,sfile,spath)
  • function exportINV_CSV(INVdata,sfile)
  • function exportINV_BGR_repos(INVdata,sfile)
  • function exportMOD_EXCEL()
  • function doexport = checkINV(INVdata,id)
  • function doexport = checkMOD(data)
  • function amp = findApproxTlgmAmplitude(t,f,TLGM)
  • SOURCE CODE ^

    0001 function exportData(fig_tag,format)
    @@ -83,7 +84,7 @@ 

    SOURCE CODE ^% 0007 % Inputs: 0008 % fig_tag - 'MOD' or 'INV' -0009 % format - 'matS', 'matA', 'excelS' or 'LIAG' +0009 % format - 'matS', 'matA', 'excelS', 'LIAG', or 'bgr_repo' 0010 % 0011 % Outputs: 0012 % none @@ -99,115 +100,115 @@

    SOURCE CODE ^% checkMOD 0023 % exportINV_EXCEL 0024 % exportINV_CSV -0025 % exportMOD_EXCEL -0026 % findApproxTlgmAmplitude -0027 % -0028 % MAT-files required: -0029 % none -0030 % -0031 % See also: NUCLEUSinv, NUCLEUSmod -0032 % Author: see AUTHORS.md -0033 % email: see AUTHORS.md -0034 % License: MIT License (at end) -0035 -0036 %------------- BEGIN CODE -------------- -0037 -0038 %% get GUI handle and data -0039 fig = findobj('Tag',fig_tag); -0040 gui = getappdata(fig,'gui'); -0041 data = getappdata(fig,'data'); -0042 -0043 switch fig_tag -0044 case 'INV' -0045 % get inversion data -0046 INVdata = getappdata(fig,'INVdata'); -0047 -0048 % which NMR signal -0049 id = get(gui.listbox_handles.signal,'Value'); -0050 -0051 % different export formats -0052 switch format -0053 -0054 case 'LIAGcsvT2' % raw data -0055 % check if there is any data at all -0056 if isfield(data.import,'NMR') -0057 -0058 % display info text -0059 displayStatusText(gui,... -0060 'Exporting LIAG csv T2 raw data ...'); -0061 % which NMR signal -0062 id = get(gui.listbox_handles.signal,'Value'); -0063 % export path -0064 spath = data.import.path; -0065 % export file names -0066 fname = data.import.NMR.data{id}.datfile; -0067 fname_org = [fname,'.org']; -0068 % ask the user if the imag part should be set to zero -0069 quest = 'Set imaginary part to ZERO?'; -0070 title = 'Saving T2 data'; -0071 answer = questdlg(quest,title,'Yes'); -0072 -0073 switch answer -0074 case {'Yes','No'} -0075 % first copy original file to backup file -0076 sourcef = fullfile(spath,fname); -0077 destf = fullfile(spath,fname_org); -0078 [status,~,~] = copyfile(sourcef,destf); -0079 % if the backup was successful save the data -0080 if status == 1 -0081 t = data.import.NMR.data{id}.time; -0082 s = data.import.NMR.data{id}.signal; -0083 -0084 switch answer -0085 case 'Yes' -0086 out = [t real(s) zeros(size(t))]; -0087 case 'No' -0088 out = [t real(s) imag(s)]; -0089 end -0090 dlmwrite(sourcef,out,'precision','%.6f'); -0091 -0092 % display info text -0093 displayStatusText(gui,... -0094 'Exporting LIAG csv T2 raw data ... done'); -0095 else -0096 % display info text -0097 displayStatusText(gui,... -0098 'Exporting LIAG csv T2 raw data ... canceled'); -0099 end -0100 otherwise -0101 % display info text -0102 displayStatusText(gui,... -0103 'Exporting LIAG csv T2 raw data ... canceled'); -0104 end -0105 end -0106 -0107 otherwise % inv data -0108 % check if data can be exported -0109 doexport_inv = checkINV(INVdata,id); -0110 -0111 if doexport_inv -0112 % get the new file name -0113 sfilename = data.import.NMR.filesShort{id}; -0114 ind1 = strfind(sfilename,'.'); -0115 if isempty(ind1) -0116 sfilename = [sfilename,'_INV']; -0117 else -0118 sfilename = [sfilename(1:ind1-1),'_INV']; -0119 end -0120 -0121 % different export formats -0122 switch format -0123 case 'excelS' -0124 % get the file name -0125 [sfile,spath] = uiputfile('*.xlsx',... -0126 'Save inversion to Excel-file',... -0127 fullfile(data.import.path,[sfilename,'.xlsx'])); -0128 -0129 % if user didn't cancel -0130 if sum([sfile spath]) > 0 -0131 exportINV_EXCEL(gui,INVdata,id,sfile,spath); -0132 end -0133 +0025 % exportINV_BGR_repos +0026 % exportMOD_EXCEL +0027 % findApproxTlgmAmplitude +0028 % +0029 % MAT-files required: +0030 % none +0031 % +0032 % See also: NUCLEUSinv, NUCLEUSmod +0033 % Author: see AUTHORS.md +0034 % email: see AUTHORS.md +0035 % License: MIT License (at end) +0036 +0037 %------------- BEGIN CODE -------------- +0038 +0039 %% get GUI handle and data +0040 fig = findobj('Tag',fig_tag); +0041 gui = getappdata(fig,'gui'); +0042 data = getappdata(fig,'data'); +0043 +0044 switch fig_tag +0045 case 'INV' +0046 % get inversion data +0047 INVdata = getappdata(fig,'INVdata'); +0048 +0049 % which NMR signal +0050 id = get(gui.listbox_handles.signal,'Value'); +0051 +0052 % different export formats +0053 switch format +0054 +0055 case 'LIAGcsvT2' % raw data +0056 % check if there is any data at all +0057 if isfield(data.import,'NMR') +0058 +0059 % display info text +0060 displayStatusText(gui,... +0061 'Exporting LIAG csv T2 raw data ...'); +0062 % which NMR signal +0063 id = get(gui.listbox_handles.signal,'Value'); +0064 % export path +0065 spath = data.import.path; +0066 % export file names +0067 fname = data.import.NMR.data{id}.datfile; +0068 fname_org = [fname,'.org']; +0069 % ask the user if the imag part should be set to zero +0070 quest = 'Set imaginary part to ZERO?'; +0071 title = 'Saving T2 data'; +0072 answer = questdlg(quest,title,'Yes'); +0073 +0074 switch answer +0075 case {'Yes','No'} +0076 % first copy original file to backup file +0077 sourcef = fullfile(spath,fname); +0078 destf = fullfile(spath,fname_org); +0079 [status,~,~] = copyfile(sourcef,destf); +0080 % if the backup was successful save the data +0081 if status == 1 +0082 t = data.import.NMR.data{id}.time; +0083 s = data.import.NMR.data{id}.signal; +0084 +0085 switch answer +0086 case 'Yes' +0087 out = [t real(s) zeros(size(t))]; +0088 case 'No' +0089 out = [t real(s) imag(s)]; +0090 end +0091 dlmwrite(sourcef,out,'precision','%.6f'); +0092 +0093 % display info text +0094 displayStatusText(gui,... +0095 'Exporting LIAG csv T2 raw data ... done'); +0096 else +0097 % display info text +0098 displayStatusText(gui,... +0099 'Exporting LIAG csv T2 raw data ... canceled'); +0100 end +0101 otherwise +0102 % display info text +0103 displayStatusText(gui,... +0104 'Exporting LIAG csv T2 raw data ... canceled'); +0105 end +0106 end +0107 +0108 otherwise % inv data +0109 % check if data can be exported +0110 doexport_inv = checkINV(INVdata,id); +0111 +0112 if doexport_inv +0113 % get the new file name +0114 sfilename = data.import.NMR.filesShort{id}; +0115 ind1 = strfind(sfilename,'.'); +0116 if isempty(ind1) +0117 sfilename = [sfilename,'_INV']; +0118 else +0119 sfilename = [sfilename(1:ind1-1),'_INV']; +0120 end +0121 +0122 % different export formats +0123 switch format +0124 case 'excelS' +0125 % get the file name +0126 [sfile,spath] = uiputfile('*.xlsx',... +0127 'Save inversion to Excel-file',... +0128 fullfile(data.import.path,[sfilename,'.xlsx'])); +0129 +0130 % if user didn't cancel +0131 if sum([sfile spath]) > 0 +0132 exportINV_EXCEL(gui,INVdata,id,sfile,spath); +0133 end 0134 case 'matS' 0135 % get the file name 0136 [sfile,spath] = uiputfile('*.mat',... @@ -318,7 +319,7 @@

    SOURCE CODE ^findApproxTlgmAmplitude(T,F,TLGM); +0244 amp = findApproxTlgmAmplitude(T,F,TLGM); 0245 stem(TLGM,amp,... 0246 'x-','Color',[0.3 0.3 0.3],'LineWidth',2,... 0247 'Tag','TLGM','Parent',ax(2)); @@ -378,381 +379,504 @@

    SOURCE CODE ^'This routine works only on LIAG specific project data.'},... 0302 'No LIAG data'); 0303 end -0304 end -0305 end -0306 end -0307 case 'MOD' -0308 % check if data can be exported -0309 doexport_mod = checkMOD(data); -0310 if doexport_mod -0311 % different export formats -0312 switch format -0313 case 'mat' -0314 % gather all relevant data -0315 out = data.results; -0316 if isfield(out.NMR.raw,'Tb') -0317 out.NMR.raw = rmfield(out.NMR.raw,'Tb'); -0318 end -0319 if isfield(out.NMR.raw,'rho') -0320 out.NMR.raw = rmfield(out.NMR.raw,'rho'); -0321 end -0322 out.NMRMOD_GUI.geometry = data.geometry; -0323 out.NMRMOD_GUI.pressure = data.pressure; -0324 out.NMRMOD_GUI.nmr = data.nmr; -0325 out.NMRMOD_GUI.myui = gui.myui; -0326 -0327 displayStatusText(gui,'Saving to MAT-file ...'); -0328 [FileName,PathName,~] = uiputfile({'*.mat','Matlab file'},'NUCLEUSmod: Save Data',fullfile(pwd,'NUCLEUSmod_forward.mat')); -0329 -0330 if ~isequal(FileName,0) || ~isequal(PathName,0) -0331 clear data -0332 data = out; %#ok<NASGU> -0333 save(fullfile(PathName,FileName),'data','-v7.3'); -0334 displayStatusText(gui,'Saving to MAT-file ... done.'); -0335 else -0336 displayStatusText(gui,'Saving to MAT-file ... canceled.'); -0337 end -0338 -0339 case 'xls' -0340 indd = data.pressure.DrainLevels; -0341 indi = data.pressure.ImbLevels; -0342 results = data.results; -0343 -0344 displayStatusText(gui,'Saving to XLS-file ...'); -0345 [FileName,PathName,~] = uiputfile({'*.xls','XLS file'},'NUCLEUSmod: Save Data',fullfile(pwd,'NUCLEUSmod_forward.xls')); -0346 -0347 if ~isequal(FileName,0) || ~isequal(PathName,0) -0348 exportMOD_EXCEL; -0349 displayStatusText(gui,'Saving to XLS-file ... done.'); -0350 else -0351 displayStatusText(gui,'Saving to XLS-file ... canceled.'); -0352 end -0353 -0354 otherwise -0355 helpdlg({'exportData:','Not yet implemented.'},'NUCLEUSmod info:'); +0304 case 'BGR_repos' +0305 +0306 % get the file name +0307 [sfile,spath] = uiputfile('*.csv',... +0308 'Save measurement and inversion data and parameters csv-file',... +0309 fullfile(data.import.path,[sfilename,'.csv'])); +0310 % if user didn't cancel +0311 if sum([sfile spath]) > 0 +0312 csvname = fullfile(spath,sfile); +0313 exportINV_BGR_repos(INVdata{id},csvname); +0314 end +0315 +0316 +0317 end +0318 end +0319 end +0320 case 'MOD' +0321 % check if data can be exported +0322 doexport_mod = checkMOD(data); +0323 if doexport_mod +0324 % different export formats +0325 switch format +0326 case 'mat' +0327 % gather all relevant data +0328 out = data.results; +0329 if isfield(out.NMR.raw,'Tb') +0330 out.NMR.raw = rmfield(out.NMR.raw,'Tb'); +0331 end +0332 if isfield(out.NMR.raw,'rho') +0333 out.NMR.raw = rmfield(out.NMR.raw,'rho'); +0334 end +0335 out.NMRMOD_GUI.geometry = data.geometry; +0336 out.NMRMOD_GUI.pressure = data.pressure; +0337 out.NMRMOD_GUI.nmr = data.nmr; +0338 out.NMRMOD_GUI.myui = gui.myui; +0339 +0340 displayStatusText(gui,'Saving to MAT-file ...'); +0341 [FileName,PathName,~] = uiputfile({'*.mat','Matlab file'},'NUCLEUSmod: Save Data',fullfile(pwd,'NUCLEUSmod_forward.mat')); +0342 +0343 if ~isequal(FileName,0) || ~isequal(PathName,0) +0344 clear data +0345 data = out; %#ok<NASGU> +0346 save(fullfile(PathName,FileName),'data','-v7.3'); +0347 displayStatusText(gui,'Saving to MAT-file ... done.'); +0348 else +0349 displayStatusText(gui,'Saving to MAT-file ... canceled.'); +0350 end +0351 +0352 case 'xls' +0353 indd = data.pressure.DrainLevels; +0354 indi = data.pressure.ImbLevels; +0355 results = data.results; 0356 -0357 end -0358 end -0359 end -0360 -0361 end -0362 -0363 %% -0364 function exportINV_EXCEL(gui,INVdata,id,sfile,spath) -0365 unit = INVdata{id}.process.timescale; -0366 -0367 % gather all data -0368 % raw data -0369 tmp1(:,1) = INVdata{id}.results.nmrraw.t(:); -0370 header1{1} = ['time [',unit,']']; -0371 if isreal(INVdata{id}.results.nmrraw.s(:)) -0372 header1{2} = 'amplitude [a.u.]'; -0373 tmp1(:,2) = INVdata{id}.results.nmrraw.s(:); -0374 -0375 b1 = {'raw data',''}; -0376 b1(2,:) = header1; -0377 b1(3:2+size(tmp1,1),:) = [num2cell(tmp1(:,1)),num2cell(tmp1(:,2))]; -0378 else -0379 header1{2} = 'real [a.u.]'; -0380 header1{3} = 'imag [a.u.]'; -0381 tmp1(:,2) = real(INVdata{id}.results.nmrraw.s(:)); -0382 tmp1(:,3) = imag(INVdata{id}.results.nmrraw.s(:)); -0383 -0384 b1 = {'raw data','',''}; -0385 b1(2,:) = header1; -0386 b1(3:2+size(tmp1,1),:) = [num2cell(tmp1(:,1)),num2cell(tmp1(:,2)),... -0387 num2cell(tmp1(:,3))]; -0388 end -0389 -0390 % proc data -0391 tmp2(:,1) = INVdata{id}.results.nmrproc.t(:); -0392 tmp2(:,2) = INVdata{id}.results.nmrproc.s(:); -0393 header2{1} = ['time [',unit,']']; -0394 header2{2} = 'amplitude [a.u.]'; -0395 -0396 b2 = {'proc data',''}; -0397 b2(2,:) = header2; -0398 b2(3:2+size(tmp2,1),:) = [num2cell(tmp2(:,1)),num2cell(tmp2(:,2))]; -0399 -0400 % fit data (incl. residuals) -0401 tmp3(:,1) = INVdata{id}.results.invstd.fit_t(:); -0402 tmp3(:,2) = INVdata{id}.results.invstd.fit_s(:); -0403 tmp3(:,3) = INVdata{id}.results.invstd.residual(:); -0404 header3{1} = ['time [',unit,']']; -0405 header3{2} = 'amplitude [a.u.]'; -0406 header3{3} = 'residual [-]'; -0407 -0408 b3 = {'fit data','',''}; -0409 b3(2,:) = header3; -0410 b3(3:2+size(tmp3,1),:) = [num2cell(tmp3(:,1)),num2cell(tmp3(:,2)),... -0411 num2cell(tmp3(:,3))]; +0357 displayStatusText(gui,'Saving to XLS-file ...'); +0358 [FileName,PathName,~] = uiputfile({'*.xls','XLS file'},'NUCLEUSmod: Save Data',fullfile(pwd,'NUCLEUSmod_forward.xls')); +0359 +0360 if ~isequal(FileName,0) || ~isequal(PathName,0) +0361 exportMOD_EXCEL; +0362 displayStatusText(gui,'Saving to XLS-file ... done.'); +0363 else +0364 displayStatusText(gui,'Saving to XLS-file ... canceled.'); +0365 end +0366 +0367 otherwise +0368 helpdlg({'exportData:','Not yet implemented.'},'NUCLEUSmod info:'); +0369 +0370 end +0371 end +0372 end +0373 +0374 end +0375 +0376 %% +0377 function exportINV_EXCEL(gui,INVdata,id,sfile,spath) +0378 unit = INVdata{id}.process.timescale; +0379 +0380 % gather all data +0381 % raw data +0382 tmp1(:,1) = INVdata{id}.results.nmrraw.t(:); +0383 header1{1} = ['time [',unit,']']; +0384 if isreal(INVdata{id}.results.nmrraw.s(:)) +0385 header1{2} = 'amplitude [a.u.]'; +0386 tmp1(:,2) = INVdata{id}.results.nmrraw.s(:); +0387 +0388 b1 = {'raw data',''}; +0389 b1(2,:) = header1; +0390 b1(3:2+size(tmp1,1),:) = [num2cell(tmp1(:,1)),num2cell(tmp1(:,2))]; +0391 else +0392 header1{2} = 'real [a.u.]'; +0393 header1{3} = 'imag [a.u.]'; +0394 tmp1(:,2) = real(INVdata{id}.results.nmrraw.s(:)); +0395 tmp1(:,3) = imag(INVdata{id}.results.nmrraw.s(:)); +0396 +0397 b1 = {'raw data','',''}; +0398 b1(2,:) = header1; +0399 b1(3:2+size(tmp1,1),:) = [num2cell(tmp1(:,1)),num2cell(tmp1(:,2)),... +0400 num2cell(tmp1(:,3))]; +0401 end +0402 +0403 % proc data +0404 tmp2(:,1) = INVdata{id}.results.nmrproc.t(:); +0405 tmp2(:,2) = INVdata{id}.results.nmrproc.s(:); +0406 header2{1} = ['time [',unit,']']; +0407 header2{2} = 'amplitude [a.u.]'; +0408 +0409 b2 = {'proc data',''}; +0410 b2(2,:) = header2; +0411 b2(3:2+size(tmp2,1),:) = [num2cell(tmp2(:,1)),num2cell(tmp2(:,2))]; 0412 -0413 % relaxation times -0414 switch INVdata{id}.invstd.invtype -0415 case {'mono','free'} -0416 switch INVdata{id}.results.nmrproc.T1T2 -0417 case 'T1' -0418 tmp4 = [INVdata{id}.results.invstd.T1(:)... -0419 INVdata{id}.results.invstd.E0(:)]; -0420 header4 = {['T1 [',unit,']'],'amplitude [a.u.]'}; -0421 case 'T2' -0422 tmp4 = [INVdata{id}.results.invstd.T2(:)... -0423 INVdata{id}.results.invstd.E0(:)]; -0424 header4 = {['T2 [',unit,']'],'amplitude [a.u.]'}; -0425 end -0426 -0427 case {'LU','NNLS','MUMO'} -0428 tmp4 = [INVdata{id}.results.invstd.T1T2me(:)... -0429 INVdata{id}.results.invstd.T1T2f(:)]; -0430 header4 = {['relaxation times [',unit,']'],'amplitudes [a.u.]'}; -0431 -0432 otherwise -0433 disp('Something is utterly wrong.') -0434 end -0435 -0436 b4 = {'relaxation times',''}; -0437 b4(2,:) = header4; -0438 b4(3:2+size(tmp4,1),:) = [num2cell(tmp4(:,1)),num2cell(tmp4(:,2))]; -0439 -0440 % glue together the output matrix -0441 out(1:size(b1,1),1:size(b1,2)) = b1; -0442 yi = size(b1,2)+2; -0443 out(1:size(b2,1),yi:yi-1+size(b2,2)) = b2; -0444 yi = yi + size(b2,2)+1; -0445 out(1:size(b3,1),yi:yi-1+size(b3,2)) = b3; -0446 yi = yi + size(b3,2)+1; -0447 out(1:size(b4,1),yi:yi-1+size(b4,2)) = b4; +0413 % fit data (incl. residuals) +0414 tmp3(:,1) = INVdata{id}.results.invstd.fit_t(:); +0415 tmp3(:,2) = INVdata{id}.results.invstd.fit_s(:); +0416 tmp3(:,3) = INVdata{id}.results.invstd.residual(:); +0417 header3{1} = ['time [',unit,']']; +0418 header3{2} = 'amplitude [a.u.]'; +0419 header3{3} = 'residual [-]'; +0420 +0421 b3 = {'fit data','',''}; +0422 b3(2,:) = header3; +0423 b3(3:2+size(tmp3,1),:) = [num2cell(tmp3(:,1)),num2cell(tmp3(:,2)),... +0424 num2cell(tmp3(:,3))]; +0425 +0426 % relaxation times +0427 switch INVdata{id}.invstd.invtype +0428 case {'mono','free'} +0429 switch INVdata{id}.results.nmrproc.T1T2 +0430 case 'T1' +0431 tmp4 = [INVdata{id}.results.invstd.T1(:)... +0432 INVdata{id}.results.invstd.E0(:)]; +0433 header4 = {['T1 [',unit,']'],'amplitude [a.u.]'}; +0434 case 'T2' +0435 tmp4 = [INVdata{id}.results.invstd.T2(:)... +0436 INVdata{id}.results.invstd.E0(:)]; +0437 header4 = {['T2 [',unit,']'],'amplitude [a.u.]'}; +0438 end +0439 +0440 case {'LU','NNLS','MUMO'} +0441 tmp4 = [INVdata{id}.results.invstd.T1T2me(:)... +0442 INVdata{id}.results.invstd.T1T2f(:)]; +0443 header4 = {['relaxation times [',unit,']'],'amplitudes [a.u.]'}; +0444 +0445 otherwise +0446 disp('Something is utterly wrong.') +0447 end 0448 -0449 % display info text -0450 displayStatusText(gui,... -0451 'Exporting inversion data to Excel-file ...'); -0452 % save to file -0453 xlswrite(fullfile(spath,sfile),out,'NMRdata','A1'); -0454 -0455 % remove the first standard excel sheet -0456 [~,sheets] = xlsfinfo(fullfile(spath,sfile)); -0457 objExcel = actxserver('Excel.Application'); -0458 objExcel.Workbooks.Open(fullfile(spath,sfile)); -0459 objExcel.ActiveWorkbook.Worksheets.Item(sheets{1}).Delete; -0460 objExcel.ActiveWorkbook.Save; -0461 objExcel.ActiveWorkbook.Close; -0462 objExcel.Quit; -0463 objExcel.delete; -0464 % display info text -0465 displayStatusText(gui,... -0466 'Exporting inversion data to Excel-file ... done'); -0467 end -0468 -0469 %% -0470 function exportINV_CSV(INVdata,sfile) -0471 unit = INVdata.process.timescale; -0472 -0473 % gather all data -0474 % proc data -0475 tmp2(:,1) = INVdata.results.nmrproc.t(:); -0476 tmp2(:,2) = INVdata.results.nmrproc.s(:); -0477 header2{1} = ['time [',unit,']']; -0478 header2{2} = 'signal [a.u.]'; -0479 -0480 % fit data (incl. residuals) -0481 tmp3(:,1) = INVdata.results.invstd.fit_t(:); -0482 tmp3(:,2) = INVdata.results.invstd.fit_s(:); -0483 tmp3(:,3) = INVdata.results.invstd.residual(:); -0484 header3{1} = ['time [',unit,']']; -0485 header3{2} = 'fit [a.u.]'; -0486 header3{3} = 'residual [-]'; -0487 -0488 % relaxation times -0489 switch INVdata.invstd.invtype -0490 case {'LU','NNLS'} -0491 por = INVdata.invstd.porosity; -0492 F = INVdata.results.invstd.T1T2f(:); -0493 F = 100*por.*F./sum(F); -0494 tmp4 = [INVdata.results.invstd.T1T2me(:)... -0495 INVdata.results.invstd.T1T2f(:) F]; -0496 header4 = {['relaxation times [',unit,']'],'frequency [-]',... -0497 ' water content [vol. %]'}; -0498 -0499 case {'mono','free'} -0500 por = INVdata.invstd.porosity; -0501 F = 100*por.*INVdata.results.invstd.E0./sum(INVdata.results.invstd.E0); -0502 switch INVdata.results.nmrproc.T1T2 -0503 case 'T1' -0504 tmp4 = [INVdata.results.invstd.T1(:)... -0505 INVdata.results.invstd.E0(:) F(:)]; -0506 header4 = {['relaxation time(s) T1 [',unit,']'],... -0507 'amplitude [a.u.]',' water content [vol. %]'}; -0508 case 'T2' -0509 tmp4 = [INVdata.results.invstd.T2(:)... -0510 INVdata.results.invstd.E0(:) F(:)]; -0511 header4 = {['relaxation time(s) T2 [',unit,']'],... -0512 'amplitude [a.u.]',' water content [vol. %]'}; -0513 end -0514 -0515 otherwise -0516 % Nothing to do -0517 end -0518 -0519 % glue together headers -0520 cHeader = [header2 header3 header4]; -0521 % insert commas -0522 commaHeader = [cHeader;repmat({','},1,numel(cHeader))]; -0523 commaHeader = commaHeader(:)'; -0524 % cHeader as string with commas -0525 textHeader = cell2mat(commaHeader(1:numel(commaHeader)-1)); -0526 -0527 maxrows = max([size(tmp2,1) size(tmp3,1) size(tmp4,1)]); -0528 % glue together data -0529 if size(tmp2,1) < maxrows -0530 tmp2(end+1:maxrows,:) = NaN; -0531 end -0532 if size(tmp3,1) < maxrows -0533 tmp3(end+1:maxrows,:) = NaN; -0534 end -0535 if size(tmp4,1) < maxrows -0536 tmp4(end+1:maxrows,:) = NaN; -0537 end -0538 out(1:maxrows,1:size(tmp2,2)) = tmp2; -0539 yi = size(tmp2,2)+1; -0540 out(1:maxrows,yi:yi-1+size(tmp3,2)) = tmp3; -0541 yi = yi + size(tmp3,2); -0542 out(1:maxrows,yi:yi-1+size(tmp4,2)) = tmp4; -0543 -0544 % save to file -0545 %write header to file -0546 fid = fopen(sfile,'w'); -0547 fprintf(fid,'%s\n',textHeader); -0548 fclose(fid); -0549 %write data to end of file -0550 dlmwrite(sfile,out,'-append','precision','%.5f'); -0551 -0552 end -0553 -0554 %% -0555 function exportMOD_EXCEL() -0556 xlswrite(fullfile(PathName,FileName),{'pressure [Pa]','saturation (drain)','saturation (imb)'},'CPS','A1'); -0557 xlswrite(fullfile(PathName,FileName),[results.SAT.pressure(:) results.SAT.Sdfull(:) results.SAT.Sifull(:)],'CPS','A2'); -0558 -0559 out = zeros(numel(results.NMR.t),numel(indd)+1); -0560 out(:,1) = results.NMR.t(:); -0561 header = cell(1,1); -0562 header{1} = 'time [s]'; -0563 for i = 1:numel(indd) -0564 out(:,i+1) = results.NMR.EdT1(indd(i),:)'; -0565 header{i+1} = ['S',num2str(i)]; -0566 end -0567 xlswrite(fullfile(PathName,FileName),header,'NMR_T1_drain','A1'); -0568 xlswrite(fullfile(PathName,FileName),out,'NMR_T1_drain','A2'); -0569 out = zeros(numel(results.NMR.t),numel(indd)+1); -0570 out(:,1) = results.NMR.t(:); -0571 header = cell(1,1); -0572 header{1} = 'time [s]'; -0573 for i = 1:numel(indd) -0574 out(:,i+1) = results.NMR.EdT2(indd(i),:)'; -0575 header{i+1} = ['S',num2str(i)]; -0576 end -0577 xlswrite(fullfile(PathName,FileName),header,'NMR_T2_drain','A1'); -0578 xlswrite(fullfile(PathName,FileName),out,'NMR_T2_drain','A2'); -0579 -0580 out = zeros(numel(results.NMR.t),numel(indi)+1); -0581 out(:,1) = results.NMR.t(:); -0582 header = cell(1,1); -0583 header{1} = 'time [s]'; -0584 for i = 1:numel(indi) -0585 out(:,i+1) = results.NMR.EiT1(indi(i),:)'; -0586 header{i+1} = ['S',num2str(i)]; -0587 end -0588 xlswrite(fullfile(PathName,FileName),header,'NMR_T1_imb','A1'); -0589 xlswrite(fullfile(PathName,FileName),out,'NMR_T1_imb','A2'); -0590 -0591 out = zeros(numel(results.NMR.t),numel(indi)+1); -0592 out(:,1) = results.NMR.t(:); -0593 header = cell(1,1); -0594 header{1} = 'time [s]'; -0595 for i = 1:numel(indi) -0596 out(:,i+1) = results.NMR.EiT2(indi(i),:)'; -0597 header{i+1} = ['S',num2str(i)]; -0598 end -0599 xlswrite(fullfile(PathName,FileName),header,'NMR_T2_imb','A1'); -0600 xlswrite(fullfile(PathName,FileName),out,'NMR_T2_imb','A2'); -0601 -0602 % remove the first standard excel sheet -0603 [~,sheets] = xlsfinfo(fullfile(PathName,FileName)); -0604 objExcel = actxserver('Excel.Application'); -0605 objExcel.Workbooks.Open(fullfile(PathName,FileName)); -0606 objExcel.ActiveWorkbook.Worksheets.Item(sheets{1}).Delete; -0607 objExcel.ActiveWorkbook.Save; -0608 objExcel.ActiveWorkbook.Close; -0609 objExcel.Quit; -0610 objExcel.delete; -0611 end -0612 -0613 %% -0614 function doexport = checkINV(INVdata,id) -0615 -0616 doexport = false; -0617 if ~isempty(INVdata) && ~isempty(id) -0618 if isstruct(INVdata{id}) -0619 doexport = true; -0620 else -0621 helpdlg({'exportData:','No inversion data to save'},... -0622 'Nothing to save'); -0623 end -0624 else -0625 helpdlg({'exportData:','No inversion data to save'},... -0626 'Nothing to save'); -0627 end -0628 -0629 end -0630 -0631 %% -0632 function doexport = checkMOD(data) -0633 -0634 doexport = false; -0635 if isfield(data,'results') -0636 if isfield(data.results,'NMR') -0637 doexport = true; -0638 else -0639 helpdlg({'exportData:',... -0640 'No data to save. Generate some data first.'},'NUCLEUSmod info:'); -0641 end -0642 else -0643 helpdlg({'exportData:',... -0644 'No data to save. Generate some data first.'},'NUCLEUSmod info:'); -0645 end -0646 -0647 end -0648 -0649 %% -0650 function amp = findApproxTlgmAmplitude(t,f,TLGM) -0651 index = find(abs(t-TLGM)==min(abs(t-TLGM))); -0652 amp = interp1(t(index-1:index+1),f(index-1:index+1),TLGM); -0653 end -0654 -0655 %------------- END OF CODE -------------- -0656 -0657 %% License: -0658 % MIT License -0659 % -0660 % Copyright (c) 2018 Thomas Hiller -0661 % -0662 % Permission is hereby granted, free of charge, to any person obtaining a copy -0663 % of this software and associated documentation files (the "Software"), to deal -0664 % in the Software without restriction, including without limitation the rights -0665 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0666 % copies of the Software, and to permit persons to whom the Software is -0667 % furnished to do so, subject to the following conditions: -0668 % -0669 % The above copyright notice and this permission notice shall be included in all -0670 % copies or substantial portions of the Software. -0671 % -0672 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0673 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0674 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0675 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0676 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0677 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0678 % SOFTWARE.

    +0449 b4 = {'relaxation times',''}; +0450 b4(2,:) = header4; +0451 b4(3:2+size(tmp4,1),:) = [num2cell(tmp4(:,1)),num2cell(tmp4(:,2))]; +0452 +0453 % glue together the output matrix +0454 out(1:size(b1,1),1:size(b1,2)) = b1; +0455 yi = size(b1,2)+2; +0456 out(1:size(b2,1),yi:yi-1+size(b2,2)) = b2; +0457 yi = yi + size(b2,2)+1; +0458 out(1:size(b3,1),yi:yi-1+size(b3,2)) = b3; +0459 yi = yi + size(b3,2)+1; +0460 out(1:size(b4,1),yi:yi-1+size(b4,2)) = b4; +0461 +0462 % display info text +0463 displayStatusText(gui,... +0464 'Exporting inversion data to Excel-file ...'); +0465 % save to file +0466 xlswrite(fullfile(spath,sfile),out,'NMRdata','A1'); +0467 +0468 % remove the first standard excel sheet +0469 [~,sheets] = xlsfinfo(fullfile(spath,sfile)); +0470 objExcel = actxserver('Excel.Application'); +0471 objExcel.Workbooks.Open(fullfile(spath,sfile)); +0472 objExcel.ActiveWorkbook.Worksheets.Item(sheets{1}).Delete; +0473 objExcel.ActiveWorkbook.Save; +0474 objExcel.ActiveWorkbook.Close; +0475 objExcel.Quit; +0476 objExcel.delete; +0477 % display info text +0478 displayStatusText(gui,... +0479 'Exporting inversion data to Excel-file ... done'); +0480 end +0481 +0482 %% +0483 function exportINV_CSV(INVdata,sfile) +0484 unit = INVdata.process.timescale; +0485 +0486 % gather all data +0487 % proc data +0488 tmp2(:,1) = INVdata.results.nmrproc.t(:); +0489 tmp2(:,2) = INVdata.results.nmrproc.s(:); +0490 header2{1} = ['time [',unit,']']; +0491 header2{2} = 'signal [a.u.]'; +0492 +0493 % fit data (incl. residuals) +0494 tmp3(:,1) = INVdata.results.invstd.fit_t(:); +0495 tmp3(:,2) = INVdata.results.invstd.fit_s(:); +0496 tmp3(:,3) = INVdata.results.invstd.residual(:); +0497 header3{1} = ['time [',unit,']']; +0498 header3{2} = 'fit [a.u.]'; +0499 header3{3} = 'residual [-]'; +0500 +0501 % relaxation times +0502 switch INVdata.invstd.invtype +0503 case {'LU','NNLS'} +0504 por = INVdata.invstd.porosity; +0505 F = INVdata.results.invstd.T1T2f(:); +0506 F = 100*por.*F./sum(F); +0507 tmp4 = [INVdata.results.invstd.T1T2me(:)... +0508 INVdata.results.invstd.T1T2f(:) F]; +0509 header4 = {['relaxation times [',unit,']'],'frequency [-]',... +0510 ' water content [vol. %]'}; +0511 +0512 case {'mono','free'} +0513 por = INVdata.invstd.porosity; +0514 F = 100*por.*INVdata.results.invstd.E0./sum(INVdata.results.invstd.E0); +0515 switch INVdata.results.nmrproc.T1T2 +0516 case 'T1' +0517 tmp4 = [INVdata.results.invstd.T1(:)... +0518 INVdata.results.invstd.E0(:) F(:)]; +0519 header4 = {['relaxation time(s) T1 [',unit,']'],... +0520 'amplitude [a.u.]',' water content [vol. %]'}; +0521 case 'T2' +0522 tmp4 = [INVdata.results.invstd.T2(:)... +0523 INVdata.results.invstd.E0(:) F(:)]; +0524 header4 = {['relaxation time(s) T2 [',unit,']'],... +0525 'amplitude [a.u.]',' water content [vol. %]'}; +0526 end +0527 +0528 otherwise +0529 % Nothing to do +0530 end +0531 +0532 % glue together headers +0533 cHeader = [header2 header3 header4]; +0534 % insert commas +0535 commaHeader = [cHeader;repmat({','},1,numel(cHeader))]; +0536 commaHeader = commaHeader(:)'; +0537 % cHeader as string with commas +0538 textHeader = cell2mat(commaHeader(1:numel(commaHeader)-1)); +0539 +0540 maxrows = max([size(tmp2,1) size(tmp3,1) size(tmp4,1)]); +0541 % glue together data +0542 if size(tmp2,1) < maxrows +0543 tmp2(end+1:maxrows,:) = NaN; +0544 end +0545 if size(tmp3,1) < maxrows +0546 tmp3(end+1:maxrows,:) = NaN; +0547 end +0548 if size(tmp4,1) < maxrows +0549 tmp4(end+1:maxrows,:) = NaN; +0550 end +0551 out(1:maxrows,1:size(tmp2,2)) = tmp2; +0552 yi = size(tmp2,2)+1; +0553 out(1:maxrows,yi:yi-1+size(tmp3,2)) = tmp3; +0554 yi = yi + size(tmp3,2); +0555 out(1:maxrows,yi:yi-1+size(tmp4,2)) = tmp4; +0556 +0557 % save to file +0558 %write header to file +0559 fid = fopen(sfile,'w'); +0560 fprintf(fid,'%s\n',textHeader); +0561 fclose(fid); +0562 %write data to end of file +0563 dlmwrite(sfile,out,'-append','precision','%.5f'); +0564 +0565 end +0566 %% +0567 function exportINV_BGR_repos(INVdata,sfile) +0568 unit = INVdata.process.timescale; +0569 +0570 % gather all data +0571 % raw data +0572 tmp1(:,1) = INVdata.results.nmrraw.t(:); +0573 header1{1} = ['time [',unit,']']; +0574 if isreal(INVdata.results.nmrraw.s(:)) +0575 header1{2} = 'amplitude [a.u.]'; +0576 tmp1(:,2) = INVdata.results.nmrraw.s(:); +0577 +0578 b1 = {'raw data',''}; +0579 b1(2,:) = header1; +0580 b1(3:2+size(tmp1,1),:) = [num2cell(tmp1(:,1)),num2cell(tmp1(:,2))]; +0581 else +0582 header1{2} = 'real [a.u.]'; +0583 header1{3} = 'imag [a.u.]'; +0584 tmp1(:,2) = real(INVdata.results.nmrraw.s(:)); +0585 tmp1(:,3) = imag(INVdata.results.nmrraw.s(:)); +0586 +0587 b1 = {'raw data','',''}; +0588 b1(2,:) = header1; +0589 b1(3:2+size(tmp1,1),:) = [num2cell(tmp1(:,1)),num2cell(tmp1(:,2)),... +0590 num2cell(tmp1(:,3))]; +0591 end +0592 % proc data +0593 tmp2(:,1) = INVdata.results.nmrproc.t(:); +0594 tmp2(:,2) = INVdata.results.nmrproc.s(:); +0595 header2{1} = ['time [',unit,']']; +0596 header2{2} = 'signal [a.u.]'; +0597 +0598 % fit data (incl. residuals) +0599 tmp3(:,1) = INVdata.results.invstd.fit_t(:); +0600 tmp3(:,2) = INVdata.results.invstd.fit_s(:); +0601 tmp3(:,3) = INVdata.results.invstd.residual(:); +0602 header3{1} = ['time [',unit,']']; +0603 header3{2} = 'fit [a.u.]'; +0604 header3{3} = 'residual [-]'; +0605 +0606 % relaxation times +0607 switch INVdata.invstd.invtype +0608 case {'LU','NNLS'} +0609 por = INVdata.invstd.porosity; +0610 F = INVdata.results.invstd.T1T2f(:); +0611 F = 100*por.*F./sum(F); +0612 tmp4 = [INVdata.results.invstd.T1T2me(:)... +0613 INVdata.results.invstd.T1T2f(:) F]; +0614 header4 = {['relaxation times [',unit,']'],'amplitude [-]',... +0615 'partial water content [vol. %]'}; +0616 +0617 case {'mono','free'} +0618 por = INVdata.invstd.porosity; +0619 F = 100*por.*INVdata.results.invstd.E0./sum(INVdata.results.invstd.E0); +0620 switch INVdata.results.nmrproc.T1T2 +0621 case 'T1' +0622 tmp4 = [INVdata.results.invstd.T1(:)... +0623 INVdata.results.invstd.E0(:) F(:)]; +0624 header4 = {['relaxation time(s) T1 [',unit,']'],... +0625 'amplitude [a.u.]','partial water content [vol. %]'}; +0626 case 'T2' +0627 tmp4 = [INVdata.results.invstd.T2(:)... +0628 INVdata.results.invstd.E0(:) F(:)]; +0629 header4 = {['relaxation time(s) T2 [',unit,']'],... +0630 'amplitude [a.u.]','partial water content [vol. %]'}; +0631 end +0632 +0633 otherwise +0634 % Nothing to do +0635 end +0636 +0637 % glue together headers +0638 cHeader = [header1 header2 header3 header4]; +0639 % insert commas +0640 commaHeader = [cHeader;repmat({','},1,numel(cHeader))]; +0641 commaHeader = commaHeader(:)'; +0642 % cHeader as string with commas +0643 textHeader = cell2mat(commaHeader(1:numel(commaHeader)-1)); +0644 +0645 maxrows = max([size(tmp1,1) size(tmp2,1) size(tmp3,1) size(tmp4,1)]); +0646 % glue together data +0647 if size(tmp1,1) < maxrows +0648 tmp1(end+1:maxrows,:) = NaN; +0649 end +0650 if size(tmp2,1) < maxrows +0651 tmp2(end+1:maxrows,:) = NaN; +0652 end +0653 if size(tmp3,1) < maxrows +0654 tmp3(end+1:maxrows,:) = NaN; +0655 end +0656 if size(tmp4,1) < maxrows +0657 tmp4(end+1:maxrows,:) = NaN; +0658 end +0659 out(1:maxrows,1:size(tmp1,2)) = tmp1; +0660 yi = size(tmp1,2)+1; +0661 out(1:maxrows,yi:yi-1+size(tmp2,2)) = tmp2; +0662 yi = yi + size(tmp2,2); +0663 out(1:maxrows,yi:yi-1+size(tmp3,2)) = tmp3; +0664 yi = yi + size(tmp3,2); +0665 out(1:maxrows,yi:yi-1+size(tmp4,2)) = tmp4; +0666 +0667 % save data to file +0668 %write header to file +0669 fid = fopen(sfile,'w'); +0670 fprintf(fid,'%s\n',textHeader); +0671 fclose(fid); +0672 %write data to end of file +0673 dlmwrite(sfile,out,'-append','precision','%.5f'); +0674 +0675 end +0676 +0677 %% +0678 function exportMOD_EXCEL() +0679 xlswrite(fullfile(PathName,FileName),{'pressure [Pa]','saturation (drain)','saturation (imb)'},'CPS','A1'); +0680 xlswrite(fullfile(PathName,FileName),[results.SAT.pressure(:) results.SAT.Sdfull(:) results.SAT.Sifull(:)],'CPS','A2'); +0681 +0682 out = zeros(numel(results.NMR.t),numel(indd)+1); +0683 out(:,1) = results.NMR.t(:); +0684 header = cell(1,1); +0685 header{1} = 'time [s]'; +0686 for i = 1:numel(indd) +0687 out(:,i+1) = results.NMR.EdT1(indd(i),:)'; +0688 header{i+1} = ['S',num2str(i)]; +0689 end +0690 xlswrite(fullfile(PathName,FileName),header,'NMR_T1_drain','A1'); +0691 xlswrite(fullfile(PathName,FileName),out,'NMR_T1_drain','A2'); +0692 out = zeros(numel(results.NMR.t),numel(indd)+1); +0693 out(:,1) = results.NMR.t(:); +0694 header = cell(1,1); +0695 header{1} = 'time [s]'; +0696 for i = 1:numel(indd) +0697 out(:,i+1) = results.NMR.EdT2(indd(i),:)'; +0698 header{i+1} = ['S',num2str(i)]; +0699 end +0700 xlswrite(fullfile(PathName,FileName),header,'NMR_T2_drain','A1'); +0701 xlswrite(fullfile(PathName,FileName),out,'NMR_T2_drain','A2'); +0702 +0703 out = zeros(numel(results.NMR.t),numel(indi)+1); +0704 out(:,1) = results.NMR.t(:); +0705 header = cell(1,1); +0706 header{1} = 'time [s]'; +0707 for i = 1:numel(indi) +0708 out(:,i+1) = results.NMR.EiT1(indi(i),:)'; +0709 header{i+1} = ['S',num2str(i)]; +0710 end +0711 xlswrite(fullfile(PathName,FileName),header,'NMR_T1_imb','A1'); +0712 xlswrite(fullfile(PathName,FileName),out,'NMR_T1_imb','A2'); +0713 +0714 out = zeros(numel(results.NMR.t),numel(indi)+1); +0715 out(:,1) = results.NMR.t(:); +0716 header = cell(1,1); +0717 header{1} = 'time [s]'; +0718 for i = 1:numel(indi) +0719 out(:,i+1) = results.NMR.EiT2(indi(i),:)'; +0720 header{i+1} = ['S',num2str(i)]; +0721 end +0722 xlswrite(fullfile(PathName,FileName),header,'NMR_T2_imb','A1'); +0723 xlswrite(fullfile(PathName,FileName),out,'NMR_T2_imb','A2'); +0724 +0725 % remove the first standard excel sheet +0726 [~,sheets] = xlsfinfo(fullfile(PathName,FileName)); +0727 objExcel = actxserver('Excel.Application'); +0728 objExcel.Workbooks.Open(fullfile(PathName,FileName)); +0729 objExcel.ActiveWorkbook.Worksheets.Item(sheets{1}).Delete; +0730 objExcel.ActiveWorkbook.Save; +0731 objExcel.ActiveWorkbook.Close; +0732 objExcel.Quit; +0733 objExcel.delete; +0734 end +0735 +0736 %% +0737 function doexport = checkINV(INVdata,id) +0738 +0739 doexport = false; +0740 if ~isempty(INVdata) && ~isempty(id) +0741 if isstruct(INVdata{id}) +0742 doexport = true; +0743 else +0744 helpdlg({'exportData:','No inversion data to save'},... +0745 'Nothing to save'); +0746 end +0747 else +0748 helpdlg({'exportData:','No inversion data to save'},... +0749 'Nothing to save'); +0750 end +0751 +0752 end +0753 +0754 %% +0755 function doexport = checkMOD(data) +0756 +0757 doexport = false; +0758 if isfield(data,'results') +0759 if isfield(data.results,'NMR') +0760 doexport = true; +0761 else +0762 helpdlg({'exportData:',... +0763 'No data to save. Generate some data first.'},'NUCLEUSmod info:'); +0764 end +0765 else +0766 helpdlg({'exportData:',... +0767 'No data to save. Generate some data first.'},'NUCLEUSmod info:'); +0768 end +0769 +0770 end +0771 +0772 %% +0773 function amp = findApproxTlgmAmplitude(t,f,TLGM) +0774 index = find(abs(t-TLGM)==min(abs(t-TLGM))); +0775 amp = interp1(t(index-1:index+1),f(index-1:index+1),TLGM); +0776 end +0777 +0778 %------------- END OF CODE -------------- +0779 +0780 %% License: +0781 % MIT License +0782 % +0783 % Copyright (c) 2018 Thomas Hiller +0784 % +0785 % Permission is hereby granted, free of charge, to any person obtaining a copy +0786 % of this software and associated documentation files (the "Software"), to deal +0787 % in the Software without restriction, including without limitation the rights +0788 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0789 % copies of the Software, and to permit persons to whom the Software is +0790 % furnished to do so, subject to the following conditions: +0791 % +0792 % The above copyright notice and this permission notice shall be included in all +0793 % copies or substantial portions of the Software. +0794 % +0795 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0796 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0797 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0798 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0799 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0800 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0801 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/functions/interface/getColorTheme.html b/doc/nucleus/functions/interface/getColorTheme.html index d230002..96fd6e4 100644 --- a/doc/nucleus/functions/interface/getColorTheme.html +++ b/doc/nucleus/functions/interface/getColorTheme.html @@ -103,7 +103,7 @@

    SOURCE CODE ^%% switch depending on the calling figure 0035 switch fig_tag -0036 case 'INV' +0036 case {'INV','FIXEDTIMEVIEW'} 0037 % chose selected theme 0038 switch th 0039 case 'standard' diff --git a/doc/nucleus/functions/interface/importASCIIdata.html b/doc/nucleus/functions/interface/importASCIIdata.html index f7b750c..40207fd 100644 --- a/doc/nucleus/functions/interface/importASCIIdata.html +++ b/doc/nucleus/functions/interface/importASCIIdata.html @@ -213,67 +213,68 @@

    SOURCE CODE ^% dummy parameter data -0146 data.import.NMR.para{c} = 0; -0147 end -0148 end -0149 -0150 % save file names -0151 data.import.NMR.files = fnames; -0152 data.import.NMR.filesShort = shownames; -0153 -0154 % update the ini-file -0155 gui.myui.inidata.importpath = data.import.path; -0156 gui = makeINIfile(gui,'update'); -0157 -0158 % update the list of file names -0159 set(gui.listbox_handles.signal,'String',data.import.NMR.filesShort); -0160 set(gui.listbox_handles.signal,'Value',[],'Max',2,'Min',0); -0161 -0162 % create a global INVdata struct for every file in the list -0163 if isstruct(getappdata(fig,'INVdata')) -0164 setappdata(fig,'INVdata',[]); -0165 end -0166 INVdata = cell(length(data.import.NMR.filesShort),1); -0167 setappdata(fig,'INVdata',INVdata); -0168 -0169 % clear all axes -0170 clearAllAxes(gui.figh); -0171 -0172 % update GUI data and interface -0173 setappdata(fig,'data',data); -0174 setappdata(fig,'gui',gui); -0175 enableGUIelements('ASCII'); -0176 NUCLEUSinv_updateInterface; -0177 end -0178 -0179 end -0180 -0181 %------------- END OF CODE -------------- -0182 -0183 %% License: -0184 % MIT License -0185 % -0186 % Copyright (c) 2018 Thomas Hiller -0187 % -0188 % Permission is hereby granted, free of charge, to any person obtaining a copy -0189 % of this software and associated documentation files (the "Software"), to deal -0190 % in the Software without restriction, including without limitation the rights -0191 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0192 % copies of the Software, and to permit persons to whom the Software is -0193 % furnished to do so, subject to the following conditions: -0194 % -0195 % The above copyright notice and this permission notice shall be included in all -0196 % copies or substantial portions of the Software. -0197 % -0198 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0199 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0200 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0201 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0202 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0203 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0204 % SOFTWARE. +0144 data.import.NMR.data{c}.phase = 0; +0145 +0146 % dummy parameter data +0147 data.import.NMR.para{c} = 0; +0148 end +0149 end +0150 +0151 % save file names +0152 data.import.NMR.files = fnames; +0153 data.import.NMR.filesShort = shownames; +0154 +0155 % update the ini-file +0156 gui.myui.inidata.importpath = data.import.path; +0157 gui = makeINIfile(gui,'update'); +0158 +0159 % update the list of file names +0160 set(gui.listbox_handles.signal,'String',data.import.NMR.filesShort); +0161 set(gui.listbox_handles.signal,'Value',[],'Max',2,'Min',0); +0162 +0163 % create a global INVdata struct for every file in the list +0164 if isstruct(getappdata(fig,'INVdata')) +0165 setappdata(fig,'INVdata',[]); +0166 end +0167 INVdata = cell(length(data.import.NMR.filesShort),1); +0168 setappdata(fig,'INVdata',INVdata); +0169 +0170 % clear all axes +0171 clearAllAxes(gui.figh); +0172 +0173 % update GUI data and interface +0174 setappdata(fig,'data',data); +0175 setappdata(fig,'gui',gui); +0176 enableGUIelements('ASCII'); +0177 NUCLEUSinv_updateInterface; +0178 end +0179 +0180 end +0181 +0182 %------------- END OF CODE -------------- +0183 +0184 %% License: +0185 % MIT License +0186 % +0187 % Copyright (c) 2018 Thomas Hiller +0188 % +0189 % Permission is hereby granted, free of charge, to any person obtaining a copy +0190 % of this software and associated documentation files (the "Software"), to deal +0191 % in the Software without restriction, including without limitation the rights +0192 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0193 % copies of the Software, and to permit persons to whom the Software is +0194 % furnished to do so, subject to the following conditions: +0195 % +0196 % The above copyright notice and this permission notice shall be included in all +0197 % copies or substantial portions of the Software. +0198 % +0199 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0200 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0201 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0202 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0203 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0204 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0205 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/functions/interface/importINV2INV.html b/doc/nucleus/functions/interface/importINV2INV.html index 734b1de..cf148f6 100644 --- a/doc/nucleus/functions/interface/importINV2INV.html +++ b/doc/nucleus/functions/interface/importINV2INV.html @@ -170,149 +170,160 @@

    SOURCE CODE ^end 0098 end 0099 end -0100 end -0101 -0102 % update GUI data from session mat-file -0103 data = savedata.data; -0104 INVdata = savedata.INVdata; -0105 -0106 % display info text -0107 displayStatusText(gui,'Importing GUI session from mat-file ... update GUI data.'); -0108 % check if the import path exists on this machine -0109 isdir_import = dir(data.import.path); -0110 % if not replace it with the path the session-file was loaded from -0111 if isempty(isdir_import) -0112 data.import.path = Sessionpath; -0113 end -0114 % update the path info field with "path" ("file") -0115 if data.import.file > 0 -0116 tmpstr = fullfile(data.import.path,data.import.file); -0117 else -0118 tmpstr = data.import.path; -0119 end -0120 % update GUI data -0121 setappdata(fig,'data',data); -0122 setappdata(fig,'gui',gui); -0123 setappdata(fig,'INVdata',INVdata); -0124 -0125 % update the ini-file -0126 gui.myui.inidata.importpath = data.import.path; -0127 gui = makeINIfile(gui,'update'); -0128 setappdata(fig,'gui',gui); -0129 -0130 if length(tmpstr)>50 -0131 set(gui.text_handles.data_path,'String',['...',tmpstr(end-50:end)],... -0132 'HorizontalAlignment','left'); -0133 else -0134 set(gui.text_handles.data_path,'String',tmpstr,... -0135 'HorizontalAlignment','left'); -0136 end -0137 set(gui.text_handles.data_path,'TooltipString',tmpstr); -0138 -0139 % update the list of file names -0140 set(gui.listbox_handles.signal,'String',data.import.NMR.filesShort); -0141 set(gui.listbox_handles.signal,'Value',[],'Max',2,'Min',0); -0142 -0143 % display info text -0144 displayStatusText(gui,'Importing GUI session from mat-file ... update GUI interface.'); -0145 % update GUI interface -0146 NUCLEUSinv_updateInterface; -0147 -0148 % color the file names where there is an inversion set -0149 for id = 1:size(INVdata,1) -0150 if isstruct(INVdata{id}) -0151 strL = get(gui.listbox_handles.signal,'String'); -0152 str1 = strL{id}; -0153 str2 = ['<HTML><BODY bgcolor="rgb(',... -0154 sprintf('%d,%d,%d',gui.myui.colors.listINV.*255),')">',... -0155 str1,'</BODY></HTML>']; -0156 strL{id} = str2; -0157 set(gui.listbox_handles.signal,'String',strL); -0158 end -0159 end -0160 -0161 % display info text -0162 displayStatusText(gui,'Importing GUI session from mat-file ... update GUI menus.'); -0163 % adjust menu entry for expert mode -0164 switch savedata.data.info.ExpertMode -0165 case 'on' -0166 set(gui.menu.extra_expert,'Checked','off'); -0167 case 'off' -0168 set(gui.menu.extra_expert,'Checked','on'); -0169 end -0170 onMenuExpert(gui.menu.extra_expert); +0100 if version_in < 114 % changes introduced with v.0.1.14 +0101 % add 'Tfixed_bool' & 'Tfixed_val' field to savedata +0102 savedata.data.invstd.Tfixed_bool = data.invstd.Tfixed_bool; +0103 savedata.data.invstd.Tfixed_val = data.invstd.Tfixed_val; +0104 for i = 1:numel(savedata.INVdata) +0105 if isstruct(savedata.INVdata{i}) +0106 savedata.INVdata{i}.invstd.Tfixed_bool = data.invstd.Tfixed_bool; +0107 savedata.INVdata{i}.invstd.Tfixed_val = data.invstd.Tfixed_val; +0108 end +0109 end +0110 end +0111 end +0112 +0113 % update GUI data from session mat-file +0114 data = savedata.data; +0115 INVdata = savedata.INVdata; +0116 +0117 % display info text +0118 displayStatusText(gui,'Importing GUI session from mat-file ... update GUI data.'); +0119 % check if the import path exists on this machine +0120 isdir_import = dir(data.import.path); +0121 % if not replace it with the path the session-file was loaded from +0122 if isempty(isdir_import) +0123 data.import.path = Sessionpath; +0124 end +0125 % update the path info field with "path" ("file") +0126 if data.import.file > 0 +0127 tmpstr = fullfile(data.import.path,data.import.file); +0128 else +0129 tmpstr = data.import.path; +0130 end +0131 % update GUI data +0132 setappdata(fig,'data',data); +0133 setappdata(fig,'gui',gui); +0134 setappdata(fig,'INVdata',INVdata); +0135 +0136 % update the ini-file +0137 gui.myui.inidata.importpath = data.import.path; +0138 gui = makeINIfile(gui,'update'); +0139 setappdata(fig,'gui',gui); +0140 +0141 if length(tmpstr)>50 +0142 set(gui.text_handles.data_path,'String',['...',tmpstr(end-50:end)],... +0143 'HorizontalAlignment','left'); +0144 else +0145 set(gui.text_handles.data_path,'String',tmpstr,... +0146 'HorizontalAlignment','left'); +0147 end +0148 set(gui.text_handles.data_path,'TooltipString',tmpstr); +0149 +0150 % update the list of file names +0151 set(gui.listbox_handles.signal,'String',data.import.NMR.filesShort); +0152 set(gui.listbox_handles.signal,'Value',[],'Max',2,'Min',0); +0153 +0154 % display info text +0155 displayStatusText(gui,'Importing GUI session from mat-file ... update GUI interface.'); +0156 % update GUI interface +0157 NUCLEUSinv_updateInterface; +0158 +0159 % color the file names where there is an inversion set +0160 for id = 1:size(INVdata,1) +0161 if isstruct(INVdata{id}) +0162 strL = get(gui.listbox_handles.signal,'String'); +0163 str1 = strL{id}; +0164 str2 = ['<HTML><BODY bgcolor="rgb(',... +0165 sprintf('%d,%d,%d',gui.myui.colors.listINV.*255),')">',... +0166 str1,'</BODY></HTML>']; +0167 strL{id} = str2; +0168 set(gui.listbox_handles.signal,'String',strL); +0169 end +0170 end 0171 -0172 % adjust menu entry for joint inversion -0173 switch savedata.data.info.JointInv -0174 case 'on' -0175 set(gui.menu.extra_joint,'Checked','off'); -0176 case 'off' -0177 set(gui.menu.extra_joint,'Checked','on'); -0178 end -0179 onMenuJointInversion(gui.menu.extra_joint); -0180 enableGUIelements('NMR'); -0181 -0182 % adjust menu entry for comand line inversion info -0183 switch savedata.data.info.InvInfo -0184 case 'on' -0185 set(gui.menu.view_invinfo,'Checked','off'); -0186 case 'off' -0187 set(gui.menu.view_invinfo,'Checked','on'); -0188 end -0189 onMenuView(gui.menu.view_invinfo); -0190 -0191 % adjust menu entry for tool tips -0192 switch savedata.data.info.ToolTips -0193 case 'on' -0194 set(gui.menu.view_tooltips,'Checked','off'); -0195 case 'off' -0196 set(gui.menu.view_tooltips,'Checked','on'); -0197 end -0198 onMenuView(gui.menu.view_tooltips); -0199 -0200 % display info text -0201 displayStatusText(gui,'Importing GUI session from mat-file ... show last file.'); -0202 % set focus on last file used in previous session -0203 set(gui.listbox_handles.signal,'Value',savedata.id); -0204 % and simulate click to update all relevant GUI elements -0205 onListboxData(gui.listbox_handles.signal); -0206 -0207 % display info text -0208 displayStatusText(gui,'Importing GUI session from mat-file ... done.'); -0209 else -0210 % display info text -0211 displayStatusText(gui,'Importing GUI session from mat-file ... cancelled.'); -0212 -0213 helpdlg({'importINV2INV:';... -0214 'This seems to be not a valid NUCLEUSinv session file'},... -0215 'No session data found'); -0216 end -0217 end -0218 -0219 %------------- END OF CODE -------------- -0220 -0221 %% License: -0222 % MIT License -0223 % -0224 % Copyright (c) 2018 Thomas Hiller -0225 % -0226 % Permission is hereby granted, free of charge, to any person obtaining a copy -0227 % of this software and associated documentation files (the "Software"), to deal -0228 % in the Software without restriction, including without limitation the rights -0229 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0230 % copies of the Software, and to permit persons to whom the Software is -0231 % furnished to do so, subject to the following conditions: -0232 % -0233 % The above copyright notice and this permission notice shall be included in all -0234 % copies or substantial portions of the Software. -0235 % -0236 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0237 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0238 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0239 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0240 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0241 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0242 % SOFTWARE. +0172 % display info text +0173 displayStatusText(gui,'Importing GUI session from mat-file ... update GUI menus.'); +0174 % adjust menu entry for expert mode +0175 switch savedata.data.info.ExpertMode +0176 case 'on' +0177 set(gui.menu.extra_expert,'Checked','off'); +0178 case 'off' +0179 set(gui.menu.extra_expert,'Checked','on'); +0180 end +0181 onMenuExpert(gui.menu.extra_expert); +0182 +0183 % adjust menu entry for joint inversion +0184 switch savedata.data.info.JointInv +0185 case 'on' +0186 set(gui.menu.extra_joint,'Checked','off'); +0187 case 'off' +0188 set(gui.menu.extra_joint,'Checked','on'); +0189 end +0190 onMenuJointInversion(gui.menu.extra_joint); +0191 enableGUIelements('NMR'); +0192 +0193 % adjust menu entry for comand line inversion info +0194 switch savedata.data.info.InvInfo +0195 case 'on' +0196 set(gui.menu.view_invinfo,'Checked','off'); +0197 case 'off' +0198 set(gui.menu.view_invinfo,'Checked','on'); +0199 end +0200 onMenuView(gui.menu.view_invinfo); +0201 +0202 % adjust menu entry for tool tips +0203 switch savedata.data.info.ToolTips +0204 case 'on' +0205 set(gui.menu.view_tooltips,'Checked','off'); +0206 case 'off' +0207 set(gui.menu.view_tooltips,'Checked','on'); +0208 end +0209 onMenuView(gui.menu.view_tooltips); +0210 +0211 % display info text +0212 displayStatusText(gui,'Importing GUI session from mat-file ... show last file.'); +0213 % set focus on last file used in previous session +0214 set(gui.listbox_handles.signal,'Value',savedata.id); +0215 % and simulate click to update all relevant GUI elements +0216 onListboxData(gui.listbox_handles.signal); +0217 +0218 % display info text +0219 displayStatusText(gui,'Importing GUI session from mat-file ... done.'); +0220 else +0221 % display info text +0222 displayStatusText(gui,'Importing GUI session from mat-file ... cancelled.'); +0223 +0224 helpdlg({'importINV2INV:';... +0225 'This seems to be not a valid NUCLEUSinv session file'},... +0226 'No session data found'); +0227 end +0228 end +0229 +0230 %------------- END OF CODE -------------- +0231 +0232 %% License: +0233 % MIT License +0234 % +0235 % Copyright (c) 2018 Thomas Hiller +0236 % +0237 % Permission is hereby granted, free of charge, to any person obtaining a copy +0238 % of this software and associated documentation files (the "Software"), to deal +0239 % in the Software without restriction, including without limitation the rights +0240 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0241 % copies of the Software, and to permit persons to whom the Software is +0242 % furnished to do so, subject to the following conditions: +0243 % +0244 % The above copyright notice and this permission notice shall be included in all +0245 % copies or substantial portions of the Software. +0246 % +0247 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0248 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0249 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0250 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0251 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0252 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0253 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/functions/interface/importNMRdata.html b/doc/nucleus/functions/interface/importNMRdata.html index ed8da92..386697e 100644 --- a/doc/nucleus/functions/interface/importNMRdata.html +++ b/doc/nucleus/functions/interface/importNMRdata.html @@ -81,7 +81,7 @@

    CROSS-REFERENCE INFORMATION ^
 
 <h2><a name=SUBFUNCTIONS ^

    +
  • function [NMRpath,NMRfile] = getNMRPathFile(label,import)
  • function [data,gui] = importDataMouseCPMG(data,gui)
  • function [data,gui] = importDataBGRmat(data,gui)
  • function [data,gui] = importDataBGRliftSingle(data,gui)
  • function [data,gui] = importDataBGRlift(data,gui)
  • function [data,gui] = importDataHeliosCPMG(data,gui)
  • function [data,gui] = importDataHeliosSeries(data,gui)
  • function [data,gui] = importDataDart(data,gui)
  • function [data,gui] = importDataGeneral(data,gui)
  • function [data,gui] = importDataLIAG(data,gui)
  • function [data,gui] = importDataLIAGcore(data,gui)
  • function [data,gui] = importDataLIAGproject(data,gui)
  • function [data,gui] = importDataMouse(data,gui)
  • function [data,gui] = importDataIBAC(data,gui)
  • function data = loadGUIParameters(datapath,fname)
  • function data = loadGUIrawdata(data,NMRpath,NMRfile)
  • SOURCE CODE ^

    0001 function importNMRdata(src)
    @@ -142,1186 +142,1473 @@ 

    SOURCE CODE ^'Label'); 0057 0058 % set file format for later use -0059 if strcmp(label,'GGE ascii') -0060 data.import.fileformat = 'rwth'; -0061 elseif strcmp(label,'GGE field') -0062 data.import.fileformat = 'field'; -0063 elseif strcmp(label,'GGE Dart') -0064 data.import.fileformat = 'dart'; +0059 if strcmp(label,'BAM TOM') +0060 data.import.fileformat = 'bamtom'; +0061 elseif strcmp(label,'BGR mat') +0062 data.import.fileformat = 'bgrmat'; +0063 elseif strcmp(label,'BGR std') +0064 data.import.fileformat = 'bgr'; 0065 elseif strcmp(label,'CoreLab ascii') 0066 data.import.fileformat = 'corelab'; 0067 elseif strcmp(label,'DART') 0068 data.import.fileformat = 'dart'; -0069 elseif strcmp(label,'MOUSE') -0070 data.import.fileformat = 'mouse'; -0071 elseif strcmp(label,'LIAG single') -0072 data.import.fileformat = 'liag'; -0073 elseif strcmp(label,'LIAG from project') -0074 data.import.fileformat = 'liag'; -0075 elseif strcmp(label,'LIAG last project') -0076 data.import.fileformat = 'liag'; -0077 elseif strcmp(label,'BGR std') -0078 data.import.fileformat = 'bgr'; -0079 elseif strcmp(label,'MouseCPMG') -0080 data.import.fileformat = 'MouseCPMG'; -0081 elseif strcmp(label,'BGR mat') -0082 data.import.fileformat = 'bgrmat'; -0083 elseif strcmp(label,'MouseLiftSingle') -0084 data.import.fileformat = 'MouseLiftSingle'; -0085 elseif strcmp(label,'MouseLiftAll') -0086 data.import.fileformat = 'MouseLiftAll'; -0087 elseif strcmp(label,'Helios') -0088 data.import.fileformat = 'helios'; -0089 elseif strcmp(label,'BAM TOM') -0090 data.import.fileformat = 'bamtom'; -0091 elseif strcmp(label,'PM5') -0092 data.import.fileformat = 'pm5'; -0093 elseif strcmp(label,'PM25') -0094 data.import.fileformat = 'pm25'; -0095 else -0096 helpdlg('Something is utterly wrong.','onMenuImport: Choose again.'); -0097 end -0098 -0099 % remove info field if any -0100 ih = findobj('Tag','inv_info'); -0101 if ~isempty(ih); delete(ih); end -0102 -0103 % depending on the import format get the corresponding path / file -0104 [NMRpath,NMRfile] = getNMRPathFile(label,data.import); -0105 -0106 % only continue if user didn't cancel -0107 if sum([NMRpath NMRfile]) > 0 -0108 % remove old fields and data -0109 data = cleanupGUIData(data); -0110 -0111 % check for mat-file with GUI rawdata and import data -0112 isfile = dir(fullfile(NMRpath,'NUCLEUSinv_raw.mat')); -0113 -0114 % if there is no raw-file import from folder/file -0115 if isempty(isfile) -0116 % import data -0117 data.import.path = NMRpath; -0118 data.import.file = -1; -0119 displayStatusText(gui,'Reading NMR Data ...'); -0120 % call the corresponding subroutines -0121 switch label -0122 case {'GGE ascii','GGE field','CoreLab ascii','BGR std',... -0123 'BAM TOM'} -0124 [data,gui] = importDataGeneral(data,gui); -0125 case 'GGE Dart' -0126 data.import.file = NMRfile; -0127 % the data in the example folder is an older type -0128 if contains(NMRpath,'nucleus\example_data\dart') -0129 data.import.version = 1; -0130 else -0131 data.import.version = 2; -0132 end -0133 [data,gui] = importDataDart(data,gui); -0134 case 'DART' -0135 data.import.file = NMRfile; -0136 data.import.version = 3; -0137 [data,gui] = importDataDart(data,gui); -0138 case 'MOUSE' -0139 [data,gui] = importDataMouse(data,gui); -0140 case 'LIAG single' -0141 [data,gui] = importDataLIAG(data,gui); -0142 case {'LIAG from project','LIAG last project'} -0143 [data,gui] = importDataLIAGproject(data,gui); -0144 % make the Petro Panel visible as default -0145 tmp_h = gui.myui.heights(2,:); -0146 tmp_h(3) = gui.myui.heights(2,3); -0147 % but the CPS panel stays minimized -0148 tmp_h(5) = gui.myui.heights(1,3); -0149 set(gui.panels.main,'Heights',tmp_h); -0150 set(gui.panels.petro.main,'Minimized',false); -0151 case 'BGR mat' -0152 data.import.file = NMRfile; -0153 [data,gui] = importDataBGRmat(data,gui); -0154 case 'MouseCPMG' -0155 [data,gui] = importDataMouseCPMG(data,gui); -0156 case 'MouseLiftSingle' -0157 [data,gui] = importDataBGRliftSingle(data,gui); -0158 case 'MouseLiftAll' -0159 [data,gui] = importDataBGRliftAll(data,gui); -0160 case 'Helios' -0161 data.import.file = NMRfile; -0162 [data,gui] = importDataHelios(data,gui); -0163 case {'PM5','PM25'} -0164 data.import.file = NMRfile; -0165 [data,gui] = importDataIBAC(data,gui); -0166 end -0167 displayStatusText(gui,'Reading NMR Data ... done'); -0168 else -0169 % import from mat-file -0170 displayStatusText(gui,'Importing NMR raw data from mat-file ...'); -0171 data = loadGUIrawdata(data,NMRpath,NMRfile); -0172 displayStatusText(gui,'Importing NMR raw data from mat-file ... done'); -0173 end -0174 -0175 % update the path info field with "NMRpath" ("NMRfile") -0176 if NMRfile > 0 -0177 tmpstr = fullfile(NMRpath,NMRfile); -0178 else -0179 tmpstr = NMRpath; -0180 end -0181 if length(tmpstr)>50 -0182 set(gui.text_handles.data_path,'String',['...',tmpstr(end-50:end)],... -0183 'HorizontalAlignment','left'); -0184 else -0185 set(gui.text_handles.data_path,'String',tmpstr,... -0186 'HorizontalAlignment','left'); -0187 end -0188 set(gui.text_handles.data_path,'TooltipString',tmpstr); -0189 -0190 % update the ini-file -0191 gui.myui.inidata.importpath = data.import.path; -0192 gui = makeINIfile(gui,'update'); -0193 -0194 % update the list of file names -0195 set(gui.listbox_handles.signal,'String',data.import.NMR.filesShort); -0196 set(gui.listbox_handles.signal,'Value',[],'Max',2,'Min',0); -0197 -0198 % create a global INVdata struct for every file in the list -0199 if isstruct(getappdata(fig,'INVdata')) -0200 setappdata(fig,'INVdata',[]); -0201 end -0202 INVdata = cell(length(data.import.NMR.filesShort),1); -0203 setappdata(fig,'INVdata',INVdata); -0204 -0205 % clear all axes -0206 clearAllAxes(gui.figh); -0207 -0208 % update GUI data and interface -0209 setappdata(fig,'data',data); -0210 setappdata(fig,'gui',gui); -0211 enableGUIelements('NMR'); +0069 elseif strcmp(label,'GGE ascii') +0070 data.import.fileformat = 'rwth'; +0071 elseif strcmp(label,'GGE field') +0072 data.import.fileformat = 'field'; +0073 elseif strcmp(label,'GGE Dart') +0074 data.import.fileformat = 'dart'; +0075 elseif strcmp(label,'HeliosCPMG') +0076 data.import.fileformat = 'heliosCPMG'; +0077 elseif strcmp(label,'HeliosSeries') +0078 data.import.fileformat = 'heliosSeries'; +0079 elseif strcmp(label,'LIAG core') +0080 data.import.fileformat = 'liag'; +0081 elseif strcmp(label,'LIAG from project') +0082 data.import.fileformat = 'liag'; +0083 elseif strcmp(label,'LIAG last project') +0084 data.import.fileformat = 'liag'; +0085 elseif strcmp(label,'LIAG single') +0086 data.import.fileformat = 'liag'; +0087 elseif strcmp(label,'MOUSE') +0088 data.import.fileformat = 'mouse'; +0089 elseif strcmp(label,'MouseCPMG') +0090 data.import.fileformat = 'MouseCPMG'; +0091 elseif strcmp(label,'MouseLift') +0092 data.import.fileformat = 'MouseLift'; +0093 elseif strcmp(label,'PM5') +0094 data.import.fileformat = 'pm5'; +0095 elseif strcmp(label,'PM25') +0096 data.import.fileformat = 'pm25'; +0097 else +0098 helpdlg('Something is utterly wrong.','onMenuImport: Choose again.'); +0099 end +0100 +0101 % remove info field if any +0102 ih = findobj('Tag','inv_info'); +0103 if ~isempty(ih); delete(ih); end +0104 +0105 % depending on the import format get the corresponding path / file +0106 [NMRpath,NMRfile] = getNMRPathFile(label,data.import); +0107 +0108 % only continue if user didn't cancel +0109 if sum([NMRpath NMRfile]) > 0 +0110 % remove old fields and data +0111 data = cleanupGUIData(data); +0112 +0113 % check for mat-file with GUI rawdata and import data +0114 isfile = dir(fullfile(NMRpath,'NUCLEUSinv_raw.mat')); +0115 +0116 % if there is no raw-file import from folder/file +0117 if isempty(isfile) +0118 % import data +0119 data.import.path = NMRpath; +0120 data.import.file = -1; +0121 displayStatusText(gui,'Reading NMR Data ...'); +0122 % call the corresponding subroutines +0123 switch label +0124 case {'BAM TOM','BGR std','CoreLab ascii','GGE ascii',... +0125 'GGE field'} +0126 [data,gui] = importDataGeneral(data,gui); +0127 case 'GGE Dart' +0128 data.import.file = NMRfile; +0129 % the data in the example folder is an older type +0130 if contains(NMRpath,'nucleus\example_data\dart') +0131 data.import.version = 1; +0132 else +0133 data.import.version = 2; +0134 end +0135 [data,gui] = importDataDart(data,gui); +0136 case 'DART' +0137 data.import.file = NMRfile; +0138 data.import.version = 3; +0139 [data,gui] = importDataDart(data,gui); +0140 case 'MOUSE' +0141 [data,gui] = importDataMouse(data,gui); +0142 case 'LIAG single' +0143 [data,gui] = importDataLIAG(data,gui); +0144 case 'LIAG core' +0145 [data,gui] = importDataLIAGcore(data,gui); +0146 case {'LIAG from project','LIAG last project'} +0147 [data,gui] = importDataLIAGproject(data,gui); +0148 % make the Petro Panel visible as default +0149 tmp_h = gui.myui.heights(2,:); +0150 tmp_h(3) = gui.myui.heights(2,3); +0151 % but the CPS panel stays minimized +0152 tmp_h(5) = gui.myui.heights(1,3); +0153 set(gui.panels.main,'Heights',tmp_h); +0154 set(gui.panels.petro.main,'Minimized',false); +0155 case 'BGR mat' +0156 data.import.file = NMRfile; +0157 [data,gui] = importDataBGRmat(data,gui); +0158 case 'MouseCPMG' +0159 [data,gui] = importDataMouseCPMG(data,gui); +0160 case 'MouseLift' +0161 [data,gui] = importDataBGRlift(data,gui); +0162 case 'HeliosCPMG' +0163 data.import.file = NMRfile; +0164 [data,gui] = importDataHeliosCPMG(data,gui); +0165 case 'HeliosSeries' +0166 data.import.file = NMRfile; +0167 [data,gui] = importDataHeliosSeries(data,gui); +0168 case {'PM5','PM25'} +0169 data.import.file = NMRfile; +0170 [data,gui] = importDataIBAC(data,gui); +0171 end +0172 displayStatusText(gui,'Reading NMR Data ... done'); +0173 else +0174 % import from mat-file +0175 displayStatusText(gui,'Importing NMR raw data from mat-file ...'); +0176 data = loadGUIrawdata(data,NMRpath,NMRfile); +0177 displayStatusText(gui,'Importing NMR raw data from mat-file ... done'); +0178 end +0179 +0180 % update the path info field with "NMRpath" ("NMRfile") +0181 if NMRfile > 0 +0182 tmpstr = fullfile(NMRpath,NMRfile); +0183 else +0184 tmpstr = NMRpath; +0185 end +0186 if length(tmpstr)>50 +0187 set(gui.text_handles.data_path,'String',['...',tmpstr(end-50:end)],... +0188 'HorizontalAlignment','left'); +0189 else +0190 set(gui.text_handles.data_path,'String',tmpstr,... +0191 'HorizontalAlignment','left'); +0192 end +0193 set(gui.text_handles.data_path,'TooltipString',tmpstr); +0194 +0195 % update the ini-file +0196 gui.myui.inidata.importpath = data.import.path; +0197 gui = makeINIfile(gui,'update'); +0198 +0199 % update the list of file names +0200 set(gui.listbox_handles.signal,'String',data.import.NMR.filesShort); +0201 set(gui.listbox_handles.signal,'Value',[],'Max',2,'Min',0); +0202 +0203 % create a global INVdata struct for every file in the list +0204 if isstruct(getappdata(fig,'INVdata')) +0205 setappdata(fig,'INVdata',[]); +0206 end +0207 INVdata = cell(length(data.import.NMR.filesShort),1); +0208 setappdata(fig,'INVdata',INVdata); +0209 +0210 % clear all axes +0211 clearAllAxes(gui.figh); 0212 -0213 % special treatment of LIAG projects -0214 switch label -0215 case {'LIAG from project','LIAG last project'} -0216 cpath = data.import.LIAG.calibrationpath; -0217 % check if this calibration file was already used -0218 isfile = dir(fullfile(cpath,'NUCLEUS_calibData.mat')); -0219 if ~isempty(isfile) -0220 id = 2; -0221 % if data is there reuse it -0222 calib = load(fullfile(cpath,isfile.name),'calib'); -0223 INVdata{id} = calib.calib; -0224 data.calib = INVdata{id}.calib; -0225 data.import.LIAG.Tbulk = INVdata{id}.results.invstd.T2; -0226 setappdata(fig,'INVdata',INVdata); -0227 setappdata(fig,'data',data); -0228 % color the list entry -0229 strL = get(gui.listbox_handles.signal,'String'); -0230 str1 = strL{id}; -0231 str2 = ['<HTML><BODY bgcolor="rgb(',... -0232 sprintf('%d,%d,%d',gui.myui.colors.listINV.*255),')">',... -0233 str1,'</BODY></HTML>']; -0234 strL{id} = str2; -0235 set(gui.listbox_handles.signal,'String',strL); -0236 end -0237 otherwise -0238 end -0239 % update GUI interface -0240 NUCLEUSinv_updateInterface; -0241 end -0242 -0243 catch ME -0244 % show error message in case import fails -0245 errmsg = {ME.message;[ME.stack(1).name,' Line: ',num2str(ME.stack(1).line)];... -0246 'Check File Format settings.'}; -0247 errordlg(errmsg,'importNMRdata: Error!'); -0248 -0249 end -0250 -0251 end -0252 -0253 %% -0254 function [NMRpath,NMRfile] = getNMRPathFile(label,import) -0255 -0256 NMRpath = -1; -0257 NMRfile = -1; -0258 % for almost all import cases we load a folder ... but not for all -0259 switch label -0260 case {'GGE ascii','GGE field','CoreLab ascii','MOUSE','LIAG single',... -0261 'BGR std','MouseCPMG','MouseLiftSingle','MouseLiftAll','Helios','BAM TOM','PM25'} -0262 % if there is already a data folder present we start from here -0263 if isfield(import,'path') -0264 NMRpath = uigetdir(import.path,'Choose Data Path'); -0265 else -0266 % otherwise we start at the current working dircetory -0267 % 'NMRpath' holds the name of the choosen data path -0268 here = mfilename('fullpath'); -0269 [pathstr,~,~] = fileparts(here); -0270 NMRpath = uigetdir(pathstr,'Choose Data Path'); -0271 end -0272 case 'LIAG from project' -0273 % if there is already a data folder present we start from here -0274 if isfield(import,'path') -0275 NMRpath = uigetdir(import.path,'Choose Project Path'); -0276 else -0277 % otherwise we start at the current working dircetory -0278 % 'NMRpath' holds the name of the choosen data path -0279 here = mfilename('fullpath'); -0280 [pathstr,~,~] = fileparts(here); -0281 NMRpath = uigetdir(pathstr,'Choose Project Path'); -0282 end -0283 case 'LIAG last project' -0284 % there is already a data folder and we use this one -0285 if isfield(import,'path') -0286 NMRpath = import.path; -0287 else -0288 % otherwise we start at the current working dircetory -0289 % 'NMRpath' holds the name of the choosen data path -0290 here = mfilename('fullpath'); -0291 [pathstr,~,~] = fileparts(here); -0292 NMRpath = uigetdir(pathstr,'Choose Project Path'); -0293 end -0294 case {'GGE Dart','DART','BGR mat','NMR mat'} -0295 % if there is already a data folder present we start from here -0296 if isfield(import,'path') -0297 [NMRfile,NMRpath] = uigetfile(import.path,'Choose Data file'); -0298 else -0299 % otherwise we start at the current working dircetory -0300 % 'foldername' hold s the name of the choosen data path -0301 here = mfilename('fullpath'); -0302 [pathstr,~,~] = fileparts(here); -0303 [NMRfile,NMRpath] = uigetfile(pathstr,'Choose Data file'); -0304 end -0305 case 'PM5' -0306 % if there is already a data folder present we start from here -0307 if isfield(import,'path') -0308 NMRpath = uigetdir(import.path,'Choose PM5 Data Path'); -0309 else -0310 % otherwise we start at the current working dircetory -0311 % 'NMRpath' holds the name of the choosen data path -0312 here = mfilename('fullpath'); -0313 [pathstr,~,~] = fileparts(here); -0314 NMRpath = uigetdir(pathstr,'Choose PM5 Data Path'); -0315 end -0316 -0317 % check if there are multiple inf-files available -0318 % if yes -> choose one -0319 inffiles = dir(fullfile(NMRpath,'*.inf')); -0320 if numel(inffiles) > 1 -0321 [NMRfile,NMRpath] = uigetfile(fullfile(NMRpath,'*.inf'),... -0322 'Choose INF file'); -0323 elseif numel(inffiles) == 1 -0324 NMRfile = inffiles.name; -0325 end -0326 end -0327 -0328 end -0329 -0330 %% -0331 function [data,gui] = importDataMouseCPMG(data,gui) +0213 % update GUI data and interface +0214 setappdata(fig,'data',data); +0215 setappdata(fig,'gui',gui); +0216 enableGUIelements('NMR'); +0217 +0218 % special treatment of LIAG projects +0219 switch label +0220 case {'LIAG from project','LIAG last project'} +0221 cpath = data.import.LIAG.calibrationpath; +0222 % check if this calibration file was already used +0223 isfile = dir(fullfile(cpath,'NUCLEUS_calibData.mat')); +0224 if ~isempty(isfile) +0225 id = 2; +0226 % if data is there reuse it +0227 calib = load(fullfile(cpath,isfile.name),'calib'); +0228 INVdata{id} = calib.calib; +0229 data.calib = INVdata{id}.calib; +0230 data.import.LIAG.Tbulk = INVdata{id}.results.invstd.T2; +0231 setappdata(fig,'INVdata',INVdata); +0232 setappdata(fig,'data',data); +0233 % color the list entry +0234 strL = get(gui.listbox_handles.signal,'String'); +0235 str1 = strL{id}; +0236 str2 = ['<HTML><BODY bgcolor="rgb(',... +0237 sprintf('%d,%d,%d',gui.myui.colors.listINV.*255),')">',... +0238 str1,'</BODY></HTML>']; +0239 strL{id} = str2; +0240 set(gui.listbox_handles.signal,'String',strL); +0241 end +0242 otherwise +0243 end +0244 % update GUI interface +0245 NUCLEUSinv_updateInterface; +0246 end +0247 +0248 catch ME +0249 % show error message in case import fails +0250 errmsg = {ME.message;[ME.stack(1).name,' Line: ',num2str(ME.stack(1).line)];... +0251 'Check File Format settings.'}; +0252 errordlg(errmsg,'importNMRdata: Error!'); +0253 end +0254 +0255 end +0256 +0257 %% +0258 function [NMRpath,NMRfile] = getNMRPathFile(label,import) +0259 +0260 NMRpath = -1; +0261 NMRfile = -1; +0262 % for almost all import cases we load a folder ... but not for all +0263 switch label +0264 case {'BAM TOM','BGR std','CoreLab ascii','GGE ascii','GGE field',... +0265 'HeliosCPMG','HeliosSeries','LIAG core','LIAG single',... +0266 'MOUSE','MouseCPMG','MouseLift','PM25'} +0267 % if there is already a data folder present we start from here +0268 if isfield(import,'path') +0269 NMRpath = uigetdir(import.path,'Choose Data Path'); +0270 else +0271 % otherwise we start at the current working dircetory +0272 % 'NMRpath' holds the name of the choosen data path +0273 here = mfilename('fullpath'); +0274 [pathstr,~,~] = fileparts(here); +0275 NMRpath = uigetdir(pathstr,'Choose Data Path'); +0276 end +0277 case 'LIAG from project' +0278 % if there is already a data folder present we start from here +0279 if isfield(import,'path') +0280 NMRpath = uigetdir(import.path,'Choose Project Path'); +0281 else +0282 % otherwise we start at the current working dircetory +0283 % 'NMRpath' holds the name of the choosen data path +0284 here = mfilename('fullpath'); +0285 [pathstr,~,~] = fileparts(here); +0286 NMRpath = uigetdir(pathstr,'Choose Project Path'); +0287 end +0288 case 'LIAG last project' +0289 % there is already a data folder and we use this one +0290 if isfield(import,'path') +0291 NMRpath = import.path; +0292 else +0293 % otherwise we start at the current working dircetory +0294 % 'NMRpath' holds the name of the choosen data path +0295 here = mfilename('fullpath'); +0296 [pathstr,~,~] = fileparts(here); +0297 NMRpath = uigetdir(pathstr,'Choose Project Path'); +0298 end +0299 case {'GGE Dart','DART','BGR mat','NMR mat'} +0300 % if there is already a data folder present we start from here +0301 if isfield(import,'path') +0302 [NMRfile,NMRpath] = uigetfile(import.path,'Choose Data file'); +0303 else +0304 % otherwise we start at the current working dircetory +0305 % 'foldername' hold s the name of the choosen data path +0306 here = mfilename('fullpath'); +0307 [pathstr,~,~] = fileparts(here); +0308 [NMRfile,NMRpath] = uigetfile(pathstr,'Choose Data file'); +0309 end +0310 case 'PM5' +0311 % if there is already a data folder present we start from here +0312 if isfield(import,'path') +0313 NMRpath = uigetdir(import.path,'Choose PM5 Data Path'); +0314 else +0315 % otherwise we start at the current working dircetory +0316 % 'NMRpath' holds the name of the choosen data path +0317 here = mfilename('fullpath'); +0318 [pathstr,~,~] = fileparts(here); +0319 NMRpath = uigetdir(pathstr,'Choose PM5 Data Path'); +0320 end +0321 +0322 % check if there are multiple inf-files available +0323 % if yes -> choose one +0324 inffiles = dir(fullfile(NMRpath,'*.inf')); +0325 if numel(inffiles) > 1 +0326 [NMRfile,NMRpath] = uigetfile(fullfile(NMRpath,'*.inf'),... +0327 'Choose INF file'); +0328 elseif numel(inffiles) == 1 +0329 NMRfile = inffiles.name; +0330 end +0331 end 0332 -0333 csv_t2path = dir(fullfile(data.import.path,'CPMG')); -0334 csv_t2path = csv_t2path(~ismember({csv_t2path.name},{'.','..'})); -0335 -0336 fnames = struct; -0337 % shownames is just a dummy to hold all data file names that -0338 % will be shown in the listbox -0339 shownames = cell(1,1); +0333 end +0334 +0335 %% +0336 function [data,gui] = importDataMouseCPMG(data,gui) +0337 +0338 csv_t2path = dir(fullfile(data.import.path,'CPMG')); +0339 csv_t2path = csv_t2path(~ismember({csv_t2path.name},{'.','..'})); 0340 -0341 c = 0; -0342 if ~isempty(csv_t2path) -0343 for i = 1:size(csv_t2path,1) -0344 in.T1T2 = 'T2'; -0345 in.path = fullfile(data.import.path,'CPMG',csv_t2path(i).name); -0346 in.fileformat = data.import.fileformat; -0347 out = LoadNMRData_driver(in); -0348 -0349 for j = 1:size(out.nmrData,2) -0350 % the individual file names -0351 c = c + 1; -0352 fnames(c).parfile = 'acqu.par'; -0353 fnames(c).datafile = out.nmrData{j}.datfile; -0354 fnames(c).T2specfile = ''; -0355 -0356 shownames{c} = ['T2_',csv_t2path(i).name,'_',fnames(c).datafile]; -0357 -0358 % the NMR data -0359 % here we fix the time scale from [ms] to [s] -0360 if max(out.nmrData{j}.time) > 100 -0361 out.nmrData{j}.time = out.nmrData{j}.time/1000; -0362 out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1000; -0363 end -0364 data.import.NMR.data{c} = out.nmrData{j}; -0365 data.import.NMR.para{c} = out.parData; -0366 end -0367 end -0368 end -0369 -0370 if isempty(csv_t2path) -0371 helpdlg('No data folders in the given directory.','onMenuImport: No data.'); -0372 else -0373 % update the global data structure -0374 data.import.NMR.files = fnames; -0375 data.import.NMR.filesShort = shownames; -0376 end -0377 -0378 end -0379 -0380 %% -0381 function [data,gui] = importDataBGRmat(data,gui) +0341 fnames = struct; +0342 % shownames is just a dummy to hold all data file names that +0343 % will be shown in the listbox +0344 shownames = cell(1,1); +0345 +0346 c = 0; +0347 if ~isempty(csv_t2path) +0348 for i = 1:size(csv_t2path,1) +0349 in.T1T2 = 'T2'; +0350 in.path = fullfile(data.import.path,'CPMG',csv_t2path(i).name); +0351 in.fileformat = data.import.fileformat; +0352 out = LoadNMRData_driver(in); +0353 +0354 for j = 1:size(out.nmrData,2) +0355 % the individual file names +0356 c = c + 1; +0357 fnames(c).parfile = 'acqu.par'; +0358 fnames(c).datafile = out.nmrData{j}.datfile; +0359 fnames(c).T2specfile = ''; +0360 +0361 shownames{c} = ['T2_',csv_t2path(i).name,'_',fnames(c).datafile]; +0362 +0363 % the NMR data +0364 % here we fix the time scale from [ms] to [s] +0365 if max(out.nmrData{j}.time) > 100 +0366 out.nmrData{j}.time = out.nmrData{j}.time/1000; +0367 out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1000; +0368 end +0369 data.import.NMR.data{c} = out.nmrData{j}; +0370 data.import.NMR.para{c} = out.parData; +0371 end +0372 end +0373 end +0374 +0375 if isempty(csv_t2path) +0376 helpdlg('No data folders in the given directory.','onMenuImport: No data.'); +0377 else +0378 % update the global data structure +0379 data.import.NMR.files = fnames; +0380 data.import.NMR.filesShort = shownames; +0381 end 0382 -0383 in.path = fullfile(data.import.path); -0384 in.name = data.import.file; -0385 in.fileformat = data.import.fileformat; -0386 out = LoadNMRData_driver(in); +0383 end +0384 +0385 %% +0386 function [data,gui] = importDataBGRmat(data,gui) 0387 -0388 fnames = struct; -0389 % shownames is just a dummy to hold all data file names that -0390 % will be shown in the listbox -0391 shownames = cell(1,1); +0388 in.path = fullfile(data.import.path); +0389 in.name = data.import.file; +0390 in.fileformat = data.import.fileformat; +0391 out = LoadNMRData_driver(in); 0392 -0393 c = 0; -0394 table = {true,0,1,'D'}; -0395 for j = 1:size(out.nmrData,2) -0396 % the individual file names -0397 c = c + 1; -0398 fnames(c).parfile = ''; -0399 fnames(c).datafile = data.import.file; -0400 fnames(c).T2specfile = ''; -0401 -0402 shownames{c} = out.parData{j}.file; -0403 -0404 data.import.NMR.data{c} = out.nmrData{j}; -0405 data.import.NMR.para{c} = out.parData{j}; +0393 fnames = struct; +0394 % shownames is just a dummy to hold all data file names that +0395 % will be shown in the listbox +0396 shownames = cell(1,1); +0397 +0398 c = 0; +0399 table = {true,0,1,'D'}; +0400 for j = 1:size(out.nmrData,2) +0401 % the individual file names +0402 c = c + 1; +0403 fnames(c).parfile = ''; +0404 fnames(c).datafile = data.import.file; +0405 fnames(c).T2specfile = ''; 0406 -0407 if isfield(out,'pressData') -0408 % convert hPa to Pa -0409 table{c,1} = true; -0410 table{c,2} = out.pressData.p(j)*1e2; -0411 table{c,3} = out.pressData.S(j); -0412 table{c,4} = 'D'; -0413 end -0414 end -0415 -0416 % global Tbulk -0417 data.invstd.Tbulk = out.parData{1}.Tbulk; -0418 % global porosity -0419 data.import.BGR.porosity = out.parData{1}.porosity; +0407 shownames{c} = out.parData{j}.file; +0408 +0409 data.import.NMR.data{c} = out.nmrData{j}; +0410 data.import.NMR.para{c} = out.parData{j}; +0411 +0412 if isfield(out,'pressData') +0413 % convert hPa to Pa +0414 table{c,1} = true; +0415 table{c,2} = out.pressData.p(j)*1e2; +0416 table{c,3} = out.pressData.S(j); +0417 table{c,4} = 'D'; +0418 end +0419 end 0420 -0421 data.import.NMR.files = fnames; -0422 data.import.NMR.filesShort = shownames; -0423 -0424 % import pressure / saturation data -0425 if isfield(out,'pressData') -0426 data.pressure.unit = 'kPa'; -0427 data.pressure.unitfac = 1e-3; -0428 data.pressure.table = table; -0429 end -0430 -0431 end -0432 -0433 %% -0434 function [data,gui] = importDataBGRliftSingle(data,gui) +0421 % global Tbulk +0422 data.invstd.Tbulk = out.parData{1}.Tbulk; +0423 % global porosity +0424 data.import.BGR.porosity = out.parData{1}.porosity; +0425 +0426 data.import.NMR.files = fnames; +0427 data.import.NMR.filesShort = shownames; +0428 +0429 % import pressure / saturation data +0430 if isfield(out,'pressData') +0431 data.pressure.unit = 'kPa'; +0432 data.pressure.unitfac = 1e-3; +0433 data.pressure.table = table; +0434 end 0435 -0436 % first check whether T1 or T2 was measured... -0437 % by analyzing the name of data folder -0438 indiz = find(data.import.path == filesep); -0439 checkT1T2 = data.import.path(indiz(end-1)+1:indiz(end)-1); -0440 if strcmp(checkT1T2,'t1test') -0441 in.T1T2 = 'T1'; -0442 elseif strcmp(checkT1T2,'cpmgfastautotest') -0443 in.T1T2 = 'T2'; -0444 elseif strcmp(checkT1T2,'cpmgfastauto') -0445 in.T1T2 = 'T2'; -0446 else -0447 disp('Please chose an original Prospa folder for Mouse Lift data!'); -0448 end -0449 -0450 % % there should be folders with integer values in their names -0451 % t1t2path = data.import.path; -0452 -0453 fnames = struct; -0454 % shownames is just a dummy to hold all data file names that -0455 % will be shown in the listbox -0456 shownames = cell(1,1); -0457 -0458 c = 0; -0459 if ~isempty(data.import.path) -0460 % for i = 1:size(t1t2path,1) -0461 in.path = data.import.path; -0462 in.fileformat = data.import.fileformat; -0463 out = LoadNMRData_driver(in); -0464 -0465 for j = 1:size(out.nmrData,2) -0466 % the individual file names -0467 c = c + 1; -0468 fnames(c).parfile = 'acq.par'; -0469 fnames(c).datafile = out.nmrData{j}.datfile; -0470 -0471 shownames{c} = [in.T1T2,'_',fnames(c).datafile]; -0472 -0473 % the NMR data -0474 % here we fix the time scale from [ms] to [s] -0475 if max(out.nmrData{j}.time) > 100 -0476 out.nmrData{j}.time = out.nmrData{j}.time/1000; -0477 out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1000; -0478 end -0479 data.import.NMR.data{c} = out.nmrData{j}; -0480 data.import.NMR.para{c} = out.parData; -0481 end -0482 else -0483 helpdlg('No data folders in the given directory.','onMenuImport: No data.'); -0484 end -0485 -0486 -0487 % update the global data structure -0488 data.import.NMR.files = fnames; -0489 data.import.NMR.filesShort = shownames; -0490 +0436 end +0437 +0438 %% +0439 function [data,gui] = importDataBGRliftSingle(data,gui) +0440 +0441 % first check whether T1 or T2 was measured... +0442 % by analyzing the name of data folder +0443 ind = find(data.import.path == filesep); +0444 checkT1T2 = data.import.path(ind(end-1)+1:ind(end)-1); +0445 if strcmp(checkT1T2,'t1test') +0446 in.T1T2 = 'T1'; +0447 elseif strcmp(checkT1T2,'T1auto') +0448 in.T1T2 = 'T1'; +0449 elseif strcmp(checkT1T2,'cpmgfastautotest') +0450 in.T1T2 = 'T2'; +0451 elseif strcmp(checkT1T2,'cpmgfastauto') +0452 in.T1T2 = 'T2'; +0453 else +0454 disp('Please chose an original Prospa folder for Mouse Lift data!'); +0455 end +0456 +0457 % % there should be folders with integer values in their names +0458 % t1t2path = data.import.path; +0459 +0460 fnames = struct; +0461 % shownames is just a dummy to hold all data file names that +0462 % will be shown in the listbox +0463 shownames = cell(1,1); +0464 +0465 c = 0; +0466 if ~isempty(data.import.path) +0467 % for i = 1:size(t1t2path,1) +0468 in.path = data.import.path; +0469 in.fileformat = data.import.fileformat; +0470 out = LoadNMRData_driver(in); +0471 +0472 for j = 1:size(out.nmrData,2) +0473 % the individual file names +0474 c = c + 1; +0475 fnames(c).parfile = 'acq.par'; +0476 fnames(c).datafile = out.nmrData{j}.datfile; +0477 +0478 shownames{c} = [in.T1T2,'_',fnames(c).datafile]; +0479 +0480 % the NMR data +0481 % here we fix the time scale from [ms] to [s] +0482 if max(out.nmrData{j}.time) > 100 +0483 out.nmrData{j}.time = out.nmrData{j}.time/1000; +0484 out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1000; +0485 end +0486 data.import.NMR.data{c} = out.nmrData{j}; +0487 data.import.NMR.para{c} = out.parData; +0488 end +0489 else +0490 helpdlg('No data folders in the given directory.','onMenuImport: No data.'); 0491 end -0492 %% -0493 function [data,gui] = importDataBGRliftAll(data,gui) -0494 -0495 % first check whether T1 or T2 was measured -0496 indiz = find(data.import.path == filesep); -0497 checkT1T2 = data.import.path(indiz(end)+1:end); -0498 if strcmp(checkT1T2,'t1test') -0499 in.T1T2 = 'T1'; -0500 elseif strcmp(checkT1T2,'cpmgfastautotest') -0501 in.T1T2 = 'T2'; -0502 elseif strcmp(checkT1T2,'cpmgfastauto') -0503 in.T1T2 = 'T2'; -0504 else -0505 helpdlg('No original data folder','onMenuImport: No data.'); -0506 end -0507 -0508 % there should be folders with integer values in their names -0509 t1t2path = dir(data.import.path); -0510 t1t2path = t1t2path(~ismember({t1t2path.name},{'.','..'})); -0511 -0512 fnames = struct; -0513 % shownames is just a dummy to hold all data file names that -0514 % will be shown in the listbox -0515 shownames = cell(1,1); -0516 -0517 c = 0; -0518 if ~isempty(t1t2path) -0519 for i = 1:size(t1t2path,1) -0520 in.path = fullfile(data.import.path,t1t2path(i).name); -0521 in.fileformat = data.import.fileformat; -0522 out = LoadNMRData_driver(in); -0523 -0524 for j = 1:size(out.nmrData,2) -0525 % the individual file names -0526 c = c + 1; -0527 fnames(c).parfile = 'acq.par'; -0528 fnames(c).datafile = out.nmrData{j}.datfile; -0529 -0530 shownames{c} = [in.T1T2,'_',t1t2path(i).name,'_',fnames(c).datafile]; -0531 -0532 % the NMR data -0533 % here we fix the time scale from [ms] to [s] -0534 if max(out.nmrData{j}.time) > 100 -0535 out.nmrData{j}.time = out.nmrData{j}.time/1000; -0536 out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1000; -0537 end -0538 data.import.NMR.data{c} = out.nmrData{j}; -0539 data.import.NMR.para{c} = out.parData; -0540 end -0541 end -0542 else -0543 helpdlg('No data folders in the given directory.','onMenuImport: No data.'); -0544 end -0545 % update the global data structure -0546 data.import.NMR.files = fnames; -0547 data.import.NMR.filesShort = shownames; -0548 -0549 end -0550 -0551 %% -0552 function [data,gui] = importDataHelios(data,gui) -0553 -0554 % first check the subpaths -0555 % there should be some folders with names ... -0556 % ... similar to the data filenames inside them -0557 datpath = dir(data.import.path); -0558 datpath = datpath(~ismember({datpath.name},{'.','..'})); -0559 -0560 fnames = struct; -0561 % shownames is just a dummy to hold all data file names that -0562 % will be shown in the listbox -0563 shownames = cell(1,1); +0492 +0493 % update the global data structure +0494 data.import.NMR.files = fnames; +0495 data.import.NMR.filesShort = shownames; +0496 +0497 end +0498 %% +0499 function [data,gui] = importDataBGRlift(data,gui) +0500 +0501 % 1) show all folders and ask for sample +0502 subdirs = dir(data.import.path); +0503 % remove the dot-dirs +0504 subdirs = subdirs(~ismember({subdirs.name},{'.','..'})); +0505 +0506 fnames = {subdirs.name}; +0507 [indx,~] = listdlg('PromptString','Choose data set:',... +0508 'SelectionMode','multiple',... +0509 'ListString',fnames); +0510 +0511 % first check whether T1 or T2 was measured +0512 ind = find(data.import.path == filesep); +0513 checkT1T2 = data.import.path(ind(end)+1:end); +0514 if strcmp(checkT1T2,'t1test') +0515 in.T1T2 = 'T1'; +0516 elseif strcmp(checkT1T2,'T1auto') +0517 in.T1T2 = 'T1'; +0518 elseif strcmp(checkT1T2,'cpmgfastautotest') +0519 in.T1T2 = 'T2'; +0520 elseif strcmp(checkT1T2,'cpmgfastauto') +0521 in.T1T2 = 'T2'; +0522 else +0523 helpdlg('No original data folder','onMenuImport: No data.'); +0524 end +0525 +0526 % now ask for stacking +0527 answer = questdlg('Do you want to stack the slices?'); +0528 switch answer +0529 case 'Yes' +0530 doSliceStack = true; +0531 % if stacking ask for stack-rotate-order +0532 answer = questdlg('Select stack-rotate-order:',... +0533 'Select order', ... +0534 'stack-rotate (default)','rotate-stack','Cancel','stack-rotate (default)'); +0535 switch answer +0536 case 'stack-rotate' +0537 StackFirst = true; +0538 case 'rotate-stack' +0539 StackFirst = false; +0540 otherwise +0541 StackFirst = true; +0542 end +0543 otherwise +0544 doSliceStack = false; +0545 end +0546 +0547 fnames = struct; +0548 % shownames is just a dummy to hold all data file names that +0549 % will be shown in the listbox +0550 shownames = cell(1,1); +0551 +0552 c = 0; +0553 if ~isempty(indx) +0554 for i = indx +0555 in.path = fullfile(data.import.path,subdirs(i).name); +0556 in.fileformat = data.import.fileformat; +0557 out = LoadNMRData_driver(in); +0558 +0559 if doSliceStack +0560 % the individual file names +0561 c = c + 1; +0562 fnames(c).parfile = 'acq.par'; +0563 fnames(c).datafile = out.nmrData{1}.datfile; 0564 -0565 c = 0; -0566 if ~isempty(datpath) -0567 for i = 1:size(datpath,1) -0568 % does datpath.name points to a folder? -0569 if datpath(i).isdir -0570 % check if datpath.name includes regular Helios data files -0571 content = dir([data.import.path,filesep,datpath(i).name]); -0572 content = content(~ismember({content.name},{'.','..'})); -0573 for j = 1:size(content,1) -0574 if strcmp(content(j).name,[datpath(i).name,'_1.hrd']) -0575 in.T1T2 = 'T2'; -0576 in.name = content(j).name; -0577 in.path = fullfile(data.import.path,filesep,datpath(i).name); -0578 in.fileformat = data.import.fileformat; -0579 out = LoadNMRData_driver(in); -0580 -0581 % the individual file names -0582 c = c + 1; -0583 fnames(c).parfile = ''; -0584 fnames(c).datafile = out.nmrData.datfile; -0585 fnames(c).T2specfile = ''; -0586 shownames{c} = ['T2_',datpath(i).name]; -0587 -0588 data.import.NMR.data{c} = out.nmrData; -0589 data.import.NMR.para{c} = out.parData; -0590 end -0591 end -0592 end -0593 end -0594 end -0595 -0596 data.import.NMR.files = fnames; -0597 data.import.NMR.filesShort = shownames; -0598 -0599 end -0600 -0601 %% -0602 function [data,gui] = importDataDart(data,gui) -0603 -0604 in.path = fullfile(data.import.path); -0605 in.name = data.import.file; -0606 in.fileformat = data.import.fileformat; -0607 in.version = data.import.version; -0608 out = LoadNMRData_driver(in); +0565 shownames{c} = [in.T1T2,'_',subdirs(i).name]; +0566 +0567 % use the meta data from the first slice +0568 % fix the time scale from [ms] to [s] +0569 if max(out.nmrData{1}.time) > 100 +0570 out.nmrData{1}.time = out.nmrData{1}.time/1000; +0571 out.nmrData{1}.raw.time = out.nmrData{1}.raw.time/1000; +0572 end +0573 % import into GUI data struct +0574 data.import.NMR.data{c} = out.nmrData{1}; +0575 +0576 % stacking +0577 for j = 1:size(out.nmrData,2) +0578 if j == 1 +0579 signal = out.nmrData{j}.signal; +0580 else +0581 signal = signal + out.nmrData{j}.signal; +0582 end +0583 end +0584 signal = signal./size(out.nmrData,2); +0585 +0586 % now rotate after the stacking +0587 if StackFirst +0588 [signal,phase] = rotateT2phase(signal); +0589 data.import.NMR.data{c}.phase = phase; +0590 data.import.NMR.data{c}.signal = signal; +0591 data.import.NMR.data{c}.raw.signal = signal; +0592 else +0593 % no rotation after stacking +0594 data.import.NMR.data{c}.signal = signal; +0595 data.import.NMR.data{c}.raw.signal = signal; +0596 end +0597 +0598 % parameter data +0599 data.import.NMR.para{c} = out.parData; +0600 else +0601 +0602 for j = 1:size(out.nmrData,2) +0603 % the individual file names +0604 c = c + 1; +0605 fnames(c).parfile = 'acq.par'; +0606 fnames(c).datafile = out.nmrData{j}.datfile; +0607 +0608 shownames{c} = [in.T1T2,'_',subdirs(i).name,'_',fnames(c).datafile]; 0609 -0610 fnames = struct; -0611 % shownames is just a dummy to hold all data file names that -0612 % will be shown in the listbox -0613 shownames = cell(1,1); -0614 -0615 c = 0; -0616 for j = 1:size(out.nmrData,2) -0617 % the individual file names -0618 c = c + 1; -0619 fnames(c).parfile = ''; -0620 fnames(c).datafile = data.import.file; -0621 fnames(c).T2specfile = ''; -0622 -0623 shownames{c} = ['depth_',sprintf('%04.3f',out.parData{j}.depth)]; -0624 -0625 % the NMR data -0626 % here we fix the time scale from [ms] to [s] -0627 if max(out.nmrData{j}.time) > 100 -0628 out.nmrData{j}.time = out.nmrData{j}.time/1000; -0629 out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1000; -0630 end -0631 data.import.NMR.data{c} = out.nmrData{j}; -0632 data.import.NMR.para{c} = out.parData{j}; -0633 end -0634 -0635 data.import.NMR.files = fnames; -0636 data.import.NMR.filesShort = shownames; -0637 -0638 end +0610 % the NMR data +0611 % here we fix the time scale from [ms] to [s] +0612 if max(out.nmrData{j}.time) > 100 +0613 out.nmrData{j}.time = out.nmrData{j}.time/1000; +0614 out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1000; +0615 end +0616 data.import.NMR.data{c} = out.nmrData{j}; +0617 data.import.NMR.para{c} = out.parData; +0618 end +0619 end +0620 end +0621 else +0622 helpdlg('No data folders in the given directory.','onMenuImport: No data.'); +0623 end +0624 +0625 % update the global data structure +0626 data.import.NMR.files = fnames; +0627 data.import.NMR.filesShort = shownames; +0628 +0629 end +0630 +0631 %% +0632 function [data,gui] = importDataHeliosCPMG(data,gui) +0633 +0634 % first check the subpaths +0635 % there should be some folders with names ... +0636 % ... similar to the data filenames inside them +0637 datpath = dir(data.import.path); +0638 datpath = datpath(~ismember({datpath.name},{'.','..'})); 0639 -0640 %% -0641 function [data,gui] = importDataGeneral(data,gui) -0642 -0643 % look for all files ending with '.par' -0644 % should exist for T1 and T2 measurements -0645 filenames = dir(fullfile(data.import.path,'*.par')); -0646 -0647 fnames = struct; -0648 % shownames is just a dummy to hold all data file names that -0649 % will be shown in the listbox -0650 shownames = cell(1,1); -0651 -0652 % loop over all found files and import the data -0653 c = 0; -0654 in.path = data.import.path; -0655 for i = 1:size(filenames,1) -0656 ind = strfind(filenames(i).name,'.'); -0657 ind = max(ind); -0658 in.name = filenames(i).name(1:ind-1); -0659 in.fileformat = data.import.fileformat; -0660 out = LoadNMRData_driver(in); -0661 -0662 for j = 1:size(out.nmrData,2) -0663 % the individual file names -0664 c = c + 1; -0665 fnames(c).parfile = filenames(i).name; -0666 fnames(c).datafile = out.nmrData{j}.datfile; -0667 if strcmp(out.nmrData{j}.flag,'T2') && isfield(out.nmrData{j},'specfile') -0668 fnames(c).T2specfile = out.nmrData{j}.specfile; -0669 else -0670 fnames(c).T2specfile = ''; -0671 end -0672 shownames{c} = fnames(c).datafile; -0673 -0674 % the NMR data -0675 % here we fix the time scale from [ms] to [s] -0676 if max(out.nmrData{j}.time) > 100 -0677 out.nmrData{j}.time = out.nmrData{j}.time/1000; -0678 out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1000; -0679 end -0680 data.import.NMR.data{c} = out.nmrData{j}; -0681 data.import.NMR.para{c} = out.parData; -0682 end -0683 end -0684 -0685 switch data.import.fileformat -0686 case 'bamtom' -0687 nslices = out.parData.nSlices; -0688 ncsvfiles = numel(fnames); -0689 -0690 % check for background file ("Leermessung") -0691 has_bg = false; -0692 for i = 1:numel(fnames) -0693 if ~isempty(strfind(fnames(i).datafile,'000')) -0694 has_bg = true; -0695 index_bg = i; -0696 break; -0697 end -0698 end -0699 -0700 if has_bg -0701 % background data set -0702 bg = data.import.NMR.data{index_bg}; -0703 -0704 % vector of indices of the files that get corrected -0705 ind_files = 1:1:ncsvfiles; -0706 ind_files(ind_files==index_bg) = []; -0707 -0708 for i = ind_files -0709 % subtract the background signal -0710 s = data.import.NMR.data{i}.signal; -0711 s_bg = bg.signal; -0712 % if the background signal is longer than the signal cut it -0713 if numel(s_bg) > numel(s) -0714 tmp_s = s_bg(1:numel(s)); -0715 else % if not pad it with zeros -0716 tmp_s = zeros(size(s)); -0717 tmp_s(1:numel(s_bg)) = s_bg; -0718 end -0719 s = complex(real(s)-real(tmp_s),imag(s)-imag(tmp_s)); -0720 % update original data set -0721 data.import.NMR.data{i}.signal = s; -0722 end -0723 -0724 % check if the number of slices is equal to the number of files -0725 % (excluding the background file) -0726 if nslices == numel(ind_files) -0727 % create z-vector -0728 p = out.parData; -0729 zslice = linspace(p.startPos,p.endPos,p.nSlices)'; -0730 data.import.BAM.use_z = true; -0731 data.import.BAM.zslice = zslice; -0732 if numel(zslice) > 1 -0733 c = 0; -0734 for i = ind_files -0735 c = c + 1; -0736 tmp = shownames{i}; -0737 shownames{i} = [tmp,' z:',sprintf('%5.4f',zslice(c))]; -0738 end -0739 end -0740 else -0741 data.import.BAM.use_z = false; -0742 data.import.BAM.zslice = 1:1:max([numel(ind_files) 1]); -0743 end -0744 -0745 else -0746 if nslices == ncsvfiles -0747 % create z-vector -0748 p = out.parData; -0749 zslice = linspace(p.startPos,p.endPos,p.nSlices)'; -0750 data.import.BAM.use_z = true; -0751 data.import.BAM.zslice = zslice; -0752 if numel(zslice) > 1 -0753 for i = 1:numel(zslice) -0754 tmp = shownames{i}; -0755 shownames{i} = [tmp,' z:',sprintf('%5.4f',zslice(i))]; -0756 end -0757 end -0758 else -0759 data.import.BAM.use_z = false; -0760 data.import.BAM.zslice = 1:1:ncsvfiles; -0761 end -0762 end -0763 end -0764 -0765 % update the global data structure -0766 data.import.NMR.files = fnames; -0767 data.import.NMR.filesShort = shownames; -0768 -0769 end +0640 fnames = struct; +0641 % shownames is just a dummy to hold all data file names that +0642 % will be shown in the listbox +0643 shownames = cell(1,1); +0644 +0645 c = 0; +0646 if ~isempty(datpath) +0647 for i = 1:size(datpath,1) +0648 % does datpath.name points to a folder? +0649 if datpath(i).isdir +0650 % check if datpath.name includes regular Helios data files +0651 content = dir([data.import.path,filesep,datpath(i).name]); +0652 content = content(~ismember({content.name},{'.','..'})); +0653 for j = 1:size(content,1) +0654 if strcmp(content(j).name,[datpath(i).name,'.hrd']) +0655 if ~strcmp(content(j).name,[datpath(i).name,'_ref']) +0656 in.T1T2 = 'T2'; +0657 in.name = content(j).name; +0658 in.path = fullfile(data.import.path,filesep,datpath(i).name); +0659 in.fileformat = data.import.fileformat; +0660 out = LoadNMRData_driver(in); +0661 +0662 % the individual file names +0663 c = c + 1; +0664 fnames(c).parfile = ''; +0665 fnames(c).datafile = out.nmrData.datfile; +0666 fnames(c).T2specfile = ''; +0667 shownames{c} = ['T2_',datpath(i).name]; +0668 +0669 data.import.NMR.data{c} = out.nmrData; +0670 data.import.NMR.para{c} = out.parData; +0671 end +0672 end +0673 end +0674 end +0675 end +0676 end +0677 +0678 % update the global data structure +0679 data.import.NMR.files = fnames; +0680 data.import.NMR.filesShort = shownames; +0681 +0682 end +0683 +0684 %% +0685 function [data,gui] = importDataHeliosSeries(data,gui) +0686 +0687 % first check the subpaths +0688 % there should be some folders with names ... +0689 % ... similar to the data filenames inside them +0690 datpath = dir(data.import.path); +0691 datpath = datpath(~ismember({datpath.name},{'.','..'})); +0692 +0693 fnames = struct; +0694 % shownames is just a dummy to hold all data file names that +0695 % will be shown in the listbox +0696 shownames = cell(1,1); +0697 +0698 c = 0; +0699 if ~isempty(datpath) +0700 content = datpath; +0701 for j = 1:size(content,1) +0702 if ~strcmp(content(j).name(end-7:end),'_ref.hrd') +0703 in.T1T2 = 'T2'; +0704 in.name = content(j).name; +0705 in.path = fullfile(data.import.path); +0706 in.fileformat = data.import.fileformat; +0707 out = LoadNMRData_driver(in); +0708 % the individual file names +0709 c = c + 1; +0710 fnames(c).parfile = ''; +0711 fnames(c).datafile = out.nmrData.datfile; +0712 fnames(c).T2specfile = ''; +0713 shownames{c} = ['T2_',content(j).name]; +0714 +0715 data.import.NMR.data{c} = out.nmrData; +0716 data.import.NMR.para{c} = out.parData; +0717 end +0718 +0719 end +0720 end +0721 +0722 % update the global data structure +0723 data.import.NMR.files = fnames; +0724 data.import.NMR.filesShort = shownames; +0725 +0726 end +0727 +0728 %% +0729 function [data,gui] = importDataDart(data,gui) +0730 +0731 in.path = fullfile(data.import.path); +0732 in.name = data.import.file; +0733 in.fileformat = data.import.fileformat; +0734 in.version = data.import.version; +0735 out = LoadNMRData_driver(in); +0736 +0737 fnames = struct; +0738 % shownames is just a dummy to hold all data file names that +0739 % will be shown in the listbox +0740 shownames = cell(1,1); +0741 +0742 c = 0; +0743 for j = 1:size(out.nmrData,2) +0744 % the individual file names +0745 c = c + 1; +0746 fnames(c).parfile = ''; +0747 fnames(c).datafile = data.import.file; +0748 fnames(c).T2specfile = ''; +0749 +0750 shownames{c} = ['depth_',sprintf('%04.3f',out.parData{j}.depth)]; +0751 +0752 % the NMR data +0753 % here we fix the time scale from [ms] to [s] +0754 if max(out.nmrData{j}.time) > 100 +0755 out.nmrData{j}.time = out.nmrData{j}.time/1000; +0756 out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1000; +0757 end +0758 data.import.NMR.data{c} = out.nmrData{j}; +0759 data.import.NMR.para{c} = out.parData{j}; +0760 end +0761 +0762 % update the global data structure +0763 data.import.NMR.files = fnames; +0764 data.import.NMR.filesShort = shownames; +0765 +0766 end +0767 +0768 %% +0769 function [data,gui] = importDataGeneral(data,gui) 0770 -0771 %% -0772 function [data,gui] = importDataLIAG(data,gui) -0773 -0774 in.path = fullfile(data.import.path); -0775 in.fileformat = data.import.fileformat; -0776 out = LoadNMRData_driver(in); -0777 -0778 fnames = struct; -0779 % shownames is just a dummy to hold all data file names that -0780 % will be shown in the listbox -0781 shownames = cell(1,1); -0782 -0783 c = 0; -0784 for j = 1:size(out.nmrData,2) -0785 % the individual file names -0786 c = c + 1; -0787 fnames(c).parfile = 'acqu.par'; -0788 fnames(c).datafile = out.nmrData{j}.datfile; -0789 fnames(c).T2specfile = ''; -0790 -0791 shownames{c} = fnames(c).datafile; -0792 -0793 % the NMR data -0794 % here we fix the time scale to [s] if neccessary -0795 TE = out.parData.echoTime; % [µs] -0796 if out.nmrData{j}.time(1)== TE/1e3 -0797 % change [ms] to [s] -0798 out.nmrData{j}.time = out.nmrData{j}.time/1e3; -0799 out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1e3; -0800 elseif out.nmrData{j}.time(1)== TE -0801 % change [µs] to [s] -> very unlikely -0802 out.nmrData{j}.time = out.nmrData{j}.time/1e6; -0803 out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1e6; -0804 end -0805 data.import.NMR.data{c} = out.nmrData{j}; -0806 data.import.NMR.para{c} = out.parData; -0807 end -0808 -0809 % update the global data structure -0810 data.import.NMR.files = fnames; -0811 data.import.NMR.filesShort = shownames; +0771 % look for all files ending with '.par' +0772 % should exist for T1 and T2 measurements +0773 filenames = dir(fullfile(data.import.path,'*.par')); +0774 +0775 fnames = struct; +0776 % shownames is just a dummy to hold all data file names that +0777 % will be shown in the listbox +0778 shownames = cell(1,1); +0779 +0780 % loop over all found files and import the data +0781 c = 0; +0782 in.path = data.import.path; +0783 for i = 1:size(filenames,1) +0784 ind = strfind(filenames(i).name,'.'); +0785 ind = max(ind); +0786 in.name = filenames(i).name(1:ind-1); +0787 in.fileformat = data.import.fileformat; +0788 out = LoadNMRData_driver(in); +0789 +0790 for j = 1:size(out.nmrData,2) +0791 % the individual file names +0792 c = c + 1; +0793 fnames(c).parfile = filenames(i).name; +0794 fnames(c).datafile = out.nmrData{j}.datfile; +0795 if strcmp(out.nmrData{j}.flag,'T2') && isfield(out.nmrData{j},'specfile') +0796 fnames(c).T2specfile = out.nmrData{j}.specfile; +0797 else +0798 fnames(c).T2specfile = ''; +0799 end +0800 shownames{c} = fnames(c).datafile; +0801 +0802 % the NMR data +0803 % here we fix the time scale from [ms] to [s] +0804 if max(out.nmrData{j}.time) > 100 +0805 out.nmrData{j}.time = out.nmrData{j}.time/1000; +0806 out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1000; +0807 end +0808 data.import.NMR.data{c} = out.nmrData{j}; +0809 data.import.NMR.para{c} = out.parData; +0810 end +0811 end 0812 -0813 end -0814 -0815 %% -0816 function [data,gui] = importDataLIAGproject(data,gui) -0817 -0818 % 1) show all folders and ask for sample -0819 subdirs = dir(data.import.path); -0820 % remove the dot-dirs -0821 subdirs = subdirs(~ismember({subdirs.name},{'.','..'})); -0822 -0823 fnames = {subdirs.name}; -0824 [indx,~] = listdlg('PromptString','Select Sample:',... -0825 'SelectionMode','single',... -0826 'ListString',fnames); -0827 -0828 if ~isempty(indx) -0829 % 2) check corresponding SampleParameter.par file for reference and -0830 % calibration sample and other parameters -0831 datapath = fullfile(data.import.path,fnames{indx}); -0832 % load SampleParameter file for sample -0833 [SampleParameter] = loadGUIParameters(datapath,'SampleParameters.par'); -0834 if isfield(SampleParameter,'sampleVolume') -0835 dataVol = SampleParameter.sampleVolume; -0836 else -0837 dataVol = 1; -0838 end -0839 -0840 % 2a) background file #1 -0841 backgroundFile1 = SampleParameter.backgroundFile; -0842 if isempty(backgroundFile1) -0843 bnames = {subdirs.name}; -0844 bnames(indx) = []; -0845 [indb,~] = listdlg('PromptString','Select Background File:',... -0846 'SelectionMode','single',... -0847 'ListString',bnames); -0848 if ~isempty(indb) -0849 backgroundFile1 = bnames{indb}; -0850 else -0851 backgroundFile1 = ''; -0852 end -0853 end -0854 if ~isempty(backgroundFile1) -0855 ind = strfind(backgroundFile1,filesep); -0856 if ~isempty(ind) -0857 backgroundFile1 = backgroundFile1(ind(end)+1:end); -0858 end -0859 fileInList = ismember(fnames,{backgroundFile1}); -0860 if any(fileInList) -0861 backgroundpath1 = fullfile(data.import.path,fnames{fileInList}); -0862 end -0863 else -0864 backgroundpath1 = ''; -0865 backgroundFile1 = ''; -0866 end -0867 backVol = 1; -0868 -0869 % 2b) calibration file -0870 c = 0; -0871 if isfield(SampleParameter,'calibrationFile0') -0872 c = c + 1; -0873 calibrationFiles{c} = SampleParameter.calibrationFile0; -0874 end -0875 if isfield(SampleParameter,'calibrationFile1') -0876 c = c + 1; -0877 calibrationFiles{c} = SampleParameter.calibrationFile1; -0878 end -0879 if isfield(SampleParameter,'calibrationFile2') -0880 c = c + 1; -0881 calibrationFiles{c} = SampleParameter.calibrationFile2; -0882 end -0883 if isfield(SampleParameter,'calibrationFile3') -0884 c = c + 1; -0885 calibrationFiles{c} = SampleParameter.calibrationFile3; -0886 end -0887 -0888 % find the non-empty one -0889 ind = ismember(calibrationFiles,{''}); -0890 % there are three possibilities: 0, 1 and more than 1 calib. files -0891 calibrationFiles(ind) = []; -0892 if isempty(calibrationFiles) -0893 cnames = {subdirs.name}; -0894 cnames(indx) = []; -0895 [indc,~] = listdlg('PromptString','Select Calibration File:',... -0896 'SelectionMode','single',... -0897 'ListString',cnames); -0898 if ~isempty(indc) -0899 calibrationFiles = cnames{indc}; -0900 else -0901 calibrationFiles = ''; -0902 end -0903 else -0904 % if there are more than one let the user select the correct one -0905 if numel(calibrationFiles) > 1 -0906 [ind,~] = listdlg('PromptString','Select Calibration File:',... -0907 'SelectionMode','single',... -0908 'ListString',calibrationFiles); -0909 calibrationFiles = calibrationFiles{ind}; -0910 else -0911 calibrationFiles = calibrationFiles{1}; -0912 end -0913 end -0914 if ~isempty(calibrationFiles) -0915 ind = strfind(calibrationFiles,filesep); -0916 if ~isempty(ind) -0917 calibrationFiles = calibrationFiles(ind(end)+1:end); -0918 end -0919 fileInList = ismember(fnames,{calibrationFiles}); -0920 if any(fileInList) -0921 calibrationpath = fullfile(data.import.path,fnames{fileInList}); -0922 end -0923 else -0924 calibrationpath = ''; -0925 calibrationFiles = ''; -0926 end -0927 -0928 if ~isempty(calibrationpath) -0929 [SampleParameterC] = loadGUIParameters(calibrationpath,'SampleParameters.par'); -0930 if isfield(SampleParameterC,'sampleVolume') -0931 calibVol = SampleParameterC.sampleVolume; -0932 else -0933 calibVol = 1; -0934 end -0935 -0936 % 2a) background file #2 -0937 backgroundFile2 = SampleParameterC.backgroundFile; -0938 if isempty(backgroundFile2) -0939 bnames = {subdirs.name}; -0940 bnames(indx) = []; -0941 [indb,~] = listdlg('PromptString','Select Background File for Calibration:',... -0942 'SelectionMode','single',... -0943 'ListString',bnames); -0944 if ~isempty(indb) -0945 backgroundFile2 = bnames{indb}; -0946 else -0947 backgroundFile2 = ''; -0948 end -0949 end -0950 if ~isempty(backgroundFile2) -0951 ind = strfind(backgroundFile2,filesep); -0952 if ~isempty(ind) -0953 backgroundFile2 = backgroundFile2(ind(end)+1:end); -0954 end -0955 fileInList = ismember(fnames,{backgroundFile2}); -0956 if any(fileInList) -0957 backgroundpath2 = fullfile(data.import.path,fnames{fileInList}); -0958 end -0959 else -0960 backgroundpath2 = ''; -0961 backgroundFile2 = ''; -0962 end -0963 else -0964 calibVol = 1; -0965 backgroundpath2 = ''; -0966 backgroundFile2 = ''; -0967 end -0968 -0969 % 3) now load the data -0970 workpaths = {datapath,calibrationpath,backgroundpath1,backgroundpath2}; -0971 workfiles = {fnames{indx},[calibrationFiles,' - calibration'],... -0972 [backgroundFile1,' - backgroundS'],[backgroundFile2,' - backgroundC']}; -0973 out = cell(size(workpaths)); -0974 count = 0; -0975 keep = false(size(workpaths)); -0976 for i = 1:numel(workpaths) -0977 if ~isempty(workpaths{i}) -0978 workdirs = dir(workpaths{i}); -0979 workdirs = workdirs(~ismember({workdirs.name},{'.','..'})); -0980 isT2 = ismember({workdirs.name},{'T2CPMG'}); -0981 if any(isT2) -0982 keep(i) = true; -0983 count = count + 1; -0984 T2path = fullfile(workdirs(isT2).folder,workdirs(isT2).name); -0985 in.path = T2path; -0986 in.fileformat = data.import.fileformat; -0987 out{i} = LoadNMRData_driver(in); -0988 end -0989 end -0990 end -0991 -0992 if isempty(backgroundpath1) -0993 ref1 = struct; -0994 else -0995 background1 = out{3}; -0996 % get the background data 1 -0997 ref1.t = background1.nmrData{1}.time; -0998 ref1.s = background1.nmrData{1}.signal; -0999 [ref1.s,~] = rotateT2phase(ref1.s); -1000 end -1001 -1002 if isempty(backgroundpath2) -1003 ref2 = struct; -1004 else -1005 background2 = out{4}; -1006 % get the background data 2 -1007 ref2.t = background2.nmrData{1}.time; -1008 ref2.s = background2.nmrData{1}.signal; -1009 [ref2.s,~] = rotateT2phase(ref2.s); -1010 end -1011 -1012 workpaths = workpaths(keep); -1013 workfiles = workfiles(keep); -1014 out = out(keep); -1015 -1016 ffnames = struct; -1017 % shownames is just a dummy to hold all data file names that -1018 % will be shown in the listbox -1019 shownames = cell(1,1); -1020 -1021 for i = 1:count -1022 ffnames(i).parfile = 'acqu.par'; -1023 ffnames(i).datafile = workfiles{i}; -1024 ffnames(i).T2specfile = ''; -1025 -1026 shownames{i} = ffnames(i).datafile; -1027 -1028 % the NMR data -1029 % here we fix the time scale to [s] if neccessary -1030 TE = out{i}.parData.echoTime; % [µs] -1031 if out{i}.nmrData{1}.time(1)== TE/1e3 -1032 % change [ms] to [s] -1033 out{i}.nmrData{1}.time = out{i}.nmrData{1}.time/1e3; -1034 out{i}.nmrData{1}.raw.time = out{i}.nmrData{1}.raw.time/1e3; -1035 elseif out{i}.nmrData{1}.time(1)== TE -1036 % change [µs] to [s] -> very unlikely -1037 out{i}.nmrData{1}.time = out{i}.nmrData{1}.time/1e6; -1038 out{i}.nmrData{1}.raw.time = out{i}.nmrData{1}.raw.time/1e6; -1039 end -1040 -1041 data.import.NMR.data{i} = out{i}.nmrData{1}; -1042 data.import.NMR.para{i} = out{i}.parData; -1043 data.import.NMR.para{i}.SampleParameter = SampleParameter; -1044 -1045 % subtract the background signal -1046 s = data.import.NMR.data{i}.signal; -1047 if i==1 && isfield(ref1,'s') -1048 % if the background signal is longer than the signal cut it, if -1049 % not extend it with zeros -1050 if numel(ref1.s) > numel(s) -1051 tmp_r = ref1.s(1:numel(s)); -1052 else -1053 tmp_r = zeros(size(s)); -1054 tmp_r(1:numel(ref1.s)) = ref1.s; -1055 end -1056 s = complex(real(s)-real(tmp_r),imag(s)-imag(tmp_r)); -1057 elseif i==2 && isfield(ref2,'s') -1058 % if the background signal is longer than the signal cut it, if -1059 % not extend it with zeros -1060 if numel(ref2.s) > numel(s) -1061 tmp_r = ref2.s(1:numel(s)); -1062 else -1063 tmp_r = zeros(size(s)); -1064 tmp_r(1:numel(ref2.s)) = ref2.s; -1065 end -1066 s = complex(real(s)-real(tmp_r),imag(s)-imag(tmp_r)); -1067 end -1068 data.import.NMR.data{i}.signal = s; -1069 data.import.NMR.data{i}.raw.signal = s; -1070 -1071 if ~isempty(strfind(workfiles{i},' - background')) -1072 data.import.LIAG.sampleVol(i) = backVol; -1073 elseif ~isempty(strfind(workfiles{i},' - calibration')) -1074 data.import.LIAG.sampleVol(i) = calibVol; -1075 elseif isempty(strfind(workfiles{i},' - background')) &&... -1076 isempty(strfind(workfiles{i},' - calibration')) -1077 data.import.LIAG.sampleVol(i) = dataVol; -1078 end -1079 end -1080 data.import.LIAG.Tbulk = 1e6; -1081 data.import.LIAG.workpaths = workpaths; -1082 data.import.LIAG.datapath = datapath; -1083 data.import.LIAG.calibrationpath = calibrationpath; -1084 data.import.LIAG.backgroundpath1 = backgroundpath1; -1085 data.import.LIAG.backgroundpath2 = backgroundpath2; -1086 -1087 % update the global data structure -1088 data.import.NMR.files = ffnames; -1089 data.import.NMR.filesShort = shownames; -1090 -1091 end -1092 -1093 end -1094 -1095 %% -1096 function [data,gui] = importDataMouse(data,gui) -1097 -1098 in.path = fullfile(data.import.path); -1099 in.fileformat = data.import.fileformat; -1100 out = LoadNMRData_driver(in); -1101 -1102 fnames = struct; -1103 % shownames is just a dummy to hold all data file names that -1104 % will be shown in the listbox -1105 shownames = cell(1,1); -1106 -1107 c = 0; -1108 for j = 1:size(out.nmrData,2) -1109 % the individual file names -1110 c = c + 1; -1111 fnames(c).parfile = 'acq.par'; -1112 fnames(c).datafile = out.nmrData{j}.datfile; -1113 fnames(c).T2specfile = ''; -1114 -1115 shownames{c} = ['T2_',fnames(c).datafile]; -1116 -1117 % the NMR data -1118 % here we fix the time scale from [ms] to [s] -1119 if max(out.nmrData{j}.time) > 100 -1120 out.nmrData{j}.time = out.nmrData{j}.time/1000; -1121 out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1000; -1122 end -1123 data.import.NMR.data{c} = out.nmrData{j}; -1124 data.import.NMR.para{c} = out.parData; -1125 end -1126 -1127 % update the global data structure -1128 data.import.NMR.files = fnames; -1129 data.import.NMR.filesShort = shownames; -1130 -1131 end -1132 -1133 %% -1134 function [data,gui] = importDataIBAC(data,gui) -1135 -1136 in.path = fullfile(data.import.path); -1137 in.name = data.import.file; -1138 in.fileformat = data.import.fileformat; -1139 out = LoadNMRData_driver(in); -1140 -1141 nslices = out.parData.depths; -1142 nfiles = size(out.nmrData,2); -1143 -1144 fnames = struct; -1145 % shownames is just a dummy to hold all data file names that -1146 % will be shown in the listbox -1147 shownames = cell(1,1); -1148 -1149 c = 0; -1150 for j = 1:size(out.nmrData,2) -1151 % the individual file names -1152 c = c + 1; -1153 fnames(c).parfile = out.parData.parfile; -1154 fnames(c).datafile = out.nmrData{j}.datfile; -1155 fnames(c).T2specfile = ''; +0813 switch data.import.fileformat +0814 case 'bamtom' +0815 nslices = out.parData.nSlices; +0816 ncsvfiles = numel(fnames); +0817 +0818 % check for background file ("Leermessung") +0819 has_bg = false; +0820 for i = 1:numel(fnames) +0821 if ~isempty(strfind(fnames(i).datafile,'000')) +0822 has_bg = true; +0823 index_bg = i; +0824 break; +0825 end +0826 end +0827 +0828 if has_bg +0829 % background data set +0830 bg = data.import.NMR.data{index_bg}; +0831 +0832 % vector of indices of the files that get corrected +0833 ind_files = 1:1:ncsvfiles; +0834 ind_files(ind_files==index_bg) = []; +0835 +0836 for i = ind_files +0837 % subtract the background signal +0838 s = data.import.NMR.data{i}.signal; +0839 s_bg = bg.signal; +0840 % if the background signal is longer than the signal cut it +0841 if numel(s_bg) > numel(s) +0842 tmp_s = s_bg(1:numel(s)); +0843 else % if not pad it with zeros +0844 tmp_s = zeros(size(s)); +0845 tmp_s(1:numel(s_bg)) = s_bg; +0846 end +0847 s = complex(real(s)-real(tmp_s),imag(s)-imag(tmp_s)); +0848 % update original data set +0849 data.import.NMR.data{i}.signal = s; +0850 end +0851 +0852 % check if the number of slices is equal to the number of files +0853 % (excluding the background file) +0854 if nslices == numel(ind_files) +0855 % create z-vector +0856 p = out.parData; +0857 zslice = linspace(p.startPos,p.endPos,p.nSlices)'; +0858 data.import.BAM.use_z = true; +0859 data.import.BAM.zslice = zslice; +0860 if numel(zslice) > 1 +0861 c = 0; +0862 for i = ind_files +0863 c = c + 1; +0864 tmp = shownames{i}; +0865 shownames{i} = [tmp,' z:',sprintf('%5.4f',zslice(c))]; +0866 end +0867 end +0868 else +0869 data.import.BAM.use_z = false; +0870 data.import.BAM.zslice = 1:1:max([numel(ind_files) 1]); +0871 end +0872 +0873 else +0874 if nslices == ncsvfiles +0875 % create z-vector +0876 p = out.parData; +0877 zslice = linspace(p.startPos,p.endPos,p.nSlices)'; +0878 data.import.BAM.use_z = true; +0879 data.import.BAM.zslice = zslice; +0880 if numel(zslice) > 1 +0881 for i = 1:numel(zslice) +0882 tmp = shownames{i}; +0883 shownames{i} = [tmp,' z:',sprintf('%5.4f',zslice(i))]; +0884 end +0885 end +0886 else +0887 data.import.BAM.use_z = false; +0888 data.import.BAM.zslice = 1:1:ncsvfiles; +0889 end +0890 end +0891 end +0892 +0893 % update the global data structure +0894 data.import.NMR.files = fnames; +0895 data.import.NMR.filesShort = shownames; +0896 +0897 end +0898 +0899 %% +0900 function [data,gui] = importDataLIAG(data,gui) +0901 +0902 in.path = fullfile(data.import.path); +0903 in.fileformat = data.import.fileformat; +0904 out = LoadNMRData_driver(in); +0905 +0906 fnames = struct; +0907 % shownames is just a dummy to hold all data file names that +0908 % will be shown in the listbox +0909 shownames = cell(1,1); +0910 +0911 c = 0; +0912 for j = 1:size(out.nmrData,2) +0913 % the individual file names +0914 c = c + 1; +0915 fnames(c).parfile = 'acqu.par'; +0916 fnames(c).datafile = out.nmrData{j}.datfile; +0917 fnames(c).T2specfile = ''; +0918 +0919 shownames{c} = fnames(c).datafile; +0920 +0921 % the NMR data +0922 % here we fix the time scale to [s] if neccessary +0923 TE = out.parData.echoTime; % [µs] +0924 if out.nmrData{j}.time(1)== TE/1e3 +0925 % change [ms] to [s] +0926 out.nmrData{j}.time = out.nmrData{j}.time/1e3; +0927 out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1e3; +0928 elseif out.nmrData{j}.time(1)== TE +0929 % change [µs] to [s] -> very unlikely +0930 out.nmrData{j}.time = out.nmrData{j}.time/1e6; +0931 out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1e6; +0932 end +0933 data.import.NMR.data{c} = out.nmrData{j}; +0934 data.import.NMR.para{c} = out.parData; +0935 end +0936 +0937 % update the global data structure +0938 data.import.NMR.files = fnames; +0939 data.import.NMR.filesShort = shownames; +0940 +0941 end +0942 +0943 %% +0944 function [data,gui] = importDataLIAGcore(data,gui) +0945 +0946 % get all subfolders containing a measurement at a certain heigth +0947 subdirs = dir(data.import.path); +0948 % remove the dot-dirs +0949 subdirs = subdirs(~ismember({subdirs.name},{'.','..'})); +0950 +0951 % now get the background data ("Leermessung") +0952 bgPath = uigetdir(data.import.path,'Choose Background Data Path'); +0953 isbgPath = false; +0954 if bgPath == 0 +0955 disp('NUCLEUSinv: LIAG core import: No background file provided.'); +0956 else +0957 isbgPath = true; +0958 in.path = fullfile(bgPath); +0959 in.fileformat = data.import.fileformat; +0960 bgout = LoadNMRData_driver(in); +0961 ref1.t = bgout.nmrData{1}.time; +0962 ref1.s = bgout.nmrData{1}.signal; +0963 [ref1.s,~] = rotateT2phase(ref1.s); +0964 end +0965 +0966 % get the Position file +0967 [posFile,posFilePath] = uigetfile('*.*','Choose Lift Position File',data.import.path); +0968 isposFile = false; +0969 if posFilePath == 0 +0970 disp('NUCLEUSinv: LIAG core import: No position file provided.'); +0971 else +0972 isposFile = true; +0973 % import LIAG lift file +0974 buffer = fileread(fullfile(posFilePath,posFile)); +0975 +0976 % get the time stamps of the lift positions +0977 substr = 'Zeit:' ; +0978 loc = strfind(buffer, substr); +0979 timepoint = cell(1,1); +0980 for i = 1:length(loc) +0981 timestr = strtrim(buffer(loc(i)+numel(substr):loc(i)+numel(substr)+19)); +0982 timepoint{i} = datetime(timestr,'InputFormat','dd.MM.yyyy HH:mm:ss'); +0983 end +0984 % ignore the first time stamp +0985 t_range = [datenum(timepoint{2}), datenum(timepoint{3})]; +0986 % get the z coords +0987 substr = 'Z1='; +0988 loc = strfind(buffer, substr) ; +0989 z_range(1) = sscanf(buffer(loc+numel(substr):loc+numel(substr)+10),'%f',1); +0990 substr = 'Z2='; +0991 loc = strfind(buffer, substr) ; +0992 z_range(2) = sscanf(buffer(loc+numel(substr):loc+numel(substr)+10),'%f',1); +0993 end +0994 +0995 % import the NMR data +0996 count = 0; +0997 levels = zeros(size(subdirs)); +0998 nmrDataTMP = cell(1,1); +0999 for i = 1:numel(subdirs) +1000 if ~isnan(str2double(subdirs(i).name)) +1001 +1002 % import the NMR file +1003 in.path = fullfile(data.import.path,subdirs(i).name,'T2CPMG'); +1004 in.fileformat = data.import.fileformat; +1005 out = LoadNMRData_driver(in); +1006 +1007 % if there is a position file +1008 if isposFile +1009 % keep only files within the correct time range +1010 if out.nmrData{1}.datenum > t_range(1) && out.nmrData{1}.datenum < t_range(2) +1011 count = count + 1; +1012 % interpolate the z position via the time stamp of the NMR file +1013 levels(count) = interp1(t_range,z_range,out.nmrData{1}.datenum,'linear'); +1014 nmrDataTMP{count} = out; +1015 end +1016 else % just read everything +1017 count = count + 1; +1018 levels(count) = str2double(subdirs(i).name); +1019 nmrDataTMP{count} = out; +1020 end +1021 end +1022 end +1023 % cut off data that is not part of the scan +1024 levels = levels(1:count); +1025 % sort in ascending order +1026 [levels,idx] = sort(levels); +1027 +1028 % sort the NMR data accordingly +1029 fnames = struct; +1030 % shownames is just a dummy to hold all data file names that +1031 % will be shown in the listbox +1032 shownames = cell(1,1); +1033 for c = 1:numel(levels) +1034 % the individual file names +1035 fnames(c).parfile = 'acqu.par'; +1036 fnames(c).datafile = nmrDataTMP{idx(c)}.nmrData{1}.datfile; +1037 fnames(c).T2specfile = ''; +1038 +1039 shownames{c} = fnames(c).datafile; +1040 tmp = shownames{c}; +1041 if isposFile +1042 shownames{c} = [tmp,': ',sprintf('%4d',floor(levels(c))),'mm']; +1043 else +1044 shownames{c} = [tmp,' level:',sprintf('%d',levels(c))]; +1045 end +1046 out = nmrDataTMP{idx(c)}; +1047 +1048 % the NMR data +1049 % here we fix the time scale to [s] if neccessary +1050 TE = out.parData.echoTime; % [µs] +1051 if out.nmrData{1}.time(1) == TE/1e3 +1052 % change [ms] to [s] +1053 out.nmrData{1}.time = out.nmrData{1}.time/1e3; +1054 out.nmrData{1}.raw.time = out.nmrData{1}.raw.time/1e3; +1055 elseif out.nmrData{1}.time(1) == TE +1056 % change [µs] to [s] -> very unlikely +1057 out.nmrData{1}.time = out.nmrData{1}.time/1e6; +1058 out.nmrData{1}.raw.time = out.nmrData{1}.raw.time/1e6; +1059 end +1060 data.import.NMR.data{c} = out.nmrData{1}; +1061 data.import.NMR.para{c} = out.parData; +1062 +1063 % subtract the background signal is one is available +1064 if isbgPath +1065 % get the original signal +1066 s = data.import.NMR.data{c}.signal; +1067 % if the background signal is longer than the signal cut it, if +1068 % not extend it with zeros +1069 if numel(ref1.s) > numel(s) +1070 tmp_r = ref1.s(1:numel(s)); +1071 else +1072 tmp_r = zeros(size(s)); +1073 tmp_r(1:numel(ref1.s)) = ref1.s; +1074 end +1075 s = complex(real(s)-real(tmp_r),imag(s)-imag(tmp_r)); +1076 +1077 % sign check +1078 if real(s(1:3))<0 +1079 s = s*-1; +1080 end +1081 +1082 % rotate phase again - TEST +1083 [s,~] = rotateT2phase(s); +1084 +1085 % update signal +1086 data.import.NMR.data{c}.signal = s; +1087 data.import.NMR.data{c}.raw.signal = s; +1088 end +1089 end +1090 if isposFile +1091 data.import.LIAGCORE.use_z = true; +1092 else +1093 data.import.LIAGCORE.use_z = false; +1094 end +1095 data.import.LIAGCORE.zslice = levels; +1096 +1097 % update the global data structure +1098 data.import.NMR.files = fnames; +1099 data.import.NMR.filesShort = shownames; +1100 +1101 end +1102 +1103 %% +1104 function [data,gui] = importDataLIAGproject(data,gui) +1105 +1106 % 1) show all folders and ask for sample +1107 subdirs = dir(data.import.path); +1108 % remove the dot-dirs +1109 subdirs = subdirs(~ismember({subdirs.name},{'.','..'})); +1110 +1111 fnames = {subdirs.name}; +1112 [indx,~] = listdlg('PromptString','Select Sample:',... +1113 'SelectionMode','single',... +1114 'ListString',fnames); +1115 +1116 if ~isempty(indx) +1117 % 2) check corresponding SampleParameter.par file for reference and +1118 % calibration sample and other parameters +1119 datapath = fullfile(data.import.path,fnames{indx}); +1120 % load SampleParameter file for sample +1121 [SampleParameter] = loadGUIParameters(datapath,'SampleParameters.par'); +1122 if isfield(SampleParameter,'sampleVolume') +1123 dataVol = SampleParameter.sampleVolume; +1124 else +1125 dataVol = 1; +1126 end +1127 +1128 % 2a) background file #1 +1129 backgroundFile1 = SampleParameter.backgroundFile; +1130 if isempty(backgroundFile1) +1131 bnames = {subdirs.name}; +1132 bnames(indx) = []; +1133 [indb,~] = listdlg('PromptString','Select Background File:',... +1134 'SelectionMode','single',... +1135 'ListString',bnames); +1136 if ~isempty(indb) +1137 backgroundFile1 = bnames{indb}; +1138 else +1139 backgroundFile1 = ''; +1140 end +1141 end +1142 if ~isempty(backgroundFile1) +1143 ind = strfind(backgroundFile1,filesep); +1144 if ~isempty(ind) +1145 backgroundFile1 = backgroundFile1(ind(end)+1:end); +1146 end +1147 fileInList = ismember(fnames,{backgroundFile1}); +1148 if any(fileInList) +1149 backgroundpath1 = fullfile(data.import.path,fnames{fileInList}); +1150 end +1151 else +1152 backgroundpath1 = ''; +1153 backgroundFile1 = ''; +1154 end +1155 backVol = 1; 1156 -1157 shownames{c} = [fnames(c).datafile]; -1158 -1159 data.import.NMR.data{c} = out.nmrData{j}; -1160 data.import.NMR.para{c} = out.parData; -1161 end -1162 -1163 % check if the number of depth levels is equal to the number of -1164 % measurements -1165 if nslices == nfiles -1166 % create z-vector -1167 p = out.parData; -1168 zslice = linspace(p.initialdepth,p.finaldepth,p.depths)'; -1169 data.import.IBAC.use_z = true; -1170 data.import.IBAC.zslice = zslice; -1171 if numel(zslice) > 1 -1172 c = 0; -1173 for i = 1:nfiles -1174 c = c + 1; -1175 tmp = shownames{i}; -1176 shownames{i} = [tmp,' z:',sprintf('%05d',zslice(c))]; -1177 end -1178 end -1179 else -1180 data.import.IBAC.use_z = false; -1181 data.import.IBAC.zslice = 1:1:max([nfiles 1]); -1182 end -1183 -1184 % update the global data structure -1185 data.import.NMR.files = fnames; -1186 data.import.NMR.filesShort = shownames; -1187 -1188 end -1189 -1190 %% -1191 function data = loadGUIParameters(datapath,fname) -1192 fid = fopen(fullfile(datapath,fname)); -1193 d = textscan(fid,'%s','Delimiter','\n'); -1194 fclose(fid); -1195 data = struct; -1196 for i = 1:size(d{1},1) -1197 str = char(d{1}(i)); -1198 str = fixParameterString(str); -1199 eval(['data.',str,';']); -1200 end -1201 -1202 end -1203 -1204 %% -1205 function data = loadGUIrawdata(data,NMRpath,NMRfile) -1206 -1207 load(fullfile(NMRpath,'NUCLEUSinv_raw.mat'),'savedata'); -1208 -1209 data.import.file = NMRfile; -1210 data.import.path = NMRpath; -1211 data.import.NMR = savedata; -1212 -1213 end -1214 -1215 %------------- END OF CODE -------------- -1216 -1217 %% License: -1218 % MIT License -1219 % -1220 % Copyright (c) 2018 Thomas Hiller -1221 % -1222 % Permission is hereby granted, free of charge, to any person obtaining a copy -1223 % of this software and associated documentation files (the "Software"), to deal -1224 % in the Software without restriction, including without limitation the rights -1225 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -1226 % copies of the Software, and to permit persons to whom the Software is -1227 % furnished to do so, subject to the following conditions: -1228 % -1229 % The above copyright notice and this permission notice shall be included in all -1230 % copies or substantial portions of the Software. -1231 % -1232 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -1233 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -1234 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -1235 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -1236 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -1237 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -1238 % SOFTWARE.

    +1157 % 2b) calibration file +1158 c = 0; +1159 if isfield(SampleParameter,'calibrationFile0') +1160 c = c + 1; +1161 calibrationFiles{c} = SampleParameter.calibrationFile0; +1162 end +1163 if isfield(SampleParameter,'calibrationFile1') +1164 c = c + 1; +1165 calibrationFiles{c} = SampleParameter.calibrationFile1; +1166 end +1167 if isfield(SampleParameter,'calibrationFile2') +1168 c = c + 1; +1169 calibrationFiles{c} = SampleParameter.calibrationFile2; +1170 end +1171 if isfield(SampleParameter,'calibrationFile3') +1172 c = c + 1; +1173 calibrationFiles{c} = SampleParameter.calibrationFile3; +1174 end +1175 +1176 % find the non-empty one +1177 ind = ismember(calibrationFiles,{''}); +1178 % there are three possibilities: 0, 1 and more than 1 calib. files +1179 calibrationFiles(ind) = []; +1180 if isempty(calibrationFiles) +1181 cnames = {subdirs.name}; +1182 cnames(indx) = []; +1183 [indc,~] = listdlg('PromptString','Select Calibration File:',... +1184 'SelectionMode','single',... +1185 'ListString',cnames); +1186 if ~isempty(indc) +1187 calibrationFiles = cnames{indc}; +1188 else +1189 calibrationFiles = ''; +1190 end +1191 else +1192 % if there are more than one let the user select the correct one +1193 if numel(calibrationFiles) > 1 +1194 [ind,~] = listdlg('PromptString','Select Calibration File:',... +1195 'SelectionMode','single',... +1196 'ListString',calibrationFiles); +1197 calibrationFiles = calibrationFiles{ind}; +1198 else +1199 calibrationFiles = calibrationFiles{1}; +1200 end +1201 end +1202 if ~isempty(calibrationFiles) +1203 ind = strfind(calibrationFiles,filesep); +1204 if ~isempty(ind) +1205 calibrationFiles = calibrationFiles(ind(end)+1:end); +1206 end +1207 fileInList = ismember(fnames,{calibrationFiles}); +1208 if any(fileInList) +1209 calibrationpath = fullfile(data.import.path,fnames{fileInList}); +1210 end +1211 else +1212 calibrationpath = ''; +1213 calibrationFiles = ''; +1214 end +1215 +1216 if ~isempty(calibrationpath) +1217 [SampleParameterC] = loadGUIParameters(calibrationpath,'SampleParameters.par'); +1218 if isfield(SampleParameterC,'sampleVolume') +1219 calibVol = SampleParameterC.sampleVolume; +1220 else +1221 calibVol = 1; +1222 end +1223 +1224 % 2a) background file #2 +1225 backgroundFile2 = SampleParameterC.backgroundFile; +1226 if isempty(backgroundFile2) +1227 bnames = {subdirs.name}; +1228 bnames(indx) = []; +1229 [indb,~] = listdlg('PromptString','Select Background File for Calibration:',... +1230 'SelectionMode','single',... +1231 'ListString',bnames); +1232 if ~isempty(indb) +1233 backgroundFile2 = bnames{indb}; +1234 else +1235 backgroundFile2 = ''; +1236 end +1237 end +1238 if ~isempty(backgroundFile2) +1239 ind = strfind(backgroundFile2,filesep); +1240 if ~isempty(ind) +1241 backgroundFile2 = backgroundFile2(ind(end)+1:end); +1242 end +1243 fileInList = ismember(fnames,{backgroundFile2}); +1244 if any(fileInList) +1245 backgroundpath2 = fullfile(data.import.path,fnames{fileInList}); +1246 end +1247 else +1248 backgroundpath2 = ''; +1249 backgroundFile2 = ''; +1250 end +1251 else +1252 calibVol = 1; +1253 backgroundpath2 = ''; +1254 backgroundFile2 = ''; +1255 end +1256 +1257 % 3) now load the data +1258 workpaths = {datapath,calibrationpath,backgroundpath1,backgroundpath2}; +1259 workfiles = {fnames{indx},[calibrationFiles,' - calibration'],... +1260 [backgroundFile1,' - backgroundS'],[backgroundFile2,' - backgroundC']}; +1261 out = cell(size(workpaths)); +1262 count = 0; +1263 keep = false(size(workpaths)); +1264 for i = 1:numel(workpaths) +1265 if ~isempty(workpaths{i}) +1266 workdirs = dir(workpaths{i}); +1267 workdirs = workdirs(~ismember({workdirs.name},{'.','..'})); +1268 isT2 = ismember({workdirs.name},{'T2CPMG'}); +1269 if any(isT2) +1270 keep(i) = true; +1271 count = count + 1; +1272 T2path = fullfile(workdirs(isT2).folder,workdirs(isT2).name); +1273 in.path = T2path; +1274 in.fileformat = data.import.fileformat; +1275 out{i} = LoadNMRData_driver(in); +1276 end +1277 end +1278 end +1279 +1280 if isempty(backgroundpath1) +1281 ref1 = struct; +1282 else +1283 background1 = out{3}; +1284 % get the background data 1 +1285 ref1.t = background1.nmrData{1}.time; +1286 ref1.s = background1.nmrData{1}.signal; +1287 [ref1.s,~] = rotateT2phase(ref1.s); +1288 end +1289 +1290 if isempty(backgroundpath2) +1291 ref2 = struct; +1292 else +1293 background2 = out{4}; +1294 % get the background data 2 +1295 ref2.t = background2.nmrData{1}.time; +1296 ref2.s = background2.nmrData{1}.signal; +1297 [ref2.s,~] = rotateT2phase(ref2.s); +1298 end +1299 +1300 workpaths = workpaths(keep); +1301 workfiles = workfiles(keep); +1302 out = out(keep); +1303 +1304 ffnames = struct; +1305 % shownames is just a dummy to hold all data file names that +1306 % will be shown in the listbox +1307 shownames = cell(1,1); +1308 +1309 for i = 1:count +1310 ffnames(i).parfile = 'acqu.par'; +1311 ffnames(i).datafile = workfiles{i}; +1312 ffnames(i).T2specfile = ''; +1313 +1314 shownames{i} = ffnames(i).datafile; +1315 +1316 % the NMR data +1317 % here we fix the time scale to [s] if neccessary +1318 TE = out{i}.parData.echoTime; % [µs] +1319 if out{i}.nmrData{1}.time(1)== TE/1e3 +1320 % change [ms] to [s] +1321 out{i}.nmrData{1}.time = out{i}.nmrData{1}.time/1e3; +1322 out{i}.nmrData{1}.raw.time = out{i}.nmrData{1}.raw.time/1e3; +1323 elseif out{i}.nmrData{1}.time(1)== TE +1324 % change [µs] to [s] -> very unlikely +1325 out{i}.nmrData{1}.time = out{i}.nmrData{1}.time/1e6; +1326 out{i}.nmrData{1}.raw.time = out{i}.nmrData{1}.raw.time/1e6; +1327 end +1328 +1329 data.import.NMR.data{i} = out{i}.nmrData{1}; +1330 data.import.NMR.para{i} = out{i}.parData; +1331 data.import.NMR.para{i}.SampleParameter = SampleParameter; +1332 +1333 % subtract the background signal +1334 s = data.import.NMR.data{i}.signal; +1335 if i==1 && isfield(ref1,'s') +1336 % if the background signal is longer than the signal cut it, if +1337 % not extend it with zeros +1338 if numel(ref1.s) > numel(s) +1339 tmp_r = ref1.s(1:numel(s)); +1340 else +1341 tmp_r = zeros(size(s)); +1342 tmp_r(1:numel(ref1.s)) = ref1.s; +1343 end +1344 s = complex(real(s)-real(tmp_r),imag(s)-imag(tmp_r)); +1345 elseif i==2 && isfield(ref2,'s') +1346 % if the background signal is longer than the signal cut it, if +1347 % not extend it with zeros +1348 if numel(ref2.s) > numel(s) +1349 tmp_r = ref2.s(1:numel(s)); +1350 else +1351 tmp_r = zeros(size(s)); +1352 tmp_r(1:numel(ref2.s)) = ref2.s; +1353 end +1354 s = complex(real(s)-real(tmp_r),imag(s)-imag(tmp_r)); +1355 end +1356 data.import.NMR.data{i}.signal = s; +1357 data.import.NMR.data{i}.raw.signal = s; +1358 +1359 if ~isempty(strfind(workfiles{i},' - background')) +1360 data.import.LIAG.sampleVol(i) = backVol; +1361 elseif ~isempty(strfind(workfiles{i},' - calibration')) +1362 data.import.LIAG.sampleVol(i) = calibVol; +1363 elseif isempty(strfind(workfiles{i},' - background')) &&... +1364 isempty(strfind(workfiles{i},' - calibration')) +1365 data.import.LIAG.sampleVol(i) = dataVol; +1366 end +1367 end +1368 data.import.LIAG.Tbulk = 1e6; +1369 data.import.LIAG.workpaths = workpaths; +1370 data.import.LIAG.datapath = datapath; +1371 data.import.LIAG.calibrationpath = calibrationpath; +1372 data.import.LIAG.backgroundpath1 = backgroundpath1; +1373 data.import.LIAG.backgroundpath2 = backgroundpath2; +1374 +1375 % update the global data structure +1376 data.import.NMR.files = ffnames; +1377 data.import.NMR.filesShort = shownames; +1378 end +1379 +1380 end +1381 +1382 %% +1383 function [data,gui] = importDataMouse(data,gui) +1384 +1385 in.path = fullfile(data.import.path); +1386 in.fileformat = data.import.fileformat; +1387 out = LoadNMRData_driver(in); +1388 +1389 fnames = struct; +1390 % shownames is just a dummy to hold all data file names that +1391 % will be shown in the listbox +1392 shownames = cell(1,1); +1393 +1394 c = 0; +1395 for j = 1:size(out.nmrData,2) +1396 % the individual file names +1397 c = c + 1; +1398 fnames(c).parfile = 'acq.par'; +1399 fnames(c).datafile = out.nmrData{j}.datfile; +1400 fnames(c).T2specfile = ''; +1401 +1402 shownames{c} = ['T2_',fnames(c).datafile]; +1403 +1404 % the NMR data +1405 % here we fix the time scale from [ms] to [s] +1406 if max(out.nmrData{j}.time) > 100 +1407 out.nmrData{j}.time = out.nmrData{j}.time/1000; +1408 out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1000; +1409 end +1410 data.import.NMR.data{c} = out.nmrData{j}; +1411 data.import.NMR.para{c} = out.parData; +1412 end +1413 +1414 % update the global data structure +1415 data.import.NMR.files = fnames; +1416 data.import.NMR.filesShort = shownames; +1417 +1418 end +1419 +1420 %% +1421 function [data,gui] = importDataIBAC(data,gui) +1422 +1423 in.path = fullfile(data.import.path); +1424 in.name = data.import.file; +1425 in.fileformat = data.import.fileformat; +1426 out = LoadNMRData_driver(in); +1427 +1428 nslices = out.parData.depths; +1429 nfiles = size(out.nmrData,2); +1430 +1431 fnames = struct; +1432 % shownames is just a dummy to hold all data file names that +1433 % will be shown in the listbox +1434 shownames = cell(1,1); +1435 +1436 c = 0; +1437 for j = 1:size(out.nmrData,2) +1438 % the individual file names +1439 c = c + 1; +1440 fnames(c).parfile = out.parData.parfile; +1441 fnames(c).datafile = out.nmrData{j}.datfile; +1442 fnames(c).T2specfile = ''; +1443 +1444 shownames{c} = [fnames(c).datafile]; +1445 +1446 data.import.NMR.data{c} = out.nmrData{j}; +1447 data.import.NMR.para{c} = out.parData; +1448 end +1449 +1450 % check if the number of depth levels is equal to the number of +1451 % measurements +1452 if nslices == nfiles +1453 % create z-vector +1454 p = out.parData; +1455 zslice = linspace(p.initialdepth,p.finaldepth,p.depths)'; +1456 data.import.IBAC.use_z = true; +1457 data.import.IBAC.zslice = zslice; +1458 if numel(zslice) > 1 +1459 c = 0; +1460 for i = 1:nfiles +1461 c = c + 1; +1462 tmp = shownames{i}; +1463 shownames{i} = [tmp,' z:',sprintf('%05d',zslice(c))]; +1464 end +1465 end +1466 else +1467 data.import.IBAC.use_z = false; +1468 data.import.IBAC.zslice = 1:1:max([nfiles 1]); +1469 end +1470 +1471 % update the global data structure +1472 data.import.NMR.files = fnames; +1473 data.import.NMR.filesShort = shownames; +1474 +1475 end +1476 +1477 %% +1478 function data = loadGUIParameters(datapath,fname) +1479 fid = fopen(fullfile(datapath,fname)); +1480 d = textscan(fid,'%s','Delimiter','\n'); +1481 fclose(fid); +1482 data = struct; +1483 for i = 1:size(d{1},1) +1484 str = char(d{1}(i)); +1485 str = fixParameterString(str); +1486 eval(['data.',str,';']); %#ok<EVLDOT> +1487 end +1488 +1489 end +1490 +1491 %% +1492 function data = loadGUIrawdata(data,NMRpath,NMRfile) +1493 +1494 load(fullfile(NMRpath,'NUCLEUSinv_raw.mat'),'savedata'); +1495 +1496 data.import.file = NMRfile; +1497 data.import.path = NMRpath; +1498 data.import.NMR = savedata; +1499 +1500 end +1501 +1502 %------------- END OF CODE -------------- +1503 +1504 %% License: +1505 % MIT License +1506 % +1507 % Copyright (c) 2018 Thomas Hiller +1508 % +1509 % Permission is hereby granted, free of charge, to any person obtaining a copy +1510 % of this software and associated documentation files (the "Software"), to deal +1511 % in the Software without restriction, including without limitation the rights +1512 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +1513 % copies of the Software, and to permit persons to whom the Software is +1514 % furnished to do so, subject to the following conditions: +1515 % +1516 % The above copyright notice and this permission notice shall be included in all +1517 % copies or substantial portions of the Software. +1518 % +1519 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +1520 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +1521 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +1522 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +1523 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +1524 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +1525 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/functions/interface/menu.html b/doc/nucleus/functions/interface/menu.html index dd24a64..d9bca19 100644 --- a/doc/nucleus/functions/interface/menu.html +++ b/doc/nucleus/functions/interface/menu.html @@ -18,7 +18,7 @@

    Index for nucleus\functions\interface

    Matlab files in this directory:

    +
  • ConductView
  • FixedTimeView
  • PhaseView
  • beautifyAxes
  • calculateGeometry
  • calculateGuiOnMonitorPosition
  • calculateNMR
  • calibratePorosity
  • caluclatePressureSaturation
  • changeColorTheme
  • checkIfInversionExists
  • cleanupGUIData
  • clearAllAxes
  • clearInversion
  • clearSingleAxis
  • displayStatusText
  • enableGUIelements
  • exportData
  • exportGraphics
  • exportINV
  • findParentOfType
  • fixAxes
  • getColorIndex
  • getColorTheme
  • getVersionNoFromString
  • importASCIIdata
  • importCPSdata
  • importCalibrationData
  • importEXCELdata
  • importINV2INV
  • importMOD2INV
  • importMOD2MOD
  • importNMRdata
  • makeINIfile
  • minimizePanel
  • moveEntryInList
  • onFigureSizeChange
  • processNMRData
  • processNMRDataControl
  • readINIfile
  • removeCalculationFields
  • removeInversionFields
  • removeSignalFromList
  • resortDataList
  • runInversionBatch
  • runInversionJoint
  • runInversionStd
  • showExtraGraphics
  • showFitStatistics
  • showParameterInfo
  • switchToolTips
  • uncheckImportMenus
  • updateCPSTable
  • updateCPSTableSize
  • updateInfo
  • updateNMRsignals
  • updatePlotsCPS
  • updatePlotsDistribution
  • updatePlotsDistributionInfo
  • updatePlotsGeometryType
  • updatePlotsJointInversion
  • updatePlotsLcurve
  • updatePlotsNMR
  • updatePlotsPSD
  • updatePlotsSignal
  • updateStatusInformation
  • updateToolTips
  • useSignalAsCalibration
  • Other Matlab-specific files in this directory:

    This function is called by: @@ -286,256 +286,266 @@

    SOURCE CODE ^if isfield(data.results.nmrproc,'W') -0202 param.W = data.results.nmrproc.W; -0203 end -0204 % status bar information -0205 switch data.info.has_optim -0206 case 'on' -0207 infostring = 'Inversion using ''Optimization Toolbox'' ... '; -0208 case 'off' -0209 infostring = 'Inversion using ''fminsearchbnd'' ... '; -0210 end -0211 displayStatusText(gui,infostring); -0212 invstd = fitDataFree(data.results.nmrproc.t,... -0213 data.results.nmrproc.s,flag,param,1); -0214 -0215 case 'free' % N free single-exponential inversion -0216 flag = data.results.nmrproc.T1T2; -0217 param.T1IRfac = data.results.nmrproc.T1IRfac; -0218 param.noise = data.results.nmrproc.noise; -0219 param.optim = data.info.has_optim; -0220 if isfield(data.results.nmrproc,'W') -0221 param.W = data.results.nmrproc.W; -0222 end -0223 % status bar information -0224 switch data.info.has_optim -0225 case 'on' -0226 infostring = 'Inversion using ''Optimization Toolbox'' ... '; -0227 case 'off' -0228 infostring = 'Inversion using ''fminsearchbnd'' ... '; -0229 end -0230 displayStatusText(gui,infostring); -0231 invstd = fitDataFree(data.results.nmrproc.t,... -0232 data.results.nmrproc.s,flag,param,data.invstd.freeDT); -0233 -0234 case 'LU' % multi-exponential inversion -0235 % general parameter -0236 param.T1T2 = data.results.nmrproc.T1T2; -0237 param.T1IRfac = data.results.nmrproc.T1IRfac; -0238 param.Tb = data.invstd.Tbulk; -0239 param.Td = data.invstd.Tdiff; -0240 param.Tint = [log10(data.invstd.time) data.invstd.Ntime]; -0241 param.Lorder = data.invstd.Lorder; -0242 param.lambda = data.invstd.lambda; -0243 param.noise = data.results.nmrproc.noise; -0244 if isfield(data.results.nmrproc,'W') -0245 param.W = data.results.nmrproc.W; -0246 end -0247 % status bar information -0248 infostring = 'Inversion using LU decomposition ... '; -0249 displayStatusText(gui,infostring); -0250 invstd = fitDataLUdecomp(data.results.nmrproc.t,... -0251 data.results.nmrproc.s,param); -0252 -0253 case 'NNLS' % multi-exponential inversion with manual regularization -0254 % general parameter -0255 param.T1T2 = data.results.nmrproc.T1T2; -0256 param.T1IRfac = data.results.nmrproc.T1IRfac; -0257 param.Tb = data.invstd.Tbulk; -0258 param.Td = data.invstd.Tdiff; -0259 param.Tint = [log10(data.invstd.time) data.invstd.Ntime]; -0260 param.regMethod = data.invstd.regtype; -0261 param.Lorder = data.invstd.Lorder; -0262 param.lambda = data.invstd.lambda; -0263 param.noise = data.results.nmrproc.noise; -0264 param.solver = data.info.solver; -0265 if isfield(data.results.nmrproc,'W') -0266 param.W = data.results.nmrproc.W; -0267 end -0268 -0269 % status bar information -0270 switch data.info.solver -0271 case 'lsqlin' -0272 infostring = 'Inversion using ''Optimization Toolbox'' ... '; -0273 case 'lsqnonneg' -0274 infostring = 'Inversion using ''lsqnonneg'' ... '; -0275 end -0276 displayStatusText(gui,infostring); -0277 invstd = fitDataLSQ(data.results.nmrproc.t,... -0278 data.results.nmrproc.s,param); -0279 -0280 case 'MUMO' % N free distribution inversion -0281 param.T1T2 = data.results.nmrproc.T1T2; -0282 param.T1IRfac = data.results.nmrproc.T1IRfac; -0283 param.Tb = data.invstd.Tbulk; -0284 param.Td = data.invstd.Tdiff; -0285 param.Tint = [log10(data.invstd.time) data.invstd.Ntime]; -0286 param.noise = data.results.nmrproc.noise; -0287 param.optim = data.info.has_optim; -0288 if isfield(data.results.nmrproc,'W') -0289 param.W = data.results.nmrproc.W; -0290 end -0291 -0292 % status bar information -0293 switch data.info.solver -0294 case 'lsqlin' -0295 infostring = 'Inversion using ''Optimization Toolbox'' ... '; -0296 case 'lsqnonneg' -0297 infostring = 'Inversion using ''fminsearchbnd'' ... '; -0298 end -0299 displayStatusText(gui,infostring); -0300 invstd = fitDataMultiModal(data.results.nmrproc.t,... -0301 data.results.nmrproc.s,param,data.invstd.freeDT); -0302 -0303 % estimate uncertainty -0304 if data.invstd.useUncert -0305 % original fit parameter -0306 iparam = param; -0307 % uncertainty parameter -0308 uparam.time = data.results.nmrproc.t; -0309 uparam.signal = data.results.nmrproc.s; -0310 uparam.uncertMethod = data.invstd.uncertMethod; -0311 uparam.uncertThresh = data.invstd.uncertThresh; -0312 uparam.uncertChi2 = data.invstd.uncertChi2; -0313 uparam.uncertN = data.invstd.uncertN; -0314 uparam.uncertMax = data.invstd.uncertMax; -0315 invstd = estimateUncertainty(data.invstd.invtype,invstd,iparam,uparam); -0316 end -0317 end -0318 % normalize to 1 -0319 if data.process.norm == 1 -0320 switch data.invstd.invtype -0321 case {'LU','NNLS','MUMO'} -0322 % normalization with sum() -> sum(f)=1 -0323 % this is the standard way of doing it -0324 invstd.T1T2f = invstd.T1T2f./sum(invstd.T1T2f); -0325 % alternatives depending on the objective: -0326 % 1.) normalization with sum(f*dt) -> area~=1 -0327 % dt = log10(invstd.T1T2me(2))-log10(invstd.T1T2me(1)); -0328 % invstd.T1T2f = invstd.T1T2f/sum(invstd.T1T2f*dt); -0329 % 2.) normalization with trapz() -> area=1 but sum(f)>1 -0330 % invstd.T1T2f = invstd.T1T2f./trapz(invstd.T1T2me,invstd.T1T2f); -0331 otherwise -0332 % nothing to do -0333 end -0334 end -0335 runtime = toc; -0336 displayStatusText(gui,[infostring,'done | inversion took ',... -0337 sprintf('%5.2f',runtime),' s']); -0338 % save inversion results -0339 data.results.invstd = invstd; -0340 setappdata(fig,'data',data); -0341 end -0342 % as long as the "UserData" is 1 the STOP button was not pressed and -0343 % the inversion result gets saved in "INVdata" -0344 if get(gui.push_handles.invstd_run,'UserData') == 1 && ... -0345 ( isfield(data.results,'invstd') || ... -0346 isfield(data.results,'lcurve') ) -0347 INVdata{id} = []; -0348 INVdata{id} = data; -0349 INVdata{id} = rmfield(INVdata{id},'import'); -0350 INVdata{id} = rmfield(INVdata{id},'info'); -0351 INVdata{id} = rmfield(INVdata{id},'calib'); -0352 INVdata{id} = rmfield(INVdata{id},'pressure'); -0353 -0354 % color the list entries that already have an inversion result -0355 strL = get(gui.listbox_handles.signal,'String'); -0356 str1 = strL{id}; -0357 str2 = ['<HTML><BODY bgcolor="rgb(',... -0358 sprintf('%d,%d,%d',gui.myui.colors.listINV.*255),')">',str1,'</BODY></HTML>']; -0359 strL{id} = str2; -0360 set(gui.listbox_handles.signal,'String',strL); -0361 -0362 % update GUI INVdata -0363 setappdata(fig,'INVdata',INVdata); -0364 -0365 % --- -0366 % special treatment for LIAG processing -0367 if isfield(data.import,'LIAG') && ~strcmp(data.invstd.regtype,'lcurve') -0368 if contains(str1,' - calibration') -0369 % save Tbulk from the calibration sample -0370 btn1 = 'Yes keep it'; -0371 btn2 = 'No, reset to 1e6 [s]'; -0372 if data.results.invstd.T2 < 0.2 -0373 answer = questdlg(['Tbulk seems very short with ',... -0374 sprintf('%4.3f',data.results.invstd.T2),' [s] ',... -0375 'Do you want to keep it?'], ... -0376 'Keep relaxation time as Tbulk', ... -0377 btn1,btn2,btn2); -0378 % Handle response -0379 switch answer -0380 case btn1 -0381 data.import.LIAG.Tbulk = data.results.invstd.T2; -0382 case btn2 -0383 data.import.LIAG.Tbulk = 1e6; -0384 end -0385 else -0386 data.import.LIAG.Tbulk = data.results.invstd.T2; -0387 end -0388 % update GUI data -0389 setappdata(fig,'data',data); -0390 % save calibration data -0391 useSignalAsCalibration(id); -0392 else -0393 calibratePorosity; -0394 end -0395 end -0396 % --- -0397 else % STOP was pressed (because "UserData" is 0) -0398 % reset "UserData" -0399 set(gui.push_handles.invstd_run,'UserData',1); -0400 end -0401 % update plots and INFO fields -0402 updatePlotsSignal; -0403 updatePlotsDistribution; -0404 updateInfo(gui.plots.SignalPanel); -0405 % set focus on results -0406 set(gui.plots.SignalPanel,'Selection',1); -0407 set(gui.plots.DistPanel,'Selection',1); -0408 % open INFO field -0409 set(gui.push_handles.info,'String','<'); -0410 onPushShowHide(gui.push_handles.info); -0411 if ~isempty(findobj('Tag','FITSTATS')) -0412 showFitStatistics; -0413 end -0414 NUCLEUSinv_updateInterface; -0415 else -0416 helpdlg('Cannot start inversion because no data set is selected!',... -0417 'Select NMR data first.'); -0418 end -0419 -0420 %% at the end, no matter what reset the RUN button -0421 set(gui.push_handles.invstd_run,'String','<HTML><u>R</u>UN',... -0422 'BackgroundColor','g','Enable','on','Callback',@onPushRun); -0423 setappdata(fig,'gui',gui); -0424 -0425 end -0426 -0427 %------------- END OF CODE -------------- -0428 -0429 %% License: -0430 % MIT License -0431 % -0432 % Copyright (c) 2018 Thomas Hiller -0433 % -0434 % Permission is hereby granted, free of charge, to any person obtaining a copy -0435 % of this software and associated documentation files (the "Software"), to deal -0436 % in the Software without restriction, including without limitation the rights -0437 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0438 % copies of the Software, and to permit persons to whom the Software is -0439 % furnished to do so, subject to the following conditions: -0440 % -0441 % The above copyright notice and this permission notice shall be included in all -0442 % copies or substantial portions of the Software. +0201 param.Tfixed_bool = data.invstd.Tfixed_bool; +0202 param.Tfixed_val = data.invstd.Tfixed_val; +0203 if isfield(data.results.nmrproc,'W') +0204 param.W = data.results.nmrproc.W; +0205 end +0206 % status bar information +0207 switch data.info.has_optim +0208 case 'on' +0209 infostring = 'Inversion using ''Optimization Toolbox'' ... '; +0210 case 'off' +0211 infostring = 'Inversion using ''fminsearchbnd'' ... '; +0212 end +0213 displayStatusText(gui,infostring); +0214 invstd = fitDataFree(data.results.nmrproc.t,... +0215 data.results.nmrproc.s,flag,param,1); +0216 data.invstd.Tfixed_val = [invstd.T zeros(1,4)]; +0217 +0218 case 'free' % N free single-exponential inversion +0219 flag = data.results.nmrproc.T1T2; +0220 param.T1IRfac = data.results.nmrproc.T1IRfac; +0221 param.noise = data.results.nmrproc.noise; +0222 param.optim = data.info.has_optim; +0223 param.Tfixed_bool = data.invstd.Tfixed_bool; +0224 param.Tfixed_val = data.invstd.Tfixed_val; +0225 if isfield(data.results.nmrproc,'W') +0226 param.W = data.results.nmrproc.W; +0227 end +0228 % status bar information +0229 switch data.info.has_optim +0230 case 'on' +0231 infostring = 'Inversion using ''Optimization Toolbox'' ... '; +0232 case 'off' +0233 infostring = 'Inversion using ''fminsearchbnd'' ... '; +0234 end +0235 displayStatusText(gui,infostring); +0236 invstd = fitDataFree(data.results.nmrproc.t,... +0237 data.results.nmrproc.s,flag,param,data.invstd.freeDT); +0238 data.invstd.Tfixed_val = [invstd.T(1:data.invstd.freeDT)... +0239 zeros(1,5-data.invstd.freeDT)]; +0240 +0241 case 'LU' % multi-exponential inversion +0242 % general parameter +0243 param.T1T2 = data.results.nmrproc.T1T2; +0244 param.T1IRfac = data.results.nmrproc.T1IRfac; +0245 param.Tb = data.invstd.Tbulk; +0246 param.Td = data.invstd.Tdiff; +0247 param.Tint = [log10(data.invstd.time) data.invstd.Ntime]; +0248 param.Lorder = data.invstd.Lorder; +0249 param.lambda = data.invstd.lambda; +0250 param.noise = data.results.nmrproc.noise; +0251 if isfield(data.results.nmrproc,'W') +0252 param.W = data.results.nmrproc.W; +0253 end +0254 % status bar information +0255 infostring = 'Inversion using LU decomposition ... '; +0256 displayStatusText(gui,infostring); +0257 invstd = fitDataLUdecomp(data.results.nmrproc.t,... +0258 data.results.nmrproc.s,param); +0259 +0260 case 'NNLS' % multi-exponential inversion with manual regularization +0261 % general parameter +0262 param.T1T2 = data.results.nmrproc.T1T2; +0263 param.T1IRfac = data.results.nmrproc.T1IRfac; +0264 param.Tb = data.invstd.Tbulk; +0265 param.Td = data.invstd.Tdiff; +0266 param.Tint = [log10(data.invstd.time) data.invstd.Ntime]; +0267 param.regMethod = data.invstd.regtype; +0268 param.Lorder = data.invstd.Lorder; +0269 param.lambda = data.invstd.lambda; +0270 param.noise = data.results.nmrproc.noise; +0271 param.solver = data.info.solver; +0272 if isfield(data.results.nmrproc,'W') +0273 param.W = data.results.nmrproc.W; +0274 end +0275 +0276 % status bar information +0277 switch data.info.solver +0278 case 'lsqlin' +0279 infostring = 'Inversion using ''Optimization Toolbox'' ... '; +0280 case 'lsqnonneg' +0281 infostring = 'Inversion using ''lsqnonneg'' ... '; +0282 end +0283 displayStatusText(gui,infostring); +0284 invstd = fitDataLSQ(data.results.nmrproc.t,... +0285 data.results.nmrproc.s,param); +0286 +0287 case 'MUMO' % N free distribution inversion +0288 param.T1T2 = data.results.nmrproc.T1T2; +0289 param.T1IRfac = data.results.nmrproc.T1IRfac; +0290 param.Tb = data.invstd.Tbulk; +0291 param.Td = data.invstd.Tdiff; +0292 param.Tint = [log10(data.invstd.time) data.invstd.Ntime]; +0293 param.noise = data.results.nmrproc.noise; +0294 param.optim = data.info.has_optim; +0295 if isfield(data.results.nmrproc,'W') +0296 param.W = data.results.nmrproc.W; +0297 end +0298 +0299 % status bar information +0300 switch data.info.solver +0301 case 'lsqlin' +0302 infostring = 'Inversion using ''Optimization Toolbox'' ... '; +0303 case 'lsqnonneg' +0304 infostring = 'Inversion using ''fminsearchbnd'' ... '; +0305 end +0306 displayStatusText(gui,infostring); +0307 invstd = fitDataMultiModal(data.results.nmrproc.t,... +0308 data.results.nmrproc.s,param,data.invstd.freeDT); +0309 +0310 % estimate uncertainty +0311 if data.invstd.useUncert +0312 % original fit parameter +0313 iparam = param; +0314 % uncertainty parameter +0315 uparam.time = data.results.nmrproc.t; +0316 uparam.signal = data.results.nmrproc.s; +0317 uparam.uncertMethod = data.invstd.uncertMethod; +0318 uparam.uncertThresh = data.invstd.uncertThresh; +0319 uparam.uncertChi2 = data.invstd.uncertChi2; +0320 uparam.uncertN = data.invstd.uncertN; +0321 uparam.uncertMax = data.invstd.uncertMax; +0322 invstd = estimateUncertainty(data.invstd.invtype,invstd,iparam,uparam); +0323 end +0324 end +0325 % normalize to 1 +0326 if data.process.norm == 1 +0327 switch data.invstd.invtype +0328 case {'LU','NNLS','MUMO'} +0329 % normalization with sum() -> sum(f)=1 +0330 % this is the standard way of doing it +0331 invstd.T1T2f = invstd.T1T2f./sum(invstd.T1T2f); +0332 % alternatives depending on the objective: +0333 % 1.) normalization with sum(f*dt) -> area~=1 +0334 % dt = log10(invstd.T1T2me(2))-log10(invstd.T1T2me(1)); +0335 % invstd.T1T2f = invstd.T1T2f/sum(invstd.T1T2f*dt); +0336 % 2.) normalization with trapz() -> area=1 but sum(f)>1 +0337 % invstd.T1T2f = invstd.T1T2f./trapz(invstd.T1T2me,invstd.T1T2f); +0338 otherwise +0339 % nothing to do +0340 end +0341 end +0342 runtime = toc; +0343 displayStatusText(gui,[infostring,'done | inversion took ',... +0344 sprintf('%5.2f',runtime),' s']); +0345 % save inversion results +0346 data.results.invstd = invstd; +0347 setappdata(fig,'data',data); +0348 end +0349 % as long as the "UserData" is 1 the STOP button was not pressed and +0350 % the inversion result gets saved in "INVdata" +0351 if get(gui.push_handles.invstd_run,'UserData') == 1 && ... +0352 ( isfield(data.results,'invstd') || ... +0353 isfield(data.results,'lcurve') ) +0354 INVdata{id} = []; +0355 INVdata{id} = data; +0356 INVdata{id} = rmfield(INVdata{id},'import'); +0357 INVdata{id} = rmfield(INVdata{id},'info'); +0358 INVdata{id} = rmfield(INVdata{id},'calib'); +0359 INVdata{id} = rmfield(INVdata{id},'pressure'); +0360 +0361 % color the list entries that already have an inversion result +0362 strL = get(gui.listbox_handles.signal,'String'); +0363 str1 = strL{id}; +0364 str2 = ['<HTML><BODY bgcolor="rgb(',... +0365 sprintf('%d,%d,%d',gui.myui.colors.listINV.*255),')">',str1,'</BODY></HTML>']; +0366 strL{id} = str2; +0367 set(gui.listbox_handles.signal,'String',strL); +0368 +0369 % update GUI INVdata +0370 setappdata(fig,'INVdata',INVdata); +0371 +0372 % --- +0373 % special treatment for LIAG processing +0374 if isfield(data.import,'LIAG') && ~strcmp(data.invstd.regtype,'lcurve') +0375 if contains(str1,' - calibration') +0376 % save Tbulk from the calibration sample +0377 btn1 = 'Yes keep it'; +0378 btn2 = 'No, reset to 1e6 [s]'; +0379 if data.results.invstd.T2 < 0.2 +0380 answer = questdlg(['Tbulk seems very short with ',... +0381 sprintf('%4.3f',data.results.invstd.T2),' [s] ',... +0382 'Do you want to keep it?'], ... +0383 'Keep relaxation time as Tbulk', ... +0384 btn1,btn2,btn2); +0385 % Handle response +0386 switch answer +0387 case btn1 +0388 data.import.LIAG.Tbulk = data.results.invstd.T2; +0389 case btn2 +0390 data.import.LIAG.Tbulk = 1e6; +0391 end +0392 else +0393 data.import.LIAG.Tbulk = data.results.invstd.T2; +0394 end +0395 % update GUI data +0396 setappdata(fig,'data',data); +0397 % save calibration data +0398 useSignalAsCalibration(id); +0399 else +0400 calibratePorosity; +0401 end +0402 end +0403 % --- +0404 else % STOP was pressed (because "UserData" is 0) +0405 % reset "UserData" +0406 set(gui.push_handles.invstd_run,'UserData',1); +0407 end +0408 % update plots and INFO fields +0409 updatePlotsSignal; +0410 updatePlotsDistribution; +0411 updateInfo(gui.plots.SignalPanel); +0412 % set focus on results +0413 set(gui.plots.SignalPanel,'Selection',1); +0414 set(gui.plots.DistPanel,'Selection',1); +0415 % open INFO field +0416 set(gui.push_handles.info,'String','<'); +0417 onPushShowHide(gui.push_handles.info); +0418 if ~isempty(findobj('Tag','FITSTATS')) +0419 showFitStatistics; +0420 end +0421 if ~isempty(findobj('Tag','FIXEDTIMEVIEW')) +0422 FixedTimeView(gui.menu.extra_fixedtime); +0423 end +0424 NUCLEUSinv_updateInterface; +0425 else +0426 helpdlg('Cannot start inversion because no data set is selected!',... +0427 'Select NMR data first.'); +0428 end +0429 +0430 %% at the end, no matter what reset the RUN button +0431 set(gui.push_handles.invstd_run,'String','<HTML><u>R</u>UN',... +0432 'BackgroundColor','g','Enable','on','Callback',@onPushRun); +0433 setappdata(fig,'gui',gui); +0434 +0435 end +0436 +0437 %------------- END OF CODE -------------- +0438 +0439 %% License: +0440 % MIT License +0441 % +0442 % Copyright (c) 2018 Thomas Hiller 0443 % -0444 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0445 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0446 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0447 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0448 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0449 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0450 % SOFTWARE. +0444 % Permission is hereby granted, free of charge, to any person obtaining a copy +0445 % of this software and associated documentation files (the "Software"), to deal +0446 % in the Software without restriction, including without limitation the rights +0447 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0448 % copies of the Software, and to permit persons to whom the Software is +0449 % furnished to do so, subject to the following conditions: +0450 % +0451 % The above copyright notice and this permission notice shall be included in all +0452 % copies or substantial portions of the Software. +0453 % +0454 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0455 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0456 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0457 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0458 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0459 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0460 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/functions/interface/showExtraGraphics.html b/doc/nucleus/functions/interface/showExtraGraphics.html index 4fb400e..bd15978 100644 --- a/doc/nucleus/functions/interface/showExtraGraphics.html +++ b/doc/nucleus/functions/interface/showExtraGraphics.html @@ -104,7 +104,7 @@

    SOURCE CODE ^%% get GUI handle and data 0034 fig = findobj('Tag','INV'); -0035 fig_tag = get(fig,'Tag'); +0035 % fig_tag = get(fig,'Tag'); 0036 data = getappdata(fig,'data'); 0037 INVdata = getappdata(fig,'INVdata'); 0038 gui = getappdata(fig,'gui'); @@ -200,203 +200,229 @@

    SOURCE CODE ^if data.import.BAM.use_z 0129 xval = data.import.BAM.zslice; 0130 xlabelstr = 'position'; -0131 else -0132 xlabelstr = 'date' ; -0133 end -0134 elseif isfield(data.import,'IBAC') -0135 if data.import.IBAC.use_z -0136 xval = data.import.IBAC.zslice; -0137 xlabelstr = 'position'; -0138 else -0139 xlabelstr = 'date' ; -0140 end -0141 else -0142 xlabelstr = 'date' ; -0143 end -0144 -0145 % plot it -0146 switch method -0147 case 'amp' -0148 f = figure; -0149 ax1 = subplot(311,'Parent',f); -0150 ax2 = subplot(312,'Parent',f); -0151 ax3 = subplot(313,'Parent',f); -0152 -0153 hold(ax1,'on'); -0154 switch data.invstd.invtype -0155 case {'mono','free'} -0156 errorbar(xval,E0,E0er,'o','Parent',ax1); -0157 otherwise -0158 plot(xval,E0,'o','Parent',ax1); -0159 end -0160 grid(ax1,'on'); -0161 set(get(ax1,'YLabel'),'String','E0'); -0162 -0163 hold(ax2,'on'); -0164 switch data.invstd.invtype -0165 case 'mono' -0166 errorbar(xval,T,Ter,'ko','Parent',ax2); -0167 set(get(ax2,'YLabel'),'String',['T [',timescale,']']); -0168 case 'free' -0169 for i = 1:size(T,2) -0170 semilogy(xval,T(:,i),'ko','Parent',ax2); -0171 end -0172 set(get(ax2,'YLabel'),'String',['T_x [',timescale,']']); -0173 set(ax2,'YScale','log'); -0174 otherwise -0175 for i = 1:size(T,2) -0176 semilogy(xval,T(:,i),'ko','Parent',ax2); -0177 end -0178 set(get(ax2,'YLabel'),'String',['TLGM [',timescale,']']); -0179 end -0180 grid(ax2,'on'); -0181 -0182 hold(ax3,'on'); -0183 plot(xval,SNR,'o','Parent',ax3); -0184 grid on; -0185 xlabel(xlabelstr); -0186 set(get(ax3,'YLabel'),'String','signal-to-noise ratio'); -0187 -0188 linkaxes([ax1 ax2 ax3], 'x'); -0189 -0190 if strcmp(xlabelstr,'date') -0191 isfile = which('dynamicDateTicks'); -0192 if ~isempty(isfile) -0193 dynamicDateTicks([ax1 ax2 ax3],'link','dd.mm. HH:MM'); -0194 else -0195 datetick(ax1,'x','dd.mm. HH:MM','keepticks'); -0196 datetick(ax2,'x','dd.mm. HH:MM','keepticks'); -0197 datetick(ax3,'x','dd.mm. HH:MM','keepticks'); -0198 end -0199 end +0131 ylabelstr = 'position [µm]'; +0132 else +0133 xlabelstr = 'date' ; +0134 end +0135 elseif isfield(data.import,'IBAC') +0136 if data.import.IBAC.use_z +0137 xval = data.import.IBAC.zslice; +0138 xlabelstr = 'position'; +0139 ylabelstr = 'position [µm]'; +0140 else +0141 xlabelstr = 'date' ; +0142 end +0143 elseif isfield(data.import,'LIAGCORE') +0144 xval = data.import.LIAGCORE.zslice; +0145 if data.import.LIAGCORE.use_z +0146 xlabelstr = 'position [mm]'; +0147 ylabelstr = 'position [mm]'; +0148 else +0149 xlabelstr = 'level'; +0150 ylabelstr = 'level'; +0151 end +0152 else +0153 xlabelstr = 'date' ; +0154 end +0155 +0156 % plot it +0157 switch method +0158 case 'amp' +0159 f = figure; +0160 ax1 = subplot(311,'Parent',f); +0161 ax2 = subplot(312,'Parent',f); +0162 ax3 = subplot(313,'Parent',f); +0163 +0164 hold(ax1,'on'); +0165 switch data.invstd.invtype +0166 case {'mono','free'} +0167 errorbar(xval,E0,E0er,'o','Parent',ax1); +0168 otherwise +0169 plot(xval,E0,'o','Parent',ax1); +0170 end +0171 grid(ax1,'on'); +0172 set(get(ax1,'YLabel'),'String','E0'); +0173 +0174 hold(ax2,'on'); +0175 switch data.invstd.invtype +0176 case 'mono' +0177 errorbar(xval,T,Ter,'ko','Parent',ax2); +0178 set(get(ax2,'YLabel'),'String',['T [',timescale,']']); +0179 case 'free' +0180 for i = 1:size(T,2) +0181 semilogy(xval,T(:,i),'ko','Parent',ax2); +0182 end +0183 set(get(ax2,'YLabel'),'String',['T_x [',timescale,']']); +0184 set(ax2,'YScale','log'); +0185 otherwise +0186 for i = 1:size(T,2) +0187 semilogy(xval,T(:,i),'ko','Parent',ax2); +0188 end +0189 set(get(ax2,'YLabel'),'String',['TLGM [',timescale,']']); +0190 end +0191 grid(ax2,'on'); +0192 +0193 hold(ax3,'on'); +0194 plot(xval,SNR,'o','Parent',ax3); +0195 grid on; +0196 xlabel(xlabelstr); +0197 set(get(ax3,'YLabel'),'String','signal-to-noise ratio'); +0198 +0199 linkaxes([ax1 ax2 ax3], 'x'); 0200 -0201 case 'ampvst' -0202 f = figure; -0203 ax1 = axes('Parent',f); -0204 -0205 plot(E0,T,'ko','Parent',ax1), -0206 set(get(ax1,'XLabel'),'String','E0'); -0207 set(get(ax1,'YLabel'),'String',['T [',timescale,']']); -0208 -0209 case 'rtd' -0210 switch data.invstd.invtype -0211 case {'LU','NNLS'} -0212 if strcmp(xlabelstr,'date') -0213 mycol = jet(size(Tspec,1)); -0214 [time,ix] = sort(xval); -0215 Tspec = Tspec(ix,:); -0216 f = figure; -0217 ax = axes('Parent',f); -0218 hold(ax,'on') -0219 for i = 1:size(Tspec,1) -0220 plot3(time(i)*ones(size(Tt)),Tt,Tspec(i,:),... -0221 'Color',mycol(i,:),'Parent',ax); -0222 end -0223 grid on; box on; -0224 xlabel('date'); -0225 ylabel(['relaxation time [',timescale,']']); -0226 zlabel('amplitude [-]'); -0227 -0228 set(ax,'YScale','log'); -0229 isfile = which('dynamicDateTicks'); -0230 if ~isempty(isfile) -0231 dynamicDateTicks(ax,'dd.mm. HH:MM'); -0232 else -0233 datetick(ax,'x','dd.mm. HH:MM','keepticks'); -0234 end -0235 view([90 0]); -0236 else -0237 dx = xval(2)-xval(1); -0238 [xx,yy] = meshgrid(Tt',[xval-dx/2; xval(end)+dx/2]); -0239 f = figure; -0240 ax = axes('Parent',f); -0241 hold(ax,'on') -0242 -0243 % remove the backgound file -0244 Tspec(isnan(Tspec)) = []; -0245 xi = numel(Tspec)/numel(Tt); -0246 Tspec = reshape(Tspec,[xi numel(Tt)]); -0247 -0248 surf(xx,yy,zeros(size(xx)),Tspec./max(Tspec(:)),'Parent',ax); -0249 shading(ax,'flat'); -0250 xticks = log10(min(Tt)):1:log10(max(Tt)); -0251 set(ax,'XScale','log','XLim',[10^xticks(1) 10^xticks(end)],... -0252 'XTick',10.^xticks,'Layer','top','Box','on'); -0253 set(ax,'YLim',[min(yy(:)) max(yy(:))],'YDir','normal') -0254 cmap = jet; cmap = flipud(cmap); -0255 colormap(ax,cmap); -0256 xlabel(['relaxation time [',timescale,']']); -0257 ylabel('position [µm]'); -0258 cb = colorbar; -0259 set(get(cb,'YLabel'),'String','norm. amplitude'); -0260 -0261 % context menu to flip y-axis direction -0262 axes_cm = uicontextmenu(f); -0263 gui.cm_handles.axes_proc_xaxis = uimenu(axes_cm,... -0264 'Label','flip y-axis','Tag','flip','Enable','on',... -0265 'Callback',@onContextFlip); -0266 set(ax,'UIContextMenu',axes_cm); -0267 -0268 end -0269 otherwise -0270 helpdlg({'function: showExtraGraphics',... -0271 'Cannot plot RTDs because the inversion was not multi exponential'},... -0272 'Invert NMR data first.'); -0273 end -0274 end -0275 -0276 catch ME -0277 % show error message in case import fails -0278 errmsg = {ME.message;[ME.stack(1).name,' Line: ',num2str(ME.stack(1).line)];... -0279 'Cannot show figure.'}; -0280 errordlg(errmsg,'showExtraGraphics: Error!'); -0281 end -0282 else -0283 helpdlg({'function: showExtraGraphics',... -0284 'Cannot continue because there need to be at least two NMR measurements.'},... -0285 'Not enough data to show'); -0286 end -0287 -0288 end -0289 -0290 function onContextFlip(src,~) -0291 f = ancestor(src,'Figure','toplevel'); -0292 ax = findobj(f,'Type','Axes'); -0293 -0294 direction = get(ax,'Ydir'); -0295 switch direction -0296 case 'normal' -0297 set(ax,'Ydir','reverse') -0298 case 'reverse' -0299 set(ax,'Ydir','normal') +0201 if strcmp(xlabelstr,'date') +0202 isfile = which('dynamicDateTicks'); +0203 if ~isempty(isfile) +0204 dynamicDateTicks([ax1 ax2 ax3],'link','dd.mm. HH:MM'); +0205 else +0206 datetick(ax1,'x','dd.mm. HH:MM','keepticks'); +0207 datetick(ax2,'x','dd.mm. HH:MM','keepticks'); +0208 datetick(ax3,'x','dd.mm. HH:MM','keepticks'); +0209 end +0210 end +0211 +0212 case 'ampvst' +0213 f = figure; +0214 ax1 = axes('Parent',f); +0215 +0216 plot(E0,T,'ko','Parent',ax1), +0217 set(get(ax1,'XLabel'),'String','E0'); +0218 set(get(ax1,'YLabel'),'String',['T [',timescale,']']); +0219 +0220 case 'rtd' +0221 switch data.invstd.invtype +0222 case {'LU','NNLS'} +0223 if strcmp(xlabelstr,'date') +0224 mycol = jet(size(Tspec,1)); +0225 [time,ix] = sort(xval); +0226 Tspec = Tspec(ix,:); +0227 f = figure; +0228 ax = axes('Parent',f); +0229 hold(ax,'on') +0230 for i = 1:size(Tspec,1) +0231 plot3(time(i)*ones(size(Tt)),Tt,Tspec(i,:),... +0232 'Color',mycol(i,:),'Parent',ax); +0233 end +0234 grid on; box on; +0235 xlabel('date'); +0236 ylabel(['relaxation time [',timescale,']']); +0237 zlabel('amplitude [-]'); +0238 +0239 set(ax,'YScale','log'); +0240 isfile = which('dynamicDateTicks'); +0241 if ~isempty(isfile) +0242 dynamicDateTicks(ax,'dd.mm. HH:MM'); +0243 else +0244 datetick(ax,'x','dd.mm. HH:MM','keepticks'); +0245 end +0246 view([90 0]); +0247 else +0248 dx = xval(2)-xval(1); +0249 [xx,yy] = meshgrid(Tt',[xval-dx/2; xval(end)+dx/2]); +0250 f = figure; +0251 ax = axes('Parent',f); +0252 hold(ax,'on') +0253 +0254 % remove the backgound file +0255 Tspec(isnan(Tspec)) = []; +0256 xi = numel(Tspec)/numel(Tt); +0257 Tspec = reshape(Tspec,[xi numel(Tt)]); +0258 +0259 surf(xx,yy,zeros(size(xx)),Tspec./max(Tspec(:)),'Parent',ax); +0260 shading(ax,'flat'); +0261 xticks = log10(min(Tt)):1:log10(max(Tt)); +0262 set(ax,'XScale','log','XLim',[10^xticks(1) 10^xticks(end)],... +0263 'XTick',10.^xticks,'Layer','top','Box','on'); +0264 set(ax,'YLim',[min(yy(:)) max(yy(:))],'YDir','normal') +0265 cmap = jet; cmap = flipud(cmap); +0266 colormap(ax,cmap); +0267 xlabel(['relaxation time [',timescale,']']); +0268 ylabel(ylabelstr); +0269 cb = colorbar; +0270 set(get(cb,'YLabel'),'String','norm. amplitude'); +0271 +0272 % context menu to flip y-axis direction +0273 axes_cm = uicontextmenu(f); +0274 gui.cm_handles.axes_proc_xaxis = uimenu(axes_cm,... +0275 'Label','flip y-axis','Tag','flip','Enable','on',... +0276 'Callback',@onContextFlip); +0277 gui.cm_handles.axes_proc_xaxis2 = uimenu(axes_cm,... +0278 'Label','color scale log/lin','Tag','loglin','Enable','on',... +0279 'Callback',@onContextFlip); +0280 set(ax,'UIContextMenu',axes_cm); +0281 +0282 end +0283 otherwise +0284 helpdlg({'function: showExtraGraphics',... +0285 'Cannot plot RTDs because the inversion was not multi exponential'},... +0286 'Invert NMR data first.'); +0287 end +0288 end +0289 +0290 catch ME +0291 % show error message in case import fails +0292 errmsg = {ME.message;[ME.stack(1).name,' Line: ',num2str(ME.stack(1).line)];... +0293 'Cannot show figure.'}; +0294 errordlg(errmsg,'showExtraGraphics: Error!'); +0295 end +0296 else +0297 helpdlg({'function: showExtraGraphics',... +0298 'Cannot continue because there need to be at least two NMR measurements.'},... +0299 'Not enough data to show'); 0300 end 0301 0302 end 0303 -0304 %------------- END OF CODE -------------- -0305 -0306 %% License: -0307 % MIT License -0308 % -0309 % Copyright (c) 2018 Thomas Hiller -0310 % -0311 % Permission is hereby granted, free of charge, to any person obtaining a copy -0312 % of this software and associated documentation files (the "Software"), to deal -0313 % in the Software without restriction, including without limitation the rights -0314 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0315 % copies of the Software, and to permit persons to whom the Software is -0316 % furnished to do so, subject to the following conditions: -0317 % -0318 % The above copyright notice and this permission notice shall be included in all -0319 % copies or substantial portions of the Software. -0320 % -0321 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0322 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0323 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0324 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0325 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0326 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0327 % SOFTWARE. +0304 function onContextFlip(src,~) +0305 f = ancestor(src,'Figure','toplevel'); +0306 ax = findobj(f,'Type','Axes'); +0307 tag = get(src,'Tag'); +0308 +0309 switch tag +0310 case 'loglin' +0311 isscale = get(ax,'ColorScale'); +0312 switch isscale +0313 case 'log' +0314 set(ax,'ColorScale','lin','CLim',[0 1]); +0315 case 'linear' +0316 set(ax,'ColorScale','log','CLim',[0.01 1]); +0317 end +0318 case 'flip' +0319 direction = get(ax,'Ydir'); +0320 switch direction +0321 case 'normal' +0322 set(ax,'Ydir','reverse') +0323 case 'reverse' +0324 set(ax,'Ydir','normal') +0325 end +0326 end +0327 +0328 end +0329 +0330 %------------- END OF CODE -------------- +0331 +0332 %% License: +0333 % MIT License +0334 % +0335 % Copyright (c) 2018 Thomas Hiller +0336 % +0337 % Permission is hereby granted, free of charge, to any person obtaining a copy +0338 % of this software and associated documentation files (the "Software"), to deal +0339 % in the Software without restriction, including without limitation the rights +0340 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0341 % copies of the Software, and to permit persons to whom the Software is +0342 % furnished to do so, subject to the following conditions: +0343 % +0344 % The above copyright notice and this permission notice shall be included in all +0345 % copies or substantial portions of the Software. +0346 % +0347 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0348 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0349 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0350 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0351 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0352 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0353 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/functions/interface/uncheckImportMenus.html b/doc/nucleus/functions/interface/uncheckImportMenus.html index fba64b6..bdcb707 100644 --- a/doc/nucleus/functions/interface/uncheckImportMenus.html +++ b/doc/nucleus/functions/interface/uncheckImportMenus.html @@ -116,9 +116,9 @@

    SOURCE CODE ^'Checked','off'); 0048 set(gui.menu.file_import_lab_bgr_mat,'Checked','off'); 0049 set(gui.menu.file_import_lab_bgr_mouse_cpmg,'Checked','off'); -0050 set(gui.menu.file_import_lab_bgr_mouse_liftsingle,'Checked','off'); -0051 set(gui.menu.file_import_lab_bgr_mouse_liftall,'Checked','off'); -0052 set(gui.menu.file_import_lab_bgr_helios,'Checked','off'); +0050 set(gui.menu.file_import_lab_bgr_mouse_lift,'Checked','off'); +0051 set(gui.menu.file_import_lab_bgr_helios_cpmg,'Checked','off'); +0052 set(gui.menu.file_import_lab_bgr_helios_series,'Checked','off'); 0053 set(gui.menu.file_import_lab_bam_tom,'Checked','off'); 0054 set(gui.menu.file_import_lab_ascii_T1,'Checked','off'); 0055 set(gui.menu.file_import_lab_ascii_T2,'Checked','off'); diff --git a/doc/nucleus/functions/interface/updateInfo.html b/doc/nucleus/functions/interface/updateInfo.html index d622507..44b354f 100644 --- a/doc/nucleus/functions/interface/updateInfo.html +++ b/doc/nucleus/functions/interface/updateInfo.html @@ -384,233 +384,249 @@

    SOURCE CODE ^' '; 0317 ciT = sum(full(invstd.ci(2:2:end))); -0318 -0319 switch nmrproc.T1T2 -0320 case 'T1' -0321 info{end+1,1} = ['<HTML><BODY>T<sub><font size="',num2str(subfs),'">1</sub> = ',... -0322 sprintf('%5.4f',invstd.T1),... -0323 ' &#8723 (',sprintf('%5.4f',ciT),')','</BODY></HTML>']; -0324 case 'T2' -0325 info{end+1,1} = ['<HTML><BODY>T<sub><font size="',num2str(subfs),'">2</sub> = ',... -0326 sprintf('%5.4f',invstd.T2),... -0327 ' &#8723 (',sprintf('%5.4f',ciT),')','</BODY></HTML>']; -0328 end -0329 info{end+1,1} = ' '; -0330 -0331 case 'free' -0332 str = [invtype,' ',num2str(data.invstd.freeDT)]; -0333 info{end+1,1} = str; -0334 info{end+1,1} = ' '; -0335 -0336 E0 = invstd.E0; -0337 ciE0 = full(invstd.ci(1:2:end)); -0338 ciT = full(invstd.ci(2:2:end)); -0339 -0340 switch nmrproc.T1T2 -0341 case 'T1' -0342 T = invstd.T1; -0343 case 'T2' -0344 T = invstd.T2; -0345 end -0346 -0347 for i = 1:length(T) -0348 info{end+1,1} = ['<HTML><BODY>T(',num2str(i),') = ',sprintf('%5.4f',T(i)),... -0349 ' &#8723 (',sprintf('%5.4f',ciT(i)),')','</BODY></HTML>']; %#ok<*AGROW> -0350 info{end+1,1} = ['<HTML><BODY>E(',num2str(i),') = ',sprintf('%5.4f',E0(i)),... -0351 ' &#8723 (',sprintf('%5.4f',ciE0(i)),')','</BODY></HTML>']; -0352 info{end+1,1} = ' '; +0318 +0319 if data.invstd.Tfixed_bool(1) +0320 col = gui.myui.colors.listINV.*255; +0321 else +0322 col = [1 1 1].*255; +0323 end +0324 +0325 switch nmrproc.T1T2 +0326 case 'T1' +0327 info{end+1,1} = ['<HTML><BODY bgcolor="rgb(',... +0328 sprintf('%d,%d,%d',col),')">T<sub><font size="',num2str(subfs),'">1</sub> = ',... +0329 sprintf('%5.4f',invstd.T1),... +0330 ' &#8723 (',sprintf('%5.4f',ciT),')','</BODY></HTML>']; +0331 case 'T2' +0332 info{end+1,1} = ['<HTML><BODY bgcolor="rgb(',... +0333 sprintf('%d,%d,%d',col),')">T<sub><font size="',num2str(subfs),'">2</sub> = ',... +0334 sprintf('%5.4f',invstd.T2),... +0335 ' &#8723 (',sprintf('%5.4f',ciT),')','</BODY></HTML>']; +0336 end +0337 info{end+1,1} = ' '; +0338 +0339 case 'free' +0340 str = [invtype,' ',num2str(data.invstd.freeDT)]; +0341 info{end+1,1} = str; +0342 info{end+1,1} = ' '; +0343 +0344 E0 = invstd.E0; +0345 ciE0 = full(invstd.ci(1:2:end)); +0346 ciT = full(invstd.ci(2:2:end)); +0347 +0348 switch nmrproc.T1T2 +0349 case 'T1' +0350 T = invstd.T1; +0351 case 'T2' +0352 T = invstd.T2; 0353 end 0354 -0355 case {'LU','NNLS'} -0356 % info is a cell array -0357 str = [invtype,' ',data.invstd.regtype,' ',num2str(data.invstd.Lorder)]; -0358 info{end+1,1} = str; -0359 info{end+1,1} = ' '; -0360 -0361 % TLGM -0362 info{end+1,1} = ['<HTML><BODY>TLGM</sub> = ',sprintf('%5.4f',invstd.Tlgm),'</BODY></HTML>']; -0363 info{end+1,1} = ' '; -0364 -0365 % clay-bound water CBW < tcut ms -0366 % irreducible water / capillary water BVI ccut - tcut ms -0367 % movable water BVM > tcut ms -0368 switch data.process.timescale -0369 case 's' -0370 ccut = data.param.CBWcutoff/1000; -0371 tcut = data.param.BVIcutoff/1000; -0372 case 'ms' -0373 ccut = data.param.CBWcutoff; -0374 tcut = data.param.BVIcutoff; -0375 end -0376 por = data.invstd.porosity; -0377 CBW = abs(sum(invstd.T1T2f(invstd.T1T2me<=ccut))/sum(invstd.T1T2f)); -0378 BVI = abs(sum(invstd.T1T2f(invstd.T1T2me>ccut & invstd.T1T2me<=tcut))/sum(invstd.T1T2f)); -0379 BVM = abs(sum(invstd.T1T2f(invstd.T1T2me>tcut))/sum(invstd.T1T2f)); -0380 info{end+1,1} = ['CBW(',sprintf('%2d',data.param.CBWcutoff),... -0381 ') = ',sprintf('%5.2f',por*CBW*100),' [vol. %]']; -0382 -0383 info{end+1,1} = ['BVI(',sprintf('%2d',data.param.BVIcutoff),... -0384 ') = ',sprintf('%5.2f',por*BVI*100),' [vol. %]']; -0385 info{end+1,1} = ['BVM = ',sprintf('%5.2f',por*BVM*100),' [vol. %]']; -0386 -0387 case {'MUMO'} -0388 -0389 % info is a cell array -0390 str = [invtype,' ',num2str(data.invstd.freeDT)]; -0391 info{end+1,1} = str; -0392 info{end+1,1} = ' '; -0393 -0394 % TLGM -0395 info{end+1,1} = ['<HTML><BODY>TLGM</sub> = ',sprintf('%5.4f',invstd.Tlgm),'</BODY></HTML>']; -0396 info{end+1,1} = ' '; -0397 -0398 % clay-bound water CBW < tcut ms -0399 % irreducible water / capillary water BVI ccut - tcut ms -0400 % movable water BVM > tcut ms -0401 switch data.process.timescale -0402 case 's' -0403 ccut = data.param.CBWcutoff/1000; -0404 tcut = data.param.BVIcutoff/1000; -0405 case 'ms' -0406 ccut = data.param.CBWcutoff; -0407 tcut = data.param.BVIcutoff; -0408 end -0409 por = data.invstd.porosity; -0410 CBW = abs(sum(invstd.T1T2f(invstd.T1T2me<=ccut))/sum(invstd.T1T2f)); -0411 BVI = abs(sum(invstd.T1T2f(invstd.T1T2me>ccut & invstd.T1T2me<=tcut))/sum(invstd.T1T2f)); -0412 BVM = abs(sum(invstd.T1T2f(invstd.T1T2me>tcut))/sum(invstd.T1T2f)); -0413 info{end+1,1} = ['CBW(',sprintf('%2d',data.param.CBWcutoff),... -0414 ') = ',sprintf('%5.2f',por*CBW*100),' [vol. %]']; -0415 -0416 info{end+1,1} = ['BVI(',sprintf('%2d',data.param.BVIcutoff),... -0417 ') = ',sprintf('%5.2f',por*BVI*100),' [vol. %]']; -0418 info{end+1,1} = ['BVM = ',sprintf('%5.2f',por*BVM*100),' [vol. %]']; -0419 info{end+1,1} = ' '; -0420 -0421 % values for T, sigma and amplitude -0422 T = invstd.T; ciT = invstd.ci(1:3:end); -0423 S = invstd.S; ciS = invstd.ci(2:3:end); -0424 E = invstd.E; ciE = invstd.ci(3:3:end); -0425 % transform ciT because it is in log scale -0426 tmpT = log(T)-ciT'; -0427 ciT = T - exp(tmpT); -0428 -0429 for i = 1:length(T) -0430 info{end+1,1} = ['<HTML><BODY>T(',num2str(i),') = ',sprintf('%5.4f',T(i)),... -0431 ' &#8723 (',sprintf('%5.4f',ciT(i)),')','</BODY></HTML>']; %#ok<*AGROW> -0432 info{end+1,1} = ['<HTML><BODY>S(',num2str(i),') = ',sprintf('%5.4f',S(i)),... -0433 ' &#8723 (',sprintf('%5.4f',ciS(i)),')','</BODY></HTML>']; -0434 info{end+1,1} = ['<HTML><BODY>E(',num2str(i),') = ',sprintf('%5.4f',E(i)),... -0435 ' &#8723 (',sprintf('%5.4f',ciE(i)),')','</BODY></HTML>']; -0436 info{end+1,1} = ' '; -0437 end -0438 end -0439 end -0440 end -0441 -0442 case 2 % PSD -0443 info{end+1,1} = 'PSD'; -0444 info{end+1,1} = ' '; -0445 -0446 case 3 % PSDJ -0447 if isfield(data,'results') -0448 if isfield(data.results,'invjoint') -0449 invjoint = data.results.invjoint; -0450 -0451 info{end+1,1} = ['Inversion type: ',data.invjoint.invtype]; -0452 info{end+1,1} = ' '; -0453 switch data.invjoint.geometry_type -0454 case 'cyl' -0455 info{end+1,1} = ['Shape: ',data.invjoint.geometry_type]; -0456 info{end+1,1} = ['Geom.: ',sprintf('%4.2f',invjoint.iGEOM.a)]; -0457 case 'ang' -0458 info{end+1,1} = ['Shape: ',data.invjoint.geometry_type,' ',... -0459 num2str(invjoint.iGEOM.angles(1)),' ',... -0460 num2str(invjoint.iGEOM.angles(2)),' ',... -0461 num2str(invjoint.iGEOM.angles(3))]; -0462 info{end+1,1} = ['Geom.: ',sprintf('%4.2f',invjoint.iGEOM.a)]; -0463 case 'poly' -0464 info{end+1,1} = ['Shape: ',data.invjoint.geometry_type,... -0465 ' ',num2str(data.invjoint.polyN),' sides']; -0466 info{end+1,1} = ['Geom.: ',sprintf('%4.2f',invjoint.iGEOM.a)]; -0467 end +0355 for i = 1:length(T) +0356 +0357 if data.invstd.Tfixed_bool(i) +0358 col = gui.myui.colors.listINV.*255; +0359 else +0360 col = [1 1 1].*255; +0361 end +0362 +0363 info{end+1,1} = ['<HTML><BODY bgcolor="rgb(',... +0364 sprintf('%d,%d,%d',col),')">T(',num2str(i),') = ',sprintf('%5.4f',T(i)),... +0365 ' &#8723 (',sprintf('%5.4f',ciT(i)),')','</BODY></HTML>']; %#ok<*AGROW> +0366 info{end+1,1} = ['<HTML><BODY>E(',num2str(i),') = ',sprintf('%5.4f',E0(i)),... +0367 ' &#8723 (',sprintf('%5.4f',ciE0(i)),')','</BODY></HTML>']; +0368 info{end+1,1} = ' '; +0369 end +0370 +0371 case {'LU','NNLS'} +0372 % info is a cell array +0373 str = [invtype,' ',data.invstd.regtype,' ',num2str(data.invstd.Lorder)]; +0374 info{end+1,1} = str; +0375 info{end+1,1} = ' '; +0376 +0377 % TLGM +0378 info{end+1,1} = ['<HTML><BODY>TLGM</sub> = ',sprintf('%5.4f',invstd.Tlgm),'</BODY></HTML>']; +0379 info{end+1,1} = ' '; +0380 +0381 % clay-bound water CBW < tcut ms +0382 % irreducible water / capillary water BVI ccut - tcut ms +0383 % movable water BVM > tcut ms +0384 switch data.process.timescale +0385 case 's' +0386 ccut = data.param.CBWcutoff/1000; +0387 tcut = data.param.BVIcutoff/1000; +0388 case 'ms' +0389 ccut = data.param.CBWcutoff; +0390 tcut = data.param.BVIcutoff; +0391 end +0392 por = data.invstd.porosity; +0393 CBW = abs(sum(invstd.T1T2f(invstd.T1T2me<=ccut))/sum(invstd.T1T2f)); +0394 BVI = abs(sum(invstd.T1T2f(invstd.T1T2me>ccut & invstd.T1T2me<=tcut))/sum(invstd.T1T2f)); +0395 BVM = abs(sum(invstd.T1T2f(invstd.T1T2me>tcut))/sum(invstd.T1T2f)); +0396 info{end+1,1} = ['CBW(',sprintf('%2d',data.param.CBWcutoff),... +0397 ') = ',sprintf('%5.2f',por*CBW*100),' [vol. %]']; +0398 +0399 info{end+1,1} = ['BVI(',sprintf('%2d',data.param.BVIcutoff),... +0400 ') = ',sprintf('%5.2f',por*BVI*100),' [vol. %]']; +0401 info{end+1,1} = ['BVM = ',sprintf('%5.2f',por*BVM*100),' [vol. %]']; +0402 +0403 case {'MUMO'} +0404 +0405 % info is a cell array +0406 str = [invtype,' ',num2str(data.invstd.freeDT)]; +0407 info{end+1,1} = str; +0408 info{end+1,1} = ' '; +0409 +0410 % TLGM +0411 info{end+1,1} = ['<HTML><BODY>TLGM</sub> = ',sprintf('%5.4f',invstd.Tlgm),'</BODY></HTML>']; +0412 info{end+1,1} = ' '; +0413 +0414 % clay-bound water CBW < tcut ms +0415 % irreducible water / capillary water BVI ccut - tcut ms +0416 % movable water BVM > tcut ms +0417 switch data.process.timescale +0418 case 's' +0419 ccut = data.param.CBWcutoff/1000; +0420 tcut = data.param.BVIcutoff/1000; +0421 case 'ms' +0422 ccut = data.param.CBWcutoff; +0423 tcut = data.param.BVIcutoff; +0424 end +0425 por = data.invstd.porosity; +0426 CBW = abs(sum(invstd.T1T2f(invstd.T1T2me<=ccut))/sum(invstd.T1T2f)); +0427 BVI = abs(sum(invstd.T1T2f(invstd.T1T2me>ccut & invstd.T1T2me<=tcut))/sum(invstd.T1T2f)); +0428 BVM = abs(sum(invstd.T1T2f(invstd.T1T2me>tcut))/sum(invstd.T1T2f)); +0429 info{end+1,1} = ['CBW(',sprintf('%2d',data.param.CBWcutoff),... +0430 ') = ',sprintf('%5.2f',por*CBW*100),' [vol. %]']; +0431 +0432 info{end+1,1} = ['BVI(',sprintf('%2d',data.param.BVIcutoff),... +0433 ') = ',sprintf('%5.2f',por*BVI*100),' [vol. %]']; +0434 info{end+1,1} = ['BVM = ',sprintf('%5.2f',por*BVM*100),' [vol. %]']; +0435 info{end+1,1} = ' '; +0436 +0437 % values for T, sigma and amplitude +0438 T = invstd.T; ciT = invstd.ci(1:3:end); +0439 S = invstd.S; ciS = invstd.ci(2:3:end); +0440 E = invstd.E; ciE = invstd.ci(3:3:end); +0441 % transform ciT because it is in log scale +0442 tmpT = log(T)-ciT'; +0443 ciT = T - exp(tmpT); +0444 +0445 for i = 1:length(T) +0446 info{end+1,1} = ['<HTML><BODY>T(',num2str(i),') = ',sprintf('%5.4f',T(i)),... +0447 ' &#8723 (',sprintf('%5.4f',ciT(i)),')','</BODY></HTML>']; %#ok<*AGROW> +0448 info{end+1,1} = ['<HTML><BODY>S(',num2str(i),') = ',sprintf('%5.4f',S(i)),... +0449 ' &#8723 (',sprintf('%5.4f',ciS(i)),')','</BODY></HTML>']; +0450 info{end+1,1} = ['<HTML><BODY>E(',num2str(i),') = ',sprintf('%5.4f',E(i)),... +0451 ' &#8723 (',sprintf('%5.4f',ciE(i)),')','</BODY></HTML>']; +0452 info{end+1,1} = ' '; +0453 end +0454 end +0455 end +0456 end +0457 +0458 case 2 % PSD +0459 info{end+1,1} = 'PSD'; +0460 info{end+1,1} = ' '; +0461 +0462 case 3 % PSDJ +0463 if isfield(data,'results') +0464 if isfield(data.results,'invjoint') +0465 invjoint = data.results.invjoint; +0466 +0467 info{end+1,1} = ['Inversion type: ',data.invjoint.invtype]; 0468 info{end+1,1} = ' '; -0469 info{end+1,1} = ['rho (INV): ',sprintf('%5.3f',invjoint.irho*1e6),' [µm/s]']; -0470 if isfield(data.import,'NMRMOD') -0471 info{end+1,1} = ['rho (MOD): ',... -0472 sprintf('%5.3f',data.import.NMRMOD.nmr.rho*1e6),' [µm/s]']; -0473 end -0474 end -0475 end -0476 end -0477 % and update the text box -0478 set(gui.listbox_handles.info_dist,'String',info,'Value',[],'Max',2,'Min',0); -0479 -0480 %% CPS panel info -0481 % check if the CPS panel is maximized -0482 isminimized = get(gui.plots.CPSPanel,'Minimized'); -0483 if ~isminimized -0484 clear info; -0485 info{1,1} = ' '; -0486 if isfield(data,'results') -0487 if isfield(data.results,'invjoint') -0488 invjoint = data.results.invjoint; -0489 nmr = invjoint.idata.nmr; -0490 levels = invjoint.levels; -0491 -0492 for i = 1:numel(levels) -0493 info{end+1,1} = nmr{levels(i)}.name; -0494 info{end+1,1} = ['press. : ',... -0495 sprintf('%5.4f',invjoint.p0(levels(i))*data.pressure.unitfac),... -0496 ' [',data.pressure.unit,']']; -0497 switch invjoint.T1T2 -0498 case 'T1' -0499 info{end+1,1} = ['sat. (INV) : ',... -0500 sprintf('%4.2f',invjoint.idata.nmr{levels(i)}.fit_g(end))]; -0501 case 'T2' -0502 info{end+1,1} = ['sat. (INV) : ',... -0503 sprintf('%4.2f',invjoint.idata.nmr{levels(i)}.fit_g(1))]; -0504 end -0505 info{end+1,1} = ['sat. (MOD) : ',... -0506 sprintf('%4.2f',invjoint.S0(levels(i)))]; -0507 info{end+1,1} = ' '; -0508 end -0509 end -0510 end -0511 set(gui.listbox_handles.info_cps,'String',info,'Value',[],'Max',2,'Min',0); -0512 end -0513 -0514 % update GUI data -0515 setappdata(fig,'data',data); -0516 setappdata(fig,'gui',gui); -0517 end -0518 -0519 end -0520 -0521 %------------- END OF CODE -------------- -0522 -0523 %% License: -0524 % MIT License -0525 % -0526 % Copyright (c) 2018 Thomas Hiller -0527 % -0528 % Permission is hereby granted, free of charge, to any person obtaining a copy -0529 % of this software and associated documentation files (the "Software"), to deal -0530 % in the Software without restriction, including without limitation the rights -0531 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0532 % copies of the Software, and to permit persons to whom the Software is -0533 % furnished to do so, subject to the following conditions: -0534 % -0535 % The above copyright notice and this permission notice shall be included in all -0536 % copies or substantial portions of the Software. -0537 % -0538 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0539 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0540 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0541 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0542 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0543 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0544 % SOFTWARE. +0469 switch data.invjoint.geometry_type +0470 case 'cyl' +0471 info{end+1,1} = ['Shape: ',data.invjoint.geometry_type]; +0472 info{end+1,1} = ['Geom.: ',sprintf('%4.2f',invjoint.iGEOM.a)]; +0473 case 'ang' +0474 info{end+1,1} = ['Shape: ',data.invjoint.geometry_type,' ',... +0475 num2str(invjoint.iGEOM.angles(1)),' ',... +0476 num2str(invjoint.iGEOM.angles(2)),' ',... +0477 num2str(invjoint.iGEOM.angles(3))]; +0478 info{end+1,1} = ['Geom.: ',sprintf('%4.2f',invjoint.iGEOM.a)]; +0479 case 'poly' +0480 info{end+1,1} = ['Shape: ',data.invjoint.geometry_type,... +0481 ' ',num2str(data.invjoint.polyN),' sides']; +0482 info{end+1,1} = ['Geom.: ',sprintf('%4.2f',invjoint.iGEOM.a)]; +0483 end +0484 info{end+1,1} = ' '; +0485 info{end+1,1} = ['rho (INV): ',sprintf('%5.3f',invjoint.irho*1e6),' [µm/s]']; +0486 if isfield(data.import,'NMRMOD') +0487 info{end+1,1} = ['rho (MOD): ',... +0488 sprintf('%5.3f',data.import.NMRMOD.nmr.rho*1e6),' [µm/s]']; +0489 end +0490 end +0491 end +0492 end +0493 % and update the text box +0494 set(gui.listbox_handles.info_dist,'String',info,'Value',[],'Max',2,'Min',0); +0495 +0496 %% CPS panel info +0497 % check if the CPS panel is maximized +0498 isminimized = get(gui.plots.CPSPanel,'Minimized'); +0499 if ~isminimized +0500 clear info; +0501 info{1,1} = ' '; +0502 if isfield(data,'results') +0503 if isfield(data.results,'invjoint') +0504 invjoint = data.results.invjoint; +0505 nmr = invjoint.idata.nmr; +0506 levels = invjoint.levels; +0507 +0508 for i = 1:numel(levels) +0509 info{end+1,1} = nmr{levels(i)}.name; +0510 info{end+1,1} = ['press. : ',... +0511 sprintf('%5.4f',invjoint.p0(levels(i))*data.pressure.unitfac),... +0512 ' [',data.pressure.unit,']']; +0513 switch invjoint.T1T2 +0514 case 'T1' +0515 info{end+1,1} = ['sat. (INV) : ',... +0516 sprintf('%4.2f',invjoint.idata.nmr{levels(i)}.fit_g(end))]; +0517 case 'T2' +0518 info{end+1,1} = ['sat. (INV) : ',... +0519 sprintf('%4.2f',invjoint.idata.nmr{levels(i)}.fit_g(1))]; +0520 end +0521 info{end+1,1} = ['sat. (MOD) : ',... +0522 sprintf('%4.2f',invjoint.S0(levels(i)))]; +0523 info{end+1,1} = ' '; +0524 end +0525 end +0526 end +0527 set(gui.listbox_handles.info_cps,'String',info,'Value',[],'Max',2,'Min',0); +0528 end +0529 +0530 % update GUI data +0531 setappdata(fig,'data',data); +0532 setappdata(fig,'gui',gui); +0533 end +0534 +0535 end +0536 +0537 %------------- END OF CODE -------------- +0538 +0539 %% License: +0540 % MIT License +0541 % +0542 % Copyright (c) 2018 Thomas Hiller +0543 % +0544 % Permission is hereby granted, free of charge, to any person obtaining a copy +0545 % of this software and associated documentation files (the "Software"), to deal +0546 % in the Software without restriction, including without limitation the rights +0547 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0548 % copies of the Software, and to permit persons to whom the Software is +0549 % furnished to do so, subject to the following conditions: +0550 % +0551 % The above copyright notice and this permission notice shall be included in all +0552 % copies or substantial portions of the Software. +0553 % +0554 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0555 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0556 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0557 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0558 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0559 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0560 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/functions/inversion/fitDataFree.html b/doc/nucleus/functions/inversion/fitDataFree.html index 852332a..f4a69e7 100644 --- a/doc/nucleus/functions/inversion/fitDataFree.html +++ b/doc/nucleus/functions/inversion/fitDataFree.html @@ -180,140 +180,187 @@

    SOURCE CODE ^'off'; 0081 end 0082 -0083 % start values for E and T -0084 x0 = zeros(1,2*nExp); -0085 for i = 1:nExp -0086 x0(2*i-1) = i*max(signal)/nExp; -0087 x0(2*i) = i*max(t)/nExp; -0088 end -0089 -0090 switch parameter.optim -0091 case 'on' -0092 switch flag -0093 case 'T1' -0094 % solver options -0095 options = optimoptions('lsqcurvefit'); -0096 options.Display = parameter.info; -0097 % options.OptimalityTolerance = 1e-18; -0098 % options.StepTolerance = 1e-18; -0099 % options.MaxIterations = 1e3; -0100 [x,~,~,~,output,~,jacobian] = lsqcurvefit(@(x,t)fcn_fitFreeT1(x,t,IRfac),... -0101 x0,t,s,zeros(size(x0)),[],options); -0102 case 'T2' -0103 % solver options -0104 options = optimoptions('lsqnonlin'); -0105 options.Display = parameter.info; -0106 % options.OptimalityTolerance = 1e-18; -0107 % options.StepTolerance = 1e-18; -0108 % options.MaxIterations = 1e3; -0109 -0110 iparam.t = t; -0111 iparam.s = s; -0112 [x,~,~,~,output,~,jacobian] = lsqnonlin(@(x)fcn_fitFreeT2w(x,iparam),... -0113 x0,zeros(size(x0)),[],options); -0114 % [x,~,~,~,output,~,jacobian] = lsqcurvefit(@fcn_fitFreeT2,... -0115 % x0,t,s,zeros(size(x0)),[],options); -0116 end -0117 case 'off' -0118 % solver options -0119 options = optimset('Display',parameter.info,'MaxFunEvals',10^6,... -0120 'MaxIter',5000,'TolFun',1e-12,'TolX',1e-12); -0121 switch flag -0122 case 'T1' -0123 [x,~,~,output] = fminsearchbnd(@(x) fcn_fitFreeT1_fmin(x,t,s,IRfac),... -0124 x0,zeros(size(x0)),[],options); -0125 case 'T2' -0126 [x,~,~,output] = fminsearchbnd(@(x) fcn_fitFreeT2_fmin(x,t,s,e),... -0127 x0,zeros(size(x0)),[],options); -0128 end -0129 end -0130 -0131 % get the fit -0132 fit_t = t; -0133 switch flag -0134 case 'T1' -0135 fit_s = fcn_fitFreeT1(x,fit_t,IRfac); -0136 case 'T2' -0137 fit_s = fcn_fitFreeT2(x,fit_t); -0138 end -0139 -0140 % get residuals and error measures -0141 if isfield(parameter,'W') -0142 % when signal gating was used the error estimates need to be adjusted -0143 out = getFitErrors(signal,fit_s,parameter.noise,parameter.W); -0144 else -0145 out = getFitErrors(signal,fit_s,parameter.noise); -0146 end -0147 -0148 % get Jacobian -0149 switch parameter.optim -0150 case 'on' -0151 % nothing to do because the Optim. Toolbox gives the jacobian as -0152 % output -0153 case 'off' -0154 jacobian = getFitFreeJacobian(x,t,flag,IRfac); -0155 end -0156 -0157 % confidence interval -0158 ci = getConfInterval(out.resnorm,jacobian,0.05); -0159 -0160 % sort the relaxation times in ascending order -0161 E0 = x(1:2:end); -0162 T = x(2:2:end); -0163 [T,idx] = sort(T); -0164 E0 = E0(idx); -0165 ciT = ci(2:2:end); -0166 ciE = ci(1:2:end); -0167 ciT = ciT(idx); -0168 ciE = ciE(idx); -0169 ci(2:2:end) = ciT; -0170 ci(1:2:end) = ciE; -0171 -0172 % output struct -0173 fitdata.E0 = E0; -0174 switch flag -0175 case 'T1' -0176 fitdata.T1 = T; -0177 case 'T2' -0178 fitdata.T2 = T; -0179 end -0180 fitdata.fit_t = fit_t; -0181 fitdata.fit_s = fit_s; -0182 fitdata.resnorm = out.resnorm; -0183 fitdata.residual = out.residual; -0184 fitdata.errornorm = out.errnorm1; -0185 fitdata.rms = out.rms; -0186 fitdata.chi2 = out.chi2; -0187 fitdata.ci = ci; -0188 fitdata.x = x; -0189 fitdata.output = output; -0190 -0191 return -0192 -0193 %------------- END OF CODE -------------- -0194 -0195 %% License: -0196 % MIT License -0197 % -0198 % Copyright (c) 2018 Thomas Hiller -0199 % -0200 % Permission is hereby granted, free of charge, to any person obtaining a copy -0201 % of this software and associated documentation files (the "Software"), to deal -0202 % in the Software without restriction, including without limitation the rights -0203 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0204 % copies of the Software, and to permit persons to whom the Software is -0205 % furnished to do so, subject to the following conditions: -0206 % -0207 % The above copyright notice and this permission notice shall be included in all -0208 % copies or substantial portions of the Software. -0209 % -0210 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0211 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0212 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0213 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0214 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0215 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0216 % SOFTWARE. +0083 % check if any relaxation time is fixed +0084 if any(parameter.Tfixed_bool) +0085 +0086 % start values for E and T +0087 x0 = zeros(1,2*nExp); +0088 for i = 1:nExp +0089 x0(2*i-1) = i*max(signal)/nExp; +0090 if parameter.Tfixed_bool(i) +0091 x0(2*i) = parameter.Tfixed_val(i); +0092 else +0093 x0(2*i) = i*max(t)/nExp; +0094 end +0095 end +0096 +0097 % bounds for E and T +0098 lb = zeros(1,2*nExp); +0099 ub = zeros(1,2*nExp); +0100 for i = 1:nExp +0101 lb(2*i-1) = 0; +0102 ub(2*i-1) = 2*i*max(signal); +0103 if parameter.Tfixed_bool(i) +0104 lb(2*i) = parameter.Tfixed_val(i); +0105 ub(2*i) = parameter.Tfixed_val(i); +0106 else +0107 lb(2*i) = 0; +0108 ub(2*i) = 2*i*max(t); +0109 end +0110 end +0111 +0112 else % if not proceed with the standard version +0113 +0114 % start values for E and T +0115 x0 = zeros(1,2*nExp); +0116 for i = 1:nExp +0117 x0(2*i-1) = i*max(signal)/nExp; +0118 x0(2*i) = i*max(t)/nExp; +0119 end +0120 +0121 % bounds for E and T +0122 lb = zeros(1,2*nExp); +0123 ub = zeros(1,2*nExp); +0124 for i = 1:nExp +0125 lb(2*i-1) = 0; +0126 ub(2*i-1) = 2*i*max(signal); +0127 lb(2*i) = 0; +0128 ub(2*i) = 2*i*max(t); +0129 end +0130 end +0131 +0132 switch parameter.optim +0133 case 'on' +0134 switch flag +0135 case 'T1' +0136 % solver options +0137 options = optimoptions('lsqcurvefit'); +0138 options.Display = parameter.info; +0139 % options.OptimalityTolerance = 1e-18; +0140 % options.StepTolerance = 1e-18; +0141 % options.MaxIterations = 1e3; +0142 [x,~,~,~,output,~,jacobian] = lsqcurvefit(@(x,t)fcn_fitFreeT1(x,t,IRfac),... +0143 x0,t,s,lb,ub,options); +0144 case 'T2' +0145 % solver options +0146 options = optimoptions('lsqnonlin'); +0147 options.Display = parameter.info; +0148 % options.OptimalityTolerance = 1e-18; +0149 % options.StepTolerance = 1e-18; +0150 % options.MaxIterations = 1e3; +0151 +0152 iparam.t = t; +0153 iparam.s = s; +0154 [x,~,~,~,output,~,jacobian] = lsqnonlin(@(x)fcn_fitFreeT2w(x,iparam),... +0155 x0,lb,ub,options); +0156 % [x,~,~,~,output,~,jacobian] = lsqcurvefit(@fcn_fitFreeT2,... +0157 % x0,t,s,zeros(size(x0)),[],options); +0158 end +0159 case 'off' +0160 % solver options +0161 options = optimset('Display',parameter.info,'MaxFunEvals',10^6,... +0162 'MaxIter',5000,'TolFun',1e-12,'TolX',1e-12); +0163 switch flag +0164 case 'T1' +0165 [x,~,~,output] = fminsearchbnd(@(x) fcn_fitFreeT1_fmin(x,t,s,IRfac),... +0166 x0,lb,ub,options); +0167 case 'T2' +0168 [x,~,~,output] = fminsearchbnd(@(x) fcn_fitFreeT2_fmin(x,t,s,e),... +0169 x0,lb,ub,options); +0170 end +0171 end +0172 +0173 % get the fit +0174 fit_t = t; +0175 switch flag +0176 case 'T1' +0177 fit_s = fcn_fitFreeT1(x,fit_t,IRfac); +0178 case 'T2' +0179 fit_s = fcn_fitFreeT2(x,fit_t); +0180 end +0181 +0182 % get residuals and error measures +0183 if isfield(parameter,'W') +0184 % when signal gating was used the error estimates need to be adjusted +0185 out = getFitErrors(signal,fit_s,parameter.noise,parameter.W); +0186 else +0187 out = getFitErrors(signal,fit_s,parameter.noise); +0188 end +0189 +0190 % get Jacobian +0191 switch parameter.optim +0192 case 'on' +0193 % nothing to do because the Optim. Toolbox gives the jacobian as +0194 % output +0195 case 'off' +0196 jacobian = getFitFreeJacobian(x,t,flag,IRfac); +0197 end +0198 +0199 % confidence interval +0200 ci = getConfInterval(out.resnorm,jacobian,0.05); +0201 +0202 % sort the relaxation times in ascending order +0203 E0 = x(1:2:end); +0204 T = x(2:2:end); +0205 if any(parameter.Tfixed_bool) +0206 idx = 1:1:nExp; +0207 else +0208 [T,idx] = sort(T); +0209 end +0210 E0 = E0(idx); +0211 ciT = ci(2:2:end); +0212 ciE = ci(1:2:end); +0213 ciT = ciT(idx); +0214 ciE = ciE(idx); +0215 ci(2:2:end) = ciT; +0216 ci(1:2:end) = ciE; +0217 +0218 % output struct +0219 fitdata.E0 = E0; +0220 switch flag +0221 case 'T1' +0222 fitdata.T1 = T; +0223 case 'T2' +0224 fitdata.T2 = T; +0225 end +0226 fitdata.T = T; +0227 fitdata.fit_t = fit_t; +0228 fitdata.fit_s = fit_s; +0229 fitdata.resnorm = out.resnorm; +0230 fitdata.residual = out.residual; +0231 fitdata.errornorm = out.errnorm1; +0232 fitdata.rms = out.rms; +0233 fitdata.chi2 = out.chi2; +0234 fitdata.ci = ci; +0235 fitdata.x = x; +0236 fitdata.output = output; +0237 +0238 return +0239 +0240 %------------- END OF CODE -------------- +0241 +0242 %% License: +0243 % MIT License +0244 % +0245 % Copyright (c) 2018 Thomas Hiller +0246 % +0247 % Permission is hereby granted, free of charge, to any person obtaining a copy +0248 % of this software and associated documentation files (the "Software"), to deal +0249 % in the Software without restriction, including without limitation the rights +0250 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0251 % copies of the Software, and to permit persons to whom the Software is +0252 % furnished to do so, subject to the following conditions: +0253 % +0254 % The above copyright notice and this permission notice shall be included in all +0255 % copies or substantial portions of the Software. +0256 % +0257 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0258 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0259 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0260 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0261 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0262 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0263 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/functions/inversion/fitDataMultiModal.html b/doc/nucleus/functions/inversion/fitDataMultiModal.html index bd0ae6e..500034f 100644 --- a/doc/nucleus/functions/inversion/fitDataMultiModal.html +++ b/doc/nucleus/functions/inversion/fitDataMultiModal.html @@ -217,199 +217,201 @@

    SOURCE CODE ^if isfield(parameter,'W') -0108 param0.W = parameter.W; -0109 end -0110 % free exponential fit to get some reasonable start values -0111 invstd0 = fitDataFree(t,s,flag,param0,nModes); -0112 -0113 % start values for E and T -0114 x0 = zeros(1,3*nModes); -0115 lb = zeros(1,3*nModes); -0116 ub = zeros(1,3*nModes); -0117 for i = 1:nModes -0118 % initial values for T, sigma and E -0119 x0(3*i-2) = log(invstd0.x(2*i)); -0120 x0(3*i-1) = 1; -0121 x0(3*i) = invstd0.x(2*i-1); -0122 -0123 % lower bounds for T, sigma and E -0124 lb(3*i-2) = log(1e-6);%log(invstd0.x(2*i)*0.8);%log(invstd0.x(2*i) - 10*invstd0.ci(2*i)); -0125 lb(3*i-1) = 0.01; -0126 lb(3*i) = invstd0.x(2*i-1)*0.8;%invstd0.x(2*i-1) - 10*invstd0.ci(2*i-1); -0127 -0128 % upper bounds for T, sigma and E -0129 ub(3*i-2) = log(10);%log(invstd0.x(2*i) + 50*invstd0.ci(2*i)); -0130 ub(3*i-1) = 3.5; -0131 ub(3*i) = max(invstd0.E0)*1.1;%invstd0.x(2*i-1) + 50*invstd0.ci(2*i-1); -0132 end -0133 -0134 % switch off output if no option is given via 'parameter' -0135 if ~isfield(parameter,'info') -0136 parameter.info = 'off'; -0137 end -0138 -0139 % create the relaxation time vector -0140 T1T2me = logspace(tstart,tend,(tend-tstart)*N); -0141 -0142 % just needed for debugging the Optimization Toolbox availability -0143 % parameter.optim = 'off'; -0144 -0145 switch parameter.optim -0146 case 'on' -0147 % solver options -0148 options = optimoptions('lsqnonlin'); -0149 options.Algorithm = 'levenberg-marquardt'; -0150 options.Display = parameter.info; -0151 options.OptimalityTolerance = 1e-12; -0152 options.StepTolerance = 1e-12; -0153 -0154 iparam.optim = parameter.optim; -0155 iparam.flag = flag; -0156 iparam.T1IRfac = T1IRfac; -0157 iparam.nModes = nModes; -0158 iparam.t = t; -0159 iparam.s = s; -0160 iparam.T = T1T2me; -0161 iparam.Tb = Tb; -0162 iparam.Td = Td; -0163 [x,~,~,~,output,~,jacobian] = lsqnonlin(@(x)fcn_fitMultiModal(x,iparam),... -0164 x0,lb,ub,options); -0165 -0166 case 'off' -0167 % solver options -0168 options = optimset('Display',parameter.info,'MaxFunEvals',10^6,... -0169 'MaxIter',5000,'TolFun',1e-12,'TolX',1e-12); -0170 -0171 iparam.optim = parameter.optim; -0172 iparam.flag = flag; -0173 iparam.T1IRfac = T1IRfac; -0174 iparam.nModes = nModes; -0175 iparam.t = t; -0176 iparam.s = s; -0177 iparam.T = T1T2me; -0178 iparam.Tb = Tb; -0179 iparam.Td = Td; -0180 [x,~,~,output] = fminsearchbnd(@(x) fcn_fitMultiModal(x,iparam),... -0181 x0,lb,ub,options); -0182 -0183 % get Jacobian -0184 % therefore we need to switch the 'optim' on to get the correct -0185 % output of 'fcn_fitMultiModal' -0186 iparam.optim = 'on'; -0187 jacobian = estimateJacobian(@(x)fcn_fitMultiModal(x,iparam),x); -0188 end -0189 -0190 % assemble the final RTD -0191 Tdist = 0; -0192 for i = 1:length(x)/3 -0193 mu = exp(x(3*i-2)); % T -0194 sigma = x(3*i-1); % S -0195 amp = x(3*i); % E -0196 -0197 tmp = 1./( sigma*sqrt(2*pi)).*exp(-((log(T1T2me) - log(mu))/ sqrt(2)/sigma).^2); +0107 param0.Tfixed_bool = [0 0 0 0 0]; +0108 param0.Tfixed_val = [0 0 0 0 0]; +0109 if isfield(parameter,'W') +0110 param0.W = parameter.W; +0111 end +0112 % free exponential fit to get some reasonable start values +0113 invstd0 = fitDataFree(t,s,flag,param0,nModes); +0114 +0115 % start values for E and T +0116 x0 = zeros(1,3*nModes); +0117 lb = zeros(1,3*nModes); +0118 ub = zeros(1,3*nModes); +0119 for i = 1:nModes +0120 % initial values for T, sigma and E +0121 x0(3*i-2) = log(invstd0.x(2*i)); +0122 x0(3*i-1) = 1; +0123 x0(3*i) = invstd0.x(2*i-1); +0124 +0125 % lower bounds for T, sigma and E +0126 lb(3*i-2) = log(1e-6);%log(invstd0.x(2*i)*0.8);%log(invstd0.x(2*i) - 10*invstd0.ci(2*i)); +0127 lb(3*i-1) = 0.01; +0128 lb(3*i) = invstd0.x(2*i-1)*0.8;%invstd0.x(2*i-1) - 10*invstd0.ci(2*i-1); +0129 +0130 % upper bounds for T, sigma and E +0131 ub(3*i-2) = log(10);%log(invstd0.x(2*i) + 50*invstd0.ci(2*i)); +0132 ub(3*i-1) = 3.5; +0133 ub(3*i) = max(invstd0.E0)*1.1;%invstd0.x(2*i-1) + 50*invstd0.ci(2*i-1); +0134 end +0135 +0136 % switch off output if no option is given via 'parameter' +0137 if ~isfield(parameter,'info') +0138 parameter.info = 'off'; +0139 end +0140 +0141 % create the relaxation time vector +0142 T1T2me = logspace(tstart,tend,(tend-tstart)*N); +0143 +0144 % just needed for debugging the Optimization Toolbox availability +0145 % parameter.optim = 'off'; +0146 +0147 switch parameter.optim +0148 case 'on' +0149 % solver options +0150 options = optimoptions('lsqnonlin'); +0151 options.Algorithm = 'levenberg-marquardt'; +0152 options.Display = parameter.info; +0153 options.OptimalityTolerance = 1e-12; +0154 options.StepTolerance = 1e-12; +0155 +0156 iparam.optim = parameter.optim; +0157 iparam.flag = flag; +0158 iparam.T1IRfac = T1IRfac; +0159 iparam.nModes = nModes; +0160 iparam.t = t; +0161 iparam.s = s; +0162 iparam.T = T1T2me; +0163 iparam.Tb = Tb; +0164 iparam.Td = Td; +0165 [x,~,~,~,output,~,jacobian] = lsqnonlin(@(x)fcn_fitMultiModal(x,iparam),... +0166 x0,lb,ub,options); +0167 +0168 case 'off' +0169 % solver options +0170 options = optimset('Display',parameter.info,'MaxFunEvals',10^6,... +0171 'MaxIter',5000,'TolFun',1e-12,'TolX',1e-12); +0172 +0173 iparam.optim = parameter.optim; +0174 iparam.flag = flag; +0175 iparam.T1IRfac = T1IRfac; +0176 iparam.nModes = nModes; +0177 iparam.t = t; +0178 iparam.s = s; +0179 iparam.T = T1T2me; +0180 iparam.Tb = Tb; +0181 iparam.Td = Td; +0182 [x,~,~,output] = fminsearchbnd(@(x) fcn_fitMultiModal(x,iparam),... +0183 x0,lb,ub,options); +0184 +0185 % get Jacobian +0186 % therefore we need to switch the 'optim' on to get the correct +0187 % output of 'fcn_fitMultiModal' +0188 iparam.optim = 'on'; +0189 jacobian = estimateJacobian(@(x)fcn_fitMultiModal(x,iparam),x); +0190 end +0191 +0192 % assemble the final RTD +0193 Tdist = 0; +0194 for i = 1:length(x)/3 +0195 mu = exp(x(3*i-2)); % T +0196 sigma = x(3*i-1); % S +0197 amp = x(3*i); % E 0198 -0199 % scale to amplitude -0200 tmp = (tmp/sum(tmp)) * amp; -0201 % add the tmp per mu to Tdist -0202 Tdist = Tdist + tmp; -0203 end -0204 f = Tdist; -0205 % the fitted signal -0206 K = createKernelMatrix(t,T1T2me,Tb,Td,flag,1); -0207 si = K*f'; -0208 -0209 % get the fit -0210 fit_t = t; -0211 fit_s = si; -0212 -0213 % get residuals and error measures -0214 if isfield(parameter,'W') -0215 % when signal gating was used the error estimates need to be adjusted -0216 out = getFitErrors(signal,fit_s,parameter.noise,parameter.W); -0217 else -0218 out = getFitErrors(signal,fit_s,parameter.noise); -0219 end -0220 -0221 % confidence interval -0222 ci = getConfInterval(out.resnorm,jacobian,0.05); -0223 -0224 % sort the relaxation times in ascending order and adjust the confidence -0225 % interval accordingly -0226 T = exp(x(1:3:end)); -0227 S = x(2:3:end); -0228 E = x(3:3:end); -0229 [T,idx] = sort(T); -0230 S = S(idx); -0231 E = E(idx); -0232 ciT = ci(1:3:end); -0233 ciS = ci(2:3:end); -0234 ciE = ci(3:3:end); -0235 ciT = ciT(idx); -0236 ciS = ciS(idx); -0237 ciE = ciE(idx); -0238 ci(1:3:end) = ciT; -0239 ci(2:3:end) = ciS; -0240 ci(3:3:end) = ciE; -0241 -0242 % get "initial" value E0 -0243 switch flag -0244 case 'T1' -0245 K0 = createKernelMatrix(10*time(end),T1T2me,Tb,Td,flag,T1IRfac); -0246 case 'T2' -0247 K0 = createKernelMatrix(0,T1T2me,Tb,Td,flag,T1IRfac); -0248 end -0249 E0 = K0*f'; -0250 -0251 % output struct -0252 fitdata.fit_t = fit_t; -0253 fitdata.fit_s = fit_s; -0254 fitdata.T1T2me = T1T2me(:); -0255 fitdata.T1T2f = f(:); -0256 fitdata.Tlgm = getTLogMean(T1T2me,f); -0257 fitdata.E0 = E0; -0258 fitdata.ciE0 = NaN; -0259 fitdata.resnorm = out.resnorm; -0260 fitdata.residual = out.residual; -0261 fitdata.errornorm = out.errnorm1; -0262 fitdata.lambda_out = 0; -0263 fitdata.rms = out.rms; -0264 fitdata.chi2 = out.chi2; -0265 fitdata.ci = ci; -0266 fitdata.T = T; -0267 fitdata.S = S; -0268 fitdata.E = E; -0269 fitdata.x = x; -0270 fitdata.lb = lb; -0271 fitdata.ub = ub; -0272 fitdata.output = output; -0273 -0274 return +0199 tmp = 1./( sigma*sqrt(2*pi)).*exp(-((log(T1T2me) - log(mu))/ sqrt(2)/sigma).^2); +0200 +0201 % scale to amplitude +0202 tmp = (tmp/sum(tmp)) * amp; +0203 % add the tmp per mu to Tdist +0204 Tdist = Tdist + tmp; +0205 end +0206 f = Tdist; +0207 % the fitted signal +0208 K = createKernelMatrix(t,T1T2me,Tb,Td,flag,1); +0209 si = K*f'; +0210 +0211 % get the fit +0212 fit_t = t; +0213 fit_s = si; +0214 +0215 % get residuals and error measures +0216 if isfield(parameter,'W') +0217 % when signal gating was used the error estimates need to be adjusted +0218 out = getFitErrors(signal,fit_s,parameter.noise,parameter.W); +0219 else +0220 out = getFitErrors(signal,fit_s,parameter.noise); +0221 end +0222 +0223 % confidence interval +0224 ci = getConfInterval(out.resnorm,jacobian,0.05); +0225 +0226 % sort the relaxation times in ascending order and adjust the confidence +0227 % interval accordingly +0228 T = exp(x(1:3:end)); +0229 S = x(2:3:end); +0230 E = x(3:3:end); +0231 [T,idx] = sort(T); +0232 S = S(idx); +0233 E = E(idx); +0234 ciT = ci(1:3:end); +0235 ciS = ci(2:3:end); +0236 ciE = ci(3:3:end); +0237 ciT = ciT(idx); +0238 ciS = ciS(idx); +0239 ciE = ciE(idx); +0240 ci(1:3:end) = ciT; +0241 ci(2:3:end) = ciS; +0242 ci(3:3:end) = ciE; +0243 +0244 % get "initial" value E0 +0245 switch flag +0246 case 'T1' +0247 K0 = createKernelMatrix(10*time(end),T1T2me,Tb,Td,flag,T1IRfac); +0248 case 'T2' +0249 K0 = createKernelMatrix(0,T1T2me,Tb,Td,flag,T1IRfac); +0250 end +0251 E0 = K0*f'; +0252 +0253 % output struct +0254 fitdata.fit_t = fit_t; +0255 fitdata.fit_s = fit_s; +0256 fitdata.T1T2me = T1T2me(:); +0257 fitdata.T1T2f = f(:); +0258 fitdata.Tlgm = getTLogMean(T1T2me,f); +0259 fitdata.E0 = E0; +0260 fitdata.ciE0 = NaN; +0261 fitdata.resnorm = out.resnorm; +0262 fitdata.residual = out.residual; +0263 fitdata.errornorm = out.errnorm1; +0264 fitdata.lambda_out = 0; +0265 fitdata.rms = out.rms; +0266 fitdata.chi2 = out.chi2; +0267 fitdata.ci = ci; +0268 fitdata.T = T; +0269 fitdata.S = S; +0270 fitdata.E = E; +0271 fitdata.x = x; +0272 fitdata.lb = lb; +0273 fitdata.ub = ub; +0274 fitdata.output = output; 0275 -0276 %------------- END OF CODE -------------- +0276 return 0277 -0278 %% License: -0279 % MIT License -0280 % -0281 % Copyright (c) 2022 Thomas Hiller +0278 %------------- END OF CODE -------------- +0279 +0280 %% License: +0281 % MIT License 0282 % -0283 % Permission is hereby granted, free of charge, to any person obtaining a copy -0284 % of this software and associated documentation files (the "Software"), to deal -0285 % in the Software without restriction, including without limitation the rights -0286 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -0287 % copies of the Software, and to permit persons to whom the Software is -0288 % furnished to do so, subject to the following conditions: -0289 % -0290 % The above copyright notice and this permission notice shall be included in all -0291 % copies or substantial portions of the Software. -0292 % -0293 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -0294 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -0295 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -0296 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -0297 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -0298 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -0299 % SOFTWARE. +0283 % Copyright (c) 2022 Thomas Hiller +0284 % +0285 % Permission is hereby granted, free of charge, to any person obtaining a copy +0286 % of this software and associated documentation files (the "Software"), to deal +0287 % in the Software without restriction, including without limitation the rights +0288 % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +0289 % copies of the Software, and to permit persons to whom the Software is +0290 % furnished to do so, subject to the following conditions: +0291 % +0292 % The above copyright notice and this permission notice shall be included in all +0293 % copies or substantial portions of the Software. +0294 % +0295 % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +0296 % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +0297 % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +0298 % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +0299 % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +0300 % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +0301 % SOFTWARE.
    Generated by m2html © 2005
    \ No newline at end of file diff --git a/doc/nucleus/functions/inversion/getConfInterval.html b/doc/nucleus/functions/inversion/getConfInterval.html index 100e87d..eecfcef 100644 --- a/doc/nucleus/functions/inversion/getConfInterval.html +++ b/doc/nucleus/functions/inversion/getConfInterval.html @@ -116,7 +116,7 @@

    SOURCE CODE ^%% degrees of freedom DOF 0041 [i,j] = size(J); -0042 deg_free = i-j; +0042 deg_free = abs(i-j); 0043 0044 %% mean squared error MSE: 0045 mse = sqrt(resnorm/deg_free); @@ -148,7 +148,7 @@

    SOURCE CODE ^if deg_free <= 1000 0072 stud_fac = getStudentInvCDF(1-alpha,deg_free); 0073 else -0074 stud_fac = NaN; +0074 stud_fac = 1;%NaN; 0075 end 0076 end 0077 diff --git a/example_data/bgr/HeliosCPMG/Gna004_15_20A_orig/Gna004_15_20A_orig.hrd b/example_data/bgr/HeliosCPMG/Gna004_15_20A_orig/Gna004_15_20A_orig.hrd new file mode 100644 index 0000000..eaf40c3 --- /dev/null +++ b/example_data/bgr/HeliosCPMG/Gna004_15_20A_orig/Gna004_15_20A_orig.hrd @@ -0,0 +1,3 @@ +26 0.0002 500 465000 128 0 50 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676027292 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-26.89328125 -22.848125 -27.9884375 -22.89 -25.06632812 -21.97789063 -23.7825 -23.35984375 -20.53734375 -23.51640625 -22.00304687 -21.73695312 -19.86476563 -20.53445312 -19.811875 -20.72710938 -18.53765625 -19.19554688 -20.535 -18.89265625 -17.39328125 -18.6728125 -18.82296875 -16.88242187 -16.82757812 -18.3815625 -18.48984375 -17.6428125 -16.36914063 -16.26257813 -16.30710937 -15.41359375 -15.96078125 -15.68492188 -16.22992187 -14.37320312 -14.96765625 -16.191875 -14.41351563 -14.26359375 -15.00132813 -15.44429687 -14.34242187 -14.48140625 -14.23421875 -13.7840625 -13.76078125 -13.67382813 -13.06585938 -13.79023438 -12.18515625 -12.45742187 -12.56007813 -13.31132812 -11.85148438 -12.35140625 -12.66148438 -12.52789062 -11.64242188 -11.07015625 -12.413125 -13.5190625 -10.61773437 -11.395625 -12.04023438 -11.7059375 -10.39023438 -11.54757812 -10.21539062 -10.9071875 -10.60929688 -10.75515625 -11.74007813 -11.44164062 -9.537734375 -10.39304687 -9.929765625 -9.290546875 -9.777734375 -10.36914063 -9.984375 -9.92984375 -9.4421875 -9.822578125 -10.02398437 -9.0734375 -9.565859375 -9.723828125 -8.364296875 -8.576015625 -8.91265625 -8.605 -8.849765625 -8.125234375 -8.37921875 -9.0896875 -10.31492187 -8.116640625 -8.972734375 -9.155078125 -7.557578125 -7.882265625 -8.47484375 -9.07234375 -8.119140625 -8.689609375 -7.371875 -8.42 -7.74984375 -6.822421875 -8.17515625 -7.079921875 -7.44 -7.982734375 -6.763671875 -7.14828125 -7.528828125 -7.408828125 -7.07078125 -7.35109375 -6.288671875 -8.1428125 -6.664140625 -7.315 -6.63296875 -6.31984375 -7.2809375 -6.676875 -7.68625 -7.27171875 -7.2440625 -6.9815625 -6.851796875 -7.039296875 -6.558046875 -7.638515625 -6.814453125 -6.683046875 -6.51234375 -6.131015625 -6.2259375 -6.85578125 -5.953828125 -6.711640625 -6.66078125 -6.8603125 -6.76484375 -5.88703125 -6.066015625 -6.48984375 -6.36421875 -5.893046875 -6.321328125 -5.3228125 -5.38640625 -6.126953125 -6.43671875 -5.710390625 -5.35015625 -5.30453125 -6.49203125 -5.021484375 -5.508515625 -5.81921875 -5.50125 -6.036484375 -6.408125 -4.034453125 -5.7059375 -6.001171875 -6.233828125 -5.6721875 -4.48640625 -5.5253125 -4.64609375 -5.114453125 -5.57390625 -4.7290625 -5.0634375 -5.41765625 -4.762578125 -4.322578125 -4.236640625 -3.84015625 -5.640703125 -5.618515625 -4.8240625 -4.92578125 -5.352734375 -4.6009375 -4.765546875 -4.38546875 -5.62703125 -5.298359375 -4.64921875 -4.602734375 -5.232578125 -3.82421875 -5.01390625 -3.995703125 -5.74046875 -4.716484375 -4.6490625 -4.34625 -5.25765625 -4.496640625 -4.499375 -4.496640625 -4.4425 -4.6309375 -4.243984375 -4.870625 -3.74390625 -4.164765625 -4.12859375 -3.828984375 -4.2871875 -4.54546875 -2.90953125 -4.09734375 -4.318828125 -3.772734375 -3.649765625 -3.844375 -5.056796875 -4.45109375 -4.14671875 -4.53375 -2.479609375 -4.5396875 -4.085234375 -4.3853125 -3.75828125 -3.528046875 -4.797265625 -4.8265625 -4.095546875 -4.389453125 -2.81625 -4.3103125 -3.896328125 -4.3134375 -4.181875 -3.41953125 -3.859296875 -4.373671875 -2.420625 -3.48328125 -3.420234375 -4.339765625 -3.7890625 -4.782265625 -3.657890625 -3.92203125 -4.475859375 -4.054921875 -4.078359375 -2.984921875 -3.84546875 -2.865546875 -3.24265625 -3.465 -2.88359375 -4.093671875 -4.2565625 -2.791875 -3.4534375 -3.532109375 -3.28609375 -3.437578125 -2.7646875 -2.385 -3.226875 -2.8440625 -2.90890625 -2.084921875 -3.074140625 -3.333359375 -3.696328125 -2.918515625 -2.686953125 -3.066328125 -3.05984375 -3.37609375 -3.023125 -4.186953125 -3.664453125 -3.306328125 -2.95453125 -2.43140625 -2.16953125 -3.18296875 -2.482734375 -4.7184375 -3.88390625 -2.00421875 -1.9434375 -3.058671875 -3.209609375 -2.929296875 -3.5215625 -3.00921875 -2.128359375 -2.857421875 -2.832421875 -2.992890625 -2.44 -2.56484375 -3.0071875 -2.69015625 -2.644140625 -3.12546875 -1.816171875 -3.01890625 -3.627109375 -3.0934375 -3.699375 -2.63375 -2.886640625 -2.86703125 -3.09609375 -2.4628125 -2.841953125 -3.039140625 -2.866953125 -2.455859375 -2.763203125 -3.047109375 -3.27828125 -2.477578125 -2.06984375 -2.504765625 -2.523515625 -2.81875 -2.6334375 -1.65046875 -3.747265625 -2.343671875 -1.278125 -2.24171875 -2.944609375 -2.888828125 -2.260703125 -3.423984375 -2.62515625 -1.53875 -2.431953125 -2.47078125 -2.093046875 -2.4296875 -2.58125 -3.2253125 -2.43015625 -3.048359375 -3.20828125 -1.300390625 -2.884375 -3.309921875 -3.21828125 -2.70640625 -1.50546875 -2.6009375 -3.4071875 -2.813203125 -1.969375 -2.2853125 -2.810625 -1.66 -1.99390625 -2.671484375 -2.66828125 -2.406796875 -3.6815625 -2.49453125 -2.755 -1.8503125 -2.7075 -2.263203125 -2.3903125 -2.264609375 -2.945078125 -2.3065625 -1.851328125 -2.4175 -2.14875 -1.906015625 -3.044609375 -2.84546875 -0.578046875 -0.954453125 -1.84890625 -2.187734375 -2.39078125 -2.99453125 -2.42828125 -1.932109375 -2.333515625 -2.176796875 -2.654921875 -2.032421875 -2.296328125 -0.773203125 -1.94640625 -1.656484375 -2.88390625 -1.157421875 -1.94265625 -1.584375 -1.993984375 -2.09296875 -1.659375 -0.9021875 -2.5459375 -2.09328125 -2.900859375 -3.055 -1.934765625 -2.089609375 -0.903515625 -1.61875 -2.0315625 -1.76578125 -1.400703125 -2.3671875 -2.45046875 -0.895625 -1.065546875 -1.372734375 -2.546328125 -2.0521875 -1.429296875 -1.31546875 -1.145625 -1.54828125 -2.860390625 -1.940703125 -1.921484375 -1.418671875 -2.015078125 -1.918359375 -1.291328125 -1.44703125 -2.21828125 -1.310703125 -1.57515625 -1.97640625 -1.927734375 -1.4803125 -1.74203125 -2.421484375 -0.905625 -1.911640625 -1.658828125 -1.130703125 -1.797890625 -1.09453125 -1.653828125 -1.073515625 -1.580546875 -0.9278125 -2.060859375 -0.557890625 -1.51984375 -1.765859375 -1.227265625 -2.87484375 -1.8115625 -1.461875 -1.295 -2.165078125 -2.379296875 -0.667265625 -1.03171875 -2.25421875 -1.29578125 -0.848828125 -0.62609375 -2.064375 -2.021171875 -1.906015625 -0.72078125 -1.355859375 -1.977265625 -1.3471875 -2.08703125 -1.307109375 -0.77421875 -1.728359375 -1.47 -1.625078125 -2.812265625 -1.278515625 -2.165703125 -0.943671875 -0.99140625 -1.98234375 -1.624296875 -1.32984375 -1.608359375 -2.46953125 +-28.20398438 -37.61382812 -29.25992187 -32.69789062 -28.31828125 -31.71570313 -29.88804688 -27.42375 -27.44585938 -28.28789062 -26.24492187 -27.04539062 -25.86859375 -25.940625 -25.6146875 -23.32726562 -24.56109375 -24.7103125 -23.52742188 -24.22015625 -23.32617188 -22.78984375 -22.8628125 -22.69679688 -22.61421875 -22.56867187 -19.574375 -21.34085938 -21.9596875 -20.57914063 -20.52367188 -21.02914063 -21.11507813 -20.44085937 -18.94992188 -20.12554688 -19.13953125 -18.46414062 -17.88257812 -19.50835938 -18.98234375 -17.74265625 -18.06554687 -17.10304688 -18.04914062 -18.10492187 -16.40085937 -17.09515625 -18.25671875 -16.14023437 -15.841875 -15.23609375 -17.38914062 -15.62046875 -15.36328125 -16.30546875 -16.05140625 -15.20648438 -15.3021875 -16.19226563 -15.08015625 -14.1009375 -13.53132812 -14.05210938 -13.35359375 -14.3034375 -13.29039063 -14.74625 -14.54664063 -13.67359375 -14.65140625 -14.03039063 -11.9253125 -12.72023438 -13.06132812 -13.3553125 -13.36007812 -12.47578125 -12.85148438 -13.5334375 -12.08679687 -10.99101562 -12.59101563 -12.1521875 -11.73804688 -12.16515625 -11.29210938 -11.27789062 -11.25265625 -10.43328125 -11.33070312 -12.00234375 -10.95148437 -10.35578125 -11.92445312 -11.35289063 -10.6875 -11.45492188 -11.27875 -11.49539063 -10.06054688 -9.85765625 -11.0321875 -10.80117187 -10.41710938 -10.93976562 -10.21632813 -10.35742188 -10.37734375 -10.01210937 -10.05054688 -10.43429687 -9.801796875 -10.7340625 -10.54859375 -9.813515625 -9.949609375 -9.72765625 -11.00867187 -8.00390625 -9.412578125 -9.330234375 -9.1028125 -7.7528125 -7.525546875 -9.880546875 -9.250859375 -9.144765625 -9.154140625 -9.321328125 -8.73484375 -9.514296875 -9.212265625 -8.8471875 -7.715 -7.630703125 -7.95234375 -7.45234375 -8.085390625 -9.086015625 -8.2446875 -8.41921875 -6.864609375 -7.58140625 -7.747265625 -7.987421875 -8.26390625 -7.217265625 -7.83125 -8.440234375 -7.43625 -7.923828125 -6.870859375 -6.3790625 -7.9671875 -7.34921875 -7.988046875 -7.81609375 -7.775 -7.946015625 -6.860859375 -6.8771875 -6.85265625 -7.88359375 -7.144921875 -6.357109375 -6.745546875 -6.69359375 -6.7025 -6.907890625 -6.06671875 -7.2915625 -7.065078125 -7.158828125 -6.445859375 -7.613515625 -7.370625 -6.442421875 -6.907890625 -6.8575 -6.4915625 -6.545703125 -6.95421875 -6.0625 -7.06875 -6.111484375 -6.184296875 -6.253828125 -7.215078125 -6.29453125 -5.778203125 -6.450859375 -5.22203125 -5.435078125 -5.293671875 -6.3609375 -6.021875 -6.27 -6.986875 -5.558046875 -5.777421875 -5.04203125 -6.121328125 -5.328671875 -5.931484375 -5.9903125 -5.930234375 -6.994609375 -5.979140625 -6.065078125 -5.42734375 -5.53734375 -5.14890625 -5.361328125 -5.552890625 -5.75953125 -5.24375 -5.74703125 -5.44515625 -4.1728125 -5.25890625 -4.756171875 -4.99 -5.143515625 -4.4665625 -4.805625 -6.665234375 -5.10609375 -5.453671875 -5.263671875 -5.50875 -4.35765625 -4.2940625 -5.489296875 -4.52515625 -3.10671875 -5.115390625 -4.64203125 -5.56671875 -4.610546875 -3.88 -5.448125 -4.555625 -4.3328125 -5.084609375 -5.761328125 -4.38078125 -4.12484375 -5.110234375 -4.39734375 -4.306875 -5.405234375 -4.762890625 -4.874921875 -4.71859375 -3.962734375 -3.93046875 -3.998046875 -3.665546875 -3.89078125 -5.068046875 -4.6553125 -4.014765625 -4.015625 -3.41765625 -4.650546875 -4.841015625 -3.7165625 -4.60203125 -4.1890625 -4.642578125 -4.9546875 -3.8353125 -3.74796875 -4.625390625 -4.9071875 -4.375078125 -4.95546875 -4.24578125 -4.08140625 -4.35328125 -3.530859375 -3.64734375 -3.552109375 -4.06484375 -4.069375 -3.293125 -3.753984375 -4.064375 -3.3909375 -4.08828125 -3.844453125 -4.54328125 -3.191953125 -3.257578125 -3.169140625 -3.774296875 -3.782109375 -3.78296875 -4.41828125 -4.11546875 -3.172890625 -4.20640625 -3.628046875 -3.764765625 -3.04765625 -4.207578125 -3.10640625 -3.536953125 -3.47390625 -4.914140625 -3.833984375 -3.61109375 -3.812109375 -2.994765625 -4.065859375 -3.470234375 -3.312421875 -3.80875 -3.6146875 -3.38296875 -2.35921875 -3.667265625 -3.11953125 -3.3109375 -2.771328125 -4.325078125 -3.601015625 -2.2684375 -3.304765625 -2.8690625 -3.723828125 -3.224765625 -3.70015625 -3.737734375 -3.100078125 -3.659140625 -2.936640625 -2.846640625 -3.5103125 -3.51109375 -3.202421875 -5.326875 -2.329375 -3.85609375 -1.892109375 -2.586015625 -3.84484375 -3.008125 -4.0403125 -3.65625 -2.89671875 -3.763515625 -2.215546875 -3.518515625 -3.150078125 -3.020078125 -3.412109375 -1.57140625 -2.900234375 -3.231953125 -3.876328125 -2.09546875 -1.753828125 -3.6634375 -3.511015625 -3.256484375 -3.036640625 -3.0871875 -3.982265625 -3.371484375 -3.028828125 -3.638203125 -3.366328125 -2.732265625 -1.831953125 -2.7221875 -2.04515625 -1.336484375 -3.24390625 -2.628203125 -2.29296875 -2.26859375 -2.04203125 -3.039765625 -3.02828125 -2.616640625 -3.438671875 -2.32328125 -2.268984375 -2.234140625 -3.828671875 -1.674140625 -2.47859375 -2.386328125 -2.75421875 -2.607734375 -2.876875 -3.17640625 -2.16703125 -2.399609375 -3.379453125 -2.78625 -2.8246875 -2.05875 -3.1225 -2.293828125 -1.69671875 -1.6884375 -2.7590625 -2.836328125 -3.11609375 -3.463828125 -2.145546875 -2.324140625 -2.468671875 -2.631015625 -2.19546875 -1.98 -2.74453125 -2.0271875 -2.322265625 -3.80453125 -3.106875 -1.9415625 -2.345234375 -2.339609375 -2.445859375 -1.87234375 -2.62578125 -2.23765625 -2.909453125 -1.693515625 -2.65046875 -2.112578125 -2.655078125 -1.8 -3.3646875 -2.19203125 -2.3690625 -2.733828125 -2.69140625 -2.94765625 -2.696796875 -2.0015625 -2.119375 -3.120078125 -1.269140625 -2.8396875 -2.5984375 -2.091875 -2.1778125 -2.183984375 -2.87 -2.705390625 -2.873359375 -2.679453125 -2.63765625 -2.18078125 -2.158203125 -2.776640625 -2.037578125 -3.02984375 -1.546171875 -2.62 -2.906953125 -1.83203125 -2.84984375 -2.302734375 -2.78703125 -1.936484375 -1.62875 -2.684453125 -2.687734375 -1.84640625 -2.301640625 -1.25921875 -2.672578125 -2.4215625 -1.163671875 -1.142734375 -1.782265625 -2.9965625 -2.23234375 -2.231875 -1.27203125 -2.9753125 -1.8759375 -2.7190625 -1.188359375 -1.919296875 -1.6671875 -2.04453125 -1.9665625 -0.67203125 -2.236484375 -2.574140625 -1.427265625 -2.767734375 -1.914453125 diff --git a/example_data/bgr/HeliosCPMG/Gna004_15_20A_orig/Gna004_15_20A_orig_ref.hrd b/example_data/bgr/HeliosCPMG/Gna004_15_20A_orig/Gna004_15_20A_orig_ref.hrd new file mode 100644 index 0000000..25461ce --- /dev/null +++ b/example_data/bgr/HeliosCPMG/Gna004_15_20A_orig/Gna004_15_20A_orig_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 500 465000 128 0 50 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676027292 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-0.011171875 -0.03234375 -0.001171875 0.0071875 -0.0125 -0.01578125 0.000859375 0.001796875 -0.019921875 -0.005546875 -0.00796875 -0.003359375 -0.0115625 -0.008046875 -0.002890625 -0.008203125 0.003125 -0.001953125 -0.000625 0.006953125 0.00734375 0.0221875 -0.00140625 0.013671875 -0.009453125 0.003359375 0.000546875 0.002421875 0.00171875 -0.0128125 -0.0153125 -0.00796875 0.008515625 -0.00109375 0.00265625 -0.009609375 0.012265625 0 0.01046875 -0.02046875 0.01359375 7.8125e-05 0.000234375 0.000859375 -0.004609375 0.0028125 -0.02578125 -0.00625 -0.01171875 -0.01421875 -0.005234375 7.8125e-05 0.00046875 0.00515625 -0.008203125 -0.012890625 -0.00453125 0.00328125 -0.0096875 0.00625 0.00046875 0.012265625 -0.002421875 0.00453125 -0.014609375 -0.015546875 0.0115625 0.00171875 -0.00515625 -0.002109375 -0.00796875 -0.001640625 0.02125 0.0046875 -0.01765625 0.011796875 -0.006875 0.00875 -0.008046875 0.004609375 7.8125e-05 0.006015625 -0.001171875 -0.00015625 -0.010390625 -0.001015625 -0.006640625 0.0040625 -0.005546875 -0.009453125 -0.01359375 -0.00046875 -0.007578125 0.003125 0.0034375 -0.018984375 0.00953125 0.001484375 -0.006328125 -0.00234375 0.006875 -0.00578125 0.0040625 -0.00015625 0.004921875 -0.001640625 -0.006171875 0.006015625 0.0065625 0.00421875 -0.010234375 -0.008359375 0.015 0.00734375 0.00234375 -0.007421875 0.015 -0.0071875 -0.01 -0.0021875 -0.000859375 -0.00890625 0.005859375 0.012890625 -0.01515625 -0.011328125 0.000546875 -0.008359375 -0.0075 -0.014375 0.0028125 0.0153125 -0.005234375 -0.013203125 0.006796875 -0.007109375 0.003828125 0.005234375 0 -0.009765625 -0.0059375 0.001484375 0.001484375 -0.01375 -0.0084375 0.008671875 -0.007421875 0.00640625 -0.00359375 -0.009296875 -0.017890625 0.001640625 -0.00359375 -0.00078125 0.01109375 -0.00203125 0.0021875 0.01625 -0.008828125 0.003125 0.002578125 0.01640625 0.0084375 -0.010234375 0.00171875 -0.004375 -0.004140625 -0.006328125 -0.004921875 0.0021875 0.00578125 -0.011484375 0.0203125 -0.00890625 0.003515625 0.001640625 -0.0065625 -0.011953125 0.0009375 0.0084375 -0.0109375 -0.00109375 -0.006875 0.001171875 0.009453125 0.001875 0.009921875 0.0028125 0.012890625 -0.0034375 -0.013828125 0.00734375 0.002734375 0.008671875 -0.00515625 0.008203125 -0.017421875 -0.001796875 -0.001171875 0.00859375 -0.007265625 -0.00140625 -0.007578125 0.011875 0.00140625 0.0090625 -0.011484375 -0.011640625 0.002109375 0.00765625 -0.00046875 0.021640625 0.00015625 -0.00609375 0.01078125 -0.01203125 -0.00484375 0.000390625 0.004921875 -0.000390625 0.009375 -0.013515625 -0.004609375 -0.01265625 0.00875 0.003359375 0.00109375 -0.0003125 0.00765625 0.011953125 0.00625 0.003828125 -0.005625 0.015390625 0.006875 0.0053125 -0.00078125 0.01640625 -0.0009375 0.003046875 -0.00359375 0.00390625 -0.004765625 0.0090625 -0.007421875 -0.010625 -0.00015625 -0.013203125 0.005078125 -0.014921875 -0.006953125 -0.01015625 -0.00859375 -0.01234375 0.0075 0.00171875 -0.003671875 -0.010234375 0.009453125 -0.01359375 0.004140625 -0.002421875 -0.006015625 0.00515625 -0.01421875 -0.0203125 -0.004296875 -0.003046875 -0.012421875 0.007578125 0.007734375 -0.004609375 -0.018046875 0.006171875 -0.00609375 -0.004140625 0.005703125 -0.000625 -0.002109375 0.009609375 0.01296875 -0.0034375 0.00859375 -0.001484375 0.00796875 0.002265625 -0.013359375 -0.011953125 0.000703125 0.003515625 0.010703125 0.013203125 -0.01328125 -0.00359375 0.00296875 -0.003515625 -0.00109375 -0.001484375 0.0059375 -0.001484375 -0.013828125 -0.0046875 -0.0078125 -0.013203125 -0.01625 0.00359375 0.00484375 -0.003359375 -0.00203125 -0.006953125 -0.006015625 -0.0084375 -0.0021875 -0.00828125 0.002734375 0.009375 0.00171875 -0.005234375 0.0109375 -0.0015625 -0.001953125 0.017734375 0.0109375 -0.001640625 -0.000234375 0.00859375 -0.00921875 -0.00171875 0.01375 -0.000390625 0.0015625 0.006328125 -0.007421875 0.01421875 0.0046875 0.0215625 -0.01265625 0.0096875 -0.003359375 -0.01609375 0.01359375 -0.003359375 -0.004453125 -0.003828125 -0.01515625 -0.002734375 0.0153125 0.005390625 -0.013046875 -0.000703125 0.00578125 -0.00890625 0.014609375 0.009140625 7.8125e-05 0.0190625 0.00546875 0.005546875 -0.000703125 -0.011796875 -0.000234375 0.018515625 0.0078125 -0.01265625 0.00265625 0.002734375 -0.007265625 -0.0015625 0.00125 -0.015859375 0.013984375 -0.008046875 -0.01734375 0.01171875 -0.00765625 0.00171875 -0.009453125 -0.001015625 -0.01359375 -0.00328125 -0.0225 0.012265625 -0.008203125 -0.006328125 -0.000625 0.01078125 -0.00953125 0.0040625 0.005078125 -0.0084375 -0.00765625 -0.010859375 0.007734375 -0.006640625 0.00953125 0.000859375 -0.008203125 0.011328125 -0.00421875 0.002890625 -0.006484375 0.00515625 0.01546875 -0.001640625 -0.002734375 -0.004375 0.0053125 0.000234375 -0.002109375 -0.013828125 0.01 -0.0121875 -0.0096875 -0.00796875 -0.006796875 -0.00796875 -0.01578125 -0.0115625 -0.019453125 0.001796875 0.005625 -0.008671875 0.001171875 0.002109375 -0.00046875 0.00046875 -0.01546875 -0.01171875 -0.008671875 -0.001875 -0.01375 -0.01046875 0.013671875 0.005546875 -0.00859375 0.005703125 0.007890625 0.001875 0.001015625 0.01203125 0.006953125 0.01234375 0.008984375 0.00921875 0.003046875 -0.01078125 -0.006953125 -0.001171875 0.020078125 0.018359375 0.005 -0.0084375 0.013984375 -0.009921875 0.007578125 0.007109375 -0.01421875 0.0084375 0.01828125 0.0003125 0.00140625 0.009375 -0.009453125 -0.005546875 -0.00109375 0.00671875 -0.00125 -0.00046875 -0.001015625 -0.00125 -0.008828125 -0.005625 -0.002578125 0.014375 0.0121875 -0.004921875 0.00546875 -0.011015625 0.00640625 0.0140625 -0.0090625 0.000234375 0.0084375 0.012421875 -0.00421875 0.010546875 0.007734375 0.00890625 0.003984375 0.00015625 0.015546875 -0.010078125 -0.001328125 -0.011015625 0.013515625 -0.00296875 0.004765625 0.0009375 0.0046875 -0.0015625 +-7.8125e-05 -0.000703125 -0.01078125 0.0096875 0.011953125 0.005703125 0.0075 0.01 0.019921875 -0.008828125 -0.015703125 0.0059375 0.000703125 -0.000234375 -0.000625 0.015859375 -0.002578125 -0.02125 0.00078125 -0.012109375 0.00015625 0.00640625 -0.00578125 -0.00234375 0.01078125 0.01046875 -0.00109375 0.005859375 0.001484375 0.0109375 0.012109375 0.005078125 -0.00984375 0.01109375 -0.004140625 -0.008828125 0.00921875 0.01234375 -0.01375 0.010234375 -0.0090625 0.0109375 0.010078125 -0.00578125 -0.005078125 -0.011796875 0.016875 -0.002578125 0.00171875 0.005 -0.001796875 -0.016171875 0.007890625 -0.002421875 0.000234375 -0.00515625 -0.008203125 -0.005703125 -0.0040625 0.00671875 0.00390625 -0.0009375 -0.0025 -0.004296875 0.0115625 0.000390625 0.0009375 -0.016171875 0.004453125 0.003046875 7.8125e-05 -0.00640625 -7.8125e-05 0.003671875 -0.00234375 0.0146875 0.010546875 -0.00796875 -0.0009375 0.009609375 -0.00453125 0.011328125 0.003203125 -0.005 -0.008125 0.0134375 0.008984375 -0.003828125 0.014296875 0.012265625 0.001875 0.00625 -0.009453125 -0.006796875 -0.01078125 -0.0046875 0.003671875 -0.01671875 0.010390625 0.0225 -0.011328125 0.012109375 7.8125e-05 0.011484375 -0.008046875 0.01140625 -0.004765625 0.00625 0.0078125 0.006171875 0.006640625 -0.00171875 -0.00234375 -0.01015625 -0.00578125 0.00359375 -0.003515625 0.003515625 -0.01109375 -0.00484375 0.00875 -0.001640625 -0.00546875 -0.0015625 -0.005703125 -0.00015625 -0.0015625 -0.00859375 -0.0021875 -0.01125 -0.012265625 0.008046875 0.006640625 0.016171875 0.004765625 -0.009453125 -0.012265625 -0.00546875 -0.00765625 0.01203125 -0.00140625 0.003359375 0.00984375 0.020625 0.00875 0.012109375 0.01125 -0.001640625 0.005390625 -0.00671875 -0.0153125 -0.001484375 -0.0128125 -0.006640625 0.00359375 0.0159375 0.0040625 -0.002578125 -0.01390625 0.00859375 -0.01734375 0.022421875 -0.000703125 0.0046875 -0.010234375 0.01078125 -0.0165625 -0.001875 0.00140625 -0.00640625 -0.01171875 -0.003984375 -0.003203125 0.000390625 -0.00671875 -0.006328125 0.00375 0.001171875 0.000859375 -0.00578125 0.00875 0.0071875 0.011484375 -0.001484375 -0.00140625 -0.003984375 0.004375 0.00015625 0.008515625 0.007421875 0.015859375 0.024765625 0.0159375 0.00671875 0.009140625 0.026640625 -0.0125 -0.0121875 -0.0015625 0.004921875 0.003125 0.00234375 0.00328125 0.00109375 -0.010078125 0.0025 0.011875 0.012265625 0.01359375 -0.000234375 -0.011015625 0.006171875 -0.0046875 -0.00171875 -0.013359375 0.010703125 0.00109375 -0.023046875 0.010234375 -0.023046875 -0.01109375 -0.011640625 0.024140625 -0.01046875 0.0125 0.01265625 0.00140625 0.009375 -0.001015625 -0.011875 -0.000703125 0.0015625 0.011484375 -0.00234375 -0.01328125 0.00140625 0.00671875 -0.0034375 -0.002734375 0.00375 0.00421875 -0.00515625 0.00578125 0.001015625 -0.00125 -0.020546875 -0.012890625 -0.002421875 -0.016171875 -0.00171875 0.000859375 0.00859375 -0.0009375 -0.014453125 0.001796875 0.00453125 -0.003203125 -0.0065625 -0.00296875 -0.01171875 0.00390625 -0.001796875 0.007890625 0.008515625 -0.004140625 0.02125 0.001484375 -0.006484375 0.012109375 -0.005546875 0.003515625 -0.005703125 0.02109375 0.0115625 0.00171875 -0.0046875 -0.01984375 0.0153125 -0.0090625 0.007578125 -0.013046875 -0.002421875 0.001015625 -0.008125 0.021328125 -0.01171875 0.00421875 -0.017109375 0.0090625 0.0103125 -0.00375 0.0090625 0.002890625 -0.004765625 0.002890625 0.00890625 -0.008203125 -0.003828125 -0.006953125 0.0059375 -0.004140625 -0.01546875 -0.01453125 -0.01203125 0.0034375 0.011328125 0.000546875 -0.008828125 -0.001484375 -0.002421875 0.01859375 -0.0003125 0.00609375 0.012421875 -0.010390625 0.001328125 0.003359375 -0.009921875 0.010078125 0.0115625 -0.010234375 0.0090625 0.016640625 0.015625 -0.024609375 -0.001015625 0.00578125 0.004140625 0.009453125 -0.003984375 0 -0.00625 0.006171875 -0.01015625 -0.01546875 0.0034375 0.00671875 0.002109375 0.001484375 -0.019453125 -0.0096875 0.013984375 -0.00828125 -0.003203125 -0.012578125 -0.0046875 0.005234375 0.002109375 0.005234375 0.0128125 0.024765625 0.013671875 0.01078125 0.0065625 0.006328125 0.0134375 -0.011484375 0.00265625 -0.017578125 -0.007265625 -0.008359375 0.0234375 -0.001953125 0.000546875 0.00140625 0.006328125 -0.002109375 -0.0046875 -0.006328125 0.0003125 -0.009140625 0.0071875 -0.009921875 0.011171875 0.011875 -0.003984375 -0.01921875 0.01625 -0.023984375 0.00015625 -7.8125e-05 0.001484375 -0.015234375 -0.007890625 0.003359375 0.002109375 -0.00109375 -0.005 0.006328125 -0.003984375 0.005078125 0.002890625 -0.005703125 0.004921875 0.0078125 -0.01734375 0.004765625 -0.015234375 0.00984375 0.011484375 -0.00171875 -0.00765625 0.0090625 -0.002421875 -0.003828125 -0.000703125 -0.00546875 0.011875 0.006953125 -0.002109375 0.010234375 -0.01359375 -0.003359375 -0.01296875 -0.005078125 -0.00125 -0.01234375 0.002734375 0.0065625 0.0009375 -0.012578125 -0.00390625 -0.001171875 0.013671875 -0.012890625 0.0059375 -0.006171875 -0.012734375 0.007421875 -0.003515625 -0.009296875 0.003359375 -0.001328125 0.011640625 7.8125e-05 0.011796875 -0.010546875 -0.00453125 -0.009296875 -0.021953125 0.010078125 -0.005859375 0.00453125 -0.0028125 -0.0009375 -0.017265625 -0.002734375 7.8125e-05 0.004140625 0.00296875 -0.02515625 -0.0028125 0.002265625 0.0121875 0.010234375 0.01453125 -0.0059375 -0.001875 -0.000234375 -0.00453125 -0.003203125 0.008984375 -0.008359375 -0.020546875 -0.00796875 0.006328125 0.001328125 -0.00390625 0.016015625 0.000703125 0.006328125 -0.003828125 0.005234375 0.0021875 -0.00703125 0.003203125 -0.001875 -0.0046875 0.00203125 0.006796875 0.0046875 0.010859375 0.012890625 0.00859375 -0.001875 0.000625 0.0259375 0.01078125 0.01171875 0.00046875 -0.002109375 -0.00828125 -0.00890625 0.015625 7.8125e-05 0.006015625 0.008046875 -0.011171875 0.012890625 -0.000234375 diff --git a/example_data/bgr/HeliosCPMG/Gna004_15_20B_orig/Gna004_15_20B_orig.hrd b/example_data/bgr/HeliosCPMG/Gna004_15_20B_orig/Gna004_15_20B_orig.hrd new file mode 100644 index 0000000..4bf3f07 --- /dev/null +++ b/example_data/bgr/HeliosCPMG/Gna004_15_20B_orig/Gna004_15_20B_orig.hrd @@ -0,0 +1,3 @@ +26 0.0002 500 465000 128 0 50 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676029826 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-27.23046875 -23.13710938 -28.93054688 -22.53164063 -24.88125 -22.41914063 -24.70085938 -24.06429688 -20.56351563 -22.46257813 -21.29609375 -20.87492187 -19.17015625 -20.07695312 -20.40859375 -20.16890625 -17.79890625 -20.408125 -20.02828125 -18.9384375 -17.16804688 -18.509375 -18.41429688 -17.46984375 -16.76109375 -17.86242187 -18.64820312 -16.35203125 -17.20734375 -17.58421875 -17.53171875 -15.64109375 -17.19648438 -16.04046875 -15.08335938 -14.78375 -14.46382812 -15.950625 -15.89390625 -13.83632812 -13.91601563 -14.520625 -14.58710938 -13.75742188 -15.35335938 -13.87804688 -13.55765625 -12.91085937 -13.81671875 -14.88695312 -13.90382813 -12.89007813 -12.48273437 -12.88539062 -11.83773438 -11.0965625 -12.63265625 -13.50335938 -11.89757813 -11.81664062 -11.67273437 -11.9128125 -10.9634375 -10.779375 -11.76695313 -10.35351563 -10.43109375 -11.36484375 -10.92523438 -11.22546875 -10.14921875 -11.18609375 -11.13703125 -10.869375 -10.34164063 -10.00429687 -11.2190625 -10.1484375 -9.739609375 -9.849453125 -11.00046875 -9.405859375 -9.613984375 -8.071953125 -9.646640625 -9.307265625 -9.3628125 -10.12976562 -9.30921875 -8.234453125 -9.525703125 -10.535 -9.188046875 -8.135703125 -7.605859375 -9.62515625 -9.388046875 -7.962578125 -8.7053125 -9.205390625 -8.942890625 -7.116640625 -8.141796875 -7.780078125 -7.878046875 -7.915859375 -8.25015625 -8.2509375 -8.471171875 -6.72140625 -7.95578125 -8.0525 -7.528671875 -6.598046875 -8.02859375 -8.941796875 -7.31296875 -7.6159375 -9.544921875 -8.488828125 -8.553671875 -6.755 -7.45953125 -8.03171875 -6.576484375 -6.298828125 -6.57890625 -7.43984375 -6.689375 -7.39296875 -7.09578125 -6.53671875 -6.187265625 -7.108671875 -6.472265625 -6.43046875 -5.797265625 -6.205390625 -5.969140625 -6.07875 -6.24 -7.5828125 -6.79234375 -4.985703125 -5.62421875 -6.548359375 -6.537421875 -5.2909375 -7.0225 -6.6075 -6.42625 -5.5878125 -5.79 -6.28859375 -6.40296875 -5.85421875 -6.642421875 -5.08484375 -6.359375 -4.98203125 -4.98953125 -6.864765625 -4.782734375 -5.34984375 -5.409609375 -6.2359375 -5.7190625 -5.099296875 -6.0321875 -5.651171875 -3.818671875 -5.272265625 -4.89703125 -4.962421875 -4.661484375 -5.5640625 -5.01 -5.598984375 -4.641796875 -5.594609375 -6.92921875 -5.07765625 -5.545390625 -4.825234375 -5.459453125 -5.419453125 -3.936015625 -4.604375 -5.728984375 -4.94875 -4.9553125 -4.39359375 -4.944375 -5.212421875 -4.353515625 -4.340703125 -4.314765625 -5.51609375 -4.021640625 -4.688984375 -4.935625 -4.285390625 -3.5046875 -5.363515625 -4.881796875 -4.20546875 -4.614296875 -4.546484375 -4.329296875 -3.51953125 -4.071640625 -3.871953125 -4.24234375 -3.5971875 -4.05484375 -3.9471875 -3.7053125 -3.7003125 -4.53 -3.92359375 -4.193984375 -3.330078125 -4.94890625 -4.95640625 -3.88625 -3.353671875 -4.941171875 -4.0153125 -4.1609375 -3.228359375 -3.083828125 -3.49046875 -4.003203125 -2.8621875 -3.7790625 -3.618515625 -3.410703125 -3.5121875 -3.753359375 -4.476640625 -3.49140625 -3.93 -4.412265625 -2.83 -2.988671875 -4.03609375 -2.736328125 -3.848828125 -3.505078125 -3.661171875 -3.464921875 -3.6403125 -3.210546875 -3.819453125 -3.748671875 -2.91625 -4.321328125 -3.0409375 -3.828125 -3.319609375 -2.69890625 -3.5125 -3.623203125 -3.64109375 -3.9365625 -3.865859375 -3.89515625 -3.005625 -2.641875 -3.461875 -2.69546875 -2.8215625 -3.397265625 -3.385703125 -2.60203125 -4.220390625 -4.216484375 -2.960625 -2.85875 -3.11984375 -3.122890625 -4.497578125 -3.4015625 -1.978828125 -3.413984375 -3.63109375 -2.794609375 -3.093203125 -3.611015625 -3.172890625 -3.193125 -3.406171875 -2.976796875 -3.659375 -1.814296875 -3.367578125 -2.697734375 -2.284140625 -3.08828125 -2.82671875 -2.5996875 -2.9771875 -2.989921875 -2.0859375 -2.224453125 -2.51765625 -2.814140625 -2.013671875 -3.160859375 -2.185 -2.36984375 -2.3271875 -2.837421875 -2.07 -1.832109375 -2.105625 -3.06671875 -2.902578125 -2.319453125 -2.778203125 -2.9871875 -2.862578125 -2.980546875 -2.829765625 -3.13609375 -2.719296875 -2.13828125 -1.669375 -2.51125 -2.27921875 -2.8146875 -2.92359375 -2.440234375 -2.14296875 -2.055390625 -2.38484375 -2.176953125 -3.7865625 -2.47140625 -2.037734375 -2.784296875 -3.340078125 -2.15671875 -1.54015625 -2.366484375 -3.562578125 -2.404765625 -3.16140625 -2.1790625 -2.998515625 -1.80109375 -2.66578125 -2.822734375 -1.87140625 -3.66890625 -2.525859375 -2.74421875 -1.265703125 -1.792578125 -2.26546875 -2.234375 -2.0325 -2.52359375 -2.353671875 -2.038046875 -2.12046875 -1.946484375 -1.94625 -1.083515625 -1.86453125 -2.345625 -2.00953125 -1.3721875 -2.229765625 -2.41078125 -2.29953125 -2.215546875 -2.844765625 -3.093515625 -2.313984375 -3.2946875 -1.116328125 -2.315859375 -1.585625 -1.928984375 -1.90890625 -2.2721875 -1.177578125 -2.405859375 -1.3434375 -2.354375 -1.902109375 -2.1496875 -2.78875 -2.906640625 -2.224765625 -2.2071875 -1.944375 -1.098515625 -2.19046875 -2.330859375 -2.41390625 -1.648671875 -1.10265625 -3.112265625 -2.2509375 -0.331796875 -0.662109375 -2.176796875 -1.9146875 -2.245703125 -1.54359375 -1.167578125 -2.37765625 -2.0021875 -2.25125 -2.09359375 -2.3096875 -1.20546875 -0.9153125 -1.6590625 -1.18453125 -1.724140625 -2.14140625 -2.78 -1.292578125 -1.861171875 -2.5128125 -2.051640625 -1.836328125 -2.17328125 -0.893125 -1.411953125 -2.1 -2.01703125 -1.71625 -1.854375 -1.444609375 -1.570546875 -2.115625 -1.284375 -1.935 -0.867265625 -1.541953125 -2.061015625 -1.825859375 -1.8328125 -1.440390625 -1.506328125 -1.7696875 -0.929453125 -2.024296875 -2.494296875 -1.6134375 -1.7275 -0.9059375 -2.3309375 -1.73484375 -1.4565625 -1.063203125 -2.356171875 -1.909453125 -1.40140625 -2.410625 -2.268515625 -1.698359375 -2.085859375 -2.1115625 -0.968046875 -1.008203125 -2.64875 -1.66046875 -1.455859375 -0.775390625 -0.341640625 -1.93515625 -2.03171875 -0.636953125 -1.74765625 -1.857421875 -1.5965625 -2.090078125 -1.183515625 -0.359375 -1.9984375 -0.60375 -2.2575 -2.086328125 -1.786796875 -2.76375 -1.7675 -1.981953125 -1.0796875 -1.2446875 -1.831796875 -2.21734375 -0.63609375 -1.2803125 -1.60359375 -1.228359375 +-28.87929688 -37.27289063 -28.34546875 -31.97664063 -27.9171875 -32.2459375 -29.00804688 -27.67 -28.80375 -28.66546875 -26.7725 -25.91226562 -26.430625 -26.43992187 -25.48671875 -23.59476563 -25.58320313 -25.4396875 -22.8990625 -24.32726562 -23.7590625 -23.67140625 -22.98296875 -22.67703125 -21.64359375 -22.1815625 -21.04679687 -20.8990625 -20.64148438 -20.831875 -19.35804687 -20.15898437 -21.0209375 -19.21054687 -19.1915625 -19.46171875 -20.12429687 -19.01640625 -16.7171875 -17.4534375 -18.43226562 -18.06546875 -17.89742187 -17.8790625 -16.39734375 -17.1584375 -16.82585938 -17.49554687 -19.08578125 -17.08632813 -15.67351563 -15.63117187 -15.88132812 -16.29523437 -16.5515625 -15.57710937 -16.08132812 -14.84875 -14.99390625 -16.04804688 -16.07492188 -13.4296875 -14.28914062 -15.32578125 -13.78820313 -13.14273437 -14.2253125 -14.93484375 -14.3475 -13.9740625 -12.573125 -13.84851562 -12.86085938 -13.09929688 -13.26757813 -13.95546875 -12.20476563 -12.10921875 -11.8575 -12.31226563 -13.26015625 -12.06789063 -12.36695313 -12.93148438 -12.1371875 -12.78695313 -12.329375 -12.31765625 -10.56640625 -12.31148437 -12.13046875 -10.63070313 -10.46820313 -11.19296875 -10.85742188 -10.99984375 -10.9115625 -10.10578125 -10.95976562 -10.79796875 -10.4378125 -10.38632813 -11.96421875 -10.53226563 -9.281953125 -10.71375 -10.51664063 -10.65960938 -9.237578125 -10.4778125 -9.53515625 -10.88046875 -10.16773438 -9.763125 -9.92046875 -9.988515625 -8.942890625 -10.25882813 -9.930703125 -8.5771875 -9.094921875 -9.63546875 -9.148359375 -9.14375 -8.756875 -8.552421875 -9.297578125 -9.26125 -9.0978125 -8.97859375 -8.106875 -9.13875 -10.08523438 -8.1196875 -8.35484375 -7.72734375 -8.826328125 -8.659921875 -8.503671875 -7.959140625 -8.17765625 -8.516796875 -7.9084375 -7.8390625 -7.560078125 -8.460234375 -8.617890625 -8.436015625 -8.85390625 -8.610546875 -6.831171875 -7.708203125 -7.31921875 -7.282265625 -7.031796875 -6.98265625 -7.848359375 -7.32015625 -7.241484375 -7.629296875 -7.80859375 -7.740859375 -6.388125 -7.44046875 -7.139140625 -7.080625 -7.505 -6.113671875 -5.961953125 -6.341875 -6.9290625 -7.527421875 -5.47171875 -5.8746875 -7.147578125 -7.920859375 -6.953515625 -5.02765625 -7.031484375 -6.038125 -6.6871875 -5.727265625 -5.381640625 -6.62546875 -6.360390625 -5.943359375 -6.176328125 -6.468203125 -5.2975 -5.477578125 -6.13078125 -6.28875 -6.038359375 -5.963828125 -5.2765625 -5.62875 -6.103984375 -5.948203125 -5.586796875 -6.753671875 -5.106953125 -5.66234375 -6.15828125 -5.832265625 -5.121015625 -6.0365625 -5.696953125 -6.267109375 -6.079375 -5.2840625 -4.911875 -5.6221875 -5.96859375 -5.09734375 -6.129140625 -5.499140625 -5.553671875 -4.191171875 -5.520859375 -4.71859375 -5.494921875 -4.939921875 -5.027265625 -4.483046875 -4.301015625 -5.8490625 -4.955546875 -4.703046875 -4.906953125 -4.555546875 -5.88359375 -3.829921875 -4.428125 -4.76515625 -5.686640625 -4.147109375 -4.533203125 -3.9384375 -5.018515625 -5.0975 -4.986328125 -4.8871875 -5.376875 -5.481484375 -4.693671875 -4.943671875 -5.066875 -4.256796875 -4.504296875 -5.115 -3.98640625 -4.798359375 -4.983359375 -4.37203125 -4.309609375 -4.423828125 -5.002265625 -4.39125 -4.473125 -3.19109375 -4.2365625 -3.903828125 -5.220625 -3.62984375 -4.2409375 -4.72125 -3.716875 -4.308515625 -4.507578125 -3.796953125 -3.006953125 -2.924140625 -4.054609375 -4.219140625 -3.411171875 -4.626953125 -4.5425 -5.26875 -4.4996875 -3.3096875 -3.650546875 -3.45984375 -3.184296875 -3.40046875 -3.784609375 -3.942265625 -3.76890625 -3.2809375 -3.8403125 -3.101875 -2.21078125 -3.2571875 -4.541328125 -3.904765625 -4.504921875 -3.805 -3.6265625 -3.488671875 -3.579921875 -3.78546875 -3.758359375 -3.098203125 -3.554765625 -4.80015625 -3.0215625 -3.82765625 -3.339375 -3.027578125 -3.239765625 -3.296015625 -4.00265625 -5.175703125 -2.72890625 -3.579453125 -3.489609375 -3.231015625 -3.91390625 -3.27078125 -3.03921875 -2.765859375 -3.15203125 -3.26859375 -3.82546875 -3.250390625 -2.995703125 -2.113125 -2.65578125 -3.789921875 -3.330625 -3.281953125 -3.60609375 -2.85296875 -2.851328125 -2.99515625 -3.52640625 -2.863359375 -3.07671875 -3.628671875 -2.5946875 -4.936015625 -3.200390625 -4.024296875 -3.29453125 -1.916328125 -3.2396875 -2.981015625 -2.14578125 -4.227421875 -2.60796875 -2.808203125 -3.310234375 -3.277421875 -3.3053125 -2.96953125 -2.36109375 -2.40390625 -2.638671875 -3.010078125 -2.440390625 -3.06375 -3.30171875 -3.223671875 -2.48109375 -2.9328125 -2.429296875 -2.1390625 -2.520390625 -2.129921875 -2.708203125 -2.9653125 -1.992578125 -2.40015625 -3.752890625 -3.068984375 -3.226171875 -3.875078125 -3.717734375 -2.654921875 -2.2840625 -1.5415625 -2.49984375 -2.6803125 -1.6934375 -2.441640625 -3.231484375 -2.3765625 -2.760703125 -2.533359375 -2.6053125 -2.724453125 -2.235703125 -3.312265625 -1.8490625 -2.386015625 -1.966953125 -3.16625 -2.577265625 -2.81046875 -2.67640625 -2.48421875 -3.027890625 -1.882734375 -3.28453125 -2.233828125 -3.842890625 -2.68359375 -2.973984375 -3.565390625 -1.345703125 -2.858984375 -2.192109375 -2.1296875 -3.19453125 -2.649296875 -1.973828125 -2.54109375 -2.4740625 -1.77453125 -1.224921875 -2.86125 -2.775546875 -1.705546875 -2.043828125 -2.046015625 -2.2903125 -2.418984375 -2.587421875 -1.61296875 -2.8121875 -2.741328125 -2.23265625 -2.68640625 -0.67796875 -1.993671875 -2.158125 -1.78109375 -2.127265625 -1.83359375 -2.223828125 -1.80671875 -1.9828125 -2.154921875 -2.633203125 -1.75015625 -2.419140625 -2.857578125 -2.696953125 -2.29609375 -2.298671875 -1.202734375 -2.699609375 -2.166015625 -2.22046875 -1.582421875 -1.78875 -2.1115625 -1.5575 -1.476640625 -1.49828125 -1.214453125 -2.780703125 -2.531171875 -2.80484375 -2.40828125 -1.9434375 -1.2 -2.18890625 -3.201953125 -1.6675 -3.243125 -2.464375 -1.848125 -1.46421875 -2.35953125 -2.03109375 -2.505703125 -2.14671875 -2.455234375 -2.3903125 -2.61859375 -2.108671875 -2.850390625 -1.720703125 -2.04578125 -1.819375 -2.168671875 -1.93578125 -1.930234375 -2.85078125 -1.9871875 -2.820546875 -3.312265625 -1.614609375 -1.39734375 -2.63796875 -1.95234375 -1.053046875 -1.75265625 -1.39078125 -1.88578125 diff --git a/example_data/bgr/HeliosCPMG/Gna004_15_20B_orig/Gna004_15_20B_orig_ref.hrd b/example_data/bgr/HeliosCPMG/Gna004_15_20B_orig/Gna004_15_20B_orig_ref.hrd new file mode 100644 index 0000000..0f353ce --- /dev/null +++ b/example_data/bgr/HeliosCPMG/Gna004_15_20B_orig/Gna004_15_20B_orig_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 500 465000 128 0 50 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676029826 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-0.006484375 -0.011484375 0.009140625 0.0046875 -0.001015625 -0.004453125 -0.004921875 -0.014921875 0.008125 -0.0059375 -0.0090625 -0.0159375 -0.011328125 0.003125 -0.010625 0.005 -0.00859375 0.006328125 -0.00765625 0.00375 0.00015625 -0.012109375 -0.0075 0.009609375 0.000703125 0.001640625 -0.00703125 -0.00796875 -0.013671875 0.005390625 0.0071875 0.008203125 0.003125 -0.008984375 0.003828125 -0.012578125 -0.00703125 0.002109375 -0.023984375 0.00671875 0.003828125 -0.001171875 -0.006953125 -0.002109375 -0.005859375 -0.004765625 0.006171875 -0.003984375 -0.00140625 -0.011640625 0.000546875 -0.0075 0.00328125 -0.0103125 0.001953125 -0.00859375 -0.002578125 -0.011875 -0.016484375 0.007578125 -0.002890625 -0.004453125 -0.013671875 0.005 -0.0128125 0.006171875 0.001953125 0.01140625 -0.00625 0.00234375 0.003203125 -0.00671875 -0.0065625 0.007109375 0.003203125 -0.005703125 0.0015625 0.005625 0.006015625 0.009609375 -0.001953125 0.01265625 0.0053125 -0.000859375 -0.0046875 0.008828125 0.02234375 0.001953125 0.009921875 -0.010703125 0.006875 -0.006875 0.00265625 -0.024609375 -0.00078125 -0.01125 -0.003046875 -7.8125e-05 -0.01125 -0.000234375 -0.01109375 -0.011640625 0.001875 -0.002109375 -0.00578125 -0.00640625 -0.009453125 0.000546875 7.8125e-05 -0.001171875 0.00125 0.003984375 0.01109375 0.008671875 0.003515625 -0.00234375 -0.010859375 0.029140625 0.015390625 0.013671875 -0.00640625 0.003203125 0.00109375 0.00078125 0.006953125 -0.00671875 -0.011796875 0.00609375 0.013125 -0.005078125 -0.0065625 -0.0046875 -0.001796875 -0.00828125 0.017890625 -0.000859375 0.0059375 0.007421875 -0.0040625 -0.00078125 0.004921875 -0.006015625 -0.009296875 0.001953125 0.004921875 -0.007109375 0.003828125 -0.019453125 -0.004453125 -0.01 -0.00859375 0.001328125 0.00046875 0.0034375 -0.006640625 0.00390625 0.01359375 -0.00109375 0.0228125 0.0171875 0.01296875 0.02609375 -0.006328125 0.008359375 0.023359375 -0.0025 0.00453125 0.019921875 0.0053125 -0.0034375 0.001015625 0.001875 0.010625 0.005625 0.012109375 0.00265625 -0.00796875 0.009140625 -0.01125 -0.003984375 -0.00328125 -0.013359375 -0.00578125 -0.0053125 -0.009765625 -0.01359375 0.00203125 -0.006015625 0.01125 -0.00296875 -0.0046875 0.00234375 -0.004375 0.0015625 0.014609375 0.018046875 -0.015 -0.00640625 0.024921875 -0.00625 0.003984375 0.005234375 -0.0103125 -0.00484375 0.00625 -0.008828125 0.0059375 0.01546875 -0.00359375 -0.001015625 -0.00703125 0.00140625 0.01140625 -0.005546875 -0.001328125 0.0021875 -0.00328125 -0.00265625 -0.017109375 -0.020390625 0.003984375 -0.002421875 0.019296875 -0.01265625 -0.00203125 0.00125 0.001015625 0.008125 0.0046875 -0.001328125 -0.001171875 0.007890625 -0.004453125 -0.0071875 0.000546875 -0.00015625 -0.001796875 -0.00125 -0.001640625 0.004921875 -0.0025 0.02078125 0.019375 0.003515625 -0.00703125 0.00171875 0.0109375 0.0125 0.000234375 0.006796875 0.00578125 -0.013125 0.001796875 0.001953125 -0.005546875 0.000625 0.017421875 -0.008828125 -0.00125 -0.0021875 -0.003671875 -0.001484375 -0.011796875 -0.003203125 -0.01578125 0.00484375 -0.003203125 -0.00390625 0.011953125 0.0025 -0.000390625 -0.020859375 0.00015625 -0.006640625 0.0046875 -0.016015625 -0.02140625 -0.01375 -0.005625 -0.0003125 -0.002109375 -0.003125 0.00109375 0.001875 0.00390625 0.0040625 -0.00078125 0.00265625 0.002265625 0.0053125 -0.0065625 -0.00609375 -0.000546875 -0.017109375 -0.00640625 0.00390625 -0.009609375 0.003125 0.00984375 0.00203125 0.008203125 -0.010625 0.00390625 0.00828125 -0.00265625 -0.0146875 0.00296875 -0.02015625 -0.0009375 -0.0034375 0.0034375 -0.01734375 -0.0121875 -0.000546875 -0.009375 0.003359375 -0.001015625 -0.00578125 0.0096875 0.017578125 0.001796875 -0.002265625 0.01015625 0.0040625 -0.00453125 0.005078125 -0.003984375 0.0103125 0.01421875 0.00765625 0.00671875 -0.006484375 -0.01109375 0.000703125 0.00390625 -0.00390625 0.014375 0.001015625 0.006015625 0 -0.00875 0.002265625 0.0040625 0.015234375 0.00109375 -0.012734375 -0.0034375 0.001953125 -0.005859375 -0.00859375 -0.003984375 -0.002421875 0.007109375 -0.015234375 -0.01203125 -0.0171875 0.00328125 0.019921875 -0.008359375 -0.01875 0.008125 0.00265625 -0.00359375 0.01 0.003828125 0.014296875 0.012578125 0.00421875 -0.003828125 -0.0028125 -0.00421875 -0.000859375 0.003359375 -0.002734375 -0.003203125 0.0015625 -0.004375 -0.004140625 -0.001953125 0.009765625 0.003828125 0.0015625 -0.008203125 -0.00109375 -0.003515625 0.005 0.00109375 -0.007109375 -0.00078125 -0.0134375 -0.022265625 0.02 -0.007578125 -0.00203125 -0.002890625 -0.009765625 -0.005 0 0.0009375 -0.018046875 -0.002421875 -0.000234375 0.006953125 0.003515625 0.00234375 -0.0128125 0.005078125 -0.001171875 0.005859375 0.0059375 0.001953125 0.00953125 -0.00546875 0.0115625 0.020078125 0.027734375 0.013359375 -0.003515625 -0.008203125 0.02015625 0.00484375 0.00046875 -0.005234375 0.0053125 0.0034375 0.003984375 -0.001328125 0.00765625 -0.0028125 -0.00046875 -0.00140625 -0.001796875 0.001796875 -0.0040625 -0.000546875 0.002265625 0.006640625 0.00171875 0.0040625 0.00609375 0.00984375 0.014140625 0.01546875 0.00109375 0.01015625 -0.003671875 0.00671875 0.01 -0.013046875 0.008671875 0.00640625 0.0040625 0.005390625 0.00125 -0.007109375 -0.00796875 0.01703125 -0.01203125 0.00515625 0.01484375 0.025234375 0.02546875 0.003828125 -0.008203125 0.003828125 -0.002890625 0.0028125 0.00734375 -0.007578125 -0.006015625 0.00671875 -0.011875 -0.01296875 -0.014375 0.00296875 -0.01203125 0.0009375 -0.00796875 0.00890625 -0.00796875 0.012734375 7.8125e-05 0.002109375 0.009609375 -0.0109375 -0.000859375 0.00296875 0.00109375 -0.01234375 -0.00515625 -0.00484375 -0.010546875 0.00578125 0.000546875 0 0.003046875 -0.005703125 0.014765625 -0.003359375 0.006640625 +-0.0046875 -0.012265625 -0.00375 -0.006328125 0.009375 -0.009921875 0.006953125 0.016875 0.0078125 0.0040625 0.0059375 -0.008125 0.00234375 -0.007421875 -0.005234375 0.01328125 0.00734375 0.009140625 0.005390625 0.001484375 -0.00890625 0.01578125 -0.009140625 0.002265625 -0.0109375 0.004140625 -0.01046875 0.002734375 -0.0015625 -0.0065625 0.007109375 -0.00609375 0.004140625 -0.00203125 -0.00765625 0.011875 -0.0046875 0.00515625 0.01609375 0.002890625 0.00078125 0.02046875 -0.0015625 0.000859375 -0.005546875 0.011875 0.010546875 -0.0071875 0.01203125 -0.005234375 0.0128125 -0.006015625 0.00109375 -0.00125 0.011875 0.010546875 0.001328125 0.003046875 0.003203125 -0.0040625 -0.009609375 -0.01203125 0 0.001171875 -0.010390625 0.01015625 -0.004765625 -0.004453125 0.00859375 -0.003984375 0.00296875 -0.014375 0.003046875 -0.006015625 -0.01546875 0.0021875 -0.006640625 0.002890625 -0.00296875 -0.001015625 -0.00234375 -0.001328125 0.00234375 -0.001953125 -0.0028125 0.006484375 0.02046875 0.001484375 -0.00796875 -0.011484375 0.001875 -0.00578125 0.002890625 0.016953125 0.008359375 -0.00703125 -0.01015625 0.003984375 -0.001015625 -0.00046875 -0.007421875 -0.002421875 -0.002890625 -0.003203125 -0.013359375 0.004453125 -0.0190625 0.01109375 -0.002421875 -0.008046875 -0.000390625 0.004375 -0.0071875 0.010703125 0.004609375 -0.01140625 0.000390625 0.019765625 0.014609375 0.0015625 0.00609375 -7.8125e-05 -0.0003125 0.006640625 0.00640625 0.0021875 -0.0103125 0.008828125 0.001171875 0.0103125 0.0025 -0.000546875 -0.006640625 0.016796875 -0.003125 -0.016875 -0.002421875 -0.005390625 -0.001171875 -0.003984375 0.005078125 0.007578125 -0.008984375 0.000625 -0.01328125 -0.002578125 0.00640625 -7.8125e-05 -0.008203125 -0.014765625 0.001328125 -0.0090625 -0.00234375 -0.011171875 -0.00125 0.002265625 0.011875 -0.001328125 -0.009453125 0.00703125 -0.004453125 0.009921875 -0.0046875 0.006328125 0.01328125 0.015 0.0003125 -0.00859375 -0.00421875 -0.004375 0.0171875 -0.01 0.016875 0.002265625 -0.0040625 0.00640625 0.000703125 -0.0015625 -0.013125 0.001328125 0.0175 -0.00703125 0.007421875 0.015546875 0.00421875 0.001796875 0.00828125 0.004921875 -0.0040625 -0.00421875 -0.009375 -0.00609375 -0.009296875 -0.000390625 0.0159375 -0.007109375 0.0109375 -0.001328125 0.00359375 0.002890625 0.008671875 0.01125 0.003828125 0.0034375 0.00203125 0.008203125 0.0078125 -7.8125e-05 0.003125 -0.002734375 -0.014375 0.00875 -0.02296875 -0.0121875 0.016171875 -0.00875 0.0046875 0.00578125 0.0125 -0.0021875 0.001484375 -0.007421875 -0.0125 -0.00609375 -0.0146875 -0.0065625 0.003984375 -0.011875 0.00609375 0.005859375 -0.01328125 -0.0159375 0.012265625 -0.00359375 0.0040625 -0.008984375 -0.007578125 0.007734375 -0.025546875 -0.00203125 -0.006171875 0.0021875 0.009296875 0.0153125 0.008671875 0.001640625 -0.000703125 0.01234375 0.01046875 0.011796875 0.021796875 0.005859375 0.00453125 -0.000859375 0.003671875 -0.008046875 -0.011328125 -0.001484375 -0.003203125 0.004921875 -0.00578125 0.005390625 -0.002578125 0.001875 -0.0003125 -0.010078125 -0.0071875 -0.008828125 0.007265625 0.00234375 -0.005234375 -0.002421875 0.00765625 0.009609375 0.00265625 -0.011015625 0.013671875 0.006328125 -0.000234375 0.00015625 0.0075 -0.002265625 -0.009921875 0.013515625 0.00140625 0.008046875 -0.01296875 -0.017578125 0.004921875 -0.01734375 0.01609375 -0.0021875 0.01296875 -0.009140625 -0.005234375 0.001953125 0.010859375 -0.0071875 -0.005546875 -0.016171875 0.000546875 -0.013515625 -0.01390625 -0.01296875 0.010703125 0.001171875 -0.00328125 -0.0078125 -0.01 0.00140625 0.000234375 -0.005859375 -0.005234375 -0.00984375 0.013125 0.00328125 -0.007109375 0.00046875 0.002421875 0.010390625 0.005 -0.001171875 -0.01015625 -0.000234375 0.00578125 -0.0125 0.008046875 -0.018515625 0.015390625 -0.007109375 0.004609375 -0.00234375 0.00796875 -0.00375 -0.001640625 0.012421875 0.00984375 0.008203125 0.00859375 0.006796875 -0.009453125 0.002578125 0.018203125 -0.00640625 0.011484375 -0.00609375 0.0009375 -0.008359375 -0.011484375 0.00109375 -0.010859375 0.007890625 -0.014296875 0.008359375 0.02375 0.0090625 -0.00265625 -0.003984375 0.00375 -0.002265625 0.0053125 0.006953125 0.001953125 -0.000703125 -0.0059375 -0.011953125 -0.00515625 0.010234375 0.003046875 0.0071875 -0.00984375 -0.004453125 0.00578125 -0.00546875 -0.013359375 0.00234375 -0.012578125 0.00859375 0.0075 -0.00375 -0.000703125 -0.011796875 -0.007421875 0.015234375 -0.015625 -0.002265625 0.00125 0.0046875 0.00359375 -0.01234375 -0.00765625 -0.016484375 -0.001171875 -0.0025 -0.003984375 -0.00421875 -0.0115625 -0.004921875 0.0046875 0.000546875 0.00515625 -0.004765625 -0.00640625 0.004140625 0.00171875 0.00625 -0.001796875 -0.005 0.0015625 -0.000390625 0.006953125 0.0053125 0.024765625 0.000625 -0.0078125 -0.00359375 0.013125 -0.00421875 -0.00875 -0.01796875 0.01234375 0.00515625 -0.001171875 0.01609375 -0.005859375 -0.002890625 0.004609375 -0.021484375 -0.006796875 -0.01484375 -0.013828125 -0.000390625 -0.006015625 0.006875 0.007578125 -0.0003125 -0.00125 0.002421875 0.0015625 -0.021953125 0.000703125 -0.013515625 0.00390625 0.004765625 -0.00671875 0.0040625 -0.003203125 0.0084375 -0.009296875 0.0071875 0.00796875 0.00609375 -0.010234375 -0.008515625 0.008515625 0.006015625 0.002890625 0.01421875 -0.010078125 -0.00171875 0.015 -0.015234375 -0.002109375 -0.011875 -0.00203125 -0.01484375 -0.004375 0.008671875 -0.00890625 -0.005546875 0.004609375 -0.003359375 -0.00171875 0.006484375 -0.0078125 -0.00015625 -0.0053125 -0.000546875 -0.009609375 -0.00890625 0.005703125 0.017734375 -0.0109375 -0.01671875 0.002578125 -0.008515625 -0.008515625 -0.010078125 -0.00828125 -0.0096875 0.014140625 -0.003203125 -0.001484375 -0.009296875 -0.0115625 0.008203125 -0.0009375 0.0003125 -0.0034375 0.006328125 diff --git a/example_data/bgr/HeliosCPMG/Gna004_15_20C_orig/Gna004_15_20C_orig.hrd b/example_data/bgr/HeliosCPMG/Gna004_15_20C_orig/Gna004_15_20C_orig.hrd new file mode 100644 index 0000000..5ff38ad --- /dev/null +++ b/example_data/bgr/HeliosCPMG/Gna004_15_20C_orig/Gna004_15_20C_orig.hrd @@ -0,0 +1,3 @@ +26 0.0002 500 465000 128 0 50 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676032695 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-27.629375 -21.80398437 -28.06773438 -22.159375 -26.44835937 -21.77859375 -24.26492187 -23.81242187 -21.490625 -21.52476563 -23.15453125 -20.18429688 -20.0625 -21.13179687 -21.40640625 -20.69992188 -18.64265625 -20.64789062 -21.46679688 -18.6503125 -17.59335937 -19.24328125 -19.06570312 -16.49015625 -16.46054687 -17.7315625 -19.40070312 -17.59046875 -17.11148437 -16.89 -16.40226562 -15.25601562 -16.77320312 -16.99359375 -15.85335938 -15.711875 -16.83179687 -16.57617188 -15.36296875 -14.09460937 -14.60570312 -16.01351563 -15.02460938 -15.31351563 -15.22609375 -14.49476562 -13.568125 -14.02679688 -14.5996875 -14.73640625 -14.94820312 -14.304375 -13.28640625 -14.43671875 -13.32710937 -12.45132812 -13.97296875 -13.22507812 -12.9321875 -12.13960937 -14.37453125 -13.38320312 -11.80648438 -12.44234375 -12.11171875 -12.33351563 -11.63914062 -11.4340625 -11.1203125 -11.7734375 -11.64820313 -11.68921875 -11.38210938 -10.67625 -10.97820313 -10.9240625 -12.061875 -11.09328125 -10.78039063 -10.57664062 -11.23304687 -11.653125 -11.01132813 -10.84859375 -11.72453125 -10.64132812 -9.69453125 -10.87625 -9.948125 -9.66234375 -9.8190625 -10.539375 -10.79875 -9.024140625 -9.001953125 -10.30242188 -10.20976562 -9.087421875 -9.350625 -9.523671875 -10.43367187 -8.298515625 -9.488125 -9.701171875 -9.744375 -8.232109375 -8.186328125 -9.14609375 -9.616640625 -8.752265625 -9.095078125 -9.755234375 -9.28125 -8.216640625 -8.182890625 -8.372734375 -8.906796875 -7.893359375 -9.707109375 -7.66984375 -7.780859375 -8.05296875 -8.269140625 -8.14421875 -8.05828125 -7.784296875 -8.913125 -8.026015625 -7.83625 -8.015 -7.4659375 -7.48453125 -7.631328125 -7.50953125 -7.847109375 -7.40484375 -7.574140625 -7.699140625 -8.461015625 -6.52703125 -7.156796875 -7.820546875 -7.577265625 -6.852890625 -7.094453125 -6.02953125 -7.358046875 -6.8609375 -6.789765625 -6.955703125 -6.525859375 -6.304609375 -6.5496875 -6.4446875 -5.570078125 -5.988203125 -6.97640625 -6.79828125 -6.29375 -4.976328125 -6.323671875 -7.87328125 -5.980078125 -5.9271875 -6.443515625 -6.151640625 -4.6846875 -5.996328125 -6.81734375 -5.628359375 -5.740859375 -5.97875 -5.9821875 -5.912421875 -6.203125 -5.494921875 -6.078984375 -6.610078125 -5.26125 -5.153515625 -6.622734375 -4.6665625 -5.339921875 -5.11921875 -5.623828125 -6.207265625 -6.752421875 -4.867734375 -5.817265625 -5.426328125 -5.714375 -5.3384375 -5.390078125 -5.51796875 -4.630625 -5.8021875 -6.353671875 -5.914453125 -5.30640625 -4.65625 -4.653828125 -5.2246875 -4.72515625 -5.204765625 -5.330546875 -4.34671875 -4.502890625 -6.13078125 -6.1503125 -4.476484375 -4.474453125 -5.576875 -4.0453125 -3.98234375 -4.42140625 -5.516171875 -4.912578125 -5.092890625 -4.253984375 -5.205625 -5.285703125 -4.439921875 -5.062109375 -5.4403125 -4.611484375 -3.480234375 -4.709453125 -4.8509375 -4.58328125 -3.568046875 -4.43671875 -4.921640625 -3.745390625 -4.4240625 -4.808203125 -4.907890625 -3.718046875 -5.3578125 -4.748671875 -5.065546875 -3.4115625 -3.831484375 -4.776640625 -3.140859375 -3.14359375 -4.410703125 -4.051328125 -4.46015625 -5.498359375 -3.8203125 -3.3396875 -3.79296875 -3.123984375 -4.25125 -4.40265625 -4.354296875 -3.848515625 -3.097578125 -2.780234375 -3.622109375 -3.6884375 -3.479296875 -4.462421875 -3.232734375 -3.687890625 -3.1034375 -4.490234375 -2.793203125 -4.1871875 -3.44984375 -4.186953125 -3.55640625 -3.284140625 -4.32734375 -4.10609375 -3.710234375 -3.59203125 -3.937578125 -3.38703125 -3.578671875 -4.094609375 -3.276015625 -2.884609375 -3.2959375 -3.9353125 -3.311015625 -3.1634375 -3.64734375 -3.931953125 -4.408125 -4.212734375 -3.553515625 -2.780078125 -3.876015625 -4.463515625 -3.18078125 -3.471328125 -2.91015625 -3.236171875 -2.57171875 -3.20015625 -3.599921875 -2.60453125 -3.01796875 -3.08328125 -4.364296875 -3.733515625 -2.33203125 -2.934765625 -3.62109375 -3.131328125 -3.26484375 -2.842421875 -2.063125 -2.02671875 -4.22578125 -4.17796875 -3.009921875 -3.36171875 -1.790859375 -2.382578125 -3.112578125 -2.859375 -2.062578125 -2.918984375 -2.841796875 -1.966796875 -3.0325 -3.048671875 -2.458984375 -1.478046875 -2.7153125 -2.48015625 -3.15765625 -3.060234375 -3.401796875 -2.9803125 -3.81734375 -2.15609375 -2.8946875 -3.53625 -3.02140625 -3.335078125 -2.327734375 -2.9265625 -2.69953125 -2.73546875 -3.829765625 -2.169921875 -2.889921875 -3.404609375 -2.223984375 -2.094296875 -2.778671875 -3.143515625 -2.891640625 -3.23265625 -2.023984375 -2.906875 -2.8359375 -1.84765625 -3.39546875 -3.336875 -2.893046875 -1.715390625 -1.814609375 -2.216796875 -3.354765625 -3.6559375 -2.4428125 -2.326875 -2.5396875 -2.77203125 -2.565390625 -3.04265625 -3.013984375 -2.033828125 -1.716328125 -3.009921875 -3.0859375 -2.25046875 -2.4175 -2.26921875 -2.65515625 -2.04578125 -2.326328125 -1.67765625 -2.36171875 -2.48765625 -2.325703125 -3.8771875 -1.70359375 -1.910625 -1.85078125 -3.71125 -1.6759375 -2.93765625 -2.667734375 -1.909765625 -2.178046875 -1.71921875 -3.039296875 -1.836640625 -1.99328125 -2.457890625 -1.606484375 -3.3659375 -1.822578125 -2.768125 -3.21796875 -1.101015625 -2.00875 -2.820546875 -1.11921875 -3.303515625 -1.588828125 -2.60328125 -2.55265625 -2.27078125 -2.835 -2.103359375 -1.3728125 -1.493984375 -2.415546875 -2.54328125 -2.1725 -2.251953125 -1.088671875 -1.628046875 -1.660234375 -1.914609375 -1.757265625 -2.23578125 -1.847578125 -2.11921875 -2.129296875 -2.42578125 -0.28046875 -2.3465625 -2.462578125 -2.37 -1.979765625 -2.633515625 -2.494296875 -2.18125 -2.2828125 -2.949921875 -1.4015625 -2.141875 -2.300390625 -2.074375 -1.66171875 -1.773984375 -1.73671875 -2.818671875 -1.852734375 -1.844140625 -1.901953125 -1.878203125 -1.737265625 -2.158359375 -1.353984375 -1.209296875 -1.737578125 -2.92453125 -2.276328125 -1.310859375 -0.84421875 -1.502265625 -1.17375 -3.615546875 -1.15984375 -2.804375 -1.83359375 -1.90484375 -2.523046875 -2.349609375 -1.751953125 -1.339296875 -1.19359375 -2.149609375 -3.617578125 -2.09578125 -2.16921875 -1.608828125 -2.67203125 -1.6696875 -2.188984375 -1.813203125 -2.11015625 -1.85703125 -1.91765625 -1.93609375 -1.958203125 -1.3278125 -0.5959375 -1.925 -1.940390625 -1.7146875 -0.341484375 +-27.67726563 -36.48054688 -28.46257813 -31.9346875 -26.945625 -31.84171875 -28.55328125 -28.18609375 -27.40796875 -28.1421875 -25.4371875 -26.76125 -25.78632813 -26.27859375 -25.31375 -24.24921875 -25.62453125 -24.9121875 -23.42828125 -24.998125 -23.48601563 -24.72914062 -22.77632812 -22.7240625 -21.9215625 -23.03773437 -22.2759375 -22.10570313 -22.95828125 -22.2046875 -20.43132813 -21.01453125 -20.93703125 -20.83421875 -19.86 -21.11492188 -20.74171875 -19.3175 -17.4965625 -19.46007812 -19.21664063 -17.93703125 -18.748125 -18.92414062 -17.94773437 -18.73445313 -16.99101562 -17.87367187 -18.58492187 -17.12664063 -17.0771875 -17.32390625 -17.01507812 -16.49265625 -16.46320312 -17.831875 -16.78632813 -15.18015625 -15.74625 -16.54195312 -17.08867187 -16.44242188 -15.58492187 -15.61265625 -15.17179688 -15.81242188 -15.23289062 -15.5446875 -15.6453125 -14.00695313 -15.1965625 -14.6034375 -14.62085938 -14.15539063 -13.84351563 -14.4375 -14.25421875 -12.52523438 -13.58359375 -14.8278125 -13.09984375 -13.0728125 -13.2328125 -13.41617187 -12.35039062 -12.31398438 -13.78359375 -13.6084375 -11.8728125 -12.93726563 -12.70117188 -12.11226562 -10.98078125 -11.96609375 -12.07882812 -12.47046875 -11.375625 -11.51179687 -11.58890625 -11.58789063 -11.503125 -11.69039062 -11.87117187 -12.06320312 -11.6740625 -12.08351563 -12.11617187 -12.215 -10.54625 -11.08515625 -10.765625 -10.59226562 -10.42117188 -11.80820313 -10.5646875 -10.3221875 -10.14953125 -9.84140625 -10.29 -10.48507812 -10.241875 -10.40039063 -9.908203125 -9.225546875 -9.8853125 -10.04875 -9.70546875 -9.339921875 -8.8540625 -9.178046875 -9.63390625 -9.40515625 -10.32898437 -8.932265625 -9.51234375 -8.90265625 -9.77203125 -8.182421875 -8.74078125 -7.454375 -9.5865625 -9.5315625 -8.12984375 -8.083828125 -9.72171875 -9.067578125 -8.0846875 -8.617265625 -9.565703125 -9.052265625 -8.4775 -9.0090625 -8.260546875 -8.7109375 -7.296328125 -8.75296875 -8.38125 -8.230234375 -7.480234375 -7.01796875 -8.204453125 -8.345390625 -6.472109375 -7.527265625 -8.13796875 -7.783359375 -7.295078125 -7.592109375 -7.069765625 -7.8009375 -7.278203125 -7.622109375 -7.84234375 -7.206796875 -7.403125 -8.296484375 -7.702109375 -6.822265625 -7.12953125 -8.47578125 -7.225859375 -6.5178125 -6.93953125 -7.15765625 -7.23765625 -5.578125 -7.328046875 -6.40109375 -6.7275 -5.97515625 -6.72671875 -7.203671875 -6.956484375 -6.254609375 -6.902890625 -8.28953125 -7.1890625 -6.560078125 -6.80640625 -6.253828125 -6.095390625 -5.93609375 -7.24515625 -6.656328125 -7.298515625 -6.740703125 -5.482421875 -6.670625 -6.388046875 -5.87609375 -6.21203125 -6.200546875 -5.960546875 -5.886875 -5.94265625 -6.695234375 -5.42984375 -5.751015625 -6.60328125 -5.3559375 -5.672578125 -6.28421875 -6.132265625 -5.40875 -6.652109375 -6.010625 -5.536015625 -5.97109375 -5.799609375 -5.491015625 -6.321640625 -4.355078125 -5.181640625 -4.920234375 -4.8596875 -4.475078125 -5.410234375 -5.55921875 -4.465078125 -3.910390625 -4.788203125 -5.5528125 -4.7684375 -4.865 -5.31359375 -5.153046875 -4.100546875 -5.004453125 -4.69390625 -4.247265625 -4.610390625 -5.4675 -4.57 -4.43140625 -4.23734375 -4.741015625 -4.364453125 -4.71875 -5.815390625 -5.175703125 -4.23453125 -4.768984375 -3.841796875 -5.013203125 -5.060625 -4.405625 -4.58703125 -5.09234375 -4.295390625 -3.7065625 -3.60046875 -4.58703125 -5.579765625 -4.683359375 -4.20390625 -5.08046875 -5.27109375 -4.951484375 -3.49828125 -2.943671875 -5.005390625 -4.221171875 -3.784453125 -4.446953125 -4.161796875 -4.442265625 -5.831796875 -4.2190625 -4.419453125 -2.373125 -3.4303125 -3.567421875 -3.870546875 -5.623359375 -4.17515625 -4.303828125 -3.51234375 -4.25234375 -3.784921875 -3.44328125 -4.67640625 -4.090546875 -4.418515625 -4.09640625 -3.909609375 -4.491640625 -3.463515625 -3.97234375 -3.70234375 -3.82703125 -3.528515625 -4.02421875 -3.354765625 -2.89296875 -3.705546875 -4.310234375 -4.034140625 -3.707734375 -4.4075 -3.542421875 -3.486875 -3.555703125 -3.7846875 -4.34234375 -3.459609375 -3.53765625 -3.77109375 -3.86484375 -4.222890625 -3.65078125 -4.07640625 -3.788125 -3.113359375 -3.16671875 -3.9228125 -3.03296875 -4.623984375 -4.224609375 -3.460078125 -3.9653125 -3.395703125 -3.4578125 -3.8171875 -2.9603125 -3.24453125 -3.39921875 -4.856015625 -3.709375 -3.36328125 -3.28078125 -3.6125 -3.60953125 -3.583203125 -2.499765625 -2.764296875 -2.2775 -2.636171875 -2.6184375 -2.782109375 -3.357421875 -3.68234375 -3.35953125 -3.480234375 -3.01828125 -2.610546875 -3.57015625 -3.847421875 -3.972890625 -3.15640625 -3.8371875 -1.415859375 -2.83015625 -3.376640625 -3.408203125 -3.6384375 -2.8725 -2.5678125 -3.046484375 -3.472734375 -4.709765625 -2.29015625 -3.615859375 -3.55921875 -3.13890625 -3.228359375 -2.29921875 -2.91796875 -2.355 -2.918359375 -3.348671875 -2.739296875 -3.4034375 -3.37046875 -3.054765625 -2.72390625 -3.201484375 -2.141171875 -2.49125 -3.791484375 -3.16359375 -3.32625 -2.11859375 -2.808046875 -3.339375 -2.32484375 -2.6496875 -2.679609375 -2.07328125 -2.514453125 -3.99546875 -2.768125 -2.2571875 -2.188125 -1.860078125 -2.598046875 -2.201875 -3.613203125 -2.140234375 -2.239296875 -2.344296875 -2.213125 -2.036015625 -3.021953125 -2.639140625 -1.587109375 -1.945390625 -2.69640625 -3.759921875 -3.330859375 -2.178671875 -2.46421875 -2.99875 -2.40875 -2.605 -1.37921875 -1.95265625 -2.376484375 -3.748671875 -3.14421875 -2.94171875 -3.307109375 -1.717265625 -3.04984375 -2.06546875 -3.12984375 -3.145703125 -2.450625 -2.833671875 -2.546640625 -3.32140625 -2.888125 -2.616328125 -1.809921875 -2.29265625 -2.74125 -2.0509375 -1.933671875 -3.154296875 -2.392578125 -2.207109375 -2.18375 -2.29 -1.413671875 -2.580390625 -3.620390625 -2.24 -2.656640625 -1.77 -1.325234375 -2.87390625 -3.335859375 -3.13078125 -2.019453125 -2.72859375 -2.033046875 -1.77671875 -2.531171875 -2.96453125 -2.86703125 -2.8215625 -1.663828125 -3.05359375 -3.0653125 -2.203203125 -2.036484375 -3.141875 -1.858046875 -2.182265625 -2.4621875 -2.878984375 -0.9775 -1.98953125 -1.4265625 -2.29734375 -2.374453125 -3.474765625 -1.970078125 -3.21046875 -1.8846875 -1.4403125 diff --git a/example_data/bgr/HeliosCPMG/Gna004_15_20C_orig/Gna004_15_20C_orig_ref.hrd b/example_data/bgr/HeliosCPMG/Gna004_15_20C_orig/Gna004_15_20C_orig_ref.hrd new file mode 100644 index 0000000..a6ea86e --- /dev/null +++ b/example_data/bgr/HeliosCPMG/Gna004_15_20C_orig/Gna004_15_20C_orig_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 500 465000 128 0 50 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676032695 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0.003828125 -0.008515625 0.000546875 -0.020234375 -0.00078125 0.0071875 -0.0078125 0.0003125 -0.010234375 0.0003125 -0.000703125 -0.00046875 0.00078125 0.008125 0.006328125 -0.0096875 -0.00890625 -0.016171875 -0.00125 -0.00515625 0.010625 -0.011796875 0.006015625 -0.008046875 0.003515625 0.0009375 -0.00015625 0.006171875 -0.00640625 0.00734375 -0.007109375 0.000859375 -0.0084375 0.00453125 0.00484375 0.003046875 -0.010703125 -0.00859375 0.01359375 0.0021875 0.00796875 0.011171875 -0.007265625 0.003125 -7.8125e-05 0.0046875 -0.01328125 -0.011796875 -0.001796875 -0.008203125 -0.000234375 -0.001328125 0.005625 0 -0.004609375 -0.0009375 -0.001171875 -0.000859375 -0.01796875 0.003828125 -0.00578125 0.0134375 0.008046875 -0.0115625 -0.02078125 0.00359375 -0.006171875 0.003046875 0.006015625 -0.001328125 0.01546875 0.004375 -0.010546875 0.000625 0.011484375 0.001640625 -0.003046875 -0.006015625 -0.006484375 0.001875 7.8125e-05 0.000390625 0 -0.001015625 0.0021875 0.00015625 0.01765625 -0.0003125 0 0.002265625 0.005 -0.010234375 0.005859375 -0.010546875 -0.008671875 0.00078125 -0.00953125 0.00703125 -0.005 -0.005703125 0.00203125 -0.00296875 0.0059375 -0.0225 0.00390625 -0.022734375 -0.00109375 -0.015078125 0.00625 0.0059375 0.00546875 -0.00609375 0.024921875 0.004140625 -0.008125 -0.01578125 0.010390625 -0.0084375 -0.005859375 0.015546875 -0.000625 -7.8125e-05 0.006171875 7.8125e-05 -0.0096875 -0.00125 -0.000546875 -0.0059375 0.017578125 -0.013515625 0.007890625 -0.00078125 -0.00671875 -0.01515625 -0.0009375 -0.0303125 0.002421875 0.008125 0.005390625 -0.002890625 -0.01515625 -0.002421875 -0.002265625 0.001875 0.01390625 0.011484375 -0.005625 -0.003203125 -0.0040625 0.0090625 0.00515625 -0.003984375 -0.002890625 0.00734375 0.014375 0.005234375 0.01078125 0.00578125 0.005078125 -0.0075 0.004375 0.004921875 -0.000625 0.00140625 0.00125 -0.0040625 0.00078125 -0.002578125 0.005546875 -0.00546875 0.002421875 0.01375 -0.006953125 -0.009296875 -0.017421875 0.0065625 -0.010703125 0.002421875 -0.002578125 -0.009453125 -0.014296875 0.0028125 -0.009453125 -0.002265625 -0.011875 -0.015390625 0.024921875 0.013359375 0.003984375 0.0021875 -0.006328125 -0.004609375 -0.01609375 -0.001875 -0.00546875 -0.004921875 -0.00515625 -0.003203125 -0.00234375 -0.00109375 0.00953125 0.0040625 -0.00265625 -0.0028125 -0.011015625 -0.002421875 -0.00515625 0.00703125 -0.01140625 -0.005859375 0.001015625 -0.00109375 -0.013203125 0.019140625 0.00328125 -0.0175 -0.012890625 0.00703125 0.0025 0.007265625 0.000546875 0.00359375 0.00859375 -0.00765625 0.008515625 -0.001484375 -0.00921875 -0.00203125 -0.00953125 -0.0046875 -0.00046875 0.007109375 -0.008359375 0 -0.010390625 0.013046875 -0.0034375 -0.00765625 0.01234375 0.00953125 -0.005859375 0.0034375 -0.00671875 -0.009375 -0.005546875 0.0109375 -0.0121875 -0.005625 0.015546875 0.002578125 -0.01609375 0.01 -0.00484375 -0.00328125 -0.01109375 -0.009765625 -0.00015625 0.0015625 -0.001796875 -0.002421875 -0.0046875 -0.00203125 -0.001015625 0.0009375 -0.006796875 -0.01546875 -0.005078125 -0.002578125 -0.015234375 -0.00203125 -0.00296875 -0.001953125 -0.014296875 0.006875 0.013828125 -0.007578125 -0.000703125 0.01484375 -0.000703125 0.01421875 -0.001875 -0.0015625 -0.00765625 -0.00890625 0.01234375 -0.001484375 0.00875 -0.00171875 -0.0071875 0.0053125 -0.009375 -0.000625 0.00609375 -0.018125 -0.003828125 -0.002265625 -0.00828125 0.0053125 0.00703125 0.00453125 0.00078125 0.009140625 -0.002734375 -0.013828125 -0.00625 -0.000703125 -0.010703125 -0.0009375 0.007734375 -0.01015625 -0.004921875 -0.006484375 -0.010078125 0.009375 -0.003359375 -0.01296875 0.00046875 -0.009609375 0.009609375 0.005703125 0.021484375 -0.005234375 -0.004609375 0.00125 -0.00046875 0.000859375 0.0053125 0.011875 0.0059375 -0.005234375 -0.0096875 0.008515625 -0.004453125 -0.00453125 0.00734375 -0.00765625 -0.000625 -0.013203125 -0.007890625 -0.0128125 -0.007734375 -0.0084375 0.012734375 -0.009921875 -0.0228125 -0.001640625 0.00984375 -0.010625 0.011953125 0.02140625 0.0025 -0.006328125 -0.005703125 -0.004765625 0.007109375 -0.007890625 -0.006640625 -0.003359375 0.0103125 0.010234375 0.002109375 0.013359375 0.0028125 0.00890625 -0.005 0.01609375 -0.00375 0.014375 0.006953125 0.0103125 -0.003515625 0.019375 0.008515625 -0.01296875 0.008046875 0.004375 -0.006171875 0.010546875 -0.014375 -0.00859375 0.001953125 0.014609375 0.013671875 -0.01203125 -0.0021875 0.0040625 0.00625 -0.00125 -0.006015625 0.00671875 -0.00109375 0.013359375 -0.001015625 0.00421875 -0.007109375 0.0096875 0.011484375 -0.0234375 -0.003671875 -0.00515625 0.011875 -0.01421875 0.0034375 -0.01125 0.001328125 -0.000546875 -0.005625 -0.00765625 0.012265625 0.0140625 0.0034375 0.009609375 0.011328125 0.01796875 0.01125 -0.01015625 -0.0059375 -0.005546875 -0.0121875 0.00265625 0.00265625 0.0159375 0.00796875 -0.006875 -0.00875 0.00734375 -0.006015625 0.01109375 -0.0059375 -0.016328125 0.00609375 -0.010703125 0.001484375 -0.00703125 -0.002421875 0.020390625 0.00234375 -0.001171875 -0.008359375 -0.004375 0.00546875 0.002421875 0.008203125 0.002890625 -0.00265625 0.00125 0.013125 0.009765625 0.000859375 0.00328125 0.003515625 0.00453125 -0.0028125 -0.006953125 0.020234375 0.00640625 -0.00984375 -0.00953125 0.004765625 0 -0.001015625 0.002109375 0.003125 -0.00203125 -0.00859375 -0.0053125 -0.00453125 -0.017109375 -0.008203125 -0.003359375 -0.01296875 -0.009140625 -7.8125e-05 -0.013125 -0.007890625 -0.006015625 -0.00703125 -0.014140625 -0.009375 0.00265625 0.00625 0.006796875 -0.0015625 0.01 0.004609375 0.0009375 0.009453125 -0.009765625 -0.011171875 0.01453125 0.0015625 -0.005078125 0.006953125 0.000859375 -0.00484375 -0.012578125 -0.005078125 0.008671875 0.00078125 0.0121875 +-0.006640625 -0.0028125 0.01046875 0.009453125 0.006171875 -0.003203125 -0.000625 0.005859375 -0.010625 0.02046875 -0.005546875 -0.01296875 0.011796875 0.00140625 -0.007578125 0.016953125 0.012578125 0.0028125 0.006796875 -0.013046875 0.004921875 -0.003984375 -0.014140625 0.006640625 -0.007578125 0.003125 0.013203125 0.00375 0.01125 0.0046875 -0.004453125 0.01 0.00921875 0.005 0.006953125 -0.005078125 0.013515625 0.017734375 0.011953125 -0.0040625 0.01015625 0.013203125 0.001875 -0.018671875 -0.005625 0.00640625 0.016796875 -0.004140625 0.018671875 0.00296875 0.012734375 -0.00140625 0.001328125 -0.0065625 -0.000703125 -0.00125 0.01 0.0071875 -0.02421875 -0.013359375 0.008046875 -0.00921875 -0.0065625 -0.0159375 -0.005546875 0.00046875 -0.0084375 0.0059375 -0.0021875 0.006328125 0.005625 0.0084375 0.008671875 -0.0021875 0.000625 -0.007109375 0.009375 -0.000546875 0.0059375 0.000234375 0.022421875 0.018359375 -0.013125 0.01375 0.0159375 -0.0165625 0.0015625 -0.016015625 -0.003515625 0.012890625 0.011171875 -0.011171875 0.0046875 0.010703125 -0.00171875 0.001484375 0.0153125 0.000859375 -0.016796875 -0.000859375 0.001875 0.001640625 -0.00921875 -0.003984375 0.011484375 0.004375 0.001328125 0.00328125 -0.015625 -0.00390625 0.01140625 0.000234375 -0.001328125 0.006328125 -0.007890625 -0.002109375 -0.005859375 0.01 -0.003359375 -0.00828125 0.00734375 0.01265625 -0.01265625 -0.002265625 -0.00421875 -0.00140625 0.001640625 -0.00328125 0.00921875 0.011875 0.002265625 0.000546875 0.00421875 -0.01265625 -0.002578125 -0.00765625 -0.026796875 -0.01796875 -0.00671875 -0.010390625 -0.015546875 0.00890625 -0.003671875 -0.008515625 -0.004453125 -0.000546875 -0.00203125 -0.0003125 -0.01546875 -0.00828125 -0.002578125 7.8125e-05 0.01265625 -0.012734375 0.01953125 0.01765625 0.008203125 0.0071875 -0.003984375 0.00046875 0.001875 -0.003828125 0.009765625 0.00234375 -0.0046875 0.010625 0.016875 -0.005390625 -0.002109375 -0.00421875 -0.00390625 -0.002578125 -0.00390625 -0.019609375 -0.005078125 -0.005390625 0.020546875 -0.0096875 0.008984375 -0.009765625 -0.001015625 -0.0128125 0.008125 0.011796875 0.004765625 0.013125 -0.0096875 0.002265625 -0.0028125 0.0096875 0.006328125 0.009296875 0.011171875 -0.001796875 -0.003359375 0.007421875 -0.003984375 0.002890625 -0.019453125 0.003984375 0.008984375 -0.001640625 0.016171875 0.0084375 -0.001875 -0.0059375 -0.001953125 0.001171875 0.007890625 -0.007734375 -0.005078125 0.021015625 0.009296875 0.0059375 0.006796875 0.01578125 0.00640625 0.00390625 -0.01421875 -0.0115625 -0.008671875 0.00609375 0.014140625 -0.00265625 0.00765625 -0.0015625 0.001484375 0.003046875 -0.007578125 0.015078125 -0.007421875 -0.001328125 0.0021875 0.015234375 -0.01953125 0.006484375 -0.00625 0.011171875 -0.002109375 0.00609375 -0.01609375 -7.8125e-05 0.01546875 0.00015625 -0.007109375 0.01625 -0.0046875 -0.013515625 -0.008359375 -0.007578125 0.009765625 0.006953125 -0.0028125 0.005 -0.006796875 0.00390625 -0.01125 0.017734375 -0.0109375 -0.00578125 0.00671875 -0.006328125 -0.011015625 0.007578125 -0.00828125 -0.009921875 -0.003671875 0.002734375 -0.00578125 0.005390625 -0.001796875 -0.00203125 -0.003671875 -0.0021875 -0.00609375 0.008046875 0.004140625 -0.001484375 -0.000546875 0.018125 0.00546875 0.009609375 0.01046875 -0.00125 -0.00453125 0.000625 -0.008828125 0.00421875 0.006171875 -0.000546875 0.00875 0.01984375 -0.001328125 0.0053125 -0.004765625 0.007265625 -0.011328125 -0.012890625 -0.013828125 -0.008359375 0.02671875 0.01671875 0.0196875 -0.014609375 -0.001875 0.00484375 -0.006796875 -0.01375 -0.001875 -0.017734375 -0.01328125 -0.010859375 -0.010859375 -0.004765625 0.0190625 0.002578125 0.001328125 -0.00578125 -0.0034375 0.01984375 0.00890625 0.01484375 -0.006484375 0.013046875 0.009453125 -0.012734375 -0.0021875 0.01203125 0.019921875 -0.00609375 0.009609375 0.01140625 -0.00046875 0.016640625 -0.004453125 0.00734375 -0.01125 0.008828125 -0.006484375 -0.006015625 0.00234375 -0.008515625 -0.00109375 -0.00890625 -0.0040625 0.001796875 0.00546875 0.005703125 -0.005 -0.00328125 -0.001171875 -0.010234375 -0.016640625 0.0040625 0.008515625 0.014453125 0.01203125 -0.00234375 0.007109375 -0.000625 -0.01046875 0.01171875 0.00546875 -0.00984375 0.01921875 0.003203125 0.00765625 0.018515625 -0.00296875 0.015703125 -0.00265625 0.012421875 -0.0028125 -0.01359375 0.015078125 0.013125 -0.014609375 -0.004921875 -0.02046875 -0.0053125 -0.0034375 0.00375 0.002265625 -0.013359375 0.00984375 0.001875 0.0046875 -0.0065625 0.010390625 0.010625 -0.00015625 -0.002421875 -0.004765625 0.01328125 -0.00046875 0.00640625 -0.005859375 -0.013671875 0.00484375 -0.001328125 -0.004609375 -0.005703125 0.003359375 -0.015078125 0.0015625 0.005625 0.0021875 -0.00171875 0.003203125 -0.006875 0.004296875 -0.00015625 -0.010546875 -0.00203125 0.0234375 0.01375 0.001875 -0.010546875 -0.010625 -0.02265625 -0.0140625 0.0075 0.00640625 -0.010625 0.0053125 0.010234375 0.015546875 -0.021328125 0.00359375 0.008359375 -0.01171875 0.020546875 0.008671875 -0.002734375 -0.00328125 -0.024140625 -0.005703125 0.00125 -0.01078125 -0.00015625 -0.00890625 0.00421875 0.004375 0.00375 -0.01046875 -0.003515625 -0.005625 0.02140625 0.007578125 -0.007890625 0.00640625 -0.00859375 0.00890625 -0.017890625 0.00296875 0.005234375 0.0146875 0.00671875 0.017421875 0.014296875 0.00359375 -0.0015625 0.000625 -0.004453125 -0.010859375 -0.00734375 -0.00359375 0.0028125 0.0053125 -0.012578125 -0.0028125 -0.00421875 -0.005859375 0.015703125 0.006640625 -0.000703125 0.00015625 0.009453125 -0.005 -0.006953125 0.001953125 0.0075 -0.001171875 -0.00203125 0.016796875 0.00109375 0.0078125 -0.0003125 -0.0065625 -0.015 -0.005703125 0.019765625 0.001796875 -0.00609375 -0.009765625 0.003359375 -0.00375 0.006015625 0.0034375 -0.00140625 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1.6ms.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1.6ms.hrd new file mode 100644 index 0000000..1157bee --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1.6ms.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 1.6 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676034624 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +15.14875 9.85125 12.800625 13.8675 14.49625 9.155625 13.060625 11.91 11.409375 12.7075 12.795 10.028125 8.950625 8.89875 11.784375 12.095625 9.129375 8.835625 14.3125 9.939375 7.438125 14.104375 12.105 7.91 8.835 7.72625 13.974375 6.409375 13.905 7.156875 11.875 5.854375 5.051875 9.808125 8.67 6.76375 11.341875 7.30625 8.768125 5.51625 7.816875 10.7875 10.816875 6.65625 6.83625 9.95375 8.493125 12.339375 11.195 6.78 8.53125 5.70625 10.84875 9.24625 7.67875 8.070625 8.17 7.133125 8.16875 5.97 6.043125 8.990625 6.2425 5.509375 9.020625 5.4275 8.09875 10.42 6.244375 10.1475 7.81 7.809375 7.61875 5.85375 4.88875 8.813125 5.533125 9.0175 7.275625 6.88125 6.008125 9.33125 4.395 2.88625 5.7775 4.44625 6.856875 6.344375 4.785 4.94875 5.796875 6.948125 8.566875 4.3625 6.63375 5.448125 6.765 5.0075 6.07375 6.405 4.111875 4.14375 2.73375 5.064375 3.1875 1.17625 8.376875 5.445625 4.99125 3.67 5.67 6.979375 5.16625 8.32875 5.120625 1.628125 4.03875 6.0875 4.500625 7.910625 4.410625 4.645 4.774375 2.206875 2.590625 5.836875 4.601875 4.904375 4.574375 4.585625 5.329375 2.5 6.43125 1.488125 5.175 6.9275 5.63875 3.241875 5.545625 4.509375 4.865625 1.363125 2.778125 5.31625 4.130625 4.258125 2.674375 5.5875 2.52625 8.355625 2.538125 4.6175 5.93375 -0.051875 5.045625 4.169375 6.209375 6.03125 5.79625 3.4475 -0.17625 2.304375 1.548125 2.716875 5.923125 3.185625 5.065625 0.426875 3.45125 2.994375 3.47375 3.891875 6.373125 2.141875 3.53875 2.4125 3.534375 3.570625 4.665 1.86875 0.258125 6.074375 5.904375 6.825 4.01875 6.079375 4.6125 2.3675 4.34625 2.270625 5.445625 4.99625 1.485625 2.09125 5.063125 5.493125 2.13125 5.718125 -0.52625 0.744375 3.446875 2.65125 4.225 4.009375 5.445 2.73125 2.545625 3.8775 2.72875 3.94375 0.533125 -0.835625 5.278125 2.870625 4.40625 3.7175 4.56375 3.20625 1.40375 2.51625 4.4275 4.845625 3.8925 -0.706875 4.77 3.466875 1.654375 1.75 2.20125 2.890625 3.05 2.8375 4.0075 5.80875 3.215625 1.985625 2.864375 2.8625 0.17 6.850625 5.105625 2.884375 0.4125 2.77375 1.845625 1.0375 4.856875 2.066875 4.023125 1.619375 3.59625 3.225 3.85 3.22875 4.233125 2.0475 2.56375 0.61875 2.975625 2.208125 1.296875 1.17125 4.73125 1.05125 -0.664375 1.085625 3.890625 3.450625 1.364375 2.21875 3.453125 4.785 -1.435625 1.33375 1.5775 2.120625 1.710625 3.791875 2.81 5.920625 4.615625 2.426875 -0.548125 2.046875 3.62125 2.9875 1.314375 0.9525 -1.1275 1.780625 1.265 2.33875 5.375625 -0.22875 2.541875 0.80875 2.86875 2.619375 3.054375 1.996875 2.52 0.17875 -0.510625 4.454375 0.769375 -0.7875 4.16875 -1.551875 3.50375 1.806875 3.693125 1.868125 -0.89125 2.060625 1.95125 -1.335 5.765 0.735 2.368125 0.48 -1.569375 2.085625 1.68125 4.461875 1.87 1.66125 2.73 0.42 0.761875 -1.646875 3.089375 4.109375 0.144375 1.243125 3.195625 3.946875 0.7475 3.415625 1.12 -0.135 1.279375 0.0825 3.503125 5.22875 3.496875 4.63 -0.32875 0.98875 3.020625 4.1875 1.974375 2.610625 1.753125 4.2025 -0.091875 0.406875 3.151875 3.24125 2.418125 3.3275 5.65125 0.60375 2.601875 1.533125 1.078125 1.445625 3.883125 1.42625 3.1025 3.983125 1.086875 1.270625 0.67375 1.320625 0.528125 -0.28375 1.031875 2.620625 0.065 0.25 0.9625 5.344375 1.356875 -2.156875 1.958125 1.09625 0.600625 4.319375 2.940625 1.055 1.006875 1.158125 -0.141875 1.55375 0.158125 -0.2175 2.680625 -1.695625 1.231875 1.20875 2.80375 -0.766875 0.519375 1.045625 -0.1775 -1.520625 2 1.990625 1.23625 -3.019375 2.17875 2.6175 4.033125 0.2525 3.381875 1.195 2.695 1.603125 -0.71625 3.681875 1.343125 0.641875 4.25 0.673125 2.685 1.810625 1.169375 1.411875 3.558125 -0.045 -2.013125 1.67375 0.815625 2.663125 1.97625 0.679375 -0.21875 2.20875 -1.0025 0.1125 0.295625 1.593125 0.911875 3.015625 1.510625 0.07625 1.2175 1.308125 1.050625 -0.345625 3.958125 4.0375 1.34125 2.119375 2.669375 -0.060625 1.466875 5.36125 0.95625 -0.78625 1.1525 -0.445625 -1.095625 0.245 0.225625 -2.194375 0.768125 -0.48125 1.65875 1.928125 3.94625 4.221875 2.329375 1.059375 -0.870625 0.625 1.4475 0.58 1.02875 2.725 1.394375 1.4425 0.385625 -0.1925 -0.51 2.529375 2.45625 -0.173125 3.71625 2.425 3.239375 2.7525 0.245 -0.885 -0.280625 0.1075 2.3275 2.644375 1.07 0.04625 1.540625 1.7575 2.7925 0.38625 -0.5625 2.969375 -0.190625 0.69875 3.82125 -1.425625 -2.65875 0.93375 1.26875 1.346875 0.718125 1.831875 2.06125 -2.23375 1.816875 1.175 -2.71875 2.184375 2.619375 0.18125 2.11125 -0.453125 0.525625 2.764375 5.41625 -1.510625 2.42625 2.189375 4.37875 0.3575 -0.94125 0.934375 2.355 1.079375 -0.783125 3.090625 0.17625 0.71 5.78125 0.8025 2.645 1.94875 0.84625 0.080625 1.975625 1.3 3.194375 -0.125 1.410625 -0.45125 2.76375 -0.950625 -1.315 -0.845 -0.349375 1.131875 -0.480625 -0.125625 -0.564375 1.825 0.999375 3.905 -0.09875 1.43375 2.755625 -0.16 0.441875 0.349375 0.27375 -0.325 0.576875 2.928125 0.778125 2.001875 -1.1025 0.736875 0.865625 3.711875 0.755625 1.465 2.1125 0.3575 0.54875 2.04875 -2.209375 0.66 4.389375 0.850625 1.4975 -0.12875 1.35 2.00875 0.82125 0.9275 -1.174375 -0.6125 3.5975 0.779375 3.29 2.5375 3.166875 3.574375 -2.861875 2.9175 -4.58375 3.3425 1.3475 -0.596875 1.205625 0.826875 -0.603125 -1.629375 -0.134375 2.810625 -0.3675 0.7175 -0.188125 -0.936875 3.18375 -0.04375 2.436875 -1.644375 0.675 -1.1125 -0.769375 2.131875 2.5025 2.541875 1.96625 -0.191875 1.095625 -1.558125 -0.04875 1.1825 -0.726875 -0.70125 -0.551875 1.42875 3.296875 0.571875 -1.101875 1.036875 0.19625 0.381875 3.8375 0.846875 3.2675 2.30125 1.394375 -0.679375 0.57 1.78625 0.756875 -1.096875 1.99125 1.75625 1.8 -1.785 -0.75 2.193125 -2.346875 3.161875 -1.9025 1.1575 -0.62125 -0.535625 1.243125 1.565625 0.688125 -1.495625 3.128125 2.410625 2.2225 1.045 1.88875 1.08875 -0.54125 1.3825 0.51375 0.209375 2.63 -0.57875 1.35375 1.14625 -1.45625 0.339375 -0.149375 0.786875 0.52625 1.125625 0.6 1.25875 0.226875 -0.48625 -0.968125 1.290625 1.25625 1.614375 1.194375 1.97 0.346875 1.255 2.365 1.9775 0.235 0.766875 0.39875 -0.4225 1.431875 4.175 -2.23375 -0.105625 2.88875 1.626875 0.1625 -0.454375 -0.44 -3.26125 -0.881875 1.36625 3.584375 3.79625 2.2375 0.275 0.870625 -1.7325 -0.936875 0.66875 1.69625 -0.10625 0.3175 -0.624375 -0.323125 4.105 1.654375 2.07375 2.321875 -0.583125 1.806875 1.44 0.813125 -1.159375 0.435625 -1.31 1.024375 3.085 1.5925 -0.636875 0.025 1.59375 -5.16 -1.2275 2.1 3.265625 0.98875 0.174375 2.259375 2.276875 0.715625 -0.005625 0.978125 1.7425 -2.07625 1.8275 3.6075 0.485 1.253125 -3.030625 -1.0375 -2.369375 1.21125 -0.575625 1.65875 -0.076875 1.92875 -1.37375 1.43875 1.525 1.781875 2.064375 -0.53375 -0.36625 0.75875 -0.5175 -0.859375 0.170625 2.155 -0.09 -0.563125 0.9625 0.55625 3.293125 0.73125 0.475 0.631875 -0.5625 0.465625 1.09875 -0.376875 -0.011875 3.124375 0.789375 -2.771875 0.46625 2.8475 3.73625 1.4125 -2.555 2.6425 2.77 2.571875 3.5375 0.8175 2.165 -1.533125 0.368125 0.250625 -0.41375 0.35625 2.06125 1.83125 -0.31875 1.848125 0.785 1.1175 2.71 0.741875 1.46625 2.566875 1.126875 2.383125 1.78 0.255625 -0.51625 0.1975 1.32625 0.116875 -0.190625 0.829375 2.83 0.8325 0.263125 1.99625 -2.045 -0.4125 -2.428125 -2.10625 -1.030625 -1.530625 0.611875 -0.98 0.029375 1.806875 -1.34875 0.67375 2.674375 3.821875 -3.54 0.8175 1.85375 -0.433125 1.4525 0.078125 0.148125 1.535 2.40375 -1.028125 3.143125 -0.61875 0.869375 3.510625 -0.114375 -2.5375 -1.78375 2.91375 0.473125 1.82 -1.505625 -0.010625 -1.783125 0.48125 0.471875 1.27 2.8925 0.951875 -0.570625 -1.54 -0.730625 2.915 0.313125 -1.588125 0.0975 -0.0425 3.756875 0.646875 2.37 -1.51 -2.258125 -0.305625 0.85 3.423125 1.651875 2.8025 2.91125 -2.3 2.8425 0.931875 4.13375 -1.08375 -1.82125 0.258125 0.839375 -0.645 -0.84375 0.37375 -0.803125 0.71375 -2.893125 -2.56 0.815625 1.888125 -0.1025 4.3325 -0.278125 1.540625 -0.784375 2.695625 -1.269375 0.0625 0.14875 0.904375 0.38 1.623125 0.74 0.63625 0.320625 -0.224375 -1.009375 0.899375 0.036875 2.73625 -0.49125 -3.450625 0.441875 -0.8775 3.184375 0.908125 0.299375 -2.099375 0.363125 2.0225 -0.305625 -0.526875 2.351875 1.25875 -0.155625 -0.50375 -1.1475 1.275 1.263125 0.164375 -2.024375 0.67125 -0.750625 -1.35125 1.088125 -0.023125 2.134375 -2.4625 4.131875 0.295625 0.795 0.241875 0.0975 2.39875 -0.580625 -1.39125 1.0225 -2.46625 -1.51375 0.574375 0.92625 2.45125 2.773125 -0.86875 0.37875 0.636875 0.196875 2.095 -1.6125 1.29125 -1.699375 0.16 -0.289375 1.45 1.15875 0.315 0.785 0.30375 -0.231875 -1.3075 -2.491875 2.479375 0.925 0.781875 -0.299375 1.4925 0.11 1.31 -2.79375 -0.69625 1.419375 2.858125 1.525 1.85375 0.426875 -0.784375 1.455 0.388125 0.679375 1.209375 0.429375 -2.711875 -0.090625 -3.90625 0.326875 -1.169375 0.210625 2.125 0.159375 -0.88625 0.755625 -1.838125 2.33125 -0.12625 0.385 2.045625 0.31875 0.24625 0.68125 -0.8225 0.470625 0.958125 -0.78375 2.055 -0.0325 -1.18125 -0.479375 2.121875 3.254375 1.371875 1.2975 1.61875 -0.109375 0.2825 -0.56 1.7025 -3.164375 2.549375 -3.74875 -3.74625 1.99125 -0.531875 2.405625 -3.87375 2.608125 -2.374375 1.34 -2.0975 1.56875 2.324375 -0.933125 -1.58 3.0425 2.54875 0.72875 2.933125 -0.206875 1.645625 0.115625 -0.81 1.73 0.07125 -2.339375 1.72625 -0.150625 0.035625 0.033125 0.285 1.43125 0.82125 0.08 5.028125 0.185 0.691875 2.12 1.841875 0.8175 -0.8275 0.526875 3.88875 -0.20375 -1.71625 -3.246875 2.610625 -0.05 1.331875 1.765625 -1.72375 0.51875 0.205 -1.668125 0.57625 1.640625 1.47125 1.116875 2.76625 1.161875 -0.2825 -2.278125 0.441875 -0.450625 1.191875 -0.215 0.131875 1.76375 -0.611875 -1.79 -0.485625 2.013125 2.135625 2.85 1.955 5.4975 0.968125 -0.17875 0.850625 -1.103125 -0.35 -0.4075 3.156875 -0.37875 0.4875 2.515625 -0.45125 -0.425625 -0.56875 1.73125 -0.1975 0.16375 3.165625 1.6625 4.6725 -0.839375 -1.484375 0.145625 0.45 -0.395625 1.03125 -1.088125 -0.470625 0.909375 0.1325 0.92125 2.945 0.878125 2.244375 -1.4925 1.17625 3.34625 1.4875 -2.1525 1.145625 2.945 1.428125 0.5625 2.318125 0.081875 0.875 0.361875 0.1 -0.528125 -2.720625 -1.89625 -0.015 -2.48375 1.140625 1.768125 0.298125 3.04125 -0.36375 -0.3575 -1.100625 -0.570625 -1.09875 0.810625 1.43625 -0.48375 -0.981875 -1.64625 -2.10875 2.82625 1.0475 -0.65875 -0.321875 1.49375 0.718125 -0.34125 2.319375 -0.775625 -0.584375 1.14125 3.823125 -0.635 -1.48375 2.730625 2.01375 0.145 0.065625 -1.905625 0.455625 1.1125 0.714375 -1.7525 -0.644375 2.986875 0.926875 0.1425 -0.920625 3.264375 -0.04 3.0825 2.303125 2.4625 1.58375 -3.110625 0.77375 -1.304375 -0.366875 0.17125 1.976875 1.789375 2.82875 -0.34 -2.28625 1.28875 1.43875 -4.533125 -1.04875 0.18 0.4775 1.769375 -0.34875 -3.300625 0.96125 -2.264375 2.8525 -1.8375 1.9825 1.299375 0.05125 -0.286875 -0.78125 -2.006875 -0.824375 0.888125 0.44875 1.541875 1.778125 -0.64375 -2.034375 3.343125 2.168125 1.614375 0.641875 -0.589375 -1.30875 -1.06375 1.011875 0.89375 0.14 -1.546875 -1.95375 3.58 -0.435 -0.28125 -1.1925 -1.898125 -0.50375 -0.426875 0.60625 -1.380625 0.539375 -0.730625 -0.98875 -0.458125 1.73125 1.596875 -0.0075 -0.683125 0.184375 1.436875 -0.585 -1.55625 -2.755 1.355 -0.560625 0.791875 -0.101875 2.491875 -1.45125 0.11125 -0.793125 -1.466875 -2.6275 2.213125 1.47625 -2.3825 0.1375 -0.30625 -1.17 -2.0875 0.19 1.953125 2.265625 -1.67375 1.21875 -0.9475 2.2425 0.454375 1.4825 2.06625 0.6175 0.521875 -1.545 -0.50875 -2.075 -1.644375 -0.094375 1.1575 2.65875 1.52125 -0.5525 -1.885 0.22625 0.96875 -1.613125 0.008125 -1.690625 1.260625 3.02375 -1.82125 1.745 1.41875 1.328125 1.9025 -2.08875 -1.4525 1.73 -0.276875 0.856875 -0.770625 2.55875 1.744375 -1.79125 0.40125 -0.486875 1.16875 -0.946875 1.181875 -0.6575 -2.165 1.7025 -2.0425 4.305625 3.5075 -1.35875 -0.90375 -1.6325 0.409375 1.02125 1.361875 -1.06 1.064375 2.565 0.579375 2.12 2.1825 -1.389375 2.204375 0.41125 -1.43125 -0.276875 -0.05625 -0.900625 -0.86875 -0.33625 0.229375 -0.123125 3.339375 2.190625 0.705 0.133125 0.160625 0.78375 -1.261875 0.555 -0.95625 4.546875 0.368125 2.1525 -0.225 1.2475 0.455625 -0.259375 1.853125 -0.801875 -0.1875 -1.065 -2.643125 -1.78125 -3.41 1.195625 3.394375 1.594375 1.951875 0.511875 1.3025 -0.023125 -1.08875 0.046875 1.324375 0.876875 2.320625 1.92625 2.27 -0.969375 1.278125 0.124375 1.1275 -0.4825 -0.18 3.899375 -1.321875 0.735625 2.270625 0.248125 -1.278125 -1.40125 -0.484375 -0.7225 3.01875 -1.039375 1.19875 2.08375 -0.4375 -0.575 2.79875 -0.0825 -0.0025 -0.70375 0.06625 -1.171875 0.38625 3.148125 -2.031875 -0.150625 -2.185625 1.22625 0.245625 -0.8325 1.5 2.89375 -0.979375 0.058125 -1.474375 0.49875 -3.15 1.48 0.685625 1.72 -0.378125 -0.376875 -0.263125 0.665 0.643125 0.048125 0.8125 -0.64875 1.235 -1.568125 -2.415 0.05125 4.129375 -1.36125 0.18375 +12.550625 17.724375 14.221875 18.07875 15.589375 14.981875 13.32125 15.894375 13.519375 15.85 14.314375 12.909375 16.288125 14.2075 13.0675 13.606875 13.511875 13.740625 12.826875 12.19625 13.986875 12.238125 15.2 13.439375 12.036875 14.351875 9.8825 14.465625 10.89875 12.28125 12.043125 12.1725 12.06875 12.1 11.984375 10.740625 13.155625 12.91375 9.785625 9.4375 13.695625 11.85 11.56375 10.231875 8.91375 12.795 12.761875 10.245 13.970625 13.6825 12.005 10.734375 8.893125 9 11.551875 11.108125 8.5175 11.175 10.859375 10.47125 11.140625 7.94375 8.2225 9.836875 11.21375 7.82125 10.75375 11.196875 12.379375 7.97625 7.743125 9.6525 8.821875 12.373125 11.330625 9.739375 10.585625 7.220625 6.55 7.74125 7.619375 10.193125 7.246875 7.43625 9.521875 4.331875 11.18 5.759375 8.23375 8.08375 8.600625 9.264375 7.881875 7.53875 9.618125 7.066875 7.085625 6.255 6.0425 6.620625 6.851875 5.599375 4.974375 7.37375 2.171875 6.260625 7.860625 6.06375 4.58625 8.0775 8.540625 6.37125 7.635 6.384375 7.470625 7.994375 6.499375 9.211875 9.4275 8.126875 4.89875 8.195625 5.60625 5.303125 4.34125 7.38 6.69875 9.23625 4.306875 6.913125 1.983125 3.37375 4.4575 6.879375 4.663125 5.066875 8.455625 4.115 6.35625 7.320625 3.314375 4.47375 7.265625 2.545625 6.0275 4.58 6.754375 7.851875 5.98375 4.128125 3.640625 5.10125 7.946875 8.71125 7.260625 5.99875 4.510625 4.989375 5.69875 4.42625 3.690625 3.3275 1.123125 2.986875 8.466875 3.79125 4.778125 3.898125 4.883125 3.216875 4.855625 5.479375 5.359375 8.099375 4.320625 5.613125 3.3575 3.05875 9.1775 4.888125 0.77 2.740625 1.96625 6.084375 3.739375 4.244375 6.36875 5.113125 3.46125 3.518125 8.385 4.376875 5.955 2.341875 5.44 4.70875 2.85 7.09625 3.349375 6.240625 3.696875 6.01125 5.4825 3.45 3.773125 2.561875 1.36 1.595625 2.67625 2.851875 5.09875 2.039375 5.6475 2.316875 3.069375 4.893125 3.115625 3.535625 5.474375 4.256875 -0.31375 4.908125 4.57375 4.82125 5.96875 2.218125 1.458125 1.090625 2.971875 4.256875 2.285625 2.23125 2.409375 4.6 2.358125 5.319375 5.771875 4.805 2.003125 1.4325 2.146875 1.70875 2.301875 5.74125 3.3425 2.04125 3.35875 3.983125 1.315 4.13625 2.529375 0.279375 5.099375 0.564375 3.153125 1.636875 2.323125 7.0925 2.704375 6.0775 5.368125 3.295 1.08 -0.35875 4.92625 2.77875 5.8275 6.339375 3.300625 -0.10625 3.4125 2.65875 -0.59625 2.886875 3.80625 3.7325 6.345 1.338125 1.50625 0.97125 4.840625 1.22375 4.01 1.809375 4.184375 2.668125 4.64875 1.625625 6.235 2.3025 1.96 4.594375 1.6775 3.32375 -0.463125 3.520625 2.5175 2.429375 2.516875 5.9525 2.42125 2.95875 0.87875 4.105 8.44 2.216875 0.971875 2.725625 4.98625 4.779375 2.410625 1.275625 3.09 2.9025 5.32625 4.04125 1.43625 2.474375 3.220625 6.464375 3.696875 2.000625 3.3075 3.2275 4.3875 1.974375 1.9025 3.418125 3.358125 -0.18 4.486875 4.2525 5.033125 2.535 4.115 0.37875 1.240625 1.808125 4.2875 4.440625 3.5375 3.001875 4.034375 1.2175 4.87375 0.93875 2.646875 -0.19875 2.8 1.508125 0.13625 5.839375 0.794375 0.881875 2.65125 2.1625 3.7775 4.27125 3.37875 0.36125 3.0375 3.286875 4.104375 1.923125 2.850625 2.383125 3.863125 2.49375 4.24 3.006875 4.010625 2.695 2.17125 3.224375 2.183125 6.77125 2.38125 3.171875 -0.256875 0.820625 2.68875 0.73375 1.963125 1.1475 -1.220625 4.81 4.559375 3.21375 2.674375 1.993125 0.730625 1.384375 0.73375 1.940625 4.03375 2.084375 4.313125 2.108125 -1.420625 0.028125 3.3975 1.421875 0.26375 2.05375 3.300625 1.08375 -2.604375 2.790625 2.01625 3.020625 0.683125 0.4475 2.135 0.305625 1.714375 1.2325 2.4425 1.889375 -0.63625 4.456875 3.24 3.885625 2.529375 0.6725 3.5975 1.3875 -0.19125 3.224375 2.158125 1.2925 3.705 3.916875 1.96 0.12375 1.934375 1.06 2.9075 2.345 3.250625 1.925625 4.56125 2.208125 -2.250625 1.724375 1.1125 4.356875 6.740625 4.85375 2.775625 0.853125 3.621875 1.404375 -0.625625 1.76875 0.920625 4.47625 0.08875 3.13625 1.99875 -0.33875 1.83375 1.893125 0.240625 3.8825 -0.799375 0.285 2.034375 1.910625 -0.515625 1.864375 3.16375 1.740625 2.30875 0.033125 -0.56875 1.955 1.630625 2.8175 3.51 3.415625 0.89375 0.948125 0.72125 0.09 0.164375 1.39125 -1.219375 2.52625 0.5 2.18125 2.45 4.3775 1.053125 5.47875 2.18375 1.61 2.5875 1.60125 1.79625 1.405625 0.2675 0.298125 2.27 -0.01125 1.554375 2.958125 -0.5875 -1.580625 1.38625 2.071875 3.676875 1.90625 3.3975 0.25625 1.220625 3.475 0.218125 1.885625 1.115625 -2.04375 1.434375 4.825 0.930625 3.7375 -0.870625 1.4825 -1.22625 1.879375 -0.566875 5.435 -0.9775 4.62375 3.524375 2.825 1.715625 1.001875 1.890625 3.86875 -0.69625 -0.19375 2.918125 4.359375 2.60625 0.34125 3.313125 0.461875 2.910625 -0.520625 0.45625 2.63625 0.864375 3.0625 0.21875 -1.495625 -1.6775 4.559375 0.759375 0.380625 2.5675 -1.64625 -1.370625 1.968125 2.65125 -1.800625 2.98125 1.285 1.759375 0.403125 -5.096875 -1.713125 0.16125 2.770625 0.02875 5.143125 -0.408125 4.069375 1.985 1.128125 0.81125 2.3425 4.145 0.091875 -0.82125 -1.4575 -0.085 -1.411875 -2.71125 3.205625 -0.839375 0.926875 -0.5675 1.848125 3.29875 4.7975 5.226875 -0.055625 -1.068125 6.0675 0.706875 2.281875 0.585 3.681875 2.94 1.20875 3.735 2.196875 -1.649375 1.580625 -1.729375 -0.854375 0.454375 0.69 1.154375 -1.265625 2.5275 4.158125 -0.410625 2.415 3.03125 1.8475 1.655625 4.636875 1.39875 1.3575 1.544375 0.896875 -0.700625 2.49375 1.243125 -3.643125 2.321875 0.566875 0.538125 2.175625 -2.00875 -0.955 -0.396875 3.663125 2.330625 0.238125 3.615625 -0.246875 -4.101875 1.716875 3.834375 3.519375 2.91875 0.11875 -2.416875 1.495625 3.92375 1.97375 -2.445625 -0.474375 1.27 2.241875 2.949375 3.415625 3.344375 -1.8125 -1.348125 1.11375 2.029375 -0.0625 3.4175 -0.071875 -0.77125 -1.196875 3.28625 1.77125 3.668125 0.126875 0.118125 0.49875 2.780625 2.9575 1.029375 -1.06375 -1.849375 -1.039375 -1.42875 2.465 1.3175 0.0325 1.269375 0.43375 1.7175 0.46 0.684375 3.02375 -1.17875 -0.079375 1.08625 2.51625 -0.70125 0.0525 1.3025 0.439375 2.294375 -0.4575 0.45625 4.865 3.9125 3.965625 2.386875 -1.50875 -0.3625 -0.329375 -0.9675 4.91375 1.275625 3.0125 3.984375 5.28125 0.50375 3.2775 4.71125 -0.450625 -0.25125 1.395 2.780625 -1.743125 1.113125 -0.18125 4.60875 -0.78 2.97875 1.271875 -0.63375 -1.64375 1.988125 3.1725 1.21875 0.67 1.6675 4.57625 0.410625 4.81875 1.640625 3.55625 0.829375 2.97375 1.6 -0.30625 2.36375 2.19875 0.33875 0.175625 1.503125 -4.320625 -1.28625 2.88375 1.0475 -2.184375 2.5825 0.82375 -0.666875 2.8575 -1.74875 1.219375 -0.081875 1.273125 1.75125 0.7525 0.4125 1.144375 0.38875 -0.0575 3.010625 -1.874375 2.335625 0.446875 -1.083125 2.251875 -0.409375 1.165625 0.59625 -0.155625 2.209375 2.4825 -0.289375 -0.1225 3.329375 -0.7825 0.47 1.130625 0.15375 -0.32125 0.04375 0.376875 1.955625 -0.984375 0.205 -4.5875 -0.051875 1.143125 -0.468125 2.299375 1.29875 0.955625 0.85625 1.47625 1.03625 -0.136875 2.41 1.931875 0.6475 -0.691875 0.975 -0.3525 1.97625 2.301875 2.448125 -0.22125 0.2475 1.88375 1.4875 -0.840625 2.914375 1.49125 1.05 2.334375 1.628125 0.875625 -0.60875 -0.4825 1.8825 0.579375 3.988125 1.803125 4.08625 1.68875 -0.714375 0.2925 0.215 -0.733125 2.734375 3.38 0.428125 -1.324375 1.9025 0.994375 -0.735 -0.07125 -0.734375 2.830625 -1.3775 -0.179375 0.7575 1.293125 1.20125 -1.2525 3.825625 0.640625 -1.1575 1.72625 3.19625 -0.40625 1.834375 2.12625 1.23125 0.33625 0.98125 1.43375 -1.918125 0.171875 0.454375 0.796875 -0.41375 -1.819375 3.466875 -0.72625 1.415625 1.1825 4.063125 0.34625 2.545 -0.009375 3.664375 2.56125 -0.43875 1.650625 2.4825 -2.086875 1.62 1.73 -0.50375 -0.606875 0.59875 0.165 -0.81375 -0.746875 1.1925 2.845625 2.646875 0.278125 -1.589375 2.58375 0.67 0.744375 3.204375 3.325625 1.125625 0.63125 -1.1125 4.62875 2.47625 1.365625 0.60875 1.59625 0.7675 0.165 -2.185 1.424375 -5.25 2.184375 0.020625 0.73375 1.47875 -1.51875 -0.493125 -0.893125 0.344375 0.64375 1.455 2.043125 -1.665 3.03125 -0.24625 2.208125 -1.193125 3.594375 1.920625 -0.896875 -0.6975 -1.923125 1.424375 0.00875 3.7525 2.051875 2.903125 1.05 -0.116875 -1.951875 0.780625 -0.474375 0.954375 2.023125 1.3075 0.85375 0.3725 -0.18875 0.935 1.6225 1.841875 1.10875 1.194375 2.858125 -0.000625 -0.233125 2.49125 -1.054375 1.089375 2.7975 -0.009375 -0.0075 1.908125 0.279375 -0.294375 2.38875 -0.22625 0.83375 0.19625 -0.601875 0.100625 5.5525 -0.281875 0.828125 -1.16875 0.191875 0.48375 -0.19875 0.806875 -0.116875 -0.6275 -0.08625 0.35125 1.535625 -0.853125 0.103125 2.81625 -0.04375 3.371875 -1.598125 -1.504375 -0.036875 -1.536875 2.608125 1.101875 2.525 1.0125 -1.129375 1.871875 -1.983125 -2.678125 -1.125 1.35875 1.473125 1.04125 -1.40375 -0.696875 2.128125 0.8125 1.05875 2.04875 -0.015 0.38125 -1.530625 -2.69 3.456875 3.048125 0.32125 2.34375 0.465625 -2.236875 -0.09125 -2.619375 -0.060625 0.059375 0.230625 -3.815 -0.669375 1.595 0.9425 0.20625 1.195 0.449375 -0.91625 0.458125 1.429375 3.050625 0.014375 -1.860625 1.11 -0.1325 0.850625 1.003125 0.695625 2.92375 -1.43875 -1.856875 0.545625 1.59875 -0.78 0.37 2.095 0.68875 0.35375 -1.619375 -0.623125 2.526875 0.21375 3.85625 -1.22625 0.489375 -2.07375 1.69 0.579375 0.5575 0.386875 -2.275625 2.005 2.325 -1.61 0.495625 0.575 -0.029375 -0.679375 0.301875 2.919375 2.11125 -0.441875 1.346875 -1.156875 3.09875 -0.933125 -0.039375 -0.755 -1.283125 -1.981875 1.563125 2.00375 3.3325 2.038125 -2.69125 -1.5575 0.499375 1.054375 2.18875 1.77875 -0.62375 0.4575 0.25 1.014375 -0.039375 1.890625 -0.441875 1.216875 2.72375 1.071875 -0.2225 0.674375 1.869375 -2.253125 -2.234375 0.138125 -1.2325 -1.32625 -1.255 2.778125 1.671875 1.454375 0.781875 1.444375 -0.335625 1.746875 0.878125 -1.80125 -1.600625 -0.219375 0.25875 0.836875 1.37 0.76125 -0.800625 1.27875 -0.82 0.33625 -2.94375 -3.234375 -2.37 -0.326875 -0.32875 -0.916875 1.96 1.43125 1.195 -2.379375 1.8725 -1.230625 -0.500625 0.48625 0.365 2.560625 0.445 -2.701875 1.739375 0.383125 -3.45375 -1.065 2.65875 0.9525 -0.67875 -0.47875 1.174375 -0.594375 1.173125 1.856875 -0.0925 1.5275 2.0825 2.216875 -0.18 0.67875 0.18375 0.858125 1.274375 -0.27875 2.286875 -0.746875 -0.159375 -0.62125 2.171875 2.7425 -2.0675 -1.336875 -1.401875 1.3975 1.87875 0.4275 -0.79 2.49625 1.528125 -0.531875 -1.33 0.524375 -1.08125 -1.876875 0.8725 2.17625 1.68875 0.0275 -1.711875 1.0525 0.36625 0.3775 -0.360625 -0.99625 -1.398125 0.323125 2.82375 0.175625 -0.273125 -0.129375 -0.37125 1.13 -2.240625 -0.180625 -0.943125 -1.015625 1.225625 -1.985625 -0.258125 -0.75 0.495625 0.43875 -1.1125 0.17125 0.025625 0.34875 -0.22 -1.656875 -0.258125 2.40625 -0.546875 1.635625 0.455625 1.7725 3.13 -0.845 0.071875 -2.30875 1.03 -1.37375 -3.385 2.755625 0.89375 -2.7925 3.04375 -1.5625 -0.076875 1.835 1.836875 0.32625 -0.944375 -1.71125 0.8125 2.22625 1.9225 -0.8025 0.62625 -0.613125 1.415 2.725 1.6325 1.35125 -1.555 0.206875 -1.9875 0.6925 -0.349375 3.109375 0.4175 0.989375 -0.011875 -2.4425 0.3375 1.9 -2.599375 0.929375 -0.531875 -0.006875 -0.816875 -0.553125 4.0675 1.104375 -0.88125 -2.045625 -0.02625 2.7325 -1.188125 0.231875 -0.144375 0.240625 -1.1325 0.8375 -0.643125 0.3975 1.036875 1.42375 -1.580625 1.383125 0.104375 0.068125 -2.518125 -2.515625 0.979375 0.5075 0.07375 1.895 -0.896875 0.15875 0.265625 1.7125 -0.945625 1.644375 -1.27625 0.3975 -0.46875 -0.1125 0.906875 0.586875 1.3325 1.433125 1.586875 0.73 0.86375 0.315625 -0.54375 -1.216875 0.11375 0.901875 0.815625 -2.669375 2.46625 1.083125 -0.128125 -1.1925 -1.46625 -0.470625 2.983125 2.515 -0.445 0.559375 3.003125 -1.675 1.69375 1.27875 1.315625 0.38625 -0.570625 0.71875 0.579375 0.575625 1.220625 1.159375 2.308125 0.079375 -0.88125 -1.93375 0.468125 4.759375 -2.31625 -0.180625 0.713125 -0.015625 1.289375 -0.90125 1.018125 2.708125 -0.94375 -1.06 0.10875 1.428125 -1.005625 0.085 1.25625 0.58125 0.681875 0.646875 1.93 4.21375 1.391875 -1.006875 2.31 0.719375 2.848125 -1.06875 -3.05 1.425625 0.225 -0.111875 0.009375 -2.29 -0.71625 -1.2675 -0.818125 -1.0625 2.225625 3.191875 3.668125 -0.404375 2.099375 0.515 2.4325 3.2275 -2.515 -0.114375 -2.86 0.575 0.07125 2.3025 1.82 -1.88 -0.336875 -1.719375 1.461875 0.49125 2.265625 1.829375 -2.916875 -0.154375 -1.404375 4.925 -0.430625 -2.238125 -0.37875 -0.605 -0.88375 1.11875 1.031875 -1.55375 0.590625 2.83125 1.939375 -1.43 1.290625 -1.774375 0.250625 1.086875 0.558125 0.45125 2.04625 1.32625 -0.926875 0.4725 -0.67375 -0.57625 -0.08 0.055 2.40625 -0.84875 -0.05625 0.845625 1.12875 2.31 -1.395 1.540625 1.175625 2.455625 0.31125 1.46 1.371875 0.081875 0.6925 -0.52375 -1.603125 0.348125 2.030625 2.02875 0.86125 2.01625 1.358125 -0.816875 4.5075 1.193125 0.581875 -0.86 -0.11375 0.9725 -1.9825 2.2425 3.371875 0.69875 1.39125 -0.820625 -0.37 -2.280625 1.209375 -0.49625 1.311875 0.630625 -1.20625 1.265 2.66375 -0.26 -0.13375 3.71125 -1.549375 -0.543125 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1.6ms_ref.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1.6ms_ref.hrd new file mode 100644 index 0000000..f7c2ad5 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1.6ms_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 1.6 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676034624 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0.091875 0.0275 0.03375 0.060625 0.015625 0.065625 -0.001875 0.013125 0.043125 0.046875 0.009375 0.01875 0.023125 -0.015625 -0.065 0 -0.016875 0.011875 -0.033125 -0.0525 -0.02625 -0.016875 0.023125 -0.0075 -0.0125 0.01 0.03125 0.026875 -0.006875 0.00875 -0.03875 -0.0725 -0.006875 -0.05125 -0.038125 -0.0175 -0.025 -0.041875 -0.016875 0.001875 -0.038125 0.030625 0.05875 0.06875 0.05 0.019375 0.08375 0.048125 0.001875 0.06625 0.021875 0.03125 0.00875 -0.01625 -0.025625 0.035625 -0.018125 -0.01 -0.0025 -0.0275 0.01 0.026875 0.028125 -0.01125 0.004375 0.011875 -0.000625 0.020625 0.039375 0.01125 -0.0025 -0.035 -0.00375 0.014375 -0.011875 -0.004375 -0.05375 0.005 -0.025 -0.030625 0.00625 -0.019375 -0.034375 -0.021875 0.045625 -0.013125 0.025 0.091875 -0.008125 0.0025 0.005625 0.033125 0.0025 0.0225 -0.005625 -0.04 0.005 0.004375 -0.04625 0.000625 -0.091875 -0.024375 0.003125 -0.02125 0.02875 -0.035 -0.011875 -0.001875 0.003125 0.003125 -0.004375 0.0325 0.005 0.046875 -0.035 -0.056875 0.0025 -0.005 0.008125 -0.020625 0.008125 -0.035 0.003125 0.035 0.0425 0.040625 0.021875 0.025625 0.053125 0.026875 0.05125 0.006875 0.02375 -0.001875 0.080625 0.005 -0.030625 0.001875 -0.055 -0.026875 0.0275 -0.0375 -0.0225 0.00375 -0.03 -0.0025 0 0.004375 0.03125 -0.01375 0.045625 -0.01 0.02125 -0.015 -0.010625 -0.016875 -0.046875 -0.006875 0.03875 -0.006875 -0.044375 -0.009375 0.063125 0.001875 0.013125 0.038125 0.005625 0.013125 0.023125 0.091875 0.058125 0.0525 0.0925 -0.016875 -0.0125 0.043125 -0.0175 -0.005625 -0.005625 -0.03625 -0.0125 -0.01625 -0.07625 -0.040625 -0.009375 -0.01375 -0.02125 -0.005625 0.063125 0.0075 0.013125 0.013125 -0.050625 0 -0.02375 -0.008125 -0.0375 -0.044375 -0.028125 -0.045625 0.0375 -0.03125 -0.103125 -0.03125 -0.051875 0.024375 -0.015 0.054375 0.0175 0.0075 0.0175 0.043125 0.03625 0.00125 0.01625 -0.006875 -0.009375 0.025 -0.058125 -0.04125 -0.00625 -0.009375 0.00375 -0.016875 -0.015625 -0.045625 -0.046875 0.019375 -0.026875 -0.013125 -0.055 0.003125 0.04 -0.008125 0.00625 -0.01875 0.02875 -0.0075 0.00625 -0.009375 -0.00875 -0.033125 -0.02625 -0.031875 -0.010625 -0.015625 -0.036875 0.0225 -0.014375 0.020625 0.025 0.045625 0.025 0.01375 0.02125 0.06875 -0.015 0.03375 0.033125 0.024375 -0.0475 -0.05875 -0.013125 -0.0125 -0.00875 -0.04125 -0.01375 -0.01125 -0.004375 0.015 -0.015 -0.0025 -0.020625 0.01875 0.026875 -0.00375 0.008125 0 0.00875 -0.044375 -0.03375 -0.045 -0.01125 -0.051875 -0.028125 0.01625 -0.025 0.008125 0.011875 -0.018125 0.016875 0.048125 0.0425 0.025625 0.05 -0.00625 0.053125 0.02875 0.009375 0.030625 -0.02 0.035 -0.025625 -0.036875 0.020625 -0.00375 -0.008125 -0.035 0.03125 -0.02375 -0.035625 -0.00625 -0.0075 0.01125 0.051875 0.038125 0.000625 -0.01 -0.01875 0.011875 -0.01 -0.028125 0.010625 0.04125 -0.011875 -0.046875 -0.000625 -0.034375 -0.0375 -0.04 0.034375 -0.00625 0.015625 0.0825 0.049375 -0.021875 0.001875 0.04875 -0.003125 0.020625 0.00625 -0.005625 -0.01625 0.035 0.024375 -0.00625 -0.0425 -0.023125 -0.03125 -0.018125 -0.009375 -0.040625 0.02375 0.015 0.01125 -0.03875 0.036875 0.02625 -0.034375 0.0275 -0.015 0.0425 0.010625 -0.029375 -0.000625 -0.04375 -0.02875 -0.06 -0.00125 -0.026875 0.006875 0.041875 0.060625 -0.008125 0.045 0.08125 0.008125 0.035 0.05375 0.026875 0.0425 0.010625 0.044375 -0.01 0.020625 0.03125 -0.05 -0.018125 -0.04875 -0.0675 -0.02875 -0.0325 -0.01375 -0.024375 0.005 -0.016875 0.05375 0.08125 -0.003125 -0.02625 -0.0475 0.01625 -0.01125 0.00125 -0.043125 0.004375 -0.0575 -0.03875 -0.034375 -0.0225 0.028125 0.01625 -0.004375 -0.01125 0.020625 0.01875 -0.01875 0.024375 0.000625 0.02375 0.088125 0.056875 0.005 0.005625 -0.039375 0.001875 0.034375 0.04125 0.025625 -0.01125 -0.026875 -0.020625 0.014375 -0.03 -0.021875 -0.034375 0.02625 -0.034375 -0.00375 -0.029375 -0.0225 0.03875 0.003125 0.016875 0.013125 -0.01875 0.0175 -0.020625 -0.031875 -0.00125 -0.01 -0.08375 -0.031875 -0.01875 -0.010625 0.03625 -0.038125 -0.0125 0.02625 0.003125 0.046875 0.06875 0.011875 0.103125 0.013125 -0.005625 0.01875 -0.0525 0.02875 0.036875 0.014375 -0.043125 0.045 0.03375 0.046875 -0.019375 0.006875 -0.040625 -0.033125 -0.0025 0.04875 -0.011875 0.024375 0.00625 -0.005625 -0.010625 -0.000625 -0.01625 -0.038125 -0.009375 -0.048125 0.00375 -0.050625 -0.0275 -0.010625 0.001875 0.068125 -0.014375 0.033125 0.013125 0.036875 0.08625 0.059375 0.02 0.035 0.014375 0.054375 0.023125 0.0125 0.023125 0.0075 -0.005625 -0.0125 0.005625 0.0225 -0.01625 -0.021875 -0.0175 0.016875 -0.026875 0.046875 0.024375 -0.035 0.013125 0.018125 -0.03875 -0.01375 -0.03625 -0.033125 -0.013125 -0.02125 -0.0275 -0.000625 -0.043125 0.02 -0.030625 0.048125 0.0275 0.023125 0.055 0.00625 0.01 0.03125 0.07125 0.050625 0.003125 0.00125 -0.015625 -0.013125 0.00625 0.028125 0.003125 -0.004375 -0.05625 -0.025625 -0.100625 0 -0.056875 -0.0175 -0.04 0.030625 0.0125 0.02875 -0.0025 -0.013125 -0.01375 0.05 -0.06125 -0.016875 -0.025625 -0.0225 -0.016875 -0.00125 -0.065 -0.0325 -0.02875 0.001875 -0.04 0.039375 0.001875 -0.0175 0.035 0.041875 0.0625 0.055625 0.023125 -0.003125 0.02375 0.024375 0.020625 0.0125 0.025625 0.0325 0.004375 0.031875 -0.001875 0.00375 -0.0375 -0.026875 0.029375 0 -0.046875 0.008125 0.01375 -0.013125 -0.03625 -0.03 0.02 0.020625 0.04 0.0075 -0.06 -0.046875 -0.015 -0.013125 -0.03375 -0.008125 0.0025 0.015 0.006875 0.024375 0.006875 0.045625 0.0525 0.00125 0.045625 0.014375 0.016875 0.015625 0.06 0.0075 0.0275 0.0275 -0.008125 -0.0425 -0.029375 -0.024375 -0.010625 0.005 -0.04375 -0.036875 -0.013125 -0.000625 0.02 0.011875 -0.01625 0.000625 -0.00125 0.039375 -0.028125 -0.006875 -0.02625 0.028125 -0.01625 -0.025 -0.016875 -0.00625 -0.065625 -0.02 -0.0025 -0.020625 0.026875 0.025 0.020625 0.003125 0.06375 0.06125 0.035 0.045 -0.00875 -0.000625 0.000625 0.030625 0.02 0.030625 0.006875 -0.0075 0.0325 -0.013125 0.023125 -0.0075 -0.030625 0.008125 0.005625 0.021875 0.0075 -0.058125 -0.00125 0.021875 0.018125 -0.018125 -0.03875 -0.048125 -0.02125 -0.01 -0.0275 -0.0175 -0.050625 -0.02125 -0.0325 -0.0325 0.021875 -0.050625 0.008125 -0.01125 -0.019375 0.013125 0.01 0.023125 0.00875 0.05125 0.04125 0.033125 0.00375 0.010625 0.0125 -0.005 -0.04 0.01875 -0.026875 -0.051875 -0.004375 0.036875 0.013125 0.015625 0.015 0.033125 0.03 0.043125 -0.00625 0.004375 0.015 0.000625 0.00625 -0.00125 -0.01625 -0.02875 0.0325 -0.04375 -0.031875 -0.045625 -0.10375 0.00125 -0.040625 0.035 0.00875 0.02125 0.033125 0.05625 0.06 0.03875 0.0525 0.06 0.036875 -0.02 0.0425 0.025 0.01375 -0.03 0.00875 -0.01875 0.0025 -0.043125 -0.018125 0.008125 -0.021875 -0.0325 -0.013125 -0.016875 0.01875 -0.010625 0.060625 -0.016875 0.019375 0.025 0.0225 -0.006875 -0.025 -0.008125 -0.02875 -0.059375 -0.0575 -0.02 0 0.05625 -0.049375 -0.010625 0.04125 0.023125 0.0375 0.066875 0.025 -0.00375 0.065 0.029375 0.010625 0.00625 -0.035 0.048125 0.018125 -0.045 -0.00625 -0.00125 -0.025 -0.025 -0.02 0.011875 -0.02375 -0.01 -0.01375 -0.023125 0.00875 0.033125 -0.01125 0.01875 0.013125 0.046875 -0.0325 0.006875 -0.028125 -0.03 -0.014375 -0.01 -0.014375 0.008125 -0.049375 -0.0475 0.009375 0.009375 -0.00125 -0.001875 0.0725 -0.000625 0.00375 0.058125 0.058125 0.0575 0.0125 0.018125 0.0025 0.000625 0.0325 -0.015 -0.020625 0.00125 -0.055 -0.04375 -0.015 -0.034375 0.000625 0.04875 0.023125 0.0075 0.015625 -0.00125 0.01875 0.011875 -0.021875 0.036875 0.010625 -0.000625 -0.03 -0.07 -0.001875 0.009375 -0.005 0.00125 0.01625 0.0125 0.030625 0.090625 0.00125 0.028125 0.066875 -0.035625 0.053125 0.023125 0.058125 0.03625 0.034375 0.00375 -0.005625 -0.01375 0.01625 -0.031875 -0.02625 -0.02875 -0.0275 -0.086875 -0.019375 -0.031875 0.0225 -0.02 -0.02375 0.055625 0.019375 0.01875 -0.005625 -0.044375 -0.01875 -0.020625 -0.05375 -0.028125 0.010625 0.02375 -0.0625 -0.01875 -0.03875 -0.065 -0.01625 0.01125 0.023125 0.025 0.02625 0.004375 0.040625 0.070625 0.038125 0.0125 0.0125 0.020625 0.004375 0.01125 0.00875 -0.0275 0.01875 -0.0075 -0.025 -0.001875 -0.026875 -0.02375 -0.030625 -0.0025 -0.00625 0.008125 -0.004375 0.00125 0.02125 0.005 0.00625 0.00875 -0.01375 -0.071875 -0.00375 -0.01625 -0.034375 -0.04125 -0.029375 -0.07625 0.0075 -0.04375 0.00625 -0.03 0.0175 0.0875 0.014375 0.075625 0.048125 0.038125 0.02 -0.00875 0.02 0.035625 0.020625 0.045625 0.016875 0.01125 -0.039375 -0.0775 0.009375 0.016875 -0.0025 -0.05375 -0.02875 0.00375 -0.028125 -0.0275 -0.010625 0.063125 0.011875 0.014375 0.075 -0.014375 0.011875 -0.021875 -0.00375 -0.033125 -0.048125 -0.031875 -0.02125 -0.001875 -0.0025 -0.035 -0.01625 -0.010625 0.00875 0.0375 0.004375 0.041875 0.043125 0.044375 0.029375 0.001875 0.01 0.01625 0.018125 0.019375 0.025 -0.01125 -0.06125 -0.005625 0.004375 0.016875 0.006875 -0.035 0.00125 -0.015625 0.0125 0.06375 0.0175 -0.005625 0.02 -0.019375 0.014375 -0.016875 -0.03125 -0.01375 -0.0475 -0.05 -0.0125 -0.019375 -0.049375 -0.05 -0.053125 -0.01875 0.01625 0.0625 0.043125 -0.01625 -0.003125 0.075 0.0325 0.0375 0.039375 0.025 0.055 -0.055 -0.000625 0.010625 -0.000625 -0.051875 0.013125 -0.020625 -0.0375 -0.008125 -0.025 -0.040625 -0.005625 0.018125 0.04375 0.008125 -0.018125 -0.01875 0.0525 0.02625 -0.001875 -0.021875 0.00125 0.000625 0.008125 -0.0075 0.00875 -0.033125 -0.055 0.004375 -0.0075 0.043125 -0.02125 0.009375 0.028125 0.048125 0.030625 0.084375 0.02875 0.01625 0.0025 0 -0.028125 0.01625 -0.00625 -0.00125 -0.03875 0.00375 0.00375 -0.034375 0.02375 -0.04 0.01125 -0.001875 -0.035 -0.02 0.0325 -0.0075 0.005625 0.008125 0.014375 -0.0375 0.019375 -0.02375 -0.05875 -0.008125 0.001875 -0.056875 -0.01125 -0.065625 -0.039375 0.03125 -0.015625 0.005625 0.004375 0.00625 0.0375 -0.005 0.11125 0.021875 0.01625 0.03375 0.008125 0.04 -0.02875 0.046875 -0.039375 -0.021875 -0.03 -0.026875 -0.014375 -0.055625 -0.03625 -0.0075 -0.05125 -0.004375 0.01125 -0.029375 -0.01375 -0.000625 -0.005625 0.02875 -0.028125 -0.0525 -0.015625 0 -0.073125 -0.020625 -0.0125 -0.0775 -0.045 -0.035 0.02375 -0.045625 0.000625 -0.024375 -0.009375 -0.01375 -0.018125 -0.03625 0.016875 0.054375 0.058125 0.005 0.0375 -0.0225 0.02375 0.0375 -0.010625 -0.0025 0.005625 -0.0225 -0.043125 -0.020625 -0.006875 -0.035625 -0.036875 0.015 -0.038125 -0.001875 -0.006875 -0.034375 0.0425 0.01 0.0175 -0.00125 0.069375 0 -0.023125 -0.07 -0.088125 -0.038125 -0.021875 -0.0025 -0.033125 -0.01375 -0.010625 0.03 0.01 0.031875 0.061875 0.0175 0.046875 0.02875 0.014375 0.015 -0.028125 -0.005625 -0.0125 -0.030625 -0.03125 0.025 -0.02625 -0.023125 -0.0475 -0.005625 -0.005 0.0075 -0.07 0.04125 -0.038125 0.00125 -0.000625 0.02875 0.031875 0.009375 0.02125 -0.02125 -0.0075 0.005625 -0.04 -0.01125 -0.01625 -0.005625 -0.045 -0.02375 0.031875 0.0075 -0.025625 -0.02125 0.025 -0.01375 0.02625 0.053125 0.011875 -0.0025 0.03375 -0.0225 0.029375 -0.01625 0.015 0.005 0.006875 -0.024375 0.00875 -0.0525 -0.013125 -0.003125 -0.0025 0.00125 -0.005625 -0.0475 -0.0225 -0.024375 0.016875 -0.030625 -0.011875 -0.025625 -0.01625 -0.05625 0.001875 -0.05125 -0.070625 0.000625 -0.059375 -0.008125 -0.004375 -0.01 0.015625 0.010625 0.03125 0.0425 0.0475 0.048125 0.055625 0.015 0.061875 0.045625 0.021875 0.020625 0.004375 -0.011875 -0.004375 -0.001875 -0.061875 -0.09125 -0.01375 -0.00125 -0.015 0.005625 -0.01625 -0.030625 0.030625 -0.005625 0.043125 0.0475 0.01875 -0.026875 0.02 0.0225 0.023125 -0.063125 -0.04125 -0.0525 -0.015 -0.05875 -0.019375 0.025 -0.013125 -0.051875 0.02125 0.004375 0.006875 0.000625 0.0425 0.05375 -0.016875 0.04625 0.08125 0.028125 0.06125 0.040625 0.055625 -0.03125 -0.00375 -0.01375 -0.005 0.005625 -0.003125 -0.020625 0.020625 -0.025 0.03875 0.024375 0.003125 -0.025 -0.02375 0.035625 -0.010625 -0.02 0.02875 -0.008125 -0.03625 -0.03875 -0.0275 -0.04 0.0075 -0.048125 -0.014375 0.00125 -0.035625 0.01625 0.02375 -0.02125 0.0075 0.063125 0.03875 0.0275 0.051875 0.035625 0.013125 -0.000625 0.035625 0.031875 -0.013125 0.02 0.0225 0.015625 -0.001875 -0.030625 0.01875 -0.063125 -0.035 -0.03375 -0.031875 0 0.013125 0.013125 -0.014375 -0.023125 0.034375 0.04875 -0.00375 0.03375 -0.000625 -0.003125 -0.025 -0.028125 -0.01875 -0.00625 -0.055 -0.036875 -0.021875 0.03875 0.020625 0.05125 0.028125 0.03 0.050625 0.023125 0.0525 0 0.0325 0.010625 0.040625 0.028125 -0.0325 0.056875 -0.030625 -0.009375 0.015 -0.016875 -0.024375 -0.0075 0.02125 -0.0225 0.045 -0.03625 0.0425 0.00375 0.023125 0.021875 -0.018125 0.008125 -0.03875 -0.040625 -0.006875 -0.034375 -0.036875 -0.041875 -0.001875 -0.029375 -0.049375 0.018125 -0.046875 0.01875 0.033125 0.0525 0.04125 0.02875 0.039375 0.064375 0.083125 -0.00125 -0.02625 0.068125 0.019375 -0.02875 0.035625 -0.029375 -0.04375 0.01375 -0.074375 -0.0425 -0.00125 0.004375 0.0275 -0.015 0.0075 0.02875 -0.024375 -0.013125 0.03625 -0.01625 0.038125 0.024375 0.00125 -0.01 -0.008125 -0.020625 -0.02875 -0.033125 -0.008125 -0.03625 -0.03125 -0.003125 0.015625 -0.0025 0.025 0.0275 -0.054375 0.04625 0.035625 0.021875 0.04 +0.016875 0.0325 0.01625 -0.0225 -0.00375 0.065 0.018125 0.053125 -0.014375 -0.003125 -0.038125 -0.040625 0.0425 -0.036875 -0.004375 -0.025 0.029375 -0.014375 -0.015625 0.005 -0.030625 -0.00875 0.01125 0.02875 -0.02375 0.003125 0.040625 -0.01125 -0.00875 0.005 0.03 -0.0025 -0.0525 -0.02375 -0.025625 0.02125 0.01875 -0.00875 0.0275 -0.014375 0.00125 -0.00875 0.003125 0.014375 0.01 0.05625 0.04625 -0.0075 0.049375 0.014375 0.035625 0.018125 0.02125 -0.02625 0.006875 -0.01875 -0.016875 0.005625 -0.015 -0.025 -0.005625 0.000625 0.029375 0.04125 -0.011875 0.035 0.000625 -0.001875 -0.011875 0.014375 -0.039375 -0.00875 0.006875 -0.01375 -0.008125 -0.0025 -0.0075 -0.034375 -0.049375 -0.01125 -0.01625 -0.031875 0.038125 -0.001875 0.035 -0.03875 -0.006875 0.059375 0.069375 0.045625 0.03875 0.011875 -0.035625 0.044375 -0.02 0.000625 0.05 -0.00625 0.008125 -0.06125 -0.015625 0.024375 0.021875 0.000625 -0.064375 -0.025 -0.004375 -0.020625 0.00625 -0.003125 -0.02625 -0.024375 -0.013125 -0.015 -0.054375 -0.02375 -0.01 -0.028125 -0.02625 -0.019375 0.00125 0.0075 0.010625 -0.005 -0.016875 -0.015625 -0.025625 0.045625 0.014375 0.0275 0.023125 0.040625 -0.00125 -0.040625 -0.02625 0.026875 -0.01625 -0.055 -0.0075 0.024375 -0.01125 -0.043125 0.00625 0.005 -0.06 0.00875 0.021875 -0.00125 0.009375 -0.00875 -0.01375 0.029375 -0.028125 -0.011875 0.03375 0.023125 -0.019375 0.01125 -0.029375 0.004375 -0.0025 -0.01125 0.004375 -0.06125 -0.02375 0.01125 0.013125 -0.016875 0.049375 0.01375 0.024375 0.03 0.015 0.036875 0.01125 0.001875 0.055625 -0.02 -0.02625 -0.00125 0.0225 -0.04375 0.01625 -0.025 -0.033125 -0.000625 0.024375 -0.015 -0.003125 0.035625 -0.000625 -0.039375 -0.01875 -0.035625 -0.03375 0.024375 -0.020625 0.03625 0.000625 0.003125 -0.021875 -0.050625 -0.01 -0.001875 -0.009375 0.0075 -0.041875 0.008125 0.020625 0.008125 0.021875 0.035 -0.00875 0.023125 0.02125 0.016875 -0.0125 0.014375 -0.00375 -0.008125 0.000625 -0.008125 -0.044375 -0.00125 0.01375 -0.056875 -0.033125 -0.0025 -0.005625 0.01 0.023125 0.035625 -0.014375 -0.013125 -0.005625 -0.0225 0.045625 -0.016875 -0.008125 -0.024375 -0.02125 -0.015625 -0.04875 -0.04 -0.03125 -0.014375 -0.029375 0.005 0.035625 0.001875 0.03625 0.025625 0.000625 0.025625 0.0425 -0.0325 0.02125 0.0025 0.02 0.013125 0.00625 0.00375 -0.019375 -0.03625 -0.075 0 -0.031875 0.010625 0.020625 -0.02375 0.01375 0.015 -0.013125 0.01875 0.00625 0.00125 -0.058125 0.005 0.000625 0.023125 -0.001875 -0.01375 0.008125 -0.026875 -0.015625 -0.009375 0.00375 -0.001875 0.034375 0.021875 -0.004375 0.01875 -0.020625 0.051875 -0.059375 0.041875 0.0575 0.009375 0.02125 0.05125 -0.008125 0.004375 -0.00375 0.010625 0.021875 0.035 -0.03 0.016875 0.049375 -0.025 0.010625 0.02 0.033125 -0.005 0.045 0.046875 0.0025 -0.00375 -0.041875 0.013125 -0.009375 0.02875 0.0175 -0.03875 -0.030625 0.026875 -0.033125 0.026875 -0.023125 0.0025 0 0.01875 0.0425 0.005625 0.05 0.011875 0.011875 0.0975 -0.03 0.0275 0.02 0.0125 -0.02 -0.01875 0.015625 0.023125 0.00875 -0.046875 -0.051875 -0.01625 -0.0475 -0.045 -0.04875 0.0075 0.030625 0.02625 -0.00375 0.0075 -0.001875 -0.02125 -0.000625 0.0225 -0.0125 0.010625 0.015625 -0.011875 0 -0.025 0.008125 -0.01875 0.02125 0.010625 -0.00125 0.03625 -0.0275 0.03375 0.02625 0.019375 0.035 -0.02875 0.049375 0.010625 0.01625 -0.035625 -0.004375 -0.023125 0.02 -0.026875 -0.025625 0.0225 -0.00875 0.00375 0.02125 0.01375 -0.00375 0.00875 -0.00125 0.021875 -0.005 0.026875 0.01625 0.015625 0.006875 0.036875 -0.02 -0.018125 -0.01625 -0.00875 -0.02375 0.000625 -0.00875 -0.028125 -0.016875 0.010625 0.008125 0.02375 -0.0075 0.019375 0.0325 0.056875 0.026875 0.034375 0.026875 0.035625 -0.026875 0.015625 0.03375 0.00125 -0.005625 -0.03 -0.028125 -0.023125 0.004375 -0.035625 -0.02 -0.045625 -0.049375 -0.028125 -0.000625 0.00875 -0.0075 0.04125 0.016875 0.00625 0.0225 0.015625 0.015 -0.009375 -0.04375 -0.075625 -0.031875 0.001875 0.003125 0.0325 0.004375 0.00875 -0.026875 0.044375 0.008125 -0.000625 0.046875 0.013125 0.049375 0.0275 0.029375 0.048125 -0.00125 -0.009375 -0.030625 -0.02625 -0.075 -0.01875 -0.00125 -0.024375 0.0025 -0.013125 0.00125 0.016875 -0.009375 -0.00875 0.02625 0.0125 -0.02875 0.02625 -0.00125 0.02625 -0.008125 -0.033125 -0.039375 -0.00375 -0.04375 -0.006875 0.01625 -0.061875 0.000625 0.005625 0.013125 0.02 0.015 0.048125 0.00375 0.01375 0.055 0.03 0.03625 0.01125 0.024375 0.04375 -0.045 0.006875 0.001875 -0.020625 -0.016875 -0.051875 0.02 -0.00375 -0.0725 -0.03125 0.0025 -0.0125 0.044375 -0.01125 0.00875 0.00125 -0.009375 -0.015625 -0.048125 -0.014375 -0.039375 0.009375 -0.01375 -0.0275 0.009375 -0.00875 -0.016875 -0.039375 -0.04125 0.00375 0.07 -0.01 0.010625 0.01375 -0.04625 0.0375 0.02625 0.0225 0.044375 0.034375 -0.035625 -0.01125 0.019375 -0.018125 -0.006875 -0.019375 0.02 0.040625 -0.02875 -0.018125 0.0425 -0.0025 -0.008125 -0.00125 -0.016875 0.01125 0.03 -0.016875 0.0275 -0.013125 0.006875 -0.00375 -0.053125 0.025 -0.039375 0.0025 -0.045 -0.01375 -0.001875 -0.01875 0.005625 0.045625 -0.00125 0.010625 0.034375 0.0125 0.028125 0.095625 0.04625 0.036875 0.020625 0.001875 0.010625 0.02 0.010625 0.039375 -0.016875 -0.045 -0.010625 -0.0075 -0.013125 0.0175 -0.004375 -0.02 0.015625 0.04875 -0.00875 -0.02875 0.018125 -0.016875 0.03 -0.0025 0.0025 -0.0525 -0.04375 -0.026875 -0.015625 0 -0.01875 -0.015625 0.015 0.054375 0.025625 -0.01625 -0.0275 0.016875 0.0275 0.0175 0.0075 0.013125 0.02125 0.04125 0.004375 0.00375 -0.028125 0.004375 0.028125 0.009375 -0.0075 0 -0.010625 -0.009375 -0.038125 -0.014375 0.006875 0.00875 -0.015625 -0.019375 -0.008125 0.028125 0.04125 0.000625 -0.003125 -0.016875 -0.020625 -0.01125 -0.005 0.00625 0.004375 -0.02 -0.01625 -0.02875 0 -0.053125 0.023125 -0.024375 0.036875 -0.05625 -0.014375 0.039375 0.028125 0.036875 0.035 0.021875 0.00875 0.030625 0.02625 0.008125 0.0275 0.006875 0.00625 -0.05375 -0.040625 -0.00875 -0.0125 -0.0225 -0.013125 -0.008125 0.0025 -0.05375 -0.0125 0.0025 0.026875 -0.001875 0.019375 0.01 -0.01125 -0.01 -0.03375 -0.046875 -0.009375 -0.031875 0.028125 0.03875 -0.01125 -0.01 0.01625 0.009375 -0.02375 0.05625 0.004375 -0.01 0.020625 0.06 -0.01 0.01125 0.01625 0.0325 0.04875 0.003125 -0.02375 -0.045 -0.023125 0.00375 -0.0275 -0.003125 -0.063125 0.011875 -0.004375 0.03375 -0.028125 0.02 0.00125 -0.004375 0.0375 0.015 -0.01 0.020625 -0.003125 -0.001875 -0.025625 -0.095 -0.011875 -0.015625 0.023125 -0.03625 -0.0225 -0.0025 0.025 0.0375 0.051875 0.0125 -0.003125 0.025625 -0.024375 0.028125 -0.0675 0.0275 0.080625 0.003125 -0.0225 0.035 -0.02375 -0.015625 -0.02125 -0.00875 -0.03 0.01 0 0 -0.01875 0.0225 0.031875 0.029375 -0.006875 0.044375 0.0025 0.000625 -0.04 -0.00125 0.02 0.011875 -0.0325 -0.038125 0.001875 -0.02 -0.010625 -0.03125 -0.02625 0.02625 0.018125 -0.00375 0.015625 0.023125 0.0525 0.016875 -0.0275 0.06 0.025625 0.033125 -0.013125 0.02125 0.0225 -0.034375 -0.0075 0.0075 0.01125 0.03375 0.008125 -0.03 0.02875 0.04375 0.03375 0.004375 0.008125 0.0175 -0.004375 0.04625 0.075 -0.01 -0.021875 0.00625 -0.030625 -0.03 -0.023125 -0.028125 -0.020625 0.01125 -0.03875 0.01375 0.039375 0.010625 -0.015 0.011875 0.01375 -0.026875 -0.016875 0.07875 0.04875 0.036875 0.039375 0.035625 -0.01 0.04375 0.029375 0.039375 0.00375 -0.058125 -0.011875 0.0275 -0.0125 0.013125 0.02125 -0.045625 0.021875 0.0125 -0.00125 0.058125 -0.01 0.005 -0.02 -0.025625 -0.0025 -0.01375 -0.00375 -0.05375 0.0125 0.0025 -0.0125 -0.006875 -0.011875 -0.01875 0.03625 -0.00625 0.04625 0.0375 0.0225 0.03375 0.021875 0.0075 -0.025625 0.02625 -0.0025 0.028125 0.025 -0.049375 -0.00625 -0.023125 -0.01 0.039375 -0.06375 0.015 0.016875 0.03125 0.019375 -0.00375 0.00125 0.033125 -0.05 0.008125 0.01625 0.035625 0.043125 0.019375 0.016875 0.035625 -0.061875 0.033125 -0.07 -0.0275 0.003125 -0.045 0.024375 0.005625 0.076875 -0.00625 0.0275 0.00375 0.039375 0.063125 0.031875 -0.001875 -0.0175 0.029375 0.03 -0.0025 0.02875 0.034375 0.000625 -0.015625 0.0075 -0.014375 0.006875 -0.033125 -0.021875 0.010625 0.035 -0.001875 -0.005625 -0.030625 0.02 -0.004375 -0.046875 0.021875 -0.01375 0.0075 -0.004375 0.011875 -0.036875 -0.018125 -0.005 -0.023125 0.005625 0.0125 0.045 0.0375 -0.001875 -0.014375 0.01125 0.065 0.05875 0.02875 0.015625 0.028125 0.009375 0.045 -0.015625 0.02625 0.03 0.006875 -0.01875 -0.04875 -0.04125 -0.004375 -0.02375 -0.023125 -0.02125 0.0075 0.02125 -0.03 0.015625 0.036875 -0.00875 -0.005 0.02625 -0.015 -0.021875 -0.02125 -0.005625 -0.05375 -0.02125 -0.01125 -0.04625 -0.01625 0.01875 -0.02875 -0.01375 -0.010625 0.00875 -0.000625 0.04 0.015 0.05625 0.015 0.04125 0.020625 0.003125 -0.0025 0.001875 -0.00125 0.030625 0.0175 -0.011875 -0.003125 -0.02 -0.021875 -0.02625 0.02 0.018125 0.05125 0.00875 0.019375 -0.0125 0.008125 0.005 0.003125 0.049375 -0.04125 -0.00875 -0.03875 0.021875 0.019375 -0.009375 0.0025 -0.015 0.005625 -0.021875 0.01125 -0.023125 -0.031875 0.023125 0.01125 0.03875 0.030625 0.03375 0.029375 -0.058125 0.036875 0.004375 0.0475 -0.04625 -0.013125 -0.00375 -0.038125 0.03 -0.005 -0.021875 -0.01125 -0.041875 -0.055 -0.034375 -0.00125 0 0.005625 0.015 -0.033125 0.0225 0.05625 -0.01375 -0.014375 -0.020625 -0.006875 -0.03875 -0.02375 0.01875 -0.013125 -0.015 0.00875 -0.00375 0.031875 0.055625 -0.02375 -0.02 -0.010625 0.028125 -0.023125 0.03375 0.00375 0.055625 -0.003125 0.0125 0.020625 -0.005625 0.0125 -0.0075 -0.00125 -0.008125 -0.00125 0.004375 0.009375 0.03875 -0.04625 -0.00375 0.02625 -0.001875 0.025625 -0.021875 0.0325 0.035 -0.019375 -0.031875 -0.016875 -0.024375 0.0025 0.04125 -0.038125 0.008125 -0.016875 -0.03125 0.015625 0.0575 0.0275 0.01625 0.0325 0.023125 0.06625 -0.018125 0.0225 0.018125 0.00625 -0.006875 0.01375 0.0125 0.065625 -0.040625 0.00625 -0.023125 -0.0575 -0.028125 -0.033125 -0.02375 -0.020625 -0.025 -0.01875 -0.00125 0.005625 0.0425 -0.00625 0.005 0.006875 -0.059375 -0.010625 0.009375 -0.028125 0.009375 -0.00375 -0.04 -0.0375 -0.0175 -0.0325 -0.03125 -0.016875 0.016875 -0.02625 0.010625 0.030625 0.01625 0.02875 0.025 0.031875 0.014375 -0.034375 0.035625 0.023125 0.023125 -0.003125 -0.025 0.018125 0.028125 -0.013125 -0.020625 0.004375 -0.024375 -0.0325 0.0225 -0.008125 0.0125 -0.00125 0.010625 -0.0375 0.029375 0.00875 0.004375 -0.016875 0.00375 -0.039375 0.021875 -0.021875 -0.02375 -0.021875 -0.054375 -0.03875 0.0275 0 0.03 0.0225 0.004375 0.035625 -0.005625 0.051875 0.030625 0.035 0.00625 0.0375 0.015 0.0575 0.03125 -0.02625 0.02 -0.01375 -0.0025 -0.034375 0.01875 -0.03125 0.01375 -0.039375 0.02 -0.04375 -0.02125 0.014375 0.00375 0.049375 -0.009375 0.00625 0.0575 0.01375 0.010625 -0.010625 -0.045625 -0.000625 -0.016875 -0.028125 -0.029375 0.005 0.029375 0.01375 -0.00375 0.008125 -0.011875 0.021875 0.025625 -0.0175 0.015 0.014375 0.020625 -0.005 0.041875 0.001875 -0.004375 0.01375 -0.006875 -0.058125 -0.004375 -0.029375 0.02 -0.011875 -0.026875 -0.035625 -0.030625 -0.031875 -0.006875 -0.015 -0.045 0.024375 0.003125 -0.025625 0.005625 -0.006875 -0.070625 -0.00125 -0.0675 0.008125 -0.024375 0.028125 0.031875 0.006875 -0.003125 0.00875 -0.00125 0.03875 -0.010625 0.044375 0.07125 0.0425 0.02 0.039375 0.01875 -0.00125 0.025625 0.02375 0.018125 -0.045625 0.004375 -0.06625 -0.01125 0.026875 -0.016875 0.02125 -0.014375 -0.004375 -0.055625 -0.0075 0.021875 -0.03375 -0.050625 -0.004375 -0.020625 0.0375 -0.008125 -0.00625 -0.045625 -0.013125 -0.01625 0.0375 0.0225 -0.0175 -0.015625 0.0525 0.008125 -0.0525 -0.0075 0.05875 0.003125 0.053125 -0.02 0.041875 0.03375 -0.02125 0.040625 0.01875 0.00625 0.004375 0.010625 -0.045 -0.011875 -0.050625 -0.016875 -0.00875 -0.041875 -0.01 0.044375 -0.0125 -0.0425 0.000625 -0.030625 0.0125 -0.0025 0.005 0.01875 -0.05 0.021875 -0.02 0.01875 -0.01875 -0.018125 -0.008125 -0.004375 -0.0125 -0.081875 0.023125 -0.065625 -0.015 0.01625 0.045625 0.03625 0.0225 0.01625 0.009375 0.01875 0.02625 0.010625 0.023125 -0.003125 -0.03 0.00875 -0.0475 -0.02125 0.043125 -0.014375 -0.031875 -0.00625 -0.043125 -0.020625 0.00625 0.00625 0.046875 -0.00625 0.023125 -0.006875 0.0275 -0.01625 0.024375 -0.041875 -0.004375 -0.060625 0.021875 -0.018125 -0.025 0.04125 0.005 -0.039375 0.031875 0.044375 0.00375 0.031875 -0.005625 0.03125 0.01875 0.0575 0.029375 0.053125 0.04625 0.014375 0.005 -0.00875 0.013125 -0.0375 -0.061875 -0.019375 -0.0125 0.00375 -0.021875 -0.0225 -0.0125 -0.013125 0.010625 0.01875 0.011875 -0.00625 -0.08625 -0.000625 -0.015625 -0.006875 -0.016875 -0.02375 -0.05 -0.060625 -0.026875 -0.0025 -0.01875 -0.0025 0.014375 0.0625 -0.021875 -0.011875 0.056875 0.014375 0.000625 0.041875 0.09375 -0.014375 -0.040625 0.03875 0.030625 0.030625 0.01375 -0.020625 0.0025 -0.028125 -0.03375 0 0.0025 0.006875 0.020625 0.01375 -0.0625 0.019375 -0.005 -0.02125 -0.015625 0.014375 0.008125 -0.014375 0.029375 -0.0325 -0.03875 -0.03875 -0.010625 -0.015 -0.028125 -0.01 0.036875 -0.00375 0.005 -0.020625 -0.031875 0.028125 0.050625 0.060625 0.01375 0.07125 -0.033125 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1000ms.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1000ms.hrd new file mode 100644 index 0000000..9a9dc95 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1000ms.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 1000 0 0 0 0 4 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035688 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-26.83875 -24.10625 -30.936875 -21.723125 -27.26125 -22.31 -22.648125 -24.03875 -22.0875 -23.001875 -25.590625 -21.82125 -20.428125 -19.905 -20.19125 -20.760625 -19.0525 -21.979375 -20.435 -18.423125 -16.881875 -21.189375 -22.85 -20.040625 -14.98 -18.496875 -15.435 -14.261875 -16.765625 -16.913125 -16.04625 -19.278125 -15.430625 -18.34875 -17.82875 -16.20125 -16.038125 -14.935 -16.739375 -16.4375 -15.16125 -16.230625 -13.355 -14.379375 -16.41625 -14.95125 -12.769375 -15.79375 -12.69875 -14.24 -16.1425 -14.20125 -18.891875 -14.675625 -14.27875 -12.44625 -14.638125 -13.20125 -10.3025 -12.20625 -13.49875 -15.244375 -11.03375 -11.715625 -12.451875 -12.486875 -11.1875 -14.735 -10.655625 -13.545 -10.03625 -9.2975 -12.844375 -10.419375 -12.810625 -10.615625 -11.97125 -11.378125 -10.093125 -14.928125 -8.77375 -13.885 -12.000625 -12.033125 -9.3725 -6.211875 -10.834375 -9.436875 -8.093125 -7.821875 -9.805 -11.716875 -9.75 -11.658125 -7.685625 -10.984375 -9.54875 -9.399375 -10.316875 -9.43 -8.543125 -10.393125 -8.686875 -9.8325 -10.07125 -8.885625 -9.521875 -6.34625 -8.37375 -8.4275 -7.886875 -11.684375 -9.1775 -7.049375 -9.219375 -6.741875 -7.849375 -7.779375 -9.086875 -7.464375 -6.05625 -7.18875 -10.159375 -7.085 -3.955625 -7.4 -4.639375 -9.92875 -7.625 -9.52125 -9.895625 -7.548125 -5.953125 -5.733125 -6.555625 -8.90625 -6.996875 -8.810625 -5.5125 -6.57125 -7.876875 -7.623125 -6.11125 -6.724375 -7.50375 -7.45 -4.7675 -5.0675 -8.190625 -7.374375 -10.08375 -5.1625 -5.9575 -5.111875 -5.575625 -4.58125 -5.22 -5.2375 -3.3325 -7.12875 -10.19375 -7.909375 -8.553125 -5.34 -6.785625 -7.11125 -7.155625 -4.934375 -8.48375 -6.650625 -3.844375 -5.061875 -6.415 -8.260625 -3.20125 -6.78875 -4.999375 -7.07625 -4.085 -3.338125 -4.693125 -4.30875 -7.351875 -4.068125 -2.444375 -7.465625 -5.595 -4.576875 -5.748125 -6.9375 -3.281875 -3.2225 -5.055625 -7.30375 -3.9925 -6.73125 -6.42625 -6.223125 -3.818125 -9.801875 -7.51125 -5.219375 -7.1125 -3.9725 -5.811875 -5.708125 -5.495625 -5.174375 -4.2025 -5.8625 -2.2575 -4.56 -7.635 -2.62125 -4.6975 -6.3525 -1.2975 -5.46 -2.65125 -8.714375 -4.36 -5.530625 -6.538125 -3.559375 -6.995625 -3.6575 -4.074375 -4.29875 -4.45375 -2.67625 -5.40875 -6.615625 -3.3775 -5.425 -4.923125 -8.08875 -5.578125 -3.74625 -8.096875 -5.479375 -3.58125 -2.905 -4.70625 -3.121875 -2.1475 -9.030625 -4.98 -6.23125 -4.07875 -5.98375 -4.420625 -5.01875 -4.248125 -3.898125 -3.55375 -5.164375 -0.66125 -3.27625 -5.6175 -4.585625 -2.674375 -7.169375 -7.116875 -1.249375 -4.36625 -5.82625 -5.414375 -2.911875 -1.963125 -4.280625 -4.453125 -3.3775 -3.81625 -5.816875 -3.77875 -4.134375 -4.23125 -5.523125 -0.72875 -4.94625 -2.55 -4.343125 -3.76 -4.7525 -2.765625 -2.74375 -4.879375 -4.17875 -1.621875 -6.31625 -2.466875 -4.08125 -1.896875 -2.295 -4.141875 -3.853125 -3.785625 -3.44625 -4.430625 -2.45625 -3.009375 -3.606875 -3.09875 -5.6125 -3.0475 -1.490625 -1.665 -1.203125 -5.46625 -2.63625 -3.628125 -5.866875 -0.473125 -2.08875 -4.309375 -5.80125 -2.008125 -1.499375 -4.3975 -4.32375 -1.1975 -0.998125 -3.211875 -2.41875 -4.969375 -2.304375 -3.466875 -5.05625 -3.815 -2.04875 -1.7675 -1.920625 -1.87 -2.216875 -2.246875 -3.249375 -1.315 -2.8275 -4.290625 -3.25 0.104375 -5.1125 -5.428125 -1.286875 -2.469375 -2.905 -1.636875 -3.655 -2.97125 -2.218125 -1.1125 -2.755625 -2.66625 -2.56125 -2.293125 -1.575 -4.940625 0.0375 -4.29375 -0.67625 -2.778125 -3.516875 -4.625 -0.235625 -3.519375 0.5925 -5.085625 -0.689375 -0.5725 -2.4725 -1.41625 -1.47875 -2.794375 1.591875 -0.374375 -1.193125 -1.579375 -1.41375 -0.2025 -2.261875 -4.816875 -2.26125 -0.045625 -2.524375 -4.495 -2.55375 -3.140625 -3.464375 -1.43375 -1.2575 -0.4275 -1.47 -3.73 -4.56375 -0.58125 -0.605625 -3.456875 -4.033125 -0.083125 -2.699375 -0.961875 -2.215625 -0.365625 -1.1 -2.6375 -6.481875 -5.965 -0.70375 -0.710625 -2.84625 -1.8875 -0.30125 -4.22 -2.590625 -4.46875 -2.05625 -2.6975 -7.165625 -4.33875 -3.3575 -1.36375 -4.713125 -4.24125 -1.22875 -4.4725 1.145625 -3.9925 -1.71 -2.11625 -3.78875 -2.381875 -3.285625 -0.798125 -3.606875 -1.999375 -3.891875 -0.349375 -0.740625 -2.72 -1.593125 -3.3925 -2.87875 -4.4425 -3.7675 -3.7275 -0.611875 -2.201875 0.0225 1.42375 -2.755 -3.47625 -2.07125 -0.20375 -2.476875 -3.0225 -1.985 -3.905 -1.02 -1.246875 1.166875 -3.18625 0.0175 -3.4525 -1.55125 -3.7775 -2.988125 -1.983125 -2.488125 -4.016875 -0.414375 -3.6425 -3.46375 -1.70125 1.029375 -4.036875 -1.745625 0.518125 -3.1775 0.21125 -2.381875 -2.675 -2.143125 -1.676875 -2.85125 -1.2925 -2.17125 1.37875 -5.29125 -3.61375 -0.04375 -0.4925 -2.068125 -2.930625 -0.396875 -2.78125 -1.8625 -1.929375 -0.71625 -3.406875 -1.390625 -3.7225 -3.588125 -4.055625 -1.65125 -0.828125 -2.063125 -2.598125 -0.78 0.270625 1.049375 1.470625 -2.17625 -2.48 -1.8625 1.5775 -0.665 -1.884375 -1.3025 -1.840625 -4.16125 0.873125 -3.356875 -1.230625 -1.608125 -2.383125 -3.348125 -1.275 -1.2325 -3.8025 -1.830625 -1.306875 -2.759375 -3.00625 0.70375 -2.6625 -0.915 0.661875 -1.48625 -2.7475 -2.460625 -0.88625 -1.989375 0.553125 -4.365 -1.700625 -2.428125 -3.50625 -2.488125 -1.249375 -4.59875 -1.6575 -3.965 -1.94875 -1.62375 -3.385625 -1.226875 -2.685 -1.251875 -0.035 -0.256875 1.470625 -2.83875 0.9025 -4.716875 -1.38375 -1.138125 -2.6675 -0.22625 -4.375625 1.274375 1.60375 -0.254375 -1.093125 0.086875 2.41125 -2.10125 -1.3725 -3.189375 -0.641875 0.055 -1.51875 -1.180625 -2.1925 -1.495625 -3.47375 -2.05875 -2.046875 1.605 0.184375 -0.379375 -2.26375 -2.4925 -1.209375 -1.25375 -3.20875 0.583125 0.21875 -2.005625 -0.605625 -1.921875 -2.09625 0.149375 -3.661875 -4.276875 -2.390625 -1.066875 -3.638125 -0.594375 0.820625 -0.401875 -3.156875 -2.045625 -1.103125 -0.951875 -2.881875 2.00625 -1.555 -2.836875 -2.48625 -0.9525 -3.95625 -2.34375 2.33125 -4.470625 1.19625 -1.644375 1.124375 1.075 -0.205 3.03875 0.0275 -0.86875 -0.326875 -2.218125 -1.69375 -0.530625 0.939375 1.4925 -0.990625 -2.6675 -4.224375 -0.123125 -2.15 -3.440625 0.93125 -2.136875 -1.230625 -2.4175 -4.2725 2.72125 -3.0025 2.611875 0.13625 -0.451875 1.7175 -0.569375 -2.033125 -1.139375 2.478125 -2.229375 -0.025625 -1.740625 -2.74625 -0.915625 -1.17 0.59625 0.0625 -3.846875 -2.29375 0.09625 -0.08375 0.058125 -0.153125 0.450625 -1.49 -1.80375 0.791875 -1.670625 -3.724375 -0.569375 -2.523125 1.951875 -2.843125 -1.049375 0.725 0.3625 0.489375 -2.04875 -0.488125 0.501875 -2.9625 -0.920625 -1.3175 -0.55125 -1.483125 -0.06875 -0.355 -1.12625 -0.895625 0.730625 -0.548125 -0.616875 0.345 -3.440625 -1.789375 1.055625 -1.565 -3.15875 1.98 -1.7525 -1.0025 -1.4375 -1.351875 -2.235 -1.17125 0.321875 -0.405625 -0.755625 -1.4025 -0.75625 0.573125 2.14375 -1.83 -0.885625 0.055 -2.48625 -0.144375 -1.645 0.896875 -2.694375 -0.71 -2.508125 2.221875 0.6175 -1.229375 -0.768125 -2.055 -4.681875 -3.90375 -3.64875 1.041875 -4.02375 -1.2525 -1.539375 -2.34625 -0.29875 -2.08 -1.5175 1.15625 2.488125 0.094375 0.8225 0.414375 -0.654375 -2.848125 0.54 -0.77 1.688125 -1.2025 -0.34625 1.7925 1.5775 -0.795 0.655 -1.56 0.473125 2.685625 0.19625 -0.791875 -0.35 -1.47125 0.594375 -0.045 -0.935 1.638125 -2.825625 -2.271875 -0.39375 0.008125 0.90125 -0.12875 -0.941875 -0.505 1.23375 0.405 -1.755 0.186875 -1.591875 0.71875 -2.7075 -1.5375 0.518125 0.3875 0.373125 -0.25625 -1.699375 0.049375 0.245625 1.23 -3.809375 -0.1025 -0.49 -3.486875 -2.83 -1.275 -0.46 -0.745625 -0.52875 -3.68125 -2.076875 2.479375 0.6175 1.7275 1.741875 -2.1825 -2.954375 1.085625 1.508125 0.251875 -2.32875 -0.10875 -2.99125 0.213125 2.88375 -3.35 0.418125 -0.13875 0.106875 -2.01125 0.404375 -2.948125 2.534375 -2.439375 -1.605625 1.334375 -0.39 -1.99875 -0.43125 -2.010625 -0.756875 -0.9175 1.79625 1.523125 3.399375 -0.843125 -4.55125 -2.339375 -1.031875 0.924375 -3.68 -0.680625 -2.09375 -2.031875 -0.69125 0.94375 -3.2325 -1.629375 -1.43125 1.435 0.736875 -2.36375 -1.086875 2.296875 -1.873125 -3.533125 -1.60875 -2.728125 -4.655625 0.451875 0.290625 0.85875 -0.693125 1.39 -0.55375 -0.45 -2.310625 0.55125 -0.076875 -0.386875 -2.905 -1.061875 -2.88625 2.728125 -1.7425 -2.1075 0.686875 3.479375 2.208125 2.938125 2.061875 -3.66125 0.211875 -1.500625 -2.785625 1.74375 -0.56125 0.41375 -1.09 -1.503125 -0.598125 0.1025 -0.63125 -2.476875 -2.82875 -1.959375 -2.199375 0.59 -2.97875 -5.026875 -3.14625 -2.7275 -0.62125 1.99875 -0.4875 -1.605 -1.075625 -1.275 0.3175 1.140625 0.12 0.34625 -0.90625 -1.895625 -3.155625 -3.0925 -1.39 -0.023125 -3.173125 -1.8725 -2.92375 -0.465 0.36125 -1.56 -0.9225 0.92 -0.344375 -2.2875 -1.789375 -0.3675 -2.449375 -6.2675 -1.40125 -1.63 0.08125 -0.401875 -0.698125 -1.270625 -1.52125 2.410625 -2.624375 1.514375 2.324375 -0.846875 0.670625 -0.58875 -0.1125 -0.931875 -0.9525 0.73 0.834375 0.6125 -0.0525 -1.299375 1.046875 -0.101875 -1.69875 -0.451875 -0.96625 -1.100625 1.459375 0.950625 1.428125 2.03375 -2.2425 -0.82625 -1.78 -1.250625 -1.02875 -1.785625 0.345625 1.670625 -1.714375 -1.70375 -1.7475 1.2375 -0.171875 0.649375 -1.42125 -0.576875 -1.5175 -2.091875 2.360625 -1.908125 -0.765625 0.47375 0.0775 0.0775 -0.92875 5.5825 1.05625 0.116875 -2.30125 -3.23 -2.1825 -2.205 0.494375 2.221875 -1.060625 -0.80125 -2.195625 0.68625 -5.8025 0.24875 1.610625 1.598125 -0.238125 -0.54875 -2.465625 -0.37625 -0.911875 -0.54 -0.468125 -1.586875 -0.55 -3.241875 -1.21625 -2.54125 -1.871875 -0.87 -1.12 0.259375 -3.02 0.81875 -0.4025 3.2475 -1.6625 3.52875 2.75 -0.235 -0.540625 0.524375 -3.343125 1.196875 -0.438125 0.433125 -2.63375 -0.98375 -1.729375 -1.825625 -0.821875 -5.21875 1.135 0.268125 -0.23625 -0.24875 -0.795625 -0.0225 -2.26125 -3.22625 -0.45125 0.375625 1.731875 -3.614375 -0.218125 -0.70875 -0.406875 -0.641875 -0.419375 1.83125 1.723125 -0.686875 -0.43625 -0.605625 -2.003125 -1.67125 -3.35 -1.798125 -0.42625 -1.138125 -0.066875 -0.1525 -4.075 0.8775 -1.705625 -0.59125 -0.659375 -2.20375 -1.333125 -1.821875 -0.5375 -1.28875 -0.50125 -0.5925 0.403125 0.27 -2.07875 -3.056875 -4.270625 -0.285625 -0.984375 3.36 -3.805 -3.033125 2.96625 0.329375 -0.838125 1.04375 -0.625 -2.525625 -0.583125 1.46875 -3.631875 0.090625 1.475625 -0.81375 -2.130625 0.73625 -0.2775 -1.51125 -3.1925 0.05125 -4.56 -4.821875 -1.6725 0.619375 1.666875 -2.99125 -0.45125 -2.381875 -2.81 0.25375 1.690625 0.501875 -0.36625 0.00875 -0.825625 0.595625 -0.74875 -2.49625 -0.459375 -1.00875 -2.885625 0.390625 -1.591875 -2.290625 -0.961875 -1.5125 0.77875 1.396875 1.114375 0.25 -1.87125 2.74375 1.0325 -2.53625 -3.0075 -1.905 2.315 1.191875 -1.0275 -2.73 -2.843125 -0.140625 -0.1225 -1.330625 -2.070625 0.085625 2.25625 1.63125 -0.723125 2.136875 -0.765 0.301875 0.0775 -1.514375 -1.139375 -1.740625 0.373125 -0.31125 -1.645625 1.2725 -1.379375 0.3175 1.2975 -0.440625 -0.52625 -0.0925 1.208125 -2.386875 -0.985 -1.45375 1.83625 0.981875 2.848125 -0.35125 1.295625 -2.44125 -2.183125 0.155625 0.7525 2.7725 -3.49125 -0.72875 -0.57125 -1.660625 -2.3175 -5.29 -0.27 0.735625 -3.740625 -0.8525 1.695625 -2.694375 -2.505625 0.58 1.2225 -2.03375 0.113125 -1.1625 -0.616875 1.1525 -1.249375 -1.386875 3.835625 -0.146875 -0.875625 -0.528125 0.91625 -1.8175 -0.11375 1.423125 0.5225 1.5975 -2.63625 2.23375 -2.115 0.176875 -3.97625 -3.38125 0.56375 -0.65875 0.506875 -2.39 2.016875 2.879375 0.54 0.054375 -0.503125 -1.344375 -0.684375 0.114375 -1.41625 -0.878125 -0.328125 0.869375 2.76125 2.8125 -3.01375 -1.856875 0.23625 0.100625 -0.686875 1.38125 -1.483125 -0.49 0.68875 -2.6475 -0.924375 0.336875 -1.635625 0.215 -2.14125 -2.33625 2.43 -1.5275 0.51375 -1.6175 2.724375 0.346875 -0.47625 3.43 2.389375 -0.655 0.954375 -4.059375 -0.064375 -2.305 -0.474375 -0.006875 -2.210625 -1.915 -0.32875 1.04375 -0.848125 -1.869375 -3.091875 0.92875 1.4575 -2.445625 2.348125 -1.4225 -3.43875 -0.291875 1.58125 -0.703125 2.251875 -1.57875 0.786875 -2.14125 3.146875 2.84125 -2.280625 -1.650625 3.58875 0.28375 -1.33875 -0.315 1.196875 -2.068125 0.4725 -0.79625 0.47875 0.831875 1.163125 3.215625 -2.21875 -0.5325 0.343125 -0.981875 1.719375 2.886875 3.185625 -0.79375 -1.133125 -0.03 -0.569375 -2.73125 1.61125 0.99 -1.785 -0.135 -1.06625 -2.12875 0.158125 2.6325 -2.21375 -0.34 -3.205625 0.10625 -0.7125 2.75 -1.03 0.503125 -1.390625 0.87375 -3.3825 0.198125 -1.931875 1.83 -1.104375 2.193125 0.845 -3.13875 1.15375 -1.619375 1.2275 3.35125 2.02125 -0.429375 0.505 -2.64375 -1.93375 -0.8875 -0.734375 -0.361875 -0.115625 0.104375 -0.56375 0.165625 2.52 0.88875 1.001875 0.098125 -1.535625 -1.46125 -1.110625 -0.021875 -0.541875 -0.230625 -4.29625 -1.22875 -1.51 -2.17625 2.488125 0.426875 -0.984375 -0.35 -1.529375 -1.995625 -4.0125 0.47875 1.77 -2.485625 0.763125 0.635 -1.76125 1.405625 -1.655 -4.503125 -2.424375 2.345625 -0.2475 0.520625 -0.664375 -3.324375 0.72 3.220625 -0.2825 1.2025 0.931875 1.804375 -0.76125 -1.21375 -0.40125 0.5975 0.52625 -0.02625 0.3125 0.61 -1.531875 1.02375 1.2925 0.23875 -1.72125 -0.7475 -3.57 0.853125 -1.415625 1.105 0.798125 -4.45 1.870625 0.446875 -3.574375 -2.173125 1.616875 -1.293125 -2.335 -2.4125 -1.078125 0.391875 -1.521875 -0.88125 -0.22125 0.7725 -1.646875 -1.345625 -0.186875 -0.69 0.119375 -2.353125 0.9625 -0.58375 -1.99125 -1.309375 -1.621875 -0.508125 -0.654375 0.29375 -0.679375 -2.321875 -1.508125 -1.26125 0.39625 -0.94125 0.136875 1.161875 1.528125 -2.9125 1.49875 -1.31875 1.261875 -0.273125 -1.678125 -5.176875 -0.5425 1.295625 0.693125 -0.23375 1.7925 1.225 0.58125 -1.8025 1.335625 0.02375 -0.5175 -2.97375 -1.21 -0.3 -0.481875 +-28.84125 -34.40875 -27.713125 -32.6475 -29.59625 -35.096875 -24.833125 -27.494375 -26.489375 -29.5825 -27.173125 -27.653125 -21.124375 -26.255 -27.611875 -25.538125 -25.719375 -23.578125 -22.441875 -23.5475 -24.86625 -25.488125 -24.068125 -25.8125 -22.41375 -22.4125 -18.395625 -20.6625 -21.905 -20.82375 -22.00125 -18.776875 -22.685 -20.746875 -19.879375 -21.47 -22.166875 -20.48 -17.489375 -18.904375 -22.1375 -20.2975 -20.133125 -19.32375 -21.35375 -17.4475 -21.045625 -16.97375 -18.991875 -18.793125 -18.176875 -18.645 -17.630625 -14.60875 -15.36625 -16.880625 -15.470625 -17.699375 -13.27125 -18.000625 -17.4375 -13.84625 -15.630625 -12.0225 -17.10375 -16.19625 -13.74625 -13.78375 -15.0675 -16.36375 -13.353125 -15.013125 -13.921875 -14.196875 -14.959375 -14.63375 -15.070625 -13.425625 -12.306875 -16.376875 -13.9875 -10.06375 -12.080625 -11.905 -12.465 -12.88125 -13.1625 -11.82625 -12.596875 -10.8225 -13.04625 -15.231875 -12.40125 -13.64375 -12.601875 -8.599375 -8.358125 -10.97375 -14.56625 -10.023125 -12.925 -11.60875 -13.59625 -10.821875 -9.0975 -11.24 -12.576875 -11.291875 -12.63875 -8.489375 -9.005 -9.078125 -10.453125 -9.22875 -8.759375 -10.15375 -12.6825 -13.389375 -8.764375 -12.29875 -7.756875 -10.90125 -14.129375 -8.33375 -11.594375 -10.729375 -11.35375 -8.589375 -8.71 -11.3825 -7.6875 -9.875 -9.3675 -8.289375 -8.381875 -8.27625 -10.664375 -8.166875 -5.684375 -11.34375 -7.774375 -6.9125 -8.5925 -8.56 -11.32875 -6.441875 -8.823125 -7.2275 -7.983125 -10.88 -4.779375 -6.04625 -10.11875 -5.865625 -9.460625 -7.76875 -10.299375 -8.36125 -11.430625 -7.20375 -6.521875 -10.065 -7.5675 -10.26625 -8.818125 -7.741875 -7.914375 -6.35625 -8.000625 -5.975625 -7.25375 -6.4525 -6.036875 -7.509375 -5.618125 -5.85125 -3.9475 -6.61375 -2.94125 -4.888125 -5.730625 -5.016875 -9.389375 -9.14875 -8.62875 -4.061875 -4.63125 -9.731875 -7.205625 -7.0475 -7.39125 -9.17375 -5.96875 -8.00375 -5.1975 -5.9175 -6.9775 -4.0325 -7.24625 -7.945 -6.405625 -7.204375 -8.479375 -6.741875 -7.730625 -6.498125 -6.024375 -6.150625 -5.96375 -8.955 -5.52625 -4.145 -4.51125 -4.47 -5.314375 -8.681875 -6.33875 -6.61125 -7.534375 -6.925625 -5.389375 -4.85875 -3.245 -1.28625 -0.31125 -4.016875 -3.431875 -6.45875 -6.316875 -4.67625 -8.115 -7.26625 -7.82125 -6.24375 -7.29875 -5.291875 -3.62 -5.666875 -8.34375 -3.6875 -4.594375 -3.3475 -3.99875 -5.861875 -3.74875 -6.736875 -6.5775 -5.665625 -8.679375 -4.2325 -5.248125 -4.490625 -5.640625 -8.418125 -3.196875 -5.353125 -6.01125 -9.17375 -2.689375 -4.39625 -8.886875 -6.234375 -6.038125 -3.900625 -4.135625 -5.768125 -3.54125 -3.45375 -6.31375 -5.005 -2.758125 -2.748125 -8.871875 -6.21 -3.476875 -4.223125 -0.435625 -6.045 -3.263125 -5.421875 -2.30875 -2.086875 -5.205 -4.07375 -1.061875 -7.0425 -5.125625 -4.54375 -3.443125 -4.605625 -4.625 -5.84625 -2.33 -2.75625 -1.99875 -3.761875 -4.005625 -0.009375 -2.4375 -2.673125 -5.7825 -5.205 -1.84375 -4.71125 -3.561875 -5.924375 -6.27875 -3.344375 -4.644375 -2.680625 -5.9025 -3.675625 -4.719375 -6.514375 -6.278125 -2.988125 1.565 -7.308125 -1.383125 -2.5175 -4.053125 -5.001875 -4.91125 -5.509375 -1.81875 -0.160625 -2.1775 -1.838125 -4.413125 -3.683125 -4.54875 -6.45 -2.083125 -4.08 -4.423125 -2.7175 -7.386875 -2.829375 -3.795625 -3.96125 -3.76875 -5.819375 -2.705 -2.211875 -0.566875 -4.018125 -4.079375 -1.95 -4.8725 -2.303125 -4.914375 -2.503125 -1.99625 -1.29875 -3.505 -2.825625 -4.3775 -7.429375 -3.55875 -1.385 -4.05 -8.103125 -6.036875 -5.31875 -1.8 -3.739375 -2.6375 -1.29375 -5.010625 -3.515625 -6.29375 -1.828125 -4.42125 -0.93375 -1.526875 -0.11625 -2.06625 -2.58 -3.02625 -2.834375 -5.930625 -2.724375 -3.23875 -1.42 -1.10125 -1.3725 -3.033125 -4.94375 -0.93625 -1.78125 -3.49375 -2.685 -2.464375 -4.44625 -3.1775 -4.314375 -1.2775 -1.90375 -4.769375 -4.401875 -6.061875 -4.5525 -4.585625 -4.841875 -2.211875 -2.0825 -1.13 -2.9425 -3.303125 -4.793125 -0.284375 -3.38875 -3.45875 -2.08125 -4.4325 -3.380625 -2.854375 -1.030625 -3.578125 -1.88 0.6725 -2.3325 -1.471875 -4.625 -2.740625 -2.770625 -3.934375 -5.149375 -0.3525 -1.989375 -4.226875 -3.100625 -1.7075 -4.191875 0.53375 -4.1925 -2.721875 0.4325 -1.709375 -1.294375 -1.94125 -1.119375 -1.341875 -1.6775 -2.32875 -2.69625 -2.05625 -4.75 -2.01375 -1.844375 -4.60875 -1.65625 -3.725625 -3.021875 -3.183125 -1.195625 -2.708125 -1.0175 -4.306875 -6.34125 -3.638125 -4.68 2.046875 1.10375 -1.645625 -0.428125 -4.035625 -1.555 0.390625 -2.7275 -0.449375 -6.42 -1.755 -1.7425 -3.0425 -2.845 -4.35875 -0.966875 -3.92 -2.678125 -2.7675 -1.806875 0.82375 -1.91375 -2.1525 -2.913125 -1.78 -0.153125 -4.780625 1.164375 -2.345 -2.719375 -3.121875 -1.145 -1.334375 -1.195625 -1.256875 -3.009375 1.141875 -2.703125 -1.026875 -2.34125 -2.5675 -2.8975 -2.60125 -5.873125 -3.408125 -2.791875 -2.85875 -3.54125 -2.77875 -2.793125 -2.648125 -1.9875 -3.015 -1.635 -1.105625 -0.533125 -1.409375 -2.60375 0.765625 -5.4475 1.179375 -0.921875 -2.4625 -0.108125 -2.464375 -4.6775 -1.4425 -4.2675 0.24375 0.185625 -1.98875 0.066875 -1.445625 -3.050625 -0.96875 -0.25625 -2.93625 0.631875 -1.55375 -4.9375 -2.246875 -0.5175 1.63875 -1.060625 -2.4175 -0.161875 -0.7975 -0.40625 -3.711875 -0.650625 -0.6425 -1.509375 0.055 0.580625 -1.161875 -1.386875 -2.070625 -3.585 -2.665 -0.325 -2.4425 -2.233125 0.56 -1.985 -6.5775 -4.180625 -2.294375 3.515625 0.216875 0.0975 -4.13 -1.74875 -2.391875 -3.356875 -1.7075 0.58625 -2.5125 -1.61625 -4.63 -3.408125 -1.675 -2.700625 -2.650625 -1.2825 -2.7975 -0.36375 -1.1125 -3.54625 -3.698125 -4.345 -2.18375 -0.006875 -2.521875 -1.166875 -2.418125 -1.425 -2.325 -2.568125 -0.3125 -1.159375 -1.34125 0.655 -1.1325 -4.046875 0.600625 -5.1975 0.878125 -1.74625 -3.251875 -4.5925 -3.3475 -0.21375 -0.950625 1.340625 -0.666875 -1.58125 -0.7625 -0.60125 -1.39 -2.570625 -3.23875 -3.64625 -3.181875 -1.75875 -1.98375 -1.436875 3.31875 -2.835 -4.365625 -3.4775 -3.7225 -4.42625 -1.63 -3.335625 -1.040625 -0.67 0.419375 -2.72625 1.35375 -3.284375 -0.636875 -2.0075 -3.083125 0.393125 -2.95 -2.37625 -1.435625 -1.231875 -3.084375 0.07875 1.61375 0.833125 -6.871875 -3.0125 -0.09625 -3.33625 -0.006875 -2.434375 -0.593125 -0.518125 -1.56875 0.911875 -0.859375 1.761875 -1.826875 0.171875 -3.665 -1.535625 -0.73 -3.773125 -0.423125 -2.005625 -1.89 1.333125 -3.28125 1.1525 -1.119375 -2.7175 -0.6475 0.110625 -0.765 -1.63125 -4.589375 -2.7225 -2.45375 -0.91375 -4.139375 -4.618125 1.119375 -1.679375 -1.06625 -3.485625 -1.578125 -1.543125 0.2625 -2.366875 -0.933125 1.885 -1.526875 -0.686875 -1.445 -0.665 -3.00375 -1.219375 0.75625 -0.878125 -1.10625 -0.42 -1.760625 -4.236875 -1.093125 -0.741875 -2.085625 0.016875 1.43 0.116875 2.92625 -0.145 -1.583125 -0.565625 -3.005625 2.80625 -0.08875 0.499375 -1.308125 -3.934375 -0.889375 -0.299375 -0.835625 -2.58 -1.15 0.734375 -2.873125 -1.693125 0.76875 1.541875 0.380625 -2.964375 -1.6975 -1.784375 -0.214375 1.053125 -0.851875 -4.12375 -1.6275 -3.19875 -1.595625 0.476875 -1.21375 -1.38875 -0.07875 -0.955625 -1.2975 -3.315 0.293125 -0.8025 -0.074375 2.266875 -4.9175 -0.513125 -3.02625 -1.400625 -0.6425 -3.008125 -2.678125 -2.74 -0.828125 1.043125 0.8725 -0.41625 -3.5275 -0.8025 -1.26 -1.758125 1.486875 -1.864375 -1.01125 2.4075 -1.48 0.46125 -1.18 0.209375 2.029375 -2.156875 -1.500625 -3.389375 0.09625 -4.82125 0.41 -2.480625 1.6725 0.8875 -2.106875 -3.3075 -2.295 0.24625 -1.4775 -1.64625 1.75 -0.915 -0.39625 -0.330625 -4.145 -0.749375 -3.058125 1.931875 -2.8175 0.763125 -1.76625 -3.095 -0.53375 -3.813125 -0.14125 -1.573125 0.181875 0.236875 -0.136875 -0.67125 0.29875 -1.279375 -1.4925 -3.3625 0.06375 -2.5625 0.52375 -1.961875 -1.980625 -4.415 -2.54 -0.215 3.150625 -2.263125 -0.620625 -1.77375 2.78625 -1.580625 -2.938125 -0.87 -0.17 1.170625 -3.150625 -2.25 0.61875 2.655625 -0.855 -0.511875 -0.480625 0.003125 -1.33625 1.958125 -1.8725 -3.271875 0.675 -1.81125 2.008125 -2.29125 0.464375 -0.77125 1.21 -0.07375 0.1125 2.27375 1.180625 -0.005 -2.1325 -0.91375 -1.91625 -1.41875 -0.265625 -2.12625 -0.2475 -0.70125 -2.135625 -1.218125 1.265625 1.20125 -0.1325 -4.23625 -2.606875 -0.8725 -1.713125 -0.86625 1.171875 0.6275 -2.53875 1.938125 -2.199375 -1.921875 0.253125 1.225625 -3.05625 -1.705625 -1.731875 -0.7425 -1.344375 -0.7375 1.615625 -1.055 -3.94625 1.41 -1.33375 0.79625 1.83 -0.145 0.13 -1.90125 -3.69 1.01625 -0.838125 -2.7375 -1.846875 0.80875 1.579375 -2.865 -4.711875 -3.510625 -0.921875 -1.57125 0.283125 -0.04375 0.215625 0.52 0.484375 3.394375 3.19875 -1.936875 -3.300625 -0.936875 0.898125 1.703125 -1.289375 0.96 0.758125 -1.545 -2.846875 -1.72375 -2.20625 3.35 -1.46625 -3.70125 0.984375 -2.048125 -1.020625 -0.735 0.315 0.0575 0.230625 -2.699375 -0.44125 0.51125 -0.24875 0.414375 0.8075 -4.47375 -0.829375 -3.249375 0.23625 1.5475 2.56625 1.86875 -0.259375 0.99125 -0.344375 0.9525 -0.7 -1.711875 -1.72375 -1.88625 -2.229375 -0.036875 -0.33 -0.78875 -0.375625 -3.20625 -2.149375 2.485625 -0.745625 1.75875 -2.356875 -1.654375 -0.3 0.461875 -1.19 0.241875 -2.0875 -0.94625 0.44125 0.65625 0.27875 -1.103125 -1.16 -1.890625 -2.221875 1.131875 -0.428125 -1.39625 0.525 1.054375 -1.576875 -4.0625 -1.48125 -2.040625 0.58 -0.94125 -3.065 0.363125 1.75125 -0.38 -2.364375 0.76125 -1.1875 -3.15875 -1.538125 2.31 -1.10625 -0.9625 -3.1025 -1.90375 -3.60375 -1.855 -1.680625 0.22875 2.56375 -2.2075 -1.0675 -2.278125 -1.4175 -0.859375 -0.5575 0.7625 -1.5225 0.9225 0.876875 -1.40375 0.535625 -1.98 -1.773125 -1.9575 -3.493125 -1.375625 -1.278125 0.0975 -0.63 1.855 1.365625 1.405625 -0.9975 0.19375 0.22125 0.08 -3.599375 1.556875 0.515625 3.113125 -2.615 0.546875 -1.676875 1.828125 -0.478125 0.58125 -1.154375 -0.828125 -1.959375 0.010625 -0.50625 0.154375 1.880625 1.3375 -0.454375 -3.38 -0.15 0.77 -4.318125 -2.244375 -1.849375 -1.373125 -2.32625 -0.213125 -1.144375 -1.35 -2.263125 -1.710625 -2.61875 -0.64625 -3.020625 -0.96 -0.38375 2.35625 -0.043125 1.003125 -2.46625 1.546875 1.974375 -0.525 -0.46125 1.381875 0.319375 0.9625 1.27875 -1.99125 0.9 1.99375 -0.184375 -0.981875 1.2125 -0.6025 0.08 -4.935 0.984375 -0.585 1.5675 1.633125 -2.646875 1.276875 0.725625 -2.328125 0.631875 0.75 0.93625 -2.98625 -0.318125 -1.784375 -2.54 -1.7725 -1.1225 -0.90125 -1.5775 -0.72375 -1.19125 -0.176875 -1.12 1.126875 -0.063125 -1.795625 -1.669375 -1.456875 -1.97 -0.57875 -1.169375 0.311875 -1.78875 0.480625 -2.9 -2.20875 -2.945 1.16875 -2.7925 -0.77625 -0.085 -1.425625 -0.24125 -2.083125 -1.226875 1.548125 -2.071875 1.214375 -0.53 -1.2 -0.340625 0.6825 -1.024375 -0.21125 -0.181875 -0.161875 1.315625 0.265 0.773125 0.45625 1.37875 -3.055625 -2.1625 1.350625 -1.008125 -1.248125 -1.830625 2.31875 -1.324375 -0.698125 -0.69125 -1.575 -0.321875 1.976875 -0.615625 -0.8375 -1.239375 -1.54625 -3.7625 -3.108125 1.266875 2.65875 -2.83 -0.95375 -1.740625 -1.469375 -2.496875 -2.85625 -1.07375 0.98875 -2.00125 0.63625 0.725 -0.0625 -2.805625 -0.27 0.45625 4.029375 0.575625 2.409375 1.519375 -0.65125 0.248125 3.6825 -1.561875 -1.628125 -0.835 2.623125 -1.226875 2.37 -2.336875 -1.42875 -1.47125 1.10125 -2.875625 -1.243125 -2.720625 -3.82 1.255 -1.028125 -4.411875 -2.815 1.318125 0.438125 -0.751875 0.560625 1.5275 -1.75375 -2.568125 -2.541875 -2.09625 -0.285625 -0.9625 -0.584375 0.55875 -0.45625 -0.63875 -0.061875 1.02375 2.00875 0.901875 0.095625 1.42125 1.03375 -0.16375 0.130625 1.714375 -3.584375 -1.485 -0.283125 -2.2275 1.5 -4.3775 -2.966875 -1.35875 0.700625 0.745625 -0.7275 -0.98125 0.60875 -0.47375 3.84125 0.08875 0.525625 -1.94125 0.36875 -2.253125 -0.374375 -3.12875 -0.518125 1.889375 -0.565625 -1.74625 -1.25875 0.5525 0.1825 -1.835625 -2.175 3.598125 -0.83375 -0.908125 0.90875 -1.349375 0.00875 -1.09625 -1.35 -0.28375 0.943125 0.29875 0.463125 -1.686875 -2.81625 -1.9125 -0.543125 0.765 -0.948125 3.455 -1.8675 -1.88875 -1.82625 -1.056875 -2.37375 -0.3625 -0.913125 -0.988125 1.4725 -2.91375 -0.285625 1.01875 1.7025 0.666875 -2.074375 0.601875 -0.010625 -1.0325 -3.911875 3.60875 -0.286875 1.3225 -2.965 1.480625 -0.13 -1.34625 -1.455 0.87 -0.116875 1.514375 -1.274375 1.5 -0.404375 0.96875 -1.879375 0.363125 -1.8675 -0.2775 1.786875 1.255 1.03 -0.60125 2.33 -0.173125 -1.14375 -1.918125 -1.99875 -3.34 0.165 0.0275 -1.721875 -0.188125 -0.26125 0.6025 -0.9575 1.125 -0.741875 -0.026875 0.344375 0.358125 -2.26625 0.8475 -1.629375 0.445625 -1.48875 -1.523125 -3.488125 -0.245625 1.82625 -1.79125 -2.39 -1.81125 0.744375 -0.534375 0.4925 -1.7075 0.556875 0.0125 -1.901875 -2.821875 -1.51625 2.055625 -0.9475 0.153125 -0.7675 -2.698125 1.576875 -3.003125 1.096875 1.16875 0.595 -1.315625 -0.40375 1.744375 -4.32125 2.769375 1.65625 -1.694375 -3.17875 -2.441875 0.264375 -0.999375 0.915 -2.031875 0.875 1.3625 -2.38 1.30375 -0.045 -0.071875 -1.7725 -0.62375 2.990625 2.525625 -1.19 1.32375 -2.323125 0.273125 -0.30375 0.39375 -0.773125 1.104375 2.20125 -3.715625 -0.9175 2.408125 -1.194375 1.80125 -2.014375 -1.585625 -4.1475 -0.95875 2.83125 -1.21375 -0.529375 -3.926875 1.5175 -1.719375 0.61375 -0.26375 -0.398125 -0.86625 -1.225 -2.525625 -2.305625 -1.12375 0.42375 -1.17375 -0.97 -0.679375 1.478125 1.75625 1.384375 0.49875 0.593125 -1.2225 3.518125 -1.4225 -1.028125 1.04875 -1.095 -1.3875 0.168125 -1.76125 -0.13625 -2.22375 -2.661875 -1.896875 0.790625 -1.07 2.3775 -0.1425 -0.609375 -1.895625 0.8975 -0.583125 -0.634375 2.013125 0.225625 -0.47375 1.380625 -0.42 2.398125 -3.1875 1.408125 -0.22125 -0.773125 -1.503125 0.08625 0.254375 -2.1475 0.540625 -0.858125 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1000ms_ref.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1000ms_ref.hrd new file mode 100644 index 0000000..d7f6c45 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1000ms_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 1000 0 0 0 0 4 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035688 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-0.01375 -0.038125 -0.045 0.04 -0.02 0.031875 0.046875 0.026875 0.0325 0.0075 0.06625 0.04125 -0.01 -0.03 -0.04 0.00625 -0.014375 -0.04625 -0.04375 -0.0125 -0.03875 -0.04125 0.005 -0.015 -0.056875 0.02 0.0175 -0.001875 -0.025625 -0.01875 -0.03625 -0.03125 0.038125 -0.006875 -0.01875 -0.0675 -0.013125 -0.03125 -0.02375 -0.00375 -0.013125 -0.013125 -0.06 -0.006875 -0.020625 0.005625 0.02875 0.016875 0.03 0.0325 0.03625 0.061875 -0.004375 -0.015 0.021875 -0.0175 0.00875 -0.0325 -0.000625 -0.031875 0.0075 -0.021875 0.00125 -0.054375 -0.011875 0.001875 0.02375 0.003125 0.024375 -0.025625 0.004375 0.02 0 0.030625 -0.021875 -0.028125 -0.05875 -0.051875 -0.011875 -0.044375 -0.029375 -0.011875 -0.02 -0.03625 -0.0575 0.006875 0.035 0.00125 0.0325 0.011875 0.03625 0 -0.025625 0.0275 0.036875 -0.0175 0.029375 0.0075 -0.010625 -0.029375 0.010625 -0.0275 -0.019375 -0.0525 -0.0125 0.004375 -0.01375 -0.013125 0.026875 -0.00375 -0.005 0.020625 -0.019375 0 -0.009375 0.02 -0.00375 -0.000625 -0.01625 -0.06875 -0.040625 -0.013125 -0.076875 0.0175 0.00125 -0.0225 0.03 0.029375 0 0.04125 0.0525 0.04625 0.00375 0.013125 0.011875 -0.025625 -0.025625 0.024375 0.02125 -0.010625 -0.008125 0.006875 -0.0075 -0.0275 -0.045 0.0275 -0.01875 -0.013125 0.005625 -0.0275 -0.050625 -0.005 -0.001875 0.018125 -0.055625 0.015625 -0.04 -0.024375 0.003125 0.0175 -0.015 -0.01375 -0.006875 -0.0475 -0.029375 -0.028125 0.01125 -0.0175 0.028125 -0.048125 0.006875 0.05375 0.04875 0.015625 0.033125 0.045625 0.053125 0.026875 -0.00875 0.004375 0.014375 -0.009375 -0.024375 0.004375 -0.00125 -0.069375 -0.078125 0.00125 0.01875 0.014375 -0.049375 0.018125 -0.035625 0.054375 -0.01625 0.005625 -0.00625 -0.036875 0.003125 0.01375 -0.045625 -0.0625 0.014375 -0.006875 -0.01125 0.029375 -0.00875 0 -0.004375 0.01 0.003125 -0.023125 0.013125 -0.018125 0.000625 0.061875 0.048125 0.054375 0.045 0.028125 0.0175 0.0025 -0.041875 0.06125 0.056875 -0.00375 0.01375 -0.011875 -0.00625 0.016875 -0.040625 -0.02125 0.045625 -0.033125 0.020625 0.021875 0.06375 0.03625 -0.015625 0.006875 -0.04875 -0.035625 0.025625 -0.044375 0.015625 -0.049375 -0.014375 -0.01 -0.025 -0.064375 -0.01125 -0.0125 -0.035625 0.0375 0.065 0.07625 0.021875 0.04875 0.05875 -0.0025 -0.025625 0.03875 0.04375 0.035625 0.050625 0.0075 0.0175 -0.02875 0.0125 0.0025 -0.064375 -0.0025 0.031875 0.03375 -0.031875 0.01125 0.02 -0.013125 0.0075 -0.0175 0.009375 -0.02 -0.06 0.01375 -0.000625 -0.01125 -0.025 0.025 0.009375 -0.0525 -0.061875 0.009375 -0.01875 -0.025 0.015625 0.016875 0.004375 0.095625 0.031875 0.005625 0.098125 -0.018125 0.048125 -0.02875 -0.006875 -0.02375 0.040625 -0.010625 -0.040625 -0.028125 -0.05375 -0.01875 -0.005625 0 -0.031875 0.005 0.006875 -0.02875 0.008125 -0.02 -0.004375 0.04 -0.025625 -0.0225 0.006875 -0.028125 -0.055625 -0.036875 0.009375 -0.016875 -0.046875 -0.050625 0.0025 0.043125 0.03625 0.01625 -0.01 0.0025 0.066875 0.0975 0.043125 0.019375 -0.00125 0.00375 0.064375 -0.0225 0.024375 0.0225 -0.0175 -0.025625 -0.019375 0.013125 -0.019375 -0.01375 0.004375 0.00625 0.0125 -0.00125 0.01875 -0.003125 -0.00375 -0.015625 0.02 -0.02375 0.0325 -0.0625 -0.005625 -0.028125 -0.014375 -0.015 0.045 -0.04625 -0.013125 -0.046875 -0.03625 -0.00375 -0.0275 0.01 0.013125 0.0375 -0.024375 0.046875 0.0525 0.028125 0.023125 0.018125 0.04 0.0025 -0.023125 0.035 -0.058125 -0.016875 0.045625 -0.05375 -0.02375 -0.01375 0.0225 0.010625 -0.000625 -0.004375 -0.043125 -0.021875 0.015 -0.00875 0.001875 -0.04 -0.009375 0 -0.045625 0.02875 -0.014375 -0.085625 -0.0775 0.00875 0.000625 -0.029375 0.01125 0.04375 0.013125 -0.01625 -0.005 0.0125 0.05375 0.039375 0.0225 0.035 0.02625 0.0125 0.0075 0.038125 -0.026875 -0.0125 -0.0375 -0.039375 -0.02 -0.066875 -0.016875 -0.046875 0.000625 0.015625 0.018125 -0.00875 -0.048125 0.01125 -0.03625 -0.04125 -0.015 -0.015 -0.00375 -0.004375 -0.006875 -0.026875 -0.008125 -0.035 0.009375 -0.040625 -0.02875 0.03125 0.003125 -0.003125 0.035 0.058125 0.045 0.048125 0.04375 0.014375 0.013125 0.038125 0.01 0.0375 0.03125 0.00875 0.00375 -0.015 0.005 0.0075 -0.03875 -0.0075 0.006875 -0.066875 -0.051875 -0.0325 0.0025 -0.035625 -0.02 0.023125 0.01625 -0.010625 0 0.0225 0.0325 -0.025625 -0.026875 -0.0225 -0.016875 -0.049375 -0.023125 -0.041875 -0.02125 -0.0275 -0.005 0.044375 0.011875 0.0525 0.00125 0.00375 0.035625 0.055 0.01625 0.01375 0.026875 0.01875 0.00375 -0.029375 0.0175 0.009375 0.016875 -0.04125 -0.045 -0.015 -0.035625 0.060625 0.026875 -0.02 0.004375 -0.031875 -0.025625 0.000625 -0.006875 -0.044375 -0.048125 -0.001875 -0.025 -0.05 -0.03625 -0.08625 -0.045 -0.000625 -0.00875 -0.029375 -0.054375 0.0625 0.0025 0.000625 0.029375 0.024375 0.044375 0.003125 0.0025 -0.01375 0.04125 0.01 -0.031875 -0.01375 0.003125 0.02625 -0.00125 -0.015625 -0.004375 -0.00625 -0.019375 -0.0325 0.02 -0.02375 -0.021875 0.00125 -0.031875 0.00125 0.056875 0.030625 -0.025625 -0.00125 -0.011875 0.000625 0.008125 -0.02625 -0.0075 -0.055 -0.0425 -0.020625 -0.036875 -0.013125 -0.010625 -0.021875 0.02875 0.021875 0.05125 -0.008125 0.0375 0.013125 -0.005 -0.000625 0.068125 -0.005625 0.0275 0.015625 -0.041875 -0.053125 -0.006875 -0.019375 -0.051875 -0.05 -0.07125 -0.025625 -0.07125 -0.003125 -0.0175 -0.011875 -0.00125 0.01375 0.02125 0.02875 0.0125 0.001875 -0.025625 0.021875 -0.06125 -0.025 -0.06375 0.016875 -0.0225 -0.013125 -0.051875 -0.009375 0.016875 0.03625 0.033125 0.00625 0.078125 0.045 0.01125 0.021875 0.07625 0.0225 0.0175 -0.030625 0.03375 -0.004375 -0.0275 0.003125 -0.040625 -0.043125 -0.030625 -0.0575 -0.09 -0.03875 -0.004375 -0.0075 -0.00625 0.025 -0.001875 0.09625 -0.02 -0.00375 -0.008125 0.00125 0.01625 0.020625 -0.02 -0.054375 0.01125 -0.006875 -0.006875 -0.00375 -0.068125 -0.01375 0.005625 0.020625 0.041875 0.0675 0.058125 0.03375 0.05875 0.02875 0.00625 0.00875 0.059375 0.02875 0.023125 0.00625 -0.01 -0.008125 -0.00875 -0.01 0.030625 -0.034375 0.00625 -0.0475 -0.001875 0.03125 -0.015 0.006875 0.010625 -0.033125 -0.02125 -0.030625 -0.015 -0.024375 -0.0125 -0.029375 -0.008125 -0.028125 -0.033125 -0.01875 -0.0025 -0.02625 -0.009375 -0.0625 0.000625 0.00375 0.03625 0.0125 0.030625 0.05375 0.058125 0.03375 0.031875 0.036875 -0.02 0.00875 -0.024375 0.0025 0.005 -0.005625 -0.02625 -0.00625 -0.036875 -0.075625 0 0.050625 -0.058125 0.01625 -0.03 0.016875 -0.021875 0.061875 -0.023125 0.056875 -0.02125 0.00875 -0.03625 0.0225 -0.026875 0.005 0.045625 -0.010625 -0.004375 -0.02125 -0.03875 0.00625 0.025 -0.00375 0.0175 0.0475 0.020625 0.046875 0.046875 0.014375 0.020625 0.001875 0.0375 -0.035 0.00125 -0.019375 0.023125 -0.045625 -0.045625 -0.015625 -0.01 -0.00125 -0.028125 0.00125 -0.033125 0.034375 0.06125 -0.015 -0.019375 0.02375 0.00875 0.005625 0.015625 -0.009375 -0.058125 -0.01875 -0.0025 -0.0175 -0.035 -0.036875 -0.030625 -0.01875 0.029375 0.005625 0.03125 0.05375 0.054375 0.005625 0.069375 0.019375 0.046875 0.03875 0.004375 0.055625 -0.00625 0.01125 0.01625 0.02 -0.045625 -0.081875 -0.014375 -0.006875 0.0225 0 0.005625 0.023125 0.009375 0.009375 -0.015625 0.03 -0.0175 0.029375 -0.01 -0.003125 0.018125 -0.014375 0.013125 -0.050625 -0.023125 -0.04375 -0.02875 0.018125 -0.02375 -0.04 -0.004375 -0.023125 0.001875 0.033125 0.0225 0.05375 0.01875 0.02625 0.000625 0.019375 0.021875 -0.040625 0.00875 0.01375 -0.0025 0.01 -0.039375 -0.061875 -0.06375 0.00625 -0.020625 -0.015625 0.0225 0.011875 0.011875 0.005625 0.025625 -0.0175 0.01125 0.006875 -0.061875 -0.023125 -0.048125 0.001875 -0.00875 -0.021875 0.01 -0.06875 0.00375 -0.0375 0.02625 0.04375 0.02625 0.01875 0.059375 0.004375 0.04375 0.01875 0.02125 0.04125 0.03125 0.026875 0.00125 -0.00125 -0.019375 -0.0375 -0.013125 0.025 -0.008125 -0.04625 -0.045625 -0.063125 -0.044375 0.005625 -0.0325 0.020625 0.00375 0.006875 0.04625 0.02125 -0.005625 0.030625 -0.026875 0.026875 0.00375 -0.04875 -0.008125 -0.015 -0.009375 -0.005 -0.04125 -0.0275 0.0425 -0.004375 0.01 0.02 0.023125 -0.0025 0.020625 0.045625 0.02 0.069375 0.003125 0.04 -0.0325 0.000625 -0.04125 0.011875 -0.03625 0.01 -0.050625 0.00125 -0.02625 -0.010625 -0.01875 0.013125 0.03125 0.035625 0.004375 -0.028125 -0.03 -0.025625 0.025625 -0.015625 0.001875 -0.025 -0.010625 -0.04375 -0.015625 -0.05 -0.041875 -0.043125 0.005 -0.05875 0.000625 0.029375 0.030625 0.030625 0.045625 0.044375 0.019375 0.001875 0.045625 0.066875 0.035 0.0175 -0.030625 0.009375 0.005 -0.010625 0.056875 0.0075 -0.06125 -0.030625 0.026875 0.023125 0.02 -0.018125 0.001875 -0.014375 -0.011875 0.014375 0.035 -0.0225 -0.03 -0.029375 -0.041875 -0.020625 -0.023125 -0.033125 -0.076875 -0.00375 -0.01 -0.01375 -0.0225 -0.00875 0.02 -0.01125 0.05125 -0.0425 0.079375 0.01 -0.014375 0.01625 0.08375 0.029375 0.048125 -0.0225 -0.00875 0.011875 -0.00125 -0.01 -0.01875 -0.029375 -0.004375 -0.03375 -0.006875 -0.044375 0.01875 0.07375 -0.02375 -0.01875 0.010625 0.0175 -0.00375 -0.059375 0.076875 0.020625 -0.0225 0.02 -0.079375 -0.059375 0.021875 -0.03125 -0.05125 -0.003125 -0.006875 0.026875 -0.028125 -0.01 0.0325 0.019375 0.095 0.0275 0.0825 0.0725 0.0275 0.02125 -0.009375 -0.01625 -0.0225 -0.023125 0.03875 0.024375 -0.004375 -0.000625 -0.0775 -0.003125 -0.046875 -0.014375 -0.018125 -0.045625 0.058125 0.081875 0.024375 0.02875 0.00375 -0.00125 0.019375 -0.003125 -0.024375 -0.04 -0.03875 -0.0425 -0.02 -0.036875 -0.038125 -0.023125 -0.01875 0.0325 0.024375 0.0725 0.05125 0.04875 0.070625 0.024375 0.04875 0.005 0.02125 0.03625 0.0575 -0.00125 -0.0375 -0.03 0.0025 0.043125 -0.075625 -0.041875 -0.059375 0.01125 0.0075 -0.010625 0.025 -0.020625 0.0175 0.0025 0.018125 -0.015 0.035 0.01625 -0.028125 0.005625 0.015 -0.06875 -0.051875 -0.0225 -0.03375 0.00125 -0.035625 -0.025625 0.034375 0.025 0.02 -0.00125 0.035625 -0.008125 0.060625 0.019375 0.044375 0.02375 0.048125 0.028125 0.008125 -0.004375 0.005 0.0175 -0.014375 -0.026875 0.018125 -0.01125 -0.044375 0.019375 0.055 0.019375 0.015625 0.024375 0.0525 -0.0425 -0.015 0.003125 -0.01125 -0.013125 -0.023125 -0.006875 -0.075 -0.03125 -0.0225 0.025 -0.014375 0.010625 0.01 0.025625 0.048125 0.0125 0.053125 0.06375 0.063125 0.015 0.086875 0.024375 0.066875 0.01875 0.018125 0.056875 -0.011875 0.0275 -0.0375 -0.029375 -0.051875 -0.04125 0.04125 0.005 -0.0475 0.001875 0.031875 0.0375 0.025 -0.00125 -0.01375 -0.01375 -0.01875 0.015625 0.016875 -0.015625 -0.028125 -0.049375 -0.011875 0.021875 -0.00625 -0.041875 -0.046875 0.028125 -0.071875 -0.029375 0.01125 0.00125 -0.006875 0 0.0325 0.060625 0.04375 0.023125 0.053125 0.019375 0.02 -0.0025 0.015625 -0.01375 -0.01125 -0.063125 -0.03625 0.000625 0.006875 -0.021875 0.0025 0.0525 -0.01875 0.0325 -0.015 0.05 -0.055 0.028125 -0.00625 0.008125 -0.01875 -0.036875 -0.043125 -0.026875 -0.021875 -0.05625 0.02 -0.003125 0.001875 -0.033125 -0.00625 -0.009375 0.013125 0.040625 0.045 0.010625 0.005625 0.024375 0.033125 0.023125 0.04125 0.041875 -0.0075 -0.046875 -0.03125 0.0075 -0.04125 -0.00375 0.02125 -0.0375 -0.01625 0.0475 0.02875 -0.04125 0.02125 0 -0.03625 -0.013125 -0.034375 0.023125 0.003125 -0.019375 -0.0525 -0.044375 -0.03875 -0.0475 -0.0125 -0.03375 -0.00125 -0.009375 -0.02 0.011875 -0.026875 -0.014375 0.045 -0.021875 0.058125 0.018125 0.031875 -0.000625 0.051875 0.0225 0.00875 -0.003125 0.0125 -0.03 0.001875 -0.03125 -0.01375 0.010625 -0.060625 -0.0125 0.014375 -0.011875 0.0125 0.021875 -0.01375 0.03875 -0.00875 -0.00875 0.011875 -0.016875 -0.021875 0.00875 0 0.015625 -0.01375 -0.09875 -0.0325 -0.071875 0.004375 -0.038125 0.000625 0.020625 0.0325 -0.013125 -0.000625 -0.041875 0.0275 0.004375 0.03875 0.031875 0.049375 0.01875 0.056875 -0.009375 -0.005625 0.025 0.01 -0.004375 -0.00375 0.023125 -0.045625 -0.011875 -0.009375 -0.00125 0.010625 0.01 0.00125 -0.0325 -0.0125 -0.01125 -0.014375 -0.033125 0.015 -0.035625 -0.02375 -0.019375 -0.01125 -0.01 0.011875 0.00625 -0.070625 -0.055 0.006875 0.029375 0.03625 0.0625 0.0475 -0.013125 0.0225 0.04 0.025 0.07625 0.053125 -0.00875 -0.0025 -0.0375 -0.018125 -0.056875 -0.020625 -0.001875 -0.01875 -0.018125 -0.05125 0.00875 -0.0675 0.03375 -0.015625 -0.01875 0.015 -0.045625 0.030625 0.014375 -0.03875 -0.018125 -0.049375 0.008125 -0.0425 0.0125 -0.015625 -0.07875 -0.06125 -0.070625 -0.05625 -0.00375 -0.00875 -0.055 0.019375 0 0.05375 -0.005625 0.010625 0.01125 -0.000625 0.015 0.068125 0.04375 -0.02375 0.02375 -0.02375 -0.01625 -0.05625 -0.025625 -0.03 -0.005625 0.006875 -0.024375 0.000625 0.0175 -0.011875 -0.029375 -0.0025 -0.043125 -0.0225 -0.00875 -0.023125 -0.040625 -0.036875 -0.085 -0.041875 -0.08 -0.02375 -0.019375 0.00125 0.00625 -0.014375 -0.04625 -0.008125 -0.031875 -0.021875 0.04 0.048125 0.064375 0.046875 0.01125 0.041875 0.038125 -0.04625 -0.01375 0.0025 -0.0025 -0.006875 0.020625 -0.061875 -0.044375 0.006875 -0.0225 -0.04125 -0.0075 0.034375 -0.03375 0.031875 -0.025625 0.046875 0.09625 0.02625 -0.01875 0.000625 0.003125 -0.004375 -0.005625 0.005625 -0.003125 -0.0125 -0.035625 -0.029375 0.01 0.0025 -0.0125 -0.006875 0.001875 -0.02875 0.034375 +-0.06625 0.005 0.008125 -0.01125 0.029375 0.029375 0.026875 0.0375 0.015625 0.0375 -0.006875 0.065625 0.03375 0.011875 -0.01375 0.0425 -0.009375 -0.009375 -0.015 0.01375 0 -0.0725 -0.02875 -0.013125 -0.021875 -0.011875 -0.0225 -0.0525 -0.005625 -0.01 0.00125 -0.009375 0.01125 0.00125 -0.024375 -0.008125 0.01125 0.006875 -0.0425 -0.000625 0.014375 -0.0275 -0.02375 0.018125 -0.004375 0.02625 0.02 0.01125 0.03875 -0.033125 0.05 0.02 -0.046875 0.03625 0.036875 0.00625 -0.06125 0.021875 -0.033125 -0.064375 0.0225 0.0125 -0.0325 -0.03625 -0.03 -0.001875 0.013125 -0.026875 -0.0375 -0.0075 -0.00875 0.0225 0.051875 0.001875 -0.00375 -0.0125 -0.001875 0.018125 -0.00125 0.034375 -0.05 -0.01875 0.024375 -0.009375 -0.0375 0.00125 0.030625 0.018125 0.00875 0.005625 -0.026875 -0.014375 0.02375 0.015 -0.001875 0.035 -0.028125 0.041875 -0.006875 0.013125 -0.03 0.016875 -0.011875 0.0225 0.00125 -0.020625 0.0825 0.008125 0.011875 0.05 -0.005 0.04375 0.010625 -0.02125 -0.00625 -0.01125 -0.00375 -0.03625 -0.000625 0.01125 0.005625 -0.028125 0.025625 -0.030625 0.04875 -0.024375 0.004375 -0.003125 0.025625 -0.005 0.031875 -0.0175 0.060625 0.071875 0.05625 0.0475 -0.0025 0.020625 -0.005 0.020625 -0.034375 0.02875 -0.006875 -0.011875 -0.018125 0.02 -0.000625 0.025 -0.0025 0.018125 -0.026875 -0.011875 -0.043125 0.020625 0.0025 -0.01625 0.013125 -0.0175 -0.001875 0.01375 -0.013125 0.00375 -0.021875 -0.023125 0.03 -0.059375 0.00375 -0.03125 0.009375 0.039375 0.041875 0.021875 0.0575 0.0125 0.04375 -0.03375 0.019375 0.00625 -0.00375 -0.015 0.003125 -0.03875 -0.005625 -0.000625 -0.008125 -0.041875 -0.04875 0.015625 -0.003125 -0.025625 -0.04125 0.01625 -0.059375 -0.00875 -0.000625 0.063125 -0.04125 -0.0075 -0.020625 -0.054375 -0.006875 0.006875 -0.034375 -0.019375 -0.015 0.001875 -0.031875 -0.018125 -0.006875 0.031875 0.03125 0.0275 0.033125 0.0325 -0.005 -0.006875 0.05125 0.026875 -0.003125 0.00875 0.02375 0.001875 0.020625 -0.000625 -0.011875 -0.0225 0.00625 0.02 -0.005625 -0.0175 -0.04 0.01125 -0.034375 -0.0275 -0.009375 0.043125 -0.021875 -0.019375 0.000625 -0.001875 -0.01 -0.053125 -0.018125 0.003125 -0.029375 0.0175 -0.003125 0.008125 -0.04375 -0.006875 -0.005625 -0.0075 0.02125 -0.0175 0.025625 0 0.036875 0.03625 -0.00875 -0.010625 -0.01625 -0.0325 0.048125 -0.024375 -0.02625 0.009375 0.045625 -0.04375 -0.006875 -0.03125 -0.045625 -0.055 0.015625 0.013125 0.014375 0.0125 -0.0325 0.01375 -0.015625 -0.04125 -0.051875 -0.034375 0.025625 -0.005625 -0.08875 -0.0575 -0.038125 0.005625 -0.0525 0.013125 -0.01375 -0.040625 -0.048125 0 0.033125 0.039375 -0.035 0.033125 0.06875 0.065625 -0.0075 0.01125 -0.01 -0.021875 -0.0175 0.011875 -0.065 -0.025 0.01875 0.00375 0.011875 -0.041875 -0.01375 -0.016875 -0.01625 -0.010625 -0.02875 0.003125 0.029375 0.059375 0.0125 0.018125 -0.013125 -0.019375 -0.020625 0.005 -0.0775 -0.008125 -0.023125 0.0125 -0.04125 -0.000625 -0.035625 0.03 -0.025 -0.01 0.016875 0.044375 0.043125 0.059375 0.051875 0.015625 -0.02125 -0.009375 0.024375 0.02 0.0125 -0.011875 0.025625 -0.049375 0.015625 -0.01625 0.005 -0.0175 -0.016875 0.024375 -0.035625 0.003125 -0.03125 0.03875 -0.03375 0.0025 0.0075 -0.00875 0.04625 -0.0025 -0.0275 -0.006875 -0.060625 -0.03 0.005 -0.01875 -0.035 0.005 -0.0025 0.01125 -0.0175 -0.00125 0.003125 0.0575 0.03625 0.0325 0.03375 0.040625 0.040625 0.010625 -0.041875 -0.00125 -0.023125 -0.00875 -0.03375 -0.038125 0.0125 -0.014375 -0.0425 -0.015625 -0.005 -0.015 -0.015 -0.01875 0.040625 0.005 0.019375 0.026875 0.073125 0.01 -0.035 -0.03625 -0.018125 -0.029375 -0.07375 0.015 0.033125 -0.000625 0.00875 -0.031875 -0.003125 0.02375 0.00375 0.0475 0.013125 0.04375 0.075625 0.019375 0.03375 -0.024375 -0.003125 -0.02125 -0.01125 0.03625 0.0275 0.009375 -0.035 0.015625 -0.030625 -0.033125 -0.005625 0.018125 -0.03625 0.040625 0.01375 -0.02625 0.013125 0.000625 -0.0025 -0.004375 -0.05 -0.00125 -0.013125 -0.019375 -0.014375 -0.019375 -0.049375 -0.05625 -0.013125 -0.015625 -0.048125 0.02625 -0.003125 0.030625 0.046875 0.02 -0.024375 0.044375 0.024375 -0.013125 0.019375 0.019375 0.028125 0.05375 0.005625 -0.035 -0.04625 -0.011875 0.020625 0.03875 -0.01 -0.00625 0.021875 0.039375 -0.003125 -0.053125 0.039375 -0.048125 -0.02875 0.028125 0.035 0.030625 -0.039375 0.013125 -0.026875 0.01125 -0.09 -0.045 -0.005625 -0.05125 -0.02125 -0.018125 -0.005 -0.028125 -0.03 -0.003125 0.029375 0.02 -0.00375 0.07375 0.026875 0.02875 -0.011875 0.009375 -0.01 -0.03 0.018125 -0.00625 -0.0575 0.008125 -0.010625 -0.074375 -0.01625 -0.0125 0.0275 0.011875 -0.011875 0.0125 -0.003125 0.011875 0.026875 -0.05125 0.061875 -0.003125 0 -0.044375 0 -0.02875 0.00375 0.015625 -0.000625 -0.035625 0.021875 -0.065 -0.010625 -0.031875 0.001875 0.048125 0.01125 -0.039375 0.0175 0.040625 -0.023125 0.030625 0.03 -0.00375 0.04 -0.006875 0.004375 0.011875 0.016875 -0.01375 -0.0325 -0.014375 -0.015 -0.035625 -0.0025 -0.019375 0.046875 0.01875 -0.0275 0.01625 -0.020625 0.003125 -0.018125 -0.03625 0.020625 0.00875 -0.014375 -0.005625 -0.006875 0.003125 -0.034375 -0.028125 -0.00875 0.00375 -0.04125 0.01125 -0.01375 0.0125 0.03 0.010625 0.035 0.00625 0.06125 -0.016875 0.046875 -0.005625 0.01125 0.00625 -0.0325 0.021875 -0.000625 0.00125 0.021875 -0.016875 0.03625 -0.009375 0.011875 -0.030625 0.001875 0.010625 -0.0225 -0.00375 0.0225 -0.014375 -0.000625 0.059375 0.02375 -0.004375 -0.0475 -0.023125 0.00125 -0.026875 0.001875 0.018125 0.030625 -0.04375 0.045 0.04125 0.056875 0.034375 0.043125 0.044375 0.066875 -0.01 0.01 0.0575 0.013125 0.00875 0.023125 0.02375 -0.006875 -0.03125 -0.001875 -0.0425 -0.0375 -0.03875 -0.035 0.004375 0.025 -0.025 -0.00625 -0.00125 0.02125 0.00875 -0.02125 0.02875 0.025625 -0.009375 -0.0175 -0.031875 -0.01375 0.006875 -0.015625 -0.03875 -0.003125 0.009375 -0.00125 0.0475 -0.028125 0.008125 0.045 -0.01125 -0.01375 0.008125 0.043125 0.025625 -0.0125 -0.033125 0.0375 -0.015625 0.0075 -0.028125 0.02875 -0.05625 -0.011875 0.00375 -0.01 -0.005625 -0.021875 0.0025 -0.00875 0.018125 0.03125 -0.001875 -0.019375 -0.034375 0.0025 -0.01625 -0.003125 -0.01375 -0.024375 -0.02625 -0.015625 -0.018125 -0.00625 0.018125 -0.015625 0.043125 -0.00125 -0.016875 0.038125 0.05 0.06375 0.071875 0.008125 0.01375 0.025625 -0.00125 0.035 0.02875 0.053125 -0.011875 -0.010625 0.029375 -0.0325 -0.019375 -0.03 -0.01625 -0.01875 -0.046875 -0.00375 0.03 0.01125 -0.0225 0.03375 -0.016875 -0.006875 0.014375 -0.003125 0.04125 -0.010625 -0.0125 -0.011875 -0.0075 0.0125 0.02625 -0.020625 -0.02875 -0.03125 0.01125 0.005625 0.051875 0.04125 -0.001875 0.003125 0.010625 0.016875 0.019375 0.0425 0.011875 0.011875 0.055625 0.06 -0.005625 0.0325 -0.009375 0.001875 0.003125 -0.030625 0.035 -0.04125 -0.023125 -0.014375 0.024375 -0.010625 0.0225 -0.00125 0.005 -0.005625 0.02875 -0.0225 0.01 0.013125 0.005625 -0.050625 -0.043125 -0.030625 -0.0325 0.015 0.000625 -0.004375 0.001875 -0.009375 0.023125 -0.005625 0.034375 -0.008125 0.005 0.036875 0.02625 0.01125 0.031875 -0.006875 0.00625 -0.063125 0.053125 -0.006875 -0.019375 -0.0225 0.02 -0.014375 -0.023125 -0.079375 0.015 -0.0025 -0.00375 -0.009375 0.008125 0.0175 -0.01375 -0.010625 0.060625 0.02 -0.04625 -0.0125 -0.058125 -0.024375 -0.000625 -0.003125 -0.02375 -0.02125 0.00625 0.050625 0.000625 0.003125 -0.0175 0.016875 0.004375 0.016875 0.026875 0.03625 0.006875 0.049375 0.03375 0.014375 -0.0025 -0.0175 0.0175 -0.020625 -0.0425 -0.025 -0.03875 0.04125 0.03125 0.006875 0.026875 -0.046875 0.02 -0.01625 -0.01 0.050625 -0.009375 0.0325 0.004375 -0.0075 -0.004375 0.02125 -0.045625 -0.05 -0.01625 0 -0.050625 -0.048125 -0.049375 0.0075 0.0175 -0.004375 0.0025 0.004375 -0.003125 0.030625 0.02 0.036875 0.001875 0.035 -0.00625 0.00125 0.020625 -0.019375 -0.005625 0.008125 -0.06875 -0.02 -0.036875 -0.03375 0.0125 -0.018125 0.000625 -0.01125 0.02875 -0.025 0.03375 -0.023125 0.043125 0.005 -0.00125 0.01125 -0.00375 -0.020625 -0.015625 0.010625 0.035625 -0.006875 -0.034375 0.01875 0.0175 -0.004375 0.006875 0.0075 -0.0225 0.005 0.005 0.026875 0 0.03125 0.018125 0.04625 -0.034375 0.02 -0.019375 0.0325 -0.0025 -0.036875 -0.03625 0.055625 0.010625 -0.018125 0.01 0.00125 -0.01 -0.02125 0.01375 0.011875 0.021875 -0.00375 0.00875 -0.010625 0.013125 -0.00625 -0.013125 -0.028125 -0.045 -0.05125 -0.049375 0.0175 -0.00125 -0.031875 -0.020625 -0.029375 -0.018125 0.035 0.044375 -0.016875 0.030625 0.005 0.015 0.080625 0.015 -0.034375 0.01125 -0.0075 -0.001875 0.0025 -0.02 -0.005625 -0.00375 0.00125 -0.00875 -0.018125 0.04 -0.05 -0.02875 0.005625 0.004375 0.01125 0.02375 0.020625 -0.0275 -0.02875 -0.006875 -0.026875 -0.005625 -0.015 0.015 -0.01875 -0.061875 -0.03375 -0.024375 0.01 -0.011875 -0.0325 0.00625 -0.0375 0.016875 0.034375 0.02625 0.025 0.01375 -0.009375 0.033125 -0.011875 -0.030625 -0.03125 -0.021875 0.00625 -0.020625 -0.018125 0.0125 -0.00125 0.000625 -0.021875 -0.021875 -0.043125 -0.009375 -0.0325 -0.01625 -0.004375 0.004375 -0.030625 0.021875 -0.034375 0.014375 0.02 0.023125 0.013125 -0.040625 0.024375 -0.021875 -0.004375 0.0075 0.015625 0.001875 0.03375 0.003125 0.005625 0.0375 0.059375 0.04875 0.020625 0.015 0.08 0.000625 0.0225 -0.01125 -0.00625 -0.0125 -0.01 -0.031875 -0.021875 -0.025625 0.014375 -0.03125 -0.011875 -0.064375 -0.000625 0.000625 0.011875 0.016875 -0.01875 0.04875 0.045 -0.004375 0.03125 0.0275 0.006875 -0.011875 0.0125 -0.039375 -0.036875 0.041875 -0.039375 -0.0225 0.03125 0.0325 -0.00375 -0.0075 0.00125 0.003125 -0.009375 0.025 0.02875 0.07 0.0575 0.065 -0.00875 0.001875 0.073125 -0.030625 -0.02625 -0.0275 -0.005625 -0.059375 -0.005 -0.046875 -0.015 -0.029375 -0.010625 -0.03 0.04125 -0.00625 0.00875 0.026875 0.0125 -0.00875 -0.03125 -0.013125 -0.01375 0.019375 -0.01125 -0.0275 -0.04625 -0.036875 -0.029375 0.035625 -0.02 -0.004375 0 0.00875 0.0525 0.001875 0.0525 0.038125 0.025 0.011875 -0.006875 -0.020625 0.025625 0.018125 -0.01375 0.030625 -0.005625 -0.008125 -0.00125 -0.02375 0.019375 -0.009375 -0.015625 -0.05875 0.004375 0 0.02375 0.040625 0.0075 0.020625 0.0525 -0.01 0.010625 0.015625 -0.005 0.01375 -0.043125 -0.026875 -0.003125 -0.044375 -0.015625 -0.004375 -0.035 -0.01125 0.00375 0.050625 0 0.04625 -0.005625 0.015 0.04375 0.005 0.03125 -0.03 0.004375 -0.003125 0.035625 -0.049375 -0.0075 -0.051875 -0.019375 -0.01875 -0.02625 0.00125 -0.021875 0.00125 0.065625 0.030625 0.02875 0.005625 -0.019375 -0.019375 -0.00375 -0.010625 -0.023125 -0.01 -0.005625 -0.025625 -0.033125 -0.025625 0 -0.025 0.02625 -0.009375 0.03375 0.03 0.030625 0.01375 0.010625 0.024375 0.013125 0.023125 -0.004375 0.024375 0.0125 0.026875 -0.009375 -0.024375 0.04625 0.01 -0.010625 -0.075625 -0.025 -0.02625 0.019375 -0.000625 -0.041875 -0.015 0.019375 -0.019375 0.01875 -0.015625 -0.02125 0 -0.04625 -0.039375 0.03 -0.034375 -0.0075 0.02625 0.04625 -0.008125 -0.064375 0.011875 -0.025625 -0.0025 0.04125 0.029375 0.016875 0.03375 0.0375 0.043125 0.04875 0.026875 0.006875 0.034375 -0.003125 -0.00625 -0.01375 -0.061875 -0.0225 0.016875 -0.008125 -0.04 0.00125 0.00375 -0.04375 -0.01375 0.03875 0.02375 0.008125 0.00625 0.028125 -0.04375 -0.015625 -0.018125 0.00625 0.013125 0.000625 0 -0.034375 -0.06375 0 0.035 0.019375 0.000625 -0.013125 -0.01875 0.031875 0.006875 -0.01375 0.01625 0.0125 0 0.008125 0.011875 0.001875 -0.010625 0.02375 0.014375 0.025625 -0.028125 0.058125 -0.02875 -0.0075 -0.018125 -0.028125 -0.02375 0.035 0.00375 -0.006875 -0.015625 0.00625 -0.004375 -0.01375 0.005625 -0.045 0.01 -0.0025 0.003125 0.00875 0.025 -0.01875 -0.006875 -0.029375 0.00625 -0.04875 0.01875 0.046875 0.013125 0.02125 -0.016875 0.029375 -0.0025 -0.006875 0.015 0.039375 0.009375 -0.01 0.00625 0.004375 0.045625 -0.0425 -0.055 0.009375 -0.0175 -0.04125 -0.0275 0.04125 -0.03375 -0.0025 0.01375 0.0025 0.014375 -0.008125 -0.003125 0.013125 0.009375 -0.01375 0.014375 -0.02875 -0.013125 0.00625 -0.053125 -0.009375 0.040625 0.02375 0.015 -0.01 -0.0175 0.011875 0.045625 -0.0025 0.02 -0.000625 0.01125 -0.02125 -0.011875 0.015625 0.003125 0.001875 0 0.00375 -0.02125 0.018125 0.03375 -0.0275 -0.04 -0.035 -0.023125 -0.02125 0.009375 0.008125 -0.00375 0.00875 -0.033125 -0.03375 0.0225 0.04375 -0.031875 -0.0125 -0.00375 -0.015 0.015625 -0.05125 -0.02125 -0.064375 -0.006875 -0.010625 -0.043125 0.03625 0.021875 0.006875 0.005625 0.01375 0.03125 0.064375 -0.0275 0.008125 0.013125 0.02125 0.00125 0.050625 0.02125 0.015625 -0.015625 -0.01375 -0.018125 -0.03125 0.006875 0.004375 -0.065625 -0.01375 -0.05625 -0.04375 -0.045 -0.02625 -0.005625 -0.015625 0.0275 -0.02 -0.07375 0.000625 -0.04125 0.005 0.030625 -0.0075 -0.036875 -0.0425 -0.0275 -0.008125 0.02625 0.00875 0.03875 0.026875 0.006875 0.011875 0.004375 -0.0025 0.01375 0.005625 0.02875 -0.01375 0.01875 0.039375 -0.01 0.021875 -0.033125 -0.013125 -0.0275 -0.00625 0.0325 0.000625 -0.021875 0.025625 0.005 0.026875 0.03 0.02 -0.010625 -0.015625 -0.031875 -0.033125 0.035625 -0.0225 -0.005625 -0.03125 -0.005 0.028125 -0.00375 0.0175 0.008125 0.019375 -0.02875 0.025 0.00375 0.033125 0.06875 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_100ms.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_100ms.hrd new file mode 100644 index 0000000..bf96ea4 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_100ms.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 100 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-24.07125 -20.7325 -23.669375 -22.561875 -21.9475 -19.018125 -20.343125 -18.34875 -14.186875 -20.75125 -19.403125 -18.794375 -16.94125 -17.250625 -20.436875 -18.0425 -15.68125 -18.068125 -16.09 -15.425625 -17.02625 -15.145 -20.5125 -14.076875 -16.435 -15.35375 -13.610625 -11.164375 -12.916875 -14.163125 -15.096875 -14.71125 -13.055625 -13.280625 -10.80375 -12.123125 -12.033125 -10.36125 -11.320625 -9.724375 -11.969375 -11.53 -12.713125 -10.925625 -9.73625 -9.33625 -9.33625 -11.714375 -11.2625 -10.7725 -10.28 -11.251875 -10.403125 -8.826875 -7.123125 -10.005 -10.088125 -9.8725 -8.714375 -11.314375 -8.15125 -10.136875 -9.3625 -11.15875 -10.20625 -10.4575 -8.01125 -9.845 -10.74875 -10.325 -9.274375 -10.044375 -7.528125 -9.124375 -8.5125 -7.096875 -6.92125 -6.124375 -11.8075 -5.28 -9.185625 -7.92625 -8.74625 -9.216875 -5.71375 -9.590625 -7.935625 -7.173125 -11.45625 -6.990625 -6.68375 -6.849375 -7.29875 -7.34375 -10.3825 -5.7875 -7.12875 -4.741875 -5.620625 -8.915 -6.760625 -5.92375 -4.838125 -7.500625 -8.09625 -7.89625 -6.134375 -3.54875 -1.22875 -5.78 -6.185 -7.03 -6.48375 -6.468125 -3.304375 -4.52875 -6.260625 -0.040625 -7.793125 -5.59375 -2.836875 -3.988125 -7.563125 -3.9525 -4.990625 -4.178125 -5.405625 -6.06875 -3.944375 -7.46 -6.585625 -5.71875 -5.454375 -4.495625 -8.39125 -3.333125 -5.84 -5.53 -5.671875 -2.360625 -4.995625 -5.5725 -6.664375 -4.488125 -4.593125 -5.27875 -2.48375 -6.211875 -0.158125 -2.46375 -5.059375 -5.2375 -6.286875 -3.826875 -3.908125 -1.119375 -4.076875 -5.71875 -6.51125 -2.07 -4.7475 -4.770625 -7.419375 -4.52625 -4.771875 -1.093125 -3.011875 -2.995 -3.8075 -3.368125 -4.023125 -5.875625 -4.5725 -1.17375 -3.86625 -1.895625 -3.905 -3.36 -4.00875 -4.205 -3.681875 -8.14 -3.16625 -2.258125 -4.259375 -5.37125 -4.636875 -4.303125 -0.641875 -2.73375 -2.66625 -5.071875 -1.308125 -5.214375 0.208125 -3.176875 -0.034375 -0.7 -2.531875 -4.243125 -0.97375 0.7175 -5.080625 -2.6775 -2.6525 -4.49125 -2.073125 -2.913125 -5.541875 -5.4475 -6.7425 -3.125 -2.190625 -2.433125 -3.264375 -5.729375 -3.7775 -2.07375 -3.74875 -2.23875 -1.895625 0.20125 -3.95875 1.226875 -1.50625 -4.416875 -4.390625 -4.13625 -1.170625 0.319375 -3.639375 -4.1425 -3.364375 -1.84875 -5.845 -0.924375 -1.930625 -0.935625 -3.2175 -3.19375 0.0275 -3.088125 0.50375 -1.319375 -0.86875 -1.92625 -1.961875 -1.74125 -2.23125 -1.115 -2.548125 -1.351875 -1.159375 -4.599375 -1.735 -2.614375 -2.719375 0.39375 -1.589375 0.183125 -3.573125 -1.710625 -3.535625 -5.26125 -3.354375 -3.178125 -3.59375 -0.6775 -1.664375 -3.1375 -3.795 -2.4425 -2.9925 -1.18 0.54875 -3.138125 -2.74125 -1.561875 -3.210625 -4.05625 -1.03 -2.185 -0.531875 -0.0125 -1.228125 -5.025 -2.57 -2.490625 -2.49375 0.1625 -0.501875 -0.696875 0.255625 -3.03625 -2.0075 1.05125 -1.69 -3.219375 -0.820625 -3.92625 -2.825 -3.20125 -2.37 -3.035625 -2.1 -3.504375 -1.605625 -1.235625 1.38125 -0.509375 0.07625 -1.1275 -1.0375 -0.5675 -3.651875 -1.50125 -3.49625 -1.056875 -1.206875 -3.648125 -0.22625 -0.86625 -1.16375 0.7775 0.170625 0.993125 -1.935625 -2.489375 -2.640625 -4.053125 -2.39375 -3.008125 -2.596875 1.225 3.745625 -2.410625 -0.279375 -1.103125 1.22 -0.6125 -0.79125 -0.91 1.983125 -0.1925 -0.111875 -1.33625 0.489375 -1.68125 -2.60875 -0.779375 -3.288125 -0.635 0.233125 -0.434375 -1.044375 -1.2 0.330625 -4.558125 -2.41 -0.08375 0.614375 -0.668125 -0.150625 -3.556875 -2.35625 -4.0125 -1.9775 -2.9875 -1.9875 -1.854375 -1.993125 -0.42875 -0.260625 -1.66625 -0.014375 -2.18625 -2.82375 0.510625 -1.6775 0.661875 -0.436875 1.606875 0.809375 -2.3325 -1.22875 -0.86 -2.55125 -1.796875 -1.0875 1.106875 0.5025 -0.414375 -0.22375 -0.475625 -2.725 -2.40875 -0.498125 0.260625 -0.29 -1.04 -0.44 1.27625 -1.259375 -0.120625 -0.344375 0.51625 -1.94625 0.620625 -2.240625 0.25375 -1.415625 0.398125 -2.141875 -1.70125 -1.993125 1.520625 -2.031875 -1.303125 1.725625 -1.716875 -3.02875 -1.779375 -1.486875 -0.9625 -5.93125 -1.570625 -3.98625 -1.985625 2.2775 -1.4125 -0.81875 -1.301875 -2.556875 -0.43 -1.22125 -2.635625 -1.6775 1.918125 -1.926875 -0.871875 -3.6925 -3.043125 0.633125 -6.26125 -1.869375 -3.9225 -1.261875 -0.0325 1.508125 0.820625 -5.68375 -1.40375 -1.56 -2.47125 -3.104375 -2.650625 0.75125 0.190625 -3.461875 -2.389375 0.471875 -1.849375 0.971875 -1.26625 -1.730625 -0.325625 -0.133125 -1.01625 -2.07375 -1.923125 -1.0075 -0.885625 -2.265625 0.15875 1.765 -1.780625 -3.400625 1.33375 0.13125 4.129375 -0.09625 -0.469375 0.281875 -1.989375 -0.736875 -1.569375 1.581875 1.27375 -0.735625 -1.8775 -1.145 -0.710625 -0.735 -0.21375 0.8575 3.49375 -0.405 3.2925 0.1075 -0.279375 -0.41625 -3.11 -0.76 -2.116875 -0.00625 -0.75 1.321875 1.49375 -2.4025 -2.65625 -2.626875 -4.180625 0.568125 -2.365 -2.888125 -0.725625 -5.580625 -3.291875 -1.62125 4.6225 -0.3425 -0.85125 2.55125 -1.615625 -1.325 -1.789375 0.8575 -3.21125 -1.559375 -1.770625 -2.42625 -0.17625 -1.08875 -1.10625 -1.294375 -2.358125 0.054375 -2.45625 -3.235625 0.665625 0.553125 -1.359375 0.211875 -0.438125 0.385 -0.98875 -1.236875 -1.2825 0.656875 -2.21375 -0.85625 -0.0475 -0.853125 -1.91625 -1.894375 -0.77125 0.12375 -0.99375 2.22625 -1.608125 -1.549375 -0.589375 -1.894375 0.27625 0.6425 -0.37 -2.601875 2.09375 -0.74 0.753125 0.8125 -0.09375 -0.3675 -2.370625 -2.298125 0.881875 -1.144375 -1.261875 -0.4475 0.775625 1.95125 -3.83125 -1.55125 -0.980625 3.54125 1.04125 -2.15875 -1.31 0.298125 1.224375 -0.046875 -1.115 -1.750625 -0.2925 0.975625 -1.31125 2.02 0.7875 -3.735625 -2.36125 -1.876875 -1.27875 2.000625 -3.2125 2.275 -0.24125 0.551875 0.771875 0.94625 -0.91125 -1.66875 -0.814375 -2.896875 -0.915 2.1425 -1.614375 0.709375 -1.995 -2.4875 -0.348125 0.128125 1.104375 -2.528125 -1.2 -2.56375 0.37875 -1.7575 1.66625 0.6125 -2.93375 -0.74875 -1.36875 2.629375 2.593125 -0.639375 -1.574375 0.33125 0.951875 -1.54625 -2.1825 3.851875 -1.395 0.295625 0.464375 0.011875 -3.2825 1.491875 -0.84 0.77625 -0.056875 -2.69125 -2.541875 2.35375 0.43 -0.99625 -0.215625 -0.86375 -2.743125 2.405 -2.634375 0.8675 -0.40625 -2.958125 -1.05 0.016875 -0.08 -3.73125 -2.39375 -3.790625 -0.8725 2.541875 2.776875 -1.9475 -2.360625 -0.251875 -2.440625 -4.343125 -0.714375 -0.3825 1.596875 3.689375 0.986875 -1.11 -1.875625 0.9075 1.001875 -1.0625 -2.718125 -2.01375 -0.25125 0.629375 0.84375 0.378125 -1.53 -2.745625 1.6925 0.73125 -0.640625 0.273125 -0.63 0.80125 -2.040625 0.09125 0.175 -1.6125 -0.076875 1.88625 -3.9775 0.561875 1.613125 1.549375 -0.591875 4.458125 0.81125 0.469375 1.689375 -1.6475 0.41 0.095 3.475625 0.065 -2.8075 -3.8725 3.32375 2.34125 5.02625 -1.515625 0.591875 -0.948125 -0.1675 -0.985625 1.215625 -1.561875 -0.779375 3.113125 1.504375 0.4225 -1.1425 2.04625 -1.56875 -2.110625 -0.133125 -1.016875 0.230625 -0.865625 -2.661875 -1.57 -1.1675 0.61375 -1.92125 -0.055625 1.18 -1.89 -0.971875 -2.976875 -2.8425 1.965625 -3.564375 -1.34125 -3.386875 -1.8925 1.215 0.309375 -2.548125 -0.7525 -1.05625 0.67125 -0.15125 0.159375 3.223125 -1.518125 0.1325 1.165 -0.42625 1.143125 -5.424375 0.453125 -1.071875 1.0075 -0.685 -0.63875 2.1 -1.09375 2.11 1.693125 0.20875 -0.10375 -2.12875 1.33125 -1.00625 1.769375 0.5775 -2.801875 -0.675625 -1.0975 -2.760625 -1.694375 0.203125 1.459375 3.89875 0.804375 2.525625 -0.153125 -1.125625 -0.8425 -0.575625 -0.2375 -2.01875 -1.48875 -2.430625 -0.973125 -1.664375 0.53375 -0.654375 -0.060625 1.556875 3.0625 1.3875 -2.144375 0.566875 -2.66125 0.33375 -0.030625 -0.943125 -1.414375 -0.290625 -1.306875 0.433125 -2.873125 -2.08625 -2.028125 -0.935 1.365625 2.333125 0.078125 -1.813125 -1.081875 1.264375 -0.52375 0.055625 2.960625 -0.305625 -1.93875 1.37 -3.508125 3.290625 -1.59875 -1.43 -1.54 1.16375 -1.08875 1.209375 3.435 -3.730625 -1.26375 -0.00625 1.783125 0.083125 1.6675 1.906875 -0.834375 -0.45625 0.6 -0.615 2.37125 2.343125 1.435 -1.88125 0.104375 0.958125 1.423125 -0.615625 -0.238125 -0.000625 -0.28 -1.50125 -0.5975 -2.318125 1.449375 -1.488125 1.3025 0.12875 -1.748125 -2.826875 -2.49625 -0.745 2.91375 -1.51375 1.448125 1.320625 -2.845 -0.741875 -1.50375 -2.766875 -0.025 0.855625 -1.2825 -1.32125 -1.410625 -0.728125 1.151875 -2.354375 -1.36125 2.855625 -0.0525 -0.024375 -1.15375 -2.145 -1.205625 -2.398125 2.82625 -2.584375 -2.686875 -0.5775 -1.34625 -1.04375 -0.415625 -0.773125 -2.435625 -1.330625 0.943125 1.53875 1.2625 -3.045 -2.279375 -0.449375 1.29625 -1.0725 0.716875 -0.350625 -0.285625 -2.133125 -2.3025 1.891875 -0.37125 -1.79875 1.824375 2.744375 0.04375 1.845625 -2.341875 -1.44875 0.59375 -0.548125 -1.909375 0.503125 0.18 -0.2625 0.9975 1.151875 -4.799375 -0.78 0.043125 2.809375 0.3775 -1.25 1.858125 -0.990625 -1.0925 -3.0475 -2.079375 0.93625 -2.548125 0.566875 -1.465 0.170625 1.46125 0.34375 0.950625 -1.1725 -3.308125 1.3325 -2.159375 0.758125 -1.743125 0.39375 -2.123125 0.52 2.105625 -0.256875 -4.99625 4.03 1.030625 -0.614375 -2.12125 1.793125 0.835625 -0.8075 -1.3125 -0.929375 2.425625 0.738125 -0.850625 -2.8125 -1.613125 2.319375 -1.20375 1.37625 0.60125 0.41125 -2.44 -2.401875 4.16625 -2.370625 3.6525 0.951875 -0.14625 1.16125 -0.973125 1.590625 0.32625 -1.3725 1.199375 -1.438125 0.055 -1.68125 -0.51375 1.054375 1.82 -0.3925 -0.264375 -2.445625 0.778125 0.39 2.058125 3.423125 -2.813125 -4.48375 -3.38125 -1.17875 -1.16 1.183125 -0.17875 0.864375 1.17625 0.26875 -0.960625 2.07125 -0.73 -1.469375 0.141875 -1.678125 0.271875 0.58375 1.03 0.495625 -2.25625 -2.163125 -0.886875 0.001875 -0.6725 -2.996875 -0.124375 -1.606875 -0.44125 -0.90875 0.34375 -3.81875 -0.1975 -1.56375 1.359375 0.60875 -0.89875 -0.674375 -0.690625 -3.948125 0.14625 1.1025 1.31125 1.346875 0.761875 0.475625 1.7825 0.263125 2.10375 -2.581875 5.82375 1.62625 1.240625 -0.058125 1.14625 2.5725 0.324375 -0.590625 2.850625 -0.34875 0.67 -0.020625 3.2075 0.5525 -0.385625 -1.163125 -2.7475 -0.47875 1.664375 -0.125 1.988125 1.9575 -1.023125 3.22375 -0.7425 2.78875 0.645 2.918125 -3.0825 1.503125 -0.5075 -2.718125 -0.053125 0.44375 0.890625 -3.40875 0.1475 -0.456875 0.274375 1.49 -3.69125 0.249375 1.498125 -2.21625 -2.590625 1.7375 -0.0725 -2.245625 1.37 2.13125 -1.12125 -1.949375 -0.654375 -4.62375 -1.9275 0.82375 0.02 -2.199375 3.613125 2.845 -0.82625 1.916875 0.41125 -1.678125 1.184375 -1.773125 -0.710625 -0.235625 0.56625 0.691875 0.3575 -0.715625 -1.94375 1.9175 0.246875 1.92 -0.029375 -0.615625 -1.19 -0.333125 0.66875 1.73 0.67625 -3.418125 -1.730625 0.846875 0.284375 1.03375 -0.898125 2.28 -0.498125 -0.206875 -3.449375 -1.201875 0.488125 -0.24125 -1.01125 3.001875 -1.143125 -0.1875 -1.08875 -1.16875 1.445625 3.029375 -1.436875 -2.026875 -0.001875 -0.2075 -1.19125 4.40375 -1.9275 1.3925 -1.115625 -0.215 -0.4575 0.358125 1.3275 -1.44375 0.031875 -4.196875 0.603125 1.083125 1.3625 0.84875 -1.55375 0.640625 -0.755 0.399375 -0.10875 -0.789375 0.860625 -0.808125 -1.904375 -0.7 0.614375 0.824375 0.519375 -1.275625 -0.256875 -2.29875 0.78625 -1.34 -2.188125 -0.270625 -0.8175 0.20375 -0.8825 4.2125 0.425 -2.581875 -0.024375 2.93375 -0.635625 -1.0125 2.41625 -0.756875 1.934375 -0.774375 1.19375 1.600625 1.06875 0.7275 3.8375 0.5175 -1.945 4.08 1.03 1.15375 2.323125 -2.050625 -0.538125 -1.54625 1.495 0.2675 0.901875 0.590625 -2.41625 2.44375 0.1725 -1.281875 -1.694375 -1.335 -0.94125 -0.765 0.826875 -0.129375 0.644375 -2.324375 0.62625 -0.74875 1.835625 2.443125 -2.340625 1.381875 -1.078125 0.7225 -0.8125 -0.15125 -1.05125 0.2125 -5.649375 2.50875 -1.966875 -1.4325 -2.796875 -1.221875 -0.796875 1.02625 -0.6475 1.7725 1.1075 -2.1425 -0.578125 -0.635 -0.710625 2.774375 -2.918125 -0.276875 -0.41125 0.81125 0.05 1.145 -0.06375 -1.599375 3.59125 -1.165625 -1.393125 -0.96375 1.340625 -1.74875 -1.454375 2.6025 -0.108125 0.69125 -0.63625 -1.61875 1.454375 -0.165625 -1.1625 -1.36125 -1.926875 1.99 1.0125 1.856875 -1.56 -0.18125 -1.4375 0.21625 2.423125 1.1925 1.125 -1.01875 -0.30125 1.66375 -1.241875 -0.331875 -1.073125 2.516875 -1.530625 -1.478125 1.378125 0.161875 -0.588125 -0.491875 0.1925 -2.474375 -0.96875 -2.068125 -1.06125 -1.014375 -0.826875 3.029375 1.24875 1.043125 1.179375 -2.761875 0.98375 0.95 -0.3825 2.170625 -0.618125 -1.7575 -1.790625 3.739375 1.638125 0.200625 -0.256875 -0.483125 0.681875 1.256875 0.700625 -0.9975 -1.093125 -0.00625 -0.413125 -2.729375 1.635625 -0.495 -0.248125 -1.361875 0.404375 1.21125 2.4825 -1.94875 2.15 -0.271875 0.211875 0.24875 -0.465625 0.43 1.03 3.485 2.564375 -0.51625 2.12375 -2.825 0.459375 1.955625 3.45125 -3.4075 0.420625 1.5175 -0.628125 -1.184375 1.509375 -1.06 1.055 -0.4925 -0.774375 1.718125 -1.10375 0.17625 -1.104375 0.86875 1.14625 1.6225 -1.85375 1.71625 -0.47125 -0.06875 0.3325 -0.595625 -0.23625 -3.590625 -2.1475 -0.343125 -0.87125 -0.585 -3.756875 2.730625 -1.936875 -0.179375 0.44875 0.118125 1.09875 0.483125 -2.20125 0.06125 -1.1775 0.725 -0.065625 -0.81875 0.14625 -0.745625 -0.884375 -0.551875 -3.170625 0.8975 -0.1025 2.3425 1.168125 1.20125 0.720625 1.0825 -2.710625 -0.244375 0.613125 -0.654375 -1.186875 0.92375 -2.41875 -1.274375 -0.305 -0.63625 -2.865 -2.226875 0.82 -0.248125 1.595625 1.268125 -0.61125 -2.26125 1.61125 2.384375 2.459375 1.0975 0.67875 -1.911875 -1.425 -2.04 1.5625 -1.4275 2.92125 0.285 -0.431875 -0.79 -1.03125 1.399375 2.041875 -1.578125 0.21875 -1.645625 -2.005 0.829375 -0.106875 -0.935 -0.031875 0.718125 -1.58375 0.2125 1.57125 -0.92875 -3.894375 -2.49625 +-21.89 -31.14625 -21.7625 -26.350625 -18.1875 -25.565 -23.32375 -25.41875 -21.72125 -24.1825 -19.27375 -20.36375 -22.69375 -22.825 -22.3975 -16.64 -16.09375 -17.791875 -17.6925 -17.891875 -17.0975 -20.63 -17.64875 -15.50125 -18.483125 -16.351875 -16.2325 -14.834375 -15.4125 -15.17625 -18.97125 -16.19 -15.75625 -18.306875 -15.315625 -14.616875 -14.871875 -15.515 -12.879375 -15.599375 -13.445625 -13.09375 -12.235625 -15.658125 -14.129375 -17.605 -13.59875 -13.151875 -11.341875 -12.5275 -13.97375 -12.145625 -13.795 -13.54125 -12.34875 -12.84875 -10.850625 -13.86875 -11.4825 -11.3025 -11.911875 -9.191875 -11.004375 -11.8025 -9.8325 -11.316875 -11.7175 -12.491875 -11.55375 -11.221875 -9.973125 -10.888125 -11.028125 -8.331875 -9.17125 -10.5575 -9.293125 -8.94375 -10.616875 -10.821875 -7.96125 -7.8225 -11.60625 -9.245 -8.531875 -10.499375 -10.054375 -7.47125 -9.694375 -9.114375 -10.353125 -8.16625 -7.065 -10.86875 -7.356875 -9.41 -6.675625 -6.59875 -5.669375 -6.1375 -8.366875 -9.934375 -9.543125 -6.955625 -4.710625 -8.066875 -9.434375 -7.134375 -9.411875 -6.791875 -7.97 -7.208125 -7.304375 -9.48625 -8.303125 -7.3325 -8.133125 -6.398125 -5.28875 -7.475 -8.381875 -8.869375 -5.105 -8.481875 -4.115 -6.41625 -7.47375 -10.39625 -7.04375 -5.75125 -7.301875 -5.4025 -8.18625 -6.810625 -7.625 -6.603125 -7.245625 -6.010625 -5.555625 -4.343125 -7.103125 -7.86125 -7.979375 -4.028125 -8.68125 -6.156875 -2.6925 -4.943125 -6.74375 -5.05875 -5.9225 -4.226875 -4.8525 -7.14625 -3.55875 -6.288125 -6.865 -3.285625 -5.985 -5.590625 -5.2175 -3.549375 -5.71 -4.4125 -6.6 -4.75125 -4.220625 -1.00375 -4.7475 -2.7375 -5.484375 -5.04375 -3.525 -1.474375 -3.835625 -2.365 -4.925 -2.750625 -6.669375 -6.96 -5.65125 -3.294375 -7.446875 -3.4175 -3.5625 -4.8575 -6.54125 -4.90125 -1.063125 -2.674375 -4.72 -4.596875 -3.73875 -4.0125 -2.845 -3.223125 -6.836875 -1.889375 -4.38625 -5.316875 -3.098125 -1.54 -2.22125 -0.046875 -4.54 -3.276875 -1.388125 -5.795 -2.83875 -4.024375 -5.02375 -2.58 -2.955625 -1.060625 -4.85375 -2.146875 -4.5725 -2.758125 -5.449375 -2.49125 -3.540625 -3.469375 -4.219375 -9.48375 -3.86 -4.078125 -2.295 -3.12625 -1.55375 -1.78625 -3.4425 -3.245625 -3.851875 -2.5225 -3.965625 -0.12625 -3.300625 -0.64375 -1.51125 -1.835625 -1.62 -3.175 -3.0425 -3.008125 -2.305625 -3.236875 -4.72 -2.48375 -2.580625 -3.824375 -5.160625 -1.66375 -2.341875 -3.11625 -3.090625 -0.501875 -1.596875 -0.55 -3.154375 -4.181875 -1.136875 -3.475625 -3.45125 -2.49125 -1.05375 -3.300625 -0.99 -2.47125 -3.310625 -4.9975 -1.820625 -0.890625 -1.265625 -3.473125 -1.68875 -2.605 -1.71625 1.231875 -3.42375 -2.45625 -1.8025 -5.8425 -2.09375 -0.340625 -5.17125 0.025 0.683125 -3.118125 -3.43125 -3.031875 -5.409375 -3.47625 -1.3025 0.205625 -1.31125 -5.11875 -2.133125 -4.18625 -3.485 -4.415625 -2.61125 -3.164375 -3.128125 -2.835625 2.45375 -6.1775 -1.90875 -5.7025 -1.3775 -1.308125 -2.23875 -3.124375 -1.86 -0.28625 -1.6825 -4.18125 0.073125 -1.59375 1.733125 -2.81375 -1.07625 -4.4725 -2.083125 -0.05875 1.033125 -0.44875 -2.37875 -2.5125 -2.955625 -1.19625 -0.91125 -3.945625 -0.736875 -3.99125 -3.079375 -0.1625 -2.646875 -0.45375 -2.12125 -0.41875 1.020625 1.528125 -0.99125 -1.149375 -1.39625 -0.825 -5.3525 -1.958125 -1.09125 -1.495625 -1.568125 -3.754375 -1.85 -1.06625 -2.671875 1.17625 -2.51125 -2.6925 0.7075 -2.59125 -1.02875 -5.408125 -2.675 -3.33 -2.833125 -1.0525 -1.59625 -4.0075 -2.589375 0.764375 -1.88875 -0.663125 -2.499375 -1.89875 -0.42375 -1.005 -2.964375 -1.646875 -3.24 0.381875 -0.725625 -1.451875 -1.51125 2.084375 0.52875 -1.429375 1.674375 0.84125 -1.103125 -2.525 -2.445625 -3.03125 0.88375 -0.40125 -2.49 -0.008125 -0.41375 0.360625 -3.3 0.0125 -0.668125 -0.63375 -1.30625 -2.435 -0.8325 2.159375 -0.190625 -0.08125 1.219375 -3.38 1.57875 0.67 0.215 -1.54375 -2.605 -4.928125 -0.943125 -2.239375 -1.01125 -0.665625 0.171875 0.294375 -0.594375 0.973125 -2.046875 -1.108125 -3.8125 -0.806875 -1.8475 -2.905625 -1.693125 -1.4775 0.77625 -1.42375 -2.433125 -3.239375 -1.16 1.340625 -1.654375 1.745625 -2.62875 -3.466875 -0.691875 -0.98375 1.023125 2.335 0.7725 1.715625 -2.401875 -1.03125 -0.076875 0.033125 -0.4475 -1.834375 -0.59375 0.3725 -1.831875 0.84 -0.576875 1.4575 -0.631875 1.731875 -2.32125 0.318125 -0.37375 -2.563125 -0.015 -2.764375 2.51125 -2.929375 -0.7525 -1.439375 -0.084375 2.7775 0.929375 -0.706875 -0.478125 -0.481875 -1.60375 -4.97625 0.819375 0.280625 -0.821875 1.4225 2.81875 -1.47 1.6575 -0.74125 -0.768125 -0.400625 -1.735 -2.8325 1.33875 -1.03125 -0.40375 -0.46625 -1.898125 -0.67625 1.01125 -3.37625 1.846875 -3.44375 -0.0775 0.43 -1.13625 2.48125 -1.63125 0.690625 2.634375 -1.336875 -3.091875 -0.371875 -0.395625 -0.735 -1.17125 -3.0025 -0.75875 1.268125 -2.78 -0.45375 -2.688125 1.445 -1.58875 -0.08625 -0.14875 0.28625 0.678125 0.355625 -3.144375 -0.323125 -0.884375 -1.568125 -3.221875 1.236875 1.018125 -1.570625 0.795 0.148125 0.928125 -0.596875 1.40375 -1.669375 -2.828125 0.823125 1.075 0.5025 -0.010625 -1.95875 -0.845625 -4.8575 -2.586875 0.51875 -1.39375 -0.23875 -1.279375 2.29375 0.174375 -2.00375 -2.4025 -0.963125 1.466875 -0.534375 -1.331875 -1.771875 0.523125 -0.470625 -2.870625 0.48625 -2.026875 -1.18625 2.37 -0.29125 -0.826875 -0.0975 -0.23375 -1.279375 -0.673125 -0.0075 -1.94625 -2.5275 -0.690625 0.446875 -2.02875 -0.343125 2.269375 -0.38625 -0.01875 0.47125 -1.63625 -2.074375 -0.371875 0.243125 -1.251875 2.485 1.118125 0.1325 1.83625 0.910625 -1.650625 -2.73625 -1.11125 -1.71625 -1.440625 0.83 -0.22875 -0.52625 0.665625 -1.505 0.68375 -3.42125 0.895 2.105625 0.2675 -0.63 2.731875 2.5325 -2.10375 -0.6525 0.0275 1.40375 0.895 1.115625 0.26 0.641875 0.110625 1.62375 -1.81 1.1575 0.090625 0.595625 2.76875 -0.443125 -0.42875 -0.906875 -1.994375 -0.486875 0.11625 -2.6225 0.163125 -1.27875 1.606875 0.695 2.775 -0.929375 -1.369375 -3.195 -1.66 -1.97875 -2.545625 1.646875 -1.640625 -2.933125 -0.43625 -1.848125 -0.163125 -0.128125 -0.875625 -1.565 0.081875 -0.789375 -0.76625 0.305625 -1.194375 -2.43875 -0.25125 0.259375 -1.14 -0.411875 -0.841875 0.721875 -1.205625 0.44375 -0.1925 0.351875 -0.285625 0.674375 -0.4825 -0.92875 1.590625 -0.67125 1.039375 -1.2675 -0.76875 -0.8325 -1.770625 3.206875 -1.23125 0.3 -1.471875 -1.010625 0.444375 -1.251875 -0.609375 1.755625 4.01875 2.275625 0.414375 -0.74625 1.293125 0.48625 -0.501875 1.055625 0.81 -0.454375 -0.12 -4.388125 0.3475 -2.154375 2.34625 0.166875 -0.16875 2.709375 2.296875 -2.3975 -1.950625 1.168125 -2.974375 -2.566875 -1.4475 -0.005625 -0.7725 0.594375 -3.7075 -1.78625 -1.290625 -2.96 1.28 -1.776875 -1.640625 -0.00625 1.228125 1.786875 -1.785625 -2.6225 1.539375 -2.581875 -0.201875 0.225 -0.856875 1.37375 -0.8375 -0.66375 -2.895625 0.00625 -0.33625 1.465625 0.615 -3.25 2.80375 0.803125 0.005 -1.62625 4.986875 0.6975 2.50875 0.48125 -2.756875 -0.31625 1.83625 2.485625 2.205 0.768125 -1.00125 0.9775 1.32125 -1.0475 -1.909375 1.56 -1.145 -1.521875 0.056875 -2.121875 1.58375 -0.3075 1.44375 -0.116875 0.9525 1.1875 -0.223125 0.678125 -3.108125 -3.001875 -2.40625 -2.105 -0.9675 -1.118125 -3.4525 -0.588125 0.93125 0.84375 0.098125 -2.1125 0.78875 -1.88 -1.245625 -0.57125 -1.019375 2.741875 1.96625 0.889375 -2.98625 1.449375 2.673125 1.99375 -0.455625 0.430625 0.254375 -0.62125 -0.1475 -1.769375 1.51875 -1.821875 -1.02625 4.188125 -0.485625 -0.615 -3.96 -1.20375 -2.538125 1.055 -2.774375 0.168125 -2.8 1.755625 -3.430625 0.28125 2.024375 -0.504375 0.145625 0.778125 -0.974375 -0.0575 0.12625 0.793125 1.37875 -2.0275 -3.4575 0.654375 -3.72875 -1.0575 2.54625 3.173125 0.85 -1.25375 0.4625 -0.55375 3.35125 4.18375 2.256875 0.623125 -1.29875 0.27375 -0.49375 1.66875 -1.64625 1.1775 -2.405625 -1.621875 1.875 5.295 -2.1675 0.161875 -1.26875 -1.4525 2.240625 -0.248125 0.98875 -0.8175 -0.894375 -1.658125 -1.37625 1.930625 -0.69125 1.356875 -0.115625 -2.040625 -3.2325 0.125 1.345 1.453125 -2.77 1.959375 0.980625 0.644375 -0.398125 -0.60875 0.135 -0.200625 0.714375 -0.869375 -0.7875 0.043125 2.06375 2.765625 -1.90625 0.035 -1.356875 0.115625 1.4175 -0.981875 1.11125 1.23875 -1.486875 -0.760625 0.12125 -0.23875 -1.396875 -0.26125 -0.320625 2.760625 -0.714375 2.884375 -0.03 -2.45375 -1.8975 0.71375 0.64125 0.685 -0.545625 1.116875 0.573125 1.586875 -0.323125 2.176875 -1.49875 0.45875 0.651875 0.045625 3.19625 1.334375 -1.273125 0.856875 -3.89125 4.0975 2.381875 -1.46 2.19875 -1.9325 -0.319375 -1.121875 -1.198125 -0.208125 3.833125 -0.049375 -0.875625 -3.02125 -1.80625 0.84625 -3.39 2.743125 -1.205 1.225625 0.46 -3.876875 -3.556875 -1.009375 -2.04375 -0.55625 1.15875 -3.099375 -3.56625 -3.91125 3.510625 -0.201875 -4.36625 3.006875 1.3175 -0.273125 -1.49375 -3.405 -0.6875 -0.28625 -0.22 -2.919375 -1.213125 -0.836875 0.891875 -2.184375 -1.064375 3.826875 2.73 1.416875 2.256875 -2.571875 0.70875 -1.12375 -2.16375 0.525625 -1.1025 -1.095 -0.953125 3.946875 -0.684375 1.3825 -0.020625 1.44875 3.609375 -2.494375 3.779375 1.12875 1.238125 -1.67 0.23125 0.0775 -0.715625 2.128125 0.2525 0.739375 1.5325 0.96625 -1.419375 -0.19375 1.146875 0.409375 -2.46625 -1.868125 -1.8175 -3.586875 -0.800625 2.259375 0.245 -2.943125 -0.460625 0.41125 0.846875 0.553125 -0.471875 1.791875 -3.389375 0.81625 0.12125 2.873125 -1.25375 -0.655625 -2.05375 -0.595625 1.94375 -3.190625 2.73125 1.89 1.788125 2.3325 -0.475625 3.77 -2.245625 -2.000625 -0.825 0.438125 3.35875 1.2225 2.17375 -1.00125 -0.246875 0.354375 1.71 -3.521875 -0.189375 -1.953125 3.03875 3.0675 1.278125 -3.284375 0.30875 0.485625 -0.1825 0.21625 0.421875 -1.061875 2.636875 -1.449375 2.226875 0.438125 -0.574375 0.84875 -1.006875 0.88125 0.334375 -2.395 2.41375 -1.498125 2.4375 -2.7275 -0.948125 -0.215 -2.7 0.781875 1.123125 3.03 -0.735 2.25 -0.246875 -2.22625 -4.081875 0.395625 -1.075 -0.045 -1.305 0.516875 -2.698125 1.4575 2.740625 -0.580625 1.8575 0.39375 -1.138125 4.9725 -0.168125 1.61 -2.025 -3.49 -0.815625 -0.553125 -2.293125 -0.675 -1.99625 -1.94125 2.7025 -0.34125 -1.7875 0.849375 2.789375 -0.015 0.623125 1.525625 -0.255 -0.291875 0.016875 -1.103125 0.749375 -2.748125 -1.84 0.353125 -1.000625 2.4075 0.128125 -3.24125 3.135625 1.571875 1.593125 0.395625 -2.43 3.103125 1.124375 0.938125 0.230625 -1.526875 0.6525 0.29625 -1.64 1.791875 0.13 -0.379375 -0.271875 -1.31375 -3.5825 1.549375 0.368125 1.9075 0.614375 -0.93625 2.33125 -2.531875 1.4275 0.061875 1.738125 -0.1625 -2.176875 -1.853125 0.23125 0.831875 -2.6125 -0.494375 -1.740625 -4.003125 -0.403125 -1.67875 -0.249375 1.23375 1.005 1.1325 -2.0025 0.56875 -0.13375 -1.556875 -1.041875 0.969375 -0.529375 -0.395625 -0.6875 0.306875 2.3975 3.409375 -2.0225 0.308125 0.874375 0.57 0.48375 1.94375 0.7975 -0.845 -0.6975 3.865625 -0.66125 2.35875 0.97625 -1.718125 0.37875 0.584375 -1.6875 -2.2125 -1.3875 2.89125 2.106875 -2.331875 -1.024375 0.80875 0.265 0.611875 2.584375 3.2375 2.556875 -2.324375 4.663125 0.78625 0.150625 1.0025 -1.836875 2.4375 1.0275 2.37875 -0.660625 -0.18875 0.873125 -1.4975 1.278125 1.49125 -0.26 -2.006875 -2.941875 -0.808125 -1.20625 -0.355 1.31 -1.15875 -0.1225 -4.0525 2.069375 0.1075 0.775 -0.615 -1.491875 -0.0425 0.731875 1.181875 0.18875 -3.26 -2.701875 0.3625 -1.556875 0.119375 -2.08 -2.561875 -2.49 0.4375 -0.915 -1.096875 0.4975 -1.151875 -5.33375 -0.793125 2.216875 1.235 0.603125 1.0625 0.15125 0.26375 -0.598125 -0.21125 -0.73625 -0.315 2.4625 1.831875 -0.154375 1.98625 2.194375 -2.008125 2.805 3.17875 -0.8025 -0.121875 -0.94625 1.728125 2.876875 1.1325 0.08875 0.92375 0.09625 0.459375 0.326875 -0.596875 1.344375 3.286875 0.835 0.804375 1.394375 -1.741875 -2.11375 3.25 1.48375 -0.226875 -0.945 0.450625 0.68375 2.4925 -0.476875 -2.6925 -0.735 -1.296875 0.634375 -1.245 -2.81375 -0.488125 -3.62 -0.31125 -2.503125 0.52625 0.4175 0.565625 -2.591875 2.045 -0.605 -1.540625 -2.905 -3.82 -1.685 -1.96 1.856875 0.395 -5.251875 2.3375 1.076875 1.01875 -2.279375 0.73 0.2675 0.42 -3.093125 -0.823125 1.23125 -2.565 0.110625 1.259375 0.9075 -0.2475 -2.049375 2.171875 0.2425 -1.9775 0.96375 -0.991875 -0.059375 -2.75875 -0.3125 0.80375 -0.689375 0.6 2.028125 2.545625 1.829375 1.423125 0.89625 0.83375 0.975625 -0.445625 -1.689375 -3.010625 -0.710625 0.723125 -1.42375 0.695625 2.095625 0.096875 -2.725 0.36625 1.281875 -0.99625 -1.3475 -1.70125 -0.4025 -0.938125 0.550625 -0.643125 0.4575 0.2825 -1.25375 0.37125 1.005625 -0.37125 -0.4875 -0.499375 -1.693125 -0.08125 0.36875 1.7125 3.57375 -3.1125 -1.36125 0.188125 0.4325 -0.316875 0.54 -0.00625 -4.0175 0.3425 -0.593125 1.398125 -0.29125 -0.195 3.039375 -2.31625 -1.6775 2.490625 -0.379375 -2.82875 -2.84875 -2.469375 0.749375 3.9575 0.023125 0.22 -2.185 -2.801875 -1.33375 1.959375 1.32625 -0.941875 0.80125 -2.60625 -0.0125 -4.091875 -1.553125 1.191875 2.609375 -0.37 1.14 -1.084375 -0.473125 1.156875 1.360625 -0.484375 1.0275 -1.036875 -0.674375 -2.39625 0.268125 -0.853125 1.245625 1.730625 -1.345625 2.851875 2.02 2.066875 0.19125 -0.125625 -2.4425 -1.699375 0.6575 1.738125 1.495625 2.128125 -0.1 -0.629375 -3.41625 2.09875 -0.87125 -0.041875 0.661875 0.880625 -2.044375 0.84375 0.653125 1.715 -2.619375 0.73125 1.175625 -0.7525 -3.14 0.059375 1.688125 -3.93 1.84875 -0.845625 0.916875 2.175625 -3.990625 0.41625 -1.074375 2.175 -0.348125 0.57 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_100ms_ref.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_100ms_ref.hrd new file mode 100644 index 0000000..e401735 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_100ms_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 100 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0.01875 0.03625 0 0.00375 0.01 0.025 -0.009375 0.0125 -0.06625 -0.029375 0.004375 -0.013125 -0.0475 0.028125 0.02125 -0.0475 0.024375 -0.036875 0.00125 -0.050625 -0.0375 0.01625 -0.008125 0.039375 -0.056875 -0.005625 -0.05125 -0.038125 0.00375 0.01625 -0.01375 -0.0625 -0.03 0.0175 -0.026875 -0.025625 0.0125 0.0525 0.03625 -0.01125 0.045 0.028125 -0.003125 0.019375 0.0175 0.04875 0.025 0.01625 -0.020625 -0.036875 -0.0075 -0.043125 -0.026875 -0.051875 -0.006875 -0.0425 0.006875 -0.036875 -0.03625 0.03875 0.018125 0.011875 0.010625 0.005625 -0.010625 0.01375 -0.00875 0.018125 -0.059375 0.031875 -0.035625 -0.011875 -0.038125 -0.03625 -0.02125 -0.06625 0.005625 -0.026875 0.00625 0.010625 0.075 0.03375 0.044375 0.029375 0.05 0.076875 0.033125 0.020625 0.014375 0.01 0.0225 -0.0175 -0.011875 0.016875 0.003125 -0.041875 -0.0275 -0.010625 0.013125 0.023125 -0.01625 0.006875 -0.04 0.0125 0.02875 0.073125 -0.016875 -0.033125 0.00125 -0.03625 -0.02375 -0.008125 0.018125 -0.08125 -0.036875 0.006875 0.013125 -0.006875 -0.0175 0.020625 -0.01125 0.024375 0.085625 0.066875 0.038125 -0.03 0.05125 0.056875 0.000625 0.001875 -0.00375 0.03375 -0.03 -0.020625 -0.01 -0.05 -0.019375 -0.00875 -0.041875 -0.0075 0.028125 0.015 -0.0025 -0.026875 0.02 0.044375 0.020625 -0.011875 0.00625 0.01 -0.0275 0.021875 0.0175 -0.016875 -0.035625 -0.044375 -0.008125 -0.08 -0.01125 -0.02875 0.02875 0.041875 0.033125 0.020625 0.02875 0.0025 0.004375 0.051875 0.02 -0.0225 0.0125 -0.01375 0.011875 -0.019375 0.00125 0.0325 -0.019375 -0.021875 0.013125 -0.030625 -0.0125 -0.015625 0.004375 -0.00125 -0.0075 0.01375 0.02375 0.00875 -0.055 -0.000625 -0.015625 -0.04875 0.01375 -0.028125 0 -0.029375 -0.0175 -0.018125 -0.016875 0.004375 0.02125 0.018125 -0.02 0.0875 0.073125 0.069375 0.021875 0.059375 0.015625 0.046875 0.0675 0.0625 0.0125 0.005625 0.005 -0.015625 0.005 -0.058125 -0.029375 -0.025625 -0.0525 -0.0425 -0.048125 -0.035 -0.0225 0.05375 -0.003125 0.016875 -0.005 0.019375 0.05375 0.00875 0.02 -0.03125 0.02125 -0.04125 -0.066875 -0.028125 -0.024375 -0.041875 0.01 0.01375 0.03875 -0.015625 0.008125 -0.009375 0.069375 0 -0.0125 0.003125 0.09 0.053125 0.0275 -0.005 -0.0075 -0.045625 -0.02875 -0.000625 -0.023125 -0.07125 -0.0625 -0.0125 -0.04625 -0.01625 -0.028125 -0.03875 0.0125 -0.001875 -0.01125 -0.009375 -0.0075 -0.018125 0.039375 0.03125 0.021875 0.01375 -0.0125 -0.0175 0.021875 -0.011875 -0.044375 -0.025625 -0.0325 -0.054375 -0.04375 -0.005625 0.0075 0.025625 0.00875 -0.010625 0.0475 0.004375 -0.019375 -0.021875 0.035625 0.0075 -0.0025 -0.020625 0.00375 0.006875 0.00875 -0.015625 -0.029375 -0.056875 -0.015625 -0.005625 0.02375 0.0125 -0.005625 0.016875 0.07875 -0.015625 0.018125 0.02625 -0.031875 -0.0525 0.0025 0.00875 -0.000625 -0.025625 -0.008125 -0.02375 0.040625 -0.02875 0.039375 -0.03375 -0.02125 0.00375 -0.06 0.0575 0.00875 0.05 0.02 0.03 0.03375 0.0875 0.06 -0.005 -0.03 0.003125 -0.025625 0.0075 -0.046875 0.01625 -0.008125 -0.091875 -0.021875 -0.008125 0.013125 -0.045625 0.008125 0.00625 0.0175 0.01 0.003125 0.006875 -0.0675 0.005625 -0.0275 -0.0525 -0.038125 -0.02875 -0.0425 -0.033125 -0.05875 -0.02 -0.005625 -0.004375 0.001875 0.0175 0.02375 -0.001875 0.04 0.0325 0.091875 0.055625 0.03875 0.03 0.01125 -0.025 0.004375 -0.031875 -0.013125 -0.02125 -0.0225 0.0125 0.004375 -0.03875 -0.04375 -0.015 -0.04125 0.026875 -0.006875 0.000625 -0.04 0.014375 -0.0025 -0.01875 0.00875 -0.0275 -0.045625 -0.043125 -0.005 -0.029375 -0.039375 -0.069375 -0.008125 0.02375 -0.00875 0.004375 -0.0075 0.016875 -0.02875 0.024375 -0.00625 0.0425 0.03625 -0.00125 0.029375 0.016875 0.013125 0.005625 -0.006875 -0.0025 -0.015625 -0.0425 -0.03875 0.00125 -0.045625 -0.00875 0.04125 -0.015625 -0.04625 -0.009375 -0.01 0.01875 0.014375 -0.041875 -0.00875 -0.028125 0.008125 -0.001875 -0.03375 -0.095625 -0.015 -0.015 -0.033125 0.00875 -0.018125 -0.01375 -0.030625 -0.00625 0.025 0.035625 0.00375 0.044375 0.04625 0.024375 0.005625 0.046875 0.036875 -0.015625 -0.03 -0.00375 -0.054375 -0.020625 -0.023125 -0.00875 0.004375 -0.01 -0.011875 0.048125 0.02125 0.001875 -0.006875 -0.040625 -0.021875 -0.02125 0.035 -0.00875 -0.011875 0.04875 -0.018125 -0.01125 -0.05375 -0.00375 -0.02 -0.051875 0.00625 -0.031875 -0.053125 -0.0225 0.0075 0.009375 0.0525 0.034375 0.030625 0.038125 0.035 0.03625 0.05 -0.013125 0.018125 0.01375 0.013125 0.003125 0.0175 0.04 0.031875 -0.05625 -0.015625 -0.05 0.026875 -0.023125 0.015 -0.02875 -0.011875 -0.05875 0.000625 -0.02 0.02125 -0.04375 -0.01625 -0.01625 -0.096875 -0.0425 -0.025625 -0.04375 -0.016875 -0.0075 -0.014375 0.025625 -0.075625 -0.04375 0.0125 0.010625 0.03875 0.035 0.03125 0.04125 0.005 0.054375 0.039375 0.008125 -0.026875 0.0225 0.048125 -0.040625 -0.03 -0.030625 0.016875 -0.013125 -0.0425 -0.04375 -0.010625 -0.010625 0.006875 0.025 0.034375 0.0075 0.016875 0.07625 0.03 0.029375 -0.015625 0.024375 -0.0525 -0.025 -0.00875 0.00875 -0.023125 0.0125 -0.024375 0.005 0.008125 -0.019375 -0.035 0.0475 0.026875 0.026875 0.03375 -0.01125 0.05 0.0475 0.059375 0.02625 0.02125 -0.009375 -0.030625 0.008125 0.01375 -0.050625 -0.028125 -0.025 0.010625 0.01625 -0.039375 -0.01 -0.00875 0.0125 -0.021875 0.05875 0.028125 -0.02875 0.024375 0 -0.000625 0.025 -0.004375 -0.0175 0.025625 -0.015 -0.024375 -0.026875 -0.045625 -0.010625 0.018125 0.00875 -0.020625 -0.0025 0.0325 0.021875 0.015625 0.04125 0.013125 -0.010625 0.016875 -0.005 -0.001875 -0.006875 -0.036875 -0.03625 -0.03 -0.061875 -0.004375 -0.001875 -0.01125 -0.021875 -0.035625 -0.0225 0.026875 -0.005625 0.014375 0.056875 -0.06125 0.015 0.015 -0.0425 0.016875 -0.028125 -0.02875 -0.07875 -0.065 -0.003125 0.000625 -0.07375 -0.01375 -0.015 0.009375 0.0625 0.0275 0.02625 0.05 -0.01 0.02125 0.041875 0.01875 0.020625 0.02875 -0.005 -0.03 0.0075 -0.031875 -0.00875 -0.0525 0.001875 0.031875 -0.006875 -0.00625 0.015 -0.001875 0.00625 -0.003125 0.031875 0.0125 0.001875 -0.019375 -0.019375 -0.039375 -0.013125 0.023125 0.05125 -0.045625 -0.045625 -0.024375 0.029375 -0.026875 0.0225 0.005625 0.0125 0.034375 0.04375 0.01125 0.011875 0.01875 0.038125 0.0225 0.038125 0.01125 0.055625 0.04625 0.01125 0.028125 0.054375 0 0.011875 -0.049375 0.006875 -0.026875 0 -0.0325 0.008125 0.00625 0.025625 0.030625 -0.01 0.001875 0.01625 -0.041875 -0.011875 0.00625 -0.015625 -0.004375 -0.051875 -0.02125 -0.0475 -0.010625 -0.024375 -0.009375 0.005 0.000625 -0.040625 0.00875 0.0425 0.041875 0.0425 0.058125 0.005 0.06625 0.04625 0.023125 0.02 -0.03375 0.01625 0.08875 0.005 0.02375 -0.0425 0.006875 -0.02375 -0.03875 0.008125 0.021875 -0.009375 -0.003125 0.05625 -0.00125 0.01875 -0.041875 -0.018125 -0.015 -0.0325 -0.006875 0.0125 -0.04625 -0.003125 -0.01375 0.018125 -0.009375 -0.008125 -0.014375 0.06 0.061875 0.02375 -0.000625 0.04125 0.056875 0.04125 0.08125 0.069375 -0.01875 -0.01625 0.01625 -0.02375 0.01625 0.0475 -0.02625 0.00875 -0.06625 -0.033125 0.02625 0.01375 0.01625 0.03375 0.04 0.00375 -0.003125 0.06375 -0.005625 0.02 0.0125 0.014375 0.01875 0.023125 -0.071875 -0.05625 -0.014375 -0.056875 -0.065625 -0.01625 -0.025625 -0.05875 -0.0125 0.008125 -0.003125 -0.00875 -0.0075 0.0175 0.029375 0.04875 0.058125 0.085 0.01375 0.041875 -0.04625 -0.015625 0.028125 0.008125 0.0075 -0.035625 0.008125 -0.0325 -0.0175 -0.0275 -0.016875 -0.015 -0.0325 0.030625 0.014375 -0.013125 0.001875 0.02125 0.055625 0.024375 -0.026875 -0.025 0.0225 -0.05375 -0.036875 -0.049375 0.033125 -0.038125 -0.01125 -0.03625 0.04 -0.004375 0.019375 0.061875 0.02875 0.03375 0.055 0.035625 0.044375 0.011875 0.058125 0.0325 -0.005 0.0025 0.011875 0.078125 -0.065 -0.0325 -0.016875 -0.01 -0.02625 -0.000625 0.013125 -0.02625 0.014375 0.035625 -0.01 0.01125 -0.004375 0.023125 -0.02375 -0.005625 -0.004375 -0.00875 0.02625 -0.004375 0 -0.0225 -0.018125 -0.019375 -0.001875 -0.0375 -0.028125 0.03375 0.019375 0.058125 0.044375 0.01875 0.08375 0.068125 0.024375 0.029375 0.018125 -0.03625 0.013125 -0.041875 -0.076875 -0.015625 0.003125 -0.008125 -0.014375 -0.03375 -0.001875 -0.00625 0.001875 0.0125 0.010625 0.009375 0.02 0.013125 0.02375 0.049375 0.039375 -0.02625 -0.06625 0.013125 -0.01875 -0.038125 -0.0425 -0.045625 -0.003125 -0.05375 -0.005 -0.010625 -0.026875 0.0175 0.02125 0.035 0.026875 -0.005 0.046875 -0.00125 0.016875 0.010625 0.015 -0.034375 0.024375 -0.018125 -0.0425 -0.041875 -0.015625 -0.05 -0.03125 -0.05 0.01 -0.008125 -0.00375 0.033125 0.008125 -0.01625 -0.03625 0.0175 0.00125 -0.059375 -0.013125 -0.008125 0.00625 -0.0625 -0.0375 -0.03125 -0.0175 0.01125 -0.0375 0.019375 0.0475 -0.0675 -0.0025 0.00125 0.051875 0.05375 0.081875 0.015 0.010625 0.021875 0.035625 0.055 -0.01375 0.029375 -0.001875 -0.041875 0.025 0.02 -0.01125 -0.035 -0.028125 -0.000625 -0.001875 -0.03875 0.025625 0.005625 -0.01625 -0.00875 -0.001875 0.02375 -0.02625 0.00125 -0.01375 -0.025625 0.01875 0.00875 0.003125 0.00375 -0.079375 -0.040625 0.01375 -0.035625 -0.01375 0.00875 0.051875 0.011875 0.046875 0.044375 0.019375 0.031875 -0.01625 0.035625 -0.030625 -0.049375 0.075625 0.04 -0.02875 -0.0075 -0.023125 -0.043125 -0.039375 0.0225 0.024375 -0.02 0.0225 0.00875 -0.0025 -0.009375 0.001875 0.034375 0.06625 -0.006875 -0.028125 0.05375 -0.0125 -0.036875 -0.0325 -0.035625 -0.015 -0.01875 -0.00375 0.03 -0.01 0.0125 -0.0175 0.005 0.008125 0.025625 0.103125 0.0075 -0.00625 0.03125 -0.013125 0.043125 -0.02125 0.0525 0.000625 -0.028125 -0.01625 0.000625 0.01625 -0.048125 -0.0375 -0.01625 -0.02 -0.0425 -0.02625 0.009375 -0.0025 -0.056875 0.001875 0.0425 0.0375 -0.02125 0.005625 0.01125 -0.05375 -0.04 -0.0725 -0.021875 -0.05375 -0.006875 -0.024375 -0.011875 -0.0025 0.043125 0.03875 0.00125 0.0175 0.023125 0.0525 0.055625 -0.02375 0.05125 -0.0025 0.01625 0.015 0.040625 0.04375 0.02 -0.0225 -0.06 -0.0675 0.0025 -0.00875 0.001875 0.0075 0.019375 -0.0375 0.030625 -0.010625 0.055625 0.00625 -0.00625 0.034375 -0.0575 0.030625 0.02625 -0.0075 -0.026875 -0.07 -0.036875 -0.03875 -0.00375 0.000625 0.04375 0.003125 -0.0125 0.015625 0.051875 0.03375 0.03875 -0.00125 0.04375 0.084375 0.02875 0.010625 0.041875 0.006875 0.02875 -0.005625 0.0425 0.02375 -0.048125 0.04125 -0.010625 -0.04125 -0.031875 0.010625 0.008125 0.00875 -0.041875 0.055 0.015 0.02625 -0.03125 0.018125 -0.005 -0.015625 -0.025 -0.011875 -0.028125 -0.021875 -0.065 -0.018125 -0.05125 -0.02 0.01875 -0.053125 0.008125 -0.0075 0.008125 0.085 0.02875 0.0575 0.043125 0.033125 0.040625 0.02125 0.01875 -0.001875 0.000625 0.06125 0.015625 -0.02875 -0.02375 0.0025 0.01 -0.038125 -0.01125 -0.011875 0.05125 -0.00875 0.004375 0.034375 0.045 -0.02375 -0.00375 0.009375 -0.013125 0.021875 0.025 -0.0125 -0.024375 0.0125 -0.03375 -0.006875 -0.01125 -0.059375 0.000625 0.005 -0.029375 -0.001875 0.0325 0.020625 0.040625 -0.023125 0.019375 0.035 0.021875 0.048125 0.063125 0.041875 0.019375 0.005625 0.02 -0.038125 -0.02125 -0.010625 0.013125 -0.070625 0.011875 -0.01 0.023125 -0.01875 0.03125 0.039375 0.043125 0.023125 -0.009375 0.010625 -0.043125 -0.0425 0.018125 -0.04375 -0.001875 -0.005 -0.036875 -0.0175 -0.031875 0 0.0875 -0.0575 -0.02375 0.0475 0.040625 0.02 0.033125 0.070625 -0.018125 0.061875 -0.008125 -0.005 -0.03375 0.000625 0.000625 0.004375 -0.078125 0.040625 0.00375 -0.006875 -0.015625 -0.00375 -0.0175 -0.02125 0.015625 -0.01625 -0.001875 -0.035 -0.031875 -0.02 0.01875 -0.02375 0.0075 -0.0175 -0.026875 -0.05375 -0.02375 -0.004375 0.005 0.006875 -0.000625 -0.01625 -0.050625 0.019375 0.008125 -0.00375 -0.003125 -0.016875 0.084375 0.07625 0.00125 0.03 0.050625 0.01875 -0.024375 0.03375 -0.004375 -0.009375 -0.02875 0.031875 -0.021875 -0.06875 -0.02125 -0.07375 -0.024375 0.04125 0.01125 -0.016875 -0.045625 0.02375 0.0225 0.00125 0.055625 0.006875 -0.013125 -0.031875 -0.02625 -0.031875 -0.04 -0.075 -0.001875 -0.036875 -0.004375 -0.001875 0.0125 -0.006875 0.010625 0.05125 0.02 0.02625 -0.00625 0.068125 0.0425 -0.046875 0.05625 0.015 0.01375 0.02875 0.021875 -0.006875 -0.040625 -0.039375 -0.045625 -0.0375 0.01875 -0.003125 0.021875 -0.02125 -0.004375 -0.0025 0.02125 0.011875 -0.018125 -0.02375 -0.0325 0.045625 -0.0075 -0.009375 -0.05 -0.008125 -0.03125 -0.0525 -0.08125 -0.0575 0.04375 0.013125 -0.029375 0.011875 0.010625 0.005625 0.080625 0.0175 -0.005 0.03 0.08625 0.000625 0.0725 -0.035625 -0.02375 -0.020625 -0.034375 0.033125 0.0475 0.039375 -0.016875 -0.01 -0.0275 -0.00625 0.005 -0.00625 -0.025625 0.02125 -0.03 -0.00625 -0.02875 -0.015 0.01625 -0.01 -0.073125 -0.004375 -0.011875 -0.024375 -0.029375 0.005625 -0.028125 0.031875 -0.00625 0.0175 0.06625 0.018125 -0.01375 0.065 0.03 0.02625 0.04625 0.0475 0.04625 0.04125 0.010625 0.04875 0.00125 -0.01 -0.071875 -0.036875 -0.00875 -0.00875 -0.04625 -0.009375 0.01875 0.015 -0.0275 0.035 0.0075 0.011875 0.03125 -0.015625 -0.005 -0.000625 -0.030625 0.048125 -0.0275 0.03875 -0.035 -0.08625 -0.016875 -0.005625 -0.049375 -0.026875 0.023125 0.0375 0.001875 0.019375 0.040625 0.064375 0.041875 0.033125 0.07125 0.0125 0.001875 0.009375 0.034375 +0.0225 0.011875 0.021875 -0.0125 0.024375 0.018125 0.04375 -0.021875 -0.020625 0.0025 0.014375 0.000625 -0.010625 -0.0075 0.005625 -0.008125 -0.025 0.0325 0.03 -0.011875 -0.023125 -0.0075 -0.01375 -0.019375 -0.0025 -0.00875 -0.06125 -0.03625 0.034375 -0.01375 0.01125 -0.02375 -0.0125 -0.034375 0.015 0.045625 0.040625 0.00875 0.059375 -0.01125 0.05125 0.03125 0.010625 -0.0025 0.0325 0.0025 -0.04 0.038125 0.013125 -0.035625 -0.004375 -0.028125 -0.046875 -0.030625 -0.04625 -0.06875 0.030625 -0.000625 0.00625 -0.00625 -0.061875 0.01375 0.034375 -0.0425 -0.031875 0.049375 -0.041875 0.025 0.018125 -0.034375 0.0225 -0.04625 -0.013125 0.000625 -0.023125 -0.033125 -0.023125 0.00125 -0.019375 -0.005625 0.026875 0.024375 0.0025 0.005625 -0.00625 0.014375 0.01625 0.04125 0.068125 0.029375 -0.03125 -0.015625 -0.02125 0 -0.013125 0.010625 0.000625 -0.024375 0 0.000625 -0.014375 0.0125 -0.04625 -0.015 0.005 -0.038125 -0.013125 0.01875 -0.054375 -0.015625 -0.008125 -0.0425 -0.01 -0.00625 -0.021875 0.015 -0.02625 0.0075 0.01375 0.03875 -0.00375 -0.02625 -0.03125 0.053125 0.068125 0.0425 0.04375 0.046875 -0.01375 -0.00125 0.015625 0.009375 0.00125 0.064375 0.018125 -0.025625 0.05375 -0.0425 -0.07 0.02 -0.028125 -0.00125 -0.005625 -0.005 0.014375 0.000625 -0.020625 0.018125 0.035 0.046875 0.058125 -0.008125 0.023125 -0.019375 -0.018125 0.005 0.011875 -0.008125 -0.008125 0.01125 0.03125 0.001875 0.03875 0.01125 0.044375 0.02625 0.043125 0.066875 0.03875 0.031875 -0.015625 0.025625 -0.021875 -0.01625 0.020625 -0.006875 0.030625 -0.036875 -0.0025 0.026875 -0.018125 0.01375 -0.010625 -0.03125 -0.000625 0.0075 0.06875 0.01875 -0.005 0.04375 0.005 -0.001875 -0.01375 0.019375 -0.018125 -0.020625 0.034375 -0.00375 0.0125 -0.04375 0.024375 0.030625 0.0075 -0.013125 -0.006875 -0.0125 0.03125 0.049375 0.03125 0.05125 0.025625 0.0425 -0.021875 0.02625 0.010625 -0.00375 -0.030625 -0.02625 0.015625 -0.08375 -0.0375 -0.02625 0.054375 -0.023125 0.01125 0.009375 -0.020625 0.03125 -0.00375 -0.00875 0.01 -0.005 0.006875 0.019375 0.02875 0.01 -0.023125 -0.01625 -0.045 -0.043125 0.03375 -0.01 -0.02125 -0.040625 0.0275 0.01875 0.025625 0.02 -0.01 0.031875 -0.003125 -0.0175 -0.0025 0.046875 -0.04125 -0.026875 -0.008125 0.01 0.0175 -0.046875 0.01125 0.02125 -0.036875 -0.000625 -0.030625 -0.010625 0.045625 -0.00125 0.031875 0.0175 -0.0325 -0.0125 -0.02375 0.00125 -0.018125 -0.0075 -0.0225 -0.061875 -0.0375 -0.02875 -0.05625 -0.013125 -0.02 -0.046875 0.025625 0.028125 -0.0375 0.015625 -0.01625 0.04375 0.05125 0.0325 0.01875 0.004375 0.025 0.02875 0.0375 0.00375 -0.02875 0.019375 -0.065 -0.043125 -0.0075 0.003125 -0.026875 -0.009375 0.02375 0.045 -0.011875 0.04375 0.049375 -0.020625 -0.00375 -0.04875 -0.008125 -0.03125 -0.00375 0.005625 -0.0175 -0.0475 -0.03625 -0.021875 -0.040625 -0.024375 -0.05375 0.015 0.039375 -0.013125 0.03 0 0.03625 -0.001875 0.03125 0.031875 0.048125 0.03125 0.049375 -0.021875 -0.005 0.0325 0.03375 0.0325 0.00875 0.001875 -0.0475 -0.01125 -0.056875 -0.014375 -0.00875 -0.03 0.01375 0.041875 0.0175 0.005 0.005625 -0.024375 -0.0025 -0.02375 -0.01875 -0.054375 -0.048125 0.001875 0.003125 0.000625 -0.0325 -0.03 0.014375 0.015625 0 0.0025 -0.033125 -0.00625 0.048125 0.05125 -0.000625 0.055625 0.065625 0.023125 0.014375 0.008125 0.015 -0.0025 -0.05 -0.05625 -0.000625 -0.0175 -0.00125 -0.011875 -0.010625 0.00875 -0.01375 0.010625 -0.0075 0.039375 -0.03375 0.02 -0.01625 -0.014375 -0.008125 0.00125 -0.02875 0.01 -0.01 -0.04125 -0.01625 -0.009375 0.0125 -0.055625 -0.016875 -0.01375 0.031875 -0.01125 -0.003125 0.041875 0.006875 0.013125 0.00625 -0.004375 -0.0375 0.028125 -0.01125 -0.039375 -0.02625 0.006875 -0.06125 -0.0075 0.02625 -0.02 -0.00125 0.0325 0.00125 -0.0075 -0.005 -0.0025 0.005 0.045625 0.035 0.013125 -0.00375 -0.04125 0.0075 -0.020625 -0.031875 0.0225 0.001875 0.0425 -0.0425 0.000625 -0.02375 0.00625 0.0025 0.026875 0.02375 -0.0225 0.029375 0.02 -0.00125 0.04125 0.066875 0.050625 -0.005625 -0.020625 -0.034375 0.0475 -0.05 -0.074375 0.021875 -0.031875 -0.015 -0.06875 0.0225 -0.038125 -0.024375 -0.02625 0.0325 0.000625 -0.02 0.01375 -0.0025 0.011875 0.0025 -0.01875 0.000625 -0.033125 0.015 0.04125 -0.071875 -0.029375 -0.063125 0.025625 0.03125 -0.009375 0.005625 -0.018125 0.026875 0.033125 0.003125 0.000625 0.0025 0.025625 -0.033125 0.018125 -0.008125 0.00375 -0.0375 -0.040625 -0.00625 0.03375 0.009375 -0.008125 -0.01 0.001875 0.00375 -0.07 0.008125 -0.0325 0.033125 -0.006875 -0.025 0.00375 -0.018125 -0.0625 -0.05875 0.025 -0.06375 -0.020625 -0.005625 -0.019375 -0.01 -0.0225 -0.038125 -0.00125 -0.016875 0.024375 0.00875 -0.01 -0.021875 0.038125 0.0475 0.00375 -0.004375 -0.00375 -0.00375 0.01125 0.0075 0.019375 0.021875 -0.00125 0.009375 -0.0075 -0.043125 -0.029375 0.029375 0.024375 -0.0225 0.006875 0.0125 0.020625 -0.04125 0.02625 0.006875 -0.014375 -0.004375 0.020625 -0.039375 -0.019375 -0.043125 -0.05125 0.0525 0.004375 -0.014375 -0.02125 0.02 -0.0225 -0.02375 -0.006875 0.05125 -0.03 0.01125 0.003125 0.025 0.09875 0.00375 0.044375 -0.01375 -0.02375 0.0775 -0.000625 -0.025625 -0.006875 0.0175 -0.02875 -0.02 -0.008125 -0.0275 -0.061875 -0.019375 -0.025625 0.013125 -0.039375 -0.0025 0.016875 0.026875 0.014375 0.021875 0.018125 -0.011875 -0.00625 0.03875 -0.0325 -0.079375 -0.01125 0.013125 -0.040625 -0.025625 0.021875 -0.015 0.026875 0.01 0.0225 0.04125 -0.00125 0.0275 -0.01125 0.006875 0.069375 -0.035 0.04375 0.035 0.0075 0.01125 -0.04875 0.064375 -0.04125 0.013125 -0.02625 0.019375 -0.04125 -0.045 0.02625 -0.000625 0.0325 0.004375 0.001875 0.02375 -0.020625 0.021875 -0.02125 0.004375 -0.0075 0.005625 -0.00875 -0.0475 -0.010625 -0.068125 0.01625 -0.025 0.023125 0.026875 0.025625 0.021875 -0.0025 -0.01 0.035625 -0.026875 0.018125 0.011875 0.020625 0.02625 0.03125 -0.054375 0.03875 0.02125 -0.02375 -0.015625 -0.009375 0.02625 0.024375 -0.013125 -0.054375 0.01375 -0.0175 -0.0025 0.010625 0.028125 0.006875 -0.020625 0.02 0.03375 -0.01375 0.025 -0.004375 -0.00125 -0.02375 -0.04625 -0.035 0.06125 0.03125 -0.005625 0.004375 -0.005 0.01875 -0.005625 0.001875 -0.0275 0.021875 0.023125 0.050625 0.05625 0.025 0.021875 -0.038125 0.01625 -0.01 0.01375 -0.054375 -0.016875 0.010625 -0.030625 0.000625 0.010625 0.035625 -0.024375 -0.0225 0.010625 -0.01 0.05125 0.043125 -0.055 0.0175 0.005625 -0.015 -0.02125 -0.018125 -0.018125 -0.018125 0.018125 -0.01875 -0.03 -0.025625 -0.019375 -0.03875 0.02875 0.03625 0.050625 -0.006875 0.0125 -0.013125 0.034375 0.051875 0.03 -0.044375 0.00625 0.030625 0.021875 0.0275 -0.0075 -0.04875 -0.0075 -0.02375 0.004375 -0.01375 -0.041875 -0.0125 -0.005625 -0.03375 -0.008125 -0.00375 -0.02125 0.00125 0.019375 -0.05125 0.02375 -0.00875 -0.0225 -0.054375 0.0025 0.038125 0.000625 -0.055625 -0.024375 0.01125 0.01125 0.01125 -0.01875 0.0275 0.010625 0.005625 0.001875 -0.015 0.045625 0.00625 0.038125 -0.016875 0.0075 0.045625 0.003125 -0.045 0.006875 -0.015625 0.03 -0.031875 -0.00375 0.018125 -0.029375 -0.020625 -0.036875 -0.000625 -0.01875 0.024375 -0.0025 0.001875 0 -0.014375 -0.019375 0.0025 -0.01875 -0.00625 0.000625 -0.028125 -0.00125 0.015 -0.024375 0.0075 -0.02 0.035625 -0.001875 -0.00875 0 0.01125 0.006875 0.019375 0.07125 -0.00125 -0.01125 -0.019375 -0.0125 0.044375 -0.00125 0.01375 -0.00875 -0.005625 -0.03875 -0.030625 -0.01375 -0.023125 0.02625 -0.015625 0.019375 -0.026875 0.04875 0 0.033125 -0.0275 -0.041875 -0.0325 0.0525 -0.064375 -0.029375 -0.07625 -0.029375 -0.015625 -0.02625 0.03375 -0.001875 0.003125 -0.02625 0.005 -0.049375 0.04375 0.031875 0.0525 0.009375 0.025625 0.0175 0.01125 -0.01625 0.04 0.00375 -0.025625 -0.03125 -0.006875 -0.028125 0.014375 -0.04625 0.019375 -0.024375 -0.031875 0.019375 0.046875 0.01 -0.05625 -0.00125 0.021875 -0.05125 0.015 0.0175 -0.010625 0.01625 0.0325 -0.014375 0.008125 -0.000625 -0.03125 -0.02125 -0.005 -0.02 0.040625 -0.008125 0.01125 -0.014375 0.065625 0.039375 0.05125 0.009375 -0.019375 -0.005625 0.035625 0.028125 0.035625 0.00625 0.02625 0.0075 0.006875 -0.015625 -0.056875 -0.058125 0.00375 -0.051875 -0.0075 0.02 0.038125 -0.023125 -0.004375 -0.031875 0.024375 0.005 0.0075 0.02375 -0.0425 -0.02625 -0.02 0.00125 -0.00875 0.043125 -0.090625 -0.005625 -0.021875 0.013125 -0.015 -0.00375 -0.00125 0.06 0.01375 0.010625 -0.006875 0.00875 0.04 0.01375 -0.018125 0.01875 0.041875 -0.038125 -0.01375 0.0025 -0.01 -0.00125 -0.035 -0.010625 -0.01875 0.02625 -0.005625 -0.019375 -0.051875 0.004375 -0.04125 -0.010625 0.005 -0.000625 0.01875 -0.03 -0.034375 -0.00375 -0.049375 -0.038125 0.005625 0.035625 0.029375 0.0225 -0.0375 -0.040625 0.02625 0.011875 0.003125 0.025 0.059375 -0.01 0.069375 0.035 0.021875 0.021875 0.00875 -0.0325 -0.02875 0.025625 0.010625 0.0125 -0.03625 -0.011875 -0.016875 0.02625 0.009375 0.006875 0.013125 0.004375 -0.0275 0.011875 0.014375 -0.011875 -0.01125 0.06125 -0.006875 0.01 0.0175 0.01125 -0.004375 -0.015 -0.023125 -0.04875 -0.01125 -0.009375 -0.01625 0.01625 -0.02625 0.02125 0.006875 0.00375 0.004375 -0.0175 0.03625 0.033125 -0.016875 0.03875 0.001875 0.076875 -0.04125 -0.000625 -0.00125 -0.04 -0.00875 -0.06125 -0.015625 -0.056875 -0.01 -0.040625 -0.03125 -0.04125 0.051875 0.003125 -0.02125 0.02875 0.028125 0.066875 0.01 -0.020625 0.08 -0.00125 -0.039375 0.0425 0.01 0.005 -0.023125 -0.0325 0.03 0.010625 0.000625 0.04 0.0225 0.013125 0.014375 0.05875 0.009375 0.00625 -0.02625 -0.039375 -0.00375 -0.006875 -0.000625 0.07125 -0.07 0 0.010625 -0.004375 -0.050625 0.024375 -0.02125 0.01375 0.041875 0.000625 0.019375 -0.038125 0.030625 -0.013125 -0.021875 -0.001875 0.021875 0.024375 -0.02375 -0.0075 -0.015 -0.00875 0.020625 -0.001875 -0.040625 -0.009375 0.003125 0.0025 0.034375 -0.005625 0.05125 0.038125 0.013125 0.025625 0.015 -0.02875 0.02125 0.0525 -0.02875 0.0225 0.0125 -0.031875 -0.02 -0.06875 -0.01125 0.01125 -0.04375 0.016875 0.009375 0.005 -0.018125 -0.050625 -0.01625 -0.035625 0.005 0.01125 0.030625 0.00375 0.015625 -0.005625 -0.0475 0.00625 -0.008125 -0.041875 -0.00625 -0.03125 -0.06125 -0.018125 0.053125 0.021875 0.024375 0.016875 -0.011875 0.020625 0.034375 -0.016875 0.030625 -0.004375 -0.00875 -0.07375 0.000625 0.026875 0 -0.00875 0.000625 0.004375 -0.00875 0.0175 0.038125 -0.01125 -0.005 0.063125 0.02375 -0.0175 -0.025625 0.00125 0.018125 0.055625 -0.035625 -0.030625 -0.021875 -0.01125 -0.02875 -0.0175 -0.00875 0.0025 -0.049375 0.015625 0.021875 -0.01875 -0.00375 -0.016875 0.0075 0.028125 0.018125 0.026875 0.00375 -0.01375 0.03 0.0625 0.016875 0 -0.016875 0.01125 -0.019375 -0.01375 0.005 -0.024375 -0.010625 -0.058125 -0.001875 -0.00625 -0.045 -0.01375 -0.009375 -0.0175 -0.028125 0.04625 -0.03625 0.00125 0 0.053125 -0.003125 -0.043125 -0.01375 0.006875 -0.020625 -0.014375 0.0225 0.035 -0.01625 -0.00375 -0.003125 -0.004375 0.045 0.018125 0.014375 0.009375 0.043125 0.0475 -0.001875 0.049375 0.016875 0.013125 -0.010625 -0.0275 -0.053125 -0.028125 -0.039375 -0.01 0.014375 -0.03 -0.025625 -0.016875 0.003125 0.015 -0.02125 -0.026875 0.001875 -0.066875 0.016875 -0.03375 0.024375 -0.059375 -0.025 0.033125 0.006875 -0.05125 0.010625 0.0125 -0.030625 0.001875 -0.02375 0.03875 -0.028125 -0.024375 0.0225 0.054375 0.043125 0.06625 0.0025 0.03375 -0.01125 0.016875 -0.016875 -0.02375 -0.000625 -0.015625 -0.035 -0.0425 -0.0675 0.053125 -0.024375 -0.003125 0.02125 -0.00125 0.003125 0.02625 0.040625 -0.00625 0.02625 -0.0025 0.0275 0.020625 -0.024375 -0.021875 -0.00875 0.0025 -0.035 0.001875 -0.03 -0.0125 0.015 -0.028125 -0.0025 -0.004375 -0.0175 0.030625 0.07375 0.015 -0.010625 0.015625 0.006875 0.06625 0.030625 0.000625 0.005625 0.008125 -0.02875 -0.018125 0.00375 -0.02375 -0.028125 -0.01125 0.00625 -0.010625 -0.003125 -0.018125 0.0175 -0.04125 0.01 0.01875 0.004375 0.01 -0.004375 -0.029375 -0.02125 -0.009375 0.001875 -0.0275 0.005625 -0.006875 -0.025 -0.011875 -0.04375 -0.00625 -0.009375 0.026875 0.05125 -0.03375 -0.015625 0.04125 0.000625 0.025625 0.0175 0.04375 0.01 -0.036875 -0.003125 -0.01125 -0.016875 0.0075 -0.014375 0.009375 -0.050625 0.005 -0.00875 0.01875 0.00875 0.04375 -0.015 -0.009375 0.03 0.01125 0.025 -0.01125 -0.029375 0.013125 0.00125 0.018125 -0.048125 0.015 -0.01 -0.038125 -0.023125 -0.00625 -0.023125 0.005625 0.01375 -0.00125 -0.00375 0.013125 -0.00375 0.02 0.0125 0.079375 0.001875 0.0275 0.035 -0.005 -0.049375 -0.025625 0.005625 -0.0075 -0.051875 -0.009375 -0.015625 0.030625 0.000625 0.016875 -0.01 -0.038125 -0.0175 -0.034375 0.004375 -0.035625 -0.05 -0.019375 -0.04625 -0.06125 -0.001875 -0.01125 0.0175 0.0025 -0.036875 -0.026875 -0.03375 -0.004375 0.016875 -0.014375 -0.019375 -0.001875 0.009375 0.016875 0.019375 0.015625 0.06875 0.045 0.02375 0.029375 0.030625 0.02 0.01125 0 0.031875 -0.038125 -0.00375 -0.024375 0.005 -0.0225 -0.051875 -0.025 -0.01875 0.005 0.01625 0.049375 0.01 0.01375 0.01875 0.008125 0.0025 0.041875 -0.001875 -0.00875 -0.004375 -0.01125 -0.005 0.016875 -0.023125 0.005625 -0.025 0.04125 -0.004375 0.030625 -0.010625 0.04125 0.02 0.038125 -0.00375 -0.00625 0.050625 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_10ms.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_10ms.hrd new file mode 100644 index 0000000..fde00a8 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_10ms.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 10 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676034992 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-1.78375 1.67875 3.491875 2.2625 2.716875 4.778125 1.53125 1.766875 0.92375 4.103125 4.790625 3.553125 0.045625 3.280625 1.55 2.931875 2.465625 3.85625 2.998125 3.73875 5.808125 7.0875 0.26875 2.946875 1.42375 2.961875 3.335625 3.395 1.896875 2.141875 2.52125 2.6825 4.55125 1.386875 4.97125 1.6975 4.874375 4.68375 3.233125 2.8775 5.718125 6.646875 2.256875 3.776875 1.665 7.248125 5.89625 2.3525 3.474375 2.38125 0.98125 5.02875 3.14125 3.375625 3.496875 0.740625 3.579375 4.82375 3.76125 4.64625 4.793125 4.821875 2.760625 3.0975 6.918125 4.671875 1.3375 2.93125 5.340625 4.54875 2.834375 3.473125 3.583125 2.57625 3.706875 4.575625 0.535625 2.09125 3.213125 4.195625 5.343125 0.171875 6.6925 3.438125 5.00625 1.2175 2.255625 2.754375 3.900625 3.149375 3.8875 2.4425 4.514375 2.280625 3.605625 2.03125 3.046875 4.5525 3.0375 5.39125 0.96625 2.384375 2.889375 1.620625 2.61375 1.9875 5.153125 3.914375 6.71625 3.28625 2.834375 1.191875 5.075 2.344375 2.115 3.934375 2.98625 4.579375 1.983125 2.520625 3.175625 1.895 2.391875 3.414375 -0.004375 1.36 0.619375 2.0975 2.356875 3.286875 1.976875 3.060625 1.9975 -0.650625 2.52625 2.06125 1.383125 3.286875 0.625 3.435 3.80125 2.81875 2.784375 -0.10125 3.93125 3.1775 1.8675 2.566875 1.334375 2.799375 3.7575 2.225 5.15875 4.21125 4.725625 1.4875 4.313125 5.23125 3.178125 1.623125 4.299375 5.091875 -0.35125 3.573125 4.83875 -0.039375 3.96375 4.843125 3.28125 1.665625 4.891875 1.69125 0.975625 0.495 0.898125 0.10625 0.96 1.494375 0.688125 1.490625 0.794375 3.59625 1.058125 1.6675 0.73 -0.4525 2.245625 2.65 5.45125 3.263125 2.731875 -1.12875 0.93 0.686875 0.99875 0.97 -0.1075 -1.40125 7.566875 4.72 4.376875 -0.1925 1.555 1.398125 1.70375 3.353125 2.936875 2.21875 -2.854375 2.739375 -0.96 1.4225 2.1175 0.073125 0.84 1.0875 -2.26 1.721875 2.18125 1.305 3.094375 2.37 2.526875 0.235 0.411875 0.6875 3.779375 4.8325 5.5475 2.585 1.4425 3.13 4.255625 1.5775 -2.084375 3.6525 2.545625 2.2975 1.339375 1.951875 2.325625 1.6325 2.18 3.790625 5.10375 1.695 1.86375 2.056875 3.256875 2.435625 2.17375 0.755625 1.560625 0.63125 -2.05 1.055 3.264375 0.68875 2.10875 1.87 -0.12125 2.6375 1.299375 5.641875 3.181875 5.603125 4.22375 1.265625 0.493125 1.14125 1.975 -0.4325 1.90125 1.235625 4.6025 2.044375 0.405625 3.765 1.45375 3.939375 1.04625 1.2925 1.799375 0.64875 0.649375 1.669375 1.995625 -1.681875 5.181875 1.1775 2.771875 3.948125 1.1325 -1.11 0.2275 0.6025 5.711875 1.551875 1.35125 5.724375 -0.603125 1.925625 2.06375 2.343125 2.008125 1.855625 3.98 3.163125 1.4625 0.6125 0.789375 0.30625 1.27625 4.089375 2.928125 3.441875 1.18875 -3.635 0.763125 3.320625 5.1475 0.030625 2.870625 2.683125 -3.520625 0.665625 -0.331875 2.563125 -0.47625 0.060625 -0.4875 -0.0575 3.100625 3.22625 4.775625 1.0625 1.214375 2.755 3.565625 0.3375 1.171875 5.678125 2.0575 2.023125 0.26 -0.4125 1.37625 5.005625 2.251875 -0.074375 4.660625 0.99125 1.055625 -1.740625 2.574375 2.033125 2.045625 2.02875 2.67 0.115625 1.09 0.433125 -0.178125 -0.033125 2.423125 0.605625 2.96375 1.299375 2.238125 0.15 -0.0875 1.075625 -0.495625 0.9625 2.258125 0.218125 -0.229375 4.233125 1.15375 3.148125 1.8425 3.17125 -1.291875 3.664375 1.256875 1.746875 2.705625 2.595 -0.380625 -1.20875 2.28375 2.268125 -0.133125 1.705625 2.0325 1.9025 -0.585625 2.1575 1.795625 0.3875 -0.220625 0.751875 -0.308125 -0.10875 5.1225 1.6 2.740625 1.795 1.66375 -2.813125 0.4425 2.14875 0.32 -0.74625 1.8875 -1.266875 2.481875 1.230625 3.2075 4.61625 0.22375 1.263125 0.925 1.71 -1.21125 2.32375 -0.61875 0.1575 3.1925 1.595625 1.94125 0.561875 0.481875 1.859375 -1.38625 4.99625 -0.099375 0.105625 0.729375 0.95875 0.685 -0.6775 -0.275625 -0.220625 1.105 1.56625 0.700625 4.85125 3.71875 1.45625 0.79125 1.025 -0.308125 1.76 -0.149375 1.6875 -1.295625 1.28875 -0.9 1.479375 -1.101875 1.0125 2.125625 0.534375 1.92875 -0.335625 0.024375 3.539375 2.49875 -0.356875 -1.24375 0.304375 0.124375 1.69625 1.461875 1.283125 1.85375 -2.881875 2.29 -0.91875 4.16 5.56875 1.193125 0.19125 1.40875 -2.3275 -0.82125 3.53625 0.591875 0.60625 -0.88 0.413125 0.516875 -2.0825 3.53625 3.945625 1.99625 -0.049375 1.978125 0.230625 -3.6375 5.15375 0.898125 -0.0225 -0.215 -0.148125 0.42 -0.013125 1.72625 3.50875 2.8025 2.200625 0.168125 0.088125 1.095 0.89875 1.16625 1.329375 2.29 1.948125 1.53875 -0.359375 2.32125 1.515625 -0.025625 1.32875 -0.681875 3.56625 -0.1725 2.43625 -1.905 1.18875 3.59125 3.60375 0.9475 -0.683125 -1.670625 -0.256875 2.44 1.908125 4.234375 0.504375 -1.313125 -0.135 2.365 5.1575 0.34 1.341875 3.0625 1.21375 1.98875 2.2425 -0.33625 3.0875 3.503125 -2.31625 -0.529375 0.496875 0.848125 0.771875 2.718125 -1.464375 1.756875 2.650625 2.643125 1.88625 -0.343125 0.846875 -0.404375 2.24 2.633125 -0.24 -1.414375 3.86625 0.3525 2.52875 -3.20375 -0.785625 0.721875 0.764375 -1.01 2.38875 3.52125 -1.5125 2.48125 -1.028125 3.18375 0.711875 1.878125 0.874375 3.474375 1.29625 -1.691875 0.710625 -1.159375 3.254375 1.065625 2.294375 2.07375 -0.868125 2.425 0.979375 5.966875 1.72375 -0.340625 2.271875 1.1275 1.34125 2.360625 1.534375 0.08 0.028125 1.764375 -0.374375 -0.453125 -1.15625 4.57125 -0.621875 2.695 2.700625 -0.874375 3.14625 0.81875 2.209375 1.78 1.52375 -2.4875 -0.1775 0.335625 0.9275 0.351875 2.143125 -0.138125 -0.62625 -2.30125 -0.95375 -0.504375 -0.500625 1.35875 -2.35125 -0.780625 4.3925 0.12375 2.304375 1.256875 2.0725 0.71375 -1.383125 2.14 -2.1475 -0.554375 -1.06125 4.804375 1.2075 1.775625 0.87875 -0.176875 2.28 0.1425 0.340625 2.6325 0.136875 4.209375 1.130625 -2.5325 4.4725 1.92 3.96625 2.46125 -3.06375 -0.233125 0.51125 1.398125 2.06875 2.240625 1.7675 -3.03875 -0.4525 2.87 1.16625 1.063125 4.3425 0.024375 0.70375 0.900625 1.164375 0.599375 -0.060625 -1.100625 3.204375 3.49875 1.42375 0.0475 -0.010625 2.75 -1.381875 3.073125 1.524375 2.28875 0.950625 0.16625 2.319375 0.085625 1.06 -2.30625 1.163125 0.51 -2.089375 0.5975 2.133125 0.675 2.79375 1.6775 1.40125 1.160625 1.873125 -0.611875 -0.09375 2.67125 0.52 1.095 -2.14875 2.53375 -0.2575 -0.384375 1.59 1.91375 0.29375 2.01375 1.741875 -0.018125 -0.165625 1.50375 -2.354375 2.555625 1.519375 0.910625 3.161875 -0.115 1.855625 0.32 -2.8575 2.3125 -4.90375 0.608125 2.2525 2.286875 1.969375 0.67 3.389375 -0.12625 -0.16875 1.12375 1.374375 0.73125 1.4275 1.6975 0.5325 -1.884375 2.936875 1.005 -1.025 1.700625 -0.575625 -1.78875 0.341875 3.03 0.959375 2.79625 -2.5875 0.826875 -0.653125 0.850625 1.4375 0.653125 2.47 1.3775 0.97375 -0.83125 0.3025 -0.745 0.493125 2.53375 2.375625 4.04 0.84 -4.375625 0.84125 2.006875 3.099375 1.586875 0.93375 4.900625 -0.45375 1.741875 -2.23375 1.270625 0.0375 0.78 0.61875 5.671875 3.4825 3.5275 0.020625 0.278125 0.523125 0.545 -1.36375 -0.71875 4.6775 -2.284375 -0.95375 -1.32 -2.911875 2.55625 -2.609375 -0.29 -0.096875 2.45 1.016875 0.3175 1.479375 -0.46875 0.561875 -1.89875 3.98375 -0.374375 2.69125 -0.12125 0.126875 0.756875 -2.271875 1.745625 2.36625 1.340625 0.285625 1.05625 -0.173125 0.09875 0.098125 0.37875 2.32375 -1.6675 0.248125 0.7925 1.015625 2.80625 1.209375 -0.425625 2.124375 1.779375 -1.8875 0.141875 1.508125 -0.4225 1.076875 0.300625 0.0975 2.738125 0.41625 -1.071875 -0.725625 -0.92375 1.23625 -2.09 2.308125 2.828125 1.548125 -2.29625 -4.4375 3.06875 -0.4325 0.889375 -1.748125 -1.28375 -1.184375 1.281875 -1.733125 0.490625 2.220625 2.755625 2.743125 -2.343125 0.57 0.12875 -0.593125 0.548125 -2.860625 1.624375 1.545 -0.77125 0.6125 -3.524375 3.386875 0.29625 0.239375 -0.170625 0.991875 1.40875 0.744375 2.26875 1.75375 -1.1875 0.064375 -0.099375 1.3375 3.05125 0.385625 0.631875 0.0875 0.17375 -0.93375 0.46625 1.07125 -1.01125 -2.768125 0.063125 1.15 1.44125 0.788125 0.9475 -0.6475 -3.321875 2.211875 -0.814375 -0.791875 -0.251875 1.043125 -1.074375 -0.195 0.701875 1.936875 0.72 -0.688125 0.948125 0.72375 -1.06375 -0.5725 -0.086875 0.360625 -0.67375 0.18125 2.193125 -0.318125 -1.338125 -2.4625 0.81875 0.82875 -1.514375 0.365 1.345 -1.1075 1.093125 5.831875 -0.23125 -1.16375 0.126875 0.6025 -1.178125 -2.540625 1.125 3.409375 0.144375 0.60875 0.909375 1.406875 1.801875 -0.4775 -1.98 0.955625 -0.775625 0.115625 1.669375 -0.414375 -1.021875 0.7175 0.780625 -0.24 2.23875 1.6525 2.158125 2.605 0.27 0.863125 -2.471875 1.110625 -0.50125 -1.330625 0.974375 -0.18625 1.796875 3.54375 -0.42875 -1.009375 -1.236875 -0.67 -3.20375 -1.96 -0.04875 2.0825 1.5875 -2.61375 -1.741875 -1.33375 -1.233125 -0.6525 0.763125 0.054375 -1.291875 3.88875 -0.8675 2.0475 -0.57625 3.3675 2.34625 -1.256875 2.570625 1.04875 1.619375 0.62375 -1.1075 -0.54625 -0.063125 1.79875 3.913125 2.868125 1.118125 1.56 1.478125 0.859375 0.7325 0.643125 1.649375 -3.885625 0.058125 1.431875 -0.334375 -0.393125 3.50375 -0.509375 2.111875 -1.2875 -2.211875 -2.775625 -1.0225 1.510625 -0.44 -2.94875 3.10625 0.0825 3.398125 0.665 -1.98 -0.693125 -2.069375 3.14875 -0.535625 -2.06625 1.7425 -1.7575 -1.17375 -2.90125 0.728125 -1.565625 -1.64875 -3.164375 0.9225 0.145625 -2.105625 2.1925 2.355625 1.226875 -0.450625 -0.635 -2.433125 0.06125 1.43 1.361875 -1.005625 1.879375 1.6475 0.16125 1.574375 0.819375 -3.026875 0.00875 0.789375 1.819375 0.790625 2.775625 2.935625 -2.698125 0.871875 0.219375 1.070625 -1.765 -0.195625 1.023125 2.248125 -1.74 -0.815625 -0.65625 -0.51875 1.08 -0.2 -2.0825 0.494375 -1.33125 -0.22875 -3.3275 -0.08125 1.036875 -3.490625 -1.4525 2.051875 1.809375 -1.050625 0.141875 2.031875 -1.14125 -1.4125 1.445625 1.398125 2.195 0.303125 1.654375 -0.69375 1.285625 -0.654375 0.630625 -0.15375 -0.210625 -2.4675 2.4575 2.17375 4.77375 0.613125 2.2625 0.294375 -1.35 2.075 -1.70125 2.966875 -2.35 -1.275625 -2.01625 -0.8175 0.368125 -1.863125 1.749375 0.21125 -1.410625 -1.0025 -0.881875 1.6925 -2.554375 -0.625 0.7275 -0.271875 -1.268125 0.805 -0.361875 -0.895 1.48875 0.635 -1.070625 0.094375 -1.496875 2.27625 0.836875 0.883125 0.308125 -0.378125 1.849375 -1.98125 -0.72 1.343125 -0.96625 2.165 0.519375 2.044375 0.979375 0.779375 1.05625 -1.410625 3.28125 -0.793125 0.51 1.47125 -0.7775 2.860625 1.240625 3.98875 -1.403125 1.741875 -0.450625 -2.741875 1.314375 1.40375 0.836875 0.4975 2.813125 1.899375 -0.1475 -1.05625 2.675625 1.47 -1.123125 -2.366875 0.37625 0.308125 0.889375 -0.879375 -0.45875 -1.050625 -2.2275 0.92875 1.474375 3.15375 -2.270625 -1.94625 0.08875 1.9325 0.214375 1.74125 -0.928125 0.705 -2.2575 3.45125 -0.9775 -0.993125 1.855 0.3175 0.608125 1.425625 2.203125 1.078125 -3.25875 1.07375 -2.818125 -2.310625 1.98875 2.331875 -1.506875 0.51375 0.658125 -3.125625 1.201875 1.930625 0.473125 0.96125 -1.986875 -0.413125 0.15875 -1.173125 1.9125 -0.795625 -1.65125 1.548125 1.945 1.233125 -0.453125 -1.028125 0.219375 -0.16625 0.839375 1.340625 -0.280625 2.9625 1.408125 2.16 0.186875 1.331875 -1.428125 2.174375 1.946875 0.720625 4.275625 -1.088125 -4.27625 3.3 3.52 1.1575 0.78875 0.62625 -0.2125 -0.3 0.980625 2.14 -2.07875 1.82 0.13 -1.625625 0.615 0.610625 -1.34875 1.185 2.678125 2.10125 -0.819375 1.2525 -0.3525 -2.475625 0.725625 -0.876875 -0.3425 -0.298125 1.139375 0.149375 -2.114375 2.045 0.105 -3.028125 -2.92625 0.54875 -0.43625 -1.395 1.10625 2.85875 -0.238125 0.9475 -2.45125 1.225 -2.743125 -0.83375 4.10125 2.2075 1.780625 -0.554375 -0.06375 -0.974375 -0.78125 3.24625 1.256875 -0.30375 -2.44875 -5.004375 3.275 -1.02125 1.033125 3.74125 1.34875 1.20875 3.563125 2.52125 -1.369375 -0.658125 -0.2 4.804375 -0.4575 -1.924375 -0.12375 0.050625 -3.001875 -0.7575 -0.76625 -1.723125 1.588125 -0.83125 1.984375 -1.68 -0.92625 -0.268125 2.505 1.4175 0.799375 -0.5825 -1.66 0.9625 1.969375 3.72625 -1.744375 -1.995 0.939375 1.78375 3.4425 -1.38125 -1.72875 0.411875 -0.771875 -0.159375 1.099375 0.956875 0.98375 0.84875 0.586875 1.2425 0.073125 -0.60875 2.059375 0.86125 3.041875 0.644375 2.36 -1.403125 -0.67 0.43 -0.446875 -2.93625 -0.813125 -2.7925 -1.381875 -0.1 -1.9475 -2.639375 -0.90375 0.48875 0.58875 -1.6725 0.810625 -2.076875 1.5975 1.1675 -4.18375 0.0475 -0.56375 -0.903125 -0.013125 -2.0475 -2.533125 1.771875 2.205 -1.04375 4.144375 0.130625 -1.88625 -1.435625 -1.233125 1.609375 2.110625 1.028125 -3.84875 -0.12875 0.77375 0.226875 0.243125 -2.035625 -1.866875 0.213125 -0.575625 0.985625 1.928125 -2.615 0.698125 0.815625 1.529375 0.608125 -0.07625 -1.795625 -3.82375 -0.72 3.034375 -0.679375 -1.60375 0.98875 -1.158125 -2.063125 1.220625 1.75875 -0.609375 -0.735625 -0.210625 -1.64375 0.52125 3.32875 -0.474375 -0.245 0.194375 0.111875 1.81625 0.124375 -0.976875 -0.944375 1.70875 0.38875 0.82625 2.815 -0.10125 1.70375 1.434375 -0.064375 1.58 -1.00625 -0.761875 2.666875 0.2175 -0.119375 0.424375 1.77375 -3.2675 -1.2025 1.464375 -2.698125 -1.291875 1.375625 -0.5125 -1.2725 -0.42625 3.230625 2.60875 +1.979375 3.91625 4.068125 3.529375 2.91 3.813125 4.17 0.738125 0.86625 3.9 2.305625 2.49375 5.3575 1.5825 5.528125 2.03875 3.785 4.78875 3.855625 4.0525 4.561875 3.960625 2.825 5.336875 5.406875 6.175625 4.235625 5.549375 4.539375 3.345625 2.946875 3.73 3.22125 3.794375 4.565625 6.69125 5.628125 7.085 6.170625 4.023125 4.364375 2.31 9.161875 7.454375 3.241875 3.99125 -0.261875 3.631875 5.25375 2.5625 2.51375 3.67875 5.02375 1.836875 1.49125 6.461875 5.38875 3.27375 4.8925 5.2475 3.11875 6.11 5.296875 2.184375 5.4475 3.41875 4.946875 5.974375 4.1225 6.2025 2.205 2.638125 4.040625 5.733125 4.7825 3.831875 4.20375 4.046875 6.0775 4.110625 4.9675 3.13875 3.974375 5.290625 3.366875 4.219375 6.52 6.1575 2.874375 2.239375 2.421875 2.563125 5.55125 1.30875 2.538125 3.13125 3.369375 2.94875 4.3775 3.206875 4.10125 6.65625 2.253125 3.335625 2.839375 3.413125 5.876875 5.836875 2.3775 2.511875 2.96375 3.089375 6.6675 2.02375 1.5125 6.259375 4.265 1.268125 3.0575 2.4875 5.023125 2.95375 6.955625 3.68375 5.734375 5.729375 2.506875 6.5975 3.359375 6.283125 1.17625 3.178125 4.325 1.741875 4.069375 1.40125 0.4875 3.273125 2.21 3.760625 3.149375 4.89125 1.6575 4.6 4.53125 1.275625 1.83125 2.27375 2.0725 4.190625 4.2725 5.02 2.96625 2.889375 1.53375 0.649375 2.863125 6.2275 6.83625 4.2425 2.131875 4.00875 0.121875 3.268125 4.958125 3.35125 3.533125 2.934375 4.455625 5.61625 5.42625 2.6775 4.774375 3.60625 2.984375 6.1025 2.07 -0.13875 5.87125 2.258125 0.563125 0.7075 4.1525 2.733125 3.985625 1.031875 3.803125 2.421875 1.73125 3.4175 4.27125 6.240625 4.025625 3.64 2.424375 3.600625 3.455625 2.286875 3.769375 0.690625 2.84375 1.85125 5.05875 4.935625 2.104375 0.806875 2.76375 1.4925 4.79 1.9675 2.7225 2.596875 0.47125 2.34875 0.27375 2.85125 2.8825 -0.7575 1.216875 2.775625 2.71375 1.453125 0.08 3.966875 1.589375 0.561875 5.039375 1.066875 3.13375 2.9325 3.54 3.346875 1.355 2.82125 3.49 2.204375 2.85375 5.0375 2.390625 4.974375 3.813125 4.5675 3.881875 2.9175 3.793125 0.88875 0.81375 4.8775 1.28875 5.05625 -0.29375 0.58625 3.73125 2.8475 4.30875 3.553125 2.13125 1.418125 2.930625 -0.11625 2.075 0.5125 3.081875 2.0225 4.188125 1.9975 2.47 2.310625 4.91125 1.29125 -0.730625 1.95625 -0.560625 3.238125 0.650625 0.291875 3.069375 2.414375 0.1075 3.58 0.804375 2.906875 0.653125 1.2925 1.955 4.7775 2.44 1.961875 -0.379375 -1.669375 4.73 4.050625 3.951875 1.66 1.47125 1.419375 0.418125 1.729375 6.60375 1.2425 0.734375 0.55125 -0.105625 2.8675 1.398125 4.166875 2.01375 1.2075 4.15125 0.000625 2.57125 2.735625 2.56125 1.46875 3.298125 -0.965 3.511875 1.493125 0.303125 4.0725 2.421875 1.7075 2.728125 1.368125 1.924375 2.68875 -0.8625 1.015625 1.15125 4.19625 6.605 0.58625 3.31 1.310625 0.048125 2.594375 3.718125 3.07125 1.7225 0.845625 2.651875 2.27125 2.47 1.61125 0.159375 1.476875 2.90625 1.98 2.391875 4.34125 -0.56625 -0.158125 -0.755 2.5425 0.000625 3.515625 2.6475 1.033125 2.4375 3.865625 0.29375 3.299375 0.296875 1.430625 1.980625 -0.323125 -0.38375 0.246875 0.329375 2.028125 -0.15625 2.125 4.4725 1.806875 0.535625 3.09375 2.79875 3.835 0.49 1.8375 5.236875 3.340625 1.07 5.12875 3.314375 0.231875 1.6425 0.62125 2.166875 2.244375 0.65875 1.978125 2.89625 1.145625 1.11375 2.835 2.008125 1.280625 -0.0725 2.18 2.3275 2.1925 2.015625 1.020625 2.32 3.2875 2.35875 1.68875 3.489375 0.595625 -0.36625 -0.980625 -1.680625 2.475 1.43875 4.45625 -0.268125 -0.790625 2.334375 3.30125 -0.56625 2.50125 -2.875625 3.748125 1.0925 3.78 3.270625 1.014375 -0.37625 -1.0525 -0.38625 -2.2725 -1.165 4.949375 -0.039375 -0.983125 2.80875 2.5575 2.4225 -1.473125 1.750625 0.24125 0.92875 1.81875 0.419375 -0.46125 0.03125 0.03375 1.54 0.689375 0.604375 0.896875 1.353125 2.535625 2.78875 -0.968125 -0.93 2.06 2.36625 3.535625 1.01375 0.86125 2.49625 3.718125 2.911875 0.894375 1.43625 -0.576875 0.364375 1.35 2.121875 1.91875 2.796875 2.51875 -0.58 -1.7 0.29375 2.036875 0.5675 -0.4525 -0.095 0.853125 -0.281875 3.498125 -1.5625 1.024375 2.938125 0.246875 2.85625 1.241875 0.88875 -1.005 -0.070625 3.925 1.813125 3.85625 0.2025 -2.140625 2.50125 3.948125 1.671875 -0.71875 4.0375 1.084375 1.106875 0.275625 0.93625 -1.585625 1.315 0.03125 0.825625 3.02 -0.116875 -0.61 1.23375 1.479375 0.66625 2.41125 2.5225 -0.036875 1.031875 3.0725 1.995625 1.2275 0.64375 0.978125 2.441875 0.274375 -0.764375 1.934375 3.1875 -0.785 3.501875 -0.59875 2.45125 -1.03 -2.335625 1.019375 -0.928125 0.94 2.873125 3.38625 0.645625 -0.0875 2.35875 -0.315 2.71 2.024375 -0.075625 2.460625 1.61 0.66 4.201875 0.174375 1.954375 3.400625 0.27 1.2675 2.4075 2.30875 2.388125 -0.561875 1.05125 2.6825 -0.62625 3.315625 0.121875 -1.96625 0.116875 -0.156875 1.385625 -0.365625 -1.770625 0.848125 1.643125 2.440625 -1.59625 3.3125 1.47 -0.71 2.21875 -0.1125 4.17 -0.318125 1.129375 2.216875 1.625 2.110625 -2.215 4.146875 1.14375 2.2725 0.844375 2.185 3.054375 -1.53875 1.656875 -2.70375 0.7675 0.513125 -0.163125 1.0925 1.90875 1.79625 -0.246875 2.320625 1.766875 3.306875 2.19625 1.78125 -0.135625 3.905625 2.840625 -0.615625 0.9375 -1.07875 4.535 1.885 2.35 0.771875 -2.23125 1.471875 -1.538125 1.16 -3.57 -0.743125 1.960625 3.893125 0.611875 0.42 -1.53625 2.490625 1.74875 1.03625 1.763125 -2.53375 2.580625 -0.436875 -2.545 -0.5875 -0.814375 3.088125 3.066875 1.965625 0.314375 -2.405625 0.49 -0.96875 -3.738125 1.589375 1.893125 3.96375 0.3375 0.065625 -3.23875 1.626875 -0.4625 0.50375 1.134375 2.8725 -0.3225 1.099375 3.42875 2.190625 1.029375 -1.5625 2.446875 -0.075 0.506875 3.38125 -1.59625 0.14875 0.126875 2.27 2.656875 0.46375 2.54125 2.15 3.2475 0.81 3.431875 -1.139375 -0.0775 -4.00375 1.576875 3.309375 -0.825 0.3575 0.640625 0.925 -1.8375 2.094375 1.675625 2.960625 3.051875 2.535625 2.199375 -0.61375 1.1675 0.2175 -0.936875 0.81625 0.223125 1.9025 2.695 2.153125 0.6275 2.69625 1.30125 0.6825 1.644375 1.0775 2.35125 -0.62 1.231875 0.63375 1.66 1.54 1.135625 -0.81125 1.01125 4.208125 -2.496875 -1.64625 1.03 -0.42375 5.073125 1.3775 -1.51375 -1.14375 2.649375 2.324375 -0.66875 0.848125 0.789375 -4.288125 0.791875 1.00625 2.670625 1.069375 -0.555625 3.539375 -1.451875 1.205 1.913125 2.84 0.9275 0.584375 3.44375 -0.1825 -2.571875 3.66875 1.398125 -0.315625 1.624375 -0.168125 0.36625 -1.2425 1.959375 0.8975 0.889375 -1.375625 -0.71375 0.695 0.889375 2.259375 1.13375 0.40625 3.061875 -1.883125 -0.788125 1.70625 0.273125 0.504375 1.0025 3.49875 -1.295625 3.206875 0.673125 1.570625 2.4125 0.08875 0.9475 1.649375 1.71 0.216875 -1.75375 -2.659375 0.861875 2.173125 0.170625 0.96875 1.2275 -0.090625 -0.829375 1.53125 0.06625 -0.164375 -3.606875 -1.20375 -0.41625 -2.14125 3.1125 -1.51 -0.405625 -2.40875 -1.309375 0.81125 3.031875 0.78 3.75875 -0.595 1.3525 0.711875 0.986875 -0.08125 3.5925 0.86125 -1.953125 -1.28875 -1.68625 1.575 0.559375 1.389375 -0.714375 0.113125 2.246875 2.415 1.2275 1.81375 3.9425 0.459375 5.19375 0.31625 0.8875 2.06375 -0.74875 -0.87875 0.004375 -1.8725 2.788125 0.344375 0.16625 1.495625 2.269375 2.266875 0.01125 2.1275 0.13875 -1.256875 -1.584375 -0.904375 0.8 1.295 1.0175 1.8275 0.70125 -5.22 -2.985 1.220625 -0.33125 -1.971875 2.101875 0.22375 -0.578125 -0.76875 0.059375 -1.41125 0.05375 -0.033125 0.563125 0.6275 0.234375 -0.29 -1.25375 1.86375 0.3725 -0.661875 0.831875 1.719375 -0.49875 5.293125 -1.3275 1.76625 -2.493125 0.10125 -0.645625 1.216875 3.63375 2.7275 2.6225 0.105 1.72625 2.20625 0.086875 2.24125 -1.550625 -0.96 -0.7775 1.189375 0.00375 0.060625 -1.380625 -0.26625 2.051875 0.66375 -0.9875 -0.549375 0.908125 0.874375 -1.61625 0.694375 2.6225 -0.14125 -0.43125 -0.009375 -0.434375 1.13875 0.780625 -0.515625 -0.044375 1.5125 -0.815625 0.968125 3.050625 0.23625 -0.461875 0.25875 4.854375 2.344375 -0.0825 0.57125 -0.6875 2.873125 0.134375 -0.7675 -2.8225 -2.718125 1.6075 0.22625 0.475 -1.6775 -1.630625 1.415 0.26375 0.23625 3.4275 -1.066875 -0.311875 -0.16625 2.41875 1.465625 0.466875 1.113125 -3.491875 0.304375 2.423125 3.03 -1.28625 0.304375 1.44875 0.980625 1.43625 -0.29625 -2.085625 -2.280625 -0.859375 -1.106875 1.690625 1.59625 0.23625 -1.24 0.065 -1.24375 1.93125 1.6925 0.855625 1.415625 2.008125 3.19 0.270625 0.293125 2.454375 -0.50875 -0.976875 -0.495 -1.150625 1.335 0.035 -4.474375 -2.4 -1.4075 0.57375 0.529375 -0.17875 -0.98 2.856875 1.573125 0.428125 -0.469375 -2.49125 0.97 -0.826875 -0.0025 2.778125 -0.740625 3.5625 -2.26625 -1.325625 -1.695 -0.3225 0.6875 1.715 -0.27 0.2725 -0.93125 2.34875 -2.78875 2.083125 2.758125 -2.958125 -0.9725 -1.4625 -2.5875 -1.37125 1.413125 -0.1975 0.813125 1.130625 -0.97625 -0.685625 -0.245625 0.375625 -0.498125 0.851875 2.838125 0.455 1.133125 0.368125 -2.055 1.89125 -0.9575 -0.8025 -0.3325 0.71 0.07625 1.049375 5.793125 0.92625 1.426875 -0.1675 -0.5575 2.1625 1.34875 0.586875 1.633125 1.100625 0.88125 -1.22875 0.95 -1.889375 0.389375 -0.206875 -1.96125 3.196875 1.10625 1.031875 0.250625 1.33375 4.289375 2.51625 -1.284375 -1.895 0.5575 1.345625 -0.0225 2.680625 -3.428125 -0.31125 0.27375 -2.32 0.47125 -1.99 1.718125 1.16125 -1.44875 -1.9925 -1.813125 0.195625 -0.97125 0.036875 -2.753125 1.134375 2.09375 -2.17875 1.2225 0.670625 1.27125 0.750625 2.175 0.158125 0.389375 -0.236875 1.153125 1.62 -2.220625 1.123125 -2.296875 3.68375 0.46875 -0.04625 -2.68625 0.12125 0.549375 -3.349375 3.36125 0.14125 -2.4525 0.03875 -1.37375 -0.165625 -0.385625 -0.074375 1.95625 0.455625 0.955625 3.12625 -1.236875 1.45875 0.3475 2.394375 1.863125 3.89 0.409375 0.8025 2.683125 1.894375 0.786875 1.013125 -0.955625 -0.33125 0.593125 -0.309375 0.115 -2.26625 1.775 -0.640625 1.706875 -0.19625 1.79625 -2.27625 2.2475 0.019375 2.778125 2.12625 -0.20625 0.88 2.2875 -0.716875 -1.560625 2.47125 -1.05625 2.725625 1.749375 -0.9275 2.1275 1.085625 1.038125 2.323125 -0.61875 0.253125 -0.278125 -1.276875 0.60625 1.438125 1.075625 -1.57875 -0.049375 -2.670625 -1.5325 -1.33125 -1.90125 1.3075 -2.435 1.506875 -2.356875 -0.61375 1.1625 -0.03875 3.33375 1.098125 -0.50875 0.200625 1.421875 1.265625 1.248125 -2.409375 0.39875 0.72125 -0.36375 0.404375 -1.63375 0.638125 2.320625 -0.04375 0.075625 -0.5325 1.19375 0.739375 0.915 0.655 2.0325 -2.543125 1.040625 1.65 0.700625 0.023125 1.75625 -0.158125 -0.965625 2.703125 -0.2725 -1.845 3.225625 -0.665 1.04625 1.1425 0.77375 2.016875 0.993125 2.601875 -0.240625 -0.11875 3.145625 1.366875 -0.20125 3.886875 1.9075 1.1125 0.534375 -0.453125 0.981875 0.336875 0.03375 0.675625 1.245 -1.30625 1.916875 -0.760625 -0.909375 -0.109375 1.168125 -0.83625 -2.44875 -2.081875 0.48125 -1.918125 -0.099375 1.204375 -2.2375 -2.7325 2.846875 -1.52375 1.249375 -0.19625 2.455 0.626875 -1.11875 -1.43625 3.71125 -0.20625 1.08125 2.13125 1.97375 -0.15625 -0.86125 2.363125 1.44875 -0.66875 2.516875 1.92125 -0.576875 -1.43375 1.98875 -0.583125 -0.58 -0.8475 1.1475 3.30375 -0.56125 -1.684375 -1.510625 1.090625 -1.025 -1.9575 0.52375 0.410625 1.69875 -1.2375 2.19 1.509375 0.2575 2.251875 -1.568125 -1.9175 1.713125 -3.24625 1.236875 1.610625 1.9025 0.445 -2.1575 0.281875 2.769375 3.3175 1.20875 -1.14 1.088125 -2.35625 0.80625 1.025625 1.87125 1.706875 0.870625 -1.62875 0.236875 0.535 -1.639375 -0.43 2.170625 0.838125 1.140625 3.400625 1.1275 0.300625 -2.144375 0.745 0.5175 2.23 0.31625 1.9925 -0.763125 0.08125 -0.0925 -2.29625 -0.385 4.815625 2.679375 0.685625 -1.018125 0.33125 1.3075 -1.82875 1.504375 -1.7125 -0.2325 -0.281875 1.3 0.926875 -2.083125 0.965625 -0.975625 -0.65875 -1.118125 1.683125 0.881875 1.670625 -2.10125 2.86125 -2.26 -0.638125 -0.14125 -1.4625 -0.681875 -0.800625 -0.923125 -4.37125 1.06375 0.12375 0.15125 2.10375 -2.63125 -0.305 -0.223125 1.986875 0.89625 0.745 -0.710625 0.89 5.44125 -2.1 0.673125 1.223125 -2.27875 0.94625 -0.286875 2.843125 1.740625 -0.975625 0.71125 -3.116875 2.93625 -0.106875 -3.68875 -0.195625 0.400625 0.37875 -0.47 -1.621875 2.16375 2.71 -0.09125 1.309375 -0.816875 -1.065625 -0.71375 1.963125 2.81625 1.39 -3.845 0.2 1.425625 2.325 0.0875 0.821875 0.55 -0.09125 -2.343125 3.296875 1.109375 -1.4825 -0.289375 1.26125 -1.644375 0.513125 -4.63625 2.52375 -0.106875 2.934375 0.24875 0.225625 3.58 4.235625 0.76875 2.99125 -2.876875 0.263125 -0.5825 0.915 1.56375 -1.535 1.676875 -0.738125 -0.60875 2.675 -2.721875 -0.889375 -1.468125 2.085 -5.479375 0.859375 -2.44 2.42875 -1.50875 -1.219375 -1.426875 1.0225 0.763125 1.513125 0.380625 -3.02 -1.246875 0.98875 -0.11375 0.581875 0.01375 -0.095625 -0.36 0.044375 -0.543125 -0.081875 1.135 3.141875 2.989375 -0.944375 -0.95125 0.80125 -0.365625 2.079375 1.055625 0.615 3.638125 -0.330625 -0.081875 -2.59875 1.043125 0.143125 0.39 1.803125 2.445625 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_10ms_ref.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_10ms_ref.hrd new file mode 100644 index 0000000..8e915d7 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_10ms_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 10 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676034992 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0.00375 0.02 0.065625 0.000625 0.016875 -0.019375 -0.009375 0.0175 0.009375 0.005 -0.003125 0.010625 -0.048125 -0.01125 0.005 -0.010625 -0.008125 0.0125 0.00625 -0.01875 0.01 -0.024375 -0.0225 -0.013125 -0.03 -0.038125 -0.0125 -0.04125 -0.008125 -0.01125 -0.0225 0.005 -0.02375 -0.065625 -0.00125 -0.011875 0.0575 -0.0025 0.04625 0.04375 -0.0175 0.06375 0.024375 -0.0225 0.004375 0.01375 -0.00375 -0.03875 -0.0325 0.0225 -0.065625 -0.044375 -0.0075 -0.038125 -0.028125 -0.059375 0.006875 -0.020625 -0.025 0.013125 -0.00375 0.01875 0.015625 -0.065625 0.025625 0.028125 -0.074375 -0.015 0.0025 -0.0275 -0.028125 -0.01375 -0.035625 -0.0275 -0.033125 -0.00375 -0.008125 -0.00625 -0.015 0.001875 0.00375 0.06625 0.034375 0.029375 0.05625 0.023125 0.03125 -0.013125 0.01 -0.003125 -0.013125 0.01 0.01375 -0.014375 -0.054375 -0.105625 -0.08 -0.02 -0.0125 0.001875 0.005625 0.025625 0.0325 -0.015 -0.03 0.03125 -0.021875 -0.016875 -0.011875 -0.043125 -0.01875 -0.051875 -0.016875 0.005625 -0.04 -0.05375 -0.029375 0.005 -0.024375 -0.004375 -0.03375 0.01125 0.0625 0.06125 0.043125 0.024375 -0.000625 0.044375 0.00875 -0.0075 0.02 -0.058125 -0.016875 0.015 0.030625 -0.00625 -0.011875 -0.01625 -0.003125 0.023125 0.014375 0 0.014375 0.025 -0.014375 0.005625 0.0675 -0.0275 0.005625 0.015 0.025 0.0025 -0.023125 0.003125 -0.06125 -0.043125 -0.01625 -0.01125 -0.010625 -0.010625 -0.005 0.025625 0.035625 0.0625 0.058125 0.025625 0.02 0.0275 0.0925 0.02875 0.015 0.040625 0.02625 -0.033125 0.041875 -0.003125 0.00375 -0.004375 0.035625 -0.033125 0.046875 -0.025625 0 0.025625 0.009375 -0.045 -0.0125 0.044375 0.049375 -0.01875 -0.018125 -0.04625 -0.0625 -0.024375 -0.015625 -0.04375 -0.03875 -0.010625 -0.04125 0.01125 0.000625 0.005625 -0.015625 -0.010625 0.020625 0.015625 0.063125 0.044375 -0.02125 0.086875 0.01625 -0.00375 0.01375 0.001875 0.009375 0.018125 0.003125 0.00125 -0.081875 -0.046875 -0.01 -0.005625 -0.04625 0.005 -0.01875 -0.003125 0.009375 -0.019375 -0.01375 -0.000625 -0.005625 -0.015625 0.0575 0.023125 -0.043125 -0.00375 -0.028125 0.0175 -0.026875 0.004375 0 0.051875 -0.01625 -0.015 0.029375 0.04875 0.006875 0.0275 0.00625 0.00875 0.024375 0.01125 0.039375 0.00625 0.05125 0.025 -0.025625 -0.026875 0.045 0.006875 -0.014375 -0.05125 -0.01375 -0.05375 -0.024375 0.04375 -0.0325 -0.049375 0.015 0.071875 0 -0.060625 -0.025625 -0.009375 0.01125 -0.014375 -0.003125 0.04 -0.016875 -0.040625 -0.034375 0.0025 -0.008125 -0.031875 0.02125 0.01625 0.03125 0.00625 0.08375 0.02 0.01625 0.01125 0.031875 0.02625 -0.0075 0.015625 -0.004375 0.056875 -0.020625 -0.035 0.005 -0.019375 0.013125 -0.039375 -0.00875 0.021875 -0.030625 -0.01625 -0.0125 -0.003125 0.015625 0.061875 -0.021875 -0.034375 0.053125 -0.020625 -0.01875 -0.044375 0.005 -0.0125 -0.066875 -0.034375 -0.02 0.006875 0.001875 0.00125 0.01375 0.024375 0.06125 0.034375 0.03125 -0.016875 0.01625 0.045625 0.06375 -0.02 0.01875 -0.01375 0.038125 -0.02375 -0.020625 -0.000625 -0.040625 -0.02625 -0.055 -0.064375 -0.015625 -0.036875 -0.008125 -0.05375 0.008125 -0.019375 0.0125 0.005625 0.024375 0.05375 0.023125 -0.044375 -0.035625 -0.030625 -0.024375 -0.013125 -0.069375 0.015 -0.0275 -0.063125 -0.003125 0.011875 0.023125 0.03125 0.070625 0.023125 0.018125 0.061875 0.046875 0.065 -0.00875 -0.01 0.07625 0.01625 -0.0225 0.005 0.026875 -0.01125 -0.02125 -0.030625 -0.025625 -0.009375 0.003125 0.0425 -0.04125 0.01625 0.023125 0.033125 0.0275 -0.020625 0.004375 0.02 -0.05875 -0.003125 -0.03 -0.06625 -0.014375 -0.0175 -0.0275 -0.0425 -0.004375 -0.045 -0.03 -0.01 0.035 -0.01375 0.03625 0.015625 0.0275 -0.005625 0.03 0.01 -0.015 0.01375 -0.01625 0.035 0.011875 0.019375 -0.000625 -0.023125 -0.01875 -0.051875 -0.04125 -0.014375 0.013125 -0.015625 -0.0225 -0.02 -0.04875 0.018125 -0.006875 0.020625 0.018125 -0.038125 0.0125 -0.00625 -0.07375 -0.025625 -0.035 -0.070625 -0.0475 -0.02875 -0.035 -0.02125 -0.025625 0.001875 -0.019375 0.03375 0.021875 0.0525 0.04 0.050625 0.00125 0.036875 0.026875 -0.01 0.029375 0.02875 0.0075 -0.00125 -0.040625 0.016875 -0.03125 -0.04375 -0.020625 -0.064375 -0.0425 -0.00625 -0.00625 0.059375 -0.0375 -0.0075 -0.01625 0.035 -0.00125 -0.035 -0.020625 -0.04125 -0.00625 -0.016875 0.01 -0.01 -0.02375 -0.01125 0.019375 -0.015625 -0.004375 0.033125 0.0725 0.015 -0.01125 0.0475 0.055 -0.005625 0.019375 0.006875 0.075 -0.048125 0 0.026875 -0.035 -0.035625 0.00125 -0.065625 0.021875 -0.0325 -0.01125 0.040625 -0.045625 -0.016875 -0.02375 -0.036875 -0.00375 0.0125 -0.02625 -0.035625 0.005 -0.059375 0.006875 -0.07125 -0.045 -0.015 -0.030625 -0.043125 -0.0025 -0.018125 0.036875 -0.02875 0.020625 0.02875 0.030625 0.06125 0.04625 0.05 -0.0075 0.038125 0.02125 0.010625 0.0325 0.005 -0.01125 -0.011875 -0.02125 -0.02375 -0.01875 -0.004375 -0.049375 0.039375 -0.02375 -0.01875 -0.03 0.028125 -0.000625 -0.008125 -0.006875 0.0325 -0.025625 0.005 -0.003125 -0.01875 -0.03625 -0.000625 -0.03 -0.04875 -0.05125 -0.02875 -0.05375 -0.01 0.020625 -0.04375 0.00125 0.054375 0.02125 0.01 0.04625 0.025 0.045625 0.023125 0.025625 0.030625 -0.026875 0.01375 0.010625 -0.00125 -0.01875 -0.004375 0.065 -0.0725 0.0125 0.0325 -0.025625 0.015625 0.013125 0.04875 -0.0275 -0.029375 0.006875 -0.0275 0.020625 0.008125 -0.035625 -0.0175 0.00125 0.028125 -0.005625 -0.030625 -0.085 -0.010625 0.01875 0.011875 0.0275 0.01 0.05125 -0.040625 0.02875 0.010625 0.0125 0.0225 0.04625 0.018125 0.049375 -0.046875 0.04625 0.023125 -0.019375 0.013125 0.0025 0.019375 0.01625 -0.00625 -0.021875 0.030625 -0.010625 0.019375 -0.00375 0.006875 0.018125 0.013125 -0.02 0.04 0.01 -0.025 0.0075 -0.02625 -0.04125 -0.048125 0.00375 -0.025625 -0.055 -0.0375 0.0525 -0.028125 -0.02875 -0.016875 0.019375 -0.01125 0.061875 -0.015625 0.000625 0.013125 0.068125 0.06875 0.040625 0.01125 0.019375 0.0125 0.019375 -0.011875 -0.025 -0.043125 -0.0075 0.01875 -0.02125 0.02625 0.0675 0.00375 -0.02375 -0.0125 -0.033125 -0.015 0.061875 0.06 0.029375 -0.00125 0.005625 -0.006875 -0.04 -0.04375 0.008125 0.014375 -0.048125 -0.00375 -0.071875 0.036875 0.031875 0.02875 0.03375 0.078125 0.045625 0.00625 0.06 0.068125 0.04875 0.025625 -0.0275 0.0125 -0.0125 -0.006875 0.00625 -0.0325 -0.061875 -0.035625 0.0025 -0.025 0.026875 -0.0275 0.045 -0.02375 -0.048125 0.021875 -0.000625 -0.014375 0.004375 -0.01125 -0.04625 0.013125 -0.019375 -0.01625 -0.03125 -0.0325 0.0125 -0.026875 -0.041875 -0.0625 0.01 -0.025625 0.019375 0.035 0.021875 0.016875 0.0025 -0.016875 0.055 0.035625 0.046875 0.01875 0.04375 0.025 -0.010625 0.03375 0.0075 -0.016875 0.02875 -0.038125 0.01375 0.005625 0.008125 0.023125 0.000625 -0.003125 -0.0075 0.0075 0.045625 0.01375 0.03375 0.02 -0.0125 -0.00625 -0.024375 -0.008125 -0.0575 -0.0475 0.001875 -0.045 -0.0925 -0.015 0.029375 0.025 -0.011875 0.0675 0.0325 0.026875 0.08 0.021875 0.060625 0.045 0.03125 0.014375 -0.02625 0.001875 -0.020625 -0.01625 -0.038125 0.01375 -0.034375 -0.065625 0.03125 -0.05 -0.01125 0.010625 0.0225 0.025 0.0375 0.018125 -0.02625 0.00125 0.03375 0.019375 0.03 -0.043125 -0.040625 -0.001875 -0.061875 -0.000625 -0.035 -0.003125 -0.036875 -0.01375 -0.02625 -0.01875 0.015 0.053125 0.031875 0.026875 0.01 0.0125 -0.025 0.029375 0.05 0.008125 0.063125 -0.046875 0.003125 -0.0375 0.026875 -0.02875 0.005 -0.06 -0.039375 -0.01 0.035 0.0475 0.023125 0 -0.021875 0.02625 0.01 0.05375 -0.0475 -0.018125 -0.0575 -0.070625 -0.020625 -0.0225 -0.0175 -0.025 -0.02625 -0.00625 -0.024375 0.0325 -0.016875 0.016875 0.041875 0.020625 0.063125 0.035 0.03125 -0.003125 0.086875 0.015 0.090625 -0.02875 0.024375 0.016875 -0.055625 -0.015625 0.018125 -0.03625 0.009375 -0.0525 0.026875 0.028125 -0.005625 0.030625 0.041875 0.051875 -0.058125 0 0.0175 0.0125 0.031875 -0.003125 -0.00625 -0.008125 -0.086875 0.000625 -0.02 -0.0225 -0.00625 0.000625 0.006875 0.02375 0.00375 0.06125 0.008125 0.0125 0.048125 0.020625 0.113125 0.031875 0.039375 0.045625 0.010625 0.004375 -0.0325 -0.0825 -0.010625 0.005625 0.01125 -0.021875 -0.024375 -0.0475 -0.023125 -0.0225 -0.02375 0.024375 0.015625 -0.00875 0.019375 -0.01875 0 -0.0025 -0.00375 0.00375 -0.044375 -0.02625 -0.000625 -0.029375 0.001875 -0.030625 -0.036875 0.00625 -0.00125 0.038125 0.031875 0.0425 -0.028125 -0.01125 0.064375 -0.005 0.040625 0.05375 0.038125 0.010625 -0.05375 -0.00125 0.00125 -0.0275 -0.02375 0.021875 0.01875 0.006875 -0.04 -0.065625 0.02 -0.00625 -0.025 -0.04 -0.021875 -0.014375 0.03875 0.013125 -0.025625 0.020625 0.049375 -0.025 0.0225 -0.03875 -0.046875 -0.05125 -0.023125 -0.0025 0.023125 -0.02375 -0.001875 0.048125 0.028125 0.034375 0.02375 0.051875 0.010625 0.019375 0.019375 0.00625 0.028125 -0.031875 0.053125 0.03 0.00125 -0.019375 -0.010625 -0.034375 -0.034375 -0.000625 -0.0625 -0.015625 -0.030625 -0.0275 -0.006875 -0.02625 -0.04125 -0.0075 -0.018125 -0.018125 0.005 0.0125 -0.06 -0.091875 0.016875 -0.03125 -0.020625 -0.05625 0.01 -0.06375 0.028125 -0.0325 0.05375 -0.021875 0.006875 0.005 0.00625 0.07125 0.01875 0.045 0.026875 -0.00625 -0.005 0.018125 0.0375 -0.0275 -0.001875 0.005625 -0.01375 -0.00375 0.004375 -0.065625 -0.005625 -0.008125 0.00625 0.025 0.0025 0.005625 -0.02625 0.02 0.009375 -0.023125 -0.023125 0.01 -0.001875 -0.004375 -0.035 -0.056875 -0.05625 -0.009375 -0.026875 -0.0025 -0.038125 -0.025 0.064375 0.0325 0.0125 0.07875 0.050625 -0.023125 0.06875 0.099375 -0.02625 0.008125 0.033125 0.00375 0.015 -0.024375 -0.013125 0.02 0.015 -0.06125 0.008125 -0.04 -0.0025 -0.043125 -0.006875 0.01875 0.02875 -0.049375 0.016875 0.031875 -0.035 0.005 0.043125 -0.033125 0.008125 -0.02625 -0.021875 -0.08 -0.026875 -0.025 -0.0675 0.000625 0.0325 -0.0425 0.036875 0.016875 0.02875 0.04 0.04875 -0.00875 0.049375 0.04 0.024375 -0.0125 0.006875 0.0275 -0.006875 -0.01875 -0.015625 -0.049375 -0.035 0.02 0.0225 -0.019375 0.023125 -0.015 0.02 -0.02125 0.05 0.03375 0.01375 -0.01375 -0.011875 0.025625 0.00625 -0.029375 -0.029375 -0.034375 -0.08375 -0.06375 -0.01875 0.006875 0.014375 -0.016875 -0.0175 0.03375 -0.0175 -0.005 0.0525 0.051875 -0.004375 0.043125 0.029375 -0.0125 0.0225 0.025 0.01 -0.02 0.026875 -0.040625 -0.028125 0.016875 -0.005 -0.03625 -0.004375 -0.05 0.04125 -0.023125 0.066875 0.01 0.021875 -0.0275 0.025 -0.019375 0.029375 -0.043125 -0.0675 -0.05625 -0.02125 -0.03875 -0.031875 -0.038125 0.001875 0.010625 -0.011875 0.035 0.065625 0.02125 -0.01375 0.0175 -0.024375 -0.005 0.03375 0.08125 0.028125 0.045 -0.020625 0.033125 -0.010625 -0.024375 0.021875 -0.046875 -0.00375 -0.055625 0.035 0.013125 -0.02 -0.06625 0.045 0.01 0.01375 -0.01625 0.01 -0.02375 -0.03125 0.030625 0.028125 -0.0275 -0.03 -0.03875 -0.054375 0.008125 -0.00625 -0.0575 -0.05125 0.03 -0.0275 -0.0325 0.0175 0.0275 0.025625 0.079375 0.074375 0.0475 0.071875 0.0475 0.003125 0.029375 0.05 0.02125 0.01125 0.011875 -0.07 -0.003125 0.008125 -0.000625 -0.0125 0.02625 -0.01 0.0125 0.025 0.02 0.015 0.015 0.034375 -0.033125 -0.04875 -0.0575 -0.011875 -0.028125 -0.016875 -0.03 -0.003125 -0.046875 -0.049375 0.00875 -0.054375 -0.045625 0.065 -0.03125 0.03 0.03125 0.00625 -0.016875 0.04125 0.05125 0.055 0.041875 0.0075 0.0625 -0.02875 -0.005 0.049375 -0.005 -0.033125 -0.06125 -0.00625 0.00125 -0.019375 -0.0275 0.005625 -0.051875 -0.025625 0.06125 0.035 -0.0025 -0.015 0.005 -0.005 0.01375 0.01375 -0.02125 -0.0275 -0.053125 -0.026875 -0.03625 -0.025625 -0.00125 0.02625 -0.03375 0.0025 0.019375 0.06 0.049375 0.045 0.035625 0.04875 0.034375 0.013125 0.008125 0.026875 0.04375 0.00125 0.011875 -0.0325 -0.05375 -0.019375 -0.055 -0.0375 -0.035 -0.0425 -0.0375 0.036875 -0.01375 0.035625 -0.01875 -0.004375 -0.014375 -0.04 0.020625 -0.024375 0.04375 0.01875 -0.05125 -0.076875 -0.055 -0.039375 -0.02375 -0.015 -0.021875 -0.029375 0.015625 0.08625 0.050625 0.009375 0.023125 0.0725 0.053125 0.01375 0.053125 0.024375 0.000625 0.011875 -0.021875 0.02875 -0.001875 -0.025 -0.040625 -0.043125 -0.01875 -0.04 0.00375 -0.035625 -0.0225 0.00875 -0.019375 -0.01125 0.069375 -0.025 -0.04125 0.02 -0.01 -0.009375 -0.016875 -0.048125 0.008125 -0.060625 -0.05375 -0.04625 -0.03 0.024375 -0.03375 0.03375 0.044375 0.005625 0.0525 -0.00875 0.026875 0.0225 0.026875 0.044375 0.04625 0.0075 0.050625 0.049375 0.019375 0.00125 -0.038125 -0.01375 0.005 -0.01 -0.00125 -0.015 -0.060625 -0.024375 -0.035 -0.00875 0.040625 0.014375 0.01375 0.00375 0.004375 -0.036875 -0.0625 -0.0325 -0.00125 0.0025 -0.005625 -0.011875 -0.025 0.005 0.021875 -0.059375 0.04125 -0.011875 -0.010625 0.04625 0.034375 0.015 0.090625 0.08375 0.021875 0.02375 0.03375 0.028125 -0.009375 0.00625 0.005 0.028125 -0.036875 -0.013125 -0.036875 -0.019375 -0.01 -0.0175 0.0025 0.001875 0.005 -0.015 0.04625 -0.028125 0.011875 0.025 -0.034375 -0.03625 0.0075 -0.0125 -0.10125 -0.0225 0.02375 -0.053125 -0.038125 -0.019375 -0.0575 0.033125 0.01 0.021875 0.04375 0.0225 0.0175 0.023125 0.036875 -0.01 0.0225 0.05125 0.015625 0.054375 0.004375 +0.0225 0.04875 -0.000625 0.0025 0.00875 -0.03 0.0175 -0.049375 -0.048125 0.0225 -0.0525 -0.015 -0.018125 0.023125 -0.000625 -0.03 -0.04375 -0.015625 -0.019375 -0.031875 0.028125 -0.00375 0.0025 0.006875 -0.058125 0.024375 -0.0275 -0.043125 0.01375 -0.05875 -0.003125 -0.024375 -0.071875 0.03 -0.00125 -0.0025 -0.00125 0.0525 0.03625 -0.006875 0.033125 -0.010625 -0.005 0.013125 0.013125 0.010625 0.008125 -0.000625 -0.031875 0.01375 0.016875 -0.049375 0.034375 -0.061875 -0.033125 0.001875 -0.03625 0.00125 -0.0325 0.01125 0.01125 0.011875 -0.018125 0.03625 0.019375 0.0075 0.02125 0.030625 -0.010625 -0.03625 -0.06 -0.004375 0.034375 -0.0475 -0.069375 0.028125 -0.02 -0.0375 -0.0325 -0.003125 -0.00625 0.019375 0.03625 0.04375 0.043125 0.093125 0.01375 0.005625 0.020625 0.01875 -0.053125 -0.004375 -0.005 -0.00625 -0.003125 0.0025 0.025 -0.02625 -0.008125 -0.044375 -0.006875 0.019375 -0.03 -0.014375 0.018125 0.006875 0.015 -0.016875 -0.015 -0.00625 -0.05 -0.014375 0.01875 0.005 -0.02375 -0.004375 -0.025 0.03375 0.011875 0.01125 -0.01 -0.00625 0.01125 -0.006875 -0.0175 0.04375 0.031875 0.0325 -0.0325 0.014375 0.005625 -0.001875 -0.0125 -0.025625 0.004375 -0.028125 -0.00375 0.00625 -0.0575 -0.01125 -0.045 -0.04 -0.055625 -0.005625 -0.028125 0.049375 0.043125 -0.005 -0.015 0.044375 -0.05625 0.026875 0.01875 -0.013125 -0.018125 -0.016875 -0.024375 -0.008125 0.049375 -0.01 -0.01 0.00125 0.005 0.00375 0.07875 0.02 0.005 0.0375 -0.02 0.0425 0.040625 -0.005625 -0.01625 0.00625 -0.015 0.016875 0.004375 0.02625 0.000625 0.01375 -0.035625 -0.03 -0.02125 0.02875 0.0075 -0.00625 0.010625 0.0125 0.011875 0.01 -0.03 0.018125 -0.033125 -0.018125 -0.01375 -0.060625 -0.02375 -0.02375 -0.045 0.01125 0.018125 0.0175 0.006875 -0.015 0.045 -0.009375 0.046875 0.031875 0.0575 0.020625 0.0025 0.033125 0.0075 0.004375 -0.038125 0.005625 -0.02 0.0025 0.03625 -0.015625 0.00375 0.02125 0.005 -0.01625 -0.05875 0.000625 -0.013125 -0.016875 0.081875 -0.005625 -0.023125 -0.023125 0.010625 0.05375 -0.008125 0.0075 -0.016875 -0.048125 -0.005 -0.018125 0.04 -0.02375 0.010625 -0.019375 -0.02 0.035625 0.030625 0.08875 0.00625 0.04625 0 0.006875 0 0.0175 0.055625 0.03875 0.018125 -0.020625 0.060625 -0.02875 -0.00875 -0.03125 -0.060625 -0.011875 -0.00375 -0.046875 0.028125 -0.06 -0.014375 0.01125 0.008125 0.005 -0.025 0.005 0.025 0.055625 0.00625 0.01375 -0.006875 0.0025 -0.03125 0.03625 -0.0125 0.010625 -0.018125 0.009375 0.015625 0.04625 0.01625 -0.039375 -0.02 -0.0025 0.0325 0.025 0.025625 0.00625 0.02625 -0.0225 -0.000625 -0.003125 -0.014375 -0.008125 -0.050625 -0.05625 -0.036875 -0.036875 0.0275 -0.03375 -0.01125 -0.01875 -0.0275 0.015 -0.01125 -0.024375 0.031875 -0.0225 0.0225 0.02625 0.006875 -0.019375 -0.030625 0.0025 -0.033125 -0.01875 -0.013125 -0.0225 0.001875 0.0075 0 0.03 0.056875 0.02 0.044375 -0.01375 0.024375 0.04 0.001875 0.048125 -0.031875 0.021875 0.025 -0.01 0.0275 0.015 0.01625 0.0125 0.005625 0.00125 -0.005625 -0.040625 -0.00125 0.0325 -0.030625 -0.010625 -0.030625 0.001875 -0.05625 -0.02 -0.0275 -0.014375 0.0075 -0.01625 -0.05 -0.016875 -0.034375 -0.04 -0.041875 -0.008125 0.006875 -0.0425 0.04 0.004375 0.046875 0.0125 0.000625 -0.011875 0.04125 0.049375 0.015 -0.03875 -0.0125 -0.00625 0.018125 0.01625 -0.029375 -0.013125 0.01375 -0.010625 -0.016875 -0.04625 0.028125 0.02625 0.02875 -0.0025 -0.016875 0.03625 0.039375 0.02125 -0.01 0.0225 0 0.001875 -0.015 -0.043125 0.00625 -0.01375 -0.01375 0.010625 0.055 -0.033125 -0.02125 0.0625 0.009375 0.016875 0.011875 0.01 -0.005 0.020625 0.01375 0.0225 0.03375 -0.030625 -0.038125 -0.033125 0.0175 -0.028125 -0.010625 0.014375 0.00375 -0.039375 -0.00875 0.0025 0.02625 0.023125 -0.021875 -0.03 0.011875 -0.001875 0.011875 0.0025 0.01 -0.03875 -0.030625 -0.05 -0.006875 -0.036875 -0.00375 -0.02375 -0.024375 0.003125 -0.04 -0.025625 0.006875 0.035625 0.02125 0.03 0.054375 0.065 -0.039375 0.01625 -0.00125 0.020625 0 0.0225 0.031875 -0.065 -0.00625 -0.04375 0.015625 0.02 -0.01125 -0.04875 -0.01875 -0.020625 0.02375 0.01125 0.000625 -0.05125 0.025 0.030625 -0.045 -0.044375 -0.03 -0.001875 -0.039375 -0.02625 -0.05375 0.00125 -0.006875 -0.004375 0.000625 -0.00875 0.0175 -0.010625 -0.031875 0.01375 -0.033125 0.04375 0.00875 0.059375 -0.005 -0.0375 0.02625 -0.008125 0.04625 0.0275 -0.003125 -0.025625 -0.04875 -0.016875 -0.025625 0.009375 -0.008125 0.006875 0.01125 0.021875 0.0275 -0.024375 -0.015 -0.0125 0.0075 -0.020625 0.006875 0.015625 0.005 -0.045 -0.0225 -0.0025 -0.05375 0.01 0.009375 -0.011875 0.016875 0.009375 0.015 0.003125 -0.0025 0.0175 0.0325 0.020625 0.03 0.038125 0.02625 0.031875 -0.024375 0.018125 -0.008125 -0.026875 -0.024375 -0.021875 -0.061875 -0.000625 -0.03 -0.004375 -0.01625 -0.01625 -0.04875 0.0075 0.00125 0.01 -0.015625 -0.038125 -0.006875 -0.025625 0.0125 -0.028125 -0.03875 0.023125 -0.0025 -0.025625 -0.038125 -0.039375 -0.025625 -0.0225 -0.003125 -0.018125 0.034375 0.001875 -0.016875 0.008125 0.019375 0.011875 0.053125 0.00375 0.050625 0.07125 -0.008125 -0.038125 0.00625 -0.035625 -0.068125 -0.026875 -0.0125 -0.00625 0.005625 -0.0325 -0.02375 -0.03 0.015625 -0.0125 -0.00375 0.008125 -0.025 0.03 -0.026875 -0.02125 0.028125 -0.07625 -0.04 -0.056875 0.001875 0.011875 -0.04625 -0.0175 -0.0225 -0.079375 0.0275 0.02875 0.070625 0.014375 0.0275 -0.001875 -0.013125 0.075625 0.001875 0.0525 0.034375 0.00375 0.009375 -0.0375 0.035625 -0.01875 -0.030625 0.020625 -0.00625 -0.008125 -0.038125 -0.0425 0.009375 -0.026875 0.011875 -0.034375 -0.004375 -0.001875 -0.0125 0.003125 -0.039375 0.048125 -0.005 -0.000625 0.0125 0.023125 0.020625 -0.040625 -0.00375 -0.024375 0.006875 -0.035 0.00375 -0.014375 0 0.054375 0.038125 0.054375 -0.00625 0.0225 0.0425 0.02125 0.01 0.01625 0.04625 0.020625 0.01375 0.034375 -0.01875 -0.055 0.025 -0.0175 -0.005 -0.05 -0.023125 -0.008125 0.023125 -0.016875 -0.025625 -0.03375 -0.01625 0.03375 -0.028125 -0.00875 -0.014375 -0.00375 -0.019375 -0.015625 -0.0525 -0.0375 0.026875 0.010625 0.029375 -0.01625 0.025 -0.02625 -0.00375 0.016875 0.0125 0.015 0.0325 0.0325 0.02875 0.00625 -0.04125 -0.00125 0.02375 0.026875 0.0375 -0.034375 -0.03375 0.00125 0.0125 -0.00625 0.01625 -0.023125 -0.015 -0.001875 0.05 -0.02 0.006875 0.03 -0.058125 0.03625 0.004375 -0.00125 -0.02625 0.014375 -0.01625 -0.045 -0.02 -0.03375 0.0175 -0.035 -0.015625 -0.015625 0.0325 -0.023125 0.043125 0.009375 0.005625 -0.01625 0.046875 0.054375 0.013125 0.02 0.021875 -0.045625 0.0175 0.000625 0.04 -0.033125 -0.063125 -0.04 -0.011875 -0.046875 0.019375 -0.035 -0.0525 0.030625 -0.015625 0.005 -0.006875 0.02625 0.05 0.008125 -0.0325 0.04625 -0.0275 -0.02625 -0.00125 0.00625 -0.049375 0.000625 0.01625 -0.045625 0.011875 0.0125 0.02875 0.039375 0.0175 0.04 0.01375 0.03625 -0.01375 0.03375 0.014375 -0.01625 0.056875 0.006875 0.02875 0.036875 -0.046875 -0.0075 -0.019375 -0.003125 -0.01 0.00875 -0.010625 -0.035625 -0.03875 0.0175 0.019375 -0.015 0.01125 0.05 -0.020625 0.05625 0.066875 0.040625 -0.063125 -0.014375 -0.006875 -0.04625 0.03 -0.00375 0.001875 0.03125 0.005625 0.015625 0.010625 0.005625 -0.00625 0.01 0.035 0.02375 0.006875 0.055625 0.045 0.0525 0.015 0.035 -0.001875 -0.016875 0.01 -0.003125 0.034375 -0.005 0.026875 -0.0425 -0.018125 -0.020625 -0.005 0.010625 -0.019375 0.031875 0.014375 0.019375 0.02625 -0.0175 0.000625 0.015625 -0.035 -0.029375 -0.00125 0.01625 -0.02625 -0.025625 0.01875 -0.028125 -0.021875 0.004375 0.014375 -0.016875 -0.016875 0.03875 0.03625 0.039375 0.0175 -0.034375 -0.001875 0.0025 -0.009375 -0.008125 -0.02375 -0.005 -0.0225 -0.038125 -0.04125 -0.029375 0 -0.010625 -0.0125 -0.009375 -0.023125 0.033125 -0.004375 -0.001875 -0.010625 0.044375 -0.025 -0.00625 0.004375 -0.02125 -0.058125 0.01 -0.0375 0.035 -0.02375 -0.019375 -0.000625 -0.034375 -0.049375 -0.003125 0.02 -0.0175 0.0175 0.0425 -0.008125 0.03375 0.00875 -0.038125 0.02125 -0.019375 -0.024375 -0.004375 0.02375 -0.025625 0.018125 -0.016875 -0.02125 -0.05 -0.0525 -0.035625 -0.005 0.009375 0.029375 -0.020625 -0.03625 -0.010625 -0.004375 -0.018125 -0.050625 -0.023125 -0.040625 -0.056875 -0.013125 -0.005 -0.005625 -0.0175 -0.03375 -0.01625 -0.01 0.025 0.036875 0.03125 -0.013125 0.005625 0.0225 0.046875 0.045625 0.04 0.030625 -0.015 -0.0275 0.000625 -0.035625 0.00125 0.01375 0.004375 -0.043125 -0.03 -0.00125 0.03375 -0.00375 -0.00125 -0.023125 0.028125 0.0025 0.0025 0.0225 0 0.070625 -0.015625 0.0125 -0.0175 -0.001875 -0.018125 0.000625 -0.001875 -0.030625 0.019375 0.023125 -0.0275 -0.050625 -0.0025 -0.001875 -0.009375 0.00625 0.058125 0.02875 0.0075 0.04625 0.035625 0.020625 0.04 0.015625 -0.046875 0.016875 -0.015625 0.005 0.011875 -0.003125 -0.039375 -0.056875 -0.01125 0.005625 0.043125 -0.00875 0.01 -0.02625 -0.031875 -0.004375 -0.030625 -0.010625 -0.0175 -0.034375 -0.034375 0.003125 -0.066875 -0.0475 -0.03375 0.02875 -0.00625 -0.00875 -0.0475 0.008125 -0.01 0.035 0.00875 0.01 0.031875 -0.0175 0.059375 0.01875 0.025 0.030625 0.01375 0.0175 0.041875 -0.02375 -0.0175 -0.069375 -0.01375 -0.010625 0.003125 0.019375 -0.01625 0.058125 -0.03375 -0.023125 0.04375 -0.00625 0.015 0.030625 -0.021875 0.001875 -0.0025 -0.01625 0.008125 0.039375 -0.021875 -0.036875 -0.04 0.031875 -0.0225 -0.03625 -0.0125 0.0025 -0.0375 0.005 -0.00625 0.050625 0.02875 0.03125 0.050625 0.001875 0.004375 0.01125 0.036875 -0.035625 -0.0475 0.00625 -0.01125 0.00125 -0.01375 0.01125 0.00625 -0.003125 -0.015625 -0.0125 0.004375 -0.030625 -0.013125 -0.003125 -0.044375 0.0325 0.011875 0.018125 -0.03 -0.019375 -0.029375 -0.07 -0.015625 0.050625 0.0325 -0.03 -0.02 -0.01125 0.01625 0.015 -0.005625 0.0525 0.059375 -0.03 -0.004375 0.038125 0.016875 0.010625 0.026875 0.028125 0.02125 -0.006875 0.010625 -0.0225 -0.029375 -0.00875 0.005625 0.010625 -0.0125 0.008125 -0.004375 0.01125 -0.023125 0.05625 0.00375 -0.019375 0.034375 0.014375 -0.03375 -0.0125 0.005 0.036875 -0.016875 -0.01125 0.01 -0.06375 -0.02125 -0.0325 0.004375 -0.014375 0.053125 -0.0375 0.004375 0.003125 0 0.015625 -0.00125 -0.005 0.05875 -0.0175 -0.025625 -0.005 -0.023125 0.029375 -0.041875 -0.0575 0.019375 0.03625 0.008125 0.01125 -0.005625 0.02 -0.025 -0.000625 -0.0275 0.043125 -0.02375 -0.014375 -0.003125 -0.003125 -0.00625 -0.031875 -0.03875 0.008125 -0.035625 -0.073125 0.015625 -0.044375 0.021875 0.011875 -0.010625 0.045 0.04375 0.016875 0.051875 0.040625 0.013125 0.05125 0.01375 0.023125 0.005 0.01125 -0.015 -0.028125 -0.025625 0 -0.011875 -0.0025 0.041875 0.004375 -0.03 -0.0225 -0.02375 -0.009375 -0.009375 -0.014375 0.013125 0.046875 -0.050625 -0.020625 -0.029375 -0.033125 -0.02375 -0.038125 -0.01375 -0.013125 -0.041875 0.018125 0.033125 0.0325 -0.00875 -0.01 -0.025625 -0.008125 -0.028125 0.0475 -0.018125 0.035625 -0.0475 0.006875 0.025625 -0.025 -0.01625 0.061875 0.020625 0.03 -0.01625 -0.040625 0.01 -0.019375 -0.01375 -0.011875 -0.028125 -0.008125 0.008125 0.021875 0.00625 -0.01 0.0075 -0.033125 -0.00125 -0.006875 -0.0625 -0.02875 -0.005 -0.011875 -0.066875 0.001875 0.0025 -0.018125 -0.006875 -0.003125 -0.023125 0.01625 0.02 0.04625 0.044375 0.059375 0.02125 0.036875 0.074375 -0.0275 0.02875 0.06875 0.03 -0.01875 0.04375 0.04625 -0.010625 -0.00875 -0.016875 -0.00875 0.005625 -0.060625 -0.021875 -0.023125 0.04375 -0.029375 -0.0125 -0.033125 0.085 -0.005625 -0.0525 0.01125 0.01125 0.033125 0.011875 -0.015 -0.034375 0.02375 -0.00625 0.00875 0.01875 -0.03 0.025 0.04 0.033125 -0.0125 0.00125 0.01 0.040625 0.005 0.063125 0.015 -0.01 0.02625 0.039375 0.05 -0.009375 -0.021875 -0.02625 0.00125 -0.011875 -0.004375 -0.01625 -0.019375 -0.0225 -0.044375 0.025 0.000625 0.014375 0.03875 0.00875 -0.00375 0.008125 -0.031875 0.011875 0.013125 -0.036875 -0.03125 0.030625 -0.000625 -0.009375 -0.021875 0.0425 0.011875 -0.05 -0.01625 0.01875 0.010625 -0.010625 0.01625 0.055 0.038125 0.02125 0.0025 -0.019375 -0.01625 -0.0275 -0.0525 0.031875 -0.013125 -0.02625 0.01375 0.04875 -0.015 -0.06375 -0.000625 0.036875 0.0125 -0.00125 0.051875 0.0525 0.034375 0.04125 0.016875 -0.04 -0.0275 0.046875 0.00125 -0.029375 -0.029375 -0.036875 -0.063125 0.04375 -0.02125 -0.063125 0.02 0.035 -0.006875 0.015625 0.010625 0.008125 0.02 0.01125 -0.01125 -0.001875 0.0225 0.048125 0.08 -0.0075 -0.00625 -0.004375 -0.03375 -0.063125 0.003125 -0.018125 -0.045625 -0.040625 0.014375 -0.0025 0.034375 0.018125 -0.024375 0.02625 0.023125 0.02375 0.003125 0.0175 -0.024375 0.015625 0.01375 -0.00875 0.01125 -0.039375 -0.01625 -0.041875 -0.035 0.001875 -0.0175 0.02125 0.02125 0.08375 -0.004375 0.020625 -0.029375 -0.0675 0.005 0.02875 0.01375 0.0125 -0.015625 -0.025625 -0.015 -0.026875 -0.02125 0.005 -0.010625 -0.033125 -0.02375 0.030625 -0.0025 -0.0425 -0.003125 0.021875 0.03 0.038125 0.004375 0.041875 -0.021875 0.015 0.029375 -0.075 -0.01125 -0.040625 -0.00875 -0.044375 -0.056875 -0.01375 -0.003125 0.0125 0.0075 -0.009375 0.035625 -0.046875 0.01625 0.0275 0.01875 -0.020625 0.008125 0.036875 0.034375 -0.00625 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_160ms.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_160ms.hrd new file mode 100644 index 0000000..4862950 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_160ms.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 160 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035363 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-24.32125 -22.5575 -25.498125 -21.828125 -24.9225 -20.43375 -20.515625 -21.735625 -20.1625 -18.233125 -20.778125 -21.66625 -19.43125 -20.41375 -17.6225 -17.869375 -15.424375 -16.70875 -17.996875 -15.57375 -16.7725 -18.29875 -16.768125 -13.059375 -19.08375 -15.015 -16.90375 -15.51375 -16.345625 -16.889375 -15.963125 -12.796875 -15.8225 -16.010625 -14.506875 -12.715 -15.295 -17.911875 -14.7225 -12.848125 -14.27375 -13.13375 -15.14375 -10.096875 -11.09875 -15.8975 -15.5675 -9.549375 -10.955625 -16.59375 -14.015625 -11.9575 -8.405 -15.4725 -13.585 -11.688125 -12.964375 -11.064375 -12.778125 -11.751875 -13.451875 -11.91625 -12.428125 -8.8025 -12.96375 -8.82875 -10.53875 -11.02125 -10.8175 -10.85 -8.59375 -9.423125 -9.635 -8.685625 -10.9225 -9.01375 -11.15875 -10.333125 -9.131875 -6.57 -8.765 -9.07625 -8.696875 -9.014375 -7.72375 -9.046875 -7.968125 -11.53 -11.005625 -8.94625 -9.26125 -5.15 -10.03 -10.47875 -8.490625 -10.579375 -8.875625 -8.468125 -5.04 -8.7425 -6.39375 -5.50875 -5.196875 -9.40375 -7.746875 -2.616875 -8.8875 -6.635625 -9.585 -3.89125 -6.0675 -9.841875 -9.541875 -7.425 -7.63 -9.9725 -7.390625 -6.92 -6.063125 -8.379375 -7.260625 -6.2125 -8.08375 -7.699375 -7.72625 -4.319375 -5.625 -6.446875 -4.119375 -5.768125 -1.988125 -6.396875 -5.705 -5.935625 -6.484375 -4.7425 -4.785 -4.26 -7.68375 -4.544375 -8.833125 -4.7175 -6.716875 -5.776875 -6.11625 -4.55125 -3.376875 -7.013125 -8.899375 -4.798125 -8.9225 -8.000625 -5.601875 -5.321875 -0.62625 -4.234375 -5.2 -4.89 -3.048125 -2.713125 -9.238125 -4.915625 -3.541875 -2.846875 -1.775 -3.471875 -6.223125 -5.133125 -6.069375 -4.378125 -8.045 -3.361875 -5.12 -5.27375 -5.845625 -5.076875 -4.345625 -6.005 -5.575625 -3.785 -2.645 -3.08 -4.79875 -4.98625 -8.528125 -6.016875 -2.098125 -4.135625 -4.52625 -4.6225 -4.088125 -5.50375 -5.33375 -3.318125 -4.83375 -3.245625 -2.831875 -4.1325 -4.261875 -2.54 -3.346875 -2.925625 -2.41375 -1.533125 -3.22625 -2.2625 -5.4 -3.0275 -6.130625 -5.738125 -3.255 -4.395625 -3.075625 -0.664375 -2.89875 -2.349375 -3.338125 -4.29 -1.958125 -5.029375 -1.97375 -0.77875 -6.233125 -2.456875 -4.22375 -4.43875 -3.576875 -2.861875 -0.35125 -1.778125 -1.99875 -3.476875 -3.3975 -1.22 -3.88375 0.115 0.410625 -0.80875 -1.403125 -3.406875 -4.978125 -2.305 -4.165 0.39875 0.1675 -2.006875 -2.541875 -2.961875 -7.965 -2.610625 -4.019375 -2.84875 -3.011875 -1.295 -4.510625 -3.446875 -2.194375 -1.740625 -2.67 -2.89875 -3.83875 -6.2725 -3.5275 0.008125 -1.453125 -3.039375 -5.3275 -2.09 -2.546875 -0.474375 -0.966875 -2.603125 -1.67375 -5.6 -1.80375 -0.673125 -3.60375 -1.930625 -4.635 -1.66 0.7225 -2.29 -1.049375 -0.968125 -1.620625 -4.14375 -0.180625 -5.094375 -2.4075 -5.02375 -0.97125 -2.391875 -1.869375 -1.05125 -2.568125 -1.749375 -3.02625 0.860625 -0.92625 -5.8975 -7.425 -0.240625 0.06125 -2.808125 -1.7825 -1.116875 -1.95625 -3.235 0.145 -5.14125 -0.0125 -0.61875 -2.550625 2.28125 -1.629375 -0.61 1.019375 -2.959375 -3.939375 -1.740625 -1.793125 -3.900625 -1.92875 -3.661875 -1.924375 -1.41125 -3.253125 -0.416875 -1.8825 -2.349375 -1.20875 -3.445625 -2.83 -2.30125 -1.9025 0.34375 -2.080625 -3.121875 -1.335625 -2.034375 -2.87375 1.1625 -3.554375 -3.42375 -4.3475 -2.904375 -3.374375 -2.781875 -0.88125 -2.6825 -0.234375 0.161875 -1.74375 -1.00125 -2.64125 -2.7325 -2.991875 -1.82625 -1.105 -1.25375 0.38875 -0.9325 -4.166875 -0.795625 0.27125 0.76375 -0.863125 -3.67625 0.94875 -2.595 -3.01375 -1.230625 1.56375 -0.60125 -2.2075 -1.36625 -1.834375 -4.7775 -1.6125 1.1725 -2.675625 -2.285 -1.17375 -3.925 -3.695 -1.31875 -2.510625 -1.850625 -1.639375 -1.668125 -1.888125 -1.50875 -0.22375 -1.003125 -3.6525 -0.638125 -2.789375 -1.696875 -2.055625 -2.76375 -2.90875 -1.63125 -2.194375 -0.860625 -0.929375 -2.554375 -0.096875 -2.048125 -1.41 -1.91 0.4325 -1.355625 -2.245625 -4.295 -0.7325 -2.37875 -1.769375 0.33125 -3.359375 -1.785625 0.2975 -2.41375 -1.979375 -1.805625 -1.975 0.391875 -1.93 -2.644375 0.19625 -0.806875 -2.27875 -1.0525 -4.135 -2.520625 0.464375 -4.938125 0.989375 -3.16 -1.178125 2.169375 -0.644375 -1.610625 -2.18375 1.3225 -4.344375 0.5475 -2.784375 -1.175625 0.153125 1.2475 0.48875 0.121875 -0.35 -0.4875 -1.969375 -1.000625 -1.250625 1.106875 1.884375 -0.58 -0.56 1.391875 -1.02875 -1.16125 -1.614375 0.351875 -1.15 0.276875 -2.01375 -1.934375 -1.384375 -2.5225 1.14375 -1.848125 -1.574375 -0.73 -2.14625 0.135 -3.160625 -1.20125 -2.596875 1.4875 -1.1575 0.645625 -1.004375 -3.5375 -0.825625 -1.90125 0.306875 1.450625 0.60625 1.16875 -3.998125 -3.075 -0.44125 0.023125 -0.88375 -2.419375 -0.885 -1.135625 0.09625 -1.610625 -2.138125 -1.434375 -1.61875 0.115 -2.769375 0.68 0.038125 0.58625 -1.696875 -0.34125 -2.4975 -0.6375 0.203125 -3.606875 -3.685 -1.509375 -0.574375 -1.52125 0.273125 -1.963125 -2.2175 -1.7775 -0.31 -0.92625 -1.6925 0.5075 1.07375 -0.145625 1.315 -2.675625 -0.23125 -0.585 -3.53875 -0.92625 -0.72125 1.630625 -3.525 -1.379375 -1.26375 -3.95875 1.018125 -1.825 -0.145625 0.245 0.649375 3.670625 -0.93375 -3.5325 -2.365 2.1325 -1.065 0.12875 -0.545 -0.005 -1.5825 -0.21 -1.82375 2.188125 -2.525 0.31375 -0.34125 -0.015625 -2.245625 1.270625 -2.57625 0.54625 -2.8925 -2.19875 -0.07375 -3.698125 -0.334375 2.804375 -0.479375 -1.08 -3.795625 1.190625 -0.833125 -0.27875 -0.335 2.239375 -0.11125 -2.620625 -3.40375 1.156875 0.291875 -2.9775 2.050625 1.556875 1.013125 -1.225625 0.16125 0.18375 0.205 1.940625 -1.133125 2.606875 -0.888125 -2.92625 -3.24 -2.183125 -0.556875 0.150625 3.021875 -0.468125 0.655 0.899375 -3.369375 -1.074375 1.31125 1.5525 -2.13125 -1.903125 -0.01375 -1.4475 1.47625 -0.758125 0.099375 -0.69 -1.200625 -0.52875 0.345 -0.6225 -4.073125 -2.04125 -0.38 -2.43 0.800625 -0.225625 -2.264375 -2.93625 -0.731875 1.511875 0.91375 0.21875 2.98875 -1.67 -2.380625 -1.528125 0.4525 -1.610625 -4.119375 1.581875 -4.64 -3.278125 -0.200625 0.416875 -1.60375 -3.18625 -1.456875 0.9125 -0.43625 0.6275 -0.990625 -1.948125 -0.713125 -1.14125 1.7775 0.05625 -2.085625 -2.65 -1.645 0.969375 -0.19 -3.265 4.100625 1.019375 -4.041875 2.563125 -0.835625 0.279375 2.351875 1.984375 -1.249375 0.39875 -0.806875 1.535 1.199375 0.328125 1.855625 -5.24625 2.1875 -1.609375 -2.605 -2.7275 1.69875 0.801875 -0.473125 -1.24 -1.880625 1.15875 -1.858125 0.745 -2.126875 0.01375 0.546875 -2.24 0.384375 0.86375 -1.055 1.59 -1.666875 -2.290625 0.894375 -3.405 -0.563125 -1.9575 0.001875 -3.643125 2.486875 -1.24625 -0.22625 -3.1275 0.85875 -1.30875 -1.629375 0.61 0.151875 4.796875 -1.27 -3.213125 -0.918125 0.475625 0.481875 0.965 -0.496875 -0.963125 0.026875 0.809375 1.24 0.415625 0.96 -3.203125 -1.15375 -0.8575 1.265 -0.54125 2.19 -3.049375 -0.940625 -0.539375 0.57375 -1.47375 -0.116875 0.634375 -0.41875 -1.60125 -0.156875 -2.68375 0.816875 0.9825 -1.836875 0.896875 -0.508125 -1.415625 -0.5675 -2.495625 -0.185 -2.59625 2.019375 -0.656875 -2.6175 1.678125 -3.318125 -0.703125 -1.4025 -0.336875 3.309375 0.63875 -2.505625 -1.9325 -1.9325 -2.955625 0.714375 4.040625 1.0825 -2.2775 -0.524375 -2.639375 -0.86 2.36125 -0.41625 0.8375 2.044375 -3.2425 -1.90625 -1.9675 -3.09 -2.816875 -1.6575 -1.281875 -2.41875 -0.718125 2.996875 -0.606875 -3.42875 3.04875 -0.71 -0.524375 -0.913125 -2.628125 -3.1075 -0.258125 -1.55 -1.26875 1.3575 0.333125 -0.73875 -0.975625 -2.30625 -1.234375 -1.4425 1.87625 0.861875 -0.455625 2.40375 -1.55875 1.7775 -1 -2.711875 1.36875 0.759375 -1.68625 -0.065625 -3.585625 -0.95625 -1.93125 1.155625 0.244375 1.44125 2.509375 1.539375 -0.15125 -3.278125 2.141875 -0.306875 -1.884375 -0.14875 -1.91125 -0.82125 2.995 -1.535625 1.599375 -0.4425 -0.77875 0.59875 0.20125 1.534375 0.98875 0.116875 0.471875 -2.7475 -2.79375 -2.309375 -0.109375 -0.160625 -1.451875 -2.249375 1.123125 -0.04875 -2.660625 -1.793125 -1.755625 -0.064375 -1.141875 -0.813125 0.8075 -0.6375 -2.535 -0.6475 -1.68375 0.46125 -1.49375 1.73875 -1.371875 0.844375 -0.816875 -2.0825 -0.805 -0.200625 2.083125 1.551875 0.20125 -0.861875 -1.1875 -1.995 -0.3625 1.69375 -0.76875 -4.22875 0.47625 -0.221875 -0.489375 4.236875 1.80625 -0.05375 -3.533125 -0.349375 2.256875 -0.526875 -0.618125 -1.8675 -2.67375 -0.71 0.609375 -1.82875 0.448125 -0.16 -0.61875 -1.980625 -0.31375 -3.149375 3.31875 1.940625 2.23625 -0.610625 -2.04875 0.878125 -3.536875 -0.625 1.73125 1.88 -2.08 0.23375 -2.115625 -0.830625 -0.529375 0.354375 1.779375 0.10125 -2.155625 0.801875 -2.805 -0.61125 -3.604375 0.734375 1.015 0.695 -1.57625 -0.886875 -0.109375 -2.58625 -2.9725 -0.624375 -0.658125 1.3325 -0.805625 -1.515625 0.088125 -1.049375 2.646875 -0.510625 0.364375 0.815625 -0.856875 -0.59625 -1.80875 -0.055625 -1.2225 2.210625 -0.530625 1.425 1.810625 1.095625 1.913125 -2.361875 3.190625 -1.754375 0.774375 0.9175 -2.821875 2.79625 -0.375 -1.24125 -1.214375 0.049375 -1.95875 -0.950625 -1.65 -1.951875 -3.16625 -2.050625 -2.729375 -2.32375 -2.641875 -0.181875 0.77375 2.07 -2.71875 0.864375 0.644375 -0.145 0.601875 0.054375 1.314375 -1.88375 -1.08625 -1.374375 0.59125 2.84125 1.678125 2.7275 0.19375 -2.103125 0 0.79875 -0.405625 -2.02125 1.60625 -1.16125 0.253125 3.43875 -1.56 1.109375 -1.863125 -1.5525 -2.79125 -1.37 1.549375 2.08125 -1.1175 -0.59625 0.10375 1.231875 -3.120625 0.845 -3.55 -1.379375 -0.3775 -0.084375 2.3625 -0.891875 1.53625 -2.576875 1.97625 1.175625 1.8925 -1.646875 -0.145 -0.365625 2.751875 2.72625 -3.896875 -2.091875 0.9125 1.17 0.845625 1.4775 -0.365 0.3625 0.320625 1.5175 0.549375 -3.595 -1.576875 1.045 0.85375 0.2575 -3.4625 -2.379375 -5.29125 0.76125 1.034375 1.755625 -1.086875 -1.179375 0.95625 0.711875 1.623125 1.715 0.018125 -0.914375 -1.3825 0.90125 -0.174375 4.773125 1.514375 -3.5775 0.486875 -3.096875 -0.495625 1.99125 3.7775 1.615625 0.046875 0.754375 0.208125 2.494375 0.361875 -1.210625 1.88125 -4.098125 -0.304375 1.950625 1.418125 1.330625 -1.001875 0.414375 -0.21375 -2.2025 -1.785 1.21125 -0.45625 1.30625 0.240625 -1.860625 -0.909375 3.88875 -0.47375 0.143125 -1.08125 -0.24 1.13875 -0.049375 1.72375 2.7175 -0.3825 1.93875 -1.918125 1.925 -1.0225 1.06 -2.876875 1.095625 2.213125 0.631875 2.97125 3.3975 -0.9075 -1.26125 -1.174375 -0.90125 -1.0975 0.3125 -2.989375 0.9625 0.626875 -2.133125 -1.350625 0.10875 -0.649375 -0.323125 -1.85125 0.993125 0.043125 2.256875 -0.3075 -1.853125 2.64125 -1.6275 0.058125 1.236875 -3.086875 -1.5325 -0.8275 -4.068125 -2.049375 3.26125 1.608125 -3.620625 1.7 -2.70375 -3.978125 1.935 0.684375 -1.08 -1.174375 -0.183125 -0.295 -0.2075 2.54125 -1.013125 1.380625 1.190625 -1.525625 2.06125 -0.661875 2.573125 -1.49 -0.815 -0.441875 -0.461875 0.85875 1.6825 1.046875 1.25 -0.69625 1.350625 -1.239375 -1.088125 0.92125 3.05125 -0.679375 -0.773125 1.08875 -1.839375 1.569375 0.0825 0.5 -0.888125 0.355 -0.6125 -0.4 2.09 1.1125 4.60375 -0.65625 1.26625 -1.610625 4.15625 -0.151875 -1.66625 -1.546875 0.685 -0.034375 -0.940625 -3.560625 2.0775 0.055 -1.29625 1.444375 -0.65875 0.178125 0.8925 -1.35125 0.83375 -0.48625 -2.62125 -1.58875 -0.283125 0.1575 0.050625 0.075625 0.7475 -4.23875 -1.393125 -0.375 3.019375 1.2475 0.370625 1.9925 -0.595625 1.116875 -3.36 1.819375 -1.71375 1.265625 0.49125 1.49625 -0.25 -1.898125 0.45375 -1.74625 -1.35125 0.235625 -3.08125 -0.199375 -0.0875 2.530625 1.399375 -3.76125 -2.7825 0.53125 0.665 -1.62125 1.10875 -2.454375 0.38125 1.790625 -1.199375 -1.225625 0.773125 0.33125 0.345 1.369375 -2.420625 -1.87375 -1.956875 -1.898125 -3.366875 1.82375 2.049375 -2.588125 -2.554375 1.42 -0.573125 0.681875 -0.2425 2.220625 1.344375 -2.476875 1.17875 -1.598125 -1.336875 -0.530625 -0.421875 -3.0525 -0.228125 -3.05 -3.750625 1.381875 -0.696875 -0.21 -0.5675 -2.775 -0.365 -1.795 0.456875 -0.50625 -1.071875 0.689375 -1.605625 -0.57375 -1.92 -0.901875 -3.718125 -2.071875 2.065625 0.635 2.543125 -2.896875 -3.680625 -4.51 -0.596875 2.1625 1.985 4.43625 1.606875 2.076875 -3.308125 1.14375 -0.821875 1.5775 0.995625 -0.05125 -0.780625 3.920625 -0.479375 0.698125 1.68625 1.265625 2.628125 1.824375 -0.2125 -1.87625 -0.860625 0.475625 -2.08125 2.451875 -1.553125 2.49625 0.38625 1.239375 -1.25375 1.55625 1.33125 1.923125 1.79625 1.198125 -1.65 -2.295 -0.160625 1 1.12125 1.81 -0.800625 -0.4225 -1.603125 0.73625 0.846875 0.458125 -1.565625 -1.160625 -1.33 0.213125 -2.948125 0.995625 1.329375 3.044375 0.46 -2.186875 -2.921875 1.345 -1.41125 1.73875 -2.421875 -0.285625 2.45125 1.778125 0.240625 -1.90375 1.663125 -1.52125 -0.62125 3.08125 2.6025 -2.0325 -0.835625 -1.75375 -0.385625 2.165 -1.700625 -1.864375 0.675625 1.790625 -3.38375 3.218125 0.389375 2.081875 -0.04 -1.95 1.993125 1.396875 -1.901875 -0.750625 0.60375 -0.41375 0.708125 1.435 0.6275 0.525625 -2.311875 1.0075 -1.324375 1.629375 -0.186875 -0.725 3.058125 -0.501875 -0.619375 0.131875 1.869375 -2.606875 -1.57375 -1.295625 -1.088125 -2.445 1.320625 2.938125 -0.4 -2.4375 -3.585625 1.58375 -0.155 1.8025 1.10375 -0.6875 0.49875 -5.000625 -1.488125 -2.13375 1.005 3.226875 0.73 -0.105625 -0.93 -0.641875 -1.509375 -0.304375 -1.83125 -0.841875 0.05375 -2.153125 -2.1575 -0.21625 0.33125 1.311875 -2.099375 1.46 -1.209375 0.84375 4.594375 1.07875 1.7075 -0.351875 2.555 1.495 1.211875 -0.008125 -1.831875 -0.173125 -0.646875 -1.539375 2.745 -0.8075 -3.04375 -2.87125 0.753125 0.3975 -2.665625 2.12625 -0.256875 2.788125 -0.634375 -0.031875 2.96 -0.7675 0.50875 -1.719375 +-27.825 -34.370625 -26.4875 -30.3025 -23.34 -28.388125 -24.8025 -29.064375 -28.5475 -26.598125 -26.659375 -22.488125 -27.43625 -23.67125 -22.94 -22.3625 -23.0575 -21.878125 -22.83375 -16.879375 -20.909375 -20.928125 -19.576875 -17.921875 -21.726875 -19.65 -21.43875 -19.25875 -14.93375 -14.904375 -20.82375 -17.935625 -18.35 -17.280625 -16.7 -17.525625 -16.55375 -17.67375 -16.916875 -16.87625 -13.078125 -17.25 -17.605625 -17.881875 -17.548125 -16.4325 -17.168125 -15.65875 -13.55625 -15.888125 -14.67375 -15.413125 -17.5275 -15.021875 -16.3575 -16.22875 -15.04625 -15.741875 -16.275625 -12.855625 -12.1 -14.586875 -14.453125 -14.35625 -14.855 -15.450625 -13.086875 -10.434375 -11.69625 -13.693125 -13.993125 -13.714375 -12.093125 -11.2225 -13.123125 -13.83625 -10.72625 -10.81375 -11.165625 -9.26875 -12.04625 -14.27875 -11.103125 -7.8675 -9.074375 -12.774375 -8.040625 -11.745 -10.150625 -12.376875 -12.32375 -11.600625 -8.318125 -8.900625 -11.45625 -10.745 -9.03 -11.819375 -14.479375 -7.936875 -8.40375 -9.024375 -12.79625 -11.073125 -8.7525 -10.301875 -8.12625 -6.7575 -8.43125 -8.39875 -10.069375 -9.556875 -6.225 -8.63125 -9.94 -8.04125 -7.078125 -8.79 -8.53625 -5.41125 -7.2725 -8.081875 -7.21375 -4.833125 -8.358125 -7.42875 -7.765625 -9.260625 -7.80625 -7.621875 -9.609375 -9.583125 -6.25625 -10.73375 -8.904375 -9.44625 -6.6075 -5.495 -6.251875 -3.0075 -4.959375 -7.09 -5.888125 -6.73625 -7.714375 -6.05625 -6.8025 -5.656875 -11.6175 -6.535 -8.00125 -7.125625 -6.636875 -3.883125 -8.818125 -4.76125 -4.80125 -7.715625 -4.840625 -8.12875 -5.005625 -7.0675 -4.565625 -2.9325 -5.67125 -7.5325 -8.60625 -6.980625 -3.545 -5.421875 -4.278125 -6.540625 -6.488125 -7.46125 -6.105625 -6.68875 -5.36375 -7.844375 -5.249375 -7.5125 -3.494375 -6.009375 -2.473125 -8.09875 -3.431875 -4.92875 -7.244375 -2.563125 -7.8825 -5.76125 -5.811875 -3.694375 -6.24625 -5.158125 -6.640625 -5.42 -6.435 -4.275 -6.6225 -6.389375 -5.07875 -3.898125 -4.300625 -5.410625 -6.34875 -6.891875 -5.714375 -2.583125 -1.86 -4.650625 -4.2475 -2.501875 -1.579375 -6.015 -3.604375 -5.3425 -7.6875 -5.573125 -4.07625 -5.18625 -2.32125 -4.47125 -5.140625 -5.9425 -7.350625 -1.043125 -3.5975 -5.449375 -4.36125 -5.438125 -3.633125 -5.235625 -2.981875 -1.688125 -3.38625 -3.820625 -1.2225 -4.30625 -5.410625 -3.271875 -1.874375 -4.18125 -3.698125 -3.951875 -7.11125 -3.755 -4.308125 -4.72625 -4.84375 -4.518125 -3.15125 -5.413125 -4.848125 -3.4875 -4.378125 -0.153125 -3.8675 -7.29125 -0.855625 -3.610625 -3.055 -4.255 -2.893125 -5.185 -2.315625 -3.4675 -2.96125 -1.761875 -5.701875 -6.34 -4.5175 -4.02 -5.855 -0.264375 -2.353125 -2.249375 -3.485 -3.19125 -2.105 -4.42375 -2.6275 -1.8725 -1.13375 -6.94375 -2.893125 -0.47875 -4.051875 -5.634375 -0.75125 -1.548125 -3.901875 -2.215625 -1.685 -5.490625 -4.03625 -4.266875 -3.780625 -3.098125 -5.44625 -3.250625 -2.885625 -0.985 -5.2075 -2.725625 -3.353125 -3.168125 -2.895 -3.899375 -5.649375 -5.4575 -4.356875 -5.179375 -4.084375 -1.90625 -0.8325 -3.65 -3.334375 -3.034375 -3.805 -3.286875 -1.325625 -3.23875 -1.875625 -2.295625 -2.85125 -2.46875 -1.93375 -3.398125 -3.383125 -1.325 -4.755 -1.353125 -1.145625 -1.690625 -3.150625 -3.76875 -2.745625 -1.27625 -2.1175 -1.2825 -2.190625 -0.641875 -2.140625 -2.235 -0.89125 -4.9575 -5.80625 -5.84125 1.3 -0.86625 -1.896875 -0.9875 -0.754375 -2.26875 -1.358125 -3.339375 -3.179375 -2.794375 -3.17125 -3.8625 -2.295 -2.745 -2.010625 -2.508125 -3.72375 -3.248125 -4.581875 -5.026875 -2.10125 -2.250625 -1.7525 -3.005 0.969375 -0.684375 -2.001875 -1.345625 -2.39125 -2.16 -1.15 0.02375 1.129375 -0.169375 -4.66875 -0.93875 -1.348125 -3.095625 -4.954375 -3.695625 -0.88 -1.084375 -0.66375 -0.624375 -2.33375 -2.819375 -1.54125 -2.065 -2.79625 -1.80125 -3.055 -0.340625 -1.791875 -2.363125 -2.845625 -3.1025 -2.104375 -0.449375 -1.415625 -1.7025 -0.075625 -3.36875 -0.585 0.264375 -2.8125 -0.644375 -0.84375 -2.175625 -1.9225 -2.078125 -1.445 0.178125 -5.58125 -2.769375 -4.733125 -1.425 -1.48875 -2.72375 -2.210625 -2.968125 -1.168125 1.748125 -1.74 -0.5475 -0.523125 -0.27875 -0.275 -1.866875 -0.6675 2.378125 -1.243125 -1.1025 -0.21125 -1.693125 -1.781875 -0.285 -0.801875 -3.399375 -1.30625 -2.7825 -0.7925 -2.85375 0.316875 -0.3175 0.16625 -3.000625 -5.205625 -0.223125 -1.538125 0.53625 -3.815 -1.14875 0.008125 -3.225625 -2.5775 1.305625 -1.110625 -1.20375 -1.9975 0.16625 -2.65375 -1.89 -0.688125 -3.53125 -2.27625 -2.01125 -3.339375 -0.391875 -0.561875 -2.445 0.090625 -1.65625 -0.0975 -2.680625 0.83375 -4.9225 -0.72625 0.561875 0.11625 -0.023125 -3.544375 -2.471875 1.72125 -0.124375 -2.03 0.4425 -1.175625 -0.4625 -0.76875 0.171875 -3.61875 -3.989375 -0.656875 -0.42 -0.74375 -1.804375 -0.170625 0.831875 -1.65375 -0.649375 -2.059375 -2.4975 -3.484375 -2.83875 -3.371875 -2.533125 2.29875 -0.170625 -3.029375 -3.49875 -2.2075 -3.135625 -1.43625 -0.030625 -1.866875 0.33 -0.87125 1.168125 0.75125 -0.89375 -0.265 -0.796875 -0.83 -4.318125 -1.92 -0.13 1.76 -0.92 0.5925 -5.164375 -2.266875 -2.540625 -1.12375 -0.969375 -0.348125 -2.239375 -1.283125 0.8175 -1.360625 -1.140625 -1.325 -3.366875 0.485625 -1.645625 -1.769375 -0.738125 -0.420625 2.85375 -2.62 -1.865 -2.875625 -1.430625 -0.12875 -3.591875 -1.35625 -1.995 1.331875 -3.666875 0.035 -0.505625 1.6125 0.396875 -1.403125 0.24375 0.1675 -0.406875 -0.565625 0.565 -3.4075 -2.443125 0.61875 0.508125 -2.4275 -1.138125 -0.9675 -0.548125 0.859375 0.52 0.4775 -0.05125 -1.2225 0.511875 0.481875 -2.758125 -1.81125 -2.448125 -0.37875 -1.89875 -2.376875 -1.255 1.324375 -1.475 -1.423125 0.45 -2.47125 0.31375 1.315 -0.09375 -1.999375 -2.406875 1.175625 -3.304375 -2.329375 0.183125 -0.7775 -1.3625 2.491875 -1.171875 4.98375 1.5275 0.42625 0.17125 -1.930625 -1.149375 -1.55625 -0.420625 1.465625 -2.415 1.925 0.30375 -0.43375 1.60375 0.906875 -2.103125 1.15875 0.461875 0.62875 -2.71875 -0.238125 -3.346875 -0.149375 0.113125 0.00625 -1.76125 -0.184375 0.3675 -0.05 -0.989375 -2.193125 -3.435 1.62875 -2.165625 -1.9425 -1.06 0.620625 1.648125 -0.13125 1.51125 -1.015 -0.300625 -0.471875 -0.965625 -1.249375 0.615625 -1.844375 0.820625 -0.433125 -2.38 0.104375 -2.061875 -0.065625 -0.448125 -2.225625 -1.116875 -0.4975 0.74375 -1.34 -2.79875 1.07375 0.745625 -0.9 -1.12 -2.85625 -1.0525 -2.80125 -1.341875 -2.758125 -1.801875 0.534375 -1.63625 0.235 -0.71125 1.168125 -3.04375 -2.84625 -1.101875 0.45125 -1.17625 2.31 -0.55125 -0.445625 1.898125 -0.28875 -2.331875 3.028125 1.0925 -0.419375 -2.6175 -0.626875 1.163125 2.504375 -2.95375 -1.0675 -1.7575 -1.639375 0.61 -1.550625 -3.59625 -0.99125 -0.333125 1.738125 0.121875 1.2025 0.68875 2.14 -1.908125 0.27625 2.420625 1.1925 -0.690625 -4.3425 -0.05 2.83375 0.295 0.089375 -0.709375 0.13125 -0.818125 -1.410625 -0.006875 -2.010625 -0.848125 0.534375 -1.0525 -2.24625 -1.145625 3.526875 1.780625 1.43 -3.430625 -0.34125 0.7075 1.669375 0.669375 2.119375 -1.4475 -0.813125 -1.824375 -1.03 -1.6325 1.054375 0.514375 0.234375 1.126875 -1.591875 1.92625 3.590625 -0.190625 0.78875 -0.39375 -3.543125 -1.67 1.13875 -3.43125 -0.161875 -0.9175 2.2375 -0.49625 0.065 0.19375 0.1425 -0.944375 0.9175 1.715 2.1675 -0.453125 2.145 -4.03125 -1.98875 2.934375 -0.610625 1.741875 -2.041875 1.058125 1.57875 -0.73 -1.07 -0.633125 1.448125 -0.0225 1.27 -1.171875 -1.01625 0.929375 -0.42125 2.93 1.909375 -0.811875 -0.560625 0.434375 -2.508125 -1.810625 0.47875 -0.469375 3.39625 -0.671875 -0.4025 0.246875 -0.235 -1.958125 -1.54125 -3.750625 -0.2025 3.434375 -0.310625 4.50375 -3.0925 -3.5675 -1.694375 0.005 -1.396875 -0.135 -0.92 1.8925 -0.499375 -1.164375 0.39625 2.65375 0.705 0.504375 -0.79125 -3.229375 0.428125 -1.575 -1.346875 -1.515625 -2.269375 -3.415625 -1.043125 -3.6775 -1.4125 0.2975 -0.118125 -1.95875 -3.880625 1.820625 0.02875 0.503125 -1.36875 -1.63125 -0.253125 1.214375 1.404375 -1.761875 0.74125 -3.011875 -2.195 -1.771875 1.69625 -1.33 -4.65625 -0.86375 -0.23875 -1.82 -2.788125 -2.963125 0.384375 -0.38375 1.701875 -0.8375 -2.716875 0.795625 0.45875 1.1075 -3.1825 1.105 0.214375 3.4625 -1.3 -4.184375 -0.725625 -1.32375 -1.596875 -4.654375 0.0725 3.90625 2.168125 -2.08 0.189375 1.561875 -0.768125 3.30875 1.101875 0.25 -2.103125 -0.72125 -0.18875 1.4625 1.504375 1.359375 -2.118125 0.3925 1.98625 -0.556875 -2.87375 -0.256875 1.985 -2.5475 -1.096875 -3.415 0.463125 0.355 -1.1825 -0.96 -2.7425 -2.725 0.495625 2.3325 -0.554375 1.255625 -1.891875 -3.255625 -0.538125 -1.05875 -1.07875 0.50125 0.683125 0.34875 -1.69375 -3.488125 -0.06625 -0.5425 1.085625 -1.861875 -0.69 0.195625 1.791875 -0.585 -2.565625 -0.285 -3.174375 -1.54 -1.300625 -1.145625 -0.691875 0.469375 -0.035625 -1.735 1.94375 -1.20125 -1.40875 -0.551875 0.671875 -1.854375 1.978125 1.00375 -1.51125 1.26625 -3.47375 -1.86 -0.61125 -0.313125 -0.190625 1.6025 -1.17375 -0.679375 -1.629375 -0.25375 -2.55375 0.95375 2.20875 -1.1775 -2.359375 -0.293125 -0.793125 0.006875 -0.413125 2.58 -3.58 3.04625 -1.9075 -0.8825 -1.661875 -1.93875 -1.7325 -2.2975 -2.473125 -1.136875 -1.73375 -1.049375 -0.818125 0.658125 0.260625 0.50875 2.425 -2.11375 1.480625 0.178125 1.280625 0.3025 -1.563125 2.28625 -0.745625 -1.58625 -4.146875 0.73125 -1.445 -2.02125 1.5975 1.566875 1.476875 0.740625 0.8625 -1.395 0.276875 -0.18875 -1.78875 0.60125 -2.160625 2.399375 -0.145625 1.70625 3.063125 -2.749375 -1.783125 -1.085625 -3.741875 0.80375 -0.479375 -2.186875 0.44375 -1.158125 -3.374375 -3.3025 -0.72375 -2.044375 1.00125 0.52125 1.678125 -1.879375 -0.90125 1.619375 -2.365 -0.0625 -0.7875 -3.98125 0.959375 -2.1525 1.9975 -3.689375 -1.141875 0.709375 -0.491875 -3.31 -1.15875 -2.58125 -1.47 -0.99375 -1.896875 -0.609375 0.635625 0.8975 1.13875 -1.395625 0.56375 1.525625 -1.043125 -1.155625 -1.32 -1.145625 -1.808125 -2.91 -2.249375 -0.226875 -2.40125 -2.07375 -1.149375 1.819375 -2.136875 -0.54125 2.211875 0.875 -1.774375 -1.0175 -4.184375 -1.28125 0.571875 0.964375 -0.491875 -2.203125 -2.345 -1.6925 -2.2575 -2.29375 -2.113125 -0.113125 -1.379375 2.263125 -1.61125 1.384375 0.283125 0.015 -0.87875 -0.721875 -1.195625 -2.71875 -1.444375 1.26875 0.68125 0.99625 -4.54125 -0.759375 -0.284375 0.770625 0.33375 0.063125 2.618125 -2.50375 1.176875 -0.075 -0.69125 0.3975 -0.0475 -0.741875 2.358125 1.336875 1.02875 1.27125 -0.2075 1.66875 -0.75125 0.156875 -1.77625 -0.450625 -1.278125 1.656875 -0.45 -1.530625 0.618125 -1.128125 1.463125 2.576875 -0.515 0.153125 -0.48375 0.876875 -0.595625 -0.5275 -0.241875 -1.7125 -1.8425 -1.293125 -1.764375 -1.899375 0.05125 1.080625 -1.23875 -2.4475 -0.205625 -1.828125 -0.324375 2.30375 -0.70625 -0.5575 0.901875 -1.7 1.234375 -1.79875 -0.015 -1.456875 0.45375 -0.44875 0.379375 0.44125 -1.79375 -2.045 -0.690625 -1.973125 -1.181875 0.815 -0.195625 -2.889375 -0.826875 2.55625 -0.060625 1.314375 0.67 -3.56125 0.181875 0.5525 2.671875 1.53125 -4.235 1.0175 -0.889375 -0.846875 2.049375 1.338125 1.1 0.305625 -2.55625 -0.40625 1.229375 -1.04875 0.0325 0.42875 1.045625 -0.70125 0.861875 -0.048125 1.499375 -2.564375 1.5425 1.79875 0.00625 0.558125 -1.70875 2.22875 1.318125 0.800625 -2.695625 1.565625 2.05625 0.771875 2.18625 2.395625 -2.92375 -2.33 2.371875 -2.253125 2.85375 -2.395625 -0.915 -3.363125 0.27375 -0.921875 0.08125 -0.499375 -0.31625 -0.216875 3.898125 -1.10125 -1.141875 -2.868125 0.84 -2.06 0.9875 -1.415625 0.169375 3.56375 1.18 -1.649375 -0.70875 0.61 1.24375 -0.495 1.58125 -2.485625 -2.410625 -0.78375 1.280625 1.908125 -0.146875 1.4825 -0.735625 2.15375 2.455625 0.935 -0.52 1.593125 -1.74625 -1.9675 1.0825 -0.394375 0.52375 2.0225 -1.3575 0.8175 1.9375 -2.150625 0.160625 -0.87125 0.575625 -1.981875 1.585 -0.338125 -2.16625 1.93625 -3.220625 0.896875 -0.41125 0.076875 2.8925 0.124375 -1.2275 -1.186875 0.763125 0.016875 0.6125 -1.21125 -0.386875 3.42375 1.920625 -0.678125 -0.554375 2.190625 -0.710625 1.209375 2.571875 -1.405 1.310625 -2.43375 -0.243125 0.401875 -1.3675 -0.495625 -0.4525 2.184375 -1.110625 0.37625 -3.506875 0.176875 0.060625 -0.194375 1.525 -1.140625 -1.929375 -0.194375 -0.36375 -1.396875 -2.38625 0.32625 -0.219375 1.87875 1.195 -0.005 2.841875 1.6725 -2.390625 0.19625 -0.145 1.444375 -0.11875 -1.4725 0.886875 3.811875 0.005625 2.419375 -0.323125 -1.54375 1.759375 -0.95375 2.0875 -1.86375 -4.023125 -1.06875 -0.643125 0.53875 -0.44875 -1.39375 -1.85125 -4.6875 2.383125 -2.52625 -1.413125 2.054375 2.464375 1.273125 -1.2875 3.611875 0.08875 -1.448125 1.34 1.48 -1.638125 -0.995 1.658125 -1.359375 -1.29875 1.025625 -0.25125 -0.315625 -0.159375 0.301875 -2.844375 -1.355 3.03625 -5.63625 1.89875 0.104375 -0.4775 1.655625 -2.550625 -1.510625 0.8375 0.223125 -2.890625 -1.8925 0.525625 -2.65625 0.860625 -2.705625 1.4725 -0.078125 0.49125 -0.325 -0.471875 2.828125 1.155625 -0.809375 -0.6625 2.386875 -0.266875 -3.49875 -2.451875 1.02875 0.83375 1.134375 0.14 -0.836875 -2.184375 2.004375 1.705625 -0.101875 -2.331875 1.24125 -1.220625 0.041875 3.0075 1.268125 -3.535625 -1.11 2.98125 -2.323125 1.649375 -0.045625 -1.301875 1.614375 -1.553125 -2.551875 3.04875 0.76 -0.028125 1.621875 0.641875 0.746875 -2.71625 0.000625 1.73375 0.894375 -0.71375 2.335625 0.36125 -1.55625 0.58875 -0.231875 -0.23375 -0.065625 -2.40375 -2.33875 -2.79625 -4.114375 -0.048125 -0.745 -1.181875 0.465625 -2.571875 1.15375 -0.18625 -0.313125 0.885625 -1.296875 -2.674375 -0.301875 1.78 1.283125 -1.529375 -1.5525 0.65875 -0.811875 2.879375 0.18625 0.071875 0.698125 1.126875 -0.279375 0.07875 -1.945625 0.8075 1.341875 2.379375 0.823125 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_160ms_ref.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_160ms_ref.hrd new file mode 100644 index 0000000..ad0d767 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_160ms_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 160 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035363 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-0.006875 -0.00375 0.043125 0.02375 0.04 0.040625 0.009375 0.076875 0.053125 0.059375 0.02 0.02375 0.00375 0.0075 -0.01375 -0.029375 -0.019375 -0.05625 -0.031875 -0.0175 -0.049375 -0.0075 0.019375 -0.01875 -0.030625 0.01125 -0.0125 -0.013125 0.031875 0.001875 0.01 -0.023125 -0.060625 -0.02375 0.023125 -0.035 0.009375 -0.019375 0.00625 -0.053125 -0.0225 0.000625 -0.039375 0.003125 0.01 0.035625 0.01875 0.03875 0.08375 0.04375 0.018125 0.016875 0.030625 0.025 0.011875 0.02375 -0.01125 -0.049375 -0.01375 0.0175 -0.0525 -0.008125 -0.031875 -0.02625 -0.021875 0.03625 0.003125 -0.018125 -0.015625 0.03 0.056875 0.031875 -0.0375 0.00625 -0.0075 -0.0425 -0.080625 -0.02375 -0.039375 -0.064375 -0.003125 -0.026875 -0.034375 -0.018125 -0.02125 0.001875 0.003125 -0.00875 -0.015625 0.0175 0.05125 0.03125 0.02625 0.030625 0.023125 -0.03125 0.035 0.004375 -0.01125 -0.026875 -0.0425 -0.006875 -0.074375 -0.026875 0.0325 0.04625 0.010625 -0.038125 0.03 -0.003125 -0.03 -0.02875 -0.0175 -0.0425 -0.0125 -0.036875 -0.008125 0.006875 -0.044375 -0.04 -0.02 -0.035 -0.0325 0.004375 -0.02 0.035625 0.046875 0.005625 0.00875 0.031875 0.0025 0.015 0.01125 -0.03 0.00125 0.003125 0.0025 0.016875 0.00625 -0.069375 -0.064375 -0.02625 0.036875 0.01375 -0.01 -0.029375 -0.041875 0.020625 0.025625 0.0625 0.000625 0.023125 0.041875 0.01875 -0.02125 0.029375 -0.031875 0.015 -0.0275 -0.016875 -0.016875 -0.0275 -0.064375 -0.0225 -0.016875 0.055 -0.0125 -0.01125 0.00125 0.01875 0.0575 0.04625 0.05 0.04375 0.009375 0.035 0.028125 0.010625 -0.014375 0.02875 0 -0.055 -0.003125 -0.0275 -0.035 0.016875 -0.0525 -0.01625 0.000625 -0.03375 0.02 -0.015625 -0.03125 0.010625 0.011875 -0.035625 -0.04625 0.003125 -0.011875 -0.083125 -0.045 -0.029375 -0.036875 -0.035 0.005 0.00625 0.005625 0.03875 0.015 0.046875 0 -0.02375 0.008125 0.055 0.06625 0.06125 0.011875 0.0425 -0.0225 0.014375 -0.00125 0.028125 -0.04875 0.015625 0.003125 -0.0625 -0.02375 -0.014375 0.02125 -0.004375 -0.01625 0.050625 -0.00125 -0.03875 0.015 0.04 -0.040625 -0.005625 0.0125 0.001875 -0.000625 0.0175 -0.054375 -0.00875 0.03125 -0.049375 -0.029375 0.005 -0.034375 0.021875 0.02375 0.01125 0.0175 0.010625 0.04875 0.058125 0.026875 0.051875 0.024375 -0.005625 0.015 -0.00875 0.01375 0.00875 -0.039375 -0.04 -0.02 -0.0175 -0.05 -0.015625 -0.03 0.013125 -0.009375 0.02125 -0.00875 -0.00625 -0.01125 0.0325 -0.03875 -0.003125 -0.0125 -0.031875 -0.045 -0.05375 -0.055 -0.020625 -0.03375 0.010625 0.005 -0.0325 0.013125 0.01875 0.011875 0.026875 0.043125 0.048125 0.0125 0.010625 0.0275 0.066875 0.048125 0.033125 0.015 0.06625 -0.02875 -0.026875 -0.011875 -0.065625 -0.05125 -0.009375 -0.021875 0.01125 -0.045 -0.01625 0.006875 0.0425 -0.031875 0.04125 0.015625 -0.0425 0.036875 0.000625 0.008125 -0.026875 -0.099375 -0.023125 -0.0375 -0.0025 0.00875 -0.0075 0.005 -0.010625 -0.021875 -0.006875 -0.031875 0.045625 0.115625 0.038125 0.01625 0.055625 0.0425 0.0075 0.005 0.010625 0.038125 -0.01 -0.01375 -0.005 -0.0525 0.009375 -0.015625 -0.03125 -0.04625 0.004375 0.008125 0.065625 -0.015625 -0.049375 0.028125 0.004375 -0.001875 -0.029375 0.025625 0.010625 0 -0.050625 -0.058125 -0.039375 -0.02875 -0.0175 -0.0175 0.001875 0.028125 -0.01125 0.026875 -0.008125 -0.006875 0.02 0.01375 0.0375 -0.01875 0.025 0.0175 0.033125 0.016875 0.015 0.00625 -0.03625 0.010625 -0.013125 0.005625 -0.0625 -0.00875 0.008125 0.065625 0.00375 -0.01 0.001875 0.005625 0.015625 0.013125 -0.014375 -0.061875 -0.00125 0.028125 -0.025 -0.02875 -0.035 -0.038125 0.001875 -0.051875 -0.04375 0.01625 -0.016875 -0.050625 0.014375 0.035625 -0.006875 0.021875 0.04125 0.055 -0.03875 0.01875 0.023125 0.036875 -0.026875 0.020625 -0.005625 -0.00625 -0.0325 0.001875 0.003125 -0.04 0.00125 -0.040625 -0.029375 -0.03125 -0.024375 0.000625 -0.00125 -0.005 0.021875 -0.025 0.030625 0.00125 0.035 -0.0725 -0.07125 0.008125 -0.04125 -0.030625 -0.04 0.01375 -0.004375 0.0075 -0.015625 -0.0275 -0.005 0.004375 0.0225 0.025625 0.04875 0.025625 0.005625 0.065 0.05 0.02875 0.006875 0.005 -0.0175 0.03375 -0.05625 -0.02625 0.026875 -0.020625 -0.011875 -0.0325 -0.0275 -0.009375 0.011875 0 0.015 0.01625 -0.01125 0.050625 -0.01125 -0.015625 -0.040625 0.00625 -0.010625 -0.029375 -0.058125 -0.036875 -0.005625 0.025625 -0.0225 -0.025 0 0.005 -0.026875 -0.005625 0.04 -0.019375 0.064375 -0.03 0.043125 0.0375 -0.00875 0.029375 0.018125 0.009375 -0.020625 0.02625 -0.020625 -0.014375 0.02 -0.005 -0.035 -0.006875 -0.02125 -0.00625 -0.03875 0.00125 0.018125 0.029375 -0.01875 -0.004375 0.009375 -0.00375 0.00375 -0.01375 0.03375 -0.075 -0.01125 -0.000625 0.055 -0.0025 -0.016875 -0.0675 -0.043125 0.018125 0.025625 0.015 0.053125 -0.01375 0.055625 0.044375 0.0075 0.020625 0.024375 0.039375 -0.00375 -0.00625 0.009375 -0.033125 -0.046875 0.01 -0.0125 -0.00625 -0.021875 0.02125 -0.025 0.035625 -0.079375 0.0125 0.035 0.03 0.010625 -0.030625 -0.005625 0.003125 -0.00375 0.008125 -0.006875 -0.0075 -0.03875 -0.046875 -0.018125 -0.056875 -0.05375 0.07875 0.00875 0.036875 0.060625 0.01 -0.01 0.061875 0.00375 0.038125 0.028125 0.021875 0.034375 0.04875 -0.00375 -0.03875 -0.000625 -0.011875 -0.01625 -0.005625 0.00125 -0.033125 -0.036875 0.010625 0.001875 -0.01625 0.015625 0.020625 0.0075 0.008125 0.004375 -0.00625 0.018125 -0.030625 -0.056875 0.014375 -0.03125 -0.04 -0.055625 -0.05875 -0.065625 -0.04375 0.026875 0.0125 0.00375 0.085625 0.03875 -0.02125 0.04 0.03875 0.005 -0.03875 0.045625 0.0475 -0.063125 0.008125 0.04375 0.0025 -0.03125 -0.055 -0.06375 -0.04125 -0.0375 -0.023125 0.02375 0.009375 0 -0.013125 0.01375 -0.006875 0.00125 -0.000625 0.023125 -0.000625 -0.01875 -0.005 -0.0175 0.0025 -0.04875 -0.0325 -0.031875 0.010625 -0.0325 -0.0525 0.023125 -0.031875 -0.00375 -0.0275 0.045 0.030625 0.04 0.010625 -0.03375 0.01625 0.055 0.03625 -0.013125 0.008125 -0.010625 0 -0.00375 -0.02375 0.005 -0.069375 -0.07 0.029375 -0.01125 0.018125 0.01 0.01125 -0.046875 0.004375 0.0275 0.025625 0.014375 -0.03 -0.031875 0.015625 -0.05125 -0.03875 -0.03375 -0.035 -0.04625 -0.04875 -0.041875 -0.025 -0.0425 0.015625 0.0025 0.013125 0.004375 0.075 -0.008125 0.02625 -0.016875 0.010625 -0.03875 -0.010625 -0.001875 -0.013125 -0.039375 -0.026875 0.0175 -0.009375 -0.053125 -0.02875 -0.07875 -0.023125 0.006875 -0.011875 0.021875 0.01375 0 -0.01625 0.03 -0.010625 -0.00875 -0.06375 0.0125 -0.031875 -0.04 -0.011875 -0.025 -0.04625 -0.018125 -0.004375 -0.0175 -0.00125 -0.00875 -0.020625 0.009375 0.021875 -0.00875 0.0125 0.035 0.045 0.043125 0.031875 -0.025 0.04125 0.0025 -0.010625 -0.033125 -0.004375 0.029375 -0.01875 -0.045 0.00125 -0.065 -0.048125 -0.00375 0.0175 -0.043125 -0.004375 0.00375 -0.048125 -0.020625 -0.009375 0.011875 -0.045 -0.025625 -0.05375 0.0075 -0.0175 -0.0575 -0.04125 -0.010625 0.000625 -0.02625 -0.02375 -0.0025 0.008125 -0.010625 0.043125 0.05 0.035625 0.024375 0.015625 0.06125 -0.04625 -0.0175 0.039375 0.034375 0.0025 0.00875 -0.03875 -0.080625 -0.009375 -0.014375 -0.045625 -0.02125 -0.030625 -0.01 0.01375 0.00875 -0.008125 0.07375 -0.0175 -0.009375 0.000625 -0.020625 0.02375 -0.016875 -0.025625 -0.026875 -0.025 -0.03375 -0.02875 -0.0125 -0.006875 0.005 0.0375 -0.033125 0.03125 0.02 0.066875 -0.03375 0.069375 -0.005 0.0325 0.018125 0.0075 -0.01125 -0.028125 -0.003125 -0.0675 0.01875 -0.070625 -0.016875 0.005 -0.00625 -0.019375 -0.024375 -0.000625 0.016875 0.013125 0.01875 -0.020625 0.0175 0.0275 0.01125 -0.01375 -0.0175 -0.016875 -0.026875 0.005 -0.06125 -0.00375 -0.010625 0.005625 -0.035 -0.0125 -0.005 0.00375 0.015 0.045 0.0625 0.0325 -0.0125 0.05 0.014375 0.029375 0.036875 0.0175 -0.00625 -0.000625 0.0025 0.0175 -0.04125 -0.01875 0.03875 -0.036875 -0.04625 -0.025 0.011875 -0.00625 -0.054375 0.078125 0.0275 0.03125 -0.045625 0.005625 0.015625 0.006875 -0.020625 0.015625 -0.004375 -0.0375 -0.046875 -0.0225 -0.03 -0.01 -0.019375 -0.030625 0.026875 -0.02375 0.050625 0.025 0.03375 0.031875 0.04375 0.124375 0.001875 0.005 0.03875 0.003125 -0.000625 -0.0825 0.06 -0.021875 0.006875 0.019375 -0.026875 0.02375 -0.046875 -0.02125 0.02375 0.02375 -0.03625 0.021875 0.00375 -0.023125 -0.0075 0.006875 0.049375 -0.000625 -0.0825 0.001875 -0.025 -0.016875 -0.005 -0.040625 0.005625 -0.064375 -0.015 0.01375 0.031875 0.003125 0.036875 0.031875 0.04 0.033125 0.05125 0.029375 0 0.008125 0.010625 0.016875 -0.02875 0.0075 -0.00125 -0.02875 -0.069375 -0.06 -0.041875 -0.001875 0.015625 -0.010625 0.021875 -0.014375 0.00875 0.008125 0.053125 0.003125 -0.0075 -0.01125 0.01125 -0.036875 -0.025 -0.05875 -0.01375 -0.026875 -0.031875 -0.051875 -0.046875 -0.03125 -0.006875 -0.030625 0.00625 -0.00625 0.03375 0.05375 0.07625 0.051875 0.045 0.090625 0.03 0.023125 0.026875 0.033125 -0.00375 -0.02625 -0.0075 -0.058125 -0.04875 0.01 -0.009375 0.01125 -0.031875 -0.030625 0.023125 0.060625 0.035 0.0225 -0.0475 -0.038125 -0.034375 0.030625 -0.01875 -0.033125 -0.03625 0.00875 0.005625 -0.04625 -0.085625 0.005625 -0.039375 -0.03125 0.086875 -0.003125 0.048125 0.035 0.035 0.005625 0.06375 0.079375 -0.00125 -0.000625 0.006875 0.01625 0.025 0.023125 -0.009375 -0.03625 -0.0225 -0.005625 0 -0.01 -0.025625 -0.0275 0.009375 -0.03 -0.019375 0.015625 0.061875 0.045625 0.014375 0.008125 -0.02 -0.026875 -0.011875 0.00375 -0.03125 -0.038125 -0.03875 -0.028125 -0.02125 -0.00875 -0.01875 0.038125 -0.028125 -0.011875 0.030625 0.0275 0.045625 0.045625 0.046875 -0.02875 0.048125 -0.034375 -0.00875 0.02625 -0.016875 -0.015 -0.00375 -0.0425 -0.023125 -0.001875 -0.015625 -0.040625 -0.014375 -0.01875 -0.02625 0.006875 -0.055 -0.0275 -0.03375 -0.058125 -0.016875 0.004375 0.01625 0.0125 -0.014375 -0.005 -0.010625 -0.0675 0.005625 -0.02 -0.044375 -0.036875 -0.01125 -0.0075 0.003125 0.056875 0.05125 0.00125 0.02875 0.03125 0.03 0.018125 0.02375 0.00125 0.02125 0.000625 0.00125 0.011875 -0.031875 -0.006875 -0.019375 -0.028125 -0.03 0.015 -0.00125 0.02625 -0.010625 0.018125 0.01125 0.008125 0.015 0.040625 0.020625 -0.0375 -0.034375 -0.024375 0.008125 -0.019375 -0.034375 0.005625 -0.055 -0.0725 -0.09625 -0.03625 -0.054375 -0.006875 0.034375 0.075 0.04125 0.01375 0.02625 0.073125 0.023125 -0.021875 0.021875 -0.018125 0.010625 0.029375 0.034375 0.03625 -0.043125 0.01375 0.020625 0.01125 -0.046875 -0.02 -0.0275 -0.055 0.00625 0.0175 -0.0225 0.0275 -0.01875 0.013125 0.02875 -0.01125 -0.003125 -0.060625 -0.023125 -0.005 -0.040625 -0.06125 -0.018125 0.021875 0.00375 -0.015 0.031875 0.053125 0.041875 -0.02375 0.016875 0.07 0.0575 -0.00625 0.004375 0.023125 0.010625 0.058125 -0.01 0.00625 0.0125 -0.019375 -0.068125 -0.01625 0.008125 -0.02125 -0.01 0.024375 0.003125 0.025625 0.018125 -0.01375 0.01125 0.026875 0.00625 -0.00125 -0.003125 -0.045 0.0075 0.013125 -0.00625 0.05 -0.063125 -0.044375 -0.0575 -0.01125 0.01625 -0.04 -0.015 0.03375 -0.05375 0.04625 -0.00125 0.080625 0.0275 0.02125 0.070625 0.03875 0 0.035625 -0.046875 0.0225 -0.020625 0.035 0.03 -0.005625 -0.026875 -0.006875 0.035625 -0.06625 -0.024375 -0.005 -0.0175 -0.025 0.005 0 0.008125 0.04125 -0.008125 -0.036875 -0.000625 0.025 0.01125 0.029375 -0.084375 -0.064375 -0.031875 -0.06625 -0.01125 0.000625 0.006875 0.04125 0.025625 0.063125 0.059375 0.019375 0.005 0.0575 0.06625 0.028125 0.00125 0.025 -0.01125 -0.02125 0.021875 -0.0025 0.00125 -0.019375 -0.02875 0.009375 -0.023125 -0.00375 0.02625 -0.003125 0.035 -0.021875 0.016875 -0.008125 0.008125 0.023125 -0.001875 0.020625 -0.0175 -0.03875 0.019375 0.000625 -0.025625 -0.03 0.00125 -0.039375 -0.023125 0.018125 0.019375 0.081875 0.02 0.060625 0.04 0.068125 0.045 0.050625 0.0525 0.0425 0.0125 -0.001875 -0.03875 -0.01625 -0.024375 0.01625 -0.018125 0.011875 0.02375 -0.01625 0.0175 0.015625 0.05375 -0.013125 0.014375 0.01625 -0.02125 -0.03875 -0.0025 0.036875 -0.001875 0.00375 0.006875 -0.01875 -0.05125 -0.03875 -0.025 -0.003125 -0.0175 0.031875 -0.025 0.0125 0.026875 0.054375 0.046875 0.055 0.0125 0.06125 0.0225 0.07375 -0.02 -0.015625 0.01875 -0.009375 0.006875 -0.01125 0.000625 -0.03375 -0.025625 0.009375 -0.03375 -0.0125 0.025625 -0.01875 0.021875 -0.015625 0.02875 -0.02 0.01 0.003125 -0.0175 -0.03 -0.001875 -0.038125 0.01125 0.001875 -0.0275 0.039375 -0.025625 -0.020625 -0.015 -0.001875 0.020625 0.020625 0.004375 -0.040625 0.010625 -0.018125 0.04875 0.07875 0.066875 0.061875 0.020625 -0.01125 -0.02875 0.0075 -0.015625 -0.015625 -0.00125 -0.01 -0.008125 0.03875 -0.023125 -0.010625 0.024375 0.02 0.039375 0.02 -0.0075 0.014375 -0.016875 0.011875 0.013125 -0.03625 -0.034375 0.0325 -0.035 -0.045 -0.04625 0.039375 -0.05 -0.00625 -0.03125 -0.031875 0.028125 0.001875 0.039375 0.0025 0.01 0.023125 0.036875 0.075625 -0.049375 0.0625 -0.03875 0.051875 0.0075 -0.039375 0.009375 -0.005625 0.0075 0.0075 0.02125 0.01125 0.001875 0.015 -0.001875 -0.008125 0.0075 0.01375 0.015 -0.0325 0.011875 -0.00625 0.02125 -0.071875 -0.0025 -0.01125 -0.020625 -0.05125 -0.029375 0.008125 -0.004375 -0.039375 -0.038125 0 0.010625 0.0475 0.04375 0.03 0.005 +0.0325 0.05 0.041875 0.04 0.0325 0.004375 0.0425 0.056875 0.03125 0.045625 -0.019375 0.0525 0.005625 0.024375 -0.0225 0.06625 -0.000625 -0.013125 0.01375 -0.003125 -0.040625 -0.038125 -0.035625 0.009375 -0.02375 0.025625 0.008125 0.01625 0.058125 -0.02375 0.033125 0.003125 -0.024375 0.00625 -0.020625 0.009375 -0.010625 -0.03375 -0.010625 -0.025625 -0.026875 0.0075 -0.0175 -0.003125 0.02 -0.031875 0.005625 0.065625 0.035 0.06125 0.0425 0.01875 0.025625 -0.00875 0.0225 0.02125 -0.009375 0.03125 -0.01 0.01375 0.0025 -0.03375 0.016875 -0.029375 0.0075 -0.055625 0.035625 0.026875 0.03625 0.01625 0.036875 -0.01125 -0.01375 0.010625 0.0125 -0.03125 -0.03625 -0.054375 -0.023125 -0.001875 -0.031875 0.0175 -0.043125 0.04875 0.0175 0.02375 -0.004375 0.00375 0.02875 0.026875 -0.043125 0.02125 -0.009375 0.031875 -0.01375 0.01375 0.01 0.02 -0.065625 0.043125 -0.016875 -0.04625 -0.01 -0.035 0.075 0.050625 -0.015 -0.0125 0.0275 -0.0125 0.0325 -0.020625 -0.00125 -0.010625 0.0225 -0.026875 -0.0625 -0.03125 -0.05375 -0.025625 -0.021875 -0.016875 -0.030625 -0.01625 0.01625 0.008125 0.039375 0.03 0.026875 0.0675 0.02375 -0.00625 0.013125 0.019375 0.034375 -0.0625 0.019375 -0.005625 0.025 -0.014375 -0.003125 0.000625 -0.049375 0.0025 -0.015625 -0.055 0.029375 -0.01375 0.01375 0.043125 -0.035625 -0.0025 -0.0075 0.05375 -0.055625 0.00875 -0.020625 -0.0325 0.003125 -0.0425 -0.01375 -0.004375 -0.000625 0.00125 -0.019375 0.023125 -0.0125 0.003125 0.0625 -0.055 0.004375 0.013125 0.013125 0.02125 -0.023125 0.0625 0.05375 0.03875 -0.028125 -0.039375 -0.015 -0.01375 -0.00375 -0.005625 -0.0325 -0.00375 -0.02375 -0.030625 -0.033125 0.013125 -0.009375 -0.010625 -0.015625 0.003125 0.0225 0.0375 0.01125 -0.05875 0.005625 -0.014375 -0.0525 -0.01 -0.001875 -0.02125 -0.035 -0.02125 0 0.005625 -0.006875 0.02625 0.05 -0.005625 0.055625 0.0525 0.02875 0.01625 0.04625 0.04375 -0.016875 -0.04125 0.013125 0.02625 -0.011875 0.02125 -0.04 -0.040625 0.020625 0.023125 -0.04375 0.023125 -0.0275 0.01 0.006875 0.031875 -0.0025 0.060625 0.025625 0.02 -0.00125 -0.005 0 -0.005625 -0.043125 0.023125 -0.024375 -0.05625 -0.046875 -0.02875 -0.01375 0.009375 0.045 -0.006875 0.039375 0.01375 0.004375 0.0475 0.018125 -0.01 0.009375 0.046875 0.02 0.00125 -0.003125 0.00375 -0.008125 0.008125 0.00625 -0.045 -0.008125 -0.016875 -0.03875 0.034375 -0.023125 0.015625 0.024375 -0.045625 0.02625 -0.074375 -0.02875 -0.01625 -0.01625 -0.0275 -0.069375 0.015 -0.035625 -0.023125 -0.003125 -0.026875 -0.03625 0.05125 -0.010625 -0.0025 0.026875 -0.0075 0.011875 -0.005 0.02125 0.034375 0.03875 0.00875 -0.016875 0.010625 0.065625 0.00875 -0.04125 0.0125 -0.01125 0.01375 -0.018125 -0.0025 -0.01375 0.029375 -0.020625 -0.019375 0.0375 0.011875 0.04 0.02625 -0.03 -0.005625 0.019375 -0.0425 0.036875 0.04 0.0275 0.055 -0.023125 -0.010625 -0.024375 -0.036875 0.026875 0.021875 -0.01875 -0.00375 -0.000625 0.055625 0.07 -0.0275 0.01875 0.058125 0.065625 0.01875 0.03375 -0.00625 -0.035625 -0.01125 0.023125 -0.023125 0.003125 0.00875 -0.043125 -0.018125 0.010625 -0.02375 -0.00125 -0.025625 -0.024375 -0.013125 0.025625 -0.001875 0.019375 0.023125 0.03375 0.013125 -0.011875 -0.02375 -0.049375 -0.043125 -0.015 -0.035625 0.00625 -0.02 -0.000625 -0.023125 0.01 0.016875 0.02 0.041875 0.034375 -0.025 -0.000625 0.054375 0.02 -0.00125 0.05375 0.00625 0.010625 0.025625 -0.00625 0.003125 0.005625 -0.039375 -0.046875 0.03375 -0.009375 -0.01375 0.01875 0 -0.02375 -0.011875 -0.004375 -0.03 -0.00125 -0.03125 0.003125 -0.029375 -0.019375 -0.024375 -0.0075 -0.0225 0.006875 -0.04 -0.05125 -0.02375 -0.015625 -0.003125 -0.008125 -0.0075 0.033125 0.00375 0.0275 0.030625 0.045625 0.02375 0.0575 0.038125 -0.005625 -0.013125 -0.034375 -0.02 -0.01125 -0.068125 -0.019375 -0.035 -0.050625 -0.02625 -0.005 -0.025 -0.02375 0.018125 0.01125 0 0.005 0.004375 0.0125 0.009375 -0.035625 -0.048125 -0.054375 0.013125 -0.02375 -0.048125 -0.013125 -0.05 -0.055 0.02375 0.005 0.034375 -0.003125 0.014375 -0.00625 0.033125 0.0225 0.025 0.034375 -0.024375 -0.01375 0.01625 0.014375 0.01125 -0.065 0.035625 -0.08 -0.025 0.000625 0.00125 -0.04125 0.0025 -0.03625 -0.00875 -0.038125 -0.019375 -0.005 0.019375 0.030625 0.01 0.016875 -0.0275 0.013125 0.000625 0 0.04125 -0.03375 -0.038125 -0.009375 -0.011875 -0.00875 0.025 -0.02875 -0.009375 0.0375 0.006875 -0.005 0.004375 -0.010625 0.0125 -0.01125 0.026875 0.02625 -0.0025 0.025 -0.00625 -0.0025 0.013125 0.048125 -0.005 -0.035625 -0.0125 -0.0375 -0.004375 -0.00125 0.0025 0.00625 0.000625 -0.004375 0.03125 -0.00625 0.01375 -0.00875 0.036875 -0.02625 -0.019375 -0.02125 0.0225 -0.008125 -0.039375 -0.04375 -0.024375 0.004375 -0.006875 0.00625 0.053125 0.02125 0.01125 0.015 0.038125 0.071875 0.000625 0.0275 0.04 0.005625 0.063125 -0.006875 0.03 -0.040625 -0.03625 -0.00625 -0.003125 -0.03875 -0.014375 -0.030625 0.0125 -0.00625 -0.009375 -0.015625 0.005 0.014375 0 -0.020625 -0.005625 -0.015625 -0.0175 -0.00125 -0.0475 -0.034375 0.033125 -0.02 0.011875 -0.05625 -0.01625 0.01 0.049375 0.01875 0.018125 0.015625 -0.033125 0.03875 0.00625 0.0025 0.06375 0.0275 -0.008125 0.0125 0.030625 0.005 0.016875 -0.041875 -0.01875 0.014375 0.015 -0.01625 0.028125 -0.013125 -0.039375 0.023125 0.006875 0.008125 -0.030625 -0.04125 -0.016875 -0.0025 -0.000625 -0.019375 0.021875 -0.005625 -0.03875 0.02125 -0.019375 -0.01625 0.026875 -0.035 -0.016875 -0.006875 -0.005625 0.02 0.004375 0.02375 -0.006875 0.045625 0.03125 0.0175 0.015 -0.0125 0.021875 0.044375 -0.024375 0.01125 -0.00375 -0.035 -0.019375 -0.02125 -0.05625 -0.011875 0.015625 0.01 0.040625 -0.026875 0.03 -0.06 -0.0225 -0.005625 -0.005 0.044375 0.0125 -0.05875 -0.016875 0.0125 0.02125 -0.026875 -0.015 -0.05625 0.02 0.01375 0.035 0.016875 0.031875 0.014375 0.020625 0.015625 0.04875 0.021875 -0.018125 -0.013125 0.029375 0.016875 -0.005 0.015625 -0.015625 -0.025625 -0.045 -0.0025 0.068125 -0.07125 -0.03125 0.00125 -0.0525 -0.01625 -0.03 -0.02125 -0.041875 0.01375 0.000625 0.019375 -0.009375 0.000625 -0.00125 0.024375 -0.004375 -0.09375 -0.043125 -0.06125 -0.069375 -0.02625 -0.025 -0.050625 0.025625 -0.00125 0.00375 0.020625 0.045625 0.064375 0.003125 -0.019375 0.0175 0.045625 -0.00125 0.0075 0.003125 -0.003125 0.00625 0.036875 -0.004375 0.004375 -0.01375 0.025 -0.0225 -0.01875 0.013125 -0.008125 0.04625 -0.01 -0.003125 -0.04 -0.00375 0.00875 -0.0475 -0.006875 0.030625 0.00375 -0.02375 -0.02375 0.025625 -0.01625 -0.02125 0.01 0.01625 -0.020625 0.006875 0.01875 -0.01625 -0.039375 0.023125 0.000625 0.05125 -0.014375 0.04875 -0.015 0.001875 0.03375 0.0275 0.001875 -0.000625 -0.045625 0.0325 -0.010625 0.00125 -0.033125 0.01625 -0.029375 0.04625 -0.019375 -0.020625 -0.0025 -0.03875 0.005 -0.008125 -0.05875 -0.01 -0.031875 -0.010625 -0.028125 -0.04125 -0.0425 -0.05 0.0225 -0.02125 0.0025 0.019375 0.001875 0.019375 0.02625 0.01625 0.0675 0.023125 0.010625 -0.01125 0.034375 -0.033125 -0.01625 -0.00375 -0.019375 0.020625 -0.01375 -0.019375 -0.011875 -0.006875 -0.02625 -0.018125 0.01375 -0.030625 0.001875 0.011875 0.019375 -0.014375 0.005625 0.0325 -0.04125 0.04625 0.001875 -0.01875 0.0125 -0.01 -0.030625 0.004375 -0.026875 0.009375 -0.001875 -0.035 -0.029375 0.01125 0.03125 0.0775 0.025625 -0.009375 0.01875 0.015 0.003125 0.05 0.04875 0.01625 0.016875 0.038125 0.029375 0.019375 -0.026875 0.0125 0.02625 -0.0325 -0.04125 -0.00625 -0.020625 -0.03375 -0.021875 -0.0225 -0.00875 0.04375 0.025 -0.039375 0.006875 0.0125 0.00625 -0.030625 -0.011875 -0.014375 0.00125 -0.02375 -0.0175 -0.035625 0.024375 -0.02125 -0.023125 0.053125 0 0.016875 -0.00625 0.015 -0.000625 0.06375 -0.02125 -0.0275 -0.01875 0.024375 -0.001875 0.00625 0.01 0.006875 -0.050625 -0.0175 -0.031875 -0.0075 0.009375 0.0325 -0.009375 -0.024375 -0.07 -0.02875 -0.0375 0.00875 0.016875 -0.010625 -0.015625 -0.0025 -0.020625 0.00125 0.000625 0.026875 -0.05875 -0.090625 -0.02125 0.02 0.009375 0.014375 0.025 -0.00875 -0.003125 0.02125 0.05625 0.046875 -0.01875 0.023125 0.030625 -0.025 -0.0425 0.024375 0.019375 0.021875 0.00125 0.0125 -0.020625 -0.0025 -0.02375 -0.018125 -0.018125 -0.0125 0.01375 0.005625 -0.015625 0.01125 -0.04875 0.0075 -0.02625 0.041875 -0.01125 0.019375 0.001875 -0.04 -0.004375 0.00375 -0.029375 -0.025625 0.024375 0.0125 -0.061875 0.00125 0.01 -0.0375 0.010625 -0.01875 0.068125 0.064375 0.06125 0.049375 0.003125 0.039375 -0.034375 -0.00125 0.025 0.061875 0.0075 0.024375 -0.00875 -0.04125 -0.055 -0.013125 0.016875 0.016875 0.004375 0.006875 0.008125 0.05625 0.045 0.008125 -0.02 0.025625 0.00375 -0.0175 0.00875 0 -0.038125 -0.03375 -0.0375 0.0175 0.024375 -0.01375 -0.01375 -0.006875 0.025 0.039375 -0.0025 -0.02875 0.0225 0.064375 0.0325 0.035 0.01625 -0.045 0.036875 -0.000625 -0.0325 -0.0175 -0.0175 -0.005625 0.028125 -0.000625 -0.034375 -0.000625 -0.025 -0.01375 -0.001875 -0.00875 0.00375 0.01625 0 -0.030625 -0.055625 0.02625 -0.03375 0.019375 -0.01 0.028125 0.015625 -0.024375 -0.00375 -0.020625 0.023125 0.02875 -0.00375 0.00375 -0.026875 0.020625 0.013125 0.004375 0.045 0.030625 -0.00875 0.0275 -0.0275 0.016875 0.054375 -0.021875 0.02375 -0.02 -0.019375 -0.021875 -0.006875 -0.035625 0.013125 -0.034375 0.02375 -0.004375 -0.015 0.033125 0.030625 -0.04375 0.021875 -0.038125 -0.003125 0.0025 -0.02375 -0.004375 -0.018125 0.03375 -0.051875 -0.013125 -0.001875 0 -0.060625 -0.0025 0.033125 -0.00625 -0.01 0.0125 -0.00875 0.0175 0.004375 -0.016875 0.0075 0.000625 0.039375 -0.014375 0.031875 0.005 -0.0425 -0.000625 -0.02375 -0.011875 -0.034375 -0.0275 -0.005 -0.049375 -0.01875 -0.019375 0.02375 -0.0075 0.014375 0.048125 0.01625 0 -0.016875 -0.008125 0.059375 -0.019375 -0.035625 -0.03875 -0.026875 0.0325 0.015 0.005625 0.025625 0.010625 0.01625 -0.016875 0.03625 0.006875 0.04 0.035625 0.010625 0.058125 -0.025625 -0.006875 0.014375 -0.01875 0.0575 0.04125 0.006875 -0.058125 0.0025 -0.014375 -0.02 -0.011875 0.0125 0.02625 -0.001875 0.02875 0.020625 0.001875 -0.015 -0.035 0.025625 0.004375 -0.005 -0.025 0.0175 0.023125 0.004375 0.00375 -0.036875 0.0175 -0.0175 0.013125 -0.016875 0.05875 -0.0075 0.025625 -0.039375 0.013125 0.028125 0.035 0.0025 0.004375 0.02125 0.034375 0.013125 0.003125 0.029375 -0.026875 0.014375 -0.02 0.0175 -0.016875 0.03875 -0.051875 -0.015625 -0.045625 0.004375 -0.000625 -0.015625 -0.005625 -0.031875 -0.005625 -0.05875 -0.02375 -0.0275 -0.0125 -0.03375 -0.005 -0.035 -0.019375 -0.034375 -0.02125 -0.046875 -0.011875 0 -0.03125 -0.04 -0.001875 0.020625 0.03875 0.0175 0.029375 0.061875 0.048125 0.0475 0.035 -0.023125 0.0025 -0.009375 0.040625 -0.015 -0.054375 -0.005 -0.00375 -0.03375 0.019375 -0.030625 0.01625 -0.003125 0.023125 -0.045625 0.046875 -0.00125 -0.003125 -0.05625 -0.015625 -0.021875 -0.0025 -0.005625 0.0425 0.014375 0.006875 -0.016875 -0.02875 0.000625 -0.00125 -0.035625 -0.020625 0.001875 0.0525 0.009375 -0.03625 0.039375 -0.0175 0.014375 0.033125 0.05125 -0.00875 -0.04375 -0.028125 -0.0375 0.041875 -0.025 -0.036875 -0.03375 0.01125 -0.046875 0.023125 0.03625 -0.01875 0.0025 0.04125 -0.010625 0 0.020625 -0.010625 -0.025625 -0.014375 0.00625 0.006875 -0.03 0.009375 0.028125 0.046875 0.020625 -0.02125 -0.0025 0.004375 -0.02 0.001875 0.000625 0.00125 0.031875 0.060625 0.0325 -0.00625 0.0125 0.053125 0.010625 -0.0075 0.01125 -0.018125 0.028125 -0.000625 -0.068125 -0.02625 -0.034375 0.0175 -0.0275 -0.005625 -0.01875 0.000625 -0.01875 -0.036875 -0.04625 0.0175 -0.0275 0.00375 -0.01875 0.02375 -0.03125 -0.01 -0.0225 -0.01 -0.023125 -0.0625 -0.0075 -0.01375 -0.04625 -0.00375 0.004375 0.02125 -0.03 0.018125 -0.01625 0.00625 0.041875 0.02 0.05375 0.02 0.018125 -0.005 -0.03375 0.015625 0.0025 -0.0275 0 -0.06875 -0.01125 -0.051875 -0.01375 -0.094375 -0.015625 0.018125 -0.000625 0.005 0.0275 -0.005625 0.025 0.001875 0.05125 0.008125 0.01625 0.0125 0.015 -0.02125 -0.03875 0.015 0.011875 -0.02 0.00625 0.015 0.01125 -0.01875 0.02625 0.013125 -0.029375 0 0.034375 0.001875 -0.0175 0.0325 0.020625 0.01 -0.02125 -0.00375 -0.01125 -0.0375 -0.068125 0.000625 -0.043125 0.013125 -0.020625 -0.050625 0.0275 -0.010625 -0.009375 0.009375 0.009375 -0.005625 0 0.015625 0.00375 -0.000625 -0.0275 -0.026875 0.003125 -0.035 -0.0525 -0.06 -0.01375 -0.0425 -0.045625 -0.030625 -0.013125 0.025 0.03375 0.026875 0.05875 0.016875 0.045625 0.045 0.048125 0.013125 0.036875 0.010625 0.0475 -0.018125 -0.020625 -0.02125 -0.021875 -0.041875 -0.0375 -0.02125 -0.01375 -0.03125 0.038125 0.004375 0.025625 -0.005625 0.019375 -0.01 0.056875 -0.023125 0.006875 -0.0175 -0.023125 -0.006875 0.0075 0.003125 0.030625 0.0225 -0.026875 -0.03625 0.008125 0.01125 -0.015 0.0475 -0.006875 -0.02375 0.056875 0.025625 0.04625 -0.010625 0.03 -0.016875 0.021875 -0.0025 -0.00875 0.00625 -0.0125 -0.01 -0.04875 0.019375 -0.004375 0.005 0.02125 0.01625 -0.020625 -0.008125 0.04 -0.01375 -0.03875 0.005 -0.0225 0.02625 0.01125 -0.028125 -0.005625 -0.05125 -0.01 0.011875 -0.065625 -0.013125 0.0225 0.015 -0.025625 0.02 -0.0025 -0.00375 0.036875 0.013125 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_16ms.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_16ms.hrd new file mode 100644 index 0000000..33c14dd --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_16ms.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 16 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035053 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-3.980625 -3.6025 -3.081875 -3.455 -4.09375 2.149375 -1.089375 -4.0125 0.0725 -1.890625 0.71375 -0.479375 2.228125 1.240625 -2.45125 -2.36125 -1.925 -3.051875 -3.644375 -2.273125 -0.41375 -0.403125 -1.710625 -0.351875 0.044375 -0.763125 0.605625 -0.418125 -0.756875 1.044375 -0.795 0.433125 1.265625 -0.6275 -1.166875 2.92125 1.37625 1.87125 4.048125 -3.9825 -0.785 1.744375 1.4475 -0.20125 3.83625 0.8525 -0.125 0.57125 3.361875 1.406875 1.840625 0.64125 2.3325 4.370625 0.64375 1.705625 6.22125 -0.088125 0.20875 0.966875 3.44375 4.670625 0.538125 2.43375 2.17625 2.561875 1.735 4.125 3.941875 0.508125 1.40625 -0.163125 0.188125 1.898125 3.60625 0.79 -0.000625 3.008125 -1.943125 0.786875 2.32125 2.78 3.260625 1.421875 1.946875 1.63125 1.089375 5.37 2.056875 3.236875 -1.28375 1.440625 2.95875 1.446875 2.866875 0.46875 1.791875 -0.94875 -1.83875 0.614375 -0.530625 1.725 1.04 2.274375 1.244375 1.526875 -0.343125 0.235625 0.424375 -0.34 2.43125 4.025625 1.179375 -0.61625 1.050625 2.6075 -3.075625 2.8425 2.826875 2.74125 4.85125 2.828125 3.96875 1.780625 3.916875 3.693125 6.274375 0.68625 3.106875 1.354375 4.1425 4.40875 1.341875 3.774375 -0.18 0.749375 -1.148125 -1.993125 3.1475 1.5025 -1.285 0.97375 2.56625 1.2175 1.208125 5.175 -0.62125 1.92125 -0.335 1.668125 2.375 2.619375 -1.838125 4.960625 1.02375 0.944375 2.651875 2.153125 1.05625 0.08375 0.961875 0.8375 -0.6425 -0.185 1.016875 1.19375 3.36875 -0.038125 1.16375 5.03625 -0.589375 0.7125 -0.41 0.276875 0.23625 1.64875 3.76875 3.455625 3.758125 -0.354375 3.62125 -1.38875 1.625625 3.525 0.460625 0.83875 1.481875 0.09 5.291875 1.285625 -0.38125 1.7375 3.008125 1.44625 0.73 2.515 3.1875 0.9225 4.541875 0.791875 0.65375 -0.16375 0.506875 0.71625 2.588125 3.29875 1.41625 2.27375 2.005625 1.19125 -0.41375 -1.550625 2.46125 1.115625 0.230625 1.914375 -1.4225 1.02625 0.87625 -0.64375 3.1975 2.2775 0.0075 0.928125 1.54625 0.475 1.815 2.084375 2.708125 3.91375 0.518125 1.425 3.33375 2.985 2.493125 0.93625 -0.1875 -0.27 0.305625 1.753125 1.0725 3.985625 1.3725 1.94375 0.078125 -2.083125 2.805 1.8025 4.34875 -0.140625 -0.06375 1.973125 2.75875 1.55375 3.559375 -0.13125 -1.9675 -1.08625 1.03875 -1.550625 0.4375 0.974375 1.0425 0.078125 2.171875 0.089375 1.60125 -2.1525 -1.013125 -4.3275 1.471875 -0.718125 0.259375 3.786875 0.62 4.756875 0.33625 0.953125 1.873125 1.5775 3.284375 2.130625 2.178125 1.620625 2.70875 1.603125 0.883125 2.5325 0.835625 1.91375 -0.23125 0.44125 3.6 1.645 1.694375 -2.328125 -2.035 0.79125 3.899375 1.570625 1.00625 0.549375 -0.318125 3.330625 3.15625 3.23375 3.0325 0.259375 3.49875 -1.6275 3.7075 3.023125 -0.37125 0.74625 4.2075 0.295 1.841875 0.8275 0.684375 1.664375 3.4775 0.674375 -1.33625 1.215 -2.955 2.54 1.1875 3.7375 -0.993125 0.5975 4.76125 3.484375 1.308125 1.18625 -1.769375 2.040625 1.67375 1.36 0.4075 1.60875 3.245 -0.80125 3.083125 4.131875 -0.311875 2.03 0.5 2.7325 4.00625 -0.943125 2.19 0.5825 0.4125 -0.8225 3.09625 -1.5625 3.58875 -1.078125 0.035625 2.540625 -1.316875 1.621875 0.49125 1.219375 1.058125 2.2825 2.020625 -1.12875 1.47 3.4425 0.25875 0.23625 -1.299375 0.388125 0.455 2.57875 2.378125 1.98375 2.156875 1.46 2.071875 1.324375 3.208125 1.11375 0.65875 -0.814375 3.013125 2.771875 1.960625 0.009375 2.106875 1.454375 2.101875 4.060625 0.1425 -0.86 -0.103125 1.54375 3.645625 -2.865625 -0.060625 2.22625 3.17875 -1.64375 -0.364375 0.595 2.445 1.63625 2.58875 2.05875 0.481875 -1.36 3.73 3.53 -0.024375 0.43625 0.71375 -0.04875 -0.216875 -0.703125 -1.37375 2.371875 4.9675 0.710625 1.165625 1.239375 1.36125 1.894375 -1.195 0.72375 -2.558125 2.97 1.11 -2.866875 -1.173125 -3.898125 1.940625 0.5825 1.61625 -1.4525 1.955625 -0.7375 0.334375 2.328125 0.226875 -0.22625 -1.30125 -0.78625 2.1875 1.46625 -0.094375 1.168125 -0.626875 3.77 0.725 0.28625 0.3825 3.11 2.8925 -0.69125 1.78 -2.615625 2.54 1.298125 1.084375 0.24125 1.16375 -0.81375 1.628125 1.155 0.8425 1.40625 -2.255625 3.723125 1.210625 0.325 0.89125 2.558125 -0.703125 1.720625 1.525625 -0.364375 0.5525 1.585625 -1.164375 -0.775625 -1.745 0.2175 0.99125 2.0575 0.94375 1.499375 2.6725 2.92375 2.236875 2.3425 -0.2925 0.296875 -0.320625 0.42 4.485 -2.065 0.875625 1.55375 0.665625 0.253125 0.209375 0.87375 -2.2125 -2.88625 2.80375 -0.758125 0.8525 4.1375 -0.36875 -1.3175 0.593125 0.901875 -0.9625 1.308125 -2.010625 0.1225 1.4075 2.34625 4.099375 2.943125 3.935625 1.04375 2.064375 0.701875 0.95625 2.940625 2.5275 -1.395 -0.23 5.8725 -0.46625 0.35625 -0.06 0.77 3.0475 1.225 3.098125 2.431875 -0.7475 2.669375 0.24 3.085 0.780625 -1.1825 1.550625 -0.10625 4.786875 -0.845 3.691875 -0.80875 -0.845625 -2.565625 -0.720625 0.080625 1.31625 3.88125 0.64375 -0.904375 -0.76125 0.065 6.470625 -1.368125 -2.095 2.66375 -0.385625 1.860625 1.039375 0.95875 -0.039375 1.35375 -0.47 1.894375 1.57 -1.72125 0.716875 -0.19125 -0.899375 0.59625 -0.18 -0.050625 0.445 -1.980625 0.614375 1.285625 1.416875 2.6125 -0.73875 0.22125 0.831875 -3.14125 -0.86 -4.494375 3.08 1.746875 0.33375 0.44125 2.375 -0.173125 0.15125 1.543125 2.079375 -0.094375 1.41625 4.4225 0.92625 1.80125 1.09625 0.2075 -2.043125 1.0825 0.906875 3.99875 2.116875 -1.375 1.245 2.154375 0.91125 -0.104375 -1.0225 1.105625 -0.125625 1.015625 2.90625 2.138125 3.863125 -0.950625 0.610625 -1.644375 1.365625 -0.94625 2.60625 -0.05625 1.315 -0.371875 2.214375 1.210625 0.770625 -0.405 0.726875 0.1325 0.39 -1.111875 -0.223125 1.315625 -2.81875 -2.084375 -2.86625 3.51875 2.69375 -0.653125 -0.0625 -1.54625 0.25375 -0.673125 -1.88875 -1.249375 2.04375 0.1425 1.46875 0.041875 -1.558125 4.93 1.425625 2.406875 1.95 1.973125 -1.826875 0.931875 1.23375 0.360625 0.7775 -3.715625 0.55375 -1.369375 1.4275 1.8875 4.699375 1.214375 -1.455 1.6275 -0.74375 -2.395 -4.095 1.875625 0.855625 -0.411875 0.2975 -0.944375 1.96625 2.829375 0.551875 -0.44125 2.265 2.828125 1.7325 3.1625 -0.44 -0.448125 1.420625 1.439375 1.726875 0.59375 1.98875 0.3925 -1.228125 0.2625 -0.679375 0.883125 0.02375 2.04375 0.93375 -1.91 -1.99875 1.26875 0.71125 3.1575 0.363125 -1.211875 -1.114375 0.46375 -0.040625 2.62375 0.311875 -2.04125 -1.191875 -0.701875 0.785 1.37125 0.851875 2.808125 -3.375 -0.274375 1.27375 -0.465 1.173125 -0.848125 1.47125 -1.591875 -0.204375 -0.834375 -1.410625 2.135625 2.065 1.074375 0.66125 -0.016875 3.21 -0.52 0.174375 0.084375 -1.806875 2.386875 -1.605625 -0.38625 2.216875 -1.546875 1.94375 -0.949375 0.518125 2.90875 1.32125 -1.86125 -0.26 -2.244375 1.629375 1.52625 0.064375 1.6375 -0.689375 1.355 1.8225 0.595625 1.6725 -2.595 1.465 0.638125 1.899375 0.87875 -1.2175 0.188125 0.263125 -0.398125 -1.495625 0.494375 1.61625 -2.45 -3.529375 0.453125 0.42625 -0.981875 -0.598125 0.97875 2.130625 -0.216875 0.04125 0.04625 -3.861875 1.6525 -0.8175 0.6375 -1.1125 1.401875 0.65125 3.838125 1.36625 1.141875 1.82875 -1.718125 0.378125 2.725 1.9525 1.610625 -0.719375 -2.2975 0.44125 -1.153125 0.89375 3.515 0.084375 -0.989375 0.86 -0.340625 1.5075 -1.706875 1.698125 -0.62375 0.33 2.19 1.71875 3.310625 0.211875 0.94375 0.901875 1.941875 1.2 0.00625 3.37 -1.126875 -1.00875 1.774375 2.8 3.3375 -1.320625 2.12125 1.2725 2.15125 -1.28875 2.629375 2.3825 2.79125 1.904375 -0.8675 -1.45375 -0.429375 1.86 0.6725 0.76875 2.87125 -1.113125 1.77875 -2.09625 -1.141875 4.77875 -0.610625 4.86375 -0.930625 -0.705625 -0.449375 1.801875 0.219375 -0.750625 4.050625 -2.200625 2.72375 2.003125 1.006875 -0.02 0.798125 -0.448125 4.475625 -1.01 -2.318125 0.93 0.305625 1.6225 -3.535 3.121875 1.385 -0.11625 -0.070625 -0.10875 0.37625 -1.359375 3.128125 -0.7 -3.60625 0.98625 -1.428125 1.195 1.280625 -1.275625 -1.2475 0.05375 0.555625 2.015625 -1.87625 -1.30625 0.49 2.01875 1.214375 3.520625 0.929375 0.97875 -0.618125 -0.7 0.828125 -0.9975 -0.045 0.505625 0.42625 -1.280625 0.51375 1.76625 1.76875 -4.07 -2.8825 -0.605 2.438125 1.07875 0.858125 -0.13375 1.4375 -1.98875 1.505 0.524375 1.551875 3.60625 -0.553125 0.333125 -1.389375 2.34875 1.606875 1.938125 -0.06 1.774375 -1.761875 -0.34625 1.770625 1.805625 -1.655625 1.295 -1.49875 -0.9 -0.493125 0.995625 1.476875 2.43875 -1.0925 1.3675 -0.735 -1.285 3.9275 0.129375 1.808125 1.653125 3.674375 1.044375 -3.160625 -2.1475 -2.63375 2.575625 -2.285625 1.2625 1.435 0.464375 1.25125 -2.548125 0.448125 1.03625 -1.383125 -0.9675 0.2225 3.19125 3.37875 1.718125 0.2375 -0.595 -0.399375 1.889375 2.58625 2.045 0.06125 0.97125 2.084375 -0.563125 1.518125 1.88875 -2.461875 -1.030625 -1.21625 -2.23875 1.318125 3.11875 0.5125 -0.8275 0.675625 -0.32875 -2.548125 3.215625 -2.5775 -0.10125 1.25625 2.101875 -0.3925 -1.1225 -0.223125 -0.84 1.7975 3.648125 -0.640625 -0.5725 -0.055 0.0525 -2.2925 -1.093125 0.89875 0.016875 1.87375 0.59125 1.351875 -0.151875 -1.035625 0.726875 0.01375 -0.33625 -1.283125 0.035625 3.05 -1.459375 -0.4325 0.30125 -0.44875 1.79625 -3.36625 0.45375 -0.038125 2.240625 0.50875 1.865 -0.2375 -0.89125 -1.855 0.1375 -0.79125 0.961875 0.5125 1.488125 2.79125 -0.61125 1.588125 1 -2.195 -1.018125 -2.049375 -0.106875 -2.075 0.0375 -0.745625 0.690625 -4.494375 -0.575625 0.543125 0.760625 0.168125 2.42875 1.194375 0.369375 0.765625 3.73375 2.24875 0.435 -0.441875 0.74 0.066875 1.283125 1.736875 1.74625 -1.13375 -2.729375 -1.415625 0.50625 -0.0875 -1.694375 -1.62125 1.640625 -0.876875 1.459375 0.47375 2.3225 4.805625 -0.011875 -0.039375 -1.7825 0.878125 0.47875 0.504375 3.77375 3.588125 -1.30875 -1.070625 0.31875 -0.780625 -1.86625 -2.165 2.86875 2.244375 -1.03125 1.074375 0.339375 -1.80375 0.960625 1.310625 -2.874375 1.511875 1.17125 0.48 -2.00625 -0.381875 -1.81125 0.101875 0.08625 0.80125 0.676875 0.525625 -0.5175 0.19875 -0.474375 0.413125 -3.965625 0.696875 0.25625 4.216875 -0.708125 0.730625 -1.36625 0.565625 0.879375 -2.2525 2.6825 1.225625 -3.424375 -1.7525 -1.711875 -2.69 -2.61125 1.651875 0.206875 -1.31375 0.698125 -0.086875 -2.194375 1.584375 -1.166875 -0.955 3.583125 -0.6175 -1.475 2.4125 -0.641875 1.824375 2.705 0.38875 -0.57625 1.729375 0.609375 2.47125 -0.604375 1.71625 -2.233125 -3.051875 -1.55625 0.106875 -0.4175 -2.32375 -1.114375 3.09125 3.193125 1.86875 -1.32625 0.269375 -0.52625 3.438125 -1.223125 2.08 1.599375 0.349375 0.74375 1.70125 0.939375 2.5075 -1.68375 -1.215625 3.13 -0.0075 0.59375 3.0575 0.745 1.868125 2.16875 0.370625 -1.561875 -0.620625 1.56125 -0.8525 -1.30875 -1.93375 3.085625 0.92125 0.598125 -0.505 0.16125 -0.045625 -2.269375 -1.6975 -2.055 -1.7225 1.145 -1.64 0.895 -1.741875 -0.201875 -0.641875 0.774375 -0.169375 -0.51 2.335 -0.61 -3.22125 0.960625 1.810625 -1.271875 0.679375 -2.509375 -2.706875 1.6 2.12625 -0.89375 0.4675 -0.783125 1.045 -1.166875 -0.966875 0.9975 -2.776875 -0.095625 -0.1875 -0.841875 0.494375 0.33375 3.648125 0.31625 0.238125 -1.913125 1.74 2.939375 0.95875 1.14625 0.066875 -0.336875 -0.62 2.466875 -0.41375 0.8325 -0.81375 -0.21625 -1.394375 -0.934375 -1.128125 -0.7425 -2.17 0.508125 -0.22125 0.735625 -0.73125 1.175 -0.11 -1.873125 -0.44625 1.39 1.08375 -0.826875 1.605 0.37625 -1.6225 -0.70875 -2.8375 0.11875 -1.92875 2.538125 -1.26875 -0.07375 1.51625 0.21375 -1.495625 -0.585 -0.43125 -1.360625 2.575625 0.364375 2.05875 3.31 -0.2375 2.750625 -2.049375 1.7125 0.825 2.53125 -1.695 -1.494375 -2.3375 -1.4325 0.876875 -0.2775 3.04 -2.464375 -1.71875 -1.403125 0.890625 1.115625 0.389375 3.16875 2.170625 -0.0725 1.10625 -1.30125 0.636875 0.408125 -3.27625 0.755625 -0.94 0.84375 1.181875 1.190625 0.116875 -0.704375 2.1975 -0.753125 -3.363125 -1.205 -1.49125 2.57625 2.709375 1.608125 1.05125 1.116875 -1.44875 1.64375 -3.34625 0.11 0.1775 1.56875 4.95 1.440625 2.315 -1.203125 0.006875 -1.90125 2.93 -0.083125 1.4225 -1.2825 0.01875 1.15 2.3225 1.533125 0.561875 1.34625 -0.949375 -1.373125 -1.004375 -2.64375 -2.09625 -2.054375 -0.86875 0.838125 1.235 1.78375 1.655625 -2.04375 -0.844375 -3.594375 -0.015 1.568125 1.87875 0.670625 1.499375 1.44875 0.464375 -3.24875 -0.791875 -0.4625 -1.18625 4.633125 0.7875 2.28 1.08625 -1.931875 0.21375 -3.20875 1.269375 3.590625 0.04875 1.44 -0.89625 -2.035 0.444375 -0.0075 0.30125 -0.281875 -0.16125 1.826875 -0.321875 -1.61375 -1.70125 4.1825 3.091875 1.50375 2.191875 0.5375 -1.2475 0.509375 -0.529375 -1.82 -0.52375 0.571875 3.33625 -0.905625 -3.09 0.151875 0.0475 -0.744375 -1.205625 -0.251875 1.78875 -0.04625 1.1725 -0.185625 2.055 1.451875 2.175625 0.821875 -0.18125 1.764375 -1.27375 -1.66875 1.033125 -0.888125 0.910625 0.44625 -1.724375 0.63625 1.5925 -0.190625 1.108125 0.011875 -0.329375 0.80375 -3.8975 1.03375 2.408125 2.085 -1.41125 -0.596875 -0.129375 1.82125 -0.063125 1.033125 -0.365 -1.383125 3.245 3.28 1.841875 2.879375 -1.404375 -1.83375 -1.255 1.0875 1.501875 1.24875 0.1875 -0.428125 0.49 1.5325 2.865 +-3.611875 -3.6275 0.171875 -6.99625 -3.1775 -4.2625 -0.6775 -0.940625 -2.248125 -1.394375 0.05 0.223125 -1.584375 0.54375 -2.346875 -1.6125 -0.906875 -0.5125 -0.728125 -0.36125 -2.240625 0.58 2.81125 -1.179375 2.71125 -1.32625 -0.875 -0.909375 -1.85 -1.17 -1.06375 0.155 1.986875 1.69625 2.26375 1.973125 0.99875 -0.19625 2.350625 1.561875 2.135 -0.055625 1.841875 0.39625 1.63625 1.90625 2.319375 1.865 0.710625 0.330625 3.133125 1.376875 0.318125 1.185625 2.35 3.465625 1.409375 1.448125 2.3975 0.88875 3.42375 -0.425625 2.74 2.73875 3.055625 -0.80875 -0.216875 -0.44625 -1.17 4.1925 3.31875 1.97 1.554375 0.44375 0.3575 0.25125 -0.388125 0.6225 2.905625 0.60375 2.32375 3.964375 0.86125 1.31 1.445625 1.950625 -0.219375 0.243125 4.5275 0.973125 2.536875 1.075 0.09625 1.0175 2.113125 1.02125 1.96 3.8775 2.760625 2.569375 2.078125 2.195625 3.695 0.7475 5.405625 3.06375 5.065625 1.95 3.545 2.589375 5.165 -1.07375 2.684375 2.195625 1.469375 3.394375 -0.055 4.600625 1.21 3.375 2.905 1.473125 3.75625 4.51125 3.9475 3.615 2.310625 2.43875 2.045 0.215 2.085 0.250625 1.1175 3.16625 4.3375 1.634375 3.70125 2.8775 3.4025 0.39 2.3825 2.671875 3.52625 0.516875 3.723125 0.1325 4.4825 3.808125 0.20875 1.554375 0.995625 0.73 3.181875 3.120625 1.8825 1.5625 1.87375 0.118125 1.686875 4.849375 2.023125 1.995 1.08 0.91875 0.8125 7.334375 2.093125 2.83125 2.74125 1.025625 1.613125 -0.30375 0.435625 3.0275 3.344375 2.1025 -0.26125 6.41625 1.713125 5.638125 3.638125 -0.49125 2.045625 2.465625 4.17625 3.186875 3.613125 2.749375 0.6675 1.6 2.62875 3.23625 -1.103125 2.069375 2.7125 1.33875 -0.22875 0.9325 3.25125 0.218125 1.763125 2.181875 -2.1325 1.475625 3.67125 0.13875 -0.194375 0.456875 0.91125 0.228125 2.900625 3.09625 1.549375 -0.353125 -0.804375 4.981875 2.30375 -0.493125 2.40125 1.958125 -0.6225 2.994375 3.5675 4.36375 2.37625 1.7 1.838125 2.295625 2.7325 3.11625 1.59375 0.421875 0.87625 -0.03 2.995625 2.43375 2.909375 2.386875 4.846875 1.073125 1.46125 -0.23625 1.675 3.0275 2.836875 -1.3925 0.86125 1.191875 5.08375 0.116875 3.44 4.793125 0.1075 2.088125 2.51625 4.26375 2.12625 4.086875 1.795 3.83625 2.1875 2.34625 1.71875 0.395 4.763125 1.9675 2.230625 2.395 1.54875 3.518125 0.934375 -1.26625 1.778125 0.895625 2.988125 1.321875 3.720625 1.87875 -0.130625 0.165625 2.45 -0.13875 1.085 -0.630625 0.42125 2.510625 -0.310625 3.021875 1.2975 -0.031875 1.03375 0.1125 -0.275625 1.68125 4.41625 1.588125 5.285 -0.418125 4.14 2.250625 -0.0775 2.849375 0.538125 0.843125 2.748125 0.558125 0.7025 0.840625 0.7425 2.35 2.825625 -0.369375 0.850625 2.0725 0.79125 -0.148125 1.746875 2.225 -0.790625 1.585625 1.4525 -3.3025 -0.989375 3.349375 0.075 4.663125 4.223125 -0.296875 2.106875 1.253125 2.84625 1.558125 1.294375 1.893125 0.62 2.306875 0.13 0.25625 1.0575 1.51875 0.955 0.449375 1.228125 5.566875 4.289375 1.37625 -3.116875 4.05875 0.9825 -1.16375 -1.4575 2.92 3.999375 4.0675 2.55 2.328125 0.9475 -1.33625 -0.668125 4.9275 1.886875 3.475625 2.768125 2.140625 1.7225 -0.209375 -0.56 0.631875 0.83625 0.21375 0.78625 2.048125 -0.324375 -0.2225 2.466875 2.416875 0.65125 -1.300625 -1.249375 3.236875 -1.04875 0.93625 1.6175 1.883125 -0.02125 0.75125 -0.708125 2.65375 -0.65125 -1.51375 1.825625 1.03 2.17875 -0.19875 0.62 -0.3475 0.41 1.67875 1.70125 2.17875 1.905625 1.796875 2.039375 2.643125 1.804375 3.0825 1.855 0.19 1.45875 4.23125 0.255 -0.358125 0.7375 1.338125 3.9925 -0.661875 -1.69625 2.203125 0.439375 2.56875 1.5975 2.4875 -1.289375 0.8475 -0.341875 -0.72125 1.09375 2.25375 1.994375 -0.21875 2.109375 0.87875 -1.724375 -0.025625 -2.0875 2.024375 3.91 7.10875 2.095625 3.665625 1.59375 3.751875 -3.68 3.26 -1.560625 -0.900625 -0.4425 2.58625 1.1775 2.964375 2.3625 -3.07375 -0.04375 0.6975 2.069375 2.240625 -0.010625 4.2975 1.9225 -0.58625 -0.51125 0.435 1.998125 1.78875 3.69 2.87125 1.995625 0.700625 -0.36875 0.479375 0.355625 3.058125 -1.17125 -0.31125 2.838125 0.265625 2.325625 -1.0525 3.025625 3.828125 -0.198125 2.555625 0.681875 1.050625 1.781875 0.82 0.094375 1.0325 -0.860625 0.299375 0.0825 3.12 5.023125 1.8125 2.83375 1.320625 2.834375 0.64625 1.66625 1.629375 -0.19375 2.11375 0.783125 1.416875 1.311875 2.189375 -0.36375 0.665 3.615 1.19375 0.465 1.685625 -0.29375 0.93375 -2.224375 0.33625 0.98875 -0.59 1.94875 2.255625 4.396875 -1.5275 0.93625 -0.805625 0.515 2.290625 -2.945625 0.473125 -0.270625 3.56 -0.118125 1.06875 1.635625 2.974375 0.94125 -1.29125 2.974375 3.53 -0.398125 0.65 0.06875 -0.76625 2.97625 1.88 -0.775 -0.353125 2.536875 4.31 2.00875 2.25 0.5625 0.01625 2.018125 1.128125 4.743125 2.250625 1.40375 -0.8175 -0.99375 0.516875 -0.598125 4.595625 -0.051875 0.300625 0.215625 -1.455625 0.440625 0.793125 0.9275 0.965 -2.391875 -1.365625 2.6825 0.415 3.22625 1.014375 1.10875 2.52625 -0.6125 -2.07 3.43 -0.915625 0.523125 -2.9675 1.890625 3.843125 1.16625 2.88875 1.75 0.2 0.856875 2.1325 2.31875 2.734375 2.046875 -2.01 -2.38375 2.135 0.3925 2.5275 -0.195625 -1.67 1.58125 -0.365 0.9725 1.38625 1.929375 3.008125 0.320625 1.18125 -0.748125 -1.12875 0.634375 0.65125 0.423125 1.69375 1.7875 -4.08 -0.140625 1.68375 -0.83625 3.1475 -0.60875 -2.41625 -3.130625 2.87625 2.04125 4.1825 -2.154375 2.773125 -0.46375 0.335625 -0.425625 -2.766875 -0.97 0.56 2.33375 1.1275 2.2975 -2.808125 -0.883125 2.17 2.30125 1.724375 3.435 2.58875 0.22375 -0.624375 -1.80125 2.66625 3.439375 0.03375 1.361875 0.796875 -0.863125 -0.103125 -1.575625 5.001875 3.04 0.815625 0.266875 0.56875 2.516875 0.243125 -3.5625 1.2775 -2.099375 -0.305625 0.3125 -0.76 1.731875 0.539375 2.0675 0.3 -1.23 0.84125 0.995625 2.07125 -0.63125 1.55375 -0.953125 3.006875 2.559375 1.156875 0.018125 4.61 0.255625 1.995625 -0.63 1.496875 0.233125 1.489375 0.984375 1.206875 -0.563125 2.825625 1.3475 1.624375 0.79625 2.753125 1.913125 2.68625 0.744375 -1.5225 3.756875 1.9275 1.774375 -0.11875 1.500625 0.2675 -2.481875 1.185625 1.965625 -0.528125 1.935625 -0.95625 2.47875 0.3575 1.93125 -0.06375 -1.931875 3.3025 1.266875 2.9125 -1.0525 3.910625 -1.92 0.0375 -0.179375 0.051875 2.313125 0.90625 2.313125 -0.2375 1.946875 0.718125 1.946875 1.448125 -0.96625 1.795 -1.43 -1.666875 -2.02375 -0.234375 -0.05375 1.119375 0.68 0.8325 0.98875 -0.281875 1.40625 1.255625 2.185625 0.650625 2.41125 1.158125 0.68375 1.6425 2.561875 -0.96 1.425 4.1475 0.01375 2.390625 1.07 -0.37 2.29 2.49875 -0.00875 -1.29125 1.53875 1.46 4.103125 2.92125 -1.049375 -1.03875 -1.49125 -2.12875 -0.88875 0.9875 2.994375 0.04375 1.696875 1.738125 0.433125 1.9325 1.846875 1.560625 0.845 -0.01625 0.18125 0.35125 1.550625 2.806875 1.248125 2.925 0.223125 3.033125 -0.099375 1.710625 -0.65875 1.525625 -0.145625 2.496875 0.14875 -5.485 2.368125 1.241875 0.253125 2.641875 -0.175 -0.569375 -1.701875 1.329375 -1.909375 -1.31375 -1.92875 0.466875 0.70375 0.96 1.93125 0.37875 0.6925 -0.213125 0.68 3.15125 1.07625 -1.199375 -1.735625 0.9575 0.095 -1.37375 -1.479375 0.946875 0.556875 2.765 1.12125 2.733125 1.06375 2.28625 -0.6375 1.258125 -0.249375 -0.96375 0.375625 0.85 -1.38 0.46125 1.144375 0.075 3.076875 -0.738125 0.951875 1.184375 1.205 0.724375 -0.585 -0.329375 -2.42 -3.501875 2.5225 -0.796875 2.37125 1.223125 0.220625 3.70875 1.856875 0.43125 -1.55625 -1.33375 2.73125 2.5625 0.400625 0.173125 3.99 2.369375 0.7225 0.95375 1.076875 0.7425 2.73875 -1.806875 1.9625 -2.315 0.54375 2.92375 0.735 2.218125 -2.689375 3.18125 1.789375 1.699375 0.026875 1.910625 -1.196875 -0.66125 1.50625 -1.815 2.243125 -2.141875 1.178125 -2.55 0.16125 2.76 0.71375 3.7925 -1.628125 1.845 -1.225625 -1.36375 -1.245625 -0.2575 0.786875 4.069375 -0.158125 2.805625 2.67625 -1.49625 -0.7425 -0.655625 -2.069375 -2.140625 0.314375 -0.659375 -0.969375 -1.72625 -4.860625 1.13 2.75875 -0.259375 0.326875 -1.044375 1.7225 0.57125 1.15875 2.0625 -0.78875 -3.258125 -3.53375 0.8675 2.04875 0.98875 -0.460625 1.833125 -1.244375 -0.931875 -0.53875 -0.838125 0.86375 2.033125 1.305625 2.38 -0.74875 2.2425 0.121875 -0.59875 0.81125 1.36125 1.108125 -0.293125 -1.295 3.116875 1.144375 -0.679375 2.316875 0.985 0.246875 0.431875 -0.435625 -1.3325 2.173125 1.406875 0.36625 2.300625 0.544375 0.4225 0.334375 -0.041875 -0.0125 1.490625 -1.38875 2.44 -0.5875 4.188125 -0.08125 0.251875 2.015625 2.575625 -0.274375 0.516875 0.098125 -2.2325 0.1875 2.4775 3.92125 0.069375 -0.224375 1.659375 0.556875 -1.266875 3.548125 -0.82125 0.58375 1.02125 -0.0225 2.543125 1.428125 -0.811875 2.443125 1.94375 0.07125 -3.28 -1.26625 -2.110625 2.17 0.928125 5.825 4.053125 2.533125 -0.561875 -0.621875 2.061875 1.810625 -0.688125 -1.4775 -0.12125 -0.875625 -1.61625 -1.64375 -0.74375 -1.153125 1.7675 1.73875 -0.98375 1.345625 3.655625 2.5825 -1.4775 -0.074375 0.191875 -0.455 -2.37875 1.80125 2.58875 2.77 0.05375 1.413125 0.659375 2.72125 -1.555 0.01375 0.054375 -0.01 -1.685625 1.26625 0.568125 0.55625 0.340625 -2.085 1.775 -1.11875 -0.03 1.609375 0.51125 2.233125 0.159375 -0.434375 0.455625 -0.99375 1.175625 -1.1625 -2.09125 0.414375 1.8925 2.38375 -3.0125 -1.023125 -1.7325 -1.07 2.224375 1.4875 2.003125 -1.173125 1.2275 -1.610625 0.339375 0.025 0.629375 0.780625 -0.464375 0.510625 -0.545625 0.119375 -0.53 0.294375 -2.05875 0.39875 -0.27125 0.58125 0.54625 1.78 2.324375 -0.5525 0.0875 -0.883125 0.71875 -0.65125 -1.91375 2.003125 -0.610625 -0.089375 -0.2375 1.54875 0.005625 1.61625 2.38875 -0.1175 -2.044375 0.7275 1.545625 -2.6825 1.20125 0.380625 0.970625 0.785 2.576875 0.25875 2.575625 -0.306875 1.618125 3.86 -2.641875 -0.216875 2.919375 0.046875 -0.895625 0.026875 -1.678125 -0.476875 -0.5125 -0.498125 -1.026875 2.019375 -1.259375 -1.42375 -1.88125 -1.29625 -0.65125 1.405 1.27875 -1.815625 3.61 -2.656875 0.9425 -0.073125 0 0.558125 -0.64125 -0.769375 -2.153125 -0.373125 -0.21375 -0.63875 2.033125 0.825 2.345625 0.34875 -0.28875 0.62 0.740625 0.86875 3.34375 -0.345625 -2.004375 4.166875 1.4525 -2.1475 -2.065 -3.813125 4.639375 2.1775 1.3775 -1.21125 -0.28375 -0.16875 -1.781875 -1.361875 1.505625 1.05 -0.439375 2.315625 0.110625 0.408125 0.47125 -0.425625 -3.446875 2.475 0.26375 -2.324375 -2.16375 -0.578125 1.175 -0.591875 -0.030625 -1.194375 -0.42875 -1.0475 0.8725 3.40875 -0.76375 -0.129375 1.6925 0.591875 0.501875 0.388125 3.594375 2.086875 -2.35125 -0.0775 -0.7625 -1.933125 1.018125 1.463125 2.12 -0.788125 -2.00375 0.85 2.366875 0.365 -0.858125 -0.85 0.375625 0.2725 6.353125 -0.00625 1.85125 -1.140625 -1.573125 -2.136875 -0.336875 0.771875 1.771875 -0.906875 -2.259375 0.02625 1.19125 2.59125 -0.105 2.46375 0.8425 -1.8425 -2.478125 -0.53 -1.681875 -1.845 -0.514375 3.38 -1.128125 0.68625 0.89875 -1.034375 -0.709375 0.695 0.11875 1.593125 0.885 1.313125 -0.276875 0.773125 1.3325 2.895625 -1.759375 1.435 1.875 2.6575 0.325 -1.86125 -0.7975 -1.30375 -0.550625 -2.773125 0.545 -1.554375 -1.209375 0.58625 0.465 -0.7 1.92625 2.374375 0.83125 -2.0875 2.908125 3.225625 2.495625 -2.4025 1.57125 -0.348125 0.923125 1.691875 0.771875 -1.9325 1.36875 3.1525 0.69125 3.020625 2.840625 -0.533125 0.895625 2.310625 0.08375 2.9175 0.32125 -1.2975 2.220625 0.086875 0.59375 1.018125 -0.27875 0.79625 1.243125 1.5425 -1.00125 0.930625 -0.698125 -0.866875 -1.104375 1.263125 -0.209375 1.488125 3.754375 0.018125 1.465625 2.2725 3.630625 1.435625 -2.071875 2.324375 0.5375 -1.98 0.8725 -0.260625 -1.34125 0.986875 -0.75625 2.061875 1.005 -1.0475 2.371875 -0.09625 1.33625 1.7425 2.184375 3.9575 0.89875 4.62875 1.200625 1.62125 -3.046875 -1.29875 -0.7875 0.356875 -0.27125 1.108125 -1.0675 0.579375 0.851875 0.493125 0.713125 -2.068125 -2.278125 -0.8225 -1.56 0.37625 2.485 -0.606875 1.04125 -2.265625 -1.0875 3.3375 -0.539375 0.966875 -1.0675 1.050625 -2.486875 -1.46375 -0.87 2.9725 0.064375 -0.145625 1.691875 -0.306875 -0.6775 -0.305 -1.4925 -2.6275 -0.81875 1.369375 -2.05625 0.208125 0.674375 0.61375 -2.295625 2.775 1.1175 0.250625 -2.21375 -0.28875 0.963125 0.07375 3.839375 -1.634375 -0.41875 3.661875 -1.3425 -0.96625 -1.180625 -1.80875 1.20125 -0.4275 -2.89 1.699375 -0.916875 -1.3175 -0.00625 0.42625 -0.82875 2.2025 1.83375 -1.293125 -1.58875 0.46375 2.06875 1.1925 0.46125 -1.555625 1.498125 0.7775 2.990625 2.99875 1.783125 -0.35625 -1.04375 -2.010625 -1.0325 -2.238125 0.64375 -1.255625 -1.880625 1.048125 -2.53125 2.98 2.206875 1.918125 -4.45875 -0.283125 -1.256875 0.355 -1.981875 0.87125 2.57375 -1.633125 2.12 1.100625 0.595625 0.82 -1.9325 -0.361875 4.003125 -2.179375 0.19875 -0.458125 -0.89125 1.425 1.955625 -1.2275 2.923125 -1.0275 0.823125 0.3725 3.5625 -1.190625 -3.468125 -0.47625 1.88625 -0.103125 -3.99875 -0.379375 1.920625 0.31625 -1.07125 0.98375 0.63875 1.490625 -1.586875 2.739375 1.438125 0.040625 -0.845 -0.4725 1.7825 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_16ms_ref.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_16ms_ref.hrd new file mode 100644 index 0000000..fc4bc89 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_16ms_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 16 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035053 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-0.04375 0.03875 -0.02625 0.045 -0.01375 0.02625 0.03625 0.024375 -0.018125 0.06625 0.025625 0.024375 0.01625 0.015 -0.02125 -0.016875 -0.043125 -0.03375 -0.035625 0.00625 -0.04375 -0.04125 0.063125 0.044375 -0.010625 0.03125 -0.035 -0.003125 -0.031875 -0.015625 -0.00875 0.039375 0.014375 -0.00375 -0.03375 -0.01875 -0.025 -0.003125 0.036875 0.00875 -0.01125 -0.01125 0.015625 0.040625 0.020625 0.0175 0.049375 0.028125 0.044375 0.035625 0.03375 0.060625 -0.025625 0.029375 0.044375 -0.011875 -0.001875 -0.021875 -0.008125 -0.061875 -0.044375 -0.0075 -0.018125 -0.030625 -0.066875 -0.011875 -0.05375 -0.021875 0.02625 0.0175 0.006875 0.046875 -0.04625 0.02625 0.021875 -0.04875 -0.013125 0.003125 -0.046875 -0.01875 -0.04375 -0.018125 0.025 -0.00625 0.016875 -0.0025 0.0275 0.089375 -0.00625 0.01125 0.02375 0.036875 0.0225 0.0375 0.029375 0.011875 0.01125 -0.06125 0.00875 -0.01 -0.064375 -0.049375 0.00625 -0.014375 -0.02 -0.00625 -0.0025 0.006875 0.058125 0.03 0.01875 0.0175 -0.01 0.020625 -0.01 -0.048125 -0.020625 -0.009375 -0.05125 -0.005625 -0.056875 0.00125 -0.0375 0.00875 -0.04625 0.0325 0.015625 0.01875 0.03875 0.006875 0.00875 0.026875 0.013125 0.031875 0.038125 0.05 0.029375 0.02125 0.005 -0.00375 -0.016875 -0.0475 0.0075 -0.02875 -0.000625 -0.02625 0.026875 -0.01375 0.0125 0.028125 -0.015 -0.001875 -0.035625 -0.059375 -0.030625 -0.010625 -0.01625 0.0075 -0.02625 -0.0725 -0.019375 0.00625 0.010625 -0.034375 -0.018125 -0.043125 -0.020625 0.0225 0.025625 -0.009375 0.0925 0.0625 0.0525 0.051875 0.064375 0.003125 -0.015625 0.05375 -0.000625 0.02 -0.02125 0.02375 -0.02125 0.005 -0.05375 -0.015 -0.0425 -0.015 -0.0175 -0.01 -0.02375 -0.0025 0.003125 -0.00875 -0.004375 -0.015625 0.0075 -0.038125 -0.014375 0.02125 -0.049375 -0.010625 -0.0475 0.03 0.005625 -0.01125 -0.023125 0.01875 0.001875 0.026875 -0.01125 0.103125 0.056875 0.0175 0.05375 0.01375 0.035 0.02375 0.0575 0.015625 0.04625 0.009375 -0.030625 -0.01625 0.04625 0.02375 0.04625 -0.015 0.0325 -0.02125 0.02125 -0.015625 0.0575 0.015625 0.04375 0.0275 0.029375 -0.004375 0.009375 -0.0125 -0.023125 -0.025625 -0.04625 -0.05375 -0.035 -0.010625 -0.02125 0.028125 0.014375 0.03625 -0.010625 0.06125 0.010625 0.015625 0.005625 0.03 0.075625 0.034375 0.00875 -0.00625 0.0925 0.01125 -0.01125 0.023125 -0.003125 -0.01375 -0.009375 -0.04375 0.013125 -0.03625 -0.005 0.00625 0.0375 -0.003125 0.0425 0.001875 -0.0375 0.046875 0.025625 0.008125 -0.00125 -0.03625 -0.025 -0.023125 -0.001875 -0.0625 -0.011875 -0.011875 -0.038125 0.004375 0.0225 0.045625 0.04125 0.03 0.02625 0.02 0.03875 -0.0075 0.03125 0.049375 0.071875 0.000625 0.0475 -0.034375 0.0075 -0.0225 -0.039375 -0.005625 -0.00375 -0.020625 -0.015625 -0.0075 -0.03625 -0.050625 0.05 0.019375 0.0175 0.000625 -0.01625 0.006875 0.02375 0.023125 -0.041875 0.011875 -0.058125 -0.041875 -0.026875 -0.058125 -0.0175 -0.02875 0.003125 -0.013125 -0.02125 0.010625 0.015 0.01625 0.03375 0.038125 0.061875 0.004375 0.035625 0.04875 0.01 -0.00375 -0.066875 -0.025 -0.079375 -0.025625 0.045625 0.014375 -0.026875 -0.029375 -0.0125 -0.005625 -0.011875 0.00875 0.004375 -0.005625 0.009375 0.0175 -0.005 0.034375 0.018125 -0.005625 -0.014375 -0.009375 -0.043125 -0.018125 -0.034375 -0.004375 -0.076875 -0.02375 -0.016875 0.01375 0.034375 0.041875 0.0375 0.03875 0.024375 0.06125 0.03375 0.0275 -0.001875 0.075625 0 -0.008125 0.0275 -0.013125 -0.030625 0.005 -0.014375 0 -0.06125 0.00625 -0.035 -0.005625 0.041875 0.010625 0.01625 -0.00625 -0.01 0.01625 -0.03875 0.006875 -0.025 -0.01125 -0.001875 -0.04625 -0.036875 -0.03625 -0.020625 -0.00625 -0.006875 -0.02375 -0.041875 0.01 0.0225 0.02375 0.01 0.051875 0.079375 0.044375 0.03125 0.05125 0.0675 0.02875 0.030625 0.00625 -0.05 -0.005 -0.024375 -0.041875 -0.0475 -0.039375 -0.045 0.015625 0.006875 0.0025 0.04125 -0.005 0.011875 0.016875 0.035 -0.005 -0.000625 0.003125 0.00375 -0.016875 0.021875 -0.021875 -0.015625 -0.04125 -0.016875 -0.036875 -0.03375 -0.028125 -0.03375 0.00125 0.05125 0.009375 0.056875 0.046875 0.021875 0.029375 0.05875 0.00625 0.001875 0.015 0.0325 0.003125 -0.021875 -0.008125 0.015 -0.000625 -0.014375 -0.0275 0.03125 0.00625 -0.029375 0.006875 0.00875 -0.02625 0.035625 -0.003125 0 -0.005625 0.014375 0.001875 -0.035625 -0.045625 -0.0625 -0.014375 -0.035625 -0.081875 -0.054375 -0.003125 0.03 -0.033125 0.000625 -0.028125 -0.0125 0.013125 0.074375 0.0425 0.030625 -0.021875 0.06 -0.0075 0.0075 -0.005625 0.085625 0 -0.0125 -0.00875 0.025 -0.015625 0.010625 -0.00625 0.01875 -0.0175 -0.058125 -0.00875 0.004375 0.0125 -0.0075 0.02125 0.000625 -0.04375 0.03625 -0.009375 0.02125 -0.004375 0.004375 -0.02125 -0.02 0.00375 -0.00125 -0.0175 -0.013125 -0.005625 0.015625 0.06 0.045 0.084375 0.030625 0.040625 0.010625 0.08 0.071875 0.038125 0.010625 0.0175 0.015625 -0.009375 -0.013125 0.00375 0.028125 -0.016875 -0.039375 0.009375 -0.016875 -0.03125 -0.02375 -0.0075 0.0025 0.020625 0.033125 -0.00875 0.025 -0.004375 0 -0.01375 -0.018125 -0.00875 -0.0475 -0.0075 0.01 -0.000625 0.00625 -0.04125 0.01375 0.019375 0.010625 -0.015625 0.03 0.0575 -0.020625 0.025 0.043125 0.03125 -0.003125 0.05875 0.04625 0.02375 0.0175 0.014375 -0.04125 -0.030625 -0.01875 -0.024375 -0.009375 -0.0475 0.020625 0.02125 0.0575 0.00375 0.063125 0.0225 0.033125 0.000625 -0.005 -0.020625 0.018125 -0.0025 -0.059375 -0.028125 0.014375 -0.043125 -0.04375 0.0075 -0.016875 -0.011875 -0.003125 0.02 0.03375 -0.01625 0.063125 0.0325 0.04875 0.039375 0.08125 0.088125 0.03125 0.061875 0.0325 0.014375 0.005 0.011875 0.000625 -0.035625 -0.00625 -0.035 0.005625 -0.0075 -0.01125 -0.049375 0.025 -0.000625 0.01 0.006875 -0.041875 0.01375 0.015 0.003125 -0.050625 -0.035 0 -0.051875 -0.06125 -0.0325 -0.016875 -0.046875 -0.025 0.02625 -0.00375 0.01 -0.016875 0.035625 0.009375 0.049375 0.0075 0.056875 0.03875 -0.0075 0.0625 0.018125 0.0625 -0.004375 -0.038125 0.01125 -0.019375 -0.036875 -0.006875 0.036875 -0.045625 -0.004375 0.030625 0.00375 0.01125 -0.02125 0.02 0.015 -0.043125 -0.0075 -0.00875 0.005 0.00125 0.0175 -0.0275 -0.03625 -0.06125 -0.04 0.00625 -0.050625 0 -0.02 -0.01875 0.01 -0.00375 -0.020625 0.001875 0.0725 0.05125 -0.009375 -0.003125 -0.02375 0.0125 0.004375 0.06875 -0.023125 -0.01375 -0.023125 -0.01375 -0.04625 -0.00375 0.02125 -0.003125 -0.004375 -0.0175 -0.019375 0.03125 -0.019375 0.025 0.0125 -0.025 0.01375 -0.0025 0 -0.03 0.0025 -0.046875 -0.016875 -0.02375 -0.056875 -0.0525 -0.010625 0.03625 0.036875 -0.004375 0.041875 0.01625 0.041875 0.04625 0.07125 0.01875 0.0625 0.004375 0.055625 0.036875 0.0825 -0.01625 0.0225 0.018125 -0.016875 -0.013125 -0.074375 -0.00125 -0.050625 -0.013125 -0.023125 0.021875 -0.025 -0.005625 -0.011875 0.008125 0.06125 0.00875 -0.00625 -0.026875 -0.005625 -0.025625 -0.06625 -0.0475 -0.0225 -0.05 0.01875 -0.025625 0.0275 0.005625 0.016875 0.058125 0.065 0.024375 0.02875 0.031875 0.036875 0.053125 0.024375 0.051875 -0.015625 -0.02 -0.01375 -0.0025 -0.070625 -0.0175 -0.016875 -0.026875 -0.0275 -0.023125 -0.035 0.03375 -0.01125 0.026875 0.059375 0 -0.04 -0.02 0.01125 -0.0425 0.030625 -0.025625 -0.01125 -0.031875 -0.025 -0.039375 -0.0225 -0.089375 -0.015625 -0.044375 0.078125 -0.03 -0.001875 -0.005625 -0.025625 0.065625 0.05625 0.0375 0.02125 0.0275 0.078125 0.02125 0.023125 0.03 -0.035 -0.013125 -0.0175 -0.031875 -0.048125 -0.045625 -0.02625 -0.038125 -0.00125 0.000625 0.025625 0.023125 0.02625 -0.015 0.0275 -0.000625 -0.01 0.01375 -0.066875 0.00625 0.003125 0.0225 0.00875 -0.02625 0.013125 -0.0275 0.03125 -0.0575 0.0025 -0.003125 -0.025 0.060625 0.064375 0.05375 0.038125 0.035625 0.01875 0.045625 0.02 -0.005625 0.005625 0.008125 -0.043125 -0.025625 0.01625 -0.0175 -0.019375 -0.04625 0.004375 -0.0425 -0.046875 -0.02875 -0.015625 -0.01375 -0.009375 -0.005 0.05 0.0175 -0.040625 -0.01625 0.030625 -0.03 -0.031875 -0.015625 0.005 -0.071875 -0.023125 -0.033125 0.019375 0.0025 -0.0025 -0.03625 0.025625 0.08625 0.014375 0.096875 -0.009375 0.034375 0.04125 0.041875 0.046875 -0.025625 -0.02625 0.01375 -0.005625 0.006875 -0.0625 -0.05875 -0.0025 -0.014375 -0.0225 -0.01375 0.0275 -0.02 -0.004375 0.020625 0.015 0 -0.015625 -0.00875 -0.0025 0.005625 0.010625 -0.00875 -0.00875 -0.071875 -0.0725 -0.02 -0.001875 -0.000625 -0.01375 -0.008125 0.025625 -0.008125 0.03 0.019375 0.00375 0.0525 -0.008125 0.05875 0.0075 0.001875 0.02875 0.0425 -0.045625 -0.029375 -0.0025 0.003125 0.0125 -0.0225 -0.028125 0.0225 -0.03375 0.019375 -0.0025 -0.03375 0 0.060625 0.043125 -0.000625 0.01 -0.004375 -0.054375 -0.018125 -0.01625 0.033125 -0.034375 0.006875 -0.065625 0.01125 0.0025 0.034375 0.03125 0.054375 0.035 0.0275 -0.005 0.02625 0.00625 0.0075 0.06 0.02625 0.023125 0.053125 0.0175 0.0175 -0.02125 0.006875 -0.016875 -0.026875 0.006875 -0.055 0.004375 -0.001875 -0.015625 -0.053125 -0.00125 0 0.0025 -0.035625 -0.02125 -0.02 0.04625 0.003125 -0.015 -0.03125 -0.036875 -0.0525 -0.031875 -0.008125 0.008125 -0.040625 -0.075 -0.029375 -0.019375 -0.023125 0.031875 0.03375 0.06 0.033125 -0.004375 0.038125 0.02375 0.01125 -0.006875 -0.0425 -0.008125 0.00875 0.0025 -0.011875 -0.003125 -0.07 -0.040625 -0.026875 0.02625 0.0075 0 0.00625 0.014375 0.004375 0.00125 -0.010625 -0.033125 -0.03375 0.00875 -0.01 -0.00125 -0.043125 -0.0325 0.00625 -0.0125 -0.045 -0.0325 -0.009375 -0.029375 0.02625 0.04 -0.0275 0.03375 0.0375 0.03625 0.0275 0.06 0.034375 0.0475 0.026875 0.0675 0.030625 0.001875 -0.004375 0.013125 -0.024375 -0.00375 0.015625 0.033125 -0.014375 -0.030625 -0.045625 -0.00625 0.014375 0.015 -0.019375 0.013125 -0.005625 0.00625 -0.005625 -0.039375 -0.029375 -0.018125 0.003125 -0.02125 -0.035625 -0.0675 -0.03 -0.060625 -0.00875 0.018125 -0.055625 -0.019375 0.050625 0.055 0.03 0.001875 0.0325 0.073125 0.031875 0.0475 0.023125 0.01375 -0.01375 -0.009375 -0.05625 0.01625 -0.00375 -0.034375 -0.025625 -0.001875 -0.01375 0.0075 0.010625 -0.011875 -0.03 -0.024375 0.0125 -0.014375 -0.026875 -0.019375 0.030625 -0.041875 0.01125 -0.013125 0.028125 -0.04625 -0.064375 0.035625 -0.051875 -0.01625 0.004375 0.03375 0.03125 0.041875 0.031875 0.0325 0.0125 0.04 0.0725 0.055625 0.0225 0.04375 0.05625 -0.010625 0.06 0.02 -0.0025 0.01625 -0.02875 -0.004375 -0.02625 -0.014375 0.015625 0.035 0.01 -0.003125 0.034375 0.034375 0.04 -0.015625 -0.00125 0.080625 -0.021875 -0.004375 -0.025625 -0.010625 -0.076875 -0.015625 -0.021875 -0.060625 0.00875 -0.026875 -0.015 0.010625 -0.008125 0.05875 0.05 0.031875 -0.0075 0.004375 0.019375 0.01625 0.02 0.003125 0.04625 0.06 0.00375 0.01375 0.003125 -0.003125 0.031875 -0.011875 0.014375 -0.02125 0.015625 -0.02125 0.026875 -0.001875 -0.02125 0.026875 -0.0275 -0.0425 0.0175 -0.0225 -0.053125 -0.049375 -0.026875 -0.041875 -0.0425 0.006875 -0.05125 0.004375 -0.01625 0.0025 0.03625 0.0025 0.00875 -0.04375 0.010625 0.006875 0.02625 0.02875 -0.003125 0.015625 0.053125 0.00875 0.044375 -0.0075 -0.015625 -0.02375 0.020625 -0.06125 -0.045 -0.044375 -0.0475 -0.000625 -0.000625 0.025 0.014375 -0.0275 0.04 0.0275 0.031875 0.00375 0.005 0.00125 0.035 0.005 -0.076875 -0.034375 -0.010625 -0.000625 -0.024375 -0.038125 0 -0.04 -0.044375 -0.03375 0.01125 0.0075 -0.003125 -0.01125 0.05625 0.060625 0.078125 0.050625 0.0725 -0.00375 -0.003125 -0.000625 0.025 -0.000625 0.001875 0.001875 0.01125 -0.06375 0.0175 -0.000625 0.03 -0.008125 0.003125 0.00875 -0.008125 -0.02375 0.048125 -0.01875 -0.028125 -0.06875 -0.01 -0.00125 -0.03625 -0.05 -0.0625 -0.015 -0.0525 -0.025625 -0.0025 0.026875 0.011875 0.055625 0.045625 0.094375 0.035 0.075 -0.01625 0.024375 0.041875 0.020625 0.02 0.021875 0.016875 0.03875 0.00375 0.004375 -0.020625 0.0125 -0.05375 -0.0425 0.0125 -0.0025 0.01375 0.001875 0.013125 -0.04625 -0.0025 0.02875 0.028125 -0.0225 -0.02 0.053125 -0.018125 -0.018125 -0.0225 -0.055625 -0.059375 -0.0375 -0.02375 -0.01125 -0.044375 0.010625 -0.006875 0.014375 -0.0025 0.014375 0.025 0.05 0.068125 0.03625 0.049375 -0.03125 -0.02375 0.03875 0.008125 -0.003125 -0.0325 0.00125 -0.005625 -0.02875 -0.043125 0.021875 0.02 -0.03625 -0.040625 0.045 -0.021875 0.033125 -0.055 0.02125 -0.0175 0.0325 -0.029375 0.0125 -0.006875 -0.046875 0.015625 -0.056875 -0.05375 -0.078125 0.00875 -0.02 -0.044375 -0.024375 -0.0225 0.028125 0.023125 0.029375 -0.005625 0.014375 0.01125 0.069375 -0.03 0.040625 -0.0625 -0.00125 0.044375 -0.00625 0.00125 0.0125 -0.055625 -0.025 0.0125 -0.03625 -0.005 0.03 -0.035625 0.02375 0.004375 0.005 0.04125 0.00375 0.02125 -0.02625 -0.015 0.00375 -0.039375 0.0725 -0.009375 -0.049375 -0.006875 -0.021875 -0.0425 -0.02 -0.0275 -0.014375 0.028125 -0.000625 0.043125 0.108125 0.05 -0.003125 0.0525 0.06125 0.03375 0.03625 0.02375 0.001875 -0.003125 0.03125 -0.010625 -0.019375 -0.084375 0.019375 -0.018125 0.001875 -0.006875 0.018125 -0.0175 -0.003125 -0.005 -0.01125 -0.004375 -0.059375 -0.055625 -0.036875 0.030625 0 -0.021875 -0.02625 -0.014375 0.000625 -0.055 -0.063125 -0.035625 -0.031875 0.008125 -0.015 0.043125 0.045 0.049375 0.009375 +-0.015 0.010625 -0.0125 0.00375 0.068125 -0.01375 -0.0025 -0.004375 -0.019375 -0.005625 -0.003125 -0.0375 0.018125 0.009375 -0.0025 -0.016875 0.04875 -0.005 -0.005625 0.039375 0.023125 -0.04 -0.0375 0.0125 0.029375 -0.01875 -0.013125 -0.01875 -0.026875 -0.035625 0.009375 -0.003125 -0.00875 0.000625 -0.03875 -0.03 0.000625 -0.0275 -0.05875 -0.023125 -0.00875 -0.016875 -0.01625 0.021875 0.001875 0.02875 0.031875 0.009375 -0.01125 -0.01375 0.0225 -0.008125 0.0125 0.015625 0.011875 -0.0325 0.026875 0.0175 -0.004375 -0.03625 0.016875 -0.02 -0.01375 -0.040625 0.004375 0.0125 -0.008125 0 -0.019375 -0.0175 0.04625 0.00875 -0.014375 -0.0175 -0.040625 -0.03875 -0.0025 -0.03875 0.02625 0.01375 -0.065625 -0.023125 0.01875 0.00125 0.0025 0.0025 0.0525 0.059375 -0.03625 -0.005 0.040625 0.0675 -0.03 -0.05875 0.006875 -0.02875 -0.0325 -0.01125 -0.063125 -0.034375 -0.074375 -0.025625 -0.01125 0.02625 -0.03875 -0.04375 -0.02375 0.01875 0.019375 0.00875 -0.01625 -0.006875 -0.013125 -0.015 -0.02375 0.040625 0.03125 -0.01625 -0.06125 -0.005625 -0.0025 0.0375 -0.033125 0.020625 0.02625 -0.00125 0.009375 0.03875 0.01 -0.013125 -0.033125 -0.00875 0.015625 0.004375 0.030625 0.03625 -0.036875 0.026875 -0.01375 -0.01375 0.030625 -0.038125 0.0075 -0.020625 -0.038125 -0.039375 -0.01125 0 -0.003125 0.016875 -0.0175 0.00875 -0.043125 -0.00375 -0.00625 -0.0325 0.011875 -0.0025 -0.044375 -0.0575 -0.004375 -0.0125 -0.015625 0.04 -0.025625 0.01375 0.00375 0.003125 0.040625 0.03875 0.03625 0.031875 -0.00125 0.079375 0.01 -0.0175 0.011875 0.03625 -0.001875 -0.0075 -0.030625 0 -0.0225 -0.06625 -0.04125 0.00375 -0.02125 -0.055 -0.001875 -0.014375 -0.010625 -0.045 -0.005 0.0275 -0.01625 -0.00125 0.018125 0.001875 -0.0275 -0.0025 -0.059375 -0.02 -0.035 -0.018125 0.005 -0.060625 -0.05125 -0.0075 -0.00875 -0.005 0.00625 0.000625 0.025 -0.015625 0.0525 -0.015625 0.03625 0.02125 0.005 -0.033125 -0.039375 0.02875 0.01875 0.025625 -0.0475 -0.005625 0.02875 -0.036875 -0.045 0.0475 0.048125 0.005625 -0.018125 0.068125 0.011875 0.01125 0.011875 -0.02125 -0.0275 0.00375 0.008125 -0.02625 -0.058125 0.021875 -0.0375 -0.036875 -0.06125 -0.015625 -0.025 -0.046875 -0.03875 0.006875 0.0225 0.03 0.0025 0.044375 0.01125 -0.008125 0.014375 0.0275 0.03 -0.019375 0.005625 -0.04 -0.021875 -0.01 -0.03375 0.00625 -0.0275 -0.0125 0.031875 -0.023125 -0.009375 0.013125 0.015 -0.0075 0.016875 -0.003125 -0.03875 0.01625 -0.026875 -0.011875 -0.01 -0.016875 -0.021875 -0.009375 -0.02625 0.015625 -0.036875 0.035 -0.049375 -0.024375 0.016875 0.01125 0.03 -0.000625 0.046875 0.05125 0.068125 -0.00625 -0.038125 0.045625 -0.019375 -0.045 -0.02 0.001875 -0.005 -0.046875 -0.014375 -0.02375 -0.0825 0.024375 -0.005 -0.035625 -0.008125 0.0425 0.005625 -0.035625 -0.025625 -0.006875 -0.021875 -0.02375 -0.018125 -0.019375 -0.015625 -0.01125 -0.01 -0.008125 -0.035625 -0.01 -0.035625 0.004375 0.010625 -0.023125 0.026875 0.030625 -0.01125 0.03625 0.044375 0.07375 0.06375 0.01375 0.03125 0.00625 -0.000625 0.028125 -0.071875 -0.054375 -0.0025 -0.0075 0.0025 -0.01375 -0.02875 -0.02375 -0.03375 -0.00625 -0.001875 0.05625 -0.040625 0.003125 -0.028125 0.02 -0.015 -0.020625 0.023125 -0.0025 -0.008125 -0.03875 0.03875 -0.01 -0.0275 0.035 -0.0375 -0.0025 -0.006875 -0.075 0.006875 0.00125 0.026875 -0.015625 0.013125 0.07 -0.015 0.025 -0.01125 -0.02 0.00875 -0.024375 -0.023125 -0.006875 -0.04125 0.00625 -0.03375 0.004375 -0.015625 0.00875 0.028125 -0.09 -0.03625 0.029375 -0.006875 0.03375 -0.01125 -0.023125 0.0175 -0.015 0.00375 -0.0275 0.014375 -0.025 -0.076875 -0.03875 -0.036875 -0.005625 -0.0125 0.01125 0.00375 0.014375 0.02125 0.01 0.063125 -0.003125 0.0525 -0.04625 0.025 0.026875 0.0375 -0.0175 -0.041875 0 0.019375 0.035625 -0.039375 0.0225 -0.01 -0.049375 -0.0075 -0.03625 -0.004375 -0.015 -0.033125 -0.015625 -0.038125 0.0175 0.011875 0.089375 0.015625 0.005 0.005625 0.038125 -0.005625 -0.018125 -0.0425 0.046875 -0.07 0.00875 -0.026875 -0.018125 0.00625 0.019375 -0.006875 0.07375 0.02625 0.00375 0.01125 0.0125 0.021875 0.015625 -0.00875 0.000625 0.028125 0.015 0.015625 -0.019375 -0.008125 -0.045625 0.01375 -0.02375 0.001875 0.065625 0.016875 0.025625 -0.004375 -0.0025 0.0375 0.015625 0.014375 -0.013125 -0.004375 -0.0325 0.01125 -0.0325 0.025625 -0.008125 -0.010625 -0.033125 -0.075 0.003125 0.02 -0.026875 0.01125 0.004375 0.014375 0.050625 0.00625 0.095 0.02 0.0675 -0.014375 0.013125 0.008125 -0.013125 -0.00875 -0.04125 0.0025 -0.014375 -0.035 -0.051875 -0.003125 -0.03375 -0.03875 -0.040625 -0.02125 0.048125 -0.010625 0.003125 0.039375 -0.00125 -0.025625 -0.036875 0.001875 -0.03125 0.04 -0.050625 -0.048125 -0.0125 -0.01375 -0.005 -0.0075 0.035625 -0.0175 0.08125 -0.01625 0.020625 0.068125 0.003125 0.01125 0.04125 0.035 0.031875 0.043125 -0.018125 0.003125 0.043125 -0.009375 -0.0175 -0.025 -0.0725 0.008125 0.0025 -0.00625 0.02375 -0.05875 0.03 0.015625 -0.041875 0.016875 -0.00375 -0.008125 -0.00875 0.00375 0.011875 0.0075 -0.001875 0.00125 -0.003125 -0.03875 -0.036875 -0.070625 0.013125 0.035625 -0.001875 0.010625 -0.006875 -0.003125 0.01125 0.03625 0.0225 0.073125 0.028125 0.0475 0.0575 0.053125 0.019375 0.004375 0.016875 -0.03875 -0.00875 -0.01375 -0.00125 -0.01 -0.035 0.04375 0.06125 -0.013125 -0.011875 -0.0475 0.016875 0.02125 -0.008125 -0.039375 0.0325 -0.021875 0.015 -0.010625 -0.02125 -0.01375 -0.00875 0.025 0.01625 0.00875 -0.011875 -0.009375 -0.006875 0.01375 -0.0375 0.0375 0.0375 0.004375 0.01625 -0.026875 0.045625 0.03875 0.0175 0.0125 0.0175 0.003125 0.03125 -0.030625 0.01 -0.000625 -0.015625 0.0475 -0.019375 0.02 0.02875 0.020625 0.018125 0.02375 -0.008125 -0.02875 -0.035625 -0.0325 -0.04 0.01 -0.033125 -0.011875 -0.028125 -0.0125 -0.020625 0.014375 -0.023125 -0.034375 0.0225 0.013125 0.02 -0.026875 0.04375 0.0325 -0.00875 0.00125 0.049375 0.016875 0.025625 0.0175 0.02875 0.010625 0.0075 -0.004375 -0.03375 -0.01625 -0.001875 0.035 -0.011875 -0.006875 -0.00875 -0.01375 -0.008125 0 0.018125 0.011875 0.013125 0.01125 -0.035 0.01125 0.0125 0.0275 -0.008125 -0.008125 0.001875 -0.02625 -0.004375 -0.07 -0.025 -0.003125 0.005 0.01125 -0.03125 0.029375 0.021875 0.028125 0.0075 0.095625 0.05125 -0.068125 0.03125 0.02 0.00625 -0.001875 -0.036875 -0.03 -0.02375 0.00125 -0.01 -0.00375 0.02875 0.025 0.0525 0.001875 -0.00875 0.021875 0.0075 0.035 0.015 0.060625 -0.028125 0.035 -0.004375 -0.00875 -0.0175 -0.034375 -0.023125 0.033125 -0.006875 -0.058125 -0.045 0.03875 0.014375 -0.008125 0.005 0.016875 -0.019375 0.055 0.036875 0.035 0.043125 0.029375 0.018125 0.04375 0.029375 0.038125 -0.0175 0.0225 -0.005625 -0.010625 0.015625 -0.0525 0.00125 0.0475 -0.036875 -0.056875 -0.000625 0.01 -0.00125 0.03 0.014375 -0.015625 -0.01625 -0.019375 0.05 -0.0375 0.019375 -0.0575 -0.03375 0.018125 -0.009375 -0.05625 -0.021875 0.0225 -0.01375 -0.015625 0.03125 0.0075 0.006875 0.066875 0.046875 0.015625 0.05625 0.0275 0.014375 0.004375 -0.0375 -0.013125 -0.006875 0.03875 0.001875 0.02 -0.055 -0.020625 0.06 -0.004375 -0.000625 -0.01125 0.009375 0.054375 -0.05 -0.005 -0.011875 -0.08875 -0.00375 -0.02375 -0.004375 -0.043125 -0.050625 0.005 -0.016875 -0.0625 -0.079375 0.001875 -0.01875 -0.019375 0.020625 0.035625 -0.006875 0 0.0125 0.01125 0.003125 0.050625 0.00875 0.0675 -0.01 0.054375 0.036875 -0.0025 -0.0125 0.005 -0.035 -0.008125 -0.02375 0 -0.011875 0.005 -0.03375 0.015625 0.00875 -0.05625 -0.00375 -0.020625 0.028125 0.015625 -0.0125 -0.0275 -0.028125 -0.005 0.04625 0.014375 -0.02875 -0.038125 -0.005 -0.033125 -0.073125 0.0225 0.02375 0.024375 0.02375 0.018125 0.0125 0.010625 -0.001875 0.056875 0.0725 0.005625 0.004375 0.043125 -0.015625 -0.00375 -0.0425 0.009375 0.0125 0.0025 -0.044375 -0.050625 -0.010625 0.001875 -0.01125 0 0.0025 0.02625 -0.039375 -0.02375 -0.025625 0.04125 0.028125 -0.034375 -0.018125 -0.025 0.020625 0.050625 -0.033125 -0.001875 -0.013125 -0.030625 0.06125 -0.019375 0.02 0.031875 0.030625 0.03625 0.050625 0.021875 -0.00375 0.0225 0.010625 0.01875 0.02125 0.045 -0.045 -0.03375 0.035 0.0125 -0.0625 -0.035 -0.008125 -0.00875 0.004375 -0.03 -0.01625 -0.0175 -0.02625 0.013125 -0.00375 0.033125 0.030625 -0.001875 0.024375 -0.0225 0.008125 -0.035625 -0.004375 -0.068125 0.023125 -0.04875 -0.0025 -0.026875 -0.02 0.0075 0.045625 -0.005625 0.051875 0.040625 -0.01875 0.003125 -0.005625 0.05125 -0.020625 -0.011875 -0.025 0.013125 -0.035 -0.013125 -0.006875 0.0025 -0.03625 0.00375 -0.05625 -0.05 0.053125 0 -0.01125 -0.018125 -0.016875 -0.015 -0.038125 0.00625 -0.013125 0.01375 -0.0375 -0.0475 0.030625 0.029375 -0.0075 -0.04125 0.00375 -0.054375 -0.050625 0.029375 0.0025 -0.015 0.049375 -0.001875 -0.026875 0.01375 0.008125 0.030625 0.016875 -0.044375 0.00125 0.01625 0.011875 -0.015625 -0.066875 -0.019375 -0.01 -0.020625 -0.021875 -0.0325 -0.036875 -0.005625 0.02125 0.006875 -0.02 0.013125 -0.024375 -0.04125 0.00875 0.026875 -0.013125 0.001875 0.001875 -0.00875 -0.0075 -0.04 0.000625 -0.019375 0.015 -0.0075 -0.00125 0.02375 -0.000625 0.033125 0.044375 0.03875 0.025 0.0375 0.09 0.02625 -0.0025 0.0225 0.02625 -0.03 -0.026875 -0.000625 -0.04125 -0.01625 -0.01 -0.03125 -0.023125 -0.005625 0.005 0.015625 0.0275 -0.039375 0.045625 -0.02 0.03875 0.036875 0.030625 0.02875 -0.01125 -0.048125 -0.043125 -0.0475 -0.0375 -0.01375 -0.00375 -0.0025 -0.028125 -0.02875 0.02125 0.03375 0.015 0.010625 0.03625 -0.0125 0.044375 0.04375 0.008125 -0.00375 0.036875 0.043125 0.0075 -0.0225 -0.01375 0.00625 -0.02625 0.024375 0.00625 -0.01 -0.026875 0.033125 -0.0075 -0.054375 -0.00125 -0.004375 0.02375 -0.048125 0.0025 -0.011875 -0.005 -0.00125 -0.01 0.01625 -0.05 -0.030625 -0.046875 0.015625 -0.005625 -0.004375 0.000625 -0.026875 -0.00375 0.02375 0.043125 -0.0075 -0.020625 0.00875 0.02375 0.02 0.008125 -0.058125 -0.030625 0.0375 -0.015 0.01375 -0.05875 -0.03125 -0.025 -0.03625 -0.0025 0.015625 -0.016875 0.0275 -0.04875 0.03625 -0.03875 0.0075 0.05125 0.004375 -0.0075 0.055625 -0.00375 -0.015 -0.0175 -0.031875 0.005625 -0.024375 0.021875 -0.04 -0.015 -0.0125 0.005 0.004375 0.00625 -0.065 -0.045625 0.051875 0.014375 0.005 0.035 0.0525 0.008125 0.050625 0.02 -0.050625 -0.041875 -0.01125 -0.0425 -0.01 -0.026875 -0.005 -0.011875 0.024375 0.016875 0.018125 -0.00375 -0.005 0.00375 -0.039375 -0.040625 -0.040625 -0.009375 -0.015625 -0.03125 -0.006875 -0.064375 0.003125 -0.02375 0.014375 0.044375 -0.0375 -0.025 0.025 -0.0175 0.045 0.016875 0.00625 0.01875 0.003125 0.0025 0.044375 0.011875 0.0075 -0.01625 0.045 -0.005 0.02125 -0.053125 -0.02 -0.008125 -0.004375 -0.028125 0.011875 -0.016875 -0.0625 0.005625 -0.004375 0.019375 -0.025625 -0.018125 -0.01625 0.035625 -0.031875 -0.01125 -0.03375 -0.013125 -0.005625 0.011875 -0.00125 -0.03125 -0.0225 0.01125 -0.0425 -0.028125 -0.0575 -0.0075 0.019375 0.016875 -0.033125 -0.018125 0.028125 0.00375 0.02 0.0375 0.014375 0.020625 0.009375 -0.03875 0.026875 -0.041875 -0.041875 0.016875 -0.00625 -0.039375 -0.01375 -0.04875 -0.040625 -0.01875 0.01125 -0.031875 -0.0175 -0.006875 -0.011875 0.00625 -0.020625 0 -0.014375 0.020625 -0.01625 -0.010625 0.005625 -0.045 -0.06 -0.02625 -0.006875 -0.0425 0.00875 0.02375 0.05 -0.01375 -0.019375 0.0625 0.03625 0.055625 0.000625 0.0475 0.044375 0.02875 0.05375 0.005 -0.015625 -0.060625 0.011875 -0.018125 -0.008125 -0.030625 -0.0275 0.05625 0.008125 -0.00375 -0.010625 -0.04625 0.000625 0.034375 0.06 -0.024375 -0.026875 0.033125 -0.06 -0.0275 0.0375 0.039375 0.020625 -0.043125 -0.055 -0.02375 -0.00875 0.000625 -0.04 0.015 0.0175 -0.005625 0.0475 0.011875 0.01125 0.0375 0.0175 0.005 -0.006875 -0.026875 -0.025 -0.034375 0.01125 0.029375 0.0075 -0.018125 0.024375 0.030625 0.021875 0.030625 -0.02 -0.063125 -0.020625 -0.01375 0.009375 0.005625 0.016875 0.009375 0.000625 0.01875 -0.006875 0.030625 -0.020625 -0.00875 -0.030625 0.01625 -0.00875 0.006875 -0.04375 0.049375 -0.0125 0.009375 0.015 0.023125 -0.0175 0.005625 0.073125 -0.060625 0.005 -0.034375 0.020625 -0.01375 0.01375 0.03375 -0.025 -0.053125 0.01625 -0.045 -0.050625 -0.0425 -0.00625 -0.046875 -0.000625 -0.000625 0.009375 0.02125 -0.0775 -0.024375 0.05625 0.0225 0.003125 0.025 -0.050625 -0.056875 0.021875 -0.015 0.0325 -0.04375 -0.014375 -0.021875 -0.006875 0.00875 -0.0225 0.011875 0.056875 0.044375 0.035625 0.026875 0.05375 0.036875 0.03 0.063125 -0.033125 0.04 0.013125 -0.02125 0.0025 -0.044375 -0.0225 -0.04875 -0.019375 0.00125 -0.021875 -0.025 0.03125 0.018125 0.04 0.029375 0.003125 0.035625 0.02625 0.03875 0.005 -0.005 -0.008125 0.008125 -0.016875 0.0375 -0.0075 0.0375 -0.011875 -0.0275 0.0275 -0.01875 0.015 -0.03 0.011875 0.05 -0.01125 0.0375 0.051875 0.0575 0.010625 0.026875 -0.0075 -0.03375 -0.006875 -0.01625 0.014375 -0.048125 -0.063125 0.006875 -0.0125 -0.003125 0.038125 0.028125 0.01 -0.02125 -0.0025 -0.043125 -0.011875 -0.015 -0.021875 -0.0025 0.033125 0.006875 -0.02375 0.01375 -0.011875 -0.0275 -0.03625 -0.041875 -0.005 -0.008125 0.0225 0.016875 0.025625 0 0.046875 0.0275 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1ms.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1ms.hrd new file mode 100644 index 0000000..c370650 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1ms.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 1 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676034563 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +14.698125 13.569375 18.865 8.904375 13.7575 16.08 15.515625 16.129375 11.96375 16.23625 10.420625 18.620625 8.094375 15.430625 10.851875 13.49 13.101875 11.0525 14.873125 12.818125 9.3925 15.1 10.924375 11.235 12.135625 8.700625 12.02375 12.415 10.63625 13.421875 9.62625 12.355 10.498125 12.016875 13.64375 10.74125 12.366875 8.588125 9.768125 9.30625 10.4025 10.085625 7.393125 7.880625 10.618125 8.479375 10.1725 7.67 9.606875 8.718125 8.828125 8.24625 8.353125 9.20375 10.369375 12.3 8.883125 8.00875 7.754375 8.49625 7.076875 6.64375 8.244375 4.65 5.1075 9.218125 7.745625 3.52875 9.645625 9.316875 6.44625 8.124375 8.184375 7.340625 6.48125 7.316875 7.6375 7.15375 5.340625 8.22875 9.17 4.5325 5.2825 7.3175 8.421875 9.33625 8.14125 8.525 5.981875 6.8525 4.5 8.59625 8.961875 4.045 5.15125 6.918125 7.145 4.513125 8.17 5.75125 6.139375 3.784375 5.135 8.13125 5.306875 6.32625 6.985625 6.293125 6.165 7.85375 6.761875 8.220625 7.1925 5.8275 6.11375 4.845625 6.4275 4.330625 3.025 6.58125 5.03375 7.25625 6.33875 3.205625 3.08125 4.27125 6.961875 7.734375 6.91875 7.649375 3.655625 4.714375 4.9775 2.97625 8.094375 3.084375 2.829375 6.768125 0.03875 4.40125 0.4125 7.0575 8.205 9.365625 5.093125 4.168125 4.8 2.49125 3.89125 3.87625 4.631875 3.7275 3.499375 4.673125 7.685 5.411875 4.751875 6.155625 5.035 5.225625 2.548125 8.666875 5.065625 4.364375 1.83125 5.59125 4.93 6.2075 5.70875 2.560625 0.96 2.991875 0.96 1.909375 4.551875 1.67625 4.1325 4.744375 4.51625 4.165625 3.438125 5.004375 2.6725 2.41 1.735 6.713125 2.7075 3.58375 4.783125 6.510625 2.22 3.4625 3.678125 3.74 0.06 2.77125 4.3725 5.3125 2.6975 2.455625 3.704375 3.265625 1.79875 2.414375 4.01 4.6075 3.46625 3.77625 4.728125 0.639375 1.013125 2.233125 3.504375 3.42125 6.22 0.93125 3.8725 3.723125 2.1025 3.014375 2.27875 3.976875 1.81 4.1875 4.414375 0.119375 3.41125 3.10125 4.7675 2.530625 1.628125 8.024375 3.719375 3.9825 1.111875 2.11625 6.6275 2.1625 2.44125 -0.055625 3.5375 6.309375 1.55625 2.405 1.694375 1.418125 3.54625 1.640625 2.326875 3.055 4.8825 2.665625 2.930625 -0.7875 0.85125 2.701875 5.380625 3.131875 -0.401875 4.649375 4.389375 1.62125 1.864375 0.095 -0.523125 3.395 3.7775 2.065 3.538125 2.205 5.71125 0.92625 4.546875 5.13125 1.49 0.855625 1.355625 4.305 2.5675 4.705625 1.824375 4.396875 5.364375 0.558125 2.700625 4.32875 3.44375 4.035625 2.428125 2.38625 2.999375 1.84 -0.18875 3.490625 1.998125 2.9075 2.095 0.375 6.228125 1.844375 -0.0025 5.350625 0.97625 1.123125 0.485 3.48625 1.1575 -0.74 1.934375 3.1025 0.9675 0.609375 1.470625 3.605625 -0.473125 2.445625 0.94625 1.250625 4.0175 -0.433125 0.803125 5.405625 3.925625 -2.815 3.243125 3.70375 -3.5475 1.17875 4.808125 2.71625 1.083125 0.9425 1.814375 0.5325 5.9125 1.79875 0.076875 2.785 2.294375 3.4975 1.276875 0.030625 1.460625 1.918125 -0.86375 2.06 -1.941875 0.594375 1.281875 2.734375 2.575625 1.106875 3.526875 2.3125 4.27625 4.52625 2.1 2.6125 2.470625 0.79375 3.02125 1.074375 -0.198125 -1.178125 2.27625 4.474375 2.515 0.34125 1.24 -0.605625 4.370625 0.13625 4.865 1.67875 0.363125 1.643125 1.91375 0.390625 1.59875 2.288125 3.12375 0.30125 2.506875 -0.301875 1.265 1.019375 1.076875 -1.40875 0.36 3.6 2.14 0.568125 3.1325 1.851875 3.53125 0.659375 -0.9925 2.44375 3.404375 1.91125 1.074375 0.475 3.67 3.583125 1.443125 3.081875 1.680625 -0.644375 0.770625 4.09875 1.771875 2.105625 3.220625 0.919375 0.86375 0.7525 1.3475 0.86625 4.039375 2.728125 -2.1025 0.29 0.991875 0.755625 0.355625 3.668125 1.871875 -1.415625 1.99375 1.785625 -0.089375 1.209375 -0.3175 -0.855 0.9925 1.59625 2.4575 -0.493125 2.44375 4.440625 0.655625 0.0475 3.3625 3.064375 3.480625 1.5575 0.695625 0.873125 1.781875 0.13625 2.95 3.8725 -0.335625 0.86125 -2.15875 1.0275 3.42 2.1875 0.58875 2.31375 1.174375 3.5475 0.695625 0.535 0.864375 1.8125 -0.061875 -1.98125 -0.173125 2.61125 0.42375 -2.89375 4.47 -0.15875 -0.199375 1.031875 4.38125 1.875625 -0.851875 -0.711875 3.85 2.6825 1.221875 1.726875 1.858125 2.495625 2.525 0.163125 1.0025 2.305 -1.80375 0.32 -0.77125 0.7425 -0.59125 -0.18375 2.35375 -0.713125 3.22375 1.93375 2.22375 1.020625 -0.544375 2.744375 -0.17375 1.45375 0.374375 1.261875 3.161875 -0.168125 0.435 0.723125 3.190625 2.249375 -0.33125 1.37625 -1.5725 1.01 2.9075 0.26625 1.796875 2.415625 3.869375 1.29125 2.0325 2.343125 2.215625 1.51875 -1.02 1.3025 0.43875 -1.615 -2.305 3.188125 -1.0975 1.349375 2.04 -2.505 4.9875 2.8875 1.44 -0.75125 2.461875 0.6675 2.07125 1.955 5.715625 2.6375 0.6275 -1.88125 -0.041875 1.71375 2.4425 1.915625 0.833125 -1.31625 2.378125 2.54875 4.344375 2.83875 2.136875 1.901875 -1.48 1.799375 -0.54375 3.72875 1.439375 0.79875 1.530625 1.741875 -1.125 0.76 -0.41375 3.264375 3.0475 2.671875 1.67875 0.976875 2.68125 1.196875 -0.863125 3.53 -0.254375 -0.525 5.029375 4.52 1.29 3.524375 2.626875 1.308125 3.61375 0.191875 -0.01625 1.06 -0.649375 -0.546875 0.37 2.72125 -0.56 -2.886875 0.354375 0.273125 2.3575 -0.82875 5.511875 -0.22125 1.2675 0.16 2.440625 -1.391875 2.304375 0.55 1.3225 -0.166875 2.85125 0.82125 2.4 0.76875 1.871875 0.806875 -1.55 -1.47375 1.01375 2.015625 -2.354375 -0.41875 0.335 -0.15 -0.019375 -0.71 0.490625 -1.03875 -0.405 2.85 0.768125 -2.014375 1.07625 0.14 3.13 -0.768125 2.816875 2.14875 -0.885625 -0.138125 0.50625 1.668125 2.44875 -0.491875 0.76 1.31375 1.36 -1.74 1.171875 0.404375 0.740625 3.31625 2.944375 2.24625 -2.734375 0.863125 2.645 3.0125 2.485 0.5475 -4.239375 1.37875 2.951875 3.506875 0.84875 -0.205625 -0.990625 -0.15875 0.806875 1.016875 1.19625 -0.119375 1.593125 -0.191875 0.308125 -0.24375 1.466875 4.4325 1.575 1.4125 0.99125 -2.77125 0.348125 3.358125 2.605 1.951875 4.75125 -0.62125 0.08 1.15 1.864375 0.398125 -2.87375 1.665 0.00875 2.10125 -1.994375 1.24625 1.503125 0.79 2.271875 -2.23375 -1.49375 -0.841875 -0.376875 2.315625 0.060625 2.9975 1.28875 0.6925 -1.423125 1.536875 4.315 2.731875 1.719375 -0.483125 3.045625 -2.720625 0.330625 0.971875 1.2775 1.901875 -0.96 1.31 -0.83375 0.055 -2.27 -0.701875 1.375625 -2.115625 -2.586875 -1.1675 2.314375 1.841875 0.946875 -2.4225 -1.478125 -2.76375 -1.04125 0.89875 1.211875 -0.465 -0.86875 -1.361875 2.95125 4.475625 4.440625 1.76375 1.369375 2.1075 2.24625 1.75375 1.890625 1.644375 -0.771875 3.67125 1.145 0.28625 -2.13125 0.438125 -0.26125 -0.470625 0.91625 1.436875 2.800625 1.396875 -0.88375 1.958125 0.053125 1.790625 0.725625 -0.015625 0.01 -0.510625 1.161875 -1.910625 1.024375 1.395 -1.025625 -0.48 0.20875 3.3225 -2.880625 2.54125 1.3325 0.313125 0.72625 0.74125 0.501875 0.328125 -2.01875 4.4175 3.76375 2.720625 -0.70875 1.59 -0.253125 -0.6725 -0.54875 0.995625 1.161875 -0.1775 0.505625 -1.07125 -1.285625 -0.79125 -2.97375 -0.161875 -2.680625 -0.161875 2.37375 1.620625 2.121875 -0.549375 1.29625 2.5375 1.29625 -0.24125 -2.135625 1.00625 0.075625 0.8125 1.44375 1.615 5.11375 -1.29125 -2.074375 3.28375 0.9725 1.08625 0.555625 1.880625 1.61125 0.030625 0.291875 -0.456875 1.924375 1.65875 -1.351875 0.156875 1.004375 -0.42625 1.733125 0.915625 -0.01125 0.533125 0.90125 -0.44 6.265 2.97625 2.71375 2.548125 -0.1175 0.204375 -2.05625 -1.206875 1.776875 0.88875 0.83875 -1.625 1.96 1.79125 0.08625 -1.030625 2.076875 0.73375 0.384375 -0.69625 -0.540625 0.280625 1.404375 -2.12 -0.914375 0.254375 1.106875 -1.8225 0.641875 -1.388125 -3.01125 -0.5175 -0.5425 -0.153125 3.875625 -1.465625 -2.6025 1.6675 1.77625 0.22 -4.17875 3.0075 -1.14 1.675625 1.163125 -2.39125 2.521875 2.620625 -0.240625 2.681875 -2.051875 1.119375 1.374375 0.0075 1.025 -1.7425 3.625625 0.6675 2.539375 0.4925 1.95375 1.204375 1.790625 2.261875 2.124375 2.11375 -1.786875 -2.350625 0.286875 -2.87 0.859375 0.148125 4.29 0.80875 0.51375 -2.7025 -1.885625 3.31 1.54625 -4.07125 -1.00625 0.031875 0.565 -0.226875 3.61375 2.274375 1.65375 1.960625 1.00625 2.413125 1.004375 -0.6825 -1.391875 1.23125 1.854375 0.758125 0.081875 2.413125 -0.359375 0.55625 2.031875 -1.270625 -0.619375 -1.23875 0.045 2.395 0.168125 1.333125 1.510625 2.01125 1.12 1.378125 0.27625 -0.973125 5.18 2.304375 -1.818125 -3.03875 -0.615625 0.6425 -4.7275 1.02 1.006875 2.406875 -1.886875 -3.0925 1.04875 -3.61125 2.34625 -0.445625 1.226875 1.010625 -0.079375 0.85375 2.1975 2.56125 -0.11375 -1.06625 0.22 0.54 2.456875 -0.265625 -1.023125 -1.00625 1.385625 1.648125 -0.325 0.785625 1.646875 0.335 -0.29875 2.89375 -0.64 1.79625 2.363125 3.28875 0.135625 2.215 2.65625 1.604375 1.62 -1.11 1.404375 -0.64625 1.7975 -0.649375 2.12125 2.364375 -0.001875 1.54 1.24875 1.85875 0.804375 0.87625 0.455 -0.3725 1.08375 1.84375 3.2925 1.21 -0.76 2.13125 -0.130625 -0.966875 0.326875 -0.925625 2.42 -1.538125 0.495 -0.495 0.665 1.56 0.1875 2.33125 0.165625 0.880625 -1.4575 -0.99 0.04375 -0.6925 2.32625 -0.58125 2.293125 -0.46625 0.1925 -1.860625 -0.92 -0.420625 -0.621875 1.974375 -1.113125 -0.3 0.255625 0.936875 1.295625 1.28625 -1.925625 0.421875 -0.75125 -0.938125 -0.603125 2.40875 1.896875 -2.009375 1.904375 2.32625 1.0425 -3.275625 -0.138125 -0.831875 3.46125 0.393125 1.176875 0.035625 1.0525 -0.070625 -0.485 -1.043125 -1.501875 0.659375 -1.3325 0.4175 -0.94 2.81 -0.441875 -1.13625 1.78875 3.981875 1.911875 -0.768125 0.85125 0.93375 -0.308125 2.05 1.86125 1.638125 -1.231875 -2.66375 3.558125 -0.770625 -1.0525 2.523125 2.585 3.798125 -3.54125 0.96125 -2.66125 0.5525 4.0425 -0.395 -2.891875 2.69625 0.328125 1.121875 0.56 -1.27875 -2.673125 2.63875 2.059375 0.1975 1.836875 -0.82375 -2.33375 -2.7925 0.915 -0.700625 -3.216875 -0.0125 2.09875 -1.215625 2.903125 -0.944375 -0.78375 -1.283125 0.71625 0.699375 0.63125 1.366875 -1.416875 -1.551875 -0.2125 3.53 0.6825 3.21625 -1.05625 2.098125 1.87875 0.725625 0.4875 2.88625 -1.915 1.815625 -2.405 0.819375 1.07625 -0.266875 -0.76625 -1.81875 3.27 0.5225 0.415625 0.995625 2.37 0.895 -0.6525 2.258125 -0.44 -0.774375 0.6775 -1.18625 -0.320625 -3.493125 0.395 1.284375 -3.3725 1.0775 0.861875 1.76 -2.241875 0.063125 0.575 -1.199375 -2.035 -1.788125 0.2525 -0.15625 1.405625 -1.55625 2.161875 0.6175 -1.28625 0.21875 0.70625 -1.174375 0.70875 -1.545625 -1.66875 0.76625 4.255 2.85 2.663125 -1.660625 -3.118125 1.503125 1.44375 -1.076875 -1.01875 0.90625 -1.22125 -1.7075 3.060625 -0.851875 1.739375 0.24125 -0.256875 -0.615625 2.501875 4.205625 3.254375 2.308125 1.9025 1.45125 -1.245625 1.28875 -1.155625 0.581875 2.190625 -0.293125 0.281875 0.905 -1.323125 1.6125 1.020625 -0.38 -1.56375 1.0625 2.68 0.95375 0.798125 -1.10375 1.56 -1.41125 -1.47625 2.043125 -1.048125 -0.725 0.706875 -0.03375 0.720625 -0.38125 2.02375 0.605 2.841875 -0.624375 1.969375 -4.16 -2.03375 1.898125 1.965625 -0.16125 2.0825 2.688125 -0.595625 -0.904375 -0.384375 0.668125 -0.61875 -0.075 -0.069375 1.134375 4.65375 1.36625 -0.16375 1.47375 2.050625 1.1175 0.285 2.20125 1.658125 2.2475 0.66125 1.860625 -0.029375 0.03 1.361875 0.885625 -0.10625 1.71625 1.8225 0.60875 -2.303125 0.2575 1.09375 1.77125 3.5525 4.109375 0.2375 -1.00375 0.984375 0.623125 0.634375 2.86625 -0.239375 0.853125 -0.81 -3.450625 0.23625 1.501875 -0.800625 1.215 0.9875 -1.000625 -0.936875 -1.47625 1.840625 -1.064375 5.854375 3.521875 -2.835 0.786875 1.98875 -1.445 -1.8775 0.998125 2.35875 -3.060625 0.750625 2.25375 -0.12125 1.726875 1.52125 -2.4375 0.4575 1.48 0.0425 -0.286875 1.70875 -0.30125 -2.489375 3.2425 1.88625 -2.278125 1.06375 -3.418125 1.285625 -5.45375 0.16625 1.610625 1.289375 -0.45375 -0.370625 2.876875 -0.374375 0.715625 0.91375 -0.519375 0.0025 -4.0175 -1.57875 2.125625 4.5675 0.324375 0.836875 -0.47875 3.10875 -2.598125 0.156875 0.88 -2.875 1.048125 -0.8025 3.223125 2.051875 -0.60875 0.03 0.130625 2.145625 -3.203125 -0.37875 -1.885625 1.228125 1.29875 -1.719375 0.55875 -1.228125 -1.458125 1.815 -1.6075 1.823125 -2.1975 2.198125 -0.816875 2.746875 -2.1875 1.5625 -1.303125 -1.455 1.65625 0.040625 2.824375 1.00875 0.225 1.27 1.48375 0.856875 1.831875 -1.034375 -0.21 -0.89 -0.669375 0.844375 -4.031875 1.534375 1.32125 -0.498125 -1.293125 -0.7 -2.46 -0.6025 0.119375 3.14875 2.635 -1.704375 0.423125 -2.836875 0.69375 -1.0825 2.8075 1.590625 1.8475 -1.53625 0.884375 1.6025 0.56125 0.226875 1.66 0.45625 -3.0475 1.955 -3.271875 3.275625 1.6875 1.595 -1.269375 2.036875 -0.3 -0.77875 -1.3475 -0.104375 -1.93625 -0.744375 -0.95625 0.556875 1.010625 3.206875 0.67125 -2.455625 0.574375 -2.00375 0.9275 1.084375 2.440625 0.575 -2.1525 1.850625 -0.44375 1.88875 1.081875 -0.410625 2.08125 -3.086875 0.564375 -0.143125 -1.901875 -0.083125 0.491875 0.45625 0.13375 -0.549375 1.52 2.379375 0.629375 1.405625 -1.72625 1.04375 -2.246875 0.11625 -0.65125 +16.138125 20.843125 15.059375 22.81625 18.19625 19.920625 17.796875 14.876875 19.45 19.6325 20.775625 12.658125 16.32625 13.990625 10.85625 16.5825 11.174375 20.0625 13.2675 14.924375 14.69125 12.235 14.24125 13.388125 11.54 16.268125 14.271875 14.665625 10.549375 12.2925 14.121875 14.396875 11.235 14.54125 13.628125 12.21 12.845625 14.78375 10.234375 9.44375 11.58625 14.52375 15.959375 9.83625 10.319375 12.1575 11.498125 13.290625 10.6075 12.694375 13.3675 9.5725 10.265 7.564375 11.683125 11.3925 11.49125 12.830625 7.74375 12.575625 9.043125 12.45375 10.234375 9.979375 10.915 8.20875 9.583125 8.275625 10.091875 9.596875 7.191875 8.61 6.63125 8.590625 8.620625 8.643125 9.993125 8.703125 8.748125 9.1325 11.179375 8.106875 6.825 9.37 10.131875 8.4 9.916875 9.643125 8.68125 8.106875 9.32 7.713125 7.323125 8.045625 10.050625 6.00375 8.82125 8.014375 7.085 11.81625 7.805 5.92625 9.57 6.771875 6.53375 5.205625 6.009375 7.97 7.07 6.941875 6.86375 8.815 4.479375 7.38875 5.37125 5.591875 7.405 7.4775 5.78625 7.78625 7.4125 4.190625 5.515625 5.755625 5.546875 6.066875 8.3425 8.64875 5.2775 9.514375 6.509375 5.458125 6.485 7.79625 8.859375 6.295625 6.354375 5.595625 4.271875 5.29875 4.8775 5.775 4.074375 6.706875 6.44125 7.195 4.67375 7.073125 4.76875 5.341875 7.57 5.794375 7.036875 4.945625 2.989375 7.034375 6.886875 5.82875 4.53625 4.496875 5.84375 4.916875 4.306875 7.574375 3.789375 5.21875 5.883125 6.238125 4.21 5.6375 7.385625 3.416875 3.87375 5.095625 5.1625 2.964375 3.025 3.171875 6.584375 0.835 5.265 4.04875 7.76875 3.47 5.880625 1.641875 4.1575 3.575625 6.3 6.41 4.528125 5.3175 5.62625 4.0275 3.860625 1.998125 3.933125 4.17125 5.581875 5.380625 3.505 4.265 3.421875 3.015625 3.605625 5.5175 3.168125 3.60875 4.479375 6.643125 2.3925 3.205 5.30125 1.824375 5.7975 6.305625 3.905625 3.744375 1.3275 0.781875 2.1025 6.07375 4.59625 4.668125 2.27625 2.674375 6.274375 4.949375 2.238125 3.045 3.26875 2.926875 4.29875 4.188125 2.021875 4.1075 7.574375 4.4025 2.865 5.44125 6.268125 3.01625 2.309375 5.54 6.8525 3.606875 2.8025 5.46375 3.49375 2.175 1.973125 4.016875 4.17625 1.25875 2.478125 -0.6175 3.660625 2.83875 5.21125 3.185625 2.18125 2.9275 1.759375 2.643125 4.449375 3.956875 1.2625 3.680625 6.67 2.791875 1.858125 4.2775 -0.7275 1.88125 2.185 1.5325 -0.249375 2.311875 2.05375 0.6825 5.12 3.700625 2.070625 2.59 2.31125 4.82 2.22125 2.159375 -0.51 4.169375 5.956875 4.20875 3.065 3.798125 1.33625 4.7525 0.335 0.9675 2.71375 2.124375 4.579375 2.02375 3.989375 3.0075 5.2975 0.745 5.57875 3.775 1.59375 2.4 4.363125 1.696875 2.81375 4.26125 2.315 2.625625 3.955625 5.40125 1.896875 -0.91875 3.99125 1.605 0.981875 2.78375 5.046875 2.84625 4.261875 2.366875 1.22875 3.721875 2.78875 4.285 0.620625 2.84125 1.65 2.0075 4.8125 4.64625 3.741875 2.486875 7.283125 3.665625 2.003125 1.8675 0.61375 0.52875 3.4375 0.123125 2.775 1.910625 1.753125 0.5625 -1.145625 4.37125 1.42 4.86375 1.825625 1.4475 4.605 -0.869375 2.664375 3.835625 0.296875 0.82875 2.9425 4.095625 2.55625 -0.04 0.635 1.593125 2.105625 3.405625 0.52875 0.0825 3.609375 0.756875 4.210625 1.53125 2.10375 1.770625 2.81375 1.08625 0.65625 2.101875 2.864375 1.65125 3.2325 1.610625 1.54875 2.39375 3.718125 3.866875 0.716875 0.59125 0.256875 -1.330625 2.9675 1.75625 1.223125 3.27875 2.478125 1.8475 0.556875 2.850625 -0.7375 0.470625 2.785625 1.77375 2.61125 1.213125 2.936875 3.160625 0.63875 2.08125 -0.860625 3.01125 -2.104375 2.69625 2.2725 3.62375 2.111875 0.83375 -1.001875 3.30125 -0.4425 1.810625 2.43875 0.39625 0.354375 -2.371875 1.068125 1.783125 -0.634375 2.95125 -0.708125 1.708125 0.000625 1.981875 1.710625 3.858125 3.916875 0.4225 2.86875 3.436875 0.701875 -0.511875 -1.76 3.763125 1.5325 2.2475 -0.1975 2.083125 3.9575 -0.266875 3.420625 3.86125 1.808125 -1.55125 1.49125 3.5375 1.96 0.76125 1.773125 1.5775 3.134375 3.736875 -0.6075 -0.78875 1.7525 1.34125 5.156875 -1.176875 -0.466875 2.04 1.4775 0.700625 2.886875 0.6325 3.87 -0.10875 -0.5875 1.480625 -0.83375 5.82875 -1.144375 2.97 0.99625 0.578125 2.1825 1.37625 0.038125 2.085625 1.16875 3.154375 -1.31 1.758125 2.23 4.081875 0.74875 -1.63 1.500625 -2.62 2.390625 1.220625 2.809375 -2.09125 -0.25 1.645 0.375 1.110625 0.658125 -0.476875 1.546875 3.2125 -0.86625 1.590625 -0.218125 5.164375 3.11875 0.873125 2.08875 2.209375 -1.0675 1.00625 5.53375 0.628125 -1.42125 1.0325 1.43875 -0.249375 -0.441875 6.434375 1.246875 0.100625 2.66125 3.851875 2.0825 1.20375 2.855625 -0.683125 -1.066875 2.926875 1.92 3.58625 -2.1875 1.854375 2.324375 1.12 -1.695625 1.79125 -1.793125 0.236875 3.4175 2.04375 0.8425 0.145 0.266875 0.520625 0.856875 0.329375 -0.29375 -0.870625 4.016875 2.999375 1.2625 0.391875 1.979375 0.745 -0.310625 -1.1425 1.603125 3.37875 1.203125 1.55125 0.9575 1.8075 1.609375 3.585625 3.79 1.16625 2.12375 -1.52375 1.374375 -0.399375 1.793125 -1.113125 3.221875 1.605625 -3.648125 2.6375 1.176875 1.603125 -0.971875 -1.25125 -0.376875 -1.4275 2.443125 0.404375 2.370625 1.815625 -0.315625 0.856875 1.023125 -0.5625 3.49 1.1175 -0.0475 0.344375 2.795 0.708125 -1.79 0.639375 1.659375 1.13 2.50875 1.554375 4.050625 2.80625 -0.594375 -2.823125 1.620625 -0.6275 0.319375 1.7725 -0.5325 -0.8325 0.04875 1.11 1.93375 0.826875 0.924375 -0.4675 1.92125 2.673125 0.09625 0.815625 -0.875625 2.228125 -0.015 3.98375 0.133125 3.2925 0.1225 1.476875 -0.2225 1.643125 -0.345 -0.863125 -1.3725 1.925625 2.808125 0.9825 -1.57875 -0.84 1.509375 0.4325 2.295 1.02625 -0.143125 -1.99375 1.261875 2.113125 3.4575 3.68875 -1.89125 -2.213125 -2.971875 0.25375 0.00375 3.01125 2.361875 3.4675 1.321875 0.2875 -0.559375 -0.6375 1.611875 -0.0825 2.540625 4.20125 1.321875 2.459375 -0.630625 -0.00375 0.973125 1.66 0.74625 -1.130625 1.605 -3.354375 -1.09875 0.77 3.094375 0.15625 2.3525 2.87125 -1.405 1.691875 0.55125 0.319375 0.943125 -2.26 2.71125 -0.925 -2.811875 -1.6225 -1.760625 0.1825 -0.986875 0.384375 -0.455 -1.771875 2.269375 -1.2675 2.965625 0.91375 -0.3175 1.80625 -0.469375 2.019375 1.819375 3.725 -2.001875 1.635625 -2.424375 0.074375 2.77 2.6725 0.643125 -1.461875 -1.476875 -1.72625 1.854375 -0.965 2.245 -0.57125 -0.01375 2.4 4.580625 -0.831875 -3.114375 1.23875 1.863125 0.64125 2.295 2.79125 2.73 1.538125 -1.881875 0.32625 1.60125 3.016875 -2.208125 2.361875 3.18125 -0.0675 -0.435625 0.4125 -0.625 -1.973125 -0.190625 -0.321875 -0.33875 0.328125 2.188125 2.866875 -2.5175 2.665625 -0.22875 0.18875 0.06625 3.23375 4.389375 1.45875 1.385 0.673125 1.25375 1.25 1.4225 -0.546875 0.26 -0.188125 1.516875 1.81625 5.819375 -0.670625 0.768125 -0.373125 -0.545 1.443125 2.406875 -1.130625 -2.056875 -0.1325 2.50625 2.08125 -1.576875 -1.9775 -1.37875 0.009375 2.11625 -1.82375 2.2825 3.981875 3.22125 -0.680625 -0.923125 -0.4525 1.55375 -0.76375 0.103125 0.56125 -2.14125 2.590625 -0.080625 0.085625 -0.1 -0.69625 -0.84375 -0.475625 1.0275 3.370625 0.54 -1.97 1.21625 1.51875 0.160625 -0.243125 3.759375 1.026875 -1.6025 -0.7375 -0.148125 -0.766875 0.883125 1.126875 0.880625 -0.450625 -1.058125 -1.048125 0.32 0.593125 2.248125 -0.841875 -1.803125 1.299375 0.399375 3.56125 1.43375 -1.75625 0.49125 -1.25875 1.256875 -3.68875 -0.7225 -0.40125 0.563125 1.83375 -1.964375 4.17875 -0.930625 1.64875 0.68125 0.543125 2.089375 1.316875 2.886875 0.43625 -2.63125 -1.430625 0.579375 -0.649375 1.999375 2.72875 -0.60375 -0.50375 -0.476875 -0.199375 0.8425 -0.714375 -2.429375 -0.606875 3.75375 -1.135 0.36875 -1.5875 1.544375 -2.2725 -0.240625 -1.0775 3.185 1.698125 0.033125 0.334375 0.675625 1.3475 -3.544375 0.35125 -0.224375 1.779375 2.150625 0.918125 -0.24 -0.000625 0.216875 2.400625 1.935625 2.205 -3.45 -2.898125 0.7275 0.034375 2.809375 1.8575 -1.52125 1.7975 3.14625 2.746875 0.47625 -0.349375 0.12875 0.929375 2.79875 2.904375 1.21875 3.73375 -2.15625 2.04375 -1.343125 1.0925 -0.399375 2.921875 -1.70125 2.158125 -0.655 -0.043125 0.990625 2.066875 1.15125 3.11125 -1.028125 1.54 1.49375 2.081875 1.851875 -1.135 3.461875 -0.88125 0.3375 2.09375 1.319375 1.08875 1.268125 2.156875 -0.355 0.669375 -0.10125 0.07625 0.71625 -1.55875 3.32125 -1.081875 0.121875 -1.94875 -0.3725 5.2775 0.141875 0.72875 0.93875 -1.116875 -1.2075 1.066875 1.67125 -1.224375 0.915625 1.564375 0.698125 1.980625 -0.26375 1.025625 2.848125 -0.136875 0.51375 -0.045 0.1525 2.16875 -0.321875 0.198125 -0.718125 0.283125 -2.085 1.629375 2.324375 -0.521875 1.03 1.509375 0.799375 -0.2225 -2.613125 1.37625 1.145 -1.123125 0.355 -1.041875 0.560625 -4.08375 3.2125 -0.51 0.03 0.051875 2.821875 -0.29375 -1.910625 2.184375 1.29 1.2225 1.040625 -0.009375 2.190625 1.716875 -1.41875 -0.53875 2.040625 0.484375 -0.68625 -0.33125 2.15625 -2.0925 2.040625 -0.64875 0.275625 0.891875 -0.324375 0.976875 1.10125 1.060625 -0.184375 2.07625 -0.0675 -0.131875 -1.646875 -2.750625 0.683125 1.53 0.6125 0.644375 0.35375 3.119375 0.349375 0.676875 0.028125 0.9175 0.64 -0.080625 -0.379375 -0.71375 0.73125 1.230625 1.27125 -2.68125 -1.205 1.44125 0.94125 1.7475 -0.45625 0.9 1.03 2.370625 -1.421875 1.828125 1.686875 -0.67125 -2.455 1.78 -0.400625 -1.34125 -1.05375 0.07875 -0.289375 -0.600625 -0.61625 2.3525 0.941875 0.46875 1.646875 -1.9525 -3.871875 1.115 -0.755625 0.4825 0.36625 0.994375 2.36 3.115625 1.884375 0.78625 0.590625 2.793125 3.235625 1.075625 1.31125 1.038125 0.348125 1.66375 0.49875 2.22125 -2.930625 0.485 -0.60625 1.096875 -0.296875 0.563125 -0.795625 -0.314375 -0.3325 1.795625 3.89875 -0.7725 0.696875 1.00625 1.70125 0.13375 -0.351875 0.771875 3.39875 0.70375 0.453125 -2.151875 1.3 2.08625 -3.7225 2.46 1.971875 -0.235625 2.193125 -2.345625 2.694375 -0.29 -4 -1.373125 1.2725 -0.92125 -2.71375 0.6025 -2.175 0.246875 0.56625 3.440625 2.20625 3.241875 -0.12 -2.405 -5.183125 -1.936875 1.33125 2.305 -0.16875 0.20625 -0.974375 -3.431875 2.18625 0.766875 -0.695625 -0.9625 -1.559375 -0.37625 -0.67125 1.09625 3.65 0.734375 1.7825 -3.290625 1.175 2.554375 0.585 -4.855 -2.59875 1.560625 3.795625 0.295625 1.466875 -1.36375 2.609375 -2.68375 -1.689375 0.89125 1.130625 1.72875 5.1525 1.518125 -0.29125 2.356875 0.1475 -0.56375 -1.12 -0.37375 -0.725 -1.58875 -1.176875 -0.014375 -2.049375 1.88375 0.566875 0.458125 -1.02625 -0.428125 -0.829375 -0.611875 4.0375 -0.731875 2.45625 0.496875 1.49625 2.688125 -1.59125 1.015625 -1.71875 -1.969375 0.67 2.0825 -0.91 3.103125 0.695 1.704375 1.45625 0.009375 0.66 -0.92875 1.078125 4.753125 2.879375 -1.12875 -0.92 0.595625 -1.754375 0.54 0.590625 -0.76375 0.885625 1.37 2.025625 1.29 -1.34625 -0.47375 -0.0325 1.1675 -0.926875 1.10125 0.07 -1.04125 -1.363125 -1.79125 -1.069375 1.896875 -0.579375 -0.49375 0.304375 0.281875 -2.099375 -0.871875 -1.521875 0.555625 0.5975 0.9025 -0.231875 0.081875 0.425625 0.871875 -0.740625 2.190625 1.92375 3.2525 -0.74375 -0.276875 -1.23 2.559375 1.263125 0.605625 1.344375 -0.32 0.294375 0.38875 0.710625 1.3775 -1.33125 -2.775625 2.75 1.336875 -1.36 2.13875 0.5275 1.811875 1.075 -4.580625 -0.864375 4.231875 2.60625 -0.376875 -1.05 -1.50125 1.015625 -0.2675 1.796875 2.095 -2.024375 0.48375 1.023125 -0.518125 0.74375 0.791875 -0.045625 -2.181875 -3.164375 -2.01 2.0375 1.285 -2.836875 2.379375 0.131875 0.793125 0.28375 1.69875 -1.653125 1.13625 -1.39875 1.363125 -0.080625 -2.473125 0.794375 -0.176875 -0.225625 -0.216875 0.184375 1.864375 1.405625 -1.569375 -1.01 -1.1375 0.68 -2.17125 0.86125 2.2325 0.29375 -0.51625 0.95 1.923125 3.4775 1.519375 3.55375 2.5575 0.833125 0.1575 -1.924375 2.21 0.4625 -1.69 1.048125 0.570625 1.729375 -0.20625 -0.4425 1.781875 -2.015625 0.73125 -0.375 1.465625 0.039375 2.944375 2.626875 3.59 -0.770625 0.785625 4.6175 2.75625 -2.67625 -0.170625 1.0825 0.186875 -1.0175 1.775 -0.38125 -0.891875 0.20875 -0.47625 0.32375 -1.82875 -0.765 1.7525 -0.10625 0.845625 1.87625 3.4025 -0.84875 -0.119375 -2.505 2.51 3.964375 2.47625 0.3125 -0.43 -1.659375 -1.386875 -1.89 -2.815625 0.31 0.79 0.689375 0.568125 -0.16875 -0.974375 -0.713125 1.01625 1.9775 -1.169375 -0.77625 -1.11375 1.35 -0.82 -1.13 -0.525 1.02 0.09625 -2.55375 1.36875 1.373125 0.913125 -2.45125 -2.72375 -1.54625 -0.591875 0.455625 0.76375 0.365625 2.02 -1.39875 0.48625 -1.20125 1.299375 0.191875 1.734375 -1.496875 1.371875 2.31625 0.81125 1.17 1.03125 -2.564375 1.629375 1.55375 -0.66125 1.36 0.274375 0.96125 -1.955 5.56125 1.95125 -1.08875 0.351875 -1.4575 1.266875 1.574375 -1.596875 0.000625 -0.67625 -0.34625 -1.305625 -1.51375 -2.158125 -0.27875 -1.83625 0.653125 -2.3425 -0.300625 2.110625 -0.258125 0.73375 -0.1975 3.096875 0.73125 -3.074375 0.855625 3.005 -0.156875 -1.591875 2.64375 0.255625 2.85125 0.96 -2.265625 -0.4975 -0.116875 -2.120625 2.181875 1.66125 -3.334375 0.408125 0.199375 -0.41625 -0.971875 1.548125 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1ms_ref.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1ms_ref.hrd new file mode 100644 index 0000000..eeaf1c3 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_1ms_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 1 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676034563 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0.02625 -0.02 -0.001875 -0.004375 0.019375 0.01375 -0.00375 -0.01625 -0.00625 -0.00375 -0.013125 -0.03375 -0.010625 -0.04625 0.025625 -0.021875 0.0025 0.0375 0.08125 0.021875 0.039375 -0.004375 0.043125 0.0575 -0.01 0 -0.0075 -0.00875 -0.003125 -0.03875 -0.039375 -0.014375 0.00125 -0.004375 0.034375 0.005625 -0.0075 -0.03 0.0075 -0.014375 -0.025625 0.009375 0.009375 -0.02 -0.035625 -0.0275 0.005625 -0.0375 -0.035625 -0.04375 0.0075 -0.046875 -0.005 -0.01875 0 -0.025 -0.000625 -0.01125 0.046875 0.028125 0.01375 -0.004375 -0.014375 0.02875 -0.010625 0.074375 -0.018125 -0.025 -0.024375 0.0425 0.01125 -0.023125 -0.00125 -0.0375 0.031875 -0.00875 0.029375 0.005625 0.005 0.011875 0.00625 -0.025625 0.0075 0.0475 -0.031875 0.038125 0.0125 -0.043125 -0.016875 -0.0575 -0.086875 -0.02125 -0.02125 0.015625 0.0325 0.01625 0.01875 -0.015625 0.001875 0.005625 0.07875 0.056875 0.010625 0.031875 0.045 0.0225 -0.036875 -0.003125 -0.005625 -0.030625 -0.02625 -0.01875 -0.031875 0.015 -0.00375 0.0425 0.03875 -0.053125 -0.009375 0.0025 0.015 0.029375 0.013125 0.018125 0.03875 -0.011875 0.006875 -0.015625 -0.014375 0.0175 -0.03 -0.028125 -0.005 -0.0125 0.0325 -0.015 -0.021875 0.04 0.024375 0.0275 0.065 0.06375 0.01375 0.1025 0.0625 0.01 0.0225 -0.000625 0.0475 -0.04625 0.04375 -0.010625 0.005 -0.0275 -0.04375 0.00125 0.015625 -0.005 -0.014375 -0.0425 0.02125 -0.00125 0.035 0.04375 -0.00625 0.021875 -0.025 -0.051875 -0.015 -0.0375 -0.019375 -0.03125 -0.0175 -0.016875 0.0025 -0.04375 -0.036875 0.01625 0.020625 0.02 0.018125 0.0025 0.010625 0.005 0.0375 0.044375 0.01 0.048125 0.009375 0.020625 0.006875 -0.009375 -0.005625 -0.0275 0.004375 -0.0125 -0.009375 -0.0375 -0.05 -0.0325 0.005 -0.026875 0.03 0.033125 0.01125 0.0025 0.00625 0.016875 0.033125 -0.049375 -0.0025 0.015 -0.028125 -0.0225 -0.028125 0.000625 -0.063125 -0.006875 -0.024375 -0.005625 0.01125 0.004375 0.06375 0.01375 -0.00875 0.071875 0.06875 0.01625 0.003125 0.0475 0.015625 0.03 -0.019375 0.015625 0.003125 -0.0275 0.00125 -0.015625 -0.03625 0.000625 -0.035 -0.0125 0.011875 -0.063125 -0.011875 0.009375 -0.00875 -0.033125 -0.0025 0.028125 -0.0325 -0.02625 -0.025625 0.0125 -0.06875 -0.066875 -0.0325 -0.040625 -0.018125 -0.04375 -0.00875 -0.019375 0.00125 0.01875 0.0375 0.066875 0.005 0.010625 0.070625 0.031875 0.026875 -0.02125 0.01125 -0.011875 0.021875 -0.03625 0.041875 -0.00625 0.0125 -0.03125 -0.075 -0.00625 -0.034375 -0.01125 0.021875 -0.00625 -0.0575 0.003125 0.024375 0.01 -0.033125 0.004375 -0.03625 0.000625 -0.00375 -0.0125 -0.043125 -0.028125 0 -0.02625 0.0075 -0.01125 -0.00125 0.004375 0.02875 0.03375 0.055 0.023125 -0.000625 0.088125 0.04375 0.031875 0.019375 0.048125 0.003125 -0.00125 -0.014375 -0.0025 -0.000625 -0.03 0.001875 0.0125 -0.064375 -0.008125 -0.03625 -0.041875 0.011875 -0.033125 0.033125 0.038125 0.0075 0.00625 0.005 0.008125 -0.058125 -0.019375 -0.061875 -0.020625 -0.021875 -0.025625 -0.01 -0.0275 -0.0375 0.033125 0.011875 0.00125 0.03125 0.07875 0.008125 0.0475 0.08875 0.040625 0.001875 0.040625 0.0275 -0.009375 0.010625 0.026875 0.0175 -0.025625 -0.038125 -0.055 -0.005625 -0.025625 -0.105625 0.0225 -0.0125 -0.01 0.03125 -0.00625 0.015625 0.01125 0.01 -0.03 -0.039375 -0.036875 0.041875 -0.023125 -0.011875 -0.02125 -0.049375 -0.050625 0.0225 -0.0275 0.0125 -0.020625 0.013125 -0.051875 0.06375 -0.003125 0.02 0.05125 0.070625 0.020625 0.02625 -0.011875 0.034375 0.028125 0.030625 -0.015625 -0.00875 -0.009375 -0.059375 -0.023125 0.004375 -0.028125 -0.028125 -0.05375 -0.00625 0.02875 0.023125 -0.005625 0.00125 -0.0425 0.000625 0.00875 0.018125 0.023125 0.053125 -0.015 -0.035 -0.039375 -0.0725 -0.036875 -0.009375 0.00625 -0.06375 0.01125 0.040625 0.01375 0.033125 0.001875 0.0525 0.026875 0.055625 0.045 0.03625 0.035625 0.01 -0.008125 0.01625 -0.033125 -0.006875 -0.014375 0.00375 -0.025625 -0.02125 0.005625 -0.0075 -0.04125 -0.044375 -0.024375 0.009375 -0.019375 0.026875 -0.015625 -0.009375 -0.01 -0.0125 -0.015 -0.019375 -0.100625 -0.030625 0.011875 -0.050625 -0.01 -0.05875 -0.0075 -0.010625 0.0125 -0.001875 0.041875 0.034375 0.04375 0.045625 0.06875 0.0675 0.020625 0.014375 0.008125 0.013125 -0.00875 -0.016875 0.029375 -0.028125 -0.006875 -0.02625 -0.0575 -0.025625 -0.06625 -0.02375 -0.033125 0.04 0.0425 -0.021875 0.013125 0.02 0.0125 -0.029375 0.018125 0.019375 -0.0425 -0.029375 -0.05 -0.0275 -0.003125 -0.05875 -0.048125 -0.0175 -0.069375 0.014375 -0.03875 0.0025 0.014375 0.046875 0.035 0.058125 0.001875 0.001875 0.030625 -0.023125 0.04625 -0.0125 0.015 -0.005625 -0.0425 0.05125 -0.009375 0 0.013125 0.041875 0.01875 -0.0175 0.0075 -0.03875 0.01625 -0.035625 -0.019375 -0.016875 -0.00125 -0.000625 -0.01625 -0.008125 0.0225 -0.035 -0.02375 -0.048125 -0.03375 -0.014375 -0.0375 0.009375 -0.0275 -0.01125 -0.0075 -0.036875 0.003125 0.02375 -0.008125 0.019375 -0.00125 0.02625 0.04 0.009375 -0.035 0.033125 -0.0075 -0.02875 -0.04875 -0.004375 0.004375 0 0.011875 0.000625 -0.038125 -0.02375 0.02 -0.001875 0.0175 -0.005625 -0.00375 0.035 -0.028125 -0.000625 -0.05125 0.006875 0.00625 -0.000625 -0.045 -0.053125 -0.009375 -0.033125 -0.0525 -0.049375 -0.006875 0.005625 0.03625 -0.0025 0.045625 0.0175 0.019375 0.069375 -0.00125 0.0025 0.068125 0.023125 0.01125 -0.014375 0.035 -0.001875 -0.03 0.0175 -0.009375 -0.02 0.0025 0.010625 -0.051875 0.039375 -0.0475 0.02125 0.02875 -0.01125 -0.0475 0.00125 0.08 0 -0.05125 -0.024375 -0.008125 -0.0025 -0.00625 -0.01125 -0.048125 -0.061875 -0.013125 0.009375 -0.0275 0.009375 0.026875 0.0325 0.070625 0.018125 0.014375 0.070625 0.0275 0.034375 -0.02125 0.04125 -0.01 -0.02 0.0225 -0.000625 -0.06 -0.02 -0.038125 -0.033125 -0.021875 -0.013125 -0.049375 0.02875 0.024375 0.03125 0.025 0.006875 -0.00375 0.0175 -0.005625 0.01625 -0.0325 -0.0425 -0.02 -0.01875 -0.01125 -0.0625 0.00625 0.009375 0 0.00375 0.09 0.02875 0.0175 0.045625 0.03625 0.00625 0.051875 0.04875 0.055 0.01375 0.020625 0.001875 -0.001875 0.01375 -0.020625 -0.0425 0.02875 -0.033125 -0.03375 -0.033125 -0.005 0.041875 -0.004375 0.000625 -0.01875 0.03375 0.010625 0.02625 0.000625 -0.01 -0.00125 -0.02625 0.00625 0.041875 -0.040625 -0.024375 0.005 -0.053125 -0.0475 -0.01375 0.021875 -0.0175 -0.001875 0.011875 0.03 0.0475 0.058125 0.061875 0.046875 0.049375 -0.004375 0.073125 0.038125 -0.0025 -0.003125 -0.00125 -0.045625 -0.015 -0.015625 -0.020625 -0.02875 0.00625 0.0075 -0.0025 -0.006875 0.0125 -0.01625 -0.02 0.025 0.00875 -0.000625 -0.003125 0.01625 0.018125 -0.00375 -0.063125 -0.048125 -0.0025 0.011875 -0.001875 0.008125 0.035 -0.014375 0.02 0.00875 0.016875 0.020625 -0.005625 0.049375 0.053125 0.074375 -0.020625 0.008125 0.018125 0.009375 -0.0175 -0.000625 -0.00125 -0.01375 -0.008125 -0.038125 -0.025625 0.00875 0.02375 -0.056875 0.015625 0.01 -0.02125 0.0125 0.01625 -0.029375 -0.02125 0.01375 0.04125 -0.006875 -0.069375 -0.023125 0 -0.02 0.0025 -0.043125 -0.00625 -0.009375 -0.0175 0.0225 0.05 0.015 0.028125 0.0375 0.045625 0.04875 0.0275 0.01375 0.055 0.0575 0.0175 -0.02625 -0.0075 -0.041875 -0.03875 0.024375 0.006875 0.029375 -0.033125 -0.0375 -0.0275 0.040625 -0.01 0.039375 0.061875 -0.02125 0.01875 -0.025625 0.001875 -0.016875 0.018125 -0.011875 -0.04875 -0.03375 -0.045 0.00875 -0.01875 0.030625 -0.010625 -0.0175 0.0225 -0.003125 0.02625 0.061875 0.088125 0.03125 0.00625 -0.001875 -0.010625 -0.016875 0.051875 0.039375 -0.004375 -0.0375 0.011875 -0.026875 0.038125 0.01375 0.0125 -0.066875 -0.03875 -0.039375 -0.045 -0.045625 -0.01875 0.006875 -0.026875 0.009375 0.005 -0.004375 -0.03125 0 -0.006875 -0.04375 -0.031875 -0.040625 -0.004375 -0.026875 -0.008125 -0.0125 -0.0325 -0.016875 0.0325 0.004375 0.015 -0.008125 0.023125 0.065625 0.010625 0.03875 -0.00625 -0.008125 -0.014375 0.006875 0.0075 -0.018125 -0.034375 -0.03375 -0.055 -0.015 0.01875 -0.021875 -0.055 0.025625 -0.0375 0.011875 -0.0175 -0.036875 0.004375 0.018125 0.025625 0.009375 -0.005 -0.020625 0.003125 -0.016875 -0.00125 0.00375 -0.018125 -0.05375 -0.004375 -0.040625 0.023125 0.009375 0.025 0.00875 0.065 0.005 0.03625 0.03125 0.01 0.013125 0.048125 0.0025 0.051875 0.010625 -0.008125 -0.026875 0.001875 -0.034375 -0.024375 -0.020625 0.00875 -0.020625 0.00375 -0.029375 0.013125 -0.015 -0.00375 -0.04 0.01375 -0.0325 -0.0125 0.00375 0.0075 0.000625 -0.093125 -0.010625 -0.04375 -0.04 -0.04625 -0.045625 -0.0225 0.013125 -0.0375 0.01625 0.019375 0.00375 -0.0075 0.006875 0.020625 0.01 0.031875 0.02375 0.053125 0.013125 0.005625 0.0275 0.019375 -0.026875 -0.04625 -0.026875 0.00875 -0.05625 -0.013125 -0.035625 -0.003125 0.01 0.064375 0.02 0.005 -0.02 -0.01625 -0.0375 0.0325 -0.000625 0.0175 -0.026875 0.0175 -0.038125 -0.00625 -0.0475 0 -0.0125 -0.02375 0.00125 -0.02625 -0.0325 0.049375 0.03125 0.020625 0.005 0.055625 0.035 0.059375 0.021875 0.03625 -0.01 -0.010625 0.014375 -0.011875 -0.00875 0.004375 -0.0425 -0.03625 0.000625 0.049375 0.004375 0.01875 -0.01375 0.039375 -0.020625 -0.01625 0.01125 -0.025 -0.00875 0.013125 0.00625 -0.03625 -0.019375 -0.0175 -0.04625 -0.008125 -0.00875 0.0025 -0.010625 -0.011875 -0.0075 0.024375 0.05625 0.016875 -0.00375 0.03125 0.0775 0.000625 -0.000625 0.01125 0.02625 0.03375 -0.004375 0.045625 0.020625 0.010625 -0.01375 -0.034375 -0.059375 -0.010625 0.0475 0.020625 0.004375 -0.0075 0.0175 -0.015 0.0025 -0.028125 0 -0.01875 -0.03625 0.024375 0.028125 0.040625 -0.05375 -0.01 -0.03625 0.015625 0.005 0.014375 -0.024375 0.00625 -0.00625 0.025625 0.04125 0.0475 0.06125 0.056875 0.008125 0.0875 0.083125 0.00625 0.025 -0.004375 -0.028125 0.0425 -0.003125 -0.03625 -0.01875 -0.025 0.00625 -0.031875 -0.03375 -0.00625 -0.025625 0.02125 0.024375 0.03125 -0.015625 -0.00875 0.01 -0.02125 0.048125 -0.0375 -0.00375 -0.00125 0.026875 0.00375 -0.059375 0.00125 -0.041875 -0.023125 -0.031875 0.023125 -0.00375 0.0275 -0.00125 0.055625 0.031875 0.01125 0.035 0.064375 0.00875 0.0275 -0.009375 0.044375 0.0075 -0.006875 -0.019375 -0.018125 -0.08375 0.013125 0.025 -0.02125 -0.036875 0.03 -0.005625 -0.025 0.056875 0.01375 0.015625 0.024375 0.015 0.030625 -0.020625 -0.0025 -0.02625 -0.02375 -0.046875 -0.01875 -0.04 0.00125 -0.04125 -0.01125 0 0.023125 0.04875 0.0025 0.030625 0.025 0.03875 -0.00375 0.001875 0.033125 0.0525 0.0125 0.00125 0.050625 0.00875 0.01125 -0.008125 -0.015 -0.00625 -0.004375 -0.039375 0.010625 0.0225 0.008125 0.026875 -0.008125 0.015 0.025625 -0.0275 0.0425 0.014375 -0.035 -0.0425 -0.035625 -0.09625 -0.003125 -0.034375 0.04125 -0.039375 -0.0675 0.003125 -0.000625 0.03625 0.01 -0.009375 0.025 0.033125 0.03625 0.0325 0.01375 0.024375 -0.016875 0.03625 0.030625 -0.00875 -0.03 0.00375 -0.003125 -0.020625 -0.045625 -0.061875 -0.04625 -0.048125 -0.03125 -0.051875 -0.055 0.02 0.035625 0.03875 0.06 -0.038125 -0.0025 0.015 -0.009375 0.02125 0.020625 0.01375 -0.03875 -0.044375 0.018125 -0.06125 0.021875 0.0075 -0.0075 0.003125 -0.043125 0.015625 0.033125 0.05125 0.02625 0.03875 0.04 -0.021875 0.0475 0.031875 -0.014375 0.05625 -0.03875 -0.046875 -0.036875 -0.026875 0 -0.048125 0.05625 -0.06375 -0.01875 0.048125 -0.01375 0.031875 0.0325 -0.02375 0.015625 0.04125 -0.03375 -0.02875 -0.064375 -0.0375 -0.031875 -0.0025 -0.049375 -0.003125 -0.014375 -0.02 -0.046875 0.01 -0.009375 0.0375 -0.0375 0.03 0.010625 0.01875 0.056875 0.02875 0.01625 0.0325 0.04 0.034375 0.02875 -0.01625 0.00375 -0.0325 -0.01375 -0.01625 -0.009375 -0.033125 -0.02625 -0.01625 0.020625 -0.039375 -0.000625 0.04375 -0.03625 0.016875 0.035625 0.025625 -0.006875 0.009375 -0.009375 0.005 -0.035 0.018125 -0.004375 0.04125 -0.03 0.02375 0.005 -0.02375 -0.00625 0.009375 0.030625 0.024375 0.00875 0.06875 0.04875 0.03375 0.020625 0.055625 0.0475 0.048125 0.016875 -0.028125 0.025 0.000625 -0.054375 0.014375 -0.04875 -0.083125 0.0325 0.00125 0.06375 -0.001875 -0.001875 -0.0275 0.01 0.01 -0.01875 -0.004375 0.001875 -0.018125 0 -0.0275 -0.035625 -0.00625 -0.075625 -0.0675 -0.044375 -0.014375 -0.03 -0.038125 -0.051875 -0.035 0.029375 0.025 0.0625 -0.00625 0.025625 0.000625 0.031875 0.0125 0.015 0.008125 0.03375 -0.0275 0.02625 0.020625 -0.006875 -0.045625 -0.006875 0.011875 -0.015625 0.02625 -0.01625 -0.03375 0.044375 -0.01625 -0.01875 -0.028125 0.02125 0.029375 -0.011875 -0.02375 -0.01875 0.00875 -0.029375 -0.045625 -0.07125 -0.060625 -0.02625 -0.0025 -0.02375 -0.0225 0 -0.0075 0.03625 0.00625 0.065 -0.003125 0.005625 -0.016875 0.031875 0.006875 0.02875 -0.010625 -0.009375 0.041875 0.01625 -0.018125 -0.040625 -0.024375 0.010625 -0.021875 0.010625 0.014375 -0.005 -0.0225 0.008125 0.0025 -0.01125 0.03375 0.0225 0.0075 0.018125 -0.0075 -0.064375 -0.01625 -0.0175 -0.028125 -0.058125 -0.0275 0.029375 -0.0025 0.009375 0.00375 -0.0025 0.04125 0.020625 -0.005625 0.004375 0.003125 0.01375 0.055 0.01375 -0.00125 -0.0375 0.005 -0.031875 0.005 0.0275 0.00375 -0.0025 -0.0025 -0.030625 0.006875 -0.0275 0.016875 0.044375 -0.009375 -0.01 -0.009375 0.066875 0.03375 0.0475 0.019375 -0.005625 0.01375 -0.011875 +-0.010625 -0.01125 -0.016875 0.029375 0.010625 -0.019375 -0.0325 0.009375 -0.023125 -0.051875 -0.0525 -0.02625 0.01 -0.005625 0.00125 0.00375 0.018125 0.0275 0.029375 0.025625 0.016875 -0.021875 0.010625 0.015625 -0.0225 0.04375 -0.01875 -0.023125 0.005625 -0.03125 -0.0175 0.003125 -0.011875 0.034375 -0.001875 -0.053125 -0.023125 -0.013125 -0.00375 -0.001875 -0.02375 -0.000625 -0.02875 -0.041875 -0.011875 0.01625 -0.02375 -0.0375 -0.01 0.04125 -0.0175 0.000625 -0.021875 0.036875 0.019375 0.00625 0.018125 -0.015 0.004375 -0.02 0.01625 0.046875 0.060625 0.014375 -0.00875 0.078125 0.058125 0.0375 -0.01125 0.03875 -0.00375 0.026875 -0.02875 0.0025 -0.020625 0.0125 -0.02 -0.0525 0.01375 0.0325 0.04125 0.03375 -0.00625 -0.0375 -0.02375 0.01375 -0.008125 -0.018125 -0.065 -0.004375 -0.04125 -0.010625 -0.040625 0.025625 -0.015 -0.004375 0.01875 -0.010625 0.0075 -0.0075 0.023125 0.003125 -0.0025 0.038125 0.00125 0.010625 0.00875 0.00125 -0.005 -0.00375 0.015625 -0.02375 0.026875 -0.011875 0.000625 -0.03375 0.004375 -0.004375 -0.01375 0.075625 -0.04 0.013125 0.015625 0.0225 0.02375 0.02625 0.01125 0.076875 0.00625 -0.056875 -0.01 -0.03 -0.02875 -0.00875 0.020625 -0.008125 -0.0575 -0.04125 0.041875 0.0025 -0.0075 0.035625 0.018125 0.024375 0.053125 0.0275 -0.0125 0.07375 -0.0125 -0.01625 0.026875 -0.01375 0.0025 -0.038125 -0.040625 -0.055 -0.03125 0.003125 -0.020625 -0.03875 -0.020625 0.003125 -0.0125 0.038125 0.01 0.010625 -0.029375 0.018125 -0.003125 0.006875 -0.03 -0.040625 -0.035 -0.014375 -0.003125 0.005 0.0425 0.048125 0.02 -0.06375 -0.000625 0.015625 0.060625 -0.01 0.0375 0.023125 0.016875 0.040625 -0.005 -0.0125 0.0475 0.05375 0.0025 -0.025625 -0.0275 0.008125 0.040625 -0.02125 -0.025625 -0.01375 -0.04 -0.009375 0.0325 0.046875 -0.0025 -0.074375 -0.0025 -0.010625 0.02875 -0.0125 -0.003125 -0.010625 -0.02625 -0.003125 -0.02875 0.001875 0.014375 -0.045625 -0.013125 -0.023125 0.015 0.065 0.019375 -0.06375 0.051875 0.02375 0.024375 0.045625 0.03375 -0.0225 0.01 0.029375 0.035625 0.031875 -0.005 0.013125 -0.036875 -0.05 -0.02 0.014375 0.004375 -0.06625 -0.003125 -0.045625 -0.013125 0.05375 0.01375 0.035625 0.0025 -0.0175 -0.010625 0.001875 0.014375 -0.003125 0.025625 -0.015 -0.038125 0.01125 -0.0475 -0.010625 -0.024375 0.000625 -0.01125 -0.0025 0.0075 -0.016875 0.04 0.023125 0.008125 0.016875 0.031875 0.0375 -0.02 0.041875 -0.0075 0.0325 -0.015625 -0.018125 -0.01125 -0.01125 -0.02875 -0.000625 -0.05625 -0.013125 -0.005 -0.01125 -0.020625 0.02625 0.0075 -0.0225 0.02 -0.014375 -0.006875 0.026875 -0.038125 -0.015 -0.060625 0.004375 -0.043125 -0.0325 -0.0475 -0.05375 -0.015 -0.019375 0.04 -0.01875 0.013125 0.029375 -0.003125 0.000625 0.075625 0.036875 0.02625 -0.02 0.030625 0.010625 0.0275 0.005 -0.0425 -0.035625 -0.013125 -0.03375 -0.035 -0.034375 -0.034375 0.005 -0.00375 0.078125 0.018125 -0.010625 0.02 0.0075 -0.001875 0.041875 -0.041875 -0.058125 -0.011875 -0.01875 -0.036875 -0.01125 -0.015625 -0.064375 -0.011875 -0.001875 0.055 -0.03125 0.015625 0.026875 -0.003125 0.01 0.046875 0.0725 -0.0025 -0.0175 -0.0075 0.05625 0.041875 0.051875 0.001875 -0.04125 -0.025625 -0.02375 0.011875 0.06625 -0.041875 -0.035 -0.00875 0.035625 -0.0025 -0.000625 -0.0125 -0.005625 0.02375 0.046875 -0.030625 -0.040625 -0.01 -0.005625 -0.025625 -0.006875 0.00375 0.005 -0.02875 -0.024375 0.00625 -0.006875 0.001875 -0.0125 0.039375 -0.005 0.005625 0.0275 0.045625 0.055 0.00125 -0.001875 0.035 -0.013125 0.02125 0.05125 -0.006875 -0.016875 -0.035 -0.0225 -0.029375 -0.06375 -0.008125 -0.05625 0.014375 -0.03625 -0.0025 -0.001875 -0.016875 -0.015 -0.015 0.0025 -0.02375 0.008125 -0.03625 -0.044375 -0.01375 0.00125 -0.035 -0.038125 -0.025 0.00875 -0.005 0.036875 -0.005 0.0425 -0.010625 0.015 -0.0025 -0.015625 0.02625 0.010625 -0.02 0.0425 0.038125 0.015 0.051875 0 -0.046875 0.0025 -0.025625 0.005625 -0.014375 -0.02125 -0.035625 0.016875 0.033125 -0.028125 -0.000625 0.018125 0 -0.030625 0.024375 0.03875 -0.021875 0.02 0.016875 -0.085 0.000625 -0.00625 -0.03875 -0.005 -0.0025 0.02125 -0.045 -0.015625 0.011875 -0.00375 0.001875 -0.010625 0.014375 -0.0025 0.02125 0.03625 0.0075 -0.015 0.009375 -0.045 0.03625 0.064375 -0.01375 -0.0275 0.00125 -0.045625 -0.00875 -0.055625 0.036875 0.01125 -0.015 -0.0125 -0.0275 -0.019375 -0.001875 0.026875 0.051875 0.04125 0.024375 -0.02125 0.00375 -0.0175 0.041875 0.014375 -0.076875 -0.0225 0 -0.005625 -0.013125 -0.038125 -0.029375 -0.005625 -0.01875 0.034375 -0.008125 -0.011875 0.045625 -0.000625 0.001875 -0.045625 0.02 0.045 -0.01 -0.028125 0.009375 -0.00375 0.01625 -0.028125 -0.044375 0.013125 0.045 -0.015 0.0075 -0.010625 0.010625 0.025 0.005 -0.01375 -0.02125 -0.044375 -0.004375 -0.04 -0.041875 -0.016875 0.00375 -0.035625 -0.005 -0.04375 -0.02125 -0.040625 -0.031875 0.0075 -0.005 -0.0225 0.026875 -0.001875 0.06125 -0.021875 0.021875 0.0175 0.03375 -0.00375 -0.03375 0.014375 -0.019375 -0.021875 -0.015 -0.016875 -0.058125 -0.03875 0.034375 -0.03375 0.024375 -0.034375 -0.023125 0.04625 -0.003125 0.016875 0.018125 -0.006875 -0.028125 -0.0125 -0.008125 0.00375 -0.023125 -0.005 -0.05875 0.004375 0.001875 -0.03125 0.01125 -0.001875 0.01 -0.00125 -0.044375 0.031875 0.054375 0.033125 0.03125 0.02375 0.05 0.015 0.065 0.0225 0.041875 -0.005 0.015625 0.045 -0.01875 0.04 0 0.025 -0.016875 -0.04 0.004375 -0.024375 0.0025 -0.020625 -0.031875 -0.010625 -0.063125 0.021875 0.004375 -0.0175 0.01 0.000625 0.0625 -0.00375 -0.006875 -0.030625 -0.028125 -0.03875 -0.0825 0.006875 0.0125 -0.001875 0.044375 -0.000625 0.03875 0.016875 0.023125 0.046875 -0.03 0.004375 -0.06125 -0.000625 -0.00625 -0.019375 -0.05 0.023125 0.003125 -0.024375 -0.006875 -0.015625 0.045 0.0125 0.02 -0.0125 -0.04625 0.00625 -0.045625 -0.009375 -0.011875 -0.030625 -0.035 -0.016875 -0.003125 -0.020625 -0.07 -0.01125 -0.053125 -0.045625 -0.02 -0.03125 -0.033125 0.045 -0.00625 -0.02 0.005625 0.070625 -0.020625 0.0025 0.061875 0.004375 0.00125 -0.018125 0.033125 0.01125 -0.0125 0.00375 -0.0025 0.0175 0.009375 0.03125 -0.0425 -0.029375 -0.02125 0.035 -0.015625 -0.0425 -0.00625 0.030625 0.005 0.02875 0.011875 -0.014375 -0.008125 -0.030625 -0.01125 -0.040625 -0.0275 -0.02375 -0.019375 -0.00375 -0.058125 -0.031875 0.000625 0.015625 -0.01125 0.026875 0.050625 0.04875 -0.0025 0.071875 0.02375 0.06875 -0.02625 0.055625 0.03 0.000625 0.00375 -0.038125 -0.0625 -0.010625 -0.051875 0.03875 -0.00125 -0.04 -0.001875 0.02125 -0.00375 0.021875 0.039375 0.02125 0.01875 -0.00125 0.016875 -0.009375 -0.023125 -0.029375 -0.010625 -0.015 -0.033125 -0.02125 -0.030625 -0.0075 0.01 -0.013125 -0.01 -0.025 0.010625 0.013125 -0.003125 0.045625 -0.02 -0.019375 0.014375 0.011875 -0.00125 0.013125 0.035625 0.0375 -0.049375 0.00125 -0.030625 -0.0125 0.006875 0 -0.00875 0.025625 -0.04875 -0.01 0.07625 0 0.023125 -0.02375 0.024375 0.048125 0.01625 0.0575 -0.031875 -0.0125 -0.04125 -0.04125 -0.0225 -0.01625 -0.031875 -0.01 -0.01875 0.010625 0.0125 0.009375 0.023125 -0.05 0.040625 0.03125 0.05625 0.07125 0.004375 0.0125 0.00625 -0.034375 -0.02875 0.046875 -0.015 0.00125 0.00125 -0.038125 -0.011875 0.014375 -0.06375 0.005625 -0.034375 0.01125 -0.024375 0.02 0.045625 0.02875 0.0475 0.02625 -0.0125 -0.02375 -0.01875 -0.021875 -0.018125 0.004375 -0.020625 -0.01375 -0.0325 0.00375 -0.005 0.0025 -0.03 0.00375 -0.035625 0.030625 0.029375 0.010625 0.046875 -0.01375 0.01875 0.035 0.008125 0.02125 -0.041875 0.05625 -0.086875 -0.015 -0.02 -0.01625 -0.03375 0.01875 0.01375 0.020625 0.030625 -0.015625 0.03 0.034375 0.00875 -0.0075 0.03375 0.009375 0.01 -0.035 -0.055 -0.04 0.02625 -0.006875 -0.033125 -0.02875 0.02 0.0075 0.03875 -0.008125 0.02 -0.02375 0.069375 0.04875 0.02875 0.07375 0.030625 -0.003125 0.04 0.053125 0.0175 -0.04 0.005625 0.033125 -0.019375 -0.018125 0.000625 -0.00125 -0.026875 0.014375 0.01375 0.05625 0.01 -0.0075 -0.04375 0.05875 0.010625 -0.00125 -0.03625 -0.00875 0.0175 -0.03625 0.02375 -0.053125 0.01375 -0.023125 0.0025 0.015 -0.0175 0.065625 -0.026875 0.016875 -0.02625 0.031875 -0.0025 0.028125 0.059375 -0.0075 0.07375 0.011875 0.050625 0.02875 0.03625 0.03375 -0.0025 0.038125 0.01375 0.0175 0.00375 -0.046875 -0.01375 -0.01875 -0.001875 -0.029375 0.035 -0.028125 -0.031875 -0.013125 -0.0425 -0.000625 -0.000625 -0.065625 -0.048125 -0.011875 -0.010625 0.01875 -0.04875 0.011875 0.013125 -0.004375 -0.021875 -0.006875 -0.024375 -0.020625 0.02625 -0.014375 0.01375 0.023125 0.02125 0.00875 0.03375 0.035 0.01125 0.00375 0.011875 0.01375 0.003125 0.044375 -0.034375 0.013125 -0.049375 0.029375 -0.011875 -0.016875 -0.026875 -0.00625 -0.011875 -0.00875 0.04 0.0225 -0.0025 0.025 0.00375 -0.0125 -0.049375 -0.021875 -0.030625 -0.0225 -0.014375 -0.03375 -0.04 -0.0125 0.019375 0.005625 0.0175 0.01875 0.015625 0.030625 -0.01875 -0.053125 -0.00625 0.075 0.0225 0.004375 0.01125 -0.01 0.0225 0.0025 -0.014375 -0.028125 -0.06 -0.035625 -0.005 -0.013125 0.0225 0.0175 0.00375 0.016875 -0.054375 0.01875 0.00875 0.0025 0.045625 0.031875 0.005 0.054375 0.0475 -0.04375 -0.038125 0.024375 -0.003125 0.009375 -0.015 -0.0075 -0.01375 0.039375 -0.025 0.0275 0.034375 0.00375 0.00125 0.01625 0.0425 0.035 0.038125 -0.0075 -0.02125 0.025625 -0.006875 -0.005 0.0525 -0.045 -0.021875 -0.03875 -0.035 -0.025625 -0.04125 0.014375 -0.001875 -0.014375 0.005 0.01125 0.066875 -0.01625 0.006875 0.004375 -0.0075 0.039375 0.0225 0.043125 -0.030625 -0.01375 0.025625 -0.025625 0.030625 0.025 0.026875 0.01125 0.0425 0.028125 0.055 0.061875 0.085 -0.009375 0.043125 0.009375 0.058125 0.0075 0.00625 0.0425 -0.01375 0.044375 -0.031875 0 0.02 0.014375 -0.035625 -0.006875 0.0275 0.001875 -0.00625 0.0075 0.01875 0.0125 -0.038125 -0.025625 0.04375 -0.045 -0.01125 -0.023125 -0.06875 -0.0275 0.01875 -0.039375 -0.031875 -0.0475 0.02375 -0.0175 0.06875 0.00375 0.015625 0.016875 0.018125 0.009375 0.034375 0.034375 0.03625 0.019375 0.015625 -0.023125 -0.044375 -0.01375 0.003125 -0.019375 -0.001875 -0.04 -0.0075 -0.006875 0.008125 -0.015625 0.016875 0.000625 0.0025 0.003125 0.03625 0.018125 -0.033125 0.016875 0.009375 -0.0075 0.025 -0.025 0.000625 -0.019375 0.0075 0.01 -0.009375 -0.03 -0.01375 -0.0125 -0.061875 0.02875 0.0575 0.019375 0.02125 -0.010625 -0.0125 0.021875 0.03875 -0.001875 0.01375 -0.01375 0.025 -0.00625 -0.00375 -0.054375 -0.004375 -0.01 -0.006875 -0.005625 -0.00625 -0.02375 0.000625 -0.0125 -0.01 0.030625 -0.044375 -0.04875 0.013125 -0.05875 0.01875 0.023125 0.014375 -0.0125 -0.0125 0.018125 0.00875 0.00625 -0.01375 -0.024375 0.02125 -0.025 0.006875 -0.001875 0.0175 -0.000625 0.034375 0.068125 0.038125 0.013125 0.0125 0.03 0.02125 -0.03125 0.054375 -0.021875 -0.04 0.000625 -0.0525 -0.0225 -0.020625 -0.02 -0.001875 -0.015625 -0.016875 0.015625 0.035625 0.02 -0.01125 0.0125 0.015625 -0.00625 0.014375 -0.003125 -0.02375 -0.0225 -0.03625 -0.0125 -0.0325 -0.04875 -0.005625 -0.0025 -0.0025 -0.03375 0.00875 0.02625 0.003125 0.02625 0.031875 0.063125 0.03 0.02625 0.058125 -0.01375 0.025625 0.025625 -0.006875 -0.0425 -0.033125 0.059375 0.04 -0.023125 -0.011875 -0.014375 0.033125 0.069375 -0.01625 0.03125 0.0125 -0.036875 0.015 -0.009375 0.02375 -0.034375 -0.020625 -0.01125 -0.01625 0.01125 -0.011875 0.006875 -0.00875 -0.0025 -0.00625 -0.036875 0.02625 -0.028125 0.024375 0.03875 0.05 0.016875 0.014375 -0.000625 -0.053125 0.04 0.016875 -0.02 -0.019375 -0.005 -0.02625 -0.006875 0.02125 0.0025 -0.040625 -0.044375 -0.018125 -0.033125 -0.01375 0.043125 -0.00125 -0.065625 -0.009375 0.015625 0.014375 0.033125 -0.023125 -0.019375 -0.004375 0.0075 -0.025 0.019375 -0.004375 -0.019375 0.00875 0.00875 0.013125 -0.005625 -0.024375 0.068125 0.031875 0.068125 0.063125 0.016875 0.040625 0.0175 0.04375 0.0075 -0.0025 -0.02 0.0375 -0.019375 -0.0025 -0.00375 0.005625 -0.006875 0.01375 0.009375 -0.0625 -0.00375 -0.020625 0.060625 -0.006875 -0.025625 -0.019375 0.03 0.03125 0.025625 -0.005625 -0.035625 -0.009375 -0.04375 -0.058125 0.029375 -0.056875 0.006875 -0.035625 0.005625 0.014375 -0.005 -0.02125 0.020625 0.001875 0.04125 -0.00875 0.026875 0.08125 -0.003125 -0.004375 0.020625 0.03875 0.033125 -0.009375 -0.025625 -0.02375 -0.016875 -0.028125 0.003125 0.0025 0.050625 0.01625 0.0125 0.035 0.019375 -0.010625 -0.015625 -0.035625 -0.023125 0.01625 -0.020625 -0.01 0.001875 0.024375 0.005625 -0.00875 -0.02625 -0.0325 -0.030625 -0.008125 0.03375 -0.05125 0.005625 0.02875 0.06 -0.0025 0.003125 -0.011875 0.00125 -0.013125 -0.01125 0.00875 0.0225 0.04625 -0.004375 -0.044375 0.02375 0.006875 0.024375 -0.025 0.003125 0.011875 -0.01 0.009375 0.018125 -0.00375 -0.024375 -0.0175 -0.016875 -0.03 -0.013125 0.011875 -0.036875 -0.01375 -0.015 -0.013125 -0.001875 -0.0025 -0.034375 0.01125 -0.02625 0.0225 -0.02375 -0.013125 -0.01625 0.02625 0.015 0.00875 -0.01875 -0.03125 0.03625 0.03 -0.025 -0.015 -0.015625 0.004375 -0.009375 0.010625 -0.028125 0.020625 -0.006875 -0.01625 -0.0275 0.010625 -0.019375 0.00375 -0.03125 0.001875 0.008125 0.04125 0.03625 0.0125 -0.02875 -0.000625 -0.00875 -0.0075 -0.033125 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_300ms.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_300ms.hrd new file mode 100644 index 0000000..ad24a0c --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_300ms.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 300 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035428 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-29.45625 -20.7575 -29.345625 -21.48625 -24.460625 -22.61 -20.2925 -22.830625 -20.468125 -23.148125 -19.98 -21.17875 -15.1925 -19.679375 -21.25 -21.97625 -20.02 -18.29625 -18.204375 -18.366875 -17.06875 -14.998125 -19.34375 -19.67625 -12.301875 -16.6925 -17.460625 -14.208125 -16.375 -13.26625 -16.5875 -14.861875 -14.05125 -15.23875 -19.321875 -12.033125 -15.223125 -13.91625 -17.245 -15.891875 -12.949375 -14.7475 -15.315625 -12.62375 -13.644375 -15.43375 -14.1625 -13.5425 -11.895625 -12.29 -12.105625 -12.66375 -17.78375 -12.510625 -15.276875 -13.215625 -11.478125 -13.726875 -8.890625 -8.17375 -14.429375 -11.78125 -18.379375 -9.37875 -14.809375 -12.816875 -14.570625 -11.21125 -11.11375 -12.445 -8.04375 -11.826875 -14.259375 -11.74375 -11.719375 -10.845 -11.74875 -10.618125 -8.041875 -11.715 -11.190625 -10.6325 -11.22 -10.178125 -10.9225 -7.0125 -8.8025 -9.39 -11.321875 -8.516875 -8.261875 -12.1625 -12.630625 -5.730625 -6.96375 -10.32 -10.345 -10.543125 -12.116875 -7.391875 -7.6825 -7.349375 -10.656875 -12.054375 -6.07625 -5.244375 -10.88 -9.810625 -10.5125 -5.636875 -9.90625 -9.884375 -7.338125 -9.705625 -4.32875 -6.696875 -9.374375 -8.41125 -10.05125 -7.09375 -4.885 -6.08 -6.85625 -5.74375 -9.590625 -5.73 -8.88875 -10.573125 -5.925625 -8.2525 -8.595625 -4.395 -6.378125 -4.229375 -7.53 -8.006875 -9.454375 -6.310625 -9.92875 -3.74875 -6.063125 -10.390625 -6.869375 -7.5425 -6.705 -10.224375 -7.793125 -6.229375 -6.068125 -7.82625 -6.58625 -4.58 -4.89875 -8.49 -7.240625 -7.239375 -4.77 -6.689375 -4.415 -2.816875 -6.064375 -5.54 -5.290625 -3.5275 -7.07375 -5.35125 -7.260625 -5.750625 -8.554375 -3.34 -7.03 -4.64125 -6.380625 -6.598125 -4.299375 -4.953125 -4.03875 -5.53375 -7.71 -2.773125 -6.711875 -5.05 -7.580625 -4.940625 -3.99375 -7.36625 -5.3975 -3.9475 -3.54625 -6.024375 -4.859375 -4.8125 -3.576875 -3.44625 -4.02375 -3.679375 -3.4275 -7.288125 -6.054375 -5.920625 -7.571875 -5.38625 -5.79625 -0.1275 -4.31875 -6.104375 -3.864375 -3.78125 -4.289375 -4.173125 -5.7425 -5.55125 -4.121875 -5.750625 -3.91625 -1.51125 -4.523125 -1.9175 -8.546875 -4.77875 -3.28125 -1.790625 -1.5775 -4.47625 -7.411875 -1.911875 -7.12375 -4.11375 -4.4975 -6.054375 -5.100625 -7.26375 -5.63875 -1.461875 -1.92 -2.213125 -3.33125 -2.52625 -8.77875 -4.95 -4.88625 0.090625 -3.326875 -2.27875 -3.083125 -6.874375 -4.50375 -6.48125 -7.57125 -5.53625 -3.713125 -3.491875 -1.88375 -2.00375 -0.56625 -4.956875 -5.218125 -2.1425 -6.564375 -5.100625 -4.020625 -2.214375 -0.219375 -5.32375 -3.955 -4.015 -4.190625 -6.988125 -1.8175 -3.594375 -0.38125 -2.713125 -3.74 -1.998125 -4.651875 -2.958125 -4.27 -2.224375 -4.095 -4.93125 -1.7875 -0.14375 -3.363125 -2.710625 -4.9475 -4.848125 -3.030625 -0.62625 -3.448125 -7.23625 -3.44875 -5.820625 -1.95 -2.52875 -4.594375 -0.974375 -4.649375 -0.81 -2.9575 -3.1875 -2.845 -2.001875 -2.896875 -5.88875 -2.820625 -1.626875 -2.951875 -2.228125 -3.854375 -0.586875 -1.838125 -1.47875 -3.524375 -3.006875 -5.100625 -3.71375 -2.063125 -4.686875 0.236875 -1.67875 -3.74625 -2.915625 -1.193125 -1.274375 -0.405625 -1.476875 -0.054375 -2.188125 -6.111875 -1.389375 -1.245 -2.491875 -2.584375 -2.538125 -1.6325 -5.5825 -2.1625 -0.6175 -2.119375 -3.724375 -2.1475 -2.12875 0.45125 -1.351875 -4.364375 -3.49 -2.504375 -1.73875 -0.72125 -1.390625 0.29 -1.58375 -5.219375 -4.044375 -1.51875 -0.894375 -2.0825 -0.044375 -2.251875 -4.43625 -3.160625 -2.95125 -3.12875 -5.999375 -0.940625 -2.206875 0.1425 0.7075 0.41875 -0.589375 -0.701875 0.35375 -3.436875 -3.100625 -2.935625 -4.528125 -0.3475 -1.704375 -4.843125 -2.85375 -1.3675 -0.48625 -2.295625 3.264375 -0.320625 -6.24125 -1.453125 -2.158125 -3.3625 1.72875 -2.75375 -1.934375 0.865625 -2.48125 -0.334375 -0.425 -6.24625 -5.789375 -2.725625 -0.324375 1.15625 -0.368125 -1.040625 -1.0725 -2.511875 -0.94 -3.243125 -1.88625 -5.25875 -2.55875 -2.59375 -4.4 -0.9975 -1.68375 -2.7425 0.325625 -4.27 -2.825 -1.06375 -2.695625 1.441875 -1.273125 -3.404375 -1.63 0.820625 -2.6325 1.2975 -0.721875 -1.600625 -1.225 -3.208125 -3.658125 -1.865 -1.38375 -1.526875 -0.65625 -2.085625 -4.135625 0.306875 -2.72625 -4.360625 -0.193125 -4.100625 -5.084375 0.188125 -2.395625 -2.205 -3.1 -2.40875 -3.0225 -2.234375 -0.863125 -2.2175 -1.21 -2.955 -5.151875 -3.58625 0.46 -0.274375 -2.864375 -3.255625 -1.045625 -2.965625 -4.0525 -3.649375 -0.988125 -1.615 -1.95625 -2.39125 -4.15875 0.965 -2.816875 -1.48125 -0.75125 -3.451875 -3.02 -2.800625 -4.81375 0.503125 -0.1375 -1.538125 -1.705625 -1.175 1.3275 -2.446875 -1.789375 -0.189375 -0.06125 -2.515625 -2.680625 2.319375 -4.06625 -1.421875 0.405 -0.846875 -3.574375 0.42125 -1.3175 -2.12125 0.49125 -2.946875 -0.875 -1.900625 0.323125 -3.64125 1.489375 -1.819375 -4.758125 -3.486875 -2.66875 0.131875 0.065 -1.905 -1.375625 0.70625 0.590625 -0.871875 -1.445 -1.200625 -0.004375 -2.265625 -3.288125 -0.664375 -0.1175 -1.29375 0.38625 -3.45 -0.34875 0.54625 -0.3475 -3.150625 2.696875 -2.406875 -4.814375 -1.1425 -1.3775 -1.2275 -3.404375 -2.22 -2.791875 -1.7275 -1.245625 -0.29875 2.18625 -1.76125 0.091875 -1.43 1.220625 -1.18 -0.36875 0.135 -3.92375 -0.929375 3.901875 -0.25125 -0.553125 -4.891875 -1.326875 -2.40375 0.21625 -0.7425 -2.774375 -3.053125 -3.741875 0.830625 -2.65875 -1.82 0.640625 3.0075 -0.21875 -1.74375 -1.866875 -2.25875 -0.350625 -1.101875 -2.615625 0.0375 0.985625 -3.318125 0.59375 -1.730625 0.151875 -3.171875 -1.695625 -2.3125 -0.030625 -2.496875 -0.386875 -1.66375 -1.5975 -2.79375 -1.66 -1.77125 -0.366875 -4.88875 -1.834375 -0.8275 -3.923125 -2.2725 2.980625 0.09375 -2.08375 -1.1725 -1.994375 -5.84625 -2.344375 -0.596875 -0.531875 -0.14125 -3.3975 0.69 -0.925 1.059375 -2.031875 -0.626875 0.9575 -1.749375 -0.8525 2.82375 -1.02875 -1.218125 -1.450625 -0.06 -6.20375 3.708125 1.4925 2.20375 -1.033125 -5.329375 -0.973125 -0.693125 2.2475 -1.778125 0.48125 0.174375 -0.04375 1.429375 0.961875 1.413125 -2.578125 1.425 0.34125 -1.32375 -0.719375 0.748125 -1.496875 0.721875 -0.47125 -1.100625 -0.155 -1.621875 -0.243125 -0.8525 -1.764375 -0.248125 -0.069375 -3.578125 -0.15375 1.070625 -3.19125 -2.775 0.699375 1.55125 0.555 -2.693125 -1.74 -2.269375 -3.023125 0.416875 -2.766875 0.36625 0.623125 -0.0975 -1.524375 -2.03375 -1.87875 -1.33 1.184375 0.218125 -2.67 1.73625 -1.353125 1.08875 -2.866875 -2.47375 -1.92375 -1.039375 1.26375 -0.808125 0.70125 -0.106875 -3.615625 -2.069375 -3.53375 -0.829375 -1.408125 -1.571875 -1.44375 -0.034375 0.7425 -3.51625 -3.915 0.2825 1.529375 -2.37875 -2.981875 -1.590625 0.23 -2.02875 0.378125 -3.04625 0.14375 -4.060625 1.1025 1.534375 -1.596875 -3.38375 0.540625 0.809375 -0.741875 -1.135 -1.32 -4.6175 0.88875 -1.18625 -3.535 -0.45625 1.97875 0.285 0.93125 -2.340625 -1.7375 -2.4925 -1.513125 -0.244375 -2.549375 1.088125 -1.395625 -0.8275 1.23375 -1.336875 -2.20625 -1.716875 -2.834375 -3.8775 0.538125 1.231875 2.624375 -1.12 -3.3075 -1.04375 -1.17375 1.130625 -0.965 -1.135 1.15125 -2.0375 -2.35875 -0.834375 -0.726875 -2.504375 0.70375 0.38625 -0.690625 -1.333125 0.12375 -4.2 0.795625 -0.39 2.55125 -1.066875 0.81125 1.985625 -1.36875 -1.78875 -2.346875 -1.605 -0.12125 -1.32125 0.41375 -2.4825 0.948125 -2.53625 -0.530625 -2.136875 -0.80375 2.52375 -0.809375 -2.440625 -0.328125 -1.418125 -1.546875 0.2975 -0.886875 -2.498125 -0.79875 1.63625 -0.9475 1.48625 -0.593125 -0.321875 -0.14 -0.7625 1.15125 -0.99625 -1.536875 0.438125 -1.091875 -2.968125 -4.21375 -0.99125 -0.379375 -2.130625 0.740625 -2.07 2.344375 -0.300625 -3.306875 -1.67125 -2.695625 -4.10375 -3.398125 -1.424375 -1.60375 -0.55875 -2.643125 -2.925 -0.565625 -3.153125 -2.505625 0.1925 -2.791875 -5.13375 -0.690625 -2.244375 -1.3675 0.480625 -0.8525 -0.19375 1.984375 2.678125 -2.876875 1.59125 -1.79 1.959375 1.73875 2.341875 1.533125 1.178125 -0.4575 -1.011875 1.43125 -0.660625 0.74375 -2.39375 -0.05625 0.65625 -3.49625 -2.368125 -1.04875 0.183125 0.355 -1.203125 -0.915625 -1.035 1.095 0.306875 -3.1025 -2.441875 1.325625 -1.04125 0.3225 -0.5425 2.8825 -1.92375 -1.08875 -0.376875 -0.345 -1.505625 1.20375 2.436875 0.643125 -1.40375 0.95875 2.456875 0.31875 -0.066875 1.543125 -1.46625 -1.63875 1.58 -3.900625 -3.404375 1.396875 1.5525 -4.015625 -2.389375 -1.85125 -0.563125 1.500625 -0.4275 -1.82375 -1.446875 1.53 -3.56375 -3.618125 0.109375 0.919375 -2.46125 -1.0375 -0.98625 0.304375 -0.856875 -0.749375 1.84625 -1.1475 -4.129375 -0.79375 1.618125 -1.2475 -0.90375 -2.18125 -3.1275 -3.313125 1.344375 -2.298125 -0.15625 -0.03125 0.108125 -1.006875 -0.125 0.165 -2.549375 2.415 -0.1125 0.609375 0.539375 -4.63 0.543125 0.960625 -0.72125 0.326875 -1.995625 -1.763125 2.255 3.730625 -1.454375 3.719375 0.731875 0.4775 0.501875 2.09875 -2.19125 0.46875 2.485 -2.695625 -0.535 -0.481875 -1.048125 -1.425625 -0.62375 -2.16 1.18875 -1.266875 0.88625 -2.21125 -2.3375 -1.78 -0.113125 -1.89 -0.563125 -2.645625 0.728125 -1.278125 0.739375 2.36125 3.1625 -1.761875 -3.071875 -0.766875 -1.81375 0.190625 -0.25375 2.14625 0.908125 -0.58375 1.106875 -0.188125 1.23125 -2.171875 -0.223125 0.034375 -2.474375 3.103125 -3.1625 1.205 1.3475 0.48875 0.2925 -0.200625 -1.43375 -2.46125 0.86375 -2.90375 3.044375 0.63 3.11875 -3.795 -0.789375 -2.061875 -3.3975 1.389375 -1.176875 -2.910625 -3.613125 0.1075 -1.8075 1.890625 0.568125 1.755 1.769375 1.00875 0.699375 1.423125 -1.750625 -0.43625 -0.3425 1.736875 2.445 1.640625 -0.415 0.82875 -0.87125 -1.313125 -2.038125 -2.153125 -3.719375 -2.251875 -0.7825 1.40625 -1.040625 1.28125 0.125625 -0.046875 -0.471875 -1.25375 0.16125 1.48 0.33 2.85875 -3.450625 1.0475 -1.074375 -0.44125 -0.1 1.718125 -1.11125 -0.110625 -1.383125 -0.036875 -0.264375 2.3625 -2.265 -2.461875 -4.201875 -0.0225 -1.83375 -2.041875 -0.126875 -1.565625 -1.289375 -0.713125 0.94625 -0.325625 -0.10375 0.15875 -0.655 0.994375 0.981875 3.63375 0.296875 -1.5525 -2.7925 1.195625 -0.21625 -0.9675 -0.36125 -3.720625 -2.52375 0.55625 1.465 -1.223125 3.4925 1.845625 -4.638125 -2.706875 0.25125 -0.263125 1.265 -1.340625 -2.064375 -3.864375 -0.904375 -0.40375 -0.019375 0.988125 -0.409375 -2.56125 -2.684375 2.49625 0.674375 -0.286875 -2.37125 2.486875 -1.67375 -0.5675 -0.393125 1.080625 0.035625 -0.0325 -0.044375 -0.31125 1.5825 3.3 2.048125 0.15 2.714375 1.685 -0.168125 0.498125 3.974375 -0.92875 0.835 -2.039375 -2.908125 0.231875 2.340625 -2.59125 -2.56 0.66625 1.02125 2.01125 1.17625 -1.29125 -0.141875 1.044375 -1.010625 -0.051875 1.9425 -0.999375 0.47 -2.779375 0.00625 -0.195625 -3.235 2.5225 -1.235625 -1.579375 1.708125 -2.105625 -0.5125 -2.938125 5.070625 2.7225 -2.60125 1.68625 -1.513125 -1.27625 0.434375 -0.77875 -1.148125 -1.71 1.120625 0.000625 -1.51625 -0.8525 -1.006875 -1.72 0.671875 1.739375 1.451875 2.49125 1.435625 -3.83 0.514375 2.375 1.9325 -0.7475 0.904375 1.064375 -3.1775 -1.163125 -0.0725 -0.319375 1.024375 -0.03375 1.090625 0.083125 -0.474375 -1.64125 -0.45375 1.2375 0.1 -2.09375 -3.80375 -1.9175 1.470625 0.93 -2.758125 0.084375 1.523125 0.27375 0.258125 0.974375 -0.59125 -0.638125 -1.405 -0.10875 0.854375 -1.691875 -0.656875 1.23625 1.63875 -2.36875 -2.84625 -1.85625 1.3475 -2.285625 -0.9525 -0.988125 0.130625 1.058125 3.9175 -0.08 -1.43625 0.990625 1.345 -0.163125 -2.230625 1.348125 -0.525625 -0.494375 -1.699375 0.316875 2.24125 -0.3425 -0.125 1.075625 -1.893125 0.52875 -1.11 -0.201875 0.559375 -1.505625 -0.703125 0.290625 -0.750625 -2.97625 -0.46375 0.061875 2.739375 -1.135 0.06375 1.565625 0.841875 1.2325 -0.8275 -1.98625 -2.035 -2.95125 1.49375 -1.801875 -0.9125 -0.31 2.789375 1.536875 2.870625 0.5625 -0.006875 -2.39125 1.258125 2.151875 2.091875 -0.194375 -2.96625 1.2775 -4.50375 -1.595 0.22625 -2.603125 1.82625 -0.62 0.03 -1.439375 0.205625 0.576875 3.799375 1.930625 1.148125 -0.453125 -1.90375 0.430625 1.495 -0.058125 -2.2975 0.200625 -1.060625 -3.13375 -1.9675 -3.365625 -1.444375 1.289375 -2.443125 -0.27 0.8825 -1.8025 0.07 1.428125 -1.7825 -0.711875 -0.911875 -0.094375 -0.035625 1.863125 -2.019375 0.3525 -0.69125 -2.40625 0.591875 -3.085 0.574375 -0.40875 0.530625 -0.505 -2.04375 -0.936875 0.626875 0.815625 -0.111875 -1.4 -1.508125 -0.45875 1.95 1.183125 -1.548125 -0.06125 -0.351875 2.5825 0.230625 -1.471875 2.079375 -0.674375 -0.76125 -1.585625 0.033125 -2.799375 0.291875 0.044375 -2.98375 0.519375 -1.82875 -0.29375 -2.029375 -1.224375 1.789375 -1.375 3.940625 -0.0725 0.126875 0.045625 -1.04 2.599375 2.1775 -2.376875 0.8575 -0.05875 1.99625 -2.429375 0.591875 0.710625 -1.315625 -4.47 -1 -2.955 -2.621875 -1.08875 1.4175 0.824375 -1.67 -0.150625 -1.171875 -1.686875 1.549375 1.325625 -2.510625 -0.20875 0.705625 -0.67875 3.66 -2.145 -1.72875 -1.781875 0.925625 -3.163125 -0.34375 0.5 1.3825 2.065625 -1.01125 -0.81125 -0.705625 -0.565625 1.621875 -1.774375 -0.979375 1.803125 -0.5975 1.541875 -2.1825 1.301875 -0.920625 -1.660625 1.174375 1.70875 -2.203125 1.1725 -0.386875 -0.5675 0.99125 3.14625 -1.08625 -1.6875 -0.018125 -2.7775 -2.605625 -1.7575 2.470625 0.745625 -2.72375 1.615625 1.840625 2.331875 0.5325 -1.68625 0.273125 -0.689375 1.705 -0.416875 -1.038125 -0.58 -1.57875 -2.241875 2.71625 -0.971875 -3.6875 -0.583125 3.21625 -0.485 -2.464375 0.29375 1.245625 -2.92625 -2.4575 0.855 -2.20875 -0.69625 0.993125 1.874375 0.991875 0.45625 0.969375 -1.7475 -1.22375 -0.48375 2.8 0.130625 -1.43 1.566875 0.5525 -2.39375 -1.71 -1.37125 -0.166875 1.343125 -0.733125 -2.213125 -0.24875 -1.131875 3.901875 -1.659375 -0.236875 -0.76 1.17125 2.099375 -2.571875 -0.818125 -1.823125 2.26 -1.294375 -0.516875 +-30.07875 -37.4 -27.44375 -28.668125 -25.11 -29.85625 -27.43125 -28.50125 -28.765 -26.595 -25.086875 -26.314375 -24.064375 -25.498125 -24.315 -22.41125 -24.87625 -25.391875 -25.2 -21.774375 -23.143125 -23.878125 -20.0925 -21.02875 -23.56625 -24.816875 -19.959375 -20.52875 -22.439375 -19.660625 -20.400625 -20.45 -19.970625 -22.3375 -16.703125 -20.654375 -16.14375 -19.030625 -16.61375 -14.3275 -18.40375 -17.95125 -18.480625 -19.61125 -20.343125 -19.535625 -19.905 -15.359375 -16.62 -14.8825 -13.536875 -17.469375 -18.245 -17.585625 -16.22875 -13.169375 -17.11375 -13.730625 -18.873125 -16.98 -17.009375 -16.719375 -14.13375 -14.0225 -14.094375 -12.60125 -13.92125 -10.22375 -15.3175 -11.229375 -10.739375 -13.514375 -12.974375 -12.654375 -16.433125 -10.701875 -13.5325 -10.45125 -16.263125 -11.92 -13.724375 -11.94 -12.858125 -14.1175 -10.585625 -12.198125 -10.325625 -13.4325 -16.286875 -12.51625 -13.21 -13.655 -12.648125 -12.045625 -14.1375 -9.7175 -10.6 -12.98875 -11.101875 -12.740625 -10.931875 -10.8425 -11.5725 -9.885625 -10.67375 -12.2025 -7.74 -7.20375 -4.5675 -9.92875 -10.00625 -8.54125 -10.72 -12.88375 -11.10625 -9.36125 -11.699375 -13.479375 -5.373125 -10.41375 -9.47125 -12.68875 -11.428125 -6.22125 -7.565 -9.360625 -9.02875 -6.895625 -9.5375 -10.550625 -9.575625 -9.109375 -10.5075 -9.845625 -7.404375 -7.816875 -6.505625 -8.696875 -8.49 -7.981875 -7.116875 -10.00625 -6.423125 -7.84 -8.2475 -7.546875 -3.746875 -7.091875 -9.23125 -7.791875 -7.3825 -10.63875 -8.85 -8.065 -6.59875 -3.65875 -5.85875 -10.00875 -7.29 -6.950625 -6.810625 -8.878125 -6.381875 -9.811875 -8.07625 -8.980625 -5.203125 -6.679375 -4.97625 -5.886875 -7.443125 -2.839375 -3.15875 -6.803125 -4.929375 -6.67375 -7.42625 -6.395 -6.95625 -6.881875 -9.1675 -7.45875 -5.47 -9.658125 -7.206875 -3.92875 -6.426875 -4.92375 -6.004375 -7.1075 -2.81375 -7.196875 -5.878125 -2.93875 -8.254375 -7.534375 -5.238125 -7.6225 -7.2575 -5.285 -5.65625 -5.628125 -4.408125 -6.07625 -3.661875 -5.63875 -9.0375 -4.47875 -6.465 -2.4325 -7.614375 -7.818125 -4.51375 -4.98375 -4.389375 -5.046875 -7.56875 -5.475 -3.595 -4.566875 -4.738125 -6.425625 -8.63125 -4.805625 -3.7475 -9.224375 -4.774375 -4.971875 -4.6825 -5.26 -5.623125 -1.280625 -7.25625 -4.03125 -5.180625 -5.835 -2.69625 -5.033125 -5.20125 -2.601875 -5.42125 -3.033125 -3.669375 -3.97 -3.656875 -3.02625 -2.4775 -6.519375 -5.68625 -4.0525 -4.3775 -5.975 -4.553125 -5.291875 -6.28875 -4.324375 -8.1075 -2.264375 -4.840625 -3.2075 -1.34875 -2.488125 -5.933125 -4.265 -5.343125 -4.00625 -4.26375 -3.141875 -4.129375 -3.249375 -4.536875 -4.1225 -3.914375 -6.02625 -3.63625 -3.245625 -4.951875 -4.58625 -7.756875 -4.963125 -5.1125 -3.095 -1.989375 -2.348125 -3.59125 -5.095 -4.239375 -3.95 -3.780625 -6.10875 -4.6225 -6.50125 -5.74875 -3.348125 -2.476875 -2.86 -5.5825 -4.6875 -3.394375 -0.8825 -4.37375 -4.704375 -8.430625 -4.496875 -5.080625 -3.97125 -3.951875 -5.4775 -0.465 -3.445 -4.39875 -3.95 -3.490625 -4.6125 -2.20875 -3.594375 -2.506875 -2.744375 -1.550625 -3.7575 -3.311875 -4.87125 -3.474375 -4.945 -2.039375 -4.695 -2.231875 -3.386875 -2.874375 -3.174375 -1.059375 -2.5475 -2.10375 -3.815625 -4.186875 -2.779375 -5.774375 -1.9775 -5.653125 -1.904375 -2.62125 -4.065 -2.75125 -4.611875 -3.610625 -2.13875 -3.469375 -4.57875 -3.7225 -1.636875 -3.044375 -4.475 0.701875 -2.035 -0.81 -1.450625 -1.355625 -3.580625 -3.431875 -2.120625 -2.319375 -2.74 -3.503125 0.545 -2.66375 -1.818125 -3.3325 -2.845 -1.688125 -3.791875 -5.113125 -5.528125 -2.18 -0.87125 -2.60375 -2.854375 -0.91625 -1.939375 -1.1725 -0.71625 -3.195625 1.041875 -0.199375 -4.1975 -4.9825 -2.931875 -0.19875 2.82625 -2.709375 -0.663125 -1.171875 -2.993125 -0.016875 -0.1625 -0.598125 -3.55875 1.211875 -2.85875 -0.45875 -3.416875 -1.17125 -2.03875 -5.148125 -1.02875 -2.75 -3.135 -3.87 -3.560625 1.6225 -2.11375 -4.543125 -4.453125 -1.406875 -4.1375 -0.39 -1.974375 -3.94 -2.1125 -2.975625 -3.0025 -0.61 -0.84375 -4.21625 -3.755 -0.94875 -3.373125 -1.931875 -1.3775 -3.48 0.0275 -2.641875 -1.085 -1.428125 -2.439375 -2.726875 -5.25625 -2.009375 -3.159375 -2.385 0.216875 0.258125 -1.31375 -2.119375 -0.78125 -1.146875 -0.505625 -0.91125 -1.405 -1.703125 -2.760625 -2.305 -3.97 -0.479375 -0.289375 -1.359375 -0.321875 -2.956875 -1.233125 -0.15125 -5.168125 -2.748125 0.07125 -2.295625 -2.04375 -1.3275 -0.0275 -3.546875 1.12375 -0.060625 -2.05 -2.37375 -1.188125 -0.856875 0.230625 -4.386875 -1.023125 -1.76375 -2.00625 -6.111875 -0.655625 -2.543125 -3.786875 -1.2075 -3.034375 -2.46375 -0.774375 -2.41875 -0.539375 -2.06125 0.184375 -5.143125 -2.473125 -2.2975 -2.91125 -2.025 -1.055 -1.875625 -2.019375 1.436875 -0.0525 -2.22375 -0.215 -2.06 -2.330625 -3.3475 -3.31375 -0.38875 -1.736875 -3.13 0.01125 -3.805625 -0.020625 -1.406875 0.475 -3.2475 -1.4325 0.63125 -0.835625 0.076875 -1.246875 -2.438125 -3.05875 -1.161875 0.030625 -0.668125 0.686875 -6.309375 -0.988125 -1.865625 -0.235 -1.175 -0.1675 0.046875 -2.890625 -1.0275 -1.59125 -2.484375 -1.814375 -3.525 -2.2025 -2.418125 -3.54375 -0.91375 -1.55875 2.12 -1.22125 0.793125 -4.621875 -5.419375 -1.099375 -3.8825 -1.099375 0.68125 -0.83875 -3.400625 -1.298125 0.165 -1.046875 -0.7925 -1.369375 -1.7025 -1.295625 0.885625 -0.288125 -2.89375 1.833125 -2.169375 0.35125 -1.520625 -1.03875 -0.694375 -3.034375 -0.3475 0.6025 -5.296875 -4.38875 -0.13 0.0925 0.161875 -5.701875 -2.699375 3.26625 -0.3025 -2.00875 1.18375 1.895625 -1.5675 -1.6825 1.313125 -3.4275 -0.335 -0.01125 -2.74 -3.965 -3.365 -0.994375 -3.591875 -1.85625 2.714375 -1.519375 -2.4875 -4.230625 -2.819375 -3.97 -3.88625 -0.683125 0.855 1.150625 -0.975 -2.195625 -4.023125 -3.34375 -0.346875 0.2725 2.013125 -0.2675 -2.265625 -3.290625 -3.42375 -0.05375 -0.008125 -0.9325 -3.045 0.14625 0.541875 0.11125 -1.835 -1.60375 -3.200625 1.84625 -2.454375 -2.4575 -1.5075 0.89375 -0.01625 -2.334375 0.13625 -0.004375 0.23625 -0.024375 -2.721875 -0.909375 -1.791875 -0.944375 -3.02625 -1.35625 -0.4575 -0.735 2.325625 -1.448125 -2.950625 -0.16 -4.42625 -3.478125 -1.468125 0.580625 0.55625 -2.97625 2.173125 0.798125 -1.651875 -2.031875 -1.353125 1.060625 -0.40375 -1.255625 -1.98 -1.659375 -1.96125 -2.535 -3.9525 -2.6975 1.441875 -3.978125 1.248125 1.26 -0.90125 0.096875 -0.100625 -0.78875 -3.546875 -0.57375 0.275 3.3225 0.78 -1.494375 0.955 -0.291875 -1.42125 -0.31375 -1.799375 -0.496875 1.8775 -2.361875 -2.011875 -5.6225 -2.015625 -3.5925 0.77875 -1.766875 -3.028125 -0.920625 -1.286875 1.740625 -0.1275 -0.5375 -2.800625 -1.2175 2.34375 -3.595625 1.2375 -1.45125 -0.75875 3.280625 -0.865 1.048125 1.008125 -0.695 -1.460625 -1.1125 -2.343125 0.769375 -1.533125 -2.931875 -2.001875 -0.148125 -0.754375 -1.448125 0.353125 -0.496875 -0.97375 -1 -4.0275 -3.395 -1.455625 3.719375 -0.565625 -3.33375 -0.91375 -2.87375 -0.480625 0.31625 -5.644375 -0.196875 0.076875 -0.156875 -0.44875 -3.186875 -6.468125 -1.093125 -0.445625 0.571875 1.471875 -1.1525 -1.840625 -1.37875 -0.998125 1.568125 -1.848125 -1.12625 0.561875 -1.955625 -1.354375 0.68375 -0.8975 -1.486875 -0.086875 2.46 -0.263125 -0.449375 1.7975 -3.26125 -1.62625 -0.793125 -0.749375 -0.30375 -1.79 -3.054375 -2.4875 -3.41375 -2.01625 1.70375 -4.0275 -0.33375 -0.05375 0.898125 -0.1325 1.69375 -2.14 -2.016875 0.268125 1.3325 -1.035625 -0.28375 -0.170625 1.27875 -1.770625 2.4275 1.899375 1.869375 0.27375 -2.02 -2.79375 -1.484375 -0.13875 -0.17 0.5025 -1.33375 -0.580625 2.544375 -0.131875 -1.4975 -0.30125 -1.25875 -4.125 -1.02125 -2.638125 1.233125 0.373125 0.0925 -1.718125 -1.65 -1.93875 -0.7675 -3.833125 -2.591875 1.74125 -2.5025 -0.951875 1.301875 0.136875 0.584375 3.39875 -1.910625 -1.78875 -1.64125 2.491875 -1.54375 1.078125 0.296875 -3.05375 0.191875 -1.55875 -2.326875 -3.55 -1.51125 1.4375 -1.523125 -5.6175 0.044375 1.026875 -1.87625 -1.903125 0.665625 -1.019375 -0.94375 -1.2025 0.185625 -1.75 -2.20375 -1.269375 -2.63625 -0.38125 1.603125 -1.813125 -2.303125 -0.474375 -1.560625 -1.486875 0.82375 -0.2525 -2.345 -3.171875 -2.379375 0.761875 -1.44375 -2.62625 -0.16375 0.155 -1.125625 -1.26125 -3.0225 -3.12625 -0.315 0.010625 -1.71125 -0.065625 -1.33875 2.310625 0.77125 -2.169375 -0.6525 -1.239375 -0.5575 -0.51875 -0.221875 -2.365 1.18 0.16875 -1.180625 -2.04375 -2.54375 -1.294375 -0.539375 1.82 -0.893125 -1.955 -4.58125 -0.651875 -2.850625 0.1125 1.785625 0.98625 2.5925 -2.06 1.209375 1.548125 0.845625 0.50125 1.5425 -2.813125 -2.09375 -1.9425 -1.268125 -0.36375 2.11875 0.595625 -1.094375 -1.150625 1.24875 1.64875 -0.3975 0.179375 -1.928125 -0.329375 -1.155 -3.648125 0.085 -0.869375 1.28125 -1.08375 1.290625 -2.1 -1.62625 -0.47875 -1.179375 -0.308125 -1.155 1.06875 -2.240625 -0.790625 1.685 -3.525 -0.68125 -0.595625 2.20125 -1.27125 -3.94875 -5.7775 0.895625 -0.63125 -0.579375 -1.829375 -2.721875 1.37 -1.73125 -2.82875 0.09875 -0.379375 0.655 -0.494375 -1.3775 -0.718125 1.721875 -0.785 0.89 -1.31625 1.29375 -1.485 -3.905 0.409375 1.77125 -3.454375 -1.028125 -1.024375 0.21375 -0.75375 -1.229375 -1.4225 -0.1925 -1.03 -0.621875 -1.530625 -2.724375 -2.73875 1.2875 -1.320625 0.42625 -2.325625 0.22 -1.515 2.644375 2.61125 2.96625 0.2275 2.733125 -4.211875 -1.52375 -0.449375 1.5475 -3.161875 0.0075 2.34 -1.135625 0.79375 -1.9025 -1.3225 -1.614375 -3.084375 1.0425 -4.28875 0.83125 1.179375 1.5975 0.04 -1.6275 0.00875 -3.12375 -0.715 1.019375 1.89375 -1.9925 2.398125 -1.29625 0.648125 -3.771875 -0.044375 0.01875 0.515 -0.946875 0.549375 -0.084375 -1.348125 0.6825 -1.281875 -1.24625 -0.69625 0.135 -1.71625 -1.87375 -2.256875 -0.964375 -0.453125 -0.1725 -0.400625 0.855625 1.784375 -3.796875 -3.190625 -1.14 -3.5925 -0.905625 1.709375 -1.609375 0.065 -0.644375 -0.51125 0.595 -2.750625 -1.18125 1.163125 1.10375 1.873125 -1.435 0.808125 0.86 0.290625 -0.2725 0.64 2.66875 0.036875 0.045 2.105 0.7675 -1.00125 -1.6875 -0.488125 1.825 1.94 -2.161875 0.794375 -0.605625 -1.831875 -2.151875 -0.314375 0.36125 0.651875 0.511875 -2.91625 1.045625 -2.12875 0.940625 -1.41125 -0.418125 -4.156875 -2.308125 -0.265625 -0.37375 -0.873125 -0.253125 -0.84375 -1.95625 -0.1025 2.230625 0.549375 -0.15125 -0.451875 -0.51625 0.206875 -3.12125 -2.355625 -3.50625 -0.4525 -0.140625 0.34375 -0.5375 0.284375 -1.163125 -1.54125 -4.096875 -0.834375 0.10875 0.121875 -1.828125 -2.48625 0.57125 -0.106875 -2.2425 0.151875 -0.53875 -1.543125 -2.46625 -2.59125 0.386875 -0.1375 -0.064375 -0.765625 0.504375 -2.689375 -1.1525 0.279375 -2.08 -0.2925 -1.726875 -0.115 -2.47375 -3.388125 1.6425 0.049375 0.800625 1.3 -2.41125 0.1 -2.780625 -0.989375 2.365 -2.460625 -2.981875 -2.616875 -1.078125 -1.10375 -1.103125 -0.42625 -0.753125 0.395625 -0.4725 -1.78125 2.7225 -1.16375 -0.765625 -0.245625 0.649375 3.00375 -0.643125 -3.31625 0.27625 0.51625 -2.14 1.086875 -0.055625 0.8375 0.235 1.31375 1.896875 -0.438125 -0.870625 -0.6725 0.263125 0.02125 -1.57 -0.361875 -1.36625 2.71 1.751875 -1.645 1.3875 -2.605625 1.700625 1.458125 1.62625 -0.786875 -0.980625 -0.131875 0.96375 2.141875 3.016875 -2.2475 0.91125 -1.4375 0.454375 0.59875 1.32375 -2.130625 -2.246875 1.779375 -4.1375 -0.406875 -2.3125 -0.716875 -1.9925 -0.636875 0.04875 0.62625 0.73 1.636875 1.884375 -0.148125 -1.38 -1.003125 0.09 -0.633125 1.4875 -1.4375 1.901875 -0.330625 2.775 -2.5525 1.515 -0.953125 -1.54375 -0.36375 1.51875 0.0725 0.721875 -0.145625 -0.90875 -1.53875 0.4075 0.591875 0.84625 0.254375 -1.075 0.93625 0.77125 -1.100625 1.125625 -2.199375 -2.6 -2.00125 -1.57625 -2.135625 -0.943125 2.231875 -2.511875 1.043125 0.52625 -3.14 0.289375 -0.61125 1.81 -0.881875 -0.125625 -1.98875 -1.001875 -1.0575 -1.525625 1.43 -0.774375 -2.03375 -0.515 2.2475 1.428125 -0.866875 -2.235625 1.325625 -3.29125 -0.34875 4.511875 3.37625 -1.038125 -3.33375 1.215625 -1.713125 0.415625 -4.573125 0.823125 -0.228125 -1.12 -0.11125 1.291875 -2.57375 -1.65125 -1.461875 0.2675 -0.959375 -0.150625 2.3225 0.209375 1.5375 -2.22625 1.21875 1.093125 -1.726875 2.323125 0.405625 3.516875 1.10375 0.5125 -1.356875 -2.75875 -0.186875 -1.533125 -2.018125 -0.65125 -2.39625 1.6125 -1.781875 2.5625 -0.58625 -0.4175 2.285 -0.268125 0.110625 -3.166875 0.4025 -0.409375 -1.4175 0.30375 -0.455 0.3325 -1.223125 -1.838125 -1.2175 -0.846875 -0.89875 -2.835 -0.005 2.413125 -1.6 -2.735 -0.503125 1.01625 1.618125 -2.250625 -1.24875 0.048125 -2.97 3.531875 1.056875 1.056875 2.076875 -2.96125 -2.378125 -0.48 1.36125 -3.475625 -1.87875 1.02375 0.12375 -3.979375 -0.549375 1.576875 1.9275 -0.089375 -2.37125 -0.30875 -1.698125 0.43375 -0.9525 -0.510625 0.00875 -2.0775 0.075 1.786875 0.445 -0.358125 1.99125 2.788125 -3.308125 -3.175 -0.5525 -0.614375 1.23875 -0.09875 -1.48375 1.078125 0.505 2.130625 -3.25 1.67125 -1.086875 -1.061875 0.291875 -0.101875 -1.034375 -0.8825 -3.148125 -1.399375 -2.3175 0.446875 -1.44625 0.0275 2.74125 -0.840625 -2.084375 -0.895625 1.56375 -1.75875 -3.77125 -0.083125 0.071875 -1.410625 -0.18125 -0.82875 -1.008125 -3.3325 -1.60375 -2.05125 0.276875 2.544375 -1.47 -0.705625 -0.34125 -0.7725 -3.77 -0.830625 -0.128125 -0.213125 -0.16 1.886875 0.10875 2.146875 -3.649375 0.729375 -2.139375 2.691875 -0.554375 0.634375 -1.7375 -0.37125 1.31375 -0.674375 0.11625 1.313125 1.1675 0.72 0.295625 0.3275 -2.46125 -1.713125 1.55 1.788125 2.5475 -1.954375 -2.159375 -0.41125 -0.924375 -0.975 1.51375 -0.821875 -0.739375 1.430625 0.109375 1.301875 0.870625 -0.269375 -2.335 -1.3425 -0.688125 -3.309375 -1.939375 2.00125 -2.855 -2.9525 0.06625 -0.51875 -0.14875 -1.091875 0.900625 -2.75625 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_300ms_ref.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_300ms_ref.hrd new file mode 100644 index 0000000..0cfb8cd --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_300ms_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 300 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035428 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-0.02375 0.0075 -0.05875 0.029375 -0.045625 -0.03875 -0.058125 -0.023125 -0.01625 -0.00875 -0.065 -0.006875 0.014375 -0.00875 -0.010625 -0.015625 0.03625 0.0675 0.003125 0.013125 0.056875 0.029375 0.020625 0.019375 0.02 -0.02625 -0.025625 -0.014375 -0.044375 -0.008125 -0.02375 -0.0025 -0.021875 -0.03125 0.010625 -0.015 -0.000625 0.00875 0.029375 0.010625 -0.02625 0.035625 0.011875 -0.04375 -0.00875 -0.018125 -0.03375 -0.029375 0.010625 -0.0175 0.015625 -0.011875 -0.01125 -0.0175 0.00375 0.035625 -0.028125 0.014375 0.014375 0.006875 -0.015625 0.01375 0.04125 0.045 0.0225 -0.025 0.006875 0.016875 0.001875 -0.024375 -0.055625 -0.0325 -0.0075 -0.063125 -0.01625 -0.0175 0.055625 -0.004375 -0.058125 0.044375 0.03125 0.006875 -0.00375 0.0225 -0.0725 0.004375 -0.015 0.02125 -0.018125 -0.046875 0.0125 -0.055 -0.023125 0.008125 -0.000625 -0.01875 0.02875 0.004375 0.06125 -0.055625 0.038125 0.035 0.04625 0.02 -0.025 0.00625 0.03875 0.024375 -0.00125 0.00125 -0.035 -0.0325 -0.008125 -0.01375 0.00875 -0.070625 -0.039375 -0.0125 -0.015625 0.0025 -0.003125 -0.013125 -0.03 -0.03875 -0.016875 0.01625 -0.055 -0.008125 -0.013125 -0.04375 -0.02875 0.016875 -0.00125 -0.045 -0.015625 -0.020625 -0.018125 -0.0075 0.010625 -0.006875 0.02 0.006875 0.011875 0.03625 0.04125 0.036875 0.02375 0.0125 0.01625 0.044375 0.0425 -0.040625 0.0225 -0.039375 -0.025625 -0.003125 -0.06875 0.0025 0.04625 0.0025 -0.044375 -0.004375 -0.00125 0.010625 0.03125 0.015 0.005 0.021875 -0.004375 0.00125 -0.008125 -0.019375 0.005625 0.02125 -0.024375 -0.046875 -0.01125 -0.015625 -0.03375 -0.0475 0.018125 -0.028125 0.008125 0.035 0.04625 0.01875 -0.01 0.009375 0.03875 0.0625 0.03875 0.02875 -0.0075 -0.004375 -0.01375 0.00375 -0.03625 -0.008125 -0.028125 0.005625 0.004375 -0.0325 -0.0075 0.013125 -0.0375 -0.038125 -0.04875 0.045 0.01375 0.0275 -0.015 -0.018125 -0.03875 -0.011875 0.00875 0.0025 -0.03875 0.004375 -0.00125 -0.0075 -0.0375 -0.025 0.01125 -0.03875 0.073125 -0.006875 0.05 0.000625 0.01875 -0.000625 0.005625 0.0125 0.0075 0.025 0.006875 0.014375 0.0025 0 -0.04375 -0.01625 0.004375 -0.005 0.005625 -0.0325 0.015 0.034375 0.004375 0 0.029375 -0.011875 0.0275 0.00375 -0.016875 -0.02875 -0.005625 -0.00125 0.01 -0.055 -0.051875 0.003125 -0.018125 -0.00625 -0.024375 0.001875 0.036875 0.03125 0.0325 0.015 0.046875 0.070625 0.045625 0.04125 0.053125 0.028125 0.006875 0.003125 -0.04 -0.01125 -0.03125 -0.00375 -0.031875 0.005 -0.0475 -0.044375 -0.01875 0.001875 -0.020625 0.0075 -0.065625 -0.010625 -0.005 0.016875 -0.01375 -0.0375 -0.031875 -0.04875 -0.074375 -0.023125 -0.01625 -0.005625 0.011875 -0.0025 -0.00875 0.015625 0.0575 0.003125 0.033125 0.036875 0.006875 -0.0075 -0.020625 0.01625 0.04625 0.04375 0.014375 0.045 0.0325 -0.026875 0.003125 -0.0175 -0.01875 -0.03 -0.0025 0.004375 -0.05375 -0.033125 0.0275 -0.0275 0.00875 -0.03125 0.011875 0.00125 -0.044375 0.04125 0.0325 0.02375 -0.018125 0.006875 -0.031875 -0.0225 -0.038125 -0.0325 -0.04 -0.024375 -0.015625 -0.006875 -0.041875 -0.015 0.01375 -0.0025 0.010625 0.045625 0.045625 0.05125 0.051875 0.073125 0.0125 0.03 0.013125 -0.0025 -0.009375 -0.069375 -0.075625 -0.02375 -0.04 -0.00625 0.0225 -0.009375 -0.023125 -0.028125 0.011875 -0.04875 0.04375 0.031875 -0.0125 0.006875 0.013125 -0.055 0.001875 -0.015625 -0.02875 0.00125 -0.036875 -0.021875 -0.03125 -0.03 -0.026875 0.028125 -0.021875 0.028125 0.048125 0.035625 0.00375 0.016875 0.018125 0.023125 0.039375 0.045625 0.0325 -0.011875 0.004375 0.01125 -0.0175 -0.080625 -0.003125 -0.000625 -0.00375 0.00125 -0.053125 0.028125 0.016875 0.005 0.0425 -0.030625 0.0025 -0.005 0.00625 -0.0375 0.02625 -0.099375 0.021875 -0.05125 -0.063125 0.0125 -0.015 0.001875 -0.03875 0.01125 -0.04 -0.00125 -0.019375 0.058125 0.033125 0.02625 0.055625 0.06375 0.015625 0.05125 0.02 -0.005 0.009375 0.01375 0.010625 -0.03875 0.033125 0.005625 -0.020625 -0.0225 -0.020625 0.001875 -0.01875 0.0025 0.039375 -0.0025 -0.0575 -0.043125 -0.01375 0.0225 0.01625 -0.036875 -0.0525 -0.03625 -0.036875 -0.070625 -0.0575 -0.01375 -0.03 -0.03875 0.00875 0.01125 -0.01 0.03875 -0.00125 0.001875 0.025625 0.028125 0.063125 0.049375 0.02 0.06375 0.04875 0.020625 -0.01625 -0.0175 -0.016875 -0.04625 0.020625 0.049375 -0.02375 -0.021875 0.01 -0.00125 0.021875 -0.03375 -0.025 0.000625 0.03125 0.01625 0.00625 0.01875 -0.02875 -0.024375 0.00625 -0.059375 -0.045625 -0.0475 -0.014375 -0.00125 -0.03375 -0.00875 0.063125 -0.010625 -0.0025 0.076875 0.013125 0.018125 0.03375 0.01125 0.055 0.025625 0.01375 0.0275 -0.011875 -0.018125 -0.030625 -0.063125 0.00125 -0.02625 -0.03375 -0.02125 -0.050625 0.015 0.006875 0.0275 -0.000625 0.0375 0.0025 -0.05125 0.009375 -0.040625 -0.018125 -0.0025 -0.043125 -0.046875 -0.04125 -0.016875 -0.020625 -0.055 -0.041875 -0.00875 -0.0075 -0.003125 -0.03125 0.02 0.04125 0.09 0.04 0.00875 0.00125 0.035 0.004375 -0.0175 0.0375 0.014375 0.02875 0.035 0.005625 -0.010625 -0.031875 -0.025 -0.016875 -0.058125 0.0025 -0.053125 0.003125 0.005625 0.058125 0.00875 0.0075 0.02 0.02375 0.03625 -0.01625 -0.04375 -0.045625 -0.03875 -0.04625 0.005625 0.035625 -0.081875 -0.0425 -0.009375 -0.005 -0.014375 -0.00375 0.020625 0.008125 -0.025625 0.01 0.05 0.055625 0.028125 -0.015 0.06125 0.03 0.074375 0.045625 0 -0.04125 -0.066875 0.001875 -0.01375 0.03375 -0.025625 0.025625 -0.008125 -0.04625 -0.011875 0.03125 0.026875 -0.021875 0.0325 0.02875 -0.038125 -0.05125 0.049375 -0.016875 0.02 -0.034375 -0.048125 -0.061875 -0.068125 0.0225 -0.016875 -0.01375 -0.034375 0.008125 0.05 0.05625 0.033125 0.050625 0.0725 0.035 0.04 0.071875 0.046875 -0.028125 0.031875 0.068125 -0.00625 -0.01625 0.014375 -0.054375 0.01125 -0.0325 0.019375 0.001875 0.011875 0.02125 0.021875 -0.018125 -0.02 0.005 0.035 0.02 -0.03375 -0.02 -0.001875 0.039375 -0.04875 -0.065625 -0.04 -0.0325 -0.08 -0.0325 -0.02 -0.02375 -0.01125 0.03625 0.04375 -0.02375 0.00625 0.07625 0.000625 0.050625 0.073125 0.0575 0.00875 0.03625 0.034375 0.033125 0.004375 0.010625 -0.02375 -0.020625 -0.0325 0.035625 0.040625 -0.065 -0.010625 -0.02125 0.05 -0.03375 0.02875 0.060625 -0.004375 -0.005 0.011875 0.068125 -0.02875 -0.04625 -0.025 -0.01375 -0.009375 0.01125 -0.026875 -0.015625 -0.03 0.015625 0.029375 0.03 0.02 0.011875 0.040625 0.0675 0.00875 0.041875 0.069375 0.03875 0.033125 0.0275 -0.0625 0.059375 -0.031875 0.01625 -0.061875 -0.0225 -0.01875 -0.02125 0.00625 -0.030625 -0.025 0.015625 -0.021875 0.015625 -0.0125 0.01 0.030625 0.014375 -0.0475 0.005 -0.06 0.009375 0.03875 -0.031875 -0.0525 -0.065 -0.041875 -0.029375 0.006875 0.040625 0.00375 0.028125 -0.0025 0.031875 0.04125 0.015 -0.0075 0.058125 0.041875 0.02875 -0.003125 0.089375 -0.03625 -0.009375 -0.02 -0.03125 -0.008125 0.05375 -0.025625 0.008125 -0.010625 -0.0275 0.01 0.04375 0.01625 0.045625 -0.00375 -0.014375 -0.014375 0.045625 -0.000625 0.00375 0.01 -0.009375 -0.039375 -0.038125 -0.006875 0.02 -0.001875 0.023125 -0.02125 0.039375 0.05625 0.031875 0.028125 0.046875 0.028125 0.081875 0.049375 0.04875 0.04 0.028125 0.006875 -0.006875 0.043125 -0.01375 -0.039375 -0.029375 0.005 0.02 -0.0275 -0.03125 -0.0175 0.009375 -0.004375 0.0075 0.039375 -0.020625 -0.06 -0.01875 0.00875 -0.0075 -0.035 0.004375 0.013125 0.02125 -0.0425 -0.00125 0.018125 -0.03 -0.033125 -0.018125 0.015625 0.00875 0.04125 0.06625 -0.02375 0.0225 0.05125 0.016875 0.040625 0.0175 0.021875 0.0725 0.033125 -0.01 -0.0125 0.008125 -0.05125 0.003125 0.02125 -0.01625 -0.035 -0.040625 -0.006875 0.040625 0.04125 0.03875 0.069375 -0.011875 0.01625 0.014375 -0.00875 -0.02625 0.02375 0.021875 -0.014375 0.023125 -0.05875 0.00875 -0.030625 -0.045 -0.041875 0.018125 0.043125 0.034375 0.030625 0.03625 0.063125 0.055 0.070625 0.049375 0.0625 -0.03 0.036875 -0.034375 -0.01 -0.035625 -0.01 -0.05875 0.015 0.01875 -0.034375 0.00875 -0.02 -0.025 -0.005625 -0.009375 0.01 0.02 0.009375 0.01375 0.008125 0.00875 -0.01375 -0.005 -0.031875 -0.025 -0.004375 -0.035625 -0.044375 0.00375 0.016875 -0.019375 -0.006875 0.0125 -0.05625 0.06 0.00125 0.0775 0.04625 0.040625 0.0475 -0.019375 0.01 0.056875 0.005625 -0.00625 -0.0125 -0.036875 -0.053125 0.005625 -0.018125 0.023125 0.029375 -0.0025 0.004375 -0.02375 -0.005 0.023125 0.045625 0.010625 -0.01625 0.010625 0.02125 -0.014375 -0.01625 -0.016875 -0.0075 -0.024375 -0.0125 -0.00375 -0.053125 -0.000625 -0.015625 -0.01 -0.02625 0 0.00875 0.011875 0.0125 0.053125 0.021875 0.03125 -0.016875 0.04625 0.04 0.01875 -0.02 -0.035625 0.00875 -0.07 -0.046875 -0.0225 -0.025625 -0.0125 -0.0075 -0.066875 -0.005625 -0.015625 0.016875 -0.024375 0.030625 -0.0025 0.053125 -0.041875 -0.014375 -0.039375 0.005625 0.0025 -0.050625 -0.03375 -0.021875 -0.028125 -0.08625 -0.023125 0.02875 -0.003125 -0.013125 0.03875 0.036875 0.02375 0.008125 0.03875 0.070625 -0.034375 0.0475 0.055625 0.04375 0.019375 0.021875 -0.02875 -0.066875 -0.031875 0.01375 0.00375 -0.001875 -0.00875 -0.035 0.008125 -0.024375 -0.040625 -0.01375 0.03 -0.025625 -0.005625 0.001875 0.003125 -0.004375 -0.00875 -0.033125 -0.073125 -0.041875 -0.080625 -0.05625 -0.063125 -0.07125 -0.03875 -0.020625 -0.023125 -0.044375 0.005625 -0.01375 0.015625 0.035 0.010625 0 0.034375 0.06375 0.018125 -0.01625 -0.021875 0.02625 -0.018125 0.0175 -0.02875 -0.034375 -0.020625 -0.078125 -0.009375 0.008125 0.014375 -0.0325 0.001875 0.026875 0.0025 -0.02 0.034375 -0.02625 -0.04125 0.01 0.02375 -0.03625 0.0425 0.03375 -0.05875 -0.0125 -0.013125 -0.058125 -0.00125 -0.01375 0.043125 0.010625 -0.0475 0.004375 0.06125 0.00875 0.051875 0.0825 0.074375 0.0525 -0.01625 0.011875 0.02625 -0.02375 0.013125 -0.035625 0.000625 -0.058125 -0.010625 0.03125 0.00625 -0.006875 -0.02125 -0.010625 -0.069375 -0.050625 0.0325 -0.015625 -0.0075 0.00625 0.009375 0.05875 -0.006875 -0.039375 -0.0575 -0.055 -0.005 -0.025 -0.048125 0.01125 0.0325 -0.001875 -0.0425 -0.033125 0.05625 -0.010625 0.0575 0.001875 0.02125 0.065 0.0125 -0.028125 -0.00375 0.01625 -0.036875 0.01125 0.000625 -0.003125 -0.005625 -0.06875 0.020625 -0.0325 0.025625 0.04 0.025625 0.015625 -0.0225 0.00125 0.008125 0.025 -0.010625 0.0125 0.029375 -0.02875 -0.035 0.006875 0.034375 0.034375 0 -0.03625 -0.035625 0.041875 -0.049375 0.0075 0.018125 0.021875 -0.0175 0.058125 0.064375 0.020625 0.028125 0.01125 0.025 -0.019375 0.035 0.00375 -0.0525 0.00625 -0.023125 -0.028125 0.043125 0.03 0.02 -0.04125 -0.008125 0.00875 -0.041875 0.00375 0.038125 -0.003125 0.021875 -0.02125 -0.00625 0.025625 -0.01 -0.016875 -0.04125 -0.0475 -0.006875 -0.056875 0.018125 0.055 0.001875 -0.005 0.011875 0.059375 0.004375 0.026875 0.045625 0.034375 0.0325 0.04125 0.06125 0.060625 0.04125 0.02375 -0.00625 0.025625 -0.028125 -0.015 -0.006875 -0.03875 -0.001875 -0.034375 0.010625 -0.020625 -0.006875 0.035625 0.006875 0.005625 0.00875 0.04 -0.004375 -0.01 -0.0125 -0.004375 -0.005 -0.035625 -0.005 -0.046875 -0.0475 -0.016875 -0.0425 -0.008125 -0.023125 -0.028125 0.018125 0.03625 -0.008125 -0.005 0.068125 0.035625 0.036875 0.04875 0.041875 0.070625 0.02125 -0.0025 -0.015625 -0.024375 -0.0225 -0.0375 -0.05 -0.034375 -0.003125 -0.033125 -0.0125 -0.044375 -0.0275 -0.010625 -0.010625 0.036875 -0.0125 -0.01 -0.019375 0.01125 0.031875 0.035 -0.03625 0.0075 -0.065625 -0.066875 -0.02375 0.020625 -0.0275 -0.019375 -0.0025 0.03 -0.000625 -0.010625 0.045625 0.053125 0.045625 0.0725 0.045 0.05125 0.06625 0.040625 0.054375 -0.020625 0.03625 -0.01875 0.021875 -0.033125 -0.015 -0.02 -0.02125 -0.005 -0.065625 -0.014375 0.005625 0.0175 0.018125 0.019375 -0.029375 -0.011875 0.010625 -0.01625 -0.03375 -0.028125 -0.0075 0.00625 -0.043125 -0.008125 -0.025625 -0.03625 0.003125 -0.031875 0.030625 -0.0425 0.00625 -0.028125 0.008125 -0.039375 0.015625 0.0225 0.02125 0.048125 -0.01 0.066875 0.0075 0.029375 0.0025 0.02375 -0.00125 0.011875 -0.019375 -0.005625 -0.058125 -0.01875 -0.014375 0.031875 0.006875 0.059375 -0.0075 -0.010625 -0.026875 -0.04375 -0.000625 0.000625 0.000625 -0.039375 -0.079375 -0.015625 -0.036875 -0.003125 -0.006875 -0.0375 -0.07 -0.009375 0.0275 0.00375 0.03 0.0675 0.05125 0.01 0.051875 0.01625 0.0175 -0.025625 0.015 -0.03125 0.02625 0.021875 0.011875 -0.03125 0.005625 0.01625 0.024375 -0.0325 -0.0075 -0.045625 0.033125 -0.00375 -0.04375 -0.03625 0.026875 0.044375 0.020625 0.00625 -0.009375 -0.015625 -0.006875 -0.00625 -0.01 -0.058125 -0.025625 0.011875 0.02625 -0.06875 -0.024375 -0.003125 -0.005 0.02 0.03125 0.065 0.051875 0.075 0.019375 0.054375 0.069375 -0.0375 0.0575 0.03875 0.003125 0.041875 -0.01 -0.043125 -0.028125 -0.018125 -0.03375 -0.055 0.01 0.00875 -0.0275 -0.025 0.018125 0.02 0.005625 -0.001875 -0.00625 0.000625 -0.0325 -0.050625 0.025625 -0.02125 -0.025625 -0.015 0.005625 -0.065 -0.028125 -0.086875 -0.003125 -0.02875 0.004375 -0.04125 0.04875 0.01625 0.01625 0.035 -0.000625 0.03625 -0.025625 0.061875 -0.006875 0.015625 0.000625 0.016875 -0.006875 -0.04375 0.013125 0 -0.0375 0.0375 -0.045 -0.025625 -0.01875 0.006875 -0.0025 -0.039375 0.03375 -0.058125 -0.005625 -0.055625 -0.020625 -0.03875 0.004375 0.01125 +0.014375 -0.00125 0.0275 -0.0175 0.033125 0.00625 -0.074375 0.000625 -0.031875 -0.0225 0.026875 -0.00875 -0.06125 -0.001875 -0.051875 0.01 0.045625 0.025625 0.01375 0.10125 0.056875 -0.034375 0.031875 0.046875 -0.00125 -0.004375 -0.045625 -0.018125 -0.045 -0.0125 0.019375 0.0225 -0.030625 -0.06125 0.001875 0.000625 0.054375 -0.035625 0.04875 0.013125 -0.020625 0.003125 0.01125 0.0225 -0.03375 0.009375 0.04 -0.02625 -0.03625 -0.00125 -0.016875 -0.054375 -0.0475 0.0375 -0.0375 0.005 0.0075 0.03 -0.013125 -0.000625 0.059375 -0.020625 0.0375 -0.006875 -0.01 0.001875 0.028125 0.01625 -0.025 -0.023125 0.01375 -0.026875 -0.014375 -0.04875 -0.028125 -0.028125 -0.02875 0.005 0.029375 0.009375 -0.024375 -0.02375 0.01 0.020625 0 -0.02125 -0.00625 0.029375 -0.014375 -0.018125 0.03125 0.05625 -0.04125 -0.055625 -0.001875 -0.023125 0.0025 0.04625 -0.01875 -0.005625 0.014375 0.0475 0.069375 0.058125 0.00125 -0.003125 0.07875 0.045625 0.014375 0.01625 -0.005 0.009375 -0.023125 -0.015 -0.015 0.01 -0.02375 -0.02 0.006875 -0.04375 -0.026875 -0.011875 -0.035625 -0.000625 0.0075 0.058125 -0.06125 -0.0175 -0.078125 -0.025625 -0.00625 -0.04 -0.05375 -0.05875 -0.0475 -0.02 0.013125 -0.015 -0.0075 -0.01875 0.02875 0.02 0.0225 0.0175 0.05875 0.006875 0.020625 0.04625 0.040625 -0.008125 -0.005 -0.00375 -0.019375 -0.013125 0.0025 -0.01375 -0.028125 -0.035 0.061875 0.005625 0.021875 0.000625 0.005625 0.001875 -0.031875 -0.02 0.03625 0.02875 0.025 -0.026875 -0.03375 -0.0025 -0.013125 0.011875 -0.05 -0.02375 -0.02375 0.001875 -0.01375 -0.02875 0.004375 -0.018125 0.02 0.026875 0.003125 -0.005 0.020625 0.0175 0.01 0.00375 0.006875 0.006875 0.013125 -0.01875 0 0.0175 -0.026875 -0.00875 0.04875 0.036875 -0.0125 -0.018125 0.023125 -0.005 0.035625 -0.020625 0.0275 0.0275 -0.0375 0.05125 0.044375 0.001875 -0.081875 -0.03625 -0.00125 -0.01 -0.01875 -0.0025 -0.004375 0.0125 -0.001875 -0.030625 0.02875 0.0175 -0.043125 0.0225 -0.00125 0.001875 0.094375 0.003125 0.06 0.003125 0.034375 0.014375 0.0425 -0.011875 -0.008125 0.03625 0.004375 -0.0625 -0.015 0.0175 -0.005 0.011875 -0.045625 0.005 0.02 0.008125 -0.004375 -0.0025 0.0075 -0.00875 -0.02625 -0.015625 -0.04125 -0.015 -0.01375 -0.04 -0.0075 -0.04 0.023125 -0.011875 0.038125 -0.0425 -0.01 0.020625 0.02625 0.010625 0.02125 0.04375 0.02375 0.01 0.054375 0.016875 0.01375 -0.0175 -0.0275 -0.0375 -0.02125 0.03625 0.01375 -0.008125 -0.038125 0.004375 -0.01 -0.03875 0.014375 0.0025 0.049375 -0.00625 0.01125 -0.00625 0.030625 -0.003125 0.065 -0.019375 0.015 -0.00625 -0.02125 -0.005 0.02125 0.008125 0.031875 0.01375 0.043125 0.0375 0.0175 -0.005625 0.018125 -0.04375 -0.005 0.02125 0.04375 0.005625 0.016875 0.03875 0.026875 -0.033125 -0.009375 -0.015625 -0.07625 0.00625 0.013125 -0.045625 -0.04 0.0175 -0.056875 -0.01375 0.02375 -0.03875 0.0025 -0.0025 -0.028125 0.00625 -0.01375 0.001875 -0.04875 -0.019375 -0.0375 -0.005 0.01 -0.03 -0.07875 -0.028125 0.036875 0.005625 -0.045625 0.038125 0.075 0.011875 0.0425 0.01625 0.050625 0.03 0.016875 0.015 -0.003125 0.031875 -0.01125 0.01875 -0.001875 0.014375 -0.010625 -0.015625 0.0025 0.01 -0.0575 0.001875 -0.036875 -0.004375 0.019375 -0.00875 0.0175 -0.034375 0.0225 -0.00125 -0.0125 0.00375 0.016875 -0.00625 -0.05375 -0.008125 0.034375 -0.043125 -0.02 -0.065 0.018125 0 -0.04875 0.026875 0.01625 -0.00875 -0.029375 0.049375 0.03125 0.054375 0.019375 0.028125 0.005 0.0275 0.023125 -0.013125 0.03375 -0.006875 0.005625 0.005625 -0.06125 -0.02625 -0.0175 -0.02 0.01 -0.053125 0.020625 0.05125 0.034375 -0.06125 -0.023125 0.0325 -0.01 0.005 -0.03875 -0.01125 -0.031875 -0.000625 -0.00875 -0.034375 -0.03875 -0.001875 0.00875 -0.031875 0.02375 0.02125 0.021875 0.051875 0.00875 0.046875 0.0175 0.005625 0.079375 -0.038125 -0.028125 -0.0125 -0.0075 -0.0375 -0.0125 0.021875 -0.0275 -0.019375 0.003125 0.035 0.00125 -0.05 -0.000625 -0.045 0.0075 0.00625 -0.02875 -0.004375 -0.02375 0.018125 -0.019375 -0.023125 -0.02375 -0.02375 -0.04875 0.006875 -0.025 0.008125 -0.01375 -0.015 -0.03 0.000625 0.043125 0.00625 0.036875 0.0625 -0.00875 0.008125 -0.0075 -0.02125 0.02125 0.04375 0.018125 -0.03125 -0.0325 -0.058125 0.005 0.013125 -0.021875 0.01 -0.00375 0.020625 0.054375 -0.01875 0.009375 -0.00375 0.0275 -0.026875 0.0375 0.021875 -0.05 -0.04625 0.006875 -0.04875 -0.003125 0.005 -0.0275 0.015 0.02625 -0.006875 -0.0275 0.0275 0.04875 0.029375 0.003125 0.019375 0.01875 0.071875 0.066875 0.02875 -0.01375 0.04 0.01 -0.015625 0.03625 -0.034375 -0.040625 -0.055 -0.0225 0.00375 0.004375 0.0025 -0.010625 -0.038125 -0.050625 0.00875 0.00125 -0.00625 -0.075 0.04375 -0.019375 0.006875 0.0125 0.0325 0.015625 -0.001875 -0.02875 -0.021875 0.006875 -0.011875 -0.021875 0.01625 -0.0125 -0.031875 0.01 0.031875 0.005625 0.02625 0.014375 0.04125 0.045625 -0.006875 0.053125 0.02125 0.018125 0.0225 0.030625 0.005 -0.01875 0.033125 -0.01625 -0.048125 0.013125 0.02125 -0.04125 -0.018125 0.016875 -0.030625 -0.071875 0.00125 0.02125 0.036875 -0.014375 -0.015625 0.005625 -0.02125 -0.035 0.03875 0.00125 -0.011875 -0.03875 0.00375 -0.00875 -0.01625 -0.020625 0.059375 0.03875 0.020625 0.060625 0.005 0.0125 0.03875 0.040625 0.026875 0.05875 0.003125 0.01625 -0.00625 -0.02625 -0.0525 0.00625 -0.054375 -0.020625 -0.03875 -0.00125 -0.0225 -0.006875 0.005625 0.018125 0.0575 0.03125 -0.006875 -0.024375 0.02375 0.0075 -0.0175 -0.035 0.01 0.006875 -0.000625 -0.015625 -0.023125 -0.030625 -0.01 0.014375 -0.005 0.005 -0.00625 -0.010625 0.0025 -0.036875 0.003125 0.013125 0.019375 0.0525 -0.00375 0.015625 -0.02625 0.013125 0.019375 0.00125 -0.000625 0.011875 0 -0.05125 0.01625 -0.045625 -0.005625 0.0325 -0.00125 0.011875 -0.043125 -0.003125 0.0425 0.010625 0.06125 0.00125 0.054375 -0.03125 -0.00125 -0.020625 -0.048125 0.01375 -0.054375 -0.010625 0.010625 -0.01875 -0.02125 -0.005625 0.05125 -0.004375 0.049375 -0.001875 0.026875 0.04 0.00375 -0.00625 0.03125 0.0375 0.063125 0.02 -0.011875 -0.0425 -0.01625 -0.0225 -0.02375 -0.009375 -0.03625 -0.031875 0.000625 0.019375 0.009375 -0.001875 -0.021875 0.023125 0.011875 -0.00875 0.01125 -0.005625 -0.0025 0.025625 0.009375 -0.01625 0.0325 -0.030625 -0.003125 -0.023125 0.005625 -0.001875 0.0175 0.014375 0.0325 -0.025625 0.028125 0.04375 0.043125 0.075625 0.0025 -0.004375 0.011875 0.00625 -0.0125 -0.01 -0.023125 0.00625 0.00625 -0.04375 -0.011875 -0.01625 -0.038125 -0.011875 -0.050625 0.03625 0.014375 -0.00125 0.045625 0.00625 0.020625 0.0175 0.006875 0.01875 -0.0075 0.033125 -0.03125 0.016875 -0.000625 -0.029375 -0.0475 -0.029375 -0.04 -0.02125 -0.0075 -0.03125 -0.01 0.041875 -0.0425 0.035 0.095 0.03625 -0.038125 -0.025 -0.050625 0.0125 0.0325 -0.005 0.0075 0.018125 -0.01625 -0.033125 -0.003125 -0.015 0 0.015625 -0.0125 -0.059375 0 0.026875 -0.0075 0.024375 -0.015 -0.038125 -0.019375 0.048125 -0.025 0.024375 -0.036875 -0.01 -0.0075 0.010625 -0.015 -0.018125 -0.02375 0.008125 -0.0225 0.013125 0.01875 0.04 -0.005625 0.004375 0.06625 -0.019375 0.0175 -0.016875 0.015625 -0.018125 -0.009375 -0.006875 -0.00125 0.00625 -0.02375 -0.003125 0.0025 -0.01375 -0.025625 -0.0175 -0.049375 0.024375 0 0.030625 -0.01375 0.015625 0.030625 0.0075 -0.001875 -0.02375 0.00875 -0.049375 -0.0125 -0.021875 -0.01125 0.01 0.001875 -0.01375 0.045625 0.0475 0.029375 0.015625 0.039375 0.031875 0.01375 0.115625 0.004375 0.00875 0.035 -0.00125 0.013125 -0.0125 0.00875 -0.00125 -0.045 0.04125 -0.033125 0.010625 -0.02125 -0.03875 -0.00125 -0.013125 -0.030625 0.043125 0.008125 -0.005 0.04 0.02875 0.035625 -0.02625 -0.011875 0.02125 -0.04625 -0.045625 -0.028125 -0.045625 -0.031875 0.001875 -0.02 -0.03 0.00875 -0.0075 -0.011875 0.025 0.016875 0.02 0.059375 0.02875 0.021875 -0.0075 0.026875 -0.02375 -0.00875 0.033125 -0.025 -0.074375 -0.015625 -0.0125 -0.00625 -0.0625 -0.05375 -0.0125 0.01125 -0.006875 0.01 0.0125 0.02125 -0.02 0.031875 0.04375 0.020625 -0.00625 0.03 0.0275 -0.01 -0.063125 -0.001875 0.0075 -0.020625 -0.026875 -0.0075 -0.0025 0.000625 0.08375 0.0075 0.008125 0.035625 0.07375 0.05 0.03375 0.024375 -0.03 -0.01625 0.04125 0.015 -0.0575 -0.04625 -0.00625 -0.0425 0.03125 0.026875 0.02 -0.01125 0.010625 -0.03 0.020625 0.0225 0.009375 -0.016875 0.025 0.008125 0.02625 0.0175 0.0325 -0.003125 -0.0425 0.014375 -0.046875 0.021875 -0.05875 0.000625 -0.028125 -0.03875 0.016875 0.006875 0.034375 0.049375 0.043125 0.040625 0.060625 0.059375 0.01625 0.008125 -0.01 0.04375 0.01625 -0.025 0.00125 0.015 -0.06125 -0.0175 -0.000625 -0.0725 -0.00625 0.03875 -0.03625 -0.005 -0.0125 -0.02 -0.019375 0.035625 0.056875 -0.05 -0.01375 -0.08125 -0.031875 -0.05375 0.033125 -0.003125 0.020625 0.024375 -0.05375 -0.005625 -0.031875 0.059375 0.02875 0.014375 -0.02 -0.001875 0.046875 0.03875 0.008125 0.02625 0.04 0.035 0.02125 -0.008125 -0.0075 -0.00625 0.028125 -0.029375 0.03125 -0.03 -0.025625 -0.001875 -0.02125 -0.05 -0.0325 -0.01875 0.06375 -0.01125 -0.055 -0.00375 -0.025 0.0025 -0.078125 0.055625 -0.014375 -0.0025 -0.01125 -0.05875 0.02125 -0.00875 -0.06 0.03875 -0.008125 0.0375 -0.01875 0.04125 -0.014375 0.00125 0.015 -0.0375 -0.00125 0.023125 -0.01375 -0.024375 0.05625 0.019375 0.005625 0.024375 0.038125 0.041875 -0.040625 -0.005625 -0.036875 -0.00375 -0.035 -0.054375 0.03625 0.015625 0.01 0.02875 0.01 -0.00375 0.021875 -0.0075 0.01125 -0.030625 0.045 -0.015 -0.013125 -0.0525 -0.01625 -0.014375 -0.04625 -0.000625 0.0325 0.013125 0.035625 0.0475 -0.015 0.0075 -0.0375 0.01125 0.004375 -0.010625 0.0225 -0.008125 0.04125 0.035625 -0.005625 -0.004375 0.03125 0.008125 -0.008125 0.005 -0.03 0.02 -0.01875 -0.004375 0.05 0.02 -0.01875 0.0225 0.02125 -0.000625 -0.024375 0.0125 -0.035625 0.026875 -0.000625 0.031875 -0.0325 0.003125 -0.065 -0.024375 -0.0175 -0.010625 -0.031875 0.035625 0.02 -0.000625 0.040625 0.03 0.02875 0.035 0.0375 0.023125 0.004375 0.02625 0.01625 0.02875 -0.018125 0.010625 -0.084375 -0.025 -0.04625 -0.0525 -0.014375 0.00625 -0.020625 -0.025 -0.001875 -0.008125 -0.006875 0.02875 -0.015 -0.003125 0.011875 -0.00375 0.009375 -0.00875 -0.010625 -0.00125 -0.030625 -0.008125 -0.033125 -0.03875 0.039375 0.055625 -0.005 -0.0425 -0.0175 0.0325 0.06875 -0.018125 -0.005 -0.00875 -0.010625 -0.014375 0.0025 -0.009375 0.01375 0.008125 0.03 0.013125 -0.00875 -0.019375 0.005 0.031875 0.004375 -0.02375 -0.040625 -0.004375 -0.01375 0.01625 -0.029375 0.031875 0.0025 0.018125 0.001875 -0.0225 -0.01375 -0.00125 0.003125 -0.005 -0.001875 0.00625 -0.049375 -0.0075 -0.01625 -0.050625 0.01375 -0.01375 0.03375 0.045625 0.01375 0.013125 0.018125 0.019375 0.003125 0.03625 -0.0275 0.02 0.016875 -0.031875 -0.04 -0.04625 0.006875 -0.04375 0 -0.0275 -0.028125 0.024375 -0.005625 -0.035625 -0.021875 -0.016875 0.001875 0.013125 -0.023125 -0.006875 0.050625 0.004375 -0.018125 -0.0075 0.011875 -0.004375 -0.001875 -0.0225 0.02 0.000625 0.031875 -0.05375 0.00125 0.0125 0.014375 -0.001875 0.049375 0.009375 0.03875 0.0075 0.030625 0.053125 -0.018125 -0.048125 0.010625 -0.018125 0.00875 0.006875 -0.00125 -0.00625 -0.004375 -0.05875 -0.050625 -0.015625 0.015 -0.01 0.054375 0.00875 -0.0475 -0.016875 -0.025625 -0.054375 -0.021875 0.009375 0.004375 0.029375 -0.031875 -0.01625 -0.058125 -0.04875 -0.03375 -0.00125 0.0025 0.03 0.024375 0.016875 0.02 0.054375 0.035625 0.033125 0.0175 -0.01625 0.05625 0.06125 -0.006875 0.009375 -0.006875 -0.035625 -0.006875 -0.00875 -0.021875 -0.011875 -0.00375 -0.023125 -0.023125 -0.04125 0.003125 -0.00375 0.045 0.006875 0.018125 0.028125 -0.005625 -0.01375 -0.035 0.03 -0.015625 -0.018125 -0.009375 -0.029375 -0.01875 -0.028125 0.016875 0.0125 0.029375 0.045625 0.0075 0.01125 0.046875 0.053125 -0.00125 0.0475 0.013125 -0.00625 0.015625 -0.04 0.001875 -0.025625 -0.041875 -0.03 0.019375 -0.025625 -0.0425 0.005 -0.024375 -0.0275 0.0025 -0.010625 0.0425 -0.0125 -0.030625 -0.00125 0.02 0.023125 0.0075 0.016875 0.00125 0.015 -0.00875 -0.01125 -0.016875 0.001875 -0.046875 -0.025625 0.02 0.04875 0.006875 0.034375 -0.001875 0.038125 0.01125 -0.001875 0.01875 0.065 0.019375 0.061875 0.04125 -0.00125 0.05375 0.039375 -0.065 -0.01375 0.0675 0.00625 -0.01375 -0.050625 -0.00625 0.04375 0.02625 -0.000625 0.029375 0.063125 0.018125 -0.0075 0.019375 -0.030625 -0.01875 0.003125 -0.04 -0.051875 -0.009375 0.03375 -0.018125 -0.059375 0.03375 -0.026875 -0.04625 -0.023125 -0.036875 0.016875 0.035 -0.051875 0.00875 -0.003125 0.033125 0.014375 -0.02 -0.001875 -0.025625 0.0125 -0.014375 0.01875 0.014375 0.01375 -0.119375 0.015 0 -0.056875 -0.025 0.018125 0.021875 0.00375 0.035625 0.005625 -0.04375 -0.01875 -0.0775 -0.035625 -0.075 -0.018125 -0.026875 0.01875 -0.015625 0.018125 -0.013125 0.0275 -0.005625 -0.046875 0 -0.035 0.028125 0.009375 0.00625 0.0375 -0.0125 0.018125 0.04125 0.04625 0.019375 0.070625 0.01125 -0.001875 -0.01375 0.0075 0.015 -0.026875 -0.0075 -0.0575 0.02375 -0.044375 -0.0275 0.02125 -0.01625 -0.033125 -0.015625 0.0225 0.02375 0.054375 -0.01875 0.045 -0.025625 -0.00625 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_30ms.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_30ms.hrd new file mode 100644 index 0000000..b942568 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_30ms.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 30 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035114 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-12.078125 -12.453125 -13.33875 -9.704375 -8.48125 -9.160625 -9.836875 -9.600625 -8.404375 -7.06375 -7.455625 -9.10625 -6.405 -8.435 -10.281875 -6.77875 -8.130625 -4.415 -4.351875 -6.635625 -5.448125 -6.126875 -5.27 -5.376875 -6.57 -5.920625 -6.478125 -5.070625 -4.713125 -4.204375 -3.16125 0.1775 -6.538125 -5.07 -4.724375 -5.435625 -3.2625 -2.38 -4.916875 -1.1075 -6.2475 -5.773125 -2.9275 -4.8175 -3.75625 -3.89375 -5.373125 -2.26125 -2.000625 -2.948125 -5.6425 -4.853125 -4.74125 -2.58375 -4.129375 -4.319375 -1.535 -2.298125 -4.70875 -3.13375 -1.08625 -0.833125 -3.8375 -1.03875 -3.5075 -1.38375 -1.88875 -3.33375 -3.108125 -2.015625 -2.415625 -2.458125 -2.12875 -4.665625 -1.656875 -1.681875 -0.670625 -0.92375 -2.365 -3.88375 -1.775 -0.868125 -0.649375 -2.575625 -0.96375 -0.756875 -2.73125 1.18625 -5.114375 -3.569375 -0.79625 -0.218125 -0.0425 0.36625 0.34 -3.3125 -3.438125 -1.52875 -1.1 -2.705 -1.209375 1.56375 2.405 -1.18375 -1.169375 -2.01125 -1.52625 0.05125 -2.341875 -1.51625 0.3625 -0.82875 -1.229375 -2.119375 1.466875 -3.10375 -0.550625 -1.3 1.0575 0.27125 -1.541875 -1.715 -0.73625 1.430625 -4.259375 -0.379375 -1.41625 1.20375 -1.301875 -2.55625 0.220625 -0.29375 -0.000625 -1.3725 -2.585 -4.09375 -2.696875 -2.855625 1.34 -1.535625 0.259375 -0.833125 -0.531875 0.931875 -2.203125 -0.12 1.395 -0.295 -1.0175 -1.28875 3.275 2.55375 -0.54625 -4.69375 0.27125 -2.11375 0.010625 1.1325 -1.3925 0.58375 -0.084375 -0.51375 0.385 -0.053125 2.13125 0.211875 -0.96875 2.375 -0.830625 0.481875 -2.628125 0.1575 0.421875 0.645625 2.07625 1.353125 -1.636875 -0.1675 -0.48875 2.825 0.18375 -2.171875 -1.00875 -0.23125 1.561875 -0.535 -1.09625 1.365625 0.45 -1.785625 -0.956875 1.97 -3.356875 0.13625 -0.864375 -0.825625 -2.16625 -2.255 0.40375 -2.45125 1.606875 -0.40625 3.063125 2.294375 -0.03375 -1.975 2.07625 3.26 1.59875 -0.37375 -0.925625 -2.798125 -2.475 0.970625 -0.55375 -0.706875 0.48125 -1.42625 -1.765625 0.78125 -0.593125 -1.51875 0.5325 -4.42875 2.110625 -0.043125 -2.998125 -1.23625 -0.710625 -0.81875 -0.69125 -1.536875 -0.91375 0.52 -0.375 -1.329375 2.87125 -3.238125 0.131875 -2.220625 0.899375 0.7325 1.864375 -0.50375 0.424375 3.243125 2.4175 1.03875 -0.360625 2.8475 -1.32375 0.19625 0.05625 -1.380625 0.915625 3.69875 0.915 0.92625 -3.136875 0.178125 -1.201875 0.94125 3.859375 1.918125 -0.79125 -1.871875 1.865625 2.2125 0.099375 -1.8675 2.600625 -2.396875 1.376875 -3.885625 -1.520625 -2.42875 -0.17375 0.103125 3.10125 -1.049375 -0.43375 -0.44625 1.7925 -0.101875 0.918125 -0.01125 0.1525 -1.9075 1.77375 -2.0925 1.230625 -1.14125 -1.120625 1.295625 1.584375 1.863125 -0.37375 2.695 -0.854375 1.014375 3.26125 -0.358125 3.5425 -0.48375 1.6925 -2.5375 0.075 0.604375 3.229375 1.860625 0.189375 2.790625 1.885625 -0.59625 -1.566875 -0.251875 0.50875 -1.5 1.55375 -2.03625 1.923125 0.488125 -0.496875 1.56375 0.748125 -2.216875 0.90125 3.806875 -0.396875 -1.79375 -0.00375 -0.2575 -1.824375 -0.103125 -1.99375 1.278125 2.4675 -0.31 -0.310625 1.5575 -1.7025 0.8025 1.825625 3.079375 0.69 2.811875 -1.99 2.371875 0.4825 1.180625 0.844375 1.304375 2.8475 1.76375 -0.425 1.47625 -1.551875 0.815625 1.703125 3.8675 2.98625 1.54875 1.5325 0.409375 -1.28625 -2.05375 -0.813125 2.905625 -2.57125 3.016875 1.1925 -0.161875 -3.66875 2.19875 1.496875 -3.21875 3.5025 -0.755625 -0.63375 -1.003125 0.143125 0.4175 2.163125 -0.67625 -1.273125 -1.00625 5.025625 0.4075 -0.5175 -1.005625 -2.0275 0.684375 -3.351875 -0.404375 0.255625 -1.169375 -0.76375 1.101875 2.81 1.201875 -3.305 -0.335625 0.27875 0.906875 -0.255625 -0.196875 -3.244375 0.321875 1.43 0.614375 -0.864375 3.448125 1.38625 -0.46875 -0.98 0.2375 -1.66 1.600625 -3.296875 -0.106875 2.808125 -0.916875 1.134375 -0.381875 2.656875 1.259375 1.143125 -0.3675 0.02375 0.435 -1.849375 1.51375 -1.143125 0.055 -2.135625 0.358125 1.70375 0.811875 0.250625 -1.4675 -0.30875 -1.6075 -0.70375 -0.355 0.01 1.398125 0.634375 1.074375 -3.110625 0.860625 0.27125 0.979375 -0.48 -1.424375 1.15375 1.198125 0.438125 -1.86 1.360625 -0.3525 1.168125 -3.736875 -0.410625 2.86625 1.645625 1.20375 2.82625 -1.359375 -0.66125 1.0525 -1.043125 -1.15 1.859375 -2.45125 -0.069375 2.843125 0.291875 -0.523125 3.97875 0.010625 0.34375 -0.3375 0.376875 0.823125 -0.2375 0.699375 0.694375 1.218125 -3.083125 0.335 0.16125 5.209375 -0.07 0.14875 0.97375 1.0825 1.051875 1.083125 -3.655 -2.799375 0.96375 1.569375 -0.4325 0.68375 -0.30125 -0.226875 -0.46375 0.686875 1.76875 -0.09125 -1.290625 -1.38125 -0.675 -1.581875 0.1325 2.08875 -0.19375 1.258125 1.633125 -1.59375 0.4725 1.015 -1.0575 -1.3025 -0.09875 -4.589375 -0.13 -1.840625 -3.011875 1.295 -0.498125 2.565 2.085 1.230625 0.2925 1.484375 1.906875 -1.695 -1.814375 -0.494375 -2.063125 -0.8925 -0.35125 2.69125 -0.135 2.74125 -0.270625 -0.961875 0.3375 0.249375 2.695 1.0475 -0.210625 -3.1425 4.185 -0.3925 1.5775 -2.55875 -3.160625 -1.015 0.64375 2.17625 -0.193125 0.99875 -1.3125 0.8525 -2.828125 3.700625 -1.026875 0.001875 -2.945625 -0.19875 1.74625 -2.773125 -1.28625 -4.4675 2.8475 -1.98125 1.868125 1.809375 2.584375 -0.505625 -1.400625 4.714375 0.501875 1.07375 -1.12375 2.139375 1.67875 -0.420625 -4.389375 -0.01875 -0.684375 1.628125 1.39625 1.790625 -3.27625 -1.038125 0.975 1.18 3.885 0.6975 -0.443125 -1.149375 0.309375 2.73625 1.136875 1.40375 -0.441875 -4.158125 1.044375 -1.75375 1.8225 -1.13125 1.12625 -0.22875 -1.498125 1.479375 1.689375 0.50125 0.141875 -1.82625 -0.24125 0.0325 0.560625 -0.850625 -0.866875 -0.08 -0.595625 3.7125 -1.411875 1.0025 -1.13625 0.395625 0.505625 3.27 -0.240625 -0.29625 1.868125 2.185625 -1.96625 -1.41375 1.72125 -2.57375 3.61 0.48125 0.04375 -0.02 -1.85875 -2.461875 -1.870625 2.29875 0.205 -1.13375 1.35875 1.658125 1.920625 2.1 -0.34 -1.030625 0.3675 1.901875 1.673125 0.76 -1.12875 -0.761875 -0.024375 0.343125 2.661875 1.409375 1.88625 1.918125 1.345 -0.456875 2.648125 2.955 0.46125 0.194375 -1.11875 1.396875 1.790625 -0.04375 -4.054375 0.096875 -1.243125 0.2475 2.18875 2.41875 0.55375 1.7025 0.511875 0.731875 2.343125 -0.98875 1.275 1.88375 2.931875 -0.175625 -1.2325 -0.904375 -2.905625 2.18125 1.620625 1.06375 0.306875 3.61125 -1.41 2.389375 4.039375 2.295 -0.2525 -0.17375 -2.580625 3.09625 1.3325 0.735 2.71625 1.701875 -1.305625 0.5875 0.8425 -3.28875 -1.79125 -0.295625 0.215 3.575625 0.2325 -0.67125 1.760625 5.025 -0.654375 0.325 -0.294375 8.5125 -1.856875 -0.515625 -0.015 1.886875 -0.061875 0.78625 1.081875 -1.810625 -0.676875 -1.126875 0.93625 0.113125 1.560625 0.0625 1.44 -2.188125 -0.20375 0.461875 0.886875 3.30875 2.41125 -1.038125 -1.02375 2.569375 0.859375 1.1625 0.681875 0.16 -0.838125 2.6425 0.47625 1.521875 -1.0975 -0.76875 0.438125 -0.67125 2.435625 -0.075 4.298125 0.27625 -0.375625 -0.184375 1.584375 -0.068125 1.125625 0.203125 2.86625 3.033125 -0.344375 0.545 1.18875 0.346875 0.804375 -1.41125 0.750625 -1.350625 1.733125 3.98375 0.551875 2.976875 -1.88375 0.828125 3.156875 2.081875 3.296875 -3.92125 -0.19 -3.43375 0.275 0.953125 0.341875 -1.6675 1.861875 0.775625 -0.348125 0.98 -0.085 -2.31375 0.864375 -1.9375 0.378125 -0.7625 2.61 3.32125 0.82125 -1.6625 4.5125 0.761875 1.4725 1.0325 0.934375 0.184375 2.606875 -0.055 3.405 1.28875 1.876875 2.39875 0.93125 0.605625 -2.185625 0.670625 0.1325 -1.0575 0.715 2.495 3.79625 1.95375 -3.413125 0.395625 -2.656875 -1.29 0.731875 0.11375 0.696875 0.98375 2.630625 -0.56875 -2.525 3.06375 -0.27875 0.115 2.4775 -0.10375 0.62625 0.30375 1.495625 2.185625 0.715625 2.0875 2.365625 0.146875 0.135 3.11375 1.166875 -0.88625 -1.801875 -2.32375 2.24375 0.9575 -0.528125 2.055625 0.60375 -2.640625 0.553125 -1.5925 -0.40875 0.929375 0.89875 -0.4475 -7.606875 -0.53125 0.5675 0.571875 -0.735625 0.8575 -0.31125 -1.83 -0.71125 2.864375 1.21875 0.986875 0.665625 2.34375 3.48125 -0.41375 3.455625 -0.59125 -1.29375 0.39375 -0.405 -0.94625 0.018125 0.299375 -0.26125 -1.65625 -1.441875 2.083125 1.771875 2.688125 -2.02 0.035625 0.091875 1.22125 0.86625 0.74375 -0.818125 1.983125 -0.269375 -0.40625 1.39125 -1.889375 4.081875 1.075 1.340625 -0.8925 1.741875 2.014375 -1.545625 3.045625 -2.215 -1.095 -1.868125 2.07375 1.336875 -2.759375 -0.2675 -0.466875 2.589375 2.255 2.4125 -0.804375 -1.166875 -3.183125 -2.534375 -1.5775 -0.625625 -1.284375 -0.95875 1.338125 -2.295625 -3.32875 -0.238125 0.238125 0.154375 1.85625 0.0425 -0.900625 0.99875 -2.058125 0.28625 -0.823125 -0.1 -2.276875 0.570625 2.404375 -2.400625 -2.325 0.80625 1.191875 1.90625 0.04625 2.18125 2.00875 0.07875 -0.873125 -2.0525 2.576875 0.42 0.874375 -1.18625 3.3875 1.158125 1.706875 0.773125 0.01 -0.49125 -1.93625 1.9375 0.5725 1.20375 2.506875 0.480625 0.90625 -1.0725 0.10875 0.613125 -2.23875 -1.6825 0.336875 0.994375 0.7575 -0.66875 -0.874375 0.488125 1.02375 -1.619375 -1.11625 -0.885625 -0.505 1.19375 2.35125 -1.804375 -1.1425 1.194375 1.97375 1.509375 1.543125 -1.56 0.114375 -0.981875 0.925 -2.488125 2.598125 2.2875 0.920625 1.863125 1.33625 -1.709375 -1.303125 2.265625 -0.134375 -0.8025 1.10875 -0.67625 0.714375 -1.148125 -0.8575 -0.430625 -1.911875 0.414375 0.85 1.238125 -1.644375 5.56125 2.05875 0.58125 -2.50875 -1.556875 3.004375 0.646875 -0.234375 0.5275 0.700625 -2.298125 -0.356875 -1.560625 -0.233125 -0.411875 2.046875 -2.005625 -0.89 1.21375 1.43125 -0.015625 1.3275 1.794375 2.15625 -1.184375 -0.68875 -0.196875 -0.081875 0.323125 -0.136875 0.370625 2.3875 -0.1375 3.3125 -0.59 1.655 0.24 0.1675 1.863125 -0.649375 -0.12375 0.6075 4.9225 -0.453125 -0.165625 1.390625 -0.260625 2.386875 2.515625 -1.025625 1.965625 -0.241875 -1.03 -2.2425 0.94125 -2.0175 0.2 1.005625 -0.02375 0.23 -1.575 1.67625 3.13 -2.224375 0.52625 -0.840625 2.965625 -3.035 3.328125 0.3775 0.31375 1.648125 -2.05375 -1.804375 0.9625 -2.79875 0.59625 3.658125 -0.221875 -0.705625 2.105625 0.3075 -1.294375 0.980625 0.40125 -1.344375 -0.519375 1.108125 0.709375 -2.991875 0.24 0.324375 -1.11625 -0.506875 0.99125 1.773125 -1.058125 0.666875 -1.591875 -2.351875 -0.119375 -2.346875 1.3675 -3.953125 -1.47875 1.176875 2.389375 1.491875 3.784375 -0.518125 1.856875 0.42875 2.2875 -0.79375 1.31875 -2.581875 0.45375 1.24375 -0.6325 -1.4225 1.84875 -0.5 -1.115 1.00875 0.22875 -0.785 1.020625 -1.265 -1.54125 1.0875 -0.7375 3.145 0.61375 1.180625 0.26375 0.00625 0.261875 -0.351875 -0.981875 -4.22375 -1.166875 -0.359375 -0.275 2.84625 -0.275 0.493125 -1.526875 0.97125 0.686875 -1.7125 0.080625 0.56125 2.769375 -0.30125 0.98125 -0.729375 1.011875 0.11125 -1.643125 0.5875 0.389375 -0.926875 1.874375 2.484375 3.354375 0.814375 1.68 -0.14125 1.484375 1.103125 0.406875 -0.141875 -1.3425 0.92875 0.305 2.3225 0.36 -1.380625 -0.1575 1.901875 -1.93625 0.13375 -0.151875 2.27375 1.51 -0.0375 0.799375 0.270625 1.696875 -4.029375 1.129375 0.77 0.17875 -2.2025 -0.37375 -1.6325 1.2525 -3.213125 -1.79875 4.544375 0.27 -1.865 -2.04375 -0.66375 -0.87 -2.664375 -0.650625 0.375 1.02 -2.7025 2.355 -1.185625 -0.40375 0.244375 2.763125 1.833125 1.603125 1.32125 -1.650625 -0.42875 -1.32875 2.05125 0.840625 -2.05 -0.090625 -0.28 -0.539375 0.6475 1.865625 1.0525 0.830625 -0.643125 -0.04375 2.688125 -1.01 -3.731875 0.3575 1.725625 0.28875 -0.41375 -0.61375 -1.86375 -1.835625 1.053125 3.26875 -0.62625 -0.15 -0.24375 -1.3075 0.738125 0.3 -0.168125 0.02625 0.20875 -0.8625 0.150625 -1.21375 -1.381875 0.88125 0 0.5375 1.811875 -2.080625 -0.815 1.785625 1.144375 -0.950625 2.29 -1.700625 0.24625 -0.456875 -0.735 1.678125 3.24 3.69625 -1.186875 0.6875 -3.365625 0.03 -1.92375 3.75 0.269375 -1.081875 3.08 0.096875 2.625 1.8325 -0.851875 1.11375 3.241875 -0.108125 1.85375 -1.15125 0.668125 1.60875 1.33375 -0.48375 -1.019375 1.648125 0.315625 1.08375 0.613125 1.115 -0.810625 1.765625 1.00625 2.246875 2.31 -0.18875 -0.538125 0.40875 2.02375 -0.891875 -2.4325 0.938125 0.110625 1.793125 -0.0475 0.275 -1.543125 -0.865625 -3.71125 -0.5575 2.406875 0.248125 -1.805 0.53875 1.259375 2.444375 -0.455625 -0.026875 1.94125 -0.59875 -1.84125 -3.14875 1.10375 1.42625 -0.051875 3.970625 -2.498125 0.61875 -1.7775 -1.2475 -0.25 3.335625 1.303125 -0.596875 -2.471875 -0.09125 0.184375 -0.684375 -0.4475 -1.735 0.4175 0.649375 -0.435625 -0.556875 4.589375 -0.49 -0.959375 0.78 -1.47 4.80625 2.211875 2.03375 2.31125 -0.155625 1.490625 -1.8025 2.163125 2.938125 0.0975 3.23625 -0.98125 -0.053125 -0.285625 0.748125 1.42125 0.175 1.586875 -0.045625 1.52375 3.545625 1.151875 -2.8975 2.2275 1.493125 0.8975 1.033125 -1.3575 -1.2025 -0.86625 0.969375 -0.348125 -0.31125 -0.07625 -0.719375 0.0575 -0.739375 -0.26125 -1.05875 0.494375 -0.83375 1.7325 -0.979375 0.341875 -0.91875 0.853125 -0.754375 -3.07875 -1.16875 1.6025 1.220625 -1.564375 -0.741875 3.034375 2.17625 -1.173125 1.3375 0.385 0.258125 0.028125 1.571875 -1.658125 1.041875 0.443125 -2.068125 0.29125 -1.848125 1.5875 -3.946875 -1.818125 -2.261875 -0.874375 2.295625 0.809375 1.538125 0.458125 -0.27 1.874375 0.785 -2.245 -1.919375 0.78625 2.183125 -0.616875 1.5175 2.3875 3.383125 -1.32375 -0.21125 2.9275 +-13.036875 -14.968125 -10.808125 -11.5675 -11.891875 -12.558125 -10.9275 -7.80875 -11.5875 -12.0925 -10.40125 -9.26 -8.39 -9.6375 -6.816875 -8.90875 -9.0975 -5.055 -7.26375 -7.563125 -10.956875 -6.46125 -3.550625 -7.715 -7.681875 -3.986875 -7.52875 -8.328125 -7.52625 -4.08375 -5.468125 -5.983125 -6.608125 -2.44 -5.845 -6.725625 -6.870625 -6.011875 -7.07875 -5.395 -7.48 -4.018125 -4.36125 -5.51125 -3.91375 -3.5175 -6.27875 -2.480625 -5.633125 -3.735 -4.995 -3.005 -2.54 -5.57875 -3.524375 -4.9875 -4.22 -3.6775 0.113125 -3.098125 -1.158125 -3.445625 -3.641875 -5.21625 -4.125 -4.040625 -3.610625 -3.19 -0.71125 -0.424375 -2.926875 -3.614375 -4.7175 -6.229375 -1.259375 -2.313125 -1.72875 -3.1175 -3.323125 -1.784375 -2.59375 -1.3675 -0.395625 -3.000625 -3.654375 -3.9375 -4.31875 -4.47 -2.908125 -3.40125 -1.45 -1.55625 -2.889375 -2.2675 -3.201875 -2.9925 -0.840625 -4.098125 -5.43 2.12125 -2.575625 -0.739375 -1.264375 -1.5525 0.406875 -0.75 -2.036875 1.413125 1.325 0.615625 -0.793125 -0.873125 -2.481875 0.97125 0.475 1.478125 -0.26125 -0.895625 2.160625 -1.1275 -0.824375 0.120625 0.74875 1.415625 -2.48 0.18 -1.29625 -0.358125 -0.5625 2.599375 1.85625 -4.5325 0.96375 -0.72375 0.628125 0.3125 -0.54625 -4.678125 -0.7325 2.638125 0.781875 -1.5325 -0.010625 -1.1725 0.8875 -2.504375 0.15 -0.455 1.85375 -0.436875 -0.316875 1.888125 2.846875 -0.666875 -0.888125 -1.73125 -0.91375 0.346875 -3.2675 -1.16125 0.519375 -1.3875 1.059375 -6.771875 0.08 0.62 1.639375 -1.283125 2.535625 0.48625 -1.259375 -2.11125 -0.170625 2.1575 -0.413125 1.215625 1.864375 -2.226875 1.221875 3.544375 1.546875 -3.129375 -1.4525 -0.0975 -2.195625 -0.9125 1.960625 0.25125 -2.5875 -1.536875 0.054375 2.3025 -0.24 0.068125 1.61375 0.83 -0.31125 -2.2575 0.464375 0.939375 -0.59375 -0.498125 -1.365 0.933125 -0.81875 -1.691875 -1.95625 -0.165625 -2.9125 1.58375 0.01875 1.17125 -0.535625 0.780625 -1.859375 1.134375 -2.565625 -0.155 1.005625 -1.220625 -1.14875 0.65875 1.315625 -0.205625 4.10125 2.023125 1.7325 -1.811875 1.330625 3.086875 2.340625 -3.124375 1.585625 -0.450625 0.975625 0.115 -1.23375 -2.581875 3.01625 -0.92375 1.135 0.1375 -1.079375 2.365625 -0.184375 -0.345625 0.135625 2.52125 4.4625 -3.98125 0.055625 -2.32875 0.1975 3.06875 0.13375 1.375625 -0.595 0.92625 1.09375 -2.285 -0.064375 2.995625 1.384375 -0.10875 -0.62625 0.089375 -0.319375 0.260625 2.84375 -0.58625 0.9425 -0.965 0.970625 -0.591875 3.115 0.51125 0.5325 2.330625 -2.26875 -0.89625 0.995625 2.124375 3.065 -0.426875 -2.37625 0.029375 0.5 1.733125 4.01 -0.61625 -2.260625 2.08375 1.1725 -0.724375 2.08125 0.66625 1.843125 -1.248125 1.596875 -2.084375 -1.83 2.549375 0.43375 0.17875 0.1725 3.519375 3.6225 -0.729375 1.67375 0.59125 -2.856875 -0.713125 0.3675 4.245 0.4975 1.4975 2.86625 0.676875 2.595 0.62875 0.70625 1.106875 2.8225 0.73625 1.530625 -0.268125 1.0725 -0.0425 -2.67875 0.966875 -1.104375 0.640625 0.84 0.29875 1.258125 -1.575625 -2.78125 -2.164375 3.08625 1.585625 -0.200625 0.94125 -2.39 3.0175 1.093125 0.82 2.966875 3.725625 -1.52125 0.96125 2.430625 2.029375 1.099375 -2.37875 1.71625 0.32875 0.419375 3.023125 1.396875 0.6775 0.76 -0.96 -0.45125 1.473125 0.375 -0.085 3.105 0.32625 0.480625 -0.36375 -0.03125 -3.033125 2.095625 1.7325 -2.898125 1.51 -0.378125 0.659375 2.36625 1.26 0.56875 -2.10125 -3.23 -2.043125 2.259375 0.058125 -1.01375 -1.27625 -0.310625 0.679375 0.37375 -0.143125 -0.425 2.59125 -0.48 2.159375 -1.335625 1.29875 0.5725 2.74125 1.41625 1.2775 -0.008125 1.4925 -2.37875 0.305625 4.228125 -3.349375 -0.053125 0.544375 -0.349375 2.370625 2.266875 -0.724375 0.23125 -1.0225 0.43 3.458125 -2.379375 0.741875 0.075 -0.065 1.2875 1.558125 -0.31 2.69125 -1.904375 2.286875 1.475 3.45 0.51 1.676875 0.220625 1.085 0.266875 0.823125 1.63125 2.335 0.785 1.85 1.530625 4.62625 2.055 0.701875 -1.815 -0.206875 -1.309375 -1.468125 4.38375 -2.584375 1.473125 0.4425 1.87625 1.618125 2.1425 0.70375 -1.145 2.36375 0.25125 1.335 0.991875 0.97 1.6475 -0.468125 -1.71875 0.121875 2.264375 0.924375 -0.975 -2.72625 2.210625 -0.231875 1.9325 1.06625 -0.4625 0.369375 -3.575 1.64375 -3.138125 1.193125 -2.91 -0.83625 1.4775 2.1125 2.135625 -1.2475 -0.6275 -0.411875 1.225 -0.015 -0.728125 1.965 -0.39875 0.41 1.81125 -0.5725 -0.4875 -2.36125 3.640625 0.10875 1.303125 1.98875 0.95375 0.14375 -3.425 2.52625 2.04875 1.3025 -0.0175 -0.43125 1.894375 -0.330625 -0.261875 -1.633125 -1.005 2.29 0.478125 2.5625 -0.025625 -1.39875 -0.75375 0.5 2.108125 3.6225 -0.05125 0.8625 0.338125 0.96375 -1.30125 0.753125 0.17 -2.205 -0.776875 3.039375 -0.305625 1.31125 0.058125 1.245 -1.544375 -0.196875 3.886875 1.9875 -0.2 2.124375 -0.2025 -1.691875 -0.361875 1.294375 -0.723125 1.4075 3.191875 1.27125 -3.086875 -0.420625 1.47375 0.425 0.745625 1.194375 1.01625 1.330625 0.96375 -3.555 4.643125 -1.25625 -0.33625 -2.818125 2.909375 1.341875 2.26 -2.92875 0.23625 2.725 0.195625 -1.624375 -2.071875 -0.9325 0.3025 -1.144375 -0.92625 -0.60375 3.040625 1.815 1.04375 3.85375 -3.793125 -0.308125 4.07375 3.77625 -1.718125 -0.00875 -0.195625 2.03625 0.57625 1.5425 1.4225 0.3075 -3.27125 -0.699375 -1.758125 2.795625 -1.659375 -0.143125 0.730625 2.729375 1.158125 0.546875 1.434375 0.380625 -0.183125 -0.455 1.749375 0.123125 -1.3675 -1.483125 -0.249375 -1.533125 0.66375 3.78 0.930625 1.2825 3.72625 -0.650625 -0.19875 -0.025 -0.566875 -0.369375 0.745625 2.44625 -1.01625 -2.144375 0.1875 0.8375 2.776875 0.278125 1.365625 1.315 1.815 -1.27125 -3.515 -0.383125 2.510625 0.41625 -2.595 1.32625 0.740625 -0.183125 0.5175 -1.275625 -0.130625 -1.28875 1.4175 1.60125 -0.64375 -0.22625 -0.451875 0.995625 1.3125 -3.493125 2.905 -1.195625 0.4975 -1.75125 0.125 -2.525 -0.338125 2.316875 4.26125 1.7275 -0.75 1.600625 0.77625 -0.728125 2.550625 0.43125 -1.00375 -2.13125 1.228125 -1.011875 -0.93625 0.3175 -1.8525 -0.729375 0.9375 -0.548125 -1.095 1.526875 -1.12375 -1.538125 -1.948125 0.948125 -0.615 3.64875 0.540625 1.115625 -1.130625 1.366875 1.2925 -0.9125 1.900625 3.25375 -0.2125 2.594375 0.68125 1.951875 -0.04875 0.65875 3.114375 1.114375 3.539375 0.698125 0.423125 -0.92375 -1.1475 0.875 3.664375 3.000625 -1.743125 -0.84 -2.310625 -2.77375 -0.965625 2.04375 2.515625 1.385 3.243125 0.78125 0.92375 -1.44 2.385 3.98125 3.27 3.0175 -2.073125 -1.28375 -0.264375 -2.035 -1.25625 3.6075 2.80375 0.10875 -0.000625 2.63375 -2.233125 0.890625 -3.111875 2.21375 -0.43375 0.318125 1.191875 -0.085 -4.29875 0.21 -2.180625 0.12125 -1.113125 1.459375 -1.193125 -1.7925 -1.32 0.16875 2.3275 -1.90375 2.073125 2.556875 0.98 0.74625 3.019375 0.889375 3.081875 -1.001875 -0.244375 3.120625 0.14125 -1.489375 0.721875 3.71 2.038125 -0.74125 -0.0975 3.80875 1.29125 4.6575 -1.645625 -1.36625 1.110625 1.580625 1.360625 0.1775 0.0175 3.02125 -0.364375 -2.514375 2.05375 0.50125 -0.37375 -0.125 -1.995625 0.94125 1.336875 0.866875 0.93875 2.411875 2.41375 -1.090625 3.238125 -1.545 -1.200625 0.083125 -2.88875 -0.396875 -3.33 -2.116875 1.01125 2.555 3.1275 -0.3475 -0.080625 0.784375 -0.315 0.395625 -1.776875 -1.128125 -2.27875 -1.73 1.239375 2.425625 -0.146875 -2.22625 0.141875 0.150625 -0.890625 0.7125 0.863125 0.700625 -0.90125 -0.851875 -0.6375 3.33 3.224375 0.413125 0.390625 -3.08875 2.66875 0.02125 1.538125 1.498125 0.8025 2.500625 2.8725 2.95125 -1.399375 2.189375 1.234375 2.308125 1.45125 0.051875 -0.02 1.02 2.67375 -0.043125 0.9325 2.5175 2.89125 3.03625 1.320625 0.5875 -1.15625 2.41125 -0.0275 -0.956875 3.026875 1.5025 -0.319375 -0.27875 0.130625 0.8775 -1.8325 0.82 -0.24 -1.243125 -0.475 2.98125 -1.00125 -0.135625 1.645625 0.894375 1.049375 2.435 0.9225 3.21 -0.426875 0.604375 2.06875 0.108125 -2.73375 1.011875 -0.9225 -0.45875 -2.596875 -3.065 -2.03125 -0.006875 1.426875 0.69 0.3225 -2.5175 1.213125 1.039375 1.298125 4.06125 0.455625 2.37875 -0.59625 -0.456875 1.50125 0.81875 1.75625 -1.21875 0.9025 -1.86 0.875625 1.55125 0.849375 -0.789375 -1.3875 -0.858125 1.25625 -2.845 -0.0375 1.92 1.71 3.35375 -1.4275 -1.565 2.465625 -0.158125 -1.2375 0.893125 1.338125 1.17875 -1.35 1.075 0.610625 1.221875 -2.810625 -0.275625 -0.96625 1.108125 1.641875 0.655 0.3525 0.1475 0.103125 -1.404375 0.611875 0.55 -1.063125 0.1475 0.105625 2.571875 0.763125 -1.551875 0.29375 1.173125 0.37875 -2.75125 0.821875 -0.275625 -0.140625 1.71375 0.795 1.824375 1.033125 1.53875 1.336875 -1.62 2.854375 0.770625 -0.30625 -1.220625 2.940625 0.03375 1.236875 -0.1725 1.6 0.694375 -2.24 3.17625 -1.039375 1.374375 4.905 2.309375 2.32625 2.645625 -1.594375 -0.836875 -0.604375 1.24625 -1.471875 2.23125 0.735625 0.26375 2.329375 0.378125 -1.31625 -2.789375 -2.099375 -0.65875 -0.444375 0.426875 1.438125 2.195 1.456875 -2.938125 2.44375 3.279375 2.075625 3.209375 -0.873125 2.835625 1.5875 2.606875 -0.43125 1.660625 2.135625 3.398125 0.724375 0.0925 1.316875 1.87375 0.828125 -1.24375 -2.19 -2.690625 2.40125 -0.930625 3.4 2.120625 -1.359375 1.664375 -0.830625 0.51 -1.42125 -0.6775 -0.7025 3.44 0.1825 0.1075 0.0725 0.73375 -1.448125 -1.984375 -2.345 -2.1175 1.584375 1.016875 -0.995625 -1.18875 -1.065625 -0.53 1.199375 1.263125 -2.2225 3.03125 0.540625 1.725 -0.355 2.91125 -0.35375 -1.586875 0.919375 1.0125 0.861875 0.530625 1.240625 -0.530625 0.143125 -1.775625 -1.4275 0.285 3.845 -0.875 -2.7175 -0.786875 -1.700625 -1.138125 -0.2675 -0.051875 2.26875 0.82875 -0.075625 1.075625 -1.551875 1.3075 -0.3575 0.40375 1.968125 -0.198125 2.358125 -0.316875 -1.554375 1.366875 -0.890625 3.51875 -1.235 2.290625 -0.235 -0.46875 -2.165625 -3.33125 -1.491875 1.739375 2.650625 -1.301875 1.084375 -1.343125 -0.745 0.016875 -0.831875 1.895625 0.400625 -0.011875 -0.65125 -5.015 -1.501875 1.326875 -2.11375 1.016875 1.74875 -2.504375 0.535625 -1.014375 -0.474375 -1.2775 0.965 0.290625 2.084375 2.4975 -1.275 0.378125 -2.345 0.92 -0.231875 5.251875 3.251875 1.421875 -0.28 1.183125 0.746875 -0.71625 0.9475 0.746875 1.236875 -3.8 -1.96625 4.380625 0.035 0.28625 0.53625 0.941875 -0.3325 -0.451875 1.975 0.190625 0.74625 1.346875 -3.1475 3.11625 0.030625 0.14 -0.34625 0.153125 0.118125 -1.074375 -0.4375 1.53125 0.853125 -2.696875 -0.360625 -1.5525 0.97125 0.831875 -1.76625 1.256875 -1.13 -0.453125 0.196875 3.03625 4.055 3.79125 -0.133125 -2.694375 2.985625 0.748125 -1.850625 0.745625 -0.295625 -2.22125 0.691875 -4.395 -0.1075 -1.145625 -0.500625 2.01625 -1.78125 0.048125 2.46125 1.158125 0.615625 -0.126875 4.35 -0.40375 -0.760625 3.91125 0.52625 -0.79 1.376875 -0.670625 0.543125 0.243125 0.45125 3.370625 -1.684375 -1.449375 1.75 -0.125 2.350625 -0.184375 -2.815 2.845 -0.9725 -0.0725 2.491875 -2.6 -0.351875 -1.851875 0.11125 0.475 0.2825 0.853125 -1.115 0.89125 -1.36375 -0.325 3.27625 0.91375 2.765625 1.753125 -2.33375 -0.51125 -0.345625 -0.87 -1.71375 0.01375 1.385625 -0.74875 -1.72875 1.56375 1.016875 1.275 -2.0575 0.589375 -1.221875 -2.45 0.463125 1.369375 0.964375 0.235625 0.59625 0.8175 1.4875 -3.063125 -0.575 1.073125 -0.646875 -3.01625 1.141875 -0.456875 -0.775 1.19125 0.61875 -1.7175 -0.80875 0.49625 -1.79625 -0.2275 -0.729375 -0.980625 1.9 0.961875 0.2425 2.67125 -1.631875 -1.58875 -0.389375 -1.34375 0.94875 -1.26125 1.35875 0.91125 -1.835625 2.1775 0.124375 -0.29375 -0.326875 -1.02625 0.3575 0.165 2.135625 -1.731875 1.173125 -0.143125 -1.709375 1.393125 1.095625 2.9575 -0.258125 -3.360625 3.7125 -2.188125 0.214375 1.2575 1.576875 -0.423125 -2.904375 -1.314375 0.976875 -0.7125 -0.306875 0.885 3.136875 -3.173125 -3.055625 -4.009375 3.131875 2.419375 -0.696875 0.80625 0.629375 -0.356875 -0.0975 3.850625 -0.873125 1.889375 0.21125 1.0275 1.355 -4.101875 0.933125 -2.30375 0.649375 -2.836875 2.5775 -0.6325 0.40625 -1.73125 1.34125 -0.193125 1.621875 -3.430625 0.075 3.715 -2.4975 3.086875 -2.326875 0.914375 -1.19 -2.84 0.191875 1.36125 -1.22375 -0.1625 -0.799375 0.860625 0.694375 -0.988125 -1.304375 -0.378125 1.296875 -0.65125 0.068125 -1.19625 -2.256875 -3.94875 -1.509375 0.273125 -0.950625 -2.036875 -0.235625 -2.391875 -1.52125 -1.305625 1.720625 3.270625 -0.645625 0.745 1.57625 -0.638125 1.966875 0.76625 0.87125 -1.13 0.251875 -0.47875 -2.3925 -0.9775 1.699375 1.581875 -0.245 1.02375 1.723125 -0.46375 -1.035 -2.28125 0.16625 0.5775 -1.4025 1.370625 -1.63875 0.47125 -1.82 -0.12875 3.0325 0.29375 0.701875 0.746875 1.080625 0.12625 -1.11875 0.245625 0.22 0.665625 3.00375 -0.704375 -2.1625 0.218125 0.095625 -2.335625 1.124375 -0.54 3.335 0.13375 -1.3825 -2.319375 1.91375 0.093125 1.29375 -0.539375 1.045 -0.33125 2.476875 -0.60625 0.613125 1.19625 -2.70125 2.543125 -0.3225 0.825625 2.086875 0.181875 0.49625 -3.518125 1.359375 -1.975 1.726875 0.29375 -4.35375 -1.21875 -0.93375 2.9175 -0.02 1.213125 -1.24625 0.61875 -2.565625 1.196875 0.2175 1.47375 -1.33125 1.084375 -0.6375 0.175 1.913125 1.48875 -0.15625 -1.2325 -1.8175 -0.765625 -2.358125 1.394375 0.66625 -3.48125 -1.2725 1.973125 0.1625 -1.754375 -2.431875 -2.905625 -0.95875 -1.1125 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_30ms_ref.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_30ms_ref.hrd new file mode 100644 index 0000000..f367bbf --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_30ms_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 30 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035114 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-0.075 -0.0425 -0.051875 -0.00625 0.024375 -0.013125 0.00875 0.0025 -0.01875 -0.011875 -0.025625 -0.01 -0.000625 -0.036875 -0.003125 -0.013125 -0.049375 -0.040625 -0.05375 0.02125 -0.01 -0.030625 -0.02 0.02125 -0.020625 0.014375 0.024375 0.068125 0.05125 0.00625 0.018125 0.005625 0.046875 0.019375 0.040625 0.01625 0.006875 -0.044375 -0.064375 -0.044375 0.0375 -0.035 0.025 0.02625 0.030625 -0.0175 0.000625 -0.045625 0.023125 0.015625 -0.00375 0.008125 -0.0275 0.00875 0.001875 0.009375 0.011875 -0.016875 -0.035625 -0.04375 -0.03625 -0.00875 -0.001875 -0.01625 0.0325 0 -0.003125 0.03625 0.090625 0.065 0.033125 0.01375 0.03375 0.036875 0.015625 0.015625 -0.01625 -0.025 0.04 0.035625 -0.020625 -0.033125 -0.02375 -0.014375 0.02875 -0.000625 -0.063125 -0.010625 0.01375 0.05125 0.033125 0.016875 -0.0275 -0.023125 -0.0525 0.029375 -0.08125 0.04375 -0.05125 -0.01875 -0.06125 0.005 -0.030625 -0.0275 0.008125 -0.033125 -0.018125 0.019375 0.06 0.01625 0.025625 0.029375 -0.00125 0.033125 0.049375 0.025625 -0.00125 0.01875 -0.029375 -0.0175 0.014375 -0.02 -0.061875 -0.04375 0.008125 -0.020625 -0.01875 -0.000625 -0.03375 -0.020625 0.0425 -0.00875 0.05 -0.010625 -0.025 0.048125 0.016875 -0.024375 0.008125 -0.05375 0.030625 -0.054375 -0.064375 -0.045625 0.0075 0.00125 -0.020625 0.03875 0.00125 -0.015 0.074375 0.065625 0.033125 0.045 0.066875 0.04625 -0.0175 0.015625 0.035625 0.015625 0.010625 -0.0175 -0.0125 0.01 -0.00875 -0.035 0.01875 -0.04875 -0.045625 0.003125 0.00875 0.06 -0.018125 0.026875 -0.018125 0.01375 -0.0125 0.01625 -0.014375 -0.04125 -0.03625 -0.0125 -0.048125 -0.093125 0.0075 -0.046875 -0.04375 -0.015625 -0.018125 0.028125 -0.00625 0.0475 0.006875 0.05 -0.020625 0.039375 0.0025 0.028125 0.046875 0.006875 0.03625 0.0325 0.01 0.025 -0.02625 -0.01875 -0.033125 0.00875 -0.04125 0.00125 0.0025 0.02 -0.020625 -0.015625 -0.01 0.020625 0.0175 0.031875 0.0025 -0.0275 0.01125 -0.031875 -0.0225 -0.069375 -0.044375 -0.03375 0.026875 -0.048125 -0.040625 0.005625 0.018125 -0.014375 0.011875 -0.000625 0.02 0.010625 0.080625 0.045625 -0.006875 0.050625 0.053125 0.059375 0.00875 -0.006875 0.02375 -0.0475 0.008125 0.003125 -0.005625 -0.0425 -0.035 0.0125 0.03875 0.016875 -0.01625 -0.00625 0.02875 -0.03625 -0.003125 -0.014375 0.043125 -0.023125 -0.04875 -0.00625 0.005 -0.044375 -0.018125 -0.001875 -0.014375 -0.0025 -0.00125 -0.05375 -0.019375 0.041875 0.04625 -0.00375 0.044375 0.07 0.091875 0.04375 0.013125 0.013125 0.031875 -0.01125 -0.005625 0.01625 -0.029375 0.00125 -0.04 0.004375 -0.091875 -0.038125 -0.02125 -0.029375 -0.014375 -0.005 0.01875 0.0425 0.023125 -0.02875 0.0225 -0.01125 -0.029375 -0.04625 0.014375 0.001875 0.009375 -0.04875 -0.015625 -0.06875 -0.003125 0.009375 -0.02375 0.001875 0.05875 0.019375 0.028125 0.05125 -0.015625 0.018125 0.0325 0.050625 0.005625 0.025625 -0.019375 -0.03875 -0.02375 0.000625 -0.02625 -0.010625 -0.046875 -0.015 -0.015 0.01625 -0.000625 0.024375 0.08375 -0.01 0.07375 -0.01875 -0.014375 0.0075 -0.0125 0.051875 -0.0525 -0.0525 -0.0225 -0.089375 0.016875 0.010625 0.013125 -0.00875 0.02125 -0.015625 -0.01 0.001875 0.014375 0.015 -0.0325 0.06375 0.0675 -0.006875 0.035 0.000625 0.07375 -0.049375 -0.00375 -0.005 -0.02 0.00125 -0.05125 -0.005625 -0.033125 -0.0775 -0.03125 -0.016875 0.004375 0.008125 -0.0075 0.02875 -0.0175 0.028125 -0.018125 0.021875 -0.02625 -0.033125 -0.029375 -0.005 -0.033125 -0.0425 -0.026875 -0.00625 -0.00625 -0.036875 -0.033125 -0.001875 -0.01125 0.026875 0.046875 0.016875 0.02125 0.00125 0.043125 0.043125 0.04375 0.046875 -0.005 0.033125 0.0075 -0.013125 0.01 -0.033125 -0.03875 0.030625 -0.025625 -0.03375 -0.034375 -0.009375 0 -0.054375 0.011875 -0.001875 0.00625 0.01125 -0.02125 0.015625 0.035 -0.041875 -0.075 -0.035625 -0.0675 -0.00125 -0.033125 -0.066875 0.01875 -0.039375 -0.0375 -0.044375 -0.038125 0.03875 0.013125 -0.033125 -0.023125 0.04125 0.020625 0.045625 -0.011875 0.040625 -0.0125 -0.03125 -0.028125 0.01375 0.01 -0.015 -0.041875 -0.036875 -0.011875 0 0.040625 -0.02125 0.011875 -0.01125 -0.015 -0.001875 0.01875 0.015625 0.0025 0.0125 -0.01125 0.02375 -0.039375 -0.036875 -0.01625 -0.020625 -0.041875 -0.046875 -0.063125 0.02 -0.06375 -0.00125 -0.01125 0.036875 -0.023125 0.030625 0.009375 0.021875 0.0425 0.021875 0.029375 0.01375 0.00625 -0.025 0.009375 -0.00625 -0.000625 -0.04875 -0.0325 0.005 -0.018125 0.005625 -0.014375 -0.021875 -0.005625 0.02 0.018125 -0.005625 0.060625 0.040625 -0.04875 -0.02 -0.01125 -0.071875 -0.01125 -0.036875 -0.035625 -0.050625 -0.0375 -0.03375 -0.004375 -0.0475 -0.010625 0.0175 -0.00375 0.021875 0.020625 0.01875 0.038125 0.005 0.06375 0.045 0.005625 0.020625 0.070625 -0.02125 0.035625 0.0275 -0.030625 -0.036875 -0.0125 0.040625 0.0025 -0.05125 0.003125 -0.026875 0.021875 0.00375 -0.00625 0.039375 0.019375 -0.02625 -0.01375 0.035625 -0.028125 -0.025625 -0.000625 -0.028125 -0.058125 -0.003125 -0.050625 0.014375 0.02875 -0.050625 -0.001875 -0.00625 0.031875 0.0425 0.075625 0.045 0.00875 0.04375 0.029375 0.04875 0.030625 0.03125 0.03125 -0.025 -0.02625 -0.01125 -0.03375 -0.016875 -0.044375 -0.00125 -0.008125 -0.001875 -0.00375 0.01875 -0.021875 0.013125 0.0125 0.021875 0.0225 0.058125 0.015625 0.025 -0.0025 0.041875 -0.033125 0.014375 -0.020625 -0.0175 -0.04875 -0.05 -0.009375 0.0075 -0.040625 0.021875 0.008125 0.069375 0.075 0.046875 0.0325 0.063125 0.015 0.0275 0.015625 0.0475 -0.031875 0.03 0.021875 -0.02375 -0.02125 -0.039375 0.01125 -0.02375 -0.025 -0.020625 0.020625 -0.005625 0.06375 0.034375 -0.01125 -0.009375 0.065 -0.009375 0.01125 -0.005625 -0.03 0.0025 -0.053125 -0.04625 -0.024375 -0.054375 -0.0225 -0.025625 0.011875 0.02875 -0.026875 0.04 0.055625 0.05875 0.005625 0.041875 0.084375 0.044375 0.009375 -0.01875 0.004375 -0.024375 0.053125 -0.01125 -0.039375 -0.03 -0.04375 0.02 -0.0575 -0.0075 -0.0525 -0.0025 -0.010625 -0.0275 0.02875 0.013125 -0.025625 -0.013125 0.01875 0.059375 0.004375 -0.01 0.005625 -0.05875 -0.06625 -0.045 -0.026875 -0.02125 -0.04125 0.0325 -0.02875 0.025625 -0.029375 -0.00125 0.025625 0.0175 0.054375 -0.009375 0.0325 0.010625 0.010625 0.061875 -0.015625 0.035625 0.0225 0.01125 0.0025 -0.005 -0.0725 -0.010625 -0.045 -0.015625 0.00125 0.00625 -0.05 0.009375 -0.00375 -0.020625 -0.018125 0.00875 0.0075 0.016875 0.01875 -0.008125 0.004375 -0.0475 -0.02125 -0.023125 -0.03125 -0.0175 -0.008125 -0.03375 0.03875 -0.02875 0.05125 0.026875 0.02 0.045625 0.045 0.100625 0.01375 0.030625 0.036875 0.056875 -0.018125 -0.041875 -0.0325 -0.024375 0.004375 0.038125 -0.015 -0.035625 0 -0.02625 0.04875 0.050625 0 -0.020625 0.015 -0.01375 0.003125 0.038125 0.00125 0.01 -0.01 -0.05125 -0.051875 -0.025 -0.025 -0.04875 -0.0075 -0.035 -0.020625 0.013125 0 0.03875 0.04625 0.014375 0.04375 -0.00625 0.056875 0.010625 0.029375 0.0525 -0.05625 0.004375 0.005625 0.0325 -0.030625 -0.06375 0.001875 0.0025 -0.014375 -0.04375 -0.035 0.001875 -0.00375 0.005625 0.0025 0.02 -0.02625 -0.00125 0.015625 0.02 0.02375 -0.02625 -0.006875 -0.03375 0.006875 -0.02125 -0.03375 0.015 -0.01875 -0.004375 0.04875 -0.01625 0.02125 0.013125 0.0025 0.00875 0.015 0.03625 -0.008125 -0.00125 0.05125 -0.02125 0.035 0.015625 -0.010625 -0.0325 -0.05875 0.003125 -0.03625 -0.066875 -0.005625 -0.0125 -0.00875 -0.011875 -0.01 -0.01625 0.02625 -0.031875 -0.00875 -0.01125 0.015 0.025 -0.018125 0.008125 -0.045 0.0025 -0.043125 -0.036875 -0.011875 -0.00875 0.0025 0.024375 -0.02375 0.035625 0.005625 -0.013125 -0.003125 0.00625 0.03625 0.024375 0.011875 0.08375 0.054375 0.044375 0.043125 -0.013125 -0.025 -0.035625 -0.0025 0.015625 -0.019375 -0.02375 -0.02625 -0.038125 -0.044375 0.0225 0.046875 0.02375 -0.001875 -0.000625 -0.04 0.03125 -0.03625 -0.013125 -0.01625 -0.01625 -0.024375 -0.03625 -0.055625 -0.031875 -0.03375 -0.026875 0.000625 -0.0075 0.005 0.035625 -0.02375 0.005625 -0.03125 0.05875 0.02 0.041875 0.029375 0.043125 0.005 0.035625 0.043125 -0.00875 0.02875 0.0025 -0.024375 0.0125 -0.02 0.00625 0.00375 -0.01875 -0.0475 0 0.061875 -0.031875 -0.01625 -0.04125 0.015 -0.040625 -0.0375 0.028125 0.021875 -0.051875 -0.0125 0.003125 -0.03125 -0.038125 0.010625 0.034375 -0.00625 0.005 -0.00625 -0.020625 0.03125 0.04875 0.05125 -0.00125 0.01375 0.02875 0.020625 -0.005 -0.0025 -0.019375 0.035 0.03375 0.0275 0.01125 0.000625 -0.071875 -0.019375 0.015625 -0.00625 -0.018125 0.00625 0.0375 -0.00625 -0.030625 0.05 -0.00625 0.03 -0.008125 0.03875 -0.021875 -0.03 -0.0175 -0.00875 -0.045625 -0.003125 -0.083125 -0.026875 -0.033125 -0.010625 -0.0275 0.018125 -0.005 0.02625 0.038125 -0.0075 0.074375 0.06125 0.039375 0.025625 0.06625 0.026875 -0.036875 0.029375 -0.02 -0.02125 0 -0.0425 -0.04 0.0075 0.003125 0.02625 0.024375 0.006875 0.03 -0.0225 0.041875 0.003125 0.036875 -0.0475 0.006875 -0.011875 0.014375 -0.019375 -0.00125 -0.015625 -0.033125 -0.05 -0.034375 -0.0225 -0.019375 -0.0225 0.01375 -0.01125 0.039375 0.015625 0.01625 -0.008125 -0.005625 -0.018125 -0.00375 -0.009375 -0.015 0.01125 0.015625 -0.006875 -0.03375 0.013125 -0.00375 -0.030625 -0.01625 0.016875 -0.02875 -0.015625 0.0375 -0.004375 0.01875 0.061875 -0.021875 0.003125 -0.06875 0.000625 -0.02625 -0.039375 0.004375 -0.024375 -0.01 -0.03875 -0.000625 -0.005 -0.039375 -0.02625 0.021875 -0.0025 0.070625 -0.02375 0.060625 0.05 0.028125 0 0.06375 0.06625 -0.02 0.01125 0.02375 0.0175 -0.04875 -0.030625 0.03125 -0.03375 -0.020625 -0.050625 0.001875 0.02 -0.04875 -0.045625 -0.025625 -0.0175 0.0525 -0.0275 0.015 -0.0275 -0.025 0.00125 -0.00625 0.01125 -0.05 -0.0525 -0.0125 -0.03 -0.013125 0.00875 -0.025 -0.021875 -0.021875 -0.01875 0.00375 -0.021875 0.056875 0.04375 0.0425 0.055625 0.03125 0.0475 0.060625 0.008125 0.005625 -0.0125 0.005 -0.024375 -0.045625 -0.021875 -0.02375 -0.00125 0.018125 -0.028125 0.01375 0.014375 -0.01 0.00125 0.045 0.04125 0.01625 0.018125 -0.0475 0.00375 0.02125 -0.06375 -0.04625 -0.021875 0.018125 -0.013125 0.00375 -0.014375 0.00625 -0.004375 0.04 0 0.021875 -0.01375 0.07375 0.0025 0.095 0.026875 0.003125 0.018125 -0.0175 0.046875 -0.009375 0.00875 0.044375 -0.03875 -0.021875 0.045625 -0.00125 0.00625 -0.01 0.00125 0.005 0.03 0.041875 -0.01125 0.0375 0.038125 -0.02875 -0.013125 0.013125 -0.063125 0.041875 -0.035 -0.056875 -0.07 0.013125 -0.00625 -0.018125 -0.028125 -0.031875 -0.035625 -0.031875 0.02 0.04375 0.07875 0.05 0.010625 0.055 -0.0225 -0.00375 0.0525 0.009375 0.043125 -0.0025 0.003125 -0.045 -0.004375 -0.065 -0.05875 -0.025625 -0.026875 -0.03125 -0.02 -0.014375 0.0175 -0.005 0.009375 -0.029375 0.005 0.053125 -0.02375 0.025 -0.00375 -0.000625 -0.04875 -0.04625 -0.01875 -0.05625 -0.0075 0.005625 -0.01375 -0.005 0.02375 0.01875 0.018125 0.0475 0.01 0.02875 0.009375 0.0175 0.04125 -0.008125 0.048125 0.028125 -0.00625 -0.000625 -0.003125 0.00125 0.004375 0.02375 -0.01875 -0.04125 0.004375 -0.035 0.02625 0.008125 -0.02 0.040625 -0.005625 0.03875 0.000625 -0.01625 -0.009375 -0.03125 0.029375 -0.050625 -0.033125 0.0125 -0.019375 0.030625 -0.03125 -0.036875 -0.00625 0.03375 0.01875 -0.03375 0.01375 0.004375 0.05125 -0.005625 0.053125 0.0275 0.034375 -0.02125 -0.0125 0.006875 -0.00625 0.025625 -0.043125 -0.005625 0.028125 -0.0125 -0.048125 -0.016875 -0.01875 0.0025 -0.0125 0 0.008125 0.000625 -0.025625 -0.0375 -0.024375 -0.06625 0.025 -0.048125 0.004375 -0.070625 -0.029375 -0.06 0.003125 -0.01625 -0.039375 0.001875 0.00125 -0.02625 0.010625 0.03125 0.02 -0.0025 0.055 0.038125 0.04125 0.01125 0.02875 0.026875 0.010625 0.0125 -0.004375 -0.015625 0.011875 0.004375 -0.010625 -0.035 -0.01375 -0.025625 -0.02875 -0.039375 0.013125 -0.001875 -0.033125 0.0475 0.010625 -0.013125 -0.045 -0.021875 -0.00625 -0.01 0.010625 0.00875 -0.04625 -0.08125 -0.041875 -0.045 -0.0025 0.02375 0.00625 -0.0975 0.025 0.001875 -0.0375 0.03 0.05375 0.055 0.025625 0.065 0.015625 0.004375 0.05875 0.005625 -0.01625 -0.021875 -0.00375 -0.011875 -0.039375 -0.036875 -0.031875 0.018125 -0.02125 0.039375 -0.031875 -0.00375 0.02 0.01625 -0.003125 0.0025 0.0125 -0.06375 -0.009375 -0.040625 0.024375 -0.000625 -0.065625 -0.04 -0.055 -0.04125 -0.021875 -0.00125 0.001875 -0.04 0.019375 0.000625 0.0325 0.08125 0.025625 0.00125 0.041875 0.046875 0.0275 0.045625 0.03125 -0.03875 -0.04625 0.00875 -0.014375 0.019375 -0.025 -0.021875 -0.01125 -0.039375 0.01125 -0.016875 0.053125 0.000625 0.00375 0.055 0.02 0.031875 -0.03625 -0.01875 0.004375 -0.008125 -0.061875 -0.04 -0.0125 -0.070625 -0.034375 0.025625 -0.083125 0.005625 0.02125 0.0025 0.03375 0.020625 0.040625 0 0.040625 0.02375 0.008125 -0.00625 0.015625 0.071875 0.000625 -0.013125 0.030625 -0.02625 -0.019375 -0.025625 -0.00375 0.000625 -0.04125 -0.04125 -0.01125 -0.008125 -0.00375 0.016875 -0.02 0.03 0.009375 -0.003125 0.001875 -0.04 -0.0425 -0.016875 -0.00375 -0.003125 0.01125 -0.011875 -0.02 -0.049375 -0.005625 0.011875 0.04 0.01375 -0.00125 0.050625 0.06625 0.006875 0.083125 0.041875 0.020625 -0.01625 -0.01875 0.015 -0.015625 -0.023125 -0.026875 -0.051875 0.01125 -0.029375 -0.001875 -0.021875 -0.0425 0.0125 0.02875 -0.008125 +-0.029375 -0.03125 -0.02 -0.013125 0.02 0.05625 0.006875 0.013125 -0.04 0.010625 0.01625 -0.008125 0 -0.045 0.01375 0.01 -0.020625 -0.01625 0 -0.026875 -0.014375 -0.00625 -0.01625 -0.034375 0.064375 0.049375 0.01375 0.028125 -0.005625 0.00375 0.02875 0.00375 0.030625 0.038125 0.011875 0.001875 0.000625 0.001875 -0.00375 0.053125 -0.015625 -0.04125 0.025625 0.016875 0.034375 -0.02125 -0.010625 0.018125 0.009375 0.005 0.01125 0.01375 0.003125 -0.006875 -0.02 -0.015 -0.0025 -0.034375 -0.03375 -0.02625 -0.025625 -0.030625 0.038125 -0.009375 0.014375 0.03875 0.039375 -0.03125 0.04 0.021875 0.055625 -0.0325 0.019375 -0.01 0.00625 -0.02125 -0.025625 0.039375 -0.005625 0.024375 -0.0325 -0.02125 0.0075 0.026875 -0.00875 -0.01375 0.001875 0.000625 -0.009375 0.0425 -0.04125 0.006875 -0.00875 -0.03 0.026875 -0.008125 0.0125 0.0075 -0.011875 0.006875 -0.0575 0.014375 -0.02 -0.000625 -0.054375 0.02375 -0.009375 -0.008125 0.039375 0.011875 0.0225 0.026875 -0.005625 0.008125 -0.001875 0.029375 0.0225 0.064375 -0.030625 -0.021875 0.018125 -0.03 -0.0425 -0.01875 0.011875 -0.035 -0.01875 -0.0125 -0.01625 0.039375 -0.0375 -0.049375 0.0275 -0.05375 -0.00125 0.000625 0.02125 0.01375 0.001875 0.026875 -0.04625 -0.01125 -0.015 -0.055625 -0.01875 -0.015625 -0.0375 0.05125 0.029375 -0.01125 0.08875 0.03875 0.055625 0.03125 0.038125 -0.024375 0.01125 0.04375 0.035625 0.048125 -0.005 -0.03625 0.008125 -0.03125 -0.00625 -0.015 0.0325 -0.019375 -0.00625 -0.04125 -0.05375 0.008125 0.009375 -0.004375 0.0025 0.048125 0.000625 -0.01125 -0.005625 0.01375 -0.015625 -0.021875 0.009375 -0.010625 0.00125 -0.01375 -0.073125 -0.028125 -0.025 0.01125 0.015625 0.004375 0.07 0.011875 0.05 -0.035625 0.108125 -0.03375 0.03125 0.02125 0.03625 -0.045 0.03625 -0.005625 0.018125 -0.035 0.00625 0.006875 -0.013125 -0.0425 0.054375 -0.035625 0.005 -0.006875 0.055 0.026875 -0.025 -0.018125 0.014375 0.005 -0.056875 0.028125 -0.0125 -0.004375 -0.06875 -0.0125 -0.000625 -0.04 -0.04875 0.0175 0.006875 -0.01625 0.03625 -0.0075 0.0075 0.0025 0.015 0.010625 0.035 -0.015 -0.025625 0.015 0.03625 0.018125 0.04625 -0.0425 0.015625 -0.004375 -0.01 0.011875 -0.0625 0.000625 -0.034375 -0.05375 -0.029375 0.028125 -0.011875 0.019375 0.001875 0.0325 -0.015 0.01125 -0.043125 -0.005 -0.004375 -0.0475 -0.03125 -0.005 -0.018125 -0.040625 -0.036875 -0.015625 0.02 -0.00625 -0.0025 0.03375 -0.009375 0.036875 0.04125 -0.01875 0.019375 0.020625 0.015625 0.010625 0.02125 -0.04125 -0.009375 0.00625 0.019375 0.028125 -0.034375 0.016875 -0.0075 -0.001875 0.003125 0.03 -0.02 -0.014375 0.001875 -0.02375 -0.009375 0.038125 0.008125 0.001875 -0.001875 -0.01125 -0.024375 0.003125 -0.0175 0.0225 0.026875 -0.035 0.008125 0.01375 0.00625 0.05625 -0.019375 0.00125 0.038125 0.0325 0.061875 -0.005 0.019375 0.03375 0.03375 -0.006875 0.010625 0.048125 -0.015 -0.013125 0.0225 -0.0225 0.013125 0.0375 0.066875 -0.010625 -0.035625 0.0325 0.001875 0.015625 0.013125 -0.034375 0.043125 -0.02 -0.01125 -0.035625 -0.0025 -0.0025 -0.028125 0.014375 -0.0075 0 -0.05375 0.025 -0.018125 0.008125 -0.003125 -0.000625 0.019375 -0.013125 0.045625 0.045 0.02875 -0.006875 0.00125 0.028125 -0.000625 0.00375 0.035 -0.03625 -0.011875 -0.0225 -0.0125 -0.059375 0.016875 0.05 -0.019375 -0.0425 0.01375 -0.03 -0.0225 0.038125 -0.016875 -0.014375 0.033125 -0.01125 -0.01875 0.0225 -0.028125 -0.0625 -0.034375 0.0025 -0.070625 -0.056875 0.051875 0.0125 -0.000625 0.01 0.0125 0.02875 0.01125 -0.0175 0.02875 -0.011875 0.039375 0.015 -0.0125 -0.000625 -0.00625 -0.011875 -0.009375 -0.0525 -0.015625 -0.018125 -0.0375 -0.036875 -0.008125 0.046875 -0.045 -0.028125 -0.013125 0.01875 0.038125 0.02625 0.011875 0.005625 -0.048125 0.00875 -0.004375 -0.018125 -0.021875 -0.046875 -0.015625 0.021875 0.035 0.02875 0.004375 -0.04875 -0.0675 0.03625 0.015 0.016875 0.044375 -0.003125 0.009375 0.0225 -0.003125 -0.020625 -0.010625 -0.001875 0.02625 -0.005625 -0.01 0.029375 -0.008125 -0.01625 -0.01 -0.005625 0.005 -0.00375 0.036875 -0.05625 -0.020625 0.00375 -0.038125 0.018125 -0.055625 0.03875 0.0425 0.01 -0.000625 -0.00625 0.014375 -0.0275 -0.015625 -0.053125 -0.01375 -0.03125 -0.070625 -0.00875 -0.004375 -0.0325 0.05625 -0.015 0.005 0.01375 0.004375 0.013125 0.034375 0.033125 0.045 0.004375 -0.011875 -0.068125 -0.003125 0.00125 -0.024375 -0.065625 0.001875 0.041875 0.0075 -0.039375 -0.013125 0.019375 0.009375 0.018125 -0.025 0.000625 -0.008125 -0.018125 0.075 0.008125 -0.004375 -0.011875 -0.034375 -0.001875 -0.04125 -0.00375 -0.010625 -0.02375 -0.01375 0.019375 -0.024375 -0.0125 -0.014375 0.02 -0.010625 -0.001875 0.026875 0.015 0.0475 -0.02625 0.021875 -0.0075 0.019375 -0.04125 -0.02125 -0.03 -0.0075 0.00375 -0.103125 -0.045 -0.02625 -0.00625 -0.020625 0.00125 -0.00125 0.0125 0.004375 0.033125 0.033125 -0.020625 -0.0225 -0.02125 -0.0175 -0.0075 0.010625 -0.031875 0.02375 -0.026875 0.01625 0.021875 0.01625 -0.008125 0.018125 0.000625 0.031875 -0.000625 0.0125 0.035625 0.034375 0.05375 0.00375 0.056875 0.035625 0.02625 -0.006875 0 0.00375 0.044375 0.013125 -0.039375 -0.051875 -0.03375 0.015625 -0.02875 0.03875 0.0425 0.025625 0.013125 0.02 -0.0025 0.011875 -0.03125 -0.024375 -0.014375 0.006875 -0.004375 -0.050625 0.004375 0.035625 -0.025 0.028125 -0.01375 0.01 0.0075 0.016875 0.046875 0.004375 0.051875 0.018125 0.008125 0.029375 0.01375 0.013125 -0.00625 0.005 -0.025 -0.03625 0.02875 -0.00625 -0.03625 -0.0075 -0.028125 -0.015 -0.00375 0.02 -0.066875 -0.008125 0.01375 0.04625 -0.026875 -0.041875 0.02 -0.049375 -0.0075 0.055 -0.0275 -0.0225 0.00375 0.010625 -0.05125 0.061875 -0.040625 -0.0075 -0.03625 0.02875 -0.0025 0.04125 -0.01125 -0.014375 -0.014375 0.04125 0.01875 -0.015 0.040625 -0.00625 0.021875 0.00875 0.004375 -0.005625 -0.0375 0.001875 0.0425 -0.024375 -0.02 0.0275 0.00375 -0.0275 0.03875 -0.00625 0.031875 0.015 -0.01 -0.02375 0.0475 0.053125 0.030625 -0.014375 -0.031875 -0.02375 -0.02 0.0525 -0.009375 0.0225 0.011875 -0.015 0.0425 0.009375 0.009375 0.04375 0.011875 0.02375 0.030625 0.03875 0 0.038125 -0.00375 -0.024375 -0.01625 -0.0075 0.013125 -0.01375 -0.001875 -0.006875 -0.039375 -0.028125 0.02625 0.004375 -0.03625 -0.029375 -0.001875 0.013125 -0.0025 0.001875 0 -0.0025 -0.0525 0.005625 -0.028125 -0.031875 -0.05375 -0.0275 -0.02125 -0.014375 -0.059375 0.01125 -0.01125 -0.015625 -0.01625 -0.021875 -0.0025 0.01625 0.0175 0.061875 0.033125 0.044375 -0.021875 0.020625 0.019375 0.0025 0.014375 0.02 0.013125 -0.0275 -0.01 -0.035625 -0.0175 -0.04625 0.01125 -0.02125 0.025 -0.009375 0 -0.023125 0.003125 0.009375 0.020625 0.03375 -0.00625 0.023125 0.003125 -0.04625 -0.010625 0.04 -0.02375 -0.013125 -0.021875 -0.0025 -0.020625 0.03125 0.011875 -0.01875 0.001875 0.078125 0.05875 -0.015625 0 0.0425 -0.004375 0.033125 0.0225 0.003125 0.065625 0.03875 -0.025625 -0.02875 -0.01 0.0325 -0.001875 0.0275 -0.01 0.01375 0.014375 -0.065 0.009375 -0.063125 0.00375 0.00875 -0.00625 0.008125 0 -0.02375 -0.028125 -0.014375 0 -0.015 0.015 -0.01625 -0.03125 0.023125 -0.0225 -0.000625 0.03375 0.00375 -0.031875 0.005 0.014375 0.000625 0.01375 0.00375 -0.020625 0.025 -0.020625 0.03125 -0.045 -0.0075 0.0125 -0.040625 -0.059375 -0.05 -0.0075 -0.066875 -0.034375 0.008125 0.015 0.039375 0.004375 0.024375 -0.01875 -0.001875 0.015625 -0.010625 0.006875 0.020625 0.03125 0.008125 0.01125 -0.00625 -0.03375 -0.01625 -0.000625 0.00125 0.01 0.024375 0.035625 0.02875 0.029375 0.03625 -0.065 -0.0075 0.021875 0.041875 0.004375 0.025 0.009375 0.00375 0.025625 -0.055 -0.025625 -0.02625 -0.05875 0.0175 -0.029375 0.02 0.02375 -0.01875 0.013125 0.02375 0.00875 -0.005625 -0.009375 -0.004375 0.01125 -0.005 -0.024375 -0.01125 -0.0725 -0.00375 0.005 -0.048125 0.009375 -0.011875 0.018125 -0.015625 -0.015625 0.021875 0.034375 0.008125 0.005625 0.030625 0.041875 0.028125 0.023125 0.009375 -0.00125 0.053125 -0.005 0.003125 -0.0175 0.04625 0.034375 -0.010625 0.005 -0.00375 -0.035 -0.000625 -0.021875 0.0125 0.000625 0.05625 -0.066875 0.02 0.015625 0.0175 0.011875 0.00375 -0.064375 -0.029375 -0.020625 -0.053125 -0.015 0.006875 -0.010625 0.0025 0.029375 0 0.054375 -0.0125 0.011875 0.0075 0.068125 0.0125 -0.01625 0.05625 0 -0.023125 -0.013125 0.02 0.010625 0.005 0.004375 0.026875 -0.0775 -0.004375 -0.0325 -0.025625 -0.006875 0.02 -0.03375 -0.006875 0.01375 -0.04125 -0.025 0.010625 0.021875 -0.0325 -0.035 -0.034375 -0.02625 -0.01125 0.03125 -0.0525 -0.073125 0.019375 -0.001875 -0.035 0.05375 0.011875 0.02375 -0.001875 0.023125 0.055625 0.001875 -0.008125 0.0425 0.00625 0 0.029375 0.0225 0.039375 -0.03375 0.025 0.0125 -0.02 -0.051875 -0.00125 -0.00125 0.0075 -0.006875 0.000625 -0.01625 -0.00625 0.025 0.059375 0.045625 0.02375 0.04875 -0.044375 0.000625 -0.025625 0.03625 0.016875 -0.06375 -0.0775 -0.011875 -0.01875 0.023125 -0.009375 0.0125 -0.005 0.041875 0.024375 0.03125 0.06 -0.028125 0.020625 0.02375 0.03875 -0.001875 0.036875 -0.0075 0.009375 0.00375 0.01 -0.0075 0.014375 0.00125 0.02625 -0.05875 -0.00625 -0.035625 -0.00875 0.01625 -0.025625 -0.011875 0.0025 0.005 -0.03 0.036875 0.005625 -0.013125 -0.0275 -0.020625 -0.063125 -0.061875 -0.013125 -0.024375 0.01375 -0.03375 0.025 0.0425 0.03625 0.066875 0.04 0.0325 0.08375 0.03375 0.028125 0.015625 -0.01125 0.01 0.061875 -0.013125 -0.004375 0.024375 0.003125 -0.071875 -0.0075 0.019375 -0.03 -0.03625 -0.02125 -0.043125 0.025 0.0425 0.005 0.05 -0.00375 0.009375 0.005 0.00625 -0.011875 -0.005625 -0.04125 -0.02 -0.018125 0.019375 0.008125 0.004375 -0.004375 -0.039375 -0.02125 0.015 0.056875 0.05625 0.02 0.0275 0.0525 0.025625 0.04875 0.00875 0.02875 0.02875 -0.005625 0.045 0.018125 -0.056875 -0.000625 0.03125 0.003125 -0.001875 0.021875 -0.00625 0.03625 0.003125 0.0475 -0.003125 -0.000625 0.005625 0.025625 0.0275 0 0 -0.051875 0.009375 -0.024375 0 -0.00125 -0.036875 -0.010625 -0.020625 -0.01125 0.003125 -0.019375 -0.030625 -0.003125 -0.003125 0.07625 -0.0025 0.013125 0.046875 0.05625 -0.00125 0.039375 0.02875 0.01125 0.045 -0.025 -0.05375 -0.02 -0.0075 -0.02375 -0.023125 -0.00625 -0.025625 -0.020625 0.015625 -0.030625 0.0425 -0.011875 -0.0275 -0.01625 0.00875 -0.010625 -0.053125 0 -0.0225 -0.02 -0.045625 -0.016875 -0.009375 -0.030625 -0.020625 -0.064375 -0.02875 0.024375 0 -0.00625 0.01125 0.05 -0.024375 0.021875 0.059375 -0.005625 0.048125 0.02375 -0.009375 -0.06125 0.020625 -0.045 -0.025 0.00625 0.054375 0.014375 0.000625 0.016875 -0.026875 0.024375 -0.023125 -0.005 -0.0225 -0.035 0.024375 -0.02875 -0.01875 -0.00625 -0.01125 0.014375 -0.025 -0.03125 0.076875 -0.0475 -0.0275 0.0025 0.02875 0.01125 0.000625 0.01 -0.003125 -0.005625 0.020625 0.003125 0.0425 0.038125 0.015 -0.0025 -0.00875 0.01875 0.0125 0.0125 -0.023125 -0.00125 0.01625 -0.011875 -0.024375 -0.034375 0.03375 -0.019375 -0.01875 -0.003125 -0.014375 0.0075 0.075 -0.065 0.02375 0.0075 -0.005625 -0.040625 -0.045625 -0.059375 -0.0525 0.02 -0.055 -0.03625 0.014375 0.016875 0.000625 0.01375 -0.010625 0.01625 -0.025 0.05625 0.06375 0.03125 -0.011875 0.009375 0.00125 -0.01 0.03375 0.043125 -0.00625 -0.0075 -0.009375 -0.033125 -0.010625 -0.025 -0.081875 0.03125 0.024375 -0.034375 -0.000625 -0.005625 0.0225 -0.00375 -0.025 0.020625 0.01 0.006875 -0.024375 0.01 0.0025 -0.02 -0.04125 -0.004375 -0.003125 -0.00625 0.0125 -0.021875 0.00125 0.02625 -0.000625 -0.045625 0.020625 0.02875 0.0325 -0.02125 0.040625 0.026875 0.001875 0.02375 -0.0025 -0.01875 -0.07625 -0.02 0.006875 -0.015625 0.004375 -0.0225 -0.04125 -0.0475 -0.03 0.0225 0.0025 -0.035 0.010625 0.005 0.030625 -0.009375 -0.005 -0.00125 -0.000625 0.02375 -0.00375 -0.029375 -0.030625 -0.01125 -0.0675 0.0125 0.0075 -0.015 -0.011875 0.01125 -0.018125 0.033125 -0.00125 0.04625 -0.00625 -0.003125 0.024375 0.00625 0.019375 0.021875 -0.006875 -0.011875 -0.0175 -0.00375 0.013125 -0.045 -0.0475 -0.0225 0.005 -0.00125 -0.043125 -0.01625 -0.02375 -0.029375 -0.0025 -0.000625 -0.013125 0.025 0.03625 0.003125 -0.000625 -0.041875 -0.00875 -0.016875 -0.041875 -0.0275 -0.055625 -0.020625 0.005 0.01125 0.0175 -0.03375 -0.03125 0.013125 0.04875 0.036875 0.05375 0.026875 0.025625 -0.03875 -0.0325 0.040625 -0.024375 0.04 0.01 -0.01625 -0.035 0.00875 -0.0375 0.045 0.00375 -0.03625 0.000625 -0.0325 -0.013125 0.01875 0.0575 0.02375 0.019375 0.013125 0.0175 -0.038125 -0.0075 -0.035 -0.055 -0.103125 -0.0075 -0.0675 -0.029375 -0.004375 0.006875 -0.010625 -0.019375 -0.001875 0.043125 0.036875 0.011875 -0.01375 -0.046875 0.033125 0.026875 0.0125 0.015625 0.00375 0.01375 0.00875 0.016875 -0.035625 -0.014375 -0.024375 -0.02 -0.005625 -0.01125 -0.03625 -0.030625 -0.013125 -0.018125 -0.041875 0.0175 -0.000625 -0.025625 -0.0225 -0.01875 -0.0225 -0.005 -0.036875 -0.00125 -0.00125 0.014375 0.01625 -0.06625 -0.00625 0.02375 -0.013125 -0.030625 0.04875 0.04375 -0.01125 0.02125 -0.015625 -0.011875 0.003125 0.015625 0.030625 0.0425 0.029375 0.011875 -0.02625 -0.0475 0.015 0.005 0.019375 -0.006875 -0.04875 -0.019375 0.02375 -0.0075 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_3ms.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_3ms.hrd new file mode 100644 index 0000000..761e577 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_3ms.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 3 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676034685 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +10.8925 6.668125 15.74 9.231875 9.6925 7.549375 12.10125 9.41375 11.74125 12.928125 10.52875 6.98875 9.796875 9.726875 12.1375 7.78875 7.75625 10.31375 11.9975 8.564375 12.2125 8.809375 10.359375 8.605 8.37375 9.303125 11.16375 11.475625 6.768125 12.1075 9.9 6.870625 8.945625 11.18875 12.09375 7.5275 10.701875 5.189375 12.463125 5.640625 10.29375 7.4675 8.674375 10.858125 7.906875 7.21625 9.638125 4.90125 8.261875 3.478125 5.63 8.4625 3.263125 7.796875 8.088125 5.990625 10.341875 9.2625 5.29125 10.055625 6.508125 5.6 5.96375 4.965 11.645625 3.98375 6.36 5.0725 5.32875 7.3625 5.699375 6.33625 4.65875 4.315625 3.705625 4.893125 5.97 6.631875 7.6275 6.95 7.2225 6.635625 4.29375 10.07 8.691875 5.441875 5.110625 5.539375 7.114375 5.561875 5.954375 3.984375 7.54125 5.751875 6.29 5.559375 10.16375 5.749375 5.050625 7.818125 6.22125 3.18625 3.770625 8.085625 4.819375 5.43 1.4475 4.235625 5.733125 6.321875 4.6325 4.268125 5.826875 0.89 4.595 5.344375 6.394375 4.9175 3.51 4.78 8.798125 6.73125 3.2825 3.310625 5.34625 3.7575 4.929375 3.01625 6.25375 5.4475 3.94375 4.826875 5.1925 4.650625 4.07125 3.98375 4.875625 4.79625 6.13625 2.074375 4.0175 4.881875 4.590625 4.185625 1.6825 7.01375 4.371875 4.9425 4.620625 0.23125 3.039375 4.8325 0.519375 7.2125 3.499375 1.873125 4.14875 4.060625 3.618125 3.9625 4.73875 5.24125 5.0675 2.9675 0.989375 9.214375 4.43875 3.19 3.685625 2.411875 2.844375 2.5425 3.870625 4.161875 2.759375 2.860625 4.323125 5.43375 4.540625 2.58875 2.768125 4.039375 3.719375 2.93375 2.325625 5.5575 1.499375 4.705 3.946875 2.085 4.5375 4.07875 1.865625 -0.1975 4.6725 3.1225 3.6725 3.525 3.783125 5.37625 5.566875 1.001875 0.94375 3.576875 3.113125 3.07 5.258125 2.415 2.728125 1.548125 5.054375 4.37375 2.593125 3.67375 5.03375 1.8275 4.2925 1.596875 4.01625 -0.906875 3.186875 3.245 4.314375 3.961875 3.08625 2.855625 2.81 3.61875 1.7825 3.30625 4.116875 3.239375 1.110625 2.093125 0.6925 2.27375 2.016875 4.871875 1.38375 1.151875 1.31375 1.67125 2.33125 2.73375 3.788125 2.955 3.6375 2.91625 5.16625 3.21875 1.434375 2.47 2.3975 -1.058125 5.6475 4.523125 -0.053125 1.1725 1.225 2.321875 1.330625 0.40125 3.913125 2.53375 4.22875 4.264375 0.905625 5.780625 3.615625 2.186875 2.058125 0.009375 0.388125 2.405625 -0.12875 3.41875 4.065625 5.30125 4.045625 1.143125 2.13 3.2225 3.360625 2.57625 3.483125 3.591875 -0.569375 -0.098125 1.084375 5.455 0.579375 -1.954375 3.414375 3.936875 3.504375 -0.308125 3.4625 -0.524375 2.375625 -0.090625 2.929375 -0.63125 2.730625 0.88 0.3825 2.735625 2.5225 5.036875 1.898125 1.18 -0.5225 1.748125 -1.41125 0.885625 -0.5525 1.7825 3.94875 3.498125 -2.675625 3.59875 1.906875 2.605625 -0.73 -1.40125 3.46875 4.66 1.926875 1.96 0.94375 4.48875 1.84125 3.199375 1.40875 0.2 1.176875 0.725 2.63125 4.239375 3.464375 1.778125 -2.120625 0.7475 -0.448125 1.12375 1.58375 1.061875 4.003125 3.238125 1.845 -0.218125 0.363125 3.03125 0.44 1.96125 1.47 0.669375 -0.76 0.949375 2.041875 0.676875 2.314375 2.78125 1.35625 2.158125 0 2.12 2.998125 0.408125 1.96125 3.54 3.29625 1.92875 -1.505625 4.021875 0.15875 5.1075 1.693125 1.911875 1.5875 0.44625 0.49 3.286875 -0.298125 0.911875 1.940625 1.213125 -1.513125 2.696875 2.9725 0.175 1.589375 1.974375 5.579375 0.458125 3.140625 5.72375 1.418125 1.315625 -0.490625 3.110625 -0.571875 5.361875 1.13125 3.53875 1.368125 1.71125 -0.83125 0.971875 2.395625 -0.325625 1.885625 2.4225 1.434375 1.176875 0.706875 1.39375 0.135 2.256875 1.775 1.680625 0.13625 3.00875 1.384375 3.88125 0.900625 0.40625 1.2825 3.200625 1.945 2.27 -1.480625 0.91125 4.446875 -0.2275 2.679375 1.778125 0.634375 3.640625 1.524375 0.34 4.111875 2.288125 1.719375 0.945625 4.543125 2.97875 -0.553125 1.809375 2.188125 2.233125 -1.328125 -0.148125 1.1175 0.305 0.240625 2.583125 2.923125 1.2375 1.2225 1.856875 0.704375 3.32125 1.449375 0.5 -2.050625 1.93125 1.37875 2.34 1.041875 0.386875 3.4525 3.040625 1.243125 0.17125 -1.404375 -0.259375 -0.93375 1.905625 4.453125 0.491875 1.221875 3.26 0.24375 0.55875 3.098125 4.0525 3.66 0.360625 -1.51875 3.37375 1.038125 -0.840625 0.024375 1.535625 0.84625 -0.96375 -2.33375 1.465625 1.559375 -0.354375 1.929375 -0.69 -1.01125 1.28375 -1.11375 2.316875 1.45625 1.313125 -1.1 1.98 1.345 2.08875 1.469375 2.87125 2.739375 2.1125 1.496875 3.81625 -0.255625 0.551875 2.576875 2.729375 0.9275 0.3425 3.01625 2.6275 1.033125 -0.4875 0.1075 5.0125 -0.058125 0.749375 -1.821875 -1.516875 0.384375 -2.434375 -0.21875 2.118125 0.19 1.88 1.015625 2.650625 0.08375 1.9325 -0.663125 2.9175 0.141875 1.51 3.94375 -0.48875 0.86625 2.656875 -1.200625 -0.87375 -0.73875 4.441875 1.9225 0.09625 1.908125 1.57 2.75125 0.689375 2.91125 4.180625 1.35375 -3.003125 -0.784375 1.325625 -0.53125 1.094375 0.290625 2.510625 -1.42875 2.3325 4.85625 3.038125 1.676875 -0.235 2.0575 2.170625 2.995 2.585625 -0.671875 0.79375 1.595625 1.594375 2.134375 -0.728125 1.216875 -0.071875 -1.77375 4.33 2.04875 1.47375 1.538125 1.291875 1.848125 -1.545 2.166875 1.27 -0.599375 2.51125 0.05625 2.17 1.455625 -0.364375 3.516875 -0.014375 3.113125 -0.33375 0.535625 2.63 0.63875 2.17 -0.13125 0.79875 -2.1525 2.243125 -0.341875 2.56875 1.014375 1.00375 2.3525 2.93 0.93625 3.58625 -1.1975 0.82375 1.454375 -0.384375 1.871875 -1.068125 0.699375 1.0425 1.90875 0.5825 1.475625 1.903125 0.91625 2.420625 -0.83875 0.194375 -1.21 -0.384375 -0.16375 0.565 1.3825 -1.89125 1.580625 0.338125 0.11875 0.684375 1.50875 0.17125 1.96625 2.375625 3.67875 2.110625 2.245 4.526875 1.65375 -0.080625 -0.503125 -0.82 1.946875 1.018125 0.696875 -0.086875 4.169375 1.39375 0.325625 1.14625 2.014375 1.24125 2.4375 3.00875 4.84 -1.599375 2.739375 0.998125 -0.11875 2.174375 0.703125 2.33375 2.57125 0.928125 3.20375 -1.735625 2.079375 0.918125 6.35 -0.39875 -2.205 -1.679375 1.816875 1.875 0.36375 0.801875 -0.65125 -0.746875 1.335 -1.965625 3.32625 3.7825 0.409375 2.3025 1.796875 1.9625 0.1375 1.9975 0.92375 -0.581875 -0.170625 0.71875 0.80375 -3.591875 1.734375 2.3675 0.96375 -0.15 0.123125 1.8525 -1.483125 -1.12875 -1.408125 0.165 -0.309375 0.38 0.06375 0.540625 2.9875 3.0925 1.8825 -0.41625 -0.21125 -2.2825 -0.765625 -1.44375 -0.780625 0.84625 1.100625 1.458125 -1.73 -1.480625 2.30375 -1.6225 -0.5675 1.96875 4.565625 -0.699375 0.684375 0.0825 -0.1625 2.67125 1.4725 2.128125 -1.748125 -0.65125 -0.498125 1.709375 2.85625 0.6075 1.88 2.0925 0.514375 3.018125 -1.30625 2.2175 2.326875 0.4875 2.156875 0.3525 1.431875 -2.28625 1.43875 0.8 3.543125 1.390625 0.5125 -0.46375 1.984375 -1.32 1.328125 -1.019375 0.87625 -0.8025 -0.055625 -0.079375 0.36125 3.09625 0.73125 -1.86375 1.055625 3.638125 1.075 1.103125 -0.49 -0.154375 0.71375 1.565625 -2.87625 1.635 2.805 -0.3875 1.02 0.38625 -2.01125 1.09125 1.735625 1.814375 2.295 -1.565625 -0.305625 2.730625 0.193125 1.24625 4.038125 0.860625 2.6875 -3.748125 2.56375 0.31 -0.3675 1.1125 0.819375 -0.1625 1.878125 1.35375 -0.0275 5.111875 1.048125 -0.30125 0.856875 2.50875 -0.775625 3.561875 -0.540625 4.273125 0.325 0.80125 0.7275 2.9625 2.98375 -2.02 -3.4425 0.369375 -0.1125 1.361875 -1.64375 0.706875 0.2625 -0.505 1.54875 -1.426875 -3.375625 0.575625 1.968125 1.70375 0.52875 1.723125 -2.525 1.446875 0.803125 -0.705625 1.14 -1.805625 -0.594375 -1.6675 -0.55875 -0.52875 0.3975 -0.663125 0.495625 -0.161875 -0.323125 3.9225 -1.41875 -1.074375 1.040625 2.4925 1.61 0.41625 -3.571875 0.305625 -0.0825 0.6425 1.819375 -2.70375 0.505 1.194375 0.116875 -0.86375 0.850625 -0.048125 1.913125 2.830625 -0.8025 1.131875 3.168125 2.25625 2.36625 1.32375 -1.104375 1.991875 0.745 -0.6675 0.985625 5.086875 -2.201875 6.796875 0.520625 1.7825 -1.56 -0.24625 0.759375 -1.771875 -2.301875 0.266875 1.23 -0.87625 0.833125 1.063125 0.183125 0.756875 -0.649375 3.385625 0.761875 0.28 -1.384375 1.88125 -0.978125 2.348125 1.5 1.19125 1.986875 0.696875 -0.73375 -0.230625 3.35875 1.594375 -0.37625 2.728125 1.673125 -1.170625 0.46125 1.0775 -0.281875 -2.011875 -0.004375 3.181875 -1.173125 0.8875 -0.03625 0.7775 -1.42 -0.3175 1.109375 0.538125 0.80625 -0.1975 3.01875 0.01 -0.98625 -1.555 3.250625 1.173125 1.748125 0.80375 -1.104375 1.708125 4.22875 -1.985625 1.024375 -1.655625 1.176875 0.464375 -2.23875 -0.68375 2.48625 -1.430625 2.15 1.540625 0.581875 -1.393125 1.03625 2.53 -0.026875 0.18125 0.894375 0.389375 -0.265625 0.87375 3.309375 2.815 0.6025 -0.3 0.659375 0.23625 1.11 -1.839375 1.43625 1.85 -0.68625 -1.20125 -0.5375 -0.388125 -0.059375 1.915 3.019375 -1.2025 -0.639375 -3.305 -2.30375 0.381875 1.2125 1.74375 1.05625 0.4225 1.045625 1.190625 0.47875 -0.540625 1.04375 -0.9775 -3.3375 1.51125 -0.899375 -0.44 -0.83375 -0.87 3.121875 -0.94375 -0.019375 -0.113125 1.235625 -0.98125 -0.283125 2.61375 -0.238125 0.730625 2.654375 3.435 -0.854375 -1.31375 -0.011875 2.619375 0.899375 -2.948125 0.238125 -1.690625 -1.25875 -1.72125 -1.49125 2.473125 -1.1 0.445625 -1.40875 1.20125 0.926875 -0.209375 3.013125 2.671875 2.64625 0.5225 1.994375 -0.851875 1.27 4.5 3.46375 0.90875 -1.93625 -0.98625 1.11625 2.95625 3.585625 0.448125 -2.071875 2.529375 0.829375 2.401875 -0.78625 2.441875 -1.039375 -0.618125 0.023125 -1.634375 -0.66875 1.063125 -0.920625 0.958125 0.494375 -2.1925 -2.565625 1.538125 -0.369375 -1.598125 0.6875 0.298125 0.131875 -0.29 -1.699375 -1.844375 1.8025 -0.675625 2.37 0.101875 1.7825 -0.9075 0.33875 2.57875 -0.17 1.96375 0.61375 0.066875 2.365625 0.7675 1.939375 1.23125 0.834375 -1.013125 1.6475 1.9725 1.526875 0.29 2.45625 1.43625 0.409375 0.06125 -2.380625 1.2725 1.646875 5.035 -0.284375 1.64 1.325 2.7175 2.325625 1.084375 0.4675 -1.599375 0.310625 -2.15625 -2.735 2.38875 0.069375 1.94125 1.100625 0.194375 -2.1825 -0.8575 3.546875 0.428125 -1.08875 1.440625 1.138125 -0.855 2.944375 1.755625 5.02875 0.394375 2.309375 -0.13375 -0.7775 -0.691875 -0.561875 0.629375 -1.245625 -1.169375 3.975 0.730625 -0.871875 -0.52125 -3.64375 0.45125 2.259375 -0.41625 0.02125 2.7725 -1.28125 1.67625 2.358125 -0.015625 0.365 2.03 0.9775 -0.609375 -1.251875 1.29125 0.41125 -3.815 -1.235 0.08625 -0.6175 -0.523125 -0.90375 -2.134375 -0.605 0.229375 3.065 -2.5825 -0.185625 2.2475 2.999375 1.4525 2.3725 -1.238125 1.26875 4.463125 0.080625 2.66 2.68625 -0.17375 4.8225 3.415625 2.75375 1.9025 -4.30125 0.55875 -1.2 1.38125 0.364375 1.003125 -0.911875 -0.566875 -0.01 -0.764375 1.79625 2.358125 0.83625 1.521875 0.0825 -2.58125 0.839375 -2.490625 -1.971875 0.379375 1.954375 -1.003125 -0.854375 1.6725 0.279375 1.9675 3.194375 -2.4525 0.159375 1.034375 -0.439375 5.643125 -1.210625 -0.7425 -1.589375 1.948125 3.865 2.13875 2.4125 -0.0725 1.65875 0.333125 -1.359375 0.63625 1.0475 3.04375 -0.510625 -0.01625 -0.2475 -2.151875 1.579375 0.640625 1.84125 -1.119375 0.88625 -0.86125 0.41375 -1.9375 1.90375 0.88375 -1.808125 -2.841875 2.7025 1.17 -0.251875 2.86625 1.08375 0.151875 -1.92125 3.445625 2.830625 -2.50125 -0.966875 3.21125 -0.504375 0.320625 0.235 1.410625 0.0375 0.79875 3.26 1.045 0.665 -2.253125 0.765 -0.540625 -0.154375 0.004375 2.7175 -0.32125 0.179375 -0.671875 -1.575625 -0.8275 -0.1275 -2.1675 -0.56125 -1.749375 -0.63875 -2.06875 1.610625 -0.683125 -0.99 -0.1375 1.4725 2.276875 1.316875 0.40125 -0.32375 -0.578125 0.78125 2.019375 2.87625 0.4675 0.651875 1.17125 1.476875 0.4825 1.04125 -0.224375 -3.73375 -0.873125 1.321875 1.991875 0.98625 3.638125 1.860625 0.99 -0.2725 -0.6675 1.159375 2.51875 3.036875 -0.118125 -0.013125 -1.01125 -1.043125 3.253125 0.569375 2.3575 1.1075 1.509375 0.220625 1.216875 -1.42 2.970625 0.405 -0.688125 0.045 2.49875 -1.290625 1.14 -2.031875 1.4775 -0.12125 1.26375 -0.1725 -0.07625 0.82875 -0.120625 -0.81125 3.4825 1.311875 -1.95 0.455625 -1.056875 -2.051875 3.044375 -0.090625 -2.823125 2.9075 -1.013125 -2.779375 2.27125 -0.618125 1.070625 0.23375 -1.0725 -0.986875 2.17375 -2.28625 -2.5775 0.469375 -0.001875 0.615625 -2.034375 -2.49625 -1.2825 -0.591875 1.59 -2.0325 -0.725625 -2.0925 2.251875 -1.8825 -0.245 0.953125 1.499375 0.438125 1.95 0.55125 2.823125 1.965 -0.60625 1.575625 -2.23 -0.33375 -1.235 0.61375 2.011875 1.093125 3.26625 -0.39375 -4.2125 1.5075 1.625 1.820625 -0.7225 -0.34125 -2.073125 1.905 1.33625 2.4875 1.0275 -0.033125 0.248125 -0.189375 -2.24 1.289375 0.609375 2.22 2.269375 0.12625 1.554375 0.164375 3.294375 -0.586875 2.896875 0.203125 0.37875 0.139375 0.1075 -1.81625 1.321875 1.485625 0.355625 0.14 2.54875 0.32125 -0.00125 -0.899375 -0.285 -0.1575 0.26 -1.855625 0.57375 1.29 1.55 1.0075 2.105625 0.76 0.559375 -2.0575 -0.335625 -1.429375 -0.350625 -0.2325 -0.1425 1.091875 0.60375 -2.235 3.904375 2.655 0.906875 4.269375 -0.4825 1.17125 -1.58125 1.41 1.72375 -0.310625 0.440625 -0.50375 0.706875 +11.931875 17.83625 9.74375 14.295625 13.720625 17.2625 15.641875 11.910625 14.24125 12.429375 12.255625 13.658125 14.041875 14.9625 13.391875 11.066875 12.95375 14.034375 11.27875 12.67125 14.2 14.71125 16.599375 11.7925 10.4125 10.608125 8.583125 9.404375 13.1225 12.1625 10.966875 10.09375 13.398125 11.97875 11.54 12.58625 6.126875 14.109375 6.265 13.046875 13.136875 9.9375 8.815 9.433125 9.309375 8.8725 11.3975 11.63375 10.4725 6.446875 9.749375 8.238125 11.585625 8.350625 11.169375 8.636875 10.12 8.794375 10.904375 8.5425 6.82625 9.47875 7.990625 10.185 9.2025 10.548125 9.585 7.171875 10.296875 8.621875 9.34375 9.1825 9.546875 5.89875 7.498125 7.6975 6.9325 5.195 10.715625 10.489375 7.989375 6.44625 6.869375 8.19875 7.28375 8.30625 8.486875 4.9075 6.4275 8.79625 8.821875 7.215 7.245625 4.861875 8.056875 8.2575 7.804375 12.980625 8.974375 7.208125 6.28625 9.596875 7.38125 7.161875 6.726875 4.2825 9.53375 4.198125 8.28625 9.5875 10.8825 6.486875 7.825 7.58 6.125625 6.7225 6.0275 6.574375 4.800625 5.411875 8.6175 4.28375 5.513125 6.338125 5.459375 6.895625 6.014375 5.253125 4.124375 6.245625 7.089375 4.344375 6.595 3.22625 3.22 7.03 1.600625 2.853125 3.07875 5.268125 6.183125 8.0125 9.355 2.699375 2.9725 4.1425 4.003125 3.008125 6.691875 8.83875 3.24625 4.608125 6.858125 4.225625 8.13625 5.4825 5.80375 5.680625 3.26625 3.618125 7.88625 6.55375 7.04625 2.1225 3.41875 5.835 3.069375 6.038125 8.828125 5.7725 4.295 6.181875 3.55375 7.300625 1.615625 3.471875 4.164375 3.49625 5.004375 0.55125 5.1875 3.6775 4.31625 3.733125 5.051875 5.255 9.63375 3.63875 5.8525 4.436875 5.84875 6.28125 2.93375 3.513125 7.370625 3.73875 2.693125 4.86375 2.755 5.763125 2.74625 4.435 2.88625 4.939375 0.866875 1.429375 3.34125 5.83625 4.540625 3.481875 7.671875 4.276875 4.538125 4.22375 4.669375 2.99 5.731875 2.036875 6.074375 5.186875 4.345625 2.344375 2.1825 1.569375 3.066875 2.036875 3.878125 3.91625 5.64375 3.503125 1.448125 3.855625 3.355 4.305625 1.030625 5.634375 1.861875 3.530625 2.35625 4.22 3.750625 4.04875 4.428125 2.31125 7.80875 3.82 5.204375 4.678125 1.639375 3.4225 4.295625 5.27375 4.31875 3.15125 2.213125 4.728125 2.669375 3.588125 -0.12875 2.368125 3.910625 4.11625 1.651875 5.000625 3.108125 2.19375 5.23375 1.614375 2.771875 2.88 2.694375 2.275625 2.498125 -0.000625 1.449375 4.420625 4.358125 3.91 3.8675 0.145 1.011875 1.82125 1.05375 0.214375 3.273125 0.6975 3.706875 2.423125 2.523125 -0.41625 -0.680625 1.22875 -0.1975 0.78 3.524375 1.97875 1.986875 2.276875 3.64625 3.375625 1.86125 4.57625 3.968125 2.834375 0.348125 2.04125 1.3 5.97 3.596875 0.293125 4.324375 3.96375 1.856875 -1.91125 4.184375 1.3925 1.563125 1.174375 4.73875 1.25875 0.02375 1.9525 2.19375 3.825 4.86125 2.07 3.04625 3.005625 2.5925 1.324375 1.949375 0.18875 3.145 3.21125 1.766875 2.3475 3.353125 1.81875 1.105 1.993125 1.195 2.31375 1.09625 3.6025 1.80625 4.37625 3.073125 3.374375 1.8275 2.641875 1.796875 -1.72875 3.365625 2.8325 2.94625 2.991875 3.19125 3.05625 0.281875 3.474375 -0.03625 1.599375 -0.795 2.056875 5.0775 0.524375 4.06125 4.77 2.921875 -2.014375 4.7025 0.776875 3.65375 3.044375 0.298125 0.601875 1.785 4.911875 3.578125 2.934375 -1.525625 2.1225 -1.72625 1.195 2.726875 3.484375 -1.56375 2.526875 1.781875 1.774375 1.25875 1.6975 0.6575 -0.16125 0.465625 4.516875 1.721875 0.6025 3.64875 1.950625 1.341875 3.355625 2.384375 1.164375 1.903125 0.64125 2.47875 2.131875 2.929375 3.9425 4.138125 1.4775 1.950625 0.940625 1.339375 3.560625 -0.404375 2.024375 1.906875 1.95625 0.935 -0.1025 1.235 2.911875 0.58375 0.36375 2.86875 5.35125 1.4625 1.4475 2.86375 3.15125 1.934375 2.790625 4.7675 1.21 3.238125 2.72875 0.915625 1.91625 0.325 1.466875 0.233125 2.36375 -0.1425 0.68125 4.328125 0.439375 2.258125 -0.425625 -0.265 2.211875 -0.75625 4.018125 3.67375 0.609375 1.4925 2.478125 0.005625 1.5725 3.14625 -1.306875 -3.075625 0.30125 0.819375 0.42875 1.295 2.384375 -0.261875 1.214375 1.016875 -2.1175 1.7275 1.898125 2.121875 0.3175 1.63375 -1.594375 0.561875 1.78375 1.7325 0.430625 1.69 -1.350625 4.6175 1.815 4.49125 2.49375 1.596875 4.073125 4.00125 -0.986875 2.229375 0.386875 1.104375 1.1625 0.70875 4.336875 2.525 0.01 -1.9475 1.51625 1.604375 -3.548125 2.37125 1.88875 2.20625 2.706875 2.161875 1.329375 1.47125 -1.240625 3.29125 1.638125 4.275625 1.59625 1.335625 -1.64375 1.7875 -2.185625 -0.54375 3.23625 0.34375 -0.18 0.4475 1.675625 2.8175 -0.26 1.93625 1.399375 1.844375 1.93375 2.091875 3.1675 -0.599375 1.4225 2.01 3.31625 2.336875 -0.35625 3.66375 -2.771875 1.5975 -1.315625 2.910625 1.818125 1.509375 1.8925 2.9125 1.881875 1.059375 1.78125 3.250625 2.393125 2.72375 -0.279375 -0.451875 0.493125 1.381875 2.888125 0.6675 2.5375 2.32875 1.494375 1.050625 -1.52625 2.245625 0.61875 0.854375 -0.149375 0.815625 0.20875 2.733125 -0.870625 -0.091875 -1.315 0.38875 2.269375 2.1475 1.420625 1.135 -0.064375 -0.015625 2.408125 1.235625 3.111875 2.154375 -0.18375 -1.265625 2.4975 1.6575 1.4925 0.019375 1.653125 -1.77125 2.87375 2.47875 1.99125 -0.72875 1.61625 0.23 -0.495 2.8125 1.004375 3.075 1.37625 0.333125 1.784375 2.75625 0.1025 1.90375 -2.083125 -0.584375 -0.511875 1.905625 3.115625 -2.75875 2.443125 -0.07875 1.27125 2.76 2.0975 -0.390625 0.925 1.618125 1.164375 1.18125 3.943125 -2.230625 4.60625 -0.2175 -2.508125 0.0625 0.858125 1.396875 0.0525 -0.836875 -0.27375 0.183125 -0.745 -0.42625 1.8275 -0.01875 0.17875 1.10875 -0.135 -0.624375 2.0275 1.84625 1.781875 -0.395625 -0.829375 0.82625 2.4525 1.88125 -1.45375 3.35 0.07375 0.88375 2.00125 1.8725 4.479375 1.3275 1.496875 2.7325 0.71875 5.14 1.09625 1.403125 -0.746875 -0.5125 -3.01875 -2.010625 0.6925 -2.468125 1.27625 2.85 1.87625 -0.551875 2.270625 -0.5175 -1.084375 1.97375 -2.2075 0.234375 -0.0825 -0.17 -2.069375 -3.29375 0.8925 1.01625 0.78125 -0.55625 0.210625 -1.013125 2.438125 2.533125 4.8825 0.750625 -0.773125 -0.5 1.635625 -0.273125 1.73125 2.29375 -0.1 0.29375 2.989375 0.65125 1.30125 2.31 2.245 5.96125 -0.92875 2.56625 3.775625 1.940625 -1.22625 1.63375 1.70375 2.218125 -1.46625 1.453125 2.194375 -2.745 3.00625 -1.011875 2.47125 -0.111875 -0.86875 1.6575 3.431875 1.974375 1.885 1.479375 -0.69125 2.21875 2.535625 4.160625 0.05125 -1.343125 0.32375 0.19875 -1.276875 1.04125 0.8 0.7075 1.541875 1.74125 1.515625 -0.56375 0.8025 1.864375 1.36625 -0.079375 -1.24 -2.081875 2.068125 0.806875 3.2525 -1.7925 1.99 -1.105625 1.913125 0.12375 0.365 -0.33125 2.116875 0.975625 0.748125 1.778125 4.270625 -0.55625 -0.833125 2.5325 1.375 2.956875 -0.404375 0.631875 -1.249375 0.731875 3.513125 1.475625 -1.939375 -1.200625 2.509375 -0.645625 -1.470625 1.615625 0.85125 -1.800625 1.51875 3.0775 2.840625 3.534375 3.666875 2.08625 0.699375 -0.985 0.75875 2.838125 3.4425 1.983125 2.848125 -1.13 2.01875 -1.989375 0.44125 2.32625 0.66375 0.0075 0.896875 1.015625 -0.371875 0.77125 0.381875 -0.9575 0.02875 -2.1 0.5775 2.413125 2.0175 1.015 1.258125 -2.7925 -0.53375 -1.4325 1.004375 -0.831875 0.636875 -1.348125 0.283125 -0.686875 2.75625 0.691875 2.94625 -0.916875 0.30125 3.554375 4.85625 -0.995 1.06125 2.416875 0.11375 -1.286875 -2.0025 2.685625 2.434375 0.88125 4.10375 2.823125 2.189375 -0.443125 -0.889375 1.5575 -2.016875 2.63375 2.5 2.024375 0.6875 1.653125 -0.493125 -0.61625 0.685625 -1.136875 0.320625 1.245 -2.543125 -0.576875 0.27 -1.110625 0.275625 1.391875 2.413125 0.606875 0.59375 0.945 3.4825 -0.791875 2.8225 2.75625 -2.2 0.190625 -0.450625 0.208125 2.82125 0.809375 -0.9 -1.295625 0.535625 2.675 1.30125 1.548125 -0.080625 1.2175 -1.113125 2.385625 -0.12625 -1.896875 1.285625 -0.07375 3.21 1.128125 1.4425 2.10625 2.06125 0.31125 1.909375 1.073125 2.143125 -0.665625 -2.293125 0.42 1.233125 1.730625 0.4975 0.86375 -2.405625 1.064375 -3.501875 -0.880625 -0.935625 0.850625 2.098125 0.359375 -0.1925 -0.15875 -0.88125 1.064375 0.28 2.750625 -0.04625 -0.7675 0.028125 0.689375 0.32125 -1.169375 1.819375 -2.02 -1.86875 0.955 0.385625 -0.138125 0.858125 -0.418125 1.33375 0.579375 3.17875 0.876875 -1.555 0.4225 1.05 2.380625 -1.125625 0.3325 2.0225 1.111875 0.379375 -1.099375 3.404375 -1.055625 1.785 0.615625 3.601875 1.008125 3.485625 1.691875 0.438125 1.363125 0.443125 -1.7125 1.835 2.153125 1.420625 0.715 0.393125 0.365625 0.856875 0.4 -1.89 1.649375 2.646875 -1.26375 0.198125 4.11 2.055625 1.594375 1.316875 6.1725 1.504375 0.618125 2.763125 2.475625 -0.6875 1.38125 1.76125 -0.15125 2.47 1.416875 -0.146875 0.415 -1.131875 -0.98875 1.675 1.41625 1.388125 0.07 3.94125 -0.984375 0.05375 0.51 -0.3875 0.646875 -0.68 -2.111875 3.75125 -0.17 1.385625 1.421875 -0.7475 -1.88 1.071875 0.51 1.798125 1.95125 -4.11625 0.02 -0.171875 -0.66 1.904375 1.049375 -1.110625 -1.1025 -0.956875 1.2925 -1.305625 0.52875 -0.808125 0.115 1.7725 0.08875 0.826875 -1.0825 -0.725 2.416875 -0.1225 -0.23125 -0.50875 -0.04125 -1.605 -0.090625 -0.233125 0.483125 -0.444375 0.945 -0.9625 0.638125 3.684375 -2.5275 -1.245625 3.691875 0.491875 -1.063125 -0.630625 0.87 3.661875 2.899375 2.66375 3.31625 1.67625 2.33625 2.27625 0.195625 -1.5075 0.354375 -1.0475 -0.030625 2.741875 0.37875 1.269375 1.308125 0.78125 0.31125 2.709375 3.695 2.13875 1.15125 3.113125 1.410625 -2.3275 -0.991875 1.235 0.554375 -2.625625 1.090625 1.206875 0.206875 0.496875 -0.11375 0.900625 -1.124375 0.515625 1.581875 -0.00875 -0.14125 1.89 1.326875 -0.598125 2.018125 2.25125 -0.515 0.4675 2.32625 -0.40375 3.5475 -2.47625 -1.335 1.8275 -0.03375 3.156875 0.72875 0.734375 -0.134375 2.555625 -1.643125 -0.911875 0.11 2.381875 1.410625 1.566875 -0.16625 -0.72625 0.009375 1.05 -1.585 0.6225 2.654375 1.154375 2.868125 -2.8925 1.015 1.22375 0.748125 -0.68 2.7475 -0.065 -0.6825 4.06375 -2.17625 -1.416875 2.371875 -0.393125 -1.403125 -0.33375 1.25 0.97375 -1.494375 1.17625 -2.066875 -1.784375 1.225 -1.761875 -2.115 0.653125 1.016875 0.96 0.031875 -0.020625 -0.888125 -0.744375 -0.91875 -0.148125 2.05625 3.91 -0.81125 0.025625 1.943125 -0.625 -2.149375 0.005 -0.57125 1.524375 -2.22625 1.24875 0.251875 -2.83375 -1.995625 2.49625 -1.473125 -0.991875 4.14 -0.29375 1.10125 1.223125 -0.513125 1.865625 0.571875 -0.3225 3.65375 0.150625 0.8725 0.534375 3.7925 -1.31375 1.131875 -2.54 -0.004375 2.153125 -0.03875 2.166875 -0.900625 2.399375 -0.260625 -0.3475 1.29 1.50625 0.05 -1.53375 1.139375 -0.3675 0.22 1.60875 1.5475 1.151875 -0.165 1.096875 0.4075 0.291875 1.303125 2.600625 2.159375 -0.108125 1.2275 -0.685 0.20125 2.080625 0.416875 1.081875 1.918125 1.570625 -1.41125 2.15625 1.545 1.683125 2.744375 2.571875 -0.389375 2.924375 0.354375 -1.250625 0.808125 2.823125 -1.325 2.07375 0.218125 0.97 1.725 -1.01625 -0.343125 2.213125 -0.010625 -1.674375 -0.375 1.4925 -1.523125 1.539375 4.086875 1.693125 1.929375 -2.784375 -1.95625 -0.25875 -0.97375 0.314375 1.003125 2.641875 -0.72875 0.05625 2.8925 0.358125 1.731875 0.078125 2.23375 -0.201875 -2.800625 1.923125 1.286875 2.245625 -1.090625 3.226875 -1.313125 -0.970625 1.924375 2.1725 0.46 -2.786875 -0.425 0.350625 0.981875 -1.135625 0.613125 -0.3675 -2.248125 1.929375 -1.133125 -0.636875 -1.9775 0.535625 -0.089375 -1.996875 1.888125 1.1475 -0.125 1.29875 0.056875 -0.589375 0.333125 0.46 0.90125 -1.82125 3.066875 0.995625 -2.89875 0.70125 0.31625 -0.6875 0.405 0.31625 0.65125 -1.290625 1.38125 -1.35125 0.574375 0.64 -1.96875 -0.12 0.790625 1.486875 -1.785 -1.338125 1.77625 -0.37 -0.708125 -1.26625 2.439375 2.360625 -0.530625 -0.464375 -1.4625 0.47625 2.109375 -1.41375 -0.8125 1.119375 1.250625 2.275625 -1.12125 0.32375 1.1575 0.21125 -1.285 0.678125 2.514375 0.6 1.115 4.759375 1.980625 -0.020625 3.90625 3.346875 -0.519375 -1.544375 -0.406875 -1.998125 1.111875 -1.42875 1.983125 -1.705 -3.200625 0.235625 -0.315 0.36625 0.3975 1.31375 0.75 0.400625 -2.965625 -0.58125 2.064375 -1.50625 1.955625 2.9525 1.340625 -2.906875 1.18625 -0.624375 0.1375 1.356875 1.0575 -1.214375 0.26125 -0.488125 1.9625 -0.3325 3.2575 0.58375 1.295625 0.321875 -0.463125 1.43625 -0.996875 -1.354375 -1.61875 0.078125 0.06 1.076875 0.511875 0.196875 -3.201875 -0.524375 2.549375 0.495 1.9725 -0.14375 0.88875 1.67625 -1.365625 -0.934375 2.8825 2.64875 0.300625 3.93125 1.264375 2.38 -1.826875 0.9225 1.618125 -3.121875 0.908125 2.578125 1.555 0.095625 4.030625 1.441875 -0.01 1.17125 0.315 1.473125 2.4875 -0.96375 -0.38125 0.87375 1.6175 -0.30875 0.395625 -0.02875 1.356875 2.325625 0.919375 2.115 2.026875 0.069375 -1.1525 1.6 0.403125 0.244375 2.009375 0.571875 1.441875 0.1925 0.88375 -0.658125 0.835625 2.21125 -0.595625 1.994375 -1.949375 -2.728125 0.21375 -0.694375 1.883125 -1.7575 1.915 0.9125 -0.755625 1.68625 -1.041875 -1.745625 -0.7475 -0.25 2.66 -0.025625 1.274375 -2.113125 -0.484375 -0.14375 -0.8975 -0.8475 1.35 -0.68875 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_3ms_ref.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_3ms_ref.hrd new file mode 100644 index 0000000..16e3fb7 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_3ms_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 3 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676034685 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-0.015 -0.066875 -0.016875 -0.0375 0.010625 -0.0125 0.059375 0.0075 0.038125 0.03875 0.059375 0.03375 0.030625 0.055 0.026875 0.015625 0.0575 0.00125 0.059375 -0.02125 -0.000625 -0.02875 -0.0025 -0.050625 -0.04 0.018125 -0.020625 0.004375 -0.054375 -0.026875 0.00625 0.0025 0.02375 -0.03625 -0.021875 -0.001875 0.019375 0.029375 -0.033125 -0.006875 0.043125 -0.060625 -0.040625 -0.034375 -0.010625 -0.020625 0.005625 -0.01 0.02125 0.065 0.046875 0.014375 -0.021875 0.075 0.053125 0.038125 0.040625 -0.005 0.038125 0 -0.019375 0.03125 -0.0325 -0.03125 -0.061875 -0.02125 -0.046875 -0.035625 -0.03625 -0.00375 0.046875 0.003125 0.055 0.025625 0.0175 -0.0225 0.0025 0.00625 0.005 -0.016875 -0.03125 -0.03 -0.03125 0.00375 0.00875 0.0175 -0.036875 0.0175 -0.000625 0.04375 0.075 0.008125 0.03875 0.029375 0.028125 0.043125 0.036875 0.05 0.043125 0.02625 0.040625 0.016875 0.023125 0.015625 -0.00125 -0.06125 0 -0.045 0.02125 -0.01625 0.005 -0.02375 -0.051875 -0.001875 0.03125 0.00125 0.01125 0.0125 0.03125 0.020625 0.00125 -0.04 -0.040625 -0.07125 -0.0825 -0.009375 0.0025 -0.055 -0.0625 0.000625 -0.00375 -0.02 0.00125 0.0175 0.053125 0.0475 0.0825 0.08 0.03625 0.015 -0.01875 -0.011875 -0.004375 0.03 0.0025 -0.000625 -0.061875 -0.025625 -0.019375 -0.018125 0.018125 0.02375 -0.046875 -0.03875 0.011875 0.024375 0.0025 -0.03 0.02625 0.069375 0.020625 -0.04375 -0.01125 -0.024375 -0.009375 -0.06 -0.054375 -0.0225 -0.038125 -0.031875 0.00875 -0.043125 -0.0275 0.02625 0.009375 -0.0175 0.0475 0.0325 0.05 0.046875 0.029375 0.028125 0.05625 -0.026875 -0.034375 0.000625 -0.033125 -0.021875 -0.05125 0.02625 0.005 0.0475 -0.030625 -0.008125 0.031875 0.0075 0.023125 0.01125 0.02625 0.0025 -0.023125 0.009375 0.0075 -0.10375 -0.040625 -0.02375 -0.041875 -0.065625 -0.015 -0.068125 -0.009375 -0.02375 -0.02375 0.024375 0.021875 0.03375 0.061875 0.0425 0.025 0.05125 0.063125 -0.01375 0.035625 0.06125 0.00125 -0.018125 -0.00125 0.01 -0.0375 -0.048125 0.02625 -0.02875 -0.01375 -0.02375 -0.0025 -0.055625 -0.00625 0.03625 0.0525 -0.01375 0.02625 -0.045 0.02875 -0.024375 -0.04375 0.019375 0.009375 0.00625 -0.03 -0.02375 -0.04125 -0.055625 0.01875 -0.0025 0.019375 -0.020625 0.028125 0.071875 0.036875 -0.055 0.055 0.043125 0.02 0.000625 -0.04875 0.033125 0.02375 -0.008125 -0.009375 -0.023125 -0.001875 0.01 -0.008125 0.00875 0.014375 -0.031875 0.029375 -0.04375 0.009375 0.005 -0.000625 -0.03375 -0.025625 0.00625 -0.038125 -0.006875 0 -0.0375 -0.045625 -0.02125 -0.024375 0.0075 -0.05625 -0.01875 0.011875 -0.01 -0.005625 0.05625 0.021875 0.034375 0.068125 0.02125 0.04625 -0.035625 0.005625 0.058125 0.0675 0.036875 -0.018125 0.054375 -0.036875 0.033125 -0.01625 0.005625 -0.015 -0.035 -0.0325 -0.0625 -0.010625 0.00125 0.0425 -0.01 0.005625 0.036875 0.0325 -0.04 -0.0325 0.011875 -0.021875 -0.003125 -0.013125 0.030625 -0.03125 -0.004375 0.0025 0.0425 0.003125 -0.001875 0.036875 0.024375 0.021875 0.00875 0.02875 0.059375 0.019375 0.038125 0.058125 0.038125 0.034375 -0.01 0.033125 -0.06125 0 -0.02625 -0.013125 -0.00625 0.005625 0.02125 0.026875 -0.005625 0.016875 -0.0075 -0.025 0.014375 -0.009375 0.01 -0.049375 -0.07125 -0.031875 -0.009375 -0.050625 -0.04875 0.0275 -0.018125 -0.034375 -0.035625 -0.045 -0.036875 -0.015625 -0.01625 -0.0175 0.045 0.046875 -0.016875 -0.011875 0.034375 0.033125 -0.006875 0.024375 -0.004375 0.00125 -0.02 -0.0075 -0.0025 0.014375 0.01875 -0.0525 -0.02 0.0025 -0.034375 0.021875 0.0075 -0.01 0.04 -0.055 -0.030625 0.03625 0.03 -0.011875 0.0075 -0.0125 0.064375 -0.033125 -0.041875 -0.070625 0.03125 -0.050625 -0.021875 -0.035625 0.0025 0.01125 0.01875 0.039375 0.00625 -0.0325 0.031875 0.048125 0.000625 0.02125 -0.015625 0.005625 0.01125 0.024375 -0.02875 0.041875 -0.0525 0.021875 -0.021875 -0.006875 -0.024375 -0.021875 0.0175 -0.0125 -0.033125 0.036875 -0.005625 0.02 -0.004375 -0.045 -0.01875 0.00125 0.076875 0.016875 -0.003125 -0.026875 -0.044375 -0.015 -0.018125 -0.015 -0.060625 -0.006875 -0.021875 0.02625 -0.013125 -0.00875 -0.0275 0.056875 0.05 0.030625 0.010625 0.05 0.021875 -0.014375 -0.020625 0.013125 0.009375 -0.01375 -0.02625 0.026875 -0.078125 0.005 0.004375 -0.02125 -0.038125 -0.040625 0.010625 0.01125 0.02625 0.05375 0.01125 0.01375 0.010625 0.009375 0.055625 0.00125 0.005625 -0.020625 -0.036875 0.00625 0.02625 -0.028125 -0.02625 -0.045625 0.0075 -0.000625 0.009375 0.09125 0.01625 0.040625 -0.003125 0.07375 0.03875 0.040625 -0.0175 0.01625 0.01375 -0.01875 -0.03875 -0.004375 -0.000625 -0.036875 -0.02125 -0.06125 -0.00125 -0.01375 -0.026875 -0.000625 -0.016875 0.028125 -0.0075 0.00625 0.00125 0.0175 -0.001875 -0.0725 0.013125 0.016875 -0.041875 -0.021875 -0.036875 -0.0125 -0.031875 -0.0025 -0.0275 0.005 0.038125 -0.008125 0.02625 0.03 0.0375 0.01375 0.006875 0.029375 0.019375 0.0275 -0.001875 0.045625 -0.03875 -0.0125 -0.01375 -0.02625 0.02125 0.015 -0.020625 -0.048125 0.023125 -0.021875 0.01125 0.023125 -0.008125 0.009375 0.03 0.049375 0.008125 0.015 0.031875 0.0375 0.053125 -0.009375 -0.0025 -0.03625 0.036875 -0.02375 -0.048125 -0.075 0.008125 -0.02875 -0.043125 0.0125 0.0175 -0.004375 -0.024375 0.01625 -0.03375 0.0175 0.0225 0.008125 0.063125 -0.013125 0.051875 0.030625 0.008125 -0.019375 -0.025 -0.028125 0.025625 -0.02 -0.014375 -0.01125 0.023125 0.024375 -0.006875 0.063125 -0.0175 -0.056875 0.011875 0.026875 -0.019375 -0.023125 -0.00125 -0.020625 -0.046875 -0.058125 0.03375 -0.01 -0.040625 -0.0825 -0.014375 -0.030625 -0.019375 0.025625 0.00625 0.028125 0.0075 0.0475 0.0175 0.019375 0.045625 0.065625 0.066875 0.010625 0.04125 -0.010625 -0.00875 -0.00125 -0.001875 -0.006875 -0.03375 -0.0525 0.0275 0 0.03875 0.050625 0.01625 -0.005 -0.040625 0.0125 0.035 -0.031875 -0.02375 -0.010625 -0.031875 -0.021875 0.01 -0.049375 -0.021875 -0.030625 -0.0375 -0.019375 0.048125 0.035 0.01625 0 0.00875 -0.00125 0.02875 -0.005625 0.031875 0.01875 0.075 0 -0.02125 -0.025625 0.03 -0.020625 0.00875 -0.04625 -0.006875 -0.00375 -0.0575 0.021875 0.001875 -0.01625 0.01 0.01375 0.015625 0.005625 -0.025625 0 -0.011875 -0.013125 -0.009375 -0.00875 -0.036875 -0.036875 0.025625 0.00375 -0.035625 -0.049375 0.0075 0.01625 0.0225 0.0075 0.065 0.086875 0.0375 0.096875 0.03875 0.01875 0.0375 0.061875 0.02125 0.006875 0 0.01375 -0.0375 -0.07875 -0.03375 -0.06625 -0.015 -0.029375 -0.03625 -0.00875 -0.001875 -0.03875 0.011875 -0.051875 0.026875 0.009375 0.03625 0.055 0.020625 -0.03 0.01625 -0.00125 -0.0025 -0.03375 -0.02875 -0.04125 0.00125 0.00625 0 -0.003125 -0.006875 0.04875 0.00125 0.02 0.053125 0.04375 0.01875 0.029375 0.024375 0.035 -0.023125 0.011875 -0.0025 -0.01125 0.02125 0.0025 0.01375 -0.015625 -0.046875 -0.005625 -0.035625 0.01625 -0.02875 0.025625 0.005625 0.006875 0.001875 0.015 0.02875 -0.0575 -0.009375 -0.024375 0.005 -0.02 -0.045625 -0.07125 -0.050625 -0.013125 -0.005625 -0.00375 -0.073125 -0.04 -0.00375 0.033125 0.02625 0.0175 0.05375 0.0175 0.03125 0.039375 -0.011875 -0.020625 0.045 0.013125 -0.055 0.024375 0.0075 0.001875 -0.014375 -0.048125 0.005625 -0.009375 0.000625 -0.0375 -0.0075 0.020625 0.0125 -0.0025 -0.000625 -0.025 0.0475 0.016875 0.040625 0.01125 -0.043125 -0.06125 -0.06375 -0.008125 0.000625 -0.03875 0.01875 -0.0475 -0.060625 -0.0375 -0.015625 0.041875 0.009375 0.04125 -0.000625 0.029375 0.005 0.003125 -0.006875 -0.0125 0.05 -0.055625 0.0125 -0.0325 -0.04125 -0.00625 0.000625 0.026875 0.060625 -0.046875 -0.043125 -0.005625 -0.001875 -0.038125 -0.025625 -0.0475 0.01625 -0.035 -0.0225 0.004375 0.01375 0.0175 -0.023125 0.0175 -0.0075 -0.073125 -0.028125 -0.015625 -0.033125 0.006875 0.02375 0.025625 0 0.053125 0.0525 0.046875 -0.02625 0.00875 0.0375 0.024375 -0.004375 0.043125 0.03875 -0.000625 -0.03 -0.01125 -0.02625 0.0025 -0.005625 0.01375 -0.04875 -0.03625 -0.01375 0.033125 -0.02 0.004375 -0.059375 0.036875 0.00375 0.00125 -0.0125 0.013125 -0.001875 -0.0125 -0.01125 0.000625 -0.069375 -0.029375 -0.02375 -0.045 -0.021875 -0.006875 0.0125 0.029375 0.094375 0.0275 0.024375 0.039375 0.029375 0.069375 0.08 -0.0025 0.02 -0.0025 0.005625 -0.0125 0.005625 -0.028125 -0.02375 0.0125 -0.01 -0.016875 -0.009375 0.01 0.02875 -0.0375 -0.016875 -0.020625 -0.036875 0.010625 0.0025 -0.024375 -0.015625 -0.03125 -0.04375 -0.043125 -0.0225 -0.03875 -0.0075 -0.04875 -0.02125 0.01875 0.0275 -0.025625 0.0175 0.0325 -0.00875 0.015625 0.0025 0.0075 0.028125 0.054375 0.04875 0.01 0.035625 0.03125 -0.0325 -0.0075 -0.0225 0.026875 -0.050625 0.0325 -0.015625 -0.013125 -0.008125 -0.013125 0.0025 0.03375 0.018125 0.044375 0.029375 -0.003125 -0.00375 0.028125 0.02375 -0.01625 -0.01375 -0.014375 -0.033125 -0.02875 0.029375 0.02375 -0.095 -0.008125 -0.0225 0.015625 -0.004375 0.046875 0.0075 0.020625 0.013125 0.020625 0.023125 -0.021875 0.003125 0.02 0.020625 0.025625 0.0025 0.04125 -0.031875 -0.01875 -0.0025 0.021875 -0.0475 -0.011875 0.004375 -0.0025 0.0175 0.01625 0.025625 0.008125 -0.02125 -0.035625 0.06 -0.035625 0.029375 -0.01 -0.01375 -0.01125 -0.03125 -0.018125 -0.008125 -0.07375 -0.005 -0.000625 -0.019375 -0.00375 -0.018125 0.06 0.02125 0.00875 0.030625 0.08125 0.02 0.04125 0.04375 -0.0025 -0.025 0.0425 0.01375 -0.065 -0.006875 -0.02 -0.049375 -0.038125 -0.009375 0.004375 0 -0.02375 0.044375 0.018125 -0.013125 -0.000625 -0.011875 -0.0175 -0.018125 -0.029375 0.01 -0.030625 -0.024375 -0.034375 0.00875 -0.03375 -0.0525 -0.0675 -0.005 -0.049375 0.025625 -0.001875 0.04875 0.008125 0.03625 0.040625 0.001875 0.013125 0.024375 -0.005 0.015 -0.024375 -0.0325 -0.005 0.043125 -0.040625 -0.020625 -0.0125 -0.011875 -0.0625 0.004375 0.011875 -0.0125 -0.010625 0.034375 0.040625 -0.00375 0.01125 0.005 0.01625 0.00125 0.043125 -0.05 -0.060625 -0.05375 -0.015625 -0.02 -0.0275 -0.08 -0.019375 0.003125 -0.048125 0.0025 0.00375 0.04125 0.025625 0.09375 0.079375 0.058125 0.016875 0.03125 0.053125 -0.00625 -0.010625 0.015 -0.02375 -0.073125 -0.01875 -0.001875 0.01125 0.014375 -0.0425 0 -0.015 0.009375 0.005 0.01125 -0.026875 0.01375 0.00875 0.001875 -0.018125 0.016875 -0.021875 -0.040625 0.00375 -0.0725 -0.036875 -0.0275 -0.034375 -0.00375 0.008125 -0.0375 0.033125 0.025625 0.07 0.03625 0.0225 0.0225 0.056875 0.049375 0.0275 0.04 -0.003125 0.0175 -0.000625 -0.050625 -0.03 -0.026875 -0.03375 -0.064375 0.04 -0.02625 -0.0475 -0.02 -0.05375 -0.0075 -0.02875 0.02625 -0.01375 0.025 -0.011875 -0.05875 -0.01 0.02625 -0.0425 -0.000625 0.01125 -0.03625 -0.00125 -0.02 -0.045 -0.03375 -0.0275 0.0225 0.015 0.076875 0.015 -0.013125 0.035 0.063125 0.004375 0.028125 -0.004375 0.005 0.028125 0.025 -0.05 -0.048125 -0.02625 -0.00625 -0.025625 -0.01375 -0.041875 -0.04 0.010625 -0.069375 -0.00125 0.0225 0.025625 0.003125 0.065625 0.03375 0.029375 0.060625 0.01125 -0.030625 0.005 -0.053125 -0.016875 -0.04625 -0.0675 0.0125 -0.03625 -0.005 0.02 -0.019375 0.04625 -0.0175 0.00875 0.010625 0.040625 0.0175 0.03125 0.00125 0.01875 0.03125 0.026875 0.00625 -0.003125 -0.03375 0.00125 0.0425 0.005 -0.041875 -0.039375 0.06125 0.02375 0.0075 0.033125 0.0075 0.01375 -0.02375 0.02625 -0.008125 -0.0325 -0.014375 -0.001875 -0.04875 -0.023125 -0.013125 -0.034375 -0.03625 0.0325 -0.045 -0.010625 -0.0425 0.01375 0.00375 0.010625 0.01125 0.01 0.075 0.025 0.02375 0.018125 0.00875 0.041875 0.013125 0.0025 -0.0125 -0.04625 -0.0175 -0.024375 -0.0425 -0.000625 -0.000625 -0.01375 0.01125 0.016875 -0.039375 0.025625 -0.005 -0.000625 -0.013125 -0.014375 -0.0225 0.03125 -0.04875 0.01 -0.085 -0.03125 -0.04375 -0.025 -0.005 0.0075 0.008125 -0.075 -0.03 -0.0225 -0.024375 0.01625 0.0275 0.045625 0.013125 0.020625 0.044375 0.0475 -0.01 -0.02375 0.015625 0.038125 0.0375 0.01125 -0.03375 -0.006875 -0.005 -0.019375 -0.045 -0.004375 -0.009375 0.025625 -0.01625 0.05125 -0.03125 0.023125 -0.019375 0.025625 0.0025 0.023125 -0.00875 0.02375 0.004375 -0.034375 0.00625 -0.019375 -0.029375 -0.0225 0.001875 0.051875 0.050625 0.02625 0.074375 0.040625 0.014375 0.03125 -0.00375 0.069375 0.041875 0.049375 -0.005625 0.01375 0.01125 -0.021875 -0.044375 -0.0175 -0.028125 -0.078125 -0.02 -0.0125 -0.030625 -0.009375 -0.0275 0.0275 -0.029375 -0.0225 -0.02 -0.016875 0.025625 -0.011875 0.015625 -0.0125 -0.025 0.03125 -0.051875 -0.026875 -0.02375 -0.00875 -0.005 -0.03 -0.029375 -0.035 -0.00125 0.025625 0.0125 0.048125 0.046875 0.028125 0.04375 0.021875 0.040625 0.01 0.019375 -0.016875 0.0425 0.016875 0.02375 0.00875 -0.043125 -0.003125 -0.013125 -0.02875 -0.019375 -0.0325 0.003125 0.00375 0.015625 -0.01125 0.008125 -0.04875 -0.008125 0.033125 -0.004375 -0.013125 -0.008125 0.04875 -0.028125 -0.063125 -0.030625 -0.045 0.0225 -0.015 0.00375 0.01875 0.02125 0.084375 0.065625 0.026875 0.0525 0.025625 0.03875 0.03875 0.043125 -0.00375 0.00875 0.0025 0.0425 -0.019375 -0.03 -0.034375 -0.02 -0.045 -0.033125 -0.0125 -0.03 -0.01125 0.04625 0.0275 -0.033125 0.04 -0.010625 -0.010625 -0.003125 -0.03375 0.0075 -0.010625 -0.023125 -0.0075 -0.021875 -0.03125 0.03375 -0.001875 -0.000625 -0.04375 -0.058125 +-0.019375 -0.008125 -0.024375 -0.028125 -0.02125 0.0025 -0.008125 -0.03125 0.01125 0.036875 -0.033125 0.009375 0.0075 0.036875 0.055 -0.026875 -0.013125 -0.005 -0.020625 -0.046875 0.006875 -0.026875 0.00125 -0.01875 -0.003125 -0.038125 -0.064375 -0.0325 -0.06375 -0.00625 -0.06125 0.03625 0.070625 -0.015625 0.036875 0.050625 0.00625 -0.015 0.00125 0.005 0.016875 -0.0025 0.00625 0.01125 -0.045625 0.020625 0.0375 -0.013125 0.02375 -0.03125 0.00625 0.033125 0.03875 0.060625 0.1 0.051875 -0.00875 0.08 -0.03125 0.030625 -0.020625 -0.005625 -0.08625 0.045 -0.049375 -0.02875 -0.0125 -0.015 -0.030625 0.011875 0.001875 -0.00125 -0.00625 0.0225 -0.046875 -0.04625 -0.06 -0.035 0.036875 -0.058125 -0.043125 -0.023125 0.0025 -0.0275 -0.034375 0.005 -0.009375 -0.0125 0.0425 -0.015 0.0175 0.021875 0 0.003125 0.015625 0.025 -0.00875 0.01375 0.0125 0.04125 0.005625 0.035625 -0.0175 0.001875 -0.018125 0.023125 -0.004375 -0.02125 0.0375 -0.0175 -0.01 0.013125 -0.010625 0.014375 -0.038125 0.014375 0.006875 -0.008125 0.0175 -0.02625 -0.034375 -0.029375 -0.03125 0.005625 -0.014375 -0.029375 0.024375 -0.025625 -0.04375 0.02125 0.0425 -0.0075 -0.006875 0.060625 -0.020625 0.041875 -0.000625 0.005625 0.02125 -0.018125 0.04125 -0.001875 0.018125 0.026875 0.04 -0.0375 -0.025625 0.021875 -0.044375 -0.01 -0.00875 -0.00625 -0.001875 0.04375 -0.035 0.033125 0.0425 0 0.02625 0.04125 -0.03875 0.019375 -0.008125 -0.036875 -0.015 -0.03125 0.01125 0.00125 -0.02375 -0.016875 0.00625 0.0175 -0.015625 -0.01875 0.029375 -0.038125 -0.028125 -0.013125 0.045625 0.000625 -0.0125 -0.033125 -0.03125 0.0175 -0.040625 0.031875 -0.035625 -0.05 -0.035625 -0.035625 -0.000625 -0.005 -0.016875 0.006875 -0.045625 -0.014375 0.001875 0.003125 0.0225 -0.0025 -0.003125 0.0025 -0.028125 0.003125 -0.03625 -0.009375 -0.05375 -0.031875 0.013125 -0.0375 -0.003125 -0.034375 0.020625 -0.029375 0.0025 0.048125 0.015625 -0.028125 0.02125 0.030625 0.005 -0.02125 0.0375 0.025 0.00625 0.025625 -0.0325 -0.01875 -0.063125 -0.036875 -0.01375 0.021875 -0.0325 0.00375 -0.015 -0.010625 -0.0275 -0.013125 0.004375 -0.008125 -0.008125 -0.0025 0.0125 0.008125 -0.005 0.02 -0.034375 -0.00375 0.015 -0.023125 -0.03 0 0 0.0025 -0.000625 -0.0375 0.01375 0.056875 -0.004375 0.035625 0.04125 0.040625 0.034375 0.0475 -0.01 -0.019375 0.028125 0.058125 -0.0075 -0.003125 -0.06375 -0.0375 -0.02125 -0.03875 -0.04125 0.01125 -0.009375 -0.0225 -0.014375 0.00625 0.035 -0.005 -0.033125 0.02 0.003125 -0.04375 0.013125 -0.005625 -0.023125 -0.04375 -0.025625 -0.02875 -0.04125 0.021875 -0.01875 -0.019375 -0.00375 -0.01 0.0375 -0.01625 0.01375 0.03625 0.03125 0.01375 0.050625 0.0125 0.005625 -0.009375 0.019375 -0.02625 0.036875 0.045 -0.05375 -0.03125 -0.02125 -0.023125 -0.008125 -0.038125 -0.01125 0.02625 -0.0025 0.035625 0.0125 -0.03 -0.035625 0.009375 -0.006875 0.015625 0.010625 0.028125 0.040625 0.006875 0.003125 0.029375 -0.001875 0.015 -0.034375 0.00125 0.0025 0.035 0.05625 0.003125 0.071875 0.026875 0.00125 0.020625 0.028125 0.024375 0.035625 -0.003125 0.02875 -0.02875 0.028125 -0.001875 -0.00125 -0.056875 0.01375 0.013125 -0.0075 0.005625 -0.03625 0.0125 0.03 0.02875 0.003125 -0.00125 0.005 -0.0825 0.0125 -0.08125 -0.015 -0.02 -0.0525 -0.0275 -0.025 -0.026875 -0.016875 0.009375 -0.015 -0.005625 -0.001875 0.036875 0.01125 -0.0175 -0.043125 -0.021875 0.0375 0.009375 -0.01375 0.0275 0.0225 0.013125 0.004375 0.0125 -0.000625 -0.03125 0.014375 0.02625 -0.004375 0.0275 0.00375 -0.030625 -0.00875 0.045625 0 0.0175 0.0175 -0.00125 -0.008125 -0.0525 0.000625 0.02 0.020625 0.003125 -0.0025 -0.02375 0.00375 -0.03875 0.00375 0.00625 -0.051875 0.03375 0.014375 0.00875 0.09125 0.02375 0.004375 -0.000625 0.024375 0.029375 0.029375 0.021875 0.041875 0 0.06125 -0.048125 0.00625 -0.031875 0.025625 0.00375 -0.026875 -0.01125 -0.005625 0.011875 -0.028125 -0.055625 0.03125 -0.006875 -0.0175 -0.01375 -0.020625 -0.005 -0.026875 -0.0225 -0.00125 -0.0325 -0.0325 0.018125 -0.00875 0.02625 0.025 -0.018125 -0.006875 0.036875 0.000625 -0.00125 0.02 0.021875 0 0.016875 0.050625 0.01125 0.050625 -0.008125 -0.010625 0.00625 -0.004375 -0.045 0.0175 0.005 0.01 0.053125 0.009375 -0.01375 0 0.00875 -0.02375 -0.03625 -0.02625 0.031875 0.00625 0.001875 0.013125 -0.011875 0.026875 -0.01375 0.01125 0.00625 -0.07625 -0.003125 0.005 -0.005625 0.020625 0.023125 0.033125 0.030625 0.036875 0.026875 0.023125 0.0625 0.073125 0.038125 -0.001875 -0.006875 0.0275 0.015625 0.004375 -0.035 0.02375 0.01625 -0.043125 -0.000625 -0.033125 0.024375 -0.046875 -0.001875 0.020625 -0.018125 -0.046875 0.005625 -0.0125 0.00125 0.030625 0.011875 0.07375 0.01125 0.00375 0.021875 0.013125 -0.089375 -0.0075 -0.001875 -0.010625 -0.035625 0.016875 0.009375 -0.006875 0.020625 -0.03125 0.049375 0.02875 0.024375 0.05125 0.08375 0.0175 0.00875 0.0125 -0.006875 0.00625 -0.021875 -0.001875 0.023125 0.00875 -0.005625 -0.01625 0.013125 -0.014375 -0.013125 0.015625 0.025625 0.005 -0.03375 -0.0075 -0.00125 0.020625 0.035 0.0175 -0.016875 0.008125 -0.02625 -0.03125 0.005 0.050625 -0.009375 -0.000625 -0.005625 -0.01 0.023125 -0.018125 0.05375 -0.009375 0.05375 0.00875 0.019375 0.029375 0.04625 -0.025625 0.034375 0.004375 -0.001875 0.011875 0.026875 0.00125 0.036875 -0.0125 -0.0125 -0.05375 0.00375 -0.0025 -0.008125 0.01125 -0.009375 0.02875 -0.00875 -0.015625 -0.00375 0.001875 -0.01125 -0.019375 0.001875 0.016875 -0.034375 0.009375 -0.013125 -0.0375 -0.014375 -0.021875 0.03875 0.03125 -0.010625 0.018125 0.0325 0.030625 0.0475 0.065625 0.0775 0.013125 0.05125 -0.0425 0.011875 -0.038125 -0.00625 0.05875 0.00375 -0.03 -0.02125 -0.0125 -0.024375 0.000625 0.015 -0.005625 0.009375 0.023125 -0.04375 0.023125 -0.000625 0.026875 0.00875 0.000625 -0.045 0.004375 0.04625 -0.070625 -0.004375 0.010625 -0.003125 -0.0325 -0.035 -0.035625 0.00625 0.01375 0.029375 -0.045625 0.069375 -0.018125 -0.00375 -0.01875 0.02625 0.015625 -0.009375 0.0275 0.005625 0.00875 -0.03375 -0.013125 -0.039375 0.006875 -0.005625 -0.028125 -0.02125 0.065 -0.03125 -0.048125 -0.0125 0.019375 0.021875 0.020625 -0.0225 -0.0125 -0.0175 0.02 -0.068125 -0.000625 -0.05625 0.016875 -0.026875 0.0125 -0.019375 0.005 -0.02 0.020625 -0.024375 0.009375 0.030625 -0.055625 -0.039375 0.091875 0.0425 0.021875 0.016875 0.021875 0.0325 0.005625 0.03875 0.005625 -0.003125 -0.011875 -0.06 -0.03875 0.010625 -0.019375 0.005625 0.005 0.025625 0.080625 -0.023125 -0.009375 0.0275 -0.05 0.018125 0.01625 -0.105625 0.001875 0.0175 -0.0275 0.02625 -0.030625 0 -0.046875 -0.045 -0.0125 -0.0325 0.024375 0.01375 -0.013125 0.025 0.026875 0.07875 0.004375 0.040625 0.03625 0.06625 0.015 0.038125 0.016875 -0.046875 -0.0125 -0.0525 -0.0225 0.01375 -0.016875 0.015625 0.003125 -0.0225 -0.028125 0.00375 0.00875 0.03625 -0.036875 -0.010625 0.000625 0.014375 -0.014375 -0.02375 0.000625 -0.035 0 0.013125 -0.055625 0.0025 -0.00875 0.048125 -0.02625 0.02875 0.0475 0.00875 -0.008125 0.020625 0.028125 0.0025 0.04125 -0.01125 -0.01375 0.010625 -0.00125 0.0425 0.010625 -0.01625 0.036875 -0.013125 0.031875 0.011875 -0.041875 -0.019375 -0.00375 -0.00625 -0.04 -0.02 0.00375 -0.058125 -0.029375 0.00125 0.025 -0.024375 0.035 0.0125 0.015625 -0.02375 -0.030625 -0.04375 -0.035 0.033125 -0.0225 -0.029375 -0.045 0.0075 0.003125 -0.0175 -0.024375 0.00125 0.0225 0.015 0.013125 0.024375 0.02125 -0.035 -0.029375 0.0025 -0.005625 0.035 0.026875 0.029375 -0.009375 -0.05 -0.066875 -0.03625 0.0125 -0.005625 0.019375 0.0275 0.0125 0.026875 -0.014375 0.0275 0.006875 0.001875 -0.03 0.015625 -0.055625 -0.048125 0.035 0.020625 0.005625 -0.015 -0.044375 0.033125 -0.01125 -0.0175 0.01125 -0.008125 -0.0025 0.058125 -0.0275 0.088125 0.008125 0.036875 0.041875 0.026875 0.0125 0.055 0.044375 0.04125 -0.03625 -0.023125 -0.021875 0.015625 -0.05 0.02125 0.0025 0.00375 0.01625 0.00125 -0.04 0.033125 0.023125 -0.000625 0.016875 0.0125 -0.0175 -0.040625 -0.015625 -0.00125 -0.030625 -0.074375 -0.01875 0.03125 -0.0075 0.01875 0.024375 -0.01375 -0.016875 0.015625 0.014375 0.049375 0.063125 0.024375 0.016875 -0.00625 0.035 -0.01 0.04125 -0.01125 -0.029375 0.00625 -0.079375 0.033125 0.00125 0.039375 0.0025 -0.0075 -0.043125 -0.033125 -0.034375 -0.031875 -0.011875 0.024375 0.000625 0.02625 -0.014375 0.055 -0.008125 0.024375 0.001875 -0.065 0.004375 -0.00625 -0.0075 -0.075 -0.06125 0.0075 -0.0025 0.064375 0.03125 0.01875 0.021875 0.01875 0.064375 -0.004375 0.039375 0.021875 0.006875 0.075 0.038125 -0.04125 -0.000625 -0.061875 -0.04 -0.005625 -0.066875 -0.00125 -0.021875 -0.005625 0.00625 0.0075 -0.018125 0.005 0.018125 -0.04 0.0025 0.021875 0.03625 -0.051875 0.014375 -0.019375 -0.039375 0.0075 -0.025 0.00625 -0.02375 0.00375 0.00875 -0.00125 0.03125 -0.0125 0.020625 0.0225 0.039375 0.004375 0.06125 0.054375 0.049375 0.045625 0.024375 -0.015 0.026875 0.055625 -0.01 -0.03375 0.003125 0.029375 0.010625 -0.033125 -0.015625 0.003125 -0.0275 -0.036875 -0.039375 0.01875 0.015625 -0.009375 0.003125 0.01625 0.0325 -0.02875 0.028125 -0.01625 0.025625 -0.02 -0.015 -0.030625 -0.05 -0.02375 0.01125 0.010625 0.01375 -0.009375 0.016875 -0.009375 0.01375 0.05 0.050625 0.05875 0.061875 0.001875 0.008125 -0.000625 -0.02875 0.0125 0.008125 0.028125 -0.06125 -0.021875 -0.04125 -0.0375 -0.016875 0.001875 -0.0275 -0.0125 -0.015 0.036875 -0.014375 -0.003125 -0.01625 0.04 -0.014375 -0.005625 -0.019375 -0.041875 0.00125 0.05125 0.040625 -0.021875 -0.04875 -0.014375 -0.01 -0.0075 -0.008125 0.001875 0.036875 -0.019375 0.0225 0.03375 0.048125 -0.041875 0.009375 0.0025 -0.01125 -0.025625 0.055 0.04125 0.05125 0.048125 -0.036875 -0.029375 0.01875 0.02 0.00375 -0.0575 -0.000625 0.00875 0.033125 -0.003125 0 -0.028125 0 0.0175 -0.039375 -0.039375 0.016875 -0.005 -0.016875 -0.06875 0.02 -0.046875 0.013125 -0.0075 0.01 0.015 -0.003125 0.04875 -0.0125 -0.00125 0.035 -0.006875 -0.02125 -0.04875 0 -0.03625 0.033125 0.011875 0.010625 -0.01625 0.0075 -0.054375 -0.02375 0.01875 -0.05625 0.00375 -0.001875 -0.021875 -0.0075 0.038125 0.03375 0.031875 -0.035625 -0.00125 -0.038125 -0.011875 0.015625 -0.02625 -0.034375 0.013125 0.001875 -0.01125 0.00375 -0.04375 0.029375 0.029375 -0.003125 0.025 -0.00125 0.003125 -0.001875 0.01875 0.036875 -0.00625 0.053125 0.0175 -0.00375 -0.018125 0.01375 -0.031875 0.031875 -0.029375 -0.0675 -0.020625 -0.03375 -0.01375 0.0225 0.035 -0.001875 -0.0675 0.0075 0.01625 -0.048125 0 -0.003125 0.030625 0.011875 0.02625 -0.026875 -0.0175 0.00375 -0.019375 -0.03875 -0.026875 -0.036875 0.028125 -0.013125 0.0275 0.030625 0.01875 -0.000625 0.043125 0.020625 0.003125 0.016875 0.02 0.02 0.005625 0.028125 0.019375 0.03625 -0.034375 -0.004375 -0.0225 -0.008125 0.028125 -0.033125 0.009375 0.01 -0.025 0.0075 -0.023125 -0.003125 -0.02 0.015625 -0.01625 0.0525 0.039375 0.0175 -0.00375 0.011875 0.003125 -0.03875 0.0075 -0.07875 0.024375 0.04375 0.0125 0.07625 0.000625 -0.003125 -0.01625 0.0125 0.043125 0.038125 0.020625 0.024375 0.04 0.026875 -0.01125 0.021875 0.035 -0.009375 0.00375 0.04 0.001875 -0.0375 -0.029375 -0.059375 -0.039375 0.02375 -0.0275 -0.03375 0.04 0.025625 0.030625 -0.005625 0.015625 -0.024375 0.003125 0.019375 -0.0725 -0.02125 -0.03625 -0.001875 -0.0375 -0.040625 -0.035 -0.01625 -0.011875 -0.03375 -0.050625 -0.003125 -0.058125 0 0.034375 0.025625 -0.009375 0.026875 0.045625 0.013125 0.000625 0.0025 -0.0075 0 0.039375 -0.045 0.01 0.001875 0.0025 -0.03 0.016875 0.034375 0.043125 0.015625 0.01 0.03 -0.024375 -0.02375 -0.034375 -0.043125 -0.06375 0.02 0.029375 0.02625 -0.04875 -0.046875 -0.010625 -0.021875 -0.011875 -0.0375 -0.0025 0.0075 0.04125 0.041875 -0.0225 -0.00625 0.025625 0.014375 0.0225 -0.005 0.00625 -0.035 0.080625 -0.031875 -0.0025 0.034375 0.025625 -0.01625 -0.04375 -0.0225 -0.023125 -0.020625 0.0025 -0.04 0.04125 0.026875 0.013125 0.035 0.026875 0.015 0.020625 0.02 -0.01875 0.03625 -0.023125 -0.051875 -0.05875 -0.07625 -0.00125 0.0025 -0.05125 -0.0025 0.0325 0.0425 0.07875 -0.001875 0.016875 -0.03 0.0725 -0.01625 0.039375 -0.0175 0.0475 0.02375 -0.02625 -0.01 0.02 -0.01 -0.0225 0.010625 -0.005 0.01875 -0.04375 0.0025 -0.011875 0.026875 -0.02 -0.025 -0.001875 0.0375 0.04625 -0.055625 0.021875 0.00375 0.029375 0.01875 -0.00125 -0.05375 -0.0075 -0.06375 -0.0475 0 -0.00625 -0.001875 0.034375 0.016875 -0.001875 0.0075 0.015 0.016875 0.03375 -0.02125 0.04375 -0.001875 0.004375 0.006875 0.01375 -0.048125 -0.001875 -0.006875 -0.03375 -0.02 0.020625 -0.05625 0.01125 -0.0675 0.00375 0.00625 0.026875 -0.0325 0.050625 0.00375 0.029375 -0.023125 -0.0125 0.0125 -0.0075 0.016875 -0.018125 -0.00875 0.01375 -0.051875 -0.004375 -0.016875 -0.018125 -0.02875 0.041875 0.05625 0.0075 0.03625 0.0075 0.019375 0.04 0.0425 0.009375 0.04375 0 -0.009375 0.016875 0.00375 0.020625 0.00875 -0.020625 -0.01875 -0.035625 -0.0425 0.0275 0.015 0.00875 0.005 -0.016875 0.016875 0.0075 -0.016875 0.05 0.001875 0.00375 0.050625 0.018125 0.021875 -0.03875 -0.036875 -0.01 -0.035625 -0.008125 -0.004375 0.00125 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_4.4ms.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_4.4ms.hrd new file mode 100644 index 0000000..85bc834 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_4.4ms.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 4.4 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676034746 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +11.490625 5.894375 10.974375 6.574375 12.578125 7.69875 7.736875 9.456875 10.56875 10.305625 9.874375 9.95125 9.591875 9.3975 7.793125 8.998125 3.89875 10.905625 9.740625 7.8625 6.128125 8.8525 9.235 9.449375 10.129375 9.805 9.324375 9.204375 6.334375 8.71875 11.048125 8.41375 10.693125 4.771875 9.338125 8.034375 7.531875 8.41625 4.16375 8.180625 8.483125 6.843125 8.245 5.4325 7.796875 4.554375 8.781875 7.334375 6.680625 6.584375 6.368125 7.469375 4.78625 10.313125 5.731875 7.391875 8.686875 5.3025 5.815 6.603125 9.04125 9.7 1.985 9.715 6.764375 8.608125 6.728125 5.225 5.1175 11.04375 6.54625 9.895625 3.57625 6.920625 8.63625 10.299375 8.121875 5.41625 3.811875 8.696875 8.7825 4.266875 4.264375 5.4375 5.901875 6.020625 4.006875 6.24625 5.708125 2.71 8.038125 6.798125 3.655625 3.673125 5.01 6.3675 3.360625 5.8225 8.6125 6.310625 2.999375 3.379375 4.6825 4.705625 4.698125 2.1875 3.993125 5.95625 5.353125 5.003125 6.345625 7.33625 6.036875 4.393125 5.830625 1.96125 2.773125 2.240625 4.51 2.671875 3.000625 4.501875 3.460625 4.76 3.914375 3.39375 8.584375 4.13125 5.24125 6.455 5.649375 6.336875 6.295 5.325 3.9675 2.744375 0.33 0.9875 1.119375 4.231875 5.1125 6.433125 4.589375 1.823125 1.694375 6.711875 6.10625 3.64125 3.861875 3.981875 2.97625 1.894375 3.656875 1.7925 -0.88375 -1.39125 3.066875 2.12375 3.92125 4.50375 5.75 2.750625 4.92625 5.36 4.529375 6.353125 4.2225 5.304375 5.13 3.08 3.17375 6.964375 4.905625 3.97625 3.524375 2.3175 3.918125 1.906875 2.815 5.4075 3.0675 3.058125 3.088125 3.630625 3.22125 3.436875 4.77125 0.56375 1.750625 5.741875 6.583125 6.01 0.809375 2.968125 3.01625 0.343125 4.575 5.88625 3.763125 2.66375 1.893125 5.005625 0.94125 5.035625 3.808125 2.485625 1.451875 2.52625 3.096875 2.305 2.496875 5.295625 1.99875 1.193125 0.7275 2.285625 3.990625 3.29625 1.93125 0.641875 5.15625 1.7175 2.869375 1.639375 1.80125 0.676875 2.169375 3.36875 2.8475 -0.75 3.825625 3.678125 2.179375 0.520625 1.92375 3.446875 0.250625 0.613125 3.588125 3.004375 -1.509375 2.73125 3.70375 -1.28875 3.680625 4.00875 0.75625 -0.54 5.304375 4.598125 4.6425 4.47125 3.60875 4.865 3.880625 1.3475 2.070625 2.326875 2.558125 -1.566875 -1.398125 3.209375 5.524375 -0.715 0.2175 2.53 3.379375 3.649375 2.9 1.013125 0.18625 3.06625 0.294375 5.41875 3.108125 2.5975 -0.45 1.9025 1.905 2.621875 2.545625 0.569375 2.909375 -1.421875 3.690625 3.459375 4.220625 3.115 1.723125 -0.11 3.841875 1.035625 1.62 4.711875 2.5575 3.550625 1.26375 4.47125 1.280625 4.404375 1.32 1.975625 3.42 2.65125 1.390625 2.625625 0.200625 4.688125 2.144375 0.203125 3.695 3.729375 0.045625 -0.14875 3.78875 -0.990625 1.0475 1.848125 1.61 1.7325 4.18875 2.084375 2.518125 -0.795 -1.6325 1.071875 2.074375 1.9175 -0.193125 1.704375 1.50875 1.925625 2.3075 1.86875 0.95125 3.231875 2.33625 -0.2625 2.30375 0.941875 0.586875 1.153125 0.346875 6.004375 0.75875 2.15125 -0.745 1.799375 0.629375 0.785625 1.85375 3.79875 0.714375 0.93625 0.834375 -0.291875 2.38 4.46125 4.06875 1.2575 4.285 0.835 1.21 4.381875 3 3.72875 2.285 1 0.796875 3.180625 3.596875 -0.47125 3.628125 -0.83875 2.1 0.701875 0.5475 0.96625 1.128125 2.369375 1.48625 1.9925 2.32375 -0.904375 -0.30375 -1.55625 1.163125 0.969375 4.610625 3.596875 2.76625 2.015625 1.173125 -0.81875 4.181875 0.585 1.95375 2.604375 2.133125 1.664375 0.65125 2.625625 1.230625 -1.159375 0.46875 2.874375 -0.11625 2.2925 0.075625 4.065 0.219375 -0.68125 2.339375 0.4725 1.31 -0.22875 -0.291875 0.989375 -0.360625 0.970625 1.441875 0.34 2.77375 1.3475 0.13625 -0.77125 2.945625 1.001875 0.81 0.719375 0.49875 -0.370625 -0.033125 2.21875 0.7075 -1.974375 1.700625 1.66375 -0.71875 0.558125 1.524375 1.983125 2.22875 0.639375 3.39875 0.90625 0.39 2.4975 0.84375 -1.873125 -0.351875 1.303125 2.206875 4.691875 0.80625 -0.9675 0.723125 3.30625 0.951875 0.53625 2.658125 2.665625 -0.019375 1.836875 -1.9075 1.970625 1.83375 1.60875 2.05625 0.005625 0.32875 3.49625 4.62125 1.220625 1.524375 -2.67625 -2.538125 1.498125 1.803125 -2.5075 -1.78375 1.39375 -2.185625 0.070625 2.743125 1.373125 1.875625 1.274375 -0.1775 1.178125 3.53625 0.52 -0.56125 0.408125 1.36625 0.865625 -0.61375 2.84375 0.70375 -0.39 2.651875 -4.548125 2.7625 3.50375 -1.9575 0.419375 -1.48 -1.921875 0.134375 -0.76625 1.14375 3.0325 1.000625 0.306875 0.18625 0.408125 1.01875 3.126875 -0.2675 -0.86 1.390625 4.5125 1.528125 4.305625 -0.7325 2.71875 1.053125 1.773125 -0.616875 1.77875 -0.4225 0.43125 0.72625 0.30375 0.97625 0.536875 1.359375 1.00875 0.231875 2.60125 0.965 4.27625 1.24125 1.681875 0.54875 -1.081875 -0.426875 1.661875 -1.365 0.866875 1.3575 -0.47125 1.78875 3.676875 2.773125 -0.751875 2.816875 1.83375 1.165 1.4575 0.670625 -0.313125 2.715625 0.39625 3.363125 -1.545 0.31875 -0.729375 -0.91125 0.8125 0.321875 3.78875 1.029375 -1.066875 -0.73 0.915 -0.31 3.289375 0.186875 0.95 -2.1425 1.4225 2.278125 -1.120625 2.490625 1.65875 -1.963125 1.039375 0.506875 3.22375 0.4 1.16875 -0.00625 0.6775 -0.799375 2.36375 0.606875 -0.69125 -0.45375 0.366875 1.468125 -2.57 0.229375 1.43625 2.628125 1.7275 0.995625 3.918125 0.595625 0.76875 0.29625 -2.9975 3.343125 0.23875 -0.5675 -0.299375 -1.295625 0.8725 -0.85375 2.70875 -1.078125 -0.2075 -2.9475 -2.260625 0.2475 0.924375 0.334375 -1.570625 -0.400625 2.769375 2.049375 -1.281875 5.04375 1.139375 0.773125 -0.605625 -0.269375 3.406875 -1.115 1.306875 -0.834375 0.96625 0.103125 -1.588125 4.295 -0.085 -2.19875 1.03 1.029375 3.954375 0.039375 2.34 -1.270625 -2.385625 -2.3825 -2.65 1.1475 3.15625 2.94625 1.305625 0.879375 3.401875 1.230625 0.625 1.73625 -0.679375 -0.87625 -0.26625 -1.811875 3.1675 -0.541875 0.163125 -0.099375 0.525 0.60125 -0.08625 -1.84375 -0.031875 -0.98 -1.884375 1.741875 -0.101875 -0.03125 -1.6075 -0.420625 1.674375 -1.488125 0.834375 1.239375 0.73625 0.8325 -1.703125 1.260625 1.6725 1.605625 -0.13875 -0.2025 -0.52 1.32375 1.603125 0.5875 1.83625 0.946875 -2.395625 -0.33375 1.53 0.930625 1.163125 0.759375 0.525 0.744375 1.258125 4.34 -1.095625 3.5925 -2.865625 -2.749375 -0.28375 1.181875 -1.180625 -2.6475 4.04125 -0.71875 0.804375 1.49125 -1.3225 2.58 2.16375 2.02875 3.315625 2.053125 0.823125 0.480625 1.614375 0.7775 1.6475 0.074375 1.12125 0.888125 0.65625 -2.62125 0.085625 1.318125 -1.058125 2.9575 -1.395 2.20625 3.163125 1.25875 -2.876875 -0.738125 0.18375 -2.0975 -0.3275 2.66 0.701875 1.235 -0.193125 -0.09875 2.090625 -3.65875 0.425625 0.673125 0.264375 0.078125 -1.31625 1.341875 1.895625 -0.708125 0.120625 -0.773125 0.224375 -0.18625 3.076875 1.720625 0.915 3.058125 3.98875 -3.0675 1.249375 -1.28375 -0.3325 0.514375 1.08 -1.25375 4.36 -0.373125 -0.31875 1.713125 -0.4775 -0.165625 2.175625 0.80125 1.771875 2.365625 -0.42625 -1.445 0.335625 1.71375 0.22625 0.146875 1.3525 1.660625 -0.98125 1.2375 3.02625 -1.948125 -0.2775 0.6375 1.9475 0.07 -1.600625 1.233125 0.670625 -0.020625 1.09 -1.4425 -2.825 -1.429375 2.221875 0.965625 -1.2725 4.82375 0.050625 1.604375 1.438125 -0.315 0.020625 -1.0775 2.235625 4.81125 1.0225 1.724375 -1.9275 -0.82875 1.3325 5.288125 1.691875 0.7725 -0.4525 2.049375 1.55875 3.01875 -1.36875 0.170625 -1.25 1.0025 4.05375 2.76875 0.82 -1.706875 -1.105 1.57125 0.85 0.789375 0.248125 1.48 2.74625 -3.185625 -0.230625 -0.57875 2.789375 -4.02125 1.080625 0.665 0.94125 1.061875 1.368125 1.20875 -3.545 2.9475 -0.370625 -2.053125 0.2975 0.689375 2.33875 4.873125 1.88625 -0.496875 -1.775625 -0.87875 -1.21875 -2.850625 -1.995 -0.195 0.359375 3.73375 2.424375 1.50125 -1.37125 1.681875 0.128125 0.83875 0.18375 0.330625 0.019375 1.21125 -0.42625 1.431875 -0.185625 1.39 -0.176875 -1.26375 2.0875 0.324375 0.85125 3.301875 2.491875 -2.644375 -0.3125 -1.56375 -0.371875 1.09625 -3.2975 1.549375 0.198125 1.365 1.4025 -0.68625 3.799375 2.109375 1.125 -1.15125 2.950625 3.67375 0.159375 0.93375 -0.046875 -1.4925 0.74625 -0.790625 2.04125 2.83875 1.074375 3.034375 1.10875 0.361875 -1.68 1.04125 -1.11 -2.431875 0.5675 -2.461875 1.5675 0.865 -0.06625 -0.308125 1.235625 3.209375 -0.463125 2.36 0.4175 0.41 0.815 -2.78125 -1.565625 0.763125 1.95125 1.7975 -0.656875 1.69125 -1.996875 1.514375 -0.246875 2.47625 -0.609375 -2.938125 -1.4275 -0.12375 -0.441875 0.468125 -0.161875 1.03 0.586875 -0.784375 0.8075 2.75125 1.73375 0.451875 0.20625 -1.493125 -2.470625 -0.21 -2.34125 -0.16125 -0.32 3.196875 0.423125 1.461875 0.7975 1.903125 0.328125 -1.955625 -1.544375 -1.295625 -0.396875 1.91875 0.4375 0.66625 -1.078125 0.933125 -1.496875 0.956875 -0.009375 1.41625 -3.373125 0.705 2.515625 0.864375 -0.0225 0.264375 1.45125 -3.065 -1.55875 0.376875 2.24 0.973125 -0.040625 1.556875 -0.349375 -1.66875 0.42875 -0.391875 -1.4075 -1.52375 2.238125 -0.948125 -1.0175 2.456875 5.34875 -0.309375 -0.94375 0.940625 -1.2325 -1.449375 1.556875 -0.8425 -0.355 -2.029375 0.256875 0.935 -0.94875 0.75125 1.625 -0.360625 3.380625 -1.403125 1.04375 0.93125 -0.2675 -2.360625 2.020625 -0.698125 -1.635 0.185625 1.504375 -1.484375 2.27375 1.49625 0.34 0.485 2.258125 -0.485625 -0.828125 -0.1075 -1.220625 -0.466875 -0.81125 -1.258125 1.533125 -0.44875 2.221875 0.541875 -0.87 -0.635 -0.490625 1.991875 -1.175625 -0.2975 -2.1025 -0.101875 -0.40875 2.393125 -1.825 -3.783125 1.19625 -0.42875 1.9075 -3.085625 -0.0025 0.385625 -0.605625 0.13375 0.48125 -0.904375 0.888125 0.155 -0.46625 1.075 0.343125 -0.0375 -0.030625 2.086875 -0.743125 0.8 1.4525 -0.645625 2.065625 -1.535 -0.023125 -0.755625 -0.235625 0.76125 0.946875 2.834375 -0.60125 2.531875 0.446875 2.0125 -0.365625 1.004375 -1.725625 -0.705 1.9525 3.2525 -1.48375 -0.86 0.0575 0.99875 0.06 2.38375 -1.31625 1.73375 1.811875 0.315 1.220625 0.865 -1.455 -0.08 -1.468125 -1.560625 0.095625 1.986875 -0.01875 -1.49625 0.59875 -1.983125 -0.149375 0.8475 0.54125 2.7625 0.6225 1.53875 0.62 2.74625 -1.495 -0.575 2.415625 -1.67625 0.675 1.06 0.14625 1.968125 2.685625 -0.0525 -0.504375 1.569375 2.06875 0.28875 1.861875 1.85875 -2.05375 -0.35625 0.238125 -0.37375 1.071875 0.136875 -0.955 -1.60125 0.428125 -0.4125 0.04875 2.230625 2.21625 1.669375 -2.033125 -1.6475 1.495625 1.505625 -0.405 2.52875 0.52625 0.21 1.998125 0.665625 1.595 2.564375 -0.029375 0.674375 0.0625 0.71125 -1.764375 3.42125 -0.380625 -0.463125 -0.034375 1.10625 0.893125 0.11125 -1.114375 0.3375 -2.123125 0.139375 0.293125 -0.249375 2.47375 -0.305 0.546875 -1.593125 -0.378125 -0.64 -0.056875 0.5675 0.3025 0.498125 0.06 -0.070625 4.3225 -1.8675 -1.930625 0.65125 0.085 3.3925 -1.686875 0.688125 -0.60125 -1.02875 2.850625 1.584375 0.73125 0.6525 -0.78375 0.466875 0.474375 0.7175 -0.38125 1.6925 -2.511875 0.440625 3.32375 -0.42875 2.131875 -1.705 0.49 2.10375 1.23875 0.7525 0.57125 3.768125 2.14125 0.011875 1.229375 1.73625 1.16 -0.856875 1.699375 0.55375 0.7275 1.313125 -0.5525 2.366875 -0.529375 2.16125 -0.005625 0.62375 0.0375 0.495 -1.3675 1.126875 -0.78875 0.961875 0.69125 -0.399375 -0.13375 1.3625 0.179375 -2.333125 0.86375 1.51625 -0.845 -0.6025 2.10625 1.3725 -2.08125 0.360625 2.01125 -1.069375 0.9075 2.200625 0.63 1.369375 -3.163125 2.528125 -1.7725 0.953125 -1.554375 1.06625 -0.23625 1.485625 0.665 1.1325 0.46 1.410625 0.746875 3.346875 0.35125 0.53 -2.631875 0.11 2.130625 -2.666875 1.560625 -3.635 0.833125 -2.3275 -1.49625 0.88 -0.126875 2.895 -1.135625 1.00875 1.838125 0.833125 -1.835 1.444375 2.344375 2.538125 1.01125 0.881875 0.63375 2.514375 3.4575 -3.318125 0.105625 -1.394375 1.056875 1.2725 0.3675 0.081875 0.4875 -1.143125 0.87 1.25875 -0.646875 -0.684375 0.825 -1.664375 0.255 -1.149375 -0.915 1.3125 1.841875 1.233125 0.80125 -3.545 0.056875 0.7125 1.615 0.041875 -0.34 1.114375 0.72 -0.023125 1.85875 -0.0775 -0.218125 -0.771875 -1.786875 0.855 4.033125 -1.199375 -2.620625 -0.763125 -0.424375 0.655625 0.10625 1.195625 -2.1325 -0.00125 1.623125 -3.135 -0.063125 0.38125 -0.191875 2.10875 -0.569375 -1.594375 -3.926875 1.974375 1.563125 0.200625 -1.158125 1.783125 -1.229375 -0.3825 -0.4525 1.8 0.481875 2.59875 -1.200625 1.40625 1.4325 -1.35875 3.095 2.735625 -0.583125 -2.60875 -1.2375 2.10125 0.76625 -2.80625 -1.03 1.23375 4.079375 0.833125 0.070625 0.92625 0.871875 -0.310625 1.10125 -0.815 -0.446875 -0.71125 -1.794375 -0.755 -1.830625 -0.8175 1.85375 -0.246875 0.17625 -1.543125 -0.060625 2.0725 2.1575 4.17125 2.029375 -0.106875 3.2425 0.628125 -0.569375 -2.90375 0.2 -2.175 0.74 -3.10375 2.006875 2.171875 2.61125 4.07625 0.23375 -1.0625 -0.733125 1.339375 -0.51125 1.29625 -0.2875 -0.495 -1.9575 0.946875 2.2425 0.705625 1.779375 -3.7925 0.29625 0.203125 2.641875 1.47125 -1.479375 -2.09 1.686875 0.404375 1.199375 1.744375 -1.3675 -1.423125 1.1125 1.19875 -0.733125 1.358125 1.645 1.4275 -0.119375 -0.9475 0 0.03 1.08 -0.939375 -0.80375 0.0125 0.65 +9.169375 11.07625 10.65125 10.61125 11.889375 13.491875 11.72625 11.810625 9.814375 9.365 10.678125 12.6875 11.5025 11.273125 12.50375 9.940625 11.30375 9.564375 10.81875 13.93625 11.863125 12.69125 11.406875 9.65 12.758125 8.66875 12.078125 8.38875 7.81125 11.770625 10.418125 9.961875 8.814375 11.57625 7.8925 9.25 11.386875 10.0275 5.5725 8.706875 8.770625 12.1775 9.195 9.790625 4.93125 9.27875 6.293125 10.615 6.518125 6.51875 12.225625 9.536875 9.874375 2.058125 10.88125 6.51375 6.361875 7.03125 9.45625 9.360625 8.08 7.133125 6.7875 9.544375 9.994375 8.7225 6.759375 6.051875 7.7575 7.06125 11.494375 8.549375 6.475 7.498125 5.42125 8.944375 7.946875 8.29125 7.82375 7.531875 6.82 4.61625 3.381875 8.47625 8.259375 8.871875 6.331875 6.865 6.81125 6.616875 4.570625 7.18375 6.4025 8.565625 7.15 7.2325 7.181875 8.050625 8.989375 7.0875 5.119375 8.49625 7.263125 8.119375 3.4425 7.16875 8.33375 4.054375 9.48875 5.065625 3.965625 6.58625 5.3 3.790625 6.345 6.103125 5.760625 6.510625 6.973125 6.824375 6.276875 4.605 6.56125 7.19375 5.515 4.67375 3.8925 5.573125 10.80625 6.4575 5.0625 5.26625 6.51125 3.391875 1.97875 4.10125 9.1525 3.6275 2.159375 1.558125 4.053125 4.738125 4.51625 6.040625 5.3775 7.82375 6.77 5.186875 5.081875 5.89375 8.066875 5.988125 5.811875 4.825 4.109375 3.891875 3.7925 6.18375 6.403125 4.776875 3.389375 3.765625 3.064375 4.435625 5.514375 4.691875 2 5.19875 7.92875 2.810625 2.705 4.51875 3.83125 6.675625 2.9775 8.071875 3.73375 3.908125 6.7 4.82 5.465 4.566875 5.479375 5.965 5.3325 2.6775 4.56125 2.570625 2.001875 0.2875 6.880625 5.853125 5.276875 5.645 4.178125 2.13625 6.42625 3.84875 4.803125 0.811875 2.625 2.94875 4.7825 4.42875 3.97 3.106875 1.045625 3.60875 3.245625 3.751875 5.16 0.5625 4.78875 3.936875 5.583125 1.9675 4.7675 5.144375 1.633125 4.261875 3.45 1.298125 2.320625 1.501875 -0.83625 6.12375 1.7325 -0.270625 6.43625 1.05625 9.035 4.849375 3.546875 2.993125 2.446875 1.9025 3.715 3.218125 4.036875 3.3375 0.978125 0.890625 5.506875 2.316875 1.065625 3.150625 4.2375 2.609375 1.10875 3.2875 5.315 2.83875 0.0325 2.381875 1.425625 3.518125 6.195 1.85625 2.013125 0.4875 -0.13 0.115 2.919375 0.733125 5.7425 2.514375 1.25125 3.01375 2.73625 2.070625 4.5925 2.725 2.21375 0.428125 2.809375 2.775625 3.63875 1.695625 5.681875 -0.995625 4.22 2.25625 2.3575 6.76625 -0.721875 3.304375 2.771875 1.89125 3.8625 2.481875 0.1825 0.644375 4.669375 3.316875 2.473125 2.081875 1.379375 4.254375 1.285 4.525625 -1.0275 3.36125 1.48125 2.843125 1.863125 3.43375 4.956875 2.32625 4.609375 1.275 -0.89125 1.338125 -1.579375 6.27875 5.41875 6.361875 0.499375 0.45625 3.048125 -2.675625 0.203125 -0.036875 0.509375 3.941875 0.91375 3.888125 2.5225 0.921875 1.91125 4.57 2.6475 2.300625 -0.563125 2.680625 3.76125 2.196875 0.1225 1.0375 4.241875 2.576875 2.346875 3.040625 1.61875 1.32375 2.6025 1.8525 5.7475 1.196875 0.969375 4.588125 1.17875 2.35 -1.564375 4.458125 0.643125 -0.158125 2.704375 0.824375 2.891875 1.916875 2.883125 1.384375 1.183125 -0.47625 4.75 3.560625 3.301875 -0.1925 3.430625 1.606875 4.379375 4.55375 4.386875 1.5525 1.9425 1.853125 2.601875 0.204375 5.525 1.975625 -0.57875 1.0125 -1.28625 3.308125 3.53125 3.07875 -0.25125 1.949375 1.46125 3.185625 2.3625 2.87375 -0.96125 4.966875 1.175625 2.9875 2.833125 -1.35625 0.10125 -0.34125 3.335625 1.7875 2.194375 2.23 2.790625 2.811875 0.014375 1.27375 0.020625 0.519375 0.706875 4.125625 -0.486875 2.79 3.091875 1.985625 2.5725 4.46 -0.381875 0.51 -0.15125 1.970625 1.92125 2.984375 1.823125 1.198125 1.5925 5.820625 1.405625 2.34875 1.441875 2.943125 0.426875 -0.765625 0.10875 0.490625 2.286875 0.195 2.835 -0.4375 -0.16125 2.015625 0.99125 1.223125 1.993125 2.0225 2.128125 1.93375 3.021875 1.6325 2.3625 -1.745625 1.288125 1.591875 1.464375 2.185625 3.001875 1.5725 4.714375 1.58875 1.825625 2.596875 0.63625 2.449375 -0.768125 1.29375 2.155625 5.92125 3.961875 3.6925 -1.413125 -0.44875 1.369375 -0.21375 3.16 2.38625 -0.94625 2.20625 -1.666875 -0.19125 2.681875 -0.465625 -0.01875 3.448125 1.71 0.25875 0.241875 0.119375 1.76125 4.455625 -0.97375 1.94625 3.594375 0.249375 2.530625 3.155625 -0.308125 -1.1225 -0.673125 2.21375 1.775 2.50375 -0.67125 1.4975 1.50375 -0.984375 2.66875 3.05625 2.8525 1.271875 3.128125 2.54875 2.750625 -0.535625 4.333125 2.586875 1.85125 2.47625 0.825625 2.560625 2.6775 0.528125 2.783125 0.13375 -2.079375 -0.138125 3.37625 1.363125 1.539375 0.58375 3.210625 0.5975 4.265625 0.486875 1.269375 3.65875 1.571875 0.50375 0.6575 -1.10625 0.75375 -1.255 2.98375 4.301875 3.69375 0.389375 1.256875 0.515 2.280625 3.585 1.518125 2.0075 0.584375 -1.789375 1.59875 1.6075 -0.13375 5.035 2.02375 -0.169375 0.021875 2.330625 1.111875 1.385625 1.378125 2.274375 0.02625 1.83625 1.918125 2.645 3.675 1.3475 0.999375 1.920625 -0.54 3.5425 0.1825 0.038125 1.900625 0.01875 0.369375 1.453125 -0.283125 -0.255625 0.788125 1.269375 -0.3125 0.06875 -0.75875 1.633125 1.28375 -1.00875 2.19375 1.661875 0.96125 0.66625 0.914375 2.390625 1.365625 1.020625 -0.438125 2.285625 1.320625 1.843125 -1.468125 0.753125 -2.44875 0.37875 0.87125 -0.80625 0.51875 1.404375 4.10875 2.88375 0.575625 0.8 -0.171875 -0.861875 -1.93375 2.6125 -0.62125 2.83375 3.61 0.88 1.835625 1.300625 2.133125 -0.66625 2.34 1.784375 0.474375 -1.509375 1.38125 1.281875 2.213125 1.43875 -0.3375 0.199375 0.621875 5.35 -2.2425 1.46875 2.228125 2.085 -1.948125 -1.1725 0.879375 0.213125 1.09125 -2.300625 0.304375 0.6225 1.145625 1.01875 0.3425 2.576875 1.254375 3.300625 0.8725 0.38125 0.96625 -0.119375 5.421875 3.92375 0.79625 -0.51375 1.625 0.26 2.1 1.894375 5.986875 2.030625 1.8075 1.018125 0.649375 3.974375 0.588125 1.356875 1.528125 -1.335 -0.405 0.636875 2.7675 -2.786875 0.96375 -0.15125 2.5775 -0.503125 -0.1725 1.97625 2.765 4.6325 2.080625 -3.345625 0.72 -1.64375 0.893125 -0.22125 2.53375 0.384375 -1.420625 0.695625 -1.2625 -0.950625 -0.3975 2.1425 -0.48625 -0.121875 0.026875 -0.103125 -2.20375 1.2225 -1.739375 1.96375 0.055 1.09125 0.891875 3.020625 0.775 2.753125 2.458125 -0.386875 -0.461875 1.211875 -0.95 2.34375 0.320625 0.28125 1.514375 1.549375 0.271875 0.26 2.056875 1.933125 -2.30375 4.041875 2.588125 1.00875 3.065 2.450625 0.348125 2.2125 0.89 2.68 -0.441875 0.330625 0.3025 1.736875 0.68375 6.239375 -0.438125 0.805625 3.755 1.85375 0.668125 0.5 -0.528125 1.6725 -0.989375 0.600625 0.735625 0.605625 2.27875 1.34375 0.319375 2.25375 0.24875 1.020625 2.981875 3.323125 0.876875 4.35875 -0.358125 1.759375 2.301875 1.613125 -1.60625 -0.688125 0.161875 0.773125 0.006875 2.2 -0.055625 -0.02875 2.3175 2.38375 0.115625 2.145 2.0825 -0.890625 2.914375 -1.178125 -3.034375 3.081875 1.783125 -2.8525 3.035625 -2.68625 0.484375 1.63125 2.076875 -0.058125 0.758125 1.01125 0.573125 2.51375 -0.4275 1.8325 0.94 1.91625 0.106875 0.980625 4.193125 -0.03625 1.434375 -2.271875 -0.18125 3.130625 1.348125 2.289375 4.229375 1.9025 2.635625 1.7775 0.92875 1.685 5.60375 1.438125 1.514375 2.1025 2.415625 1.600625 0.506875 -1.203125 -0.52125 -4.276875 2.100625 3.01875 -1.995 -2.8625 0.365625 0.2225 1.554375 -0.0125 1.025 -0.428125 2.220625 -1.2025 -0.12625 -0.290625 -0.0875 -0.435 -0.025625 2.49375 -2.148125 -0.97 3.8225 -0.430625 -0.384375 1.46125 0.35125 1.15 -2.375625 3.3825 1.08125 2.656875 -0.388125 -3.775 0.169375 0.574375 2.049375 0.01875 -1.16625 2.691875 2.53 2.81375 1.22 0.596875 2.2125 -2.696875 1.70125 -0.359375 3.4425 -0.671875 3.011875 2.56375 1.135 1.16 -1.519375 1.680625 -0.25625 0.935 -0.675625 -0.909375 -1.280625 -0.09875 1.395 -0.231875 -2.548125 -0.38375 0.426875 -0.953125 -0.14625 1.49875 -0.5 0.86 1.464375 1.495625 4.431875 1.28 1.009375 3.01875 -0.705 0.78 -0.955 3.0575 2.515625 0.15375 1.5425 -0.4025 1.48375 3.091875 -0.084375 1.496875 2.056875 1.494375 -0.821875 0.343125 4.176875 -1.293125 1.473125 0.121875 -0.0775 -0.06625 -2.466875 1.535625 1.980625 -0.705625 2.983125 2.673125 0.356875 -0.549375 -0.72875 -0.848125 -0.935625 1.815625 1.585 2.648125 0.465 1.626875 -3.274375 -1.055 0.275 1.404375 4.066875 -1.649375 3.8125 0.8275 0.369375 3.47375 -0.76375 2.371875 -0.560625 2.018125 0.390625 -0.041875 3.9275 -0.19875 -0.56875 -0.9 -1.879375 0.775625 -1.130625 2.90125 -0.05875 2.1925 0.528125 0.87875 -1.098125 0.99375 4.709375 1.539375 -0.0625 0.82625 2.72375 1.74625 1.7675 0.375625 -0.075625 0.93625 -3.3125 2.19 -0.39125 0.4175 0.77875 0.891875 1.38875 0.1125 1.305 -0.839375 2.035625 0.708125 0.743125 2.53625 1.66125 0.04375 0.135 3.243125 0.354375 1.140625 2.03 0.55 2.199375 -1.05875 -0.636875 1.53 -0.235625 1.75 -0.8675 0.073125 -1.725 0.0375 4.083125 -1.608125 1.340625 0.114375 -0.2225 4.135 2.3825 4.368125 0.86 0.46125 -2.699375 0.671875 1.5025 -0.93625 0.004375 1.145 1.2075 0.9475 2.3875 -0.816875 1.5675 -1.89125 3.013125 -1.0475 -0.000625 3.05625 0.595625 2.813125 -2.67875 0.569375 2.431875 2.575625 0.01125 3.440625 -2.478125 4.558125 -0.6475 0.218125 1.954375 -0.5825 0.69875 1.8775 -1.608125 0.765 1.166875 2.2325 2.724375 -0.00375 -1.355625 1.673125 -3.2875 -3.17875 0.255625 0.166875 1.26 2.499375 2.348125 -1.535 1.436875 -1.1975 -0.543125 -3.1625 1.499375 -1.13125 -0.3675 1.138125 2.268125 3.29 0.258125 -1.10625 0.5525 1.261875 3.804375 3.588125 2.94125 -4.074375 -1.175 3.65625 0.44125 -1.16375 -0.11875 1.671875 1.88625 0.328125 1.429375 -0.141875 -2.11125 -0.196875 1.469375 2.403125 0.07375 1.4275 -0.158125 -1.51625 0.505625 1.659375 -3.164375 -1.17 0.2025 0.693125 1.64 0.27375 1.664375 0.468125 -1.3325 0.433125 0.689375 -2.786875 -0.32 1.453125 0.526875 1.54 0.585625 0.158125 0.105 2.8225 0.884375 1.115 0.251875 -3.064375 -0.821875 0.705625 -0.0625 2.846875 0.1575 0.493125 -1.77875 -1.375625 2.313125 0.45875 0.85375 0.886875 1.608125 -0.128125 1.208125 1.755625 -0.03375 1.20875 0.08375 0.001875 0.11625 2.6825 -0.24625 -1.280625 -1.229375 0.4475 -1.651875 0.668125 1.37375 3.330625 -1.4475 2.890625 -0.12625 1.295 -0.751875 1.69 -0.64875 0.3675 -0.103125 2.924375 -0.076875 0.15125 0.44625 -1.195625 0.474375 -0.193125 0.188125 0.530625 2.13125 -0.04625 0.168125 -1.528125 -2.0725 1.97875 -2.655 0.7275 -1.495625 1.71875 1.64875 -1.62 0.124375 -1.696875 1.086875 2.155625 -2.295 1.524375 0.640625 -2.004375 -0.204375 1.991875 -0.280625 0.16625 1.818125 -2.915625 2.480625 0.33375 0.24875 2.089375 -2.998125 -1.684375 -0.661875 1.45625 -0.26625 -0.673125 3.735 -0.9575 -0.39125 0.004375 2.21375 -0.100625 0.76375 -0.769375 -0.071875 -2.326875 2.6 1.530625 2.0725 -0.711875 -0.795625 2.48875 -0.234375 0.480625 1.34375 2.294375 1.691875 0.693125 2.070625 0.830625 -0.29375 0.859375 -0.035 0.695625 -1.456875 -0.72625 -0.440625 -0.6225 -0.97625 1.414375 2.2425 1.48125 -0.815625 2.22875 2.550625 0.180625 -2.20125 -1.05 2.00125 0.089375 -2.538125 0.0375 1.508125 3.231875 1.090625 1.838125 -0.658125 3.058125 1.541875 -0.016875 1.890625 -0.16375 2.1875 -0.215 2.178125 2.799375 -0.03 2.136875 0.946875 -0.793125 0.666875 0.82875 5.065 2.825625 1.893125 -0.875 -3.18875 2.5725 1.390625 2.498125 -3.58375 0.64125 -2.948125 -1.61625 -0.584375 0.111875 -2.418125 1.103125 -3.49875 -1.76 -1.79125 2.080625 -1.265625 -0.040625 1.271875 -2.341875 0.504375 1.96875 0.948125 -0.650625 0.488125 -1.166875 0.701875 -0.345625 1.02125 1.21625 2.449375 2.6225 2.150625 0.1275 -0.78125 -1.024375 -1.49125 -2.8475 0.2425 3.51 0.79875 0.26875 2.26625 -1.7275 -1.6525 -2.185 -1.22875 1.639375 2.620625 0.61125 -1.635 1.42375 1.5675 1.68125 1.108125 -0.760625 1.47875 -2.503125 1.4125 1.285625 1.720625 2.418125 -0.216875 1.785 -1.67 2.964375 2.245625 0.491875 -0.495 -1.710625 2.2025 2.523125 1.67875 -1.53 -0.36375 -1.17 -2.804375 0.179375 1.545625 1.34875 -0.91625 -0.89125 0.944375 -4.36 -2.86125 3.223125 1.054375 0.89 0.449375 -2.25875 -0.98875 0.943125 1.56 3.27125 0.41875 -1.625625 -1.6125 1.764375 -0.7975 -1 -0.1 0.885625 -0.2425 -0.3 -0.95625 1.22875 -0.2975 1.89 -0.07 -0.011875 1.366875 2.346875 3.326875 0.13125 0.24125 0.436875 -1.263125 -2.2025 -0.056875 1.561875 -0.725 0.6 -0.353125 0.508125 -1.4125 2.144375 -0.219375 -1.605 1.145 0.036875 1.468125 -2.218125 1.965625 0.564375 0.36 2.55375 1.748125 -1.374375 1.9925 1.20125 1.32625 -2.17375 0.710625 0.733125 -0.376875 1.66125 -2.80375 -0.296875 1.820625 -0.99 2.050625 0.36125 0.8225 0.724375 -1.041875 0.7625 1.25625 0.479375 1.280625 0.7625 -2.259375 -1.056875 1.361875 2.9975 1.835 -1.5225 1.996875 2.478125 1.359375 2.840625 1.98 0.695 -1.038125 -1.565 -0.54 1.896875 1.05 2.396875 0.305625 -2.434375 0.044375 3.45375 3.06875 1.298125 1.29125 -0.46 0.163125 2.064375 0.936875 0.55 1.52875 -1.379375 0.99875 -1.143125 1.04 -1.8225 -1.16 -0.560625 0.53375 1.208125 2.263125 -0.78625 0.9525 0.5175 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_4.4ms_ref.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_4.4ms_ref.hrd new file mode 100644 index 0000000..16137ee --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_4.4ms_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 4.4 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676034746 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-0.030625 -0.011875 -0.02125 -0.01125 0.019375 0.02625 0.005 0.008125 0.024375 0.041875 0.068125 0.000625 -0.020625 0.04625 -0.018125 0.034375 0.005 -0.005625 -0.036875 -0.036875 0.024375 -0.05875 -0.025 -0.04875 -0.044375 -0.06375 0.0325 0.000625 -0.02125 0.015 -0.01375 -0.005625 0.053125 -0.024375 -0.033125 -0.005 -0.014375 -0.039375 -0.005625 -0.011875 -0.01625 -0.068125 0.00625 -0.055625 0.0075 -0.065625 0.01 0.02125 -0.01 0.019375 0.0025 0.014375 0.0225 -0.00125 0.021875 0.064375 0.031875 0.025 -0.006875 -0.01625 -0.036875 -0.015 -0.015 -0.0175 -0.01875 -0.0475 -0.04625 -0.049375 0.04 0.006875 -0.033125 -0.020625 0.02 -0.005625 -0.0175 -0.014375 -0.0125 0.014375 -0.028125 -0.035625 -0.05 -0.026875 -0.03375 -0.035625 0.021875 0.005 -0.013125 0 0.035625 0.053125 0.014375 0.059375 -0.015 -0.001875 0.0575 0.021875 0.02875 -0.0175 -0.01875 0.035 -0.0025 0.0275 -0.020625 -0.040625 -0.0725 -0.000625 -0.004375 -0.029375 -0.048125 0.0275 0.028125 -0.0025 0.01375 -0.01625 0.01125 0.03125 0.03 -0.001875 0.033125 -0.005 -0.01125 -0.02875 -0.004375 -0.0525 -0.031875 -0.02125 -0.04625 -0.040625 -0.0375 0.0175 0.015625 0.030625 0.005625 0.1075 0.015 0.02 0.005625 0.03375 0.031875 0.013125 0.035 -0.019375 -0.008125 -0.028125 -0.054375 -0.01375 -0.025 -0.01375 -0.023125 0.018125 0.0125 -0.03375 -0.006875 -0.0225 0.011875 0.024375 0.03625 0.04125 -0.01875 -0.014375 -0.006875 -0.02 -0.035 -0.0225 -0.070625 -0.03375 -0.043125 -0.02375 -0.061875 -0.02125 0.02375 0.001875 0.024375 -0.023125 0.029375 0.035625 0.025625 0.04125 0.0475 0.015625 0.03875 0.008125 -0.02 -0.008125 -0.029375 -0.013125 -0.045625 -0.010625 -0.054375 -0.01625 -0.054375 -0.015625 -0.035625 -0.0025 -0.063125 -0.03375 0.044375 0.031875 0.041875 -0.025625 -0.000625 -0.015 -0.029375 -0.051875 0.00375 -0.026875 -0.01375 -0.016875 -0.010625 -0.01 -0.008125 0.03 0.01125 0.049375 0.03 0.063125 0.031875 0.05625 0.0325 0.046875 0.01875 0.046875 0.035625 0.03 -0.005 0.009375 -0.025625 -0.02625 0.013125 -0.0075 -0.004375 -0.02125 -0.021875 -0.0375 -0.00625 0.0125 0.049375 0.031875 -0.003125 -0.008125 -0.02125 0.0725 0.0275 -0.00625 0.00375 -0.065625 -0.075 -0.045625 -0.0125 -0.024375 0.001875 -0.010625 -0.009375 -0.010625 -0.004375 0.008125 0.034375 0.008125 0.0075 0.05125 0.063125 0.065625 0.0275 -0.040625 0.036875 -0.035625 -0.00375 -0.06375 -0.02875 -0.0575 -0.04 0.0075 -0.025 -0.07875 -0.02375 0.053125 -0.0025 0.00125 0.004375 -0.008125 0.030625 -0.00625 0.021875 0.015 -0.035 -0.044375 -0.059375 -0.033125 -0.004375 -0.039375 -0.030625 0.02125 -0.044375 -0.003125 -0.024375 0.0025 0.0175 0.06125 0.035 -0.015 0.03875 0.01625 0.03625 0.035 0.005 0.045 0.01875 -0.011875 -0.0375 -0.020625 -0.035625 0.001875 -0.01875 -0.04875 0.00375 -0.003125 -0.0075 0.013125 0.030625 -0.035625 0.021875 0.01125 0.03625 0.02375 -0.0075 -0.025 -0.028125 -0.0325 -0.033125 -0.06625 -0.056875 0.02375 -0.05 -0.02375 -0.03375 0.00875 -0.02125 0.028125 0.05375 0.00625 0.015625 -0.015 -0.020625 0.01625 0.03375 0.008125 -0.010625 0.019375 0.020625 -0.020625 -0.001875 -0.023125 -0.025 -0.028125 -0.02375 -0.0375 -0.01 0.01375 0.01 -0.005 0.013125 0.019375 -0.01875 -0.0075 0.041875 -0.005625 0.003125 0.000625 -0.00875 0.03125 0.024375 -0.03125 -0.0425 -0.05125 -0.031875 0.00125 0.03625 -0.029375 -0.035625 0.035 0.020625 -0.005625 0.028125 0.03625 0.0225 0.0075 0.041875 0.009375 0.01375 0.025 0.009375 -0.004375 -0.0225 -0.0275 0.0025 0.00875 0.020625 -0.023125 -0.016875 -0.018125 -0.043125 0.03875 0.039375 0.020625 0.016875 -0.055 0.015 0.014375 -0.04 -0.024375 -0.05625 -0.0375 -0.05625 0.01375 -0.0475 -0.0775 -0.020625 -0.014375 -0.014375 -0.01 -0.02375 0.06125 0.05625 0.026875 0.024375 0.021875 -0.003125 0.051875 0.040625 -0.005625 -0.009375 -0.004375 0.0225 -0.009375 -0.025625 -0.0125 -0.010625 -0.045625 -0.049375 -0.025625 -0.03375 0.016875 0.0225 0.003125 0.000625 0.004375 -0.01125 0.056875 0.05125 0.001875 -0.051875 0.0275 -0.013125 -0.01125 -0.04 -0.0225 -0.02625 -0.033125 0.01375 -0.00875 -0.02625 -0.04 -0.01375 -0.000625 -0.028125 -0.003125 0.056875 0.005625 0.0525 0.034375 0.026875 -0.025625 0.05375 -0.0575 -0.001875 -0.006875 -0.003125 -0.01625 -0.033125 -0.066875 -0.0375 -0.04625 0.003125 0.01875 0.008125 -0.01125 -0.0025 -0.0175 0.021875 0.020625 -0.0275 -0.031875 -0.024375 -0.004375 -0.0175 -0.034375 -0.016875 -0.04125 0.01375 0.013125 -0.008125 -0.030625 -0.020625 0.005 0.034375 0.036875 0.02 0.075625 0.02 0.026875 0.07 0.000625 0.00625 -0.0125 -0.02 -0.004375 -0.03375 -0.0325 -0.0225 -0.055625 -0.0275 -0.011875 -0.00125 0.03375 0.001875 -0.01 0.01875 0.010625 -0.055 -0.03625 -0.005625 0.00625 -0.0075 -0.011875 -0.03 -0.019375 0.000625 -0.065 -0.015625 -0.091875 -0.04375 -0.021875 -0.0225 -0.01625 0.035625 0.021875 0.021875 0.081875 0.024375 0.041875 0.02625 0.075 0.044375 0.025 0.0225 -0.005 0.034375 0.015 -0.016875 -0.06125 -0.035 -0.0075 0.00625 0.03875 0.004375 0.010625 -0.055 -0.00625 0.00625 -0.01 -0.01875 0.02875 -0.036875 0.003125 0.02375 -0.0075 -0.049375 -0.0075 -0.00625 -0.024375 -0.074375 -0.04625 0.02125 -0.020625 -0.06125 -0.001875 -0.00875 0.01875 0.034375 0.014375 0.053125 0.03 0.015 0.07 0.025 0.049375 0.02 0.00875 0.00375 0.009375 0.0375 -0.011875 -0.001875 0.04625 -0.01375 0.005625 0.028125 0.006875 0.051875 -0.035625 -0.0575 0.0025 0.00875 -0.019375 0.04875 -0.039375 -0.031875 0.02375 -0.018125 -0.0275 -0.05125 -0.08 -0.06875 0.00125 -0.011875 -0.01625 -0.006875 0.004375 0.025 0.04 0.039375 0.044375 -0.01625 0.025 0.051875 0.023125 0.0175 -0.010625 0.01125 -0.03125 0.001875 -0.018125 -0.016875 -0.030625 -0.01 -0.00875 -0.019375 -0.06 -0.0125 -0.01 0.055625 -0.02125 0.020625 -0.01125 0.039375 0.005625 0.01 -0.041875 -0.00625 0.03375 0.000625 -0.02125 -0.04375 0.043125 -0.0025 0 -0.043125 0.02375 0.05625 0.05125 0.0675 0.013125 0.001875 0.031875 0.03125 0.054375 0.036875 0.0625 0.003125 0.029375 -0.005625 0.02125 -0.039375 -0.006875 -0.0225 -0.038125 -0.050625 -0.029375 -0.001875 0.009375 0.020625 0.009375 -0.0225 -0.01875 -0.01 0.025625 0.028125 0.03 0.01375 -0.026875 0.01 -0.01625 -0.03625 -0.048125 -0.02 0 -0.04125 -0.005625 0.00625 -0.00375 0.025625 0.034375 0.0225 0.050625 0.04125 0.06 0.056875 0.045 0.008125 -0.0075 0.00875 0.00125 -0.014375 -0.004375 0.013125 -0.010625 0.01875 -0.01625 -0.046875 -0.00375 -0.02625 -0.005625 -0.00625 -0.004375 0.034375 -0.023125 0.005 -0.011875 -0.005 0.020625 0.00125 0.010625 -0.030625 -0.028125 -0.038125 -0.03875 -0.01 -0.045 -0.02875 -0.011875 -0.035625 0.031875 0.00375 0.058125 -0.00625 0.025 0.003125 0.04625 0.025 0.0225 -0.013125 0.004375 -0.004375 0.035625 -0.046875 0.006875 -0.01625 -0.054375 -0.015 -0.02 -0.015625 0.0425 0.03125 -0.010625 -0.02625 -0.028125 0.01125 -0.013125 0.0275 0.020625 -0.0025 0.023125 0.023125 -0.000625 -0.015625 -0.074375 -0.001875 -0.0025 0.013125 0.02 -0.0275 0.0175 0.0175 0.070625 0.035 0.048125 0.063125 0.03375 0.018125 0.07625 0.0425 0.04 0.01375 0.039375 0.0025 0.013125 -0.025625 0.00875 -0.014375 -0.031875 -0.003125 0.00875 -0.021875 -0.0375 0.036875 -0.033125 0.009375 0.03 0.024375 -0.055625 -0.001875 -0.00375 0.03 -0.0525 0.016875 0.0075 -0.08125 -0.04 -0.04125 -0.045 -0.0175 0.02 0.015 -0.0175 0 0.045 -0.01875 0.050625 0.051875 0.040625 0.0625 0.0175 -0.024375 0.035625 0.00375 0.003125 -0.03625 -0.015 -0.0125 -0.033125 -0.060625 -0.01875 -0.0425 -0.041875 0.028125 -0.0225 0.010625 0.000625 0.018125 0.023125 -0.020625 -0.02125 0.066875 -0.005 0.0275 -0.018125 0.02875 -0.0075 -0.039375 -0.04 0.020625 0.0075 -0.094375 -0.008125 0.02375 0.025625 0.023125 -0.005625 0.0225 0.03375 0.045 0.030625 0.0275 0.031875 0.035 0.02 0.050625 -0.0425 0.02625 -0.02375 -0.0325 -0.014375 0.0125 -0.01375 -0.02625 -0.015 0.003125 -0.00625 -0.00375 0.019375 -0.044375 0.01875 -0.023125 -0.006875 -0.021875 -0.05125 -0.03625 0.0125 -0.01125 -0.035 -0.0625 0.00875 -0.005625 -0.0375 -0.04875 -0.039375 -0.006875 0.05 0.026875 0.0625 0.004375 0.01875 0.063125 0.033125 0.065 0.04 0.010625 0.05875 0.004375 -0.009375 0.028125 -0.03125 -0.039375 -0.03875 -0.0575 -0.036875 -0.04375 -0.05125 0.030625 -0.029375 0.0025 0.026875 0.004375 0.00375 -0.00625 0.0075 -0.054375 -0.028125 -0.005 -0.036875 -0.045625 -0.00375 -0.005 -0.0325 -0.024375 -0.03375 -0.04 -0.0025 0.0025 0.05375 0.068125 0.03625 0.050625 0.059375 -0.013125 0.0575 0.016875 0.0525 0.009375 0.00375 0.024375 -0.018125 0.036875 -0.028125 0.029375 0.04875 -0.045625 -0.068125 -0.0175 0.00875 -0.010625 -0.008125 0.035 -0.00625 -0.0325 -0.04375 -0.006875 -0.06375 0.00875 -0.0275 -0.024375 -0.038125 -0.030625 -0.0425 0.000625 -0.03625 -0.041875 -0.051875 0.02125 0.01125 0.018125 0.00375 0.03625 0.051875 0.013125 0.029375 0.085625 0.00875 0.06875 0.04125 0.07 -0.02625 0.00625 0.02125 0.001875 -0.026875 0.00375 -0.00125 -0.053125 -0.0275 0.00125 -0.0325 -0.05 0.001875 0.009375 -0.031875 -0.001875 0.0425 0.018125 0.01 -0.01375 -0.03625 0.03 -0.033125 -0.0175 -0.0275 -0.050625 -0.020625 -0.035 -0.00875 -0.06875 0.003125 0.039375 0.008125 0.001875 0.01875 0.045625 -0.018125 0.055625 0.035 0.0275 0.02875 -0.01125 -0.026875 -0.0125 -0.001875 -0.016875 -0.094375 -0.07625 -0.02875 -0.015 0.0375 -0.03 0.0125 0.014375 -0.038125 -0.04 0.021875 0.0325 0.023125 -0.064375 0.024375 0.00875 -0.0175 -0.021875 -0.0475 -0.0275 -0.030625 -0.026875 0.0075 -0.00625 -0.05375 -0.00125 0.00875 -0.02375 0.005 0.06125 0.0275 0.056875 0.019375 0.078125 0.0625 0.013125 0.025625 0.026875 -0.02375 0.003125 0.020625 0.025 -0.023125 -0.061875 -0.019375 -0.05625 0.014375 0.011875 -0.023125 -0.028125 -0.0125 -0.0375 -0.015 -0.011875 0.023125 -0.028125 -0.031875 -0.0325 -0.005 -0.01125 -0.025 -0.048125 -0.02 -0.013125 0.03625 -0.01 0.005 0.0825 0.00125 0.0425 -0.005 0.026875 0.054375 0.059375 0.0225 0.0075 0.016875 0.029375 0.035 -0.00375 0.010625 -0.03875 -0.06 0.0025 -0.035625 -0.02875 0.006875 -0.0075 -0.025 -0.0275 -0.018125 -0.03375 -0.02125 -0.004375 0.003125 0.01375 0.025625 0.0325 -0.03375 -0.00125 -0.0725 -0.03375 -0.008125 -0.065625 -0.004375 -0.00375 -0.02875 -0.02375 -0.01125 0.02125 0.01375 0.025 0.03625 0.0475 0.05125 0.053125 0.03375 0.025 0.043125 0.044375 0.04875 -0.0325 0.001875 -0.030625 -0.004375 -0.009375 -0.058125 -0.0175 -0.0475 -0.055 -0.07375 0.00375 0.029375 -0.05625 0.0175 0.065 -0.060625 -0.026875 -0.01625 0.018125 -0.031875 -0.02 -0.008125 -0.01125 -0.045 -0.009375 -0.03 -0.005625 0.024375 -0.039375 0.006875 -0.014375 0.075 0.023125 0.03375 0.055 0.045625 0.05875 0.05875 0.05875 0.043125 0.0025 -0.0075 -0.01375 -0.011875 -0.024375 -0.05375 -0.0525 -0.074375 -0.019375 -0.0425 0.01625 -0.015 -0.0225 0.015 0.034375 0.005625 -0.0225 0.029375 -0.010625 0.014375 0.0175 -0.034375 -0.053125 -0.024375 -0.0425 -0.015625 0.02 -0.0275 -0.028125 -0.0375 0.038125 -0.00125 0.04375 0.065625 0.065 0.075625 0.03375 0.0575 0.019375 0.02625 0.021875 0.08 0.03 0.035625 -0.03125 -0.019375 -0.0075 -0.016875 -0.0075 0.040625 0.000625 -0.036875 0.0725 0.03875 -0.025 0.015625 0.0075 0.008125 -0.03375 0.016875 0.02125 -0.014375 -0.030625 -0.013125 -0.01375 -0.0725 -0.03375 -0.013125 -0.005 -0.004375 -0.0775 -0.02125 -0.04125 0.011875 0.05375 0.035625 -0.0075 0.069375 0.08 0.0225 0.0525 0.034375 -0.011875 -0.02 -0.01625 -0.00125 -0.06375 -0.015 -0.06125 -0.008125 -0.04 -0.044375 -0.0075 0.01375 0.015625 -0.0125 -0.011875 0.07125 0.02125 -0.010625 0.011875 0.009375 -0.035 0.01125 -0.03375 -0.03 -0.046875 -0.0725 -0.02 -0.035 -0.001875 0.04 0.01 0.03375 0.010625 -0.005625 0.035 0.01125 0.074375 0.03875 0.039375 -0.013125 -0.00875 0.034375 -0.016875 0.01125 -0.015 -0.03875 -0.03 -0.03625 -0.009375 -0.06125 -0.035625 -0.00375 -0.034375 -0.005625 0.008125 0.005 0 -0.03125 0.039375 0.05125 -0.0375 -0.048125 -0.006875 -0.01375 -0.05375 -0.0625 -0.02375 -0.02375 -0.03125 -0.011875 0.04125 0.005 0.005625 0.00375 0.03 0.04875 0.025625 0.003125 -0.006875 0.033125 0.035 0.0425 0.040625 0.031875 0 0.02375 0.035 0.004375 -0.03625 0.018125 -0.02625 -0.06375 -0.0675 -0.021875 -0.0375 -0.024375 0.00875 -0.03625 -0.001875 -0.015625 -0.010625 -0.024375 -0.024375 -0.051875 -0.003125 0.03625 -0.020625 0.0075 -0.023125 -0.0225 -0.06125 -0.00375 -0.021875 -0.0325 -0.028125 0.006875 0.055625 0.05125 0.031875 0.030625 0.063125 0.071875 0.01125 -0.004375 0.059375 0.00375 -0.023125 0.059375 0.006875 -0.003125 -0.03125 0.0075 -0.016875 0.00625 -0.008125 0.010625 0.006875 -0.061875 -0.005 -0.02 0.014375 -0.035625 0.020625 0.02125 -0.041875 0.033125 -0.011875 -0.0025 -0.00375 0.02875 -0.023125 -0.01625 0 -0.046875 -0.021875 -0.02875 0.029375 -0.01125 -0.008125 0.024375 0.021875 0.030625 0.031875 0.041875 0.034375 0.0425 0.01625 0.024375 0.00125 0.006875 -0.025 0.01125 -0.0375 0.01875 -0.030625 -0.00375 -0.00625 0.06625 -0.023125 0.006875 0.023125 0.01125 0.00125 0.009375 0.0025 -0.00625 0.003125 0.00875 -0.02875 -0.0325 0.035 -0.0275 -0.043125 -0.038125 -0.03625 -0.021875 -0.005 -0.0525 0.010625 0.0075 +-0.034375 -0.036875 -0.0025 0 0.000625 -0.05375 0.005625 -0.019375 -0.0075 -0.003125 0.025 -0.014375 0.034375 0.030625 0.02375 0.034375 0.004375 -0.005625 -0.0225 -0.01125 -0.056875 0.015 -0.016875 0.045625 0.03 -0.025 -0.025 -0.001875 0.033125 0.080625 -0.023125 -0.008125 0.006875 -0.00375 0.0325 -0.0125 -0.02375 -0.03125 -0.008125 -0.028125 -0.02 -0.01875 -0.04 -0.0025 -0.033125 -0.01375 0.009375 0.0275 -0.0125 -0.003125 0.029375 0.01625 0.02 0.00625 0.043125 -0.0225 -0.03 0.010625 0.02 -0.0475 -0.0275 0.008125 -0.0325 -0.038125 0 -0.05125 0.018125 -0.03 -0.0075 -0.064375 0.0175 -0.00625 0.005625 0.01625 -0.039375 0.015 -0.024375 -0.03375 -0.045625 -0.07625 -0.025 0.016875 0.045 -0.01 -0.016875 -0.01 -0.005 -0.015625 0.020625 0.006875 0.033125 0.018125 -0.00375 -0.01875 0.045 -0.01375 0.014375 -0.015 -0.0075 -0.035 0.00125 0 -0.014375 -0.034375 -0.02 0.004375 -0.020625 -0.00625 0.0075 -0.0175 -0.029375 0.03625 -0.016875 0.008125 0.011875 0.023125 0.004375 -0.04 -0.02 -0.003125 0.00375 -0.024375 0.005625 -0.01125 -0.016875 -0.001875 0.01125 -0.040625 -0.00375 -0.03375 0.05625 0 -0.029375 0.001875 0.011875 0.051875 0.013125 -0.03625 0.00875 -0.0175 0.05125 0.029375 0.008125 -0.003125 0.023125 -0.009375 -0.026875 -0.04125 -0.021875 -0.043125 -0.050625 -0.013125 0.004375 0.031875 -0.000625 0.029375 0.025 -0.05125 -0.021875 0.009375 -0.046875 -0.029375 0.00375 -0.0775 -0.03 -0.019375 -0.035 -0.005625 -0.029375 0.001875 -0.02375 0.020625 -0.04875 0.03875 0.06875 0.030625 0.045625 0.011875 0.030625 0.04875 0.01375 -0.004375 0.048125 -0.0075 -0.0025 -0.008125 -0.056875 -0.019375 -0.00125 -0.009375 -0.0425 -0.025 -0.035625 0.015 -0.03375 -0.0125 -0.005625 0.043125 0.02875 -0.02375 -0.006875 -0.041875 -0.04375 0.01125 -0.034375 -0.023125 -0.08 0.01875 -0.013125 -0.056875 -0.01 0.034375 -0.005 -0.0075 0.040625 0.013125 0.00625 0.0125 0.021875 0.01 0.0125 0.02 0.04125 -0.00625 0.035 0.0025 -0.028125 0.00875 -0.014375 -0.006875 0.00375 -0.035625 -0.023125 -0.068125 0.020625 0 0.02125 0.019375 0.044375 -0.0325 0.013125 0.039375 -0.00625 -0.046875 0.034375 -0.01375 0.018125 0.011875 0.00375 -0.029375 -0.020625 0.02125 -0.01625 0.035 0.02125 -0.023125 0.009375 -0.026875 0.025 -0.04375 0.036875 0.010625 0.02625 0.031875 0.031875 -0.00375 0.025625 -0.02125 -0.005625 -0.016875 -0.04 0.005625 -0.008125 -0.005625 0.039375 0.03125 -0.018125 -0.04625 0.005625 0.023125 -0.03125 -0.02875 0.034375 0.0275 0.01625 -0.023125 -0.00125 0.0125 -0.015625 -0.0575 -0.02625 -0.005625 -0.02 -0.0175 -0.021875 -0.05 0.0225 0.005 0.020625 0.040625 0.0075 0.01125 0.021875 -0.023125 0.0625 0.01125 0.04125 -0.01 0.0125 -0.028125 0.008125 0.00875 0.010625 0.054375 -0.0175 0.025625 -0.02125 -0.0225 -0.0275 0.06875 0 0.01 0.003125 -0.020625 0.0225 -0.01125 -0.005625 0.021875 -0.038125 -0.05 0.013125 -0.0225 0.015625 -0.03125 -0.00375 0.014375 0.01625 -0.0025 0.04125 -0.00375 0.033125 0.0275 0.095625 -0.003125 -0.039375 -0.011875 0.000625 0.01375 0 0.02375 -0.024375 -0.04375 -0.0525 0.015 -0.036875 0.015 -0.01375 -0.04 -0.016875 -0.035625 -0.004375 0.085625 0.011875 -0.008125 -0.036875 -0.004375 -0.004375 -0.001875 -0.005625 -0.02375 -0.0175 -0.044375 -0.005 -0.031875 0.005625 0.015 0.006875 -0.01375 -0.005625 0.030625 -0.00375 0.005 -0.003125 -0.035625 -0.001875 0.043125 0.011875 0.036875 0.0025 -0.00375 0.061875 -0.025 0.01 -0.04625 -0.015 -0.021875 -0.003125 -0.000625 0.005 0.003125 -0.051875 0.038125 0.011875 0.0125 -0.0025 -0.01125 0.00125 -0.025625 -0.021875 -0.02125 -0.056875 -0.0425 -0.005625 -0.04625 -0.039375 -0.04375 -0.048125 0.049375 -0.0175 -0.029375 -0.015 0.03 0.028125 0.011875 0.01 -0.014375 0.021875 -0.02375 0.00125 -0.010625 -0.019375 0.01375 0.071875 -0.0725 0.004375 0.011875 -0.009375 -0.044375 -0.023125 -0.02125 -0.0025 -0.003125 0.02375 -0.0125 -0.016875 -0.055 0.029375 0.033125 -0.018125 0.05875 0.00625 0.021875 -0.008125 -0.00125 -0.015 0.005625 -0.04875 -0.033125 -0.05375 -0.013125 0.005 0.025 0.001875 -0.034375 0.01 0.03875 0.095 0.025625 0.03875 -0.011875 -0.036875 -0.006875 0.01125 0.030625 -0.025 -0.0025 -0.018125 0.00875 0.000625 -0.020625 -0.016875 0.00875 -0.008125 -0.0325 -0.024375 -0.05125 -0.006875 -0.006875 0.025625 0.045625 -0.021875 -0.038125 -0.023125 0.005 -0.064375 -0.044375 -0.001875 -0.0325 -0.046875 -0.005625 -0.03875 -0.001875 -0.024375 -0.041875 0.05125 0.02125 0.049375 0.028125 -0.04875 -0.0125 0.00125 0.03375 0.02 -0.025625 -0.01 -0.00125 0.0225 -0.01875 -0.019375 -0.07875 -0.008125 -0.010625 0.055625 0.025625 -0.0025 0.005 0.01125 -0.03 0.034375 -0.003125 0.041875 -0.05 0.021875 0.009375 0.023125 -0.010625 -0.0275 -0.011875 0.003125 -0.04 -0.0325 0.00875 0.008125 -0.00375 -0.02375 0.01375 0.05875 0.0225 -0.04125 0.016875 0.04875 0.03625 0.005625 0.020625 0.0125 0.0075 0.009375 0.004375 0.004375 0.01375 -0.03 -0.0275 -0.029375 0.036875 -0.00625 0.00625 -0.01375 0.02125 -0.02875 -0.016875 0.00625 -0.015625 -0.00375 -0.0075 -0.040625 -0.054375 -0.02125 0.00875 0.0075 -0.014375 -0.049375 0.025 -0.008125 -0.01 -0.005 0.02625 -0.0225 -0.0075 0.06375 0.00625 0.040625 0.025 0.045625 0.04125 0.014375 -0.03125 -0.0425 -0.009375 -0.008125 0.0125 0.023125 -0.035625 0.011875 -0.0025 0.018125 0.016875 -0.031875 0.015 -0.0325 -0.005625 -0.0225 -0.005625 0.00375 0.0425 0.023125 -0.0475 -0.05125 -0.0075 0.02625 0.001875 -0.019375 -0.018125 -0.0025 -0.04125 -0.013125 0.000625 0.0025 0.054375 0.006875 0.00625 -0.02875 0.030625 0.0725 0.019375 0.0125 0.0025 -0.01 0.00875 0.00875 0.0025 -0.015 0.02625 0.019375 -0.01625 -0.005625 -0.03 -0.011875 -0.025625 -0.030625 0.0175 -0.01 -0.00625 -0.000625 0.046875 0.026875 -0.036875 0.0225 0.01875 0.004375 0.03 0.024375 -0.021875 -0.05875 -0.01 -0.0525 -0.015625 -0.034375 -0.00125 0.009375 0.005 -0.014375 0.034375 0.018125 0.00375 0.024375 0.03125 -0.008125 0.064375 0.028125 -0.011875 0.0375 -0.045 -0.006875 0.021875 -0.023125 -0.054375 -0.025625 -0.023125 -0.036875 0.001875 0.004375 -0.016875 -0.010625 0.02375 0.026875 -0.006875 0.0175 -0.004375 0.021875 0.013125 0.01875 0.031875 -0.015 -0.01875 -0.01 -0.01 -0.0275 -0.051875 -0.044375 -0.02125 -0.01375 0.04625 0.004375 0.046875 -0.025 -0.015 0.070625 0.035 0.0225 -0.010625 0.0075 -0.025 0.0275 0.010625 -0.03 -0.030625 -0.015625 -0.013125 -0.014375 -0.005625 -0.004375 -0.061875 0.036875 -0.003125 -0.004375 -0.004375 -0.04375 0.02375 0.060625 -0.003125 -0.01375 0.015 0.014375 -0.006875 -0.03125 -0.043125 -0.03 -0.016875 0.003125 -0.030625 -0.003125 0.0525 0.01 0.011875 0.051875 0.003125 0.003125 0.071875 0.025 0.02125 0.01125 0.006875 0.0325 -0.006875 -0.003125 -0.003125 0.0475 -0.0275 -0.035625 -0.014375 0.001875 -0.02875 -0.015625 -0.005625 -0.00125 -0.030625 -0.004375 0.0175 -0.00125 0 0.04 0.025 0.03375 -0.000625 0.018125 -0.046875 -0.010625 0.011875 -0.039375 -0.0025 -0.018125 -0.006875 0.005625 0.010625 -0.005 0.008125 0.03125 -0.0075 0.005625 0.011875 0.044375 0.009375 0.038125 0.0075 0.016875 -0.028125 0.011875 -0.02375 0.00875 -0.016875 -0.0225 -0.016875 -0.009375 -0.00625 -0.021875 0.029375 0.050625 0.0025 0.005625 0.01125 -0.005625 -0.036875 -0.055 -0.013125 -0.041875 0.018125 0.005 0.039375 -0.00875 0.01 -0.051875 0.0425 -0.01625 0.005 -0.005 -0.011875 0.014375 -0.008125 0.000625 0.026875 0.02375 0.085625 0.0775 0.031875 0.0475 0.038125 -0.044375 -0.0025 -0.00125 0.04375 -0.031875 0.02125 -0.016875 0.0075 -0.00125 -0.015 0.015 0.004375 -0.02375 0.024375 -0.020625 -0.045 -0.021875 0.01 0.0325 0.010625 -0.05 -0.02 -0.028125 -0.02625 -0.01375 -0.045 -0.06625 -0.016875 -0.044375 0.011875 0.043125 0.080625 0.01625 0.015625 0.028125 0.02875 0.0175 0.038125 0.006875 0.0275 -0.0125 -0.019375 0.015 0.0075 -0.05125 -0.01375 -0.02125 -0.011875 0.0225 -0.0425 0.005 -0.054375 -0.0275 0.035625 0.044375 0 0.024375 0.014375 0.031875 -0.029375 0.006875 0.010625 -0.01 -0.078125 0 0.02625 -0.03375 -0.043125 -0.036875 -0.00875 0.0475 -0.0375 0.041875 -0.034375 0.02 -0.001875 0.0325 0.016875 0.026875 -0.010625 0.015 0.005625 0.0375 0.043125 -0.001875 -0.038125 0.0425 -0.014375 -0.011875 -0.014375 -0.015625 -0.0025 -0.01375 0.01625 -0.085 -0.014375 -0.00125 0.02625 0.01 0.02125 0.0075 -0.016875 0.00875 0.019375 -0.0275 0.00125 0.038125 -0.00375 0.001875 -0.024375 -0.036875 -0.055625 -0.009375 0.02625 0.00625 0.028125 -0.023125 0.0225 0.02875 -0.025 -0.021875 0.04625 0.009375 -0.010625 0.034375 -0.015625 -0.0375 0.0125 -0.0225 -0.018125 -0.065 -0.0275 0.0025 0.044375 -0.018125 -0.005625 0.00875 -0.03625 0.015625 0.001875 -0.05625 -0.039375 0.0225 -0.04125 -0.029375 0.010625 -0.054375 -0.0225 -0.021875 -0.009375 -0.039375 -0.01625 -0.03 -0.01125 -0.018125 0.03875 0.015625 0.003125 0.005 -0.011875 0.056875 -0.0025 0.036875 0.039375 -0.001875 0.048125 -0.005 -0.025 -0.01625 -0.02875 -0.055 -0.041875 0.033125 0.018125 -0.0525 0.004375 0.01875 0.0075 0.006875 0.016875 0.011875 -0.019375 -0.031875 -0.061875 -0.02 -0.039375 -0.015 -0.005625 0.01375 -0.015 -0.0375 -0.043125 -0.028125 -0.006875 -0.016875 0.024375 0.048125 -0.011875 -0.013125 0.004375 0.0525 -0.029375 -0.01375 -0.019375 -0.023125 -0.04 -0.011875 0.030625 0.015625 0.031875 0.04 -0.004375 -0.038125 -0.086875 0.0275 0.0425 -0.0225 -0.015 -0.00625 -0.005 -0.045 -0.006875 0.030625 0.006875 -0.030625 -0.03875 0.0075 -0.054375 0.014375 -0.036875 -0.011875 -0.075 -0.03125 -0.01625 -0.065625 0.009375 -0.021875 0.0125 0.043125 -0.01 0.034375 0.001875 -0.008125 -0.033125 0.0625 0.04875 0.024375 -0.016875 0.0175 -0.01875 0.0325 -0.04125 -0.0175 -0.0225 -0.056875 -0.009375 -0.0025 -0.01375 -0.034375 -0.02375 -0.014375 -0.01125 0.029375 0.028125 -0.01125 -0.018125 -0.028125 -0.0025 -0.018125 -0.014375 -0.0075 -0.011875 0.0075 -0.024375 -0.005 0.021875 0.0025 0.056875 0.028125 0.03125 0.03 0.0125 0.025 0.061875 0.00125 0.023125 0.030625 -0.02375 0.02625 0.0025 -0.03125 -0.0025 0.00625 0.006875 0.014375 0.00125 0.034375 0.0125 0.00375 -0.021875 -0.041875 0.01 -0.01875 -0.0125 0.0075 -0.01625 0.02375 -0.03375 0.02 -0.041875 0.02 -0.013125 -0.001875 -0.02625 -0.054375 -0.020625 0.020625 -0.029375 -0.015 0.029375 -0.02125 0.008125 -0.03 0.01375 0.030625 0.005 0.0425 0.03375 0.045 0.008125 -0.01125 0.063125 -0.028125 -0.019375 -0.009375 0.00625 -0.030625 0.02 -0.0175 -0.008125 0.00125 0.005625 0.00125 0.01 -0.008125 -0.049375 -0.03625 0.011875 -0.056875 -0.038125 0.010625 -0.040625 -0.0225 -0.00125 0.0025 -0.030625 -0.041875 0.014375 -0.0075 0.009375 -0.035 -0.001875 -0.01875 -0.016875 0.036875 0.0125 0.019375 0.0175 0.05375 0.050625 0.060625 0.01375 0.039375 0.03625 0.02875 0.03875 -0.03125 -0.01625 -0.046875 -0.04625 -0.005 -0.024375 -0.01 0.03625 -0.00125 -0.020625 0.038125 0.036875 0.0225 0.01625 -0.00875 -0.040625 -0.026875 -0.013125 0.001875 0.02 -0.008125 -0.04125 -0.005625 -0.02625 -0.01125 -0.006875 0.00875 -0.024375 -0.0075 0.05 0.014375 0.02 -0.01875 0.050625 0.00125 0.064375 0.054375 0.0375 0.033125 -0.01 0.00625 -0.006875 -0.034375 -0.020625 -0.075625 -0.025 -0.055 -0.05 -0.025 -0.044375 0.0075 -0.021875 0.00375 0.05 -0.07375 0.038125 -0.04875 0.001875 0.041875 0 -0.02375 -0.004375 -0.034375 -0.001875 -0.014375 -0.0075 -0.020625 -0.03 0.054375 0.005 -0.02625 -0.005 -0.021875 0.02375 0.025 0.0075 0.00125 0.02625 0.04375 0.029375 0.00375 0.015 0.00625 -0.03 -0.03875 -0.025625 -0.035625 -0.008125 0.049375 0.014375 -0.01 0.005625 0.018125 0.00875 0.03625 -0.0425 -0.008125 -0.023125 -0.00625 -0.0425 -0.011875 0.008125 -0.06 0.019375 -0.00125 -0.0725 -0.028125 -0.013125 0.04125 0.036875 0.029375 -0.008125 -0.015625 0.02375 0.00625 0.01625 0.049375 -0.011875 0.0225 0.0475 -0.0275 -0.0275 0.02375 -0.026875 -0.0425 0.036875 -0.04625 0.00875 -0.004375 -0.021875 -0.019375 -0.004375 0.003125 -0.010625 0.02375 0.04375 -0.028125 0.034375 0.06125 0.006875 0.01625 0.02625 -0.030625 -0.0075 -0.04875 -0.005625 -0.03875 -0.0075 -0.058125 -0.04125 -0.0075 0.004375 -0.035 0.028125 0.030625 -0.003125 0.02875 0.026875 0.04125 0.00375 0.035625 0.0325 -0.006875 0.034375 -0.003125 0.019375 -0.0025 0.015 0.03 -0.00375 -0.041875 0.033125 -0.04875 0.024375 -0.05 -0.0125 -0.018125 0.01375 0.013125 0.011875 -0.00875 0.003125 -0.0475 0.00125 -0.006875 -0.01375 -0.036875 0.004375 -0.0025 -0.004375 0.02375 -0.03125 -0.02 0.010625 0.010625 0.006875 0.045 0.035625 0.008125 -0.045625 0.0425 0.04875 0.045 -0.01625 0.01 0.025 -0.00625 0.005 0.003125 -0.029375 -0.035625 -0.0175 0.014375 0.030625 -0.01 0.006875 -0.04875 0.0275 -0.005625 -0.039375 0.024375 -0.036875 0.036875 -0.023125 0.06125 0.058125 -0.0375 -0.0125 0.00625 -0.000625 -0.025 -0.02375 0.01375 0.025 0.03625 -0.033125 0.02 0.034375 0.030625 -0.00625 0.06125 0.07 0 0.010625 0.046875 -0.025 0.025625 0.013125 0.035 -0.03625 -0.0025 -0.02 -0.015625 -0.016875 0.01375 -0.0175 -0.008125 0.04 -0.03625 -0.0375 -0.02125 0.03 0.063125 0.00375 -0.01625 -0.019375 -0.009375 -0.02125 -0.02625 -0.01 -0.001875 -0.001875 -0.035 0.005 0.024375 0.041875 0.013125 -0.003125 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_440ms.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_440ms.hrd new file mode 100644 index 0000000..625e46a --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_440ms.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 440 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035496 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-29.264375 -18.215625 -28.9825 -22.328125 -22.6725 -23.253125 -24.064375 -27.21625 -23.970625 -18.90125 -22.96 -22.05875 -20.7425 -23.754375 -18.3475 -21.0375 -19.918125 -17.821875 -19.39875 -16.626875 -18.90875 -19.778125 -18.091875 -16.579375 -20.090625 -20.848125 -17.683125 -17.65375 -18.92125 -15.79375 -17.66125 -14.43375 -18.856875 -14.840625 -15.9825 -16.10625 -15.569375 -18.856875 -18.423125 -16.65125 -15.380625 -16.5675 -13.32125 -11.514375 -15.923125 -15.290625 -12.575625 -15.538125 -13.514375 -12.5575 -12.681875 -12.255 -15.463125 -14.390625 -13.32 -14.656875 -12.410625 -13.66625 -10.09 -12.405625 -9.95 -14.58125 -13.22 -14.72375 -11.4275 -12.135625 -11.415625 -12.469375 -7.396875 -14.58125 -10.8825 -12.473125 -11.489375 -10.14625 -12.074375 -10.434375 -12.131875 -13.2425 -11.09875 -9.358125 -10.01125 -8.215 -12.87125 -9.28 -11.769375 -7.29875 -10.43875 -8.700625 -10.7425 -12.45375 -10.843125 -12.53125 -12.011875 -10.173125 -9.983125 -11.998125 -6.311875 -8.674375 -6.740625 -9.3525 -10.3575 -8.421875 -9.265625 -11.500625 -8.16 -6.230625 -9.921875 -9.08 -10.626875 -10.305 -8.043125 -8.30875 -8.005 -6.1175 -7.483125 -9.02625 -9.585 -7.5425 -6.2775 -9.538125 -3.11125 -10.67875 -8.98625 -9.38875 -8.6875 -6.636875 -8.925625 -11.506875 -6.433125 -7.50125 -8.4875 -7.59375 -8.49375 -6.89 -4.568125 -7.39625 -6.65 -6.536875 -4.66125 -8.474375 -2.57 -8.9775 -5.66625 -9.164375 -7.19625 -6.370625 -8.17125 -6.036875 -3.96125 -5.844375 -8.209375 -9.094375 -6.805 -8.9125 -7.551875 -5.8675 -6.70125 -5.31875 -6.061875 -4.78875 -8.37875 -4.023125 -5.891875 -4.14 -9.2 -6.01125 -5.40125 -5.025625 -4.9375 -2.63125 -6.23875 -7.144375 -8.31625 -6.24125 -4.223125 -4.40375 -0.9875 -5.91125 -4.555 -9.025 -4.723125 -2.084375 -7.115 -1.656875 -4.10625 -8.474375 -4.04875 -4.52125 -5.51 -4.68 -3.80375 -3.40875 -7.759375 -3.745625 -6.2975 -1.424375 -4.534375 -6.386875 -7.2425 -6.25 -6.583125 -3.6225 -3.481875 -2.46 -7.060625 -4.821875 -6.239375 -6.796875 -4.17625 -3.331875 -2.76125 -5.55 -6.996875 -3.5725 -2.284375 -4.8625 -5.436875 -5.730625 -6.4775 -3.963125 -6.098125 -3.0675 -3.26625 -7.051875 -4.564375 -5.775625 -0.77625 -3.210625 -1.615 -5.143125 -3.68375 -2.375 -4.074375 -3.4725 -2.325625 -6.21375 -2.55375 -5.318125 -3.88125 -1.2675 -2.250625 -3.1175 -4.48375 -4.035 -3.5175 -4.23 -2.358125 -4.5125 -4.421875 -3.46875 -3.16 -0.844375 -5.11375 -5.975 -6.75375 -3.40625 -2.319375 -4.293125 -2.664375 -2.3075 -3.718125 -1.546875 -4.351875 -6.661875 -4.625 -2.593125 -3.05375 -4.770625 -2.685625 -3.024375 -3.83625 -1.338125 -2.085 -1.35625 -4.27875 -4.0925 -2.449375 -0.039375 -0.77625 -4.72375 -3.714375 -4.25375 -0.36375 -3.441875 -1.333125 -0.499375 -2.731875 -3.005 -3.954375 -1.89125 -3.430625 -3.70625 -2.115625 -6.285625 -3.926875 -5.63375 -3.619375 -1.935 -2.50375 -1.7125 -3.333125 -0.326875 -6.726875 -0.101875 -4.795 -2.888125 -2.53625 -2.23375 -1.47625 -2.979375 -2.839375 -3.881875 -3.484375 -1.48 -1.79625 -0.53125 -3.91 -0.959375 -2.053125 -5.46125 -6.3525 -2.199375 -3.49125 0.615625 -3.46 -3.150625 -3.76 -2.915 -3.8125 -4.88 -2.345 -2.61875 -1.599375 -0.049375 -2.713125 -5.535625 -0.645 -4.648125 -3.23875 -3.07375 -0.96 -1.195625 0.405 -2.835 -2.684375 -5.038125 -1.623125 -2.144375 -0.336875 -0.646875 -3.73375 -5.5425 0.4775 -1.6875 -2.249375 -1.41125 -3.16375 -2.656875 -3.50875 -3.23375 -1.790625 -1.129375 -2.378125 -4.778125 -5.79625 -6.0375 -4.383125 -3.20125 -0.6225 -3.8125 -4.311875 0.371875 -1.720625 -0.971875 -4.495 -6.81125 -2.573125 -0.474375 -4.723125 -1.310625 1.943125 -0.631875 -2.06875 0.784375 -1.7975 -4.84 -1.41375 -2.801875 1.1025 -3.375 -0.589375 -1.69125 -6.125 -2.158125 -0.765 0.420625 -2.6 -5.498125 -2.473125 0.23875 -0.521875 -2.46125 -2.35 -0.98875 0.29875 -1.643125 -3.0075 -2.859375 -3.5675 -1.705625 -3.02375 -1.213125 -1.654375 -1.71625 1.453125 -3.246875 -2.188125 -0.3275 -2.3275 -0.37875 -3.58 -2.735 0.755 -3.625625 -2.04375 0.446875 -4.56375 -1.06875 -1.060625 -1.43 0.19875 -1.84 -3.42875 -2.91875 0.763125 0.7975 -2.754375 -4.136875 -2.0625 -4.7325 -1.381875 -1.78375 -0.708125 -0.223125 -1.0975 -4.00875 -1.44375 -0.52 -0.725625 -1.264375 -2.206875 -0.89125 0.093125 -0.564375 -0.2125 -3.19375 -1.578125 -4.200625 -3.22 0.851875 1.49375 -1.559375 -3.531875 -4.75875 -1.76375 0.253125 -1.30625 -1.82375 -4.1 -0.74625 1.36625 -1.578125 0.74625 -1.7275 -0.666875 -1.05625 0.065625 -4.555 -1.34375 -4.42375 -1.956875 -0.600625 0.9775 -0.649375 -0.503125 -4.591875 -1.495625 -0.205625 -1.626875 -1.971875 -1.7125 -1.6075 -1.101875 -2.670625 -3.484375 -2.37625 0.610625 -1.74625 -1.295 -1.6475 -3.13 -1.590625 -1.934375 0.64125 -0.6275 -2.03375 -1.3225 -0.97125 -1.376875 -3.0875 -0.37125 -1.948125 -0.82625 -1.219375 -0.591875 -0.565 -2.53375 -4.498125 -4.603125 -3.334375 -0.885625 -1.306875 -1.261875 -0.836875 -3.659375 -2.710625 -2.310625 -0.9575 -1.448125 -1.074375 -2.1825 0.613125 -1.750625 -2.510625 -1.3625 0.983125 -3.24875 2.7675 -0.463125 -3.28625 1.1375 -3.76875 0.753125 -1.79375 0.763125 -2.58375 -1.23 -1.779375 -1.66375 -1.490625 -3.656875 0.841875 -1.14375 -2.894375 -0.99 -2.349375 0.183125 -2.873125 -0.27375 -0.61125 -1.44375 -2.666875 -2.081875 0.4125 -3.595 -0.505625 -3.5525 1.37 -1.725625 -1.320625 0.836875 0.530625 -0.756875 0.3 -3.69625 -1.640625 -0.49625 -2.248125 -1.925 -3.058125 2.23125 0.08 -1.139375 0.77375 -2.5475 1.188125 0.9925 -2.1825 -3.44875 -2.7325 -1.121875 0.003125 2.1725 -3.015625 -0.038125 -0.164375 0.07625 -1.383125 -0.175 -1.815625 -0.85375 0.945625 -2.865 -0.36875 -2.265625 -1.733125 -2.44 -0.935625 -1.9125 0.399375 -3.95 -1.913125 -4.23375 -2.00375 -2.375 0.6175 1.87625 -1.61125 -3.289375 1.370625 -1.07875 -1.44 -1.38625 -0.974375 2.813125 -0.73875 -1.205625 -4.335 -1.258125 -1.236875 -0.383125 -1.823125 2.318125 -4.116875 1.57625 -0.824375 -2.925 -0.689375 -4.486875 -0.57 -0.026875 -2.1325 0.47625 0.353125 -2.221875 -3.963125 -1.580625 -1.145 1.5 1.315 0.22375 -3.580625 -0.965 -2.151875 -3.3875 1.775 -2.40625 -2.33125 -4.528125 -0.56 0.759375 -1.14 -0.1075 -1.8925 -3.040625 -2.991875 -2.28125 -1.116875 -0.698125 -1.85375 -1.805625 -4.646875 -1.34125 -1.736875 -1.59125 1.7175 -3.264375 -1.61 0.848125 -0.875 -1.4025 -2.543125 -3.815 -3.8725 -0.731875 -1.15 -2.86625 1.235 -0.81125 -1.345625 -1.144375 0.580625 0.734375 0.280625 0.129375 -2.374375 -1.69 -3.001875 -0.339375 -1.425 -1.043125 -2.6175 -3.15125 -3.52125 -3.901875 -0.745625 -1.223125 -3.189375 0.82875 0.16 -2.1075 -1.723125 -0.38 -0.158125 -0.438125 -1.9725 1.88375 -0.5725 0.265 0.28875 0.39125 -1.1425 -1.21 1.06375 -3.90625 1.34625 -1.51375 1.8975 -1.40125 -1.516875 1.040625 1.283125 0.45125 -2.180625 0.545 -4.16 -3.913125 2.441875 1.02125 -2.19125 -0.19 -2.286875 0.58125 0.67875 -4.38625 1.12 -1.725625 0.87125 -0.09875 0.77 -0.22875 -2.54375 -3.316875 0.251875 -0.39375 -2.081875 -1.52125 -0.32375 -0.006875 1.5775 -0.50125 2.235625 -1.44875 -0.60875 -1.87125 -0.703125 1.46625 -1.77625 -1.15375 -1.226875 -4.359375 -0.561875 -3.506875 -1.724375 0.38375 -3.3825 -2.124375 2.1 2.00625 -1.861875 1.8775 -1.264375 -1.46375 2.43 -1.720625 -0.62 -0.451875 -4.118125 -1.71 2.1375 0.041875 -0.050625 0.49 -1.4275 1.119375 1.06125 -0.070625 0.02625 -2.808125 -2.1625 -1.57125 -2.170625 -0.999375 1.55375 0.745 0.598125 3.941875 2.485 0.0475 -1.6875 -1.364375 -0.705 0.16125 -1.663125 -2.47 0.006875 -2.46625 -3.99625 -0.07625 -3.208125 0.26125 0.713125 -1.786875 -2.081875 -0.2325 -1.88625 0.814375 1.048125 -0.47875 -0.755 0.28375 -3.96875 -0.58875 -1.749375 -0.75125 0.53 0.125625 -3.72125 -0.35875 -0.25375 0.6375 -3.7175 -2.8275 -1.653125 -1.59375 -0.133125 0.45625 -2.215625 1.61875 0.519375 0.486875 -0.575 -2.5275 1.616875 -3.175625 1.380625 -3.141875 3.444375 1.8325 -3.2225 1.1625 1.12375 -0.05125 -0.493125 -0.004375 3.3525 0.829375 1.4825 -1.588125 -1.865625 -0.44 -2.334375 0.1025 -0.4175 1.175 1.22875 -1.955625 -0.248125 0.629375 -2.70125 -0.820625 -0.94625 -0.10125 -1.371875 -0.41625 0.198125 -1.519375 -0.476875 -2.181875 -0.60375 -1.50875 -2.390625 -1.0975 0.264375 3.284375 -1.851875 -1.66375 0.27875 -2.785 0.056875 -2.8675 -0.4125 0.16875 -1.226875 -1.5325 0.03125 -2.3225 -1.06125 2.05875 -1.4175 -2.164375 1.34875 -2.600625 1.104375 -1.348125 3.511875 -1.465625 0.8975 -1.9225 -0.5125 -5.094375 -1.889375 0.203125 0.89 0.12125 -1.266875 -0.79875 -0.295 -0.8 0.923125 1.03375 -3.01 1.510625 3.87 -0.77375 -0.641875 -0.835625 -1.591875 -1.08875 -3.2575 3.41625 -1.835 -0.286875 0.274375 0.813125 -2.939375 -2.600625 0.280625 -0.388125 -1.145625 -0.930625 -1.53125 2.976875 -1.23625 -1.748125 -0.875 -0.356875 -4.203125 -3.65125 0.09125 -0.35 -0.563125 -2.723125 -0.730625 -1.574375 1.4975 -1.58375 2.169375 1.749375 1.680625 0.579375 -0.495 -1.3925 -2.22625 0.575 -1.625 -2.248125 -0.73375 1.35375 -0.345 -0.2875 -0.71375 0.054375 3.93875 -0.036875 -3.55875 1.00625 1.56625 -0.70875 -0.675625 -0.181875 -4.13 -0.81625 2.801875 1.334375 -2.519375 -1.116875 2.080625 -0.086875 -0.836875 -0.206875 -1.010625 1.77875 -1.66125 -3.774375 1.5325 -0.58375 4.040625 1.32875 1.756875 -1.034375 0.858125 -1.640625 0.744375 2.081875 0.495625 -0.14875 0.781875 -1.12 -0.57625 -0.078125 2.28125 -0.636875 0.22125 2.30875 -2.260625 1.135 0.535 0.659375 -0.235 -0.404375 -1.83625 -1.24125 -0.470625 -0.516875 -0.086875 -2.705625 -0.86875 -0.945625 -0.2125 4.5225 -2.740625 3.475 -4.31625 -1.849375 -2.72125 0.99125 1.4925 0.92875 -0.729375 0.006875 -2.2925 -2.144375 -0.86375 -0.5675 -1.423125 -2.169375 -0.92125 -2.13 -0.191875 -2.175 -5.00625 3.811875 2.380625 -1.16125 -1.27875 4.083125 -1.940625 -1.5075 -1.84125 0.560625 2.198125 2.374375 1.733125 -5.0425 -3.021875 1.671875 -0.46 -3.584375 -0.988125 1.50375 1.57625 1.246875 0.915625 2.525625 -1.34375 1.478125 -2.178125 -1.094375 1.3575 -0.808125 2.371875 -3.89125 0.048125 -0.414375 1.744375 -0.0675 -1.664375 0.3025 -1.97875 0.2775 0.615 -3.425 2.44875 1.425 -2.158125 -0.239375 -0.795 -1.33625 0.329375 -0.0125 1.1075 -3.255625 -0.701875 1.589375 -0.234375 0.049375 1.19625 -0.02 -1.891875 1.368125 2.87875 2.00875 -0.611875 -2.49125 1.535 2.208125 -1.643125 1.23875 2.29125 0.065625 -3.10875 2.7325 0.58 0.616875 3.14375 -2.300625 2.98125 -3.25625 -0.276875 -2.496875 -2.2225 -3.19375 -1.785625 -1.19 -0.938125 -1.789375 -2.108125 0.40625 0.7025 -0.69625 0.27375 -0.209375 0.29 4.665 -1.735 -0.36625 -0.0525 1.454375 -2.723125 -0.09 -0.4225 0.205 -0.63 -0.055625 -2.93375 1.245625 -0.09625 1.373125 -0.78625 -0.155 -0.75625 -1.545 -1.615 -2.1275 1.496875 0.28 0.326875 -0.915625 2.205625 0.77 1.834375 -0.120625 -0.173125 -1.706875 -0.035625 -0.06375 -0.66875 0.445625 -0.88 -1.038125 -2.518125 2.91125 2.114375 -2.81 -1.41 -6.39875 0.959375 -1.393125 -4.866875 0.01375 -0.066875 1.195625 0.02875 -1.34625 0.265 2.795 -1.18125 -3.293125 1.635 -1.300625 -2.676875 -0.585 -1.459375 -2.979375 -4.588125 0.278125 0.205 -3.1175 -0.1325 0.195625 1.72375 4.56375 -0.72125 -2.4775 0.195625 0.83625 -2.32125 -2.235625 1.375 2.084375 -0.16625 0.065625 0.049375 -0.83875 -2.74125 0.56 1.89125 -0.459375 2.33625 -0.5875 -1.634375 0.71875 -0.058125 -2.478125 1.895625 -0.021875 -0.065625 1.633125 0.805 -0.046875 -0.115 -1.988125 0.05375 -1.674375 -0.32375 3.219375 1.48125 -2.790625 -3.11875 2.27 1.90875 1.186875 -2.529375 0.5525 -2.870625 0.528125 0.79625 -0.051875 -0.940625 -2.381875 3.641875 1.583125 -1.695625 -0.03875 2.294375 -1.456875 -1.000625 -3.894375 -0.389375 3.196875 -2.213125 1.9225 -0.999375 -0.275 -5.2375 1.626875 4.028125 1.4075 2.804375 -1.906875 -1.038125 -1.8075 0.106875 1.556875 -1.705 1.896875 0.055625 -0.05625 -0.97 -3.470625 -1.086875 1.21625 -1.59625 1.68 -1.3625 1.066875 1.238125 -0.0875 1.255625 -4.006875 0.298125 0.188125 -0.2225 0.240625 0.758125 -0.121875 -4.0175 -0.415625 -0.01375 -1.3775 1.285 1.793125 -1.340625 -0.893125 3.94375 -0.22375 -4.245625 0.575 -1.285625 -0.501875 -0.711875 3.52375 0.18625 -0.553125 -0.958125 -1.59625 0.21125 -1.57125 2.550625 1.198125 -3.055 -1.581875 2.733125 -2.344375 2.96 -0.01625 -0.515 -0.81375 -0.039375 0.9125 -0.128125 0.823125 -0.103125 -0.7125 -2.038125 -0.825 -1.348125 -0.389375 2.92 2.13875 1.4275 0.638125 -0.65375 -1.380625 -0.499375 0.343125 -3.154375 -3.53125 -0.42 -1.7875 -2.705 -1.605 1.224375 -2.98375 1.5925 1.859375 0.655 2.434375 -2.411875 -3.44875 -0.126875 -0.07625 0.9175 2.145 0.80125 1.46375 0.490625 1.315625 -1.02625 -2.736875 -0.594375 -2.41625 1.011875 -0.46875 -1.604375 0.1125 -2.158125 -0.593125 -0.853125 -1.513125 -1.86125 -2.3675 1.70375 0.899375 2.159375 -0.61625 -0.815 -1.69 3.20125 -1.54125 1.101875 -1.383125 -0.245625 -0.815 -1.663125 -0.4275 -2.153125 1.80625 0.1475 -0.765 1.839375 3.08 1.611875 -2.338125 -4.606875 -1.938125 2.434375 -2.95625 1.045625 -1.929375 0.128125 -1.323125 -0.3375 2.285 0.54875 2.51875 1.195625 1.118125 -1.804375 -1.53375 -1.166875 -1.29875 1.989375 -2.886875 0.489375 0.19 0.815 -1.008125 0.54375 0.664375 0.67 0.3475 1.125625 -0.9775 -0.625 -0.59375 0.186875 -1.51 -0.8225 -0.53375 2.576875 -1.676875 -1.395625 -3.038125 -0.235625 -1.154375 1.071875 1.9075 -2.036875 0.2825 -2.019375 -0.29625 3.423125 0.24375 -0.516875 1.769375 -0.040625 1.260625 0.025 1.650625 0.53875 -0.91125 -0.024375 -3.335 0.053125 -1.456875 -0.6125 0.846875 1.171875 -2.929375 -2.660625 -0.82625 0.3175 0.3 0.274375 0.0075 2.161875 2.079375 1.7875 +-26.920625 -40.418125 -29.640625 -32.024375 -25.305 -30.91375 -26.850625 -28.218125 -30.0975 -27.849375 -31.86375 -29.35625 -25.125 -28.178125 -24.28375 -25.015625 -22.570625 -22.831875 -22.30375 -22.988125 -19.034375 -25.3575 -22.658125 -22.251875 -21.6225 -22.01875 -20.608125 -20.666875 -22.303125 -22.853125 -20.91875 -21.3825 -21.67625 -22.50125 -21.075 -21.459375 -20.84 -19.08125 -19.3875 -19.205 -18.46625 -17.263125 -16.78 -17.40375 -20.388125 -17.416875 -18.239375 -18.784375 -17.83625 -19.369375 -17.03125 -18.118125 -18.34875 -16.52 -15.400625 -16.363125 -17.463125 -15.919375 -17.584375 -13.525 -16.2675 -17.593125 -16.51375 -12.491875 -11.545625 -13.38125 -14.728125 -14.584375 -15.64125 -12.77375 -11.275625 -15.588125 -12.8825 -13.33625 -11.435625 -13.59 -14.13 -14.728125 -13.833125 -14.74375 -10.940625 -12.071875 -12.275 -12.099375 -11.1275 -10.42875 -11.8525 -9.793125 -9.885625 -10.55 -10.763125 -11.959375 -11.53125 -11.6475 -12.386875 -12.68125 -11.914375 -12.288125 -15.125625 -11.3775 -9.090625 -11.676875 -11.036875 -10.218125 -10.876875 -13.684375 -10.5025 -11.110625 -10.800625 -9.665625 -8.918125 -11.429375 -10.674375 -9.99 -12.169375 -10.309375 -9.845625 -8.476875 -8.53 -11.32625 -8.745 -12.600625 -9.774375 -10.4275 -9.325 -7.10125 -9.66 -10.68625 -8.235 -9.823125 -12.224375 -9.58125 -7.395 -6.339375 -7.34625 -10.35875 -9.980625 -7.645 -7.818125 -5.034375 -7.755 -9.315 -9.401875 -8.445625 -6.4075 -10.1925 -6.421875 -11.071875 -7.406875 -10.884375 -6.3625 -7.45375 -6.925625 -5.85375 -6.078125 -9.454375 -11.144375 -11.02 -9.511875 -6.81375 -7.685625 -9.18 -7.35875 -6.22375 -8.6975 -7.864375 -7.689375 -7.65375 -6.496875 -7.8 -7.448125 -8.0375 -6.59625 -11.124375 -5.828125 -6.705 -7.799375 -6.5525 -6.336875 -7.738125 -8.78375 -6.81 -4.62875 -7.3875 -8.084375 -8.9125 -5.835 -8.526875 -7.215 -3.27875 -6.185 -5.66875 -6.281875 -6.39125 -6.859375 -9.285625 -6.02125 -2.04125 -7.0375 -8.68 -5.194375 -7.7575 -9.216875 -7.63375 -5.939375 -5.233125 -6.611875 -5.85875 -7.885 -5.809375 -6.86125 -5.07375 -7.235625 -8.08125 -3.3225 -6.52625 -5.818125 -9.419375 -6.13875 -2.921875 -9.3225 -5.3275 -3.47625 -5.306875 -6.605 -7.1775 -7.151875 -4.80625 -6.28875 -5.276875 -9.57875 -4.51375 -7.565625 -3.43625 -5.1775 -4.385 -6.07375 -3.77875 -4.60375 -5.94125 -7.085625 -6.225625 -2.933125 -4.63 -4.63 -8.16 -3.215625 -4.356875 -3.700625 -4.811875 -2.68875 -6.045625 -2.1225 -5.24125 -4.385 -4.573125 -3.675 -1.839375 -4.498125 -4.28 -6.989375 -4.261875 -5.218125 -4.09125 -2.55375 -6.564375 -2.1725 -7.465 -4.8 -2.788125 -6.585 -4.634375 -2.97625 -6.78625 -3.13 -4.03875 -5.783125 -3.584375 -5.4225 -4.273125 -3.206875 -2.5175 -8.47375 -5.971875 -6.52875 -3.745 -3.384375 -2.984375 -5.010625 -5.645625 -5.384375 -2.818125 -2.688125 -5.558125 -6.013125 -4.849375 -3.093125 -5.153125 -3.93375 -2.191875 -2.54875 -4.653125 -5.05375 -3.425 -5.24625 -0.956875 -4.899375 -6.8825 -3.670625 -7.788125 -4.47625 -0.799375 -3.029375 -1.78125 -6.739375 -1.955625 -6.62875 -0.393125 -3.060625 -4.894375 -1.69875 -2.863125 -2.464375 -4.516875 -1.76375 -3.3525 -5.125 -6.49625 -2.734375 -3.745625 -3.3175 -1.601875 -1.735625 -0.56375 -3.5475 -5.539375 -0.69125 -1.6025 -3.983125 -0.73125 -7.35 0.30625 -0.84875 -4.18625 -5.511875 -6.68375 -0.1475 -3.129375 -2.691875 -2.83625 -2.0175 -4.0425 -5.381875 -0.10875 -1.64 -2.435 -2.005 -2.256875 -2.11625 -4.8925 -2.295 -5.52 -1.745625 -3.22375 -1.991875 -3.69 -6.32 -2.466875 -4.1775 -2.06125 -0.25 0.8675 -2.48875 -2.785625 -1.245625 -1.529375 -0.705 -2.668125 -4.2875 -5.954375 -3.59 -3.255 -1.911875 -2.691875 -5.96875 -0.621875 -2.730625 -2.906875 -1.645625 -3.655 -1.743125 -2.533125 -1.439375 -0.856875 -4.5875 -5.89375 0.00375 -2.720625 -4.684375 -3.014375 -2.535625 -1.805625 -1.795625 -9.0125 -4.911875 -5.47875 -1.85 -3.231875 -2.4225 -2.439375 -3.75 -1.44875 -3.4425 -2.006875 -0.324375 -3.478125 -0.856875 -1.5675 0.12375 0.779375 0.0025 -5.0725 -3.203125 0.27875 -4.96625 -1.89625 -1.21625 -2.55875 -0.59 -2.62375 -2.57 -4.416875 -1.14375 -1.08 -1.4 -2.21375 1.14875 -4.168125 -1.4175 -2.538125 -0.8675 -1.466875 -3.568125 -1.995625 -2.775 -0.619375 -2.645625 -1.51125 -0.9675 -2.638125 -4.27375 -4.625 -4.103125 0.605625 -1.3975 -4.86125 -0.859375 -3.25125 -4.06625 0.875 -3.308125 -4.619375 -2.545 -2.54375 -1.9025 2.540625 -4.516875 -2.73 -2.720625 1.36 -1.018125 -0.335625 0.22875 -3.38375 -3.689375 -0.445625 -3.191875 -1.910625 0.72875 -1.16 -0.4875 -1.679375 -4.8075 -1.565 1.39375 -4.031875 -0.36375 -2.015625 -2.510625 -2.036875 -1.16125 2.3375 -2.5825 -2.258125 -2.78 -0.694375 -2.03875 0.09625 -0.4275 -1.905 -2.515 -0.623125 -3.24625 -0.90125 -2.828125 -2.205 1.98375 -4.8525 -2.008125 -4.766875 0.50625 -0.480625 -2.86 -0.828125 -1.004375 0.311875 -3.53625 -2.06875 -4.640625 -2.48125 -2.698125 -4.3675 0.47625 -0.99625 -3.62125 -3.895625 -4.81 1.800625 -1.455625 -0.445625 -2.625 -2.753125 -3.0425 -2.774375 -3.929375 -3.026875 -1.32375 -1.57 -1.811875 -4.45625 -1.1675 -0.941875 -1.246875 -1.219375 -1.55625 0.10625 -2.5975 -2.0225 -1.961875 1.285 -3.911875 -1.9875 -4.644375 -2.398125 1.48625 -2.0375 -2.015625 -2.511875 -2.80125 -2.1975 -1.54875 -4.623125 -0.77375 -1.198125 -5.528125 -2.113125 -1.791875 -0.549375 -0.2 -2.356875 0.61 -2.096875 -1.75125 0.39875 -0.314375 -0.570625 -1.87625 -3.32625 -3.110625 -3.14375 0.998125 -5.769375 -1.550625 -3.229375 -2.02875 -1.681875 0.5675 -2.658125 -2.94 -2.380625 -2.811875 -0.965625 -3.60875 -1.2625 -1.453125 1.0875 0.68875 -2.2925 -1.78375 -0.75125 -2.22 -1.943125 -5.135 0.06375 -2.845625 -2.325 -1.915625 -1.508125 -1.4525 -2.948125 2.99625 -0.990625 0.2025 0.276875 -0.85875 -1.788125 -3.345625 -1.1375 -1.541875 -2.905625 -5.526875 -1.500625 -1.103125 1.47875 -3.835 -1.29 -0.47875 -3.739375 -0.721875 -3.835 -3.1825 -1.17625 -1.52 -0.7 -0.596875 -0.688125 -4.069375 0.071875 -0.82375 0.675625 3.201875 0.253125 -1.38125 -1.84125 -3.804375 0.279375 -2.62125 -0.653125 -4.045625 -4.6725 -0.984375 -1.45375 0.1025 -0.4175 -3.075 -3.114375 0.07625 2.22875 1.10375 -1.45 -0.02 -2.278125 -2.053125 -1.5325 1.168125 -1.285 -2.045625 0.68375 0.39875 -2.691875 1.1475 -1.18375 -1.59875 1.396875 -4.035625 -0.346875 -2.275 3.2675 -0.46625 -1.560625 0.4275 -2.18625 -0.481875 -2.135 -0.77375 -2.75625 -1.51375 -1.97 -1.07125 -2.594375 0.459375 0.524375 0.773125 -3.94375 -0.0075 -0.90875 -0.0075 -1.741875 -1.5725 -4.12625 1.25375 2.71 -0.74375 -2.271875 -1.301875 -0.868125 0.759375 -1.154375 -1.679375 -2.459375 -1.279375 0.958125 0.191875 -3.564375 -2.554375 0.71375 0.09625 1.8725 1.959375 -4.250625 0.988125 1.28375 1.15125 -1.78625 -1.47625 -1.485625 -1.489375 -1.533125 -2.945625 -2.649375 -2.441875 -2.254375 -0.994375 -2.238125 0.933125 -3.379375 2.6225 -2.259375 0.21375 -0.220625 -1.886875 1.04625 1.111875 -2.83625 -0.09875 -0.216875 0.478125 -1.75375 0.6525 -0.735625 -2.906875 -1.454375 -0.561875 -0.940625 0.043125 -1.586875 -2.705 -3.4675 -0.42375 -2.664375 -1.6675 -2.250625 -0.9225 -0.2375 0.6525 -0.833125 0.64375 -4.88375 -0.243125 -0.750625 -2.14125 2.016875 -0.889375 -1.168125 -0.76375 -0.14875 -2.828125 -4.57 -3.75375 -1.725 -1.5575 -2.040625 1.435625 -0.109375 0.39375 -1.96125 -3.969375 1.1975 1.324375 -0.881875 -1.136875 -3.12625 1.17 -5.1675 -2.07375 -0.89375 -2.379375 -0.52375 0.841875 -0.55875 -1.991875 -1.3425 -1.333125 -1.0325 0.780625 -2.326875 1.41375 -3.41125 -1.756875 2.645 -1.08875 -2.31375 -0.38625 -0.753125 0.1675 -1.204375 -0.0125 3.120625 0.00125 0.96625 -2.194375 -0.588125 -5.511875 2.825625 -0.345625 -2.240625 -0.3975 -3.591875 -1.7725 -3.245625 -0.731875 -3.618125 -2.30375 -0.0875 -3.595 -1.63375 1.545 -1.045 -0.358125 1.361875 -1.003125 -2.16875 -0.2 -1.159375 -0.691875 0.76875 1.7025 -2.36375 -2.850625 2.959375 -0.87125 -0.1475 -0.255 1.98125 0.528125 1.198125 -0.21625 2.793125 -3.93125 -2.456875 0.745 -0.668125 -1.501875 -3.115625 -0.1525 0.560625 0.208125 -2.8075 -1.185625 -3.79 1.290625 -1.65 -2.501875 -0.491875 3.118125 2.645625 -4.78875 0.535 -2.675 -0.09875 -1.571875 0.4975 -2.855 0.939375 -3.253125 1.75875 -1.94875 -1.11625 -0.11625 0.108125 -0.840625 -1.028125 -1.60375 -0.05625 0.750625 -0.10875 -0.39875 -3.816875 -1.75875 -1.81875 -0.236875 0.26625 -1.439375 -3.904375 -1.613125 3.77125 1.001875 1.74125 -4.483125 0.4125 -0.3825 1.018125 1.8225 -1.991875 -1.36875 -1.343125 -2.506875 -0.378125 1.109375 0.165 -1.9225 -0.495625 0.89625 1.044375 -4.143125 -2.378125 -2.82 0.95625 -1.78875 0.103125 0.095625 -1.549375 -2.288125 -0.393125 0.92375 -0.81375 1.865625 -0.71625 -1.03625 -0.1525 -1.639375 1.07375 1.57625 0.533125 1.7625 0.859375 2.684375 -1.4875 -0.788125 -1.899375 0.189375 -1.754375 -1.583125 0.025 0.70125 -2.420625 -3.069375 -0.123125 -0.32 1.008125 -2.813125 -1.156875 -5.029375 -2.059375 0.5625 -1.7825 2.87 -1.62875 -2.04375 -1.209375 1.46375 -1.49375 1.13375 1.289375 -1.8275 -0.275 3.3325 -1.739375 1.229375 -1.31375 -1.49875 -1.150625 0.684375 -1.244375 0.675625 2.148125 0.4425 -3.419375 -1.941875 -1.444375 -2.34125 -4.634375 1.03125 -0.5425 1.661875 -1.638125 -0.001875 -0.838125 -1.66625 1.360625 -2.2725 -1.161875 -1.48 1.0825 0.143125 1.001875 -2.455625 -2.220625 -1.985625 -0.9175 0.575 1.91625 0.91625 0.786875 0.943125 -0.0675 -1.618125 -0.3675 -2.828125 1.063125 0.225625 -2.21125 0.24625 -0.40875 0.0125 -1.98875 1.858125 -0.71375 1.731875 -0.645 2.065625 -3.591875 -0.405 -1.26125 -1.19625 -0.15 3.795 -0.19375 -0.295 2.2825 -0.329375 0.645625 -0.243125 -3.525625 0.61875 -0.54125 1.451875 -1.2225 -1.679375 -0.86 -1.390625 -3.4025 -0.761875 -1.199375 -0.5275 1.050625 -1.7725 -0.57875 -2.14625 3.88875 -1.83875 -1.389375 -0.98375 0.083125 0.02625 -1.33125 -1.42375 3.39125 -1.73625 0.625625 -1.1775 -0.684375 0.304375 -0.9475 0.48125 1.68375 -1.466875 -1.156875 -3.111875 -1.44875 -1.285625 -1.214375 -2.095625 -1.76625 2.6725 -3.49875 0.465 -0.13625 0.7025 0.45625 -0.084375 -0.944375 -1.826875 1.720625 -1.02625 -1.87 -0.3175 2.000625 0.29 -2.075 3.316875 -1.84375 -2.126875 0.760625 -1.8975 1.05875 -0.899375 -3.980625 -2.221875 -1.761875 -0.1625 0.8375 -3.943125 -2.156875 -0.62625 -0.660625 -2.303125 0.451875 0.945 1.085 -0.360625 0.108125 -0.478125 -1.000625 2.321875 -1.37 -3.051875 -0.495625 -0.429375 0.836875 -0.23875 -0.883125 -0.053125 -2.835625 -0.01375 1.145 0.4625 -1.045 -1.390625 -0.293125 -2.9725 -4.32625 -1.84875 -0.101875 1.0775 -2.245 -1.163125 0.945 1.455625 1.219375 -2.7025 -0.775625 -0.755625 1.2775 -1.47625 -0.6025 -0.91 -1.783125 2.549375 -1.27 -0.373125 -1.61 2.623125 0.293125 -0.238125 -2.490625 0.178125 0.6475 3.98625 0.80375 -1.566875 1.58375 -1.655 -0.525 1.16375 1.39875 1.6075 -1.91125 0.190625 -0.23 -1.24 -1.684375 1.8575 -0.546875 -3.296875 -0.875625 -2.7725 -1.678125 0.1325 -0.79625 -3.038125 -1.22625 1.33 0.376875 0.41875 -1.21625 -0.27125 -0.929375 3.279375 0.810625 0.951875 -3.23875 1.8625 -1.061875 0.13875 -2.403125 -1.5075 0.31125 -2.25875 -4.12125 -2.55625 -2.066875 -0.22875 -1.728125 -0.91625 1.310625 -1.4025 -1.96125 -3.275 -1.883125 -2.815625 2.06375 -1.03 0.26875 -2.08 -0.045625 0.58625 -1.5675 3.0975 -0.0525 -0.804375 0.67625 -1.22875 1.163125 0.008125 0.925 -2.538125 -0.316875 2.424375 -1.4725 -2.39875 -0.78 0.196875 -0.28875 -2.653125 0.64875 -0.70875 -0.93625 3.06625 1.36 1.039375 -1.59875 -1.75875 0.13 -0.89375 2.03375 1.555 -0.319375 -3.37375 -1.723125 -3.233125 -0.675 -1.95375 1.401875 1.963125 -1.970625 -1.505625 -1.938125 -2.63125 -1.408125 -0.4525 -1.74875 -1.263125 0.235625 -2.275 -0.098125 -2.70875 -1.1725 0.91375 -1.085625 -0.35375 -1.480625 -2.7975 -0.730625 2.099375 0.295625 0.0275 -0.94625 -1.460625 0.878125 -0.05125 0.356875 -2.11125 -0.35 -2.19 -1.85 -3.221875 -1.4175 -1.089375 -0.145625 -1.87125 -1.749375 -0.836875 -1.655625 -0.690625 -0.37 1.0725 -1.924375 -0.624375 -0.869375 0.820625 -1.831875 0.11 -1.52875 1.209375 -0.6375 2.7075 0.529375 -0.761875 -0.255 1.899375 0.23875 -3.0325 -0.314375 0.641875 -0.553125 0.92625 0.53375 0.925625 0.501875 -0.15125 -2.6175 0.134375 -0.97125 -0.190625 -1.23375 -0.8575 -3.475625 0.234375 -2.549375 0.18875 -0.391875 1.833125 -3.485625 -0.235625 1.929375 2.344375 -1.083125 1.279375 1.77375 -2.675 -0.996875 -1.206875 -2.264375 -1.230625 -1.690625 1.47625 -2.71125 -1.865 0.0375 0.956875 3.124375 0.498125 3.210625 -1.801875 0.373125 -2.874375 0.64625 -1.800625 -3.55625 0.640625 2.466875 -2.3625 0.180625 0.845625 0.238125 -0.090625 0.05625 0.885 1.115625 0.555 -2.26625 -1.069375 -2.936875 1.008125 1.044375 1.995 1.651875 -2.1225 -1.569375 2.418125 1.86375 3.75375 1.26125 -0.02875 0.888125 -0.953125 0.3925 2.7875 0.589375 0.2 0.403125 -0.59875 1.685625 -0.135625 -3 0.3475 1.7 -1.099375 0.75 0.706875 -1.393125 1.72875 2.3275 -1.783125 -0.6025 0.499375 0.67375 1.6225 2.078125 -1.0225 -1.38125 0.384375 -2.544375 0.4575 0.458125 0.895 2.366875 2.4875 -0.075 -0.91375 -0.545625 -3.428125 1.084375 -0.304375 -0.03125 0.085625 0.645625 -1.854375 0.34375 -1.315625 -2.159375 0.4925 1.546875 -3.8925 -1.1225 -0.656875 -0.025625 -0.054375 1.11875 -2.920625 -1.086875 -0.994375 -1.159375 -0.4775 3.51 1.46 0.2 -1.7725 -1.055 -0.565 -0.6975 2.6675 -0.0475 1.33125 -0.678125 -0.2225 -2.38875 -0.02875 0.025 0.106875 -1.22 3.814375 1.235625 0.885 -2.5725 -0.175 1.4925 0.829375 -0.04875 0.430625 3.244375 0.685625 -1.01 -1.0825 1.101875 1.045 -2.49 0.83 -1.1875 2.286875 -1.46875 -0.040625 -1.23125 -0.273125 -0.88 0.244375 -0.1225 1.00125 -2.64 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_440ms_ref.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_440ms_ref.hrd new file mode 100644 index 0000000..cd7af2e --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_440ms_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 440 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035496 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0.040625 0.011875 0.00125 0.043125 0.000625 0.029375 0.016875 0.024375 -0.049375 -0.01375 0.019375 -0.02125 -0.025 0.021875 -0.03875 -0.005 -0.013125 -0.010625 0.0425 -0.04 0.018125 -0.00375 -0.014375 -0.05875 -0.005 -0.021875 0.01875 -0.033125 -0.044375 -0.01375 -0.03 -0.02875 -0.02875 0.001875 0.02625 0.000625 0.02625 0.00375 0.010625 0.035625 0.0575 0.08625 0.013125 0.036875 0.0125 0.024375 -0.003125 0.033125 0.005 -0.00875 -0.021875 -0.02375 -0.006875 -0.068125 0.00625 -0.008125 0.004375 -0.019375 0.04 -0.01375 0.041875 0.00375 -0.0225 0.023125 -0.051875 0.02 0.001875 0.03625 -0.0325 0.003125 -0.0475 -0.049375 -0.004375 -0.001875 -0.013125 -0.02125 -0.01375 0.0125 -0.024375 0.00375 0.03625 0.025 0.025625 0.063125 0.08375 0.050625 -0.01125 0.005 -0.023125 0.005 0.0125 -0.04875 -0.034375 -0.038125 -0.0275 -0.046875 -0.014375 -0.015625 -0.03125 -0.000625 -0.005 0.0425 -0.0225 0.025 0.020625 -0.031875 0.034375 -0.021875 -0.00125 -0.00875 -0.004375 -0.025 -0.023125 -0.025625 0.0075 -0.0225 0.019375 -0.01 0.0125 0.043125 -0.00875 0.030625 0.035 0.035625 -0.008125 0.05875 0.04625 0.03875 0.02875 -0.05125 0.031875 -0.0225 -0.009375 0.004375 -0.02625 -0.01875 -0.039375 0.011875 0.003125 0.003125 -0.0525 0.0375 -0.016875 -0.0325 0.034375 0.005625 -0.0575 -0.016875 0.01 -0.04 0.01125 -0.0425 -0.039375 -0.04625 -0.009375 -0.03125 -0.055 -0.01 0.0075 0.035625 0.023125 0.055625 -0.001875 0.01125 0.083125 0.045 0.0025 0.005 0.0725 0.02875 -0.034375 0.015 0.005 -0.055625 -0.025625 -0.0225 -0.023125 -0.016875 0 -0.041875 0.03 0.0075 0.020625 0.01375 -0.03 -0.003125 -0.044375 0.031875 0.056875 0.035625 0.009375 -0.00625 -0.043125 0.025625 -0.02875 -0.05625 -0.09875 -0.021875 -0.01375 -0.031875 -0.02375 0.013125 0.034375 0.009375 -0.0025 0.05875 0.01 0.02125 0.025 0.011875 0.02875 0.0025 0.001875 -0.030625 -0.01 -0.0175 -0.04875 -0.0175 -0.0325 -0.0125 0 -0.008125 -0.020625 -0.0275 0.0275 -0.025625 -0.060625 0.008125 0.003125 0.008125 -0.0375 -0.034375 -0.03125 -0.015 -0.00875 -0.031875 -0.068125 -0.078125 -0.073125 -0.025 -0.025625 -0.035625 -0.02 0.025 0.010625 0.0575 -0.01375 0.008125 0.025625 -0.01375 0.04375 0.033125 0.041875 -0.014375 -0.000625 0.0075 -0.0225 -0.00125 -0.013125 -0.073125 0.0075 -0.0475 -0.0175 -0.0175 0.0125 0.03125 -0.045625 -0.0125 -0.013125 0.00125 -0.016875 0.028125 0.011875 -0.004375 0.01 0.0075 0.04125 -0.0775 0.00125 -0.005625 -0.005 -0.05125 0.000625 -0.0075 0.029375 0.024375 0.058125 0.04125 0.07625 0.024375 0.048125 0.01 0.02875 0.013125 0.020625 -0.00625 0.0075 -0.025625 -0.00375 -0.00125 -0.055625 -0.0075 0.024375 0.005625 -0.03 -0.0225 -0.013125 -0.01375 -0.001875 0.024375 -0.01 -0.026875 0.02625 0.005625 -0.01875 -0.0575 -0.031875 0.0075 -0.0175 -0.025 -0.06375 -0.016875 -0.02 -0.0075 0.023125 -0.008125 0.03625 -0.03875 0.028125 0.04625 0.020625 -0.0375 0.04125 0.064375 0.04 0.014375 0.031875 0.05 -0.024375 0.019375 0.0225 -0.0125 -0.03 -0.01875 -0.00375 0.019375 -0.00375 -0.01875 -0.0175 0.015 -0.01625 0.030625 -0.000625 -0.001875 -0.02125 0.001875 0.00875 -0.021875 -0.020625 -0.016875 -0.041875 -0.0425 -0.048125 0.004375 -0.05875 0.001875 0.038125 0.028125 0.0075 0.065625 0.0475 0.056875 0.02 0.01125 0.038125 0.04 0.046875 0.000625 -0.021875 0.0225 -0.045625 -0.0075 -0.05 -0.02625 -0.0175 -0.03375 -0.00125 -0.021875 0.009375 -0.001875 -0.013125 0.02875 0.045 0.00125 -0.005625 -0.0025 -0.045625 -0.013125 -0.02125 0.003125 -0.05625 0.001875 -0.025625 -0.005 -0.039375 -0.035625 0.01375 -0.01625 -0.006875 0.03125 -0.01125 0.020625 0.061875 0.034375 0.033125 0.051875 0.04125 0.014375 0.013125 0.013125 -0.040625 0.01 0.01125 -0.02125 -0.058125 -0.05 -0.050625 -0.060625 -0.059375 0.004375 -0.02625 0.011875 0.009375 0.013125 0.003125 -0.049375 0.013125 -0.061875 0.00875 0.02625 -0.03375 -0.005625 -0.011875 -0.031875 -0.026875 0.0025 -0.023125 -0.04375 -0.0025 -0.01125 0.0125 0.035 0.033125 -0.0125 0.0025 0.0325 0.083125 0.07 0.014375 0.005625 0.004375 0.005625 0.010625 0.003125 -0.020625 -0.014375 -0.019375 -0.056875 -0.02875 -0.01875 -0.019375 -0.058125 -0.014375 -0.058125 0.008125 0.025625 -0.021875 -0.023125 0.035 0.001875 -0.03125 -0.01875 -0.0625 -0.02875 -0.050625 -0.0375 -0.05375 -0.013125 -0.04125 -0.0125 0.006875 0.000625 0.015 0.031875 0.0425 0.0975 -0.019375 0.015625 0.005625 0.0075 0.023125 0.0325 0.0025 -0.04 0.0175 -0.008125 0.04 -0.060625 0.025 -0.00625 -0.034375 -0.02 -0.0125 -0.065 -0.02875 0.019375 0.03625 -0.01 0.019375 -0.011875 0.00875 -0.01375 -0.00125 0 -0.073125 -0.079375 0.013125 0.0025 -0.066875 0.01625 0.004375 -0.025625 -0.010625 -0.0025 0.01125 0.073125 0.036875 0.054375 0.023125 0.04625 -0.059375 -0.02125 0.079375 0.025 -0.015625 0.026875 0.0225 0 -0.01625 -0.064375 -0.0525 -0.07875 0.013125 -0.04375 -0.005 0.02125 0.025 -0.03125 -0.000625 0.005 -0.00875 -0.01 0.00875 -0.01875 0.021875 -0.013125 -0.0225 -0.02 -0.05875 0.010625 -0.04875 -0.04375 -0.014375 -0.006875 -0.01625 -0.00875 0.020625 0.05375 0.038125 0.084375 0.0025 0.035625 0.035625 0.04 0.05 0.030625 0.004375 0 0.015 -0.03375 -0.013125 -0.019375 0.02875 -0.064375 -0.00375 -0.015 -0.013125 -0.00625 -0.05 -0.029375 0.01875 0.008125 0 0.01875 -0.039375 0.030625 0.00875 -0.011875 -0.01 -0.023125 -0.0175 -0.030625 -0.020625 -0.043125 0.0125 -0.05625 0.0275 0.06125 0.005 0.0375 0.043125 0.051875 -0.0225 0.04125 0.023125 0.005 0.024375 0.01375 0.040625 0.006875 -0.001875 -0.015625 -0.059375 -0.0175 -0.03625 0.029375 0.019375 0.00375 0.034375 -0.04125 -0.056875 0.0075 -0.049375 0.0325 -0.010625 -0.02875 0.0575 0.009375 0.026875 0.006875 -0.07 -0.028125 -0.051875 -0.01 -0.00625 0.005 -0.035625 -0.01625 0.0325 -0.018125 0.0025 0.0175 0.0525 0.011875 0.02 0.01125 0.029375 0.01375 -0.02875 -0.0175 -0.01 -0.0275 -0.005 -0.03375 0.006875 -0.01375 0.015 -0.0275 0.045 0.015 0.03125 -0.000625 -0.050625 -0.01625 0 0.018125 -0.030625 -0.00625 -0.008125 0.036875 0.01 -0.039375 -0.095 -0.011875 -0.015 0.003125 -0.00875 0.001875 -0.02125 0.026875 -0.011875 0.015625 0.068125 0.060625 0.010625 0.069375 0.041875 0.01375 0.0225 0.039375 0.049375 0.0025 -0.03875 -0.01875 0.00375 0 -0.016875 -0.021875 -0.008125 -0.03375 -0.026875 0.024375 -0.00125 -0.0175 -0.01375 0.016875 0.010625 -0.0125 0.0075 0.015 -0.0125 -0.05375 -0.03125 -0.043125 -0.009375 -0.02125 -0.061875 -0.026875 -0.01875 -0.01375 0.00625 -0.013125 0.036875 0.0425 0.0375 0.064375 0.090625 0.0325 0.016875 0.05375 0.01 0.0525 0.026875 -0.011875 0.00125 -0.025 -0.0125 -0.01875 -0.004375 -0.015 -0.059375 0.02125 -0.019375 -0.0125 0.013125 -0.016875 0.02375 0 -0.003125 -0.014375 0.0075 0.0425 0.0075 0.0075 0.00875 -0.01625 -0.021875 0 -0.026875 0.025 -0.02375 -0.0125 -0.033125 0.0325 0.03125 0.028125 0.061875 0.03125 0.068125 0.0425 0.05625 0.0125 0.026875 0.029375 0.01875 0.014375 0.015625 -0.028125 -0.04875 -0.010625 -0.035625 -0.015625 -0.006875 0.0175 0.023125 0.0475 -0.04625 0.01625 0.01625 0.003125 0.00125 -0.00375 -0.0025 0 -0.015 -0.009375 -0.0825 -0.063125 -0.03375 -0.058125 -0.008125 -0.000625 -0.0075 -0.015625 0.016875 0.016875 0.0425 0.01875 0.010625 0.039375 0.043125 0.0725 0.01125 0.0675 0.025625 -0.006875 0 0.020625 0.02 -0.050625 -0.016875 -0.008125 0.0025 -0.030625 -0.036875 0 0.013125 -0.024375 -0.006875 0.008125 0.025625 -0.048125 -0.016875 -0.00125 0.025 0.008125 -0.02375 -0.050625 -0.055 -0.0075 0.03375 -0.02875 0.010625 -0.044375 -0.00125 -0.015 0.009375 -0.016875 -0.00625 0.005 0.020625 0.02375 0.040625 0.025625 -0.009375 0.01125 0.031875 0.070625 0.04375 -0.028125 -0.025625 -0.029375 -0.009375 -0.0675 0.005 -0.005625 0.026875 -0.009375 -0.021875 0.026875 0.015 -0.03125 -0.03875 -0.009375 0.00625 -0.044375 0.015 -0.005 -0.006875 -0.0825 -0.038125 -0.04625 -0.05875 -0.0625 -0.055 -0.023125 0.028125 -0.00375 0.019375 0.025 -0.024375 0.083125 0.03625 0.04125 0.036875 -0.03375 -0.00125 0.003125 -0.03 -0.006875 0.036875 -0.02 -0.0225 0.00875 -0.015625 -0.021875 -0.039375 0.03 0.003125 0.015625 0.00625 0.038125 0.006875 -0.04875 0.02125 0.061875 0.020625 -0.02125 0.00375 0.003125 -0.0125 -0.013125 -0.01125 -0.05375 -0.05875 -0.07 0.03125 0.036875 -0.005625 -0.001875 0.04625 0.070625 0.021875 0.001875 0.063125 -0.01625 0.010625 -0.00625 0.014375 0.0025 -0.000625 0.039375 0.01375 -0.029375 0.0325 0.008125 0.029375 -0.043125 -0.018125 -0.025 -0.02875 -0.000625 -0.001875 -0.02125 0.001875 -0.015625 0.001875 -0.00625 0.045 0.001875 -0.021875 -0.03375 -0.009375 -0.02 -0.040625 -0.029375 -0.056875 0.001875 0.0275 -0.0025 0.02875 -0.058125 -0.0025 0.028125 0.068125 0.113125 0.048125 0.025625 -0.0125 0.025625 0.033125 0.03125 0.03 -0.044375 -0.044375 -0.026875 -0.02625 -0.02 -0.028125 -0.08375 -0.06625 -0.020625 0.025 0.039375 0.015625 0.0075 0.04125 0.049375 -0.048125 -0.015625 0.015625 -0.039375 -0.014375 -0.030625 -0.03875 0.0325 -0.044375 -0.0025 0.001875 -0.03 0.00625 -0.026875 0.014375 0.026875 -0.009375 0.058125 0.061875 0.06375 0.026875 -0.008125 0.0125 -0.003125 0.039375 0.03875 -0.008125 0.015625 0.00125 -0.04875 -0.02625 -0.0075 0.03125 -0.02375 -0.03375 -0.04125 -0.054375 -0.006875 -0.01625 -0.06875 0.0325 -0.054375 0.01875 -0.048125 -0.02 -0.018125 -0.00375 -0.013125 -0.045 -0.045625 -0.033125 -0.025 0.008125 -0.02 -0.044375 0.011875 0.035 0.015625 0.029375 0.06125 0.009375 0.02125 -0.0225 0.015 0.011875 0.011875 0.011875 0.015 0.00875 -0.015625 0.004375 -0.005 -0.076875 -0.0275 0.019375 -0.018125 0.05375 -0.0125 0.011875 -0.0275 -0.021875 0.0375 0.05375 0.021875 -0.01875 0.043125 0.019375 -0.016875 -0.014375 0.003125 0.00125 -0.021875 -0.009375 -0.04375 -0.016875 0.015625 -0.033125 0.01875 0.0225 0.015625 0.001875 0.03875 0.018125 0.019375 0.02 0.065625 0.008125 0.065 0.005 -0.005 -0.040625 -0.0325 -0.003125 -0.045625 -0.008125 -0.04375 0.014375 -0.024375 -0.004375 0.005625 -0.014375 -0.00125 0.04 0.01125 0.008125 0.01 0 0.00875 -0.036875 -0.000625 -0.019375 -0.051875 -0.08125 -0.0225 -0.034375 0.0075 -0.043125 -0.0075 0.0075 0.036875 0.068125 0.076875 0.039375 0.02625 0.00875 0.050625 0.03875 0.050625 0.03375 -0.00625 0.003125 0.00125 0.01125 -0.043125 -0.034375 -0.0225 -0.0325 -0.081875 -0.031875 -0.045 0.028125 0.0225 -0.000625 -0.02375 0.0475 0.040625 0.000625 0.013125 -0.005 -0.069375 0.00625 -0.03875 -0.01875 -0.011875 -0.0025 -0.056875 -0.070625 -0.034375 -0.014375 0.016875 0.0225 0.018125 0.058125 0.01625 0.068125 0.0075 0.050625 0.091875 0.034375 -0.02 0.045625 0.0125 -0.018125 0 -0.030625 -0.045 -0.013125 -0.008125 0.001875 0.014375 0.015 -0.060625 -0.049375 0.020625 0.00875 -0.0075 0.021875 -0.04875 -0.005625 -0.015 -0.0025 0.006875 -0.046875 -0.0075 0.001875 -0.015625 -0.06 -0.05 -0.02625 -0.053125 -0.01125 0.02375 0.004375 -0.0025 0.06375 0.01875 0.005 0.05625 0.055 0.049375 0.00625 0.033125 0.000625 -0.00375 -0.040625 0.0175 0.00625 -0.02625 -0.04375 0.00625 -0.0125 -0.003125 0.003125 -0.0375 -0.013125 0.0625 -0.023125 0.038125 0.01625 -0.00375 -0.0175 -0.0225 0.0075 -0.041875 -0.00875 -0.021875 -0.050625 0.02125 -0.015625 0.013125 -0.03125 -0.038125 0.006875 -0.00125 0.045625 0.083125 0.030625 0.003125 0.038125 0.009375 -0.0025 -0.02625 0.000625 -0.001875 0.01625 -0.01 0.01625 -0.0075 0.00375 -0.041875 -0.0175 -0.005 -0.034375 0.00875 -0.01875 -0.0525 -0.02 -0.05125 0.0025 -0.006875 -0.05875 0.031875 -0.049375 0.00625 -0.04625 -0.0425 -0.031875 -0.0425 0.02375 -0.00625 -0.07625 -0.001875 0.003125 -0.003125 0.04875 0.015 0.0125 0.02 0.0475 0.055625 0.033125 0.03875 0.0075 0.06375 0.016875 0.00875 -0.02375 -0.00875 -0.024375 -0.0475 -0.021875 -0.03875 -0.004375 -0.035625 -0.031875 0.008125 0.01 0 0.028125 0.0275 0.03125 0.018125 0.008125 0.036875 0.0025 -0.01375 -0.01 -0.0125 -0.05 -0.0175 -0.01625 -0.04375 -0.065 0.00625 0.026875 0.005 -0.03875 -0.000625 0.005 0.023125 0.065 0.078125 -0.00625 0.06375 -0.018125 0.006875 0.00875 0.025625 -0.025 -0.01625 -0.0175 -0.030625 -0.018125 -0.010625 -0.01375 0.000625 0.009375 0.005625 0.045625 0.006875 0.0075 0.01125 0.004375 0.016875 -0.03875 0.013125 -0.016875 -0.006875 -0.015 -0.129375 -0.00625 0.000625 -0.03625 -0.021875 0.000625 0.02375 0.028125 0.035 0.056875 0.070625 0.010625 0.028125 0.054375 0.03625 0.045625 0.034375 -0.000625 -0.01125 -0.04 -0.0175 -0.001875 -0.008125 -0.063125 -0.016875 0.0125 0.01 0.0125 -0.03125 -0.0375 0.016875 -0.00375 0.0175 0.039375 -0.033125 -0.04 0.01375 -0.0275 -0.0025 0.01125 0.005 -0.018125 -0.015 0.005 -0.05375 -0.008125 -0.00875 0.0175 -0.000625 0.001875 0.004375 0.029375 0.02 0.018125 0.015 0.008125 0.03 0.0175 0.0775 0.0325 -0.04125 0.01125 -0.030625 0.0025 -0.035 -0.0375 -0.01875 -0.00625 0.0175 0.030625 0.044375 -0.0625 0.019375 0.013125 -0.003125 0.005625 -0.01875 -0.001875 -0.00625 -0.036875 -0.01125 -0.038125 -0.015 -0.03125 -0.025625 -0.02125 -0.06 0.029375 -0.01125 0.034375 0.00625 -0.04 0.04 0 0.054375 0.033125 0.030625 0.060625 0.0125 0.0175 0.0025 0.023125 -0.056875 +0.040625 0.00875 0.0175 0.0275 0.04625 -0.005625 -0.029375 -0.021875 -0.016875 -0.04625 -0.01875 -0.035625 -0.06375 -0.095625 0.0325 0.02375 0.04 -0.011875 0.015 0.01625 -0.02875 -0.009375 0.024375 -0.0075 -0.00625 -0.01 -0.031875 0.03125 -0.023125 -0.006875 -0.04875 -0.033125 -0.013125 -0.00625 -0.0475 -0.00625 0.03125 0.0425 -0.01625 0.0075 0.059375 0.039375 -0.025625 -0.016875 -0.02375 -0.014375 0.031875 -0.02 0.014375 -0.035 -0.008125 -0.00125 -0.045625 -0.05875 0.0125 0.00375 0 0.023125 0.01875 0.043125 -0.03375 -0.021875 -0.005 0.01 0.00375 0.0375 0.011875 -0.025 -0.01625 0.00375 -0.004375 -0.02375 -0.00125 -0.02125 0.053125 0.003125 0.033125 0.009375 -0.0375 0.014375 0.01875 0.01875 0.06 0.0225 -0.025 0.05 0.026875 0.03625 0.018125 0.024375 -0.0125 0.010625 -0.00125 -0.0375 -0.00625 -0.06125 0.005 0.019375 0.018125 -0.04 0.00875 -0.01875 -0.003125 -0.0025 0.0375 -0.065625 -0.01875 -0.040625 0.041875 0.02125 -0.035625 -0.00625 -0.01375 0.016875 0.015625 0.005 -0.001875 -0.04875 -0.015625 0.00875 -0.029375 0.021875 0.0475 0.004375 0.06375 0.02875 0.03125 0.010625 -0.021875 0.024375 -0.000625 -0.011875 -0.0225 0.0275 -0.003125 -0.031875 -0.005 0.00625 -0.019375 0.010625 -0.013125 -0.000625 0.005625 0.021875 -0.01125 0.010625 -0.005 0.06875 -0.025625 -0.024375 -0.043125 -0.039375 -0.02 -0.03 -0.01 -0.038125 -0.036875 -0.034375 -0.039375 -0.01875 -0.0175 0.029375 -0.014375 -0.02 0.015625 0.030625 -0.045625 -0.030625 0.015625 -0.010625 0.024375 0.035 -0.0075 0.00625 -0.008125 -0.015 -0.00375 -0.01125 -0.02375 -0.01 0 -0.0275 -0.02 -0.026875 -0.00125 0.01375 0.005625 -0.023125 -0.026875 0.030625 0.049375 0.003125 -0.005 0.008125 -0.008125 -0.030625 0.004375 0.016875 -0.0375 -0.000625 0.0025 0.00125 0.045 -0.00875 -0.0175 0.03625 0.005 0.028125 0.004375 0.0425 0.035625 0.029375 0.00375 0.01125 -0.013125 -0.03125 0.0125 0.008125 -0.065625 -0.02 0.003125 -0.034375 0.016875 0.041875 0 -0.015 0.0125 0.038125 0.030625 0.029375 0.019375 0.01875 0.02125 0.02 -0.0325 -0.044375 0.025 -0.0275 -0.05125 -0.025625 0.015 0.014375 -0.04 0.0375 0.023125 0.020625 0.0575 0.008125 0.038125 0.018125 0.011875 0.001875 0.015625 0.024375 0.03875 0.0225 0.00375 0.035 -0.030625 -0.05125 -0.035 0.005625 -0.02375 0.03 -0.011875 0.023125 0.009375 -0.003125 0.001875 0.00625 -0.005 -0.02625 -0.01625 0 0.019375 -0.0075 0.015625 -0.0425 -0.02 -0.033125 -0.010625 0.025625 -0.02 0.021875 0.006875 0.01125 0.020625 0.020625 0.03125 -0.02125 0.020625 0.08125 0.02 0.009375 0.03875 -0.028125 -0.0075 -0.0125 -0.000625 -0.025625 0.003125 -0.02125 -0.024375 0.006875 0.023125 -0.055625 0.006875 0.019375 -0.00875 -0.00625 -0.01 0.000625 -0.0075 -0.01125 0.00375 0.03125 -0.0125 -0.038125 -0.015625 -0.00375 0.025625 -0.049375 -0.015 -0.069375 -0.00375 0.014375 0.02875 -0.02375 -0.000625 0.044375 0 0.061875 0.061875 0.0425 0.02875 -0.033125 0.033125 0.01875 0.023125 -0.024375 0.00375 -0.033125 -0.035 -0.006875 -0.041875 -0.0025 -0.033125 -0.0675 -0.013125 -0.025625 -0.01 0.01375 -0.006875 -0.0125 -0.0025 0.03625 0.00625 -0.035625 -0.05375 -0.03625 -0.044375 -0.038125 0.00875 -0.02875 -0.053125 -0.025625 0.043125 -0.02125 -0.01875 0.026875 0.05875 0.004375 0.0325 0.05 0.080625 0.000625 0.025 0.036875 0.024375 0.031875 0.053125 -0.03875 -0.015625 0.04 -0.000625 0.02125 -0.033125 0.010625 0.02875 -0.015 0.02125 -0.0325 0.0425 0.036875 0.015625 -0.01125 0.030625 -0.018125 -0.04875 0.0325 -0.001875 -0.060625 -0.020625 -0.02125 -0.00125 -0.04 -0.045 -0.016875 -0.03 0.02 -0.00625 0.00125 0.02625 -0.001875 0.0175 0.024375 0.035 0.02 -0.0275 0.03125 -0.011875 0.03375 -0.02625 -0.0275 -0.03375 0.015625 0.045 0.0075 -0.0325 0.02125 0.005 0.00125 0.03125 0.018125 0.024375 0.029375 0.011875 -0.00125 -0.024375 0.00625 -0.004375 -0.006875 -0.04125 -0.025625 -0.015625 0.04375 -0.015625 -0.006875 -0.0275 0 -0.013125 -0.03375 0.07375 -0.009375 0.035 0.024375 -0.020625 0.02875 0.04125 0.00375 0.00625 -0.004375 0.01 -0.055 -0.018125 -0.0175 0.005 -0.024375 -0.0225 0.034375 -0.010625 -0.03375 -0.02125 -0.005625 -0.015625 -0.01375 -0.0725 -0.045 0.0125 -0.034375 -0.02125 0.005 0.014375 -0.01875 0.0075 -0.02375 -0.06875 0.003125 -0.0225 -0.016875 0.0375 0.018125 0.014375 -0.008125 -0.00875 0.00875 -0.004375 0.03 0.055 0.0475 0.049375 0.005625 0.000625 0.02625 -0.003125 -0.0175 -0.00125 -0.035 -0.02 -0.051875 0.016875 0.021875 -0.0125 -0.0425 -0.029375 0.0025 -0.005 0.025625 0.02125 -0.0225 -0.009375 0.008125 0.075 0.01 -0.01 0.0175 0.01875 -0.03875 -0.05375 -0.021875 0.0125 0.018125 0.0225 -0.02625 -0.04125 -0.00875 0.0325 0.03125 0.048125 0.0425 0.013125 0.040625 0.04 -0.01375 0.008125 -0.0025 -0.03125 -0.01 0.00125 0.020625 0.018125 -0.026875 -0.033125 -0.004375 -0.01625 0.0025 0.016875 -0.013125 0.00625 -0.085625 -0.02375 0.0075 0.020625 0.001875 -0.005 -0.01 -0.0525 -0.035625 0.03 -0.015625 -0.018125 -0.01375 -0.033125 0.009375 -0.028125 0.015 -0.008125 0.031875 0.01 0.040625 0.036875 -0.0125 0.041875 0.00375 0.019375 -0.014375 -0.00875 0.021875 -0.015625 0.055 0.009375 -0.038125 -0.006875 -0.00875 -0.013125 0.023125 -0.05875 0.024375 0.03 0.0275 0.033125 -0.05375 -0.01875 0.029375 -0.016875 0.063125 0.023125 0.015625 -0.005625 0.01875 -0.026875 0.010625 0.00375 0.013125 -0.0525 -0.033125 -0.04375 0.010625 -0.01875 0.031875 0.041875 0.03125 0.061875 0.01125 0.055 0.05 0.01 0.046875 -0.015 -0.0275 -0.02 -0.044375 -0.02625 -0.0475 -0.053125 0.00125 -0.006875 -0.020625 -0.0525 0.01875 -0.061875 -0.015 0.014375 0.020625 0.0025 0.00125 0.025625 -0.000625 0.019375 -0.02375 -0.01 0.050625 0 -0.0575 0.00125 -0.000625 -0.019375 -0.029375 -0.026875 0.035 0.02875 0.00625 0.05 0.009375 0.01875 0.043125 0.00875 0.01625 -0.001875 0.04875 -0.025 0.044375 0.001875 -0.044375 0.024375 -0.03125 -0.001875 -0.045625 -0.049375 -0.005625 0.036875 0.01375 0.038125 -0.020625 0.019375 -0.014375 -0.006875 -0.053125 -0.003125 -0.005 0.04 0.023125 0.005 -0.033125 -0.0475 -0.023125 0.023125 -0.005 -0.0175 -0.025625 -0.000625 0.0325 -0.0025 0.08 0.00875 -0.0125 -0.029375 0.019375 0.046875 0.014375 -0.00875 0.030625 -0.031875 0.0175 -0.020625 0.02625 -0.048125 0.025 -0.00125 0.009375 0.008125 -0.028125 -0.015625 -0.001875 -0.01375 0.015625 -0.019375 0.01625 -0.01 0.029375 0.04125 -0.028125 0.013125 0.03375 -0.051875 -0.005625 0.023125 -0.003125 -0.01125 -0.040625 0.019375 0.01125 0.030625 0.066875 -0.00875 0.02375 0.043125 -0.00125 0.071875 -0.04375 0.02125 0.01 -0.046875 -0.0375 0.006875 0.0275 -0.025625 -0.03125 -0.008125 -0.001875 0.0125 -0.01 -0.05125 0.08 -0.019375 0.0225 0.03 -0.00125 -0.023125 -0.00125 -0.01 -0.020625 -0.03875 0.013125 0.01375 -0.03875 -0.02625 0.015625 -0.02875 -0.0125 0.011875 0.023125 -0.02625 0.001875 -0.009375 0.016875 -0.014375 -0.033125 0.044375 0.02625 -0.004375 -0.050625 0.0225 0.030625 -0.0125 -0.0175 -0.024375 0.0375 0.039375 -0.000625 -0.040625 -0.024375 -0.033125 0.001875 0.024375 0.01125 -0.02 0.01375 0.001875 0.035625 -0.006875 -0.00375 0.063125 0.04125 0.005 0.00375 0.03 -0.01125 0.04375 0.023125 -0.014375 -0.010625 0.003125 0.001875 0.06 -0.038125 0.0075 0.0075 0.02 0.00375 0.009375 0.018125 0.013125 -0.008125 0.004375 -0.004375 0.021875 0.03875 0.00125 -0.03625 -0.025625 -0.01125 0.021875 0.01 -0.0225 -0.031875 -0.009375 -0.013125 0.003125 -0.004375 -0.020625 0.005 0.005 -0.005 -0.015625 -0.02125 -0.03625 -0.028125 -0.034375 0.00625 0.00625 -0.035625 0.024375 -0.004375 -0.015 -0.025625 0.005 0.01 -0.000625 -0.016875 0.050625 0.056875 0.029375 0.051875 0.035 0.020625 -0.00625 0.006875 0.000625 0.015 0.00625 -0.051875 0 -0.045 -0.01125 -0.021875 0.020625 -0.02125 0.044375 -0.02875 0.0175 0.005 -0.043125 0.03125 -0.009375 -0.055 -0.026875 0.0475 0.00125 -0.02875 -0.02625 -0.023125 0.0175 -0.0575 -0.020625 -0.0275 0.03625 -0.033125 0.02125 0.011875 0.04375 0.025625 0.013125 0 0.04 0.03375 0.0325 -0.021875 0.04125 -0.045625 0.018125 0.00375 0.0175 -0.045625 0.01375 0.004375 -0.00625 -0.000625 -0.045 -0.000625 -0.01625 -0.019375 -0.00375 -0.041875 0.005 -0.043125 -0.0075 -0.006875 -0.0325 -0.033125 -0.04 -0.031875 -0.000625 0.015 -0.03375 0.00125 0.010625 -0.0225 0.001875 0.074375 0.023125 -0.0025 0.01625 0.02875 0.040625 0.025625 -0.01 0.0525 0.008125 -0.021875 0.018125 0.001875 -0.04125 0.001875 -0.049375 -0.013125 -0.039375 -0.03125 -0.051875 -0.011875 0.009375 -0.0025 0.00125 0.018125 0.0375 -0.039375 0.045 -0.010625 -0.050625 -0.03125 -0.0025 -0.018125 -0.03625 -0.04 0.005625 0.021875 -0.010625 0.044375 0.034375 -0.01 0.01875 -0.005 -0.018125 0.00375 0.04125 0.0225 0.045 0.05375 0.06625 -0.03125 -0.02 0.024375 0.01125 0.00875 0 -0.024375 -0.015 -0.03625 -0.035625 -0.055 -0.035625 0.01625 -0.049375 -0.04125 0.001875 0.01 -0.014375 0.018125 0.018125 -0.00125 0.004375 0.04625 -0.02125 0.01625 -0.076875 -0.045 -0.040625 -0.031875 0.025 -0.026875 -0.044375 -0.00375 -0.058125 0.07625 -0.005 0.019375 -0.00375 0.04375 0.045 0.02125 0.03375 0.008125 -0.01125 0.020625 0.02625 -0.04 -0.03 0.013125 -0.00625 -0.01 -0.044375 0.046875 0.014375 0.014375 0.029375 -0.014375 0.014375 -0.030625 0.03 -0.04125 0.008125 0.019375 0.0175 -0.05625 -0.033125 -0.0075 -0.01375 0.026875 -0.064375 -0.0375 0.02 -0.0325 -0.0275 -0.010625 0.01375 0.014375 0.02625 0.043125 0.03125 0.028125 -0.009375 0.00875 -0.02875 -0.00375 -0.016875 -0.00875 0.024375 -0.03625 -0.030625 -0.04125 -0.03875 -0.04625 -0.0075 0.00625 0.024375 -0.0375 0.04125 0.01 -0.023125 -0.009375 0.003125 0.01 0.006875 -0.0275 -0.05375 0.001875 -0.015625 0.01625 0.00375 0.003125 -0.01375 -0.025 -0.0225 -0.013125 -0.0225 -0.000625 -0.02 0.030625 -0.004375 0.014375 0.00375 -0.01625 0.031875 0.02375 0.00125 -0.004375 0.02875 -0.049375 0.035 0.031875 0.004375 -0.0325 -0.0225 -0.038125 -0.031875 -0.001875 0.026875 -0.00375 -0.03875 0.01 0.00375 -0.00375 -0.01625 -0.000625 0.02 -0.0675 -0.00625 -0.055 -0.0075 -0.05 -0.019375 0.01 -0.02375 -0.000625 -0.035 -0.036875 0.05875 0.02375 -0.010625 0.0425 0.023125 0.011875 0.0075 0.038125 -0.00125 0.021875 0.05375 0.01875 0.053125 -0.018125 0.015 -0.05375 -0.024375 -0.0125 0.0125 -0.0725 -0.0325 -0.0225 -0.00125 0.045625 -0.0025 0.02375 0.004375 -0.016875 -0.00625 -0.000625 -0.003125 -0.0125 -0.005625 0.0075 -0.00375 -0.026875 0.021875 0.01125 -0.008125 -0.040625 0.004375 0.0025 0.005 -0.014375 0.050625 0.03625 -0.005625 0.050625 0.03 0.038125 0.070625 0.0325 0.01375 -0.016875 -0.00375 0.0175 -0.020625 -0.0175 -0.00125 -0.011875 -0.039375 -0.029375 0.025 0.00375 -0.005625 0.02 -0.001875 -0.021875 0.0075 0.011875 0.00125 0.039375 0.005625 0.0025 -0.025625 -0.000625 -0.025 -0.024375 0.005 -0.023125 -0.025625 0.003125 0.044375 0.036875 -0.023125 0.014375 0.041875 0.00625 0.030625 0.038125 0.028125 0.0025 0.03125 0.040625 -0.005 0.02625 0.034375 -0.003125 -0.010625 0.034375 0.005625 -0.001875 -0.000625 -0.011875 -0.0275 0.01625 0.03625 -0.019375 0.0275 -0.020625 -0.024375 -0.016875 -0.00875 -0.019375 0.00875 -0.03125 -0.011875 -0.008125 -0.025 -0.00375 -0.008125 -0.02375 -0.03875 0.046875 0.01375 -0.005625 0.013125 0.033125 0.034375 0.020625 -0.00625 0.025 -0.011875 -0.001875 -0.019375 0.043125 0.003125 -0.01875 -0.024375 0.00875 -0.01375 -0.0175 -0.001875 -0.059375 -0.00625 0.001875 0.009375 0.00125 -0.020625 -0.019375 0.01875 -0.0125 -0.00375 0.010625 0.00125 -0.03875 0.04375 -0.005625 0.03125 -0.018125 -0.019375 -0.010625 -0.004375 -0.001875 0.01 0.016875 0.016875 0 0.035 -0.020625 -0.003125 0.00875 0.020625 0.000625 0.00875 0.009375 -0.005 0.005 0.015 -0.02125 -0.01 0.003125 0.00625 -0.031875 -0.00125 0 0.0175 0.036875 0.00125 -0.0175 -0.00625 -0.00875 0.0275 0.03875 0.0225 -0.005625 -0.031875 0.004375 -0.014375 -0.0275 -0.036875 -0.018125 0.030625 -0.003125 0.02625 -0.0175 -0.011875 -0.0075 0.00375 0.025 0.00375 0.015 -0.00875 0.073125 0.0075 0.01875 0.061875 0.006875 -0.015 -0.028125 -0.018125 0.01875 0.07125 -0.008125 0.01375 0.000625 0.024375 -0.024375 0.0225 -0.0125 0.044375 0.040625 -0.029375 0 0.025625 -0.0225 0.04375 -0.02125 0.03125 0.00625 -0.061875 -0.00375 -0.0125 -0.006875 -0.011875 -0.004375 -0.03125 0.01125 0.003125 0.004375 0.031875 -0.015 0.019375 -0.000625 -0.015625 0.01 0.04125 0.0425 0.01125 0.009375 0.02625 0.01125 0.01 -0.000625 -0.040625 -0.00625 -0.02375 -0.05375 0.010625 0.02125 -0.055625 -0.036875 0.000625 0.0125 0.025 0.004375 -0.00875 0.038125 0.010625 0.03625 0.0075 0.00125 -0.06125 -0.036875 0.00125 -0.004375 0.00125 0.054375 0.009375 -0.024375 -0.03625 0.035 0.01375 0.00875 0.020625 0.05875 0.035625 0.038125 0.01375 0.05 -0.008125 0.03875 0.006875 0.024375 0.00625 -0.03375 0.0275 -0.01625 0.003125 -0.009375 -0.023125 0.00375 0.005 -0.03375 0.05125 -0.023125 0.005625 -0.028125 -0.015 -0.01625 -0.0075 0.03125 -0.02625 0.008125 -0.04125 0.020625 -0.045625 0.00875 -0.006875 -0.00875 0.00125 0.06125 0.018125 0.055 0.015 -0.0175 0.044375 -0.005625 0.044375 -0.005625 0.02625 0.024375 0.021875 0.054375 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_44ms.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_44ms.hrd new file mode 100644 index 0000000..cd84e57 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_44ms.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 44 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035175 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-13.988125 -13.695625 -16.56125 -14.990625 -11.46125 -13.105 -13.97 -14.94625 -9.801875 -11.709375 -9.395 -12.310625 -11.7 -11.201875 -11.649375 -10.105 -11.966875 -7.23625 -9.63 -9.225625 -10.249375 -11.080625 -10.418125 -8.22375 -8.189375 -12.715 -12.028125 -8.81125 -7.66875 -7.770625 -11.74375 -8.55875 -4.926875 -10.298125 -9.923125 -5.8425 -6.094375 -9.416875 -8.475 -7.98125 -3.8875 -2.813125 -5.470625 -7.080625 -7.5575 -6.251875 -7.8675 -7.16125 -6.413125 -5.761875 -6.673125 -5.5375 -5.419375 -5.600625 -4.16 -6.16625 -4.00625 -8.455 -7.403125 -6.309375 -5.795 -7.695 -4.44875 -5.16875 -4.04 -3.874375 -4.381875 -6.925625 -6.675625 -1.08625 -4.300625 -4.60375 -1.8325 -3.895625 -4.778125 -4.2825 -3.60625 -5.289375 -4.481875 -2.55375 -6.4425 -2.67625 -1.29875 -5.163125 -4.594375 -5.93625 -3.175625 -2.966875 -5.14125 -4.89125 -5.276875 -2.2525 -5.786875 -1.558125 0.35125 -3.575625 -3.556875 -1.875625 -1.595 -4.1225 -5.1725 -5.806875 -2.255 -0.846875 -5.485 -1.940625 -4.833125 -2.43875 -3.484375 -1.155625 -0.71 -2.78875 -1.4375 -0.394375 -3.550625 -2.2425 -2.1325 -2.874375 -2.284375 -2.066875 -3.278125 -4.683125 -3.291875 -4.249375 -2.391875 -0.769375 -1.863125 -2.883125 -2.0825 -2.12875 -0.24875 -1.30625 -3.925 -1.77375 -4.6875 -5.43625 -3.758125 -1.37625 -2.984375 1.2725 -1.944375 -3.01875 -3.323125 -0.525 -3.689375 -1.533125 -1.595 -2.13125 -2.944375 -1.166875 -3.8225 -2.824375 0.2925 -4.000625 -3.1625 -0.57125 -2.014375 -2.90625 -0.07125 -1.428125 -2.6175 -1.576875 1.3825 -3.725 -2.1075 0.185 -4.045 -2.805625 0.599375 0.10875 0.52375 -3.76875 -0.8275 -1.07375 -1.7825 -1.658125 -2.390625 -0.36375 -1.64375 0.10875 -3.39 -0.05 -0.425 -1.13625 -2.74875 -2.478125 -1.958125 -0.74875 -1.315 -2.046875 -2.538125 -0.64125 -2.738125 -0.288125 2.645 1.499375 1.64875 -0.040625 -1.999375 -2.64125 -1.183125 0.3575 1.22875 1.205 -0.2475 -2.069375 -3.315625 1.076875 -0.14625 -0.8125 -0.58125 -3.25875 1.271875 -3.4075 0.53625 -1.435 0.02125 0.553125 -1.36875 -0.4275 -0.53 -0.156875 -1.21125 -0.5075 0.295 -0.98625 -1.11625 1.973125 -0.818125 -2.5575 -1.876875 -2.0825 0.60625 -0.4275 -0.148125 0.075 -2.075625 -1.0675 -0.561875 -0.72125 1.195625 1.523125 -0.81875 -0.35 -2.77875 -1.723125 -0.7575 2.430625 -1.7025 1.608125 2.129375 -2.32 -1.133125 -1.143125 0.1075 -2.125625 -1.630625 -0.668125 -0.604375 0.44125 -0.03875 0.348125 -0.504375 -2.26875 -0.3975 -0.239375 -2.49125 0.38875 0.085 -2.1475 -2.57125 -1.56 -1.63 1.136875 2.20375 -0.243125 -3.8525 0.05875 -1.0025 -0.834375 3.448125 -2.230625 -0.099375 -0.799375 -0.16125 -2.1975 -0.8325 1.835625 -2.626875 -1.051875 1.71875 -1.24625 -2.234375 -1.10875 0.876875 -1.184375 -0.4025 -1.08 0.328125 0.739375 -0.561875 0.268125 -2.074375 -0.724375 -0.5825 -0.28 0.8025 0.06375 1.046875 0.634375 0.45375 -1.540625 0.151875 -1.428125 0.948125 -0.495625 -3.089375 -0.53375 -2.4825 -1.25 -1.453125 0.376875 -3.828125 0.1025 1.315625 -0.58375 -1.70375 -1.60625 1.420625 0.368125 0.24875 -0.995 -1.29625 -2.71375 2.846875 0.018125 -0.645 -0.19125 -2.313125 -0.91375 -3.826875 -1.410625 2.570625 -0.3425 0.39125 -1.99 2.138125 -1.409375 -1.708125 0.778125 0.00625 0.758125 -2.161875 -0.335 -2.541875 -0.596875 3.61125 -1.818125 -0.125 -1.1775 -3.15 1.928125 1.314375 -0.43125 0.419375 -4.5375 -0.415 -2.398125 -2.5825 -1.405 -2.0675 0.121875 -1.55125 1.715 1.64 -0.881875 0.1225 1.403125 -0.469375 -1.224375 1.671875 2.639375 0.434375 1.6175 0.706875 -0.648125 -0.369375 1.50875 2.70625 -0.376875 -2.535625 1.591875 -2.339375 0.253125 0.67125 0.138125 -2.136875 -1.5375 0.994375 -0.578125 -0.873125 0.111875 0.83 3.326875 0.625625 -2.2425 -0.9975 0.825625 -1.655625 2.04 2.36125 1.04 0.301875 4.463125 -0.106875 1.23 -0.756875 3.17625 -0.7 0.393125 4.1275 -2.5275 3.121875 0.7425 0.114375 0.4925 1.31 -1.006875 -2.036875 -1.249375 -0.515 -0.969375 -0.634375 0.771875 2.061875 -2.203125 -0.408125 -0.85125 -0.005625 -0.13125 -2.95875 0.379375 1.7375 -0.32125 2.3625 0.4025 3.0025 -4.71375 -0.855625 0.195 1.075625 -0.503125 1.025625 -0.350625 -1.26625 0.995625 -0.6675 0.63125 1.674375 -1.293125 0.321875 -3.125 3.208125 2.30625 3.636875 0.10375 -1.824375 1.46375 -1.169375 1.1225 -2.426875 0.991875 0.77625 2.50125 1.24 0.733125 0.263125 -0.850625 -2.338125 -2.31125 -3.0675 2.4225 1.4175 1.651875 1.595625 -3.059375 0.010625 -0.80125 0.521875 1.85 -0.566875 1.5925 0.289375 -1.2175 0.70625 3.28125 -2.885625 -3.515625 -0.5625 1.401875 -0.83375 0.10125 0.981875 6.388125 0.379375 0.204375 -2.708125 -1.56 2.919375 -1.10875 -0.74375 1.433125 -0.784375 -1.398125 0.181875 -1.693125 0.785625 -1.41375 -0.779375 2.64 2.45625 -0.20375 1.24125 -0.841875 0.04625 1.35 -1.63875 0.556875 1.885 3.244375 1.751875 2.566875 0.328125 0.03 3.435625 -1.0325 1.3175 1.63125 0.8575 -0.95875 -0.701875 -0.8875 -0.146875 -2.23875 -1.1175 1.816875 -3.079375 0.103125 1.3825 -0.295 1.7025 2.18625 1.426875 -1.374375 4.04375 4.786875 0.095 -1.650625 0.648125 1.710625 -1.425625 1.15125 1.548125 -0.756875 2.2025 1.513125 1.946875 -0.345625 -0.11375 2.479375 -2.05125 -1.458125 -0.891875 -0.366875 -1.57 2.409375 1.616875 2.01625 0.501875 1.541875 0.06875 -0.66 -1.47875 3.29625 -1.345 -1.795625 0.268125 1.75125 0.790625 -2.096875 1.8725 3.208125 -1.600625 -2.35375 1.480625 2.305 -1.630625 2.414375 0.544375 -1.77125 0.7525 1.168125 -1.4425 0.84125 0.255625 -1.716875 -1.641875 -1.179375 1.13375 3.23375 1.541875 -1.089375 -0.93 -2.38875 1.695 0.105 1.5275 -0.04875 -0.685 1.205625 -1.49 1.32 -0.80375 -3.04375 0.030625 -1.285 -0.89375 1.36375 -0.454375 -2.68 -1.814375 -0.095625 1.79375 0.118125 -1.523125 -1.41 -2.305 -2.50375 -2.039375 -2.205625 1.21625 1.18875 0.94875 -0.32875 -0.353125 0.530625 2.1475 -0.301875 0.86125 1.199375 1.193125 -0.1725 0.035 0.926875 -0.6725 1.35375 -1.063125 -1.439375 -0.634375 -1.4575 1.005625 1.448125 0.189375 -0.151875 -0.795625 0.475625 -0.009375 1.950625 0.115625 -1.115 4.024375 -0.3775 1.07125 1.27125 0.58125 -0.579375 -0.334375 2.46625 -0.263125 0.2375 -0.036875 0.461875 2.835625 -1.24625 1.289375 0.268125 1.75875 -0.36875 -3.035625 -3.625 -1.341875 -1.77875 -1.445625 2.084375 1.493125 3.54625 0.441875 -0.520625 -0.195625 2.58625 1.826875 -1.274375 -0.85375 -1.87625 1.16625 -0.866875 -0.01625 0.463125 -1.225 -1.590625 -0.460625 -2.505 0.918125 4.743125 1.814375 -0.484375 0.345625 -0.9975 -0.59875 0.0525 -1.271875 0.605625 3.458125 -1.239375 0.37 1.6775 0.530625 2.2325 -0.369375 -1.0925 -1.04125 0.525 -0.469375 0.4425 -0.156875 0.869375 1.10875 1.70875 1.958125 2.141875 -1.45875 -2.601875 -0.838125 0.071875 1.128125 3.82 -0.48375 -0.341875 -0.2 0.211875 -1.078125 0.2 3.70375 0.321875 -0.58625 -0.32 -3.735625 -0.41 0.518125 3.71375 1.081875 0.995625 0.145 -2.078125 -2.066875 4.1475 0.490625 1.565625 1.13 -2.194375 1.759375 -0.5725 1.585625 2.74625 -3.335 -0.84875 -0.421875 1.1025 -1.99875 0.139375 -0.160625 0.70625 2.284375 0.73125 -0.73375 -1.856875 -1.143125 -0.74375 2.906875 -0.020625 -1.38625 2.244375 0.155625 0.1425 -0.8125 -1.59125 -1.431875 3.986875 -0.3325 0.235625 0.8625 0.991875 1.619375 0.450625 0.203125 2.6075 0.524375 -0.205625 -0.629375 4.270625 0.999375 -0.42375 0.53875 1.49625 -0.6575 -1.3825 -1.358125 2.256875 -1.685625 0.674375 1.76875 0.4675 -1.413125 -0.59625 1.720625 -3.474375 -1.276875 1.314375 0.3825 1.46 -0.25875 3.534375 -1.0275 -0.821875 -1.995 -2.858125 1.34625 -1.025 0.785625 0.023125 1.088125 0.979375 2.868125 -2.02625 1.58875 0.67 2.70875 -2.12625 1.47125 -3.150625 -1.76125 -1.9075 -0.23625 0.00625 0.480625 -2.15125 0.36875 0.38 1.334375 0.638125 0.27125 -1.706875 -1.88125 -2.26 -1.336875 -1.659375 -1.04375 1.68375 0.69 -0.676875 -0.443125 -3.765 -1.378125 1.75 -1.74625 -0.9425 -0.045 0.104375 0.505 -0.623125 0.219375 3.0575 -0.813125 -1.9025 2.13125 -2.571875 1.978125 1.348125 -0.3875 -0.625 -0.2375 0.960625 1.5925 0.531875 1.195625 0.49625 -2.42625 2.003125 1.826875 0.1075 1.985 -1.0675 0.025625 0.5 0.828125 0.191875 6.635 0.2 1.843125 -1.561875 -1.7025 1.9325 -1.875 2 -1.7775 -0.364375 1.143125 0.981875 2.098125 -1.626875 -1.83125 0.458125 2.89 -2.043125 1.2 0.076875 0.09625 2.751875 -0.405625 0.148125 1.445625 -1.098125 0.151875 1.08375 1.14375 -0.146875 1.11 0.970625 4.4525 -3.856875 1.10625 0.296875 0.643125 -3.3625 -1.7975 1.140625 -1.42125 -1.4125 1.254375 -0.888125 0.121875 0.1375 0.870625 -1.234375 2.02375 1.0275 -0.843125 -1.99125 0.675625 1.326875 -2.1525 -0.603125 1.9775 -1.269375 -1.295625 -1.79125 0.314375 2.30875 -0.3525 0.53625 2.726875 -1.43375 0.6725 -1.904375 -0.808125 1.86625 1.4575 -1.105 -2.105 -1.276875 -0.80375 1.28125 1.546875 0.420625 -1.288125 2.121875 -0.131875 2.45125 1.845625 0.055625 1.818125 0.186875 -0.825625 -0.344375 0.380625 -1.705 -0.005 -2.6025 0.90875 -1.29125 1.571875 1.641875 -0.081875 0.9525 -1.51 0.3275 1.846875 -0.099375 -0.493125 0.030625 -0.119375 1.833125 1.6625 1.294375 2.646875 -0.115625 1.625625 1.3 1.501875 0.81875 -0.71375 4.324375 -1.35625 1.7375 2.04125 1.948125 -2.38125 1.8775 -0.544375 -2.429375 -4.944375 0.379375 0.404375 0.938125 3.0975 -1.303125 -1.59 -2.60625 1.368125 -0.060625 -0.888125 -0.4225 -0.503125 -0.224375 1.379375 -2.209375 -0.6875 -0.6975 2.29375 -1.409375 1.55625 2.040625 1.0775 0.785625 1.28375 -1.57375 -1.24375 0.57375 3.476875 -0.29375 -0.021875 -0.754375 -0.478125 -0.155625 -0.11625 1.66125 0.409375 0.205625 -0.735625 -0.275625 3.365625 -1.446875 -1.34125 0.7525 -4.72875 -0.06875 0.608125 2.595625 1.01125 0.216875 -0.530625 2.115625 -1.376875 0.57375 1.340625 1.169375 -4.569375 -5.1025 0.17875 1.861875 -0.885625 1.128125 -1.2875 0.0775 -2.453125 1.4925 -0.245625 -1.42625 1.865625 -0.495625 -0.42875 1.22125 -0.716875 1.18125 2.69375 0.8825 1.04375 0.02875 1.211875 -1.578125 1.570625 2.115 0.465625 -0.433125 -0.75125 1.285 0.91375 0.499375 0.616875 -0.17 0.795 1.555625 2.446875 -0.648125 0.155625 -0.88875 -3.0675 -1.59375 -1.5675 0.165 -0.919375 2.321875 -0.698125 -1.02125 -2.05125 0.9025 -3.978125 0.779375 -1.9525 -3.798125 1.624375 0.028125 1.36375 -0.5875 -0.293125 0.33125 0.465 1.545625 1.525 0.521875 -0.62 0.475 -0.574375 -2.1725 0.90375 -0.001875 1.365 0.959375 -3.086875 2.103125 0.13875 1.3525 -1.581875 -2.003125 0.49375 1.63625 0.5225 1.608125 1.82375 2.62875 0.569375 -0.220625 -3.681875 1.021875 -3.441875 0.113125 -0.3525 2.030625 2.76125 0.928125 0.949375 -2.903125 0.54 -2.424375 -0.285 0.86625 -0.52625 0.999375 -1.860625 -0.8575 -3.7475 0.82125 2.603125 3.134375 0.14 -2.305 1.94 0.598125 0.106875 -4.828125 -0.63875 -0.5775 0.95375 1.271875 1.368125 3.636875 -0.57875 1.138125 -0.271875 -2.970625 1.12625 1.2125 -0.81125 -0.145 2.37375 0.734375 2.105 1.1325 -2.28125 3.99125 1.4 0.93125 -0.283125 1.790625 -0.901875 2.309375 2.018125 0.57875 -0.65875 -0.613125 -1.589375 0.17625 2.938125 -1.731875 -0.341875 -0.05 1.999375 -1.545 -0.16375 -0.953125 1.521875 -0.33875 1.893125 1.733125 3.4575 0.15 3.575625 0.29125 3.14625 -0.250625 2.289375 -1.715625 0.6025 1.823125 0.06625 0.284375 -1.046875 3.24875 1.479375 -0.20625 -1.33 1.218125 0.804375 1.83625 0.94375 0.233125 1.535625 0.7225 0.2475 -1.098125 -0.794375 -0.530625 0.4775 -0.929375 1.5075 -1.025 0.0025 -1.3125 -1.105625 0.008125 0.933125 1.06625 4.148125 2.133125 2.309375 -0.586875 -1.69375 0.86625 2.590625 0.6 -2.0775 0.829375 -0.010625 -0.713125 -1.363125 -0.5175 -1.553125 2.010625 2.1325 1.94125 -0.411875 0.585625 0.524375 -1.001875 1.48375 2.484375 -0.424375 -2.048125 -0.615 3.420625 -2.751875 -0.63125 1.07375 0.18625 3.858125 1.66 0.694375 0.528125 0.934375 1.435625 0.89 -1.2125 -2.23875 -0.419375 -1.436875 0.58 -1.015625 1.1925 -1.7075 0.180625 -1.21125 0.605 1.43125 3.260625 -2.215 0.97625 -0.2475 0.81625 -1.55125 1.891875 0.766875 0.221875 -2.038125 0.709375 0.645 -0.416875 1.1625 -0.32125 -1.265625 0.299375 0.301875 -1.289375 1.549375 -0.925 1.19875 -2.055 1.2975 -2.185 -1.684375 0.121875 -3.66 2.385625 -0.338125 -2.140625 0.989375 -0.913125 2.645625 -0.610625 0.1225 -0.49 -1.08625 2.35 -0.938125 -2.14 -1.149375 -1.389375 1.0775 3.37 0.383125 0.54125 -0.39125 0.1525 0.0025 1.174375 -0.2325 -1.915 2.68125 -3.5075 1.593125 -0.40875 -1.774375 -0.806875 -1.593125 0.495625 0.2 0.95 -0.920625 4.258125 3.14625 -0.755625 -0.84 -0.244375 1.41375 0.661875 0.31 1.469375 -2.02625 -0.884375 -0.23625 0.1375 0.703125 -0.246875 1.4525 -0.335625 -0.77125 -0.39875 0.506875 1.50375 -2.9975 -1.146875 -3.403125 2.69125 4.564375 -0.9725 0.776875 0.790625 0.6875 2.04 0.665 1.605 0.653125 0.084375 -1.415625 3.476875 -0.44625 -1.254375 -0.03 0.39125 -0.540625 -1.42625 1.900625 -1.38 -1.201875 -0.72375 0.436875 -0.23875 0.646875 0.004375 3.135 0.6825 -1.76 0.25875 -0.59375 0.921875 0.7275 0.655 -1.24125 1.1125 -0.95875 0.55125 -1.625 -4.140625 0.009375 -0.05 0.57125 1.450625 2.89375 0.685 -0.825625 -1.404375 -2.0175 -2.388125 -1.19875 0.08875 -0.40125 0.89 -2.04125 -1.56375 -0.213125 -1.346875 2.733125 0.935625 1.755625 -0.44375 -2.289375 -0.048125 -0.74875 -0.765625 0.645625 1.395625 -2.698125 -0.67625 1.815 1.604375 -0.104375 -3.246875 0.079375 -0.91875 2.5625 2.446875 +-15.61625 -20.509375 -17.77 -17.094375 -15.0325 -18.9925 -16.371875 -16.113125 -13.148125 -17.04125 -16.831875 -13.86375 -13.376875 -14.989375 -14.140625 -13.173125 -9.689375 -11.56 -10.249375 -12.808125 -12.425625 -11.6075 -14.324375 -8.480625 -11.216875 -11.829375 -10.479375 -8.18 -11.63625 -8.80625 -10.0875 -6.1 -9.028125 -14.261875 -10.55375 -8.54375 -10.00375 -9.34375 -10.029375 -8.121875 -7.99375 -8.890625 -10.87375 -8.459375 -10.218125 -9.91375 -7.1075 -6.706875 -9.35375 -8.408125 -8.08875 -7.495 -7.0175 -7.921875 -6.824375 -9.238125 -8.189375 -6.1475 -4.8325 -4.274375 -5.4275 -7.701875 -4.753125 -5.55625 -4.67 -5.839375 -3.02 -6.468125 -6.34125 -2.784375 -6.190625 -6.869375 -5.466875 -6.099375 -4.065 -5.318125 -3.10125 -7.901875 -7.1775 -4.05875 -3.805 -4.42125 -6.418125 -8.7375 -5.335625 -1.91125 -3.7825 -6.15625 -2.09375 -3.64 -2.188125 -5.469375 -5.005 -2.8875 -3.941875 -3.46125 -2.97 -8.46625 -5.485 -7.300625 -1.900625 -2.0625 -2.5025 -4.841875 -5.111875 0.130625 -5.61875 -3.229375 -4.11125 -2.966875 -2.32375 -2.036875 -5.775 -2.15625 -3.12875 -1.67375 -2.6475 -3.560625 -4.308125 -3.94875 -2.575 -3.023125 -5.761875 -3.761875 -2.3825 -3.28875 -4.005625 -4.143125 0.00375 -0.4175 -6.826875 -3.63375 -1.9525 -3.825625 -0.373125 -3.4725 0.92625 -1.3525 -2.1925 -0.086875 -1.096875 -3.42875 -3.5925 -0.245625 -2.02375 -2.15125 -1.74375 -0.5 -4.2375 -1.0275 -1.67125 -2.91625 -4.69625 0.07625 -3.476875 -1.408125 1.874375 -1.921875 -2.274375 -0.488125 -1.495 1.5225 0.67 -0.80875 -1.125625 -1.36 -2.125 -2.144375 -3.183125 -4.41 -0.36375 -2.14125 0.46875 -2.705625 1.120625 -2.755 -1.37 1.415 -0.426875 -1.651875 -1.895 -2.96 -0.333125 -0.2225 0.25 -2.053125 -3.1075 1.269375 -0.953125 -2.02625 -2.1375 -0.311875 1.19875 3.2075 -2.696875 -3.241875 -2.73 0.71 -2.024375 -1.606875 0.705 -0.1325 -2.8175 -3.355625 -3.599375 -3.20125 -3.39625 -0.735625 -0.769375 1.328125 -1.13 1.859375 -0.59875 0.5225 -1.669375 -3.0775 2.336875 -1.008125 -1.2125 -0.453125 -1.805625 -2.02125 -0.36 -0.106875 -1.403125 -1.020625 -2.11625 0.52375 -0.2175 -0.039375 2.743125 -0.750625 0.928125 -1.694375 -1.87625 2.628125 -1.011875 -0.81625 -2.163125 0.190625 3.99 -0.644375 2.10875 -3.313125 -3.084375 -1.860625 0.678125 -2.4175 -1.6325 -1.57875 -2.52 -1.408125 -1.361875 0.966875 -3.260625 0.156875 1.24 3.705 -2.75125 -0.526875 -1.448125 -1.921875 0.06 -5.20125 1.75 0.319375 0.125 -1.88375 -1.940625 -1.716875 0.836875 0.133125 1.481875 0.124375 -0.553125 1.553125 0.68125 -1.046875 -1.716875 -0.031875 -0.615 1.95625 -0.67 2.6475 -0.97 0.5275 1.193125 0.82875 0.14875 0.7125 1.398125 0.41375 -0.925625 2.6925 -2.37125 -3.343125 -1.9475 -2.249375 -0.145 -1.646875 -3.06125 -0.99625 -2.068125 -0.675 -2.3 0.301875 -1.71375 1.245625 -1.86 -2.865 2.15875 -0.460625 -0.828125 1.90875 -1.46625 -1.85125 -0.3 1.54125 0.728125 -4.13125 -2.485625 -1.455625 1.72625 -2.939375 1.235 -0.404375 -1.57875 -2.53125 -0.0125 -0.9375 3.4475 -1.158125 -1.440625 -3.19 2.75125 -0.78125 -2.830625 -0.22 -0.605 4.1975 -2.2175 -0.888125 -1.21125 -0.02625 2.25875 0.5275 1.67375 0.1125 -1.795625 0.01875 -1.14625 2.965 0.03875 -0.068125 -1.8375 1.906875 3.631875 -1.153125 -3.3125 -1.515 0.341875 2.21625 -1.359375 1.365 -0.400625 -0.114375 -0.670625 -0.30125 -3.2675 -0.548125 2.480625 -1.02875 -1.57 0.58875 -2.315625 -1.945625 0.6725 0.314375 3.850625 -1.075625 1.124375 -2.98875 -0.66 -0.539375 3.906875 1.865 -1.930625 0.28 -0.268125 0.665 1.321875 -2.008125 1.1175 -1.03625 0.391875 1.9825 1.521875 -0.418125 -1.271875 1.250625 -1.63 -1.651875 -0.040625 1.774375 3.1275 0.8325 0.666875 2.771875 2.594375 2.356875 -3.979375 1.4175 0.500625 0.285 1.033125 0.65875 -0.443125 -0.60875 0.8175 -1.39625 -0.246875 -1.741875 1.20625 0.46625 -1.04375 5.26875 -1.516875 0.68375 0.84625 -1.433125 -2.315 3.226875 -2.96 2.9375 -2.511875 -1.53125 -1.3425 -2.766875 -1.495625 0.8925 2.976875 -2.4 -1.2825 -2.40875 -0.720625 1.54 -3.905625 0.295 -0.26625 -3.689375 3.300625 3.629375 1.965 -0.118125 1.800625 1.16875 -1.370625 2.15875 1.544375 -3.21875 -1.71 -0.46375 1.06375 -0.729375 0.595625 -1.0675 -0.4175 -1.335625 -1.383125 2.18125 -4.45875 0.329375 -1.214375 -0.2975 1.81375 -2.00125 1.96 -0.028125 2.425625 0.66875 2.14125 0.3925 -2.89 -1.22 -0.126875 2.100625 2.545 -0.47875 3.624375 0.11625 -0.344375 -0.13125 1.77125 3.323125 -0.49 -1.748125 -1.2475 1.915625 0.373125 0.48125 0.409375 0.383125 -3.905625 3.36875 1.45 1.37125 2.443125 -0.370625 3.638125 1.636875 2.006875 1.410625 0.184375 0.16375 1.186875 1.57125 -0.28375 0.78625 -0.490625 0.02875 1.081875 1.20375 -0.073125 0.595625 0.125625 1.788125 0.680625 -0.433125 2.1175 1.025625 -0.998125 0.346875 1.253125 -0.38 -1.345 -0.6825 -1.290625 -0.233125 -0.523125 -0.295 -1.035 2.86625 0.0825 -0.325 0.751875 -1.093125 2.38625 0.069375 -0.019375 1.1775 -2.4125 -0.7775 2.721875 -0.811875 2.25625 -0.265625 0.11875 1.58375 0.795625 1.068125 2.72875 1.571875 0.723125 -0.749375 -0.821875 1.61 -2.0175 2.355 0.216875 0.7475 1.936875 0.034375 2.74875 0.45625 -1.014375 2.191875 -2.945625 -0.135625 -2.446875 0.665625 2.01875 -2.30375 -2.35125 -0.253125 -2.13625 -2.7775 -1.19125 2.71125 -3.270625 1.03625 -0.410625 -2.109375 -2.085 -2.221875 2.17875 -2.87125 -0.539375 -0.62 0.628125 -0.1225 -1.0675 -1.56375 0.746875 0.33125 -0.990625 0.6875 0.260625 1.684375 -2.53625 -0.479375 -2.725 -1.25875 2.630625 3.5575 3.5025 1.8175 2.601875 -0.715625 -0.366875 -0.719375 -1.5875 0.286875 1.045625 -0.388125 -0.820625 2.11125 1.050625 0.37125 0.0625 -0.7725 1.514375 -0.568125 -0.616875 0.950625 -1.433125 1.073125 0.6225 0.089375 -1.3375 1.494375 4.06625 -0.323125 1.03625 3.20125 -1.886875 -1.675625 -0.633125 -3.600625 -0.5375 -1.433125 -0.08375 -0.53 1.135625 -2.421875 -3.534375 0.960625 -1.833125 0.015 1.440625 -0.724375 -0.899375 0.921875 -0.853125 -1.475625 3.8825 1.235625 -0.30625 -0.75125 -1.68 -0.06 0.486875 0.1525 -2.2625 0.770625 0.559375 -1.783125 3.35125 -1.69 2.3075 3.49625 -0.8325 0.858125 4.435625 -0.983125 2.43625 -1.470625 -0.14625 1.391875 0.6275 2.116875 0.6275 -1.381875 -0.799375 -4.48375 -1.51375 -1.3225 1.5625 -1.079375 -0.9275 0.421875 -2.493125 -0.800625 2.729375 -0.08 2.5925 1.64375 -0.619375 0.385625 0.375 -0.0825 1.230625 -1.764375 0.559375 2.078125 -0.87125 -0.44375 1.258125 0.928125 1.065 1.14875 3.988125 2.760625 1.821875 1.3475 2.3 0.85 -0.4125 -0.016875 0.246875 -2.94625 -0.324375 1.474375 3.065 1.12 4.176875 -1.6475 1.308125 0.410625 -0.308125 -1.68375 -0.92625 -0.85 2.1925 0.378125 -1.401875 -0.95125 2.48875 2.370625 2.85375 -0.085625 -0.19375 1.701875 -2.739375 2.205625 0.448125 1.039375 1.7725 5.0625 0.636875 4.47125 -1.476875 -2.07125 0.109375 3.498125 -0.15625 -0.906875 0.854375 -1.511875 -0.13 0.015625 -2.260625 -1.949375 0.278125 1.9275 -0.565 0.306875 -0.77125 0.7125 0.668125 0.61125 -0.599375 2.225 -0.794375 -2.074375 -1.204375 -0.689375 1.008125 0.0525 -3.30125 2.138125 -0.75875 0.691875 0.948125 0.060625 -1.35125 -0.27375 0.1525 -0.128125 -0.6125 -0.2075 -1.69875 1.62 0.305 2.533125 -1.32375 -2.328125 0.1475 -1.810625 -0.875625 1.133125 -0.63625 2.320625 1.076875 1.19375 0.3775 -0.821875 -0.6175 1.026875 2.60875 1.423125 0.545 1.355 -0.9125 0.083125 5.000625 0.636875 -2.698125 1.79625 2.931875 -0.341875 -0.649375 0.346875 -0.3375 0.256875 -2.606875 2.260625 3.348125 -0.258125 -2.186875 -1.635625 -1.37375 -0.74625 0.860625 1.92 1.109375 4.12875 -2.7825 0.271875 -0.525625 0.109375 1.26 -3.87 -0.203125 -2.5275 -1.40125 0.24875 1.32 0.895 0.639375 -0.3075 -0.416875 -1.568125 0.434375 -2.57875 -0.016875 0.876875 -0.7125 1.115625 -2.144375 -1.015 1.078125 2.07125 -1.1125 -1.080625 4.01875 -0.41125 0.994375 0.743125 0.158125 0.126875 -1.815 2.04375 -1.3725 3.82 0.49375 0.413125 1.73 2.225 -1.596875 1.530625 0.88125 1.089375 2.0775 -1.8975 2.738125 0.03 -1.185625 -2.966875 0.51 -0.034375 -0.07 0.57625 -0.831875 1.055625 -2.90125 -1.619375 -1.293125 1.475 0.053125 3.065625 2.365625 -0.046875 -0.2825 -0.261875 -0.266875 2.054375 -1.814375 0.095 -2.769375 3.24125 0.1975 1.054375 1.3875 1.059375 -0.570625 2.63375 0.66875 -0.56375 1.759375 1.471875 -0.236875 -1.123125 -0.4475 1.749375 -1.59875 -0.128125 -1.31875 1.2625 0.675625 3.510625 -0.7325 1.283125 0.79 0.91875 3.9825 0.58875 -1.651875 1.071875 0.004375 1.741875 0.55125 2.676875 -0.91375 0.505625 0.37 -0.78 0.140625 -1.249375 -1.248125 0.695 -0.9425 -0.351875 -1.558125 2.798125 -0.20875 1.423125 1.638125 -1.678125 4.153125 -2.414375 -0.139375 -0.638125 -0.285 -0.9 -1.908125 3.145 -0.281875 -1.8625 -1.183125 -1.21 1.926875 1.12375 -0.928125 2.1425 2.80125 1.198125 -2.2675 -1.238125 -0.870625 -0.18 1.543125 0.54 1.63375 4.425 0.618125 3.268125 1.850625 0.6925 3.359375 0.4725 -0.331875 -0.9125 2.4075 -1.09125 -0.009375 -0.449375 -1.246875 -0.04625 -0.593125 0.12625 0.663125 -1.5225 -0.21 1.2875 2.13875 1.163125 -1.488125 0.8375 -1.138125 1.46625 1.180625 1.740625 -3.02125 -0.175 0.733125 -0.51875 -0.06875 1.370625 1.766875 -3.288125 0.79625 1.508125 0.410625 0.615 0.79875 1.978125 -2.815625 -0.6975 -1.9825 3.19875 0.02625 0.92125 0.870625 0.61625 0.04625 2.1275 0.3 -1.056875 1.713125 -0.47125 -0.816875 1.69875 1.584375 -0.665 1.436875 -0.26875 -0.463125 -2.15375 -3.56 2.12125 0.09875 1.34375 4.81125 -1.125 0.285 2.12625 -3.396875 2.396875 1.791875 -0.001875 -0.50125 2.409375 2.303125 0.758125 -0.345 -0.62375 -1.66625 0.934375 0.82875 -1.5075 2.103125 -2.318125 2.31625 -0.2 -0.09875 0.541875 -1.550625 -1.5625 -0.0025 -2.001875 2.85625 1.31375 0.950625 0.310625 -0.53875 3.97625 1.060625 -0.110625 0.254375 -0.774375 -0.625625 2.063125 1.26625 -0.139375 -1.59 1.87 2.021875 0.56 -0.9575 4.02875 -0.2975 -0.83 -1.034375 -1.963125 0.316875 2.949375 -1.886875 -0.3 -1.358125 0.9975 2.759375 1.85375 -1.39625 1.3025 0.436875 1.2875 0.685 0.890625 0.47 -2.16 2.08875 2.943125 0.36875 0.6275 -0.7875 1.22875 -1.306875 0.0475 -0.461875 1.2775 -0.763125 -1.13125 3.84625 0.756875 -1.634375 2.753125 -0.708125 -0.334375 -1.910625 -0.535625 -1.29125 0.449375 -0.94375 1.9625 -1.5025 1.84 0.9475 -1.46625 0.671875 -0.491875 1.3675 1.4425 -1.681875 1.78375 -0.2075 -1.586875 0.763125 -0.690625 0.99625 0.119375 3.046875 0.69875 -1.036875 0.07625 1.959375 4.868125 5.941875 1.25125 2.294375 -1.220625 0.3975 -0.999375 1.384375 -0.364375 -1.22 -1.25625 -2.8875 -1.036875 0.33875 0.685 2.919375 -2.03625 1.1475 -2.01125 3.498125 1.0975 0.119375 0.7275 0.96875 -0.170625 1.449375 0.19875 -0.69625 -0.87625 -2.511875 -1.893125 -2.95125 -1.325 -0.76125 0.19875 -0.124375 -0.273125 -0.336875 1.640625 0.0875 0.18 0.994375 0.57 -0.204375 4.61625 0.440625 1.135625 -0.790625 2.35375 -0.388125 -1.6375 0.0025 -0.134375 1.53875 -0.399375 -1.17375 -0.78625 -0.49 2.4975 2.850625 -1.118125 0.805625 -0.16125 0.369375 -0.884375 -0.470625 2.1775 -0.39375 3.43625 2.490625 -1.67375 2.3175 -0.02 0.848125 1.206875 -0.19125 -2.35875 3.08375 -0.821875 -2.088125 0.509375 -2.795 0.62875 -0.3125 -0.05 2.3525 -0.520625 -0.775 -0.341875 1.05875 2.5075 -0.348125 -1.720625 -0.58125 1.614375 -0.76 0.66 -1.424375 0.01125 2.72625 0.725625 0.989375 0.4425 1.58625 2.20125 -1.166875 1.478125 1.166875 0.159375 -0.3975 -1.41625 1.993125 1.3225 -1.740625 -0.265625 -3.346875 1.01 -1.000625 -0.074375 -0.04625 2.031875 0.165625 1.221875 0.1875 0.86 -5.1575 1.92125 0.579375 1.885 0.750625 -0.32625 -0.2025 1.01875 3.51375 0.690625 -1.70375 0.255 2.3125 -1.119375 2.208125 -0.65875 -2.959375 -1.645625 -0.554375 2.463125 0.335 1.208125 -0.573125 1.06 -1.195 0.910625 -0.475625 -1.629375 2.51 0.4525 1.925625 0.846875 1.123125 -2.070625 -0.911875 -0.084375 -0.46875 0.9525 0.2325 -1.694375 -2.648125 2.905 -1.289375 -2.813125 -0.24375 -4.275625 -0.108125 -2.9775 0.723125 2.445 1.128125 -0.079375 -2.1025 -0.156875 0.57125 1.213125 1.431875 -1.608125 -1.004375 0.685 -1.696875 1.051875 0.086875 -0.4675 2.62375 0.0075 -1.10125 2.839375 2.098125 0.24 2.1 -0.82 0.168125 1.221875 -0.660625 5.949375 0.084375 2.735625 -0.060625 1.79875 -1.67375 0.99625 1.7675 -0.88875 -2.0275 -0.165 1.104375 0.42875 2.02125 -0.545625 3.805 2.750625 1.216875 0.41625 1.044375 0.75625 -0.865 -0.389375 0.9125 1.626875 -0.448125 -0.275 0.69125 -1.249375 0.82625 0.001875 0.845625 -2.52 -0.28625 -0.61625 0.755 2.02875 -1.115625 0.825625 0.14375 -2.81875 2.42 1.64625 -0.7575 -0.998125 0.34625 -1.501875 -1.63375 -1.705 0.629375 0.255625 -0.0775 -0.498125 -0.78 -0.20625 -0.38875 0.1575 -0.965 0.356875 -0.391875 -0.1075 -1.348125 -0.204375 -0.16625 1 -1.27625 -0.5775 0.69375 -2.05125 0.05375 1.673125 -2.239375 0.54 -0.4025 -0.851875 3.511875 1.22375 0.106875 -1.255 -1.773125 1.6025 2.65125 6.200625 -0.826875 0.241875 0.446875 1.20875 0.726875 -0.649375 -1.715625 0.565625 -1.9325 -0.249375 -2.630625 -1.14625 -1.8325 -2.305 -0.755 1.78 2.811875 2.023125 0.7825 0.019375 3.61625 -1.715 2.329375 0.50875 -0.2025 -0.829375 1.13625 2.829375 0.416875 -1.161875 2.340625 -0.189375 4.49375 3.7025 1.318125 -1.36875 3.939375 -0.90625 0.22 -0.4 3.471875 1.07375 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_44ms_ref.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_44ms_ref.hrd new file mode 100644 index 0000000..1244994 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_44ms_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 44 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035176 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-0.03625 0.00125 -0.009375 0.011875 0.014375 -0.005 -0.00625 0.01625 0.02375 0.003125 0.043125 -0.03 -0.04 -0.03625 0.00375 -0.06375 -0.033125 0.02125 -0.01125 0.019375 -0.008125 0.048125 -0.025625 0.016875 0.02375 0.05875 0.084375 0.056875 0.01875 0.045 0.029375 0.001875 0.025625 0.03625 -0.000625 -0.02 -0.015 -0.00875 -0.000625 -0.020625 -0.04 0.025 -0.013125 -0.013125 -0.036875 0.000625 0.010625 -0.003125 -0.000625 -0.013125 -0.043125 -0.015625 -0.0575 -0.0175 -0.04125 -0.068125 0.00375 -0.0125 -0.03375 0.014375 0.044375 -0.006875 0.044375 0.023125 0.049375 -0.00875 0.061875 0.055 0.009375 0.026875 0.04875 0.0425 -0.00375 -0.00375 -0.006875 0.02875 -0.065625 -0.04125 -0.040625 -0.039375 0.018125 -0.011875 -0.019375 -0.0025 -0.01125 -0.025 -0.02375 0.00125 -0.01625 0.02125 -0.041875 -0.015 0.01625 -0.03125 0.001875 -0.045 -0.03375 -0.06 0.04125 -0.009375 -0.054375 0.041875 -0.02625 -0.05125 -0.015 -0.023125 0.02625 0.024375 0.085625 0.05 0.01375 0.003125 -0.003125 0.03 0.008125 -0.003125 -0.009375 -0.0075 -0.015 -0.0475 0.009375 0.005 -0.005625 -0.013125 0.019375 0.0175 0.001875 0.01375 -0.001875 -0.015625 -0.03125 -0.02375 0.015625 -0.048125 -0.015625 -0.02 -0.031875 -0.005 -0.035 -0.03625 -0.025625 -0.0275 -0.02875 0.005625 0.046875 0.00875 0.01125 0.01375 0.0375 0.06375 0.039375 0.023125 0.03375 0.0025 0.03 0.0125 0.01 0.00125 -0.036875 -0.01625 -0.039375 -0.008125 -0.035 -0.015625 0.030625 -0.02625 -0.00875 0.016875 0.02125 0.029375 -0.03 0.029375 -0.0125 0.010625 -0.0125 -0.08625 -0.00625 -0.03625 -0.06625 -0.03875 0.00375 0.00875 -0.010625 0.021875 -0.0175 0.015 0.01 0.07375 0.02125 -0.026875 0.07625 0.045 0.0575 -0.0075 0.02375 0.038125 0.016875 -0.009375 0.044375 0.005625 -0.0125 -0.0425 -0.0225 -0.035625 -0.02375 0.006875 0.01 0.00375 -0.00625 -0.028125 0.016875 -0.018125 -0.02625 0.01125 0.021875 -0.025 -0.04625 0.0025 -0.035 -0.05125 -0.0475 0.016875 -0.036875 -0.034375 0.011875 0.03625 -0.02625 0.020625 0.02875 0.0175 -0.021875 0.08875 0.049375 0.09125 -0.010625 0.0225 -0.04 0.021875 -0.030625 0.02875 -0.06375 -0.02375 -0.020625 -0.0275 -0.02375 -0.0225 -0.04 0.025625 -0.04 -0.035625 -0.0075 0.02875 -0.014375 -0.01625 0.0375 -0.03625 -0.015 -0.0275 -0.04625 0.029375 -0.044375 -0.021875 0.001875 -0.048125 -0.03 -0.010625 -0.015625 0.046875 -0.025625 -0.010625 0.016875 0.02375 0.008125 0.0625 0.071875 0.025 0.035 0.034375 -0.00625 0.023125 -0.0325 -0.01 -0.040625 -0.035 0.019375 -0.0425 -0.03 -0.040625 -0.0425 0.00375 -0.0125 -0.00375 0.008125 0.0025 -0.00375 0.001875 -0.005 0.01 0.02375 -0.048125 -0.003125 0.010625 -0.034375 -0.0725 -0.013125 -0.02125 -0.003125 -0.005 0.0075 -0.01125 -0.0275 0.009375 0.03875 0.035 -0.05 0.048125 0.041875 0 0.039375 0.003125 0.0175 0.005625 -0.006875 -0.064375 -0.03 -0.055 -0.030625 -0.040625 -0.02875 -0.055 0.001875 0.00125 0.01875 0.0025 0.015625 -0.040625 0.035 -0.005 0.019375 -0.018125 -0.065625 -0.03375 -0.055 -0.0375 -0.005625 -0.060625 -0.041875 -0.01875 -0.03625 -0.01375 -0.034375 0.016875 0.025 0.023125 0.0175 0.04 0.053125 0.023125 0.039375 0.045 0.038125 0 0.0525 0.015 0.01625 0.0125 0.04625 0.055 0.025625 -0.071875 -0.026875 -0.00125 -0.045625 -0.02375 0.005 0.024375 -0.009375 0.0075 0.0025 0.0325 0.001875 0.03875 -0.028125 -0.011875 -0.0075 -0.02 -0.02125 -0.036875 -0.06125 -0.024375 -0.005 -0.0075 0.001875 0.016875 0.030625 0.021875 0.011875 0.075 0.005625 0.048125 0.03875 0.064375 0.00125 0.0125 -0.013125 0.035 0.003125 0.020625 -0.0325 -0.0325 -0.025625 -0.02375 0.03875 0.01375 -0.01125 0.034375 0.005 0.0125 0.006875 -0.02625 0.016875 -0.02375 0.023125 0.019375 0.040625 -0.02375 -0.064375 0.001875 0.026875 -0.07 -0.001875 -0.019375 -0.00375 -0.041875 -0.01125 -0.0125 0.029375 0.02375 0.04375 0.008125 0.029375 0.015 0.03875 0.0825 0.0175 0.003125 -0.0075 -0.02625 -0.01875 0.004375 -0.01 -0.01125 -0.01625 -0.005625 -0.020625 0.050625 -0.005 0.025625 0.0025 -0.01875 -0.02375 0.015 -0.06375 0.041875 -0.01375 -0.02125 -0.014375 -0.01625 -0.01125 -0.08 0.04 -0.00625 0.02 -0.045625 -0.018125 -0.01125 -0.005625 0 0.045625 0.048125 0.02 0.02625 0.03375 0.023125 0.06625 0.00125 0.0075 0.02125 0.01 0.010625 0.010625 -0.045 0.011875 0.01125 -0.010625 -0.03 0.000625 0.0025 0.02625 0.010625 0.01625 0.06375 0.0325 0.03375 -0.004375 -0.01 -0.00625 0.0025 -0.02 0.010625 -0.05125 -0.03625 -0.01125 -0.010625 -0.0075 -0.04625 -0.025 0 -0.01375 0.024375 0.02875 0.068125 0.045625 -0.010625 0.076875 0.068125 0.0475 0.011875 0.033125 -0.023125 -0.023125 -0.041875 -0.000625 -0.00625 -0.05625 -0.043125 -0.020625 -0.00375 -0.01125 0.0275 -0.013125 0.00125 -0.0025 0.014375 0.025625 0.0325 -0.0275 -0.011875 -0.035625 -0.015 -0.0175 -0.044375 -0.084375 -0.03125 -0.049375 -0.016875 -0.03875 -0.035 -0.0275 -0.000625 -0.001875 0.085 0.056875 0.009375 0.05375 0.0525 0.040625 0.04375 -0.02 0.0475 -0.024375 -0.03375 -0.000625 0.01875 -0.014375 -0.065625 -0.020625 -0.053125 -0.010625 -0.006875 -0.009375 -0.003125 -0.01 0.009375 0.06875 -0.00625 -0.02125 -0.02375 0.0375 0.01625 0.01125 -0.01875 0.006875 -0.025625 -0.04875 0.021875 -0.045625 0.00125 0.010625 0.016875 -0.03875 -0.008125 0.00625 0.005 0.024375 0.063125 -0.005 0.050625 0.0025 -0.011875 0.04125 0.02125 0.0325 -0.02625 -0.008125 0.001875 -0.0175 0.02875 0.0175 -0.015 -0.050625 -0.005 -0.003125 0.01375 0.0225 0.003125 -0.005 0.016875 -0.034375 0.00625 0 -0.016875 -0.050625 0.045 -0.0575 0.009375 0.000625 -0.0375 -0.07875 -0.04125 -0.0275 -0.025625 -0.003125 0.038125 0.074375 0.04 0.004375 0.020625 0.048125 -0.0575 0.033125 0.0375 0.025625 -0.03375 -0.031875 -0.009375 -0.04625 -0.045 0.009375 -0.00625 0.0075 -0.04625 0.025 0.02 -0.018125 -0.025625 -0.025 0.060625 -0.03625 -0.000625 -0.01 0.03875 0.013125 -0.0075 0.03 -0.041875 -0.0375 -0.02375 -0.039375 -0.001875 -0.073125 0.004375 0.018125 0.049375 0.003125 0.01 0.009375 -0.010625 0.021875 0.009375 0.000625 0 0.004375 0.00625 -0.035 0.004375 -0.026875 0.02625 -0.080625 -0.031875 -0.035625 -0.03875 -0.056875 -0.058125 -0.03875 -0.04 -0.0025 -0.015 -0.004375 0.0075 -0.028125 -0.0125 -0.03625 -0.03375 0.001875 -0.026875 -0.019375 -0.04875 -0.044375 -0.05625 -0.031875 -0.03625 -0.021875 0.003125 -0.003125 0.04 -0.01875 -0.015625 0.01625 0.01375 0.0275 0.0175 0.021875 0.016875 0.025625 0.02 0.00625 0.030625 -0.04 0.011875 -0.055 -0.015625 -0.04125 -0.015 -0.035625 -0.0025 -0.03625 -0.026875 -0.00875 -0.0075 0.035625 -0.03625 0.03875 0.005 0.00625 -0.004375 -0.009375 0.031875 -0.036875 -0.03 -0.014375 -0.0375 -0.005 -0.033125 -0.008125 -0.033125 0.0275 -0.009375 0.015625 0.045625 0.10625 0.04375 0.0525 0.024375 0.01875 0.070625 -0.00375 -0.00375 0.05 -0.01125 0.019375 -0.008125 -0.064375 0.01625 0.011875 0.0075 -0.0225 0.00375 0.0275 0.045 0.034375 -0.01875 0.018125 -0.011875 0.0325 -0.04625 0.004375 -0.045 -0.015 -0.058125 -0.019375 -0.045 -0.0325 -0.108125 -0.04 -0.009375 0.014375 -0.01875 0.01375 0.018125 0.05125 0.071875 0.03125 0.086875 0.06 0.0625 0.016875 -0.011875 -0.015625 0.0175 -0.0025 -0.049375 -0.050625 -0.02375 -0.013125 -0.059375 -0.03625 -0.016875 0 0.0025 -0.04 0.00625 0.043125 -0.013125 0.024375 -0.010625 -0.010625 0.01 -0.03875 -0.025625 0.029375 -0.02625 0.013125 -0.0725 -0.0625 -0.061875 -0.031875 -0.0125 0.02875 0.021875 0.02625 0.03625 0.0225 0.02125 0.04375 0.015 0.0025 0.014375 0.0175 -0.00875 0.01125 0.0375 -0.034375 -0.008125 -0.0025 -0.0575 -0.056875 -0.04125 -0.03875 -0.02375 -0.008125 -0.04375 0.043125 -0.00375 0.010625 0.04875 -0.03875 0.04 0.01875 0.018125 -0.013125 -0.016875 0.029375 0.013125 -0.045 -0.02625 -0.04125 -0.00625 0.016875 -0.04375 -0.0075 0.02625 0.02625 0.0525 -0.0275 0.028125 0.055625 0.05625 0.05125 0.00375 0.00625 0.035625 0.013125 -0.02375 0.01625 -0.000625 0.030625 -0.011875 -0.04625 -0.0275 -0.018125 0.0075 -0.06125 -0.02125 -0.005 -0.01125 0.021875 0.08625 0.01875 -0.006875 -0.0375 -0.01875 -0.00125 -0.043125 -0.034375 -0.010625 -0.0325 -0.063125 0.008125 0.001875 0.00625 -0.005625 0.01 0.03125 0.06875 -0.0075 0.053125 -0.01875 0.071875 0.0275 0.039375 -0.02875 0.028125 -0.015 -0.026875 0.02375 -0.00875 0.060625 -0.014375 -0.0425 0.006875 -0.0075 -0.02125 0.00125 0.014375 0.0275 0.034375 0.068125 0.02375 -0.0075 -0.003125 -0.06125 -0.00125 -0.006875 -0.08 -0.041875 -0.02125 -0.010625 -0.009375 -0.051875 -0.00125 -0.000625 -0.0325 0.00875 -0.0025 0.039375 0.038125 0.03 0.0925 0.0775 0.066875 0.09 0.050625 0.018125 -0.02125 -0.029375 -0.018125 -0.058125 0.024375 -0.00375 -0.068125 -0.018125 0.015 0.02125 -0.021875 -0.00375 -0.00125 0.03625 0.02875 -0.02 0.01125 0.033125 0.040625 -0.005625 0.013125 0.0175 -0.041875 0.019375 -0.04125 -0.034375 -0.051875 0.01125 -0.025625 -0.019375 -0.0225 0.036875 0.034375 0.009375 -0.001875 0.0575 0.02375 0.02 0.045625 0.019375 0.05125 -0.01125 0.044375 0.03875 -0.00375 -0.0325 0.02 0.024375 0.015625 0.02125 -0.055 -0.02625 -0.029375 -0.06125 0.05 -0.030625 0.03875 0.041875 -0.045625 0.01 0.046875 0.024375 -0.014375 -0.0425 -0.00625 -0.050625 -0.069375 -0.085625 -0.0375 0.03 -0.064375 -0.068125 0.021875 -0.033125 0.008125 0.020625 0.0325 0.060625 0.069375 0.051875 0.030625 0.041875 0.00625 0.00625 0.026875 0.0125 0.04625 0.00125 -0.06625 -0.065625 -0.005 0.006875 0.059375 0.005625 0.015625 0.03 0.018125 -0.018125 0.013125 -0.019375 0.025 0.026875 0.006875 -0.055625 -0.023125 -0.010625 -0.015625 -0.005625 0.00875 -0.004375 0.004375 0.001875 -0.025625 -0.025 0.00375 -0.009375 0.046875 0.048125 0.011875 -0.02 0.074375 0.016875 0.0175 0.045 0.030625 0.009375 0.025625 0.000625 -0.02125 -0.035625 -0.020625 -0.035 -0.026875 -0.0475 -0.04625 -0.055625 -0.005 0.0425 0.070625 0.0375 -0.024375 0.013125 0.021875 -0.02 -0.004375 -0.016875 -0.063125 -0.065625 -0.02 -0.019375 -0.018125 -0.02125 -0.056875 0.015625 -0.01125 -0.02125 0.023125 0.029375 0.029375 -0.0025 0.0125 0.05375 0.043125 0.016875 -0.000625 0.01 0.0075 0.055 0.0125 0.04125 -0.074375 -0.044375 -0.028125 -0.02 -0.045 -0.024375 -0.011875 0.023125 0.035 0.013125 0.001875 0.011875 -0.015625 0.00125 0.05625 -0.00875 0.005 -0.056875 -0.048125 -0.035 -0.02 0.043125 -0.0475 -0.020625 -0.003125 0.000625 -0.01125 -0.0075 0.00875 0.040625 0.019375 0.053125 0.059375 0.03125 0.043125 0.019375 0.01125 0.020625 -0.015 0.026875 -0.011875 0.023125 0.011875 0.015 -0.009375 -0.014375 -0.0025 0.021875 0.014375 -0.004375 0.008125 0.025 -0.03125 0.00125 -0.015625 0.001875 -0.005625 -0.054375 -0.05 -0.040625 0.014375 -0.0025 -0.044375 -0.016875 -0.030625 -0.02625 0.01375 -0.04375 -0.015625 -0.035625 0.05625 0.021875 0.051875 0.011875 0.053125 -0.015 0.07125 0.0675 0.010625 0.01375 0.038125 0.0125 -0.010625 -0.020625 -0.01375 0.033125 -0.00125 0.02625 -0.03125 0.033125 -0.004375 -0.0275 0.00125 0.013125 -0.03125 -0.005625 -0.005625 0.0025 -0.025625 -0.015625 0.025 0.028125 -0.0225 -0.051875 -0.014375 -0.045 -0.065 -0.024375 0.00125 0.02875 -0.02125 -0.074375 -0.015625 0.0225 0.029375 0.036875 0.02625 0.029375 0.039375 0.010625 0.0075 0.028125 0.015 -0.036875 -0.028125 0.026875 0.004375 0.015625 -0.016875 0.0325 -0.00375 -0.031875 -0.069375 0.02125 0.005625 -0.016875 -0.009375 0.015 -0.0325 -0.01125 0.023125 0.01875 -0.071875 0.02125 -0.0125 -0.069375 0.0125 -0.04375 -0.0325 -0.01875 -0.02375 -0.024375 0.020625 0.0025 0.019375 0.01625 0.06 0.045625 0.070625 0.06125 0.0475 -0.0025 -0.005625 -0.0375 0.001875 0.011875 0.005625 -0.03875 -0.01125 0.00375 -0.029375 0.000625 -0.064375 -0.02375 0.000625 0.01125 0.03125 -0.031875 0.026875 0.0125 -0.015625 -0.0075 -0.01625 -0.02125 -0.013125 0.000625 -0.005625 -0.025 -0.033125 -0.063125 -0.055625 -0.030625 -0.02 -0.021875 -0.004375 0.01375 -0.006875 0.01375 0.058125 0.040625 0.05 0.091875 0.05875 0.0575 0.0025 0.06125 -0.028125 -0.04125 -0.025625 -0.038125 0.001875 0.04375 0.003125 -0.01125 -0.035 0.06625 -0.016875 0.00625 -0.025625 -0.051875 0.005 -0.02 0.00125 0.01 0.031875 -0.036875 -0.0575 -0.04375 -0.035 -0.039375 -0.00375 -0.01 -0.021875 -0.00625 -0.0125 0.074375 0.033125 0.030625 0.041875 0.026875 -0.04375 0.05 0.0125 0.03 0.015 0.045 -0.033125 -0.035625 -0.014375 0.003125 -0.01875 -0.01875 -0.031875 -0.03625 -0.06125 -0.005 -0.005 0.034375 0.003125 -0.0475 0.020625 0.03875 -0.005625 -0.005 0.025625 -0.06 0.038125 -0.025625 0.001875 -0.04625 -0.060625 -0.015625 -0.044375 -0.04125 0.010625 -0.00375 0.0525 0.009375 0.045 0.046875 0.065 0.009375 0.014375 0.0125 0.0175 -0.00625 -0.006875 0.020625 -0.018125 -0.02125 -0.00875 -0.028125 -0.021875 -0.051875 0.0175 0.015 -0.004375 -0.043125 0.018125 -0.025 0.02375 -0.0375 0.009375 -0.01 0.038125 -0.03 0.026875 -0.033125 -0.02 -0.0275 -0.033125 -0.023125 0.02 -0.036875 -0.090625 -0.003125 0.016875 -0.008125 -0.04625 0.055625 -0.008125 0.034375 -0.0075 0.0575 -0.00625 0.03875 0.040625 0.058125 -0.008125 -0.04375 0.04375 0.03 0.036875 -0.014375 -0.05375 -0.021875 -0.029375 -0.0275 0.028125 -0.065625 -0.0225 0.009375 -0.004375 0.030625 0.02125 0.033125 +0.015625 0.021875 0.001875 0.0375 0.00375 -0.01125 -0.03125 -0.005 -0.02125 0.016875 0.02375 0.009375 -0.01375 0.026875 -0.059375 -0.0075 -0.000625 0.00625 0.018125 0.00375 0.000625 0.06 -0.016875 0.06 0.01875 0.021875 0.041875 0.038125 0.06875 0.0025 0.011875 -0.00125 -0.01125 -0.01875 0.00125 0.034375 -0.019375 0.015 -0.05125 -0.04875 -0.01875 -0.02875 -0.005625 -0.039375 -0.019375 -0.0025 -0.031875 -0.029375 0.021875 0.01125 0.00875 0.015 0.00875 -0.03625 0.005 0.055625 0.019375 0.02625 -0.056875 -0.0275 0.01125 0.040625 0.01375 0.055 0.07625 -0.031875 0.01625 0.000625 0.019375 0.00875 -0.01625 0.05625 -0.015625 -0.01625 0.03 -0.00875 0.02625 -0.025 -0.01375 -0.045625 -0.050625 0.03625 -0.016875 0.010625 -0.01625 -0.059375 -0.01125 0.0275 0.03125 0.01875 -0.03375 0.015625 -0.01625 -0.013125 0.025625 -0.03 -0.0225 0.00375 0.011875 -0.02375 -0.039375 -0.02 0.030625 -0.014375 -0.0075 0.006875 0.015 0.020625 0.05 0.014375 0.040625 0.025 -0.004375 0.001875 -0.005 0.0075 0.054375 0.0125 -0.001875 -0.03625 -0.050625 0.00125 0.01625 -0.02125 0.0425 0.01625 0.035625 0.01 -0.005 -0.0125 -0.02375 0.016875 0.029375 -0.01375 0.00125 -0.019375 -0.005 -0.035625 -0.040625 0.039375 0.01625 0.008125 -0.021875 0.009375 -0.03875 -0.005625 0.021875 0.01875 0.0025 0.000625 0.063125 0.04 -0.005625 0.02375 0.0575 0.010625 0.01 0 0.02875 -0.035625 -0.04875 0.025625 0.005625 -0.02875 -0.01375 0.00125 -0.00125 0.013125 0.001875 -0.016875 0.03375 0.00875 0.0375 -0.0325 -0.065625 0.046875 -0.011875 -0.020625 -0.0575 -0.005625 -0.020625 -0.056875 -0.033125 -0.015625 0.0525 0.0525 0.001875 0.016875 0.0475 -0.026875 0.021875 0.013125 0.0225 -0.015 -0.015 0.05875 0.03875 0.036875 -0.0225 -0.019375 -0.0025 -0.019375 0.0025 0.0025 0.001875 0.020625 0.015 -0.03125 -0.010625 0.021875 -0.011875 0.03875 0.010625 0.015 0.025625 0.005625 0.01375 -0.026875 -0.01 0.0175 -0.03625 0.005 0.010625 -0.011875 -0.001875 0.011875 -0.006875 0.006875 -0.02 -0.016875 -0.01625 0.005 -0.031875 0.04 -0.015625 0.044375 0.013125 0.02375 -0.0275 -0.001875 -0.0125 0.00125 -0.018125 0.043125 -0.01375 0.033125 -0.025 -0.00625 -0.016875 -0.015625 -0.01625 -0.0475 -0.0525 0.0225 0.01875 0.04625 0.0225 0.028125 -0.031875 -0.0425 -0.03875 -0.030625 -0.003125 0.011875 0.016875 -0.018125 -0.0325 -0.02875 -0.006875 0.035 0.040625 0.019375 0.033125 0.03375 0.02625 0.021875 0.058125 0.03625 -0.0025 -0.009375 0.02 0.01125 -0.00375 -0.0475 0.005625 -0.004375 -0.03375 -0.02125 0.025625 -0.0125 0.035625 0.030625 0.018125 -0.005625 -0.0325 0.008125 -0.001875 -0.00875 -0.005 0 -0.05625 -0.040625 -0.009375 0.0025 -0.010625 -0.015 -0.0225 0.016875 -0.010625 -0.0225 -0.0075 0.02375 0.03125 0.03875 -0.01 0.015 0.020625 0.025 0.004375 0.039375 0.03375 0.02125 0.04625 -0.03 0.019375 0.00875 0.001875 -0.0275 -0.038125 -0.03375 -0.0025 0.02875 0.018125 -0.018125 0.023125 0.005 0.008125 0.03125 -0.01125 0.03 -0.006875 -0.01625 -0.0225 0.0225 -0.035625 -0.015625 -0.030625 -0.03 0.01875 -0.01125 -0.01625 0.006875 0.016875 0.01125 0.028125 0.023125 0.049375 0.0575 0.0375 0.064375 -0.015 -0.01625 0.020625 -0.004375 0.004375 0.025625 -0.005625 -0.005 -0.02125 -0.005625 0.008125 -0.02125 -0.01 -0.0375 0.023125 0.001875 0.043125 -0.02 0.009375 0.06125 0.001875 0.02375 -0.00125 -0.0075 -0.0575 0.00875 0.013125 0.020625 -0.0175 -0.04625 -0.0375 -0.02625 -0.046875 -0.0075 0.04 -0.00625 -0.0025 0.0425 -0.01125 -0.02625 0.03 0.059375 -0.04125 0.01875 0.000625 0.015625 0.010625 -0.023125 0.048125 0.018125 -0.02375 0.006875 0.043125 -0.01 0.008125 -0.0225 0.0125 0.015625 0.0275 -0.01125 0.00125 0.018125 -0.03375 0.011875 -0.01875 -0.010625 0.05375 -0.01125 -0.016875 -0.03625 -0.039375 -0.04 0.00375 -0.01 0.034375 0.01375 -0.023125 0.0075 0.036875 -0.04 0.0625 -0.010625 0.031875 0.015625 -0.020625 -0.02625 -0.03 -0.033125 -0.005625 -0.033125 -0.03125 0.005 0.02 0.004375 -0.010625 -0.021875 -0.035625 -0.030625 0.009375 0.0125 -0.035625 -0.005625 0.058125 -0.025625 -0.015625 0.00375 0.00625 0 -0.02625 -0.058125 -0.04125 -0.015625 -0.018125 -0.0525 -0.02625 -0.00875 -0.006875 0.08 0.0425 0.05625 0.035625 0.019375 0.0275 0.039375 0.05125 -0.010625 0.000625 0.008125 0.04125 -0.0175 0.0225 0.00125 -0.0775 -0.049375 0.02 -0.025625 0.003125 -0.0075 0.02125 0.008125 0.0075 -0.005 -0.003125 -0.028125 -0.03 0.015625 0.00625 -0.005625 -0.0225 -0.025 -0.0275 -0.045 -0.09125 0 -0.03125 -0.0125 0.0425 -0.05375 -0.0025 -0.00375 0.04625 0.0525 0.024375 0.013125 0.048125 0.025 0.015 0 0.010625 0.00875 0.008125 0.01 -0.013125 -0.02125 0.0175 -0.02375 0.0525 -0.04125 -0.05375 -0.015625 -0.051875 -0.001875 0.05625 -0.02375 0.01875 -0.075 -0.003125 -0.028125 0.0225 -0.06375 -0.044375 -0.026875 -0.036875 0.01375 0.016875 -0.03 -0.006875 -0.031875 -0.04625 0.024375 0.05 0.01125 -0.00625 -0.02125 -0.004375 0.058125 0.045625 -0.0475 -0.02 0.013125 0.051875 -0.0575 0.038125 -0.01375 -0.01375 -0.05375 -0.05 -0.06875 -0.02375 -0.024375 0.00875 -0.01875 -0.011875 -0.044375 0.006875 0.026875 -0.020625 0.006875 0.008125 -0.009375 -0.00875 0.045625 -0.014375 -0.02625 -0.034375 0.035 0.0225 -0.005625 0.015 0.008125 -0.004375 -0.0225 0.025625 0.01 0.05 0.000625 0.085 0.053125 0.001875 0.03375 0.02125 0.008125 0.02875 0.019375 -0.045 -0.01 -0.003125 0.00875 -0.045 -0.01625 -0.025 -0.01625 -0.041875 -0.0025 0.000625 -0.01625 0.045625 -0.009375 0.005625 -0.011875 -0.023125 0.006875 0.045625 -0.028125 -0.021875 -0.031875 0.005625 -0.048125 -0.015625 -0.03 0.030625 0.036875 0.074375 0.0075 0.001875 0.033125 0 0.0325 0.024375 0.0025 0.025 0.028125 -0.009375 -0.025 0.01625 0.025 -0.011875 -0.046875 0.00125 0.014375 -0.015 -0.0275 0.0025 -0.023125 0.01875 -0.03625 0.00125 0.04125 0.00375 0.04 -0.011875 0.016875 -0.015625 0.015 0.026875 -0.08 -0.013125 -0.054375 -0.0025 -0.0275 -0.031875 -0.04 -0.009375 -0.063125 0.02875 -0.005625 0.000625 -0.018125 0.036875 -0.01875 0.033125 -0.00625 -0.04375 0.02125 -0.008125 0.0425 -0.023125 0.033125 -0.058125 -0.02 -0.043125 0.008125 0.03375 0.013125 -0.009375 -0.006875 -0.003125 0.02125 0.006875 -0.0425 -0.01 0.009375 0.0575 -0.001875 0.029375 0.0275 -0.0225 -0.04375 -0.0375 0.02 -0.030625 -0.04625 0.009375 0.0025 0.03375 0.02875 -0.013125 0.024375 -0.015625 -0.018125 0.01 0.03375 0.03125 0.024375 0.01375 -0.039375 0.020625 0.053125 0.023125 -0.01 -0.0325 0.011875 0.053125 0.008125 -0.01 -0.031875 -0.033125 -0.0525 0.035 -0.0425 -0.01375 0.003125 0.0275 0.035625 -0.04125 -0.038125 -0.051875 -0.0325 0.014375 -0.013125 0.01125 -0.000625 -0.080625 -0.033125 -0.01125 -0.04875 0.01375 -0.016875 0.03625 -0.001875 -0.011875 0.035625 0.056875 0.031875 0.021875 0.045625 0.0025 0 0.04125 -0.01625 -0.01 -0.00875 -0.029375 0.011875 -0.0675 0.0175 -0.0375 -0.0475 0.013125 -0.008125 -0.00375 0.00125 0.004375 0.035 0.040625 0.01875 0.01125 0.02625 -0.02625 -0.046875 -0.049375 -0.0025 -0.008125 -0.0125 -0.00875 -0.0225 0.014375 -0.02 -0.02 0.01375 -0.039375 0.014375 -0.02375 0.0125 0.021875 0.049375 0.061875 0.025625 0.015 -0.011875 0.001875 -0.02375 0.000625 0.02625 -0.0475 -0.011875 -0.046875 -0.0375 0.023125 -0.019375 -0.02 -0.023125 -0.025 0.0075 0.01875 0.038125 -0.04 -0.0425 0.035 0.02625 0.020625 -0.04125 -0.014375 -0.05125 -0.02 -0.029375 -0.07625 -0.00375 -0.013125 -0.0025 -0.015625 -0.0075 0.02 0.0075 0.058125 0.0175 -0.025 0.0325 -0.060625 -0.026875 -0.0025 0.023125 0.00875 0.026875 -0.014375 0.018125 -0.02125 -0.025625 -0.020625 -0.016875 -0.013125 -0.01125 0.02 -0.023125 -0.014375 -0.04125 -0.0075 -0.015 0.0175 0.00875 0.058125 0.00625 -0.00125 0.015 0.035625 -0.0175 0.038125 -0.029375 0.02125 -0.02875 -0.0175 0.043125 0.010625 0.0425 0.078125 0.0675 -0.000625 0.008125 0.031875 0 0.00375 0.00625 0.081875 0.02125 -0.001875 0.038125 -0.044375 -0.0325 -0.02125 -0.040625 -0.059375 -0.005625 -0.038125 0.003125 0.025 -0.0025 -0.005625 0.008125 -0.015 0.01375 -0.0075 0.018125 0.023125 0.01375 -0.00125 0.006875 -0.0225 -0.035625 -0.006875 0.004375 -0.038125 0.03 0.019375 0.0125 -0.009375 0.038125 0.0175 0.0425 0.079375 0.020625 0.0125 0.0175 -0.041875 0.043125 0.01625 0.019375 -0.006875 -0.05125 -0.03 0.00375 -0.016875 -0.001875 0.038125 -0.015 -0.0325 0.00625 -0.00125 -0.013125 -0.01375 0.023125 0.005625 0.004375 -0.00875 0.0325 -0.051875 0.01 -0.024375 -0.0375 -0.0125 -0.04375 -0.0175 -0.043125 0.00875 0.028125 -0.0025 0.03125 0.011875 0.034375 0.006875 -0.05625 0.054375 0.01125 0.0275 0.0725 -0.020625 0.0125 -0.028125 -0.018125 0.029375 0.02625 -0.005 -0.049375 -0.04875 -0.0525 0.001875 -0.01875 0.02125 -0.018125 0.023125 0.019375 0.0375 0.01 -0.004375 0.03375 0.00625 -0.023125 -0.0125 -0.028125 -0.015625 -0.02625 -0.056875 0.0325 -0.02125 -0.0325 -0.00125 0.03125 0.038125 -0.0175 -0.0325 -0.0025 0.02125 0.023125 0.0875 0.05625 0 0.02375 0.05625 -0.00375 0.040625 -0.01375 -0.001875 0.018125 0.001875 -0.0375 -0.024375 -0.034375 -0.000625 -0.0075 0.02 -0.02625 0.05875 0.0175 0.000625 -0.003125 0.003125 -0.01375 0.016875 0.005625 -0.044375 0.008125 -0.001875 0.020625 0.005 -0.006875 -0.04875 -0.0175 -0.02875 0.03 -0.028125 -0.015625 0.05 0.0325 0.02125 0.003125 0.0575 0.054375 0.080625 0.01625 -0.0175 0.021875 0.04125 -0.0525 0.03375 -0.00875 0.00125 -0.02125 0 0.046875 -0.008125 -0.018125 -0.03125 -0.01 0 -0.016875 0.00875 0.036875 -0.013125 -0.016875 0.036875 -0.009375 -0.0275 -0.0225 -0.05125 0.06875 -0.01625 -0.045 -0.035625 0.02875 0.04 -0.060625 0.009375 -0.0225 0.033125 0.01 0.04375 0.01 0.0325 -0.000625 0.015625 -0.008125 0.051875 0.003125 0.06 0.061875 -0.028125 0.01125 -0.018125 0.02625 0.001875 -0.01625 -0.06125 -0.0325 -0.023125 -0.023125 0.02125 0.0075 0.029375 0.005625 0.0175 -0.006875 -0.033125 -0.01875 -0.095625 -0.030625 0.004375 -0.03125 0.013125 -0.0725 -0.016875 -0.018125 -0.05 0.055 0.004375 0.0125 -0.00125 0.011875 0.001875 0.02 0.050625 -0.016875 0.05125 -0.03 0.029375 0.010625 -0.03375 -0.059375 0.001875 -0.00375 -0.0425 0.02 0.03875 -0.000625 -0.05125 -0.014375 -0.014375 0.044375 0.005625 0.01625 -0.025 -0.064375 0.00875 0.015625 0.009375 -0.003125 -0.011875 -0.029375 -0.003125 -0.000625 0.01 0.02625 0.009375 -0.00625 -0.02 -0.006875 0.035 0.00875 0.0475 0.001875 0.021875 -0.015625 0.06875 -0.01 0.02 0.020625 0.035625 -0.0025 -0.039375 0.0225 -0.0125 0.0175 -0.0375 -0.0325 0.003125 -0.005 0.006875 0.013125 0.05625 -0.021875 -0.01375 0.041875 -0.02875 -0.019375 -0.00875 -0.038125 -0.055 -0.045625 0.005 0.04375 0.029375 -0.008125 -0.009375 0.011875 -0.02125 -0.025 0.000625 -0.009375 -0.00125 -0.01 -0.003125 0.00125 0.05125 0.050625 0.005 0.03125 -0.018125 0.040625 -0.01875 0.001875 0.020625 -0.00375 -0.024375 -0.061875 -0.015 0.0125 -0.020625 0.011875 0.03125 -0.0525 -0.0075 -0.0075 0.05875 -0.02125 -0.00875 0.030625 0.003125 -0.01875 -0.036875 -0.011875 -0.011875 -0.00875 -0.035625 -0.026875 -0.030625 -0.04 0.043125 0.02 0.04125 -0.02125 0.0025 -0.0175 0.015625 -0.020625 0.0325 0.02375 0.055 0.020625 0.0425 0.008125 -0.00625 -0.0325 0.049375 -0.01 -0.051875 -0.021875 -0.004375 0.034375 -0.028125 -0.025625 0.02 -0.00625 -0.02375 0.00875 -0.043125 -0.04625 -0.0175 -0.005 0.006875 -0.03125 -0.034375 -0.09125 0.01125 -0.04 -0.040625 -0.054375 -0.023125 0.01 0.026875 -0.010625 -0.015625 -0.015 0.055 0.04125 0.02375 0.013125 0.03 0.020625 0.02875 -0.028125 -0.016875 -0.06 -0.064375 -0.01375 -0.0075 -0.018125 -0.01 0.001875 -0.031875 0.0275 -0.005 -0.009375 -0.04125 -0.045625 0.058125 -0.004375 -0.088125 -0.0375 -0.03 -0.0075 -0.004375 -0.025625 -0.051875 -0.009375 -0.025 0.00625 -0.003125 -0.0325 0.0225 -0.015 0.006875 0.008125 0.00375 0.043125 0.013125 0.05625 -0.00375 0.058125 -0.015 0.005 0.029375 0.003125 -0.05875 0.00625 0.00125 -0.0425 0.00375 0.003125 -0.044375 -0.025625 0.031875 -0.025625 -0.006875 -0.07 -0.05625 -0.010625 0.025 0.039375 0.03125 0.021875 -0.024375 -0.02125 0 0.006875 0.01625 -0.020625 -0.021875 -0.034375 -0.070625 0.003125 -0.016875 -0.0125 0.046875 -0.019375 0.035625 0.064375 0.036875 -0.013125 0.015625 -0.003125 0.004375 0.065 0.011875 0.03125 -0.01375 -0.003125 -0.006875 -0.04125 -0.01625 0.016875 -0.036875 -0.011875 -0.01875 0.025 -0.000625 0.00875 0.01375 -0.03375 0.015625 -0.01125 0.018125 -0.008125 -0.01875 -0.009375 -0.015625 0.035625 -0.064375 -0.013125 -0.02375 -0.046875 -0.003125 -0.0025 0.013125 0.0375 0.006875 0.0575 0.058125 0.00875 0.013125 0.05875 0.065 0.016875 -0.025 -0.000625 -0.02375 0.051875 0.005625 0.0325 -0.004375 -0.06 -0.0025 -0.03 -0.011875 -0.046875 -0.006875 0.006875 -0.040625 -0.013125 -0.046875 0.004375 0.00625 -0.0075 -0.073125 0.035 0.0125 0.011875 -0.021875 0.001875 -0.065625 -0.02375 0.005625 -0.001875 0.003125 0.035 -0.0375 0.00125 0.040625 0.01 0.061875 0.035625 0.028125 0.05125 -0.008125 -0.015 0.040625 -0.01625 -0.001875 -0.029375 -0.004375 -0.015 0.0425 0.000625 0.026875 0.00125 -0.05375 -0.016875 0.015 -0.00125 0.01125 0.01375 0.020625 0.005 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_7.2ms.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_7.2ms.hrd new file mode 100644 index 0000000..7e99345 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_7.2ms.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 7.2 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676034931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +4.770625 4.731875 9.51 4.63125 0.3175 5.884375 6.62125 4.605 5.35875 5.673125 5.708125 6.40875 7.129375 2.853125 4.64875 6.70375 8.00375 5.770625 6.413125 4.08125 0.96 4.655625 6.155625 4.034375 6.3 5.959375 9.861875 6.67 4.7775 6.581875 5.828125 5.678125 5.410625 5.85375 6.070625 5.51375 1.826875 5.26875 7.46125 4.599375 6.403125 6.98625 4.310625 6.32875 4.759375 5.46125 2.51 6.930625 5.915625 7.761875 6.545 7.97875 7.949375 5.341875 3.8875 3.283125 2.291875 4.16125 2.8525 0.506875 4.6875 4.908125 4.215 8.845625 5.514375 3.869375 2.05125 0.59625 4.414375 5.524375 4.640625 5.6375 6.87125 5.78125 5.075 3.680625 5.72 6.055625 5.26625 6.9475 4.191875 4.974375 0.280625 4.1875 8.50375 1.588125 6.53125 3.390625 5.62375 2.900625 4.750625 7.83375 8.88875 4.33375 3.740625 4.37 4.808125 1.568125 3.43875 5.67625 5.286875 3.07375 4.220625 4.88875 4.479375 4.84625 2.3525 4.135 5.51875 5.1675 5.169375 7.7925 3.35625 4.321875 4.639375 5.469375 2.49 5.07375 4.4725 2.985 2.84625 3.960625 7.48 3.5325 5.2125 4.035 2.371875 1.77375 -0.093125 3.5725 1.6475 5.365 -0.128125 5.389375 2.2975 3.73875 -1.773125 0.620625 1.634375 1.386875 1.6025 3.23125 4.474375 4.02875 4.125625 0.38375 4.9775 5.179375 4.645625 -0.003125 -0.26875 2.755625 5.235625 1.734375 2.550625 1.024375 4.42625 4.7375 3.706875 -1.27375 4.988125 3.484375 2.09625 3.410625 1.969375 2.579375 2.86875 0.804375 5.348125 1.120625 3.421875 2.3575 3.31375 1.33375 4.325625 5.783125 1.91375 1.234375 2.106875 2.501875 1.749375 2.51125 2.2925 1.724375 3.90875 1.17375 2.120625 3.9925 1.534375 3.925 2.92125 3.800625 2.8025 4.628125 4.56625 1.444375 1.38375 0.69125 6.246875 4.226875 2.760625 -1.810625 4.04 2.721875 -0.824375 2.836875 0.97 3.659375 1.18375 3.2 -1.3675 -0.100625 3.66125 0.974375 0.64625 -0.66125 -1.155 0.945625 0.370625 3.540625 1.2975 4.309375 0.986875 0.896875 1.950625 0.399375 3.25625 1.680625 2.19375 2.2875 4.223125 5.391875 2.153125 2.295 1.271875 2.95625 3.085625 -0.775 3.793125 4.46875 2.081875 2.845 4.525625 2.68625 3.288125 5.339375 3.859375 4.126875 3.33 1.15 3.134375 2.58375 1.460625 0.10125 3.136875 2.758125 1.915 7.018125 1.731875 -0.1175 -0.153125 1.40125 2.036875 5.751875 1.350625 5.051875 3.624375 -3.02375 -0.405 1.8425 1.019375 1.910625 1.494375 4.68625 2.13 2.151875 2.88375 -1.38125 0.56125 1.679375 2.550625 0.8475 4.065625 2.095625 1.813125 2.983125 3.56875 4.284375 0.466875 3.050625 0.695625 3.2275 5.316875 3.6725 1.255625 -1.06125 -0.03125 0.853125 0.9775 4.203125 5.53625 3.508125 -0.9525 0.561875 1.72125 -0.63875 4.01 1.170625 1.6875 0.486875 2.0875 -0.118125 -0.02375 2.77625 1.61375 1.67375 0.136875 1.985 0.208125 1.684375 4.228125 -0.17625 1.91125 -2.418125 3.28125 3.789375 3.794375 1.348125 1.3825 -0.388125 -1.34875 -0.401875 2.334375 0.4975 2.535 5.87125 1.0475 2.80125 4.283125 2.825 0.389375 2.136875 0.005 0.293125 -0.86 1.20625 2.29625 -0.564375 0.1125 2.24125 -0.22125 1.255 -0.510625 2.571875 2.01 1.193125 -0.465625 -1.1325 -0.218125 3.855 3.141875 2.98375 -2.465 -0.155 5.075 -0.135625 2.6875 -0.555 -0.615625 -0.850625 -0.11125 3.200625 1.520625 2.536875 2.016875 3.20375 -0.4325 1.45125 0.2075 1.388125 3.86125 -1.085625 0.51125 -1.2625 -1.644375 1.705 0.84875 -0.71375 2.17125 1.625 4.1275 -0.03625 -1.67375 1.88875 0.306875 3.04 2.80875 4.07625 0.558125 1.0475 0.998125 1.76375 1.72375 -1.45375 4.546875 2.605625 2.04125 -1.274375 -1.0875 1.84375 2.424375 3.531875 4.24125 -0.7075 2.35625 3.385625 2.71875 1.326875 4.294375 4.07625 2.536875 0.5825 2.2525 1.023125 1.711875 -0.388125 2.17625 -0.973125 0.44625 0.42125 1.17625 2.609375 -0.610625 1.9775 1.855625 0.8725 2.4 -0.415625 -0.12125 1.93625 2.46875 0.183125 -1.098125 2.7275 1.056875 -1.3375 -0.978125 2.631875 0.7075 -3.753125 -0.693125 0.54625 1.61125 0.476875 1.401875 3.21125 1.6975 4.9025 0.6 0.96375 -1.08875 0.79625 -0.755625 0.675625 2.95625 -0.140625 -1.02375 2.975625 0.08125 -1.915 2.83625 0.968125 -0.939375 0.56625 0.9825 2.185 0.336875 5.266875 1.558125 2.00375 0.645625 5.081875 1.526875 1.200625 0.504375 3.65125 1.225625 -0.08375 3.311875 2.453125 4.343125 -1.163125 1.77 0.551875 -0.533125 0.34625 -0.315625 -4.865625 0.956875 -0.481875 2.13375 2.7525 1.19375 1.81125 -1.965 0.065625 -2.66375 -0.4775 1.813125 -0.211875 3.405 0.081875 2.8325 0.753125 2.416875 1.524375 3.523125 4.076875 -1.02 -0.35625 -1.264375 0.865625 -0.069375 3.105625 1.74625 -0.064375 2.61625 1.446875 0.270625 -0.240625 0.188125 0.294375 3.24375 0.54875 1.163125 0.686875 1.2725 1.38375 3.0475 2.86125 3.6325 0.395625 1.123125 1.43375 1.233125 -0.54625 0.373125 2.21125 1.8775 2.66875 2.47375 2.998125 0.785625 0.949375 -1.9225 -0.32875 -0.718125 2.859375 7.715625 1.74625 1.894375 -1.625 0.469375 -0.39 0.334375 1.4925 -1.0025 -1.23375 4.068125 3.098125 0.394375 0.54 5.20625 1.19125 -2.0225 1.905625 1.3275 0.249375 -0.795625 1.404375 -0.044375 -1.2375 -2.77125 1.25 1.491875 -2.931875 -2.8475 2.355 -1.15625 1.405 -0.188125 -1.686875 -0.678125 -3.15 1.559375 0.815625 -0.824375 4.04125 0.89875 1.925625 1.6675 -1.42625 3.216875 3.024375 1.281875 -1.363125 2.198125 -0.93625 1.1725 4.105625 0.12375 0.745 0.78375 0.628125 2.64875 1.374375 2.45125 -1.12875 1.94375 4.3425 -2.718125 1.905625 -0.16625 1.7675 3.66 1.740625 0.66125 0.923125 2.798125 0.6275 -0.2 -1.813125 1.31875 5.340625 1.0025 2.215 -0.65125 1.806875 0.01125 -0.895 1.8475 1.693125 -2.11875 1.299375 2.76125 1.071875 0.5225 0.309375 2.3425 3.03375 0.65125 0.9275 2.97875 2.15375 -0.28125 1.335 0.695625 1.983125 -1.03875 0.405 0.161875 0.160625 2.266875 0.228125 0.975 1.683125 0.025625 2.39625 0.035 5.200625 1.116875 0.584375 1.165625 2.975625 2.07 1.433125 0.606875 -1.359375 3.541875 4.8375 0.245 0.258125 -2.21 0.8375 2.8625 1.41125 1.639375 -1.285625 -0.739375 -0.3375 1.6925 1.430625 2.65 2.70125 -1.335625 -2.884375 0.84 1.179375 1.38 3.638125 2.094375 -0.714375 0.063125 3.818125 1.318125 2.16625 1.886875 0.48 -0.154375 3.11375 1.398125 2.7325 4.098125 -1.25125 -0.631875 -1.315 0.47 2.666875 -2.415 1.131875 4.118125 0.759375 1.558125 -0.426875 2.4575 -0.18625 -0.001875 0.516875 1.075625 2.303125 2.76875 1.115625 -1.900625 -3.494375 -1.569375 -0.8 0.3025 -0.093125 2.388125 -1.814375 -1.2725 2.07625 0.20125 -2.4025 0.664375 -0.866875 -0.85875 -2.985 -1.01875 0.338125 4.266875 3.1175 0.900625 2.3725 0.31625 0.035625 5.3925 1.71375 1.6125 1.0075 3.543125 1.43875 -0.956875 -0.309375 -0.21 1.75875 0.88375 0.59875 0.565625 -0.28125 2.273125 3.064375 2.2375 2.499375 1.538125 3.021875 3.464375 0.45 -3.195 3.43 0.16375 -2.994375 -0.148125 -3.819375 0.40125 3.8175 2.63875 1.3375 -1.649375 1.69375 -1.72375 -0.958125 0.030625 1.941875 2.36875 -0.931875 0.694375 2.131875 0.50125 1.77125 0.475 -1.174375 -1.319375 0.015 -1.83375 2.841875 0.581875 0.401875 -0.418125 3.02875 -0.968125 -2.5225 1.539375 -1.270625 0.2825 2.1175 1.7125 2.29625 1.939375 -1.150625 0.0025 -1.295 -2.044375 -0.489375 0.1025 1.731875 -1.1775 2.184375 -1.24375 0.181875 2.479375 0.128125 1.430625 2.55875 0.878125 0.185625 -0.740625 -1.824375 2.36875 0.119375 4.51125 1.18125 -1.88875 -0.634375 1.07375 1.248125 2.874375 1.216875 1.41125 -1.098125 0.653125 0.453125 -2.3975 0.65 -0.246875 0.626875 2.270625 3.581875 -2.75875 2.47125 1.31875 -1.326875 0.81375 1.11875 -1.184375 -0.440625 -1.45375 -1.5125 1.105 1.185625 2.143125 1.174375 -1.043125 -0.675625 0.55875 2.833125 0.555 -0.40375 -0.099375 0.01375 2.095625 1.939375 0.435 -2.826875 -0.19625 -3.16 -2.70125 -0.67875 2.98375 0.005 0.088125 1.64875 -1.241875 3.160625 2.02 2.789375 2.755 -1.508125 2.349375 -1.93875 -0.261875 0.349375 -0.661875 -0.115 0.319375 3.161875 -1.731875 1.72625 -0.60125 -1.62625 0.63375 -2.63875 -1.690625 -0.845 -1.375625 -0.265 2.10375 1.6425 -3.36875 3.47125 1.775 1.13875 0.974375 -1.705 -0.988125 0.10125 2.14625 3.596875 0.90875 -0.55 1.768125 1.15125 0.53 0.71125 -1.070625 3.30875 -1.34625 1.039375 -1.770625 2.448125 1.495625 -2.064375 -1.191875 -4.625 -0.935 -3.45625 0.629375 -1.516875 2.713125 2.18375 2.865625 2.955 0.45375 -0.176875 2.5325 1.28875 0.611875 -0.1825 0.9075 1.8825 3.158125 0.638125 -0.15875 4.091875 -2.45125 -2.73 0.86 -2.424375 1.886875 4.03 1.11 -3.619375 1.79625 -1.72625 0.740625 0.295 -1.76125 -0.66875 0.50375 -0.1775 -1.03125 -1.389375 -2.83625 -0.474375 0.043125 1.12375 -1.97875 1.0325 1.466875 -0.499375 -1.2825 0.825625 5.01625 -0.42375 -0.926875 -0.933125 -0.0975 1.8825 -2.51625 1.27625 -0.6075 2.0775 -0.54625 0.68 0.2575 -4.415 -1.681875 4.004375 0.508125 -0.475 2.016875 -0.51125 -0.9875 -3.015625 3.505625 1.9325 -1.51125 -0.59125 0.806875 0.608125 0.858125 1.96875 0.79 -0.05375 0.135625 1.080625 -2.3375 0.009375 1.59125 -1.046875 -0.445 -1.085625 1.736875 1.855 -3.24375 1.32875 -1.54375 -2.62 1.9175 0.243125 -1.09875 -1.62875 -0.02 0.14 0.57625 0.8775 -2.579375 3.103125 0.979375 -0.8025 2.344375 -0.59125 0.648125 0.810625 -4.024375 -1.263125 2.801875 0.466875 -0.694375 -2.148125 -2.48875 0.783125 0.51375 -0.196875 3.09875 -0.72625 -1.91625 0.255625 -0.29125 2.598125 0.000625 2.231875 3.09125 -1.21 0.209375 1.2525 -0.348125 2.105625 0.0925 2.25375 -2.5925 1.616875 0.214375 -0.085625 0.508125 0.648125 -1.230625 1.76375 -1.74375 -1.2225 1.64 2.2175 -0.34875 2.55875 4.5575 1.570625 1.006875 -0.028125 2.101875 0.256875 5.290625 0.105 -0.61375 0.321875 2.23125 1.818125 -2.163125 -0.4475 -0.845 2.1825 -0.249375 -0.74875 0.62625 3.065 -1.03375 4.348125 -2.173125 0.559375 0.01875 3.175625 1.923125 -1.704375 0.96375 -3.143125 1.065 1.661875 -0.564375 0.62875 -1.628125 0.99625 0.293125 0.353125 1.340625 -1.665625 -0.826875 1.435625 -0.05 -3.39125 1.413125 0.75 -1.255 2.56875 0.64125 -1.144375 0.371875 -1.275625 1.783125 -1.840625 1.81375 -3.155 1.52 2.010625 2.39375 -0.105625 1.250625 -0.855625 -1.02125 1.220625 1.84375 -1.240625 -1.638125 1.296875 -0.723125 0.530625 -0.735 1.435 -3.788125 -0.65875 -4.32 1.26 2.460625 2.4175 1.454375 0.343125 -0.721875 0.293125 -3.7025 2.725 0.710625 0.525 0.0875 3.324375 -1.901875 -0.359375 -1.370625 2.30625 1.87625 -0.829375 0.24375 1.869375 -1.764375 2.203125 -1.699375 2.065 0.389375 1.283125 1.19375 1.941875 -0.00875 -0.55875 -1.851875 2.213125 -0.713125 1.94875 2.156875 -0.7125 -1.530625 -0.156875 1.23625 -0.809375 -1.096875 3.045 1.101875 -0.87625 -2.255625 0.4675 1.6425 -0.34875 -0.39375 -0.568125 -1.975 0.0975 -3.649375 1.4875 2.414375 -0.433125 0.6425 -0.370625 -0.210625 -0.08 1.74625 2.625625 0.5875 0.88625 2.475625 1.859375 -0.40875 1.920625 0.49875 2.23375 -2.14 -0.180625 2.0375 0.328125 -3.429375 0.49875 4.015 2.391875 -0.688125 1.111875 -2.779375 2.444375 2.22875 0.24 -0.155625 0.061875 0.463125 1.23125 -0.131875 3.395625 -1.1775 2.89 3.429375 -3.22625 -0.986875 1.199375 -1.4675 0.234375 2.196875 2.234375 -0.979375 2.39 1.46375 -1.5525 -3.379375 -2.325 -1.17375 -0.586875 3.555 1.751875 0.245 -2.596875 -2.33875 -2.11375 0.45375 -0.749375 -0.40375 2.596875 1.49 -2.595625 -1.086875 -0.08875 1.40125 4.665 1.4825 0.72875 -1.30375 -0.56375 0.758125 0.573125 -1.6825 2.82375 -0.60375 0.355 -0.065 -0.919375 0.13 -0.846875 1.088125 0.843125 0.96375 0.715 0.121875 0.79375 2.21 -0.765 0.90875 -2.8075 0.66125 -0.545625 2.59125 4.034375 -1.160625 -1.466875 0.029375 -0.215625 -3.534375 1.586875 1.435 1.87125 -2.79875 0.965625 -0.65625 -0.139375 -0.9475 -0.050625 0.04125 -0.128125 0.60625 -0.26875 0.98 2.235625 4.399375 2.1825 0.636875 0.564375 -0.68125 -3.04625 -2.013125 1.381875 2.19625 1.556875 1.52875 0.705625 3.245 -2.5925 -2.706875 -1.401875 -0.494375 -2.32375 -2.714375 -0.49125 -1.65875 -0.88125 1.328125 2.438125 -1.353125 -0.665625 1.208125 3.945 -2.404375 1.1 -0.204375 1.4525 2.076875 2.25875 0.321875 2.616875 2.445625 0.075625 1.07625 0.911875 0.51375 0.686875 2.778125 -0.000625 0.966875 0.929375 -0.05125 0.59375 -1.620625 1.8625 -0.83125 -0.21375 0.518125 2.10875 -0.92375 2.3575 -0.14375 -0.050625 -1.035625 -0.128125 2.96125 0.455625 1.743125 0.78625 1.255 2.968125 -1.633125 0.946875 0.794375 1.330625 1.5175 2.505625 -0.3025 -0.99375 -0.7875 0.544375 -0.85125 1.631875 -0.069375 0.750625 -0.556875 3.87125 -4.735 0.87625 -0.215 -0.9575 -3.25875 -1.375625 -0.34125 -1.5175 0.723125 -0.20125 0.189375 0.11625 0.4875 1.524375 0.534375 0.591875 5.323125 2.015 -0.28625 0.00625 -4.211875 3.198125 -1.186875 -1.77375 -0.275625 0.686875 -0.459375 -0.8375 0.815 1.9925 -0.65875 2.618125 -0.629375 -0.52125 -0.394375 2.014375 2.715625 -2.15625 1.576875 1.075625 1.821875 2.155625 -1.28 0.5075 -1.256875 0.39625 1.224375 1.42125 1.586875 4.090625 2.97375 -2.235 0.976875 2.13625 -3.044375 -1.4475 -3.119375 -1.26875 0.0275 3.46125 2.2325 2.04375 0.884375 -0.409375 3.7275 0.78125 0.28875 1.23 1.626875 0.679375 -3.43125 2.390625 1.008125 2.556875 -0.94 2.18625 +5.54125 7.670625 3.515 5.990625 5.329375 7.754375 4.940625 6.75375 10.635 6.436875 9.2975 5.354375 8.415 7.51125 5.38625 6.575 8.24 5.879375 6.56 6.2 5.496875 8.195 7.170625 7.965 6.08625 6.165625 7.56875 7.466875 9.22875 9.146875 5.919375 8.723125 7.5375 9.2625 7.758125 6.381875 7.68 7.31375 7.1125 3.10375 8.2325 6.36625 6.714375 5.94125 2.831875 6.7825 4.670625 9.079375 6.610625 7.898125 5.361875 6.203125 8.22875 8.445625 5.739375 6.680625 7.925625 5.629375 6.20375 9.0225 7.293125 8.525625 7.82375 4.04875 5.81 3.661875 3.514375 7.99625 8.736875 5.36625 3.455 8.01375 7.130625 6.043125 3.90375 6.53125 6.336875 4.564375 7.92 6.956875 4.424375 4.591875 5.923125 4.885 5.028125 6.75 5.944375 9.5525 3.406875 6.540625 3.31 6.2325 5.31625 6.068125 6.455 5.6625 4.3 6.979375 3.1825 4.39625 6.4575 3.030625 5.05125 3.004375 8.306875 6.27625 1.666875 3.985625 3.775 4.491875 7.131875 5.69875 8.408125 4.306875 6.5275 4.236875 5.394375 6.07375 2.081875 3.41375 4.399375 3.388125 5.14875 4.065 3.635 4.115 5.49375 2.986875 4.28125 3.021875 4.95375 3.72 6.7225 7.0975 3.659375 4.26375 3.750625 5.45125 5.326875 2.753125 1.039375 2.484375 7.261875 4.514375 4.029375 5.7375 5.033125 3.223125 4.10125 5.979375 3.97375 4.880625 2.8675 6.31125 1.875625 3.875 3.585625 3.590625 4.685625 2.84125 5.333125 5.529375 3.77625 3.140625 3.740625 1.25125 5.216875 4.325625 3.349375 4.38625 2.236875 1.0075 4.591875 5.2125 3.66625 2.483125 3.335 2.50875 5.163125 3.278125 2.338125 4.84875 6.3825 2.073125 1.4375 4.778125 5.845625 3.121875 5.525625 3.2525 2.85875 6.76625 4.30375 5.13125 5.179375 4.24125 2.72125 2.115 3.061875 3.705625 3.289375 5.05 2.920625 2.745 6.629375 1.215625 6.465625 3.535625 4.6175 3.941875 2.77375 2.2975 0.695625 3.01625 4.894375 0.838125 2.479375 2.99375 3.64375 3.39 5.1625 2.148125 0.864375 3.555 2.451875 0.969375 5.533125 6.911875 2.69375 3.048125 1.253125 3.634375 3.293125 3.88 2.118125 2.571875 1.740625 3.854375 1.05625 2.13875 3.565 1.888125 2.378125 1.535 1.228125 -0.5475 1.98625 1.0875 1.693125 0.026875 0.29625 5.210625 5.13375 3.754375 2.004375 1.041875 1.3925 1.615625 3.3025 2.87875 2.66125 0.429375 0.85875 1.89875 1.650625 4.57375 1.133125 1.615 -1.766875 1.916875 3.064375 4.523125 -1.838125 4.104375 0.474375 4.44875 1.49125 2.244375 3.473125 3.33 1.41 4.2475 2.836875 3.988125 2.119375 0.136875 1.27875 1.754375 1.955625 2.825625 0.846875 0.705625 3.098125 2.30375 3.679375 4.155 0.75375 -0.8225 -0.58125 6.89875 0.971875 1.42125 4.185625 2.46375 3.72 4.470625 0.838125 4.51 2.998125 2.209375 4.68375 3.375625 1.748125 4.219375 2.865 -1.31875 -0.86375 2.408125 1.768125 1.74375 -0.6 2.930625 0.365625 0.230625 4.121875 5.414375 2.0225 -0.29375 0.165 0.910625 1.1825 3.655625 1.948125 3.249375 1.854375 1.2375 4.645 3.785625 1.97 1.46875 1.0075 2.8575 1.366875 2.335625 2.77125 -0.80875 0.08 0.708125 2.7575 3.66625 1.64375 0.59875 0.926875 2.2225 1.880625 3.956875 1.57125 3.061875 4.904375 -1.02625 3.915625 3.8625 2.104375 3.061875 -0.20625 3.338125 3.301875 2.339375 1.79375 -1.9425 0.246875 1.14 4.883125 0.69125 2.715625 2.110625 1.379375 3.34 -0.083125 2.455 1.990625 -2.79 0.819375 1.425625 0.720625 -0.643125 2.5525 2.05625 1.9225 3.636875 1.28 -0.754375 -0.203125 2.555 4.278125 -0.038125 2.848125 2.280625 2.04 5.88875 0.39375 0.589375 -1.55125 2.295625 4.99375 0.816875 1.098125 5.605 4.130625 1.514375 1.071875 3.2425 1.97125 1.664375 2.51125 -1.2275 4.445 4.38 3.903125 0.8575 1.08 2.10125 2.38625 1.45875 2.145 1.2325 1.189375 1.13125 1.965 0.285625 3.82375 1.718125 3.79875 0.70375 2.3075 3.450625 2.991875 1.3525 -0.050625 0.96875 1.5225 -0.386875 1.654375 -0.064375 1.894375 3.265 0.415 0.233125 0.83625 4.500625 2.31875 1.88 0.600625 -0.156875 -0.1025 2.1125 1.520625 2.47 0.968125 0.284375 3.00875 0.136875 2.2525 5.070625 1.188125 1.93875 -0.129375 -0.8375 -0.816875 0.365 -0.423125 1.02125 6.093125 -0.725 1.74 1.19625 1.889375 2.089375 1.356875 0.9075 1.463125 1.203125 0.676875 2.6775 0.005 3.7575 -1.883125 -0.6575 1.13875 4.020625 2.2525 0.82 1.125625 2.000625 2.55125 -1.48875 -0.763125 5.105 1.664375 3.288125 3.039375 2.453125 0.92875 0.73375 3.336875 4.241875 5.225 2.345 1.275 2.926875 2.695625 0.5125 -0.75125 -0.68125 2.541875 0.254375 6.035 -1.134375 1.239375 1.120625 1.90875 2.9275 -0.268125 1.601875 -0.99625 -1.951875 0.255625 3.03 2.16375 3.241875 -0.70875 2.83625 0.779375 3.285 2.376875 0.0525 3.428125 1.95 -0.475 5.071875 4.90875 -0.345625 -0.67125 0.735625 1.763125 -1.0625 0.39 -0.765 3.099375 0.598125 0.316875 2.550625 0.096875 3.0675 2.1575 1.3325 1.683125 1.09875 -0.085625 0.39375 0.975 0.078125 -2.00125 2.328125 2.334375 2.489375 1.53625 3.515625 -3.95 1.935 -0.395 1.375625 4.27125 -0.14875 -0.588125 1.055625 -2.975625 1.39875 4.196875 3.646875 -1.074375 0.19875 0.526875 0.298125 1.7475 0.539375 -0.7925 2.74125 -1.59125 1.584375 -1.075625 3.05125 2.721875 -0.781875 3.08 0.348125 2.160625 3.515 0.970625 0.51875 -1.27125 1.499375 2.015625 0.37625 2.693125 1.856875 2.87875 -0.673125 3.12125 -0.3125 2.2925 2.013125 3.254375 1.01375 -2.163125 2.190625 0.45125 -2.645625 -0.035 -0.188125 3.89625 4.20125 -0.765625 1.295625 0.78875 0.91625 -1.899375 1.264375 5.244375 4.06 -0.405625 0.740625 1.71125 0.78875 -2.0925 1.60875 5.408125 1.038125 -0.85375 1.721875 -0.125625 -0.233125 1.88625 1.306875 -1.669375 -1.8275 -0.119375 1.815 2.563125 3.64125 -0.335625 -1.10875 0.794375 -3.634375 2.7375 0.728125 1.718125 2.178125 1.128125 0.88375 2.65125 3.005 0.674375 -0.19125 -0.758125 2.08375 -1.130625 -0.4325 2.735625 -1.479375 1.26875 0.89625 -1.116875 2.2225 0.561875 -0.626875 -0.255625 3.44125 1.80125 -0.593125 0.893125 -0.4475 -1.364375 0.64 2.996875 -0.23875 3.065 -0.670625 -3.703125 -0.3025 2.065625 -1.40875 1.486875 -0.70375 0.2625 0.825625 -1.328125 0.065 3.054375 1.125 -0.86 1.008125 -0.19875 0.95 1.869375 -0.628125 3.291875 0.25 4.87125 1.028125 1.515 3.23375 3.6425 -0.924375 0.375625 -1.84875 -1.208125 0.0175 4.3 2.13 1.926875 -1.3325 -0.285625 2.96 -2.618125 0.321875 1.519375 3.775625 1.43375 0.445 0.674375 5.21625 0.476875 -1.379375 -0.1775 1.94125 -3.4575 0.869375 0.299375 -1.910625 -0.3925 0.23 0.456875 3.205 0.155625 1.318125 1.51 -1.596875 0.760625 -2.96875 2.825 2.348125 0.778125 2.106875 1.49125 0.91875 -1.34 1.490625 2.81 0.754375 0.130625 0.395 1.793125 -0.7275 0.749375 1.873125 -0.60125 -0.12875 -0.333125 0.416875 0.574375 -0.44375 -1.14125 -0.023125 1.630625 1.0325 0.309375 0.4675 1.8425 3.48875 -0.30875 -0.95375 1.05125 -1.473125 0.009375 1.169375 0.94 2.3275 0.61125 3.07 0.681875 2.73375 0.265625 0.379375 0.596875 -0.43125 2.055 2.121875 -0.778125 3.633125 0.425 0.275 1.961875 -0.398125 0.581875 -0.403125 1.039375 -0.8725 -0.830625 2.605625 0.046875 1.9175 -1.84625 0.36875 -0.0875 0.689375 0.123125 1.89375 -0.535 -0.156875 0.483125 2.040625 -1.663125 -0.73125 0.71 1.7475 -0.18375 -0.06875 -0.451875 0.128125 0.860625 1.630625 -4.824375 0.14 1.048125 3.071875 -1.4925 0.88375 4.43375 2.934375 0.985 -0.56 2.244375 0.960625 4.135 -0.39375 -2.426875 -2.396875 1.77625 1.174375 -0.2475 0.265625 0.201875 1.9975 3.23625 -1.68125 2.945625 0.490625 0.290625 0.88375 3.10125 2.6025 3.38875 0.794375 1.1575 1.37625 4.13625 2.48875 -0.255625 -1.559375 0.5925 3 2.931875 4.244375 0.955 -0.278125 -0.390625 -2.146875 1.00875 0.990625 0.1725 2.014375 1.18875 -1.256875 -0.771875 -0.368125 1.7725 -0.299375 1.995 1.459375 -3.245 1.47875 -0.356875 1.875 2.5275 2.013125 -0.391875 1.475 4.18625 -0.215625 0.6825 -0.705 1.09625 2.048125 0.581875 0.8925 -0.408125 3.49375 -1.735 -2.70875 1.31 0.05 0.0375 0.999375 2.568125 -0.249375 0.883125 3.599375 -0.29625 2.673125 0.865625 -0.5725 0.776875 0.1175 2.033125 0.16125 2.559375 -0.5925 2.94125 -0.3525 3.055625 0.631875 0.716875 0.531875 1.27625 0.04 2.39125 1.745625 2.84125 4.00625 -0.420625 -0.493125 0.898125 1.8575 1.351875 -1.851875 0.875 0.84375 -1.344375 1.900625 2.0275 -3.79 -0.968125 0.63125 0.44375 2.390625 -2.15875 2.780625 2.47 2.639375 0.615 -0.561875 1.839375 1.1925 5.801875 0.99875 2.51125 4.964375 3.243125 2.045625 -1.439375 -0.254375 2.759375 0.448125 0.53 -1.1975 -1.824375 -0.41 -1.601875 0.6225 1.615625 0.43625 2.71125 -2.28625 -0.8375 0.70375 0.091875 0.11625 -0.795 -0.200625 0.6825 2.07875 -1.3975 1.0625 -0.69 1.06875 0.55625 -1.565 0.66625 2.990625 3.0475 0.845 0.940625 -4.335 1.26125 -0.6975 1.9275 0.181875 1.69875 -0.411875 2.65375 -0.62125 -0.126875 3.446875 1.52625 0.626875 0.5725 0.886875 5.255 2.924375 1.475625 -1.3375 -0.384375 -0.011875 -0.34875 3.308125 1.780625 -0.09125 -0.49 2.40375 1.28875 -0.9625 3.156875 0.134375 -0.288125 -0.7975 -1.686875 -0.1775 1.278125 -0.6625 2.93375 -3.280625 2.3925 1.04375 -1.1775 0.25 4.210625 -0.655625 0.853125 0.381875 -0.41375 1.633125 2.07 0.41375 2.4375 1.525625 3.025 -2.4525 -1.883125 2.756875 0.978125 2.58125 3.698125 0.23125 -0.826875 1.75625 -0.794375 -1.76625 0.24625 0.289375 0.235625 0.348125 3.568125 -2.66 3.4675 0.3075 1.629375 -2.416875 -3.878125 1.658125 1.64375 3.421875 -0.4325 0.18875 1.4975 -0.238125 -0.494375 0.241875 0.559375 0.04875 2.734375 0.206875 -0.93625 -1.4475 -1.196875 1.6175 -1.026875 -0.87375 1.456875 0.305625 0.57375 1.516875 0.865 0.243125 1.194375 -0.121875 1.660625 2.198125 -0.041875 1.530625 -1.328125 0.958125 0.420625 -0.134375 0.99375 2.411875 1.966875 0.895625 0.08375 -1.39125 0.40125 1.789375 -0.8825 3.815 0.658125 -0.601875 0.47 2.879375 2.390625 2.115 0.305 -1.27875 -0.32875 0.454375 2.066875 -0.31125 -2.2225 0.476875 1.218125 2.773125 -0.913125 0.311875 4.179375 -1.16 1.76125 -2.256875 0.053125 -3.421875 0.643125 -0.200625 0.234375 0.85375 -2.09875 3.93375 -1.06125 -0.23375 -0.806875 0.06 0.110625 -1.273125 -0.468125 -0.670625 1.271875 2.93125 2.854375 3.67625 -4.346875 0.585625 0.77875 -0.758125 0.043125 -1.659375 0.613125 -1.390625 -0.824375 -0.646875 -0.465 2.329375 3.468125 -0.175 -1.09 -1.261875 -0.87375 -0.04375 -0.491875 0.308125 0.2325 -0.568125 -1.883125 0.411875 2.221875 0.40125 -1.67625 1.48875 0.735625 -0.856875 -0.5175 0.8525 2.19625 2.23625 0.2625 -0.175625 0.454375 2.3825 1.924375 0.804375 0.021875 0.256875 1.3075 -1.975625 1.40875 0.01125 -1.385 0.675 -0.56125 2.243125 1.749375 2.1525 0.94 0.259375 1.466875 -3.263125 2.795625 3.45875 -0.985625 0.661875 1.07625 2.726875 -0.51625 -1.693125 1.37875 0.315625 -0.365 -0.650625 -0.52625 -1.1625 -0.21375 2.456875 2.69625 1.25875 -1.748125 2.686875 1.140625 2.74625 3.695 1.284375 -1.580625 0.31375 -1.831875 -1.410625 3.875 1.83375 0.8525 1.481875 -2.7 2.594375 4.134375 1.09375 -0.531875 -1.2225 0.8075 1.954375 -0.025 2.40125 -0.42625 0.1175 0.20375 -1.59875 0.2675 -2.503125 1.318125 1.745625 -0.61 1.8725 0.598125 2.2425 0.738125 1.013125 1.313125 -2.670625 0.92875 1.14625 -1.348125 1.475 1.869375 2.429375 0.8275 1.36625 -0.7625 -0.079375 1.04875 -2.418125 -0.676875 1.840625 0.963125 1.158125 1.563125 -0.7225 -1.36125 0.213125 0.894375 1.73 0.2325 -0.1825 4.115 -0.295625 -0.9975 0.661875 -1.09125 -1.6925 -0.09125 -3.348125 -0.105 2.409375 -1.85875 3.47125 0.711875 -3.1325 -1.464375 1.559375 1.069375 0.359375 -0.668125 -0.72875 1.15 -2.354375 -2.0425 1.509375 -0.704375 0.333125 -0.11625 3.070625 0.861875 0.34625 -2.09125 -0.18 -0.11625 -0.8025 0.6175 -1.5425 -1.810625 0.50125 -1.79625 -3.2425 -2.60875 -1.429375 -1.503125 -1.94625 -1.273125 2.45625 -1.41375 2.96875 0.496875 2.2275 -1.113125 -0.62125 -1.181875 -3.891875 0.296875 3.5525 2.824375 1.865 -2.894375 1.681875 -4.36 0.42125 0.96625 -1.2625 0.444375 1.27625 0.985 -2.361875 1.08625 1.131875 -1.39625 0.251875 -1.50375 -0.1975 2.261875 -3.565 -2.72375 -0.9275 1.8575 -0.615625 1.266875 1.513125 -0.188125 -0.435 -1.3175 -0.823125 0.025 0.4625 0.49625 0.32125 0.2275 -0.685 -0.223125 1.915 -1.47375 -0.483125 -0.610625 -0.141875 1.691875 0.549375 -1.4825 -0.84625 -0.228125 -1.5775 -2.27 -1.32 -1.19875 2.04875 2.393125 -2.419375 -1.401875 0.13875 1.088125 -4.53 -0.31625 0.47125 -0.155625 -0.3375 -0.43625 2.34875 -0.7975 0.45375 0.423125 0.335 -0.52375 2.3375 2.726875 -0.865 0.39875 3.33 1.231875 2.823125 2.93125 0.804375 -3.1725 -0.995625 0.1225 0.904375 4.0875 2.17125 0.143125 -1.525 0.22875 1.346875 -1.47875 4.743125 -4.28 0.47125 -1.845 2.868125 1.414375 0.688125 -2.681875 0.81375 -0.636875 0.236875 0.509375 1.6575 -1.8675 0.16375 -0.0125 -2.534375 2.158125 -0.329375 0.9175 -1.06125 0.1025 -0.355 -2.258125 -0.85125 1.01875 0.869375 1.93625 0.958125 1.6875 3.49875 1.691875 -0.538125 -2.244375 2.673125 -4.24 1.9925 -1 -2.905625 -3.715 -1.885625 -0.334375 -0.465625 -0.188125 1.395625 -1.778125 -2.45375 -0.991875 -3.353125 1.52125 0.73375 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_7.2ms_ref.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_7.2ms_ref.hrd new file mode 100644 index 0000000..419af25 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_7.2ms_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 7.2 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676034931 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0.001875 0.020625 0.008125 -0.02 -0.0375 -0.051875 -0.0325 -0.018125 -0.018125 -0.0625 -0.048125 0.00125 -0.013125 0.025625 0.075625 0.03 0.01 0.0425 0.035625 0.06625 0.049375 0.0575 0.013125 -0.015625 -0.046875 -0.033125 -0.03125 -0.043125 0.004375 -0.0475 -0.030625 0.01125 0.005625 0.020625 -0.0025 0.0125 -0.009375 0.0125 0.005 0.0075 0.019375 0.00625 0.023125 -0.01125 0.025 -0.081875 -0.021875 -0.028125 -0.04625 -0.04125 -0.00625 -0.01 0.013125 0.00875 0.0525 0.014375 -0.000625 0.0075 0.03125 -0.02375 0.03 0.063125 0.02625 0.02375 0.006875 0.02125 0.009375 0.033125 -0.086875 -0.03125 -0.04375 0.004375 0.024375 -0.041875 -0.0075 -0.025 -0.019375 0.038125 0.043125 0.020625 -0.06375 0.0325 0.00625 -0.01625 -0.05125 -0.049375 -0.025625 -0.0625 -0.025 -0.01125 0.0125 -0.049375 0.004375 -0.025 0.046875 -0.003125 0.04 0.008125 0.055 -0.009375 0.018125 0.024375 0.07125 0.01375 -0.014375 0.046875 0.01 0.01375 -0.03 -0.05375 0.06375 -0.059375 -0.026875 -0.039375 -0.046875 -0.0125 0.009375 -0.06 0.01125 0.035625 0.013125 -0.04125 -0.00375 -0.015 0.019375 0.02375 -0.030625 0.015 -0.025 0.033125 -0.033125 0.01625 -0.041875 -0.095625 0.025625 0.02875 0.01625 -0.0025 0.01625 -0.016875 0.025625 0.068125 0.03625 -0.028125 0.005625 0.00375 0.035 -0.018125 -0.001875 0.043125 -0.00375 0.005625 -0.0125 -0.05 -0.010625 -0.05875 0.0175 -0.006875 0.01125 0.00375 0.01625 -0.04125 0.053125 -0.041875 0.020625 0.025 0.038125 -0.0075 -0.003125 -0.021875 0.00125 -0.0325 0.02375 -0.0675 -0.010625 -0.05375 0.016875 0.016875 -0.03625 -0.00375 0.008125 -0.0175 0.063125 0.084375 -0.03875 0.001875 0.00125 0.020625 0.0075 -0.001875 -0.026875 -0.03625 -0.048125 0.005 -0.004375 -0.07625 -0.015625 -0.066875 -0.00875 -0.006875 -0.025625 0.009375 0.0475 -0.028125 0.04125 -0.011875 -0.0175 -0.028125 0.0075 0.051875 -0.020625 -0.03 0.010625 -0.044375 -0.02375 -0.02625 -0.008125 0.0075 -0.0075 0.006875 0.02125 -0.013125 0.025625 0.02 0.068125 0 -0.006875 0.0275 0.063125 0.004375 -0.014375 0.04125 -0.010625 0.013125 0.005625 -0.045625 -0.041875 -0.02125 -0.015 0.0225 0.01125 0.036875 0.00375 0.000625 0.02875 -0.005 -0.001875 -0.030625 -0.000625 -0.011875 0.015 -0.08 0.044375 -0.009375 -0.04 -0.03875 -0.02625 0.013125 0.020625 -0.0225 0.01375 -0.034375 -0.0075 0.009375 0.056875 -0.01125 -0.013125 0.031875 0.0075 0.048125 -0.00125 0.023125 -0.019375 -0.005625 -0.068125 0.003125 -0.0025 -0.0025 -0.025 -0.009375 -0.01375 -0.038125 -0.026875 0.033125 0.015625 -0.013125 -0.014375 0.03375 0.025625 0.0025 0.036875 -0.018125 0.006875 -0.001875 -0.010625 0.0125 -0.014375 -0.0025 -0.026875 -0.020625 -0.055 -0.0125 0.00625 -0.02625 -0.021875 0.0025 0.021875 0.0325 0.09 0.034375 0.059375 0.014375 -0.020625 0.011875 -0.005 -0.011875 0.01125 -0.0025 0.035 -0.07875 -0.0275 -0.023125 0.0325 -0.010625 0.010625 0.04125 -0.066875 -0.020625 0.040625 -0.0025 -0.008125 -0.021875 0.05375 0.004375 0.01625 0.015 -0.0375 -0.095 -0.074375 0.0125 -0.00625 0.004375 0.01 0.0175 0.06375 0.04625 0.04 -0.005 0.03 0.020625 0.036875 0.034375 0.015 -0.0075 0.024375 -0.005625 -0.015 0.0275 0.001875 -0.01875 -0.04875 -0.05875 -0.031875 0.035625 0.000625 0.009375 0.016875 0.0125 0.0175 -0.02125 -0.004375 0.013125 -0.00875 0.02 0.045 0.004375 -0.0375 -0.000625 -0.00625 -0.01 0.01875 -0.01875 -0.02125 -0.05 0.01125 0.03 0.01125 0.00125 0.01375 0.063125 0.061875 0.006875 0.064375 0.029375 0.02125 0.01375 0.039375 0.055625 0.03 0.06625 -0.045 -0.020625 0.0025 -0.021875 0 -0.021875 -0.026875 -0.004375 0.00875 0.018125 0.045 0.045 0.0475 -0.02 0.00625 0.028125 0.009375 -0.02625 -0.056875 -0.000625 0.00625 0.005625 -0.026875 -0.04625 -0.00375 0.013125 -0.01875 0.015625 -0.0025 0.068125 0.008125 0.076875 0.03375 0.008125 0.04125 0.05625 -0.0075 0.0075 0.041875 -0.001875 -0.051875 -0.02375 -0.011875 -0.035625 -0.0525 -0.014375 -0.02875 0.0025 -0.026875 0.005625 0.005625 0.015 0.018125 -0.025625 -0.020625 -0.005625 0.025625 0.034375 -0.029375 -0.024375 -0.051875 -0.023125 0.014375 -0.04125 -0.00125 0.055625 0.0175 0.05875 -0.006875 0.018125 0.0225 0.016875 0.025 0.0775 0.09 0.0425 0.02125 0.014375 0.086875 0.043125 -0.008125 -0.010625 -0.08125 -0.0325 -0.0725 -0.0175 -0.030625 0.010625 0.01125 0.0325 0.048125 0.010625 0.020625 0.009375 0.07625 -0.0375 -0.0475 -0.013125 0.004375 -0.00125 0.004375 -0.01375 -0.089375 -0.0275 -0.019375 0.02875 0.000625 0.03125 -0.00625 -0.013125 -0.010625 0.00125 0.0275 0.05 0.01625 0.009375 0.02 0.013125 0.034375 0.05125 0.009375 0.015625 -0.01 -0.0225 -0.0175 -0.008125 -0.014375 0.003125 -0.02625 -0.000625 -0.006875 0.023125 -0.068125 0.01875 0.020625 -0.0025 0.0125 -0.015 0.040625 0.025 -0.074375 -0.04875 -0.028125 0.020625 -0.004375 0.0075 -0.01375 -0.0075 -0.020625 0.0225 -0.008125 0.021875 -0.008125 -0.005625 -0.02625 0.036875 0.056875 0.05625 0.07375 0.02375 0.04 -0.011875 0.005 0.021875 -0.01 0.015625 0.005 0.0125 -0.02625 -0.009375 0 -0.00125 -0.026875 0.04875 0 -0.02 -0.013125 -0.004375 -0.00875 -0.020625 -0.0375 0.0325 -0.009375 -0.031875 -0.01625 -0.001875 -0.02875 -0.03875 0 0.046875 -0.014375 -0.019375 -0.001875 0.014375 0.006875 0.035625 0.04 0.014375 0.03375 -0.001875 0.04125 0.04 0.0325 0.013125 0.0175 0.0225 -0.011875 -0.033125 -0.04625 0.015625 -0.0425 -0.033125 -0.0075 0.006875 -0.020625 -0.005625 0.02375 0.064375 0.005625 -0.0375 0.005 0.001875 -0.01125 0.00625 0.018125 -0.019375 0.005625 -0.03 0.035 -0.03 0.000625 0.014375 -0.045 -0.02125 -0.016875 -0.026875 0.02875 -0.000625 -0.029375 0.01125 0.03875 0.071875 0.0125 0.038125 0.0375 0.02125 0.06875 -0.02 0.001875 -0.02 -0.035625 -0.011875 -0.065625 -0.0075 0.015 -0.01125 -0.015625 0.02 -0.01625 -0.006875 -0.016875 0.020625 -0.029375 -0.035 -0.05625 -0.0375 0.016875 -0.033125 -0.075625 -0.013125 0.00375 -0.00875 -0.00375 -0.06625 -0.016875 -0.044375 -0.000625 0.00875 0.011875 0.046875 0.035625 0.056875 -0.01125 0.014375 0.020625 0.046875 0.040625 -0.035625 0.036875 0.011875 -0.004375 -0.00375 -0.02 -0.049375 -0.03 0.011875 0.03375 -0.00875 0.030625 -0.0075 -0.00375 -0.009375 -0.04 -0.01375 0.008125 0.028125 0.011875 -0.00875 -0.033125 -0.034375 0.0075 -0.01375 -0.020625 0.00625 -0.0225 -0.008125 -0.011875 0.02875 0.036875 0.018125 -0.00375 -0.000625 0.0525 0.016875 -0.005 0.075 0.035 0.02 0.020625 0.011875 -0.014375 -0.02 -0.024375 -0.0325 0.0075 -0.04 -0.055 -0.0125 0.0175 0.006875 0.01375 -0.026875 -0.019375 0.015 0.016875 -0.03625 -0.01375 0.04 -0.01375 -0.013125 -0.03375 -0.0175 -0.020625 -0.006875 0.006875 -0.031875 -0.045625 -0.01875 0.000625 -0.0025 0.01 0.001875 0.05875 -0.00625 0.050625 0.025 0.0025 0.026875 0.030625 0.069375 0.056875 0.018125 -0.005625 -0.003125 -0.02875 0.016875 -0.04625 -0.065 -0.000625 -0.0075 -0.00625 -0.038125 0.01375 0.03 -0.00375 0.035 0.0275 0.008125 -0.013125 -0.00875 0.01375 -0.030625 0.030625 -0.020625 -0.06625 -0.0525 -0.04125 0.0075 -0.01375 0.0175 0.0325 0.03 0.011875 0.031875 0.0375 0.01875 0.03875 0.053125 0.044375 0.030625 -0.00375 0.0125 -0.024375 0.00375 0 -0.036875 -0.023125 -0.0525 -0.033125 -0.030625 -0.044375 -0.039375 0 0.02 -0.00875 -0.005625 -0.01875 -0.020625 -0.03 -0.00625 -0.004375 -0.04 -0.0225 -0.020625 -0.10125 -0.01 -0.03625 -0.055625 -0.054375 0.025 -0.02 0.025 -0.000625 0.0275 0.0075 0.054375 -0.016875 0.02375 0.0125 0.03625 0.0275 0.051875 -0.021875 -0.05875 -0.0125 -0.0175 -0.020625 -0.03125 -0.023125 -0.0175 0.03375 -0.04375 -0.06125 -0.00875 0.0675 0.031875 -0.02875 0.011875 -0.036875 -0.038125 0.026875 0.008125 0.003125 -0.035 -0.04 0.009375 -0.05375 0.02375 -0.0675 -0.021875 -0.035 -0.058125 -0.03 0.00625 0.01125 -0.018125 0.01625 0.00375 0.00875 0.064375 0.049375 0.03375 0.0125 -0.020625 0.03 -0.04125 0.013125 -0.0075 0.029375 -0.079375 -0.01375 0.005625 -0.02125 -0.0225 0.0275 -0.024375 -0.02375 0.015625 -0.0275 0.03625 0.02125 -0.00625 -0.01125 0.003125 0.000625 -0.008125 0.023125 -0.0175 -0.034375 -0.024375 0.041875 -0.026875 -0.046875 -0.023125 -0.015 -0.01625 -0.035625 0.00375 0.0575 0.019375 0.044375 0.086875 0.064375 0.05375 0.0125 0.055625 0.01 0.033125 0.015625 -0.01 -0.056875 -0.053125 -0.06625 -0.023125 -0.00625 0.02625 -0.054375 -0.026875 -0.018125 0.028125 0.008125 -0.0025 -0.023125 0.04 0.0475 -0.04375 -0.041875 -0.044375 -0.009375 -0.041875 -0.0075 -0.03875 -0.035 -0.07375 -0.004375 0.013125 0.009375 -0.00875 0.0425 0.02875 0.001875 0.038125 0.02 0.0475 0.02125 0.035 0.055 0.04625 0.064375 0.01 -0.014375 -0.023125 -0.045 -0.020625 0.000625 -0.02625 -0.000625 -0.023125 0.039375 0.0225 -0.0175 -0.00375 0.04125 0.026875 0.039375 0.033125 -0.015625 -0.011875 0.0175 -0.04375 -0.09 0.020625 -0.04625 -0.060625 0.04375 -0.013125 0.000625 -0.01875 -0.0225 0.02375 0.013125 0.00625 -0.00875 0.000625 0.065 0.01 0.025625 0.039375 -0.011875 0.01 -0.028125 0 -0.024375 -0.076875 -0.05125 -0.0025 -0.028125 -0.02875 -0.02125 -0.028125 0.029375 -0.006875 0.019375 -0.05875 -0.039375 0.085 0.060625 0.01375 -0.010625 0.00125 -0.015 0.009375 -0.015625 -0.005 0.02375 -0.04 -0.0375 0.026875 0.034375 0.044375 0.040625 0.01625 -0.0075 0.044375 0.056875 0.02625 0.03 0.0275 0.06125 -0.020625 -0.025625 -0.01375 -0.033125 -0.055625 -0.028125 -0.0275 -0.010625 -0.01125 0.005 -0.0275 -0.03375 -0.03125 0.014375 0.03625 0.0475 -0.023125 0.01125 -0.013125 -0.053125 -0.030625 -0.021875 0.01 -0.035625 -0.035625 -0.034375 -0.02375 -0.03125 -0.05875 0.016875 -0.00375 -0.056875 0.02 0.01 0.01625 -0.025 0.06 0.074375 0.0125 0.05625 0.01625 0.058125 -0.0525 0.02625 -0.024375 -0.010625 -0.006875 -0.014375 -0.03875 -0.046875 -0.001875 -0.061875 -0.009375 -0.021875 0.03 0.02375 -0.023125 0.023125 0.02625 0.034375 0.064375 -0.035 -0.018125 0.035625 -0.03125 -0.02 0.01 -0.008125 -0.01125 -0.0475 -0.041875 -0.049375 -0.08125 0.000625 0 0.0375 -0.00875 0.0325 0.026875 0.02 0.026875 0.086875 0.015625 0.004375 0.038125 0.040625 0.060625 0.028125 -0.018125 0.0375 -0.03 -0.031875 -0.015625 -0.003125 -0.028125 -0.000625 -0.003125 -0.015625 0.0175 -0.02625 0.003125 -0.0125 0.005 -0.00375 0.023125 0.009375 -0.033125 -0.00625 -0.005625 -0.01625 -0.038125 -0.0075 -0.015625 -0.0275 -0.034375 0.025 -0.04125 0.025625 -0.043125 0.06625 0.02 0.045625 0.03625 0.065625 -0.03125 0.025625 0.000625 0.00875 0.031875 0.0175 0.0175 0.025 -0.005 -0.015625 0.016875 0.008125 -0.0425 -0.01875 0.04125 0.00125 0.011875 0.02875 0.044375 0.020625 0.005 -0.00125 -0.0125 0.00375 -0.01125 0.0125 0.00375 -0.09375 -0.01625 -0.018125 -0.02875 -0.024375 0.010625 -0.0375 0.0025 0.01 0.05 0.031875 0.0525 0.006875 0.036875 0.043125 0.0175 -0.0025 -0.03125 -0.039375 -0.001875 -0.0075 -0.03 -0.01375 -0.023125 -0.0175 0.01125 -0.038125 0.009375 -0.02 -0.018125 0.035 -0.034375 0.034375 -0.024375 -0.055 -0.0225 -0.0075 -0.053125 0.014375 -0.00875 -0.02875 -0.040625 -0.028125 0.015625 -0.004375 -0.029375 0.02 0.07625 -0.023125 0.0775 0.03125 0.043125 0.055625 0.019375 0.0425 0.02125 -0.035 0.0425 -0.001875 0.013125 0.021875 0.009375 -0.00375 -0.008125 0.016875 -0.023125 -0.02125 -0.00625 -0.02875 0.01375 0.015625 0.040625 0.013125 -0.009375 -0.009375 0 0.021875 -0.01625 0.01125 0.005625 0.023125 -0.050625 -0.05375 -0.0075 -0.0275 -0.000625 0.00875 -0.025 0.02625 0.0025 0.0325 0.06125 0.044375 0.080625 0.03875 0.070625 0.0675 -0.011875 0.055625 0.033125 -0.010625 0.0075 -0.0025 -0.01625 -0.045 -0.025 -0.07375 0.025625 0.000625 -0.05125 0.010625 -0.039375 -0.005 0.0325 0.059375 -0.0225 -0.041875 0.01 -0.0225 0.014375 0.026875 -0.01 -0.036875 -0.08625 -0.04625 0.01875 -0.010625 -0.01625 -0.00375 0.02375 -0.005625 0.036875 0.061875 0.068125 0.0575 0.050625 0.063125 0.04875 0.070625 0.021875 -0.014375 0.014375 -0.000625 0.035 -0.013125 0.0125 -0.0075 0.005625 -0.035625 -0.0625 -0.069375 0.011875 -0.02375 0.003125 0.034375 0.01875 -0.005 -0.00125 0.031875 0.005625 0.0575 -0.091875 0.055625 -0.015 -0.009375 -0.024375 0.0175 -0.02875 -0.041875 -0.001875 -0.00625 0.079375 0.0075 0.01875 0.02875 0.0375 0.09125 0.035625 0.013125 0.0775 0.01375 0.0275 0.00875 -0.00625 0.005625 0.045 -0.055 0.01375 0.00625 -0.0025 0.003125 -0.00625 0.018125 -0.04375 -0.018125 0.011875 0.03375 0.030625 -0.006875 0.02875 -0.0225 -0.02875 0.01125 -0.02 0.030625 0.01125 -0.02375 -0.023125 -0.009375 -0.028125 -0.025625 0 0.019375 -0.00125 -0.0025 0.07 0.019375 0.020625 0.080625 0.045625 0.02 0.038125 0.023125 -0.006875 0.01375 0.0175 -0.003125 -0.034375 -0.039375 -0.00625 0 0.00875 -0.0125 0.019375 -0.010625 -0.009375 0.020625 0.05 0.045625 0.023125 -0.018125 -0.033125 -0.004375 0.014375 -0.01875 -0.011875 0.006875 -0.038125 -0.015625 -0.020625 0.00375 0.005625 0.0175 0.00375 -0.008125 -0.0275 0.035625 0.01375 0.043125 0.044375 0.059375 0.0375 0.03375 0.025625 -0.04875 0.04375 -0.020625 -0.0225 0.01375 -0.043125 -0.04 0.01 0.005 0.015 -0.015625 0.005625 -0.010625 -0.008125 0.020625 0.00375 -0.039375 0.005 0.015 -0.00875 0.01 0.0025 -0.02875 -0.03 0.000625 -0.039375 +-0.025625 -0.01375 -0.011875 0.01 -0.019375 -0.0075 -0.070625 -0.0175 -0.0075 -0.054375 -0.02625 0.025 0.00625 0.058125 0.035625 0.000625 0.021875 0.026875 0.06 0.043125 0.006875 0.055625 0.025 0.021875 0.01375 -0.02125 -0.0175 -0.025 0.00875 0.00625 -0.02875 0.00875 0.011875 -0.009375 -0.013125 0.019375 -0.02875 -0.00375 -0.031875 0.0125 -0.008125 0.01 0.006875 -0.02625 0.041875 -0.058125 0.0475 0.013125 0.046875 -0.035 -0.02625 0.01 -0.03375 0.00125 0.025 0.014375 0.03125 -0.01375 0.023125 0.045 0.0125 0.046875 0.0175 -0.01 0.04 -0.02125 0.010625 -0.000625 -0.0025 -0.035 -0.05875 -0.045 0.0025 0.025625 0.0325 0.0025 0.025 0.001875 0.01625 -0.01875 -0.0175 -0.06375 0.004375 -0.000625 0.0075 -0.02625 -0.020625 -0.040625 -0.005625 -0.0375 -0.02125 -0.009375 0.003125 -0.004375 -0.005625 0.00125 0.030625 0.005 0.0025 -0.0125 0.003125 0.02875 0.04125 -0.013125 0.014375 0.025625 -0.014375 0.07375 0.015625 -0.03625 0.000625 0.0125 -0.0225 -0.02375 -0.0175 -0.010625 -0.004375 0.0075 -0.0075 -0.03 0.004375 -0.02125 -0.009375 0.015625 0.0325 0.013125 0.00125 0.0025 -0.021875 0.01375 -0.03375 -0.02125 0.005625 0.054375 -0.01375 -0.011875 -0.009375 -0.01875 -0.01375 0.030625 0.031875 -0.009375 0.048125 -0.010625 -0.011875 0.03125 -0.01125 0.0025 -0.004375 -0.010625 0.010625 0.010625 -0.0125 0.0075 -0.025 -0.001875 -0.036875 -0.0075 -0.00375 0.00875 -0.01 0.045 0.044375 -0.048125 -0.0325 -0.010625 0.00625 -0.023125 0.029375 -0.0075 -0.04125 -0.008125 -0.02625 -0.03 0.02125 -0.059375 0.016875 0.011875 0.035625 0.014375 -0.05125 0.018125 0.025 0.01875 0.006875 0.02875 0.07125 0.024375 0.020625 0.02 -0.003125 -0.005 -0.030625 0.009375 -0.015625 0.005625 0.02125 -0.014375 -0.006875 0.025625 0.04 0.035625 0.0375 -0.048125 -0.01375 0.029375 -0.02875 0.053125 -0.01125 -0.013125 -0.00125 0.01625 0.006875 -0.015 -0.021875 -0.0025 -0.021875 -0.015625 -0.024375 0.003125 0.02875 -0.00125 0.00875 0.0175 -0.02375 0.065625 0.025 0.026875 0.01625 0.0075 0.02875 0.024375 0.031875 -0.011875 0.0275 0.00375 -0.045 -0.005 -0.001875 -0.010625 -0.016875 0.009375 -0.015625 0.0175 0.01125 0.045625 -0.006875 0.085 -0.025625 -0.03875 0.019375 0.014375 0.00625 0.0075 -0.04 -0.000625 -0.030625 -0.02875 -0.04 -0.0075 -0.0175 0.01 0.006875 -0.026875 0.004375 0.046875 0.015 0.0425 0.03125 0.0075 0.000625 0.0175 0.004375 0.06375 0.029375 0.003125 -0.05375 -0.03875 0.011875 0.010625 -0.014375 0.0225 0.005625 0.0175 -0.050625 0 -0.04375 -0.004375 0.041875 -0.003125 -0.019375 -0.00375 0.03625 0.01375 -0.01125 -0.018125 -0.02 0.018125 -0.034375 -0.009375 0.060625 -0.024375 -0.029375 -0.011875 0.016875 0.015625 0.048125 0.053125 0.025625 0.00625 0.07125 -0.03625 0.03625 -0.014375 0.035625 0.04 0.02375 -0.00125 -0.01625 0.060625 -0.024375 0.026875 0.005625 -0.070625 0 -0.01875 -0.03 0.0225 0.014375 -0.01375 -0.0525 -0.019375 -0.038125 0.019375 -0.059375 -0.02625 0.0075 -0.015 -0.009375 -0.03125 0.01375 0.026875 0.000625 0.04375 -0.011875 -0.008125 0.015625 0.0075 0.045625 0.04875 0.025625 0.04625 0.026875 -0.00625 0 -0.0225 -0.010625 0.011875 0.018125 -0.011875 -0.00375 0.018125 -0.02375 0.029375 -0.02 -0.029375 -0.03875 -0.005 0.00125 -0.006875 0.06875 0.040625 0.004375 0.008125 0.0075 0.016875 -0.04125 -0.01125 -0.01625 -0.014375 -0.000625 -0.026875 -0.006875 -0.05375 -0.01875 0.016875 0.04625 0.044375 -0.003125 0.010625 0.034375 0.043125 0.034375 0.040625 0.018125 -0.0025 0.024375 -0.009375 0.075625 0.05 -0.020625 -0.03875 -0.010625 -0.0075 0.016875 -0.02625 -0.005625 -0.005625 0.020625 -0.0025 0.026875 0.043125 -0.001875 0.02375 0.004375 -0.0025 -0.01125 -0.050625 0.034375 0.03 -0.04875 -0.03125 -0.013125 0 0.028125 -0.04375 0.03375 0.020625 0.0375 0.01625 0.051875 0.01625 0.026875 0.003125 0.07375 0.065625 -0.01375 0.019375 0.03125 0.0075 -0.01 -0.04625 -0.020625 -0.001875 0.0075 -0.016875 0.024375 -0.03125 -0.03875 0.01125 0.019375 -0.01 0.040625 0.02375 0.048125 0.003125 -0.000625 0.034375 0.025625 -0.02 -0.030625 -0.025 -0.0275 -0.0075 -0.02875 -0.03625 -0.029375 -0.045625 -0.03375 -0.005 -0.026875 0.04 0.055 -0.006875 0.0425 -0.03625 0.008125 0.04125 0.04875 -0.025625 -0.025 0.0025 0.014375 -0.01125 -0.02625 -0.034375 0.0025 -0.03375 0.000625 -0.006875 0.0175 0.0125 0.03 -0.00375 0.029375 0.013125 0.050625 -0.0025 -0.00625 -0.00875 0.004375 0.025625 0.01875 -0.0225 0.06125 0.00125 -0.025625 0.015 -0.005 -0.016875 0.03375 0.0125 0.00875 0.016875 -0.0125 0.00375 0.038125 -0.033125 0.0025 0.019375 0.01875 0.0025 0.041875 -0.028125 -0.03 -0.025 -0.029375 0.01875 -0.028125 -0.02 0.008125 0.009375 -0.064375 -0.05625 -0.03375 0.00125 -0.01375 0.039375 0.02375 0.015 0.028125 -0.036875 0.0275 -0.03 -0.0325 -0.05 0.02875 -0.008125 0 0.01125 -0.003125 0.000625 -0.02125 0.041875 0.003125 0.024375 0.01375 0.03625 0.01125 -0.001875 -0.0075 0.0175 0 0.020625 0.000625 0.023125 -0.085 -0.040625 -0.056875 -0.01875 0.053125 -0.016875 -0.0475 -0.021875 -0.0375 0.000625 -0.021875 -0.023125 0.01625 -0.000625 -0.035625 0.009375 -0.014375 -0.0125 -0.02625 -0.053125 -0.001875 0.006875 -0.008125 0.018125 0.04125 0.038125 0.06625 -0.00125 0.000625 -0.006875 0.046875 0.041875 0.035625 -0.001875 -0.00875 0.044375 0.02 0.0025 -0.010625 0.01625 0.00125 -0.026875 0.026875 -0.025625 -0.003125 0.043125 -0.073125 0.0225 -0.02125 -0.020625 0.02875 -0.015 0.014375 -0.043125 -0.00625 -0.040625 -0.03 0.0075 0.038125 -0.02375 -0.031875 -0.041875 -0.0275 -0.009375 -0.008125 -0.025625 -0.019375 -0.000625 0.02875 0.000625 0.036875 0.011875 -0.03375 0.01375 -0.005625 -0.006875 0.005 0.02625 0.036875 0.03375 -0.009375 -0.011875 0.045 -0.01875 0.026875 -0.011875 -0.021875 -0.02875 -0.014375 -0.02 -0.014375 -0.023125 -0.030625 -0.0075 0.00375 -0.005625 -0.0425 -0.020625 0.00125 0.021875 -0.004375 -0.03875 -0.018125 -0.023125 -0.016875 -0.018125 -0.005625 0.005 0 0.0225 0.005 0.005 -0.0175 -0.003125 0.00125 -0.02875 0.06 -0.0125 0.01125 0.023125 0.014375 0.008125 0.04875 0.009375 -0.004375 -0.0225 -0.026875 -0.018125 -0.035625 0.026875 -0.01875 -0.0075 -0.0075 0.013125 -0.0025 -0.003125 0.025 0.020625 0.003125 0.0175 0.023125 0.0425 -0.03875 -0.011875 -0.01375 -0.04125 0.024375 -0.025 -0.0075 0.004375 0.006875 0.013125 -0.006875 0.04375 0.0075 0.054375 0.005 -0.019375 0.0275 0.013125 -0.001875 -0.03 0.010625 -0.00375 0.008125 -0.013125 -0.004375 0.00875 -0.005625 -0.0225 -0.039375 0.00875 0.006875 -0.021875 -0.010625 -0.031875 0.025 0.0275 0.01375 -0.003125 -0.014375 -0.0175 -0.010625 -0.00125 0.011875 0.01125 -0.015625 0.025 0.02125 0.015 0.06625 -0.004375 0.016875 0.0225 -0.00125 0.06875 0.031875 0.026875 0.019375 -0.005 0.019375 0.014375 -0.0175 -0.016875 0.0375 -0.00375 0.000625 -0.013125 0.02 -0.0175 -0.0275 -0.0025 -0.030625 -0.005 -0.053125 -0.01125 -0.0025 0.0125 -0.030625 0.01 0.04375 -0.009375 0.004375 -0.01375 -0.020625 0.006875 -0.034375 0.00625 -0.0375 -0.01125 0.01375 -0.01125 -0.0075 -0.015625 -0.010625 0.028125 -0.018125 -0.055 0.05875 0.006875 0.06625 0.011875 0.04375 0.006875 0.00375 0.024375 0.008125 0.01 -0.013125 0.00875 0.00125 -0.053125 -0.006875 -0.045 0.015625 -0.04625 0.01 -0.001875 -0.0025 0.025 0.000625 0.011875 0.01375 -0.019375 -0.01875 -0.004375 0.005 0.0125 -0.02875 -0.005 0.011875 -0.000625 0.014375 -0.03875 0.01125 0.03375 -0.0175 -0.009375 -0.021875 0.061875 0.041875 0.00625 0.00375 0.075 -0.03 0.008125 0.065 -0.00375 -0.02625 -0.02 -0.038125 -0.0825 -0.045 0.001875 -0.0725 -0.01 0.00875 0.039375 -0.03875 -0.00375 0.039375 -0.00625 0.044375 0.0075 -0.0525 0.03875 -0.02 0.03875 -0.055 -0.015 -0.018125 -0.02875 -0.02875 0.0175 -0.04125 -0.00875 -0.001875 -0.033125 -0.006875 0.000625 -0.01375 -0.00125 -0.021875 -0.015 0.036875 -0.015625 0.06875 0.036875 0.014375 0.009375 -0.016875 0.009375 -0.058125 -0.011875 -0.015 -0.018125 -0.005 -0.0425 -0.03875 -0.01875 0.014375 -0.009375 -0.024375 0.04125 -0.006875 -0.04125 0.008125 0.02125 -0.061875 -0.02125 -0.005625 -0.056875 0.01125 -0.019375 -0.006875 -0.013125 -0.03 -0.011875 -0.010625 -0.03625 -0.008125 0.0175 0.040625 0.015625 0.005625 0.031875 0.026875 0.046875 0.006875 0.018125 0.05375 0.08 0.036875 -0.055625 0.0225 -0.03 0.0075 -0.035 -0.035625 -0.060625 -0.0125 -0.006875 0.01125 0.044375 0.045 0.060625 -0.000625 0.004375 0.005 0.02625 -0.0525 -0.039375 0.001875 -0.08875 -0.01125 -0.050625 -0.0225 -0.013125 -0.00875 0.009375 0.006875 0.029375 -0.040625 0.05125 0.015625 0.04875 -0.015625 -0.01125 0.0075 0.00125 0.0125 0.03 -0.01 -0.00125 -0.0275 -0.02375 -0.00375 -0.019375 -0.041875 0.00125 0.00125 -0.005 -0.06875 -0.045 -0.035 0.025625 0.015625 -0.025625 0.01125 -0.02 -0.001875 -0.011875 0.00125 -0.00375 -0.011875 -0.021875 -0.005 0.04875 0.01 0.019375 -0.025625 0.010625 -0.04 0.006875 0.050625 -0.0575 0.0575 0.081875 0.056875 -0.010625 -0.026875 0.029375 0.000625 -0.03125 0.03 0.01125 -0.053125 -0.02375 -0.011875 0.008125 -0.01 -0.000625 -0.013125 -0.018125 0.01375 -0.0025 0.031875 -0.03 0.025625 0.0075 0.004375 -0.013125 0.005625 -0.031875 -0.018125 0.02 0.009375 0.0075 -0.029375 0.014375 -0.01125 0.02625 -0.02 0.031875 -0.0175 0.015 0.055 0.005 0.059375 -0.0025 0.004375 0.03 0.039375 0.03 0.009375 0.0025 0.024375 0.023125 0.02125 0.006875 -0.033125 -0.029375 -0.01875 -0.014375 0.0025 -0.005 0.008125 0.014375 0.008125 -0.039375 0.015625 0.000625 0.0075 0.030625 -0.001875 -0.024375 -0.010625 -0.0325 -0.016875 -0.030625 -0.009375 -0.006875 -0.0375 0.02 -0.02125 -0.006875 0.046875 0.050625 -0.004375 0.036875 -0.013125 0.048125 0.03875 0.028125 0.025 -0.03 0.005 0.013125 0.009375 -0.034375 0 -0.01875 0.0075 0.006875 -0.030625 -0.0275 -0.04875 -0.013125 0.019375 0.036875 0.02375 -0.01375 -0.054375 0.023125 0.011875 -0.003125 0.020625 -0.020625 0.011875 -0.028125 -0.031875 -0.08 -0.03125 -0.025625 -0.018125 -0.000625 -0.038125 0.0125 0.019375 -0.014375 0.058125 -0.000625 0.03875 0.02875 0.00625 0.0425 0.005 0.044375 0.02 0.033125 0.016875 0.003125 0.035625 -0.044375 -0.00375 0.009375 -0.014375 -0.011875 -0.029375 -0.031875 0.018125 -0.03875 -0.015 -0.030625 0.005625 -0.0175 -0.01375 0.0425 0.011875 -0.00125 -0.005625 -0.05 -0.0375 -0.03875 -0.05625 0.00625 0.005 -0.02375 -0.00875 0.01 -0.0275 0.0325 0.02 0.025 -0.02625 0.076875 0.019375 -0.019375 0.0225 -0.009375 0.001875 -0.03125 -0.00625 -0.021875 -0.029375 0.008125 -0.0275 -0.004375 0.02125 0.001875 -0.01 0.0375 0.035 0.013125 0.039375 0.025625 -0.003125 0.0175 0.010625 -0.009375 -0.019375 -0.02 -0.006875 -0.015 -0.023125 0.05125 -0.01 0.006875 0.008125 -0.008125 -0.064375 -0.010625 0.0325 0.004375 0.015625 0.0425 0.015625 0.009375 -0.011875 0.045 0.00625 -0.006875 0 -0.01625 0.013125 -0.028125 -0.0075 -0.0225 -0.020625 -0.04125 -0.014375 0.0225 -0.016875 -0.004375 0.015 0.0125 0.01125 -0.020625 -0.033125 -0.0175 0.04 -0.021875 0.006875 0.033125 0.04625 -0.006875 -0.056875 0.01 -0.030625 0.01375 -0.0075 0.003125 -0.0275 0.029375 0.07625 0.035625 0.055 0.00875 0.010625 0.0175 0.036875 0.039375 -0.01125 -0.014375 -0.00375 0.015625 -0.016875 -0.02875 -0.023125 -0.0225 -0.029375 -0.013125 0.00375 -0.01 -0.01 0.024375 0.031875 0.03125 -0.0175 0.03 -0.0275 -0.02375 0.058125 -0.0425 -0.005 -0.0225 -0.004375 -0.020625 0.0025 0.025 -0.030625 0.023125 -0.0275 -0.019375 0.06625 0.041875 0.028125 -0.041875 0.02875 0.030625 0.02625 0.034375 0.044375 -0.004375 -0.005625 -0.014375 0.06375 0.004375 -0.026875 0.0075 -0.035625 -0.01375 0.00625 -0.00625 -0.026875 -0.019375 -0.014375 0.0375 -0.01125 -0.01 -0.003125 0.00125 0.015625 -0.011875 0.01125 0.0575 0.013125 -0.015 -0.02375 0.013125 -0.03375 -0.011875 -0.008125 -0.001875 0.01 0.004375 -0.019375 0.05 0.00875 0.06125 0.074375 0.0125 0.013125 0.074375 0.01375 -0.005625 -0.013125 0.0225 -0.06375 -0.0375 -0.033125 0.013125 -0.0075 -0.003125 -0.024375 0.0075 0.01625 -0.0375 -0.0225 0.045625 0.02875 -0.0025 -0.045625 -0.06375 0.013125 0.04875 -0.03 0.01 -0.03875 -0.01125 -0.0025 0.008125 -0.029375 -0.01375 -0.018125 0.035625 -0.03375 -0.011875 0.043125 -0.00875 0.02125 -0.01375 0.0075 0.065 0.00625 0.0575 0.009375 0.060625 0.009375 -0.02625 -0.006875 -0.000625 -0.0075 0.019375 -0.025 -0.003125 0.025 -0.021875 0.021875 -0.0025 0.04 0.005625 0.03125 0.02125 0.00875 -0.025 -0.02875 -0.00375 -0.025625 -0.04625 -0.05125 -0.021875 -0.053125 -0.018125 -0.0425 -0.028125 0.0175 -0.01625 0.01 0.01875 -0.015625 0.025 -0.00375 0.004375 0.02 0.0175 -0.013125 0.0275 -0.06 -0.015 -0.014375 -0.02 -0.0675 -0.03375 -0.059375 -0.020625 -0.03375 -0.03125 0.0175 -0.030625 0.009375 0.035 -0.01875 0.005625 0.02125 0.018125 -0.00625 0.01 0.055 -0.00125 -0.0375 -0.035625 -0.01125 0.029375 0.01875 -0.0225 -0.01 0.025625 0.015 0.036875 0.015625 0.019375 0.00375 0.04 0.035 0.055625 -0.0125 0.063125 -0.0325 0.01625 0.02625 -0.014375 0.033125 -0.025625 0.004375 -0.005625 -0.023125 0.02 0.001875 -0.031875 -0.01375 -0.00375 0.0325 -0.031875 -0.00625 -0.005 -0.010625 0.040625 -0.031875 -0.073125 -0.034375 -0.009375 -0.031875 -0.01 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_720ms.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_720ms.hrd new file mode 100644 index 0000000..54fc479 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_720ms.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 720 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035569 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-27.201875 -24.43625 -30.3625 -23.090625 -28.105625 -20.56 -26.1875 -22.64625 -22.975625 -22.048125 -24.004375 -21.619375 -19.811875 -21.761875 -20.173125 -17.179375 -20.3 -19.815 -19.3925 -15.048125 -16.363125 -17.61875 -22.913125 -16.226875 -17.57375 -18.081875 -18.34625 -16.4875 -21.656875 -20.0525 -17.7325 -14.610625 -16.339375 -15.4975 -12.40875 -18.88625 -16.69 -18.339375 -16.159375 -15.33125 -10.106875 -16.07375 -15.853125 -16.43625 -12.555 -13.77625 -16.616875 -10.30875 -13.188125 -16.11375 -15.228125 -13.170625 -13.92375 -12.198125 -12.49375 -14.255 -14.484375 -12.91125 -14.33375 -11.3925 -13.58 -16.8375 -12.399375 -11.943125 -11.410625 -13.105 -13.074375 -11.655625 -11.791875 -12.299375 -10.291875 -11.551875 -13.4225 -10.59375 -9.286875 -12.331875 -15.45875 -11.323125 -11.519375 -8.914375 -11.065 -12.435625 -12.226875 -9.245 -12.519375 -7.89625 -10.113125 -11.6575 -11.76375 -10.41875 -9.34375 -9.93375 -6.813125 -9.165 -11.184375 -12.826875 -7.75625 -7.62625 -12.079375 -8.20625 -6.685625 -6.11 -9.07625 -9.931875 -10.611875 -7.98 -9.114375 -4.818125 -7.613125 -10.351875 -7.995625 -5.391875 -8.89 -7.02125 -9.555625 -9.20375 -6.07375 -8.009375 -10.44625 -5.895625 -6.448125 -10.55125 -9.56375 -6.208125 -8.968125 -5.30375 -8.3275 -6.284375 -3.208125 -6.27 -9.325 -5.66875 -6.840625 -6.0275 -5.136875 -5.306875 -7.803125 -5.80375 -9.460625 -5.830625 -8.255 -7.57 -8.215 -4.6025 -7.095625 -6.673125 -6.86125 -7.596875 -7.644375 -4.82875 -9.64125 -8.988125 -9.75125 -8.660625 -5.976875 -3.1225 -6.45875 -5.851875 -8.225 -3.865625 -7.16 -5.9025 -8.220625 -7.724375 -8.386875 -6.185625 -5.3825 -2.379375 -5.409375 -7.255625 -5.979375 -4.07375 -4.9725 -8.885625 -9.1725 -3.973125 -5.01625 -9.3525 -5.188125 -7.405625 -4.061875 -4.159375 -4.275 -6.94625 -8.793125 -7.095 -5.0675 -5.989375 -6.420625 -5.02875 -2.250625 -4.505 -5.710625 -8.0325 -3.958125 -6.31625 -4.42625 -4.339375 -4.9925 -8.1625 -5.191875 -5.976875 -7.875 -4.53 -3.521875 -5.714375 -5.524375 -8.600625 -5.21875 -5.74625 -4.74 -4.981875 -4.14125 -1.839375 -5.598125 -7.7575 -4.665625 -4.295625 -3.6575 -6.2125 -3.440625 -4.815625 -4.35125 -6.3175 -5.37125 -3.540625 -3.60625 -5.4225 -6.845625 -3.195625 -2.878125 -5.434375 -5.033125 -2.958125 -3.62625 -5.323125 -5.198125 -4.4325 -4.163125 -3.496875 -4.065 -8.114375 -1.7025 -3.8675 -3.153125 -4.45 -5.303125 -2.375625 -2.5825 -5.365 -1.5175 -0.9575 -4.710625 -5.7225 -5.611875 -4.9325 -0.564375 -3.973125 -6.339375 -4.18 -3.643125 -4.465625 -2.26 -2.3525 -1.77125 -1.92 -3.256875 -2.765 -0.96375 -2.989375 -4.345 -4.410625 -4.889375 -3.319375 -2.53125 -4.8975 -4.426875 -4.706875 -1.7275 -6.353125 -6.985625 -2.8475 -1.560625 -5.78625 -2.264375 -2.67875 -0.665 -3.6175 -7.21375 -6.190625 -5.000625 -4.34375 -5.59625 -2.520625 -1.96125 -1.5225 -2.033125 -6.47625 -1.42125 -3.094375 -3.764375 -1.514375 -3.254375 -1.73875 -3.575 -3.75375 -2.3275 -2.32 -4.500625 -5.243125 -2.065625 -3.80625 -1.8175 -2.135 -3.43375 -3.1025 -4.173125 -1.159375 -3.510625 -0.766875 -1.703125 -2.13125 -3.22 -0.978125 -3.76375 -2.18125 -3.618125 -4.655 -3.05 -2.47375 -6.085625 -3.356875 -2.15375 -3.43125 -3.7525 -1.545625 -0.97 -2.676875 -6.621875 -4.25875 -2.81 1.041875 -1.86875 0.043125 -1.453125 -0.44625 -0.621875 -2.559375 0.08375 -2.69 -5.355 -2.8975 -1.880625 -3.4 -2.453125 -4.94 -3.94375 -2.991875 -3.511875 -3.24 -1.625625 -2.5675 -4.14375 -0.901875 -2.040625 -4.371875 -0.07 -2.3175 -3.240625 -2.339375 1.01125 -4.175625 -1.591875 -0.388125 -3.763125 -2.595625 -1.61 -1.6975 -0.34625 -3.124375 0.69 -2.33875 -1.6675 -1.58375 -1.995625 -1.449375 -0.2 -0.355 0.151875 -2.9525 -5.46375 -2.546875 -3.6075 -4.134375 -3.311875 -2.206875 -3.65625 -1.61875 -3.46125 -0.258125 -3.080625 -6.36 -1.576875 -2.571875 -1.606875 -0.46125 -3.17625 -3.661875 -2.88125 -1.74625 2.0925 -1.695 -3.893125 -0.503125 -4.613125 -2.308125 -2.67125 -1.449375 -3.418125 -4.041875 -6.3275 -0.213125 -1.99875 0.130625 -1.801875 -0.86125 -0.803125 -2.413125 -1.42375 -1.999375 -3.75375 -2.40125 -5.67375 -4.373125 -1.469375 -0.945625 1.299375 -3.46 -2.165 -3.495625 -0.92375 -1.204375 -2.814375 -0.205 -0.310625 1.849375 -0.053125 -1.736875 -3.633125 0.723125 -3.049375 -2.09125 -1.47375 -3.675625 -3.366875 -1.518125 -1.1625 -1.90125 3.154375 -0.84125 -1.430625 1.28625 -0.77 -5.539375 -2.091875 -3.145625 -3.24125 -1.56375 -0.29375 -0.3425 -1.81625 -3.11625 -1.4575 -4.438125 -0.39625 -2.75125 1.394375 -1.88375 -4.02875 -1.30125 -1.885 -0.2625 -1.635625 -0.1275 -2.73125 -4.859375 -1.8975 -0.82375 -0.35 -3.186875 0.788125 -0.655625 -1.72625 -0.063125 0.300625 -0.14625 -0.704375 -1.49 -2.789375 -0.18875 -0.314375 -2.728125 -2.08375 -1.66 -3.33 0.00375 -0.6875 -2.81375 -0.490625 -1.001875 -1.723125 -3.2925 -2.745625 -0.726875 -3.914375 -1.54 -3.5025 -5.574375 2.00125 -2.16875 -0.025625 -2.60375 -1.2525 -4.17 -2.340625 -4.57625 -2.730625 -2.57125 -3.966875 -0.719375 -2.438125 -1.35375 -3.53 -1.868125 -2.321875 -2.769375 -1.523125 0.21625 -0.56375 -0.42 -4.6075 -1.52875 -3.488125 -3.053125 0.74875 -1.33125 -0.2325 -5.7425 -4.22875 -2.69 -1.99875 -1.666875 -2.371875 -0.94375 -2.029375 -1.694375 -0.365 -0.5425 -1.955625 -0.453125 1.949375 -2.04375 0.32 -0.469375 -1.276875 -2.254375 -2.059375 -1.906875 -2.269375 -2.39125 -2.085 -5.05875 -0.690625 0.16125 0.211875 1.190625 -3.960625 -0.5175 -0.233125 -0.55 -0.026875 -0.5875 1.209375 -1.894375 -1.8275 0.769375 -2.645625 -3.5475 -2.735 0.265625 -0.171875 0.020625 -2.913125 -2.71 -1.78125 -3.1225 -0.5925 3.008125 -1.7225 -0.294375 -4.064375 -0.984375 0.94 0.134375 2.075625 -2.67625 0.005625 -0.633125 -0.559375 -0.076875 1.568125 -3.78625 -1.521875 -1.9075 -3.410625 -0.063125 -1.135 1.99125 -0.498125 -1.455 -1.19125 -3.448125 -2.206875 -4.28125 1.584375 -0.334375 2.29125 -1.038125 -1.130625 -2.245625 -2.605625 -2.168125 1.238125 -0.034375 0.509375 -1.705625 -4.435625 -1.795625 1.086875 -5.28875 -1.31375 -0.893125 3.40375 -2.10625 -0.653125 -1.116875 -1.64625 0.859375 -0.226875 -0.900625 -2.670625 -3.208125 0.13 -2.793125 -1.964375 -0.745625 -1.874375 -1.5325 -3.781875 -0.41375 0.820625 -2.566875 -5.41375 -1.52375 1.4325 -2.58125 -0.02125 0.32625 -1.50125 -0.87 0.049375 -0.8425 -2.9225 2.350625 -0.92125 0.37 -3.594375 -0.578125 0.266875 0.224375 -2.60875 1.8675 -1.105 0.013125 0.3125 -2.18 -1.858125 -4.254375 0.42125 -0.829375 1.500625 -0.589375 0.533125 0.77625 -1.230625 -1.9025 1.51 -0.606875 0.485 -0.85125 -3.09625 -2.293125 -1.82875 -2.163125 -0.209375 1.863125 0.57375 0.14625 -2.96875 -0.796875 -0.758125 -0.45 0.365625 -2.728125 -5.53 -1.63125 0.17375 0.416875 -3.975625 0.853125 -1.025 -2.240625 -0.554375 -0.74375 -0.6025 0.126875 -1.88 -0.0425 -3.433125 -0.221875 -0.655625 -1.005 -1.75875 -1.885625 -2.03625 -2.8125 1.453125 0.35125 -2.20125 -2.269375 -0.521875 -0.97875 0.094375 -0.384375 -1.33375 -1.501875 1.013125 -2.1025 -1.55125 -1.7175 1.838125 -0.78125 -0.58875 -0.848125 -2.274375 -3.594375 -4.68375 -0.6175 1.139375 -0.214375 0.876875 1.4475 -1.446875 -1.119375 -0.254375 -2.325625 -2.345 -1.1875 -1.756875 -2.305625 -1.94125 -2.864375 0.248125 0.093125 0.4225 0.083125 -1.2 -0.789375 0.37625 1.356875 1.09125 -0.431875 0.635 0.620625 -0.126875 -3.56 -0.9825 1.441875 -3.964375 -0.5925 0.8325 -0.603125 -2.021875 -3.061875 -1.080625 2.071875 -2.72875 -2.739375 -0.104375 -0.773125 1.738125 -0.9825 -2.354375 -0.899375 -0.95625 -1.3125 0.06125 -2.85375 -2.434375 -3.13875 -3.056875 0.171875 -0.389375 -2.944375 -2.320625 -2.575 0.480625 -0.789375 -0.851875 -1.11125 -1.9875 -0.030625 0.895625 -2.059375 0.8375 -3.004375 -0.65625 -3.071875 -1.460625 -2.983125 1.268125 0.385 -0.374375 4.285625 -1.825 -1.298125 -2.088125 -0.75 -0.298125 0.038125 0.153125 -0.670625 -2.380625 1.29125 -3.586875 -1.89125 -0.13 -0.504375 -0.766875 -0.50375 -1.9025 -0.385 -0.67375 0.020625 -2.758125 0.69375 2.760625 -0.7 -0.915625 -0.36375 -0.3675 0.081875 -0.58875 -2.11125 -0.55625 2.54375 -0.65375 -2.05 0.001875 -0.463125 3.066875 1.724375 -1.506875 -0.418125 0.575625 0.614375 1.028125 0.79 -1.274375 -3.61375 -2.086875 -0.68875 -3.07375 -4.46 1.32625 0.031875 -1.43625 -2.154375 0.229375 0.558125 -0.656875 -0.635 -5.64375 2.3175 1.084375 -0.52375 -0.965 -0.686875 -0.47875 -3.89 -4.156875 -0.19625 0.90625 1.631875 -0.935 -1.72 -0.804375 -1.75625 -1.708125 -1.575625 0.031875 -2.735 -0.870625 -1.129375 0.46625 0.0675 0.069375 -3.369375 -0.391875 -0.22375 1.878125 -2.109375 -1.2975 -0.488125 -0.25125 -1.614375 2.00125 -0.025 -0.9875 2.859375 0.336875 0.771875 0.501875 -0.098125 -1.52125 -0.191875 -2.083125 -0.814375 -1.551875 -1.605625 1.21125 -0.88375 0.366875 1.015625 0.128125 -1.59375 0.225625 -1.0075 2.376875 -2.415 -4.706875 -0.823125 -1.700625 2.025 -0.055 0.56 -1.19125 -0.746875 2.275 0.54375 -1.425625 -0.995625 -0.304375 -0.544375 -0.335625 4.154375 -2.475 0.358125 -0.8925 -1.993125 -0.484375 -3.18625 -1.67375 0.525625 1.5975 -0.81 -2.040625 -0.55375 1.035625 0.653125 -3.065 -3.31375 -1.0475 -4.888125 1.79625 -3.713125 -0.669375 -2.505 -2.666875 -2.666875 -1.73875 0.135625 2.0625 -1.4175 0.943125 -2.03375 -0.699375 1.794375 -5.373125 -0.408125 -2.09625 0.555625 0.203125 -1.16125 2.311875 -0.535 1.156875 -0.535 -4.564375 1.0075 -0.043125 -0.60625 -2.6525 -0.92375 -1.35875 -5.381875 0.395 -1.37375 -0.05375 2.438125 -1.71125 -0.379375 -3.266875 -1.41875 -0.94625 -0.876875 0.195 0.693125 -2.045625 1.434375 0.871875 0.865625 1.444375 0.765 -2.363125 -0.466875 2.44125 -2.01 -1.649375 -2.065625 -1.991875 -2.7675 -1.098125 -3.900625 -1.3675 -3.828125 -2.10625 -3.86 -2.015 0.73375 0.855 -0.63625 2.58125 -0.571875 -4.151875 0.745 -1.019375 2.311875 -0.673125 0.856875 -0.304375 -1.308125 1.0175 0.87125 -0.26625 -1.18625 -0.09375 -2.1375 -0.7075 -0.87 -2.544375 0.07125 -2.59875 -1.8225 1.32 2.655625 -0.439375 -0.436875 -1.196875 -2.1225 1.353125 0.121875 -3.38125 0.678125 -0.299375 -1.796875 -0.18 -0.9175 0.92125 -4.10625 -0.76625 -0.4625 -1.745 0.561875 -3.223125 1.905 -0.863125 0.270625 1.71625 -4.103125 -2.280625 -2.1775 -1.218125 -2.580625 -2.051875 -1.89375 -1.769375 -0.675 -0.6875 0.73625 0.678125 2.49625 0.243125 -3.635 -1.40625 -2.909375 -2.35375 -3.4475 0.605625 -1.008125 1.50625 -3.28 -0.01125 0.58875 -1.66 -1.885 -0.396875 -1.535 -1.569375 0.1475 -1.315625 -0.43625 -0.51 -1.42 3.6375 -0.8025 -2.92 -2.41125 -0.868125 0.15375 1.345 -1.36375 -2.965625 -1.21375 0.66125 1.63875 0.18125 -0.32 -0.535625 -2.62625 -1.64 1.113125 -1.474375 -2.75125 -1.1875 -1.015625 0.91625 0.350625 1.995625 -1.68875 1.421875 -3.501875 -2.45625 -4.705 -2.01 -1.134375 0.59375 1.1625 -1.585 -0.70875 2.42875 0.443125 -1.005625 0.09875 -0.388125 0.14375 0.315 -0.185 0.56125 -0.32125 -1.73875 3.22 -1.23125 -2.5725 0.81625 -3.3375 0.926875 0.198125 -3.054375 0.72375 1.949375 0.095625 -0.635 -0.7075 -1.876875 -1.995625 1.133125 2.691875 -2.293125 -3.003125 0.03625 -0.43625 2.905 -2.933125 0.8 -0.785625 -2.368125 -1.239375 1.7025 -1.921875 1.70875 0.6675 1.56625 -0.40375 -2.295625 0.19625 2.30875 -0.37625 -0.165 -3.458125 -3.315 -2.771875 -0.518125 -0.600625 -1.2725 0.071875 -0.8275 -2.57625 0.86375 2.47125 3.02 -0.233125 -1.61625 0.305625 -1.5775 -0.445625 1.64125 0.44125 -0.455625 0.355625 1.01125 -0.003125 0.733125 -1.90125 1.325 0.275 -1.698125 2.0225 0.67 -3.01375 1.97 -1.550625 -0.470625 1.26125 -0.62375 1.4125 -2.9875 -1.619375 -2.955 -0.1425 -0.64125 -0.144375 -0.495625 -3.089375 -2.301875 0.04375 -1.858125 0.910625 -2.591875 0.88125 -2.835 2.2025 1.011875 -0.833125 -0.800625 -1.3375 1.970625 0.080625 -0.691875 -1.414375 0.813125 -1.473125 -1.1475 -0.941875 -1.51125 -1.26875 -0.81 -1.56625 -0.83625 -0.83625 0.775625 -4.018125 -2.80625 0.8825 -0.423125 -1.54625 -3.260625 -1.5425 1.2225 1.743125 2.0625 -0.43125 -0.408125 -0.269375 -0.405625 -0.601875 -1.29 -2.336875 -0.30625 -0.558125 1.829375 -1.00375 -0.32625 -3.635625 -4.955625 -1.489375 2.31625 3.995625 -2.64 1.45125 -1.295 -0.2075 -1.5 -2.774375 -2.76375 -2.724375 1.191875 -0.280625 -1.224375 -0.939375 -0.98625 0.311875 1.64 -0.8125 5.020625 0.525 -1.085 -1.90375 0.866875 -0.279375 -2.01625 -1.958125 0.980625 2.380625 0.91375 -0.51375 -2.0425 0.87625 -4.541875 -3.51 0.3075 -0.924375 1.7075 -1.98875 -0.138125 -1.213125 -0.0525 -2.5075 -1.619375 0.704375 -0.518125 2.68375 -1.150625 -0.9375 -0.800625 -1.606875 -1.92 1.046875 1.535 1.47 -1.231875 -1.00125 2.40875 -0.1175 -0.414375 0.835625 -3.261875 -0.180625 1.170625 0.0725 2.509375 1.91625 -4.859375 -2.58625 -2.596875 -4.176875 -0.904375 1.768125 1.821875 -1.149375 -1.164375 0.371875 -0.288125 0.075625 -2.39 -2.875 1.3 -1.075 -3.838125 -1.50875 0.118125 0.39375 -0.375 -2.0875 1.499375 -0.883125 -1.79 1.318125 -1.3475 -2.33625 1.720625 2.3525 1.10125 -0.436875 -0.73625 -0.46875 -0.7125 -4.079375 -2.10375 1.02625 -2.799375 -0.381875 1.169375 0.808125 -1.523125 -0.30625 0.58125 -0.786875 -2.490625 0.67625 -1.77125 -2.378125 -2.31125 -0.335625 -0.795625 2.055 0.26625 1.47125 -0.133125 -2.046875 4.308125 0.4575 -0.2925 -0.811875 0.469375 1.488125 -1.176875 1.113125 -0.07 -5.945 1.935 2.52125 1.62 0.324375 -3.356875 0.29875 -1.835 1.89875 -0.3925 0.9275 -2.29625 0.11875 2.163125 -1.235625 -0.31125 -1.335 -2.34875 -0.086875 -0.995 -2.076875 2.213125 1.351875 1.615 -2.05 -0.62625 0.16375 0.51875 -2.70875 2.09 1.13125 4.55875 -0.294375 -0.205 -1.926875 1.350625 -1.97 -2.018125 -1.145625 -0.49 -0.110625 0.8675 -0.503125 0.026875 -0.221875 -0.6 -1.466875 -0.533125 -1.799375 0.129375 0.25 +-29.22875 -38.82125 -27.39875 -33.67625 -26.665625 -30.72125 -27.966875 -29.495625 -26.889375 -26.04125 -25.0325 -23.183125 -25.738125 -28.941875 -25.489375 -20.541875 -26.68625 -26.756875 -23.43 -25.678125 -23.76125 -25.825 -22.383125 -23.2 -24.769375 -24.9575 -21.325 -23.253125 -23.1025 -21.57625 -18.62375 -19.466875 -20.846875 -18.86125 -19.759375 -18.4275 -18.078125 -18.549375 -17.035625 -20.59875 -20.750625 -19.47 -18.23375 -19.458125 -15.4925 -19.4575 -18.318125 -19.55375 -18.750625 -17.005 -16.364375 -18.485625 -15.239375 -17.613125 -14.20375 -19.2225 -15.96 -17.948125 -16.29875 -13.158125 -17.371875 -12.909375 -11.964375 -15.338125 -15.14625 -14.819375 -14.563125 -16.264375 -13.930625 -12.290625 -16.376875 -17.616875 -14.144375 -12.416875 -12.940625 -17.32125 -15.849375 -13.350625 -13.215625 -13.68375 -10.54125 -9.86625 -12.05375 -12.423125 -13.19625 -12.39125 -14.0175 -13.1975 -11.723125 -10.3875 -11.29875 -11.68875 -9.184375 -12.794375 -13.9725 -13.18375 -12.590625 -14.885625 -12.6325 -11.4625 -12.30625 -13.338125 -12.273125 -14.170625 -11.430625 -8.84 -9.490625 -8.23375 -11.348125 -10.440625 -11.179375 -10.929375 -9.251875 -11.709375 -10.8225 -10.963125 -8.88875 -9.12875 -9.84 -10.744375 -7.87625 -9.27375 -8.599375 -10.255625 -6.7525 -7.93625 -8.4575 -8.261875 -9.165 -8.858125 -8.825 -9.388125 -10.46 -5.734375 -9.949375 -9.559375 -10.579375 -9.92 -10.5075 -7.546875 -8.30375 -7.71 -12.04 -11.979375 -6.98625 -8.744375 -6.055625 -8.599375 -10.3375 -6.770625 -8.450625 -10.48 -7.289375 -7.46625 -5.815625 -5.96875 -8.12875 -5.760625 -8.025 -7.968125 -6.975625 -10.49 -9.123125 -5.1325 -6.505 -7.035 -5.074375 -7.545625 -8.619375 -10.070625 -6.878125 -7.30125 -8.59875 -9.595 -6.633125 -7.905625 -7.88375 -6.13 -7.33 -9.574375 -8.50125 -5.449375 -6.51625 -7.343125 -8.186875 -10.886875 -4.200625 -6.475 -5.2325 -5.00375 -6.79 -7.974375 -7.53875 -6.326875 -1.83625 -7.0275 -3.36 -4.200625 -5.1075 -7.63125 -6.99875 -3.105 -6.713125 -8.54625 -8.466875 -6.7425 -6.710625 -5.1325 -6.2125 -7.128125 -9.92 -4.275 -1.92 -1.39125 -5.519375 -4.32375 -6.39375 -6.278125 -6.384375 -3.989375 -4.668125 -5.24 -5.135 -4.395 -8.654375 -5.81375 -6.983125 -3.505625 -5.0275 -7.004375 -5.438125 -5.2975 -3.51375 -7.966875 -4.845 -3.914375 -4.04125 -4.12375 -6.580625 -2.80125 -4.121875 -7.813125 -4.86875 -5.838125 -5.85125 -3.976875 -6.9075 -2.426875 -6.258125 -6.25375 -6.471875 -3.6175 -7.623125 -6.963125 -4.405625 -3.471875 -3.11125 -4.159375 -4.246875 -3.488125 -2.941875 -4.879375 -3.688125 -5.94 -2.119375 -2.47625 -4.13125 -5.685 -8.76625 -3.269375 -3.3775 -3.03375 -5.89625 -8.924375 -6.633125 -6.37625 -3.58375 -7.225625 -1.215 -3.96375 -2.45375 -4.39875 -4.2625 -2.304375 -4.190625 -4.403125 -7.2175 -2.436875 -1.57 -5.335 -4.719375 -5.899375 -3.763125 -0.944375 -5.185625 -4.054375 -2.4675 -1.481875 -4.713125 -4.41625 -4.28375 -2.9 -2.31125 -3.201875 -3.513125 -4.24625 -4.968125 -0.0275 -2.725625 -0.610625 -4.2325 -3.0925 -6.60125 -3.9675 -6.986875 -5.199375 -7.169375 -1.030625 -3.396875 -1.684375 -2.28625 -3.6675 -4.235 -7.221875 -2.23375 -6.996875 -6.505625 -5.29625 -4.555625 -3.9925 -8.116875 -4.984375 -3.250625 -3.08125 -1.568125 -0.876875 -3.21875 -4.51625 -3.765 -5.06625 -6.0975 -1.37625 -5.87625 -2.66 -3.48625 -2.56875 -5.66875 -5.4975 -1.845625 -3.2375 -5.90625 -3.76875 -4.9675 -2.2 -3.96 -3.785625 -5.425 -5.50125 -1.561875 -4.610625 -2.63125 -3.534375 -0.32125 -2.3225 -6.5775 -4.208125 -0.199375 -2.4325 -5.075625 -2.021875 -4.3175 -3.314375 -4.793125 -4.734375 1.745625 -2.615625 -4.971875 -3.034375 -3.429375 -0.621875 -5.1725 -6.53125 -2.158125 -1.7575 -1.47 -3.481875 -2.419375 -2.5875 -0.444375 -3.53625 -1.610625 -4.39375 -3.573125 -4.26375 -3.62625 -1.754375 -5.46625 -5.32 -1.948125 -0.01125 -1.334375 -3.296875 -3.8925 -0.72875 -2.868125 -2.633125 -3.070625 -3.355 -1.3375 -3.579375 -2.35875 -3.53 -1.2275 -7.42125 -1.75875 -2.29125 -1.210625 -4.705625 -3.62375 -3.853125 -3.03125 -3.101875 -3.690625 -2.1425 -3.218125 -0.5925 0.3975 -3.295 -3.841875 -1.599375 -1.390625 -1.260625 -1.76375 -3.385 -2.495 -3.3375 -3.955625 -0.860625 -1.530625 -0.364375 -1.825625 -2.2375 -0.929375 -0.675 -0.260625 -3.01375 -3.99875 -1.07375 -3.436875 -1.115625 -3.05375 -0.970625 -1.49 -2.92875 -2.5025 -1.598125 -4.98875 -2.679375 -0.618125 -0.043125 -5.34 -4.08375 -1.223125 0.694375 -1.948125 -1.3275 -2.4375 -3.831875 -2.6075 -2.305625 -2.155 -3.140625 -1.405 -5.27125 -2.075625 0.0575 0.154375 -6.453125 -2.37125 -1.115 -1.82625 -0.434375 -1.89625 -0.211875 -2.689375 -3.386875 -3.103125 -3.2625 0.26625 -2.573125 -2.805625 -4.23875 -5.24 -7.94375 -4.465625 1.3775 -3.468125 -2.75875 -2.74875 -3.93375 -1.745 -1.720625 -4.486875 -2.54625 -3.1175 -1.005625 -1.76 -0.91875 -2.448125 -5.463125 -3.665625 -3.0125 -0.929375 -1.18125 -0.14625 -3.620625 -3.19125 -3.03 -3.376875 -0.5375 -1.74125 -2.455625 1.210625 -1.933125 -4.058125 0.7075 -3.7425 -2.004375 -4.57375 0.56375 1.4525 -1.578125 -1.8975 0.57 2.46125 0.78625 -1.38125 0.468125 -2.929375 -2.923125 -3.333125 1.480625 -3.480625 -1.566875 -1.993125 -1.08 -2.9675 -4.765625 -0.05875 -3.953125 -0.545625 0.245 -2.193125 -0.5875 -0.706875 -2.114375 -4.445 -1.330625 -1.9925 -1.794375 -5.4825 0.53875 -0.21 -1.035 -4.070625 -1.44125 -2.8525 -0.351875 -6.528125 -0.46 -0.7575 0.148125 2.418125 -3.709375 -2.918125 -2.543125 -2.758125 0.824375 1.28875 -2.73875 -1.10625 -2.81125 -1.991875 -4.205 -1.76125 -0.1725 -4.705 -1.346875 -3.188125 1.111875 -3.136875 -2.718125 -2.765625 1.688125 -1.26875 -2.678125 -1.618125 -5.655 -2.445625 0.879375 -0.36375 -1.736875 -5.22625 -0.254375 -4.055625 -0.95875 -2.963125 -2.429375 1.898125 -2.0925 -0.846875 -1.18875 -4.315625 -3.4775 -3.010625 -1.15 -1.026875 -2.558125 -0.980625 -1.77375 0.724375 -2.154375 -2.395 0.341875 2.12875 -1.0825 -1.694375 -2.616875 -3.118125 0.0025 1.9675 -1.798125 -4.16625 -1.2 -0.84625 -2.22375 -1.905 -2.549375 -0.24125 -1.79625 -2.55875 -1.880625 -0.931875 0.133125 -1.81 -3.29625 -5.2325 -2.91375 -2.909375 -1.271875 -0.42 -1.58 -1.235625 -2.906875 -1.103125 -1.5275 -1.721875 -4.091875 -3.4225 -2.42375 -0.7675 -0.735625 -0.385 -2.261875 -6.8425 -0.654375 -0.496875 -1.8775 -0.405625 1.75 -1.240625 -2.6175 -1.44125 -0.918125 -1.99625 -1.315 0.890625 -0.72375 -1.82625 -1.285625 -1.221875 -0.33375 -0.87375 -2.484375 -1.800625 -1.185625 -0.14625 -2.020625 -2.095625 -5.363125 -1.56 -4.426875 -0.3675 1.329375 -0.9825 -0.376875 -1.99125 0.52875 -2.343125 -1.4 -0.835 -1.794375 0.411875 -0.68625 -1.90625 -3.37875 -2.718125 -2.519375 -3.255 -0.651875 0.73375 -0.2925 -2.01125 0.69375 -2.806875 -3.049375 -0.75875 1.105625 -1.471875 5.050625 1.899375 0.43125 -1.13625 0.113125 -0.065 -1.9025 2.15125 2.093125 -1.574375 -2.4525 -1.6525 -0.43875 1.491875 -0.795625 -0.138125 -1.949375 0.00375 2.8 -0.0975 0.47625 1.029375 -1.985 -0.98375 -3.496875 1.969375 5.603125 -2.11125 -0.918125 1.05375 0.6225 0.144375 -0.770625 -2.964375 -3.148125 -2.076875 -1.8975 -4.070625 1.150625 0.90875 0.8575 -2.1225 -2.086875 -4.58875 0.35 -0.658125 -0.66125 -1.218125 -3.683125 -2.91125 -0.865625 -0.721875 -1.1125 -0.25 -2.905625 -1.5675 -1.810625 -1.851875 -1.475 1.788125 -2.73625 0.55 0.964375 -2.7725 -1.605625 -0.254375 -1.565 -1.35625 -3.4025 -3.244375 -0.288125 -1.30875 -0.094375 1.408125 -0.088125 0.25125 -3.135625 -0.559375 0.67375 0.8125 -2.5075 2.691875 -0.231875 -2.650625 0.10875 -1.29875 -5.22 -1.290625 -1.323125 0.844375 -2.098125 -2.6825 -1.773125 -2.38875 0.97125 0.278125 1.435 -1.845 -1.089375 1.078125 1.3125 -4.086875 -1.753125 -1.02 -2.57875 -1.49375 1.87875 -1.51375 -1.799375 -4.056875 -1.22625 -1.099375 -0.000625 -0.22875 -1.554375 -0.898125 -0.1125 -1.583125 -0.731875 2.0025 0.846875 2.80125 1.18875 -3.600625 -1.441875 -5.149375 1.39375 -1.52875 0.100625 0.643125 -1.231875 -1.923125 -2.0875 2.05375 -0.656875 -0.448125 -4.14375 -1.850625 -4.455625 -1.45125 -0.783125 -1.05375 1.803125 -2.029375 -1.47625 -0.72 -3.005625 -2.148125 -2.875 -1.245625 -2.16625 -0.49 -0.8275 -2.686875 3.9775 -0.320625 -1.568125 -2.115 -0.444375 0.1525 -0.73 -1.965 -4.054375 -3.791875 -1.38125 -0.458125 -0.165 0.913125 -3.435 -0.724375 -2.36 -0.535625 -1.0875 1.151875 -0.05625 -3.364375 -0.13875 -0.743125 1.0525 -0.60875 -4.573125 -1.2775 -2.308125 -1.771875 -2.12125 0.40625 -0.113125 -4.0675 -2.23 -1.039375 0.538125 1.765625 0.339375 -1.94375 -2.120625 -1.4225 -1.486875 0.973125 0.93625 -0.388125 1.68625 0.38625 0.891875 -1.40875 -0.358125 1.573125 -1.300625 3.8525 -2.850625 0.336875 -0.415 -1.69625 -1.43 -1.6525 -0.14 -0.064375 -2.576875 0.690625 2.3025 0.97375 0.19875 -2.37625 -3.205625 -0.814375 -3.176875 -1.1975 -0.63625 -3.641875 -2.253125 -4.746875 0.56625 1.32 0.525 -3.28375 -0.740625 2.080625 -1.586875 0.02875 -0.591875 3.6025 0.15375 2.060625 -4.278125 0.8225 -0.075625 1.01375 -0.996875 -2.638125 -1.485 -0.293125 -0.92 -1.11625 -1.171875 -2.166875 0.598125 1.12125 1.728125 1.935625 -0.455 -1.779375 2.63625 -1.6675 -1.846875 0.275 -2.270625 -1.654375 -1.716875 2.184375 -0.813125 0.541875 0.755625 -2.48625 -1.0275 -0.770625 0.69625 -0.0925 2.66625 -1.745625 -1.008125 -1.5225 0.3525 -1.91375 -0.07125 -1.159375 0.798125 -0.3925 -1.04125 -0.1375 0.3675 2.206875 -4.675625 -2.779375 1.701875 0.1925 1.88 1.288125 -1.74875 -2.9125 -0.490625 -2.90625 -2.935625 -0.855625 -2.44875 -2.404375 -0.725 -0.599375 1.108125 1.609375 -1.166875 -1.183125 -1.764375 -2.515625 -2.328125 -2.28625 -3.869375 -0.981875 -0.770625 -2.124375 -3.506875 -3.07625 1.389375 -3.351875 -0.391875 -1.5275 -3.775625 0.166875 -1.085 -1.549375 0.855 -1.016875 -0.25625 -1.271875 -2.735625 -3.025 -2.4525 -0.276875 -0.660625 -1.743125 -0.508125 -0.458125 0.39125 -4.203125 -2.889375 -1.826875 -0.0025 1.168125 -0.901875 -1.5675 -0.386875 -0.109375 -1.100625 1.9525 2.058125 0.356875 -1.5275 -1.695625 -0.9125 -1.88875 -2.04375 0.773125 1.999375 -2.65875 -2.336875 1.98375 2.16875 -0.8125 0.71875 -3.016875 -0.644375 -2.465 3.209375 -2.79375 -0.6875 0.51875 0.153125 -4.336875 -2.82 -0.14625 -0.476875 -0.6925 -2.846875 -4.365 -3.271875 -0.964375 2.341875 0.0175 -2.643125 0.775625 0.6825 0.716875 0.368125 -0.43875 -1.998125 -0.340625 -1.011875 0.704375 -0.95875 2.61375 -0.87875 -5.066875 0.611875 -1.12125 0.12 0.65125 -0.2 -0.195625 -0.821875 -2.99625 0.29 -1.91375 0.916875 -2.32875 -1.606875 -0.343125 -2.09375 -1.85125 0.734375 1.215 -1.07375 -1.24375 -1.416875 -0.108125 0.169375 0.6575 -0.2725 -1.84875 -3.02875 -1.226875 -0.319375 2.685 -1.5875 1.105 0.233125 -0.44625 1.52375 -1.09625 1.79875 -1.478125 -3.074375 0.996875 -2.491875 0.228125 0.769375 -2.758125 -1.775625 1.290625 1.95 -0.71 -4.044375 0.119375 -1.5125 -3.846875 -2.543125 -0.59875 0.658125 1.824375 2.9675 0.0075 0.23125 0.84125 -0.259375 0.16625 1.165 -1.953125 0.86125 -0.371875 -4.149375 0.79 -0.800625 -2.24875 -0.099375 -0.786875 0.475 1.4775 0.639375 -0.603125 -0.445625 1.0575 0.445 -1.1575 0.0425 0.70375 -2.28125 -2.94125 -2.105625 -0.1475 2.47 0.645625 1.246875 -2.120625 0.120625 1.2525 0.010625 -3.445625 -1.480625 -1.47375 -0.85 0.005625 0.566875 -0.778125 -1.381875 -0.23875 -0.583125 -2.269375 1.884375 -0.423125 -0.409375 -2.62875 2.73375 -0.614375 -4.32875 -2.5575 0.660625 1.500625 -0.54375 -0.556875 -2.5925 0.903125 -0.284375 0.575 -2.48125 0.8775 1.253125 -2.041875 1.32125 0.639375 -0.075 -1.22 -1.33125 -1.210625 -3.393125 -2.2225 0.280625 1.540625 -0.65 -1.59 -2.300625 1.63625 -1.760625 -1.034375 1.94375 0.536875 0.701875 1.43125 1.260625 0.2625 -0.5675 0.054375 3.709375 -0.289375 -0.878125 1.944375 -2.95625 -2.66 -1.413125 0.324375 1.6475 1.085625 0.08875 -2.689375 -4.665625 -3.401875 -1.386875 -0.59125 -2.405625 -0.275625 -2.488125 1.77375 0.655 0.409375 -0.173125 1.825 1.25 -1.679375 0.125 1.45625 2.97625 -3.51375 -1.48125 3.13 -0.623125 0.836875 0.7 0.175 -1.40375 -2.131875 2.189375 -0.4525 3.695 -1.54 -1.079375 -1.213125 -1.651875 3.726875 2.344375 2.9375 -0.173125 -1.198125 0.465 2.613125 -0.024375 -2.3675 -0.199375 0.1625 2.59125 0.558125 1.214375 -1.695625 0.339375 -0.368125 -2.539375 -3.1525 0.5025 2.904375 0.716875 2.180625 -1.788125 -3.78875 -1.1075 -3.45625 2.32625 -0.76875 1.39875 1.344375 -1.125 -0.676875 1.98375 0.503125 0.53125 3.654375 -1.843125 -0.901875 -0.235625 0.045625 2.68375 -1.3625 -0.194375 -0.44125 -0.23375 0.72 -3.15875 2.585625 -0.745 0.53625 -1.345625 3.979375 1.056875 2.531875 -0.419375 -0.575 0.32375 0.4975 -1.51 0.930625 -0.6875 -1.309375 -3.5675 -1.214375 0.53875 -0.025625 2.76 -2.67875 1.4375 -0.214375 -4.655 1.06375 0.37375 0.9675 1.735 -0.55125 0.39875 -0.933125 1.7225 1.295 -0.820625 -0.22875 2.234375 -1.44625 -0.1625 0.479375 -1.741875 -2.961875 -2.645625 1.819375 1.84 0.53875 -1.441875 -3.1025 0.671875 2.4775 -2.696875 -1.778125 0.914375 -2.211875 -2.765 -2.2475 1.47125 -1.501875 -0.49125 0.143125 -0.58625 -0.308125 -0.814375 0.201875 -0.851875 -2.915625 0.58625 -0.883125 0.346875 0.465 -0.574375 -1.859375 -0.92 -1.543125 2.355625 -1.765 -0.1025 -0.71625 3.15375 -0.65375 -0.349375 1.83125 -2.394375 -3.2375 -1.185625 1.1225 1.108125 -1.80375 0.1475 0.32 -2.4025 -0.12625 1.343125 -2.9175 -0.863125 2.625625 1.286875 -3.39875 2.0975 -2.1125 0.596875 0.741875 -1.1425 -0.4025 -4.27625 -1.548125 0.016875 0.94 -3.360625 1.3675 -1.32 -2.6525 -1.330625 0.705625 1.24875 -0.45125 1.824375 -0.7725 -1.1925 0.661875 0.296875 0.6775 0.150625 -4.21875 -1.65 -1.803125 1.83875 -0.66375 -0.27125 0.365 0.1575 0.825625 -1.8625 4.540625 1.59125 0.61875 -0.723125 -1.260625 -0.0775 4.001875 -0.00625 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_720ms_ref.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_720ms_ref.hrd new file mode 100644 index 0000000..81efd87 --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_720ms_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 720 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035569 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-0.010625 0.06125 0.01125 -0.009375 0.0525 0.02125 0.033125 0.020625 0.02375 0.016875 0.0175 -0.0175 -0.06 -0.010625 -0.0375 -0.029375 -0.02 -0.035625 -0.008125 -0.03125 -0.0225 -0.044375 0.000625 0.010625 0.02375 0.01 -0.021875 0.0025 -0.0175 0.03 -0.03625 0.003125 -0.049375 -0.035 -0.06125 0.02625 0.0125 -0.0625 -0.034375 -0.004375 -0.006875 0.013125 0.048125 0.054375 -0.0075 0.04125 0.07125 0.04625 0.033125 -0.02 0.041875 0.008125 -0.008125 -0.011875 -0.025 -0.00375 -0.060625 0.010625 -0.055625 0.056875 -0.00125 -0.0425 0.016875 -0.0075 0.03875 0.009375 -0.01125 0.020625 0.010625 0.00375 0.005 -0.0025 -0.04125 -0.014375 0.00125 -0.054375 -0.02 -0.001875 -0.05125 0.00125 -0.02375 0.00375 -0.039375 0.003125 0.020625 -0.00125 0.0675 0.0425 0.065 0.05125 0.016875 0.08375 -0.01625 0.03625 -0.025 0.00375 -0.065 -0.0075 -0.00125 0.0025 0.0025 -0.036875 -0.015625 0.058125 0.02 0.020625 0.018125 -0.00875 0.005625 -0.04 0.006875 -0.02875 -0.028125 -0.066875 -0.03 -0.009375 -0.005625 0.0075 -0.060625 -0.0225 0.009375 -0.023125 -0.0025 0.008125 0.025 0.023125 0.02375 0.006875 0.063125 0.055625 -0.000625 0.00625 0.00875 -0.00375 0.02 -0.010625 -0.028125 -0.0275 -0.06625 0.01 -0.003125 -0.036875 -0.053125 0 -0.02625 -0.071875 -0.0125 -0.039375 0.048125 -0.021875 -0.018125 -0.0025 -0.0225 0.003125 -0.001875 0.028125 -0.02 -0.04875 0.024375 -0.021875 -0.041875 0.00125 -0.00625 0.028125 0.0075 0.015 0.021875 0.040625 0.01625 0.026875 0.045625 0.011875 0.006875 0.024375 0.0525 0.051875 0.01625 -0.016875 -0.04 -0.001875 0.01875 -0.00625 0.005625 -0.043125 -0.021875 -0.03375 -0.00125 0.008125 0.008125 -0.025625 -0.045 -0.025625 0.005 -0.038125 0.01125 -0.006875 0.0175 -0.028125 -0.050625 -0.01625 -0.0375 -0.034375 -0.096875 -0.0025 0.021875 0.018125 0.010625 0.0475 0.010625 0.0425 0.020625 0.056875 0.021875 0.025 0.020625 0.0375 -0.013125 0.060625 0.008125 0.029375 -0.025625 -0.03375 -0.06125 0.00875 -0.05625 -0.011875 -0.05625 -0.024375 -0.000625 -0.0375 0.019375 -0.0175 -0.063125 -0.00875 -0.039375 -0.021875 0.00125 0.009375 -0.02625 -0.0625 -0.02875 -0.003125 0.001875 -0.050625 -0.02875 -0.018125 0.015625 -0.0225 0.016875 0.023125 0.003125 0.070625 0.06625 0.083125 0.080625 0.068125 0.015 0.05625 0.020625 -0.011875 0.016875 0.0025 -0.018125 -0.006875 -0.0475 -0.020625 0.011875 -0.04875 0.014375 0.030625 0.000625 0.04125 0.02375 -0.039375 0.009375 0.028125 0.015 0.01375 0.00625 -0.018125 -0.005625 -0.0525 -0.001875 -0.033125 -0.070625 -0.00375 -0.03125 -0.0075 -0.018125 0.005 0.016875 -0.006875 -0.00375 0.03875 0.02125 0.030625 0.0125 -0.005 0.014375 0.030625 -0.02 0.001875 0.0025 0.035625 0.039375 -0.010625 -0.0325 0.021875 0.00625 -0.020625 -0.01 -0.023125 0.025 -0.025 0.045 0.006875 0.02125 -0.061875 -0.01125 -0.004375 -0.018125 0 -0.03875 -0.03625 -0.003125 -0.035625 -0.006875 0.01 0.018125 -0.05 -0.0175 -0.019375 0.0625 0.013125 0.035 0.05125 0.05625 -0.036875 0.06875 0.010625 -0.029375 -0.0225 0.039375 -0.050625 -0.009375 -0.03125 -0.01375 -0.005 -0.011875 -0.00625 -0.004375 -0.031875 -0.04 0.005 -0.031875 -0.016875 0.025 -0.0025 0.016875 -0.00875 0.019375 -0.0375 0.04 -0.005 -0.025 -0.0375 -0.0225 -0.006875 -0.05 -0.01375 -0.00625 -0.03625 -0.0275 0.023125 -0.0075 0.045 0.0625 0.0525 0.01 0.04625 0.060625 0.054375 0.03375 0.07 0.019375 -0.016875 -0.030625 -0.04 -0.045625 0.020625 -0.014375 -0.02125 -0.066875 0.01 -0.025625 0.01 0.01625 -0.02625 0.02 0.00375 -0.02125 0.016875 -0.005625 0.034375 -0.016875 -0.038125 -0.03 -0.014375 -0.05625 0.015 -0.023125 -0.031875 0.015 -0.01375 0.019375 0.044375 0.005625 0.040625 0.048125 0.013125 0.045625 0.039375 -0.009375 0.01375 0.06375 0.00625 0.028125 0.023125 -0.043125 -0.028125 -0.03 0.015625 -0.0125 -0.010625 0.005625 -0.036875 0.016875 0.016875 0.040625 0.035625 0.033125 0.005625 0.010625 -0.040625 -0.015 -0.02625 -0.028125 -0.045625 -0.0225 -0.054375 -0.0175 0.00125 -0.0075 -0.055625 0.00125 -0.050625 0.03125 0.008125 0.04125 0.013125 0.013125 0.01875 0.081875 -0.000625 -0.00125 0.028125 -0.0125 0.000625 0.008125 0.015625 -0.025 -0.03875 -0.014375 -0.04875 0.030625 -0.055 -0.021875 0.03 -0.0025 0.04625 -0.019375 -0.001875 0.0475 0.01 0.023125 -0.013125 0.01125 -0.025625 -0.0125 -0.049375 -0.019375 0.016875 -0.03375 -0.04875 0.01125 -0.015 0.031875 0.03 0.0025 0.015625 0.0225 0.020625 0.014375 0.036875 0.045625 0.026875 0.040625 -0.0025 -0.014375 0.0075 -0.010625 -0.02625 0.008125 -0.065625 -0.014375 -0.053125 -0.03 0.018125 -0.004375 0.00375 -0.034375 0.005 0.043125 -0.01625 0.04875 -0.02375 -0.028125 0.0275 -0.024375 -0.01375 -0.020625 -0.04875 -0.033125 -0.045625 -0.04625 -0.006875 0.054375 0.010625 0.00875 -0.039375 0.01 -0.008125 0.026875 0.070625 0.028125 0.044375 0.023125 0.01375 -0.018125 0.030625 0.001875 -0.014375 -0.064375 -0.031875 -0.01625 0.0025 -0.04125 -0.01125 -0.015 -0.0175 0.006875 0.0375 -0.00375 0.0175 -0.001875 0.059375 0.02375 -0.019375 -0.03875 -0.006875 0.0025 0.048125 -0.02375 -0.025 -0.011875 -0.0125 0.005625 -0.011875 0.02125 0.021875 0.006875 -0.020625 0.02625 0.01125 0.0075 0.050625 0.030625 0.0425 0.04 0.023125 0.043125 0.006875 -0.02125 -0.065 0.021875 -0.055 0.029375 -0.03625 -0.02625 -0.0025 -0.02875 -0.023125 -0.008125 0.005 0.02875 -0.025 0.010625 -0.00125 0.0175 0.006875 0.00125 0.01 -0.056875 -0.02125 -0.009375 -0.03625 -0.005625 -0.070625 -0.031875 -0.006875 0.108125 -0.050625 0.030625 0.024375 -0.03375 0.061875 0.0175 0.043125 0.058125 0.01375 0.001875 0.01375 0.011875 -0.01125 0.001875 0.0175 -0.06375 -0.0325 -0.025 0.003125 -0.045 -0.0325 -0.055625 0.0075 -0.03375 0.00625 -0.0125 0.005 0.0225 -0.030625 0 -0.05125 0.0175 -0.05375 -0.0275 0.00375 -0.019375 -0.010625 -0.01125 -0.08125 0.009375 -0.05625 -0.033125 0.0025 0.04375 0.0175 0.0525 0.048125 0.041875 0.0075 0.056875 0.020625 -0.020625 -0.0125 0.025 -0.005 -0.000625 -0.033125 0.02875 -0.01875 -0.000625 -0.04125 -0.06 0.02875 -0.0425 -0.039375 0.03875 -0.025625 -0.03125 -0.0325 0.04375 -0.003125 -0.065625 -0.048125 -0.025 -0.01875 -0.023125 -0.026875 0.010625 -0.029375 -0.0425 -0.054375 -0.025 -0.003125 -0.065625 -0.06625 0.039375 0.041875 0.04625 0.06875 0.030625 -0.004375 0.06375 0.049375 -0.004375 0.055 -0.025 -0.014375 -0.03375 -0.020625 0.003125 -0.04 -0.03125 -0.03875 -0.023125 0.019375 -0.018125 -0.021875 -0.00625 0.05125 0.02875 0.02375 -0.00875 -0.00875 -0.05 0.004375 0.003125 -0.00875 -0.049375 0.0425 -0.09 -0.000625 0.0025 -0.000625 0.009375 -0.005 0.055625 -0.03375 0.04375 0.031875 0.018125 0.025 -0.023125 0.029375 0.048125 0.01625 0.025 0.034375 0.03 -0.04875 -0.058125 -0.00625 -0.055625 -0.026875 0.005625 0.0075 0.044375 0.014375 0.02 -0.015 0.00125 0 0.004375 -0.0475 -0.008125 -0.01125 0.0025 -0.04 -0.05 -0.03875 -0.00125 -0.0575 -0.04375 -0.0325 -0.00375 -0.018125 -0.005625 0.054375 -0.0025 0.04125 0.02625 0.05125 -0.004375 0.059375 0.0675 0.05 0.019375 -0.00125 -0.01125 0.03625 -0.016875 0.01875 0.039375 -0.00875 -0.070625 -0.02875 0.034375 -0.005 -0.02875 -0.024375 0.005 0.026875 0.046875 -0.009375 0.018125 -0.079375 -0.00625 0.020625 -0.0425 -0.001875 -0.01125 -0.00125 0.019375 -0.03 -0.0225 -0.003125 -0.053125 0.02125 0.02125 0.065 -0.038125 0.05 -0.010625 0.005 0.021875 0.01875 0.026875 0.043125 0.01 0.01875 0.065625 -0.03 -0.020625 -0.0325 -0.010625 0.001875 0.02125 0.00625 -0.0025 -0.040625 -0.015625 -0.011875 -0.025 0.019375 0.013125 -0.01375 -0.02625 0.00375 -0.0425 0.024375 -0.065 -0.0425 -0.055 0.001875 0.0025 -0.0475 -0.0525 -0.0325 -0.029375 -0.010625 0.005 0.040625 0.02875 -0.009375 0.05125 0.08375 0.035625 0.07625 0.02625 0.0025 0.00375 0.009375 -0.039375 0.030625 0.003125 -0.045625 -0.0675 -0.0475 -0.0125 -0.066875 -0.0325 -0.013125 0.00875 0.025 -0.0025 -0.036875 0.03875 0.000625 0.0225 -0.00875 -0.029375 -0.018125 -0.01625 0.0375 -0.036875 -0.030625 -0.069375 0.014375 -0.01 -0.055 -0.0275 0.011875 0.05125 0.05125 0.02375 0.081875 0.01 0.065625 0.058125 0.02125 0.03375 0.06875 0.03375 0.045625 -0.035 0.02125 0.035 0.036875 -0.024375 -0.0325 0.011875 0.015625 0.023125 -0.0175 0.0375 0.00625 0.065 0.021875 0.008125 0.05 0.02625 0.015625 0.0225 -0.04125 -0.029375 -0.024375 -0.011875 -0.024375 -0.04625 -0.00125 -0.011875 -0.00375 -0.028125 0.02625 -0.021875 0.026875 0.0025 0.018125 0.048125 0.024375 0.06625 -0.023125 0.0175 0.044375 -0.02375 -0.02125 -0.005625 0.00625 0.030625 -0.035 -0.018125 -0.051875 0.0075 -0.06875 -0.006875 0.02625 0.04875 0.07375 0.020625 0.00375 0.01 -0.01375 0.033125 0.0075 0.00125 0.005625 -0.0125 -0.0025 -0.023125 -0.0125 -0.016875 -0.010625 -0.0175 0.035625 0.015625 0.008125 0.0475 0.025 0.035 0.08375 0.063125 0.0275 0.02125 0.044375 0.041875 -0.03625 -0.005 -0.020625 -0.0175 -0.02 -0.01875 -0.039375 -0.010625 0.003125 -0.035 -0.020625 0.003125 0.058125 0.02625 -0.00375 0.018125 -0.034375 0.028125 0.036875 -0.00875 0.00375 -0.050625 -0.036875 -0.0325 -0.055 -0.01625 -0.043125 -0.046875 -0.031875 -0.0325 -0.024375 0.0325 -0.005 0.015625 -0.0075 0.055625 0.019375 0.024375 0.06 0.02375 0.045 0.043125 -0.0075 0.0025 -0.025 0.031875 -0.033125 -0.024375 -0.01375 0.004375 -0.034375 0.0175 -0.0275 -0.01625 0.02625 -0.0275 0.02375 0.00375 0.005625 -0.004375 -0.006875 -0.09375 0.013125 -0.01125 -0.006875 -0.038125 -0.00625 -0.01 -0.04875 -0.01875 0.009375 -0.008125 -0.051875 -0.006875 0.02125 0.04 0.013125 0.051875 0.038125 0.035 0.0525 0.019375 -0.013125 -0.003125 -0.0175 0.0125 0.02625 -0.048125 -0.009375 -0.065 -0.00875 0.02875 -0.033125 -0.01625 -0.01125 0.013125 -0.006875 0.01625 0.011875 -0.0075 -0.03 0.049375 -0.03375 -0.006875 -0.035 -0.04 -0.05875 -0.02 -0.039375 -0.019375 0.000625 -0.016875 0.026875 0.040625 0.02125 0.021875 0.051875 0.0375 0.01875 0.025625 0.095 0.046875 0.014375 0.069375 0.034375 0.03 -0.014375 0.02125 -0.026875 -0.04 -0.04125 -0.031875 -0.03875 -0.008125 0.02 0.003125 0.010625 0.0025 0.084375 0.005 -0.00125 0.04625 -0.011875 -0.00375 -0.0125 0.04625 -0.015625 -0.029375 -0.00625 -0.08 -0.063125 -0.0725 -0.048125 0.031875 -0.029375 -0.02125 -0.01 0.049375 0.03 0.060625 -0.02875 0.074375 0.040625 0.02625 0.039375 -0.02875 -0.035 -0.00375 0.02625 0.023125 0.01375 0.02875 -0.013125 -0.0125 -0.061875 0.045625 -0.01375 -0.0375 -0.014375 -0.031875 0.02125 0.02 0.000625 0.015625 -0.008125 -0.01625 0.010625 0.02375 -0.005625 -0.01 -0.015625 -0.0375 -0.013125 -0.019375 0.020625 -0.01125 -0.00625 -0.003125 0.00375 0.01375 0.030625 0.0575 0.034375 0.04625 0.048125 0.015625 0.06875 0.00875 0.07 0.034375 -0.02125 -0.011875 0.00625 0.005 0.011875 -0.05625 -0.035 -0.011875 -0.005625 -0.021875 0.0225 0.06375 0.03375 0.02375 0.06 0.0175 0.0175 -0.02 -0.05125 -0.015625 -0.040625 -0.0325 -0.063125 -0.04625 -0.01125 0.031875 -0.021875 -0.031875 0.03625 -0.01 0.008125 0.05375 0.029375 0.02375 0.02125 0.015 0.03 0.075 0.02875 0.07625 0.059375 -0.015625 -0.0075 -0.003125 0.0375 0.003125 0.011875 0.003125 -0.0225 0.030625 -0.05125 0.01375 -0.001875 -0.014375 0.0125 -0.02 0.011875 -0.033125 -0.056875 -0.02375 0.00375 0.0075 -0.03125 -0.02625 -0.019375 -0.01875 -0.010625 0.009375 0.023125 0.031875 -0.005 0.024375 -0.01875 0.07 0.05125 -0.02125 0.043125 0.01125 0.054375 0.001875 0.030625 0.02375 -0.0225 -0.03625 -0.004375 -0.021875 -0.009375 0.0375 -0.048125 -0.035 -0.023125 0.00375 0.016875 0.039375 -0.00375 0.03125 0.045 -0.00375 -0.00125 -0.045 -0.019375 0.01625 -0.050625 0.03 -0.03625 -0.01125 -0.03125 0 -0.045625 -0.0475 0.02375 0.018125 -0.02 0.040625 0.008125 0.02875 0.013125 0.05125 0.009375 0.070625 -0.004375 0.013125 0.020625 0.013125 0 0.004375 -0.011875 0.000625 -0.015625 -0.019375 -0.02375 -0.03625 0.01125 -0.031875 0.00125 0.005625 0.023125 0.015 -0.02625 -0.025625 0.01125 -0.00625 -0.045 0.03 0.0125 -0.05125 -0.003125 -0.043125 0.0075 -0.02125 -0.00875 -0.035625 0.031875 0.05125 -0.0175 0.035 0.03875 0.036875 0.055 0.02 0.059375 0.0175 0.01625 0.035 -0.006875 0.04625 0.023125 0.035625 -0.00125 -0.019375 -0.009375 0 -0.028125 -0.035 0.00375 0.01875 0.023125 0.031875 0.014375 0.046875 0.020625 0.034375 0.04375 0.020625 0.01625 -0.005625 -0.00375 -0.025 -0.049375 -0.014375 -0.028125 -0.001875 -0.025625 0.06375 0.015 0.03875 0.019375 0.024375 -0.025625 0.0475 0.038125 0.020625 0.00625 0.0625 0.01875 -0.031875 0.045625 -0.07 -0.01375 -0.035625 -0.035625 -0.00125 0.02375 0.00375 -0.034375 0.029375 0.025625 -0.00875 0 0.01625 0.02125 0.00875 -0.0325 0.04375 0.03875 0.00125 -0.004375 0.0025 -0.0425 -0.05125 0.015625 0.005625 -0.01625 0.00375 -0.011875 -0.02375 0.013125 0.06125 0.001875 0.025 0.050625 0.0275 0.0175 0.013125 0.051875 0.059375 0.018125 0.009375 0.01875 -0.009375 -0.02625 -0.0025 -0.0425 -0.018125 -0.02375 -0.05875 0.021875 0.063125 0.061875 0.0425 -0.01125 0.0175 0.008125 -0.03625 -0.0125 0.039375 0.00125 -0.021875 -0.0225 -0.021875 -0.079375 -0.041875 -0.028125 -0.071875 -0.0475 -0.040625 0.00875 0.0125 0.001875 0.024375 0.04125 0.054375 0.028125 0.07625 0.020625 +0.02875 0.015625 0.025 0.10625 0.036875 0.010625 0.038125 0.026875 0.03125 -0.010625 0.018125 0.03875 -0.02 0.00375 -0.005 -0.04125 -0.019375 0.01125 0.008125 -0.03375 0.046875 0.00625 0.019375 0.01375 0.006875 -0.00625 0.0375 0.0425 0.02125 -0.031875 -0.02 -0.03875 -0.01625 -0.059375 0.02625 -0.016875 -0.024375 -0.020625 -0.034375 -0.05125 0.0525 0.013125 0.009375 0.0325 0.066875 0.015 -0.00375 0.044375 0.061875 0.01 0.0525 -0.00125 0.03125 0.004375 0.0175 -0.053125 0.021875 -0.011875 -0.0125 -0.01 -0.004375 0.02625 -0.050625 0.004375 -0.03 -0.005625 0.026875 -0.030625 -0.02375 0.0025 0.0075 0.0075 0.015625 0.0025 0.01 0.039375 -0.025 -0.03875 0.024375 0.00625 0.028125 -0.014375 0.021875 0.023125 -0.010625 0.02375 0.035625 -0.0075 0.011875 -0.036875 -0.0075 0.01875 -0.006875 -0.014375 -0.03 0.005 -0.06125 -0.01875 0.01125 0.04375 -0.0125 -0.03625 -0.019375 -0.0325 -0.014375 0.031875 0.014375 0.018125 -0.015625 -0.0075 -0.00875 0.035 -0.025 -0.061875 0.0075 -0.04875 0.01125 0.014375 -0.05875 -0.0225 -0.024375 -0.03125 0.044375 0.006875 0.005 0.02625 0.00375 -0.019375 0.046875 0.079375 0.040625 0.05875 0.013125 0.024375 -0.034375 0.006875 -0.004375 -0.00125 -0.00625 -0.04375 0.006875 0.01 -0.028125 -0.015625 0.003125 -0.055625 0.0375 -0.011875 0.01875 -0.015 0.025625 0.065 -0.0225 0.0225 -0.038125 -0.050625 -0.000625 -0.006875 -0.050625 -0.025 -0.025 -0.05875 -0.029375 -0.015625 -0.004375 0.035625 -0.025 0.0375 0.031875 0.02 0.000625 0.02875 0.045625 0.02875 0.019375 -0.003125 0.036875 0.00875 -0.03375 0.009375 -0.0325 -0.01625 -0.0325 0.004375 -0.005 -0.0075 -0.04625 0.008125 0.016875 -0.02 -0.0075 0.0475 -0.039375 -0.003125 0.003125 -0.03125 0.035 0.008125 -0.005625 -0.0125 -0.005 -0.020625 0.005625 -0.00375 -0.045625 -0.053125 -0.02875 0.045625 0.033125 0.043125 0.00625 0.0675 0.0125 0.051875 0.023125 0.029375 0.06625 0.014375 0.019375 -0.010625 0.0075 -0.04625 -0.029375 -0.041875 -0.001875 0.0275 0.0075 0.018125 -0.049375 -0.02875 -0.0175 -0.01625 -0.015 0.01125 -0.000625 -0.0075 -0.025 0.038125 -0.00875 -0.0175 -0.0275 0.005 -0.05625 -0.05875 0.03125 0.041875 -0.044375 0.01875 0.046875 -0.0175 0.015625 -0.01 -0.003125 0.038125 -0.005 -0.014375 0.04625 0.02125 0.044375 0.04875 0.00125 -0.03 -0.009375 0.016875 -0.01875 0.010625 0.01 -0.01 -0.030625 0.0125 0.01 0.001875 -0.03375 -0.06 -0.0125 0.024375 -0.015625 -0.02625 0.023125 -0.053125 -0.065 -0.003125 -0.015 -0.009375 -0.00625 -0.003125 -0.060625 0.02125 -0.04875 0.020625 0.046875 0.008125 0.04625 0.063125 0.050625 -0.025 -0.006875 0.045625 0.013125 -0.061875 0 -0.01625 -0.03 0.01 -0.0075 -0.016875 -0.04625 -0.021875 -0.0225 0.01375 -0.01625 0.04 -0.031875 -0.04 0.00625 0.008125 -0.05375 0.003125 0.035 -0.05125 -0.014375 -0.011875 0.034375 -0.0075 -0.05 -0.03875 0.0125 -0.01875 -0.02 -0.03 0.00125 0.01375 0.01375 -0.01 0.026875 0.000625 -0.02375 0.024375 -0.001875 0.054375 -0.011875 0.019375 0.01125 -0.03875 -0.02375 -0.02125 0.00875 -0.0475 -0.04375 -0.0425 0.028125 -0.015 0.035625 0.00875 -0.051875 -0.033125 -0.015 0.01625 0.029375 -0.0575 -0.02625 0.015625 -0.036875 -0.0525 0.000625 -0.0025 -0.0325 0.003125 -0.015625 -0.02625 -0.020625 -0.02125 0.02125 -0.038125 0.000625 0.101875 0.03875 0.03875 -0.039375 -0.006875 0.015 0.00875 0.055625 -0.008125 0.01125 -0.0025 0.016875 -0.001875 -0.028125 -0.014375 -0.030625 0.014375 0.006875 -0.023125 0.000625 -0.036875 -0.009375 -0.001875 0.00875 0.034375 -0.005625 0.00875 -0.00125 -0.058125 -0.008125 0.0225 -0.014375 -0.039375 -0.035 -0.0225 -0.04625 0 -0.02125 0.011875 0.01625 0.061875 -0.036875 0.033125 0.005625 0.0175 0.015 0.024375 0.025625 0.0375 0.01875 0.005 0.02125 0 0 -0.016875 -0.004375 -0.048125 0.0525 -0.0075 -0.034375 0.02 0.046875 0.011875 -0.0225 0.035 0.02 0.02 0.03625 0.02125 -0.005 0.00125 -0.011875 -0.006875 -0.00125 -0.055625 0.003125 -0.0425 -0.03125 -0.006875 -0.024375 -0.023125 0.029375 -0.00875 0.01 0.014375 0.055625 0.046875 0.024375 0.065625 0.011875 0.04 -0.03625 0.01625 -0.014375 0.009375 -0.021875 -0.03125 -0.0275 -0.021875 -0.039375 -0.048125 -0.023125 0.01375 -0.01625 0.013125 0.013125 -0.021875 0.023125 0.011875 0.031875 0.02375 0.04 0.02125 0.01875 0.030625 -0.035625 0.005 -0.023125 -0.0375 -0.006875 0 -0.016875 0.00375 0.046875 0.00625 0.001875 -0.006875 0.0425 0.016875 -0.00375 0.01125 -0.03625 -0.025625 0.0075 -0.035625 0.03875 -0.01 -0.0025 0.014375 0.004375 -0.015625 -0.01 0.02125 -0.03125 -0.01125 0.00875 0.0325 -0.00125 -0.009375 0.000625 0.045 0.016875 0.02 -0.01125 -0.00625 -0.020625 -0.011875 0.04125 -0.01875 -0.01 -0.016875 -0.019375 -0.00875 -0.004375 0.053125 -0.02375 0.055 0.006875 0.0375 0.053125 0.03875 0.01625 0.025625 0.016875 0.02125 -0.0325 -0.00375 0.029375 -0.0375 0.005 -0.036875 -0.0125 -0.075625 -0.001875 -0.015625 -0.01875 0.001875 0.016875 -0.0175 0.029375 0.014375 0.0425 -0.013125 -0.003125 0.015 -0.02125 -0.00375 -0.00625 -0.03125 -0.0125 -0.0575 0.014375 0.005625 -0.015625 0.0325 0.005625 0.023125 -0.00875 0.008125 -0.00125 0.011875 0.05125 0.020625 0.00875 0.03 0.00125 0.045625 0 0.006875 -0.051875 0.008125 -0.018125 -0.046875 -0.035 -0.01625 0.005625 -0.031875 0.004375 -0.024375 0.000625 0.02 -0.015625 -0.069375 0.030625 0.016875 -0.021875 -0.028125 0.01125 -0.008125 0.009375 -0.021875 -0.035 -0.0275 -0.00125 -0.066875 0.0325 0.043125 0.025 0.043125 0.023125 -0.021875 0.005 -0.023125 0.03 0.003125 0.0325 0.054375 -0.00375 0.055 -0.03125 -0.0125 -0.02625 0.00875 -0.005 -0.009375 -0.00875 -0.0425 0.00125 -0.009375 0.01875 0.05 -0.05375 0.00125 0.0125 -0.0525 -0.01125 -0.03125 -0.006875 -0.019375 -0.02125 -0.05375 0.020625 0.001875 -0.00875 -0.015 0.00375 -0.000625 0.005 -0.00875 0.0075 0.031875 0.0175 0.031875 0.059375 0.001875 0.015 0.02375 0.020625 0.01625 -0.005625 -0.014375 -0.0575 -0.02125 -0.03875 0.0075 -0.01375 -0.026875 0.01875 -0.000625 -0.04 -0.020625 0.041875 -0.0025 0.043125 -0.01875 0.040625 -0.0025 -0.01375 0.00125 -0.013125 0.024375 -0.004375 -0.006875 -0.0125 -0.019375 0.016875 -0.033125 0.02375 -0.061875 -0.0325 -0.015625 0.035625 0.070625 -0.01 0.019375 0.03 0.043125 0.040625 0.00375 -0.006875 -0.003125 -0.02625 0.00375 -0.023125 0.000625 -0.02875 -0.029375 0.00125 0.004375 0.0125 0.0225 -0.008125 -0.0025 -0.015 -0.004375 0.001875 0.05 0.000625 -0.018125 -0.00875 -0.004375 -0.001875 -0.015625 0.00625 -0.008125 -0.061875 -0.0525 -0.0375 0.020625 -0.034375 -0.01125 0.02125 0 -0.02125 0.080625 0.031875 0.0575 0.034375 0.006875 -0.00625 -0.049375 0.0475 0.01125 0.03 -0.01125 0.0325 -0.03125 -0.015625 -0.0275 0.00625 0.02375 0.01375 -0.008125 -0.006875 -0.04125 -0.0075 -0.006875 0.0375 -0.02875 0.009375 -0.003125 -0.019375 -0.0075 -0.001875 -0.04375 -0.025 -0.0225 -0.025 -0.005 -0.013125 -0.036875 0.02625 0.015 -0.006875 0.0225 0.010625 0.018125 -0.003125 0.015625 0.021875 0.015 0.04125 0.004375 0.013125 0.00625 0.005 0.0025 0.005 -0.016875 -0.003125 -0.01875 -0.075625 -0.00125 0.004375 -0.004375 -0.010625 0.040625 0.02375 0.044375 0.0275 -0.03 0.0425 -0.0075 -0.035625 -0.046875 0.005625 -0.0225 -0.008125 -0.00625 -0.011875 -0.02 -0.01125 0.010625 0.031875 -0.028125 -0.01875 -0.010625 -0.018125 0.020625 0.041875 0.04125 0.00375 0.046875 0.02375 0.020625 -0.00875 -0.06125 -0.014375 -0.036875 -0.00875 -0.04625 -0.00625 -0.035 -0.01375 0.000625 -0.01625 -0.02 -0.00625 -0.015625 0.025625 0.006875 0.0075 -0.016875 0.011875 0.0225 -0.008125 -0.020625 -0.026875 0.008125 -0.02375 -0.02 0.008125 -0.000625 -0.008125 0.01 0.02625 -0.03125 -0.018125 0.013125 0.019375 -0.01125 0.029375 0.036875 0.023125 -0.015 0.014375 0.01125 -0.07 -0.0025 -0.004375 -0.04375 -0.019375 -0.014375 -0.03 -0.0525 -0.016875 -0.005 0.02375 -0.021875 0.016875 0.01125 -0.024375 0.039375 -0.04 0.00625 0.005 0.001875 0.021875 0.016875 -0.0275 -0.0025 -0.066875 0.010625 -0.04625 -0.00875 0.00375 0.01 0.02875 0.075625 0.05 0.05125 0.009375 0.055 0.044375 0.0275 -0.00625 -0.00875 0.020625 0.024375 0.034375 -0.035625 0.015 -0.005625 -0.05875 -0.059375 0.038125 0.0425 -0.01125 0.02625 0.0075 -0.0125 0.026875 0.0375 -0.02625 -0.02625 -0.03625 0.009375 -0.024375 0.0075 -0.03625 -0.02625 0.014375 0.009375 -0.02375 0.00875 -0.06125 -0.035625 0.005625 0.015 0.009375 0.01125 0.0275 0.01375 0.041875 -0.01625 0.02125 0.031875 -0.000625 0.0275 0.004375 -0.011875 0.024375 0.00875 -0.0025 -0.08 -0.028125 -0.01125 -0.0025 -0.01125 0.014375 -0.05625 -0.0325 -0.026875 0.05625 0.028125 -0.03125 0.04875 -0.02125 0.00625 -0.014375 0.035625 -0.00375 -0.00125 0.029375 -0.004375 -0.005625 -0.045625 0.004375 -0.009375 0.0175 0.01625 -0.018125 0.055625 0.00875 0.014375 0.026875 0.008125 0.02375 -0.008125 0.033125 0.04125 0.021875 0.031875 -0.001875 -0.01125 -0.03375 0.000625 -0.004375 -0.025 -0.053125 0.01125 -0.045 -0.004375 0.001875 -0.001875 -0.018125 -0.05625 0.026875 0.011875 0.019375 -0.009375 -0.005625 -0.015625 -0.02875 -0.001875 -0.015 0.015 -0.015625 -0.01125 -0.050625 0.004375 0.00125 0.00875 0.01625 0.03375 0.021875 0.05 0.060625 0.04125 0.040625 0.00625 0.02125 0.004375 -0.018125 0.01 -0.009375 -0.03375 -0.02875 -0.011875 0.00125 -0.0425 -0.02625 0.01625 0.006875 -0.014375 -0.00875 0.030625 -0.023125 0.0125 0.03875 -0.050625 0.02 -0.0075 0.016875 -0.026875 -0.01375 -0.026875 -0.0025 -0.03 -0.0075 -0.04125 0.011875 0.02375 0.03 0.016875 0.0025 0.018125 0.020625 0.020625 0.045 -0.023125 0.00625 0.03625 0.004375 0.053125 0.05875 0.016875 -0.04875 0.0325 0.01875 -0.024375 -0.005625 -0.02125 0.00625 -0.02375 -0.003125 -0.02625 -0.014375 0.013125 -0.015 0.0575 0.018125 -0.028125 -0.085625 0.018125 -0.031875 -0.05625 0.00625 -0.030625 -0.02125 -0.019375 -0.02125 -0.006875 -0.05875 -0.02125 0.019375 -0.035625 0.03 0.0025 0.04375 0.019375 0.045625 0.0275 -0.0075 -0.000625 0.000625 0.024375 -0.001875 -0.021875 0.008125 0.008125 0.061875 -0.008125 -0.05625 -0.053125 -0.005 -0.013125 -0.02875 -0.025 -0.021875 -0.004375 0.00625 0.025625 0.026875 -0.03375 -0.033125 -0.0475 -0.010625 -0.01375 0.006875 0.000625 -0.028125 0.0025 0.035625 -0.03125 0.000625 -0.010625 0.038125 -0.0025 -0.001875 0.034375 -0.030625 -0.014375 0.031875 0.03375 -0.038125 0.006875 -0.023125 -0.015625 0.01625 0.00875 0.0125 -0.030625 -0.02625 0.010625 0.019375 -0.05375 -0.060625 -0.000625 -0.009375 0.001875 0.03625 -0.02875 0.00625 0.04875 -0.024375 0.035 0.02625 -0.000625 -0.0175 -0.05125 -0.025625 -0.026875 -0.020625 -0.011875 -0.01 -0.015625 -0.010625 0.005625 0 -0.013125 0.01375 0.0225 0.01875 0.00125 0.03125 -0.02625 0.00625 0.03875 -0.02625 0.0325 -0.019375 -0.009375 -0.01 -0.008125 -0.035 0.038125 0.0125 -0.0075 -0.003125 0.06 -0.010625 -0.03375 -0.01125 0.03625 0.049375 0.048125 0.0525 -0.021875 0.013125 0.009375 -0.003125 -0.021875 -0.00875 -0.000625 -0.038125 0.014375 -0.026875 -0.005625 -0.000625 0.0075 0.011875 0.018125 0.015625 0.035 0.0175 0.02125 0.064375 0.040625 -0.003125 0.024375 0.050625 -0.01625 -0.030625 -0.015625 -0.038125 0.0275 -0.03125 -0.048125 -0.003125 -0.01125 -0.008125 0.0025 -0.02125 -0.010625 -0.008125 -0.005 -0.03375 -0.01125 0.0175 0.015 0.029375 0.01375 0.003125 -0.053125 -0.01625 0.0075 0.06125 -0.049375 -0.040625 -0.011875 0.04375 0.024375 0.105625 0.01375 0.02375 -0.005625 0.004375 0.04625 0.025625 0.04625 0.011875 -0.04875 -0.04625 0.01125 -0.023125 -0.024375 -0.038125 0.0025 0.00875 -0.05 -0.021875 0.005 -0.064375 -0.023125 0.03125 -0.03875 0.023125 0.003125 0 0.046875 -0.014375 -0.046875 -0.023125 -0.0375 0.011875 0.004375 -0.025 -0.04625 -0.023125 -0.0275 -0.038125 0.023125 0.02 0.0175 0.03 -0.013125 0.0525 0.045 -0.0025 0.019375 0.026875 0.011875 0.013125 0.04375 -0.00625 -0.01 -0.045625 0.0175 0.025625 -0.019375 -0.0025 -0.021875 0.029375 -0.020625 -0.019375 -0.005625 0.045 0.0175 0.008125 -0.0075 0.01 0.010625 0.04875 0.04125 0.0175 -0.008125 -0.07 -0.020625 -0.003125 0.05125 0.073125 0.01 -0.01125 -0.005 0.034375 0.003125 0.0175 0.024375 0.005625 0.053125 -0.01125 0.02875 -0.016875 0.014375 -0.031875 0.005 -0.023125 -0.05375 0.004375 0.01125 -0.01375 -0.020625 -0.011875 0.015625 0.02125 -0.026875 0.018125 0.031875 0.029375 -0.020625 -0.000625 -0.02375 -0.015 -0.001875 -0.009375 0.014375 -0.025625 0.029375 -0.024375 -0.025625 -0.015625 -0.023125 -0.005625 0.031875 0.06125 -0.005625 0.046875 0.05875 0.0475 0.025625 0.004375 -0.013125 -0.03125 0.00125 0.00875 -0.0175 0.029375 0.00125 0.005 -0.041875 -0.01875 0.00125 0.015625 0.033125 -0.000625 0.0125 0.01375 -0.00125 0.01375 0.048125 0.02625 -0.03625 0.00375 -0.02125 -0.010625 -0.02375 0.003125 -0.039375 -0.0175 -0.018125 -0.005625 -0.033125 -0.056875 0.0375 -0.04875 0.00125 -0.02625 0.00375 -0.025625 -0.000625 -0.02 -0.0125 0.005 0.055 0.00125 0.00125 -0.000625 0.078125 0.014375 -0.03125 -0.00625 -0.0325 -0.005 -0.02125 -0.03 -0.024375 0.045 0.01 0.031875 -0.029375 0.0475 -0.026875 -0.045 0.014375 0.024375 0.01625 0.01 -0.01125 -0.0025 -0.045 -0.03125 0.015 -0.054375 -0.03125 0.00625 -0.011875 -0.025625 -0.016875 0.00375 0.0075 0.02 0.003125 0.02125 0.03875 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_72ms.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_72ms.hrd new file mode 100644 index 0000000..c8f480b --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_72ms.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 72 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035238 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-17.403125 -19.010625 -23.630625 -19.5875 -19.780625 -14.786875 -18.2175 -18.425 -16.13 -16.7425 -18.1075 -14.41125 -15.845625 -13.56125 -14.76125 -18.443125 -16.048125 -14.65 -12.4575 -14.17125 -10.76375 -14.225 -13.781875 -12.126875 -12.716875 -11.880625 -15.44875 -12.67875 -8.685 -13.65375 -9.8325 -12.24125 -9.216875 -10.689375 -13.483125 -8.061875 -12.783125 -11.054375 -10.055 -11.17 -11.226875 -12.26625 -10.11625 -9.72625 -8.475 -9.005 -10.92375 -7.156875 -9.6875 -11.834375 -9.678125 -6.15 -9 -9.008125 -6.348125 -12.19125 -7.395 -7.230625 -8.39375 -6.22875 -8.92125 -9.3475 -8.655 -9.963125 -8.38375 -9.8425 -6.910625 -4.99625 -6.54625 -8.226875 -4.5925 -6.04625 -4.7025 -6.486875 -5.139375 -6.831875 -8.613125 -6.09625 -5.4575 -9.0325 -10.291875 -8.0275 -3.9625 -4.075 -6.193125 -4.92125 -6.9575 -7.551875 -4.735625 -7.0375 -6.56625 -7.259375 -6.423125 -3.1075 -7.891875 -5.63875 -4.975 -4.83375 -5.5575 -4.960625 -5.533125 -5.00375 -4.329375 -7.596875 -5.096875 -4.6375 -6.6925 -2.971875 -5.810625 -4.0625 -6.538125 -3.340625 -4.099375 -6.711875 -3.320625 -4.598125 -3.758125 -4.58125 -7.428125 -1.44 -3.51875 -4.736875 -5.806875 -2.99125 -4.66625 -6.006875 -5.6975 -3.055 -1.411875 -5.756875 -4.444375 -4.798125 -4.99375 -3.1975 -5.6575 -4.42875 -0.833125 -5.349375 -7.924375 -5.340625 -3.9925 -4.18375 -5.4025 -3.3775 -2.876875 -3.58125 -3.81125 -4.419375 -3.555 -3.6125 -1.599375 -0.87875 -6.651875 1.46375 -0.503125 -2.27125 -3.390625 -2.235625 -1.169375 -3.049375 -3.80625 -1.651875 -2.705 -2.953125 -2.86125 -1.309375 -0.97875 -1.766875 -2.078125 -4.4 -5 -3.595 -5.215625 -0.465625 -1.58625 -2.03625 -2.5125 -1.454375 0.1725 -1.399375 -2.28375 -2.194375 -3.3675 -1.895625 0.115625 -1.08 -3.135 0.3775 -5.05125 0.04625 -1.939375 -2.385 -2.593125 -0.8575 -2.066875 -1.326875 -2.774375 -3.576875 -2.51 -2.628125 -4.353125 -2.701875 -3.489375 -0.54875 -3.038125 -0.913125 -3.103125 -3.37125 -1.243125 -3.06875 -0.525 -1.043125 -3.735 -5.314375 -0.446875 -3.893125 -4.155625 -3.01 -0.298125 -3.053125 -3.036875 0.911875 -0.816875 -1.229375 -4.328125 -2.18125 -1.650625 -0.025625 0.279375 -0.649375 -2.108125 -2.458125 -1.131875 -2.3925 -1.71625 -1.166875 -4.37375 -1.865625 -0.954375 -4.001875 -0.12375 -1.136875 -2.290625 -1.859375 -0.908125 0.26 -1.1875 -1.5925 1.25375 -0.94875 -1.74125 -2.8875 -0.876875 -0.845 -2.37875 -5.778125 2.940625 -1.605625 -2.02375 -1.685625 -2.7 -1.121875 -2.82 2.115 -1.154375 -3.82375 -2.37375 -3.904375 0.269375 -0.725 -0.545 -3.238125 -2.93 -1.865 1.931875 -0.445 -3.3275 -2.153125 -1.333125 -1.115 -1.141875 -1.373125 -1.471875 -2.991875 -1.37 -0.206875 0.9 0.590625 -2.8725 -3.56625 -2.99 -1.78 -1.635 -2.029375 -2.944375 0.27625 -3.305625 -2.753125 -2.138125 -2.6725 -0.295 -4.184375 -1.39 -2.665625 -0.77 0.30625 -0.059375 0.209375 -2.829375 -0.664375 -0.368125 -1.423125 -0.86 -1.10875 -3.76625 -4.07875 -0.3975 -1.506875 -0.4425 -0.568125 -0.91125 1.2225 -1.02125 -3.7325 2.524375 -2.248125 0.36125 -2.01 -2.59375 -1.8475 -0.695 -0.66625 0.284375 0.218125 0.040625 1.01125 -3.440625 -2.33125 -2.44 0.691875 -0.185 0.4475 -3.07375 -4.840625 -0.74125 1.66 -1.045625 -0.781875 -1.126875 -2.073125 -1.63 -0.3225 0.2925 -1.89375 -4.16375 -1.51375 2.444375 -1.259375 -1.3025 -1.258125 -0.105 0.1825 -1.841875 1.35 -0.054375 -3.1625 -2.780625 -1.415625 0.135 1.07375 -1.80875 -0.440625 -1.60875 0.065 0.96125 2.193125 -3.815 1.260625 -1.5725 -2.085625 -1.983125 -3.485 -3.041875 1.90125 1.24875 -1.28375 -1.310625 -2.935 0.588125 2.381875 0.588125 -1.465625 -2.09375 0.996875 1.889375 -1.84625 -1.914375 -4.08875 -2.658125 -0.275625 -0.815 1.538125 -2.63625 0.189375 -0.6875 -0.685 -1.995 -2.255 1.745625 -0.075 -2.573125 2.239375 -3.8275 -3.850625 -0.29625 -1.165 0.705625 -0.1775 -3.996875 -0.441875 1.990625 0.351875 -0.08875 0.54125 -3.729375 -2.51375 -3.28 -2.006875 -0.84875 -1.4 -2.663125 -4.015625 -1.58375 0.945625 1.439375 1.550625 -0.33 0.868125 -1.2575 -0.440625 1.006875 -0.59375 0.068125 0.37 1.1525 -0.465625 1.51375 1.585625 0.90625 -0.268125 0.1625 0.18375 -0.73 -3.42875 0.88875 -0.738125 1.90375 -2.36375 0.96 0.30875 -1.5875 0.64875 0.248125 -2.4575 -0.82 -4.565625 -1.021875 -0.364375 -0.07 -0.74 -2.644375 0.6375 -1.518125 1.333125 -2.075625 0.481875 -0.306875 -2.941875 -1.61375 -0.059375 -1.5825 0.1125 -0.59375 -2.4675 -1.96625 0.108125 0.100625 1.240625 -1.185 -1.1475 -2.744375 1.3675 1.349375 -0.479375 1.05625 0.08125 -1.003125 -0.11625 -1.571875 0.945 -1.656875 -0.58625 1.64875 0.4875 0.3975 1.015 2.266875 -1.503125 0.00625 1.354375 1.408125 3.094375 -1.5875 1.701875 -2.020625 -3.45375 3.54875 -0.499375 -0.790625 1.96625 -2.49625 0.748125 1.805625 -0.040625 -2.168125 -0.7125 0.1625 -2.69625 -0.24875 -2.051875 -1.5925 -2.09375 -0.155 2.235 0.63625 0.819375 0.513125 0.050625 4.321875 0.6075 -0.38375 -2.684375 -2.13125 -0.145 1.220625 0.10875 -0.34375 0.24375 0.349375 -0.288125 -0.723125 1.76 0.51875 -2.140625 0.300625 -1.350625 -2.709375 -1.4275 -2.07 1.50375 -0.64875 0.1175 -1.8925 3.334375 1.4925 -0.01875 -1.464375 -0.698125 1.275625 -0.075625 -0.248125 -1.093125 -1.30625 -0.526875 -2.0125 -0.535 0.243125 1.975 -3.56 -0.660625 0.874375 -1.91 1.63875 2.54625 0.350625 -2.068125 -1.219375 1.95375 0.741875 -1.961875 -2.5475 0.338125 -1.223125 0.95375 0.4475 -2.2 -0.2875 -1.886875 -2.54375 -0.685 -0.308125 -0.49625 -0.98875 -4.16375 -2.165 1.65375 -1.91375 0.175 1.32375 -0.465 -0.1525 1.20625 -1.94125 -0.54625 -0.9375 -1.63875 -0.2875 -0.104375 -3.071875 0.531875 1.374375 -1.42625 -0.43625 -0.2275 -0.15375 1.834375 1.094375 -2.415625 2.571875 -0.270625 2.18125 -3.691875 0.09125 -0.13 4.1275 2.550625 -1.548125 -0.555 2.28375 -1.5575 0.049375 -2.465625 -1.3675 -2.034375 0.561875 0.7225 -0.274375 1.99375 3.14375 0.541875 0.02625 0.25375 2.25125 -2.03 0.8875 -0.564375 1.3725 -0.08125 0.56375 0.5325 -1.565 1.3025 -0.798125 1.5725 0.29375 0.126875 -1.0625 1.23875 -0.118125 0.1925 -1.29375 -0.683125 1.99 0.370625 -1.43375 -0.930625 0.498125 -2.834375 1.259375 0.044375 -0.6325 -1.683125 -1.00375 0.83 -1.555625 0.76625 1.735 0.3975 -1.723125 -1.451875 -0.689375 -1.4375 0.605 3.03625 1.151875 0.690625 -0.89375 1.54125 2.36 -2 2.054375 2.190625 -2.840625 1.325625 1.015 0.064375 -2.735 -0.690625 -2.14125 3.43875 -1.364375 -0.476875 -2.251875 0.084375 0.208125 1.3275 -1.540625 0.295 1.775625 1.413125 0.878125 0.976875 2.9675 0.4525 -2.15125 -0.23125 -0.643125 0.76875 -0.33 0.984375 0.338125 -1.00625 -3.0325 -0.223125 1.58 2.575625 -2.88125 -1.27 0.735 -2.013125 2.13 -0.40375 1.5425 -0.12125 0.004375 -0.355 -0.8825 -2.51125 1.31625 -0.401875 2.785625 3.109375 2.216875 1.14 -1.2425 0.72875 -0.068125 -1.066875 -2.0375 2.28875 2.9 -0.09 1.229375 -1.23125 -1.22125 -2.545625 0.6775 -0.69375 -2.079375 1.21 0.261875 1.25 -2.286875 -1.27875 -1.82125 -1.15875 -1.7175 -2.18375 2.238125 2.721875 1.194375 -2.814375 0.93625 0.89625 0.83 -1.9775 0.1975 0.7025 -0.016875 1.089375 -2.135 2.51 1.845 2.58 0.72 2.049375 0.304375 -1.989375 -0.606875 0.401875 -0.701875 2.026875 -0.813125 -0.24125 -0.3975 2.214375 -1.075625 -2.323125 0.37125 -0.909375 0.914375 2.084375 0.530625 1.46 -1.226875 -2.246875 2.4975 -1.24 0.5275 -0.824375 1.019375 1.605 0.699375 -1.808125 1.04625 -0.4675 -3.01125 1.018125 -0.771875 2.044375 1.130625 -1.371875 0.53875 -0.269375 2.92625 -3.149375 2.03 1.3125 -2.913125 1.063125 -3.37625 -2.28375 1.245625 -3.9725 2.5625 0.203125 3.828125 -0.560625 0.64875 1.1325 0.144375 -1.45875 0.079375 -1.74375 0.531875 1.1325 0.21 1.85125 1.92375 1.86 0.54375 1.360625 0.221875 0.09375 2.256875 -0.658125 -0.041875 -0.585 -1.214375 2.24 1.0725 -1.01375 -0.143125 3.223125 0.188125 -0.445625 -1.081875 -1.878125 2.37375 -2.468125 1.815625 -0.133125 -1.555 -0.52375 -1.590625 0.534375 0.6625 -0.571875 2.333125 -0.10375 0.561875 0.84625 -1.12625 1.31 0.8675 -1.080625 1.895625 -0.1175 0.31 -1.664375 2.684375 1.194375 -1.59875 -0.1 -0.8575 -0.31375 -1.87 0.531875 -1.9625 -1.0375 1.905625 -0.75625 1.22 -2.45625 1.27875 0.611875 1.474375 -1.025625 0.36625 -0.249375 2.250625 2.285 0.588125 1.174375 0.745625 -0.951875 2.92625 0.111875 0.658125 -0.105625 -0.085625 -0.344375 -2.571875 0.1075 1.27 1.4025 0.7325 0.729375 2.681875 3.08125 -0.5775 0.669375 0.948125 0.2 1.52875 -1.926875 -0.94375 0.525625 -1.184375 -0.90625 0.346875 1.493125 -2.539375 -0.22625 -1.250625 2.328125 -1.525625 0.716875 1.940625 0.13125 -0.5025 1.019375 1.425625 1.526875 0.24 -1.43125 0.535625 -5.02875 -1.346875 -0.808125 -0.75125 -0.8725 -1.821875 -1.081875 -0.473125 -0.484375 -2.60875 2.241875 1.209375 -1.34375 -1.2425 0.996875 -0.418125 -0.239375 0.81125 -1.08625 1.09625 -1.490625 -1.9625 1.6775 -4.1925 1.06375 -0.303125 0.73 2.891875 -3.41125 -1.245 2.1425 1.939375 1.684375 1.439375 1.330625 -3.223125 0.421875 1.46375 0.036875 -3.4375 -1.704375 -0.245 0 -3.331875 -0.648125 -0.204375 0.74125 -1.706875 0.6575 -0.62 -2.083125 0.244375 -2.10125 0.62625 -4.424375 0.29125 -0.81625 -2.086875 0.988125 -0.7125 1.124375 -0.079375 0.150625 -0.49875 1.238125 -0.4475 -1.518125 1.804375 0.9825 -1.48625 -2.666875 -0.916875 -1.688125 0.23625 -0.455625 1.214375 0.583125 0.565625 -2.53 -2.5425 -0.638125 2.996875 -1.46 -0.529375 -0.095 -0.355625 -3.294375 0.178125 -0.72875 2.509375 1.41625 0.221875 1.11 1.256875 0.150625 0.940625 -3.2275 2.039375 -2.26625 0.81125 -1.076875 -2.01 1.8775 1.63125 2.709375 0.91125 3.53375 1.16375 0.439375 2.06875 -2.435625 -0.05875 1.529375 0.14875 2.96125 -1.643125 -1.6125 -0.544375 2.223125 0.360625 0.9275 1.223125 -2.68125 -2.2375 0.983125 0.345 1.09875 -1.750625 2.83375 1.746875 -2.735625 -1.461875 -2.211875 2.713125 0.433125 -1.50375 -2.04 0.75875 -0.00375 -0.960625 0.94375 1.331875 -0.86375 -1.31 0.895 -3.225625 -0.485625 -0.6775 1.23875 -0.3025 -0.1425 1.771875 -0.78625 2.421875 -0.066875 -0.3775 -2.950625 -0.21125 -4.463125 1.11 0.153125 0.618125 1.204375 0.839375 0.89125 -0.87375 0.213125 -0.051875 0.57125 0.396875 0.000625 -1.6675 -2.996875 0.09 -1.841875 1.85875 3.410625 -2.229375 0.72875 -2.393125 0.53375 2.431875 -2.043125 0.879375 -1.636875 -1.719375 1.178125 1.105625 -0.093125 -0.911875 1.205625 -0.033125 -3.69875 -2.021875 -3.44 -1.241875 2.268125 1.85 0.481875 1.38 -1.669375 0.0075 0.461875 2.74625 -0.98875 -0.965 1.73625 -0.015625 -3.535625 0.516875 1.91375 -0.5925 1.144375 -0.105 -2.181875 -0.5725 2.483125 0.34 -2.3725 0.065 -0.728125 -1.350625 -1.115 -0.960625 1.26375 1.114375 2.53 2.520625 0.630625 0.840625 3.501875 -0.3625 1.311875 0.260625 -2.29125 4.795 -1.014375 0.426875 -0.591875 -1.294375 1.6 -2.71875 -0.7875 0.808125 1.536875 0.048125 0.235625 -2.515625 -0.7825 -2.70625 0.556875 -0.9975 0.08375 -1.410625 -1.28 -2.34625 0.681875 -2.03125 -0.095625 0.5625 0.431875 0.353125 -0.591875 1.13875 -1.051875 -1.40375 1.5725 0.23 4.96125 -2.7475 0.049375 -3.370625 4.303125 -0.488125 1.564375 1.458125 0.071875 -1.519375 -0.481875 -0.679375 -0.59375 -2.726875 -2.336875 -4.02125 -1.76375 0.638125 -0.34125 -1.459375 -0.945625 1.455625 -1.995625 3.02875 -1.0975 1.564375 2.771875 -1.071875 -1.5325 -0.736875 1.055 0.366875 -1.10375 -2.769375 -2.50125 -0.448125 0.98 4.008125 1.56625 -1.439375 -3.163125 1.50875 0.41875 -2.18125 0.28125 -1.910625 -0.10625 3.08875 -0.92375 1.16125 1.460625 1.044375 0.79875 0.74125 0.721875 0.495 -0.42875 -2.61 0.8775 -1.356875 -1.405625 0.18375 -0.8625 0.894375 0.623125 -0.63625 -0.705 0.40125 -0.30125 -5.103125 2.258125 -1.421875 2.79875 0.50125 0.3925 0.0025 2.26625 -0.92125 -0.234375 0.46375 0.896875 0.67625 -2.335 -0.16625 -2.498125 1.496875 -1.99625 1.045625 -1.271875 2.273125 1.136875 -0.171875 -2.523125 -2.7375 0.23 -0.811875 1.164375 -0.52625 -1.34 2.665625 -0.13625 1.380625 0.74375 1.09375 -0.90875 0.950625 0.72625 0.7675 1.55 0.75 -0.2625 -0.713125 -0.0775 3.72625 2.524375 -2.17875 1.4575 -1.4075 -1.950625 -2.58625 -3.928125 -0.505625 0.11125 -3.19 -1.18125 0.48625 -0.480625 -0.760625 0.21375 1.92 1.043125 1.47625 2.319375 0.774375 0.663125 0.856875 4.165 -0.923125 -2.254375 -0.020625 -2.569375 -1.170625 1.6175 -3.183125 2.750625 0.685625 -0.565 -2.289375 1.295625 -0.84875 0.508125 0.84 -1.616875 0.629375 0.85375 1.928125 1.8825 1.3425 2.125625 3.388125 -2.66875 3.160625 -2.575 0.593125 -0.36625 2.620625 -0.5275 -0.656875 1.79125 -1.744375 1.556875 -0.38375 0.443125 1.4725 -2.828125 0.88 -0.095 -0.1275 0.0375 1.365 1.909375 1.1825 0.6025 -0.821875 2.14 0.031875 -0.420625 -3.38125 2.11875 -1.22875 -3.98 1.994375 -1.066875 0.214375 -1.6775 0.405625 0.701875 0.33875 0.660625 0.2275 0.744375 2.30875 -2.59 -4.3925 1.675625 -0.389375 -1.04625 -0.29375 -5.233125 0.580625 1.67375 -0.23625 -0.724375 1.04 -0.226875 -1.644375 -0.099375 -1.020625 -2.2025 0.693125 1.0275 0.7325 -0.1525 2.096875 0.326875 0.450625 0.73125 0.74125 -1.374375 2.96625 2.086875 -0.278125 -0.425 1.443125 -0.063125 -1.06625 -1.76375 1.750625 1.01 -1.975625 2.745 -0.358125 0.51 0.1425 1.8325 1.245 0.674375 1.154375 1.368125 -0.968125 -1.365625 0.438125 0.609375 -2.683125 -0.5425 -0.353125 -0.361875 0.0475 -1.069375 -3.46875 -1.81375 -0.840625 0.240625 0.313125 -1.269375 +-19.98 -26.320625 -22.548125 -21.44875 -18.03 -21.13375 -19.255625 -17.89875 -20.803125 -22.59 -20.564375 -20.21125 -19.166875 -18.175 -17.8725 -16.161875 -18.9875 -16.713125 -16.723125 -15.94 -18.30125 -17.318125 -16.37625 -14.87 -14.93125 -18.54875 -14.110625 -13.273125 -14.84 -10.97 -14.16625 -11.543125 -14.0175 -13.913125 -11.566875 -13.571875 -15.35125 -14.653125 -16.385 -12.33625 -14.3375 -12.245625 -12.599375 -11.14125 -14.4925 -12.54875 -10.181875 -9.273125 -10.6175 -12.48375 -11.305 -9.740625 -10.735 -9.58 -9.468125 -13.32375 -11.685 -10.628125 -10.51375 -12.97 -12.685 -11.664375 -9.850625 -10.84375 -10.17125 -7.585625 -6.11125 -11.351875 -9.278125 -9.02375 -8.22125 -7.33375 -10.63 -8.635625 -11.354375 -10.579375 -8.179375 -4.62125 -9.145625 -10.46125 -10.035625 -10.059375 -9.598125 -7.228125 -7.70375 -5.7425 -7.901875 -7.936875 -8.224375 -4.8775 -6.17125 -6.73625 -7.589375 -7.46 -4.620625 -6.73 -3.888125 -5.154375 -6.5525 -8.710625 -5.515 -6.05875 -5.2325 -8.065 -3.57875 -7.97625 -7.258125 -7.45875 -5.921875 -4.2425 -7.16625 -5.6225 -4.94 -3.6225 -7.565 -6.123125 -3.544375 -5.038125 -3.921875 -7.086875 -7.468125 -4.02125 -4.800625 -3.904375 -9.098125 -5.653125 -6.06125 -5.221875 -4.6325 -3.971875 -5.07625 -9.974375 -5.885 -2.35875 -6.436875 -4.11 -4.315625 -0.04375 -3.030625 -7.05875 -4.26 -5.446875 -4.7525 -6.2975 -2.873125 -6.276875 -5.95625 -2.890625 -3.371875 -4.18 -3.089375 -7.578125 -5.9575 -3.225625 -3.835625 -3.411875 -7.736875 -3.155 -2.815625 -1.369375 -5.165625 -2.925 -2.488125 -3.5225 -4.023125 -2.335625 -2.64375 -5.82875 -6.9 -2.19625 -4.3675 -3.19 -2.028125 -2.70125 -3.973125 -7.730625 -1.2375 -3.424375 -4.1125 -0.2075 -2.361875 -5.22125 -5.0325 -1.12125 -4.94375 -2.910625 -3.666875 -3.77875 -3.230625 -0.010625 -5.66375 -2.744375 -1.47625 -1.13375 -4.299375 -5.498125 -1.53 -5.44125 -3.858125 -3.24375 -0.511875 -0.1275 -1.218125 -4.765625 -2.480625 -3.388125 -2.449375 -2.928125 -0.305 -3.754375 -2.44875 -2.78375 -0.224375 -1.2375 -5.27 -1.79 -0.24 -1.323125 -1.344375 -0.161875 -3.180625 -1.546875 -2.6825 -0.719375 -1.765625 -1.560625 -3.97125 -2.25625 0.803125 -1.778125 -3.576875 1.72 0.01375 0.52625 -2.918125 -3.3175 -3.985 -1.24375 -1.76625 -0.49125 -1.851875 -4.503125 -3.21625 -1.850625 -0.25125 -3.950625 -2.114375 -3.244375 1.896875 -0.061875 -1.826875 -2.533125 -2.106875 -1.28125 -2.07875 -2.11125 -1.09625 -2.76875 0.2675 0.175 -2.65625 -1.108125 0.10125 -1.203125 -5.519375 -0.838125 -2.60125 -1.83875 1.256875 0.931875 -1.71125 -4.05 -0.613125 0.391875 -1.92375 -3.499375 -4.000625 -0.229375 -3.12 -1.04625 -2.941875 -1.433125 1.676875 -2.523125 -1.42875 -0.615 1.4075 -2.3225 -0.966875 -1.653125 -2.04 -1.513125 -1.740625 -5.2275 -0.416875 -1.030625 -1.265625 1.11625 -2.590625 -0.001875 -2.046875 -0.925625 -1.51625 0.195 -1.69 0.490625 -1.5675 -2.088125 -5.0825 -1.044375 -0.775 -0.805625 -1.87 -0.375 -1.375625 -1.785 -4.79375 -2.285625 -1.228125 1.434375 3.00625 3.080625 -5.895 0.449375 1.100625 0.15 -0.411875 4.218125 -0.309375 -1.8875 -1.7875 -2.5175 -2.83875 0.8125 -2.97375 -0.0775 -0.02625 -3.871875 0.328125 -3.440625 2.07625 -0.04375 -5.12625 -1.183125 -2.00875 -2.72 -1.378125 -1.2825 -3.141875 -3.23375 -0.88125 -0.539375 -1.26875 -0.649375 0.485 -2.998125 -1.218125 -1.606875 0.719375 1.199375 -3.016875 -3.416875 -1.740625 -3.243125 -4.08625 -0.338125 -1.865 -0.725625 -1.375625 -1.10875 -0.73375 -0.940625 -0.721875 -1.69625 -2.574375 0.86 -5.02375 0.93375 0.108125 -1.50625 -0.266875 -1.146875 -4.54 3.03625 -0.880625 -1.83875 -3.135625 -0.544375 0.720625 0.38875 -0.7825 -1.886875 0.59125 -2.549375 -5.2275 1.97 -0.72875 -0.341875 2.636875 0.710625 -1.50875 -0.77375 0.97 -2.616875 -0.38875 -0.67375 -0.164375 -1.9925 -0.918125 0.53 -0.605625 0.75 -0.765 0.339375 -2.743125 2.6 -0.73625 0.9525 -0.08625 -0.4375 -1.531875 0.703125 -0.4125 -1.526875 0.1525 -1.093125 -2.43 -0.255 -0.61 0.745625 0.606875 -0.89125 2.265625 0.553125 -1.933125 -0.233125 -3.976875 -0.605 -1.20625 -2.263125 2.505 1.794375 2.13 0.210625 -0.48 -2.29 0.05875 0.35875 -0.999375 -1.2575 -0.543125 -0.680625 -2.014375 -2.336875 0.54875 -0.335625 -0.2 -1.15 1.430625 1.295 0.67 3.05 -3.37125 -0.863125 -1.30625 -1.9175 -1.615625 0.490625 3.39875 -3.135625 -2.23 1.576875 0 -0.8675 1.770625 -2.55875 -2.224375 -1.035 -1.650625 -2.73875 -0.635625 -0.02375 -3.491875 1.296875 0.26125 -2.28875 -2.864375 -0.80625 1.8475 -2.345625 0.229375 1.144375 0.18625 -1.1475 -1.134375 -0.0225 0.54125 -0.334375 2.233125 0.805625 0.54125 -0.90875 -1.418125 -1.889375 1.066875 -1.950625 4.20125 -0.81 0.06125 -2.52875 -0.348125 -2.074375 2.985625 1.859375 -3.095 -0.5 0.515625 -1.954375 2.114375 1.116875 -0.24875 -1.539375 -1.085 -0.7425 -2.1375 1.86 -0.303125 -1.515 -1.99125 1.664375 2.355 -0.17375 -3.20625 1.45125 -0.62875 -0.96875 -1.7025 0.5475 -1.303125 -1.078125 -0.998125 -3.455625 -0.499375 0.883125 3.690625 1.03125 -1.0025 2.48875 -2.10875 -1.0025 -0.044375 -1.22625 2.3475 -0.3175 -1.030625 -1.02875 -1.61625 2.635625 -0.57625 -0.4275 1.71375 -0.95625 -1.84125 -1.309375 0.749375 -0.793125 2.37 -2.674375 -0.40875 -2.0275 0.545 1.39875 -0.19375 -3.4675 -1.2125 -0.2975 -3.216875 3.915 0.15875 1.1075 -0.12375 2.1825 0.1 0.343125 1.308125 0.029375 1.925625 -1.10625 3.1075 -1.629375 -1.141875 -1.129375 0.466875 -1.100625 -0.309375 0.4575 -3.8625 -1.52625 -2.604375 0.20125 -2.92125 -1.099375 -2.4075 0.7325 0.219375 1.266875 1.814375 -0.940625 0.458125 1.73625 -0.080625 -3.595625 3.42375 -0.205625 2.64875 -1.311875 -1.95875 2.654375 -0.4525 0.045 1.085625 0.43625 -1.105625 0.74375 -0.828125 2.48875 1.4775 1.98 1.569375 -1.429375 1.68125 -1.955 -1.855625 3.095625 4.915 -2.885625 -0.7375 -2.243125 1.33625 0.28 1.463125 -0.2875 -0.150625 -3.08875 -0.969375 2.884375 -2.001875 -1.73 -1.56875 -1.831875 0.255 1.33625 -0.151875 0.27875 0.14375 -2.685625 -3.63875 0.90875 1.536875 -1.29625 -1.30875 1.813125 -0.331875 -0.7925 0.05 2.155625 -3.224375 3.6475 -0.0575 -2.3225 -1.249375 -0.2575 1.579375 1.368125 -1.79625 0.165 -0.0425 -1.795625 -0.21625 3.385 -0.03625 -2.0425 -1.69375 1.10875 2.2025 -0.765625 -2.586875 1.96 -2.21875 -0.685 0.74375 1.26 1.310625 -0.645625 -1.646875 -0.67625 0.3475 1.36 0.9275 -1.969375 -2.835 0.813125 0.32375 -0.735625 2.515625 -1.736875 -0.314375 -0.58 1.5325 -1.65 -5.524375 -0.48875 0.695 1.140625 1.4725 0.020625 0.075625 0.29 -1.093125 -0.320625 -2.699375 -2.78625 -0.46625 1.006875 0.845 0.146875 1.049375 1.76625 0.880625 2.925 -0.38625 -3.798125 0.151875 3.785 0.178125 0.23625 -1.769375 -0.643125 -0.11 -0.8925 -3.77 0.66875 -0.2925 3.020625 1.84375 0.27 -0.425625 -1.868125 -2.306875 -0.8125 0.08 -0.268125 -1.27625 -0.375 -3.694375 -1.5825 1.535 1.124375 -0.946875 -2.05625 0.993125 0.486875 1.583125 0.354375 0.048125 -1.816875 -3.370625 3.05375 -0.001875 -0.19625 0.028125 -2.0825 -2.076875 0.528125 0.478125 -2.9025 1.590625 -0.8325 1.865 -1.3125 -1.255 -0.2125 -2.518125 -2.458125 -0.44125 0.924375 -2.4775 -0.793125 1.496875 2.378125 -3.41375 1.541875 -1.484375 -0.001875 1.33125 -2.26 -0.1325 6.695 0.63875 0.049375 2.145625 -2.195 1.6575 -1.573125 2.683125 0.47875 -1.069375 1.3575 1.61125 1.021875 1.589375 -1.81625 0.538125 0.96875 0.304375 -0.749375 1.300625 1.20625 1.030625 0.214375 1.061875 -1.564375 0.915625 -1.19625 0.115 1.7475 -0.913125 1.05375 -1.21375 1.435 0.14 -0.3 -0.5125 0.195 2.139375 -1.39 -1.480625 1.45375 1.019375 1.01875 0.285 -1.0325 -0.929375 0.105 0.901875 -1.185 1.1 -0.2525 1.203125 1.230625 2.0675 2.403125 -1.81125 1.055625 1.191875 1.031875 0.694375 2.6125 1.05 -5.0275 1.02625 1.36875 -2.0275 -0.338125 1.385625 -1.8375 -1.09625 0.371875 -1.754375 -0.13625 -0.8825 -1.161875 1.785 0.72 -0.48625 -0.9775 -0.379375 3.6 -1.256875 -2.194375 0.704375 1.57125 0.210625 1.885625 0.069375 3.215625 1.05625 1.251875 -1.589375 4.25375 1.32375 -1.77 1.07 1.08875 1.72875 -5.02375 -0.604375 -0.5675 -0.3225 -0.39375 1.205 0.29375 -1.715625 -1.279375 -5.169375 -1.553125 0.4175 0.990625 -0.550625 2.401875 -1.0825 -1.806875 0.033125 2.725 -0.9975 2.340625 1.169375 1.655625 3.60375 1.6675 -0.70875 -0.753125 -2.56125 1.750625 -0.786875 -3.018125 -0.811875 -3.708125 -0.855625 0.835625 1.55375 0.4575 0.441875 -1.64375 -0.59375 1.225625 -0.93875 1.59625 -2.90625 -1.399375 -1.68625 -1.169375 2.365 -3.03625 -1.390625 -0.70375 2.386875 0.155 -1.44625 -0.95 -2.374375 -0.805625 -1.00625 1.105625 1.691875 -1.789375 -1.73875 1.345 -0.00875 0.125 0.589375 1.27125 -2.24 -3.934375 1.265 1.576875 3.58375 -2.654375 -0.550625 -1.090625 0.34125 -0.705625 0.1075 2.425 1.358125 -0.249375 -1.729375 0.920625 -0.650625 0.0225 0.69 -1.82625 -0.19125 1.305 0.53 -1.398125 -0.028125 -0.43375 -0.8125 -0.455625 -0.8025 -1.2975 3.5475 1.35375 2.190625 -2.16875 -0.73125 -0.69625 -2.7925 0.0725 -3.386875 -0.08375 1.039375 0.070625 -1.12625 -1.191875 0.3 -0.404375 1.708125 1.159375 0.72375 1.003125 3.014375 -3.3375 -3.78625 1.169375 -1.98875 1.501875 2.018125 -1.691875 -0.2275 -1.080625 0.9325 1.41875 0.82875 1.030625 -0.44375 2.02 -1.540625 -0.839375 -0.5325 -0.99875 0.085 -2.36125 1.158125 0.775 -0.11625 1.52625 -1.026875 -0.8675 0.47625 0.285 1.08875 -0.186875 -1.839375 -2.77875 -1.674375 -3.193125 -0.6625 -0.340625 -2.461875 -3.388125 -3.805625 0.34125 -3.7875 2.673125 -0.48375 -3.06125 -0.3825 -0.245 1.481875 2.828125 -0.94875 0.4075 0.175 2.110625 -1.400625 -0.944375 1.293125 1.486875 -1.7225 -1.53375 -0.584375 -1.74125 -3.395 0.839375 2.035 -2.1825 -1.5975 -3.17875 0.833125 -0.639375 3.879375 -1.02 3.27125 -0.283125 -0.583125 1.26375 -0.565625 -2.259375 0.02375 -3.439375 0.11625 -0.17 2.44125 -1.39125 -1.948125 -0.584375 1.589375 2.544375 0.881875 1.275 -1.414375 1.76 0.27125 -1.370625 0.304375 5.7075 -0.198125 -0.38875 1.290625 0.190625 0.443125 -1.188125 1.82125 -0.560625 0.254375 -2.560625 -0.729375 0.2025 -1.614375 1.639375 -0.58375 1.374375 1.62625 0.101875 -0.336875 -2.135625 -2.214375 -1.6125 2.281875 0.954375 3.820625 -3.700625 -1.2325 -1.235 1.091875 1.284375 -0.94 -1.3975 0.119375 -0.1275 -2.300625 2.255 1.73 -1.070625 0.319375 -1.17 -0.478125 -1.140625 0.085 0.774375 0.12125 -2.646875 4.64625 0.255625 -2.49375 1.979375 -0.861875 -0.413125 -0.1975 -0.383125 0.601875 -0.109375 1.919375 1.0375 0.011875 1.0175 -2.43375 0.28375 0.946875 0.27375 2.026875 2.764375 -1.335 -1.575625 -1.930625 -1.440625 3.545625 0.196875 2.916875 -1.121875 -0.473125 -0.64125 -1.5775 -2.52625 1.51875 -3.118125 2.215625 -2.31375 0.88 -0.360625 -1.564375 -0.46625 -1.431875 -1.158125 -2.738125 0.958125 0.79 -0.873125 -2.595 2.190625 2.400625 0.663125 -2.23 -1.93125 1.02875 0.1 -1.01125 -0.646875 0.798125 -2.0975 -2.1625 0.041875 0.63875 2.7975 0.0825 0.189375 -1.57375 1.124375 -3.014375 1.011875 0.24375 -0.413125 -2.44875 -1.951875 -0.450625 1.85375 1.6 2.604375 -1.520625 -0.425 0.20875 -1.8225 0.11 -0.05625 1.429375 0.451875 1.74375 -1.331875 1.06375 0.486875 0.39125 -0.795 -3.216875 -1.16125 0.49625 0.099375 -3.178125 0.2525 -1.490625 0.36375 -0.735625 0.746875 2.14875 -2.4225 -0.42625 -0.316875 -1.9525 1.353125 2.249375 0.16875 -3.66125 1.71125 -1.208125 2.288125 1.46 0.651875 1.359375 0.708125 -2.01125 2.2425 2.645625 2.574375 -0.00625 -0.59375 1.66125 1.3875 -0.1725 1.03375 0.620625 0.996875 0.756875 -1.936875 -0.4775 1.715625 -0.205 0.608125 2.370625 -1.234375 -0.869375 1.59625 -0.1775 -1.333125 0.8825 -0.96375 0.146875 0.1475 -0.56125 1.2975 -1.14625 0.561875 -1.02125 1.770625 1.305 -0.54125 1.594375 -0.004375 -1.31625 -1.57375 1.34 2.984375 -0.98375 -1.224375 -4.404375 -1.535625 1.2375 0.38125 -0.353125 0.58 -1.06875 5.579375 -0.72875 0.070625 1.149375 -1.261875 -2.4 0.99625 1.438125 1.35625 1.72125 -1.885625 -3.078125 -2.076875 0.9725 1.29375 -2.1525 2.758125 2.639375 -3.71375 -0.926875 1.77125 0.56875 3.76625 -0.2925 2.91375 0.13375 -0.29625 -2.085 0.709375 -0.01625 -0.253125 2.590625 0.950625 1.91125 0.455625 -1.326875 -0.196875 -0.255625 0.675 -0.9125 -0.015625 0.695 0.048125 0.36 -2.295625 1.623125 2.32 -0.919375 4.830625 -1.0075 -4.464375 0.40625 -6.1925 1.60875 1.69625 0.35625 0.344375 1.7825 -2.261875 -1.594375 -2.016875 1.74375 1.181875 -2.426875 0.74 -3.58625 0.095625 -0.96875 0.64875 2.2875 -0.158125 -1.75375 0.05 -0.175625 -2.16625 -0.795625 0.81875 -2.195 0.443125 1.93 0.4325 3.39875 0.63875 -0.1125 0.4075 0.13375 -1.1525 2.914375 1.3525 -0.256875 -1.701875 2.260625 4.20125 2.350625 1.365625 -3.1875 -0.841875 -3.786875 1.45875 1.163125 -2.585 -1.2475 0.69375 0.05625 -1.656875 1.805 -2.511875 -1.84375 2.78875 -1.6675 -0.39 -0.1525 -3.269375 0.319375 -0.216875 0.015 0.198125 0.929375 3.09375 -0.76625 -0.786875 0.829375 1.07375 -0.685625 0.8325 2.575625 -0.358125 -0.9875 -0.0075 0.16375 -0.830625 -2.37625 -0.296875 1.53125 -0.145 1.273125 2.529375 -1.09 -1.0775 1.31875 -1.89 1.17 1.946875 0.791875 -0.535 0.50125 1.386875 1.084375 0.30875 1.543125 -0.835 -1.000625 -2.421875 -0.2575 0.376875 -2.763125 -1.9925 1.99375 -0.991875 1.375 3.003125 -1.469375 -0.67875 -0.909375 -0.80375 -0.29875 1.170625 0.266875 1.49375 0.6875 1.341875 1.036875 -1.949375 -0.5875 0.28375 -0.465625 -2.329375 -0.39125 0.21625 diff --git a/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_72ms_ref.hrd b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_72ms_ref.hrd new file mode 100644 index 0000000..53bd5da --- /dev/null +++ b/example_data/bgr/HeliosSeries/Gna004_15_20C_orig_long_T1_72ms_ref.hrd @@ -0,0 +1,3 @@ +26 0.0002 1500 465000 16 0 50 0 72 0 0 0 0 3 0 0 0 0 0 0 0 0 0 50 0.8 100 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 1676035238 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +-0.050625 -0.015 -0.003125 -0.01875 -0.088125 -0.00375 -0.029375 -0.034375 -0.026875 -0.01 -0.023125 -0.01375 0.003125 0.025 -0.016875 0.00375 0 0.008125 0.024375 0 -0.040625 -0.0175 -0.02625 0.008125 -0.011875 -0.04625 -0.03875 0.021875 0.021875 -0.00625 0.06375 0.023125 0.035625 0.005625 0.051875 -0.01125 0.03 0.0525 0.005 0.058125 0.01875 -0.04125 0.02875 0.009375 -0.013125 -0.04125 0.01 -0.045625 -0.018125 -0.0375 0.02875 0.051875 0.05 0.0175 0.041875 -0.005625 0.041875 0.00375 0.004375 0.014375 -0.05875 -0.030625 -0.01375 -0.0375 -0.033125 -0.021875 0.01375 -0.0125 0.004375 0.026875 -0.01375 0.02625 0.051875 0.0275 0.035625 0.008125 0.04125 0.055625 0.02125 0.03875 0.029375 0.0375 0.013125 -0.036875 -0.008125 -0.025625 -0.044375 -0.0325 -0.01125 0.020625 -0.078125 -0.02125 0.0075 -0.049375 0.005625 0.026875 -0.00125 -0.006875 0.030625 0.038125 -0.013125 -0.04125 0.035 -0.000625 -0.026875 0.01375 -0.035 -0.0275 -0.024375 -0.01375 -0.03875 0.01875 0.021875 0.015625 0.049375 -0.045 0.0575 0.0475 0.058125 0.05875 0.0125 0.0025 -0.0325 -0.015625 0.044375 0.005 0.006875 -0.008125 0.01125 0.04625 0.005625 0.005 -0.00375 0.050625 -0.0225 -0.015625 0.044375 -0.003125 -0.00125 -0.013125 -0.04625 0.04375 0.0025 -0.08 -0.004375 -0.07125 -0.0625 -0.03375 -0.01125 -0.05875 0.01125 -0.034375 0.031875 0.028125 -0.018125 0.02375 -0.00375 0.04375 0.063125 0.050625 0.03375 0.02 0.03625 0.019375 0.0175 -0.02 0.02375 -0.021875 -0.0325 -0.026875 -0.020625 -0.0175 -0.014375 0.043125 -0.019375 0.020625 0.00375 0.04 0.006875 0.025625 -0.01 -0.03125 -0.00375 -0.0425 -0.01875 0.009375 -0.0275 -0.0525 -0.040625 -0.050625 -0.025 -0.065625 -0.031875 -0.055 0.01125 0.0475 0.021875 0.008125 0.054375 -0.006875 0.033125 0.0475 0.039375 0.04625 0.0125 0.02375 0.010625 -0.00125 0.004375 -0.00125 -0.05625 0.01375 -0.035 -0.020625 -0.01125 0.006875 -0.044375 -0.005625 0.018125 0.01125 0.009375 0.025625 0.03625 0.013125 -0.0225 -0.00875 -0.006875 -0.01875 -0.04125 -0.014375 0.000625 -0.014375 -0.01875 -0.02 0.00875 0.006875 0.00375 0.0175 0.020625 0.075625 0.000625 0.0375 0.0225 0.056875 0.04125 0.019375 -0.02375 -0.0025 0.02125 0.005625 0.000625 -0.0575 -0.025 -0.01625 0.001875 -0.01125 -0.009375 -0.019375 -0.02375 0.0125 0.0025 -0.008125 -0.016875 0.03375 0.028125 -0.015 0.016875 -0.01 -0.01125 -0.02125 -0.02 -0.045625 -0.04125 0.029375 0.025 -0.00125 0.04375 0.01375 0.00125 -0.0025 0.015 0.06375 0.02875 0.034375 0.001875 0.029375 0.04625 0.00375 0.05625 0.033125 0.01375 -0.045 -0.035625 0.020625 -0.015 -0.016875 -0.025 0.019375 0.0125 -0.02375 0.03 0.015 -0.019375 -0.011875 0.005 -0.0025 -0.01625 0 -0.06 -0.035625 -0.02375 0.02625 -0.025625 -0.02125 0.003125 -0.059375 0.00625 -0.025 0.039375 0.01375 0.054375 -0.005 0.02875 0.03 0.051875 0.02375 0.016875 0.0475 0.025 -0.001875 0.014375 0.01375 -0.00625 -0.01875 0.009375 -0.02125 -0.024375 -0.01 -0.00375 -0.0075 -0.01125 -0.05 -0.01125 0.0175 0.01125 -0.005 0.08375 0.018125 -0.058125 0.000625 -0.021875 -0.034375 -0.03625 -0.03125 -0.03625 -0.01375 -0.039375 0.006875 -0.041875 -0.07125 -0.02625 -0.0425 0.018125 -0.010625 0.015 0.023125 -0.003125 0.021875 0.004375 0.024375 0.033125 0.005625 -0.028125 -0.014375 0.000625 0.015 -0.009375 0.013125 0.005 0.0075 -0.028125 -0.015625 0.00625 0.0225 0.04375 -0.020625 0.051875 0.025625 -0.030625 -0.009375 0.018125 0.0075 -0.028125 -0.04125 -0.005 -0.039375 -0.055 -0.0125 0.05625 -0.016875 0.01875 -0.005 -0.0375 0.079375 0.0425 0.020625 -0.00375 0.04375 0.029375 0.048125 0.014375 0.025625 -0.0225 0.005 -0.01375 0 -0.010625 -0.020625 -0.065625 -0.024375 0.01125 -0.020625 0.0175 -0.02375 -0.044375 -0.00375 0.024375 0.011875 0.034375 -0.031875 -0.0325 -0.011875 -0.0125 -0.0225 -0.02875 -0.01 -0.0275 -0.03125 -0.05 -0.0425 -0.028125 0.006875 0.005 -0.03875 0.0175 0.051875 0.080625 0.0775 0.049375 0.0175 0.040625 0.044375 0.028125 0.0525 0.058125 0.024375 0.0325 0.045625 -0.030625 0.00875 -0.05625 -0.003125 -0.03375 -0.011875 0.015625 -0.000625 0.02375 -0.01625 -0.016875 0.015625 0.005625 0.03125 -0.009375 0.090625 0.01875 -0.0275 -0.035625 0.021875 -0.006875 -0.055 -0.08 0.005 -0.0425 0.003125 -0.014375 0.00375 -0.005 0.04 0.030625 0.07875 0.03625 0.059375 0.01875 0.0325 -0.00875 0.020625 0.01625 0.019375 -0.005 0.030625 -0.068125 -0.0575 -0.024375 -0.003125 -0.019375 -0.05625 -0.04375 -0.000625 0.0025 -0.0025 0.059375 0.060625 0.023125 -0.03 0.03375 -0.01 -0.04625 -0.045625 0.02625 0.02875 -0.065 -0.04 -0.055 0.014375 0.019375 -0.019375 0.06 0.066875 0.013125 0.054375 0.018125 0.035 0.02375 0.000625 0.036875 0.030625 0.023125 -0.00125 0.036875 0.005 0.0725 -0.054375 -0.023125 -0.0525 -0.00875 -0.053125 -0.0225 0.01125 0.015625 0.025625 -0.02375 -0.00125 0.01125 0.001875 0.004375 0.034375 -0.003125 -0.054375 0.045 -0.035 -0.01125 -0.06 -0.088125 -0.0425 -0.034375 -0.06625 0.02 -0.00375 -0.00375 0.04125 0.055 0.056875 0.00375 0.0375 0.095625 0.039375 -0.014375 0.0075 -0.01 -0.0025 0.03375 -0.01375 -0.028125 -0.031875 -0.03625 0.004375 -0.028125 -0.0225 -0.00375 -0.0125 0.05125 0.005 -0.01625 0.00625 0.006875 0.019375 0.005625 -0.01625 -0.0225 -0.033125 0.028125 -0.03625 -0.0525 -0.015625 -0.009375 -0.03625 -0.028125 -0.005 0.015625 0.02 -0.004375 0.00125 0.030625 0.025 0.024375 0.056875 0.03625 -0.001875 0.023125 0.009375 0.04625 0.040625 0.023125 -0.000625 -0.03 -0.00375 -0.049375 -0.0075 0.02875 -0.083125 -0.02 0.060625 -0.001875 -0.013125 -0.0225 -0.00875 -0.0125 0.015 -0.00875 -0.044375 -0.011875 -0.009375 -0.06375 -0.05375 -0.0625 -0.028125 -0.02125 0.028125 -0.0225 0.0125 0.029375 -0.00125 0.09875 0.0175 0.01625 0.015625 0.051875 0.05 0.045 0.02125 0.0375 0.035 -0.001875 -0.005625 0.01875 -0.045625 -0.004375 -0.065 0 -0.069375 -0.010625 -0.0675 0.010625 0.02875 0.00125 -0.029375 0 -0.0275 -0.050625 -0.003125 -0.01125 -0.015 -0.034375 -0.039375 -0.016875 -0.030625 -0.005625 -0.045625 -0.036875 -0.043125 -0.015625 0.01625 -0.00875 0.035 0.011875 0.028125 0.026875 -0.021875 0.058125 0.025 0.024375 0.023125 0.006875 0.023125 -0.006875 0.005 0.025 -0.030625 -0.005 -0.035625 -0.0275 -0.034375 -0.038125 0.005625 -0.003125 0.015 0.00125 0.01625 0.0075 -0.0025 -0.0425 -0.019375 -0.018125 -0.035 -0.000625 -0.0375 -0.000625 -0.020625 0.006875 -0.048125 -0.00875 0.014375 0.024375 0.026875 -0.001875 0.02625 0.00875 -0.00375 0.053125 0.02 0.0475 -0.018125 0.036875 0.045 -0.028125 -0.026875 0.0125 0.029375 0.0125 -0.02375 -0.005625 -0.01375 -0.001875 -0.05125 -0.023125 0.009375 -0.033125 0.03625 0.033125 -0.01875 0.019375 0.028125 -0.035 0.020625 -0.0275 -0.009375 -0.0625 -0.02625 -0.008125 -0.0025 -0.033125 -0.033125 -0.01 -0.009375 -0.021875 -0.0425 -0.00875 -0.0075 0.000625 0.06 0.06375 0.01 0.01625 0.0175 0.063125 0.0175 0.005 -0.021875 -0.02375 -0.0125 -0.02875 -0.024375 -0.03 -0.01375 -0.00875 0.004375 -0.008125 -0.02625 -0.038125 0.02125 -0.005625 -0.020625 0.04375 -0.00375 -0.00375 -0.02875 -0.039375 -0.036875 -0.01875 -0.06 -0.0475 -0.03875 -0.07 -0.013125 -0.014375 -0.003125 -0.03 0.015625 0.0025 0.024375 0.019375 0.0225 0.03 0.028125 -0.0125 0.036875 0.0525 0.0525 -0.01125 0.025625 0.04375 0.015 0.01625 0.021875 -0.02125 0.030625 -0.028125 -0.009375 -0.0175 -0.003125 -0.0375 -0.03875 0.010625 0.001875 0.01625 0.02 0.005 -0.0025 -0.023125 0.03625 -0.0225 -0.016875 -0.011875 -0.063125 -0.06625 0.01125 -0.0075 0.016875 0.011875 0.00375 0.045 0.034375 0.0025 0.05375 -0.00125 0.03 0.045625 0.02 0.025625 0.000625 -0.0175 0.03125 -0.0025 -0.00625 -0.00125 -0.005625 -0.02 -0.025625 0.024375 -0.044375 -0.010625 0.0125 -0.006875 -0.01125 -0.015625 0.05375 -0.0025 -0.02375 -0.005 0.014375 -0.000625 0.00875 0.000625 -0.036875 -0.00125 -0.03625 -0.021875 0.03875 0.045625 0.023125 -0.009375 0.00125 -0.010625 0.02875 0.0575 0.023125 0.060625 0.066875 0.01125 0.03 0.031875 0.00375 0.01625 -0.00375 0.028125 -0.0475 -0.059375 -0.01375 -0.003125 -0.0025 -0.009375 -0.04 0 0.010625 -0.015 -0.03625 0.01625 0.01375 0.03125 -0.048125 -0.02625 0.006875 -0.031875 0.00375 -0.05 -0.001875 0.001875 -0.0025 -0.049375 0.00875 0.031875 -0.045625 -0.04125 -0.014375 0.02875 0.07125 0.016875 0.018125 0.023125 0.055625 0.00125 0.025625 0.005625 -0.03875 -0.008125 0.00875 -0.011875 -0.064375 0.011875 0.000625 0.028125 0.0175 0.023125 -0.01 0.02125 0.03125 -0.009375 -0.03125 -0.006875 -0.00625 0.039375 -0.053125 0.011875 0.024375 -0.028125 -0.009375 -0.01875 -0.0675 -0.006875 -0.015 -0.018125 -0.02 0.015625 0.025 0.0425 0.039375 0.0225 0.07125 0.038125 0.10375 0.054375 0.051875 -0.05 0 0.018125 0.02875 0.065 0.000625 -0.020625 -0.000625 -0.01 -0.019375 -0.03625 0.014375 0.03125 -0.03125 -0.01125 -0.02125 0.02375 -0.05125 0.009375 0.02375 0.018125 0.0325 -0.03625 -0.0125 -0.04625 -0.0175 -0.01125 -0.028125 -0.044375 -0.010625 0.011875 0.01125 0.025 0.030625 0.015625 0.049375 -0.016875 0.040625 0.016875 0.06625 0.030625 0.025625 0.01875 0.01875 -0.02875 0.014375 0.02 0.020625 -0.0125 -0.008125 -0.05375 -0.01375 -0.0325 0.00125 0.009375 0 -0.008125 -0.016875 0.02875 -0.061875 0.00625 -0.013125 -0.003125 -0.019375 -0.056875 -0.0375 -0.010625 -0.04875 -0.0425 -0.0275 -0.029375 -0.018125 0.01375 -0.001875 0.02125 0.028125 0.026875 0.021875 -0.01 0.03625 0.046875 0.0425 0.024375 0.02125 0.04625 -0.005 -0.001875 0.016875 -0.0075 -0.04625 -0.0375 -0.07125 0.019375 -0.03625 -0.01875 -0.003125 0.024375 -0.020625 0.00625 0.02 -0.0125 -0.01 -0.034375 -0.013125 -0.05125 0.004375 -0.006875 -0.029375 -0.00625 -0.01 -0.000625 -0.033125 -0.02875 -0.016875 -0.0075 -0.033125 0.014375 0.01125 -0.011875 0.0225 0.093125 0.001875 0.0475 0.009375 0.039375 0.083125 -0.01125 0.01625 -0.00875 0.0325 0.019375 -0.04125 -0.0175 -0.05 0.006875 -0.001875 0.005 -0.019375 0.0075 0.048125 0.001875 0.044375 -0.010625 0.0175 0.006875 -0.02 -0.02375 -0.043125 -0.03875 0.013125 -0.07 -0.013125 -0.028125 -0.064375 -0.036875 -0.009375 -0.001875 -0.025625 0.035 0.040625 -0.019375 0.006875 0.040625 0.023125 -0.013125 -0.004375 0.0475 0.006875 -0.03125 0.01875 -0.038125 -0.03 -0.006875 -0.020625 -0.063125 -0.00625 0.02875 -0.014375 0.005 -0.034375 0.020625 0.00625 -0.003125 0.006875 0.02875 0.034375 0.0075 0.0025 -0.001875 -0.013125 -0.000625 -0.063125 -0.061875 -0.06 -0.01625 0.02125 0.003125 -0.0325 -0.00625 0.04375 -0.015 0.010625 0.018125 0.03125 0.00125 0.0175 0.03125 0.029375 0.0125 0.040625 -0.034375 0.008125 -0.05125 -0.078125 -0.07875 -0.03 -0.013125 -0.005 -0.020625 0.03875 0.018125 -0.028125 0.01375 0.00125 -0.054375 -0.01 0.036875 -0.019375 0.023125 -0.00375 -0.074375 -0.044375 -0.035 -0.035 -0.050625 -0.060625 -0.048125 0.005 0.013125 0.02125 0.0075 0.0075 0.051875 0.021875 0.028125 0.061875 -0.003125 0.016875 0.028125 0.059375 -0.00125 -0.019375 0.035 -0.031875 -0.0175 0.036875 -0.05125 -0.00125 -0.0425 0.003125 0.0375 0.0675 0.0475 0.02375 0.03875 0.026875 -0.025625 0.013125 -0.008125 -0.02375 -0.021875 -0.001875 0.018125 0.006875 0.0125 -0.038125 -0.03 -0.025 -0.0225 -0.024375 0.010625 -0.03125 0.031875 -0.055625 0.028125 0.046875 0.01125 0.021875 0.041875 0.01 0.029375 -0.0025 0.015 0.0475 0.00375 -0.016875 0.03125 -0.02125 -0.0225 -0.035625 -0.00375 -0.010625 -0.00125 -0.0225 0.03625 -0.025 -0.034375 -0.006875 -0.029375 -0.0625 -0.036875 0.0125 0.033125 -0.01 0.001875 -0.0375 -0.025625 -0.045625 -0.010625 -0.045625 -0.023125 -0.029375 0 -0.001875 0.016875 0.025625 0.035 0.015 0.015 -0.016875 0.073125 0.04875 -0.044375 -0.020625 -0.004375 0.033125 -0.039375 -0.034375 -0.020625 -0.055625 -0.0225 -0.0425 -0.020625 -0.03375 -0.03875 -0.024375 0.010625 0.008125 -0.01875 -0.016875 -0.0425 0.030625 0.040625 0.013125 -0.004375 0.01875 0.009375 -0.02375 0.000625 -0.069375 0.0225 0.045 -0.029375 0.004375 0.015625 -0.00625 -0.025 0.009375 0.054375 0.074375 0.04875 0.015 0.003125 0.01375 -0.00125 0.025 0.038125 0.006875 -0.0325 -0.020625 -0.089375 -0.08 0.020625 0.0275 -0.000625 -0.005 -0.021875 0.019375 0.01625 0.0425 -0.001875 0.06875 0.063125 -0.04375 -0.015625 -0.013125 -0.0225 0.009375 -0.02375 -0.0225 -0.024375 -0.0525 0.00875 -0.03625 -0.0175 -0.020625 0.031875 0.021875 -0.003125 0.036875 -0.0175 0.033125 0.05125 0.084375 0.02625 0.0325 0.000625 0.013125 0.003125 0.0075 0.00125 -0.025 -0.046875 -0.05125 -0.033125 0.000625 0.010625 -0.005 -0.005625 0.006875 -0.010625 0.031875 0.050625 0.0375 0.00375 0.0125 -0.015625 -0.001875 -0.03625 -0.0325 -0.008125 -0.04625 -0.005625 0.013125 -0.02125 0.0225 -0.00125 0.040625 0.01 -0.0025 0.035 -0.009375 0.049375 0.0675 0.028125 0.016875 0.034375 0.0525 0.0025 -0.021875 -0.003125 -0.04 -0.02875 -0.0325 -0.03125 -0.00125 0.01875 0.001875 0 -0.04125 -0.03125 0.0225 0.02375 0.005625 -0.04625 -0.0125 -0.001875 0.009375 0.02625 -0.021875 -0.03375 -0.026875 0.00625 -0.018125 -0.033125 0.03125 0.023125 -0.019375 -0.021875 -0.030625 0.015625 0.00625 0.03 -0.031875 0.0725 0.04125 0.035625 0.015625 0.0075 0.004375 -0.003125 -0.011875 0.015 0.001875 -0.048125 0.006875 -0.021875 0.0225 +-0.015625 0.000625 -0.03 -0.05875 -0.074375 -0.0725 -0.04875 0.004375 -0.011875 -0.02 -0.018125 -0.01875 0.015625 -0.023125 -0.02125 0.04 -0.066875 0.03125 0.00375 -0.0125 -0.00875 0.015625 0.02 -0.05125 -0.065 -0.010625 0.02125 0.0325 0.0075 -0.035625 0.006875 -0.0025 0.02 0.041875 0.011875 0.02625 0.038125 0.08875 0.025 -0.009375 -0.01875 -0.00125 -0.015625 -0.005 0.023125 -0.02875 -0.02875 -0.04125 -0.01875 -0.03125 -0.015 0.011875 -0.026875 -0.01375 0.0275 0.025 0.01125 -0.010625 0.015625 -0.000625 -0.01 0.023125 -0.0575 0.015 -0.041875 0.005625 -0.00875 -0.048125 0.019375 -0.02875 0.02625 0.025 0.018125 -0.034375 0.00875 0.008125 0.006875 0.07 0.025625 0.008125 -0.018125 0.0175 -0.01 -0.01375 -0.0275 -0.01625 0.010625 0.03875 -0.01 -0.01125 0.00625 -0.016875 0.025625 0.000625 0.039375 0.010625 -0.005 0.014375 0.0275 0.030625 -0.03 0.015 0.000625 0.005625 0.011875 -0.015 -0.03875 0.035625 -0.013125 0.00125 -0.00125 0.02125 -0.01625 0.0025 0.031875 -0.021875 0.018125 -0.015 0.015 0.018125 0.009375 -0.010625 0.0225 0.02375 0.018125 -0.0375 0.011875 -0.0025 0.0275 -0.00625 -0.005625 -0.049375 -0.0625 -0.01875 0.015 -0.015625 -0.00875 -0.029375 -0.025625 -0.049375 -0.02125 -0.03625 -0.01 0.025625 -0.025625 -0.03125 -0.063125 -0.014375 -0.01875 -0.02 0.004375 -0.003125 -0.03625 -0.01125 0.05 0.0375 -0.013125 0.013125 0.018125 0.021875 -0.00125 0.01125 -0.050625 0.045625 0.0175 -0.02625 0.034375 -0.004375 0.006875 0.031875 0.00875 0.04375 -0.035625 -0.035 -0.014375 -0.003125 0.0075 0.024375 0.018125 -0.00625 0.04125 -0.036875 -0.000625 0.005625 -0.045 0.011875 0.008125 0.01625 0.020625 0.03375 -0.03875 -0.01 0.00125 0.015625 0.006875 -0.01625 0.025625 0.009375 0.02125 -0.004375 0.01125 -0.0025 -0.008125 0.065 -0.016875 0.081875 0.005625 0.038125 -0.01 -0.00625 -0.01 -0.01125 0.02375 0.02875 0.01625 -0.024375 0.009375 -0.018125 0.01375 -0.01875 -0.023125 -0.045 0.0025 -0.001875 0.030625 0.010625 -0.033125 0.016875 0.006875 -0.025625 -0.0475 0.04625 -0.0425 0.033125 -0.01375 -0.01125 0.045625 0.085625 0.04875 0.000625 -0.020625 0.0475 0.075 0.058125 0.0125 -0.005625 0.005 -0.014375 0.005625 -0.01375 -0.031875 0.01375 0.025625 -0.009375 -0.016875 -0.0325 0.038125 0.03125 0.048125 -0.015625 -0.02375 -0.040625 0.008125 0.000625 0.013125 0.0175 -0.003125 -0.00625 -0.055625 -0.04125 0.00625 0.01 -0.015 -0.06375 0.00375 0.003125 -0.0275 -0.03625 0.008125 0.038125 -0.015625 0.0075 0.06125 0.021875 0.009375 -0.055625 0.02 -0.00125 -0.00125 -0.000625 -0.03375 -0.031875 -0.050625 -0.004375 0.04 0.00625 -0.041875 -0.030625 -0.03125 0.023125 -0.0025 0.016875 -0.0525 -0.011875 0.0025 0.011875 0.00125 0.011875 0.01125 0.049375 -0.03625 -0.06625 0.025625 0.030625 0.011875 -0.020625 0.030625 -0.053125 0 -0.04125 0.02375 -0.008125 0.0225 -0.006875 0.015625 -0.02125 0.035 -0.00125 0.050625 -0.004375 0.028125 -0.035625 -0.0175 -0.03125 -0.006875 0.02375 -0.03 -0.014375 -0.026875 0.056875 0.018125 0.034375 -0.021875 0.038125 -0.001875 -0.00625 -0.023125 0.008125 -0.00625 0.015625 0.044375 -0.054375 0.0275 -0.011875 -0.003125 -0.010625 -0.0275 -0.0275 -0.035 -0.045625 -0.008125 0.0175 0.013125 0.01625 0.039375 0.051875 0.043125 0.028125 0.006875 0.01875 -0.01375 -0.0025 -0.01125 0.028125 -0.003125 0.039375 0.01125 -0.0275 -0.011875 -0.028125 -0.02 -0.011875 -0.040625 0.01375 -0.043125 0.01625 -0.0225 0.035 0.045625 0.014375 0.040625 0.010625 -0.014375 0.02375 0.02125 0.006875 -0.044375 0.019375 -0.015625 -0.00375 -0.033125 -0.0175 -0.005 0.029375 0.01625 -0.0075 0.01375 -0.008125 0.00875 0.015 0.03375 0.030625 0.031875 -0.0075 -0.019375 0.01 0.00875 -0.01 -0.05 -0.01125 -0.015625 -0.04 0.001875 -0.00375 -0.00625 0.00125 -0.001875 -0.02 -0.0125 -0.01625 -0.005625 0.029375 0.030625 -0.02625 -0.02875 0.00125 0.04625 -0.029375 -0.05875 -0.02625 -0.014375 -0.030625 0.0125 0.019375 -0.011875 -0.00125 -0.013125 0.01875 0.035625 0.023125 0.013125 0.02125 0.006875 -0.00625 0.0275 0.02125 0.024375 0.043125 -0.015625 -0.016875 -0.045 -0.00625 -0.005625 -0.0275 -0.015625 -0.025625 0.00125 0.01125 -0.001875 0.021875 0.021875 0.029375 0.036875 0.001875 -0.01875 0.03625 -0.01125 -0.030625 -0.0275 -0.024375 0.035625 -0.02625 -0.0175 0.0175 -0.040625 0.00875 0.02125 0.033125 0.03375 -0.013125 -0.00125 0.04375 0.011875 0.051875 -0.005 -0.0025 -0.006875 0.028125 -0.059375 -0.024375 -0.02875 -0.03375 0 -0.023125 -0.015 -0.0775 -0.030625 0.00375 0.0225 -0.026875 -0.0125 0.01875 -0.015 -0.0125 0.010625 0.02625 -0.0575 -0.004375 -0.013125 -0.005625 -0.054375 -0.01625 -0.065 -0.01625 -0.020625 -0.0125 0.006875 -0.023125 0.033125 0.0175 0.009375 0.04875 0.0075 0.053125 0.001875 0.02 0.015625 0.04 0.093125 0.015625 -0.015625 -0.02125 0.015625 0.04 -0.021875 0.00875 -0.023125 -0.045 -0.013125 0.005 0.025 -0.00625 -0.0025 0.0425 0.004375 -0.01375 0.025 0.05875 -0.04125 -0.04625 -0.036875 -0.045625 0.00125 0.00375 -0.011875 -0.0475 -0.0075 0.018125 0.034375 0.040625 0.023125 0.009375 -0.033125 0.018125 0.045 0.029375 0.030625 0.02375 0.018125 -0.015 -0.00375 0.024375 0.01 -0.000625 0.00125 -0.053125 0.0275 -0.063125 -0.0225 -0.0175 -0.006875 -0.013125 -0.000625 -0.018125 -0.01125 -0.054375 0.00625 0.029375 0.005 -0.003125 -0.043125 0.03625 -0.023125 -0.028125 -0.020625 -0.0525 -0.0075 0.019375 -0.044375 0.028125 0.04125 0.03625 0.0125 0.005 0.02 0.03625 0.04375 0.005 0.025 0.0675 0.038125 -0.030625 -0.034375 -0.00625 -0.008125 0.006875 0 0.03375 -0.02 -0.006875 -0.013125 0.008125 -0.02 0.035 0.045 0.051875 -0.02375 -0.046875 -0.011875 -0.008125 -0.021875 -0.01 -0.054375 -0.073125 -0.018125 -0.02625 -0.013125 -0.005 -0.038125 -0.02125 -0.025 -0.00875 0.00125 -0.000625 -0.001875 0.04125 -0.02375 0.02625 0.004375 0.03 0.060625 0.021875 0.004375 -0.00375 0.035625 -0.028125 -0.029375 -0.038125 -0.021875 -0.023125 -0.039375 -0.034375 -0.006875 0.08875 -0.0175 -0.005625 0.005 -0.00875 -0.040625 0.010625 0.00625 -0.03875 0.03125 -0.005 -0.009375 0.016875 -0.005625 0.00875 -0.05 0.003125 0.055625 0.021875 0.0025 -0.028125 0.056875 0.03875 0.03125 -0.01125 0.040625 0.01375 0.000625 0.049375 0.05125 0.011875 0.00875 -0.005625 0.008125 -0.011875 -0.01625 -0.011875 -0.019375 -0.004375 -0.071875 -0.06625 0.00375 -0.016875 0.03875 -0.013125 -0.003125 0.0025 0.015625 0.03375 0.018125 0.01 -0.05 -0.02625 0.024375 0.00125 -0.035625 -0.035625 -0.023125 -0.02 -0.021875 -0.046875 -0.020625 0.055 -0.008125 0.00375 -0.0275 -0.039375 0.059375 0.059375 0.038125 0.035 0.000625 -0.020625 0.011875 -0.004375 0.01 -0.034375 -0.02375 -0.02125 -0.054375 -0.0025 -0.020625 -0.0025 -0.0225 0.013125 -0.015 0.016875 -0.033125 -0.005 -0.01125 0.00875 -0.01375 0.00125 -0.01875 -0.025 0.0375 0.01625 -0.025 -0.024375 0.018125 -0.03 -0.0125 -0.041875 0.051875 -0.045 0.06625 0.006875 -0.015 0.0375 -0.003125 0 0.013125 0.005 -0.025 0.014375 -0.025 -0.024375 -0.011875 0.01125 -0.031875 -0.05 0.001875 0.0225 -0.045 -0.02875 -0.026875 0.025 0.033125 -0.0025 0.02625 -0.006875 0.005625 -0.00125 -0.031875 -0.005625 0.005625 -0.031875 -0.04 -0.03 0.029375 -0.038125 0.0125 -0.015 0.00375 -0.003125 0.03125 0.00375 0.01375 0.018125 0.009375 0.015625 0.054375 0.06375 0.070625 0.070625 0.0475 0.04625 0.045 -0.03 0.043125 -0.00625 0.01 -0.011875 -0.035625 -0.020625 -0.006875 -0.021875 -0.020625 -0.01125 -0.0075 0.04 0.0225 0.02875 0.015 -0.01875 0.043125 -0.0225 0.064375 0.03875 -0.005 -0.001875 -0.01375 -0.005 -0.018125 -0.031875 -0.028125 -0.006875 0 0.020625 0.04875 0.030625 -0.021875 0.08375 0.011875 0.020625 0.03875 -0.009375 0.025 0.04 0.0425 0.005625 0.018125 -0.04875 0.023125 -0.074375 -0.005625 -0.02125 0.019375 0.001875 -0.024375 -0.01 0.035 0.0025 -0.028125 0.07125 -0.00125 0.044375 -0.018125 -0.03 -0.011875 -0.025625 -0.0175 -0.04625 0.004375 -0.02875 -0.005625 -0.040625 -0.02625 -0.033125 0.031875 0.009375 0.02125 0.045 0.039375 0.055625 0.0275 -0.023125 0.00875 0.023125 0.016875 -0.00125 0.030625 -0.010625 -0.0325 0.023125 -0.040625 -0.0075 -0.011875 0.02375 -0.046875 0.006875 -0.028125 0.036875 0.041875 -0.01125 -0.015625 0.01875 0.040625 -0.048125 0.015625 -0.06 -0.024375 -0.019375 -0.04 0.010625 -0.08125 -0.04 0.044375 0.01125 0.011875 0.00375 0.005 0.043125 0.019375 0.000625 0.014375 0.03125 0.008125 -0.005 0.03125 0.035 -0.0125 0.0175 -0.06 -0.043125 -0.004375 0.01875 0.004375 -0.0775 -0.015 -0.069375 -0.029375 0.035 0.049375 -0.011875 0 0.04875 -0.02 0.061875 0.00875 -0.03125 0.019375 -0.01625 -0.035625 -0.03875 0.008125 0.0275 0.005 0.01375 -0.0125 0.05625 0.0225 0.035625 0.0475 -0.006875 -0.01375 -0.006875 0.04875 0.030625 -0.011875 0.011875 -0.000625 0.036875 0 0.00125 0.00625 -0.0025 -0.0125 0.008125 -0.038125 -0.016875 0.011875 -0.005 -0.01625 0.01875 0.049375 0.02625 0.011875 0.0275 0.014375 0.008125 -0.0375 -0.02 0.025 -0.01625 -0.009375 -0.005625 -0.01 -0.005 0.0375 -0.0025 0.000625 0.02875 0.01375 0.00125 0.04375 0.02125 0.015625 0.006875 -0.03 -0.01375 0.049375 -0.02 -0.013125 0.014375 0.004375 0.006875 0.011875 0.0325 -0.034375 -0.049375 0.013125 0.01875 0.02625 -0.1 -0.024375 0.04 0.0175 0.025625 -0.0225 0.013125 0.0225 -0.06 0.006875 -0.025 -0.02375 -0.029375 -0.0325 -0.074375 -0.0075 -0.020625 0.00625 0.04 0.004375 0.0375 0.01375 0.029375 0.048125 0.034375 0.0575 0.025 -0.00875 0.06 -0.0275 0.01375 -0.015 -0.025 0.005 -0.003125 0.026875 -0.060625 -0.010625 -0.035625 0.000625 -0.003125 0.013125 0.006875 -0.0025 0.00125 -0.044375 0.018125 0.0325 0.021875 -0.0325 0.014375 0.00125 0.015 -0.01 0.02 -0.025625 0.009375 -0.006875 0.02375 -0.01 -0.0475 -0.0175 0.04 0.035625 0.050625 -0.015625 0.035 0.0925 -0.00125 0.031875 0.0325 0.05125 -0.003125 0.034375 -0.02125 0.058125 0.04125 -0.01625 0.01625 -0.0525 -0.0225 0.021875 -0.043125 -0.003125 -0.04375 0.0275 -0.045625 0.00125 0.035 -0.001875 -0.003125 -0.015625 0.01 0.031875 -0.038125 0.040625 0.00875 0.04625 0.026875 0.015625 0.003125 0.03 -0.0075 0.003125 0.0075 0.003125 0.05375 0.078125 0.035625 0.064375 0.041875 0.024375 0.015 -0.026875 -0.038125 0.05 -0.01875 -0.019375 -0.050625 -0.02125 -0.038125 -0.058125 -0.015 -0.008125 0.056875 0.028125 0.019375 -0.049375 -0.015 0.035 0.030625 0.019375 0.003125 -0.03375 -0.029375 -0.038125 0.0425 -0.068125 -0.0025 -0.054375 -0.064375 0.0075 0.015 0.011875 0.0225 0.029375 0.046875 0.035625 0.04375 0.04375 0.05375 0.015625 -0.0075 0.028125 0.03875 0.026875 0.041875 0.0025 0.02 -0.043125 -0.0175 -0.05375 -0.001875 0.029375 0.03625 -0.04625 0.009375 0.0125 0.02375 -0.01625 0.000625 -0.045625 -0.011875 0.046875 -0.0025 -0.029375 -0.0325 -0.01625 -0.03875 -0.00875 -0.035 -0.029375 0.028125 -0.025 -0.0175 0.014375 0.03 0.000625 0.03 0.03625 0.01375 0.013125 -0.005625 0.0325 0.015625 0.03625 -0.0075 -0.0075 -0.005625 0.015625 -0.004375 0.054375 -0.01625 -0.091875 0.018125 -0.05125 -0.005625 -0.014375 -0.0325 0.0275 -0.000625 -0.02625 0.01 0.004375 -0.008125 -0.048125 0.069375 0.016875 -0.029375 -0.025625 -0.043125 0.0175 -0.061875 0.016875 -0.053125 0.0025 -0.018125 -0.02625 -0.008125 -0.0325 0.044375 0.029375 0.070625 0.015 0.021875 0.028125 0.01125 0.041875 0.001875 -0.005625 -0.015 -0.000625 -0.011875 -0.005 0.02625 0.00125 -0.00125 -0.025 0.016875 -0.01875 0.00625 -0.008125 -0.01 -0.025 0.01625 0.02 0.008125 0.019375 -0.006875 -0.0525 -0.06625 -0.026875 -0.028125 -0.0225 -0.0575 0.00625 0.0325 0.0125 -0.038125 0.028125 0.03625 0.0325 -0.00375 -0.006875 0.00625 0.013125 0.071875 0.033125 -0.01875 0.014375 -0.001875 -0.03125 0.038125 0.00625 -0.014375 0.01375 -0.03 0.013125 -0.029375 0.03375 -0.01875 -0.02125 0.005 0.033125 0.043125 -0.03875 0.015 -0.011875 0.018125 -0.015625 0.0025 -0.0475 0.05125 0.021875 -0.03375 0.01375 -0.028125 -0.0025 -0.043125 -0.000625 0.03375 -0.031875 0.065625 0.0375 0.0625 0.005 0.024375 0.04125 0.04875 -0.005 -0.010625 -0.024375 0.029375 -0.025625 0.01875 0 -0.014375 0.07875 -0.001875 -0.00875 0.013125 -0.029375 0.0025 -0.045625 0.0075 -0.048125 -0.013125 -0.040625 -0.031875 0.011875 0.024375 -0.019375 -0.01375 -0.04125 -0.01125 0.00625 -0.015 0.005625 -0.016875 0.003125 -0.05125 -0.001875 0.05 -0.048125 0.00625 -0.001875 0.05625 0.02625 0.08125 0.0275 0.04625 -0.03125 0.015 0.016875 -0.06625 0.0325 -0.011875 -0.054375 -0.021875 -0.070625 0.013125 -0.049375 0.0125 0.01375 0.013125 -0.006875 0.02875 0.05 0.056875 0.0275 0.01875 -0.044375 -0.04875 0.02375 -0.029375 -0.024375 0.004375 -0.0125 -0.01625 -0.041875 -0.02 0.023125 -0.006875 0.01875 0.04 0.0025 0.053125 -0.006875 0.0325 -0.01875 -0.0025 -0.01375 -0.02625 0.023125 0.01375 -0.02375 -0.01 -0.056875 -0.065 0.01125 -0.05 0.009375 -0.034375 -0.03125 -0.0375 -0.010625 0.013125 0.00875 0.015 0.01875 -0.0075 0.024375 0.010625 -0.030625 0.000625 0.034375 0.010625 -0.065 -0.070625 0.033125 0 0.0175 -0.0275 0.0425 -0.01125 0.02375 -0.001875 0.064375 0.029375 0.00625 0.0025 0.020625 0.0575 0.0225 0.03625 0.00375 0.00625 0.03375 -0.04 -0.00375 0.0175 -0.040625 -0.015 diff --git a/example_data/bgr/MouseCPMG/CPMG/10/acqu.par b/example_data/bgr/MouseCPMG/CPMG/10/acqu.par new file mode 100644 index 0000000..e867433 --- /dev/null +++ b/example_data/bgr/MouseCPMG/CPMG/10/acqu.par @@ -0,0 +1,37 @@ +90Amplitude = -7 +180Amplitude = 0 +accumulate = "yes" +acqTime = 0.016 +alpha = 0.1 +autoPhase = "yes" +autoPhase = "yes" +b1Freq = 13.24d +bandwidth = 2e+003 +dataDirectory = "C:\Costabel.S\Desktop\NMR-Mouse Data\GnaSamples2023_orig" +dwellTime = 0.5 +echoShift = 0.7 +echoTime = 68 +experiment = "CPMG" +expName = "CPMG" +expNr = 10 +filter = "no" +filterType = "sinebellsquared" +fitType = "exp" +flatFilter = "no" +incExpNr = "yes" +normalize = "no" +nrEchoes = 2000 +nrPnts = 32 +nrScans = 8 +position = [75,377] +pulseLength = 12.5 +repTime = 16000 +rxGain = 31 +rxPhase = 3 +saveData = "true" +sumEchoes = "yes" +timeMag = "no" +usePhaseCycle = "yes" +windowSize = "small" +x_maximum = 100 +x_minimum = 0.2 diff --git a/example_data/bgr/MouseCPMG/CPMG/10/data.csv b/example_data/bgr/MouseCPMG/CPMG/10/data.csv new file mode 100644 index 0000000..9e8c5d9 --- /dev/null +++ b/example_data/bgr/MouseCPMG/CPMG/10/data.csv @@ -0,0 +1,2000 @@ +68,2.43299 +136,2.91916 +204,2.98312 +272,2.85458 +340,2.82033 +408,2.83048 +476,2.88498 +544,2.75417 +612,2.75267 +680,2.77128 +748,2.64448 +816,2.64217 +884,2.67503 +952,2.64281 +1020,2.71974 +1088,2.61314 +1156,2.69584 +1224,2.64392 +1292,2.56252 +1360,2.6019 +1428,2.49557 +1496,2.60564 +1564,2.49066 +1632,2.50032 +1700,2.49467 +1768,2.63662 +1836,2.42566 +1904,2.51141 +1972,2.42296 +2040,2.43536 +2108,2.47476 +2176,2.46701 +2244,2.38509 +2312,2.37088 +2380,2.26226 +2448,2.37981 +2516,2.42276 +2584,2.32605 +2652,2.2898 +2720,2.28642 +2788,2.33253 +2856,2.25812 +2924,2.30698 +2992,2.30589 +3060,2.30789 +3128,2.21181 +3196,2.17156 +3264,2.18016 +3332,2.25415 +3400,2.25095 +3468,2.12283 +3536,2.10472 +3604,2.05844 +3672,2.06421 +3740,2.15253 +3808,2.14311 +3876,2.10863 +3944,2.14629 +4012,2.08127 +4080,2.05169 +4148,2.04256 +4216,2.15275 +4284,2.01645 +4352,1.88288 +4420,1.98566 +4488,2.03806 +4556,2.04535 +4624,1.96893 +4692,1.98869 +4760,2.06614 +4828,2.02013 +4896,1.82346 +4964,2.04289 +5032,1.92403 +5100,1.9217 +5168,1.967 +5236,1.88307 +5304,1.88519 +5372,1.9088 +5440,1.98658 +5508,1.89702 +5576,1.76576 +5644,1.89614 +5712,1.81222 +5780,1.90632 +5848,1.87442 +5916,1.7348 +5984,1.82039 +6052,1.76609 +6120,1.77587 +6188,1.81852 +6256,1.8243 +6324,1.78415 +6392,1.88949 +6460,1.73037 +6528,1.69377 +6596,1.82701 +6664,1.70141 +6732,1.80284 +6800,1.63916 +6868,1.7252 +6936,1.72735 +7004,1.81642 +7072,1.69011 +7140,1.69092 +7208,1.72657 +7276,1.69653 +7344,1.70138 +7412,1.64357 +7480,1.71742 +7548,1.59526 +7616,1.73627 +7684,1.6976 +7752,1.57691 +7820,1.65899 +7888,1.67893 +7956,1.64058 +8024,1.80847 +8092,1.58258 +8160,1.5869 +8228,1.59108 +8296,1.529 +8364,1.6504 +8432,1.58774 +8500,1.59235 +8568,1.5247 +8636,1.54441 +8704,1.60172 +8772,1.60476 +8840,1.69124 +8908,1.51895 +8976,1.53433 +9044,1.60353 +9112,1.49648 +9180,1.59778 +9248,1.49309 +9316,1.50415 +9384,1.54496 +9452,1.44109 +9520,1.52002 +9588,1.55905 +9656,1.46064 +9724,1.52091 +9792,1.39304 +9860,1.50126 +9928,1.43676 +9996,1.41974 +10064,1.4745 +10132,1.45261 +10200,1.44023 +10268,1.45955 +10336,1.53766 +10404,1.40398 +10472,1.47488 +10540,1.43571 +10608,1.42532 +10676,1.45889 +10744,1.41018 +10812,1.44834 +10880,1.46392 +10948,1.37728 +11016,1.3243 +11084,1.3914 +11152,1.33898 +11220,1.39994 +11288,1.34754 +11356,1.39605 +11424,1.29592 +11492,1.2842 +11560,1.43365 +11628,1.35743 +11696,1.30532 +11764,1.36788 +11832,1.32499 +11900,1.32546 +11968,1.38574 +12036,1.38049 +12104,1.37704 +12172,1.30222 +12240,1.27841 +12308,1.27073 +12376,1.20238 +12444,1.24373 +12512,1.25074 +12580,1.2363 +12648,1.1631 +12716,1.42737 +12784,1.31569 +12852,1.34103 +12920,1.1933 +12988,1.32816 +13056,1.18342 +13124,1.39137 +13192,1.26975 +13260,1.19928 +13328,1.30248 +13396,1.14296 +13464,1.1675 +13532,1.22667 +13600,1.18617 +13668,1.27097 +13736,1.11701 +13804,1.2569 +13872,1.36105 +13940,1.28724 +14008,1.30333 +14076,1.31188 +14144,1.26487 +14212,1.23187 +14280,1.14078 +14348,1.11281 +14416,1.26864 +14484,1.17115 +14552,1.08894 +14620,1.21802 +14688,1.1105 +14756,1.1033 +14824,1.19288 +14892,1.15024 +14960,1.15571 +15028,1.12731 +15096,1.11284 +15164,1.14546 +15232,1.18746 +15300,1.18429 +15368,1.14168 +15436,1.19341 +15504,1.11436 +15572,1.04721 +15640,1.12369 +15708,1.18809 +15776,1.07564 +15844,1.04221 +15912,1.1537 +15980,1.00612 +16048,1.08938 +16116,1.04161 +16184,1.05844 +16252,1.07395 +16320,1.09709 +16388,1.11561 +16456,1.12029 +16524,1.15543 +16592,1.13507 +16660,1.06465 +16728,1.10484 +16796,1.03202 +16864,1.10273 +16932,1.11371 +17000,1.06556 +17068,1.05814 +17136,1.03531 +17204,0.941665 +17272,1.19696 +17340,1.02376 +17408,1.07688 +17476,1.06262 +17544,0.97999 +17612,0.982748 +17680,1.0351 +17748,1.0526 +17816,1.08164 +17884,1.07312 +17952,0.983394 +18020,1.07029 +18088,0.931876 +18156,1.03589 +18224,0.922738 +18292,1.06253 +18360,0.956909 +18428,1.03587 +18496,1.01516 +18564,1.11812 +18632,0.934121 +18700,1.02152 +18768,1.03121 +18836,0.987049 +18904,0.969302 +18972,1.08244 +19040,1.08228 +19108,1.07351 +19176,0.959897 +19244,0.968649 +19312,1.02244 +19380,0.935868 +19448,0.907006 +19516,1.01215 +19584,0.965154 +19652,0.96986 +19720,0.934263 +19788,0.876358 +19856,0.912898 +19924,0.911054 +19992,1.00567 +20060,0.997125 +20128,0.969837 +20196,0.995835 +20264,0.928375 +20332,0.943397 +20400,0.846876 +20468,0.872468 +20536,0.882741 +20604,0.86421 +20672,0.976752 +20740,0.918265 +20808,0.962458 +20876,0.884578 +20944,0.939384 +21012,0.849606 +21080,0.93748 +21148,0.908477 +21216,0.860673 +21284,0.962687 +21352,0.963305 +21420,0.971845 +21488,1.07742 +21556,0.792609 +21624,0.966804 +21692,0.955638 +21760,0.8581 +21828,0.874069 +21896,0.999165 +21964,0.944051 +22032,0.867722 +22100,0.859203 +22168,0.812657 +22236,0.980272 +22304,0.893509 +22372,0.861568 +22440,0.908892 +22508,0.933087 +22576,0.93697 +22644,0.916097 +22712,0.91646 +22780,0.794115 +22848,0.78838 +22916,0.923604 +22984,0.810932 +23052,0.927273 +23120,0.841526 +23188,0.922614 +23256,0.843327 +23324,0.836811 +23392,0.85269 +23460,0.938624 +23528,0.888659 +23596,0.808531 +23664,0.820184 +23732,0.930329 +23800,1.01357 +23868,0.838541 +23936,0.82462 +24004,0.839107 +24072,0.877942 +24140,0.84726 +24208,0.80443 +24276,0.733237 +24344,0.949486 +24412,0.850047 +24480,0.944336 +24548,0.90966 +24616,0.883885 +24684,0.776819 +24752,0.811476 +24820,0.906787 +24888,0.851597 +24956,0.796037 +25024,0.781003 +25092,0.878121 +25160,0.971259 +25228,0.753269 +25296,0.898911 +25364,0.904222 +25432,0.853138 +25500,0.816409 +25568,0.888887 +25636,0.814824 +25704,0.776744 +25772,0.86677 +25840,0.842805 +25908,0.775319 +25976,0.738913 +26044,0.794397 +26112,0.863196 +26180,0.778311 +26248,0.782234 +26316,0.923401 +26384,0.740383 +26452,0.813712 +26520,0.807398 +26588,0.814745 +26656,0.78139 +26724,0.679833 +26792,0.81291 +26860,0.757649 +26928,0.801273 +26996,0.770271 +27064,0.75015 +27132,0.776086 +27200,0.803793 +27268,0.678332 +27336,0.81741 +27404,0.890796 +27472,0.791325 +27540,0.817321 +27608,0.828387 +27676,0.78782 +27744,0.734681 +27812,0.711706 +27880,0.800727 +27948,0.669622 +28016,0.752567 +28084,0.758566 +28152,0.742908 +28220,0.744758 +28288,0.857469 +28356,0.713137 +28424,0.580246 +28492,0.692955 +28560,0.72159 +28628,0.854558 +28696,0.813747 +28764,0.788134 +28832,0.769329 +28900,0.767627 +28968,0.711495 +29036,0.807036 +29104,0.682843 +29172,0.735013 +29240,0.793735 +29308,0.793064 +29376,0.718973 +29444,0.691657 +29512,0.761115 +29580,0.739748 +29648,0.650427 +29716,0.739729 +29784,0.760639 +29852,0.785423 +29920,0.722219 +29988,0.756438 +30056,0.620671 +30124,0.698071 +30192,0.788387 +30260,0.714374 +30328,0.667915 +30396,0.772075 +30464,0.782523 +30532,0.65859 +30600,0.745069 +30668,0.666428 +30736,0.657623 +30804,0.746613 +30872,0.701538 +30940,0.741063 +31008,0.763243 +31076,0.629243 +31144,0.662538 +31212,0.718586 +31280,0.673439 +31348,0.629465 +31416,0.760197 +31484,0.691875 +31552,0.777923 +31620,0.742929 +31688,0.608625 +31756,0.699811 +31824,0.671683 +31892,0.678228 +31960,0.835588 +32028,0.637801 +32096,0.632784 +32164,0.70004 +32232,0.677723 +32300,0.674923 +32368,0.673961 +32436,0.688164 +32504,0.656212 +32572,0.741281 +32640,0.781484 +32708,0.719664 +32776,0.681207 +32844,0.665482 +32912,0.699562 +32980,0.682445 +33048,0.657008 +33116,0.748729 +33184,0.689793 +33252,0.714683 +33320,0.661473 +33388,0.661592 +33456,0.611892 +33524,0.568485 +33592,0.694312 +33660,0.643388 +33728,0.66525 +33796,0.61918 +33864,0.611216 +33932,0.661674 +34000,0.680957 +34068,0.761491 +34136,0.72099 +34204,0.660666 +34272,0.644215 +34340,0.597646 +34408,0.707399 +34476,0.626692 +34544,0.700845 +34612,0.757326 +34680,0.729651 +34748,0.671767 +34816,0.653269 +34884,0.649594 +34952,0.646786 +35020,0.635145 +35088,0.650064 +35156,0.631613 +35224,0.591128 +35292,0.622332 +35360,0.607772 +35428,0.680605 +35496,0.645919 +35564,0.712224 +35632,0.707681 +35700,0.590676 +35768,0.653853 +35836,0.5575 +35904,0.703126 +35972,0.586998 +36040,0.672935 +36108,0.570659 +36176,0.566492 +36244,0.684159 +36312,0.530353 +36380,0.623259 +36448,0.61167 +36516,0.574282 +36584,0.674597 +36652,0.648023 +36720,0.613214 +36788,0.614187 +36856,0.685034 +36924,0.666606 +36992,0.636967 +37060,0.606548 +37128,0.675637 +37196,0.654192 +37264,0.608867 +37332,0.6451 +37400,0.500974 +37468,0.665671 +37536,0.602975 +37604,0.565478 +37672,0.592201 +37740,0.73261 +37808,0.565446 +37876,0.572491 +37944,0.567409 +38012,0.580995 +38080,0.593368 +38148,0.564875 +38216,0.553509 +38284,0.70206 +38352,0.553513 +38420,0.564234 +38488,0.602183 +38556,0.646233 +38624,0.634685 +38692,0.672431 +38760,0.59162 +38828,0.678195 +38896,0.586093 +38964,0.610773 +39032,0.52267 +39100,0.539808 +39168,0.572273 +39236,0.618091 +39304,0.503982 +39372,0.633389 +39440,0.60013 +39508,0.596827 +39576,0.510986 +39644,0.601687 +39712,0.629121 +39780,0.527109 +39848,0.564954 +39916,0.57453 +39984,0.556608 +40052,0.618867 +40120,0.594009 +40188,0.631215 +40256,0.599188 +40324,0.565342 +40392,0.646622 +40460,0.620233 +40528,0.693664 +40596,0.537431 +40664,0.624763 +40732,0.65434 +40800,0.546667 +40868,0.560988 +40936,0.584689 +41004,0.62899 +41072,0.493958 +41140,0.469976 +41208,0.561707 +41276,0.53016 +41344,0.562122 +41412,0.48434 +41480,0.552937 +41548,0.547148 +41616,0.601797 +41684,0.482261 +41752,0.621981 +41820,0.355056 +41888,0.638818 +41956,0.540272 +42024,0.574538 +42092,0.644068 +42160,0.553269 +42228,0.549781 +42296,0.417814 +42364,0.589585 +42432,0.556947 +42500,0.482363 +42568,0.489572 +42636,0.533885 +42704,0.598983 +42772,0.61373 +42840,0.548045 +42908,0.588607 +42976,0.506167 +43044,0.491041 +43112,0.537438 +43180,0.636393 +43248,0.479208 +43316,0.565548 +43384,0.520541 +43452,0.541451 +43520,0.515319 +43588,0.646428 +43656,0.52332 +43724,0.544637 +43792,0.635393 +43860,0.591332 +43928,0.52292 +43996,0.585158 +44064,0.536051 +44132,0.422223 +44200,0.50973 +44268,0.582842 +44336,0.461295 +44404,0.484498 +44472,0.627815 +44540,0.501362 +44608,0.599898 +44676,0.460492 +44744,0.524778 +44812,0.596202 +44880,0.646952 +44948,0.571644 +45016,0.529949 +45084,0.481403 +45152,0.489197 +45220,0.537268 +45288,0.56787 +45356,0.597718 +45424,0.544247 +45492,0.536882 +45560,0.589412 +45628,0.614199 +45696,0.59606 +45764,0.581677 +45832,0.513084 +45900,0.413778 +45968,0.518064 +46036,0.573547 +46104,0.562893 +46172,0.46429 +46240,0.453717 +46308,0.61606 +46376,0.493154 +46444,0.514609 +46512,0.503922 +46580,0.385387 +46648,0.531748 +46716,0.55794 +46784,0.50275 +46852,0.510667 +46920,0.484023 +46988,0.437618 +47056,0.502799 +47124,0.532929 +47192,0.582856 +47260,0.50033 +47328,0.536886 +47396,0.540692 +47464,0.535054 +47532,0.54097 +47600,0.531581 +47668,0.512304 +47736,0.558562 +47804,0.542333 +47872,0.581862 +47940,0.477237 +48008,0.508362 +48076,0.514089 +48144,0.562108 +48212,0.45417 +48280,0.423032 +48348,0.374649 +48416,0.550776 +48484,0.497414 +48552,0.563954 +48620,0.510311 +48688,0.563785 +48756,0.493402 +48824,0.530417 +48892,0.529396 +48960,0.473255 +49028,0.471583 +49096,0.565854 +49164,0.486779 +49232,0.444388 +49300,0.559 +49368,0.505971 +49436,0.427845 +49504,0.534663 +49572,0.429565 +49640,0.499958 +49708,0.529214 +49776,0.527833 +49844,0.469931 +49912,0.460786 +49980,0.4045 +50048,0.553167 +50116,0.498489 +50184,0.45071 +50252,0.480721 +50320,0.383992 +50388,0.544061 +50456,0.430999 +50524,0.433945 +50592,0.495327 +50660,0.568378 +50728,0.436116 +50796,0.490675 +50864,0.575156 +50932,0.438076 +51000,0.372225 +51068,0.495227 +51136,0.433491 +51204,0.473531 +51272,0.482882 +51340,0.550447 +51408,0.553466 +51476,0.463398 +51544,0.501812 +51612,0.477366 +51680,0.454864 +51748,0.416788 +51816,0.447993 +51884,0.532393 +51952,0.469685 +52020,0.490957 +52088,0.590165 +52156,0.490385 +52224,0.462535 +52292,0.435316 +52360,0.469035 +52428,0.515992 +52496,0.452129 +52564,0.492389 +52632,0.447444 +52700,0.490843 +52768,0.414515 +52836,0.396279 +52904,0.49735 +52972,0.465642 +53040,0.44144 +53108,0.557065 +53176,0.490596 +53244,0.371864 +53312,0.535325 +53380,0.442915 +53448,0.401811 +53516,0.453764 +53584,0.546345 +53652,0.347038 +53720,0.361207 +53788,0.538562 +53856,0.523028 +53924,0.50229 +53992,0.459121 +54060,0.447749 +54128,0.386885 +54196,0.489487 +54264,0.487527 +54332,0.346963 +54400,0.493261 +54468,0.386483 +54536,0.538866 +54604,0.431302 +54672,0.471889 +54740,0.446697 +54808,0.434962 +54876,0.390173 +54944,0.477417 +55012,0.467901 +55080,0.454988 +55148,0.399024 +55216,0.469416 +55284,0.423614 +55352,0.479124 +55420,0.48441 +55488,0.477159 +55556,0.29914 +55624,0.467894 +55692,0.364794 +55760,0.514894 +55828,0.463316 +55896,0.447416 +55964,0.306124 +56032,0.456378 +56100,0.397795 +56168,0.459641 +56236,0.44906 +56304,0.46468 +56372,0.461324 +56440,0.398605 +56508,0.460447 +56576,0.408994 +56644,0.452105 +56712,0.441149 +56780,0.562848 +56848,0.495198 +56916,0.407057 +56984,0.458485 +57052,0.425064 +57120,0.488306 +57188,0.380573 +57256,0.440233 +57324,0.285662 +57392,0.371558 +57460,0.413181 +57528,0.373424 +57596,0.430087 +57664,0.36782 +57732,0.502161 +57800,0.30552 +57868,0.543384 +57936,0.454546 +58004,0.423263 +58072,0.469273 +58140,0.403043 +58208,0.470266 +58276,0.483848 +58344,0.466226 +58412,0.46722 +58480,0.397822 +58548,0.437919 +58616,0.437818 +58684,0.376074 +58752,0.300455 +58820,0.4793 +58888,0.523301 +58956,0.405437 +59024,0.477612 +59092,0.533277 +59160,0.331823 +59228,0.359192 +59296,0.375738 +59364,0.303442 +59432,0.411633 +59500,0.341048 +59568,0.297021 +59636,0.30701 +59704,0.434825 +59772,0.406064 +59840,0.410348 +59908,0.479759 +59976,0.337956 +60044,0.425055 +60112,0.443872 +60180,0.367176 +60248,0.422291 +60316,0.36758 +60384,0.380794 +60452,0.39502 +60520,0.498848 +60588,0.422605 +60656,0.384514 +60724,0.448214 +60792,0.576952 +60860,0.385161 +60928,0.428808 +60996,0.446063 +61064,0.367568 +61132,0.370386 +61200,0.502905 +61268,0.427781 +61336,0.416273 +61404,0.344635 +61472,0.269229 +61540,0.299978 +61608,0.428261 +61676,0.480924 +61744,0.442033 +61812,0.329056 +61880,0.249553 +61948,0.343023 +62016,0.402807 +62084,0.434193 +62152,0.331133 +62220,0.328371 +62288,0.467128 +62356,0.309958 +62424,0.491268 +62492,0.375708 +62560,0.382316 +62628,0.311145 +62696,0.357191 +62764,0.4313 +62832,0.448932 +62900,0.446487 +62968,0.396006 +63036,0.361967 +63104,0.41913 +63172,0.370904 +63240,0.37361 +63308,0.395413 +63376,0.377327 +63444,0.358639 +63512,0.470661 +63580,0.482382 +63648,0.343168 +63716,0.323818 +63784,0.298536 +63852,0.407725 +63920,0.336169 +63988,0.401077 +64056,0.401376 +64124,0.41213 +64192,0.402159 +64260,0.386919 +64328,0.422804 +64396,0.377642 +64464,0.443161 +64532,0.290248 +64600,0.450559 +64668,0.40093 +64736,0.242878 +64804,0.38205 +64872,0.395596 +64940,0.378595 +65008,0.331544 +65076,0.277946 +65144,0.40113 +65212,0.321433 +65280,0.473255 +65348,0.29377 +65416,0.414744 +65484,0.468617 +65552,0.357407 +65620,0.39302 +65688,0.479738 +65756,0.368719 +65824,0.415262 +65892,0.393356 +65960,0.454801 +66028,0.428958 +66096,0.422211 +66164,0.407854 +66232,0.345655 +66300,0.362534 +66368,0.379308 +66436,0.410176 +66504,0.350464 +66572,0.440381 +66640,0.354595 +66708,0.464486 +66776,0.418899 +66844,0.483507 +66912,0.319581 +66980,0.363892 +67048,0.431548 +67116,0.43235 +67184,0.240437 +67252,0.336374 +67320,0.338298 +67388,0.384626 +67456,0.340412 +67524,0.277141 +67592,0.334674 +67660,0.340768 +67728,0.377084 +67796,0.307863 +67864,0.365526 +67932,0.310836 +68000,0.373795 +68068,0.306636 +68136,0.37288 +68204,0.318635 +68272,0.392735 +68340,0.402792 +68408,0.401197 +68476,0.327433 +68544,0.316042 +68612,0.35058 +68680,0.385657 +68748,0.357554 +68816,0.428938 +68884,0.329406 +68952,0.43122 +69020,0.386442 +69088,0.388709 +69156,0.282648 +69224,0.346243 +69292,0.381969 +69360,0.273537 +69428,0.35951 +69496,0.324483 +69564,0.355125 +69632,0.331226 +69700,0.319275 +69768,0.395943 +69836,0.369332 +69904,0.350907 +69972,0.39736 +70040,0.322597 +70108,0.390322 +70176,0.24167 +70244,0.370381 +70312,0.329941 +70380,0.38928 +70448,0.429282 +70516,0.287843 +70584,0.347919 +70652,0.287567 +70720,0.421099 +70788,0.372841 +70856,0.378653 +70924,0.364849 +70992,0.338587 +71060,0.264472 +71128,0.351665 +71196,0.222509 +71264,0.322712 +71332,0.378124 +71400,0.414174 +71468,0.437255 +71536,0.35736 +71604,0.239362 +71672,0.425416 +71740,0.419876 +71808,0.283797 +71876,0.423376 +71944,0.259256 +72012,0.339857 +72080,0.307232 +72148,0.367902 +72216,0.342887 +72284,0.381567 +72352,0.351608 +72420,0.408383 +72488,0.402617 +72556,0.313581 +72624,0.301336 +72692,0.347912 +72760,0.38611 +72828,0.365378 +72896,0.316279 +72964,0.291121 +73032,0.266703 +73100,0.34724 +73168,0.344538 +73236,0.378588 +73304,0.28941 +73372,0.326002 +73440,0.351175 +73508,0.407496 +73576,0.36894 +73644,0.355021 +73712,0.447002 +73780,0.371875 +73848,0.312798 +73916,0.31663 +73984,0.366481 +74052,0.39168 +74120,0.335581 +74188,0.316038 +74256,0.432949 +74324,0.384942 +74392,0.303914 +74460,0.378732 +74528,0.443821 +74596,0.149841 +74664,0.344141 +74732,0.32606 +74800,0.37698 +74868,0.334452 +74936,0.328598 +75004,0.363028 +75072,0.284867 +75140,0.184045 +75208,0.318953 +75276,0.193363 +75344,0.309671 +75412,0.395096 +75480,0.269783 +75548,0.336762 +75616,0.32495 +75684,0.280591 +75752,0.395738 +75820,0.399577 +75888,0.306901 +75956,0.429591 +76024,0.399971 +76092,0.310846 +76160,0.296149 +76228,0.338779 +76296,0.278326 +76364,0.371271 +76432,0.424231 +76500,0.413159 +76568,0.299856 +76636,0.400528 +76704,0.425152 +76772,0.311949 +76840,0.337293 +76908,0.354793 +76976,0.341458 +77044,0.344624 +77112,0.352224 +77180,0.29807 +77248,0.221916 +77316,0.26789 +77384,0.272758 +77452,0.309639 +77520,0.407173 +77588,0.312119 +77656,0.368622 +77724,0.286632 +77792,0.308413 +77860,0.357834 +77928,0.245399 +77996,0.291617 +78064,0.317437 +78132,0.366513 +78200,0.358938 +78268,0.264517 +78336,0.348398 +78404,0.294459 +78472,0.282814 +78540,0.328621 +78608,0.376253 +78676,0.268095 +78744,0.368242 +78812,0.275077 +78880,0.348988 +78948,0.310824 +79016,0.337099 +79084,0.335978 +79152,0.301697 +79220,0.317998 +79288,0.305661 +79356,0.430134 +79424,0.316631 +79492,0.242783 +79560,0.306151 +79628,0.253805 +79696,0.347732 +79764,0.348434 +79832,0.303682 +79900,0.283843 +79968,0.369531 +80036,0.313672 +80104,0.251637 +80172,0.261385 +80240,0.30817 +80308,0.348966 +80376,0.356268 +80444,0.334271 +80512,0.347957 +80580,0.179347 +80648,0.264128 +80716,0.410192 +80784,0.220613 +80852,0.302605 +80920,0.216765 +80988,0.336181 +81056,0.285623 +81124,0.371078 +81192,0.330362 +81260,0.268293 +81328,0.291854 +81396,0.382421 +81464,0.337878 +81532,0.375798 +81600,0.327732 +81668,0.238745 +81736,0.272735 +81804,0.31573 +81872,0.249245 +81940,0.310628 +82008,0.346289 +82076,0.328723 +82144,0.327644 +82212,0.324656 +82280,0.272438 +82348,0.297728 +82416,0.206392 +82484,0.27133 +82552,0.339891 +82620,0.296272 +82688,0.278775 +82756,0.313286 +82824,0.333799 +82892,0.339013 +82960,0.2579 +83028,0.309872 +83096,0.231786 +83164,0.222707 +83232,0.351363 +83300,0.215272 +83368,0.25964 +83436,0.274915 +83504,0.324771 +83572,0.294051 +83640,0.376697 +83708,0.357738 +83776,0.343125 +83844,0.262216 +83912,0.237777 +83980,0.222353 +84048,0.341235 +84116,0.26361 +84184,0.289197 +84252,0.236486 +84320,0.319672 +84388,0.337963 +84456,0.321404 +84524,0.257367 +84592,0.200206 +84660,0.229196 +84728,0.29234 +84796,0.351061 +84864,0.231184 +84932,0.422413 +85000,0.336914 +85068,0.311966 +85136,0.235454 +85204,0.328328 +85272,0.224065 +85340,0.229665 +85408,0.258011 +85476,0.310885 +85544,0.364001 +85612,0.209191 +85680,0.380625 +85748,0.279181 +85816,0.280924 +85884,0.216358 +85952,0.368959 +86020,0.201348 +86088,0.165042 +86156,0.21584 +86224,0.246429 +86292,0.308209 +86360,0.242068 +86428,0.33007 +86496,0.245516 +86564,0.437175 +86632,0.344928 +86700,0.27594 +86768,0.239069 +86836,0.279974 +86904,0.422675 +86972,0.247188 +87040,0.390226 +87108,0.326172 +87176,0.218355 +87244,0.256514 +87312,0.313384 +87380,0.31314 +87448,0.350765 +87516,0.133798 +87584,0.296237 +87652,0.294656 +87720,0.169688 +87788,0.337037 +87856,0.303177 +87924,0.326012 +87992,0.316238 +88060,0.267682 +88128,0.261601 +88196,0.340128 +88264,0.331991 +88332,0.289874 +88400,0.276631 +88468,0.364148 +88536,0.272532 +88604,0.265999 +88672,0.266742 +88740,0.254269 +88808,0.299792 +88876,0.190174 +88944,0.383605 +89012,0.305831 +89080,0.337113 +89148,0.266339 +89216,0.241174 +89284,0.24113 +89352,0.27357 +89420,0.330863 +89488,0.339191 +89556,0.392179 +89624,0.325052 +89692,0.352132 +89760,0.175412 +89828,0.403439 +89896,0.399864 +89964,0.305985 +90032,0.229212 +90100,0.192435 +90168,0.203199 +90236,0.232555 +90304,0.289285 +90372,0.231425 +90440,0.240027 +90508,0.241842 +90576,0.268449 +90644,0.326302 +90712,0.211079 +90780,0.34276 +90848,0.250118 +90916,0.243763 +90984,0.300794 +91052,0.251891 +91120,0.240931 +91188,0.197322 +91256,0.364202 +91324,0.0920315 +91392,0.381463 +91460,0.279921 +91528,0.239135 +91596,0.231112 +91664,0.270705 +91732,0.247989 +91800,0.290652 +91868,0.332201 +91936,0.279877 +92004,0.24478 +92072,0.22775 +92140,0.336446 +92208,0.294022 +92276,0.259813 +92344,0.3107 +92412,0.211371 +92480,0.266469 +92548,0.307901 +92616,0.325391 +92684,0.21359 +92752,0.267134 +92820,0.302971 +92888,0.214484 +92956,0.188198 +93024,0.233259 +93092,0.296046 +93160,0.283898 +93228,0.23479 +93296,0.164219 +93364,0.239077 +93432,0.282679 +93500,0.328355 +93568,0.259934 +93636,0.254995 +93704,0.292921 +93772,0.282637 +93840,0.232616 +93908,0.253344 +93976,0.375231 +94044,0.264153 +94112,0.264927 +94180,0.289798 +94248,0.260843 +94316,0.279598 +94384,0.316458 +94452,0.19912 +94520,0.289467 +94588,0.307935 +94656,0.327132 +94724,0.147023 +94792,0.107368 +94860,0.378078 +94928,0.348264 +94996,0.211109 +95064,0.306814 +95132,0.333653 +95200,0.266843 +95268,0.300339 +95336,0.247385 +95404,0.197348 +95472,0.295576 +95540,0.177214 +95608,0.321635 +95676,0.241099 +95744,0.213174 +95812,0.332227 +95880,0.258487 +95948,0.171925 +96016,0.244175 +96084,0.254112 +96152,0.160239 +96220,0.226051 +96288,0.277063 +96356,0.109808 +96424,0.201862 +96492,0.220093 +96560,0.281403 +96628,0.29793 +96696,0.236499 +96764,0.210071 +96832,0.308246 +96900,0.323688 +96968,0.238938 +97036,0.36268 +97104,0.330671 +97172,0.131285 +97240,0.245553 +97308,0.207249 +97376,0.267998 +97444,0.233719 +97512,0.172289 +97580,0.183896 +97648,0.181645 +97716,0.225649 +97784,0.266064 +97852,0.287186 +97920,0.275124 +97988,0.208755 +98056,0.303143 +98124,0.177451 +98192,0.250959 +98260,0.229038 +98328,0.192875 +98396,0.175175 +98464,0.281791 +98532,0.206173 +98600,0.210377 +98668,0.307356 +98736,0.216133 +98804,0.319943 +98872,0.159836 +98940,0.315258 +99008,0.284098 +99076,0.20184 +99144,0.184426 +99212,0.323666 +99280,0.258071 +99348,0.0953285 +99416,0.194262 +99484,0.162716 +99552,0.291386 +99620,0.174355 +99688,0.266192 +99756,0.199743 +99824,0.250578 +99892,0.256428 +99960,0.202341 +100028,0.306383 +100096,0.238942 +100164,0.218016 +100232,0.29215 +100300,0.221338 +100368,0.251535 +100436,0.238784 +100504,0.168919 +100572,0.254939 +100640,0.213718 +100708,0.236717 +100776,0.230508 +100844,0.245871 +100912,0.362091 +100980,0.225441 +101048,0.147448 +101116,0.233819 +101184,0.337853 +101252,0.216852 +101320,0.173693 +101388,0.340402 +101456,0.198371 +101524,0.175902 +101592,0.243793 +101660,0.277456 +101728,0.229149 +101796,0.175602 +101864,0.196721 +101932,0.221696 +102000,0.306426 +102068,0.357774 +102136,0.172156 +102204,0.176225 +102272,0.198411 +102340,0.302548 +102408,0.147836 +102476,0.209231 +102544,0.253005 +102612,0.235927 +102680,0.251178 +102748,0.210613 +102816,0.193613 +102884,0.298786 +102952,0.153645 +103020,0.136598 +103088,0.348426 +103156,0.273729 +103224,0.295343 +103292,0.234295 +103360,0.249538 +103428,0.243798 +103496,0.229992 +103564,0.216229 +103632,0.258303 +103700,0.283218 +103768,0.172474 +103836,0.322138 +103904,0.168241 +103972,0.245809 +104040,0.293648 +104108,0.199114 +104176,0.428627 +104244,0.268256 +104312,0.173991 +104380,0.246549 +104448,0.194563 +104516,0.164407 +104584,0.268845 +104652,0.18113 +104720,0.214211 +104788,0.210327 +104856,0.218598 +104924,0.284374 +104992,0.196849 +105060,0.259488 +105128,0.177377 +105196,0.175529 +105264,0.219033 +105332,0.112834 +105400,0.213689 +105468,0.238655 +105536,0.273053 +105604,0.23456 +105672,0.187249 +105740,0.256841 +105808,0.161041 +105876,0.229346 +105944,0.309033 +106012,0.153458 +106080,0.122325 +106148,0.287782 +106216,0.250984 +106284,0.185469 +106352,0.19221 +106420,0.205777 +106488,0.318104 +106556,0.147189 +106624,0.251832 +106692,0.191761 +106760,0.191528 +106828,0.140548 +106896,0.21645 +106964,0.247922 +107032,0.149963 +107100,0.158296 +107168,0.22963 +107236,0.235019 +107304,0.271337 +107372,0.326942 +107440,0.254414 +107508,0.107126 +107576,0.209414 +107644,0.296218 +107712,0.105525 +107780,0.204539 +107848,0.231972 +107916,0.183344 +107984,0.131816 +108052,0.276873 +108120,0.219582 +108188,0.133791 +108256,0.256194 +108324,0.238798 +108392,0.242801 +108460,0.111711 +108528,0.223664 +108596,0.0982208 +108664,0.169777 +108732,0.305614 +108800,0.19754 +108868,0.161691 +108936,0.267975 +109004,0.207609 +109072,0.288237 +109140,0.171811 +109208,0.178655 +109276,0.226367 +109344,0.170417 +109412,0.180185 +109480,0.176424 +109548,0.150592 +109616,0.23069 +109684,0.184078 +109752,0.110241 +109820,0.159575 +109888,0.208236 +109956,0.259412 +110024,0.254607 +110092,0.209408 +110160,0.298128 +110228,0.191715 +110296,0.205437 +110364,0.248586 +110432,0.139271 +110500,0.280767 +110568,0.201765 +110636,0.286277 +110704,0.211607 +110772,0.14417 +110840,0.187094 +110908,0.192766 +110976,0.213461 +111044,0.126099 +111112,0.22146 +111180,0.220602 +111248,0.280018 +111316,0.220953 +111384,0.265574 +111452,0.179573 +111520,0.211297 +111588,0.220548 +111656,0.162924 +111724,0.197404 +111792,0.308399 +111860,0.266369 +111928,0.210959 +111996,0.318358 +112064,0.125237 +112132,0.283814 +112200,0.256174 +112268,0.197012 +112336,0.188518 +112404,0.290269 +112472,0.193549 +112540,0.185981 +112608,0.219156 +112676,0.216405 +112744,0.156735 +112812,0.170237 +112880,0.290722 +112948,0.253612 +113016,0.154903 +113084,0.092227 +113152,0.171519 +113220,0.178796 +113288,0.131383 +113356,0.242507 +113424,0.200205 +113492,0.235954 +113560,0.100594 +113628,0.202703 +113696,0.238023 +113764,0.265554 +113832,0.259905 +113900,0.277591 +113968,0.309423 +114036,0.293539 +114104,0.185392 +114172,0.300217 +114240,0.106667 +114308,0.151583 +114376,0.300403 +114444,0.204564 +114512,0.277476 +114580,0.128622 +114648,0.248322 +114716,0.239469 +114784,0.230902 +114852,0.140876 +114920,0.235759 +114988,0.268668 +115056,0.242375 +115124,0.143987 +115192,0.30279 +115260,0.272921 +115328,0.153464 +115396,0.137326 +115464,0.224177 +115532,0.2968 +115600,0.26891 +115668,0.136844 +115736,0.110944 +115804,0.249474 +115872,0.322546 +115940,0.199502 +116008,0.192568 +116076,0.189813 +116144,0.189872 +116212,0.032797 +116280,0.241292 +116348,0.162368 +116416,0.221813 +116484,0.262571 +116552,0.216836 +116620,0.282211 +116688,0.156443 +116756,0.261727 +116824,0.125383 +116892,0.169746 +116960,0.130266 +117028,0.122651 +117096,0.218265 +117164,0.176406 +117232,0.115984 +117300,0.230862 +117368,0.178352 +117436,0.200346 +117504,0.20522 +117572,0.151121 +117640,0.292556 +117708,0.189307 +117776,0.164984 +117844,0.211522 +117912,0.199376 +117980,0.211799 +118048,0.0985859 +118116,0.213627 +118184,0.229633 +118252,0.258543 +118320,0.232111 +118388,0.0822857 +118456,0.235291 +118524,0.230807 +118592,0.142336 +118660,0.152949 +118728,0.214051 +118796,0.13717 +118864,0.202434 +118932,0.226375 +119000,0.236705 +119068,0.286132 +119136,0.258367 +119204,0.199244 +119272,0.2022 +119340,0.204684 +119408,0.273608 +119476,0.198318 +119544,0.257532 +119612,0.173886 +119680,0.237887 +119748,0.150646 +119816,0.217916 +119884,0.209225 +119952,0.0318339 +120020,0.123656 +120088,0.201372 +120156,0.133817 +120224,0.218304 +120292,0.223603 +120360,0.209564 +120428,0.229128 +120496,0.124868 +120564,0.17821 +120632,0.217816 +120700,0.133944 +120768,0.0940506 +120836,0.200128 +120904,0.233982 +120972,0.276391 +121040,0.227562 +121108,0.236883 +121176,0.239524 +121244,0.205103 +121312,0.118836 +121380,0.303709 +121448,0.225669 +121516,0.240827 +121584,0.264014 +121652,0.115153 +121720,0.229402 +121788,0.202196 +121856,0.170824 +121924,0.325473 +121992,0.164116 +122060,0.162125 +122128,0.0900787 +122196,0.175209 +122264,0.171651 +122332,0.124816 +122400,0.151716 +122468,0.15354 +122536,0.245227 +122604,0.118091 +122672,0.274382 +122740,0.230204 +122808,0.19057 +122876,0.323187 +122944,0.175181 +123012,0.239745 +123080,0.179947 +123148,0.209734 +123216,0.172234 +123284,0.174559 +123352,0.172368 +123420,0.32074 +123488,0.308095 +123556,0.306673 +123624,0.128819 +123692,0.211457 +123760,0.225849 +123828,0.174562 +123896,0.138388 +123964,0.148596 +124032,0.193958 +124100,0.106869 +124168,0.210095 +124236,0.117382 +124304,0.161242 +124372,0.197378 +124440,0.167528 +124508,0.125644 +124576,0.24893 +124644,0.241753 +124712,0.226122 +124780,0.181205 +124848,0.131071 +124916,0.225685 +124984,0.172581 +125052,0.260092 +125120,0.250973 +125188,0.18718 +125256,0.168398 +125324,0.20725 +125392,0.157563 +125460,0.237118 +125528,0.188494 +125596,0.189007 +125664,0.204847 +125732,0.1781 +125800,0.207853 +125868,0.182753 +125936,0.1881 +126004,0.202561 +126072,0.138724 +126140,0.126883 +126208,0.184082 +126276,0.170294 +126344,0.255694 +126412,0.176156 +126480,0.238212 +126548,0.247887 +126616,0.307245 +126684,0.214066 +126752,0.282116 +126820,0.21476 +126888,0.215555 +126956,0.217717 +127024,0.192243 +127092,0.203232 +127160,0.107857 +127228,0.271683 +127296,0.153646 +127364,0.271094 +127432,0.209529 +127500,0.282691 +127568,0.124007 +127636,0.216021 +127704,0.268609 +127772,0.214976 +127840,0.109359 +127908,0.147208 +127976,0.152728 +128044,0.190446 +128112,0.18724 +128180,0.231188 +128248,0.223312 +128316,0.171809 +128384,0.135592 +128452,0.16937 +128520,0.21435 +128588,0.134615 +128656,0.177699 +128724,0.143504 +128792,0.18735 +128860,0.338198 +128928,0.109298 +128996,0.0953006 +129064,0.104399 +129132,0.107921 +129200,0.210485 +129268,0.217241 +129336,0.119419 +129404,0.154526 +129472,0.233097 +129540,0.190327 +129608,0.189337 +129676,0.229774 +129744,0.145226 +129812,0.191144 +129880,0.13938 +129948,0.156577 +130016,0.207085 +130084,0.111471 +130152,0.150548 +130220,0.15658 +130288,0.145107 +130356,0.137977 +130424,0.196056 +130492,0.0744207 +130560,0.157148 +130628,0.285469 +130696,0.186381 +130764,0.133651 +130832,0.16802 +130900,0.244872 +130968,0.0746823 +131036,0.192696 +131104,0.124816 +131172,0.252879 +131240,0.148341 +131308,0.188828 +131376,0.213554 +131444,0.111212 +131512,0.125717 +131580,0.134674 +131648,0.20563 +131716,0.207698 +131784,0.264472 +131852,0.198874 +131920,0.159935 +131988,0.124465 +132056,0.189115 +132124,0.0874565 +132192,0.233032 +132260,0.201493 +132328,0.135556 +132396,0.159971 +132464,0.244192 +132532,0.0662298 +132600,0.212428 +132668,0.158415 +132736,0.266713 +132804,0.191626 +132872,0.200723 +132940,0.153388 +133008,0.161154 +133076,0.26628 +133144,0.152645 +133212,0.229744 +133280,0.137633 +133348,0.105421 +133416,0.164954 +133484,0.18135 +133552,0.188973 +133620,0.189268 +133688,0.168338 +133756,0.119722 +133824,0.150432 +133892,0.153703 +133960,0.249407 +134028,0.16023 +134096,0.187514 +134164,0.182692 +134232,0.176857 +134300,0.159139 +134368,0.0785584 +134436,0.169949 +134504,0.113407 +134572,0.18215 +134640,0.183525 +134708,0.266043 +134776,0.165201 +134844,0.161209 +134912,0.0859154 +134980,0.295675 +135048,0.15336 +135116,0.174816 +135184,0.0986608 +135252,0.19823 +135320,0.0394786 +135388,0.207344 +135456,0.130004 +135524,0.251164 +135592,0.147393 +135660,0.11368 +135728,0.150156 +135796,0.158214 +135864,0.188026 +135932,0.117203 +136000,0.0881544 diff --git a/example_data/bgr/MouseCPMG/CPMG/11/acqu.par b/example_data/bgr/MouseCPMG/CPMG/11/acqu.par new file mode 100644 index 0000000..5e455fe --- /dev/null +++ b/example_data/bgr/MouseCPMG/CPMG/11/acqu.par @@ -0,0 +1,37 @@ +90Amplitude = -7 +180Amplitude = 0 +accumulate = "yes" +acqTime = 0.016 +alpha = 0.1 +autoPhase = "yes" +autoPhase = "yes" +b1Freq = 13.24d +bandwidth = 2e+003 +dataDirectory = "C:\Costabel.S\Desktop\NMR-Mouse Data\GnaSamples2023_orig" +dwellTime = 0.5 +echoShift = 0.7 +echoTime = 68 +experiment = "CPMG" +expName = "CPMG" +expNr = 11 +filter = "no" +filterType = "sinebellsquared" +fitType = "exp" +flatFilter = "no" +incExpNr = "yes" +normalize = "no" +nrEchoes = 500 +nrPnts = 32 +nrScans = 32 +position = [52,477] +pulseLength = 12.5 +repTime = 4000 +rxGain = 31 +rxPhase = 4 +saveData = "true" +sumEchoes = "yes" +timeMag = "no" +usePhaseCycle = "yes" +windowSize = "small" +x_maximum = 100 +x_minimum = 0.2 diff --git a/example_data/bgr/MouseCPMG/CPMG/11/data.csv b/example_data/bgr/MouseCPMG/CPMG/11/data.csv new file mode 100644 index 0000000..658bec2 --- /dev/null +++ b/example_data/bgr/MouseCPMG/CPMG/11/data.csv @@ -0,0 +1,500 @@ +68,0.904671 +136,1.13246 +204,1.14088 +272,1.10487 +340,1.10046 +408,1.11865 +476,1.06737 +544,1.06453 +612,1.03796 +680,1.08972 +748,1.05525 +816,1.04441 +884,1.06198 +952,1.05133 +1020,1.05347 +1088,0.992228 +1156,1.01966 +1224,1.01425 +1292,0.99627 +1360,1.00283 +1428,0.957667 +1496,0.992358 +1564,1.0101 +1632,0.952219 +1700,0.948924 +1768,0.951205 +1836,0.939005 +1904,0.976147 +1972,0.953217 +2040,0.950168 +2108,0.932947 +2176,0.969026 +2244,0.966497 +2312,0.922206 +2380,0.89693 +2448,0.91324 +2516,0.894929 +2584,0.91726 +2652,0.948545 +2720,0.893941 +2788,0.867858 +2856,0.903905 +2924,0.911382 +2992,0.885254 +3060,0.874402 +3128,0.88777 +3196,0.914285 +3264,0.874716 +3332,0.854472 +3400,0.882048 +3468,0.896371 +3536,0.901943 +3604,0.829699 +3672,0.873895 +3740,0.888154 +3808,0.822957 +3876,0.858436 +3944,0.911974 +4012,0.871079 +4080,0.832919 +4148,0.819503 +4216,0.909247 +4284,0.834849 +4352,0.83733 +4420,0.802404 +4488,0.8376 +4556,0.790411 +4624,0.827342 +4692,0.789321 +4760,0.761291 +4828,0.847899 +4896,0.764937 +4964,0.787814 +5032,0.801613 +5100,0.840537 +5168,0.806067 +5236,0.807846 +5304,0.784463 +5372,0.806801 +5440,0.847427 +5508,0.837182 +5576,0.835646 +5644,0.790189 +5712,0.784011 +5780,0.802297 +5848,0.82518 +5916,0.787761 +5984,0.753501 +6052,0.77152 +6120,0.738653 +6188,0.78863 +6256,0.78548 +6324,0.766707 +6392,0.809258 +6460,0.743672 +6528,0.774248 +6596,0.761914 +6664,0.732062 +6732,0.772993 +6800,0.717823 +6868,0.714835 +6936,0.709573 +7004,0.752955 +7072,0.691563 +7140,0.750485 +7208,0.720155 +7276,0.7337 +7344,0.760705 +7412,0.719984 +7480,0.707849 +7548,0.731242 +7616,0.715234 +7684,0.701591 +7752,0.714312 +7820,0.69861 +7888,0.7092 +7956,0.735709 +8024,0.744761 +8092,0.718706 +8160,0.69933 +8228,0.718947 +8296,0.697721 +8364,0.710465 +8432,0.722385 +8500,0.749852 +8568,0.70673 +8636,0.702908 +8704,0.713007 +8772,0.671973 +8840,0.679138 +8908,0.653671 +8976,0.716648 +9044,0.692604 +9112,0.64802 +9180,0.663307 +9248,0.621519 +9316,0.647615 +9384,0.650608 +9452,0.707143 +9520,0.650937 +9588,0.604562 +9656,0.653924 +9724,0.593236 +9792,0.679257 +9860,0.647102 +9928,0.614648 +9996,0.639166 +10064,0.586189 +10132,0.659042 +10200,0.611037 +10268,0.633552 +10336,0.660044 +10404,0.614711 +10472,0.614577 +10540,0.630417 +10608,0.639282 +10676,0.625625 +10744,0.608074 +10812,0.643256 +10880,0.606793 +10948,0.609966 +11016,0.627846 +11084,0.621426 +11152,0.658233 +11220,0.597785 +11288,0.632693 +11356,0.5851 +11424,0.643179 +11492,0.559174 +11560,0.655804 +11628,0.632447 +11696,0.599562 +11764,0.641537 +11832,0.611271 +11900,0.638528 +11968,0.620572 +12036,0.604606 +12104,0.600648 +12172,0.613222 +12240,0.579427 +12308,0.644008 +12376,0.540185 +12444,0.579747 +12512,0.60142 +12580,0.572006 +12648,0.605502 +12716,0.589125 +12784,0.61814 +12852,0.555651 +12920,0.593967 +12988,0.606605 +13056,0.517542 +13124,0.584172 +13192,0.605797 +13260,0.569489 +13328,0.578418 +13396,0.59582 +13464,0.595639 +13532,0.573138 +13600,0.5515 +13668,0.537875 +13736,0.587335 +13804,0.569315 +13872,0.559925 +13940,0.58848 +14008,0.548351 +14076,0.581582 +14144,0.570912 +14212,0.570129 +14280,0.556981 +14348,0.528246 +14416,0.625503 +14484,0.535074 +14552,0.54644 +14620,0.527104 +14688,0.50997 +14756,0.556823 +14824,0.570209 +14892,0.541332 +14960,0.549298 +15028,0.555607 +15096,0.546428 +15164,0.606132 +15232,0.540452 +15300,0.501417 +15368,0.535065 +15436,0.532633 +15504,0.502435 +15572,0.542132 +15640,0.536259 +15708,0.553651 +15776,0.521605 +15844,0.519222 +15912,0.520393 +15980,0.540756 +16048,0.51609 +16116,0.521213 +16184,0.530123 +16252,0.571297 +16320,0.494545 +16388,0.532944 +16456,0.542503 +16524,0.524779 +16592,0.455735 +16660,0.514233 +16728,0.520673 +16796,0.559389 +16864,0.500211 +16932,0.506714 +17000,0.444459 +17068,0.567101 +17136,0.46163 +17204,0.471464 +17272,0.513919 +17340,0.546625 +17408,0.553311 +17476,0.543871 +17544,0.542925 +17612,0.517156 +17680,0.467078 +17748,0.517914 +17816,0.515051 +17884,0.483436 +17952,0.495302 +18020,0.510199 +18088,0.49066 +18156,0.51216 +18224,0.523833 +18292,0.477772 +18360,0.480124 +18428,0.501221 +18496,0.492852 +18564,0.514216 +18632,0.500582 +18700,0.470044 +18768,0.454301 +18836,0.517696 +18904,0.489372 +18972,0.510279 +19040,0.475176 +19108,0.460807 +19176,0.443567 +19244,0.508293 +19312,0.513324 +19380,0.469726 +19448,0.442294 +19516,0.507514 +19584,0.519875 +19652,0.469215 +19720,0.491884 +19788,0.513064 +19856,0.456126 +19924,0.496925 +19992,0.465424 +20060,0.531063 +20128,0.476522 +20196,0.526064 +20264,0.477157 +20332,0.503206 +20400,0.469192 +20468,0.465202 +20536,0.475823 +20604,0.50138 +20672,0.478941 +20740,0.464619 +20808,0.509824 +20876,0.4646 +20944,0.496649 +21012,0.406716 +21080,0.460409 +21148,0.513587 +21216,0.431528 +21284,0.42693 +21352,0.442303 +21420,0.451701 +21488,0.417684 +21556,0.456477 +21624,0.45215 +21692,0.416985 +21760,0.43891 +21828,0.445975 +21896,0.462459 +21964,0.39364 +22032,0.405987 +22100,0.424872 +22168,0.470145 +22236,0.427987 +22304,0.49115 +22372,0.470291 +22440,0.413946 +22508,0.401008 +22576,0.42782 +22644,0.455573 +22712,0.413384 +22780,0.403171 +22848,0.361614 +22916,0.434929 +22984,0.446182 +23052,0.412679 +23120,0.409043 +23188,0.428381 +23256,0.411305 +23324,0.426815 +23392,0.430583 +23460,0.415484 +23528,0.419639 +23596,0.407752 +23664,0.408008 +23732,0.457592 +23800,0.464737 +23868,0.443027 +23936,0.426959 +24004,0.3986 +24072,0.449146 +24140,0.43588 +24208,0.448833 +24276,0.402737 +24344,0.442215 +24412,0.433749 +24480,0.420991 +24548,0.436115 +24616,0.461946 +24684,0.405854 +24752,0.418089 +24820,0.440695 +24888,0.420917 +24956,0.462301 +25024,0.398461 +25092,0.382942 +25160,0.412286 +25228,0.462924 +25296,0.362919 +25364,0.422915 +25432,0.406604 +25500,0.422485 +25568,0.375426 +25636,0.467369 +25704,0.421255 +25772,0.370508 +25840,0.368947 +25908,0.425703 +25976,0.352681 +26044,0.412867 +26112,0.3752 +26180,0.377741 +26248,0.414884 +26316,0.412552 +26384,0.405937 +26452,0.430005 +26520,0.426178 +26588,0.413995 +26656,0.407478 +26724,0.390825 +26792,0.3573 +26860,0.439838 +26928,0.406935 +26996,0.358994 +27064,0.36859 +27132,0.408002 +27200,0.398591 +27268,0.379425 +27336,0.372242 +27404,0.372198 +27472,0.356106 +27540,0.370749 +27608,0.377403 +27676,0.407867 +27744,0.377947 +27812,0.41249 +27880,0.352555 +27948,0.41501 +28016,0.353586 +28084,0.385227 +28152,0.4027 +28220,0.429746 +28288,0.36676 +28356,0.37629 +28424,0.347973 +28492,0.376979 +28560,0.388732 +28628,0.38311 +28696,0.378126 +28764,0.387134 +28832,0.378039 +28900,0.375038 +28968,0.397532 +29036,0.377904 +29104,0.359903 +29172,0.331333 +29240,0.38966 +29308,0.424444 +29376,0.342069 +29444,0.331125 +29512,0.351508 +29580,0.376705 +29648,0.379901 +29716,0.411512 +29784,0.354165 +29852,0.412631 +29920,0.383549 +29988,0.363686 +30056,0.346727 +30124,0.390392 +30192,0.414813 +30260,0.342511 +30328,0.417523 +30396,0.376486 +30464,0.385063 +30532,0.346378 +30600,0.353759 +30668,0.343983 +30736,0.362159 +30804,0.366885 +30872,0.35841 +30940,0.365282 +31008,0.326859 +31076,0.400432 +31144,0.39308 +31212,0.362626 +31280,0.341817 +31348,0.339877 +31416,0.384011 +31484,0.363479 +31552,0.399766 +31620,0.40375 +31688,0.379333 +31756,0.373505 +31824,0.367799 +31892,0.340741 +31960,0.37526 +32028,0.390718 +32096,0.286802 +32164,0.360974 +32232,0.351343 +32300,0.322657 +32368,0.361751 +32436,0.376206 +32504,0.34959 +32572,0.393489 +32640,0.317522 +32708,0.369025 +32776,0.379375 +32844,0.360597 +32912,0.325834 +32980,0.347551 +33048,0.33704 +33116,0.337896 +33184,0.347035 +33252,0.367189 +33320,0.36722 +33388,0.347116 +33456,0.359053 +33524,0.345353 +33592,0.358785 +33660,0.357692 +33728,0.318566 +33796,0.347131 +33864,0.358958 +33932,0.353892 +34000,0.379788 diff --git a/example_data/bgr/MouseCPMG/CPMG/12/acqu.par b/example_data/bgr/MouseCPMG/CPMG/12/acqu.par new file mode 100644 index 0000000..945e793 --- /dev/null +++ b/example_data/bgr/MouseCPMG/CPMG/12/acqu.par @@ -0,0 +1,37 @@ +90Amplitude = -7 +180Amplitude = 0 +accumulate = "yes" +acqTime = 0.016 +alpha = 0.1 +autoPhase = "yes" +autoPhase = "yes" +b1Freq = 13.24d +bandwidth = 2e+003 +dataDirectory = "C:\Costabel.S\Desktop\NMR-Mouse Data\GnaSamples2023_orig" +dwellTime = 0.5 +echoShift = 0.7 +echoTime = 68 +experiment = "CPMG" +expName = "CPMG" +expNr = 12 +filter = "no" +filterType = "sinebellsquared" +fitType = "exp" +flatFilter = "no" +incExpNr = "yes" +normalize = "no" +nrEchoes = 2000 +nrPnts = 32 +nrScans = 32 +position = [53,477] +pulseLength = 12.5 +repTime = 16000 +rxGain = 31 +rxPhase = 5 +saveData = "true" +sumEchoes = "yes" +timeMag = "no" +usePhaseCycle = "yes" +windowSize = "small" +x_maximum = 100 +x_minimum = 0.2 diff --git a/example_data/bgr/MouseCPMG/CPMG/12/data.csv b/example_data/bgr/MouseCPMG/CPMG/12/data.csv new file mode 100644 index 0000000..715f38e --- /dev/null +++ b/example_data/bgr/MouseCPMG/CPMG/12/data.csv @@ -0,0 +1,2000 @@ +68,2.67412 +136,3.4323 +204,3.39241 +272,3.39891 +340,3.34132 +408,3.33333 +476,3.29835 +544,3.24572 +612,3.29625 +680,3.25292 +748,3.2462 +816,3.23618 +884,3.24655 +952,3.21752 +1020,3.23975 +1088,3.17745 +1156,3.15781 +1224,3.13821 +1292,3.15703 +1360,3.15264 +1428,3.14877 +1496,3.14997 +1564,3.18078 +1632,3.13739 +1700,3.10504 +1768,3.10991 +1836,3.03936 +1904,3.03926 +1972,3.02913 +2040,3.09235 +2108,3.02442 +2176,3.04249 +2244,2.97798 +2312,2.96691 +2380,3.03365 +2448,2.93215 +2516,2.8836 +2584,2.90021 +2652,2.91154 +2720,2.92519 +2788,2.8866 +2856,2.8769 +2924,2.90198 +2992,2.83963 +3060,2.84556 +3128,2.8692 +3196,2.83446 +3264,2.85216 +3332,2.88723 +3400,2.83829 +3468,2.75635 +3536,2.8284 +3604,2.79448 +3672,2.79095 +3740,2.7868 +3808,2.73416 +3876,2.81307 +3944,2.77332 +4012,2.78905 +4080,2.72473 +4148,2.7271 +4216,2.71159 +4284,2.74989 +4352,2.7257 +4420,2.6936 +4488,2.67028 +4556,2.58633 +4624,2.66311 +4692,2.59355 +4760,2.62076 +4828,2.62264 +4896,2.5966 +4964,2.59797 +5032,2.5447 +5100,2.61691 +5168,2.58759 +5236,2.59035 +5304,2.49126 +5372,2.57468 +5440,2.48569 +5508,2.52635 +5576,2.52219 +5644,2.50607 +5712,2.50171 +5780,2.53732 +5848,2.47941 +5916,2.48815 +5984,2.47613 +6052,2.51863 +6120,2.46387 +6188,2.42989 +6256,2.41532 +6324,2.42741 +6392,2.40392 +6460,2.42628 +6528,2.37087 +6596,2.37605 +6664,2.371 +6732,2.34152 +6800,2.31067 +6868,2.4195 +6936,2.38556 +7004,2.35507 +7072,2.37452 +7140,2.32005 +7208,2.35314 +7276,2.33687 +7344,2.3598 +7412,2.29048 +7480,2.3036 +7548,2.2924 +7616,2.3115 +7684,2.27331 +7752,2.28015 +7820,2.24466 +7888,2.25861 +7956,2.24002 +8024,2.20919 +8092,2.17918 +8160,2.24219 +8228,2.25418 +8296,2.17821 +8364,2.21051 +8432,2.20674 +8500,2.18359 +8568,2.19166 +8636,2.13102 +8704,2.14961 +8772,2.14845 +8840,2.12815 +8908,2.12588 +8976,2.13766 +9044,2.1309 +9112,2.14121 +9180,2.11822 +9248,2.10404 +9316,2.10949 +9384,2.06408 +9452,2.08415 +9520,2.09262 +9588,2.10529 +9656,2.10527 +9724,2.05022 +9792,2.05112 +9860,2.052 +9928,2.00402 +9996,1.99777 +10064,1.99947 +10132,1.96905 +10200,1.97948 +10268,1.96924 +10336,2.00308 +10404,1.97878 +10472,1.99211 +10540,1.89375 +10608,1.95603 +10676,1.94828 +10744,1.93684 +10812,1.96601 +10880,1.92874 +10948,1.94738 +11016,1.92779 +11084,1.91137 +11152,1.88433 +11220,1.8566 +11288,1.82765 +11356,1.87363 +11424,1.90641 +11492,1.82062 +11560,1.89514 +11628,1.86549 +11696,1.81309 +11764,1.8805 +11832,1.8125 +11900,1.8689 +11968,1.7665 +12036,1.79125 +12104,1.80941 +12172,1.77273 +12240,1.72969 +12308,1.82853 +12376,1.75561 +12444,1.81474 +12512,1.78643 +12580,1.742 +12648,1.78073 +12716,1.76037 +12784,1.73019 +12852,1.75068 +12920,1.8206 +12988,1.75557 +13056,1.71187 +13124,1.72971 +13192,1.761 +13260,1.69285 +13328,1.67929 +13396,1.67287 +13464,1.75492 +13532,1.64043 +13600,1.59396 +13668,1.6518 +13736,1.70028 +13804,1.67077 +13872,1.67108 +13940,1.67102 +14008,1.67039 +14076,1.66159 +14144,1.66676 +14212,1.65426 +14280,1.64996 +14348,1.6583 +14416,1.62599 +14484,1.64266 +14552,1.63232 +14620,1.60265 +14688,1.62654 +14756,1.5944 +14824,1.56244 +14892,1.64426 +14960,1.53784 +15028,1.57662 +15096,1.54403 +15164,1.58375 +15232,1.56036 +15300,1.563 +15368,1.52978 +15436,1.52163 +15504,1.50243 +15572,1.58892 +15640,1.51126 +15708,1.54637 +15776,1.47367 +15844,1.51083 +15912,1.532 +15980,1.49056 +16048,1.48261 +16116,1.52898 +16184,1.46675 +16252,1.49103 +16320,1.44597 +16388,1.49328 +16456,1.46598 +16524,1.46527 +16592,1.4211 +16660,1.46011 +16728,1.46485 +16796,1.44044 +16864,1.38751 +16932,1.45701 +17000,1.47543 +17068,1.3521 +17136,1.39784 +17204,1.45137 +17272,1.39528 +17340,1.45023 +17408,1.37296 +17476,1.38174 +17544,1.38986 +17612,1.378 +17680,1.37007 +17748,1.34986 +17816,1.3832 +17884,1.3703 +17952,1.39259 +18020,1.36185 +18088,1.38542 +18156,1.36949 +18224,1.28919 +18292,1.3296 +18360,1.36062 +18428,1.31836 +18496,1.33071 +18564,1.31834 +18632,1.31992 +18700,1.25182 +18768,1.31631 +18836,1.30846 +18904,1.30691 +18972,1.30178 +19040,1.27856 +19108,1.30831 +19176,1.27912 +19244,1.25937 +19312,1.27264 +19380,1.26006 +19448,1.21606 +19516,1.25704 +19584,1.2834 +19652,1.22804 +19720,1.2501 +19788,1.24444 +19856,1.24355 +19924,1.22228 +19992,1.17951 +20060,1.22622 +20128,1.25476 +20196,1.24191 +20264,1.23136 +20332,1.16331 +20400,1.22448 +20468,1.20383 +20536,1.17496 +20604,1.20441 +20672,1.19832 +20740,1.14461 +20808,1.1492 +20876,1.15135 +20944,1.17909 +21012,1.167 +21080,1.16685 +21148,1.12248 +21216,1.14732 +21284,1.09494 +21352,1.10097 +21420,1.15834 +21488,1.09811 +21556,1.12779 +21624,1.11798 +21692,1.09978 +21760,1.10789 +21828,1.13516 +21896,1.0591 +21964,1.06895 +22032,1.107 +22100,1.07422 +22168,1.11279 +22236,1.08626 +22304,1.0543 +22372,1.06988 +22440,1.07476 +22508,1.0212 +22576,1.06157 +22644,1.0698 +22712,1.08732 +22780,1.03317 +22848,1.00158 +22916,1.04319 +22984,1.12002 +23052,1.09882 +23120,1.08221 +23188,1.04569 +23256,1.01932 +23324,1.01792 +23392,1.02561 +23460,1.0646 +23528,1.00555 +23596,1.04637 +23664,1.00729 +23732,1.03272 +23800,0.960782 +23868,1.03173 +23936,1.00707 +24004,0.991369 +24072,0.997321 +24140,0.963362 +24208,1.03985 +24276,1.01116 +24344,1.00737 +24412,1.01442 +24480,0.932832 +24548,1.0197 +24616,0.949075 +24684,0.951 +24752,0.965833 +24820,0.906262 +24888,0.953105 +24956,0.961445 +25024,0.916557 +25092,0.960788 +25160,0.928639 +25228,0.951882 +25296,0.942192 +25364,0.862122 +25432,0.918751 +25500,0.962863 +25568,0.957083 +25636,0.950264 +25704,0.916981 +25772,0.90796 +25840,0.909265 +25908,0.921641 +25976,0.910707 +26044,0.91369 +26112,0.88646 +26180,0.876743 +26248,0.869305 +26316,0.867901 +26384,0.890826 +26452,0.902547 +26520,0.875041 +26588,0.926796 +26656,0.905997 +26724,0.849122 +26792,0.885421 +26860,0.862727 +26928,0.834071 +26996,0.904544 +27064,0.863516 +27132,0.82912 +27200,0.888741 +27268,0.816516 +27336,0.844622 +27404,0.764052 +27472,0.798086 +27540,0.869443 +27608,0.815987 +27676,0.779688 +27744,0.860186 +27812,0.834041 +27880,0.844006 +27948,0.770349 +28016,0.770445 +28084,0.810341 +28152,0.816399 +28220,0.806905 +28288,0.804751 +28356,0.841285 +28424,0.802379 +28492,0.750324 +28560,0.861867 +28628,0.803491 +28696,0.810152 +28764,0.856587 +28832,0.713594 +28900,0.774046 +28968,0.782271 +29036,0.784482 +29104,0.759502 +29172,0.736912 +29240,0.805992 +29308,0.756146 +29376,0.812803 +29444,0.784796 +29512,0.774945 +29580,0.811177 +29648,0.748769 +29716,0.744465 +29784,0.752537 +29852,0.713566 +29920,0.752513 +29988,0.785864 +30056,0.682645 +30124,0.759672 +30192,0.742922 +30260,0.694862 +30328,0.745245 +30396,0.761552 +30464,0.735489 +30532,0.692237 +30600,0.714103 +30668,0.725226 +30736,0.740985 +30804,0.729548 +30872,0.70234 +30940,0.724105 +31008,0.742707 +31076,0.736724 +31144,0.690512 +31212,0.665414 +31280,0.680347 +31348,0.66439 +31416,0.688261 +31484,0.718373 +31552,0.681338 +31620,0.659939 +31688,0.711795 +31756,0.672739 +31824,0.649012 +31892,0.691039 +31960,0.62417 +32028,0.673819 +32096,0.730447 +32164,0.629948 +32232,0.629739 +32300,0.653015 +32368,0.608503 +32436,0.70321 +32504,0.679744 +32572,0.638172 +32640,0.632136 +32708,0.606557 +32776,0.652282 +32844,0.630969 +32912,0.611804 +32980,0.588097 +33048,0.675131 +33116,0.670856 +33184,0.64605 +33252,0.62293 +33320,0.608678 +33388,0.660648 +33456,0.642272 +33524,0.62715 +33592,0.607628 +33660,0.582929 +33728,0.648521 +33796,0.634096 +33864,0.592281 +33932,0.657532 +34000,0.582846 +34068,0.612761 +34136,0.657459 +34204,0.609646 +34272,0.589639 +34340,0.55219 +34408,0.553418 +34476,0.579519 +34544,0.623654 +34612,0.59373 +34680,0.574867 +34748,0.58367 +34816,0.573116 +34884,0.568868 +34952,0.580413 +35020,0.596461 +35088,0.565641 +35156,0.547036 +35224,0.643079 +35292,0.601323 +35360,0.509792 +35428,0.562825 +35496,0.520428 +35564,0.567555 +35632,0.517418 +35700,0.582281 +35768,0.556613 +35836,0.609727 +35904,0.551167 +35972,0.57171 +36040,0.573048 +36108,0.562416 +36176,0.586257 +36244,0.576595 +36312,0.553639 +36380,0.563964 +36448,0.534061 +36516,0.52389 +36584,0.516754 +36652,0.584231 +36720,0.561117 +36788,0.555533 +36856,0.518542 +36924,0.522355 +36992,0.546325 +37060,0.565182 +37128,0.524906 +37196,0.502631 +37264,0.519846 +37332,0.504601 +37400,0.509311 +37468,0.531389 +37536,0.558293 +37604,0.510508 +37672,0.510008 +37740,0.501767 +37808,0.489386 +37876,0.538246 +37944,0.506649 +38012,0.494296 +38080,0.565852 +38148,0.470816 +38216,0.451417 +38284,0.531458 +38352,0.480027 +38420,0.543734 +38488,0.522643 +38556,0.435996 +38624,0.480489 +38692,0.4497 +38760,0.498299 +38828,0.502085 +38896,0.487887 +38964,0.477543 +39032,0.519372 +39100,0.504502 +39168,0.504046 +39236,0.471687 +39304,0.450534 +39372,0.455516 +39440,0.445863 +39508,0.484341 +39576,0.509531 +39644,0.497847 +39712,0.439999 +39780,0.450137 +39848,0.454592 +39916,0.496929 +39984,0.461734 +40052,0.415644 +40120,0.454292 +40188,0.468878 +40256,0.468605 +40324,0.463985 +40392,0.494821 +40460,0.469794 +40528,0.442898 +40596,0.452194 +40664,0.450567 +40732,0.406688 +40800,0.445169 +40868,0.429315 +40936,0.45554 +41004,0.46568 +41072,0.458157 +41140,0.467656 +41208,0.397798 +41276,0.399795 +41344,0.4376 +41412,0.406662 +41480,0.38341 +41548,0.375431 +41616,0.429809 +41684,0.400603 +41752,0.418165 +41820,0.419418 +41888,0.401192 +41956,0.414352 +42024,0.378117 +42092,0.429733 +42160,0.438316 +42228,0.405711 +42296,0.404137 +42364,0.439056 +42432,0.400436 +42500,0.44374 +42568,0.421354 +42636,0.436266 +42704,0.400987 +42772,0.37912 +42840,0.371527 +42908,0.368772 +42976,0.39066 +43044,0.358103 +43112,0.393937 +43180,0.410435 +43248,0.370181 +43316,0.352505 +43384,0.414479 +43452,0.400956 +43520,0.360304 +43588,0.34711 +43656,0.340219 +43724,0.351086 +43792,0.338686 +43860,0.422363 +43928,0.354104 +43996,0.403797 +44064,0.360353 +44132,0.373084 +44200,0.383317 +44268,0.38878 +44336,0.356764 +44404,0.358022 +44472,0.344555 +44540,0.373015 +44608,0.42777 +44676,0.334009 +44744,0.386454 +44812,0.374131 +44880,0.365646 +44948,0.374243 +45016,0.33527 +45084,0.374554 +45152,0.314307 +45220,0.344813 +45288,0.350421 +45356,0.347259 +45424,0.369481 +45492,0.335808 +45560,0.290946 +45628,0.352572 +45696,0.330244 +45764,0.324696 +45832,0.341531 +45900,0.344853 +45968,0.363468 +46036,0.367564 +46104,0.282314 +46172,0.342564 +46240,0.310796 +46308,0.321692 +46376,0.331782 +46444,0.301475 +46512,0.290369 +46580,0.346682 +46648,0.353257 +46716,0.310675 +46784,0.327706 +46852,0.345829 +46920,0.2999 +46988,0.37738 +47056,0.311142 +47124,0.302747 +47192,0.320916 +47260,0.312893 +47328,0.30783 +47396,0.293991 +47464,0.332851 +47532,0.313637 +47600,0.308504 +47668,0.349647 +47736,0.314568 +47804,0.288179 +47872,0.317487 +47940,0.337878 +48008,0.336231 +48076,0.258525 +48144,0.31937 +48212,0.298005 +48280,0.274941 +48348,0.315599 +48416,0.338849 +48484,0.290889 +48552,0.299775 +48620,0.308822 +48688,0.297632 +48756,0.289555 +48824,0.295334 +48892,0.26777 +48960,0.296453 +49028,0.299801 +49096,0.255258 +49164,0.295276 +49232,0.294248 +49300,0.268378 +49368,0.274654 +49436,0.263714 +49504,0.308634 +49572,0.259441 +49640,0.285293 +49708,0.297315 +49776,0.323363 +49844,0.261514 +49912,0.27159 +49980,0.295363 +50048,0.295234 +50116,0.319815 +50184,0.24363 +50252,0.243233 +50320,0.252353 +50388,0.267237 +50456,0.264668 +50524,0.232398 +50592,0.26717 +50660,0.284959 +50728,0.229299 +50796,0.244987 +50864,0.214383 +50932,0.24654 +51000,0.288427 +51068,0.240716 +51136,0.256116 +51204,0.273693 +51272,0.25541 +51340,0.232875 +51408,0.24638 +51476,0.224201 +51544,0.249904 +51612,0.27175 +51680,0.240225 +51748,0.258443 +51816,0.216008 +51884,0.227095 +51952,0.282375 +52020,0.265377 +52088,0.242751 +52156,0.27175 +52224,0.248121 +52292,0.298432 +52360,0.217581 +52428,0.265682 +52496,0.218995 +52564,0.217913 +52632,0.266323 +52700,0.233625 +52768,0.254456 +52836,0.247939 +52904,0.208898 +52972,0.265948 +53040,0.278958 +53108,0.2194 +53176,0.268282 +53244,0.217306 +53312,0.276633 +53380,0.216323 +53448,0.201048 +53516,0.211477 +53584,0.250613 +53652,0.253979 +53720,0.255755 +53788,0.248464 +53856,0.178995 +53924,0.241602 +53992,0.22797 +54060,0.296901 +54128,0.243428 +54196,0.249483 +54264,0.205349 +54332,0.221921 +54400,0.225112 +54468,0.242844 +54536,0.198376 +54604,0.144888 +54672,0.180316 +54740,0.264181 +54808,0.17831 +54876,0.280357 +54944,0.192269 +55012,0.229326 +55080,0.212083 +55148,0.235464 +55216,0.218921 +55284,0.226277 +55352,0.203515 +55420,0.263173 +55488,0.184936 +55556,0.20878 +55624,0.188255 +55692,0.216466 +55760,0.157081 +55828,0.167644 +55896,0.258766 +55964,0.191712 +56032,0.217338 +56100,0.130047 +56168,0.197747 +56236,0.227735 +56304,0.153173 +56372,0.239247 +56440,0.226404 +56508,0.187862 +56576,0.19678 +56644,0.236762 +56712,0.148052 +56780,0.200393 +56848,0.193802 +56916,0.203684 +56984,0.17392 +57052,0.204007 +57120,0.218115 +57188,0.205736 +57256,0.224279 +57324,0.182384 +57392,0.290658 +57460,0.236896 +57528,0.203456 +57596,0.183888 +57664,0.21919 +57732,0.209041 +57800,0.172825 +57868,0.17294 +57936,0.231651 +58004,0.194593 +58072,0.228557 +58140,0.188801 +58208,0.155637 +58276,0.159736 +58344,0.188802 +58412,0.174454 +58480,0.266925 +58548,0.136456 +58616,0.189218 +58684,0.234394 +58752,0.195508 +58820,0.134971 +58888,0.184829 +58956,0.244172 +59024,0.171915 +59092,0.216125 +59160,0.172573 +59228,0.165354 +59296,0.174499 +59364,0.150879 +59432,0.166823 +59500,0.14869 +59568,0.190545 +59636,0.198173 +59704,0.175402 +59772,0.171356 +59840,0.220495 +59908,0.147028 +59976,0.143466 +60044,0.141529 +60112,0.123626 +60180,0.14647 +60248,0.21808 +60316,0.188525 +60384,0.19284 +60452,0.161905 +60520,0.153062 +60588,0.178921 +60656,0.132499 +60724,0.125255 +60792,0.176551 +60860,0.200508 +60928,0.133013 +60996,0.168562 +61064,0.188487 +61132,0.172799 +61200,0.164715 +61268,0.204343 +61336,0.131182 +61404,0.193381 +61472,0.155901 +61540,0.152656 +61608,0.21013 +61676,0.12157 +61744,0.166299 +61812,0.144724 +61880,0.199086 +61948,0.221786 +62016,0.199144 +62084,0.13572 +62152,0.162771 +62220,0.124739 +62288,0.162609 +62356,0.14946 +62424,0.257382 +62492,0.107298 +62560,0.157717 +62628,0.100195 +62696,0.159965 +62764,0.134624 +62832,0.144079 +62900,0.146728 +62968,0.154512 +63036,0.150724 +63104,0.151681 +63172,0.167763 +63240,0.150604 +63308,0.181608 +63376,0.121335 +63444,0.220117 +63512,0.169595 +63580,0.149585 +63648,0.166577 +63716,0.140159 +63784,0.114057 +63852,0.152444 +63920,0.131504 +63988,0.123373 +64056,0.150291 +64124,0.0960939 +64192,0.123266 +64260,0.131643 +64328,0.117258 +64396,0.198241 +64464,0.16256 +64532,0.171331 +64600,0.0805295 +64668,0.0876092 +64736,0.0980803 +64804,0.118679 +64872,0.150414 +64940,0.146065 +65008,0.0901109 +65076,0.155176 +65144,0.158141 +65212,0.224074 +65280,0.104014 +65348,0.146131 +65416,0.142665 +65484,0.140111 +65552,0.150833 +65620,0.153189 +65688,0.188727 +65756,0.139631 +65824,0.190918 +65892,0.0917594 +65960,0.16265 +66028,0.20362 +66096,0.160608 +66164,0.112281 +66232,0.121623 +66300,0.148404 +66368,0.135996 +66436,0.162231 +66504,0.0976473 +66572,0.117695 +66640,0.0888807 +66708,0.099897 +66776,0.122448 +66844,0.112522 +66912,0.103963 +66980,0.0818168 +67048,0.134551 +67116,0.142514 +67184,0.151997 +67252,0.141264 +67320,0.127151 +67388,0.116193 +67456,0.115128 +67524,0.0661942 +67592,0.116823 +67660,0.102966 +67728,0.13749 +67796,0.112285 +67864,0.117227 +67932,0.0576011 +68000,0.122502 +68068,0.175282 +68136,0.139052 +68204,0.0247307 +68272,0.142978 +68340,0.124449 +68408,0.151563 +68476,0.16146 +68544,0.16403 +68612,0.0953138 +68680,0.0668341 +68748,0.177938 +68816,0.100667 +68884,0.110763 +68952,0.0977322 +69020,0.112382 +69088,0.0798384 +69156,0.105611 +69224,0.11079 +69292,0.119005 +69360,0.125889 +69428,0.0872875 +69496,0.122678 +69564,0.110528 +69632,0.10107 +69700,0.0900706 +69768,0.0532086 +69836,0.0979042 +69904,0.100588 +69972,0.0996897 +70040,0.102135 +70108,0.11401 +70176,0.043412 +70244,0.104459 +70312,0.0930329 +70380,0.151745 +70448,0.0758459 +70516,0.127262 +70584,0.114105 +70652,0.105425 +70720,0.0945586 +70788,0.0974189 +70856,0.119132 +70924,0.0922056 +70992,0.108946 +71060,0.118147 +71128,0.116949 +71196,0.0966684 +71264,0.116242 +71332,0.135542 +71400,0.107575 +71468,0.0995212 +71536,0.10345 +71604,0.145342 +71672,0.161553 +71740,0.0708556 +71808,0.110827 +71876,0.0958979 +71944,0.120438 +72012,0.062381 +72080,0.13913 +72148,0.0814011 +72216,0.0805848 +72284,0.125175 +72352,0.0713911 +72420,0.10702 +72488,0.0357798 +72556,0.00589919 +72624,0.0520666 +72692,0.115084 +72760,0.0854313 +72828,0.0778177 +72896,0.0666132 +72964,0.105457 +73032,0.0977597 +73100,0.0789205 +73168,0.0882485 +73236,0.0867208 +73304,0.0600164 +73372,0.130197 +73440,0.162172 +73508,0.104801 +73576,0.0202588 +73644,0.0652347 +73712,0.153858 +73780,0.0899229 +73848,0.0910967 +73916,0.142758 +73984,0.12391 +74052,0.126426 +74120,0.0637725 +74188,0.132038 +74256,0.129231 +74324,0.0852252 +74392,0.0946493 +74460,0.0385919 +74528,0.0912977 +74596,0.0749841 +74664,0.0935053 +74732,0.116984 +74800,0.103798 +74868,0.0693488 +74936,0.106126 +75004,0.0486378 +75072,0.110907 +75140,0.0627567 +75208,0.0748573 +75276,0.0419798 +75344,0.0979743 +75412,0.07975 +75480,0.130765 +75548,0.0849126 +75616,0.0842815 +75684,0.0979617 +75752,0.0593383 +75820,0.0995946 +75888,0.0303843 +75956,0.037613 +76024,0.120796 +76092,0.0647138 +76160,0.0383087 +76228,0.020863 +76296,0.0898673 +76364,0.0949391 +76432,0.119065 +76500,0.0451135 +76568,0.0979515 +76636,0.0642463 +76704,0.0819301 +76772,0.0858488 +76840,0.0311668 +76908,0.0924683 +76976,0.0934044 +77044,0.0545028 +77112,0.0920785 +77180,0.0624972 +77248,0.093597 +77316,0.0599436 +77384,0.0697493 +77452,0.046538 +77520,0.0880899 +77588,0.113915 +77656,0.0903953 +77724,0.0957049 +77792,0.0648621 +77860,0.0645157 +77928,0.0991138 +77996,0.0715288 +78064,0.0722303 +78132,0.0508069 +78200,0.0386418 +78268,0.0707422 +78336,0.0733514 +78404,0.0693256 +78472,0.0245157 +78540,0.0894191 +78608,0.0273842 +78676,0.00512192 +78744,0.0673858 +78812,0.0811739 +78880,0.0442974 +78948,0.0685451 +79016,0.123799 +79084,0.101281 +79152,0.0503026 +79220,0.0438237 +79288,0.0393737 +79356,0.102987 +79424,0.0712357 +79492,0.045032 +79560,0.0357466 +79628,0.101066 +79696,0.0438269 +79764,0.093206 +79832,-0.0140931 +79900,0.0855544 +79968,0.0493431 +80036,0.0826428 +80104,0.0406465 +80172,0.0380189 +80240,0.0578886 +80308,0.0921283 +80376,0.0936362 +80444,0.0799944 +80512,0.024178 +80580,0.10881 +80648,0.0710062 +80716,0.0376356 +80784,0.0226879 +80852,0.0725682 +80920,-0.005787 +80988,0.0614971 +81056,0.0619194 +81124,0.0770826 +81192,0.106429 +81260,0.0726407 +81328,0.0362204 +81396,0.0727019 +81464,0.0419491 +81532,0.0655342 +81600,0.0850935 +81668,0.0452051 +81736,0.0496351 +81804,0.0758229 +81872,0.0427647 +81940,0.08823 +82008,0.0253623 +82076,0.0679577 +82144,0.0471042 +82212,0.0615623 +82280,0.105665 +82348,0.081368 +82416,0.0957406 +82484,0.0731953 +82552,0.0514781 +82620,0.0992247 +82688,-0.00218974 +82756,0.0324628 +82824,0.0234061 +82892,0.0462705 +82960,0.135922 +83028,0.106967 +83096,0.109653 +83164,0.0315567 +83232,0.043754 +83300,0.0740641 +83368,0.0237476 +83436,0.0695703 +83504,0.0689878 +83572,0.0724751 +83640,0.094431 +83708,0.0493746 +83776,0.0687875 +83844,0.0435604 +83912,0.0225515 +83980,0.0969883 +84048,0.033347 +84116,0.0200634 +84184,0.0176121 +84252,0.0470715 +84320,0.0825809 +84388,0.0757371 +84456,0.027758 +84524,0.0762073 +84592,0.0641414 +84660,0.0574543 +84728,0.0640229 +84796,0.027646 +84864,0.033963 +84932,0.0499736 +85000,0.0968324 +85068,0.0476152 +85136,0.0365198 +85204,0.0228978 +85272,0.00936817 +85340,0.0922923 +85408,0.0200806 +85476,0.0384382 +85544,0.0165676 +85612,0.0691559 +85680,0.0577045 +85748,0.0424193 +85816,0.0383732 +85884,0.0433605 +85952,0.0880134 +86020,0.0406187 +86088,0.00113667 +86156,0.0355126 +86224,0.0208591 +86292,0.0621343 +86360,0.0102724 +86428,0.00780369 +86496,0.0641968 +86564,0.0576454 +86632,0.0660807 +86700,0.0340542 +86768,0.0410906 +86836,0.101397 +86904,0.034948 +86972,0.0220092 +87040,0.0465279 +87108,0.0519682 +87176,0.0287668 +87244,0.0663682 +87312,0.0467917 +87380,0.0993469 +87448,0.0780277 +87516,-0.0105285 +87584,0.0145108 +87652,0.0426281 +87720,0.042554 +87788,0.0070828 +87856,0.0870448 +87924,0.0186769 +87992,0.010707 +88060,0.03111 +88128,-0.00321133 +88196,-0.0176558 +88264,0.0609077 +88332,0.035895 +88400,0.0687459 +88468,0.0621265 +88536,0.0308819 +88604,-0.00219343 +88672,0.0287824 +88740,0.012608 +88808,0.047369 +88876,0.0335186 +88944,-0.004805 +89012,0.0517455 +89080,0.100816 +89148,0.110716 +89216,0.00198698 +89284,0.0751447 +89352,0.0352402 +89420,0.040971 +89488,0.0368047 +89556,-0.00612122 +89624,-0.00497161 +89692,0.0394093 +89760,0.0807732 +89828,0.0284337 +89896,0.101107 +89964,0.0479522 +90032,-0.0117702 +90100,0.0672415 +90168,0.00746494 +90236,0.0550486 +90304,0.0456467 +90372,0.095502 +90440,0.0122849 +90508,0.0206882 +90576,0.0454498 +90644,0.0414913 +90712,0.0147778 +90780,0.0805712 +90848,0.0546806 +90916,-0.0113689 +90984,0.0157695 +91052,0.0657993 +91120,0.0965513 +91188,0.0138459 +91256,0.0100291 +91324,0.0752681 +91392,0.0881514 +91460,0.0263826 +91528,0.0351739 +91596,0.0540402 +91664,0.0663234 +91732,0.0334966 +91800,-0.00549065 +91868,0.0340506 +91936,0.019114 +92004,0.0472034 +92072,0.00732325 +92140,0.0460486 +92208,0.0245152 +92276,0.0585035 +92344,0.04608 +92412,0.0117119 +92480,0.0506147 +92548,0.00302742 +92616,0.0519847 +92684,0.0642261 +92752,0.00264754 +92820,0.0447059 +92888,0.0335163 +92956,0.0315555 +93024,-0.00618094 +93092,0.0190621 +93160,0.00188062 +93228,-0.0119872 +93296,0.0123662 +93364,0.0290693 +93432,0.0398411 +93500,0.0522981 +93568,0.0486382 +93636,0.0522971 +93704,0.0183563 +93772,0.0358706 +93840,0.0132899 +93908,0.0401125 +93976,0.0363976 +94044,0.0208662 +94112,0.0544227 +94180,0.0762629 +94248,0.00684522 +94316,0.0732608 +94384,0.0526994 +94452,0.0251315 +94520,0.0158898 +94588,0.00955974 +94656,-0.00796038 +94724,0.0510086 +94792,0.0577699 +94860,0.037108 +94928,0.0062222 +94996,0.0617464 +95064,0.0431827 +95132,0.0580122 +95200,0.0201872 +95268,0.0655438 +95336,0.046616 +95404,-0.00578946 +95472,0.00746731 +95540,0.0226656 +95608,0.0152821 +95676,-0.00198037 +95744,0.0369031 +95812,0.0248888 +95880,-0.0387707 +95948,0.0618342 +96016,-0.00546343 +96084,0.0590313 +96152,0.0767275 +96220,0.0901653 +96288,-0.0182425 +96356,0.0381049 +96424,0.0517719 +96492,0.0178129 +96560,-0.0527771 +96628,-0.0321813 +96696,0.0305299 +96764,0.039821 +96832,-0.00643073 +96900,0.0634872 +96968,0.0564468 +97036,0.0867358 +97104,-0.00331322 +97172,-0.0141847 +97240,0.0353457 +97308,0.00851771 +97376,-0.0174904 +97444,0.0471532 +97512,0.0331194 +97580,0.0376229 +97648,0.0575542 +97716,0.0667412 +97784,0.0730612 +97852,0.0548616 +97920,0.0133397 +97988,0.0171773 +98056,0.00957762 +98124,-0.0169191 +98192,0.0230145 +98260,0.00474207 +98328,0.0864502 +98396,0.0210507 +98464,0.0359069 +98532,0.0533069 +98600,0.0252051 +98668,0.0265369 +98736,0.0751901 +98804,0.0529243 +98872,0.0431445 +98940,0.00105809 +99008,-0.0293368 +99076,0.077494 +99144,0.0433696 +99212,0.00136387 +99280,-0.0134566 +99348,0.0334645 +99416,-0.0455075 +99484,0.0243019 +99552,-0.0252003 +99620,0.0181079 +99688,-0.000985329 +99756,0.0152433 +99824,0.0179803 +99892,-0.0177905 +99960,0.0944649 +100028,0.0537475 +100096,0.0307199 +100164,0.0345267 +100232,0.0152329 +100300,0.0182187 +100368,0.0652339 +100436,0.0182392 +100504,0.0197499 +100572,0.0473903 +100640,0.00681055 +100708,0.0340446 +100776,0.0355019 +100844,0.0197557 +100912,4.33469e-005 +100980,-0.000886738 +101048,0.0689998 +101116,0.0319326 +101184,0.0234109 +101252,0.011736 +101320,0.00861314 +101388,0.021193 +101456,-0.00919217 +101524,-0.065524 +101592,0.0361012 +101660,-0.00189122 +101728,-0.00423649 +101796,-0.0427517 +101864,0.042379 +101932,-0.00907899 +102000,0.0120611 +102068,-0.0170277 +102136,0.0755008 +102204,-0.0151014 +102272,-0.0268458 +102340,0.0592261 +102408,0.0696185 +102476,0.0214198 +102544,0.0627728 +102612,0.0145942 +102680,0.0376083 +102748,0.0454446 +102816,0.0289971 +102884,0.0333542 +102952,0.0425364 +103020,0.0335161 +103088,0.0449705 +103156,0.0588148 +103224,0.0754729 +103292,0.0226877 +103360,-0.0276869 +103428,-0.0244392 +103496,0.0055676 +103564,-0.00426124 +103632,0.0114701 +103700,0.0877715 +103768,-0.00822163 +103836,0.0632146 +103904,0.0421384 +103972,0.0607983 +104040,0.0311313 +104108,-0.00170518 +104176,-0.0350603 +104244,0.0264121 +104312,-0.0140997 +104380,0.0157391 +104448,0.0080136 +104516,0.015971 +104584,0.0096073 +104652,0.0940296 +104720,-0.0136416 +104788,0.0517032 +104856,0.0185657 +104924,0.0166781 +104992,-0.0143455 +105060,0.0703041 +105128,0.0388331 +105196,0.0343168 +105264,0.0319014 +105332,0.0339751 +105400,-0.0257962 +105468,0.025471 +105536,-0.0232422 +105604,0.00811886 +105672,0.0269149 +105740,-0.00735104 +105808,0.0576582 +105876,0.0628343 +105944,0.0378323 +106012,-0.0156004 +106080,0.00483327 +106148,0.00894273 +106216,0.025956 +106284,0.00784738 +106352,0.0321805 +106420,0.0236609 +106488,0.0220402 +106556,-0.0249895 +106624,0.037603 +106692,0.054794 +106760,0.0203516 +106828,-0.0273839 +106896,0.0337759 +106964,-0.030772 +107032,0.0662301 +107100,0.0333777 +107168,0.0253102 +107236,0.0133258 +107304,0.0121545 +107372,-0.0091255 +107440,0.023259 +107508,0.0316968 +107576,0.0378293 +107644,0.0180041 +107712,-0.000314112 +107780,0.0731704 +107848,0.0195098 +107916,-0.0287042 +107984,0.0260008 +108052,-0.00945722 +108120,0.0391205 +108188,0.0359965 +108256,0.0356032 +108324,-0.0400938 +108392,0.0545526 +108460,-0.00754549 +108528,0.00894425 +108596,0.0371398 +108664,-0.00193526 +108732,0.0190723 +108800,0.00525595 +108868,-0.0104409 +108936,0.00582282 +109004,0.0196897 +109072,0.0649623 +109140,0.00688165 +109208,0.0421532 +109276,0.0466947 +109344,0.00716023 +109412,0.0057016 +109480,0.0239595 +109548,0.066697 +109616,0.0129892 +109684,0.0205604 +109752,0.00194653 +109820,0.0313533 +109888,-0.0047971 +109956,0.03416 +110024,0.00162524 +110092,0.0185256 +110160,-0.0256824 +110228,0.011675 +110296,0.0975739 +110364,-0.0203541 +110432,0.013767 +110500,-0.00637579 +110568,0.00083046 +110636,0.0303117 +110704,0.0700082 +110772,-0.0325147 +110840,-0.0302994 +110908,-0.0234307 +110976,0.0366986 +111044,0.0404613 +111112,-0.0086991 +111180,-0.019089 +111248,0.0344139 +111316,-0.0231379 +111384,0.00301001 +111452,0.00304322 +111520,0.0411414 +111588,0.0229409 +111656,0.0106408 +111724,0.0169174 +111792,-0.0081487 +111860,-0.0550189 +111928,0.0331309 +111996,0.0228625 +112064,0.00752663 +112132,-0.0287274 +112200,0.0364216 +112268,0.0378456 +112336,0.00041068 +112404,-0.0268263 +112472,0.0133705 +112540,0.0096382 +112608,0.0022316 +112676,0.00574599 +112744,-0.00407861 +112812,0.0536421 +112880,0.0343198 +112948,0.0427171 +113016,0.00292735 +113084,0.048036 +113152,0.0061843 +113220,0.00512952 +113288,-0.0248953 +113356,0.0387073 +113424,0.0229908 +113492,0.0530577 +113560,0.0393719 +113628,0.0443355 +113696,0.0340651 +113764,0.00820981 +113832,0.00706763 +113900,-0.0369298 +113968,0.0386782 +114036,-0.000236642 +114104,0.0149847 +114172,0.0186397 +114240,0.0104751 +114308,0.0378061 +114376,0.007998 +114444,-0.0657518 +114512,0.0544014 +114580,0.0358331 +114648,0.053492 +114716,0.0230668 +114784,0.024558 +114852,0.0289459 +114920,-0.0290666 +114988,-0.00164355 +115056,0.0425559 +115124,0.0425069 +115192,0.0166459 +115260,0.0133169 +115328,-0.0195779 +115396,0.0215505 +115464,0.0184012 +115532,0.00343179 +115600,-0.0356215 +115668,0.0695193 +115736,0.0224622 +115804,-0.0499225 +115872,0.0113828 +115940,-0.0306206 +116008,0.0880137 +116076,0.00701605 +116144,0.0769359 +116212,-0.00110177 +116280,0.0829516 +116348,0.00944262 +116416,0.0182281 +116484,-0.0111008 +116552,0.0459012 +116620,0.0137554 +116688,0.0791093 +116756,0.0753309 +116824,0.00646018 +116892,-0.055108 +116960,0.0580478 +117028,0.0710785 +117096,-0.0266855 +117164,0.0590788 +117232,0.0216799 +117300,0.089184 +117368,-0.00917645 +117436,0.0402349 +117504,0.0332236 +117572,0.025946 +117640,-0.0378862 +117708,0.0513223 +117776,0.0326679 +117844,0.0082857 +117912,-0.0378728 +117980,-0.0018308 +118048,0.0113558 +118116,-0.0166394 +118184,0.0716684 +118252,0.0125394 +118320,0.0303331 +118388,0.0106979 +118456,0.0284458 +118524,0.0512756 +118592,-0.0267639 +118660,-0.012457 +118728,-0.00600251 +118796,0.0199123 +118864,0.0610014 +118932,-0.0219686 +119000,0.0363128 +119068,0.0218378 +119136,0.0215089 +119204,0.0388441 +119272,0.00150511 +119340,0.00992916 +119408,-0.039682 +119476,-0.0142349 +119544,0.020178 +119612,-0.0701046 +119680,-0.00440604 +119748,0.0509089 +119816,0.000546715 +119884,0.026718 +119952,0.0402708 +120020,0.0281292 +120088,0.00800608 +120156,0.0209996 +120224,0.021469 +120292,-0.00739758 +120360,0.0129361 +120428,-0.0241352 +120496,0.0618066 +120564,0.0145877 +120632,0.0223858 +120700,0.0310036 +120768,0.0166971 +120836,-0.00464885 +120904,-0.00742336 +120972,0.0361941 +121040,0.0240463 +121108,0.0226393 +121176,0.00705028 +121244,0.00561206 +121312,0.00968742 +121380,-0.0243668 +121448,0.0187041 +121516,0.0120931 +121584,0.0572217 +121652,0.00160194 +121720,-0.0287864 +121788,0.048969 +121856,0.0206778 +121924,-0.00839642 +121992,-0.000511126 +122060,-0.00224314 +122128,-0.0342679 +122196,-0.00393876 +122264,-0.0131824 +122332,0.0179676 +122400,0.0216235 +122468,-0.0198812 +122536,-0.00786509 +122604,0.0449686 +122672,0.00665337 +122740,0.0195522 +122808,0.0212977 +122876,0.00121385 +122944,0.00656715 +123012,0.00904847 +123080,-0.0144517 +123148,0.0481376 +123216,0.060939 +123284,0.00583616 +123352,-0.00648266 +123420,-0.00298677 +123488,0.00471222 +123556,0.0187269 +123624,0.0772142 +123692,0.0167175 +123760,0.0282078 +123828,0.0316873 +123896,0.0353826 +123964,0.00957931 +124032,-0.0268664 +124100,-0.048982 +124168,0.0363206 +124236,0.0303742 +124304,9.50401e-005 +124372,0.0056719 +124440,0.0109974 +124508,-0.0363959 +124576,0.0224186 +124644,-0.0386391 +124712,0.0537043 +124780,-0.00476579 +124848,-0.0350193 +124916,-0.026445 +124984,0.0224463 +125052,0.0359889 +125120,-0.0570057 +125188,-0.0113291 +125256,0.018167 +125324,0.0214699 +125392,0.0425524 +125460,-0.026244 +125528,-0.0101242 +125596,-0.0213165 +125664,0.0208725 +125732,0.02503 +125800,-0.0167072 +125868,0.0601365 +125936,-0.0534872 +126004,-0.0101247 +126072,0.0480774 +126140,0.0215869 +126208,-0.00749838 +126276,0.0149129 +126344,-0.000376784 +126412,0.000701075 +126480,-0.0228022 +126548,0.0352912 +126616,0.00693259 +126684,0.00875628 +126752,-0.00861537 +126820,-0.0214332 +126888,-0.0164472 +126956,-0.00530587 +127024,-0.0143011 +127092,0.00185972 +127160,-0.00847977 +127228,0.0325718 +127296,0.0463524 +127364,-0.0101312 +127432,-0.0050541 +127500,-0.0108461 +127568,-0.00933468 +127636,0.0349233 +127704,0.0218701 +127772,0.0316317 +127840,0.0250157 +127908,0.0139788 +127976,0.0112979 +128044,0.0389549 +128112,-0.0374939 +128180,0.04605 +128248,0.036164 +128316,-0.0169812 +128384,-0.00980188 +128452,-0.0101266 +128520,-0.00139754 +128588,-0.0413177 +128656,-0.0535933 +128724,0.047452 +128792,0.0048358 +128860,-0.0121596 +128928,-0.0282495 +128996,-0.0275648 +129064,0.0679635 +129132,-0.0398346 +129200,-0.033686 +129268,0.0268492 +129336,0.0183765 +129404,0.0409101 +129472,0.0185182 +129540,-0.0427125 +129608,0.0288878 +129676,-0.012161 +129744,0.0204162 +129812,-0.00989202 +129880,0.0190357 +129948,-0.0176892 +130016,0.0533508 +130084,0.0230133 +130152,0.0593857 +130220,-0.00639672 +130288,-0.00197069 +130356,0.0360174 +130424,-0.00714666 +130492,-0.0640781 +130560,-0.0134584 +130628,-0.0452976 +130696,0.0161394 +130764,-0.0296801 +130832,-0.0585341 +130900,-0.0132228 +130968,0.00634283 +131036,-0.00234218 +131104,0.036834 +131172,0.0345332 +131240,0.00990878 +131308,0.0337958 +131376,-0.0157991 +131444,-0.00266966 +131512,0.062886 +131580,0.0157934 +131648,0.0359813 +131716,0.0152339 +131784,-0.00801281 +131852,0.00593783 +131920,0.00762752 +131988,-0.0507222 +132056,-0.0418953 +132124,-0.00339432 +132192,0.042381 +132260,0.0355931 +132328,-0.00471346 +132396,-0.0431788 +132464,0.0227382 +132532,-0.0141659 +132600,0.0240573 +132668,0.0195323 +132736,-0.026046 +132804,-0.0219149 +132872,0.0164797 +132940,-0.00682628 +133008,0.0223429 +133076,0.0182061 +133144,-0.0230053 +133212,0.023751 +133280,-0.0137238 +133348,0.00510352 +133416,0.028373 +133484,-0.0821461 +133552,0.00215333 +133620,0.011773 +133688,-0.0145786 +133756,0.0462626 +133824,-0.0212072 +133892,0.0477702 +133960,0.0500135 +134028,-0.0320832 +134096,0.0267829 +134164,-0.00809794 +134232,0.0209447 +134300,0.0226877 +134368,0.0192577 +134436,-0.0238953 +134504,0.0337685 +134572,-0.0238154 +134640,-0.0310293 +134708,0.00821621 +134776,-0.0280874 +134844,-0.00116924 +134912,0.00632015 +134980,0.00372206 +135048,0.000935641 +135116,0.0150511 +135184,0.0302647 +135252,-0.0250847 +135320,0.0120919 +135388,-0.0647739 +135456,0.0139566 +135524,0.0341847 +135592,-0.00740892 +135660,0.0181055 +135728,0.0324295 +135796,-0.00140196 +135864,0.0236988 +135932,0.00164232 +136000,0.0292554 diff --git a/example_data/bgr/MouseCPMG/CPMG/5/acqu.par b/example_data/bgr/MouseCPMG/CPMG/5/acqu.par new file mode 100644 index 0000000..7158727 --- /dev/null +++ b/example_data/bgr/MouseCPMG/CPMG/5/acqu.par @@ -0,0 +1,37 @@ +90Amplitude = -7 +180Amplitude = 0 +accumulate = "yes" +acqTime = 0.016 +alpha = 0.1 +autoPhase = "yes" +autoPhase = "yes" +b1Freq = 13.24d +bandwidth = 2e+003 +dataDirectory = "C:\Costabel.S\Desktop\NMR-Mouse Data\GnaSamples2023_orig" +dwellTime = 0.5 +echoShift = 0.7 +echoTime = 68 +experiment = "CPMG" +expName = "CPMG" +expNr = 5 +filter = "no" +filterType = "sinebellsquared" +fitType = "exp" +flatFilter = "no" +incExpNr = "yes" +normalize = "no" +nrEchoes = 1000 +nrPnts = 32 +nrScans = 16 +position = [28,470] +pulseLength = 12.5 +repTime = 8000 +rxGain = 31 +rxPhase = 0 +saveData = "true" +sumEchoes = "yes" +timeMag = "no" +usePhaseCycle = "yes" +windowSize = "small" +x_maximum = 100 +x_minimum = 0.2 diff --git a/example_data/bgr/MouseCPMG/CPMG/5/data.csv b/example_data/bgr/MouseCPMG/CPMG/5/data.csv new file mode 100644 index 0000000..9c03428 --- /dev/null +++ b/example_data/bgr/MouseCPMG/CPMG/5/data.csv @@ -0,0 +1,1000 @@ +68,1.52756 +136,1.83104 +204,1.73568 +272,1.63777 +340,1.57905 +408,1.42804 +476,1.48169 +544,1.36099 +612,1.36351 +680,1.28224 +748,1.19992 +816,1.18228 +884,1.17048 +952,1.13744 +1020,1.16871 +1088,1.14845 +1156,1.07645 +1224,1.10882 +1292,1.02482 +1360,1.00869 +1428,0.960021 +1496,1.01012 +1564,0.965556 +1632,0.951269 +1700,0.940059 +1768,1.03008 +1836,0.880089 +1904,0.959906 +1972,0.921836 +2040,0.959994 +2108,0.858922 +2176,0.919798 +2244,0.933117 +2312,0.880537 +2380,0.792431 +2448,0.844867 +2516,0.886868 +2584,0.817978 +2652,0.786098 +2720,0.76886 +2788,0.801647 +2856,0.791784 +2924,0.791854 +2992,0.860383 +3060,0.678298 +3128,0.787486 +3196,0.745987 +3264,0.705277 +3332,0.678521 +3400,0.831119 +3468,0.747098 +3536,0.776238 +3604,0.664339 +3672,0.699566 +3740,0.743075 +3808,0.652455 +3876,0.702068 +3944,0.623566 +4012,0.604545 +4080,0.676618 +4148,0.655375 +4216,0.693861 +4284,0.683624 +4352,0.647161 +4420,0.622262 +4488,0.665004 +4556,0.61989 +4624,0.690927 +4692,0.647965 +4760,0.616854 +4828,0.659448 +4896,0.605558 +4964,0.608523 +5032,0.640284 +5100,0.618173 +5168,0.643378 +5236,0.575358 +5304,0.53862 +5372,0.626927 +5440,0.619101 +5508,0.610591 +5576,0.534345 +5644,0.546673 +5712,0.59097 +5780,0.577787 +5848,0.591095 +5916,0.573859 +5984,0.559557 +6052,0.571374 +6120,0.512278 +6188,0.498424 +6256,0.492562 +6324,0.548561 +6392,0.503696 +6460,0.579704 +6528,0.546149 +6596,0.580385 +6664,0.551974 +6732,0.600307 +6800,0.549265 +6868,0.552114 +6936,0.506646 +7004,0.521585 +7072,0.568421 +7140,0.549198 +7208,0.524317 +7276,0.508842 +7344,0.513015 +7412,0.559967 +7480,0.482097 +7548,0.567539 +7616,0.579139 +7684,0.521763 +7752,0.51595 +7820,0.480655 +7888,0.488737 +7956,0.552838 +8024,0.487806 +8092,0.525966 +8160,0.381741 +8228,0.538545 +8296,0.530789 +8364,0.555909 +8432,0.507476 +8500,0.495339 +8568,0.409824 +8636,0.454285 +8704,0.512507 +8772,0.520042 +8840,0.447254 +8908,0.45686 +8976,0.530322 +9044,0.489712 +9112,0.466708 +9180,0.425663 +9248,0.477301 +9316,0.503045 +9384,0.512822 +9452,0.492721 +9520,0.487344 +9588,0.435984 +9656,0.531641 +9724,0.484063 +9792,0.500924 +9860,0.461994 +9928,0.482303 +9996,0.491651 +10064,0.513034 +10132,0.460549 +10200,0.512294 +10268,0.474805 +10336,0.467455 +10404,0.478492 +10472,0.466364 +10540,0.418758 +10608,0.472563 +10676,0.445992 +10744,0.403753 +10812,0.549241 +10880,0.477358 +10948,0.471252 +11016,0.506091 +11084,0.445147 +11152,0.411011 +11220,0.436148 +11288,0.473532 +11356,0.460658 +11424,0.380426 +11492,0.441308 +11560,0.456299 +11628,0.405917 +11696,0.382628 +11764,0.434788 +11832,0.408557 +11900,0.425401 +11968,0.419379 +12036,0.40657 +12104,0.502978 +12172,0.371697 +12240,0.396199 +12308,0.451639 +12376,0.41436 +12444,0.354799 +12512,0.421594 +12580,0.351468 +12648,0.389563 +12716,0.443774 +12784,0.418373 +12852,0.413081 +12920,0.434521 +12988,0.377441 +13056,0.3903 +13124,0.442162 +13192,0.384529 +13260,0.484782 +13328,0.378798 +13396,0.390049 +13464,0.379522 +13532,0.462071 +13600,0.40664 +13668,0.312402 +13736,0.454347 +13804,0.448849 +13872,0.412186 +13940,0.371591 +14008,0.406149 +14076,0.444601 +14144,0.427609 +14212,0.375444 +14280,0.429259 +14348,0.339474 +14416,0.448381 +14484,0.376005 +14552,0.343003 +14620,0.39174 +14688,0.371085 +14756,0.396088 +14824,0.369877 +14892,0.444567 +14960,0.399792 +15028,0.409615 +15096,0.387823 +15164,0.440601 +15232,0.372459 +15300,0.432594 +15368,0.378588 +15436,0.381391 +15504,0.385805 +15572,0.440999 +15640,0.343866 +15708,0.342384 +15776,0.37289 +15844,0.365272 +15912,0.398305 +15980,0.310219 +16048,0.329895 +16116,0.423774 +16184,0.390344 +16252,0.348319 +16320,0.367755 +16388,0.350298 +16456,0.3828 +16524,0.380911 +16592,0.359405 +16660,0.38616 +16728,0.39996 +16796,0.413415 +16864,0.452125 +16932,0.359809 +17000,0.392375 +17068,0.331001 +17136,0.324931 +17204,0.327252 +17272,0.377466 +17340,0.389521 +17408,0.397056 +17476,0.374218 +17544,0.372562 +17612,0.376995 +17680,0.388529 +17748,0.356876 +17816,0.332718 +17884,0.32493 +17952,0.339375 +18020,0.267761 +18088,0.377078 +18156,0.326445 +18224,0.296874 +18292,0.359806 +18360,0.273794 +18428,0.339112 +18496,0.310111 +18564,0.378968 +18632,0.316396 +18700,0.317246 +18768,0.306404 +18836,0.358139 +18904,0.339489 +18972,0.358737 +19040,0.336357 +19108,0.343953 +19176,0.361158 +19244,0.363568 +19312,0.29906 +19380,0.384474 +19448,0.418523 +19516,0.26284 +19584,0.384518 +19652,0.34386 +19720,0.260851 +19788,0.288137 +19856,0.305988 +19924,0.322186 +19992,0.373292 +20060,0.302798 +20128,0.207977 +20196,0.262736 +20264,0.307053 +20332,0.374483 +20400,0.310187 +20468,0.359164 +20536,0.335836 +20604,0.365666 +20672,0.377673 +20740,0.319523 +20808,0.283967 +20876,0.32301 +20944,0.347946 +21012,0.267152 +21080,0.326012 +21148,0.270332 +21216,0.325853 +21284,0.320257 +21352,0.387867 +21420,0.297742 +21488,0.270068 +21556,0.266989 +21624,0.349159 +21692,0.2959 +21760,0.308587 +21828,0.349778 +21896,0.329745 +21964,0.290085 +22032,0.354396 +22100,0.289063 +22168,0.31986 +22236,0.30645 +22304,0.308359 +22372,0.247172 +22440,0.354416 +22508,0.330203 +22576,0.303252 +22644,0.275255 +22712,0.254165 +22780,0.311244 +22848,0.310261 +22916,0.257604 +22984,0.233893 +23052,0.28612 +23120,0.222836 +23188,0.334948 +23256,0.274535 +23324,0.259583 +23392,0.28075 +23460,0.285643 +23528,0.260327 +23596,0.307454 +23664,0.337611 +23732,0.312247 +23800,0.319852 +23868,0.275471 +23936,0.278429 +24004,0.265963 +24072,0.334715 +24140,0.19347 +24208,0.294053 +24276,0.318968 +24344,0.313914 +24412,0.318379 +24480,0.237409 +24548,0.248658 +24616,0.29718 +24684,0.271746 +24752,0.317914 +24820,0.305553 +24888,0.254992 +24956,0.276794 +25024,0.235117 +25092,0.273929 +25160,0.243851 +25228,0.30975 +25296,0.307332 +25364,0.263168 +25432,0.220545 +25500,0.166114 +25568,0.335501 +25636,0.213023 +25704,0.237515 +25772,0.270791 +25840,0.31351 +25908,0.295992 +25976,0.219413 +26044,0.224347 +26112,0.243256 +26180,0.236318 +26248,0.291054 +26316,0.314848 +26384,0.207398 +26452,0.271035 +26520,0.338174 +26588,0.248342 +26656,0.247457 +26724,0.296116 +26792,0.285306 +26860,0.201894 +26928,0.305343 +26996,0.208891 +27064,0.312881 +27132,0.219418 +27200,0.297688 +27268,0.293389 +27336,0.27952 +27404,0.292451 +27472,0.263727 +27540,0.290728 +27608,0.223984 +27676,0.186968 +27744,0.298235 +27812,0.249983 +27880,0.374111 +27948,0.261611 +28016,0.283501 +28084,0.270304 +28152,0.278423 +28220,0.263084 +28288,0.223084 +28356,0.238365 +28424,0.19778 +28492,0.255097 +28560,0.262941 +28628,0.213941 +28696,0.298051 +28764,0.247168 +28832,0.210671 +28900,0.311339 +28968,0.255877 +29036,0.169998 +29104,0.226638 +29172,0.182043 +29240,0.245267 +29308,0.198827 +29376,0.242857 +29444,0.271283 +29512,0.262945 +29580,0.240721 +29648,0.238438 +29716,0.23935 +29784,0.257492 +29852,0.179437 +29920,0.193151 +29988,0.25181 +30056,0.300741 +30124,0.208134 +30192,0.280299 +30260,0.252317 +30328,0.324871 +30396,0.268976 +30464,0.275535 +30532,0.241075 +30600,0.264025 +30668,0.232046 +30736,0.282098 +30804,0.241538 +30872,0.269675 +30940,0.2496 +31008,0.204825 +31076,0.230073 +31144,0.250464 +31212,0.222057 +31280,0.279505 +31348,0.219928 +31416,0.249918 +31484,0.226727 +31552,0.273013 +31620,0.214012 +31688,0.232364 +31756,0.231758 +31824,0.290636 +31892,0.23488 +31960,0.23894 +32028,0.171228 +32096,0.248286 +32164,0.22884 +32232,0.307551 +32300,0.186094 +32368,0.311207 +32436,0.212379 +32504,0.219136 +32572,0.236569 +32640,0.146735 +32708,0.277301 +32776,0.181342 +32844,0.233709 +32912,0.191085 +32980,0.209462 +33048,0.197538 +33116,0.22964 +33184,0.160275 +33252,0.205199 +33320,0.248657 +33388,0.244384 +33456,0.308904 +33524,0.22731 +33592,0.203063 +33660,0.323418 +33728,0.297544 +33796,0.243734 +33864,0.239833 +33932,0.171394 +34000,0.283966 +34068,0.20358 +34136,0.306018 +34204,0.252432 +34272,0.23774 +34340,0.224075 +34408,0.239074 +34476,0.191178 +34544,0.227547 +34612,0.219324 +34680,0.259533 +34748,0.249592 +34816,0.191724 +34884,0.279566 +34952,0.312122 +35020,0.215135 +35088,0.294462 +35156,0.26354 +35224,0.158759 +35292,0.255953 +35360,0.241306 +35428,0.228963 +35496,0.271078 +35564,0.217974 +35632,0.224454 +35700,0.250752 +35768,0.137659 +35836,0.248243 +35904,0.188096 +35972,0.172097 +36040,0.226577 +36108,0.144687 +36176,0.215729 +36244,0.235476 +36312,0.210557 +36380,0.167089 +36448,0.21819 +36516,0.227277 +36584,0.214868 +36652,0.247991 +36720,0.216095 +36788,0.22896 +36856,0.252531 +36924,0.242233 +36992,0.194526 +37060,0.177897 +37128,0.188398 +37196,0.137448 +37264,0.134505 +37332,0.185675 +37400,0.248054 +37468,0.208166 +37536,0.233572 +37604,0.19854 +37672,0.20253 +37740,0.259636 +37808,0.19626 +37876,0.266213 +37944,0.191966 +38012,0.205904 +38080,0.161482 +38148,0.2101 +38216,0.205003 +38284,0.179676 +38352,0.291129 +38420,0.236531 +38488,0.206711 +38556,0.262753 +38624,0.195657 +38692,0.195683 +38760,0.223783 +38828,0.131987 +38896,0.237626 +38964,0.20478 +39032,0.160783 +39100,0.1589 +39168,0.227556 +39236,0.2401 +39304,0.218906 +39372,0.199409 +39440,0.226931 +39508,0.19787 +39576,0.200071 +39644,0.170409 +39712,0.226072 +39780,0.181129 +39848,0.253851 +39916,0.233879 +39984,0.197097 +40052,0.242129 +40120,0.226114 +40188,0.168117 +40256,0.226636 +40324,0.16673 +40392,0.251806 +40460,0.223121 +40528,0.200516 +40596,0.246725 +40664,0.223982 +40732,0.227915 +40800,0.151725 +40868,0.220691 +40936,0.240793 +41004,0.248264 +41072,0.246603 +41140,0.199945 +41208,0.154642 +41276,0.217327 +41344,0.272226 +41412,0.176358 +41480,0.183777 +41548,0.173797 +41616,0.152188 +41684,0.215129 +41752,0.175134 +41820,0.224562 +41888,0.241203 +41956,0.243273 +42024,0.171879 +42092,0.192406 +42160,0.226759 +42228,0.200262 +42296,0.324542 +42364,0.277802 +42432,0.17118 +42500,0.144344 +42568,0.265889 +42636,0.176855 +42704,0.20685 +42772,0.179129 +42840,0.144116 +42908,0.140913 +42976,0.22925 +43044,0.155902 +43112,0.201166 +43180,0.0879425 +43248,0.191102 +43316,0.225762 +43384,0.098584 +43452,0.128927 +43520,0.222639 +43588,0.172436 +43656,0.264402 +43724,0.161 +43792,0.151873 +43860,0.157838 +43928,0.306604 +43996,0.242046 +44064,0.20318 +44132,0.181424 +44200,0.173175 +44268,0.234433 +44336,0.205811 +44404,0.208599 +44472,0.168189 +44540,0.131468 +44608,0.171943 +44676,0.195442 +44744,0.243729 +44812,0.0997545 +44880,0.144496 +44948,0.192849 +45016,0.233979 +45084,0.188184 +45152,0.132047 +45220,0.243921 +45288,0.12141 +45356,0.212758 +45424,0.203593 +45492,0.225781 +45560,0.153721 +45628,0.168752 +45696,0.189939 +45764,0.18073 +45832,0.208915 +45900,0.181536 +45968,0.226424 +46036,0.103312 +46104,0.239088 +46172,0.126397 +46240,0.149764 +46308,0.1622 +46376,0.242547 +46444,0.103052 +46512,0.203703 +46580,0.197238 +46648,0.225574 +46716,0.208909 +46784,0.234715 +46852,0.204677 +46920,0.220353 +46988,0.11282 +47056,0.208972 +47124,0.178181 +47192,0.246297 +47260,0.139256 +47328,0.258282 +47396,0.0932549 +47464,0.204289 +47532,0.194715 +47600,0.143515 +47668,0.214925 +47736,0.190597 +47804,0.16834 +47872,0.120485 +47940,0.107127 +48008,0.192369 +48076,0.134561 +48144,0.132083 +48212,0.146627 +48280,0.257828 +48348,0.157475 +48416,0.164973 +48484,0.209825 +48552,0.181699 +48620,0.192048 +48688,0.204256 +48756,0.133213 +48824,0.149668 +48892,0.137161 +48960,0.183778 +49028,0.231553 +49096,0.167197 +49164,0.190403 +49232,0.18777 +49300,0.174833 +49368,0.186247 +49436,0.115495 +49504,0.162904 +49572,0.132009 +49640,0.185544 +49708,0.157059 +49776,0.119311 +49844,0.167575 +49912,0.171346 +49980,0.172811 +50048,0.116513 +50116,0.246418 +50184,0.202999 +50252,0.129293 +50320,0.16287 +50388,0.123615 +50456,0.127793 +50524,0.116198 +50592,0.1171 +50660,0.117451 +50728,0.0905135 +50796,0.0826032 +50864,0.156561 +50932,0.200505 +51000,0.196392 +51068,0.248053 +51136,0.126172 +51204,0.192205 +51272,0.0963272 +51340,0.094865 +51408,0.106202 +51476,0.0851723 +51544,0.264776 +51612,0.181796 +51680,0.117069 +51748,0.11977 +51816,0.140135 +51884,0.146244 +51952,0.192861 +52020,0.132036 +52088,0.229213 +52156,0.196074 +52224,0.161745 +52292,0.195237 +52360,0.126022 +52428,0.17934 +52496,0.166725 +52564,0.153494 +52632,0.0236736 +52700,0.162452 +52768,0.215244 +52836,0.209163 +52904,0.105867 +52972,0.209702 +53040,0.19856 +53108,0.11669 +53176,0.163377 +53244,0.131864 +53312,0.135196 +53380,0.183192 +53448,0.190564 +53516,0.176071 +53584,0.226986 +53652,0.117206 +53720,0.0881134 +53788,0.182396 +53856,0.117262 +53924,0.12676 +53992,0.122062 +54060,0.237413 +54128,0.185869 +54196,0.17939 +54264,0.15883 +54332,0.207208 +54400,0.18541 +54468,0.149793 +54536,0.190511 +54604,0.107679 +54672,0.155633 +54740,0.184079 +54808,0.0941697 +54876,0.158338 +54944,0.19152 +55012,0.130905 +55080,0.128779 +55148,0.112009 +55216,0.139439 +55284,0.167363 +55352,0.0784236 +55420,0.125969 +55488,0.145824 +55556,0.178922 +55624,0.177369 +55692,0.165459 +55760,0.187118 +55828,0.149354 +55896,0.174066 +55964,0.194864 +56032,0.178513 +56100,0.210778 +56168,0.0924008 +56236,0.141187 +56304,0.19432 +56372,0.107708 +56440,0.137836 +56508,0.126983 +56576,0.0515897 +56644,0.136423 +56712,0.227611 +56780,0.140517 +56848,0.136231 +56916,0.142659 +56984,0.191306 +57052,0.143773 +57120,0.166245 +57188,0.0546979 +57256,0.168857 +57324,0.129709 +57392,0.142582 +57460,0.153531 +57528,0.15882 +57596,0.155857 +57664,0.137913 +57732,0.220936 +57800,0.204923 +57868,0.172782 +57936,0.139819 +58004,0.129962 +58072,0.130509 +58140,0.13869 +58208,0.146513 +58276,0.158391 +58344,0.166464 +58412,0.0843537 +58480,0.0891998 +58548,0.128558 +58616,0.150365 +58684,0.15497 +58752,0.205358 +58820,0.186507 +58888,0.0719392 +58956,0.115996 +59024,0.170279 +59092,0.161329 +59160,0.106081 +59228,0.196739 +59296,0.206682 +59364,0.0841141 +59432,0.121394 +59500,0.161874 +59568,0.047791 +59636,0.161933 +59704,0.155698 +59772,0.106161 +59840,0.0720572 +59908,0.15036 +59976,0.110421 +60044,0.145127 +60112,0.137209 +60180,0.114212 +60248,0.145426 +60316,0.155602 +60384,0.113656 +60452,0.106439 +60520,0.0884549 +60588,0.104783 +60656,0.163681 +60724,0.129181 +60792,0.175565 +60860,0.191945 +60928,0.0895559 +60996,0.0887708 +61064,0.207276 +61132,0.110707 +61200,0.136144 +61268,0.119417 +61336,0.114863 +61404,0.130804 +61472,0.135259 +61540,0.133947 +61608,0.141026 +61676,0.133288 +61744,0.149861 +61812,0.132294 +61880,0.104327 +61948,0.129583 +62016,0.134797 +62084,0.163191 +62152,0.142889 +62220,0.137258 +62288,0.159091 +62356,0.163767 +62424,0.10434 +62492,0.13788 +62560,0.145221 +62628,0.131678 +62696,0.203496 +62764,0.107774 +62832,0.0924643 +62900,0.147422 +62968,0.193511 +63036,0.207863 +63104,0.140007 +63172,0.181996 +63240,0.164396 +63308,0.138781 +63376,0.119063 +63444,0.145125 +63512,0.113779 +63580,0.190229 +63648,0.10882 +63716,0.162647 +63784,0.0697 +63852,0.137334 +63920,0.183766 +63988,0.0949972 +64056,0.163021 +64124,0.118949 +64192,0.177748 +64260,0.15792 +64328,0.107674 +64396,0.0982465 +64464,0.140029 +64532,0.152612 +64600,0.10367 +64668,0.146764 +64736,0.153816 +64804,0.105558 +64872,0.0703872 +64940,0.15982 +65008,0.0853571 +65076,0.18215 +65144,0.0426569 +65212,0.150666 +65280,0.0977112 +65348,0.0841149 +65416,0.135911 +65484,0.0584077 +65552,0.0881186 +65620,0.127218 +65688,0.146054 +65756,0.0889635 +65824,0.129962 +65892,0.160554 +65960,0.126559 +66028,0.138001 +66096,0.166256 +66164,0.147661 +66232,0.106638 +66300,0.13983 +66368,0.120093 +66436,0.198383 +66504,0.058096 +66572,0.100403 +66640,0.186689 +66708,0.140946 +66776,0.179023 +66844,0.0969542 +66912,0.0987431 +66980,0.130965 +67048,0.140873 +67116,0.112652 +67184,0.165488 +67252,0.212561 +67320,0.135955 +67388,0.111215 +67456,0.133163 +67524,0.127339 +67592,0.110992 +67660,0.226146 +67728,0.139933 +67796,0.100047 +67864,0.0681805 +67932,0.107861 +68000,0.0813185 diff --git a/example_data/bgr/MouseCPMG/CPMG/6/acqu.par b/example_data/bgr/MouseCPMG/CPMG/6/acqu.par new file mode 100644 index 0000000..0c3659b --- /dev/null +++ b/example_data/bgr/MouseCPMG/CPMG/6/acqu.par @@ -0,0 +1,37 @@ +90Amplitude = -7 +180Amplitude = 0 +accumulate = "yes" +acqTime = 0.016 +alpha = 0.1 +autoPhase = "yes" +autoPhase = "yes" +b1Freq = 13.24d +bandwidth = 2e+003 +dataDirectory = "C:\Costabel.S\Desktop\NMR-Mouse Data\GnaSamples2023_orig" +dwellTime = 0.5 +echoShift = 0.7 +echoTime = 68 +experiment = "CPMG" +expName = "CPMG" +expNr = 6 +filter = "no" +filterType = "sinebellsquared" +fitType = "exp" +flatFilter = "no" +incExpNr = "yes" +normalize = "no" +nrEchoes = 1000 +nrPnts = 32 +nrScans = 16 +position = [28,470] +pulseLength = 12.5 +repTime = 8000 +rxGain = 31 +rxPhase = 8 +saveData = "true" +sumEchoes = "yes" +timeMag = "no" +usePhaseCycle = "yes" +windowSize = "small" +x_maximum = 100 +x_minimum = 0.2 diff --git a/example_data/bgr/MouseCPMG/CPMG/6/data.csv b/example_data/bgr/MouseCPMG/CPMG/6/data.csv new file mode 100644 index 0000000..082c7e0 --- /dev/null +++ b/example_data/bgr/MouseCPMG/CPMG/6/data.csv @@ -0,0 +1,1000 @@ +68,1.37664 +136,1.69163 +204,1.62439 +272,1.53074 +340,1.43864 +408,1.397 +476,1.36283 +544,1.268 +612,1.21668 +680,1.24684 +748,1.13611 +816,1.15386 +884,1.15439 +952,1.13902 +1020,1.0875 +1088,1.11708 +1156,1.08529 +1224,1.03316 +1292,1.01555 +1360,1.05573 +1428,0.985478 +1496,0.926615 +1564,0.914702 +1632,0.955131 +1700,0.917879 +1768,0.8675 +1836,0.81077 +1904,0.89928 +1972,0.825578 +2040,0.894827 +2108,0.840113 +2176,0.823391 +2244,0.864263 +2312,0.76925 +2380,0.836919 +2448,0.730226 +2516,0.787268 +2584,0.842707 +2652,0.84028 +2720,0.717436 +2788,0.851818 +2856,0.749649 +2924,0.747545 +2992,0.745884 +3060,0.790695 +3128,0.701981 +3196,0.732267 +3264,0.690599 +3332,0.683752 +3400,0.558185 +3468,0.672984 +3536,0.691741 +3604,0.624161 +3672,0.652016 +3740,0.597758 +3808,0.686727 +3876,0.657764 +3944,0.605047 +4012,0.646286 +4080,0.644507 +4148,0.664838 +4216,0.557796 +4284,0.642675 +4352,0.590686 +4420,0.615004 +4488,0.658598 +4556,0.550628 +4624,0.593238 +4692,0.583392 +4760,0.566739 +4828,0.567416 +4896,0.53257 +4964,0.584023 +5032,0.599626 +5100,0.595168 +5168,0.563698 +5236,0.488445 +5304,0.513015 +5372,0.593269 +5440,0.558261 +5508,0.565286 +5576,0.506972 +5644,0.58463 +5712,0.574994 +5780,0.428325 +5848,0.54356 +5916,0.529869 +5984,0.477824 +6052,0.515399 +6120,0.548906 +6188,0.488047 +6256,0.487959 +6324,0.443116 +6392,0.410721 +6460,0.452113 +6528,0.572973 +6596,0.502878 +6664,0.471087 +6732,0.429033 +6800,0.498887 +6868,0.539078 +6936,0.527114 +7004,0.551803 +7072,0.546756 +7140,0.46633 +7208,0.538517 +7276,0.510918 +7344,0.563062 +7412,0.47155 +7480,0.551537 +7548,0.407952 +7616,0.425004 +7684,0.498917 +7752,0.525552 +7820,0.513763 +7888,0.434077 +7956,0.474071 +8024,0.487303 +8092,0.398221 +8160,0.505278 +8228,0.495586 +8296,0.49654 +8364,0.459114 +8432,0.450879 +8500,0.433774 +8568,0.477213 +8636,0.441685 +8704,0.498216 +8772,0.490521 +8840,0.51417 +8908,0.459465 +8976,0.506329 +9044,0.529822 +9112,0.46719 +9180,0.50481 +9248,0.41523 +9316,0.453712 +9384,0.421273 +9452,0.384088 +9520,0.406663 +9588,0.442462 +9656,0.429108 +9724,0.299093 +9792,0.438966 +9860,0.440842 +9928,0.409191 +9996,0.482063 +10064,0.436748 +10132,0.465129 +10200,0.435471 +10268,0.395232 +10336,0.348179 +10404,0.43155 +10472,0.420422 +10540,0.387689 +10608,0.4374 +10676,0.468951 +10744,0.378335 +10812,0.438147 +10880,0.414669 +10948,0.462982 +11016,0.435672 +11084,0.360647 +11152,0.416732 +11220,0.417444 +11288,0.475397 +11356,0.425713 +11424,0.393108 +11492,0.339163 +11560,0.427042 +11628,0.390509 +11696,0.37631 +11764,0.389286 +11832,0.359285 +11900,0.383108 +11968,0.37205 +12036,0.396389 +12104,0.33928 +12172,0.419372 +12240,0.345431 +12308,0.384601 +12376,0.454942 +12444,0.44982 +12512,0.439784 +12580,0.418985 +12648,0.389289 +12716,0.321886 +12784,0.31165 +12852,0.327381 +12920,0.444662 +12988,0.378303 +13056,0.320969 +13124,0.348637 +13192,0.415624 +13260,0.408085 +13328,0.348149 +13396,0.259727 +13464,0.320034 +13532,0.41255 +13600,0.37406 +13668,0.396015 +13736,0.323224 +13804,0.318574 +13872,0.342849 +13940,0.383866 +14008,0.373475 +14076,0.28586 +14144,0.337763 +14212,0.384217 +14280,0.354306 +14348,0.319265 +14416,0.378134 +14484,0.375411 +14552,0.393928 +14620,0.349496 +14688,0.424443 +14756,0.364884 +14824,0.365221 +14892,0.361814 +14960,0.350031 +15028,0.356705 +15096,0.317936 +15164,0.322598 +15232,0.364121 +15300,0.317332 +15368,0.279454 +15436,0.341885 +15504,0.3619 +15572,0.329009 +15640,0.331948 +15708,0.366693 +15776,0.336086 +15844,0.377494 +15912,0.348724 +15980,0.269407 +16048,0.279436 +16116,0.356819 +16184,0.337418 +16252,0.343537 +16320,0.328812 +16388,0.324342 +16456,0.302139 +16524,0.287132 +16592,0.301731 +16660,0.32705 +16728,0.381836 +16796,0.283346 +16864,0.383607 +16932,0.242187 +17000,0.328615 +17068,0.330906 +17136,0.332727 +17204,0.290331 +17272,0.287734 +17340,0.354317 +17408,0.295776 +17476,0.322733 +17544,0.323501 +17612,0.251451 +17680,0.34445 +17748,0.329299 +17816,0.37795 +17884,0.253493 +17952,0.300223 +18020,0.280299 +18088,0.246552 +18156,0.323784 +18224,0.341792 +18292,0.313553 +18360,0.269929 +18428,0.370159 +18496,0.316686 +18564,0.338672 +18632,0.317834 +18700,0.342859 +18768,0.278537 +18836,0.329248 +18904,0.351135 +18972,0.301591 +19040,0.274851 +19108,0.27806 +19176,0.265189 +19244,0.270991 +19312,0.254608 +19380,0.275945 +19448,0.306124 +19516,0.304889 +19584,0.235401 +19652,0.342198 +19720,0.294394 +19788,0.233205 +19856,0.249929 +19924,0.313301 +19992,0.351187 +20060,0.203299 +20128,0.2919 +20196,0.343185 +20264,0.225759 +20332,0.259211 +20400,0.328272 +20468,0.276566 +20536,0.298216 +20604,0.274688 +20672,0.364572 +20740,0.166939 +20808,0.265384 +20876,0.246245 +20944,0.305638 +21012,0.200719 +21080,0.307134 +21148,0.265613 +21216,0.264708 +21284,0.316936 +21352,0.30577 +21420,0.310493 +21488,0.290366 +21556,0.234621 +21624,0.286557 +21692,0.337596 +21760,0.225257 +21828,0.24838 +21896,0.264326 +21964,0.241093 +22032,0.226653 +22100,0.289867 +22168,0.239294 +22236,0.31709 +22304,0.260902 +22372,0.241039 +22440,0.25274 +22508,0.258509 +22576,0.346164 +22644,0.245442 +22712,0.280995 +22780,0.274324 +22848,0.309366 +22916,0.298723 +22984,0.303015 +23052,0.244912 +23120,0.213563 +23188,0.17269 +23256,0.262053 +23324,0.304258 +23392,0.286426 +23460,0.182242 +23528,0.209789 +23596,0.139934 +23664,0.215151 +23732,0.322947 +23800,0.284841 +23868,0.226189 +23936,0.244924 +24004,0.254439 +24072,0.243053 +24140,0.233192 +24208,0.270704 +24276,0.183863 +24344,0.236004 +24412,0.229251 +24480,0.243668 +24548,0.256533 +24616,0.245508 +24684,0.251611 +24752,0.352775 +24820,0.212411 +24888,0.26885 +24956,0.176236 +25024,0.156304 +25092,0.328308 +25160,0.217677 +25228,0.195957 +25296,0.227735 +25364,0.232184 +25432,0.263465 +25500,0.19695 +25568,0.189184 +25636,0.191865 +25704,0.284246 +25772,0.1916 +25840,0.323203 +25908,0.244744 +25976,0.261245 +26044,0.224591 +26112,0.26719 +26180,0.29604 +26248,0.235682 +26316,0.205504 +26384,0.222646 +26452,0.215088 +26520,0.298598 +26588,0.203667 +26656,0.191096 +26724,0.22503 +26792,0.240939 +26860,0.197166 +26928,0.218659 +26996,0.249548 +27064,0.221508 +27132,0.189806 +27200,0.214153 +27268,0.233734 +27336,0.23683 +27404,0.289861 +27472,0.151494 +27540,0.299971 +27608,0.205505 +27676,0.226509 +27744,0.251509 +27812,0.171876 +27880,0.300676 +27948,0.287004 +28016,0.259605 +28084,0.235896 +28152,0.27134 +28220,0.219329 +28288,0.215839 +28356,0.121023 +28424,0.254351 +28492,0.204619 +28560,0.262178 +28628,0.217154 +28696,0.181978 +28764,0.240624 +28832,0.291111 +28900,0.251868 +28968,0.243622 +29036,0.24864 +29104,0.190988 +29172,0.267463 +29240,0.16066 +29308,0.197079 +29376,0.1986 +29444,0.241394 +29512,0.167687 +29580,0.157479 +29648,0.246012 +29716,0.217453 +29784,0.265352 +29852,0.215714 +29920,0.194311 +29988,0.241302 +30056,0.267258 +30124,0.230761 +30192,0.209828 +30260,0.173339 +30328,0.276904 +30396,0.278575 +30464,0.175364 +30532,0.252791 +30600,0.220986 +30668,0.205127 +30736,0.265465 +30804,0.158865 +30872,0.228815 +30940,0.181042 +31008,0.19941 +31076,0.229337 +31144,0.169192 +31212,0.153476 +31280,0.198543 +31348,0.222161 +31416,0.244222 +31484,0.29266 +31552,0.206013 +31620,0.175394 +31688,0.178484 +31756,0.248894 +31824,0.233309 +31892,0.173528 +31960,0.262608 +32028,0.180899 +32096,0.164034 +32164,0.180987 +32232,0.155314 +32300,0.146826 +32368,0.244771 +32436,0.241787 +32504,0.27355 +32572,0.19566 +32640,0.156224 +32708,0.15362 +32776,0.156808 +32844,0.218858 +32912,0.162953 +32980,0.225984 +33048,0.170699 +33116,0.203218 +33184,0.202281 +33252,0.18621 +33320,0.213635 +33388,0.183131 +33456,0.210683 +33524,0.17898 +33592,0.129464 +33660,0.180474 +33728,0.235075 +33796,0.171802 +33864,0.240238 +33932,0.20907 +34000,0.19272 +34068,0.286445 +34136,0.160491 +34204,0.192668 +34272,0.219765 +34340,0.18804 +34408,0.168473 +34476,0.151933 +34544,0.202362 +34612,0.229595 +34680,0.153647 +34748,0.18688 +34816,0.155449 +34884,0.18636 +34952,0.2205 +35020,0.20768 +35088,0.17158 +35156,0.152458 +35224,0.167144 +35292,0.168873 +35360,0.26871 +35428,0.215585 +35496,0.192743 +35564,0.227376 +35632,0.174482 +35700,0.104499 +35768,0.206843 +35836,0.170252 +35904,0.163743 +35972,0.210755 +36040,0.0920204 +36108,0.18372 +36176,0.183133 +36244,0.189088 +36312,0.215292 +36380,0.103949 +36448,0.222556 +36516,0.205525 +36584,0.220715 +36652,0.195638 +36720,0.217243 +36788,0.252044 +36856,0.126926 +36924,0.190878 +36992,0.218953 +37060,0.18735 +37128,0.139159 +37196,0.179283 +37264,0.207868 +37332,0.239964 +37400,0.137736 +37468,0.220117 +37536,0.170445 +37604,0.152215 +37672,0.186147 +37740,0.176512 +37808,0.203965 +37876,0.153017 +37944,0.167569 +38012,0.195245 +38080,0.208105 +38148,0.205503 +38216,0.195246 +38284,0.141762 +38352,0.165322 +38420,0.108121 +38488,0.186293 +38556,0.180392 +38624,0.216631 +38692,0.144018 +38760,0.139833 +38828,0.218598 +38896,0.185067 +38964,0.196074 +39032,0.100157 +39100,0.226268 +39168,0.136034 +39236,0.162589 +39304,0.22082 +39372,0.220741 +39440,0.189638 +39508,0.189689 +39576,0.141002 +39644,0.210689 +39712,0.216185 +39780,0.205462 +39848,0.0586677 +39916,0.160639 +39984,0.197817 +40052,0.193305 +40120,0.157937 +40188,0.176478 +40256,0.16897 +40324,0.224792 +40392,0.145871 +40460,0.229519 +40528,0.219843 +40596,0.22334 +40664,0.202513 +40732,0.170663 +40800,0.236492 +40868,0.0898575 +40936,0.13577 +41004,0.141577 +41072,0.150023 +41140,0.254143 +41208,0.185103 +41276,0.233095 +41344,0.187592 +41412,0.156791 +41480,0.163932 +41548,0.262169 +41616,0.118009 +41684,0.174437 +41752,0.144173 +41820,0.120907 +41888,0.203607 +41956,0.133045 +42024,0.0940744 +42092,0.200782 +42160,0.195355 +42228,0.173375 +42296,0.203797 +42364,0.127702 +42432,0.162228 +42500,0.113602 +42568,0.106443 +42636,0.219383 +42704,0.13803 +42772,0.219552 +42840,0.126655 +42908,0.112757 +42976,0.195431 +43044,0.175942 +43112,0.15371 +43180,0.173347 +43248,0.121411 +43316,0.162527 +43384,0.122792 +43452,0.171033 +43520,0.128235 +43588,0.146029 +43656,0.204846 +43724,0.166823 +43792,0.128145 +43860,0.18794 +43928,0.114039 +43996,0.145409 +44064,0.176879 +44132,0.204028 +44200,0.126583 +44268,0.17576 +44336,0.0614341 +44404,0.172825 +44472,0.192017 +44540,0.132151 +44608,0.107322 +44676,0.167326 +44744,0.175755 +44812,0.229651 +44880,0.170227 +44948,0.170423 +45016,0.147779 +45084,0.183155 +45152,0.174753 +45220,0.148859 +45288,0.126753 +45356,0.140718 +45424,0.18948 +45492,0.161748 +45560,0.206375 +45628,0.131424 +45696,0.135657 +45764,0.196782 +45832,0.190161 +45900,0.162056 +45968,0.205116 +46036,0.150142 +46104,0.145499 +46172,0.178862 +46240,0.158114 +46308,0.152538 +46376,0.119071 +46444,0.173257 +46512,0.129543 +46580,0.133238 +46648,0.142519 +46716,0.136516 +46784,0.223634 +46852,0.174495 +46920,0.125408 +46988,0.166901 +47056,0.174263 +47124,0.0800675 +47192,0.155874 +47260,0.117038 +47328,0.147282 +47396,0.16846 +47464,0.155623 +47532,0.133945 +47600,0.0942635 +47668,0.127795 +47736,0.188816 +47804,0.180383 +47872,0.0976751 +47940,0.0927733 +48008,0.21994 +48076,0.0971356 +48144,0.179033 +48212,0.254045 +48280,0.167596 +48348,0.1845 +48416,0.20924 +48484,0.222752 +48552,0.144559 +48620,0.110514 +48688,0.237448 +48756,0.157533 +48824,0.153087 +48892,0.0893557 +48960,0.144469 +49028,0.147665 +49096,0.212878 +49164,0.124402 +49232,0.0787565 +49300,0.12488 +49368,0.0398835 +49436,0.164735 +49504,0.138706 +49572,0.129276 +49640,0.153138 +49708,0.13707 +49776,0.198166 +49844,0.16846 +49912,0.125183 +49980,0.105229 +50048,0.168669 +50116,0.12025 +50184,0.108938 +50252,0.146175 +50320,0.120006 +50388,0.135802 +50456,0.0209176 +50524,0.116905 +50592,0.109446 +50660,0.153593 +50728,0.173022 +50796,0.138179 +50864,0.077088 +50932,0.139698 +51000,0.11799 +51068,0.159105 +51136,0.14857 +51204,0.155508 +51272,0.141646 +51340,0.133996 +51408,0.203994 +51476,0.202388 +51544,0.0756961 +51612,0.217432 +51680,0.140767 +51748,0.136818 +51816,0.0989659 +51884,0.202002 +51952,0.151164 +52020,0.149339 +52088,0.185219 +52156,0.145522 +52224,0.172267 +52292,0.095629 +52360,0.070129 +52428,0.132062 +52496,0.125276 +52564,0.121657 +52632,0.11262 +52700,0.067142 +52768,0.172777 +52836,0.141442 +52904,0.0954799 +52972,0.0712611 +53040,0.147842 +53108,0.0567873 +53176,0.182281 +53244,0.0920202 +53312,0.114199 +53380,0.078932 +53448,0.13453 +53516,0.075486 +53584,0.147901 +53652,0.127783 +53720,0.142093 +53788,0.209682 +53856,0.15768 +53924,0.138132 +53992,0.0515932 +54060,0.208659 +54128,0.112735 +54196,0.168363 +54264,0.15879 +54332,0.122505 +54400,0.192114 +54468,0.148561 +54536,0.11001 +54604,0.177118 +54672,0.0931352 +54740,0.173619 +54808,0.140272 +54876,0.125142 +54944,0.149113 +55012,0.111158 +55080,0.122418 +55148,0.160706 +55216,0.182947 +55284,0.0709223 +55352,0.108289 +55420,0.171144 +55488,0.10255 +55556,0.144287 +55624,0.0838317 +55692,0.153859 +55760,0.097667 +55828,0.131026 +55896,0.148649 +55964,0.14971 +56032,0.11724 +56100,0.133498 +56168,0.14867 +56236,0.0948412 +56304,0.156744 +56372,0.109406 +56440,0.0809371 +56508,0.185921 +56576,0.107994 +56644,0.134689 +56712,0.0885895 +56780,0.146576 +56848,0.120962 +56916,0.0531194 +56984,0.139858 +57052,0.0347471 +57120,0.128655 +57188,0.0604826 +57256,0.131438 +57324,0.189263 +57392,0.123117 +57460,0.115823 +57528,0.262666 +57596,0.142426 +57664,0.1179 +57732,0.174315 +57800,0.0447125 +57868,0.181991 +57936,0.0716421 +58004,0.104386 +58072,0.0978047 +58140,0.192461 +58208,0.162181 +58276,0.0136252 +58344,0.191233 +58412,0.0777961 +58480,0.0476241 +58548,0.13738 +58616,0.0883065 +58684,0.0488336 +58752,0.084239 +58820,0.0590697 +58888,0.0767591 +58956,0.0714078 +59024,0.123572 +59092,0.112577 +59160,0.0975415 +59228,0.115441 +59296,0.187803 +59364,0.175156 +59432,0.16439 +59500,0.111372 +59568,0.162359 +59636,0.139067 +59704,0.175829 +59772,0.152036 +59840,0.135956 +59908,0.0782472 +59976,0.0716788 +60044,0.0778969 +60112,0.15368 +60180,0.133655 +60248,0.0755611 +60316,0.095882 +60384,0.139157 +60452,0.12881 +60520,0.133221 +60588,0.114784 +60656,0.123815 +60724,0.0827081 +60792,0.146861 +60860,0.104748 +60928,0.109158 +60996,0.0856598 +61064,0.103025 +61132,0.0599158 +61200,0.0808995 +61268,0.103863 +61336,0.106533 +61404,0.131707 +61472,0.162794 +61540,0.181498 +61608,0.0608643 +61676,0.0353621 +61744,0.0498307 +61812,0.132099 +61880,0.130546 +61948,0.12847 +62016,0.120858 +62084,0.101641 +62152,0.0781038 +62220,0.0750956 +62288,0.123945 +62356,0.121291 +62424,0.0997364 +62492,0.186673 +62560,0.137269 +62628,0.0506503 +62696,0.126118 +62764,0.172943 +62832,0.0936931 +62900,0.125583 +62968,0.155744 +63036,0.116681 +63104,0.0752409 +63172,0.0598832 +63240,0.0766139 +63308,0.106161 +63376,0.1344 +63444,0.0754352 +63512,0.0985671 +63580,0.110069 +63648,0.0751588 +63716,0.111855 +63784,0.0587908 +63852,0.116211 +63920,0.0584008 +63988,0.10554 +64056,0.0868895 +64124,0.101584 +64192,0.146115 +64260,0.0411558 +64328,0.0426892 +64396,0.119581 +64464,0.0820768 +64532,0.0206536 +64600,0.153307 +64668,0.132788 +64736,0.116816 +64804,0.0703229 +64872,0.0711047 +64940,0.0906115 +65008,0.1382 +65076,0.0941793 +65144,0.114836 +65212,0.134859 +65280,0.0464285 +65348,0.154146 +65416,0.104055 +65484,0.231585 +65552,0.0757134 +65620,0.0128191 +65688,0.0747085 +65756,0.0463022 +65824,0.143232 +65892,0.117718 +65960,0.0533141 +66028,0.0953403 +66096,0.153757 +66164,0.113529 +66232,0.109116 +66300,0.104602 +66368,0.115083 +66436,0.0822965 +66504,0.0490293 +66572,0.0862453 +66640,0.039742 +66708,0.108294 +66776,0.131456 +66844,0.136414 +66912,0.084741 +66980,0.202382 +67048,0.092926 +67116,0.0481323 +67184,0.113314 +67252,0.0120451 +67320,0.099649 +67388,0.100073 +67456,0.11881 +67524,0.139828 +67592,0.107185 +67660,0.0469311 +67728,0.161692 +67796,0.0994623 +67864,0.0787882 +67932,0.142818 +68000,0.0845519 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/11/GUI.par b/example_data/bgr/MouseLift/cpmgfastautotest/11/GUI.par new file mode 100644 index 0000000..1ebfc4d --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/11/GUI.par @@ -0,0 +1,20 @@ +maxDepth = 15000 +nrPntsRemFit = 0 +enableLift = "yes" +refSignal = 1 +refSignalCheck = "no" +nrScans = 8 +fitType = "exp" +x_minimum = 0.1 +x_maximum = 100 +alpha = 0.1 +dataDirectory = "C:\Costabel.S\Desktop\NMR-Mouse Data\GnaSamples2022" +repTime = 8000 +expName = "cpmgfastautotest" +nrEchoes = 1000 +probeHead = "PM25-10mm.par" +resolution = 200 +expNr = 11 +incExpNr = "yes" +depthList = "" +depthListValues = ["8500","7500","6500","5500","4500","3500"] diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/11/T2Axis.dat b/example_data/bgr/MouseLift/cpmgfastautotest/11/T2Axis.dat new file mode 100644 index 0000000..e60076d --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/11/T2Axis.dat @@ -0,0 +1,1000 @@ +0.0725 +0.145 +0.2175 +0.29 +0.3625 +0.435 +0.5075 +0.58 +0.6525 +0.725 +0.7975 +0.87 +0.9425 +1.015 +1.0875 +1.16 +1.2325 +1.305 +1.3775 +1.45 +1.5225 +1.595 +1.6675 +1.74 +1.8125 +1.885 +1.9575 +2.03 +2.1025 +2.175 +2.2475 +2.32 +2.3925 +2.465 +2.5375 +2.61 +2.6825 +2.755 +2.8275 +2.9 +2.9725 +3.045 +3.1175 +3.19 +3.2625 +3.335 +3.4075 +3.48 +3.5525 +3.625 +3.6975 +3.77 +3.8425 +3.915 +3.9875 +4.06 +4.1325 +4.205 +4.2775 +4.35 +4.4225 +4.495 +4.5675 +4.64 +4.7125 +4.785 +4.8575 +4.93 +5.0025 +5.075 +5.1475 +5.22 +5.2925 +5.365 +5.4375 +5.51 +5.5825 +5.655 +5.7275 +5.8 +5.8725 +5.945 +6.0175 +6.09 +6.1625 +6.235 +6.3075 +6.38 +6.4525 +6.525 +6.5975 +6.67 +6.7425 +6.815 +6.8875 +6.96 +7.0325 +7.105 +7.1775 +7.25 +7.3225 +7.395 +7.4675 +7.54 +7.6125 +7.685 +7.7575 +7.83 +7.9025 +7.975 +8.0475 +8.12 +8.1925 +8.265 +8.3375 +8.41 +8.4825 +8.555 +8.6275 +8.7 +8.7725 +8.845 +8.9175 +8.99 +9.0625 +9.135 +9.2075 +9.28 +9.3525 +9.425 +9.4975 +9.57 +9.6425 +9.715 +9.7875 +9.86 +9.9325 +10.005 +10.0775 +10.15 +10.2225 +10.295 +10.3675 +10.44 +10.5125 +10.585 +10.6575 +10.73 +10.8025 +10.875 +10.9475 +11.02 +11.0925 +11.165 +11.2375 +11.31 +11.3825 +11.455 +11.5275 +11.6 +11.6725 +11.745 +11.8175 +11.89 +11.9625 +12.035 +12.1075 +12.18 +12.2525 +12.325 +12.3975 +12.47 +12.5425 +12.615 +12.6875 +12.76 +12.8325 +12.905 +12.9775 +13.05 +13.1225 +13.195 +13.2675 +13.34 +13.4125 +13.485 +13.5575 +13.63 +13.7025 +13.775 +13.8475 +13.92 +13.9925 +14.065 +14.1375 +14.21 +14.2825 +14.355 +14.4275 +14.5 +14.5725 +14.645 +14.7175 +14.79 +14.8625 +14.935 +15.0075 +15.08 +15.1525 +15.225 +15.2975 +15.37 +15.4425 +15.515 +15.5875 +15.66 +15.7325 +15.805 +15.8775 +15.95 +16.0225 +16.095 +16.1675 +16.24 +16.3125 +16.385 +16.4575 +16.53 +16.6025 +16.675 +16.7475 +16.82 +16.8925 +16.965 +17.0375 +17.11 +17.1825 +17.255 +17.3275 +17.4 +17.4725 +17.545 +17.6175 +17.69 +17.7625 +17.835 +17.9075 +17.98 +18.0525 +18.125 +18.1975 +18.27 +18.3425 +18.415 +18.4875 +18.56 +18.6325 +18.705 +18.7775 +18.85 +18.9225 +18.995 +19.0675 +19.14 +19.2125 +19.285 +19.3575 +19.43 +19.5025 +19.575 +19.6475 +19.72 +19.7925 +19.865 +19.9375 +20.01 +20.0825 +20.155 +20.2275 +20.3 +20.3725 +20.445 +20.5175 +20.59 +20.6625 +20.735 +20.8075 +20.88 +20.9525 +21.025 +21.0975 +21.17 +21.2425 +21.315 +21.3875 +21.46 +21.5325 +21.605 +21.6775 +21.75 +21.8225 +21.895 +21.9675 +22.04 +22.1125 +22.185 +22.2575 +22.33 +22.4025 +22.475 +22.5475 +22.62 +22.6925 +22.765 +22.8375 +22.91 +22.9825 +23.055 +23.1275 +23.2 +23.2725 +23.345 +23.4175 +23.49 +23.5625 +23.635 +23.7075 +23.78 +23.8525 +23.925 +23.9975 +24.07 +24.1425 +24.215 +24.2875 +24.36 +24.4325 +24.505 +24.5775 +24.65 +24.7225 +24.795 +24.8675 +24.94 +25.0125 +25.085 +25.1575 +25.23 +25.3025 +25.375 +25.4475 +25.52 +25.5925 +25.665 +25.7375 +25.81 +25.8825 +25.955 +26.0275 +26.1 +26.1725 +26.245 +26.3175 +26.39 +26.4625 +26.535 +26.6075 +26.68 +26.7525 +26.825 +26.8975 +26.97 +27.0425 +27.115 +27.1875 +27.26 +27.3325 +27.405 +27.4775 +27.55 +27.6225 +27.695 +27.7675 +27.84 +27.9125 +27.985 +28.0575 +28.13 +28.2025 +28.275 +28.3475 +28.42 +28.4925 +28.565 +28.6375 +28.71 +28.7825 +28.855 +28.9275 +29 +29.0725 +29.145 +29.2175 +29.29 +29.3625 +29.435 +29.5075 +29.58 +29.6525 +29.725 +29.7975 +29.87 +29.9425 +30.015 +30.0875 +30.16 +30.2325 +30.305 +30.3775 +30.45 +30.5225 +30.595 +30.6675 +30.74 +30.8125 +30.885 +30.9575 +31.03 +31.1025 +31.175 +31.2475 +31.32 +31.3925 +31.465 +31.5375 +31.61 +31.6825 +31.755 +31.8275 +31.9 +31.9725 +32.045 +32.1175 +32.19 +32.2625 +32.335 +32.4075 +32.48 +32.5525 +32.625 +32.6975 +32.77 +32.8425 +32.915 +32.9875 +33.06 +33.1325 +33.205 +33.2775 +33.35 +33.4225 +33.495 +33.5675 +33.64 +33.7125 +33.785 +33.8575 +33.93 +34.0025 +34.075 +34.1475 +34.22 +34.2925 +34.365 +34.4375 +34.51 +34.5825 +34.655 +34.7275 +34.8 +34.8725 +34.945 +35.0175 +35.09 +35.1625 +35.235 +35.3075 +35.38 +35.4525 +35.525 +35.5975 +35.67 +35.7425 +35.815 +35.8875 +35.96 +36.0325 +36.105 +36.1775 +36.25 +36.3225 +36.395 +36.4675 +36.54 +36.6125 +36.685 +36.7575 +36.83 +36.9025 +36.975 +37.0475 +37.12 +37.1925 +37.265 +37.3375 +37.41 +37.4825 +37.555 +37.6275 +37.7 +37.7725 +37.845 +37.9175 +37.99 +38.0625 +38.135 +38.2075 +38.28 +38.3525 +38.425 +38.4975 +38.57 +38.6425 +38.715 +38.7875 +38.86 +38.9325 +39.005 +39.0775 +39.15 +39.2225 +39.295 +39.3675 +39.44 +39.5125 +39.585 +39.6575 +39.73 +39.8025 +39.875 +39.9475 +40.02 +40.0925 +40.165 +40.2375 +40.31 +40.3825 +40.455 +40.5275 +40.6 +40.6725 +40.745 +40.8175 +40.89 +40.9625 +41.035 +41.1075 +41.18 +41.2525 +41.325 +41.3975 +41.47 +41.5425 +41.615 +41.6875 +41.76 +41.8325 +41.905 +41.9775 +42.05 +42.1225 +42.195 +42.2675 +42.34 +42.4125 +42.485 +42.5575 +42.63 +42.7025 +42.775 +42.8475 +42.92 +42.9925 +43.065 +43.1375 +43.21 +43.2825 +43.355 +43.4275 +43.5 +43.5725 +43.645 +43.7175 +43.79 +43.8625 +43.935 +44.0075 +44.08 +44.1525 +44.225 +44.2975 +44.37 +44.4425 +44.515 +44.5875 +44.66 +44.7325 +44.805 +44.8775 +44.95 +45.0225 +45.095 +45.1675 +45.24 +45.3125 +45.385 +45.4575 +45.53 +45.6025 +45.675 +45.7475 +45.82 +45.8925 +45.965 +46.0375 +46.11 +46.1825 +46.255 +46.3275 +46.4 +46.4725 +46.545 +46.6175 +46.69 +46.7625 +46.835 +46.9075 +46.98 +47.0525 +47.125 +47.1975 +47.27 +47.3425 +47.415 +47.4875 +47.56 +47.6325 +47.705 +47.7775 +47.85 +47.9225 +47.995 +48.0675 +48.14 +48.2125 +48.285 +48.3575 +48.43 +48.5025 +48.575 +48.6475 +48.72 +48.7925 +48.865 +48.9375 +49.01 +49.0825 +49.155 +49.2275 +49.3 +49.3725 +49.445 +49.5175 +49.59 +49.6625 +49.735 +49.8075 +49.88 +49.9525 +50.025 +50.0975 +50.17 +50.2425 +50.315 +50.3875 +50.46 +50.5325 +50.605 +50.6775 +50.75 +50.8225 +50.895 +50.9675 +51.04 +51.1125 +51.185 +51.2575 +51.33 +51.4025 +51.475 +51.5475 +51.62 +51.6925 +51.765 +51.8375 +51.91 +51.9825 +52.055 +52.1275 +52.2 +52.2725 +52.345 +52.4175 +52.49 +52.5625 +52.635 +52.7075 +52.78 +52.8525 +52.925 +52.9975 +53.07 +53.1425 +53.215 +53.2875 +53.36 +53.4325 +53.505 +53.5775 +53.65 +53.7225 +53.795 +53.8675 +53.94 +54.0125 +54.085 +54.1575 +54.23 +54.3025 +54.375 +54.4475 +54.52 +54.5925 +54.665 +54.7375 +54.81 +54.8825 +54.955 +55.0275 +55.1 +55.1725 +55.245 +55.3175 +55.39 +55.4625 +55.535 +55.6075 +55.68 +55.7525 +55.825 +55.8975 +55.97 +56.0425 +56.115 +56.1875 +56.26 +56.3325 +56.405 +56.4775 +56.55 +56.6225 +56.695 +56.7675 +56.84 +56.9125 +56.985 +57.0575 +57.13 +57.2025 +57.275 +57.3475 +57.42 +57.4925 +57.565 +57.6375 +57.71 +57.7825 +57.855 +57.9275 +58 +58.0725 +58.145 +58.2175 +58.29 +58.3625 +58.435 +58.5075 +58.58 +58.6525 +58.725 +58.7975 +58.87 +58.9425 +59.015 +59.0875 +59.16 +59.2325 +59.305 +59.3775 +59.45 +59.5225 +59.595 +59.6675 +59.74 +59.8125 +59.885 +59.9575 +60.03 +60.1025 +60.175 +60.2475 +60.32 +60.3925 +60.465 +60.5375 +60.61 +60.6825 +60.755 +60.8275 +60.9 +60.9725 +61.045 +61.1175 +61.19 +61.2625 +61.335 +61.4075 +61.48 +61.5525 +61.625 +61.6975 +61.77 +61.8425 +61.915 +61.9875 +62.06 +62.1325 +62.205 +62.2775 +62.35 +62.4225 +62.495 +62.5675 +62.64 +62.7125 +62.785 +62.8575 +62.93 +63.0025 +63.075 +63.1475 +63.22 +63.2925 +63.365 +63.4375 +63.51 +63.5825 +63.655 +63.7275 +63.8 +63.8725 +63.945 +64.0175 +64.09 +64.1625 +64.235 +64.3075 +64.38 +64.4525 +64.525 +64.5975 +64.67 +64.7425 +64.815 +64.8875 +64.96 +65.0325 +65.105 +65.1775 +65.25 +65.3225 +65.395 +65.4675 +65.54 +65.6125 +65.685 +65.7575 +65.83 +65.9025 +65.975 +66.0475 +66.12 +66.1925 +66.265 +66.3375 +66.41 +66.4825 +66.555 +66.6275 +66.7 +66.7725 +66.845 +66.9175 +66.99 +67.0625 +67.135 +67.2075 +67.28 +67.3525 +67.425 +67.4975 +67.57 +67.6425 +67.715 +67.7875 +67.86 +67.9325 +68.005 +68.0775 +68.15 +68.2225 +68.295 +68.3675 +68.44 +68.5125 +68.585 +68.6575 +68.73 +68.8025 +68.875 +68.9475 +69.02 +69.0925 +69.165 +69.2375 +69.31 +69.3825 +69.455 +69.5275 +69.6 +69.6725 +69.745 +69.8175 +69.89 +69.9625 +70.035 +70.1075 +70.18 +70.2525 +70.325 +70.3975 +70.47 +70.5425 +70.615 +70.6875 +70.76 +70.8325 +70.905 +70.9775 +71.05 +71.1225 +71.195 +71.2675 +71.34 +71.4125 +71.485 +71.5575 +71.63 +71.7025 +71.775 +71.8475 +71.92 +71.9925 +72.065 +72.1375 +72.21 +72.2825 +72.355 +72.4275 +72.5 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/11/acq.par b/example_data/bgr/MouseLift/cpmgfastautotest/11/acq.par new file mode 100644 index 0000000..1149db3 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/11/acq.par @@ -0,0 +1,54 @@ +maxDepth = 15000 +nrPntsRemFit = 0 +enableLift = "yes" +refSignal = 1 +refSignalCheck = "no" +nrScans = 8 +fitType = "exp" +x_minimum = 0.1 +x_maximum = 100 +alpha = 0.1 +dataDirectory = "C:\Costabel.S\Desktop\NMR-Mouse Data\GnaSamples2022" +repTime = 8000 +expName = "cpmgfastautotest" +nrEchoes = 1000 +probeHead = "PM25-10mm.par" +resolution = 200 +expNr = 11 +incExpNr = "yes" +depthList = "" +Sensor = "PM25" +Probe = "1H-L" +Spacer = "PM25-10mm.par" +b1Freq = 13.24 +gradient = 300 +echoTime0 = 68 +pulseLength = 12.5 +bestResol = 50 +90Amplitude = -7 +180Amplitude = 0 +echoShift = 0.7 +rxPhase = 2 +last = 0 +accumulate = "yes" +acqTime = 0.0165 +autoPhase = "no" +bandwidth = 2000 +dwellTime = 0.5 +echoTime = 72.5 +experiment = "CPMGFast" +fitMode = "manual" +flatFilter = "no" +normalize = "no" +nrEchoesCut = 0 +nrExp = 1 +nrPnts = 33 +phaseMethod = "maxreal" +position = [198,460] +rxGain = 31 +saveData = "false" +usePhaseCycle = "yes" +windowSize = "small" +bandwidthFile = 0.5 +showFreqDomain = "no" +excecutedBackdoor = "yes" diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/11/acqu.par b/example_data/bgr/MouseLift/cpmgfastautotest/11/acqu.par new file mode 100644 index 0000000..effa8b4 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/11/acqu.par @@ -0,0 +1,54 @@ +90Amplitude = -7 +180Amplitude = 0 +accumulate = "yes" +acqTime = 0.0165 +alpha = 0.1 +autoPhase = "no" +b1Freq = 13.24 +bandwidth = 2000 +bandwidthFile = 0.5 +bestResol = 50 +dataDirectory = "C:\Costabel.S\Desktop\NMR-Mouse Data\GnaSamples2022" +depthList = "" +dwellTime = 0.5 +echoShift = 0.7 +echoTime = 72.5 +echoTime0 = 68 +enableLift = "yes" +excecutedBackdoor = "yes" +experiment = "CPMGFast" +expName = "cpmgfastautotest" +expNr = 11 +fitMode = "manual" +fitType = "exp" +flatFilter = "no" +gradient = 300 +incExpNr = "yes" +last = 0 +maxDepth = 15000 +normalize = "no" +nrEchoes = 1000 +nrEchoesCut = 0 +nrExp = 1 +nrPnts = 33 +nrPntsRemFit = 0 +nrScans = 8 +phaseMethod = "maxreal" +position = [198,460] +Probe = "1H-L" +probeHead = "PM25-10mm.par" +pulseLength = 12.5 +refSignal = 1 +refSignalCheck = "no" +repTime = 8000 +resolution = 200 +rxGain = 31 +rxPhase = 2 +saveData = "false" +Sensor = "PM25" +showFreqDomain = "no" +Spacer = "PM25-10mm.par" +usePhaseCycle = "yes" +windowSize = "small" +x_maximum = 100 +x_minimum = 0.1 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/11/data-03500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/11/data-03500um.dat new file mode 100644 index 0000000..1297403 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/11/data-03500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 1.67608 0.11923 +0.000145 1.96257 0.108058 +0.0002175 1.94364 0.100004 +0.00029 1.97477 0.0820685 +0.0003625 1.84699 0.0875461 +0.000435 1.87568 0.0899509 +0.0005075 1.96644 0.0857341 +0.00058 1.85411 0.0939715 +0.0006525 1.78666 0.0171927 +0.000725 1.89095 0.139508 +0.0007975 1.79472 0.0787535 +0.00087 1.85196 0.0185705 +0.0009425 1.74103 0.144974 +0.001015 1.74005 0.122215 +0.0010875 1.69779 0.0428149 +0.00116 1.85781 0.0870325 +0.0012325 1.80978 0.0451946 +0.001305 1.76928 0.0743655 +0.0013775 1.83115 0.152368 +0.00145 1.69249 0.153987 +0.0015225 1.59134 0.0187292 +0.001595 1.6995 0.101854 +0.0016675 1.76904 0.115644 +0.00174 1.6954 0.0782734 +0.0018125 1.66111 0.163594 +0.001885 1.66545 0.157006 +0.0019575 1.68778 0.0928818 +0.00203 1.62822 0.0625126 +0.0021025 1.61939 0.0461215 +0.002175 1.6309 0.0734679 +0.0022475 1.56477 0.168212 +0.00232 1.59399 -0.0257766 +0.0023925 1.44605 0.0989648 +0.002465 1.5376 0.0612393 +0.0025375 1.54091 0.126395 +0.00261 1.64096 0.121435 +0.0026825 1.60091 0.0725744 +0.002755 1.60623 0.0829494 +0.0028275 1.64546 0.115594 +0.0029 1.48637 0.0851037 +0.0029725 1.54148 0.0843271 +0.003045 1.56779 0.0219565 +0.0031175 1.41599 0.151345 +0.00319 1.49571 0.113319 +0.0032625 1.49786 0.0761733 +0.003335 1.5324 0.186841 +0.0034075 1.48434 0.141262 +0.00348 1.4053 0.0610514 +0.0035525 1.50373 0.140573 +0.003625 1.44523 0.136264 +0.0036975 1.43025 0.146898 +0.00377 1.39583 -0.0220024 +0.0038425 1.37739 0.211206 +0.003915 1.40137 0.0453282 +0.0039875 1.42358 0.157357 +0.00406 1.42312 0.193145 +0.0041325 1.41654 0.130762 +0.004205 1.48567 0.123034 +0.0042775 1.39136 -0.0328199 +0.00435 1.36613 0.0633309 +0.0044225 1.47807 0.061089 +0.004495 1.33875 0.228048 +0.0045675 1.32983 0.242661 +0.00464 1.30427 -0.0631138 +0.0047125 1.3989 0.0858009 +0.004785 1.32446 0.0490357 +0.0048575 1.42059 0.143266 +0.00493 1.27115 0.0896461 +0.0050025 1.30556 -0.000860057 +0.005075 1.32107 0.0697897 +0.0051475 1.36899 0.0794215 +0.00522 1.28054 0.162893 +0.0052925 1.33703 0.1164 +0.005365 1.24265 -0.0160488 +0.0054375 1.31071 0.14464 +0.00551 1.1987 0.00797847 +0.0055825 1.13816 0.118454 +0.005655 1.23546 0.135546 +0.0057275 1.27267 0.0765825 +0.0058 1.36241 0.146681 +0.0058725 1.18663 0.0753842 +0.005945 1.24346 0.0976496 +0.0060175 1.30231 0.0863562 +0.00609 1.24139 0.0666835 +0.0061625 1.10652 0.101223 +0.006235 1.22946 0.0738144 +0.0063075 1.22448 0.131188 +0.00638 1.07957 0.121694 +0.0064525 1.17634 0.0773423 +0.006525 1.26186 0.0805654 +0.0065975 1.24358 0.0698482 +0.00667 1.18866 0.166563 +0.0067425 1.17698 0.0997914 +0.006815 1.22051 0.131797 +0.0068875 1.16755 0.129346 +0.00696 1.16622 0.107578 +0.0070325 1.18639 0.0470358 +0.007105 1.22624 0.0103666 +0.0071775 1.04952 0.0674266 +0.00725 1.14355 0.0660197 +0.0073225 1.14669 0.174808 +0.007395 1.11122 0.0545342 +0.0074675 1.10775 0.102676 +0.00754 1.19638 0.0142285 +0.0076125 1.09728 0.177105 +0.007685 1.20614 0.0280186 +0.0077575 1.04776 0.0990984 +0.00783 1.065 0.0363311 +0.0079025 1.0799 0.0103749 +0.007975 1.15808 -0.021468 +0.0080475 1.19464 0.0185997 +0.00812 1.01751 0.0618363 +0.0081925 1.00583 -0.00235054 +0.008265 1.04308 0.0248998 +0.0083375 1.03789 0.185459 +0.00841 0.977407 0.068867 +0.0084825 1.00901 0.0809412 +0.008555 0.970768 0.126754 +0.0086275 1.11962 0.0257223 +0.0087 1.05377 0.0808869 +0.0087725 1.01962 0.13907 +0.008845 1.01595 0.114375 +0.0089175 1.01037 0.0756222 +0.00899 1.01229 0.15868 +0.0090625 1.043 0.120879 +0.009135 1.03981 0.0519498 +0.0092075 0.900578 0.0842603 +0.00928 0.95798 0.0765031 +0.0093525 0.879273 0.0104793 +0.009425 1.04432 0.0732007 +0.0094975 0.891672 0.0424015 +0.00957 0.85674 0.0463845 +0.0096425 0.974584 0.0581998 +0.009715 1.06472 0.0796469 +0.0097875 0.971783 0.0780229 +0.00986 0.881444 0.142861 +0.0099325 0.947989 0.0868029 +0.010005 0.959458 -0.00378257 +0.0100775 1.00441 0.0278224 +0.01015 0.964201 0.0533652 +0.0102225 0.990458 0.10787 +0.010295 0.959333 0.0845526 +0.0103675 0.880033 0.18019 +0.01044 0.901822 0.0544173 +0.0105125 0.963967 0.0984554 +0.010585 0.943526 0.060755 +0.0106575 0.960018 0.0774801 +0.01073 0.82706 0.0144247 +0.0108025 0.963086 0.0638612 +0.010875 0.955947 0.0220441 +0.0109475 0.921515 0.0112016 +0.01102 0.898332 0.142464 +0.0110925 0.900874 0.0711299 +0.011165 0.818405 0.0850369 +0.0112375 0.852444 0.12467 +0.01131 0.824459 0.0618613 +0.0113825 0.856753 0.125038 +0.011455 0.780942 0.0174098 +0.0115275 0.815812 0.101453 +0.0116 0.8969 0.0831832 +0.0116725 0.859846 0.00612477 +0.011745 0.835961 -0.0866652 +0.0118175 0.775315 0.0533318 +0.01189 0.84902 0.101474 +0.0119625 0.875148 0.0663453 +0.012035 0.915433 0.115506 +0.0121075 0.829352 0.0428065 +0.01218 0.71911 0.00695559 +0.0122525 0.898712 0.00126921 +0.012325 0.87506 -0.0111557 +0.0123975 0.953029 0.11255 +0.01247 0.788716 0.0384436 +0.0125425 0.927006 -0.0215431 +0.012615 0.884667 0.00708084 +0.0126875 0.781289 0.00638779 +0.01276 0.8494 0.0361223 +0.0128325 0.904385 -0.0126628 +0.012905 0.828876 0.0582374 +0.0129775 0.732533 0.127768 +0.01305 0.744941 0.0319181 +0.0131225 0.818864 -0.0254384 +0.013195 0.74186 0.0173389 +0.0132675 0.742374 0.119844 +0.01334 0.822734 0.0468814 +0.0134125 0.790182 0.114705 +0.013485 0.759591 0.0480504 +0.0135575 0.80196 0.112208 +0.01363 0.795676 0.0973866 +0.0137025 0.824237 0.0423974 +0.013775 0.676016 0.0562251 +0.0138475 0.734036 0.0209252 +0.01392 0.73252 0.0848782 +0.0139925 0.769081 -0.00372412 +0.014065 0.763817 0.076069 +0.0141375 0.749204 -0.0139237 +0.01421 0.725398 0.048113 +0.0142825 0.767161 0.105123 +0.014355 0.783527 0.0486349 +0.0144275 0.756435 0.0639781 +0.0145 0.733289 0.179296 +0.0145725 0.774237 0.0994574 +0.014645 0.766426 0.0594148 +0.0147175 0.671686 0.0716977 +0.01479 0.707278 0.0742278 +0.0148625 0.743847 -0.0125919 +0.014935 0.710915 -0.0521293 +0.0150075 0.708335 0.0695183 +0.01508 0.734737 0.197295 +0.0151525 0.666008 -0.0489647 +0.015225 0.832141 0.0286365 +0.0152975 0.65436 0.0570475 +0.01537 0.763082 -0.0371327 +0.0154425 0.668501 0.0708627 +0.015515 0.717232 0.0456748 +0.0155875 0.721745 0.0467895 +0.01566 0.71319 0.0986516 +0.0157325 0.643476 0.0866944 +0.015805 0.649676 0.079267 +0.0158775 0.67402 0.151031 +0.01595 0.645012 0.0333 +0.0160225 0.655216 0.118825 +0.016095 0.766113 0.0239354 +0.0161675 0.5433 0.0806865 +0.01624 0.709049 0.039859 +0.0163125 0.732905 0.0409319 +0.016385 0.582637 0.0162241 +0.0164575 0.610401 0.0481673 +0.01653 0.750987 0.0352873 +0.0166025 0.720392 0.013001 +0.016675 0.577456 0.104651 +0.0167475 0.547379 0.0118404 +0.01682 0.688236 0.125735 +0.0168925 0.657629 0.0577656 +0.016965 0.745384 -0.0241943 +0.0170375 0.687084 0.0819474 +0.01711 0.689681 -0.0041291 +0.0171825 0.626078 -0.0189755 +0.017255 0.594494 0.0425143 +0.0173275 0.589472 0.0655228 +0.0174 0.594139 0.0536282 +0.0174725 0.582345 0.084323 +0.017545 0.574838 0.0945226 +0.0176175 0.634975 0.0735305 +0.01769 0.628491 0.0435288 +0.0177625 0.592352 -0.048447 +0.017835 0.612008 0.0401178 +0.0179075 0.571373 0.0292544 +0.01798 0.628078 -0.0407023 +0.0180525 0.66329 0.167982 +0.018125 0.627757 0.102175 +0.0181975 0.550306 0.0145333 +0.01827 0.59839 0.0924768 +0.0183425 0.594674 0.0166834 +0.018415 0.54459 0.0462551 +0.0184875 0.604351 -0.0195141 +0.01856 0.649074 -0.0260856 +0.0186325 0.61757 0.0344773 +0.018705 0.579744 -0.00799517 +0.0187775 0.588374 0.0717603 +0.01885 0.518321 -0.01374 +0.0189225 0.60937 0.0836633 +0.018995 0.581932 0.0413369 +0.0190675 0.527214 -0.0787117 +0.01914 0.558581 0.0253674 +0.0192125 0.644114 0.0822605 +0.019285 0.577627 0.168304 +0.0193575 0.612931 0.036711 +0.01943 0.616701 0.0527306 +0.0195025 0.426629 -0.0747162 +0.019575 0.624471 0.0644666 +0.0196475 0.56668 0.115402 +0.01972 0.527477 0.0491192 +0.0197925 0.447379 0.0746578 +0.019865 0.546031 0.0302188 +0.0199375 0.596252 0.0409946 +0.02001 0.540365 -0.0466475 +0.0200825 0.533222 -0.0509478 +0.020155 0.569001 -0.0283735 +0.0202275 0.487568 0.0398631 +0.0203 0.575439 0.00134853 +0.0203725 0.511845 0.0571937 +0.020445 0.522642 0.036878 +0.0205175 0.613082 0.0865566 +0.02059 0.467978 0.196502 +0.0206625 0.47083 0.0174182 +0.020735 0.496298 0.0048138 +0.0208075 0.516008 0.0774384 +0.02088 0.542152 0.102889 +0.0209525 0.462434 0.0779101 +0.021025 0.459896 0.0107131 +0.0210975 0.512071 -0.00330662 +0.02117 0.546369 0.0725995 +0.0212425 0.50031 0.0482549 +0.021315 0.526345 0.064287 +0.0213875 0.536144 0.0150885 +0.02146 0.518688 0.0313461 +0.0215325 0.521047 -0.0512985 +0.021605 0.496565 0.0482967 +0.0216775 0.51929 0.049808 +0.02175 0.54636 0.0458585 +0.0218225 0.459862 0.0127631 +0.021895 0.439029 0.138373 +0.0219675 0.457549 0.102397 +0.02204 0.532992 0.0608134 +0.0221125 0.445788 -0.00770292 +0.022185 0.385079 0.0710881 +0.0222575 0.520062 0.0983385 +0.02233 0.482921 0.0392828 +0.0224025 0.518354 0.0587593 +0.022475 0.582858 -0.0294757 +0.0225475 0.411707 -0.00472196 +0.02262 0.479785 -0.00703074 +0.0226925 0.423782 0.0608176 +0.022765 0.478566 0.0552815 +0.0228375 0.411227 0.0172846 +0.02291 0.453266 0.0570141 +0.0229825 0.470179 0.0129634 +0.023055 0.431994 0.0665791 +0.0231275 0.461227 0.0434411 +0.0232 0.493346 -0.0367444 +0.0232725 0.436215 0.0111473 +0.023345 0.460401 0.102977 +0.0234175 0.487463 0.126904 +0.02349 0.510418 0.0471694 +0.0235625 0.503984 0.0246619 +0.023635 0.457002 0.0391367 +0.0237075 0.437864 -0.0566217 +0.02378 0.426863 0.0255386 +0.0238525 0.465486 -0.0143746 +0.023925 0.420099 -0.0128758 +0.0239975 0.42693 -0.0376671 +0.02407 0.420625 -0.0593354 +0.0241425 0.496139 0.0310664 +0.024215 0.362066 0.0590975 +0.0242875 0.495509 0.0397128 +0.02436 0.438854 0.0707625 +0.0244325 0.42169 0.0327572 +0.024505 0.42397 0.119402 +0.0245775 0.43027 0.0613353 +0.02465 0.39879 0.00776972 +0.0247225 0.441534 0.07991 +0.024795 0.323235 0.0590766 +0.0248675 0.415599 0.00632516 +0.02494 0.430683 0.0812251 +0.0250125 0.467106 0.0914247 +0.025085 0.462438 0.00525636 +0.0251575 0.441062 0.0462634 +0.02523 0.470676 0.0429359 +0.0253025 0.463624 0.0282566 +0.025375 0.43725 0.00959003 +0.0254475 0.446548 0.0175643 +0.02552 0.543659 -0.0303316 +0.0255925 0.408689 0.0476579 +0.025665 0.378904 0.062212 +0.0257375 0.442907 0.0155812 +0.02581 0.337772 0.0774425 +0.0258825 0.369845 0.12996 +0.025955 0.470646 -0.0680487 +0.0260275 0.435276 0.102134 +0.0261 0.463687 0.064429 +0.0261725 0.450268 0.11531 +0.026245 0.463908 0.160684 +0.0263175 0.363018 -0.0118946 +0.02639 0.329539 0.0235179 +0.0264625 0.406267 0.0294005 +0.026535 0.402401 -0.00845443 +0.0266075 0.31134 -0.0222612 +0.02668 0.336419 0.0531982 +0.0267525 0.456969 0.0150176 +0.026825 0.395195 0.0985389 +0.0268975 0.43348 0.116099 +0.02697 0.36969 0.0111473 +0.0270425 0.474316 0.0183993 +0.027115 0.380044 -0.038644 +0.0271875 0.370103 -0.0740858 +0.02726 0.358259 0.0561165 +0.0273325 0.489517 0.0343563 +0.027405 0.334536 0.000713931 +0.0274775 0.370337 0.107106 +0.02755 0.35481 0.0955914 +0.0276225 0.420095 -0.0165122 +0.027695 0.341446 0.0131889 +0.0277675 0.317941 0.0463595 +0.02784 0.325898 0.0247495 +0.0279125 0.297015 0.0682449 +0.027985 0.386891 -0.0829661 +0.0280575 0.392966 -0.0590056 +0.02813 0.429681 -0.00576153 +0.0282025 0.436879 0.141224 +0.028275 0.360388 0.0635313 +0.0283475 0.257207 -0.0246034 +0.02842 0.454168 -0.00154058 +0.0284925 0.338286 0.0233509 +0.028565 0.332219 0.00586174 +0.0286375 0.425422 -0.0326153 +0.02871 0.251871 0.103186 +0.0287825 0.388716 -0.0271376 +0.028855 0.350017 0.0780855 +0.0289275 0.414734 0.0232173 +0.029 0.496636 0.127075 +0.0290725 0.292114 0.120516 +0.029145 0.38123 0.00558619 +0.0292175 0.424592 0.00736475 +0.02929 0.399746 0.057131 +0.0293625 0.271986 -0.0054317 +0.029435 0.293191 -0.0318429 +0.0295075 0.355983 0.00161156 +0.02958 0.264947 -0.00221276 +0.0296525 0.329856 0.00368655 +0.029725 0.308213 0.0823732 +0.0297975 0.274061 0.0214847 +0.02987 0.286749 0.0451195 +0.0299425 0.373272 0.0775678 +0.030015 0.340031 -0.057536 +0.0300875 0.407745 0.00445058 +0.03016 0.277931 0.0311123 +0.0302325 0.413782 0.145479 +0.030305 0.305766 -0.0053482 +0.0303775 0.41096 0.103023 +0.03045 0.36248 0.0157565 +0.0305225 0.360818 0.0144247 +0.030595 0.420475 0.0152722 +0.0306675 0.286632 0.0286908 +0.03074 0.218137 -0.00203741 +0.0308125 0.34861 -0.0216057 +0.030885 0.417402 0.116191 +0.0309575 0.296627 0.0604126 +0.03103 0.3351 0.0244155 +0.0311025 0.378019 0.101186 +0.031175 0.228896 -0.00721027 +0.0312475 0.290064 -0.0225618 +0.03132 0.312609 0.117481 +0.0313925 0.35686 -0.00424182 +0.031465 0.385977 0.0307157 +0.0315375 0.35858 -0.00253841 +0.03161 0.354602 0.0117276 +0.0316825 0.379873 -0.0278892 +0.031755 0.304668 0.0916 +0.0318275 0.390164 -0.00521043 +0.0319 0.41926 0.0564881 +0.0319725 0.289864 -0.0776095 +0.032045 0.269281 -0.00310204 +0.0321175 0.342598 0.00859638 +0.03219 0.249821 0.0375919 +0.0322625 0.343918 0.00955663 +0.032335 0.292277 -0.0313837 +0.0324075 0.249203 0.0565549 +0.03248 0.358209 0.000847526 +0.0325525 0.230971 0.0416459 +0.032625 0.331455 0.0935122 +0.0326975 0.220825 0.0251963 +0.03277 0.216625 0.0434912 +0.0328425 0.240724 0.0356088 +0.032915 0.282207 -0.0187667 +0.0329875 0.319686 0.03788 +0.03306 0.385154 0.1039 +0.0331325 0.274462 -0.0213887 +0.033205 0.387334 -0.0352831 +0.0332775 0.320517 0.0445684 +0.03335 0.274737 0.0199441 +0.0334225 0.35613 0.0854711 +0.033495 0.275539 0.0429485 +0.0335675 0.311089 0.0125376 +0.03364 0.383134 0.015385 +0.0337125 0.343588 0.0209377 +0.033785 0.243487 0.0339388 +0.0338575 0.1563 0.0250627 +0.03393 0.301253 -0.0994491 +0.0340025 0.238369 0.0452948 +0.034075 0.242277 0.0221193 +0.0341475 0.228011 -0.00694724 +0.03422 0.264588 -0.0471402 +0.0342925 0.31863 0.0717603 +0.034365 0.347287 0.10896 +0.0344375 0.395625 0.00497663 +0.03451 0.325531 0.07204 +0.0345825 0.209436 0.134486 +0.034655 0.0906732 -0.121777 +0.0347275 0.34474 -0.0327071 +0.0348 0.318667 0.0214346 +0.0348725 0.332754 -0.0170842 +0.034945 0.304318 0.108805 +0.0350175 0.335505 -0.0275051 +0.03509 0.207774 0.0966936 +0.0351625 0.193842 0.00495158 +0.035235 0.293016 -0.0971361 +0.0353075 0.213532 0.0943555 +0.03538 0.291834 0.0521252 +0.0354525 0.310551 0.00231296 +0.035525 0.279514 0.0230962 +0.0355975 0.178745 0.00526471 +0.03567 0.20038 0.0245825 +0.0357425 0.213924 0.0514238 +0.035815 0.238394 -0.0174767 +0.0358875 0.2018 0.057799 +0.03596 0.297258 0.11759 +0.0360325 0.321581 -0.0272003 +0.036105 0.246702 0.0624584 +0.0361775 0.231543 0.0318387 +0.03625 0.268145 0.0585255 +0.0363225 0.229902 -0.00191215 +0.036395 0.24646 0.0208876 +0.0364675 0.284616 0.0730921 +0.03654 0.13988 0.0261106 +0.0366125 0.120111 0.0260313 +0.036685 0.297228 -0.0990566 +0.0367575 0.207745 0.149929 +0.03683 0.213068 0.118057 +0.0369025 0.301115 0.0159987 +0.036975 0.218863 0.0642202 +0.0370475 0.294502 0.0700193 +0.03712 0.246978 -0.0627506 +0.0371925 0.245809 0.0289955 +0.037265 0.281146 0.0386816 +0.0373375 0.198309 -0.0630512 +0.03741 0.168583 0.00591601 +0.0374825 0.231288 0.00670925 +0.037555 0.225689 0.085421 +0.0376275 0.320091 0.132995 +0.0377 0.304535 0.01541 +0.0377725 0.237592 -0.0117109 +0.037845 0.155937 -0.111482 +0.0379175 0.227977 -0.0187208 +0.03799 0.221276 -0.0529184 +0.0380625 0.304844 0.0232006 +0.038135 0.217243 0.024069 +0.0382075 0.152008 0.00020457 +0.03828 0.21187 0.0291667 +0.0383525 0.269978 0.0276595 +0.038425 0.225739 -0.0593396 +0.0384975 0.204935 0.0223614 +0.03857 0.306781 -0.0271251 +0.0386425 0.219736 0.109782 +0.038715 0.226132 0.0547888 +0.0387875 0.263143 0.0691426 +0.03886 0.156033 0.093245 +0.0389325 0.216049 0.0802273 +0.039005 0.290523 0.0398798 +0.0390775 0.231397 -0.00258434 +0.03915 0.274604 0.0442177 +0.0392225 0.236415 0.0308159 +0.039295 0.251403 0.0539664 +0.0393675 0.218922 0.0414329 +0.03944 0.248543 0.0168713 +0.0395125 0.189738 0.0571143 +0.039585 0.296264 0.0335421 +0.0396575 0.177647 0.0981924 +0.03973 0.273209 -0.0211674 +0.0398025 0.215193 -0.0484219 +0.039875 0.219761 0.0207624 +0.0399475 0.159958 0.0147879 +0.04002 0.201282 -0.0265532 +0.0400925 0.264826 0.0375209 +0.040165 0.212667 0.0291208 +0.0402375 0.135212 0.0489396 +0.04031 0.250326 0.163941 +0.0403825 0.220308 0.0544089 +0.040455 0.245859 0.0242945 +0.0405275 0.179639 -0.0248664 +0.0406 0.190055 0.0159361 +0.0406725 0.249675 -0.0411282 +0.040745 0.225063 0.0698148 +0.0408175 0.213068 -0.00941886 +0.04089 0.219569 0.0154476 +0.0409625 0.160809 -0.0445558 +0.041035 0.2351 0.0200276 +0.0411075 0.123372 -0.0294005 +0.04118 0.124424 0.06784 +0.0412525 0.255891 -0.0392452 +0.041325 0.225322 0.0475619 +0.0413975 0.198088 -0.0107423 +0.04147 0.2436 -0.00641284 +0.0415425 0.207131 0.075117 +0.041615 0.190389 -0.0697396 +0.0416875 0.249838 -0.0240648 +0.04176 0.187943 0.0178148 +0.0418325 0.165619 0.0918589 +0.041905 0.184428 0.0648047 +0.0419775 0.176487 0.0175059 +0.04205 0.203695 0.042364 +0.0421225 0.0301395 0.0907901 +0.042195 0.249925 -0.0567929 +0.0422675 0.207858 0.0378758 +0.04234 0.207394 -0.0313837 +0.0424125 0.168066 0.0560956 +0.042485 0.176992 -0.0302147 +0.0425575 0.148543 0.0747872 +0.04263 0.116437 0.00933953 +0.0427025 0.174825 0.0840265 +0.042775 0.124624 -0.0337843 +0.0428475 0.167093 -0.0184536 +0.04292 0.266174 0.0152472 +0.0429925 0.137997 -0.0444765 +0.043065 0.285876 -0.0291709 +0.0431375 0.137162 0.00812459 +0.04321 0.140644 0.0128131 +0.0432825 0.131526 0.0185538 +0.043355 0.203871 0.0351495 +0.0434275 0.186807 0.0941802 +0.0435 0.229297 0.047516 +0.0435725 0.176328 0.0591684 +0.043645 0.171669 0.0846069 +0.0437175 0.185192 0.0688628 +0.04379 0.223861 0.00950236 +0.0438625 0.211928 0.0455746 +0.043935 0.142093 0.0169506 +0.0440075 0.084849 0.0418546 +0.04408 0.133835 -0.0898423 +0.0441525 0.160125 -0.0937084 +0.044225 0.222333 -0.0883769 +0.0442975 0.123969 0.0827448 +0.04437 0.200493 0.0742695 +0.0444425 0.166037 0.0425435 +0.044515 0.212079 0.187133 +0.0445875 0.219281 -0.0565716 +0.04466 0.147504 0.0529518 +0.0447325 0.262016 -0.0369281 +0.044805 0.178286 -0.0630596 +0.0448775 0.205248 0.0303566 +0.04495 0.163461 0.0471569 +0.0450225 0.213974 0.0642703 +0.045095 0.177393 -0.0473949 +0.0451675 0.211983 -0.126345 +0.04524 0.126558 -0.0586215 +0.0453125 0.216734 0.0109302 +0.045385 0.211223 0.00585756 +0.0454575 0.0758184 0.0382683 +0.04553 0.108885 0.0354251 +0.0456025 0.212534 0.0249291 +0.045675 0.248581 0.105657 +0.0457475 0.147616 0.021301 +0.04582 0.197804 -0.050046 +0.0458925 0.0821018 -0.0713303 +0.045965 0.127259 0.0154559 +0.0460375 0.16106 -0.0453366 +0.04611 0.235843 0.0884395 +0.0461825 0.0659904 0.0170424 +0.046255 0.133764 -0.0960005 +0.0463275 0.225038 0.0699776 +0.0464 0.192552 0.0373832 +0.0464725 0.176612 -0.069272 +0.046545 0.126674 -0.0277389 +0.0466175 0.145065 0.0104209 +0.04669 0.0418254 0.0307324 +0.0467625 0.118475 0.102818 +0.046835 0.150852 -0.0803275 +0.0469075 0.0995409 -0.0052146 +0.04698 0.197078 0.0385396 +0.0470525 0.220541 0.0129551 +0.047125 0.0991735 -0.0420926 +0.0471975 0.137742 0.0816718 +0.04727 0.171564 0.0148339 +0.0473425 0.154121 0.0490106 +0.047415 0.139809 0.140043 +0.0474875 0.152839 0.0214847 +0.04756 0.139108 0.00346527 +0.0476325 0.226332 0.0789372 +0.047705 0.0307407 -0.11207 +0.0477775 0.118834 0.0578658 +0.04785 0.0634729 0.00741485 +0.0479225 0.183275 -0.0603249 +0.047995 0.133931 -0.124533 +0.0480675 0.134294 0.0137984 +0.04814 0.158922 -0.067339 +0.0482125 0.220162 0.116454 +0.048285 0.082035 0.0597947 +0.0483575 0.14828 0.000300606 +0.04843 0.0668672 0.131346 +0.0485025 0.195646 0.0197395 +0.048575 0.109845 0.0779728 +0.0486475 0.205933 0.015744 +0.04872 0.183171 -0.00805363 +0.0487925 0.192899 -0.0622663 +0.048865 0.238244 -0.0254092 +0.0489375 0.145775 -0.0224533 +0.04901 0.177426 -0.0149675 +0.0490825 0.0779101 0.0713386 +0.049155 0.202956 -0.0261691 +0.0492275 0.140176 -0.0475034 +0.0493 0.170533 0.0682449 +0.0493725 0.177551 0.0333626 +0.049445 0.277627 0.0564755 +0.0495175 0.163841 0.00935623 +0.04959 0.154568 0.119251 +0.0496625 0.114283 -0.0281522 +0.049735 0.124929 -0.0297596 +0.0498075 0.174441 0.0734178 +0.04988 0.152171 -0.0159194 +0.0499525 0.160288 -0.00496411 +0.050025 0.207165 -0.0834086 +0.0500975 0.0809746 -0.0250084 +0.05017 0.182845 -0.00182449 +0.0502425 0.119702 -0.100167 +0.050315 0.155411 0.0253006 +0.0503875 0.0973031 0.00170759 +0.05046 0.158371 -0.00924768 +0.0505325 0.221084 0.0939172 +0.050605 0.187505 0.0431322 +0.0506775 0.102977 0.0275844 +0.05075 0.171343 0.0133016 +0.0508225 0.184716 0.0296719 +0.050895 0.18095 0.0892829 +0.0509675 0.156985 -0.0125209 +0.05104 0.133258 -0.00792419 +0.0511125 0.159774 -0.083275 +0.051185 0.0906481 -0.0152889 +0.0512575 0.196552 0.0242068 +0.05133 0.184895 -0.0088761 +0.0514025 0.190548 -0.0668964 +0.051475 0.12796 -0.0859178 +0.0515475 0.19598 -0.0265991 +0.05162 0.0408192 0.101758 +0.0516925 0.0275134 0.188565 +0.051765 0.113005 0.0436582 +0.0518375 0.140268 0.052526 +0.05191 0.20261 -0.0443388 +0.0519825 0.130912 0.0664789 +0.052055 0.181025 -0.0688545 +0.0521275 0.155348 -0.00708919 +0.0522 0.187216 0.0666751 +0.0522725 0.0878926 0.0123163 +0.052345 0.245266 -0.111039 +0.0524175 0.167218 0.0718563 +0.05249 0.198535 -0.0515323 +0.0525625 0.175631 0.0299475 +0.052635 0.192201 0.0503758 +0.0527075 0.192865 0.0104167 +0.05278 0.11139 -0.033968 +0.0528525 0.0924517 0.075831 +0.052925 0.137417 0.0210213 +0.0529975 0.0881682 -0.114621 +0.05307 0.153203 0.00136941 +0.0531425 0.13677 0.0731631 +0.053215 0.0386065 0.0878717 +0.0532875 0.0730003 -0.0324149 +0.05336 0.189438 0.0318847 +0.0534325 0.110617 -0.0829703 +0.053505 0.192577 -0.11425 +0.0535775 0.0333459 -0.0123831 +0.05365 0.103557 -0.0133643 +0.0537225 0.113619 0.0426354 +0.053795 0.0826195 0.0176311 +0.0538675 0.103044 0.0555529 +0.05394 0.0915959 0.0312417 +0.0540125 0.0608385 -0.00140698 +0.054085 0.0357883 0.0102205 +0.0541575 0.120579 0.00259687 +0.05423 0.0777807 0.0426187 +0.0543025 0.0880346 0.085016 +0.054375 0.162216 0.0646795 +0.0544475 0.0852331 0.00217101 +0.05452 0.0107799 -0.0221861 +0.0545925 0.124829 0.0336674 +0.054665 0.153929 -0.0923682 +0.0547375 0.179676 0.0192093 +0.05481 0.020228 -0.081104 +0.0548825 0.144431 -0.0244907 +0.054955 0.116746 0.0353625 +0.0550275 0.0957416 0.0815382 +0.0551 0.058847 -0.0399717 +0.0551725 0.208392 0.0483844 +0.055245 0.109941 0.0520792 +0.0553175 0.0988353 0.0374583 +0.05539 0.0828575 -0.0198606 +0.0554625 0.0315173 -0.0460088 +0.055535 0.0443972 0.00739814 +0.0556075 0.155257 -0.00959838 +0.05568 0.100894 0.0882266 +0.0557525 0.170065 -0.00829994 +0.055825 0.0978292 -0.0182407 +0.0558975 0.233279 -0.0411574 +0.05597 0.05453 0.136419 +0.0560425 0.157904 -0.0107507 +0.056115 0.123944 0.00645459 +0.0561875 0.124879 0.0348907 +0.05626 0.18525 -0.0416166 +0.0563325 0.0555362 0.0781189 +0.056405 0.145449 -0.0702114 +0.0564775 0.0823941 0.101332 +0.05655 0.0702364 0.0610931 +0.0566225 0.115072 0.0625252 +0.056695 0.0277013 -0.00569056 +0.0567675 0.168425 -0.0377172 +0.05684 0.102818 -0.0405562 +0.0569125 0.166872 -0.0456247 +0.056985 0.0785489 0.0184202 +0.0570575 0.108012 -0.0839556 +0.05713 0.0974117 0.0247913 +0.0572025 0.105106 0.0165122 +0.057275 -0.0281355 -0.0124332 +0.0573475 0.11121 -0.053624 +0.05742 0.127785 0.0663912 +0.0574925 0.0514906 0.0543672 +0.057565 0.107227 0.0622705 +0.0576375 0.0946937 0.0662409 +0.05771 0.188987 0.0305278 +0.0577825 0.109377 -0.0268245 +0.057855 0.111177 -0.00754427 +0.0579275 0.0726997 0.0821854 +0.058 0.125894 0.0290582 +0.0580725 0.188456 0.0133517 +0.058145 0.241588 0.102605 +0.0582175 0.134741 0.00479292 +0.05829 0.206572 0.0312501 +0.0583625 0.0838178 -0.0319264 +0.058435 0.210484 0.00669674 +0.0585075 0.0756139 0.0641117 +0.05858 0.0708042 0.0729878 +0.0586525 0.092005 0.0873039 +0.058725 0.0616985 0.115515 +0.0587975 0.194978 0.0616401 +0.05887 0.0444682 0.106918 +0.0589425 0.10562 0.0239354 +0.059015 0.144393 0.0507057 +0.0590875 0.0183659 0.0871369 +0.05916 0.0457374 0.0432658 +0.0592325 0.14757 0.0584295 +0.059305 0.0418713 0.120145 +0.0593775 0.121602 -0.030223 +0.05945 0.117105 -0.039312 +0.0595225 0.103156 -0.0807992 +0.059595 0.190556 -0.00255094 +0.0596675 0.16417 -0.118663 +0.05974 0.0719899 -0.0508059 +0.0598125 0.194402 0.0676103 +0.059885 0.19284 -0.0507391 +0.0599575 0.121802 0.167239 +0.06003 0.126695 -0.0326696 +0.0601025 0.1559 -0.0659195 +0.060175 0.0902181 -0.0917002 +0.0602475 0.196443 -0.0129843 +0.06032 0.0761942 0.0182741 +0.0603925 0.127192 0.0097779 +0.060465 0.0649634 -0.0123121 +0.0605375 0.113607 -0.0652389 +0.06061 0.171869 -0.134427 +0.0606825 0.100823 -0.0794758 +0.060755 0.132678 0.0069222 +0.0608275 0.0495367 0.0326362 +0.0609 0.089262 -0.0165331 +0.0609725 0.159377 -0.0278307 +0.061045 0.0798974 0.0686833 +0.0611175 0.0608134 -0.0624208 +0.06119 0.169047 -0.0855963 +0.0612625 0.132261 -0.0228583 +0.061335 0.0837385 -0.0132515 +0.0614075 0.15863 0.0295049 +0.06148 0.0859095 0.0442177 +0.0615525 0.183371 0.0299809 +0.061625 0.0246994 -0.0166667 +0.0616975 0.0711758 -0.0495617 +0.06177 0.0508476 0.0455537 +0.0618425 0.0457207 0.110855 +0.061915 0.121143 -0.0136273 +0.0619875 0.132373 -0.084515 +0.06206 0.103182 0.02872 +0.0621325 0.185488 0.0674016 +0.062205 0.0563378 0.114838 +0.0622775 0.155399 -0.0765407 +0.06235 0.0579159 0.0328741 +0.0624225 0.137308 0.0405729 +0.062495 0.0553483 -0.00834587 +0.0625675 0.201098 -0.0102288 +0.06264 0.094176 -0.0488854 +0.0627125 0.0425644 0.0338177 +0.062785 0.0891159 -0.0563879 +0.0628575 0.00336089 -0.0337801 +0.06293 -0.0647797 0.0431656 +0.0630025 0.154618 -0.0178942 +0.063075 0.0177731 0.0307616 +0.0631475 0.119305 0.00885105 +0.06322 0.167055 0.0540081 +0.0632925 0.0285363 -0.0288202 +0.063365 0.18019 0.0425435 +0.0634375 0.143571 -0.0240982 +0.06351 0.084728 0.00985724 +0.0635825 0.0344648 0.0589221 +0.063655 -0.00599951 0.0348615 +0.0637275 0.248648 -0.0422262 +0.0638 0.12771 -0.0177731 +0.0638725 0.128833 -0.111047 +0.063945 0.112596 0.0334002 +0.0640175 -0.0334461 -0.0298973 +0.06409 0.155102 -0.0209878 +0.0641625 0.051858 -0.0402389 +0.064235 0.103269 -0.138448 +0.0643075 0.0247788 -0.0237267 +0.06438 0.0546427 0.137859 +0.0644525 0.08702 -0.0325735 +0.064525 0.160526 0.0243195 +0.0645975 0.12943 0.018963 +0.06467 0.158517 -0.0370492 +0.0647425 0.10015 0.0926939 +0.064815 0.136244 0.113252 +0.0648875 0.128019 -0.038214 +0.06496 0.141755 0.0333417 +0.0650325 0.199787 -0.0540415 +0.065105 0.0971027 0.0310079 +0.0651775 0.0228624 -0.000713933 +0.06525 0.028649 -0.0683869 +0.0653225 0.0918171 0.00498914 +0.065395 0.0132348 0.0183492 +0.0654675 0.112546 0.0600243 +0.06554 0.0444849 0.0481589 +0.0656125 0.0904644 0.0429109 +0.065685 0.0932116 -0.00497246 +0.0657575 0.0151595 0.0930028 +0.06583 0.0623164 -0.0691259 +0.0659025 0.164091 0.0841226 +0.065975 -0.0321435 -0.0674141 +0.0660475 0.022541 -0.0787326 +0.06612 0.0596778 0.0222236 +0.0661925 0.125597 -0.042126 +0.066265 0.226011 0.0100034 +0.0663375 0.081701 -0.0519749 +0.06641 0.119097 -0.0578784 +0.0664825 -0.00176604 -0.0449316 +0.066555 0.0990191 0.0650051 +0.0666275 0.0247997 -0.00141533 +0.0667 0.026286 -0.00304776 +0.0667725 0.0763403 0.00210003 +0.066845 0.11842 -0.0443095 +0.0669175 0.0767119 -0.00220024 +0.06699 0.124491 0.0757809 +0.0670625 0.1688 0.0898048 +0.067135 0.0901972 -0.0266575 +0.0672075 0.075259 0.061352 +0.06728 0.149599 0.023042 +0.0673525 0.082511 -0.0787201 +0.067425 0.084348 -0.00333584 +0.0674975 0.0824442 0.0163661 +0.06757 0.0866819 0.0271126 +0.0676425 0.0676813 -0.0097612 +0.067715 -0.00992403 0.0567678 +0.0677875 0.105887 -0.00964013 +0.06786 -0.0338177 -0.0117777 +0.0679325 0.133384 -0.0258058 +0.068005 0.174817 0.00626671 +0.0680775 0.15 0.078862 +0.06815 0.0286448 -0.0287701 +0.0682225 0.0228165 -0.0458752 +0.068295 0.016174 0.0102747 +0.0683675 0.0598156 0.136031 +0.06844 0.0866067 0.103386 +0.0685125 0.0530813 0.030198 +0.068585 0.102898 -0.0802941 +0.0686575 0.111832 0.0433743 +0.06873 0.0217978 -0.0608468 +0.0688025 0.0653182 -0.0736182 +0.068875 0.0375919 -0.0598824 +0.0689475 0.00956915 -0.00176604 +0.06902 -0.0161532 0.062592 +0.0690925 0.136957 -0.0227372 +0.069165 0.0283067 0.00768623 +0.0692375 0.127639 0.00521043 +0.06931 0.0385772 0.00789914 +0.0693825 0.0330954 -0.0163035 +0.069455 0.109031 0.0492194 +0.0695275 0.079434 -0.0158317 +0.0696 0.115193 -0.0265156 +0.0696725 -0.00487225 0.0160279 +0.069745 0.0128382 0.0454368 +0.0698175 0.17533 0.0525176 +0.06989 0.00769874 -0.0203365 +0.0699625 0.108233 0.0565883 +0.070035 0.0927899 -0.0147253 +0.0701075 0.0700611 -0.0192636 +0.07018 0.104359 -0.09742 +0.0702525 0.0253674 0.0318805 +0.070325 0.0537367 0.135926 +0.0703975 0.0884228 0.0478416 +0.07047 0.0654769 0.0175309 +0.0705425 0.10582 -0.0315256 +0.070615 0.0266868 -0.0678859 +0.0706875 0.017794 0.117932 +0.07076 0.0476704 0.0236974 +0.0708325 0.056964 0.013143 +0.070905 0.0490858 0.0280144 +0.0709775 0.07118 0.102806 +0.07105 0.0826029 -0.0374291 +0.0711225 0.0449608 -0.0292794 +0.071195 0.0241609 0.0248998 +0.0712675 0.0892495 -0.0550018 +0.07134 0.0547471 -0.00531063 +0.0714125 0.118412 -0.0616943 +0.071485 0.0944683 -0.0216433 +0.0715575 0.0939506 0.102468 +0.07163 0.0817344 0.015815 +0.0717025 0.0538202 -0.0238853 +0.071775 -0.041458 0.0324525 +0.0718475 0.0738061 -0.0396043 +0.07192 0.00723532 0.0145249 +0.0719925 -0.0471193 -0.016984 +0.072065 0.00811207 0.00933535 +0.0721375 0.122646 -0.0125209 +0.07221 0.0159653 -0.0329493 +0.0722825 -0.00355712 0.0315423 +0.072355 0.115878 -0.0283067 +0.0724275 0.00805362 0.0350118 +0.0725 0.119531 -0.0488812 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/11/data-04500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/11/data-04500um.dat new file mode 100644 index 0000000..dba99c0 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/11/data-04500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 1.69454 0.174512 +0.000145 2.12985 0.110258 +0.0002175 2.04872 0.0583126 +0.00029 1.96753 0.0974618 +0.0003625 1.999 0.104756 +0.000435 2.14787 0.0661908 +0.0005075 1.99837 0.159803 +0.00058 1.98384 0.248948 +0.0006525 1.97162 0.14656 +0.000725 2.07032 0.0791668 +0.0007975 1.94788 0.113753 +0.00087 1.95842 0.0672388 +0.0009425 1.91196 0.0462467 +0.001015 1.92259 0.148635 +0.0010875 1.92049 0.163235 +0.00116 1.97119 -0.0100159 +0.0012325 1.85083 0.160271 +0.001305 1.8496 0.0568012 +0.0013775 1.7652 0.0804193 +0.00145 1.82656 0.0335338 +0.0015225 1.91198 0.113419 +0.001595 1.7918 0.0643413 +0.0016675 1.8289 0.116926 +0.00174 1.80195 0.00133601 +0.0018125 1.81541 0.16675 +0.001885 1.88532 0.0491818 +0.0019575 1.67681 0.10977 +0.00203 1.67171 0.234307 +0.0021025 1.79011 0.0726162 +0.002175 1.77704 0.0931114 +0.0022475 1.76934 0.195483 +0.00232 1.73924 -0.0179944 +0.0023925 1.75902 0.0876254 +0.002465 1.6559 0.110784 +0.0025375 1.72755 0.12915 +0.00261 1.69424 0.166888 +0.0026825 1.58099 0.146126 +0.002755 1.72125 0.146765 +0.0028275 1.69597 0.0926438 +0.0029 1.60403 0.16746 +0.0029725 1.66707 0.135237 +0.003045 1.64127 0.103403 +0.0031175 1.58162 0.129447 +0.00319 1.65152 0.0780521 +0.0032625 1.53122 0.0958878 +0.003335 1.59355 0.100965 +0.0034075 1.60951 0.0778851 +0.00348 1.52033 0.150986 +0.0035525 1.59794 0.0772087 +0.003625 1.57274 0.0844691 +0.0036975 1.55334 0.0866652 +0.00377 1.57355 0.0926313 +0.0038425 1.55082 0.190398 +0.003915 1.53919 0.076787 +0.0039875 1.51059 0.111402 +0.00406 1.484 -0.0206497 +0.0041325 1.36338 0.132553 +0.004205 1.46524 0.0684955 +0.0042775 1.57354 0.0275134 +0.00435 1.44946 0.13621 +0.0044225 1.44459 0.0905813 +0.004495 1.49929 0.130119 +0.0045675 1.48449 0.09575 +0.00464 1.42245 0.0658902 +0.0047125 1.42748 0.137041 +0.004785 1.48737 0.145938 +0.0048575 1.52712 0.0317385 +0.00493 1.425 0.0817345 +0.0050025 1.40651 0.00528976 +0.005075 1.45522 0.218375 +0.0051475 1.42943 0.0524425 +0.00522 1.4524 0.0897129 +0.0052925 1.3867 0.105929 +0.005365 1.36092 0.120424 +0.0054375 1.38668 0.105344 +0.00551 1.33969 0.0957625 +0.0055825 1.37469 0.140886 +0.005655 1.40153 0.165172 +0.0057275 1.313 0.0681615 +0.0058 1.34647 0.0664956 +0.0058725 1.37456 0.0687543 +0.005945 1.29556 0.0679944 +0.0060175 1.2574 0.115644 +0.00609 1.3475 0.118604 +0.0061625 1.31736 0.103491 +0.006235 1.24325 0.0204576 +0.0063075 1.18549 0.0534236 +0.00638 1.25692 0.0444849 +0.0064525 1.22056 0.0878801 +0.006525 1.23253 0.0756139 +0.0065975 1.33949 0.0675268 +0.00667 1.27471 -0.0125543 +0.0067425 1.32247 0.0746411 +0.006815 1.24773 0.0773131 +0.0068875 1.18533 0.0251503 +0.00696 1.21615 0.139007 +0.0070325 1.32792 0.130315 +0.007105 1.2275 0.00483468 +0.0071775 1.09047 0.166191 +0.00725 1.1791 -0.00309369 +0.0073225 1.26346 0.101407 +0.007395 1.20218 0.0346443 +0.0074675 1.12776 0.0319807 +0.00754 1.24974 0.0464972 +0.0076125 1.30313 0.0709378 +0.007685 1.10548 0.0746077 +0.0077575 1.17129 0.137696 +0.00783 1.13822 0.107519 +0.0079025 1.18898 0.100735 +0.007975 1.21816 0.066863 +0.0080475 1.11838 0.0746828 +0.00812 1.19508 0.0839681 +0.0081925 1.14532 0.0713094 +0.008265 1.25356 0.00161573 +0.0083375 1.06832 0.134373 +0.00841 1.0414 0.0560581 +0.0084825 1.14947 0.0527389 +0.008555 1.21659 0.0510981 +0.0086275 1.12474 0.10344 +0.0087 1.05806 0.0525886 +0.0087725 1.0886 0.0492361 +0.008845 1.09973 0.0347487 +0.0089175 1.12989 0.234866 +0.00899 1.09265 0.042222 +0.0090625 1.16032 0.188143 +0.009135 1.005 -0.103211 +0.0092075 1.09703 0.143391 +0.00928 1.07945 0.0300226 +0.0093525 1.10833 0.0631932 +0.009425 1.01634 0.0235722 +0.0094975 0.964305 0.0944432 +0.00957 1.03091 0.0930697 +0.0096425 1.03442 0.1667 +0.009715 1.13783 0.0348781 +0.0097875 1.06171 0.0679068 +0.00986 1.15211 0.137421 +0.0099325 1.02922 0.0387609 +0.010005 1.01147 0.0730796 +0.0100775 1.04882 0.0126169 +0.01015 0.969219 0.0587635 +0.0102225 1.03539 0.0903183 +0.010295 0.967875 0.111269 +0.0103675 0.958314 0.0952699 +0.01044 0.942591 0.0421009 +0.0105125 1.02836 0.067865 +0.010585 1.04474 0.13153 +0.0106575 0.896591 0.1205 +0.01073 0.978091 0.0757141 +0.0108025 0.992128 0.130724 +0.010875 0.966201 0.0607216 +0.0109475 0.866238 -0.0186081 +0.01102 1.08693 -0.0720985 +0.0110925 1.07058 -0.0112141 +0.011165 0.967299 0.084014 +0.0112375 0.897705 0.0212926 +0.01131 0.878542 0.108033 +0.0113825 0.834237 -0.0194765 +0.011455 0.920079 0.013978 +0.0115275 0.940954 0.108822 +0.0116 0.976847 -0.0458543 +0.0116725 0.86967 0.0187166 +0.011745 0.894153 0.0670718 +0.0118175 0.947568 0.0745743 +0.01189 0.843384 -0.00642119 +0.0119625 0.994829 0.0389571 +0.012035 0.942624 0.0696185 +0.0121075 0.955914 0.0360346 +0.01218 0.861262 0.143583 +0.0122525 0.984963 -0.0522504 +0.012325 0.908339 0.153303 +0.0123975 0.930304 0.039859 +0.01247 0.864138 -0.0243362 +0.0125425 0.83933 0.0733468 +0.012615 0.91059 0.0723741 +0.0126875 0.911667 0.0192844 +0.01276 0.809287 -0.0102622 +0.0128325 0.831502 0.00252171 +0.012905 0.877941 0.0619741 +0.0129775 0.859111 0.073994 +0.01305 0.8907 0.125255 +0.0131225 0.882876 -0.0275886 +0.013195 0.802385 0.0112058 +0.0132675 0.730437 0.0776763 +0.01334 0.828375 0.087855 +0.0134125 0.844649 0.0749626 +0.013485 0.878972 -0.0092101 +0.0135575 0.810627 0.0525134 +0.01363 0.809963 0.0858218 +0.0137025 0.768384 0.068938 +0.013775 0.960076 0.138101 +0.0138475 0.828137 0.0788954 +0.01392 0.860176 0.0460088 +0.0139925 0.788545 0.158847 +0.014065 0.810389 -0.00721862 +0.0141375 0.775778 0.180916 +0.01421 0.824718 0.0294965 +0.0142825 0.757416 0.0799183 +0.014355 0.769198 0.070704 +0.0144275 0.75398 -0.0157273 +0.0145 0.854506 -0.0502589 +0.0145725 0.734445 0.0922764 +0.014645 0.74621 0.016078 +0.0147175 0.743442 0.0885105 +0.01479 0.721553 0.0531481 +0.0148625 0.850273 0.0369072 +0.014935 0.672079 0.108283 +0.0150075 0.778412 0.128445 +0.01508 0.824693 0.0477163 +0.0151525 0.794161 0.0598782 +0.015225 0.774179 0.109832 +0.0152975 0.818313 0.130056 +0.01537 0.808698 0.065001 +0.0154425 0.78837 0.0527681 +0.015515 0.700732 0.0643413 +0.0155875 0.691643 0.0839973 +0.01566 0.773728 0.0844858 +0.0157325 0.700598 0.114237 +0.015805 0.649354 0.0627256 +0.0158775 0.700231 0.0596152 +0.01595 0.763295 0.0169255 +0.0160225 0.779506 -0.00174098 +0.016095 0.732754 0.038811 +0.0161675 0.621686 0.110367 +0.01624 0.712781 0.0377464 +0.0163125 0.6764 -0.00203741 +0.016385 0.698728 0.0652515 +0.0164575 0.687497 -0.0633518 +0.01653 0.642912 -0.0578199 +0.0166025 0.766676 0.0742695 +0.016675 0.604381 0.0693054 +0.0167475 0.691618 0.0464639 +0.01682 0.684762 -0.007991 +0.0168925 0.693292 0.0457958 +0.016965 0.761048 -0.00591183 +0.0170375 0.598795 0.0805195 +0.01711 0.710497 -0.0123789 +0.0171825 0.736541 0.0755512 +0.017255 0.674408 0.115677 +0.0173275 0.651112 0.101695 +0.0174 0.546323 0.0369782 +0.0174725 0.750636 -0.0104083 +0.017545 0.633184 0.035446 +0.0176175 0.631585 0.0976455 +0.01769 0.658305 0.0650761 +0.0177625 0.67918 -3.75717e-005 +0.017835 0.727961 0.0864063 +0.0179075 0.678625 0.108918 +0.01798 0.70823 0.0599116 +0.0180525 0.69244 -0.0259227 +0.018125 0.620275 -0.0228457 +0.0181975 0.696315 -0.0161657 +0.01827 0.615098 0.0086924 +0.0183425 0.56972 0.0532691 +0.018415 0.629752 0.0373038 +0.0184875 0.680992 0.00255094 +0.01856 0.701024 -0.00417085 +0.0186325 0.590916 0.0443722 +0.018705 0.620743 0.046443 +0.0187775 0.60636 0.0582207 +0.01885 0.564952 0.0980797 +0.0189225 0.615783 0.0347988 +0.018995 0.597759 -0.00382849 +0.0190675 0.607053 0.0403516 +0.01914 0.58012 0.209636 +0.0192125 0.590115 0.0362183 +0.019285 0.648494 0.124232 +0.0193575 0.595379 0.0903308 +0.01943 0.599412 -0.0240941 +0.0195025 0.60919 0.0632975 +0.019575 0.576345 0.037283 +0.0196475 0.547913 -0.0118821 +0.01972 0.577857 0.0529477 +0.0197925 0.516793 0.0657942 +0.019865 0.548815 0.0503675 +0.0199375 0.53318 0.0804861 +0.02001 0.61099 0.00913913 +0.0200825 0.593509 -0.0115398 +0.020155 0.513265 0.05496 +0.0202275 0.538374 0.0745576 +0.0203 0.586804 0.0658443 +0.0203725 0.647024 0.0278892 +0.020445 0.522842 -0.0324733 +0.0205175 0.598365 -0.00240899 +0.02059 0.577197 0.0276261 +0.0206625 0.530612 0.0944182 +0.020735 0.555007 0.0911157 +0.0208075 0.557871 -0.00166166 +0.02088 0.684562 0.0729544 +0.0209525 0.547584 0.0413119 +0.021025 0.526976 0.0346986 +0.0210975 0.497575 0.0813128 +0.02117 0.51843 0.164325 +0.0212425 0.511741 0.00227539 +0.021315 0.602423 -0.00973198 +0.0213875 0.495321 0.0349199 +0.02146 0.59001 0.0406981 +0.0215325 0.545492 0.00319389 +0.021605 0.520475 0.0378883 +0.0216775 0.605788 0.13988 +0.02175 0.506288 0.0198856 +0.0218225 0.552473 0.0583794 +0.021895 0.550535 0.02414 +0.0219675 0.575239 -0.0141617 +0.02204 0.592862 0.135024 +0.0221125 0.537772 0.0576446 +0.022185 0.5348 -0.0241024 +0.0222575 0.591012 0.0757642 +0.02233 0.447245 0.0648882 +0.0224025 0.487455 0.0208626 +0.022475 0.576675 -0.107674 +0.0225475 0.483096 -0.0443972 +0.02262 0.574391 0.00936458 +0.0226925 0.488169 0.00978625 +0.022765 0.556798 -0.00508518 +0.0228375 0.525732 0.0260313 +0.02291 0.530825 -0.0361014 +0.0229825 0.599283 -0.0262693 +0.023055 0.455921 0.00296009 +0.0231275 0.455992 0.108718 +0.0232 0.583134 0.0709796 +0.0232725 0.622208 -0.00569891 +0.023345 0.552514 0.0477205 +0.0234175 0.539935 0.0422888 +0.02349 0.458664 0.00468855 +0.0235625 0.442983 -0.0192218 +0.023635 0.457011 0.0663871 +0.0237075 0.547066 0.0324566 +0.02378 0.396824 0.0152931 +0.0238525 0.568601 0.0194556 +0.023925 0.362805 0.020896 +0.0239975 0.490653 -0.0424683 +0.02407 0.50132 -0.0600953 +0.0241425 0.455437 0.125672 +0.024215 0.565052 0.0166291 +0.0242875 0.502852 0.089333 +0.02436 0.525494 0.0560121 +0.0244325 0.421606 -0.0166625 +0.024505 0.526796 0.0031939 +0.0245775 0.453224 0.0546886 +0.02465 0.414321 0.0371368 +0.0247225 0.399608 0.0994574 +0.024795 0.531301 0.0676605 +0.0248675 0.569473 -0.0458543 +0.02494 0.456652 0.0149174 +0.0250125 0.366425 0.0767578 +0.025085 0.579293 -0.0189379 +0.0251575 0.45772 0.120562 +0.02523 0.443196 0.0682533 +0.0253025 0.41635 -0.0241567 +0.025375 0.469686 -0.0335672 +0.0254475 0.499717 0.0527681 +0.02552 0.388674 0.010997 +0.0255925 0.438474 0.0576404 +0.025665 0.42655 -0.0356631 +0.0257375 0.554756 0.0125292 +0.02581 0.401529 0.0732759 +0.0258825 0.405725 0.11159 +0.025955 0.471544 0.175936 +0.0260275 0.374529 -0.0956957 +0.0261 0.387309 -0.0461006 +0.0261725 0.495813 0.00892203 +0.026245 0.449729 0.00427106 +0.0263175 0.417866 -0.0686624 +0.02639 0.357687 0.0578617 +0.0264625 0.41496 0.0715265 +0.026535 0.550281 0.0497204 +0.0266075 0.475343 0.0280061 +0.02668 0.389793 0.103106 +0.0267525 0.436069 -0.0653099 +0.026825 0.460079 0.0533735 +0.0268975 0.420024 -0.00620409 +0.02697 0.462159 0.00317719 +0.0270425 0.365745 0.0359845 +0.027115 0.432837 0.0674308 +0.0271875 0.411478 -0.032536 +0.02726 0.439421 -0.0121117 +0.0273325 0.434749 0.0687376 +0.027405 0.400518 0.129522 +0.0274775 0.425406 0.158425 +0.02755 0.333472 0.0168796 +0.0276225 0.436728 -0.0295675 +0.027695 0.332236 0.0563921 +0.0277675 0.497817 0.0796428 +0.02784 0.377723 -0.0514572 +0.0279125 0.522108 0.0292711 +0.027985 0.448172 0.0890825 +0.0280575 0.405683 0.010663 +0.02813 0.458046 -0.0147545 +0.0282025 0.340365 0.0179944 +0.028275 0.479222 0.0304067 +0.0283475 0.283451 0.044059 +0.02842 0.36038 0.0609846 +0.0284925 0.38229 0.0467227 +0.028565 0.429572 0.0169757 +0.0286375 0.442406 0.0672889 +0.02871 0.424141 0.0224616 +0.0287825 0.398506 0.00459253 +0.028855 0.382203 -0.00573648 +0.0289275 0.399775 -0.0387233 +0.029 0.31035 -0.0413119 +0.0290725 0.299583 0.00142786 +0.029145 0.420588 0.114049 +0.0292175 0.30532 0.0208835 +0.02929 0.32989 -0.00361974 +0.0293625 0.250915 -0.0446477 +0.029435 0.326629 0.0886316 +0.0295075 0.386169 -0.0129259 +0.02958 0.31774 -0.070917 +0.0296525 0.338068 0.0971695 +0.029725 0.367377 0.075284 +0.0297975 0.36278 0.101178 +0.02987 0.352109 0.0212718 +0.0299425 0.295775 -0.0253507 +0.030015 0.309645 0.036068 +0.0300875 0.435376 0.0708293 +0.03016 0.379393 0.10344 +0.0302325 0.322408 0.00222529 +0.030305 0.366129 -0.0461173 +0.0303775 0.34565 -0.0932742 +0.03045 0.322592 0.00110638 +0.0305225 0.435647 0.00884271 +0.030595 0.395851 -0.0333584 +0.0306675 0.340056 0.0439338 +0.03074 0.251044 0.149558 +0.0308125 0.324266 0.0862393 +0.030885 0.232787 0.046109 +0.0309575 0.368475 0.035137 +0.03103 0.363962 -0.0142995 +0.0311025 0.274458 -0.0372329 +0.031175 0.369264 0.108534 +0.0312475 0.285229 -0.0171844 +0.03132 0.313924 0.0228332 +0.0313925 0.292807 0.0962635 +0.031465 0.240673 0.0912577 +0.0315375 0.329739 -0.0202029 +0.03161 0.282278 0.0308075 +0.0316825 0.366438 0.0139738 +0.031755 0.357061 -0.0593605 +0.0318275 0.391246 -0.0641576 +0.0319 0.411578 0.123869 +0.0319725 0.348109 -0.0254551 +0.032045 0.358898 0.0731172 +0.0321175 0.31463 -0.0011356 +0.03219 0.333459 0.0365941 +0.0322625 0.427907 0.0161365 +0.032335 0.400356 -0.0341392 +0.0324075 0.33591 0.0443471 +0.03248 0.337576 0.0407816 +0.0325525 0.322604 0.0692302 +0.032625 0.281743 0.0841059 +0.0326975 0.317477 0.0955663 +0.03277 0.444319 0.00685539 +0.0328425 0.37776 0.0210463 +0.032915 0.331092 0.00753591 +0.0329875 0.285146 0.169155 +0.03306 0.435042 0.0821937 +0.0331325 0.35613 0.0329284 +0.033205 0.283864 0.0642828 +0.0332775 0.362496 0.0058993 +0.03335 0.327013 0.0568471 +0.0334225 0.289571 0.0242151 +0.033495 0.275836 -0.00603291 +0.0335675 0.337651 0.0166249 +0.03364 0.312801 -0.0281355 +0.0337125 0.271986 0.0116567 +0.033785 0.198702 0.008993 +0.0338575 0.377368 0.0837802 +0.03393 0.343684 -0.0347153 +0.0340025 0.231893 -0.0165456 +0.034075 0.23358 0.038619 +0.0341475 0.325021 0.0602999 +0.03422 0.302476 0.0942261 +0.0342925 0.324032 -0.0125919 +0.034365 0.401562 0.0188419 +0.0344375 0.388152 -0.0590056 +0.03451 0.302577 0.0281605 +0.0345825 0.301174 0.0490732 +0.034655 0.413991 0.0335421 +0.0347275 0.244585 -0.00121075 +0.0348 0.194694 -0.0559119 +0.0348725 0.272888 -0.0752214 +0.034945 0.28973 0.0127338 +0.0350175 0.256288 -0.0189797 +0.03509 0.20314 0.0615607 +0.0351625 0.257716 -0.000956074 +0.035235 0.294619 0.0103624 +0.0353075 0.279159 0.129384 +0.03538 0.205236 -0.0220232 +0.0354525 0.386829 -0.132574 +0.035525 0.290227 -0.034636 +0.0355975 0.322633 -0.0194514 +0.03567 0.237588 0.0406689 +0.0357425 0.226503 -0.0506639 +0.035815 0.351474 0.0703826 +0.0358875 0.251094 0.0225034 +0.03596 0.311444 0.033705 +0.0360325 0.282394 0.0808285 +0.036105 0.233338 -0.0220441 +0.0361775 0.238828 0.00943973 +0.03625 0.299111 -0.0398924 +0.0363225 0.325284 -0.0403224 +0.036395 0.35833 0.00203323 +0.0364675 0.274345 0.0905605 +0.03654 0.380395 -0.115911 +0.0366125 0.274641 0.123677 +0.036685 0.303328 0.0131722 +0.0367575 0.227965 0.0651387 +0.03683 0.312413 -0.00328157 +0.0369025 0.243396 -0.0124958 +0.036975 0.211532 0.0614981 +0.0370475 0.242506 -0.0468187 +0.03712 0.291717 -0.0477456 +0.0371925 0.274504 0.0764113 +0.037265 0.279768 -0.0508768 +0.0373375 0.272875 0.0468229 +0.03741 0.222579 0.0295759 +0.0374825 0.271164 -0.0168587 +0.037555 0.239388 -0.0251128 +0.0376275 0.306731 0.00210003 +0.0377 0.287622 0.0673014 +0.0377725 0.22376 0.15228 +0.037845 0.206814 -0.0509019 +0.0379175 0.245345 0.0437668 +0.03799 0.172249 0.0314713 +0.0380625 0.28244 0.0226787 +0.038135 0.250848 0.0554861 +0.0382075 0.277301 -0.0137317 +0.03828 0.273184 0.00459253 +0.0383525 0.175902 0.0449483 +0.038425 0.256868 -0.00335255 +0.0384975 0.241312 0.0806573 +0.03857 0.215227 0.00956915 +0.0386425 0.29388 -0.0547095 +0.038715 0.166755 -0.0442427 +0.0387875 0.177301 0.0349616 +0.03886 0.271928 -0.0779477 +0.0389325 0.23672 0.0463636 +0.039005 0.287079 -0.0480796 +0.0390775 0.219978 -0.0260396 +0.03915 0.269014 0.0349825 +0.0392225 0.184661 -0.02123 +0.039295 0.264212 0.0185956 +0.0393675 0.264029 -0.0200276 +0.03944 0.141917 0.0963011 +0.0395125 0.219093 -0.0212759 +0.039585 0.281764 -0.0533067 +0.0396575 0.304652 -0.0221777 +0.03973 0.257307 -0.108363 +0.0398025 0.28601 0.0329493 +0.039875 0.276161 0.0684495 +0.0399475 0.288778 -0.0262818 +0.04002 0.187016 -0.0363686 +0.0400925 0.188068 0.0366901 +0.040165 0.270992 0.0471152 +0.0402375 0.24833 -0.00814964 +0.04031 0.228695 0.0243821 +0.0403825 0.21511 0.0380303 +0.040455 0.177418 0.0175393 +0.0405275 0.17862 0.111277 +0.0406 0.202155 0.0122078 +0.0406725 0.24689 0.0810497 +0.040745 0.137024 0.0205703 +0.0408175 0.247687 0.0402264 +0.04089 0.19312 -0.041458 +0.0409625 0.197203 -0.0301437 +0.041035 0.233467 0.0561791 +0.0411075 0.276399 -0.0545258 +0.04118 0.221665 0.044368 +0.0412525 0.166091 0.119468 +0.041325 0.271681 0.00791585 +0.0413975 0.121552 -0.0276512 +0.04147 0.20582 0.0705955 +0.0415425 0.275986 0.0784612 +0.041615 0.22877 0.0599199 +0.0416875 0.198573 0.0202196 +0.04176 0.234924 0.0525552 +0.0418325 0.351057 0.0536992 +0.041905 0.146138 -0.0684829 +0.0419775 0.255023 0.0889698 +0.04205 0.174566 0.00273047 +0.0421225 0.252163 -0.0792211 +0.042195 0.194552 -0.153115 +0.0422675 0.190419 0.113849 +0.04234 0.188724 0.111565 +0.0424125 0.214254 0.0445559 +0.042485 0.169598 0.0686499 +0.0425575 0.201896 0.0517745 +0.04263 0.113222 0.0300894 +0.0427025 0.259006 0.0208 +0.042775 0.33991 0.0735639 +0.0428475 0.205273 0.0515282 +0.04292 0.232211 0.117347 +0.0429925 0.202981 -0.0264905 +0.043065 0.235668 -0.0238811 +0.0431375 0.28533 -0.0535322 +0.04321 0.091671 0.112463 +0.0432825 0.179159 -0.041291 +0.043355 0.206317 0.0563837 +0.0434275 0.285338 0.0515323 +0.0435 0.259515 0.0473991 +0.0435725 0.21736 -0.124311 +0.043645 0.123013 0.0251002 +0.0437175 0.16716 -0.00241316 +0.04379 0.223163 0.0149549 +0.0438625 0.182206 0.0279685 +0.043935 0.132423 0.0100409 +0.0440075 0.120683 0.051858 +0.04408 0.130662 -0.0357466 +0.0441525 0.119948 -0.0436708 +0.044225 0.172737 -0.0217352 +0.0442975 0.275961 -0.0141241 +0.04437 0.284156 0.0370116 +0.0444425 0.29436 0.0646085 +0.044515 0.129146 -0.0182699 +0.0445875 0.0580746 -0.0469189 +0.04466 0.230307 -0.0666376 +0.0447325 0.188427 -0.0167502 +0.044805 0.178265 0.0190506 +0.0448775 0.171047 0.0536658 +0.04495 0.16923 0.0150635 +0.0450225 0.105803 0.0185496 +0.045095 0.154526 -0.019464 +0.0451675 0.21339 0.0297512 +0.04524 0.13358 -0.00614981 +0.0453125 0.237985 -0.0158275 +0.045385 0.21283 0.0561833 +0.0454575 0.155687 -0.175334 +0.04553 0.241225 0.00783234 +0.0456025 0.113465 0.0451696 +0.045675 0.104455 -0.0113728 +0.0457475 0.138736 -0.00678023 +0.04582 0.19517 -0.126804 +0.0458925 0.214993 -0.0306322 +0.045965 0.1061 0.00813294 +0.0460375 0.15433 -0.0121827 +0.04611 0.215419 0.0555111 +0.0461825 0.192535 -0.0564923 +0.046255 0.0667294 -0.0252756 +0.0463275 0.193567 0.0185538 +0.0464 0.102409 0.000175346 +0.0464725 0.128232 0.0192803 +0.046545 0.166917 0.0500961 +0.0466175 0.158417 0.0702281 +0.04669 0.224666 -0.0425894 +0.0467625 0.210421 0.0184787 +0.046835 0.156221 -0.0252756 +0.0469075 0.00987393 0.0387693 +0.04698 0.168349 0.0111139 +0.0470525 0.221118 -0.0240607 +0.047125 0.139504 -0.0325944 +0.0471975 0.249671 0.0641576 +0.04727 0.236073 -0.0479836 +0.0473425 0.240377 -0.0999918 +0.047415 0.285522 0.0786324 +0.0474875 0.193717 -0.0395166 +0.04756 0.195938 0.0671678 +0.0476325 0.112567 -0.05701 +0.047705 0.139316 0.0685915 +0.0477775 0.0100284 -0.0294339 +0.04785 0.295091 0.0495325 +0.0479225 0.298589 -0.14818 +0.047995 0.122466 -0.066934 +0.0480675 0.238615 0.00850452 +0.04814 0.20281 0.0473531 +0.0482125 0.139813 -0.0100284 +0.048285 0.10977 -0.0334628 +0.0483575 0.166863 -0.00335254 +0.04843 0.0811291 0.0698649 +0.0485025 0.261782 0.0407858 +0.048575 0.213381 0.00492653 +0.0486475 0.260722 -0.0432282 +0.04872 0.177714 0.0982926 +0.0487925 0.160563 0.023042 +0.048865 0.212141 0.0695183 +0.0489375 0.186615 0.0294172 +0.04901 0.186177 0.0193011 +0.0490825 0.170366 -0.0350368 +0.049155 0.2311 -0.0686708 +0.0492275 0.111452 0.0668338 +0.0493 0.216179 0.00575319 +0.0493725 0.0883686 0.0415958 +0.049445 0.176123 0.0505512 +0.0495175 0.128703 0.117865 +0.04959 0.0814923 0.0805195 +0.0496625 0.158496 -0.0346402 +0.049735 0.159148 0.0180486 +0.0498075 0.0913662 0.00785322 +0.04988 0.145429 0.0261774 +0.0499525 0.140878 0.015076 +0.050025 0.167306 -0.0755638 +0.0500975 0.109477 0.0198105 +0.05017 0.12763 -0.0400928 +0.0502425 0.110738 0.029651 +0.050315 0.199328 -0.0236181 +0.0503875 0.156192 0.0943514 +0.05046 0.164112 0.0958961 +0.0505325 0.138252 0.0293504 +0.050605 0.195984 -0.014145 +0.0506775 0.166291 0.0192803 +0.05075 0.162125 -0.0472863 +0.0508225 0.157645 -0.0220734 +0.050895 0.164212 0.0837927 +0.0509675 0.130227 0.0672262 +0.05104 0.142982 0.00129844 +0.0511125 0.0838261 0.0131263 +0.051185 0.0349032 0.0558577 +0.0512575 0.200572 -0.0768413 +0.05133 0.176933 0.0771544 +0.0514025 0.207532 -0.0139947 +0.051475 0.179526 0.0957709 +0.0515475 0.107411 -0.0134853 +0.05162 0.151436 -0.00905981 +0.0516925 0.093938 0.101812 +0.051765 0.184089 -0.0437459 +0.0518375 0.143992 -0.0229125 +0.05191 0.107244 -0.0122913 +0.0519825 0.109135 -0.0237601 +0.052055 0.23292 0.024499 +0.0521275 0.207507 0.0635856 +0.0522 0.217757 -0.0799768 +0.0522725 0.109937 0.0373247 +0.052345 0.136465 0.0108175 +0.0524175 0.141821 0.0012191 +0.05249 0.126161 0.0253507 +0.0525625 0.0357382 0.0951571 +0.052635 0.201746 0.00683034 +0.0527075 0.278608 0.00825402 +0.05278 0.13353 0.034732 +0.0528525 0.17424 -0.045608 +0.052925 0.124428 0.0210922 +0.0529975 0.191813 -0.0330328 +0.05307 0.169961 -0.0581664 +0.0531425 0.165014 -0.0260104 +0.053215 0.109878 0.0306572 +0.0532875 0.172454 -0.104238 +0.05336 0.125806 -0.0366818 +0.0534325 0.111557 0.0791835 +0.053505 0.176295 0.0105503 +0.0535775 0.108112 0.0184369 +0.05365 0.18429 0.101152 +0.0537225 0.150401 -0.0113352 +0.053795 0.0573189 -0.00206246 +0.0538675 0.10577 0.0981339 +0.05394 0.225305 -0.00869658 +0.0540125 0.0829285 -0.0240941 +0.054085 0.235087 0.0153683 +0.0541575 0.09408 0.00285989 +0.05423 0.15929 -0.0294631 +0.0543025 0.0472237 0.0316383 +0.054375 0.184653 0.0182824 +0.0544475 0.118149 0.0155979 +0.05452 0.0744115 0.0503257 +0.0545925 0.219623 0.0811082 +0.054665 0.0341434 0.130574 +0.0547375 0.21331 0.112759 +0.05481 0.0773632 -0.0772505 +0.0548825 0.143445 0.0166291 +0.054955 0.154342 0.0275051 +0.0550275 0.23039 0.0422846 +0.0551 0.11923 0.160893 +0.0551725 0.0994616 0.12819 +0.055245 0.120253 0.0227121 +0.0553175 0.17918 0.105732 +0.05539 0.103453 0.0339805 +0.0554625 0.119606 0.0730588 +0.055535 0.181747 0.0566259 +0.0556075 0.112876 -0.00441717 +0.05568 0.0725536 0.0897046 +0.0557525 0.0274717 -0.0672346 +0.055825 0.099971 -0.0228165 +0.0558975 0.262192 0.0231088 +0.05597 0.180286 0.040218 +0.0560425 0.0905145 0.104689 +0.056115 0.170111 -0.0340181 +0.0561875 0.148526 -0.016817 +0.05626 0.119456 0.0272003 +0.0563325 0.138319 0.0119907 +0.056405 0.0973532 -0.0643997 +0.0564775 0.0980212 0.029221 +0.05655 0.0233092 -0.0650469 +0.0566225 0.0451696 0.0122119 +0.056695 0.187208 0.0388486 +0.0567675 0.116529 0.0421677 +0.05684 0.174124 0.101441 +0.0569125 0.169544 0.0486223 +0.056985 0.0848448 -0.0614271 +0.0570575 0.0995409 0.000501008 +0.05713 0.151499 0.00275134 +0.0572025 0.130524 0.0511774 +0.057275 0.12862 -0.0184035 +0.0573475 0.0655479 0.0365732 +0.05742 0.228841 0.0446352 +0.0574925 0.0948941 -0.00252588 +0.057565 0.0214137 -0.00574065 +0.0576375 0.0523256 0.03955 +0.05771 0.0934621 0.0505929 +0.0577825 0.175409 0.0209419 +0.057855 0.0839681 0.0310789 +0.0579275 0.1959 0.0537326 +0.058 0.119022 -0.0838971 +0.0580725 0.126524 0.115089 +0.058145 0.0400093 0.0184494 +0.0582175 0.0819683 0.0704494 +0.05829 0.107294 -0.0771294 +0.0583625 0.179605 -0.0150677 +0.058435 0.120541 0.0388737 +0.0585075 0.124103 0.0467144 +0.05858 0.0754427 -0.0742737 +0.0586525 0.070537 0.045729 +0.058725 0.151328 0.00350284 +0.0587975 0.0988312 -0.0732174 +0.05887 0.126416 -0.0449942 +0.0589425 0.0897547 -0.0175643 +0.059015 0.1043 0.0283818 +0.0590875 0.0756097 -0.0699233 +0.05916 0.154296 -0.0916794 +0.0592325 0.129806 0.0269748 +0.059305 0.0768121 0.0458084 +0.0593775 0.224524 0.121744 +0.05945 0.109962 0.0362977 +0.0595225 0.0915583 -0.0247662 +0.059595 0.162776 0.0342018 +0.0596675 -0.031488 0.0364438 +0.05974 0.150986 -0.0586925 +0.0598125 0.068867 -0.067268 +0.059885 0.121293 -0.131154 +0.0599575 0.152092 0.0427982 +0.06003 0.0880513 0.0222988 +0.0601025 0.012905 0.0174725 +0.060175 0.15314 -0.0776847 +0.0602475 0.069606 -0.0330745 +0.06032 0.147053 -0.0116233 +0.0603925 0.198547 0.0342018 +0.060465 0.126754 0.0895417 +0.0605375 0.0846361 -0.00820392 +0.06061 0.125618 -0.0387693 +0.0606825 0.179334 0.0405103 +0.060755 0.0221694 -0.000893454 +0.0608275 0.111665 0.0090097 +0.0609 0.0750502 -0.0285154 +0.0609725 0.0742612 -0.0283192 +0.061045 0.104434 -0.0479961 +0.0611175 0.0717144 0.0192928 +0.06119 0.0446853 0.0651471 +0.0612625 0.131396 0.052384 +0.061335 0.117832 0.0172512 +0.0614075 0.101048 -0.0619657 +0.06148 0.172441 -0.0187751 +0.0615525 0.0879719 0.0694682 +0.061625 0.0760439 0.0097946 +0.0616975 0.13644 -0.0595859 +0.06177 0.0393329 0.0624208 +0.0618425 0.0865691 0.0685748 +0.061915 -0.00321477 0.0165331 +0.0619875 0.175923 0.0152764 +0.06206 0.156672 -0.0255261 +0.0621325 0.16966 0.0150217 +0.062205 0.100806 0.0501713 +0.0622775 0.148618 -0.0301186 +0.06235 0.0455453 -0.0157482 +0.0624225 0.0842311 0.0557491 +0.062495 0.163031 0.0196811 +0.0625675 0.137784 0.0268078 +0.06264 0.0409528 -0.11903 +0.0627125 0.209666 0.0729794 +0.062785 0.0149048 0.0565883 +0.0628575 0.106601 0.0897171 +0.06293 0.181826 -0.000943555 +0.0630025 0.0266867 0.00748999 +0.063075 -0.00728125 -0.0205369 +0.0631475 0.145854 0.0333 +0.06322 0.18644 0.0151261 +0.0632925 0.0851914 0.0789539 +0.063365 0.100409 0.055795 +0.0634375 0.0901889 0.0526387 +0.06351 0.108212 -0.00627089 +0.0635825 0.0779811 0.0487058 +0.063655 0.137534 0.0170633 +0.0637275 0.0985013 0.0636357 +0.0638 0.0268162 0.0375919 +0.0638725 0.105824 0.0541041 +0.063945 0.0964639 -0.0389864 +0.0640175 0.135638 0.066291 +0.06409 0.0670342 -0.0320934 +0.0641625 0.0708042 -0.0196017 +0.064235 0.136724 0.0468479 +0.0643075 0.15223 -0.0178816 +0.06438 0.0211882 0.0307156 +0.0644525 0.103666 0.0128549 +0.064525 0.0318888 0.0717728 +0.0645975 0.0468104 0.0440841 +0.06467 0.0979252 -0.0915833 +0.0647425 0.0769123 0.0691301 +0.064815 0.130653 0.0230127 +0.0648875 0.114162 0.0402681 +0.06496 0.112346 -0.08244 +0.0650325 0.107912 -0.000730634 +0.065105 0.0841852 0.047946 +0.0651775 0.0076904 0.0432115 +0.06525 0.103474 0.0676479 +0.0653225 0.0631472 0.0258476 +0.065395 0.102827 -0.0759019 +0.0654675 0.147207 0.0361474 +0.06554 0.0943514 -0.00363644 +0.0656125 0.0723365 -0.00321894 +0.065685 0.122754 0.005749 +0.0657575 0.151153 -0.000517704 +0.06583 0.116976 0.0472237 +0.0659025 0.12356 -0.0711341 +0.065975 0.0673431 0.0657191 +0.0660475 0.0925979 0.10534 +0.06612 0.0500836 0.01541 +0.0661925 0.0214012 0.012308 +0.066265 0.197174 0.0959003 +0.0663375 0.134331 -0.0309077 +0.06641 0.0996161 -0.105582 +0.0664825 0.0528475 -0.0454869 +0.066555 0.016078 -0.0701112 +0.0666275 0.0985473 0.00233383 +0.0667 0.0578366 -0.0103749 +0.0667725 0.0887694 -0.0354418 +0.066845 0.0480337 -0.0631848 +0.0669175 0.0150176 4.59272e-005 +0.06699 0.0175059 0.0611766 +0.0670625 0.111995 -0.0296719 +0.067135 0.0425978 0.0381013 +0.0672075 0.0719482 0.00584504 +0.06728 0.0683118 0.0836383 +0.0673525 0.0767286 0.0841309 +0.067425 0.166003 0.11688 +0.0674975 0.0408985 0.0459086 +0.06757 -0.00343186 0.0778809 +0.0676425 0.0163911 -0.0313503 +0.067715 -0.0295842 -0.00133601 +0.0677875 0.0729084 0.0147629 +0.06786 0.12227 0.0399592 +0.0679325 0.0697521 0.0886065 +0.068005 0.168896 -0.0819683 +0.0680775 0.163114 -0.0145667 +0.06815 0.139488 0.0155227 +0.0682225 0.0750795 0.0523632 +0.068295 0.10428 -0.00100201 +0.0683675 0.0790624 0.0610222 +0.06844 0.20959 0.0165331 +0.0685125 0.00479711 0.0331163 +0.068585 0.0554276 -0.0114646 +0.0686575 0.0813295 -0.157319 +0.06873 0.0473698 0.0396669 +0.0688025 -0.0338928 0.038477 +0.068875 0.166108 0.0136607 +0.0689475 -0.0189504 0.00977791 +0.06902 0.0389321 0.0283526 +0.0690925 0.0498665 -0.0083417 +0.069165 0.00261774 0.0285405 +0.0692375 0.153311 0.0697772 +0.06931 0.00964013 0.0408401 +0.0693825 -0.0168796 0.0198272 +0.069455 0.122241 0.0234177 +0.0695275 0.184561 -0.0385772 +0.0696 -0.00437543 0.016007 +0.0696725 0.0796052 -0.0261357 +0.069745 0.0981799 0.0327364 +0.0698175 0.0752715 -0.0469648 +0.06989 0.0414204 0.0485597 +0.0699625 0.103687 -0.0381681 +0.070035 0.103703 -0.0198021 +0.0701075 -0.0140991 0.0143579 +0.07018 0.0627882 0.0544047 +0.0702525 0.132315 -0.0166709 +0.070325 0.0671469 0.0186457 +0.0703975 0.0415164 0.118859 +0.07047 0.0485973 0.0823774 +0.0705425 0.0820058 0.0349617 +0.070615 0.0722321 0.0402347 +0.0706875 0.117565 -0.00269289 +0.07076 0.0601245 0.00660489 +0.0708325 0.0122119 0.0968647 +0.070905 0.0585923 0.0252714 +0.0709775 0.0979001 -0.0270876 +0.07105 0.0538202 0.0678441 +0.0711225 0.125 0.00963595 +0.071195 -0.0380303 -0.108033 +0.0712675 0.163815 -0.0783402 +0.07134 -0.056605 -0.0120282 +0.0714125 0.0844315 -0.00997831 +0.071485 0.0521753 0.0484887 +0.0715575 0.100539 0.0136022 +0.07163 0.101591 0.104676 +0.0717025 0.0848448 0.0298598 +0.071775 0.0296009 -0.0794716 +0.0718475 0.148572 0.0216559 +0.07192 0.0395166 -0.0186707 +0.0719925 0.0640824 0.000918502 +0.072065 0.0123581 0.00278474 +0.0721375 0.0392202 -0.00227539 +0.07221 0.153933 0.00190381 +0.0722825 0.0625168 -0.0298932 +0.072355 0.117656 0.09408 +0.0724275 0.10266 -0.0107089 +0.0725 0.0804861 -0.00627924 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/11/data-05500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/11/data-05500um.dat new file mode 100644 index 0000000..b44f7c0 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/11/data-05500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 1.73457 0.154655 +0.000145 2.18707 0.0273088 +0.0002175 2.0385 0.0807116 +0.00029 2.09575 0.0846277 +0.0003625 1.99214 0.177038 +0.000435 2.00736 0.112166 +0.0005075 1.97318 0.0963136 +0.00058 1.96037 0.0142368 +0.0006525 1.97557 0.116141 +0.000725 1.96019 0.139003 +0.0007975 1.99241 0.195759 +0.00087 1.96774 0.165769 +0.0009425 1.98679 0.126591 +0.001015 1.78207 0.10415 +0.0010875 1.80207 0.102518 +0.00116 1.8328 0.143057 +0.0012325 1.85187 0.0945894 +0.001305 1.90277 0.155499 +0.0013775 1.78618 0.153754 +0.00145 1.87596 0.115723 +0.0015225 1.80359 0.0459294 +0.001595 1.83107 0.123297 +0.0016675 1.75952 0.080077 +0.00174 1.85501 0.112559 +0.0018125 1.78712 0.107561 +0.001885 1.80489 0.206426 +0.0019575 1.72725 0.0865816 +0.00203 1.72879 0.153653 +0.0021025 1.6927 0.111319 +0.002175 1.64093 0.149779 +0.0022475 1.81443 0.107553 +0.00232 1.69037 0.124194 +0.0023925 1.74591 0.0228833 +0.002465 1.60252 0.0964305 +0.0025375 1.7377 0.135225 +0.00261 1.61867 0.109436 +0.0026825 1.69532 0.0788746 +0.002755 1.73522 0.15066 +0.0028275 1.76503 0.146877 +0.0029 1.60668 0.0883519 +0.0029725 1.63309 -0.0465557 +0.003045 1.6051 0.0819474 +0.0031175 1.66768 0.149641 +0.00319 1.57519 0.166579 +0.0032625 1.61305 0.119756 +0.003335 1.5647 0.122362 +0.0034075 1.56622 0.11159 +0.00348 1.51753 0.15964 +0.0035525 1.53108 0.117798 +0.003625 1.53102 0.155365 +0.0036975 1.36337 0.106764 +0.00377 1.50543 -0.00187041 +0.0038425 1.51757 0.0461382 +0.003915 1.50698 0.10286 +0.0039875 1.44925 0.183029 +0.00406 1.40604 0.209603 +0.0041325 1.40472 0.186507 +0.004205 1.45072 0.0165331 +0.0042775 1.43467 0.0447103 +0.00435 1.39966 0.0602206 +0.0044225 1.52267 0.0353666 +0.004495 1.42679 0.171243 +0.0045675 1.35257 0.126315 +0.00464 1.45321 0.0636984 +0.0047125 1.52817 0.0839389 +0.004785 1.37295 0.0303482 +0.0048575 1.39809 0.130257 +0.00493 1.56657 -0.0519791 +0.0050025 1.31806 0.0394749 +0.005075 1.38794 0.0896837 +0.0051475 1.28912 0.0738311 +0.00522 1.38497 0.157081 +0.0052925 1.32271 0.127651 +0.005365 1.37236 0.0843689 +0.0054375 1.34921 0.0303984 +0.00551 1.31484 -0.00801187 +0.0055825 1.27286 0.0370659 +0.005655 1.33839 0.0625419 +0.0057275 1.35178 0.128603 +0.0058 1.28053 0.0894708 +0.0058725 1.36148 0.0858093 +0.005945 1.288 0.0130219 +0.0060175 1.43842 0.139154 +0.00609 1.32565 0.0829202 +0.0061625 1.2422 0.07285 +0.006235 1.26532 0.0986224 +0.0063075 1.34647 0.0700861 +0.00638 1.37919 0.169402 +0.0064525 1.30151 -0.0416542 +0.006525 1.18519 0.063356 +0.0065975 1.26826 0.116596 +0.00667 1.1491 0.104797 +0.0067425 1.28906 0.157085 +0.006815 1.32987 0.113398 +0.0068875 1.1926 0.0902431 +0.00696 1.27747 0.0815507 +0.0070325 1.28865 0.0917754 +0.007105 1.19931 0.0743154 +0.0071775 1.19063 0.0222988 +0.00725 1.16634 0.145433 +0.0073225 1.20604 0.195516 +0.007395 1.21715 0.0789831 +0.0074675 1.30785 0.150748 +0.00754 1.15894 0.102451 +0.0076125 1.13713 0.101457 +0.007685 1.2143 0.157945 +0.0077575 1.23564 0.0105503 +0.00783 1.16712 5.00986e-005 +0.0079025 1.15242 0.109636 +0.007975 1.06562 0.116375 +0.0080475 1.07291 0.0715724 +0.00812 1.08973 0.105265 +0.0081925 1.11731 0.105737 +0.008265 1.19508 0.0928567 +0.0083375 1.09268 0.0053482 +0.00841 1.11637 0.0618989 +0.0084825 1.09968 0.116103 +0.008555 1.12317 0.0982425 +0.0086275 1.0659 0.110354 +0.0087 1.18551 0.135417 +0.0087725 1.09095 0.123172 +0.008845 1.12415 0.079363 +0.0089175 1.04215 0.0793797 +0.00899 1.08245 0.0094606 +0.0090625 1.10949 0.0359136 +0.009135 0.998895 0.164262 +0.0092075 1.1113 0.0646628 +0.00928 1.14928 0.0952615 +0.0093525 1.01669 0.0492945 +0.009425 1.07013 0.186432 +0.0094975 1.05477 0.173255 +0.00957 0.938408 0.0578575 +0.0096425 1.04549 0.0958168 +0.009715 1.11536 0.0942804 +0.0097875 1.11072 0.122153 +0.00986 1.08583 0.114872 +0.0099325 1.12283 0.12657 +0.010005 0.93265 0.0031605 +0.0100775 1.10753 0.0273381 +0.01015 0.97372 0.202798 +0.0102225 1.0854 0.0030269 +0.010295 1.05664 0.114275 +0.0103675 1.04385 0.125138 +0.01044 0.944963 0.00496828 +0.0105125 1.0638 0.0295216 +0.010585 0.957191 0.0930529 +0.0106575 1.0635 0.0829452 +0.01073 0.951814 0.129597 +0.0108025 0.946236 0.0362851 +0.010875 0.922046 0.078766 +0.0109475 0.959884 0.0963846 +0.01102 0.979231 0.0731506 +0.0110925 1.00362 -0.0707249 +0.011165 1.01104 -0.0580495 +0.0112375 0.866635 0.0657733 +0.01131 0.89361 0.0586466 +0.0113825 0.946223 0.0634228 +0.011455 0.925457 0.0690215 +0.0115275 0.896991 -0.0243112 +0.0116 0.84609 0.0900219 +0.0116725 0.919971 0.0816718 +0.011745 0.90687 0.151862 +0.0118175 0.933402 0.072587 +0.01189 0.881794 0.148614 +0.0119625 0.867357 0.168404 +0.012035 0.963291 0.0828116 +0.0121075 0.887214 -0.0522379 +0.01218 0.917078 0.095178 +0.0122525 0.921507 0.0530687 +0.012325 0.869052 0.0647713 +0.0123975 0.846954 0.0125668 +0.01247 0.935276 -0.0446561 +0.0125425 0.907166 0.0291333 +0.012615 0.974735 0.114446 +0.0126875 0.885844 0.0839639 +0.01276 0.948177 0.0275176 +0.0128325 0.785468 0.020132 +0.012905 0.934362 0.0286448 +0.0129775 0.896035 0.0411574 +0.01305 0.872743 0.0397838 +0.0131225 0.813119 0.0927816 +0.013195 0.874797 0.0703993 +0.0132675 0.8157 0.0454911 +0.01334 0.850753 0.00909738 +0.0134125 0.824567 0.123606 +0.013485 0.829014 0.0922847 +0.0135575 0.805517 0.052288 +0.01363 0.770413 0.0694056 +0.0137025 0.835498 0.11931 +0.013775 0.848269 -0.00827072 +0.0138475 0.884892 0.0538578 +0.01392 0.886909 -0.0326612 +0.0139925 0.797154 0.0512276 +0.014065 0.763245 0.0315089 +0.0141375 0.721507 0.0764948 +0.01421 0.770601 -0.0298514 +0.0142825 0.707483 0.00488896 +0.014355 0.793994 0.0925352 +0.0144275 0.864021 0.0580412 +0.0145 0.831561 0.0225577 +0.0145725 0.710585 0.061519 +0.014645 0.791042 0.0994533 +0.0147175 0.829001 0.0777807 +0.01479 0.832684 0.054793 +0.0148625 0.749112 0.136043 +0.014935 0.705871 -0.0206455 +0.0150075 0.765545 0.0294089 +0.01508 0.737405 -0.0270249 +0.0151525 0.839297 0.0977123 +0.015225 0.85608 0.058371 +0.0152975 0.714351 0.0659654 +0.01537 0.718071 0.0738603 +0.0154425 0.748528 -0.00169923 +0.015515 0.747521 0.0844649 +0.0155875 0.675448 0.0698356 +0.01566 0.670041 -0.0195224 +0.0157325 0.839543 0.147541 +0.015805 0.668229 0.0161281 +0.0158775 0.796069 0.0472529 +0.01595 0.704819 0.0397671 +0.0160225 0.690027 0.126804 +0.016095 0.661366 0.00369907 +0.0161675 0.808982 0.0588094 +0.01624 0.808865 0.0984846 +0.0163125 0.778517 0.0162116 +0.016385 0.827949 -0.0307783 +0.0164575 0.710806 0.00663411 +0.01653 0.63338 0.0894917 +0.0166025 0.687071 0.0152764 +0.016675 0.716827 0.00767369 +0.0167475 0.631986 0.113352 +0.01682 0.635852 0.0477957 +0.0168925 0.784558 0.130741 +0.016965 0.754473 -0.0122036 +0.0170375 0.713783 0.166901 +0.01711 0.681068 0.0491192 +0.0171825 0.688111 0.183334 +0.017255 0.769123 0.0365732 +0.0173275 0.658013 0.0272796 +0.0174 0.659069 -0.0241149 +0.0174725 0.649208 0.0414037 +0.017545 0.674012 0.0575235 +0.0176175 0.573014 -0.00131931 +0.01769 0.655433 -0.00248832 +0.0177625 0.635455 0.0143997 +0.017835 0.656953 0.0166709 +0.0179075 0.540682 0.0652181 +0.01798 0.73528 0.156355 +0.0180525 0.733898 0.0532441 +0.018125 0.688219 0.0306196 +0.0181975 0.515482 0.04785 +0.01827 0.702615 0.051716 +0.0183425 0.680483 0.117293 +0.018415 0.727406 0.191191 +0.0184875 0.634495 0.188381 +0.01856 0.652126 0.0720317 +0.0186325 0.649968 0.0137108 +0.018705 0.691873 0.0127797 +0.0187775 0.505942 0.0592018 +0.01885 0.721686 0.0750461 +0.0189225 0.596569 0.122959 +0.018995 0.728145 -0.0139237 +0.0190675 0.642628 0.07409 +0.01914 0.588374 0.0814631 +0.0192125 0.577314 0.0492653 +0.019285 0.558472 0.0784153 +0.0193575 0.656051 0.110262 +0.01943 0.585505 0.0792962 +0.0195025 0.666121 -0.0107006 +0.019575 0.695764 0.119013 +0.0196475 0.609984 -0.0336131 +0.01972 0.524291 0.185776 +0.0197925 0.573619 0.00308535 +0.019865 0.602277 -0.0360889 +0.0199375 0.543329 0.0502589 +0.02001 0.600377 0.11273 +0.0200825 0.611065 0.151407 +0.020155 0.6226 0.0466308 +0.0202275 0.620237 0.0939464 +0.0203 0.546903 0.0754469 +0.0203725 0.625815 0.0913955 +0.020445 0.623824 0.0429944 +0.0205175 0.662242 0.0706539 +0.02059 0.626337 0.0186832 +0.0206625 0.454109 0.00371995 +0.020735 0.64219 0.0880638 +0.0208075 0.57655 0.0265239 +0.02088 0.533318 -0.0454284 +0.0209525 0.515035 0.0535823 +0.021025 0.605282 -0.0289788 +0.0210975 0.657132 0.114963 +0.02117 0.526137 0.0680696 +0.0212425 0.506293 0.0821352 +0.021315 0.632069 0.0285989 +0.0213875 0.662927 0.0345901 +0.02146 0.574655 0.123764 +0.0215325 0.634662 0.0921511 +0.021605 0.57349 -0.0403349 +0.0216775 0.517999 -0.0500335 +0.02175 0.560748 0.0977999 +0.0218225 0.529218 0.044702 +0.021895 0.514989 0.0943639 +0.0219675 0.455428 0.0930279 +0.02204 0.451804 0.0523089 +0.0221125 0.480132 -0.0217227 +0.022185 0.553554 0.00616234 +0.0222575 0.493692 0.0235972 +0.02233 0.680358 -0.00417502 +0.0224025 0.504456 0.109152 +0.022475 0.486624 0.00940216 +0.0225475 0.527669 0.0664706 +0.02262 0.43854 -0.0438461 +0.0226925 0.559958 0.0409319 +0.022765 0.436503 -0.0104918 +0.0228375 0.513603 0.00263862 +0.02291 0.502677 0.152768 +0.0229825 0.564204 0.100906 +0.023055 0.457754 0.0246953 +0.0231275 0.473707 -0.00167836 +0.0232 0.523895 0.0373915 +0.0232725 0.506339 0.0311707 +0.023345 0.56668 0.03831 +0.0234175 0.402982 0.042364 +0.02349 0.523381 0.128887 +0.0235625 0.502857 0.0663077 +0.023635 0.454376 0.0672429 +0.0237075 0.516709 0.0343563 +0.02378 0.485042 0.0260062 +0.0238525 0.459336 0.00254677 +0.023925 0.538883 0.0549099 +0.0239975 0.41478 0.0112767 +0.02407 0.501617 0.0499082 +0.0241425 0.497588 0.132236 +0.024215 0.505136 0.057202 +0.0242875 0.468196 0.0201528 +0.02436 0.505541 0.0557825 +0.0244325 0.396661 0.0321602 +0.024505 0.457587 0.0296385 +0.0245775 0.513102 0.0431322 +0.02465 0.536215 0.0639363 +0.0247225 0.480282 0.0357883 +0.024795 0.421652 -0.0958711 +0.0248675 0.40818 0.108421 +0.02494 0.36582 0.0451237 +0.0250125 0.449429 -0.0141158 +0.025085 0.4704 0.105958 +0.0251575 0.463302 0.0619532 +0.02523 0.419001 -0.0141909 +0.0253025 0.475493 0.0607758 +0.025375 0.452247 -0.0709128 +0.0254475 0.444895 0.0693263 +0.02552 0.3995 0.12685 +0.0255925 0.507495 0.0187417 +0.025665 0.435397 -0.0239312 +0.0257375 0.354013 -0.0461883 +0.02581 0.334177 -0.0358969 +0.0258825 0.441146 -0.0441926 +0.025955 0.461553 0.0907024 +0.0260275 0.329973 -0.0178315 +0.0261 0.479017 -0.0397587 +0.0261725 0.45246 0.0738311 +0.026245 0.425627 0.0615482 +0.0263175 0.505691 -0.0353791 +0.02639 0.446327 0.0317928 +0.0264625 0.422821 0.0310538 +0.026535 0.400402 0.114951 +0.0266075 0.401813 0.0501587 +0.02668 0.303971 0.00846695 +0.0267525 0.396239 0.0048639 +0.026825 0.399646 0.0316968 +0.0268975 0.310776 0.119903 +0.02697 0.537008 -0.0193345 +0.0270425 0.428111 0.0120909 +0.027115 0.33533 -0.0075568 +0.0271875 0.486766 0.108238 +0.02726 0.45236 -0.0387902 +0.0273325 0.423377 -0.0281146 +0.027405 0.344778 0.101603 +0.0274775 0.436215 0.0133392 +0.02755 0.436265 0.0260271 +0.0276225 0.439764 0.029413 +0.027695 0.428245 0.0391033 +0.0277675 0.386503 -0.00654643 +0.02784 0.408814 -0.0214763 +0.0279125 0.372525 -0.0377881 +0.027985 0.361282 0.0359804 +0.0280575 0.41936 0.0518789 +0.02813 0.40805 0.00934788 +0.0282025 0.391814 0.0596736 +0.028275 0.370771 -0.0197896 +0.0283475 0.391801 0.0310705 +0.02842 0.443901 -0.0286031 +0.0284925 0.409891 -0.0461632 +0.028565 0.426454 0.00232967 +0.0286375 0.386904 -0.0167836 +0.02871 0.35747 0.0156021 +0.0287825 0.425928 -0.0352831 +0.028855 0.436586 0.0812293 +0.0289275 0.431977 -0.0420091 +0.029 0.43857 0.000221275 +0.0290725 0.39993 0.0678107 +0.029145 0.398452 -0.0209294 +0.0292175 0.382182 0.0484219 +0.02929 0.333309 0.0114604 +0.0293625 0.433622 -0.0136106 +0.029435 0.26802 0.0170884 +0.0295075 0.36483 0.0959462 +0.02958 0.445746 0.0981924 +0.0296525 0.300026 0.0689463 +0.029725 0.389212 0.0397755 +0.0297975 0.377393 0.0781189 +0.02987 0.384065 0.0783902 +0.0299425 0.34158 0.0325401 +0.030015 0.459775 0.0262275 +0.0300875 0.395884 0.018988 +0.03016 0.395596 -0.0108551 +0.0302325 0.360071 -0.0645584 +0.030305 0.403119 0.146827 +0.0303775 0.378395 -0.0529852 +0.03045 0.384177 -0.0810372 +0.0305225 0.407599 -0.0912201 +0.030595 0.405186 0.0532566 +0.0306675 0.416254 -0.0401846 +0.03074 0.308551 0.0532691 +0.0308125 0.327998 0.0860723 +0.030885 0.46142 0.0802231 +0.0309575 0.374976 0.00945643 +0.03103 0.460605 0.0857842 +0.0311025 0.326216 -0.0749793 +0.031175 0.351825 0.013978 +0.0312475 0.317089 0.133701 +0.03132 0.340594 -0.0142661 +0.0313925 0.315736 -0.0278182 +0.031465 0.335735 -0.0243153 +0.0315375 0.318412 -0.0297429 +0.03161 0.323852 -0.0331497 +0.0316825 0.448786 0.0174057 +0.031755 0.362246 0.0636441 +0.0318275 0.362868 -0.0411866 +0.0319 0.258234 0.133713 +0.0319725 0.309599 0.043462 +0.032045 0.400264 0.0253591 +0.0321175 0.343713 -0.00113143 +0.03219 0.271919 0.0484971 +0.0322625 0.364204 0.000935208 +0.032335 0.2997 -0.0414914 +0.0324075 0.287288 -0.143951 +0.03248 0.299879 0.0700486 +0.0325525 0.305223 0.0568263 +0.032625 0.298418 -0.0162617 +0.0326975 0.314772 -0.0264655 +0.03277 0.253232 0.0370283 +0.0328425 0.255749 -0.0184411 +0.032915 0.422692 0.0583627 +0.0329875 0.379827 -0.0116441 +0.03306 0.359799 0.0384144 +0.0331325 0.342911 0.0836508 +0.033205 0.253683 0.0198982 +0.0332775 0.261966 0.024044 +0.03335 0.320358 -0.0650803 +0.0334225 0.28252 0.0901513 +0.033495 0.361044 0.00905146 +0.0335675 0.331781 0.0504343 +0.03364 0.361854 0.0587802 +0.0337125 0.263615 0.0164078 +0.033785 0.353508 0.0184995 +0.0338575 0.239367 -0.102242 +0.03393 0.383058 0.033492 +0.0340025 0.296289 0.034135 +0.034075 0.344156 0.0655479 +0.0341475 0.351541 -0.0204033 +0.03422 0.32599 -0.0288912 +0.0342925 0.337217 0.0753049 +0.034365 0.362463 0.0169548 +0.0344375 0.304372 0.0174975 +0.03451 0.386566 -0.0171635 +0.0345825 0.305019 0.0187542 +0.034655 0.260714 -0.075927 +0.0347275 0.287638 0.0661867 +0.0348 0.295016 0.0937126 +0.0348725 0.318204 0.000166994 +0.034945 0.316951 0.0598824 +0.0350175 0.283493 -0.0147044 +0.03509 0.290916 -0.00598281 +0.0351625 0.260284 -0.0103624 +0.035235 0.403541 0.0353249 +0.0353075 0.233234 0.0172429 +0.03538 0.316709 0.0424308 +0.0354525 0.333735 0.0857383 +0.035525 0.173201 0.0860514 +0.0355975 0.327293 0.011594 +0.03567 0.230269 -0.0394957 +0.0357425 0.386136 0.140076 +0.035815 0.291429 0.124065 +0.0358875 0.295976 0.0237851 +0.03596 0.301554 0.0234386 +0.0360325 0.278174 0.0132474 +0.036105 0.237471 -0.0500293 +0.0361775 0.306931 0.0347863 +0.03625 0.356 -0.0508727 +0.0363225 0.318792 -0.0308326 +0.036395 0.264567 0.0398005 +0.0364675 0.288319 0.0294381 +0.03654 0.304113 0.0727373 +0.0366125 0.224512 0.0361557 +0.036685 0.23497 -0.0355044 +0.0367575 0.264985 -0.00976538 +0.03683 0.181376 -0.0945267 +0.0369025 0.276069 -0.0558869 +0.036975 0.255645 0.0560914 +0.0370475 0.228954 0.137934 +0.03712 0.313486 -0.0364187 +0.0371925 0.312743 -0.191584 +0.037265 0.275343 0.0341058 +0.0373375 0.364396 -0.0636608 +0.03741 0.265402 -0.0137943 +0.0374825 0.317035 0.00281396 +0.037555 0.222374 -0.00925184 +0.0376275 0.163515 -0.0583251 +0.0377 0.313469 0.0148213 +0.0377725 0.293796 0.0415999 +0.037845 0.229317 0.0142911 +0.0379175 0.178282 0.000997829 +0.03799 0.236006 -0.0033943 +0.0380625 0.230282 0.0726079 +0.038135 0.236507 0.0195767 +0.0382075 0.23548 -0.118132 +0.03828 0.310476 0.0815466 +0.0383525 0.284695 -0.0189337 +0.038425 0.305708 0.0765031 +0.0384975 0.159745 0.0243571 +0.03857 0.273806 -0.0103081 +0.0386425 0.188653 0.0706539 +0.038715 0.242728 0.0177063 +0.0387875 0.27895 0.0203324 +0.03886 0.280186 -0.0132056 +0.0389325 0.236924 -0.0274049 +0.039005 0.19089 -0.0101161 +0.0390775 0.234457 0.102564 +0.03915 0.213206 -0.113469 +0.0392225 0.2457 0.0353416 +0.039295 0.252535 0.0548389 +0.0393675 0.228674 0.0509979 +0.03944 0.332324 0.0745993 +0.0395125 0.251057 0.017485 +0.039585 0.232332 -0.0401554 +0.0396575 0.145429 -0.0806573 +0.03973 0.184628 0.0122287 +0.0398025 0.244611 -0.00594941 +0.039875 0.226153 0.0513862 +0.0399475 0.227856 0.00515616 +0.04002 0.246126 0.0992194 +0.0400925 0.346427 -0.0791626 +0.040165 0.259185 0.035638 +0.0402375 0.235033 0.072015 +0.04031 0.184945 0.0801521 +0.0403825 0.237793 0.0391743 +0.040455 0.240285 0.095654 +0.0405275 0.198794 -0.0657399 +0.0406 0.217143 -0.0135563 +0.0406725 0.202376 0.104593 +0.040745 0.229013 0.00884271 +0.0408175 0.182845 -0.0349241 +0.04089 0.280837 0.00552773 +0.0409625 0.13467 -0.104108 +0.041035 0.274737 0.0161198 +0.0411075 0.29188 0.0681949 +0.04118 0.2559 0.0436749 +0.0412525 0.231864 0.00457165 +0.041325 0.248497 -0.0223113 +0.0413975 0.157536 0.0266158 +0.04147 0.251854 -0.0200109 +0.0415425 0.160175 0.0965558 +0.041615 0.188448 0.114796 +0.0416875 0.239684 0.0127463 +0.04176 0.270354 0.0701529 +0.0418325 0.182027 -0.00733969 +0.041905 0.164162 0.00556531 +0.0419775 0.143809 -0.0172512 +0.04205 0.328399 0.0885898 +0.0421225 0.178516 0.0760188 +0.042195 0.223677 0.0567469 +0.0422675 0.164488 -0.0203073 +0.04234 0.158238 0.0191968 +0.0424125 0.175677 0.0568764 +0.042485 0.255566 0.0377965 +0.0425575 0.231718 0.0157064 +0.04263 0.241822 0.0458084 +0.0427025 0.168796 0.0877298 +0.042775 0.108947 -0.0125793 +0.0428475 0.173297 -0.0773173 +0.04292 0.218897 -0.0641159 +0.0429925 0.378504 0.00479293 +0.043065 0.134432 0.0816885 +0.0431375 0.233835 0.0329702 +0.04321 0.233092 0.0335547 +0.0432825 0.155737 -0.0346986 +0.043355 0.191012 0.00639614 +0.0434275 0.160889 0.0466058 +0.0435 0.13429 -0.0297512 +0.0435725 0.191216 -0.00642536 +0.043645 0.260179 -0.0178273 +0.0437175 0.178086 -0.0309077 +0.04379 0.183175 0.0880513 +0.0438625 0.177038 0.0713261 +0.043935 0.165874 0.0792587 +0.0440075 0.092243 0.020132 +0.04408 0.170592 -0.00237976 +0.0441525 0.192285 0.00366567 +0.044225 0.224249 0.0616651 +0.0442975 0.147049 -0.00715182 +0.04437 0.17171 0.00363227 +0.0444425 0.115978 -0.0187626 +0.044515 0.117698 0.0807116 +0.0445875 0.15595 0.0119197 +0.04466 0.152614 -0.12371 +0.0447325 0.249044 0.062855 +0.044805 0.29907 -0.0640491 +0.0448775 0.202514 0.0292001 +0.04495 0.167068 -0.0381221 +0.0450225 0.113389 0.0430028 +0.045095 0.117239 -0.00492653 +0.0451675 0.184966 0.165744 +0.04524 0.0920802 0.0342227 +0.0453125 0.203896 0.018082 +0.045385 0.278641 -0.00765282 +0.0454575 0.16574 -0.091742 +0.04553 0.212901 -0.0627089 +0.0456025 0.178127 0.0162241 +0.045675 0.239943 -0.0534069 +0.0457475 0.190936 0.059778 +0.04582 0.233121 -0.0206204 +0.0458925 0.180712 0.0207165 +0.045965 0.0934245 0.0479501 +0.0460375 0.117974 -0.0080578 +0.04611 0.1082 0.144756 +0.0461825 0.225756 -0.00229209 +0.046255 0.275234 -0.0036615 +0.0463275 0.167197 0.00424599 +0.0464 0.125176 -0.0416626 +0.0464725 0.14084 -0.009327 +0.046545 0.262325 -0.0101453 +0.0466175 0.329727 0.0633643 +0.04669 0.109574 -0.115961 +0.0467625 0.122725 0.0398631 +0.046835 0.146702 0.143596 +0.0469075 0.299529 0.00373247 +0.04698 0.201366 -0.0633476 +0.0470525 0.065193 -0.00450903 +0.047125 0.162905 0.0422763 +0.0471975 0.147975 0.0201695 +0.04727 0.223477 0.0963846 +0.0473425 0.153608 -0.0370993 +0.047415 0.0895417 0.125159 +0.0474875 0.154146 -0.0492235 +0.04756 0.17824 0.0301938 +0.0476325 0.0782024 0.12647 +0.047705 0.225339 0.102259 +0.0477775 0.0938086 -0.0280937 +0.04785 0.187346 -0.0433409 +0.0479225 0.185688 0.0519289 +0.047995 0.158526 -0.0143496 +0.0480675 0.137358 -0.0283108 +0.04814 0.165811 0.0540958 +0.0482125 0.0563545 -0.0852039 +0.048285 0.158292 0.0270583 +0.0483575 0.136072 0.0381597 +0.04843 0.142464 0.0408902 +0.0485025 0.238494 -0.0524717 +0.048575 0.184557 -0.0271418 +0.0486475 0.122395 0.0610013 +0.04872 0.123247 0.0286323 +0.0487925 0.119974 0.0577573 +0.048865 0.199249 0.0649216 +0.0489375 0.141454 0.0257557 +0.04901 0.230816 0.0599116 +0.0490825 0.136749 -0.0916042 +0.049155 0.188381 -0.11283 +0.0492275 0.128741 0.00781983 +0.0493 0.209903 -0.0659362 +0.0493725 0.147094 0.0879093 +0.049445 0.0953868 -0.0034945 +0.0495175 0.111018 -0.0612977 +0.04959 0.232478 0.0137442 +0.0496625 0.162763 -0.0261899 +0.049735 0.167264 0.0293087 +0.0498075 0.135175 0.0505804 +0.04988 0.178637 -0.00172429 +0.0499525 0.108981 0.10043 +0.050025 0.213248 -0.0180278 +0.0500975 0.160809 -0.038523 +0.05017 0.0680445 -0.0217227 +0.0502425 0.146443 0.00314797 +0.050315 0.180607 0.0240189 +0.0503875 0.141187 0.0602331 +0.05046 0.090932 -0.0527473 +0.0505325 0.196627 0.0110763 +0.050605 0.0909738 0.0163202 +0.0506775 0.211803 0.0558952 +0.05075 0.137041 -0.0094439 +0.0508225 0.10691 0.010734 +0.050895 0.172257 0.0212717 +0.0509675 0.0917712 0.032966 +0.05104 0.162062 -0.0891075 +0.0511125 0.108008 -0.00482216 +0.051185 0.0783443 -0.0165623 +0.0512575 0.102493 -0.0415999 +0.05133 0.212843 0.0432574 +0.0514025 0.0356505 -0.00474283 +0.051475 0.140907 0.113586 +0.0515475 0.155582 0.0153474 +0.05162 0.0635105 -0.0207206 +0.0516925 0.147742 -0.0354126 +0.051765 0.0759896 0.0743196 +0.0518375 0.144986 0.0276929 +0.05191 0.102305 -0.00900135 +0.0519825 0.0985306 0.000430026 +0.052055 0.180344 0.066028 +0.0521275 0.0774133 0.0546886 +0.0522 0.178453 0.0391033 +0.0522725 0.210196 -0.0221276 +0.052345 0.0396126 -0.0233843 +0.0524175 0.145099 0.0469314 +0.05249 0.202138 -0.0254969 +0.0525625 0.0592436 0.104171 +0.052635 0.0970651 0.0110763 +0.0527075 0.136828 0.056033 +0.05278 0.0471652 -0.026382 +0.0528525 0.0252046 -0.0793046 +0.052925 0.197078 0.0293922 +0.0529975 0.184098 0.0670217 +0.05307 0.10319 0.0437125 +0.0531425 0.153407 0.0391743 +0.053215 0.177317 0.0866819 +0.0532875 0.120775 0.0815507 +0.05336 0.122165 -0.00839598 +0.0534325 0.126357 -0.0844106 +0.053505 0.115928 -0.0351328 +0.0535775 0.244201 0.0526137 +0.05365 0.0498874 0.072825 +0.0537225 0.179685 0.0596486 +0.053795 0.244819 -0.0740566 +0.0538675 0.0505595 0.080365 +0.05394 0.146823 -0.0449483 +0.0540125 0.168416 -0.0286949 +0.054085 0.122286 -0.0326362 +0.0541575 0.143116 0.0233426 +0.05423 0.131814 -0.0340056 +0.0543025 0.095153 0.0823941 +0.054375 0.0715641 0.0043963 +0.0544475 0.194523 -0.0266617 +0.05452 0.112596 0.0392452 +0.0545925 0.0731506 0.0702448 +0.054665 0.135555 0.0593438 +0.0547375 0.111415 0.0495241 +0.05481 0.119673 0.0125585 +0.0548825 0.101182 0.0396043 +0.054955 0.0411115 0.00812877 +0.0550275 0.100576 0.0848323 +0.0551 0.302351 -0.0991694 +0.0551725 0.0403975 0.0198314 +0.055245 0.175464 -0.0247203 +0.0553175 0.135191 0.0486474 +0.05539 0.124666 -0.00414163 +0.0554625 0.147529 -0.0539998 +0.055535 0.0765198 0.00891785 +0.0556075 0.12146 0.0290582 +0.05568 0.143567 -0.0415248 +0.0557525 0.166028 0.00770292 +0.055825 0.134189 -0.0624751 +0.0558975 0.150288 -0.0818221 +0.05597 0.132444 -0.0286073 +0.0560425 0.0761984 -0.0838053 +0.056115 0.175986 0.01956 +0.0561875 0.00751087 0.0828074 +0.05626 0.13416 0.0299224 +0.0563325 0.0580328 0.00819975 +0.056405 0.045896 0.0646252 +0.0564775 0.192928 0.0291542 +0.05655 0.0920342 0.0543129 +0.0566225 0.168141 0.0991193 +0.056695 0.136811 -0.0726872 +0.0567675 0.177677 -0.0484762 +0.05684 0.14003 0.00246327 +0.0569125 0.109561 0.101674 +0.056985 0.0448105 -0.0620701 +0.0570575 0.0693304 -0.0233968 +0.05713 0.139312 -0.00727707 +0.0572025 0.20005 -0.0547053 +0.057275 0.200764 -0.0481297 +0.0573475 0.148568 0.0178482 +0.05742 0.104326 -0.00156981 +0.0574925 0.129417 -0.0547972 +0.057565 0.0973407 0.0754135 +0.0576375 0.132732 0.0672847 +0.05771 0.106618 0.0397713 +0.0577825 0.0219272 0.0125626 +0.057855 0.21278 0.0745576 +0.0579275 0.0899342 0.0471152 +0.058 0.207328 -0.0215264 +0.0580725 0.144389 0.010496 +0.058145 0.0619908 0.0283568 +0.0582175 0.156037 0.0757517 +0.05829 0.149341 0.00201654 +0.0583625 0.143788 0.0630971 +0.058435 -0.00511857 0.0585213 +0.0585075 0.0310789 -0.116679 +0.05858 0.200268 0.0432324 +0.0586525 0.0767745 0.083609 +0.058725 0.117539 0.126603 +0.0587975 0.122716 0.0100409 +0.05887 0.106497 0.0815549 +0.0589425 0.143395 0.0296385 +0.059015 0.0610138 0.00994074 +0.0590875 0.0832166 -0.0472488 +0.05916 0.0327364 -0.043437 +0.0592325 0.141571 0.12905 +0.059305 0.166613 0.0253633 +0.0593775 0.0330954 -0.0267828 +0.05945 0.0728876 -0.0248623 +0.0595225 0.0733176 -0.0331706 +0.059595 0.17705 -0.0120533 +0.0596675 0.116437 0.0480545 +0.05974 0.110479 0.017055 +0.0598125 0.0863562 -0.0128257 +0.059885 0.168905 0.000897633 +0.0599575 0.131693 -0.00609972 +0.06003 0.0188252 0.00915166 +0.0601025 0.117986 0.0534695 +0.060175 0.159373 0.0963596 +0.0602475 0.0269623 0.0191634 +0.06032 0.157849 0.03373 +0.0603925 0.112066 -0.0219857 +0.060465 0.0965433 -0.0255595 +0.0605375 0.101424 0.0649216 +0.06061 0.0156563 -0.0145249 +0.0606825 0.0616818 0.0778266 +0.060755 0.0493279 0.0912159 +0.0608275 0.106208 0.0152639 +0.0609 0.121305 0.149295 +0.0609725 0.08616 0.038857 +0.061045 0.148167 -0.106989 +0.0611175 0.204618 -0.053887 +0.06119 0.125585 0.0507641 +0.0612625 0.15048 -0.0832458 +0.061335 0.128837 -0.0176061 +0.0614075 0.203633 -0.00789498 +0.06148 0.0547554 -0.0935581 +0.0615525 0.0707374 0.104092 +0.061625 0.0861015 -0.0355879 +0.0616975 0.205228 0.0127255 +0.06177 0.204434 0.0246076 +0.0618425 0.0803859 0.0679318 +0.061915 0.177977 0.0669883 +0.0619875 0.114625 0.0963512 +0.06206 0.186611 0.0876588 +0.0621325 0.0971904 0.00159903 +0.062205 0.113861 0.00205829 +0.0622775 0.161928 0.105048 +0.06235 0.145441 -0.0178858 +0.0624225 0.0863228 0.0917169 +0.062495 0.0970944 -0.0232215 +0.0625675 0.0836591 0.0719732 +0.06264 0.10848 0.046468 +0.0627125 0.185229 -0.161361 +0.062785 0.0251712 0.10567 +0.0628575 0.158768 -0.0384353 +0.06293 0.150685 -0.0741401 +0.0630025 -0.0118612 0.0489939 +0.063075 0.087855 -0.00412493 +0.0631475 0.203858 -0.0414914 +0.06322 0.15213 0.0348782 +0.0632925 0.216621 -0.00161573 +0.063365 0.179927 -0.0609762 +0.0634375 0.0195349 0.0581372 +0.06351 0.0516158 0.0190465 +0.0635825 0.121046 0.024737 +0.063655 0.0903559 0.0399759 +0.0637275 0.051144 0.108939 +0.0638 0.0677732 -0.0619407 +0.0638725 0.183939 0.11379 +0.063945 0.167644 0.0247412 +0.0640175 0.0362977 -0.0252213 +0.06409 0.135935 0.00743154 +0.0641625 0.125292 -0.0510063 +0.064235 0.0244823 0.0205411 +0.0643075 -0.02958 0.0656356 +0.06438 0.0575903 0.0253382 +0.0644525 0.0531564 0.0337885 +0.064525 0.0104125 0.0690716 +0.0645975 0.0376963 0.0489605 +0.06467 0.106275 -0.00930613 +0.0647425 0.0995576 -0.0407608 +0.064815 0.109427 0.0369615 +0.0648875 0.0236139 -0.0150677 +0.06496 0.144101 -0.0538745 +0.0650325 0.0737936 -0.00936458 +0.065105 0.0453616 0.0340014 +0.0651775 0.158279 -0.0718271 +0.06525 0.0571603 -0.023998 +0.0653225 0.0511816 -0.116596 +0.065395 0.0555612 -0.0606213 +0.0654675 0.063761 0.00981966 +0.06554 0.00675936 0.00554443 +0.0656125 0.152004 -0.0268997 +0.065685 0.174783 0.104476 +0.0657575 0.0219606 -0.0181279 +0.06583 -0.00247996 -0.160588 +0.0659025 0.138273 0.0434119 +0.065975 0.0821812 0.0145583 +0.0660475 0.0720442 0.0153975 +0.06612 0.0146335 0.0501379 +0.0661925 0.0958293 0.117782 +0.066265 0.15415 -0.00932283 +0.0663375 0.107887 -0.00460087 +0.06641 0.02414 -0.0370325 +0.0664825 0.129785 -0.0378633 +0.066555 0.0906272 0.051524 +0.0666275 0.0455286 -0.0489981 +0.0667 0.0479335 -0.01579 +0.0667725 0.0474283 -0.0138193 +0.066845 0.0643664 0.00475118 +0.0669175 0.07953 0.0986224 +0.06699 0.016888 0.0640825 +0.0670625 0.143992 0.0554276 +0.067135 0.0894499 0.0886358 +0.0672075 0.161795 0.0435664 +0.06728 0.113114 0.0322479 +0.0673525 0.165757 -0.0838512 +0.067425 0.154618 0.0571143 +0.0674975 0.100902 0.00210004 +0.06757 0.103365 0.0889405 +0.0676425 0.0567929 -0.0305027 +0.067715 0.0871829 0.0252923 +0.0677875 0.154902 0.0559203 +0.06786 0.0859471 0.0608176 +0.0679325 0.0872997 0.0737309 +0.068005 0.0691634 -0.00590766 +0.0680775 0.103077 -0.0102789 +0.06815 0.0832333 -0.037045 +0.0682225 0.0274174 0.0711633 +0.068295 -0.00729377 -0.0406647 +0.0683675 0.0645 0.0321978 +0.06844 0.0645459 0.0273214 +0.0685125 0.00968188 -0.10099 +0.068585 0.0446936 0.0139613 +0.0686575 -0.0185288 0.00627506 +0.06873 0.157757 0.0415415 +0.0688025 0.210947 0.0201737 +0.068875 0.0434328 -0.0512234 +0.0689475 0.104718 0.011832 +0.06902 0.140907 -0.0732675 +0.0690925 0.0503675 -0.023401 +0.069165 0.0926688 0.0195558 +0.0692375 0.106238 0.0116483 +0.06931 0.176161 0.102743 +0.0693825 0.122829 -0.0196101 +0.069455 0.0618238 -0.0470943 +0.0695275 0.0315173 -0.0281188 +0.0696 0.0863771 0.112922 +0.0696725 0.083083 -0.035066 +0.069745 -0.00198314 2.08725e-005 +0.0698175 0.0847405 -0.0298347 +0.06989 0.0735222 -0.0389404 +0.0699625 0.0480879 0.0306071 +0.070035 0.00296844 0.0233551 +0.0701075 0.0922138 -0.0971653 +0.07018 0.0905772 0.0514614 +0.0702525 0.0598531 -0.00069723 +0.070325 0.0601746 -0.0582708 +0.0703975 0.072253 0.0115272 +0.07047 0.159407 -0.0259102 +0.0705425 -0.0383059 0.0150134 +0.070615 0.0329743 -0.0168713 +0.0706875 0.0917336 0.00121911 +0.07076 0.0818639 -0.0328783 +0.0708325 0.0876839 -0.0208793 +0.070905 0.148347 0.0310413 +0.0709775 0.0712134 0.0604919 +0.07105 0.0702114 -0.0552314 +0.0711225 0.0843564 0.0619532 +0.071195 0.0633727 -0.00921846 +0.0712675 0.0786157 0.0109636 +0.07134 0.0677732 0.0100618 +0.0714125 0.0633393 0.0634562 +0.071485 0.0545175 0.00692637 +0.0715575 0.11068 0.0216433 +0.07163 0.0857842 -0.100217 +0.0717025 0.146176 -0.0504385 +0.071775 0.0857801 0.0411657 +0.0718475 0.00550268 0.0975578 +0.07192 0.0674308 0.103169 +0.0719925 0.0769791 0.0301604 +0.072065 0.0495033 -0.00140281 +0.0721375 0.0969232 -0.0460797 +0.07221 0.0801855 0.0793463 +0.0722825 0.0822939 -0.0666459 +0.072355 0.0199942 -0.00319807 +0.0724275 -0.00938963 0.0231839 +0.0725 0.0576529 0.0153182 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/11/data-06500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/11/data-06500um.dat new file mode 100644 index 0000000..7d59f1c --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/11/data-06500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 1.70723 0.179372 +0.000145 2.17992 0.155545 +0.0002175 2.12056 0.121468 +0.00029 2.03355 0.0711132 +0.0003625 2.0228 0.176232 +0.000435 2.00908 0.143759 +0.0005075 1.95239 0.0715766 +0.00058 1.91893 0.103056 +0.0006525 1.97277 0.113728 +0.000725 1.93952 0.0120867 +0.0007975 1.86067 0.13363 +0.00087 1.98351 0.204004 +0.0009425 1.91385 0.157507 +0.001015 1.96261 0.138536 +0.0010875 1.83089 0.021898 +0.00116 1.85956 0.169665 +0.0012325 1.89948 0.153641 +0.001305 1.83138 0.0805613 +0.0013775 1.86162 0.0445851 +0.00145 1.85522 0.0593146 +0.0015225 1.82388 0.0880721 +0.001595 1.7962 0.192769 +0.0016675 1.88368 0.134202 +0.00174 1.86593 0.105745 +0.0018125 1.73278 0.0811291 +0.001885 1.78886 0.164204 +0.0019575 1.62999 0.107494 +0.00203 1.78148 0.0560163 +0.0021025 1.78493 0.127129 +0.002175 1.62301 0.0498999 +0.0022475 1.65961 0.12217 +0.00232 1.72545 0.160922 +0.0023925 1.73338 0.0397838 +0.002465 1.6615 0.175543 +0.0025375 1.69521 0.18171 +0.00261 1.65873 0.175839 +0.0026825 1.67323 0.1313 +0.002755 1.64792 0.122821 +0.0028275 1.56989 0.19011 +0.0029 1.62642 -0.01083 +0.0029725 1.56712 0.112045 +0.003045 1.78666 0.0815883 +0.0031175 1.57162 0.0871703 +0.00319 1.61501 0.186686 +0.0032625 1.60355 0.130524 +0.003335 1.54865 0.115201 +0.0034075 1.61708 0.0848615 +0.00348 1.50792 0.0778517 +0.0035525 1.55282 0.124574 +0.003625 1.49979 0.0274341 +0.0036975 1.55929 -0.000613724 +0.00377 1.49506 0.0585505 +0.0038425 1.50104 0.10853 +0.003915 1.52125 0.134452 +0.0039875 1.53603 0.16407 +0.00406 1.70592 0.182808 +0.0041325 1.4307 0.0786366 +0.004205 1.4002 0.162922 +0.0042775 1.49458 0.0736474 +0.00435 1.42537 0.175042 +0.0044225 1.43047 0.110354 +0.004495 1.49927 0.0388235 +0.0045675 1.42633 0.125885 +0.00464 1.4131 0.05997 +0.0047125 1.49587 0.140849 +0.004785 1.32154 0.0556823 +0.0048575 1.45267 0.127752 +0.00493 1.3901 0.118516 +0.0050025 1.35077 0.037617 +0.005075 1.33503 0.0114646 +0.0051475 1.42024 0.103361 +0.00522 1.39122 0.0432073 +0.0052925 1.27752 0.0712343 +0.005365 1.31762 0.0939339 +0.0054375 1.35399 0.00696812 +0.00551 1.35256 0.070704 +0.0055825 1.27436 0.083989 +0.005655 1.42221 0.071443 +0.0057275 1.36353 0.0794674 +0.0058 1.29866 0.16212 +0.0058725 1.30568 0.103841 +0.005945 1.37481 0.149395 +0.0060175 1.43127 0.13487 +0.00609 1.36423 0.0270249 +0.0061625 1.2488 0.155378 +0.006235 1.35826 0.0908945 +0.0063075 1.28648 0.0963303 +0.00638 1.2484 0.111181 +0.0064525 1.23386 0.0107215 +0.006525 1.27554 0.0880304 +0.0065975 1.19986 0.0727373 +0.00667 1.35657 0.0759437 +0.0067425 1.27076 0.141508 +0.006815 1.11198 0.0806782 +0.0068875 1.30274 0.0603249 +0.00696 1.13652 0.0334962 +0.0070325 1.28404 0.0577573 +0.007105 1.25931 0.0268329 +0.0071775 1.14352 0.189571 +0.00725 1.2122 0.0416834 +0.0073225 1.29644 0.135488 +0.007395 1.16664 0.103795 +0.0074675 1.24686 -0.0322312 +0.00754 1.14074 -0.0146669 +0.0076125 1.29841 -0.0457332 +0.007685 1.17782 0.0543129 +0.0077575 1.16237 0.0354293 +0.00783 1.28197 0.0629677 +0.0079025 1.15446 0.035947 +0.007975 1.17017 0.0941176 +0.0080475 1.24302 0.0775803 +0.00812 1.17003 0.0501671 +0.0081925 1.15273 0.105799 +0.008265 1.10605 0.0395792 +0.0083375 1.1427 0.123572 +0.00841 1.13009 0.0595985 +0.0084825 1.0721 0.0200944 +0.008555 1.06014 0.079601 +0.0086275 1.11619 0.042961 +0.0087 1.13518 0.0745743 +0.0087725 1.09341 0.0984471 +0.008845 1.1175 -0.0400761 +0.0089175 1.02132 0.114216 +0.00899 0.997927 0.0434871 +0.0090625 1.11673 0.0728667 +0.009135 1.11392 -0.0626546 +0.0092075 1.03247 0.00260104 +0.00928 0.980667 0.0699901 +0.0093525 1.04052 0.104964 +0.009425 1.10395 -0.0111097 +0.0094975 0.977448 -0.00273047 +0.00957 0.913892 0.022708 +0.0096425 1.0179 0.0944474 +0.009715 0.956728 0.116575 +0.0097875 1.12852 -0.0333626 +0.00986 1.04396 0.0442427 +0.0099325 1.02223 0.0630512 +0.010005 1.00438 0.0520542 +0.0100775 0.960427 0.0932575 +0.01015 0.988938 0.0182616 +0.0102225 0.993689 0.151992 +0.010295 1.03741 0.0208918 +0.0103675 1.02462 0.047015 +0.01044 1.05199 0.06369 +0.0105125 0.967599 0.0906648 +0.010585 1.01589 0.0703074 +0.0106575 0.985439 0.058847 +0.01073 0.943468 0.00332749 +0.0108025 0.977515 -0.0525677 +0.010875 0.971879 0.063285 +0.0109475 1.00209 0.01417 +0.01102 0.939873 0.20643 +0.0110925 0.970276 0.0313544 +0.011165 0.886153 0.0620534 +0.0112375 0.945388 0.0638111 +0.01131 0.913086 0.0766367 +0.0113825 0.937126 0.0507474 +0.011455 0.906991 -0.0130887 +0.0115275 0.8866 0.0327322 +0.0116 0.846353 0.0779519 +0.0116725 0.902185 0.150272 +0.011745 0.941831 0.0283317 +0.0118175 0.859107 0.0974117 +0.01189 0.927018 0.0370408 +0.0119625 0.931122 0.0484428 +0.012035 0.894866 0.0637568 +0.0121075 0.856118 0.0456706 +0.01218 0.854277 0.205516 +0.0122525 0.89581 0.0194723 +0.012325 0.917649 0.0111849 +0.0123975 0.933681 0.0328157 +0.01247 0.870676 0.074545 +0.0125425 0.943334 0.15752 +0.012615 0.810506 0.0831373 +0.0126875 0.867637 0.0916585 +0.01276 0.884249 0.0319431 +0.0128325 0.85563 -0.0216433 +0.012905 0.777728 0.101349 +0.0129775 0.80092 0.0361474 +0.01305 0.82812 0.0760355 +0.0131225 0.805425 0.156163 +0.013195 0.858464 0.0617361 +0.0132675 0.78222 0.136014 +0.01334 0.840123 0.0928985 +0.0134125 0.799363 0.154726 +0.013485 0.810669 0.059348 +0.0135575 0.899434 0.149629 +0.01363 0.797229 0.103637 +0.0137025 0.812664 0.209469 +0.013775 0.800882 0.0632683 +0.0138475 0.784813 0.0350911 +0.01392 0.810602 0.128044 +0.0139925 0.764455 0.123593 +0.014065 0.75006 -0.00564046 +0.0141375 0.764781 0.111715 +0.01421 0.851576 0.0142702 +0.0142825 0.738044 -0.00580746 +0.014355 0.80365 0.00529809 +0.0144275 0.708285 0.0876797 +0.0145 0.792545 -0.0257599 +0.0145725 0.806924 0.0657733 +0.014645 0.760652 0.0706706 +0.0147175 0.828984 0.140995 +0.01479 0.747684 0.0577322 +0.0148625 0.800586 0.0241066 +0.014935 0.831702 0.165402 +0.0150075 0.749024 0.0826905 +0.01508 0.796407 0.00789497 +0.0151525 0.743413 0.0152973 +0.015225 0.810861 0.126662 +0.0152975 0.802323 0.102033 +0.01537 0.727669 0.124695 +0.0154425 0.718952 0.0749208 +0.015515 0.808673 -0.00590348 +0.0155875 0.716935 0.0465432 +0.01566 0.687222 0.0177814 +0.0157325 0.760543 0.0869407 +0.015805 0.641693 0.0378424 +0.0158775 0.715411 0.0677565 +0.01595 0.770158 0.0825736 +0.0160225 0.623849 0.157336 +0.016095 0.658326 0.0430194 +0.0161675 0.744048 0.0212425 +0.01624 0.774417 0.107052 +0.0163125 0.619933 0.0784028 +0.016385 0.747642 0.0531439 +0.0164575 0.682374 0.00048013 +0.01653 0.703679 0.13682 +0.0166025 0.67336 0.0583919 +0.016675 0.721895 0.0312751 +0.0167475 0.578637 0.0135688 +0.01682 0.850557 0.103344 +0.0168925 0.634796 0.114083 +0.016965 0.699638 0.113293 +0.0170375 0.735176 0.00554443 +0.01711 0.694553 -0.0353082 +0.0171825 0.727607 0.0533693 +0.017255 0.706456 0.0215765 +0.0173275 0.684153 0.038619 +0.0174 0.722805 0.0641451 +0.0174725 0.707383 -0.0209085 +0.017545 0.563482 0.124629 +0.0176175 0.493254 0.0305236 +0.01769 0.668542 -0.0366776 +0.0177625 0.567895 -0.0397254 +0.017835 0.596674 0.0769165 +0.0179075 0.67617 0.00959838 +0.01798 0.737906 0.0280562 +0.0180525 0.685627 0.0938921 +0.018125 0.644745 0.0710005 +0.0181975 0.715324 0.00215431 +0.01827 0.701855 0.00566551 +0.0183425 0.687944 0.00733969 +0.018415 0.62106 -0.00379927 +0.0184875 0.701291 0.127234 +0.01856 0.720521 -0.00788662 +0.0186325 0.67397 0.0678107 +0.018705 0.614731 0.0180152 +0.0187775 0.634253 0.0866025 +0.01885 0.691555 -0.0365857 +0.0189225 0.578967 0.0281397 +0.018995 0.59745 -0.0149299 +0.0190675 0.577026 0.00857968 +0.01914 0.687902 0.0691634 +0.0192125 0.611006 -0.0720651 +0.019285 0.595413 -0.034277 +0.0193575 0.525068 0.0955371 +0.01943 0.618104 -0.00615398 +0.0195025 0.677849 -0.00224617 +0.019575 0.612109 0.0809287 +0.0196475 0.730817 0.000254673 +0.01972 0.595333 0.0292168 +0.0197925 0.570417 0.0491066 +0.019865 0.724459 0.092744 +0.0199375 0.633117 0.041149 +0.02001 0.588466 0.0295216 +0.0200825 0.540808 0.0406021 +0.020155 0.487321 0.112183 +0.0202275 0.488361 0.0841267 +0.0203 0.619624 0.0408568 +0.0203725 0.57088 0.0406188 +0.020445 0.612476 -0.00595776 +0.0205175 0.524254 0.054054 +0.02059 0.648953 -0.0200318 +0.0206625 0.51311 0.0743906 +0.020735 0.589827 0.11007 +0.0208075 0.579385 0.0659153 +0.02088 0.566488 0.0386023 +0.0209525 0.578875 0.0670634 +0.021025 0.509023 0.0638027 +0.0210975 0.570634 0.0500961 +0.02117 0.54224 -0.0083417 +0.0212425 0.663583 0.0646127 +0.021315 0.511553 0.0111014 +0.0213875 0.597521 -0.029054 +0.02146 0.509211 0.178457 +0.0215325 0.628537 0.128482 +0.021605 0.558455 0.0853751 +0.0216775 0.524187 0.027718 +0.02175 0.531351 0.0277055 +0.0218225 0.464651 0.054054 +0.021895 0.600606 0.113903 +0.0219675 0.522183 0.0264446 +0.02204 0.455529 0.180516 +0.0221125 0.520575 -0.0310998 +0.022185 0.495062 0.00762359 +0.0222575 0.492173 0.0121786 +0.02233 0.59583 -0.00452573 +0.0224025 0.499412 -0.0182115 +0.022475 0.491839 0.0146961 +0.0225475 0.391033 0.0921386 +0.02262 0.591417 0.109519 +0.0226925 0.40537 -0.0208208 +0.022765 0.515737 0.00746495 +0.0228375 0.577811 -0.0221986 +0.02291 0.462973 0.0221402 +0.0229825 0.486478 0.0358259 +0.023055 0.548302 -0.0205161 +0.0231275 0.594682 0.10357 +0.0232 0.553608 0.0562626 +0.0232725 0.478466 0.0321185 +0.023345 0.490615 0.134227 +0.0234175 0.381814 0.0115439 +0.02349 0.510063 0.116437 +0.0235625 0.463269 0.0351871 +0.023635 0.514517 0.0817553 +0.0237075 0.51433 0.0439296 +0.02378 0.493584 0.0962093 +0.0238525 0.463044 0.199136 +0.023925 0.616902 -0.0804277 +0.0239975 0.576341 0.0829494 +0.02407 0.430245 0.0705454 +0.0241425 0.57025 -0.017247 +0.024215 0.427936 -0.0486265 +0.0242875 0.469636 -0.00704744 +0.02436 0.471573 -0.00445475 +0.0244325 0.396586 0.0311248 +0.024505 0.436632 -0.0252088 +0.0245775 0.499492 0.0538536 +0.02465 0.462384 0.00812043 +0.0247225 0.508301 0.0131764 +0.024795 0.384332 0.0264989 +0.0248675 0.502848 -0.039479 +0.02494 0.343767 0.0923307 +0.0250125 0.409758 0.0739272 +0.025085 0.433292 0.00671344 +0.0251575 0.524421 -0.0599032 +0.02523 0.491906 0.0795801 +0.0253025 0.496189 0.101015 +0.025375 0.489576 0.0284778 +0.0254475 0.416943 0.0378466 +0.02552 0.414167 0.084657 +0.0255925 0.35018 -0.0307157 +0.025665 0.471661 -0.0204409 +0.0257375 0.37771 -0.0341058 +0.02581 0.441367 -0.116679 +0.0258825 0.48366 0.0616526 +0.025955 0.454322 0.015172 +0.0260275 0.487054 0.0078908 +0.0261 0.442461 0.0616442 +0.0261725 0.482474 0.0240064 +0.026245 0.378846 0.0652014 +0.0263175 0.368884 -0.00191216 +0.02639 0.290415 0.0589305 +0.0264625 0.356234 0.0193554 +0.026535 0.370663 0.0919299 +0.0266075 0.42359 0.0536699 +0.02668 0.446243 0.049545 +0.0267525 0.416613 -0.0753216 +0.026825 0.377063 0.0944098 +0.0268975 0.372821 0.184703 +0.02697 0.382858 -0.00878843 +0.0270425 0.444866 -0.00790749 +0.027115 0.417294 0.060087 +0.0271875 0.4391 -0.0737142 +0.02726 0.303946 0.0704243 +0.0273325 0.312801 0.0274216 +0.027405 0.419327 0.0607842 +0.0274775 0.383664 0.131434 +0.02755 0.46071 -0.0394999 +0.0276225 0.431823 0.0518997 +0.027695 0.404982 -0.0251128 +0.0277675 0.336574 0.000722283 +0.02784 0.420738 -0.0163536 +0.0279125 0.435693 0.0289872 +0.027985 0.471874 0.023735 +0.0280575 0.407491 0.134294 +0.02813 0.432892 0.0584879 +0.0282025 0.445053 -0.0829369 +0.028275 0.393087 0.0541292 +0.0283475 0.339571 0.0285196 +0.02842 0.326729 -0.0143078 +0.0284925 0.407023 0.125735 +0.028565 0.426082 -0.0212801 +0.0286375 0.368433 0.0344732 +0.02871 0.317448 0.107858 +0.0287825 0.401591 -0.0217978 +0.028855 0.446711 -0.0405228 +0.0289275 0.302351 0.0534487 +0.029 0.494578 0.0780771 +0.0290725 0.397759 0.0456163 +0.029145 0.262551 0.0049808 +0.0292175 0.253441 -0.0105879 +0.02929 0.334912 0.112671 +0.0293625 0.34464 0.0867236 +0.029435 0.438728 0.0363352 +0.0295075 0.464233 0.0134561 +0.02958 0.378433 0.0085588 +0.0296525 0.371101 -0.00510188 +0.029725 0.338678 0.0698899 +0.0297975 0.400381 0.0323648 +0.02987 0.409724 0.00525218 +0.0299425 0.352201 0.0264738 +0.030015 0.266797 0.156764 +0.0300875 0.49082 -0.00535238 +0.03016 0.394369 0.0629886 +0.0302325 0.428646 -0.0206538 +0.030305 0.347963 0.033492 +0.0303775 0.420964 0.0535113 +0.03045 0.36706 -0.0327906 +0.0305225 0.314363 0.0708502 +0.030595 0.286803 0.0822772 +0.0306675 0.437309 0.0178524 +0.03074 0.404739 0.0788328 +0.0308125 0.405604 0.0749709 +0.030885 0.375827 -0.0205077 +0.0309575 0.361724 0.0129927 +0.03103 0.263791 -0.067101 +0.0311025 0.292047 0.00827072 +0.031175 0.366943 0.0355002 +0.0312475 0.391054 -0.0235555 +0.03132 0.408259 -0.0594273 +0.0313925 0.402184 0.0039788 +0.031465 0.350343 0.016984 +0.0315375 0.320487 0.140181 +0.03161 0.38781 -0.0315214 +0.0316825 0.299971 -0.0132975 +0.031755 0.344535 0.0036949 +0.0318275 0.315152 -0.0170049 +0.0319 0.288365 -0.0370826 +0.0319725 0.396753 0.0517578 +0.032045 0.351595 -0.0274967 +0.0321175 0.297796 -0.0154392 +0.03219 0.319427 0.0192594 +0.0322625 0.352126 -0.0447229 +0.032335 0.301992 0.0293421 +0.0324075 0.328545 -0.077906 +0.03248 0.327522 0.0201695 +0.0325525 0.333146 0.122512 +0.032625 0.377902 0.0298472 +0.0326975 0.40357 -0.00182449 +0.03277 0.332549 0.0189504 +0.0328425 0.236912 -0.0801479 +0.032915 0.311056 0.0747538 +0.0329875 0.296777 -0.0116817 +0.03306 0.278992 0.0175936 +0.0331325 0.267448 0.104526 +0.033205 0.297583 -0.0786992 +0.0332775 0.310952 0.00641701 +0.03335 0.260476 0.0422596 +0.0334225 0.403441 0.00903893 +0.033495 0.291651 0.139859 +0.0335675 0.323122 0.0886692 +0.03364 0.241262 0.146606 +0.0337125 0.161978 0.0753383 +0.033785 0.430224 -0.0560288 +0.0338575 0.269656 -0.0197896 +0.03393 0.295145 -0.0465223 +0.0340025 0.328829 -0.0462342 +0.034075 0.33366 0.00464263 +0.0341475 0.351299 0.00376587 +0.03422 0.290544 -0.0263361 +0.0342925 0.336954 0.0178315 +0.034365 0.304919 0.109423 +0.0344375 0.343989 -0.00432115 +0.03451 0.244398 -0.0104376 +0.0345825 0.30939 -0.0545843 +0.034655 0.257303 -0.0462718 +0.0347275 0.271009 0.0876964 +0.0348 0.233551 -0.0347863 +0.0348725 0.271222 -0.00978208 +0.034945 0.261674 -0.168132 +0.0350175 0.268767 -0.0557282 +0.03509 0.429589 0.0194974 +0.0351625 0.290223 0.149332 +0.035235 0.21797 -0.0125 +0.0353075 0.236849 0.0676605 +0.03538 0.251524 0.00229626 +0.0354525 0.306639 0.066934 +0.035525 0.312605 0.0360472 +0.0355975 0.275376 0.0517661 +0.03567 0.287889 0.0163076 +0.0357425 0.274391 0.0169422 +0.035815 0.219569 0.0361014 +0.0358875 0.313356 -0.0365064 +0.03596 0.297166 0.00507683 +0.0360325 0.305562 -0.0399049 +0.036105 0.309515 0.0339346 +0.0361775 0.298564 0.216162 +0.03625 0.276445 0.132691 +0.0363225 0.211365 0.0483885 +0.036395 0.295041 0.0645709 +0.0364675 0.232119 0.0630846 +0.03654 0.201437 -0.04952 +0.0366125 0.260417 0.054793 +0.036685 0.202163 -0.0172846 +0.0367575 0.293655 0.0638987 +0.03683 0.216421 0.054029 +0.0369025 0.223965 -0.0186206 +0.036975 0.395362 0.0809746 +0.0370475 0.316492 0.0335964 +0.03712 0.418818 0.097157 +0.0371925 0.392987 -0.0843063 +0.037265 0.283868 -0.00670509 +0.0373375 0.341425 0.00244239 +0.03741 0.294068 0.0319723 +0.0374825 0.292577 0.012738 +0.037555 0.354213 0.0312793 +0.0376275 0.177919 0.0524216 +0.0377 0.318989 -0.0464137 +0.0377725 0.228052 -0.038548 +0.037845 0.228153 0.00277222 +0.0379175 0.185096 0.0297888 +0.03799 0.228269 0.0570141 +0.0380625 0.206705 0.104513 +0.038135 0.397366 -0.0304693 +0.0382075 0.28219 0.0472696 +0.03828 0.37928 0.078361 +0.0383525 0.303082 -0.041792 +0.038425 0.245638 0.00596193 +0.0384975 0.27369 0.106584 +0.03857 0.266291 0.100823 +0.0386425 0.169702 0.10147 +0.038715 0.272099 0.0413787 +0.0387875 0.242402 -0.0336841 +0.03886 0.235663 -0.0130219 +0.0389325 0.278649 0.0246326 +0.039005 0.336845 0.0413912 +0.0390775 0.186799 0.0330411 +0.03915 0.239555 0.0470358 +0.0392225 0.229572 0.0235054 +0.039295 0.121451 0.0740733 +0.0393675 0.224929 0.10185 +0.03944 0.113786 0.0353249 +0.0395125 0.212697 0.153933 +0.039585 0.293112 0.0690591 +0.0396575 0.30633 -0.0177564 +0.03973 0.302126 0.0367026 +0.0398025 0.309236 0.0428149 +0.039875 0.194711 -0.0634353 +0.0399475 0.163978 0.027814 +0.04002 0.17867 -0.0599575 +0.0400925 0.253691 0.0269706 +0.040165 0.209119 0.046802 +0.0402375 0.205328 -0.0477581 +0.04031 0.313206 0.0377881 +0.0403825 0.116533 0.0539789 +0.040455 0.218888 -0.11126 +0.0405275 0.240252 -0.0801813 +0.0406 0.196443 0.0655187 +0.0406725 0.216321 -0.052526 +0.040745 0.361774 -0.0061331 +0.0408175 0.210764 -0.0280186 +0.04089 0.264684 0.0694933 +0.0409625 0.148627 0.134995 +0.041035 0.274274 0.105211 +0.0411075 0.209461 0.0741317 +0.04118 0.193579 0.0944724 +0.0412525 0.297395 0.0601788 +0.041325 0.19752 0.0715975 +0.0413975 0.200076 0.0774634 +0.04147 0.249474 0.00835423 +0.0415425 0.240089 -0.0315423 +0.041615 0.250301 0.0464388 +0.0416875 0.251942 0.073255 +0.04176 0.242941 0.0283275 +0.0418325 0.227017 0.0437751 +0.041905 0.218696 0.0057323 +0.0419775 0.198643 -0.00397462 +0.04205 0.183697 0.0462342 +0.0421225 0.12766 -0.0264488 +0.042195 0.245266 -0.0131263 +0.0422675 0.255324 0.0515407 +0.04234 0.0561541 0.0159695 +0.0424125 0.221911 -0.0917545 +0.042485 0.272028 0.0839806 +0.0425575 0.215536 0.0640699 +0.04263 0.276967 0.00622078 +0.0427025 0.231488 0.118779 +0.042775 0.323264 -0.086995 +0.0428475 0.260083 -0.0133058 +0.04292 0.188982 -0.0235137 +0.0429925 0.232929 -0.0539872 +0.043065 0.153236 0.0283401 +0.0431375 0.27485 -0.0117569 +0.04321 0.273493 -0.0501128 +0.0432825 0.1623 0.0156104 +0.043355 0.231614 0.0332248 +0.0434275 0.121702 0.0211006 +0.0435 0.254543 -0.0226913 +0.0435725 0.239914 0.0508852 +0.043645 0.16855 -0.0259144 +0.0437175 0.201587 -0.0510647 +0.04379 0.307106 -0.0118946 +0.0438625 0.273285 0.0178566 +0.043935 0.168011 0.0851914 +0.0440075 0.36567 0.078862 +0.04408 0.162496 0.117585 +0.0441525 0.268513 0.0826697 +0.044225 0.325406 0.0589597 +0.0442975 0.148982 0.0341016 +0.04437 0.251959 -0.0349909 +0.0444425 0.233188 0.0163661 +0.044515 0.20886 -0.0416333 +0.0445875 0.206818 0.110242 +0.04466 0.170817 0.0168546 +0.0447325 0.252222 -0.034231 +0.044805 0.120086 0.0138319 +0.0448775 0.269552 0.0275218 +0.04495 0.256772 -0.00559453 +0.0450225 0.186828 0.0263611 +0.045095 0.151466 -0.00594941 +0.0451675 0.085563 0.161736 +0.04524 0.203336 0.010663 +0.0453125 0.106643 -0.0221485 +0.045385 0.250414 0.0415582 +0.0454575 0.218116 -0.0735347 +0.04553 0.138423 0.0487434 +0.0456025 0.220792 -0.0137191 +0.045675 0.245015 -0.0047637 +0.0457475 0.221147 0.00318137 +0.04582 0.110208 -0.0117736 +0.0458925 0.17156 -0.0369197 +0.045965 0.154614 0.00168253 +0.0460375 0.253173 -0.00556113 +0.04611 0.170454 -0.00418755 +0.0461825 0.107557 0.0114646 +0.046255 0.118487 0.0214513 +0.0463275 0.199132 0.0123664 +0.0464 0.11349 0.0134895 +0.0464725 0.115373 0.061519 +0.046545 0.19623 0.021397 +0.0466175 0.154559 0.0116024 +0.04669 0.058037 0.000300601 +0.0467625 0.260906 0.014575 +0.046835 0.155612 0.108642 +0.0469075 0.171272 0.000601203 +0.04698 0.166249 0.087567 +0.0470525 0.207244 -0.0345441 +0.047125 0.135392 0.1001 +0.0471975 0.22733 -0.033325 +0.04727 0.132808 -0.0281981 +0.0473425 0.129697 -0.0221652 +0.047415 0.0665791 -0.00158651 +0.0474875 0.148284 0.018917 +0.04756 0.23505 0.0306447 +0.0476325 0.19241 -0.046898 +0.047705 0.162216 -0.055603 +0.0477775 0.267961 -0.0102831 +0.04785 0.157899 -0.0427397 +0.0479225 0.185684 -0.0668547 +0.047995 0.230449 0.0135313 +0.0480675 0.261248 -0.004413 +0.04814 0.116688 0.0689672 +0.0482125 0.190423 0.0904143 +0.048285 0.203587 0.0397713 +0.0483575 0.212555 -0.00610806 +0.04843 0.117327 0.0250209 +0.0485025 0.239934 -0.0231088 +0.048575 0.0627256 0.00372412 +0.0486475 0.105603 -0.039358 +0.04872 0.225355 0.0614898 +0.0487925 0.212713 0.00407066 +0.048865 0.207645 -0.0533735 +0.0489375 0.150601 0.00940216 +0.04901 0.105252 0.0429527 +0.0490825 0.23257 0.0035112 +0.049155 0.127259 -0.0534821 +0.0492275 0.252338 0.0251879 +0.0493 0.135237 0.0217268 +0.0493725 0.206835 0.0193011 +0.049445 0.180983 0.0747162 +0.0495175 0.187839 -0.0148798 +0.04959 0.188966 0.0316049 +0.0496625 0.117919 -0.0397629 +0.049735 0.240281 0.037045 +0.0498075 0.13186 0.0889322 +0.04988 0.080745 -0.0549934 +0.0499525 0.146852 -0.0420801 +0.050025 0.197307 -0.0222696 +0.0500975 0.096681 0.00307699 +0.05017 0.107787 -0.0748958 +0.0502425 0.188911 -0.0266074 +0.050315 0.151111 0.0239939 +0.0503875 0.112663 -0.07743 +0.05046 0.187296 0.0263611 +0.0505325 0.0736558 0.0671803 +0.050605 0.0978083 -0.0211841 +0.0506775 0.235396 0.0271293 +0.05075 0.148915 -0.0517786 +0.0508225 0.0934872 -0.0429276 +0.050895 0.149954 -0.0271836 +0.0509675 0.194602 0.0442386 +0.05104 0.132753 0.0746703 +0.0511125 0.142627 0.0558242 +0.051185 0.166128 -0.102981 +0.0512575 0.0627256 0.0479334 +0.05133 0.138364 -0.0445475 +0.0514025 0.177355 0.0202363 +0.051475 0.235254 0.0726078 +0.0515475 0.191153 -0.0648131 +0.05162 0.0525427 0.0999751 +0.0516925 0.16045 -0.00303942 +0.051765 0.120399 0.0376003 +0.0518375 0.0997539 0.00425853 +0.05191 0.0754636 -0.0284152 +0.0519825 0.0360931 -0.0264321 +0.052055 0.0638445 0.0251504 +0.0521275 0.113782 0.0260981 +0.0522 0.153453 0.0552397 +0.0522725 0.166717 -0.0282816 +0.052345 0.112463 0.00111473 +0.0524175 0.0779602 -0.0546051 +0.05249 0.0834379 -0.0870701 +0.0525625 0.128787 0.0105503 +0.052635 0.126599 0.00402055 +0.0527075 0.109444 0.0406272 +0.05278 0.197621 -0.0176353 +0.0528525 0.277994 0.0178983 +0.052925 0.144936 -0.00201654 +0.0529975 0.09074 -0.0124624 +0.05307 0.265097 -0.0254468 +0.0531425 0.124737 0.066003 +0.053215 0.207791 0.0398256 +0.0532875 0.248852 -0.0886984 +0.05336 0.163152 0.0121702 +0.0534325 0.0486474 0.0077906 +0.053505 0.00783235 -0.0989856 +0.0535775 0.0708627 0.0597362 +0.05365 0.188511 0.0474742 +0.0537225 0.186085 0.0641743 +0.053795 0.196439 0.00868406 +0.0538675 0.188252 -0.00979879 +0.05394 0.109878 0.119026 +0.0540125 0.0885815 0.0492235 +0.054085 0.191705 -0.00392452 +0.0541575 0.0526304 -0.0421803 +0.05423 0.22543 0.10271 +0.0543025 0.167151 0.00290582 +0.054375 0.19775 -0.0600327 +0.0544475 0.0821979 0.00234636 +0.05452 0.0351287 0.0830412 +0.0545925 0.0934162 0.00986976 +0.054665 0.13368 0.015147 +0.0547375 0.150038 0.0199733 +0.05481 0.191358 -0.0359887 +0.0548825 0.0944599 0.0230503 +0.054955 0.103766 -0.041984 +0.0550275 0.110496 0.0822563 +0.0551 0.232215 0.0376671 +0.0551725 0.215811 0.0616776 +0.055245 0.103474 0.0740942 +0.0553175 0.186319 -0.096489 +0.05539 0.210371 0.0307908 +0.0554625 0.10977 -0.0703116 +0.055535 0.144139 0.0213302 +0.0556075 0.212062 0.196577 +0.05568 0.088594 0.0289705 +0.0557525 0.160304 0.0914205 +0.055825 0.150827 -0.0635439 +0.0558975 0.00186624 -0.0339931 +0.05597 0.18201 0.0195266 +0.0560425 0.14603 0.0112726 +0.056115 0.163749 0.0826738 +0.0561875 0.132611 0.0141241 +0.05626 0.136715 -0.0752298 +0.0563325 0.0499291 0.115076 +0.056405 0.21043 -0.0177564 +0.0564775 0.0926271 -0.052096 +0.05655 0.138277 0.00793672 +0.0566225 0.106238 -0.0349032 +0.056695 0.170124 0.0115857 +0.0567675 0.190473 0.105177 +0.05684 0.151482 0.0883686 +0.0569125 0.0550393 -0.044464 +0.056985 0.0826154 -0.10501 +0.0570575 0.0930822 0.0178399 +0.05713 0.207106 -0.0461591 +0.0572025 0.183488 0.00126503 +0.057275 0.083918 -0.0369448 +0.0573475 0.169715 -0.0430528 +0.05742 0.0873666 0.0139404 +0.0574925 0.105891 -0.0633685 +0.057565 0.122988 0.144773 +0.0576375 0.166805 0.111494 +0.05771 0.149804 0.060851 +0.0577825 0.0335087 0.00251337 +0.057855 0.131918 -0.040193 +0.0579275 0.0530896 0.058442 +0.058 0.101324 0.0661366 +0.0580725 0.118132 -0.121531 +0.058145 0.0983678 -0.0487685 +0.0582175 0.129756 0.0741401 +0.05829 0.102522 -0.0290707 +0.0583625 0.207257 0.070249 +0.058435 0.152438 0.0416626 +0.0585075 0.163369 -0.0213093 +0.05858 0.22037 -0.115949 +0.0586525 0.193174 0.0403433 +0.058725 0.104388 0.0331706 +0.0587975 0.131927 0.0668839 +0.05887 0.0737101 -0.0304359 +0.0589425 0.0792378 0.0256221 +0.059015 0.0719816 0.0252631 +0.0590875 0.117777 -0.0028098 +0.05916 -0.0126378 0.065122 +0.0592325 0.161569 0.00136523 +0.059305 0.105344 0.0965391 +0.0593775 0.240227 -0.0898382 +0.05945 0.0937168 -0.0687084 +0.0595225 0.0852582 -0.0746995 +0.059595 0.0845401 0.0021376 +0.0596675 0.00683034 -0.0304443 +0.05974 -0.00561123 0.0351621 +0.0598125 0.0255637 -0.014742 +0.059885 0.132549 -0.0614188 +0.0599575 0.0419548 0.0143036 +0.06003 0.15658 -0.0454785 +0.0601025 0.105783 0.0314254 +0.060175 0.161928 0.0177689 +0.0602475 0.0332708 -0.046873 +0.06032 0.0763988 -0.0557783 +0.0603925 0.144364 -0.0444932 +0.060465 0.0228207 -0.0113769 +0.0605375 0.176357 -0.00978625 +0.06061 0.107473 0.0220358 +0.0606825 0.0633226 -0.0010354 +0.060755 0.102134 0.0292377 +0.0608275 0.0746703 0.00769457 +0.0609 0.0982216 -0.0312542 +0.0609725 0.131818 0.00910573 +0.061045 0.14679 -0.041387 +0.0611175 0.106739 -0.00754427 +0.06119 0.0988604 0.00267619 +0.0612625 0.071443 0.0437543 +0.061335 0.136348 0.00918506 +0.0614075 0.129292 -0.0903058 +0.06148 0.0768079 -0.0305528 +0.0615525 -0.0376337 0.043153 +0.061625 0.0240314 -0.00362392 +0.0616975 0.109853 0.0270917 +0.06177 0.0193387 0.0645 +0.0618425 0.00647547 -0.0627172 +0.061915 0.15691 0.0225201 +0.0619875 0.162417 0.0326863 +0.06206 0.0549308 0.0259102 +0.0621325 0.107837 0.0526805 +0.062205 0.0999376 0.007991 +0.0622775 0.0788746 0.0149341 +0.06235 0.174487 0.126695 +0.0624225 0.0677064 -0.078908 +0.062495 0.0141784 0.118788 +0.0625675 0.117986 0.000321476 +0.06264 0.116884 0.0280478 +0.0627125 0.126445 -0.0557575 +0.062785 0.163807 0.044965 +0.0628575 0.143896 0.0407315 +0.06293 0.0700861 -0.0174224 +0.0630025 0.136039 -0.0468062 +0.063075 0.116087 -0.00700152 +0.0631475 0.131789 0.0441592 +0.06322 0.0955246 0.0642787 +0.0632925 0.0582332 -0.016842 +0.063365 0.135997 0.0224575 +0.0634375 0.0322354 -0.121109 +0.06351 0.0878884 -0.0139112 +0.0635825 0.0627172 0.0183284 +0.063655 0.0582583 -0.00947313 +0.0637275 0.0138319 -0.0132307 +0.0638 0.215774 0.00596611 +0.0638725 0.170374 -0.0573189 +0.063945 0.0419423 0.130169 +0.0640175 0.121393 0.00730212 +0.06409 0.0823064 -0.0825736 +0.0641625 0.0811416 0.0175184 +0.064235 0.150301 0.047779 +0.0643075 0.177121 0.0705496 +0.06438 -0.0114187 -0.0112559 +0.0644525 0.227476 0.075831 +0.064525 0.119414 -0.0604669 +0.0645975 0.114354 -0.0143913 +0.06467 0.0844399 0.0868864 +0.0647425 0.163761 0.0803233 +0.064815 0.0549016 -0.0112642 +0.0648875 0.056843 -0.0112976 +0.06496 0.0570684 -0.0723281 +0.0650325 0.0817595 0.0152639 +0.065105 0.176482 -0.0903642 +0.0651775 0.016675 0.0337425 +0.06525 0.180954 -0.0104668 +0.0653225 0.0500335 0.0677648 +0.065395 0.0669674 0.00654227 +0.0654675 0.143667 -0.0574609 +0.06554 0.0819181 0.00993238 +0.0656125 0.0618112 0.019155 +0.065685 -0.0301687 0.0259186 +0.0657575 0.024641 -0.0221569 +0.06583 0.162317 -0.020228 +0.0659025 0.0353708 -0.00935206 +0.065975 0.118788 0.00105211 +0.0660475 0.0355002 0.031726 +0.06612 0.149892 0.0607466 +0.0661925 0.110321 0.0329994 +0.066265 0.107365 0.0167168 +0.0663375 0.083776 0.0707708 +0.06641 0.0428984 0.0444139 +0.0664825 0.0178274 -0.00264279 +0.066555 0.0805905 -0.000338175 +0.0666275 0.0750335 -0.106129 +0.0667 0.158856 0.0779561 +0.0667725 0.0720901 -0.00239229 +0.066845 0.114329 0.00880095 +0.0669175 0.180165 0.0831206 +0.06699 0.051524 0.0383685 +0.0670625 0.0883393 0.0479919 +0.067135 -0.0489772 -0.024833 +0.0672075 0.0593396 0.0882433 +0.06728 0.0952615 -0.0291959 +0.0673525 0.045775 0.0624959 +0.067425 0.137738 0.0710547 +0.0674975 0.0988521 -0.025547 +0.06757 0.0799935 0.0121577 +0.0676425 0.0431614 0.0777557 +0.067715 0.0408443 -0.000446734 +0.0677875 0.0133643 -0.0211924 +0.06786 -0.052384 -0.0506639 +0.0679325 -0.00617069 0.0305487 +0.068005 0.0056154 0.0292252 +0.0680775 0.011761 0.0376963 +0.06815 0.0789664 -0.00752757 +0.0682225 0.14712 -0.0191842 +0.068295 0.0203157 0.0358259 +0.0683675 -0.0420174 0.0849283 +0.06844 0.101499 -0.0193846 +0.0685125 0.115824 -0.150656 +0.068585 0.0815424 -0.0427355 +0.0686575 0.112149 -0.128407 +0.06873 0.0813044 -0.00531063 +0.0688025 0.12771 -0.0819056 +0.068875 0.143688 0.00572396 +0.0689475 0.117903 -0.00205411 +0.06902 0.0469189 -0.0239688 +0.0690925 -0.0206497 0.0558243 +0.069165 0.0518789 0.0102205 +0.0692375 0.0519331 0.0525135 +0.06931 0.0615858 -0.0322855 +0.0693825 0.0726705 -0.0481172 +0.069455 0.0957083 0.0210463 +0.0695275 -0.0203032 -0.0439839 +0.0696 0.0293421 0.0624083 +0.0696725 0.0763153 0.0797972 +0.069745 0.0478207 0.0106421 +0.0698175 0.096848 0.0639948 +0.06989 0.0818931 0.135676 +0.0699625 0.141826 0.0328407 +0.070035 0.049975 -0.0543964 +0.0701075 0.150368 -0.0373414 +0.07018 0.112868 0.00592019 +0.0702525 0.111828 -0.0229793 +0.070325 0.0841643 0.0559286 +0.0703975 0.0450402 0.0327781 +0.07047 0.0379217 0.026407 +0.0705425 0.0689672 0.0166583 +0.070615 -0.0227372 0.00652974 +0.0706875 0.100768 0.0133016 +0.07076 0.0267118 0.03373 +0.0708325 0.0277138 0.105019 +0.070905 0.0376545 0.0449775 +0.0709775 0.170299 -0.00283067 +0.07105 0.0681197 -0.0802565 +0.0711225 0.0933034 0.0351454 +0.071195 0.0628842 -0.102939 +0.0712675 0.0739522 0.0855421 +0.07134 0.0684704 0.102384 +0.0714125 0.0398464 -0.0237267 +0.071485 0.114279 -0.0199316 +0.0715575 0.0728041 0.0706706 +0.07163 0.0854711 0.0604752 +0.0717025 0.0721695 -0.048973 +0.071775 0.0984011 -0.0134812 +0.0718475 0.0970985 -0.0770459 +0.07192 0.0945894 0.137325 +0.0719925 0.0753884 0.100309 +0.072065 0.00387442 -0.0462885 +0.0721375 0.0999835 0.0255595 +0.07221 0.0570475 0.0321059 +0.0722825 0.0169297 0.032728 +0.072355 -0.0520667 0.00266366 +0.0724275 0.130678 -0.068771 +0.0725 0.0858218 -0.0591893 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/11/data-07500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/11/data-07500um.dat new file mode 100644 index 0000000..dcfbe9c --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/11/data-07500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 1.75675 0.0910239 +0.000145 2.3045 0.0925728 +0.0002175 2.24829 0.0854794 +0.00029 2.20783 0.169694 +0.0003625 2.17236 0.092815 +0.000435 2.08333 0.0440298 +0.0005075 2.08718 0.0616609 +0.00058 2.19581 0.0524467 +0.0006525 2.11608 0.181918 +0.000725 2.05407 0.0627965 +0.0007975 1.98276 0.159674 +0.00087 2.13294 0.118725 +0.0009425 2.00258 0.110062 +0.001015 2.02725 0.00402054 +0.0010875 1.97768 0.0553149 +0.00116 2.06409 0.106062 +0.0012325 1.95343 0.0911575 +0.001305 2.02418 0.143329 +0.0013775 2.07533 0.0114688 +0.00145 2.01693 -0.0302439 +0.0015225 1.96421 0.0624208 +0.001595 2.10572 0.180891 +0.0016675 1.97884 0.179255 +0.00174 1.96454 0.149746 +0.0018125 1.91101 0.0694515 +0.001885 1.89095 0.157035 +0.0019575 1.76207 0.0800227 +0.00203 1.80852 0.0761274 +0.0021025 1.84183 0.0875837 +0.002175 1.84945 0.0428984 +0.0022475 1.77942 0.105064 +0.00232 1.81007 0.0899676 +0.0023925 1.8457 0.0439922 +0.002465 1.70809 0.220445 +0.0025375 1.85139 0.116128 +0.00261 1.81704 0.0279601 +0.0026825 1.79631 -0.0282315 +0.002755 1.67495 0.0596903 +0.0028275 1.86304 0.081509 +0.0029 1.74879 0.0925728 +0.0029725 1.73072 0.0400427 +0.003045 1.71924 0.117164 +0.0031175 1.73382 0.130937 +0.00319 1.65909 0.0817303 +0.0032625 1.7088 0.0536992 +0.003335 1.68584 0.159924 +0.0034075 1.68575 0.0408484 +0.00348 1.71528 0.0410447 +0.0035525 1.70301 0.195976 +0.003625 1.62459 0.122754 +0.0036975 1.5349 0.0268579 +0.00377 1.62775 0.103904 +0.0038425 1.61133 0.138569 +0.003915 1.67835 0.183906 +0.0039875 1.67691 0.0794131 +0.00406 1.67033 0.0503007 +0.0041325 1.53222 0.020324 +0.004205 1.54031 0.140581 +0.0042775 1.56092 0.0785197 +0.00435 1.47352 0.105837 +0.0044225 1.53139 0.0335881 +0.004495 1.53752 0.0621118 +0.0045675 1.5596 0.104589 +0.00464 1.4605 0.0658568 +0.0047125 1.57317 -0.0161031 +0.004785 1.48328 0.134194 +0.0048575 1.4635 0.189225 +0.00493 1.52399 0.0675185 +0.0050025 1.52682 0.0501253 +0.005075 1.37917 0.0918547 +0.0051475 1.46125 0.114542 +0.00522 1.44766 0.137688 +0.0052925 1.52299 0.0286991 +0.005365 1.51707 0.100514 +0.0054375 1.44355 0.0220525 +0.00551 1.48796 0.126524 +0.0055825 1.39792 -0.0370951 +0.005655 1.4341 0.15243 +0.0057275 1.40045 0.0757224 +0.0058 1.48782 0.116312 +0.0058725 1.42363 0.0614397 +0.005945 1.33742 0.0992988 +0.0060175 1.3788 0.0478583 +0.00609 1.3634 0.0885189 +0.0061625 1.42794 0.110404 +0.006235 1.4715 0.0399466 +0.0063075 1.3198 0.101787 +0.00638 1.31508 0.136277 +0.0064525 1.40728 0.0599033 +0.006525 1.34875 0.0750043 +0.0065975 1.32358 0.115594 +0.00667 1.36641 0.00780312 +0.0067425 1.28954 0.159202 +0.006815 1.30074 0.124779 +0.0068875 1.33539 0.0667586 +0.00696 1.33343 0.0418421 +0.0070325 1.2993 0.0500544 +0.007105 1.27621 0.103382 +0.0071775 1.24491 0.0620033 +0.00725 1.29702 0.0895668 +0.0073225 1.27982 0.0088427 +0.007395 1.34915 0.100572 +0.0074675 1.2898 -0.024499 +0.00754 1.17553 0.0848782 +0.0076125 1.34246 0.0592227 +0.007685 1.17299 0.126361 +0.0077575 1.18526 -0.0448064 +0.00783 1.19632 0.102647 +0.0079025 1.28321 0.100651 +0.007975 1.28491 0.103804 +0.0080475 1.25869 0.0995827 +0.00812 1.19803 0.0243654 +0.0081925 1.2104 0.181083 +0.008265 1.26772 -0.00701822 +0.0083375 1.18121 0.144731 +0.00841 1.11872 0.0149299 +0.0084825 1.21344 0.0674433 +0.008555 1.21547 0.0436123 +0.0086275 1.22413 0.0438377 +0.0087 1.2449 0.100906 +0.0087725 1.26172 0.0777723 +0.008845 1.06041 0.147646 +0.0089175 1.12566 0.136327 +0.00899 1.14144 0.0830204 +0.0090625 1.14975 0.0038118 +0.009135 1.12889 0.0298055 +0.0092075 1.22711 0.128094 +0.00928 1.2362 0.076858 +0.0093525 1.16762 0.0301729 +0.009425 1.11581 0.133492 +0.0094975 1.17866 0.076666 +0.00957 1.08846 0.0480712 +0.0096425 1.08485 0.0835798 +0.009715 1.13558 0.074019 +0.0097875 1.18576 0.0888737 +0.00986 0.989272 0.0469481 +0.0099325 1.08413 0.179138 +0.010005 1.08675 0.0445767 +0.0100775 1.06427 0.0994031 +0.01015 1.07676 0.174516 +0.0102225 1.18605 0.102463 +0.010295 1.09414 -0.0280395 +0.0103675 0.967374 0.159837 +0.01044 1.02876 0.0155728 +0.0105125 0.963491 0.0603166 +0.010585 1.03606 0.0456455 +0.0106575 1.04257 0.0160279 +0.01073 1.04421 0.0565507 +0.0108025 1.08424 -0.0437668 +0.010875 1.03746 -0.014241 +0.0109475 1.04105 0.124341 +0.01102 1.06867 0.153791 +0.0110925 1.0045 0.0826029 +0.011165 0.954072 -0.00149048 +0.0112375 0.961412 0.175142 +0.01131 1.08721 0.0333417 +0.0113825 0.988708 0.0193137 +0.011455 0.900273 0.0153516 +0.0115275 1.01593 -0.062926 +0.0116 1.06146 0.0562543 +0.0116725 0.954953 0.0605086 +0.011745 0.915107 0.0956916 +0.0118175 0.997321 0.0157357 +0.01189 0.915925 0.0815967 +0.0119625 0.979603 0.171986 +0.012035 0.987832 0.109269 +0.0121075 0.887882 0.114947 +0.01218 0.870789 0.133434 +0.0122525 0.982968 0.0261023 +0.012325 0.913266 0.0248623 +0.0123975 0.969983 0.0835506 +0.01247 0.768735 0.0568722 +0.0125425 0.953321 0.0631681 +0.012615 0.95983 0.0337676 +0.0126875 0.938262 -0.0389363 +0.01276 1.00041 0.062045 +0.0128325 0.9139 0.00990316 +0.012905 0.970823 0.105691 +0.0129775 0.922146 0.0401345 +0.01305 0.842603 0.134131 +0.0131225 0.860126 -0.00169506 +0.013195 1.01794 0.0280478 +0.0132675 0.920752 -0.131192 +0.01334 0.815775 0.0510522 +0.0134125 0.846148 0.0317344 +0.013485 0.881907 0.0290749 +0.0135575 0.83412 0.0397254 +0.01363 0.87478 0.0853083 +0.0137025 0.924121 0.111285 +0.013775 0.819879 0.0553066 +0.0138475 0.875536 0.12427 +0.01392 0.836633 0.100401 +0.0139925 0.848724 0.133434 +0.014065 0.847943 -0.0569098 +0.0141375 0.910656 -0.0258392 +0.01421 0.763558 0.013001 +0.0142825 0.875853 0.027551 +0.014355 0.838808 0.0492569 +0.0144275 0.810548 0.0477623 +0.0145 0.813758 0.043032 +0.0145725 0.831552 0.0692553 +0.014645 0.855078 0.0412952 +0.0147175 0.83088 0.00470108 +0.01479 0.779606 0.0024758 +0.0148625 0.682166 0.0258351 +0.014935 0.89176 0.0518705 +0.0150075 0.782521 0.0918965 +0.01508 0.867261 0.0215556 +0.0151525 0.884871 0.051524 +0.015225 0.749517 -0.0038118 +0.0152975 0.78885 0.0499834 +0.01537 0.917862 0.123802 +0.0154425 0.816067 0.120191 +0.015515 0.666789 0.0817804 +0.0155875 0.787923 0.0909404 +0.01566 0.821136 0.143542 +0.0157325 0.889869 0.0402389 +0.015805 0.797555 0.0269999 +0.0158775 0.83288 0.099257 +0.01595 0.79409 0.0751421 +0.0160225 0.771674 0.069201 +0.016095 0.674709 0.0765532 +0.0161675 0.785994 0.0206998 +0.01624 0.80727 0.0785197 +0.0163125 0.716714 0.0234302 +0.016385 0.77306 -0.0284361 +0.0164575 0.7475 0.00323565 +0.01653 0.711132 0.0291459 +0.0166025 0.77635 -0.0397421 +0.016675 0.680358 0.197186 +0.0167475 0.80284 -0.0773841 +0.01682 0.794027 -0.0265406 +0.0168925 0.769432 0.0373122 +0.016965 0.708756 0.0131096 +0.0170375 0.748477 0.0878717 +0.01711 0.724041 0.0200109 +0.0171825 0.728621 -0.0304151 +0.017255 0.74287 0.0442761 +0.0173275 0.66658 0.0714973 +0.0174 0.746737 0.0309954 +0.0174725 0.741267 -0.022708 +0.017545 0.770968 0.0942887 +0.0176175 0.742929 -0.053695 +0.01769 0.657675 -0.028077 +0.0177625 0.793906 0.0544298 +0.017835 0.700264 0.0368947 +0.0179075 0.776955 -0.0211173 +0.01798 0.756214 0.100622 +0.0180525 0.546674 0.064358 +0.018125 0.692766 -0.00430862 +0.0181975 0.695279 0.0683911 +0.01827 0.609929 0.107845 +0.0183425 0.754331 -0.0203449 +0.018415 0.59973 0.0623498 +0.0184875 0.693067 0.00668421 +0.01856 0.700218 -0.0325735 +0.0186325 0.626145 0.0436165 +0.018705 0.637088 0.0534821 +0.0187775 0.654485 0.12199 +0.01885 0.712434 0.0677857 +0.0189225 0.761716 -0.0140782 +0.018995 0.667545 0.00503925 +0.0190675 0.688282 0.0786115 +0.01914 0.657404 -0.00665916 +0.0192125 0.712343 0.0797137 +0.019285 0.702698 0.0299767 +0.0193575 0.637748 0.046372 +0.01943 0.716493 0.0590515 +0.0195025 0.697534 -0.0311373 +0.019575 0.747643 0.0343103 +0.0196475 0.679239 0.116183 +0.01972 0.696866 0.00660071 +0.0197925 0.662238 -0.00634604 +0.019865 0.583936 0.0948482 +0.0199375 0.633134 0.100572 +0.02001 0.587359 0.129455 +0.0200825 0.665966 0.0349617 +0.020155 0.692065 0.100656 +0.0202275 0.622158 0.00692219 +0.0203 0.643455 0.0389321 +0.0203725 0.571281 0.123435 +0.020445 0.716463 0.0992528 +0.0205175 0.54226 -0.0283568 +0.02059 0.640783 -0.0333668 +0.0206625 0.560806 0.12685 +0.020735 0.641371 0.0717854 +0.0208075 0.673398 -0.035208 +0.02088 0.584199 0.0509186 +0.0209525 0.51101 0.0868113 +0.021025 0.566972 0.114554 +0.0210975 0.552573 0.0047804 +0.02117 0.580529 0.0214137 +0.0212425 0.490528 0.156447 +0.021315 0.541446 0.0699442 +0.0213875 0.544085 -0.0198188 +0.02146 0.685873 -0.0264947 +0.0215325 0.549776 0.104284 +0.021605 0.618989 -0.0402472 +0.0216775 0.640227 -0.0534153 +0.02175 0.502331 0.0106213 +0.0218225 0.607913 0.0697897 +0.021895 0.521953 0.078862 +0.0219675 0.629335 0.048113 +0.02204 0.550811 0.00837927 +0.0221125 0.538098 0.0271585 +0.022185 0.469177 0.109603 +0.0222575 0.634316 0.121364 +0.02233 0.52326 0.0967645 +0.0224025 0.560434 0.0928818 +0.022475 0.464952 0.0115105 +0.0225475 0.506977 0.00774884 +0.02262 0.642749 0.0995451 +0.0226925 0.462117 -0.0688086 +0.022765 0.599909 0.0329117 +0.0228375 0.557721 -0.0140698 +0.02291 0.483121 0.0474742 +0.0229825 0.593768 0.00998248 +0.023055 0.516271 -0.0285196 +0.0231275 0.534616 0.114646 +0.0232 0.562735 -0.031964 +0.0232725 0.563031 0.0895167 +0.023345 0.533844 -0.014575 +0.0234175 0.526859 0.114897 +0.02349 0.555537 -0.00482215 +0.0235625 0.545337 -0.0823983 +0.023635 0.560063 0.0868614 +0.0237075 0.55765 -0.0241901 +0.02378 0.50099 0.0313461 +0.0238525 0.46096 0.0447312 +0.023925 0.461361 0.00432115 +0.0239975 0.553366 0.014337 +0.02407 0.416471 0.0491192 +0.0241425 0.515991 0.0537075 +0.024215 0.495788 0.108751 +0.0242875 0.533802 -0.0206121 +0.02436 0.494983 0.0738186 +0.0244325 0.491659 0.140861 +0.024505 0.535956 0.0283401 +0.0245775 0.465407 0.0873081 +0.02465 0.45494 -0.0218145 +0.0247225 0.440181 -0.0701154 +0.024795 0.508919 -0.00913913 +0.0248675 0.493024 -0.0995284 +0.02494 0.470738 0.0497746 +0.0250125 0.480746 0.0402806 +0.025085 0.345091 -0.0508309 +0.0251575 0.52931 -0.00270959 +0.02523 0.540173 -0.000417502 +0.0253025 0.526617 0.0336799 +0.025375 0.504785 0.0133851 +0.0254475 0.485785 0.0391033 +0.02552 0.499922 0.118942 +0.0255925 0.454092 -0.00529393 +0.025665 0.48017 0.0361641 +0.0257375 0.491851 -0.0496243 +0.02581 0.526262 -0.0188711 +0.0258825 0.468768 0.0926146 +0.025955 0.445358 0.0364814 +0.0260275 0.471982 0.0172428 +0.0261 0.452376 0.00172428 +0.0261725 0.423907 -0.0150844 +0.026245 0.471849 -0.0510731 +0.0263175 0.496356 0.0455286 +0.02639 0.440945 0.0676938 +0.0264625 0.437142 0.00941885 +0.026535 0.450531 0.0678775 +0.0266075 0.498394 0.0738938 +0.02668 0.471502 0.0465557 +0.0267525 0.471519 -0.0171051 +0.026825 0.386407 0.140122 +0.0268975 0.498669 -0.0469356 +0.02697 0.466334 0.134056 +0.0270425 0.456835 -0.0486307 +0.027115 0.499955 0.114525 +0.0271875 0.515991 0.12189 +0.02726 0.420337 -0.0179025 +0.0273325 0.440586 0.108672 +0.027405 0.365135 0.0700402 +0.0274775 0.462079 0.0616943 +0.02755 0.409094 0.0259979 +0.0276225 0.500673 -0.00829577 +0.027695 0.319556 0.0523673 +0.0277675 0.411169 0.0867904 +0.02784 0.48905 0.10772 +0.0279125 0.473034 0.000571977 +0.027985 0.456343 -0.0451779 +0.0280575 0.426775 0.1249 +0.02813 0.35595 -0.0148005 +0.0282025 0.422997 0.0432616 +0.028275 0.321218 0.0320684 +0.0283475 0.387112 -0.0182824 +0.02842 0.404326 0.0710255 +0.0284925 0.290298 0.0247829 +0.028565 0.402051 0.0500961 +0.0286375 0.37265 -0.0824108 +0.02871 0.504272 0.0292293 +0.0287825 0.397366 -0.000697226 +0.028855 0.372036 -0.0101871 +0.0289275 0.277856 -0.00616651 +0.029 0.282027 0.0480128 +0.0290725 0.351441 0.0393454 +0.029145 0.316717 0.109381 +0.0292175 0.440139 0.00995325 +0.02929 0.346347 0.01956 +0.0293625 0.419097 0.0194055 +0.029435 0.375581 0.0118571 +0.0295075 0.387526 0.0997079 +0.02958 0.40532 -0.0631472 +0.0296525 0.392761 -0.00559871 +0.029725 0.320116 0.0415999 +0.0297975 0.44236 0.0488311 +0.02987 0.391642 0.159761 +0.0299425 0.402752 -0.0190005 +0.030015 0.336085 0.0342436 +0.0300875 0.357862 0.0242026 +0.03016 0.440361 0.0316968 +0.0302325 0.37364 -0.0109636 +0.030305 0.307077 -0.046276 +0.0303775 0.362609 0.0797471 +0.03045 0.251311 0.104948 +0.0305225 0.353048 -0.0364313 +0.030595 0.442607 0.0132724 +0.0306675 0.344364 0.0910072 +0.03074 0.405002 0.0990149 +0.0308125 0.456414 0.0200443 +0.030885 0.408952 -0.0285196 +0.0309575 0.312129 -0.0271669 +0.03103 0.403963 0.121122 +0.0311025 0.451692 -0.0700277 +0.031175 0.318976 0.0888445 +0.0312475 0.403032 0.0280144 +0.03132 0.349354 0.0737142 +0.0313925 0.355641 0.0191425 +0.031465 0.389851 0.0824359 +0.0315375 0.322278 0.0376086 +0.03161 0.237926 -0.0239772 +0.0316825 0.423857 0.0151261 +0.031755 0.419498 -0.0476788 +0.0318275 0.368897 0.00797012 +0.0319 0.330006 0.0312793 +0.0319725 0.356384 0.0715182 +0.032045 0.310931 0.0629176 +0.0321175 0.290348 -0.0446853 +0.03219 0.339972 0.0225243 +0.0322625 0.218784 0.0194974 +0.032335 0.30681 -0.0465181 +0.0324075 0.39583 0.0701529 +0.03248 0.306555 0.118508 +0.0325525 0.295379 0.109695 +0.032625 0.374508 0.0682783 +0.0326975 0.288269 0.0192844 +0.03277 0.482929 -0.0674642 +0.0328425 0.439555 0.13654 +0.032915 0.32075 0.0331413 +0.0329875 0.299625 0.0687835 +0.03306 0.285405 0.0445893 +0.0331325 0.321005 -0.0526972 +0.033205 0.268483 0.0750753 +0.0332775 0.388657 0.0555821 +0.03335 0.334741 -0.0288035 +0.0334225 0.486954 0.00343604 +0.033495 0.313899 0.0461131 +0.0335675 0.325084 0.0146042 +0.03364 0.228733 -0.047612 +0.0337125 0.252597 0.0086423 +0.033785 0.28958 0.0569807 +0.0338575 0.352255 0.0505971 +0.03393 0.301742 0.0769248 +0.0340025 0.28414 0.0427773 +0.034075 0.242014 0.0638987 +0.0341475 0.368396 0.0203198 +0.03422 0.336089 0.00205411 +0.0342925 0.291792 0.0904394 +0.034365 0.340845 -0.0476997 +0.0344375 0.35557 0.0140323 +0.03451 0.30929 0.0389363 +0.0345825 0.336148 -0.0356547 +0.034655 0.313574 -0.0290039 +0.0347275 0.389062 -0.0163577 +0.0348 0.428871 0.0332457 +0.0348725 0.335163 0.0627381 +0.034945 0.394836 0.0224533 +0.0350175 0.322291 0.00139028 +0.03509 0.313127 -0.0273088 +0.0351625 0.318867 0.0143663 +0.035235 0.308685 0.138319 +0.0353075 0.266905 0.131831 +0.03538 0.206376 0.0708084 +0.0354525 0.277384 0.0235764 +0.035525 0.305762 -0.0176771 +0.0355975 0.273573 0.0576446 +0.03567 0.370358 0.00963178 +0.0357425 0.284307 -0.0452155 +0.035815 0.271013 0.0944599 +0.0358875 0.241187 -0.0354125 +0.03596 0.304852 -0.0461883 +0.0360325 0.295679 0.0732717 +0.036105 0.306605 0.0433201 +0.0361775 0.26721 0.0600076 +0.03625 0.291788 0.0915458 +0.0363225 0.232536 -0.0292544 +0.036395 0.364526 0.0328199 +0.0364675 0.235213 0.0105085 +0.03654 0.206564 0.00617069 +0.0366125 0.299441 -0.0229292 +0.036685 0.25858 -0.0246368 +0.0367575 0.189926 0.0286866 +0.03683 0.268412 0.026883 +0.0369025 0.336561 -0.0244489 +0.036975 0.19808 0.0727414 +0.0370475 0.409958 0.0634395 +0.03712 0.170475 0.00440047 +0.0371925 0.308497 -0.0125459 +0.037265 0.263728 0.0295633 +0.0373375 0.203879 0.0204075 +0.03741 0.470584 -0.0687042 +0.0374825 0.353792 -0.0373038 +0.037555 0.255077 -0.122595 +0.0376275 0.287784 0.0500126 +0.0377 0.196439 -0.109966 +0.0377725 0.261427 0.0245283 +0.037845 0.360914 -0.0306489 +0.0379175 0.199307 -0.0256138 +0.03799 0.284357 -0.105219 +0.0380625 0.230461 0.000926858 +0.038135 0.218341 0.0713971 +0.0382075 0.296815 0.0445684 +0.03828 0.257403 -0.0380136 +0.0383525 0.205708 0.0542043 +0.038425 0.212146 0.0841768 +0.0384975 0.219001 0.0314672 +0.03857 0.344665 0.039241 +0.0386425 0.154117 0.0596193 +0.038715 0.238469 0.000860055 +0.0387875 0.279722 -0.117869 +0.03886 0.211006 0.0682115 +0.0389325 0.190398 -0.046443 +0.039005 0.324934 0.122662 +0.0390775 0.216897 -0.0679151 +0.03915 0.251996 0.0268287 +0.0392225 0.286812 0.0226412 +0.039295 0.202209 -0.0207039 +0.0393675 0.380645 0.0429735 +0.03944 0.340406 -0.0524174 +0.0395125 0.310405 0.145045 +0.039585 0.181501 -0.0665499 +0.0396575 0.292323 0.0460964 +0.03973 0.188778 -0.0150468 +0.0398025 0.255244 -0.0631138 +0.039875 0.169377 -0.00458835 +0.0399475 0.306305 0.0267243 +0.04002 0.211423 0.0328574 +0.0400925 0.168166 -0.017819 +0.040165 0.232912 -0.0313169 +0.0402375 0.374061 0.101649 +0.04031 0.222809 0.0346193 +0.0403825 0.265799 0.0659612 +0.040455 0.209974 -0.113665 +0.0405275 0.285154 0.0777097 +0.0406 0.207645 -0.0514238 +0.0406725 0.253704 0.0176562 +0.040745 0.234883 0.0687501 +0.0408175 0.255065 -0.0519039 +0.04089 0.145834 -0.0362643 +0.0409625 0.254246 0.046443 +0.041035 0.249211 -0.0040122 +0.0411075 0.294502 -0.0232298 +0.04118 0.152906 0.0674976 +0.0412525 0.371682 0.0720066 +0.041325 0.193082 0.0552564 +0.0413975 0.261298 -0.0667879 +0.04147 0.188314 0.056509 +0.0415425 0.174704 0.0501295 +0.041615 0.159302 -0.01164 +0.0416875 0.229297 -0.0530604 +0.04176 0.161619 -0.0711174 +0.0418325 0.252848 -0.0311165 +0.041905 0.220496 0.0584002 +0.0419775 0.207156 0.0655187 +0.04205 0.254029 0.123572 +0.0421225 0.272713 -0.00197896 +0.042195 0.140289 0.156188 +0.0422675 0.0817553 0.0081914 +0.04234 0.214283 0.0668797 +0.0424125 0.176466 0.00299767 +0.042485 0.258922 -0.00877173 +0.0425575 0.163849 0.0131722 +0.04263 0.199074 0.0440674 +0.0427025 0.259357 0.0211841 +0.042775 0.407462 0.0402305 +0.0428475 0.340214 -0.00493906 +0.04292 0.290106 -0.0722279 +0.0429925 0.18649 0.0118529 +0.043065 0.165636 -0.00964014 +0.0431375 0.207699 -0.00893873 +0.04321 0.212555 0.0257056 +0.0432825 0.194301 0.116512 +0.043355 0.242832 0.0227288 +0.0434275 0.205612 0.0155937 +0.0435 0.158522 -0.0609387 +0.0435725 0.254839 -0.0452614 +0.043645 0.142414 -0.00742737 +0.0437175 0.205294 -0.0296594 +0.04379 0.215936 -0.0170758 +0.0438625 0.160288 -0.0717311 +0.043935 0.202297 -0.0158233 +0.0440075 0.270888 -0.0174934 +0.04408 0.176165 0.0293379 +0.0441525 0.221685 0.0793964 +0.044225 0.181868 -0.0822689 +0.0442975 0.219811 -0.0216934 +0.04437 0.188523 -0.0358008 +0.0444425 0.258184 0.12925 +0.044515 0.263348 0.0551228 +0.0445875 0.194815 -0.0209711 +0.04466 0.252338 0.053958 +0.0447325 0.222917 4.17233e-006 +0.044805 0.206417 -0.0231589 +0.0448775 0.161807 0.010066 +0.04495 0.153319 -0.000985303 +0.0450225 0.144013 0.00385772 +0.045095 0.244231 0.0203157 +0.0451675 0.208755 0.00616651 +0.04524 0.230086 0.018917 +0.0453125 0.174817 0.0219481 +0.045385 0.201136 0.0871035 +0.0454575 0.153516 -0.00627924 +0.04553 0.0938838 0.0998457 +0.0456025 0.264834 -0.0264195 +0.045675 0.111761 0.00264697 +0.0457475 0.215511 0.0187166 +0.04582 0.231626 0.0144122 +0.0458925 0.177885 0.0318513 +0.045965 0.0951822 0.0109928 +0.0460375 0.22341 0.018224 +0.04611 0.169848 0.0138402 +0.0461825 0.224884 -0.0292252 +0.046255 0.267377 0.0325109 +0.0463275 0.161369 0.0330787 +0.0464 0.23834 -0.067794 +0.0464725 0.0721068 0.0542002 +0.046545 0.145328 0.0314672 +0.0466175 0.189237 0.0522463 +0.04669 0.305416 -0.0681614 +0.0467625 0.153962 0.0470567 +0.046835 0.161907 0.0770083 +0.0469075 0.172721 0.0560998 +0.04698 0.0797597 -0.110592 +0.0470525 0.240035 0.0207624 +0.047125 0.143763 0.0323481 +0.0471975 0.275339 -0.00189546 +0.04727 0.192306 0.0494949 +0.0473425 0.237133 0.0192343 +0.047415 0.14555 0.0463636 +0.0474875 0.114492 0.0240648 +0.04756 0.271448 0.107874 +0.0476325 0.243475 0.0553274 +0.047705 0.192815 0.0425017 +0.0477775 0.313382 0.105453 +0.04785 0.204484 0.0245992 +0.0479225 0.155257 0.0447938 +0.047995 0.190185 -0.0238644 +0.0480675 0.242477 0.0765324 +0.04814 0.12971 0.0373122 +0.0482125 0.205645 -0.0335004 +0.048285 0.147691 -0.0301019 +0.0483575 0.0971152 0.0311248 +0.04843 0.174917 -0.0370867 +0.0485025 0.266454 0.0385522 +0.048575 0.194932 0.0339555 +0.0486475 0.149282 0.0221318 +0.04872 0.198798 -0.0102998 +0.0487925 0.12174 -0.0635313 +0.048865 0.143805 0.0252965 +0.0489375 0.153687 0.0532023 +0.04901 0.152718 -0.0088761 +0.0490825 0.125965 -0.0127589 +0.049155 0.223852 -0.00134436 +0.0492275 0.185158 -0.0361474 +0.0493 0.169093 -0.029626 +0.0493725 0.17713 0.0852832 +0.049445 0.137421 -0.11597 +0.0495175 0.174032 0.0478374 +0.04959 0.156935 0.0520417 +0.0496625 0.217364 0.0631264 +0.049735 0.172132 0.0169172 +0.0498075 0.149311 0.18702 +0.04988 0.202075 0.103432 +0.0499525 0.221752 -0.0670509 +0.050025 0.222366 -0.00933118 +0.0500975 0.169677 0.0417001 +0.05017 0.21088 -0.049879 +0.0502425 0.134486 -0.069034 +0.050315 0.159327 -0.0540791 +0.0503875 0.140715 0.0221903 +0.05046 0.156271 0.0511983 +0.0505325 0.0413578 0.000171179 +0.050605 0.122069 -0.0136064 +0.0506775 0.127952 0.0766994 +0.05075 0.17953 -0.00666334 +0.0508225 0.116629 0.0902432 +0.050895 0.144961 -0.0212509 +0.0509675 0.09785 0.0372579 +0.05104 0.0882558 0.0305153 +0.0511125 0.0935122 0.024165 +0.051185 0.130824 0.00426689 +0.0512575 0.103866 -0.0448899 +0.05133 0.109774 -0.0440632 +0.0514025 0.234678 -0.00215431 +0.051475 0.213765 0.0558577 +0.0515475 0.139204 0.0947689 +0.05162 0.0748457 0.079743 +0.0516925 0.0973783 0.0205035 +0.051765 0.236231 0.0399884 +0.0518375 0.135417 0.00578659 +0.05191 0.192519 0.00200818 +0.0519825 0.205207 -0.0257223 +0.052055 0.201428 0.00457583 +0.0521275 0.224403 0.0124708 +0.0522 0.0650761 -0.122291 +0.0522725 0.145754 0.0129468 +0.052345 0.149716 0.0220859 +0.0524175 0.171389 -0.0890992 +0.05249 0.156125 -0.0158359 +0.0525625 0.066529 -0.000475949 +0.052635 0.165164 -0.0124416 +0.0527075 0.16129 0.0180194 +0.05278 0.0996495 0.00982383 +0.0528525 0.132386 0.0517661 +0.052925 0.101591 0.0178983 +0.0529975 0.030198 -0.0336757 +0.05307 0.1873 -0.0877006 +0.0531425 0.108359 -0.0119447 +0.053215 0.0886107 -0.0676605 +0.0532875 0.0712677 -0.0207081 +0.05336 0.080841 -0.0267202 +0.0534325 0.237684 -0.00599116 +0.053505 0.187008 -0.0330203 +0.0535775 0.176745 0.110179 +0.05365 0.18841 -0.0332833 +0.0537225 0.152484 -0.0866651 +0.053795 0.174487 -0.0644874 +0.0538675 0.21703 -0.0580454 +0.05394 0.125196 -0.00500168 +0.0540125 0.0624751 -0.0824901 +0.054085 0.172186 0.0305695 +0.0541575 0.214918 -0.0134311 +0.05423 0.179877 -0.0429401 +0.0543025 0.162225 0.0451821 +0.054375 0.0489021 -0.0794298 +0.0544475 0.0915875 -0.0338678 +0.05452 0.111256 -0.0412785 +0.0545925 0.143078 0.0505846 +0.054665 0.0483718 0.0125793 +0.0547375 0.0986683 -0.031463 +0.05481 0.0476287 0.00112726 +0.0548825 -0.0323606 0.0607383 +0.054955 0.105937 0.00697647 +0.0550275 0.136811 -0.032632 +0.0551 0.125831 -0.0709754 +0.0551725 0.118759 0.0473239 +0.055245 0.115728 -0.0212467 +0.0553175 0.127964 0.00415832 +0.05539 0.131133 0.0100451 +0.0554625 0.132595 -0.0117235 +0.055535 0.0555403 0.010805 +0.0556075 0.122625 0.0253424 +0.05568 0.149587 0.00421678 +0.0557525 0.0942052 -0.00645876 +0.055825 0.0958711 0.0409779 +0.0558975 0.135279 -0.0142702 +0.05597 0.0826279 -0.00727289 +0.0560425 0.14752 0.00859638 +0.056115 0.104129 -0.0629635 +0.0561875 0.120207 0.0600285 +0.05626 0.0646085 -0.0453783 +0.0563325 0.190498 0.0376754 +0.056405 0.0642787 0.039646 +0.0564775 0.0651972 -0.0218145 +0.05655 0.151804 0.0549057 +0.0566225 0.136277 -0.00533568 +0.056695 0.206555 0.0610389 +0.0567675 0.0439004 -0.0164454 +0.05684 0.0596694 -0.0437083 +0.0569125 0.100881 0.0242318 +0.056985 0.0544924 0.0543338 +0.0570575 0.164045 -0.0422012 +0.05713 0.162626 0.0294381 +0.0572025 0.184173 -0.0345066 +0.057275 0.0291458 -0.0563962 +0.0573475 0.167118 0.0978793 +0.05742 0.112475 -0.0250334 +0.0574925 0.0367235 0.0454451 +0.057565 0.140857 0.0159194 +0.0576375 0.0416793 -0.0110847 +0.05771 0.135358 0.00235889 +0.0577825 0.0745785 0.0514822 +0.057855 0.165097 0.0530312 +0.0579275 0.206175 -0.0219439 +0.058 0.137889 0.00262191 +0.0580725 0.199449 -0.0141993 +0.058145 0.0986099 0.00187458 +0.0582175 0.0827949 -0.0417544 +0.05829 0.0847446 -0.027121 +0.0583625 0.257662 0.0518413 +0.058435 0.0429485 -0.0172637 +0.0585075 0.0404769 -0.0041458 +0.05858 0.151821 0.147049 +0.0586525 0.136891 -0.0445642 +0.058725 0.170558 0.0845192 +0.0587975 0.152351 -0.0163035 +0.05887 0.0956039 -0.0435831 +0.0589425 0.186582 0.0202656 +0.059015 0.0816384 0.00134854 +0.0590875 0.00158233 -0.00955662 +0.05916 0.190035 0.0720693 +0.0592325 0.247103 -0.0449358 +0.059305 0.105044 0.0541626 +0.0593775 0.11154 0.0279017 +0.05945 0.0740357 -0.0242694 +0.0595225 0.0743321 0.0801396 +0.059595 0.114108 -0.149508 +0.0596675 0.152426 0.00129426 +0.05974 0.225055 0.0466434 +0.0598125 0.0977206 0.080102 +0.059885 0.160283 0.0073731 +0.0599575 0.172712 0.0131138 +0.06003 0.123347 0.025668 +0.0601025 0.201345 0.0159653 +0.060175 0.166517 0.0184327 +0.0602475 0.0488937 0.0364313 +0.06032 0.0376629 -0.0345233 +0.0603925 0.0914998 0.107582 +0.060465 0.151829 -0.0350368 +0.0605375 0.0424433 -0.00551103 +0.06061 0.104626 -0.0128966 +0.0606825 0.149771 0.041483 +0.060755 0.180106 0.00220441 +0.0608275 0.0886441 -0.0695142 +0.0609 0.164099 -0.0928943 +0.0609725 0.0742403 -0.000413329 +0.061045 0.121151 -0.0420717 +0.0611175 0.0773507 -0.00797848 +0.06119 0.114024 -0.0461716 +0.0612625 0.0702406 0.00989481 +0.061335 -0.00753592 -0.0503967 +0.0614075 0.0943889 -0.00745659 +0.06148 0.0988813 -0.0588762 +0.0615525 0.127017 0.0712885 +0.061625 0.16463 0.0394498 +0.0616975 0.146322 0.017343 +0.06177 0.11326 -0.0571352 +0.0618425 0.100272 0.0534361 +0.061915 0.144786 -0.00107298 +0.0619875 -0.008158 0.0124082 +0.06206 0.0342978 -0.00536491 +0.0621325 0.138306 0.0113978 +0.062205 0.172675 0.051286 +0.0622775 0.0376504 -0.0370659 +0.06235 0.174099 0.030699 +0.0624225 0.093984 0.0169882 +0.062495 0.163949 0.0492862 +0.0625675 0.181317 0.0301019 +0.06264 0.0279351 0.0423807 +0.0627125 0.0947104 -0.059373 +0.062785 -0.0627631 0.00420424 +0.0628575 0.101737 0.0252547 +0.06293 0.0130762 -0.0573314 +0.0630025 -0.00744407 0.0334503 +0.063075 0.113648 0.0308409 +0.0631475 0.112408 -0.00189964 +0.06322 0.0298848 0.00634186 +0.0632925 0.136089 -0.0100159 +0.063365 0.109265 0.0641409 +0.0634375 0.141032 -0.0284904 +0.06351 0.170934 0.0203198 +0.0635825 0.122053 -0.0437835 +0.063655 0.187822 -0.0471319 +0.0637275 0.162847 0.160346 +0.0638 0.110567 0.014742 +0.0638725 0.0273339 0.0952323 +0.063945 0.168992 0.0364438 +0.0640175 0.0542711 -0.0882809 +0.06409 0.0097111 0.044034 +0.0641625 0.053791 -0.0391492 +0.064235 0.14843 0.0182031 +0.0643075 0.0771127 0.0704828 +0.06438 0.136966 -0.035734 +0.0644525 0.115611 -0.0395625 +0.064525 0.113377 -0.0104125 +0.0645975 0.0691342 -0.0196143 +0.06467 0.0128131 0.0632057 +0.0647425 0.19502 0.0820893 +0.064815 0.136841 0.056843 +0.0648875 0.102939 0.0435914 +0.06496 0.138519 0.0315173 +0.0650325 0.117335 0.0598365 +0.065105 0.138928 -0.05663 +0.0651775 0.0414496 0.028077 +0.06525 0.0686165 -0.0103541 +0.0653225 0.0395208 0.00547346 +0.065395 0.0929945 0.0867862 +0.0654675 0.169406 0.033968 +0.06554 0.0872413 0.0497245 +0.0656125 0.107094 -0.0369406 +0.065685 0.169974 0.00480545 +0.0657575 0.0946645 -0.0596319 +0.06583 0.0603709 0.0107716 +0.0659025 0.0742904 -0.00840014 +0.065975 0.208597 0.0239939 +0.0660475 0.12614 0.00403307 +0.06612 0.0454911 -0.000751505 +0.0661925 0.109619 0.105486 +0.066265 0.0851037 0.0456915 +0.0663375 -0.000851703 0.0222362 +0.06641 0.0429819 -0.0402389 +0.0664825 0.0671803 -0.0438169 +0.066555 0.0680738 -0.184344 +0.0666275 0.0998248 -0.0121535 +0.0667 0.037571 0.0180152 +0.0667725 0.0118738 0.0111515 +0.066845 0.0761984 -0.028553 +0.0669175 0.10501 -0.0466058 +0.06699 0.0320642 0.0157231 +0.0670625 0.0603959 -0.0373372 +0.067135 0.120353 0.0282399 +0.0672075 0.0946144 0.030152 +0.06728 0.105545 -0.0247328 +0.0673525 0.0962468 0.000914332 +0.067425 0.0787911 -0.0815132 +0.0674975 0.158609 0.0133476 +0.06757 0.0128883 -0.0913328 +0.0676425 0.0169506 -0.0328741 +0.067715 0.148764 -0.0444807 +0.0677875 0.126958 0.0249541 +0.06786 0.093913 0.0189922 +0.0679325 0.141608 0.00839597 +0.068005 0.0757683 -0.0798557 +0.0680775 0.0590348 0.101474 +0.06815 8.35043e-005 -0.0166375 +0.0682225 0.0536365 -0.00470108 +0.068295 0.188147 0.0434954 +0.0683675 0.0610722 -0.0269456 +0.06844 0.0850828 -0.00198732 +0.0685125 0.136757 0.00268454 +0.068585 0.0769039 -0.0117193 +0.0686575 0.160283 0.0312083 +0.06873 0.066838 -0.0579285 +0.0688025 0.0174182 0.05081 +0.068875 0.145195 0.00208752 +0.0689475 0.0998081 0.0820559 +0.06902 -0.0266659 0.0856715 +0.0690925 0.160187 0.0547638 +0.069165 -0.0429443 0.0173472 +0.0692375 0.149036 -0.033538 +0.06931 0.0597237 0.118195 +0.0693825 0.102898 -0.0433618 +0.069455 0.085613 -0.0157064 +0.0695275 0.0658568 -0.152864 +0.0696 0.119685 0.0848448 +0.0696725 0.147408 0.000404979 +0.069745 0.0673515 0.0140323 +0.0698175 0.0501629 0.0147838 +0.06989 0.00313544 0.00745659 +0.0699625 0.0320517 0.0175602 +0.070035 0.174796 -0.0860055 +0.0701075 0.174879 0.0229042 +0.07018 0.0240982 0.0144623 +0.0702525 0.00785322 0.00893038 +0.070325 0.0871828 -0.0262192 +0.0703975 0.09742 0.00664663 +0.07047 0.0643455 0.029864 +0.0705425 0.104797 0.0225034 +0.070615 0.126194 0.0869992 +0.0706875 0.0875336 0.0947522 +0.07076 0.102873 0.0554026 +0.0708325 0.115456 0.0282733 +0.070905 0.0435747 -0.0204033 +0.0709775 0.122729 0.0142828 +0.07105 0.0654602 0.0283693 +0.0711225 0.169226 -0.0072395 +0.071195 0.112588 0.00552773 +0.0712675 0.0218103 -0.0423097 +0.07134 0.0704869 0.00739814 +0.0714125 0.0139112 -0.0150677 +0.071485 0.0720359 -0.0196811 +0.0715575 0.0720192 0.0752715 +0.07163 -0.0180904 0.0827657 +0.0717025 -0.00507265 -0.0160697 +0.071775 0.0419673 -0.0994908 +0.0718475 0.0527723 0.0131138 +0.07192 0.125138 0.0216308 +0.0719925 -0.0125 0.00440465 +0.072065 0.0489605 0.0351495 +0.0721375 0.15754 0.0308117 +0.07221 0.128816 -0.0481088 +0.0722825 0.0721903 0.049474 +0.072355 0.00780312 -0.0839723 +0.0724275 0.170629 -0.0519624 +0.0725 0.00716434 0.043199 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/11/data-08500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/11/data-08500um.dat new file mode 100644 index 0000000..321ca6b --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/11/data-08500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 1.76255 0.170533 +0.000145 2.2543 -0.0253424 +0.0002175 2.10756 0.0966017 +0.00029 2.11648 0.0791626 +0.0003625 2.09926 0.110584 +0.000435 2.12044 0.0521461 +0.0005075 1.98389 0.0860222 +0.00058 2.05718 0.0282733 +0.0006525 1.98145 0.140886 +0.000725 2.02657 0.143959 +0.0007975 2.02952 0.158496 +0.00087 1.94939 0.0949484 +0.0009425 1.96321 0.0736182 +0.001015 2.04998 0.125635 +0.0010875 1.97254 0.00899301 +0.00116 1.9799 0.0764113 +0.0012325 1.84802 0.0704535 +0.001305 1.97611 0.0293504 +0.0013775 1.98465 0.101144 +0.00145 1.88674 0.117594 +0.0015225 1.94382 0.14383 +0.001595 1.83577 0.177944 +0.0016675 1.7464 0.0186123 +0.00174 1.84791 0.00640866 +0.0018125 1.743 0.0496995 +0.001885 1.8391 0.074925 +0.0019575 1.88035 0.123451 +0.00203 1.81355 0.135517 +0.0021025 1.79945 0.0392745 +0.002175 1.84058 0.0544465 +0.0022475 1.76727 0.039859 +0.00232 1.71058 0.0946937 +0.0023925 1.76004 0.104685 +0.002465 1.80343 0.00856298 +0.0025375 1.706 0.137571 +0.00261 1.76152 0.0725285 +0.0026825 1.68332 0.135179 +0.002755 1.7084 0.146902 +0.0028275 1.747 0.0723991 +0.0029 1.72757 0.0351955 +0.0029725 1.65981 0.119907 +0.003045 1.64961 0.0766159 +0.0031175 1.7038 0.0892662 +0.00319 1.57061 0.211064 +0.0032625 1.73193 0.0255971 +0.003335 1.57814 0.0948065 +0.0034075 1.60037 0.117802 +0.00348 1.63756 0.0468438 +0.0035525 1.52742 0.0832834 +0.003625 1.64835 0.10066 +0.0036975 1.52737 0.0868489 +0.00377 1.59919 0.0980463 +0.0038425 1.53991 0.10764 +0.003915 1.62772 0.0935539 +0.0039875 1.5846 0.0738102 +0.00406 1.56773 0.060876 +0.0041325 1.51893 0.10005 +0.004205 1.54081 0.0430111 +0.0042775 1.54127 0.0719565 +0.00435 1.52046 0.082369 +0.0044225 1.43621 0.0725035 +0.004495 1.45863 0.20734 +0.0045675 1.52302 -0.00260522 +0.00464 1.39387 0.1227 +0.0047125 1.49848 0.149917 +0.004785 1.41026 0.0793422 +0.0048575 1.48623 0.0560831 +0.00493 1.53442 -0.0228165 +0.0050025 1.44306 0.0439421 +0.005075 1.37515 0.0737142 +0.0051475 1.47328 -0.0355336 +0.00522 1.39028 0.170395 +0.0052925 1.41649 0.0821854 +0.005365 1.43914 0.145065 +0.0054375 1.32239 0.133901 +0.00551 1.41391 0.0749375 +0.0055825 1.38443 -0.0153223 +0.005655 1.35898 0.0734763 +0.0057275 1.35934 -0.0177731 +0.0058 1.276 0.223084 +0.0058725 1.34281 0.115114 +0.005945 1.26695 0.12991 +0.0060175 1.37338 0.178816 +0.00609 1.34959 0.131889 +0.0061625 1.43491 -0.040026 +0.006235 1.34305 0.0888445 +0.0063075 1.32458 0.0982216 +0.00638 1.24708 0.0516701 +0.0064525 1.27778 0.208363 +0.006525 1.35553 0.0258476 +0.0065975 1.40004 -0.00161574 +0.00667 1.33056 0.0561332 +0.0067425 1.25217 0.0938796 +0.006815 1.22593 -0.0172846 +0.0068875 1.31538 0.0556197 +0.00696 1.33639 0.0567803 +0.0070325 1.22777 -0.0191759 +0.007105 1.29637 0.116112 +0.0071775 1.30265 0.134603 +0.00725 1.17922 0.0684161 +0.0073225 1.25614 0.0866777 +0.007395 1.16861 0.0368696 +0.0074675 1.14056 0.0110137 +0.00754 1.24248 0.0794799 +0.0076125 1.06115 0.0864355 +0.007685 1.29099 0.0742445 +0.0077575 1.11657 0.105557 +0.00783 1.29435 0.100184 +0.0079025 1.24158 0.0982759 +0.007975 1.11975 0.0193471 +0.0080475 1.14848 0.0610389 +0.00812 1.13015 0.0957625 +0.0081925 1.18688 0.167702 +0.008265 1.11341 0.0945894 +0.0083375 1.09916 -0.0157565 +0.00841 1.20016 0.171948 +0.0084825 1.10314 0.000580322 +0.008555 1.13895 0.0792712 +0.0086275 1.07038 0.0150718 +0.0087 1.10966 0.0310371 +0.0087725 1.08272 -0.00948983 +0.008845 1.1079 -0.00699316 +0.0089175 1.14807 0.0790374 +0.00899 1.19121 0.177597 +0.0090625 1.16016 0.0961842 +0.009135 1.07724 0.12009 +0.0092075 1.11739 0.106284 +0.00928 1.05733 0.127221 +0.0093525 1.12717 0.0881556 +0.009425 1.03046 0.0664038 +0.0094975 1.1717 0.0233927 +0.00957 1.10871 0.112179 +0.0096425 1.07475 0.0256889 +0.009715 1.08275 0.041195 +0.0097875 1.04179 0.0551604 +0.00986 0.978567 0.0986934 +0.0099325 1.10039 0.102313 +0.010005 1.00891 0.0805153 +0.0100775 0.930826 0.0521878 +0.01015 1.01086 0.0225243 +0.0102225 1.10702 0.080198 +0.010295 1.10799 0.0209336 +0.0103675 0.970585 0.136565 +0.01044 0.998795 0.0996662 +0.0105125 0.95654 -0.0109887 +0.010585 0.961391 -0.00212927 +0.0106575 1.07293 0.0280228 +0.01073 0.984621 0.063953 +0.0108025 0.962381 0.051453 +0.010875 0.987335 0.0125585 +0.0109475 0.975069 0.0927983 +0.01102 0.986784 0.0538912 +0.0110925 1.02993 0.0786867 +0.011165 0.898983 0.148501 +0.0112375 0.920463 0.0714973 +0.01131 0.950958 -0.0751797 +0.0113825 1.02583 0.0674559 +0.011455 0.988888 0.116592 +0.0115275 0.914264 0.00563628 +0.0116 0.970155 0.000204574 +0.0116725 0.920246 0.0510647 +0.011745 0.984942 0.111728 +0.0118175 0.818939 0.105632 +0.01189 0.944386 0.0921303 +0.0119625 0.930221 0.103833 +0.012035 0.850812 0.132031 +0.0121075 0.899538 0.0289621 +0.01218 0.897229 0.120608 +0.0122525 0.942378 0.0726079 +0.012325 0.9555 0.0663662 +0.0123975 0.877978 0.0200526 +0.01247 0.942863 0.0733176 +0.0125425 0.735547 -0.0655562 +0.012615 0.940119 0.0432073 +0.0126875 0.8845 0.0681364 +0.01276 0.869545 -0.000154475 +0.0128325 0.81739 0.0794758 +0.012905 0.810297 0.122954 +0.0129775 0.97185 0.0545884 +0.01305 0.811253 0.0413787 +0.0131225 0.890892 0.0110012 +0.013195 0.867716 0.0466768 +0.0132675 0.908573 0.0226412 +0.01334 0.817482 0.0719941 +0.0134125 0.885047 0.0422095 +0.013485 0.837627 0.0125125 +0.0135575 0.838103 0.129843 +0.01363 0.922037 0.0537159 +0.0137025 0.79745 0.0583376 +0.013775 0.851133 0.0725995 +0.0138475 0.774955 0.00181613 +0.01392 0.825281 0.084657 +0.0139925 0.701604 -0.0338803 +0.014065 0.842996 -0.0309286 +0.0141375 0.674642 -0.0488812 +0.01421 0.806874 0.034661 +0.0142825 0.811291 0.247287 +0.014355 0.780826 0.0269874 +0.0144275 0.837961 0.119222 +0.0145 0.739756 -0.0368571 +0.0145725 0.829064 0.0888946 +0.014645 0.778204 0.0853124 +0.0147175 0.739355 0.0962635 +0.01479 0.773974 0.125697 +0.0148625 0.731953 0.0934203 +0.014935 0.711115 0.0521753 +0.0150075 0.780124 0.0569515 +0.01508 0.770872 0.00766117 +0.0151525 0.775406 0.104113 +0.015225 0.666814 0.09618 +0.0152975 0.895455 0.0409111 +0.01537 0.719925 0.082916 +0.0154425 0.807241 0.0645417 +0.015515 0.814743 0.0735764 +0.0155875 0.737681 0.034636 +0.01566 0.642323 0.0486098 +0.0157325 0.773536 0.183029 +0.015805 0.736992 0.0293045 +0.0158775 0.71962 0.0722822 +0.01595 0.691597 0.115406 +0.0160225 0.61271 0.00530228 +0.016095 0.667173 0.08492 +0.0161675 0.734282 0.0585672 +0.01624 0.747668 0.0916167 +0.0163125 0.613269 0.0168504 +0.016385 0.705412 0.0168128 +0.0164575 0.727068 0.185384 +0.01653 0.722066 0.0721277 +0.0166025 0.733163 0.120671 +0.016675 0.681047 -0.0671595 +0.0167475 0.750106 0.113577 +0.01682 0.655566 0.0878175 +0.0168925 0.711023 0.0603917 +0.016965 0.68708 0.0838428 +0.0170375 0.68556 0.0209544 +0.01711 0.74525 0.0966435 +0.0171825 0.714292 -0.0329159 +0.017255 0.739009 0.00602456 +0.0173275 0.736286 0.0544966 +0.0174 0.595275 0.0302397 +0.0174725 0.740345 0.0932492 +0.017545 0.616446 0.0466935 +0.0176175 0.693973 -0.0723949 +0.01769 0.662092 0.151996 +0.0177625 0.666271 0.142652 +0.017835 0.626371 -0.040314 +0.0179075 0.735664 0.070203 +0.01798 0.626174 -0.0336215 +0.0180525 0.602235 0.00571143 +0.018125 0.751909 -0.00738562 +0.0181975 0.692048 0.125004 +0.01827 0.668526 0.0442052 +0.0183425 0.629059 0.0856631 +0.018415 0.620338 0.0159945 +0.0184875 0.591872 0.0267703 +0.01856 0.577018 0.0151303 +0.0186325 0.655354 -0.00183701 +0.018705 0.703433 0.0335839 +0.0187775 0.605495 0.0329952 +0.01885 0.614618 0.00881765 +0.0189225 0.531318 -0.0433451 +0.018995 0.660689 0.126829 +0.0190675 0.678917 0.0561499 +0.01914 0.631673 0.00824567 +0.0192125 0.5891 0.0625544 +0.019285 0.668547 0.0194514 +0.0193575 0.674926 0.0416918 +0.01943 0.506359 0.0866234 +0.0195025 0.602719 0.0316717 +0.019575 0.634174 0.0336841 +0.0196475 0.598861 0.00117318 +0.01972 0.566463 -0.0640532 +0.0197925 0.578149 -0.0296886 +0.019865 0.605779 -0.00804109 +0.0199375 0.74067 0.0933452 +0.02001 0.621795 -0.0955747 +0.0200825 0.513875 0.05453 +0.020155 0.689334 -0.0312835 +0.0202275 0.486967 0.00312292 +0.0203 0.545166 0.0250919 +0.0203725 0.570216 0.0442427 +0.020445 0.608681 0.0177355 +0.0205175 0.553479 0.0633978 +0.02059 0.550531 0.0268872 +0.0206625 0.61595 -0.0182115 +0.020735 0.653729 0.0253674 +0.0208075 0.529251 -0.109624 +0.02088 0.634236 -0.0443972 +0.0209525 0.503483 0.0780145 +0.021025 0.568267 0.0770083 +0.0210975 0.464785 0.137433 +0.02117 0.542711 0.0756306 +0.0212425 0.630157 -0.0158734 +0.021315 0.551972 0.0553483 +0.0213875 0.562459 0.0372579 +0.02146 0.507545 0.0454493 +0.0215325 0.595926 0.0506138 +0.021605 0.58928 0.0228958 +0.0216775 0.451905 0.0975536 +0.02175 0.584299 0.019418 +0.0218225 0.414242 0.0666835 +0.021895 0.54497 0.0299057 +0.0219675 0.482386 0.0167794 +0.02204 0.607742 0.0744532 +0.0221125 0.531393 0.0685163 +0.022185 0.648828 0.0972822 +0.0222575 0.477151 0.106906 +0.02233 0.418813 0.0182741 +0.0224025 0.504497 0.0143245 +0.022475 0.486595 0.0943096 +0.0225475 0.474621 0.0127797 +0.02262 0.568492 0.00770292 +0.0226925 0.521193 -0.0665207 +0.022765 0.637192 -0.00412075 +0.0228375 0.518905 -0.0672137 +0.02291 0.554836 0.0146669 +0.0229825 0.450857 0.0308284 +0.023055 0.693647 0.0438461 +0.0231275 0.516609 0.117231 +0.0232 0.486436 0.0715683 +0.0232725 0.562522 0.0518288 +0.023345 0.533251 0.0819223 +0.0234175 0.505349 -0.00867151 +0.02349 0.45175 0.031154 +0.0235625 0.494143 0.0133392 +0.023635 0.430888 0.019919 +0.0237075 0.476416 0.0691008 +0.02378 0.462847 0.0701488 +0.0238525 0.519774 -0.0279017 +0.023925 0.459332 0.102944 +0.0239975 0.574934 -0.0125668 +0.02407 0.451688 0.0486182 +0.0241425 0.420529 -0.00154059 +0.024215 0.560034 0.0307157 +0.0242875 0.454581 -0.0134645 +0.02436 0.470392 0.0705496 +0.0244325 0.471235 0.0346611 +0.024505 0.397145 0.0125292 +0.0245775 0.416797 0.0327364 +0.02465 0.481238 0.0801855 +0.0247225 0.499421 0.0155854 +0.024795 0.429051 0.0314212 +0.0248675 0.490056 0.0138193 +0.02494 0.469139 -0.00180361 +0.0250125 0.446828 0.0262693 +0.025085 0.382336 0.0586925 +0.0251575 0.4828 0.0567636 +0.02523 0.457165 0.0307198 +0.0253025 0.389701 0.0861099 +0.025375 0.384883 0.100301 +0.0254475 0.454623 -0.0573231 +0.02552 0.461227 -0.0578742 +0.0255925 0.435973 0.00720192 +0.025665 0.431885 -0.00440047 +0.0257375 0.385973 0.078336 +0.02581 0.454355 0.0751713 +0.0258825 0.369281 -0.0401178 +0.025955 0.451779 0.168926 +0.0260275 0.417523 -0.0846653 +0.0261 0.456288 0.0891159 +0.0261725 0.474195 0.0885105 +0.026245 0.517331 0.0578324 +0.0263175 0.494811 -0.0791334 +0.02639 0.436632 -0.0162742 +0.0264625 0.412021 0.0717645 +0.026535 0.484741 -0.0134603 +0.0266075 0.291822 0.000901809 +0.02668 0.481025 0.0115648 +0.0267525 0.439576 0.139926 +0.026825 0.375585 -0.0187292 +0.0268975 0.476395 0.0235638 +0.02697 0.336127 0.0599283 +0.0270425 0.442135 -0.0097445 +0.027115 0.353391 0.0569265 +0.0271875 0.43161 0.035901 +0.02726 0.42832 0.00176187 +0.0273325 0.327977 -0.0194473 +0.027405 0.440064 0.0260188 +0.0274775 0.480762 0.0647588 +0.02755 0.383426 -0.0650385 +0.0276225 0.353666 0.0259102 +0.027695 0.388198 -0.00650051 +0.0277675 0.453408 0.0689965 +0.02784 0.407524 0.0297596 +0.0279125 0.408368 -0.0294464 +0.027985 0.357704 0.0302314 +0.0280575 0.411996 0.00554025 +0.02813 0.391567 0.0396711 +0.0282025 0.412801 0.00890534 +0.028275 0.368425 0.0498874 +0.0283475 0.502619 0.00316885 +0.02842 0.295512 0.0968981 +0.0284925 0.418855 -0.00172846 +0.028565 0.352827 -0.042055 +0.0286375 0.370546 -0.00684704 +0.02871 0.309177 -0.00068053 +0.0287825 0.35033 0.025238 +0.028855 0.396085 0.0522463 +0.0289275 0.414342 0.122658 +0.029 0.357466 0.027622 +0.0290725 0.264371 -0.0551228 +0.029145 0.451637 0.0938712 +0.0292175 0.307674 -0.0335004 +0.02929 0.303265 0.0445016 +0.0293625 0.360459 -0.0050977 +0.029435 0.365565 -0.0134979 +0.0295075 0.395287 0.0158233 +0.02958 0.439476 0.0527389 +0.0296525 0.267978 0.0636399 +0.029725 0.352694 0.00645041 +0.0297975 0.263607 0.0343145 +0.02987 0.434019 0.0420467 +0.0299425 0.312413 -0.0405645 +0.030015 0.313774 0.0904143 +0.0300875 0.383643 0.0224408 +0.03016 0.402998 0.0809454 +0.0302325 0.384891 -0.00892203 +0.030305 0.338941 -0.0766451 +0.0303775 0.337997 0.033062 +0.03045 0.363949 -0.0306447 +0.0305225 0.378658 -0.0754009 +0.030595 0.449571 -0.0405186 +0.0306675 0.307925 0.0084085 +0.03074 0.26577 0.0416626 +0.0308125 0.403408 0.00120659 +0.030885 0.339225 -0.0330119 +0.0309575 0.283722 -0.00593271 +0.03103 0.34818 0.0178733 +0.0311025 0.364083 -0.000354879 +0.031175 0.269644 0.122228 +0.0312475 0.334223 0.0830621 +0.03132 0.41076 0.0358259 +0.0313925 0.378107 -0.0784445 +0.031465 0.302693 0.082486 +0.0315375 0.273481 0.00916836 +0.03161 0.30524 0.0242903 +0.0316825 0.45193 -0.0356547 +0.031755 0.395533 0.00333584 +0.0318275 0.341575 0.119556 +0.0319 0.35266 0.0037617 +0.0319725 0.304046 -0.0191634 +0.032045 0.350932 0.0505053 +0.0321175 0.26994 0.0251587 +0.03219 0.295466 -0.0315173 +0.0322625 0.253858 -0.0614772 +0.032335 0.401959 0.036544 +0.0324075 0.272404 0.00522296 +0.03248 0.307273 0.0799768 +0.0325525 0.31921 0.0623749 +0.032625 0.281906 0.00290164 +0.0326975 0.333889 0.0831373 +0.03277 0.279952 0.106534 +0.0328425 0.3291 0.0775218 +0.032915 0.357841 0.039358 +0.0329875 0.230466 0.0459795 +0.03306 0.37566 0.0598114 +0.0331325 0.288064 0.0209127 +0.033205 0.36693 -0.00445893 +0.0332775 0.350744 0.027956 +0.03335 0.299362 0.0380345 +0.0334225 0.36645 -0.0233593 +0.033495 0.336365 -0.0309829 +0.0335675 0.25828 0.0528224 +0.03364 0.25289 0.161978 +0.0337125 0.34783 -0.0093103 +0.033785 0.257152 0.0381973 +0.0338575 0.390135 0.00733134 +0.03393 0.400318 -0.115965 +0.0340025 0.302593 -0.0103248 +0.034075 0.317406 0.0688503 +0.0341475 0.425832 -0.0811499 +0.03422 0.280566 -0.0316175 +0.0342925 0.278733 0.0968689 +0.034365 0.368212 -8.34465e-006 +0.0344375 0.190582 0.0208835 +0.03451 0.308772 -0.00201654 +0.0345825 0.34722 0.115824 +0.034655 0.209085 0.0946812 +0.0347275 0.266329 -0.0139947 +0.0348 0.283914 0.00574066 +0.0348725 0.376199 0.0641075 +0.034945 0.361758 0.0629343 +0.0350175 0.205653 -0.0144665 +0.03509 0.389964 -0.00816635 +0.0351625 0.303474 0.104685 +0.035235 0.17986 0.0492736 +0.0353075 0.24211 0.0521419 +0.03538 0.346477 -0.0150217 +0.0354525 0.302936 0.0112809 +0.035525 0.331175 0.100388 +0.0355975 0.306894 -0.0140364 +0.03567 0.34236 0.00095608 +0.0357425 0.264513 -0.0178399 +0.035815 0.280946 -0.0500043 +0.0358875 0.22991 -0.00535656 +0.03596 0.279209 -0.00650469 +0.0360325 0.320571 0.0200526 +0.036105 0.261549 0.0622997 +0.0361775 0.241496 0.0129133 +0.03625 0.278533 0.00327739 +0.0363225 0.293049 0.0742695 +0.036395 0.265097 0.0169965 +0.0364675 0.240628 0.0539163 +0.03654 0.308096 0.0723573 +0.0366125 0.284515 -0.0596402 +0.036685 0.226817 -0.0991234 +0.0367575 0.26731 -0.0277597 +0.03683 0.257052 0.0765115 +0.0369025 0.259319 0.00531898 +0.036975 0.176391 0.0534737 +0.0370475 0.247036 0.00278474 +0.03712 0.237513 -0.0524675 +0.0371925 0.318584 -0.0273297 +0.037265 0.271468 0.0267661 +0.0373375 0.297107 -0.00686791 +0.03741 0.38983 0.0838804 +0.0374825 0.292022 0.0472988 +0.037555 0.297558 -0.0224073 +0.0376275 0.315135 0.072516 +0.0377 0.191817 0.0211966 +0.0377725 0.228416 -0.0365899 +0.037845 0.256977 -0.0552481 +0.0379175 0.253157 0.0107966 +0.03799 0.351675 0.0715724 +0.0380625 0.201666 0.0238853 +0.038135 0.329309 0.0489772 +0.0382075 0.155048 0.00566551 +0.03828 0.210463 0.0116567 +0.0383525 0.226483 0.022399 +0.038425 0.2249 -0.0590056 +0.0384975 0.208551 0.00414998 +0.03857 0.193162 -0.0196602 +0.0386425 0.0985473 0.0928442 +0.038715 0.263014 0.0572813 +0.0387875 0.334637 -0.0404936 +0.03886 0.231877 -0.0322604 +0.0389325 0.247362 0.0621661 +0.039005 0.294506 0.0605671 +0.0390775 0.244535 0.00718939 +0.03915 0.248472 0.0126086 +0.0392225 0.22093 0.0245116 +0.039295 0.205098 -0.0479209 +0.0393675 0.227201 -0.0447688 +0.03944 0.162688 -0.0211757 +0.0395125 0.236807 0.0633936 +0.039585 0.161089 0.0420049 +0.0396575 0.240707 0.0544924 +0.03973 0.248143 0.0101453 +0.0398025 0.180925 0.105958 +0.039875 0.162876 0.00126921 +0.0399475 0.170512 -0.011928 +0.04002 0.190995 -0.0191216 +0.0400925 0.279489 -0.0119322 +0.040165 0.183079 0.0691843 +0.0402375 0.206689 -0.110826 +0.04031 0.185617 0.0176353 +0.0403825 0.280086 -0.00856715 +0.040455 0.206221 0.12351 +0.0405275 0.208384 -0.0498414 +0.0406 0.320166 0.00427523 +0.0406725 0.283159 0.0111306 +0.040745 0.330228 -0.0736433 +0.0408175 0.231092 -0.00592436 +0.04089 0.207862 0.035041 +0.0409625 0.216007 0.0699108 +0.041035 0.27991 -0.0698315 +0.0411075 0.284202 -0.0255428 +0.04118 0.182428 -0.0667378 +0.0412525 0.314004 -0.0164162 +0.041325 0.293872 -0.048614 +0.0413975 0.208722 -0.032728 +0.04147 0.220487 -0.0302648 +0.0415425 0.20256 -0.0187375 +0.041615 0.300714 0.16794 +0.0416875 0.260872 0.00383267 +0.04176 0.257616 -0.00270959 +0.0418325 0.0629176 0.0331205 +0.041905 0.214504 0.0597404 +0.0419775 0.165782 0.029889 +0.04205 0.217105 0.00360304 +0.0421225 0.18563 0.031129 +0.042195 0.257946 -0.0482174 +0.0422675 0.262079 -0.0532107 +0.04234 0.131455 0.00106464 +0.0424125 0.101587 0.0764322 +0.042485 0.23983 0.0179568 +0.0425575 0.237342 0.0382599 +0.04263 0.125326 0.036139 +0.0427025 0.16999 -0.0279518 +0.042775 0.233701 0.0463929 +0.0428475 0.230065 0.0753884 +0.04292 0.237951 -0.00371577 +0.0429925 0.0641325 -0.0179693 +0.043065 0.164417 0.0302439 +0.0431375 0.133847 -0.0664038 +0.04321 0.225894 0.134724 +0.0432825 0.269398 -0.0542169 +0.043355 0.189479 0.042531 +0.0434275 0.210855 -0.107611 +0.0435 0.339321 -0.0185663 +0.0435725 0.114174 0.023998 +0.043645 0.319623 0.0167836 +0.0437175 0.217189 0.0344231 +0.04379 0.213774 0.00555696 +0.0438625 0.1935 0.00974868 +0.043935 0.178161 -0.0324525 +0.0440075 0.239475 -0.0197479 +0.04408 0.143491 0.000338175 +0.0441525 0.103282 -0.0143663 +0.044225 0.163565 -0.0583627 +0.0442975 0.149453 -0.0478249 +0.04437 0.155937 0.0710798 +0.0444425 0.185567 0.0639655 +0.044515 0.15539 0.0544757 +0.0445875 0.264091 -0.0376044 +0.04466 0.194347 -0.00994491 +0.0447325 0.224929 0.00734387 +0.044805 0.151921 0.0669048 +0.0448775 0.188248 0.0402264 +0.04495 0.192118 0.0763403 +0.0450225 0.238544 0.0450443 +0.045095 0.197775 0.00212926 +0.0451675 0.267419 0.021969 +0.04524 0.287229 -0.0114437 +0.0453125 0.223038 0.0205787 +0.045385 0.223088 0.0489438 +0.0454575 0.18907 0.0594148 +0.04553 0.193433 -0.0145625 +0.0456025 0.151741 0.0180403 +0.045675 0.263937 -0.00708919 +0.0457475 0.160133 0.0407023 +0.04582 0.257156 0.00947731 +0.0458925 0.177985 0.100518 +0.045965 0.216442 0.0180779 +0.0460375 0.144798 -0.0469398 +0.04611 0.26316 0.0493446 +0.0461825 0.30947 -0.0434996 +0.046255 0.0677899 -0.0769499 +0.0463275 0.22819 -0.0715265 +0.0464 0.0935581 0.067364 +0.0464725 0.226387 0.0155895 +0.046545 0.229159 0.107749 +0.0466175 0.152501 0.00766117 +0.04669 0.203545 0.00090598 +0.0467625 0.173589 0.0283484 +0.046835 0.213999 0.0263778 +0.0469075 0.14881 -0.029889 +0.04698 0.217661 0.056129 +0.0470525 0.199637 0.0101578 +0.047125 0.145341 -0.0591684 +0.0471975 0.124938 -0.00982801 +0.04727 0.239763 -0.0519081 +0.0473425 0.228224 -0.0720526 +0.047415 0.146472 0.0243613 +0.0474875 0.145646 0.0674016 +0.04756 0.151315 0.118036 +0.0476325 0.186244 0.0751922 +0.047705 0.224842 -0.0823148 +0.0477775 0.273631 0.115231 +0.04785 0.148305 0.0373122 +0.0479225 0.123293 0.0338469 +0.047995 0.153858 0.0825068 +0.0480675 0.176545 0.0318429 +0.04814 0.132524 0.051787 +0.0482125 0.0794632 -0.0129175 +0.048285 0.225005 0.00253007 +0.0483575 0.141542 -0.0282315 +0.04843 0.0779644 0.00434203 +0.0485025 0.268262 -0.0408735 +0.048575 0.183705 -0.00168671 +0.0486475 0.205804 0.0343855 +0.04872 0.178541 0.0293421 +0.0487925 0.292978 0.0211173 +0.048865 0.10243 -0.0282774 +0.0489375 0.140556 -0.000705578 +0.04901 0.181334 0.0428065 +0.0490825 0.157256 0.0301646 +0.049155 0.113882 0.0626421 +0.0492275 0.0994992 -0.0162408 +0.0493 0.264459 0.0885857 +0.0493725 0.128127 0.0603291 +0.049445 0.0632307 0.0376796 +0.0495175 0.218358 0.0176144 +0.04959 0.173923 -0.00372413 +0.0496625 0.116128 -0.00382432 +0.049735 0.141091 -0.0353625 +0.0498075 0.170662 -0.00342352 +0.04988 0.16918 -0.00337759 +0.0499525 0.186511 0.0436666 +0.050025 0.144669 0.0151303 +0.0500975 0.0178858 0.0505804 +0.05017 0.00808284 -0.0904268 +0.0502425 0.170487 -0.0189964 +0.050315 0.119539 0.0892077 +0.0503875 0.209774 0.0206664 +0.05046 0.140786 -0.0822146 +0.0505325 0.116771 0.0393914 +0.050605 0.122771 0.0480963 +0.0506775 0.138987 0.0177898 +0.05075 0.108471 0.0728834 +0.0508225 0.0998958 0.0622788 +0.050895 0.128795 0.0187918 +0.0509675 0.145971 0.115085 +0.05104 0.119197 -0.0085421 +0.0511125 0.127852 -0.0594649 +0.051185 0.184791 -0.0395667 +0.0512575 0.162851 0.0432491 +0.05133 0.243045 0.0326612 +0.0514025 0.216275 0.0857967 +0.051475 0.106092 -0.0905145 +0.0515475 0.102392 0.134599 +0.05162 0.189755 0.0462467 +0.0516925 0.0310998 -0.101486 +0.051765 0.195884 0.0428692 +0.0518375 0.118779 -0.00936459 +0.05191 0.173385 0.00629594 +0.0519825 0.168479 -0.0684245 +0.052055 0.118654 0.0446227 +0.0521275 0.0786658 0.0306363 +0.0522 0.192957 -0.145203 +0.0522725 0.174984 0.0089596 +0.052345 0.142577 0.0750168 +0.0524175 0.143395 -0.0271168 +0.05249 0.197312 0.0834295 +0.0525625 0.0352623 -0.0895668 +0.052635 0.0969107 0.0847488 +0.0527075 0.111206 0.105394 +0.05278 0.106989 0.0400218 +0.0528525 0.22986 0.0262734 +0.052925 0.152046 -0.0718104 +0.0529975 0.0709963 0.00747747 +0.05307 0.152042 0.00703909 +0.0531425 0.191784 0.0686499 +0.053215 0.097253 0.0634771 +0.0532875 0.0903267 -0.0735096 +0.05336 0.194982 0.00387025 +0.0534325 0.209653 0.0173138 +0.053505 0.139028 0.0177647 +0.0535775 0.206676 0.0909112 +0.05365 0.151006 0.0185663 +0.0537225 0.244995 0.0702907 +0.053795 0.184649 -0.0166416 +0.0538675 0.075426 0.0399091 +0.05394 0.234348 0.049641 +0.0540125 0.17098 0.0400427 +0.054085 0.105578 0.00675936 +0.0541575 0.169903 0.039312 +0.05423 0.111373 0.0533401 +0.0543025 0.113723 -0.0277472 +0.054375 0.169372 0.0179985 +0.0544475 0.208171 0.00361557 +0.05452 0.139454 -0.011594 +0.0545925 0.144969 0.0212008 +0.054665 0.152334 -0.0285154 +0.0547375 0.186444 0.00109803 +0.05481 0.105181 -0.012475 +0.0548825 0.241696 -0.0248205 +0.054955 0.114989 -0.029651 +0.0550275 0.0152263 0.0526429 +0.0551 0.0900177 -0.0360597 +0.0551725 0.0748206 -0.0894123 +0.055245 0.16149 -0.0746954 +0.0553175 0.157678 0.0144581 +0.05539 0.115861 -0.0248122 +0.0554625 0.130503 0.0082916 +0.055535 0.123305 -0.00166584 +0.0556075 0.17637 0.027146 +0.05568 0.110797 -0.0134436 +0.0557525 0.0360472 -0.03912 +0.055825 0.179551 0.0487309 +0.0558975 0.044464 0.0081079 +0.05597 0.0737268 -0.0214053 +0.0560425 0.177459 -0.049641 +0.056115 0.066625 0.102213 +0.0561875 0.143525 -0.0791752 +0.05626 0.153829 0.0390156 +0.0563325 0.111456 0.00392452 +0.056405 0.134469 0.0336632 +0.0564775 0.120353 -0.0460129 +0.05655 0.157482 0.0472905 +0.0566225 0.19155 0.00713094 +0.056695 0.133576 0.107624 +0.0567675 0.0755387 -0.0221068 +0.05684 0.282052 0.0344565 +0.0569125 0.160772 0.054196 +0.056985 0.0531648 -0.0096944 +0.0570575 0.0789205 -0.0491609 +0.05713 0.0359678 0.0415331 +0.0572025 0.117598 -0.0271377 +0.057275 0.177505 0.0743614 +0.0573475 0.163181 -0.0043295 +0.05742 0.144865 0.0346235 +0.0574925 0.112028 0.0322813 +0.057565 0.137233 -0.0292586 +0.0576375 0.190536 -0.0115189 +0.05771 0.207653 -0.0353792 +0.0577825 0.159022 0.0102956 +0.057855 0.0294131 0.0904394 +0.0579275 0.0679068 -0.0418129 +0.058 0.126603 0.0271293 +0.0580725 0.133484 -0.0413244 +0.058145 0.0642703 -0.0319849 +0.0582175 0.184595 -0.0659654 +0.05829 0.0686917 0.0465473 +0.0583625 0.0955705 0.0933118 +0.058435 0.0919674 -0.0799768 +0.0585075 0.129593 -0.0288954 +0.05858 0.152514 0.0144873 +0.0586525 0.207436 -0.0917921 +0.058725 0.100823 -0.025238 +0.0587975 0.127923 0.0340557 +0.05887 0.0322813 -0.0692637 +0.0589425 0.221648 -0.0422763 +0.059015 0.167752 -0.0608635 +0.0590875 0.138916 0.022875 +0.05916 0.0526846 -0.0573857 +0.0592325 0.0384937 0.0079242 +0.059305 0.0739731 0.0335213 +0.0593775 0.100443 0.0695851 +0.05945 0.162396 0.0889489 +0.0595225 0.116274 0.143103 +0.059595 0.208037 0.0319473 +0.0596675 0.137972 -0.0485764 +0.05974 0.0323272 -0.0540165 +0.0598125 0.178336 -0.0759145 +0.059885 0.0954828 -0.0132307 +0.0599575 0.0732132 0.0628341 +0.06003 0.065694 -0.0954035 +0.0601025 0.108968 0.0599784 +0.060175 0.0431864 -0.0846236 +0.0602475 0.0332082 0.0458125 +0.06032 0.0813337 0.0736558 +0.0603925 0.0848532 0.0750252 +0.060465 -0.0306614 -0.0234135 +0.0605375 0.107891 0.046564 +0.06061 0.138874 0.0432741 +0.0606825 0.0677314 0.0111891 +0.060755 0.0911074 -0.0810915 +0.0608275 0.0352122 0.0853125 +0.0609 0.0635105 0.0647588 +0.0609725 0.148564 0.0792712 +0.061045 0.0344314 0.0106839 +0.0611175 0.100192 0.0344481 +0.06119 0.0950611 0.0473197 +0.0612625 0.123731 0.0301729 +0.061335 0.134031 0.0182365 +0.0614075 0.125773 0.0205578 +0.06148 0.0812794 -0.0763528 +0.0615525 0.151837 -0.00319389 +0.061625 0.176741 -0.085613 +0.0616975 0.166082 0.0160446 +0.06177 0.0507182 -0.0159444 +0.0618425 0.104138 -0.0243738 +0.061915 0.11389 0.103269 +0.0619875 0.0810247 0.044297 +0.06206 0.0331288 0.0241859 +0.0621325 0.171798 0.0151052 +0.062205 0.0613395 0.0557449 +0.0622775 0.0620283 -0.00125251 +0.06235 0.172445 0.0151178 +0.0624225 0.113815 0.0381263 +0.062495 0.101407 -0.0574149 +0.0625675 0.104325 -0.00572396 +0.06264 0.0912911 -0.0738938 +0.0627125 0.0357674 -0.0285196 +0.062785 0.0683117 0.0346109 +0.0628575 0.0367402 0.0244782 +0.06293 0.0646001 0.0305528 +0.0630025 0.0954953 -0.016913 +0.063075 0.0485472 0.00992403 +0.0631475 0.138481 -0.0791543 +0.06322 0.112642 0.0615065 +0.0632925 0.118479 -0.0649634 +0.063365 0.179321 0.000542751 +0.0634375 0.0790583 0.0240941 +0.06351 -0.0156229 -0.0641701 +0.0635825 0.055891 -0.0269414 +0.063655 0.0312459 0.130031 +0.0637275 0.14226 0.0595066 +0.0638 0.115936 0.0287576 +0.0638725 0.153708 0.0328407 +0.063945 0.121698 -0.0857801 +0.0640175 0.0683619 -0.0143997 +0.06409 0.118734 -0.0753467 +0.0641625 0.0334378 -0.0408651 +0.064235 0.103545 -0.0780437 +0.0643075 0.136072 -0.0332499 +0.06438 0.167677 0.0205077 +0.0644525 0.0840683 0.0818973 +0.064525 0.0290122 0.00690549 +0.0645975 0.0293963 0.104484 +0.06467 0.0614564 0.00290999 +0.0647425 0.0772797 -0.0571853 +0.064815 0.179534 0.000713928 +0.0648875 0.0394749 0.0173973 +0.06496 0.0854544 0.0870409 +0.0650325 0.089262 -0.0131973 +0.065105 0.131012 -0.0241817 +0.0651775 0.0794591 -0.0875586 +0.06525 0.0707082 -0.0415123 +0.0653225 0.0174182 -0.0807408 +0.065395 0.155232 -0.0295717 +0.0654675 0.134628 0.0954285 +0.06554 0.112496 -0.0664706 +0.0656125 0.138978 -0.092339 +0.065685 0.105353 0.0398047 +0.0657575 0.0957584 0.0142869 +0.06583 0.106684 0.0599951 +0.0659025 0.116312 -0.0422346 +0.065975 0.0146627 -0.0123539 +0.0660475 -0.0244656 -0.000375751 +0.06612 0.151182 0.0274174 +0.0661925 0.149967 -0.0369072 +0.066265 0.143784 -0.0321894 +0.0663375 -0.00928943 -0.0004676 +0.06641 -0.0435956 0.147717 +0.0664825 0.0173973 -0.0580579 +0.066555 0.0280729 -0.0385856 +0.0666275 0.11311 0.0590307 +0.0667 0.171297 0.0943305 +0.0667725 0.0952532 0.0593772 +0.066845 0.102793 0.0424516 +0.0669175 0.108183 -0.0591392 +0.06699 0.173719 -0.0139446 +0.0670625 0.0152889 0.0618739 +0.067135 0.134582 -0.0988896 +0.0672075 0.185409 0.0548181 +0.06728 0.0387734 0.00729377 +0.0673525 0.0331205 0.0100242 +0.067425 -0.0516534 0.0240732 +0.0674975 0.10395 -0.165373 +0.06757 0.079434 0.0402431 +0.0676425 0.0561833 -0.0590474 +0.067715 0.0593981 0.07662 +0.0677875 0.10114 -0.00167419 +0.06786 0.130858 -0.000584506 +0.0679325 0.195679 0.00498915 +0.068005 0.0892119 0.0710881 +0.0680775 0.112876 -0.0463887 +0.06815 -0.0290331 0.0447354 +0.0682225 0.104209 0.0212926 +0.068295 0.108818 0.0115064 +0.0683675 0.128328 0.055866 +0.06844 0.185956 0.0775887 +0.0685125 0.172454 -0.0240273 +0.068585 0.133066 -0.0082916 +0.0686575 0.0472279 0.0171385 +0.06873 0.00688462 -0.0368989 +0.0688025 0.204902 0.00774884 +0.068875 0.14446 -0.111051 +0.0689475 0.0535823 0.0534153 +0.06902 0.0968105 0.0474993 +0.0690925 0.157962 -0.0421427 +0.069165 0.11144 -0.0127923 +0.0692375 0.0829327 -0.0103207 +0.06931 0.150898 0.0875628 +0.0693825 0.104672 -0.0173472 +0.069455 0.130987 -0.0570308 +0.0695275 0.0775928 0.0202405 +0.0696 0.0186582 -0.060375 +0.0696725 0.0736934 0.0114646 +0.069745 0.0768998 -0.0326779 +0.0698175 0.0615649 0.0256513 +0.06989 0.067673 0.0865441 +0.0699625 0.0891952 -0.0138694 +0.070035 -0.00316884 -0.0377005 +0.0701075 0.107185 0.131058 +0.07018 0.094773 -0.0954327 +0.0702525 0.160267 0.0415665 +0.070325 0.112479 0.00186206 +0.0703975 0.16703 -0.0643831 +0.07047 0.170771 0.0693305 +0.0705425 0.123856 0.0250418 +0.070615 0.0986517 -0.00794089 +0.0706875 0.0444724 -0.00325652 +0.07076 0.0352581 -0.0801438 +0.0708325 0.133025 0.00506431 +0.070905 0.052455 -0.0476203 +0.0709775 0.214955 -0.0087091 +0.07105 0.0855755 -0.0630763 +0.0711225 0.0603166 0.00448398 +0.071195 0.0861767 -0.008659 +0.0712675 0.125752 0.0183284 +0.07134 -0.122453 -0.0913287 +0.0714125 0.0770417 0.0179234 +0.071485 -0.00230879 0.0841267 +0.0715575 0.0258893 0.0442761 +0.07163 0.104551 0.0115439 +0.0717025 0.142389 -0.0227414 +0.071775 0.180691 0.0847572 +0.0718475 0.0117819 0.0161699 +0.07192 0.0430612 -0.0503842 +0.0719925 0.0831915 0.0204159 +0.072065 0.00644624 -0.017151 +0.0721375 0.122086 0.0243028 +0.07221 0.0550811 -0.00500586 +0.0722825 0.0500168 0.000526049 +0.072355 0.0958502 -0.0594064 +0.0724275 0.123113 -0.0592394 +0.0725 0.0160363 -0.016817 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/11/data2D.dat b/example_data/bgr/MouseLift/cpmgfastautotest/11/data2D.dat new file mode 100644 index 0000000..7d151ff --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/11/data2D.dat @@ -0,0 +1,6 @@ +1.76255 2.2543 2.10756 2.11648 2.09926 2.12044 1.98389 2.05718 1.98145 2.02657 2.02952 1.94939 1.96321 2.04998 1.97254 1.9799 1.84802 1.97611 1.98465 1.88674 1.94382 1.83577 1.7464 1.84791 1.743 1.8391 1.88035 1.81355 1.79945 1.84058 1.76727 1.71058 1.76004 1.80343 1.706 1.76152 1.68332 1.7084 1.747 1.72757 1.65981 1.64961 1.7038 1.57061 1.73193 1.57814 1.60037 1.63756 1.52742 1.64835 1.52737 1.59919 1.53991 1.62772 1.5846 1.56773 1.51893 1.54081 1.54127 1.52046 1.43621 1.45863 1.52302 1.39387 1.49848 1.41026 1.48623 1.53442 1.44306 1.37515 1.47328 1.39028 1.41649 1.43914 1.32239 1.41391 1.38443 1.35898 1.35934 1.276 1.34281 1.26695 1.37338 1.34959 1.43491 1.34305 1.32458 1.24708 1.27778 1.35553 1.40004 1.33056 1.25217 1.22593 1.31538 1.33639 1.22777 1.29637 1.30265 1.17922 1.25614 1.16861 1.14056 1.24248 1.06115 1.29099 1.11657 1.29435 1.24158 1.11975 1.14848 1.13015 1.18688 1.11341 1.09916 1.20016 1.10314 1.13895 1.07038 1.10966 1.08272 1.1079 1.14807 1.19121 1.16016 1.07724 1.11739 1.05733 1.12717 1.03046 1.1717 1.10871 1.07475 1.08275 1.04179 0.978567 1.10039 1.00891 0.930826 1.01086 1.10702 1.10799 0.970585 0.998795 0.95654 0.961391 1.07293 0.984621 0.962381 0.987335 0.975069 0.986784 1.02993 0.898983 0.920463 0.950958 1.02583 0.988888 0.914264 0.970155 0.920246 0.984942 0.818939 0.944386 0.930221 0.850812 0.899538 0.897229 0.942378 0.9555 0.877978 0.942863 0.735547 0.940119 0.8845 0.869545 0.81739 0.810297 0.97185 0.811253 0.890892 0.867716 0.908573 0.817482 0.885047 0.837627 0.838103 0.922037 0.79745 0.851133 0.774955 0.825281 0.701604 0.842996 0.674642 0.806874 0.811291 0.780826 0.837961 0.739756 0.829064 0.778204 0.739355 0.773974 0.731953 0.711115 0.780124 0.770872 0.775406 0.666814 0.895455 0.719925 0.807241 0.814743 0.737681 0.642323 0.773536 0.736992 0.71962 0.691597 0.61271 0.667173 0.734282 0.747668 0.613269 0.705412 0.727068 0.722066 0.733163 0.681047 0.750106 0.655566 0.711023 0.68708 0.68556 0.74525 0.714292 0.739009 0.736286 0.595275 0.740345 0.616446 0.693973 0.662092 0.666271 0.626371 0.735664 0.626174 0.602235 0.751909 0.692048 0.668526 0.629059 0.620338 0.591872 0.577018 0.655354 0.703433 0.605495 0.614618 0.531318 0.660689 0.678917 0.631673 0.5891 0.668547 0.674926 0.506359 0.602719 0.634174 0.598861 0.566463 0.578149 0.605779 0.74067 0.621795 0.513875 0.689334 0.486967 0.545166 0.570216 0.608681 0.553479 0.550531 0.61595 0.653729 0.529251 0.634236 0.503483 0.568267 0.464785 0.542711 0.630157 0.551972 0.562459 0.507545 0.595926 0.58928 0.451905 0.584299 0.414242 0.54497 0.482386 0.607742 0.531393 0.648828 0.477151 0.418813 0.504497 0.486595 0.474621 0.568492 0.521193 0.637192 0.518905 0.554836 0.450857 0.693647 0.516609 0.486436 0.562522 0.533251 0.505349 0.45175 0.494143 0.430888 0.476416 0.462847 0.519774 0.459332 0.574934 0.451688 0.420529 0.560034 0.454581 0.470392 0.471235 0.397145 0.416797 0.481238 0.499421 0.429051 0.490056 0.469139 0.446828 0.382336 0.4828 0.457165 0.389701 0.384883 0.454623 0.461227 0.435973 0.431885 0.385973 0.454355 0.369281 0.451779 0.417523 0.456288 0.474195 0.517331 0.494811 0.436632 0.412021 0.484741 0.291822 0.481025 0.439576 0.375585 0.476395 0.336127 0.442135 0.353391 0.43161 0.42832 0.327977 0.440064 0.480762 0.383426 0.353666 0.388198 0.453408 0.407524 0.408368 0.357704 0.411996 0.391567 0.412801 0.368425 0.502619 0.295512 0.418855 0.352827 0.370546 0.309177 0.35033 0.396085 0.414342 0.357466 0.264371 0.451637 0.307674 0.303265 0.360459 0.365565 0.395287 0.439476 0.267978 0.352694 0.263607 0.434019 0.312413 0.313774 0.383643 0.402998 0.384891 0.338941 0.337997 0.363949 0.378658 0.449571 0.307925 0.26577 0.403408 0.339225 0.283722 0.34818 0.364083 0.269644 0.334223 0.41076 0.378107 0.302693 0.273481 0.30524 0.45193 0.395533 0.341575 0.35266 0.304046 0.350932 0.26994 0.295466 0.253858 0.401959 0.272404 0.307273 0.31921 0.281906 0.333889 0.279952 0.3291 0.357841 0.230466 0.37566 0.288064 0.36693 0.350744 0.299362 0.36645 0.336365 0.25828 0.25289 0.34783 0.257152 0.390135 0.400318 0.302593 0.317406 0.425832 0.280566 0.278733 0.368212 0.190582 0.308772 0.34722 0.209085 0.266329 0.283914 0.376199 0.361758 0.205653 0.389964 0.303474 0.17986 0.24211 0.346477 0.302936 0.331175 0.306894 0.34236 0.264513 0.280946 0.22991 0.279209 0.320571 0.261549 0.241496 0.278533 0.293049 0.265097 0.240628 0.308096 0.284515 0.226817 0.26731 0.257052 0.259319 0.176391 0.247036 0.237513 0.318584 0.271468 0.297107 0.38983 0.292022 0.297558 0.315135 0.191817 0.228416 0.256977 0.253157 0.351675 0.201666 0.329309 0.155048 0.210463 0.226483 0.2249 0.208551 0.193162 0.0985473 0.263014 0.334637 0.231877 0.247362 0.294506 0.244535 0.248472 0.22093 0.205098 0.227201 0.162688 0.236807 0.161089 0.240707 0.248143 0.180925 0.162876 0.170512 0.190995 0.279489 0.183079 0.206689 0.185617 0.280086 0.206221 0.208384 0.320166 0.283159 0.330228 0.231092 0.207862 0.216007 0.27991 0.284202 0.182428 0.314004 0.293872 0.208722 0.220487 0.20256 0.300714 0.260872 0.257616 0.0629176 0.214504 0.165782 0.217105 0.18563 0.257946 0.262079 0.131455 0.101587 0.23983 0.237342 0.125326 0.16999 0.233701 0.230065 0.237951 0.0641325 0.164417 0.133847 0.225894 0.269398 0.189479 0.210855 0.339321 0.114174 0.319623 0.217189 0.213774 0.1935 0.178161 0.239475 0.143491 0.103282 0.163565 0.149453 0.155937 0.185567 0.15539 0.264091 0.194347 0.224929 0.151921 0.188248 0.192118 0.238544 0.197775 0.267419 0.287229 0.223038 0.223088 0.18907 0.193433 0.151741 0.263937 0.160133 0.257156 0.177985 0.216442 0.144798 0.26316 0.30947 0.0677899 0.22819 0.0935581 0.226387 0.229159 0.152501 0.203545 0.173589 0.213999 0.14881 0.217661 0.199637 0.145341 0.124938 0.239763 0.228224 0.146472 0.145646 0.151315 0.186244 0.224842 0.273631 0.148305 0.123293 0.153858 0.176545 0.132524 0.0794632 0.225005 0.141542 0.0779644 0.268262 0.183705 0.205804 0.178541 0.292978 0.10243 0.140556 0.181334 0.157256 0.113882 0.0994992 0.264459 0.128127 0.0632307 0.218358 0.173923 0.116128 0.141091 0.170662 0.16918 0.186511 0.144669 0.0178858 0.00808284 0.170487 0.119539 0.209774 0.140786 0.116771 0.122771 0.138987 0.108471 0.0998958 0.128795 0.145971 0.119197 0.127852 0.184791 0.162851 0.243045 0.216275 0.106092 0.102392 0.189755 0.0310998 0.195884 0.118779 0.173385 0.168479 0.118654 0.0786658 0.192957 0.174984 0.142577 0.143395 0.197312 0.0352623 0.0969107 0.111206 0.106989 0.22986 0.152046 0.0709963 0.152042 0.191784 0.097253 0.0903267 0.194982 0.209653 0.139028 0.206676 0.151006 0.244995 0.184649 0.075426 0.234348 0.17098 0.105578 0.169903 0.111373 0.113723 0.169372 0.208171 0.139454 0.144969 0.152334 0.186444 0.105181 0.241696 0.114989 0.0152263 0.0900177 0.0748206 0.16149 0.157678 0.115861 0.130503 0.123305 0.17637 0.110797 0.0360472 0.179551 0.044464 0.0737268 0.177459 0.066625 0.143525 0.153829 0.111456 0.134469 0.120353 0.157482 0.19155 0.133576 0.0755387 0.282052 0.160772 0.0531648 0.0789205 0.0359678 0.117598 0.177505 0.163181 0.144865 0.112028 0.137233 0.190536 0.207653 0.159022 0.0294131 0.0679068 0.126603 0.133484 0.0642703 0.184595 0.0686917 0.0955705 0.0919674 0.129593 0.152514 0.207436 0.100823 0.127923 0.0322813 0.221648 0.167752 0.138916 0.0526846 0.0384937 0.0739731 0.100443 0.162396 0.116274 0.208037 0.137972 0.0323272 0.178336 0.0954828 0.0732132 0.065694 0.108968 0.0431864 0.0332082 0.0813337 0.0848532 -0.0306614 0.107891 0.138874 0.0677314 0.0911074 0.0352122 0.0635105 0.148564 0.0344314 0.100192 0.0950611 0.123731 0.134031 0.125773 0.0812794 0.151837 0.176741 0.166082 0.0507182 0.104138 0.11389 0.0810247 0.0331288 0.171798 0.0613395 0.0620283 0.172445 0.113815 0.101407 0.104325 0.0912911 0.0357674 0.0683117 0.0367402 0.0646001 0.0954953 0.0485472 0.138481 0.112642 0.118479 0.179321 0.0790583 -0.0156229 0.055891 0.0312459 0.14226 0.115936 0.153708 0.121698 0.0683619 0.118734 0.0334378 0.103545 0.136072 0.167677 0.0840683 0.0290122 0.0293963 0.0614564 0.0772797 0.179534 0.0394749 0.0854544 0.089262 0.131012 0.0794591 0.0707082 0.0174182 0.155232 0.134628 0.112496 0.138978 0.105353 0.0957584 0.106684 0.116312 0.0146627 -0.0244656 0.151182 0.149967 0.143784 -0.00928943 -0.0435956 0.0173973 0.0280729 0.11311 0.171297 0.0952532 0.102793 0.108183 0.173719 0.0152889 0.134582 0.185409 0.0387734 0.0331205 -0.0516534 0.10395 0.079434 0.0561833 0.0593981 0.10114 0.130858 0.195679 0.0892119 0.112876 -0.0290331 0.104209 0.108818 0.128328 0.185956 0.172454 0.133066 0.0472279 0.00688462 0.204902 0.14446 0.0535823 0.0968105 0.157962 0.11144 0.0829327 0.150898 0.104672 0.130987 0.0775928 0.0186582 0.0736934 0.0768998 0.0615649 0.067673 0.0891952 -0.00316884 0.107185 0.094773 0.160267 0.112479 0.16703 0.170771 0.123856 0.0986517 0.0444724 0.0352581 0.133025 0.052455 0.214955 0.0855755 0.0603166 0.0861767 0.125752 -0.122453 0.0770417 -0.00230879 0.0258893 0.104551 0.142389 0.180691 0.0117819 0.0430612 0.0831915 0.00644624 0.122086 0.0550811 0.0500168 0.0958502 0.123113 0.0160363 +1.75675 2.3045 2.24829 2.20783 2.17236 2.08333 2.08718 2.19581 2.11608 2.05407 1.98276 2.13294 2.00258 2.02725 1.97768 2.06409 1.95343 2.02418 2.07533 2.01693 1.96421 2.10572 1.97884 1.96454 1.91101 1.89095 1.76207 1.80852 1.84183 1.84945 1.77942 1.81007 1.8457 1.70809 1.85139 1.81704 1.79631 1.67495 1.86304 1.74879 1.73072 1.71924 1.73382 1.65909 1.7088 1.68584 1.68575 1.71528 1.70301 1.62459 1.5349 1.62775 1.61133 1.67835 1.67691 1.67033 1.53222 1.54031 1.56092 1.47352 1.53139 1.53752 1.5596 1.4605 1.57317 1.48328 1.4635 1.52399 1.52682 1.37917 1.46125 1.44766 1.52299 1.51707 1.44355 1.48796 1.39792 1.4341 1.40045 1.48782 1.42363 1.33742 1.3788 1.3634 1.42794 1.4715 1.3198 1.31508 1.40728 1.34875 1.32358 1.36641 1.28954 1.30074 1.33539 1.33343 1.2993 1.27621 1.24491 1.29702 1.27982 1.34915 1.2898 1.17553 1.34246 1.17299 1.18526 1.19632 1.28321 1.28491 1.25869 1.19803 1.2104 1.26772 1.18121 1.11872 1.21344 1.21547 1.22413 1.2449 1.26172 1.06041 1.12566 1.14144 1.14975 1.12889 1.22711 1.2362 1.16762 1.11581 1.17866 1.08846 1.08485 1.13558 1.18576 0.989272 1.08413 1.08675 1.06427 1.07676 1.18605 1.09414 0.967374 1.02876 0.963491 1.03606 1.04257 1.04421 1.08424 1.03746 1.04105 1.06867 1.0045 0.954072 0.961412 1.08721 0.988708 0.900273 1.01593 1.06146 0.954953 0.915107 0.997321 0.915925 0.979603 0.987832 0.887882 0.870789 0.982968 0.913266 0.969983 0.768735 0.953321 0.95983 0.938262 1.00041 0.9139 0.970823 0.922146 0.842603 0.860126 1.01794 0.920752 0.815775 0.846148 0.881907 0.83412 0.87478 0.924121 0.819879 0.875536 0.836633 0.848724 0.847943 0.910656 0.763558 0.875853 0.838808 0.810548 0.813758 0.831552 0.855078 0.83088 0.779606 0.682166 0.89176 0.782521 0.867261 0.884871 0.749517 0.78885 0.917862 0.816067 0.666789 0.787923 0.821136 0.889869 0.797555 0.83288 0.79409 0.771674 0.674709 0.785994 0.80727 0.716714 0.77306 0.7475 0.711132 0.77635 0.680358 0.80284 0.794027 0.769432 0.708756 0.748477 0.724041 0.728621 0.74287 0.66658 0.746737 0.741267 0.770968 0.742929 0.657675 0.793906 0.700264 0.776955 0.756214 0.546674 0.692766 0.695279 0.609929 0.754331 0.59973 0.693067 0.700218 0.626145 0.637088 0.654485 0.712434 0.761716 0.667545 0.688282 0.657404 0.712343 0.702698 0.637748 0.716493 0.697534 0.747643 0.679239 0.696866 0.662238 0.583936 0.633134 0.587359 0.665966 0.692065 0.622158 0.643455 0.571281 0.716463 0.54226 0.640783 0.560806 0.641371 0.673398 0.584199 0.51101 0.566972 0.552573 0.580529 0.490528 0.541446 0.544085 0.685873 0.549776 0.618989 0.640227 0.502331 0.607913 0.521953 0.629335 0.550811 0.538098 0.469177 0.634316 0.52326 0.560434 0.464952 0.506977 0.642749 0.462117 0.599909 0.557721 0.483121 0.593768 0.516271 0.534616 0.562735 0.563031 0.533844 0.526859 0.555537 0.545337 0.560063 0.55765 0.50099 0.46096 0.461361 0.553366 0.416471 0.515991 0.495788 0.533802 0.494983 0.491659 0.535956 0.465407 0.45494 0.440181 0.508919 0.493024 0.470738 0.480746 0.345091 0.52931 0.540173 0.526617 0.504785 0.485785 0.499922 0.454092 0.48017 0.491851 0.526262 0.468768 0.445358 0.471982 0.452376 0.423907 0.471849 0.496356 0.440945 0.437142 0.450531 0.498394 0.471502 0.471519 0.386407 0.498669 0.466334 0.456835 0.499955 0.515991 0.420337 0.440586 0.365135 0.462079 0.409094 0.500673 0.319556 0.411169 0.48905 0.473034 0.456343 0.426775 0.35595 0.422997 0.321218 0.387112 0.404326 0.290298 0.402051 0.37265 0.504272 0.397366 0.372036 0.277856 0.282027 0.351441 0.316717 0.440139 0.346347 0.419097 0.375581 0.387526 0.40532 0.392761 0.320116 0.44236 0.391642 0.402752 0.336085 0.357862 0.440361 0.37364 0.307077 0.362609 0.251311 0.353048 0.442607 0.344364 0.405002 0.456414 0.408952 0.312129 0.403963 0.451692 0.318976 0.403032 0.349354 0.355641 0.389851 0.322278 0.237926 0.423857 0.419498 0.368897 0.330006 0.356384 0.310931 0.290348 0.339972 0.218784 0.30681 0.39583 0.306555 0.295379 0.374508 0.288269 0.482929 0.439555 0.32075 0.299625 0.285405 0.321005 0.268483 0.388657 0.334741 0.486954 0.313899 0.325084 0.228733 0.252597 0.28958 0.352255 0.301742 0.28414 0.242014 0.368396 0.336089 0.291792 0.340845 0.35557 0.30929 0.336148 0.313574 0.389062 0.428871 0.335163 0.394836 0.322291 0.313127 0.318867 0.308685 0.266905 0.206376 0.277384 0.305762 0.273573 0.370358 0.284307 0.271013 0.241187 0.304852 0.295679 0.306605 0.26721 0.291788 0.232536 0.364526 0.235213 0.206564 0.299441 0.25858 0.189926 0.268412 0.336561 0.19808 0.409958 0.170475 0.308497 0.263728 0.203879 0.470584 0.353792 0.255077 0.287784 0.196439 0.261427 0.360914 0.199307 0.284357 0.230461 0.218341 0.296815 0.257403 0.205708 0.212146 0.219001 0.344665 0.154117 0.238469 0.279722 0.211006 0.190398 0.324934 0.216897 0.251996 0.286812 0.202209 0.380645 0.340406 0.310405 0.181501 0.292323 0.188778 0.255244 0.169377 0.306305 0.211423 0.168166 0.232912 0.374061 0.222809 0.265799 0.209974 0.285154 0.207645 0.253704 0.234883 0.255065 0.145834 0.254246 0.249211 0.294502 0.152906 0.371682 0.193082 0.261298 0.188314 0.174704 0.159302 0.229297 0.161619 0.252848 0.220496 0.207156 0.254029 0.272713 0.140289 0.0817553 0.214283 0.176466 0.258922 0.163849 0.199074 0.259357 0.407462 0.340214 0.290106 0.18649 0.165636 0.207699 0.212555 0.194301 0.242832 0.205612 0.158522 0.254839 0.142414 0.205294 0.215936 0.160288 0.202297 0.270888 0.176165 0.221685 0.181868 0.219811 0.188523 0.258184 0.263348 0.194815 0.252338 0.222917 0.206417 0.161807 0.153319 0.144013 0.244231 0.208755 0.230086 0.174817 0.201136 0.153516 0.0938838 0.264834 0.111761 0.215511 0.231626 0.177885 0.0951822 0.22341 0.169848 0.224884 0.267377 0.161369 0.23834 0.0721068 0.145328 0.189237 0.305416 0.153962 0.161907 0.172721 0.0797597 0.240035 0.143763 0.275339 0.192306 0.237133 0.14555 0.114492 0.271448 0.243475 0.192815 0.313382 0.204484 0.155257 0.190185 0.242477 0.12971 0.205645 0.147691 0.0971152 0.174917 0.266454 0.194932 0.149282 0.198798 0.12174 0.143805 0.153687 0.152718 0.125965 0.223852 0.185158 0.169093 0.17713 0.137421 0.174032 0.156935 0.217364 0.172132 0.149311 0.202075 0.221752 0.222366 0.169677 0.21088 0.134486 0.159327 0.140715 0.156271 0.0413578 0.122069 0.127952 0.17953 0.116629 0.144961 0.09785 0.0882558 0.0935122 0.130824 0.103866 0.109774 0.234678 0.213765 0.139204 0.0748457 0.0973783 0.236231 0.135417 0.192519 0.205207 0.201428 0.224403 0.0650761 0.145754 0.149716 0.171389 0.156125 0.066529 0.165164 0.16129 0.0996495 0.132386 0.101591 0.030198 0.1873 0.108359 0.0886107 0.0712677 0.080841 0.237684 0.187008 0.176745 0.18841 0.152484 0.174487 0.21703 0.125196 0.0624751 0.172186 0.214918 0.179877 0.162225 0.0489021 0.0915875 0.111256 0.143078 0.0483718 0.0986683 0.0476287 -0.0323606 0.105937 0.136811 0.125831 0.118759 0.115728 0.127964 0.131133 0.132595 0.0555403 0.122625 0.149587 0.0942052 0.0958711 0.135279 0.0826279 0.14752 0.104129 0.120207 0.0646085 0.190498 0.0642787 0.0651972 0.151804 0.136277 0.206555 0.0439004 0.0596694 0.100881 0.0544924 0.164045 0.162626 0.184173 0.0291458 0.167118 0.112475 0.0367235 0.140857 0.0416793 0.135358 0.0745785 0.165097 0.206175 0.137889 0.199449 0.0986099 0.0827949 0.0847446 0.257662 0.0429485 0.0404769 0.151821 0.136891 0.170558 0.152351 0.0956039 0.186582 0.0816384 0.00158233 0.190035 0.247103 0.105044 0.11154 0.0740357 0.0743321 0.114108 0.152426 0.225055 0.0977206 0.160283 0.172712 0.123347 0.201345 0.166517 0.0488937 0.0376629 0.0914998 0.151829 0.0424433 0.104626 0.149771 0.180106 0.0886441 0.164099 0.0742403 0.121151 0.0773507 0.114024 0.0702406 -0.00753592 0.0943889 0.0988813 0.127017 0.16463 0.146322 0.11326 0.100272 0.144786 -0.008158 0.0342978 0.138306 0.172675 0.0376504 0.174099 0.093984 0.163949 0.181317 0.0279351 0.0947104 -0.0627631 0.101737 0.0130762 -0.00744407 0.113648 0.112408 0.0298848 0.136089 0.109265 0.141032 0.170934 0.122053 0.187822 0.162847 0.110567 0.0273339 0.168992 0.0542711 0.0097111 0.053791 0.14843 0.0771127 0.136966 0.115611 0.113377 0.0691342 0.0128131 0.19502 0.136841 0.102939 0.138519 0.117335 0.138928 0.0414496 0.0686165 0.0395208 0.0929945 0.169406 0.0872413 0.107094 0.169974 0.0946645 0.0603709 0.0742904 0.208597 0.12614 0.0454911 0.109619 0.0851037 -0.000851703 0.0429819 0.0671803 0.0680738 0.0998248 0.037571 0.0118738 0.0761984 0.10501 0.0320642 0.0603959 0.120353 0.0946144 0.105545 0.0962468 0.0787911 0.158609 0.0128883 0.0169506 0.148764 0.126958 0.093913 0.141608 0.0757683 0.0590348 8.35043e-005 0.0536365 0.188147 0.0610722 0.0850828 0.136757 0.0769039 0.160283 0.066838 0.0174182 0.145195 0.0998081 -0.0266659 0.160187 -0.0429443 0.149036 0.0597237 0.102898 0.085613 0.0658568 0.119685 0.147408 0.0673515 0.0501629 0.00313544 0.0320517 0.174796 0.174879 0.0240982 0.00785322 0.0871828 0.09742 0.0643455 0.104797 0.126194 0.0875336 0.102873 0.115456 0.0435747 0.122729 0.0654602 0.169226 0.112588 0.0218103 0.0704869 0.0139112 0.0720359 0.0720192 -0.0180904 -0.00507265 0.0419673 0.0527723 0.125138 -0.0125 0.0489605 0.15754 0.128816 0.0721903 0.00780312 0.170629 0.00716434 +1.70723 2.17992 2.12056 2.03355 2.0228 2.00908 1.95239 1.91893 1.97277 1.93952 1.86067 1.98351 1.91385 1.96261 1.83089 1.85956 1.89948 1.83138 1.86162 1.85522 1.82388 1.7962 1.88368 1.86593 1.73278 1.78886 1.62999 1.78148 1.78493 1.62301 1.65961 1.72545 1.73338 1.6615 1.69521 1.65873 1.67323 1.64792 1.56989 1.62642 1.56712 1.78666 1.57162 1.61501 1.60355 1.54865 1.61708 1.50792 1.55282 1.49979 1.55929 1.49506 1.50104 1.52125 1.53603 1.70592 1.4307 1.4002 1.49458 1.42537 1.43047 1.49927 1.42633 1.4131 1.49587 1.32154 1.45267 1.3901 1.35077 1.33503 1.42024 1.39122 1.27752 1.31762 1.35399 1.35256 1.27436 1.42221 1.36353 1.29866 1.30568 1.37481 1.43127 1.36423 1.2488 1.35826 1.28648 1.2484 1.23386 1.27554 1.19986 1.35657 1.27076 1.11198 1.30274 1.13652 1.28404 1.25931 1.14352 1.2122 1.29644 1.16664 1.24686 1.14074 1.29841 1.17782 1.16237 1.28197 1.15446 1.17017 1.24302 1.17003 1.15273 1.10605 1.1427 1.13009 1.0721 1.06014 1.11619 1.13518 1.09341 1.1175 1.02132 0.997927 1.11673 1.11392 1.03247 0.980667 1.04052 1.10395 0.977448 0.913892 1.0179 0.956728 1.12852 1.04396 1.02223 1.00438 0.960427 0.988938 0.993689 1.03741 1.02462 1.05199 0.967599 1.01589 0.985439 0.943468 0.977515 0.971879 1.00209 0.939873 0.970276 0.886153 0.945388 0.913086 0.937126 0.906991 0.8866 0.846353 0.902185 0.941831 0.859107 0.927018 0.931122 0.894866 0.856118 0.854277 0.89581 0.917649 0.933681 0.870676 0.943334 0.810506 0.867637 0.884249 0.85563 0.777728 0.80092 0.82812 0.805425 0.858464 0.78222 0.840123 0.799363 0.810669 0.899434 0.797229 0.812664 0.800882 0.784813 0.810602 0.764455 0.75006 0.764781 0.851576 0.738044 0.80365 0.708285 0.792545 0.806924 0.760652 0.828984 0.747684 0.800586 0.831702 0.749024 0.796407 0.743413 0.810861 0.802323 0.727669 0.718952 0.808673 0.716935 0.687222 0.760543 0.641693 0.715411 0.770158 0.623849 0.658326 0.744048 0.774417 0.619933 0.747642 0.682374 0.703679 0.67336 0.721895 0.578637 0.850557 0.634796 0.699638 0.735176 0.694553 0.727607 0.706456 0.684153 0.722805 0.707383 0.563482 0.493254 0.668542 0.567895 0.596674 0.67617 0.737906 0.685627 0.644745 0.715324 0.701855 0.687944 0.62106 0.701291 0.720521 0.67397 0.614731 0.634253 0.691555 0.578967 0.59745 0.577026 0.687902 0.611006 0.595413 0.525068 0.618104 0.677849 0.612109 0.730817 0.595333 0.570417 0.724459 0.633117 0.588466 0.540808 0.487321 0.488361 0.619624 0.57088 0.612476 0.524254 0.648953 0.51311 0.589827 0.579385 0.566488 0.578875 0.509023 0.570634 0.54224 0.663583 0.511553 0.597521 0.509211 0.628537 0.558455 0.524187 0.531351 0.464651 0.600606 0.522183 0.455529 0.520575 0.495062 0.492173 0.59583 0.499412 0.491839 0.391033 0.591417 0.40537 0.515737 0.577811 0.462973 0.486478 0.548302 0.594682 0.553608 0.478466 0.490615 0.381814 0.510063 0.463269 0.514517 0.51433 0.493584 0.463044 0.616902 0.576341 0.430245 0.57025 0.427936 0.469636 0.471573 0.396586 0.436632 0.499492 0.462384 0.508301 0.384332 0.502848 0.343767 0.409758 0.433292 0.524421 0.491906 0.496189 0.489576 0.416943 0.414167 0.35018 0.471661 0.37771 0.441367 0.48366 0.454322 0.487054 0.442461 0.482474 0.378846 0.368884 0.290415 0.356234 0.370663 0.42359 0.446243 0.416613 0.377063 0.372821 0.382858 0.444866 0.417294 0.4391 0.303946 0.312801 0.419327 0.383664 0.46071 0.431823 0.404982 0.336574 0.420738 0.435693 0.471874 0.407491 0.432892 0.445053 0.393087 0.339571 0.326729 0.407023 0.426082 0.368433 0.317448 0.401591 0.446711 0.302351 0.494578 0.397759 0.262551 0.253441 0.334912 0.34464 0.438728 0.464233 0.378433 0.371101 0.338678 0.400381 0.409724 0.352201 0.266797 0.49082 0.394369 0.428646 0.347963 0.420964 0.36706 0.314363 0.286803 0.437309 0.404739 0.405604 0.375827 0.361724 0.263791 0.292047 0.366943 0.391054 0.408259 0.402184 0.350343 0.320487 0.38781 0.299971 0.344535 0.315152 0.288365 0.396753 0.351595 0.297796 0.319427 0.352126 0.301992 0.328545 0.327522 0.333146 0.377902 0.40357 0.332549 0.236912 0.311056 0.296777 0.278992 0.267448 0.297583 0.310952 0.260476 0.403441 0.291651 0.323122 0.241262 0.161978 0.430224 0.269656 0.295145 0.328829 0.33366 0.351299 0.290544 0.336954 0.304919 0.343989 0.244398 0.30939 0.257303 0.271009 0.233551 0.271222 0.261674 0.268767 0.429589 0.290223 0.21797 0.236849 0.251524 0.306639 0.312605 0.275376 0.287889 0.274391 0.219569 0.313356 0.297166 0.305562 0.309515 0.298564 0.276445 0.211365 0.295041 0.232119 0.201437 0.260417 0.202163 0.293655 0.216421 0.223965 0.395362 0.316492 0.418818 0.392987 0.283868 0.341425 0.294068 0.292577 0.354213 0.177919 0.318989 0.228052 0.228153 0.185096 0.228269 0.206705 0.397366 0.28219 0.37928 0.303082 0.245638 0.27369 0.266291 0.169702 0.272099 0.242402 0.235663 0.278649 0.336845 0.186799 0.239555 0.229572 0.121451 0.224929 0.113786 0.212697 0.293112 0.30633 0.302126 0.309236 0.194711 0.163978 0.17867 0.253691 0.209119 0.205328 0.313206 0.116533 0.218888 0.240252 0.196443 0.216321 0.361774 0.210764 0.264684 0.148627 0.274274 0.209461 0.193579 0.297395 0.19752 0.200076 0.249474 0.240089 0.250301 0.251942 0.242941 0.227017 0.218696 0.198643 0.183697 0.12766 0.245266 0.255324 0.0561541 0.221911 0.272028 0.215536 0.276967 0.231488 0.323264 0.260083 0.188982 0.232929 0.153236 0.27485 0.273493 0.1623 0.231614 0.121702 0.254543 0.239914 0.16855 0.201587 0.307106 0.273285 0.168011 0.36567 0.162496 0.268513 0.325406 0.148982 0.251959 0.233188 0.20886 0.206818 0.170817 0.252222 0.120086 0.269552 0.256772 0.186828 0.151466 0.085563 0.203336 0.106643 0.250414 0.218116 0.138423 0.220792 0.245015 0.221147 0.110208 0.17156 0.154614 0.253173 0.170454 0.107557 0.118487 0.199132 0.11349 0.115373 0.19623 0.154559 0.058037 0.260906 0.155612 0.171272 0.166249 0.207244 0.135392 0.22733 0.132808 0.129697 0.0665791 0.148284 0.23505 0.19241 0.162216 0.267961 0.157899 0.185684 0.230449 0.261248 0.116688 0.190423 0.203587 0.212555 0.117327 0.239934 0.0627256 0.105603 0.225355 0.212713 0.207645 0.150601 0.105252 0.23257 0.127259 0.252338 0.135237 0.206835 0.180983 0.187839 0.188966 0.117919 0.240281 0.13186 0.080745 0.146852 0.197307 0.096681 0.107787 0.188911 0.151111 0.112663 0.187296 0.0736558 0.0978083 0.235396 0.148915 0.0934872 0.149954 0.194602 0.132753 0.142627 0.166128 0.0627256 0.138364 0.177355 0.235254 0.191153 0.0525427 0.16045 0.120399 0.0997539 0.0754636 0.0360931 0.0638445 0.113782 0.153453 0.166717 0.112463 0.0779602 0.0834379 0.128787 0.126599 0.109444 0.197621 0.277994 0.144936 0.09074 0.265097 0.124737 0.207791 0.248852 0.163152 0.0486474 0.00783235 0.0708627 0.188511 0.186085 0.196439 0.188252 0.109878 0.0885815 0.191705 0.0526304 0.22543 0.167151 0.19775 0.0821979 0.0351287 0.0934162 0.13368 0.150038 0.191358 0.0944599 0.103766 0.110496 0.232215 0.215811 0.103474 0.186319 0.210371 0.10977 0.144139 0.212062 0.088594 0.160304 0.150827 0.00186624 0.18201 0.14603 0.163749 0.132611 0.136715 0.0499291 0.21043 0.0926271 0.138277 0.106238 0.170124 0.190473 0.151482 0.0550393 0.0826154 0.0930822 0.207106 0.183488 0.083918 0.169715 0.0873666 0.105891 0.122988 0.166805 0.149804 0.0335087 0.131918 0.0530896 0.101324 0.118132 0.0983678 0.129756 0.102522 0.207257 0.152438 0.163369 0.22037 0.193174 0.104388 0.131927 0.0737101 0.0792378 0.0719816 0.117777 -0.0126378 0.161569 0.105344 0.240227 0.0937168 0.0852582 0.0845401 0.00683034 -0.00561123 0.0255637 0.132549 0.0419548 0.15658 0.105783 0.161928 0.0332708 0.0763988 0.144364 0.0228207 0.176357 0.107473 0.0633226 0.102134 0.0746703 0.0982216 0.131818 0.14679 0.106739 0.0988604 0.071443 0.136348 0.129292 0.0768079 -0.0376337 0.0240314 0.109853 0.0193387 0.00647547 0.15691 0.162417 0.0549308 0.107837 0.0999376 0.0788746 0.174487 0.0677064 0.0141784 0.117986 0.116884 0.126445 0.163807 0.143896 0.0700861 0.136039 0.116087 0.131789 0.0955246 0.0582332 0.135997 0.0322354 0.0878884 0.0627172 0.0582583 0.0138319 0.215774 0.170374 0.0419423 0.121393 0.0823064 0.0811416 0.150301 0.177121 -0.0114187 0.227476 0.119414 0.114354 0.0844399 0.163761 0.0549016 0.056843 0.0570684 0.0817595 0.176482 0.016675 0.180954 0.0500335 0.0669674 0.143667 0.0819181 0.0618112 -0.0301687 0.024641 0.162317 0.0353708 0.118788 0.0355002 0.149892 0.110321 0.107365 0.083776 0.0428984 0.0178274 0.0805905 0.0750335 0.158856 0.0720901 0.114329 0.180165 0.051524 0.0883393 -0.0489772 0.0593396 0.0952615 0.045775 0.137738 0.0988521 0.0799935 0.0431614 0.0408443 0.0133643 -0.052384 -0.00617069 0.0056154 0.011761 0.0789664 0.14712 0.0203157 -0.0420174 0.101499 0.115824 0.0815424 0.112149 0.0813044 0.12771 0.143688 0.117903 0.0469189 -0.0206497 0.0518789 0.0519331 0.0615858 0.0726705 0.0957083 -0.0203032 0.0293421 0.0763153 0.0478207 0.096848 0.0818931 0.141826 0.049975 0.150368 0.112868 0.111828 0.0841643 0.0450402 0.0379217 0.0689672 -0.0227372 0.100768 0.0267118 0.0277138 0.0376545 0.170299 0.0681197 0.0933034 0.0628842 0.0739522 0.0684704 0.0398464 0.114279 0.0728041 0.0854711 0.0721695 0.0984011 0.0970985 0.0945894 0.0753884 0.00387442 0.0999835 0.0570475 0.0169297 -0.0520667 0.130678 0.0858218 +1.73457 2.18707 2.0385 2.09575 1.99214 2.00736 1.97318 1.96037 1.97557 1.96019 1.99241 1.96774 1.98679 1.78207 1.80207 1.8328 1.85187 1.90277 1.78618 1.87596 1.80359 1.83107 1.75952 1.85501 1.78712 1.80489 1.72725 1.72879 1.6927 1.64093 1.81443 1.69037 1.74591 1.60252 1.7377 1.61867 1.69532 1.73522 1.76503 1.60668 1.63309 1.6051 1.66768 1.57519 1.61305 1.5647 1.56622 1.51753 1.53108 1.53102 1.36337 1.50543 1.51757 1.50698 1.44925 1.40604 1.40472 1.45072 1.43467 1.39966 1.52267 1.42679 1.35257 1.45321 1.52817 1.37295 1.39809 1.56657 1.31806 1.38794 1.28912 1.38497 1.32271 1.37236 1.34921 1.31484 1.27286 1.33839 1.35178 1.28053 1.36148 1.288 1.43842 1.32565 1.2422 1.26532 1.34647 1.37919 1.30151 1.18519 1.26826 1.1491 1.28906 1.32987 1.1926 1.27747 1.28865 1.19931 1.19063 1.16634 1.20604 1.21715 1.30785 1.15894 1.13713 1.2143 1.23564 1.16712 1.15242 1.06562 1.07291 1.08973 1.11731 1.19508 1.09268 1.11637 1.09968 1.12317 1.0659 1.18551 1.09095 1.12415 1.04215 1.08245 1.10949 0.998895 1.1113 1.14928 1.01669 1.07013 1.05477 0.938408 1.04549 1.11536 1.11072 1.08583 1.12283 0.93265 1.10753 0.97372 1.0854 1.05664 1.04385 0.944963 1.0638 0.957191 1.0635 0.951814 0.946236 0.922046 0.959884 0.979231 1.00362 1.01104 0.866635 0.89361 0.946223 0.925457 0.896991 0.84609 0.919971 0.90687 0.933402 0.881794 0.867357 0.963291 0.887214 0.917078 0.921507 0.869052 0.846954 0.935276 0.907166 0.974735 0.885844 0.948177 0.785468 0.934362 0.896035 0.872743 0.813119 0.874797 0.8157 0.850753 0.824567 0.829014 0.805517 0.770413 0.835498 0.848269 0.884892 0.886909 0.797154 0.763245 0.721507 0.770601 0.707483 0.793994 0.864021 0.831561 0.710585 0.791042 0.829001 0.832684 0.749112 0.705871 0.765545 0.737405 0.839297 0.85608 0.714351 0.718071 0.748528 0.747521 0.675448 0.670041 0.839543 0.668229 0.796069 0.704819 0.690027 0.661366 0.808982 0.808865 0.778517 0.827949 0.710806 0.63338 0.687071 0.716827 0.631986 0.635852 0.784558 0.754473 0.713783 0.681068 0.688111 0.769123 0.658013 0.659069 0.649208 0.674012 0.573014 0.655433 0.635455 0.656953 0.540682 0.73528 0.733898 0.688219 0.515482 0.702615 0.680483 0.727406 0.634495 0.652126 0.649968 0.691873 0.505942 0.721686 0.596569 0.728145 0.642628 0.588374 0.577314 0.558472 0.656051 0.585505 0.666121 0.695764 0.609984 0.524291 0.573619 0.602277 0.543329 0.600377 0.611065 0.6226 0.620237 0.546903 0.625815 0.623824 0.662242 0.626337 0.454109 0.64219 0.57655 0.533318 0.515035 0.605282 0.657132 0.526137 0.506293 0.632069 0.662927 0.574655 0.634662 0.57349 0.517999 0.560748 0.529218 0.514989 0.455428 0.451804 0.480132 0.553554 0.493692 0.680358 0.504456 0.486624 0.527669 0.43854 0.559958 0.436503 0.513603 0.502677 0.564204 0.457754 0.473707 0.523895 0.506339 0.56668 0.402982 0.523381 0.502857 0.454376 0.516709 0.485042 0.459336 0.538883 0.41478 0.501617 0.497588 0.505136 0.468196 0.505541 0.396661 0.457587 0.513102 0.536215 0.480282 0.421652 0.40818 0.36582 0.449429 0.4704 0.463302 0.419001 0.475493 0.452247 0.444895 0.3995 0.507495 0.435397 0.354013 0.334177 0.441146 0.461553 0.329973 0.479017 0.45246 0.425627 0.505691 0.446327 0.422821 0.400402 0.401813 0.303971 0.396239 0.399646 0.310776 0.537008 0.428111 0.33533 0.486766 0.45236 0.423377 0.344778 0.436215 0.436265 0.439764 0.428245 0.386503 0.408814 0.372525 0.361282 0.41936 0.40805 0.391814 0.370771 0.391801 0.443901 0.409891 0.426454 0.386904 0.35747 0.425928 0.436586 0.431977 0.43857 0.39993 0.398452 0.382182 0.333309 0.433622 0.26802 0.36483 0.445746 0.300026 0.389212 0.377393 0.384065 0.34158 0.459775 0.395884 0.395596 0.360071 0.403119 0.378395 0.384177 0.407599 0.405186 0.416254 0.308551 0.327998 0.46142 0.374976 0.460605 0.326216 0.351825 0.317089 0.340594 0.315736 0.335735 0.318412 0.323852 0.448786 0.362246 0.362868 0.258234 0.309599 0.400264 0.343713 0.271919 0.364204 0.2997 0.287288 0.299879 0.305223 0.298418 0.314772 0.253232 0.255749 0.422692 0.379827 0.359799 0.342911 0.253683 0.261966 0.320358 0.28252 0.361044 0.331781 0.361854 0.263615 0.353508 0.239367 0.383058 0.296289 0.344156 0.351541 0.32599 0.337217 0.362463 0.304372 0.386566 0.305019 0.260714 0.287638 0.295016 0.318204 0.316951 0.283493 0.290916 0.260284 0.403541 0.233234 0.316709 0.333735 0.173201 0.327293 0.230269 0.386136 0.291429 0.295976 0.301554 0.278174 0.237471 0.306931 0.356 0.318792 0.264567 0.288319 0.304113 0.224512 0.23497 0.264985 0.181376 0.276069 0.255645 0.228954 0.313486 0.312743 0.275343 0.364396 0.265402 0.317035 0.222374 0.163515 0.313469 0.293796 0.229317 0.178282 0.236006 0.230282 0.236507 0.23548 0.310476 0.284695 0.305708 0.159745 0.273806 0.188653 0.242728 0.27895 0.280186 0.236924 0.19089 0.234457 0.213206 0.2457 0.252535 0.228674 0.332324 0.251057 0.232332 0.145429 0.184628 0.244611 0.226153 0.227856 0.246126 0.346427 0.259185 0.235033 0.184945 0.237793 0.240285 0.198794 0.217143 0.202376 0.229013 0.182845 0.280837 0.13467 0.274737 0.29188 0.2559 0.231864 0.248497 0.157536 0.251854 0.160175 0.188448 0.239684 0.270354 0.182027 0.164162 0.143809 0.328399 0.178516 0.223677 0.164488 0.158238 0.175677 0.255566 0.231718 0.241822 0.168796 0.108947 0.173297 0.218897 0.378504 0.134432 0.233835 0.233092 0.155737 0.191012 0.160889 0.13429 0.191216 0.260179 0.178086 0.183175 0.177038 0.165874 0.092243 0.170592 0.192285 0.224249 0.147049 0.17171 0.115978 0.117698 0.15595 0.152614 0.249044 0.29907 0.202514 0.167068 0.113389 0.117239 0.184966 0.0920802 0.203896 0.278641 0.16574 0.212901 0.178127 0.239943 0.190936 0.233121 0.180712 0.0934245 0.117974 0.1082 0.225756 0.275234 0.167197 0.125176 0.14084 0.262325 0.329727 0.109574 0.122725 0.146702 0.299529 0.201366 0.065193 0.162905 0.147975 0.223477 0.153608 0.0895417 0.154146 0.17824 0.0782024 0.225339 0.0938086 0.187346 0.185688 0.158526 0.137358 0.165811 0.0563545 0.158292 0.136072 0.142464 0.238494 0.184557 0.122395 0.123247 0.119974 0.199249 0.141454 0.230816 0.136749 0.188381 0.128741 0.209903 0.147094 0.0953868 0.111018 0.232478 0.162763 0.167264 0.135175 0.178637 0.108981 0.213248 0.160809 0.0680445 0.146443 0.180607 0.141187 0.090932 0.196627 0.0909738 0.211803 0.137041 0.10691 0.172257 0.0917712 0.162062 0.108008 0.0783443 0.102493 0.212843 0.0356505 0.140907 0.155582 0.0635105 0.147742 0.0759896 0.144986 0.102305 0.0985306 0.180344 0.0774133 0.178453 0.210196 0.0396126 0.145099 0.202138 0.0592436 0.0970651 0.136828 0.0471652 0.0252046 0.197078 0.184098 0.10319 0.153407 0.177317 0.120775 0.122165 0.126357 0.115928 0.244201 0.0498874 0.179685 0.244819 0.0505595 0.146823 0.168416 0.122286 0.143116 0.131814 0.095153 0.0715641 0.194523 0.112596 0.0731506 0.135555 0.111415 0.119673 0.101182 0.0411115 0.100576 0.302351 0.0403975 0.175464 0.135191 0.124666 0.147529 0.0765198 0.12146 0.143567 0.166028 0.134189 0.150288 0.132444 0.0761984 0.175986 0.00751087 0.13416 0.0580328 0.045896 0.192928 0.0920342 0.168141 0.136811 0.177677 0.14003 0.109561 0.0448105 0.0693304 0.139312 0.20005 0.200764 0.148568 0.104326 0.129417 0.0973407 0.132732 0.106618 0.0219272 0.21278 0.0899342 0.207328 0.144389 0.0619908 0.156037 0.149341 0.143788 -0.00511857 0.0310789 0.200268 0.0767745 0.117539 0.122716 0.106497 0.143395 0.0610138 0.0832166 0.0327364 0.141571 0.166613 0.0330954 0.0728876 0.0733176 0.17705 0.116437 0.110479 0.0863562 0.168905 0.131693 0.0188252 0.117986 0.159373 0.0269623 0.157849 0.112066 0.0965433 0.101424 0.0156563 0.0616818 0.0493279 0.106208 0.121305 0.08616 0.148167 0.204618 0.125585 0.15048 0.128837 0.203633 0.0547554 0.0707374 0.0861015 0.205228 0.204434 0.0803859 0.177977 0.114625 0.186611 0.0971904 0.113861 0.161928 0.145441 0.0863228 0.0970944 0.0836591 0.10848 0.185229 0.0251712 0.158768 0.150685 -0.0118612 0.087855 0.203858 0.15213 0.216621 0.179927 0.0195349 0.0516158 0.121046 0.0903559 0.051144 0.0677732 0.183939 0.167644 0.0362977 0.135935 0.125292 0.0244823 -0.02958 0.0575903 0.0531564 0.0104125 0.0376963 0.106275 0.0995576 0.109427 0.0236139 0.144101 0.0737936 0.0453616 0.158279 0.0571603 0.0511816 0.0555612 0.063761 0.00675936 0.152004 0.174783 0.0219606 -0.00247996 0.138273 0.0821812 0.0720442 0.0146335 0.0958293 0.15415 0.107887 0.02414 0.129785 0.0906272 0.0455286 0.0479335 0.0474283 0.0643664 0.07953 0.016888 0.143992 0.0894499 0.161795 0.113114 0.165757 0.154618 0.100902 0.103365 0.0567929 0.0871829 0.154902 0.0859471 0.0872997 0.0691634 0.103077 0.0832333 0.0274174 -0.00729377 0.0645 0.0645459 0.00968188 0.0446936 -0.0185288 0.157757 0.210947 0.0434328 0.104718 0.140907 0.0503675 0.0926688 0.106238 0.176161 0.122829 0.0618238 0.0315173 0.0863771 0.083083 -0.00198314 0.0847405 0.0735222 0.0480879 0.00296844 0.0922138 0.0905772 0.0598531 0.0601746 0.072253 0.159407 -0.0383059 0.0329743 0.0917336 0.0818639 0.0876839 0.148347 0.0712134 0.0702114 0.0843564 0.0633727 0.0786157 0.0677732 0.0633393 0.0545175 0.11068 0.0857842 0.146176 0.0857801 0.00550268 0.0674308 0.0769791 0.0495033 0.0969232 0.0801855 0.0822939 0.0199942 -0.00938963 0.0576529 +1.69454 2.12985 2.04872 1.96753 1.999 2.14787 1.99837 1.98384 1.97162 2.07032 1.94788 1.95842 1.91196 1.92259 1.92049 1.97119 1.85083 1.8496 1.7652 1.82656 1.91198 1.7918 1.8289 1.80195 1.81541 1.88532 1.67681 1.67171 1.79011 1.77704 1.76934 1.73924 1.75902 1.6559 1.72755 1.69424 1.58099 1.72125 1.69597 1.60403 1.66707 1.64127 1.58162 1.65152 1.53122 1.59355 1.60951 1.52033 1.59794 1.57274 1.55334 1.57355 1.55082 1.53919 1.51059 1.484 1.36338 1.46524 1.57354 1.44946 1.44459 1.49929 1.48449 1.42245 1.42748 1.48737 1.52712 1.425 1.40651 1.45522 1.42943 1.4524 1.3867 1.36092 1.38668 1.33969 1.37469 1.40153 1.313 1.34647 1.37456 1.29556 1.2574 1.3475 1.31736 1.24325 1.18549 1.25692 1.22056 1.23253 1.33949 1.27471 1.32247 1.24773 1.18533 1.21615 1.32792 1.2275 1.09047 1.1791 1.26346 1.20218 1.12776 1.24974 1.30313 1.10548 1.17129 1.13822 1.18898 1.21816 1.11838 1.19508 1.14532 1.25356 1.06832 1.0414 1.14947 1.21659 1.12474 1.05806 1.0886 1.09973 1.12989 1.09265 1.16032 1.005 1.09703 1.07945 1.10833 1.01634 0.964305 1.03091 1.03442 1.13783 1.06171 1.15211 1.02922 1.01147 1.04882 0.969219 1.03539 0.967875 0.958314 0.942591 1.02836 1.04474 0.896591 0.978091 0.992128 0.966201 0.866238 1.08693 1.07058 0.967299 0.897705 0.878542 0.834237 0.920079 0.940954 0.976847 0.86967 0.894153 0.947568 0.843384 0.994829 0.942624 0.955914 0.861262 0.984963 0.908339 0.930304 0.864138 0.83933 0.91059 0.911667 0.809287 0.831502 0.877941 0.859111 0.8907 0.882876 0.802385 0.730437 0.828375 0.844649 0.878972 0.810627 0.809963 0.768384 0.960076 0.828137 0.860176 0.788545 0.810389 0.775778 0.824718 0.757416 0.769198 0.75398 0.854506 0.734445 0.74621 0.743442 0.721553 0.850273 0.672079 0.778412 0.824693 0.794161 0.774179 0.818313 0.808698 0.78837 0.700732 0.691643 0.773728 0.700598 0.649354 0.700231 0.763295 0.779506 0.732754 0.621686 0.712781 0.6764 0.698728 0.687497 0.642912 0.766676 0.604381 0.691618 0.684762 0.693292 0.761048 0.598795 0.710497 0.736541 0.674408 0.651112 0.546323 0.750636 0.633184 0.631585 0.658305 0.67918 0.727961 0.678625 0.70823 0.69244 0.620275 0.696315 0.615098 0.56972 0.629752 0.680992 0.701024 0.590916 0.620743 0.60636 0.564952 0.615783 0.597759 0.607053 0.58012 0.590115 0.648494 0.595379 0.599412 0.60919 0.576345 0.547913 0.577857 0.516793 0.548815 0.53318 0.61099 0.593509 0.513265 0.538374 0.586804 0.647024 0.522842 0.598365 0.577197 0.530612 0.555007 0.557871 0.684562 0.547584 0.526976 0.497575 0.51843 0.511741 0.602423 0.495321 0.59001 0.545492 0.520475 0.605788 0.506288 0.552473 0.550535 0.575239 0.592862 0.537772 0.5348 0.591012 0.447245 0.487455 0.576675 0.483096 0.574391 0.488169 0.556798 0.525732 0.530825 0.599283 0.455921 0.455992 0.583134 0.622208 0.552514 0.539935 0.458664 0.442983 0.457011 0.547066 0.396824 0.568601 0.362805 0.490653 0.50132 0.455437 0.565052 0.502852 0.525494 0.421606 0.526796 0.453224 0.414321 0.399608 0.531301 0.569473 0.456652 0.366425 0.579293 0.45772 0.443196 0.41635 0.469686 0.499717 0.388674 0.438474 0.42655 0.554756 0.401529 0.405725 0.471544 0.374529 0.387309 0.495813 0.449729 0.417866 0.357687 0.41496 0.550281 0.475343 0.389793 0.436069 0.460079 0.420024 0.462159 0.365745 0.432837 0.411478 0.439421 0.434749 0.400518 0.425406 0.333472 0.436728 0.332236 0.497817 0.377723 0.522108 0.448172 0.405683 0.458046 0.340365 0.479222 0.283451 0.36038 0.38229 0.429572 0.442406 0.424141 0.398506 0.382203 0.399775 0.31035 0.299583 0.420588 0.30532 0.32989 0.250915 0.326629 0.386169 0.31774 0.338068 0.367377 0.36278 0.352109 0.295775 0.309645 0.435376 0.379393 0.322408 0.366129 0.34565 0.322592 0.435647 0.395851 0.340056 0.251044 0.324266 0.232787 0.368475 0.363962 0.274458 0.369264 0.285229 0.313924 0.292807 0.240673 0.329739 0.282278 0.366438 0.357061 0.391246 0.411578 0.348109 0.358898 0.31463 0.333459 0.427907 0.400356 0.33591 0.337576 0.322604 0.281743 0.317477 0.444319 0.37776 0.331092 0.285146 0.435042 0.35613 0.283864 0.362496 0.327013 0.289571 0.275836 0.337651 0.312801 0.271986 0.198702 0.377368 0.343684 0.231893 0.23358 0.325021 0.302476 0.324032 0.401562 0.388152 0.302577 0.301174 0.413991 0.244585 0.194694 0.272888 0.28973 0.256288 0.20314 0.257716 0.294619 0.279159 0.205236 0.386829 0.290227 0.322633 0.237588 0.226503 0.351474 0.251094 0.311444 0.282394 0.233338 0.238828 0.299111 0.325284 0.35833 0.274345 0.380395 0.274641 0.303328 0.227965 0.312413 0.243396 0.211532 0.242506 0.291717 0.274504 0.279768 0.272875 0.222579 0.271164 0.239388 0.306731 0.287622 0.22376 0.206814 0.245345 0.172249 0.28244 0.250848 0.277301 0.273184 0.175902 0.256868 0.241312 0.215227 0.29388 0.166755 0.177301 0.271928 0.23672 0.287079 0.219978 0.269014 0.184661 0.264212 0.264029 0.141917 0.219093 0.281764 0.304652 0.257307 0.28601 0.276161 0.288778 0.187016 0.188068 0.270992 0.24833 0.228695 0.21511 0.177418 0.17862 0.202155 0.24689 0.137024 0.247687 0.19312 0.197203 0.233467 0.276399 0.221665 0.166091 0.271681 0.121552 0.20582 0.275986 0.22877 0.198573 0.234924 0.351057 0.146138 0.255023 0.174566 0.252163 0.194552 0.190419 0.188724 0.214254 0.169598 0.201896 0.113222 0.259006 0.33991 0.205273 0.232211 0.202981 0.235668 0.28533 0.091671 0.179159 0.206317 0.285338 0.259515 0.21736 0.123013 0.16716 0.223163 0.182206 0.132423 0.120683 0.130662 0.119948 0.172737 0.275961 0.284156 0.29436 0.129146 0.0580746 0.230307 0.188427 0.178265 0.171047 0.16923 0.105803 0.154526 0.21339 0.13358 0.237985 0.21283 0.155687 0.241225 0.113465 0.104455 0.138736 0.19517 0.214993 0.1061 0.15433 0.215419 0.192535 0.0667294 0.193567 0.102409 0.128232 0.166917 0.158417 0.224666 0.210421 0.156221 0.00987393 0.168349 0.221118 0.139504 0.249671 0.236073 0.240377 0.285522 0.193717 0.195938 0.112567 0.139316 0.0100284 0.295091 0.298589 0.122466 0.238615 0.20281 0.139813 0.10977 0.166863 0.0811291 0.261782 0.213381 0.260722 0.177714 0.160563 0.212141 0.186615 0.186177 0.170366 0.2311 0.111452 0.216179 0.0883686 0.176123 0.128703 0.0814923 0.158496 0.159148 0.0913662 0.145429 0.140878 0.167306 0.109477 0.12763 0.110738 0.199328 0.156192 0.164112 0.138252 0.195984 0.166291 0.162125 0.157645 0.164212 0.130227 0.142982 0.0838261 0.0349032 0.200572 0.176933 0.207532 0.179526 0.107411 0.151436 0.093938 0.184089 0.143992 0.107244 0.109135 0.23292 0.207507 0.217757 0.109937 0.136465 0.141821 0.126161 0.0357382 0.201746 0.278608 0.13353 0.17424 0.124428 0.191813 0.169961 0.165014 0.109878 0.172454 0.125806 0.111557 0.176295 0.108112 0.18429 0.150401 0.0573189 0.10577 0.225305 0.0829285 0.235087 0.09408 0.15929 0.0472237 0.184653 0.118149 0.0744115 0.219623 0.0341434 0.21331 0.0773632 0.143445 0.154342 0.23039 0.11923 0.0994616 0.120253 0.17918 0.103453 0.119606 0.181747 0.112876 0.0725536 0.0274717 0.099971 0.262192 0.180286 0.0905145 0.170111 0.148526 0.119456 0.138319 0.0973532 0.0980212 0.0233092 0.0451696 0.187208 0.116529 0.174124 0.169544 0.0848448 0.0995409 0.151499 0.130524 0.12862 0.0655479 0.228841 0.0948941 0.0214137 0.0523256 0.0934621 0.175409 0.0839681 0.1959 0.119022 0.126524 0.0400093 0.0819683 0.107294 0.179605 0.120541 0.124103 0.0754427 0.070537 0.151328 0.0988312 0.126416 0.0897547 0.1043 0.0756097 0.154296 0.129806 0.0768121 0.224524 0.109962 0.0915583 0.162776 -0.031488 0.150986 0.068867 0.121293 0.152092 0.0880513 0.012905 0.15314 0.069606 0.147053 0.198547 0.126754 0.0846361 0.125618 0.179334 0.0221694 0.111665 0.0750502 0.0742612 0.104434 0.0717144 0.0446853 0.131396 0.117832 0.101048 0.172441 0.0879719 0.0760439 0.13644 0.0393329 0.0865691 -0.00321477 0.175923 0.156672 0.16966 0.100806 0.148618 0.0455453 0.0842311 0.163031 0.137784 0.0409528 0.209666 0.0149048 0.106601 0.181826 0.0266867 -0.00728125 0.145854 0.18644 0.0851914 0.100409 0.0901889 0.108212 0.0779811 0.137534 0.0985013 0.0268162 0.105824 0.0964639 0.135638 0.0670342 0.0708042 0.136724 0.15223 0.0211882 0.103666 0.0318888 0.0468104 0.0979252 0.0769123 0.130653 0.114162 0.112346 0.107912 0.0841852 0.0076904 0.103474 0.0631472 0.102827 0.147207 0.0943514 0.0723365 0.122754 0.151153 0.116976 0.12356 0.0673431 0.0925979 0.0500836 0.0214012 0.197174 0.134331 0.0996161 0.0528475 0.016078 0.0985473 0.0578366 0.0887694 0.0480337 0.0150176 0.0175059 0.111995 0.0425978 0.0719482 0.0683118 0.0767286 0.166003 0.0408985 -0.00343186 0.0163911 -0.0295842 0.0729084 0.12227 0.0697521 0.168896 0.163114 0.139488 0.0750795 0.10428 0.0790624 0.20959 0.00479711 0.0554276 0.0813295 0.0473698 -0.0338928 0.166108 -0.0189504 0.0389321 0.0498665 0.00261774 0.153311 0.00964013 -0.0168796 0.122241 0.184561 -0.00437543 0.0796052 0.0981799 0.0752715 0.0414204 0.103687 0.103703 -0.0140991 0.0627882 0.132315 0.0671469 0.0415164 0.0485973 0.0820058 0.0722321 0.117565 0.0601245 0.0122119 0.0585923 0.0979001 0.0538202 0.125 -0.0380303 0.163815 -0.056605 0.0844315 0.0521753 0.100539 0.101591 0.0848448 0.0296009 0.148572 0.0395166 0.0640824 0.0123581 0.0392202 0.153933 0.0625168 0.117656 0.10266 0.0804861 +1.67608 1.96257 1.94364 1.97477 1.84699 1.87568 1.96644 1.85411 1.78666 1.89095 1.79472 1.85196 1.74103 1.74005 1.69779 1.85781 1.80978 1.76928 1.83115 1.69249 1.59134 1.6995 1.76904 1.6954 1.66111 1.66545 1.68778 1.62822 1.61939 1.6309 1.56477 1.59399 1.44605 1.5376 1.54091 1.64096 1.60091 1.60623 1.64546 1.48637 1.54148 1.56779 1.41599 1.49571 1.49786 1.5324 1.48434 1.4053 1.50373 1.44523 1.43025 1.39583 1.37739 1.40137 1.42358 1.42312 1.41654 1.48567 1.39136 1.36613 1.47807 1.33875 1.32983 1.30427 1.3989 1.32446 1.42059 1.27115 1.30556 1.32107 1.36899 1.28054 1.33703 1.24265 1.31071 1.1987 1.13816 1.23546 1.27267 1.36241 1.18663 1.24346 1.30231 1.24139 1.10652 1.22946 1.22448 1.07957 1.17634 1.26186 1.24358 1.18866 1.17698 1.22051 1.16755 1.16622 1.18639 1.22624 1.04952 1.14355 1.14669 1.11122 1.10775 1.19638 1.09728 1.20614 1.04776 1.065 1.0799 1.15808 1.19464 1.01751 1.00583 1.04308 1.03789 0.977407 1.00901 0.970768 1.11962 1.05377 1.01962 1.01595 1.01037 1.01229 1.043 1.03981 0.900578 0.95798 0.879273 1.04432 0.891672 0.85674 0.974584 1.06472 0.971783 0.881444 0.947989 0.959458 1.00441 0.964201 0.990458 0.959333 0.880033 0.901822 0.963967 0.943526 0.960018 0.82706 0.963086 0.955947 0.921515 0.898332 0.900874 0.818405 0.852444 0.824459 0.856753 0.780942 0.815812 0.8969 0.859846 0.835961 0.775315 0.84902 0.875148 0.915433 0.829352 0.71911 0.898712 0.87506 0.953029 0.788716 0.927006 0.884667 0.781289 0.8494 0.904385 0.828876 0.732533 0.744941 0.818864 0.74186 0.742374 0.822734 0.790182 0.759591 0.80196 0.795676 0.824237 0.676016 0.734036 0.73252 0.769081 0.763817 0.749204 0.725398 0.767161 0.783527 0.756435 0.733289 0.774237 0.766426 0.671686 0.707278 0.743847 0.710915 0.708335 0.734737 0.666008 0.832141 0.65436 0.763082 0.668501 0.717232 0.721745 0.71319 0.643476 0.649676 0.67402 0.645012 0.655216 0.766113 0.5433 0.709049 0.732905 0.582637 0.610401 0.750987 0.720392 0.577456 0.547379 0.688236 0.657629 0.745384 0.687084 0.689681 0.626078 0.594494 0.589472 0.594139 0.582345 0.574838 0.634975 0.628491 0.592352 0.612008 0.571373 0.628078 0.66329 0.627757 0.550306 0.59839 0.594674 0.54459 0.604351 0.649074 0.61757 0.579744 0.588374 0.518321 0.60937 0.581932 0.527214 0.558581 0.644114 0.577627 0.612931 0.616701 0.426629 0.624471 0.56668 0.527477 0.447379 0.546031 0.596252 0.540365 0.533222 0.569001 0.487568 0.575439 0.511845 0.522642 0.613082 0.467978 0.47083 0.496298 0.516008 0.542152 0.462434 0.459896 0.512071 0.546369 0.50031 0.526345 0.536144 0.518688 0.521047 0.496565 0.51929 0.54636 0.459862 0.439029 0.457549 0.532992 0.445788 0.385079 0.520062 0.482921 0.518354 0.582858 0.411707 0.479785 0.423782 0.478566 0.411227 0.453266 0.470179 0.431994 0.461227 0.493346 0.436215 0.460401 0.487463 0.510418 0.503984 0.457002 0.437864 0.426863 0.465486 0.420099 0.42693 0.420625 0.496139 0.362066 0.495509 0.438854 0.42169 0.42397 0.43027 0.39879 0.441534 0.323235 0.415599 0.430683 0.467106 0.462438 0.441062 0.470676 0.463624 0.43725 0.446548 0.543659 0.408689 0.378904 0.442907 0.337772 0.369845 0.470646 0.435276 0.463687 0.450268 0.463908 0.363018 0.329539 0.406267 0.402401 0.31134 0.336419 0.456969 0.395195 0.43348 0.36969 0.474316 0.380044 0.370103 0.358259 0.489517 0.334536 0.370337 0.35481 0.420095 0.341446 0.317941 0.325898 0.297015 0.386891 0.392966 0.429681 0.436879 0.360388 0.257207 0.454168 0.338286 0.332219 0.425422 0.251871 0.388716 0.350017 0.414734 0.496636 0.292114 0.38123 0.424592 0.399746 0.271986 0.293191 0.355983 0.264947 0.329856 0.308213 0.274061 0.286749 0.373272 0.340031 0.407745 0.277931 0.413782 0.305766 0.41096 0.36248 0.360818 0.420475 0.286632 0.218137 0.34861 0.417402 0.296627 0.3351 0.378019 0.228896 0.290064 0.312609 0.35686 0.385977 0.35858 0.354602 0.379873 0.304668 0.390164 0.41926 0.289864 0.269281 0.342598 0.249821 0.343918 0.292277 0.249203 0.358209 0.230971 0.331455 0.220825 0.216625 0.240724 0.282207 0.319686 0.385154 0.274462 0.387334 0.320517 0.274737 0.35613 0.275539 0.311089 0.383134 0.343588 0.243487 0.1563 0.301253 0.238369 0.242277 0.228011 0.264588 0.31863 0.347287 0.395625 0.325531 0.209436 0.0906732 0.34474 0.318667 0.332754 0.304318 0.335505 0.207774 0.193842 0.293016 0.213532 0.291834 0.310551 0.279514 0.178745 0.20038 0.213924 0.238394 0.2018 0.297258 0.321581 0.246702 0.231543 0.268145 0.229902 0.24646 0.284616 0.13988 0.120111 0.297228 0.207745 0.213068 0.301115 0.218863 0.294502 0.246978 0.245809 0.281146 0.198309 0.168583 0.231288 0.225689 0.320091 0.304535 0.237592 0.155937 0.227977 0.221276 0.304844 0.217243 0.152008 0.21187 0.269978 0.225739 0.204935 0.306781 0.219736 0.226132 0.263143 0.156033 0.216049 0.290523 0.231397 0.274604 0.236415 0.251403 0.218922 0.248543 0.189738 0.296264 0.177647 0.273209 0.215193 0.219761 0.159958 0.201282 0.264826 0.212667 0.135212 0.250326 0.220308 0.245859 0.179639 0.190055 0.249675 0.225063 0.213068 0.219569 0.160809 0.2351 0.123372 0.124424 0.255891 0.225322 0.198088 0.2436 0.207131 0.190389 0.249838 0.187943 0.165619 0.184428 0.176487 0.203695 0.0301395 0.249925 0.207858 0.207394 0.168066 0.176992 0.148543 0.116437 0.174825 0.124624 0.167093 0.266174 0.137997 0.285876 0.137162 0.140644 0.131526 0.203871 0.186807 0.229297 0.176328 0.171669 0.185192 0.223861 0.211928 0.142093 0.084849 0.133835 0.160125 0.222333 0.123969 0.200493 0.166037 0.212079 0.219281 0.147504 0.262016 0.178286 0.205248 0.163461 0.213974 0.177393 0.211983 0.126558 0.216734 0.211223 0.0758184 0.108885 0.212534 0.248581 0.147616 0.197804 0.0821018 0.127259 0.16106 0.235843 0.0659904 0.133764 0.225038 0.192552 0.176612 0.126674 0.145065 0.0418254 0.118475 0.150852 0.0995409 0.197078 0.220541 0.0991735 0.137742 0.171564 0.154121 0.139809 0.152839 0.139108 0.226332 0.0307407 0.118834 0.0634729 0.183275 0.133931 0.134294 0.158922 0.220162 0.082035 0.14828 0.0668672 0.195646 0.109845 0.205933 0.183171 0.192899 0.238244 0.145775 0.177426 0.0779101 0.202956 0.140176 0.170533 0.177551 0.277627 0.163841 0.154568 0.114283 0.124929 0.174441 0.152171 0.160288 0.207165 0.0809746 0.182845 0.119702 0.155411 0.0973031 0.158371 0.221084 0.187505 0.102977 0.171343 0.184716 0.18095 0.156985 0.133258 0.159774 0.0906481 0.196552 0.184895 0.190548 0.12796 0.19598 0.0408192 0.0275134 0.113005 0.140268 0.20261 0.130912 0.181025 0.155348 0.187216 0.0878926 0.245266 0.167218 0.198535 0.175631 0.192201 0.192865 0.11139 0.0924517 0.137417 0.0881682 0.153203 0.13677 0.0386065 0.0730003 0.189438 0.110617 0.192577 0.0333459 0.103557 0.113619 0.0826195 0.103044 0.0915959 0.0608385 0.0357883 0.120579 0.0777807 0.0880346 0.162216 0.0852331 0.0107799 0.124829 0.153929 0.179676 0.020228 0.144431 0.116746 0.0957416 0.058847 0.208392 0.109941 0.0988353 0.0828575 0.0315173 0.0443972 0.155257 0.100894 0.170065 0.0978292 0.233279 0.05453 0.157904 0.123944 0.124879 0.18525 0.0555362 0.145449 0.0823941 0.0702364 0.115072 0.0277013 0.168425 0.102818 0.166872 0.0785489 0.108012 0.0974117 0.105106 -0.0281355 0.11121 0.127785 0.0514906 0.107227 0.0946937 0.188987 0.109377 0.111177 0.0726997 0.125894 0.188456 0.241588 0.134741 0.206572 0.0838178 0.210484 0.0756139 0.0708042 0.092005 0.0616985 0.194978 0.0444682 0.10562 0.144393 0.0183659 0.0457374 0.14757 0.0418713 0.121602 0.117105 0.103156 0.190556 0.16417 0.0719899 0.194402 0.19284 0.121802 0.126695 0.1559 0.0902181 0.196443 0.0761942 0.127192 0.0649634 0.113607 0.171869 0.100823 0.132678 0.0495367 0.089262 0.159377 0.0798974 0.0608134 0.169047 0.132261 0.0837385 0.15863 0.0859095 0.183371 0.0246994 0.0711758 0.0508476 0.0457207 0.121143 0.132373 0.103182 0.185488 0.0563378 0.155399 0.0579159 0.137308 0.0553483 0.201098 0.094176 0.0425644 0.0891159 0.00336089 -0.0647797 0.154618 0.0177731 0.119305 0.167055 0.0285363 0.18019 0.143571 0.084728 0.0344648 -0.00599951 0.248648 0.12771 0.128833 0.112596 -0.0334461 0.155102 0.051858 0.103269 0.0247788 0.0546427 0.08702 0.160526 0.12943 0.158517 0.10015 0.136244 0.128019 0.141755 0.199787 0.0971027 0.0228624 0.028649 0.0918171 0.0132348 0.112546 0.0444849 0.0904644 0.0932116 0.0151595 0.0623164 0.164091 -0.0321435 0.022541 0.0596778 0.125597 0.226011 0.081701 0.119097 -0.00176604 0.0990191 0.0247997 0.026286 0.0763403 0.11842 0.0767119 0.124491 0.1688 0.0901972 0.075259 0.149599 0.082511 0.084348 0.0824442 0.0866819 0.0676813 -0.00992403 0.105887 -0.0338177 0.133384 0.174817 0.15 0.0286448 0.0228165 0.016174 0.0598156 0.0866067 0.0530813 0.102898 0.111832 0.0217978 0.0653182 0.0375919 0.00956915 -0.0161532 0.136957 0.0283067 0.127639 0.0385772 0.0330954 0.109031 0.079434 0.115193 -0.00487225 0.0128382 0.17533 0.00769874 0.108233 0.0927899 0.0700611 0.104359 0.0253674 0.0537367 0.0884228 0.0654769 0.10582 0.0266868 0.017794 0.0476704 0.056964 0.0490858 0.07118 0.0826029 0.0449608 0.0241609 0.0892495 0.0547471 0.118412 0.0944683 0.0939506 0.0817344 0.0538202 -0.041458 0.0738061 0.00723532 -0.0471193 0.00811207 0.122646 0.0159653 -0.00355712 0.115878 0.00805362 0.119531 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/11/resultsFit.par b/example_data/bgr/MouseLift/cpmgfastautotest/11/resultsFit.par new file mode 100644 index 0000000..8dbbb58 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/11/resultsFit.par @@ -0,0 +1,6 @@ +depth = 8500 um, E = (1.941 ± 0.009), T2 = (17.5 ± 0.1) ms +depth = 7500 um, E = (2.011 ± 0.009), T2 = (17.8 ± 0.1) ms +depth = 6500 um, E = (1.870 ± 0.009), T2 = (18.0 ± 0.1) ms +depth = 5500 um, E = (1.872 ± 0.009), T2 = (18.1 ± 0.1) ms +depth = 4500 um, E = (1.893 ± 0.009), T2 = (17.8 ± 0.1) ms +depth = 3500 um, E = (1.766 ± 0.009), T2 = (17.8 ± 0.1) ms diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/6/GUI.par b/example_data/bgr/MouseLift/cpmgfastautotest/6/GUI.par new file mode 100644 index 0000000..0629c86 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/6/GUI.par @@ -0,0 +1,20 @@ +maxDepth = 15000 +nrPntsRemFit = 0 +enableLift = "yes" +refSignal = 1 +refSignalCheck = "no" +nrScans = 8 +fitType = "exp" +x_minimum = 0.1 +x_maximum = 100 +alpha = 0.1 +dataDirectory = "C:\Costabel.S\Desktop\NMR-Mouse Data\GnaSamples2022" +repTime = 8000 +expName = "cpmgfastautotest" +nrEchoes = 1000 +probeHead = "PM25-10mm.par" +resolution = 200 +expNr = 6 +incExpNr = "yes" +depthList = "" +depthListValues = ["8500","7500","6500","5500","4500","3500"] diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/6/T2Axis.dat b/example_data/bgr/MouseLift/cpmgfastautotest/6/T2Axis.dat new file mode 100644 index 0000000..e60076d --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/6/T2Axis.dat @@ -0,0 +1,1000 @@ +0.0725 +0.145 +0.2175 +0.29 +0.3625 +0.435 +0.5075 +0.58 +0.6525 +0.725 +0.7975 +0.87 +0.9425 +1.015 +1.0875 +1.16 +1.2325 +1.305 +1.3775 +1.45 +1.5225 +1.595 +1.6675 +1.74 +1.8125 +1.885 +1.9575 +2.03 +2.1025 +2.175 +2.2475 +2.32 +2.3925 +2.465 +2.5375 +2.61 +2.6825 +2.755 +2.8275 +2.9 +2.9725 +3.045 +3.1175 +3.19 +3.2625 +3.335 +3.4075 +3.48 +3.5525 +3.625 +3.6975 +3.77 +3.8425 +3.915 +3.9875 +4.06 +4.1325 +4.205 +4.2775 +4.35 +4.4225 +4.495 +4.5675 +4.64 +4.7125 +4.785 +4.8575 +4.93 +5.0025 +5.075 +5.1475 +5.22 +5.2925 +5.365 +5.4375 +5.51 +5.5825 +5.655 +5.7275 +5.8 +5.8725 +5.945 +6.0175 +6.09 +6.1625 +6.235 +6.3075 +6.38 +6.4525 +6.525 +6.5975 +6.67 +6.7425 +6.815 +6.8875 +6.96 +7.0325 +7.105 +7.1775 +7.25 +7.3225 +7.395 +7.4675 +7.54 +7.6125 +7.685 +7.7575 +7.83 +7.9025 +7.975 +8.0475 +8.12 +8.1925 +8.265 +8.3375 +8.41 +8.4825 +8.555 +8.6275 +8.7 +8.7725 +8.845 +8.9175 +8.99 +9.0625 +9.135 +9.2075 +9.28 +9.3525 +9.425 +9.4975 +9.57 +9.6425 +9.715 +9.7875 +9.86 +9.9325 +10.005 +10.0775 +10.15 +10.2225 +10.295 +10.3675 +10.44 +10.5125 +10.585 +10.6575 +10.73 +10.8025 +10.875 +10.9475 +11.02 +11.0925 +11.165 +11.2375 +11.31 +11.3825 +11.455 +11.5275 +11.6 +11.6725 +11.745 +11.8175 +11.89 +11.9625 +12.035 +12.1075 +12.18 +12.2525 +12.325 +12.3975 +12.47 +12.5425 +12.615 +12.6875 +12.76 +12.8325 +12.905 +12.9775 +13.05 +13.1225 +13.195 +13.2675 +13.34 +13.4125 +13.485 +13.5575 +13.63 +13.7025 +13.775 +13.8475 +13.92 +13.9925 +14.065 +14.1375 +14.21 +14.2825 +14.355 +14.4275 +14.5 +14.5725 +14.645 +14.7175 +14.79 +14.8625 +14.935 +15.0075 +15.08 +15.1525 +15.225 +15.2975 +15.37 +15.4425 +15.515 +15.5875 +15.66 +15.7325 +15.805 +15.8775 +15.95 +16.0225 +16.095 +16.1675 +16.24 +16.3125 +16.385 +16.4575 +16.53 +16.6025 +16.675 +16.7475 +16.82 +16.8925 +16.965 +17.0375 +17.11 +17.1825 +17.255 +17.3275 +17.4 +17.4725 +17.545 +17.6175 +17.69 +17.7625 +17.835 +17.9075 +17.98 +18.0525 +18.125 +18.1975 +18.27 +18.3425 +18.415 +18.4875 +18.56 +18.6325 +18.705 +18.7775 +18.85 +18.9225 +18.995 +19.0675 +19.14 +19.2125 +19.285 +19.3575 +19.43 +19.5025 +19.575 +19.6475 +19.72 +19.7925 +19.865 +19.9375 +20.01 +20.0825 +20.155 +20.2275 +20.3 +20.3725 +20.445 +20.5175 +20.59 +20.6625 +20.735 +20.8075 +20.88 +20.9525 +21.025 +21.0975 +21.17 +21.2425 +21.315 +21.3875 +21.46 +21.5325 +21.605 +21.6775 +21.75 +21.8225 +21.895 +21.9675 +22.04 +22.1125 +22.185 +22.2575 +22.33 +22.4025 +22.475 +22.5475 +22.62 +22.6925 +22.765 +22.8375 +22.91 +22.9825 +23.055 +23.1275 +23.2 +23.2725 +23.345 +23.4175 +23.49 +23.5625 +23.635 +23.7075 +23.78 +23.8525 +23.925 +23.9975 +24.07 +24.1425 +24.215 +24.2875 +24.36 +24.4325 +24.505 +24.5775 +24.65 +24.7225 +24.795 +24.8675 +24.94 +25.0125 +25.085 +25.1575 +25.23 +25.3025 +25.375 +25.4475 +25.52 +25.5925 +25.665 +25.7375 +25.81 +25.8825 +25.955 +26.0275 +26.1 +26.1725 +26.245 +26.3175 +26.39 +26.4625 +26.535 +26.6075 +26.68 +26.7525 +26.825 +26.8975 +26.97 +27.0425 +27.115 +27.1875 +27.26 +27.3325 +27.405 +27.4775 +27.55 +27.6225 +27.695 +27.7675 +27.84 +27.9125 +27.985 +28.0575 +28.13 +28.2025 +28.275 +28.3475 +28.42 +28.4925 +28.565 +28.6375 +28.71 +28.7825 +28.855 +28.9275 +29 +29.0725 +29.145 +29.2175 +29.29 +29.3625 +29.435 +29.5075 +29.58 +29.6525 +29.725 +29.7975 +29.87 +29.9425 +30.015 +30.0875 +30.16 +30.2325 +30.305 +30.3775 +30.45 +30.5225 +30.595 +30.6675 +30.74 +30.8125 +30.885 +30.9575 +31.03 +31.1025 +31.175 +31.2475 +31.32 +31.3925 +31.465 +31.5375 +31.61 +31.6825 +31.755 +31.8275 +31.9 +31.9725 +32.045 +32.1175 +32.19 +32.2625 +32.335 +32.4075 +32.48 +32.5525 +32.625 +32.6975 +32.77 +32.8425 +32.915 +32.9875 +33.06 +33.1325 +33.205 +33.2775 +33.35 +33.4225 +33.495 +33.5675 +33.64 +33.7125 +33.785 +33.8575 +33.93 +34.0025 +34.075 +34.1475 +34.22 +34.2925 +34.365 +34.4375 +34.51 +34.5825 +34.655 +34.7275 +34.8 +34.8725 +34.945 +35.0175 +35.09 +35.1625 +35.235 +35.3075 +35.38 +35.4525 +35.525 +35.5975 +35.67 +35.7425 +35.815 +35.8875 +35.96 +36.0325 +36.105 +36.1775 +36.25 +36.3225 +36.395 +36.4675 +36.54 +36.6125 +36.685 +36.7575 +36.83 +36.9025 +36.975 +37.0475 +37.12 +37.1925 +37.265 +37.3375 +37.41 +37.4825 +37.555 +37.6275 +37.7 +37.7725 +37.845 +37.9175 +37.99 +38.0625 +38.135 +38.2075 +38.28 +38.3525 +38.425 +38.4975 +38.57 +38.6425 +38.715 +38.7875 +38.86 +38.9325 +39.005 +39.0775 +39.15 +39.2225 +39.295 +39.3675 +39.44 +39.5125 +39.585 +39.6575 +39.73 +39.8025 +39.875 +39.9475 +40.02 +40.0925 +40.165 +40.2375 +40.31 +40.3825 +40.455 +40.5275 +40.6 +40.6725 +40.745 +40.8175 +40.89 +40.9625 +41.035 +41.1075 +41.18 +41.2525 +41.325 +41.3975 +41.47 +41.5425 +41.615 +41.6875 +41.76 +41.8325 +41.905 +41.9775 +42.05 +42.1225 +42.195 +42.2675 +42.34 +42.4125 +42.485 +42.5575 +42.63 +42.7025 +42.775 +42.8475 +42.92 +42.9925 +43.065 +43.1375 +43.21 +43.2825 +43.355 +43.4275 +43.5 +43.5725 +43.645 +43.7175 +43.79 +43.8625 +43.935 +44.0075 +44.08 +44.1525 +44.225 +44.2975 +44.37 +44.4425 +44.515 +44.5875 +44.66 +44.7325 +44.805 +44.8775 +44.95 +45.0225 +45.095 +45.1675 +45.24 +45.3125 +45.385 +45.4575 +45.53 +45.6025 +45.675 +45.7475 +45.82 +45.8925 +45.965 +46.0375 +46.11 +46.1825 +46.255 +46.3275 +46.4 +46.4725 +46.545 +46.6175 +46.69 +46.7625 +46.835 +46.9075 +46.98 +47.0525 +47.125 +47.1975 +47.27 +47.3425 +47.415 +47.4875 +47.56 +47.6325 +47.705 +47.7775 +47.85 +47.9225 +47.995 +48.0675 +48.14 +48.2125 +48.285 +48.3575 +48.43 +48.5025 +48.575 +48.6475 +48.72 +48.7925 +48.865 +48.9375 +49.01 +49.0825 +49.155 +49.2275 +49.3 +49.3725 +49.445 +49.5175 +49.59 +49.6625 +49.735 +49.8075 +49.88 +49.9525 +50.025 +50.0975 +50.17 +50.2425 +50.315 +50.3875 +50.46 +50.5325 +50.605 +50.6775 +50.75 +50.8225 +50.895 +50.9675 +51.04 +51.1125 +51.185 +51.2575 +51.33 +51.4025 +51.475 +51.5475 +51.62 +51.6925 +51.765 +51.8375 +51.91 +51.9825 +52.055 +52.1275 +52.2 +52.2725 +52.345 +52.4175 +52.49 +52.5625 +52.635 +52.7075 +52.78 +52.8525 +52.925 +52.9975 +53.07 +53.1425 +53.215 +53.2875 +53.36 +53.4325 +53.505 +53.5775 +53.65 +53.7225 +53.795 +53.8675 +53.94 +54.0125 +54.085 +54.1575 +54.23 +54.3025 +54.375 +54.4475 +54.52 +54.5925 +54.665 +54.7375 +54.81 +54.8825 +54.955 +55.0275 +55.1 +55.1725 +55.245 +55.3175 +55.39 +55.4625 +55.535 +55.6075 +55.68 +55.7525 +55.825 +55.8975 +55.97 +56.0425 +56.115 +56.1875 +56.26 +56.3325 +56.405 +56.4775 +56.55 +56.6225 +56.695 +56.7675 +56.84 +56.9125 +56.985 +57.0575 +57.13 +57.2025 +57.275 +57.3475 +57.42 +57.4925 +57.565 +57.6375 +57.71 +57.7825 +57.855 +57.9275 +58 +58.0725 +58.145 +58.2175 +58.29 +58.3625 +58.435 +58.5075 +58.58 +58.6525 +58.725 +58.7975 +58.87 +58.9425 +59.015 +59.0875 +59.16 +59.2325 +59.305 +59.3775 +59.45 +59.5225 +59.595 +59.6675 +59.74 +59.8125 +59.885 +59.9575 +60.03 +60.1025 +60.175 +60.2475 +60.32 +60.3925 +60.465 +60.5375 +60.61 +60.6825 +60.755 +60.8275 +60.9 +60.9725 +61.045 +61.1175 +61.19 +61.2625 +61.335 +61.4075 +61.48 +61.5525 +61.625 +61.6975 +61.77 +61.8425 +61.915 +61.9875 +62.06 +62.1325 +62.205 +62.2775 +62.35 +62.4225 +62.495 +62.5675 +62.64 +62.7125 +62.785 +62.8575 +62.93 +63.0025 +63.075 +63.1475 +63.22 +63.2925 +63.365 +63.4375 +63.51 +63.5825 +63.655 +63.7275 +63.8 +63.8725 +63.945 +64.0175 +64.09 +64.1625 +64.235 +64.3075 +64.38 +64.4525 +64.525 +64.5975 +64.67 +64.7425 +64.815 +64.8875 +64.96 +65.0325 +65.105 +65.1775 +65.25 +65.3225 +65.395 +65.4675 +65.54 +65.6125 +65.685 +65.7575 +65.83 +65.9025 +65.975 +66.0475 +66.12 +66.1925 +66.265 +66.3375 +66.41 +66.4825 +66.555 +66.6275 +66.7 +66.7725 +66.845 +66.9175 +66.99 +67.0625 +67.135 +67.2075 +67.28 +67.3525 +67.425 +67.4975 +67.57 +67.6425 +67.715 +67.7875 +67.86 +67.9325 +68.005 +68.0775 +68.15 +68.2225 +68.295 +68.3675 +68.44 +68.5125 +68.585 +68.6575 +68.73 +68.8025 +68.875 +68.9475 +69.02 +69.0925 +69.165 +69.2375 +69.31 +69.3825 +69.455 +69.5275 +69.6 +69.6725 +69.745 +69.8175 +69.89 +69.9625 +70.035 +70.1075 +70.18 +70.2525 +70.325 +70.3975 +70.47 +70.5425 +70.615 +70.6875 +70.76 +70.8325 +70.905 +70.9775 +71.05 +71.1225 +71.195 +71.2675 +71.34 +71.4125 +71.485 +71.5575 +71.63 +71.7025 +71.775 +71.8475 +71.92 +71.9925 +72.065 +72.1375 +72.21 +72.2825 +72.355 +72.4275 +72.5 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/6/acq.par b/example_data/bgr/MouseLift/cpmgfastautotest/6/acq.par new file mode 100644 index 0000000..4d2c79d --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/6/acq.par @@ -0,0 +1,54 @@ +maxDepth = 15000 +nrPntsRemFit = 0 +enableLift = "yes" +refSignal = 1 +refSignalCheck = "no" +nrScans = 8 +fitType = "exp" +x_minimum = 0.1 +x_maximum = 100 +alpha = 0.1 +dataDirectory = "C:\Costabel.S\Desktop\NMR-Mouse Data\GnaSamples2022" +repTime = 8000 +expName = "cpmgfastautotest" +nrEchoes = 1000 +probeHead = "PM25-10mm.par" +resolution = 200 +expNr = 6 +incExpNr = "yes" +depthList = "" +Sensor = "PM25" +Probe = "1H-L" +Spacer = "PM25-10mm.par" +b1Freq = 13.24 +gradient = 300 +echoTime0 = 68 +pulseLength = 12.5 +bestResol = 50 +90Amplitude = -7 +180Amplitude = 0 +echoShift = 0.7 +rxPhase = 2 +last = 0 +accumulate = "yes" +acqTime = 0.0165 +autoPhase = "no" +bandwidth = 2000 +dwellTime = 0.5 +echoTime = 72.5 +experiment = "CPMGFast" +fitMode = "manual" +flatFilter = "no" +normalize = "no" +nrEchoesCut = 0 +nrExp = 1 +nrPnts = 33 +phaseMethod = "maxreal" +position = [198,460] +rxGain = 31 +saveData = "false" +usePhaseCycle = "yes" +windowSize = "small" +bandwidthFile = 0.5 +showFreqDomain = "no" +excecutedBackdoor = "yes" diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/6/acqu.par b/example_data/bgr/MouseLift/cpmgfastautotest/6/acqu.par new file mode 100644 index 0000000..d4012e9 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/6/acqu.par @@ -0,0 +1,54 @@ +90Amplitude = -7 +180Amplitude = 0 +accumulate = "yes" +acqTime = 0.0165 +alpha = 0.1 +autoPhase = "no" +b1Freq = 13.24 +bandwidth = 2000 +bandwidthFile = 0.5 +bestResol = 50 +dataDirectory = "C:\Costabel.S\Desktop\NMR-Mouse Data\GnaSamples2022" +depthList = "" +dwellTime = 0.5 +echoShift = 0.7 +echoTime = 72.5 +echoTime0 = 68 +enableLift = "yes" +excecutedBackdoor = "yes" +experiment = "CPMGFast" +expName = "cpmgfastautotest" +expNr = 6 +fitMode = "manual" +fitType = "exp" +flatFilter = "no" +gradient = 300 +incExpNr = "yes" +last = 0 +maxDepth = 15000 +normalize = "no" +nrEchoes = 1000 +nrEchoesCut = 0 +nrExp = 1 +nrPnts = 33 +nrPntsRemFit = 0 +nrScans = 8 +phaseMethod = "maxreal" +position = [198,460] +Probe = "1H-L" +probeHead = "PM25-10mm.par" +pulseLength = 12.5 +refSignal = 1 +refSignalCheck = "no" +repTime = 8000 +resolution = 200 +rxGain = 31 +rxPhase = 2 +saveData = "false" +Sensor = "PM25" +showFreqDomain = "no" +Spacer = "PM25-10mm.par" +usePhaseCycle = "yes" +windowSize = "small" +x_maximum = 100 +x_minimum = 0.1 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/6/data-03500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/6/data-03500um.dat new file mode 100644 index 0000000..44a4fab --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/6/data-03500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 2.2718 0.0899843 +0.000145 3.04452 0.0624918 +0.0002175 2.99681 0.108342 +0.00029 2.86874 0.167894 +0.0003625 2.98016 0.157899 +0.000435 2.88558 0.198589 +0.0005075 2.76797 0.111832 +0.00058 2.78448 0.142176 +0.0006525 2.88877 0.113323 +0.000725 2.84583 0.0323147 +0.0007975 2.84607 0.14317 +0.00087 2.77791 0.151942 +0.0009425 2.86391 0.229768 +0.001015 2.80866 0.292982 +0.0010875 2.74947 0.0370867 +0.00116 2.82412 0.088594 +0.0012325 2.87226 0.205148 +0.001305 2.74865 0.075689 +0.0013775 2.72648 0.206852 +0.00145 2.73041 0.141734 +0.0015225 2.81016 0.1666 +0.001595 2.72437 0.204597 +0.0016675 2.68968 0.0780395 +0.00174 2.6978 0.155495 +0.0018125 2.60018 0.117026 +0.001885 2.70617 0.174683 +0.0019575 2.77208 0.0970025 +0.00203 2.67914 0.230265 +0.0021025 2.6309 0.137175 +0.002175 2.84277 0.10896 +0.0022475 2.704 0.16025 +0.00232 2.6672 0.272441 +0.0023925 2.65114 0.125071 +0.002465 2.67854 0.102785 +0.0025375 2.64827 0.26951 +0.00261 2.63311 0.221372 +0.0026825 2.55075 0.151574 +0.002755 2.57482 0.138101 +0.0028275 2.63456 0.138557 +0.0029 2.56795 0.0901763 +0.0029725 2.6383 0.0729711 +0.003045 2.60062 0.232148 +0.0031175 2.59073 0.265991 +0.00319 2.5381 0.14375 +0.0032625 2.55808 0.105524 +0.003335 2.4946 0.256484 +0.0034075 2.55297 0.0713428 +0.00348 2.58784 0.0795843 +0.0035525 2.47073 0.101249 +0.003625 2.49931 0.0554652 +0.0036975 2.38284 0.159987 +0.00377 2.54085 0.14694 +0.0038425 2.4347 0.166972 +0.003915 2.57752 0.206017 +0.0039875 2.49159 0.142673 +0.00406 2.45746 0.107532 +0.0041325 2.47025 0.0711466 +0.004205 2.3781 0.213678 +0.0042775 2.43996 0.047278 +0.00435 2.55823 0.120925 +0.0044225 2.32467 0.081438 +0.004495 2.47865 0.121168 +0.0045675 2.36766 0.187442 +0.00464 2.40698 0.0623999 +0.0047125 2.36399 0.149979 +0.004785 2.46129 0.101866 +0.0048575 2.33674 0.170692 +0.00493 2.35416 0.109983 +0.0050025 2.27646 0.238256 +0.005075 2.30342 0.131993 +0.0051475 2.34082 0.176658 +0.00522 2.41273 0.105795 +0.0052925 2.35097 0.125731 +0.005365 2.37341 0.0904435 +0.0054375 2.36449 0.163619 +0.00551 2.27609 0.111481 +0.0055825 2.32678 0.176829 +0.005655 2.2483 0.0956498 +0.0057275 2.25499 0.0914247 +0.0058 2.24551 0.181764 +0.0058725 2.27732 0.0548765 +0.005945 2.2232 0.137166 +0.0060175 2.19797 0.0581372 +0.00609 2.33367 0.210743 +0.0061625 2.40109 0.153503 +0.006235 2.26318 0.10514 +0.0063075 2.26791 0.0721611 +0.00638 2.25815 0.0730086 +0.0064525 2.21465 0.162584 +0.006525 2.28834 0.0301771 +0.0065975 2.23954 0.147792 +0.00667 2.2906 0.0787869 +0.0067425 2.25605 -0.000864228 +0.006815 2.19844 0.123831 +0.0068875 2.23198 0.0456121 +0.00696 2.24474 0.186962 +0.0070325 2.09125 0.14889 +0.007105 2.16396 0.0794716 +0.0071775 2.06156 0.089358 +0.00725 2.16825 0.129839 +0.0073225 2.10637 0.183676 +0.007395 2.26176 0.065598 +0.0074675 2.24955 0.130085 +0.00754 2.27702 0.183889 +0.0076125 2.22242 0.179509 +0.007685 2.1052 0.11594 +0.0077575 2.21375 0.125247 +0.00783 2.08013 0.175259 +0.0079025 2.11319 -0.00379927 +0.007975 2.17611 0.145967 +0.0080475 2.10547 0.239621 +0.00812 2.17671 0.0204117 +0.0081925 2.13892 0.137346 +0.008265 2.15715 0.193216 +0.0083375 2.06528 0.0778266 +0.00841 2.10913 0.0851162 +0.0084825 1.99944 0.248251 +0.008555 2.12757 0.147662 +0.0086275 2.08509 0.0696144 +0.0087 2.07524 0.164291 +0.0087725 2.13124 0.0757433 +0.008845 2.04825 0.160647 +0.0089175 2.10185 0.125848 +0.00899 2.07147 0.0958752 +0.0090625 1.98704 0.108467 +0.009135 2.15033 0.128783 +0.0092075 2.01536 0.12596 +0.00928 2.00241 0.102146 +0.0093525 1.98483 0.121643 +0.009425 1.98476 0.106705 +0.0094975 2.1124 0.153353 +0.00957 1.9843 0.145245 +0.0096425 2.00348 0.122391 +0.009715 1.94875 0.126107 +0.0097875 1.91665 0.171189 +0.00986 1.94639 0.00465515 +0.0099325 2.01787 0.136298 +0.010005 1.937 0.082081 +0.0100775 1.98022 0.105424 +0.01015 2.03052 0.165423 +0.0102225 1.89197 0.0649842 +0.010295 1.96497 0.0849158 +0.0103675 1.87176 0.13897 +0.01044 1.86667 0.153975 +0.0105125 2.00097 0.177192 +0.010585 1.81303 0.130161 +0.0106575 2.00968 0.129593 +0.01073 1.91115 0.0597362 +0.0108025 1.92827 0.0890825 +0.010875 1.70572 0.0289413 +0.0109475 1.86907 0.10172 +0.01102 1.81936 0.118316 +0.0110925 2.0416 0.143241 +0.011165 1.84119 0.0887485 +0.0112375 1.79926 0.135104 +0.01131 1.87917 0.028912 +0.0113825 1.92952 0.0706414 +0.011455 1.80509 0.16883 +0.0115275 1.93592 0.0656063 +0.0116 1.70287 0.189634 +0.0116725 1.94719 0.144656 +0.011745 1.86022 0.0734095 +0.0118175 1.90573 0.0633101 +0.01189 1.78114 0.166354 +0.0119625 1.79361 0.153612 +0.012035 1.77652 0.0803692 +0.0121075 1.83308 0.190765 +0.01218 1.76964 0.0485973 +0.0122525 1.78904 0.0569265 +0.012325 1.79693 0.110442 +0.0123975 1.83385 0.191237 +0.01247 1.84712 0.0638862 +0.0125425 1.81619 0.158952 +0.012615 1.75151 0.0479919 +0.0126875 1.82521 0.0631389 +0.01276 1.88127 0.043153 +0.0128325 1.74183 0.126524 +0.012905 1.78713 0.0526471 +0.0129775 1.72856 0.0827532 +0.01305 1.80146 0.0394373 +0.0131225 1.77922 0.109949 +0.013195 1.80625 0.0493196 +0.0132675 1.79349 0.106722 +0.01334 1.8584 0.108897 +0.0134125 1.61731 0.131714 +0.013485 1.68765 0.0381597 +0.0135575 1.71585 0.1747 +0.01363 1.76382 0.141396 +0.0137025 1.74533 0.0540624 +0.013775 1.75165 0.0638361 +0.0138475 1.76134 0.165661 +0.01392 1.75733 0.0214471 +0.0139925 1.78955 0.098088 +0.014065 1.79838 0.134427 +0.0141375 1.64128 0.0343312 +0.01421 1.63024 0.0970317 +0.0142825 1.69923 0.116479 +0.014355 1.77865 0.0623122 +0.0144275 1.65462 0.04704 +0.0145 1.57187 0.0493488 +0.0145725 1.62807 0.101587 +0.014645 1.64016 0.111051 +0.0147175 1.67936 0.0779185 +0.01479 1.66345 0.132791 +0.0148625 1.56416 0.132286 +0.014935 1.66844 0.174182 +0.0150075 1.69095 0.0872998 +0.01508 1.62474 0.133793 +0.0151525 1.64447 0.0883686 +0.015225 1.56667 0.0914915 +0.0152975 1.50675 0.0740608 +0.01537 1.64476 0.0803525 +0.0154425 1.66863 0.0651053 +0.015515 1.6691 0.0364187 +0.0155875 1.5843 0.0408192 +0.01566 1.57504 0.140331 +0.0157325 1.63463 0.0956874 +0.015805 1.59616 -0.0151846 +0.0158775 1.6243 0.127835 +0.01595 1.59469 -0.00204577 +0.0160225 1.64789 0.116091 +0.016095 1.5944 0.180156 +0.0161675 1.54093 0.101741 +0.01624 1.70736 0.162563 +0.0163125 1.49804 0.115377 +0.016385 1.52786 0.044439 +0.0164575 1.60788 0.0615649 +0.01653 1.57071 0.0400635 +0.0166025 1.5487 -0.00024215 +0.016675 1.54331 0.126583 +0.0167475 1.47721 0.13229 +0.01682 1.62043 0.0528141 +0.0168925 1.62958 0.0810289 +0.016965 1.54586 0.0334712 +0.0170375 1.63561 0.00159486 +0.01711 1.65992 0.0759562 +0.0171825 1.49094 0.11126 +0.017255 1.65607 0.0673557 +0.0173275 1.47494 0.00258017 +0.0174 1.49099 0.0257432 +0.0174725 1.56382 0.0419298 +0.017545 1.46127 0.0586173 +0.0176175 1.59133 0.051524 +0.01769 1.50867 0.0263486 +0.0177625 1.45486 0.0668171 +0.017835 1.61858 0.166137 +0.0179075 1.6078 0.0892411 +0.01798 1.49883 0.0758894 +0.0180525 1.65795 0.0871411 +0.018125 1.47267 0.174595 +0.0181975 1.50128 0.129321 +0.01827 1.54194 0.108688 +0.0183425 1.55933 -0.013811 +0.018415 1.48112 0.115302 +0.0184875 1.44792 0.152497 +0.01856 1.44114 0.121072 +0.0186325 1.45383 0.0543379 +0.018705 1.43466 0.149203 +0.0187775 1.38088 0.0744449 +0.01885 1.45971 0.0167043 +0.0189225 1.37422 0.107411 +0.018995 1.36944 0.12561 +0.0190675 1.58563 0.173969 +0.01914 1.46439 0.104881 +0.0192125 1.49767 0.0812919 +0.019285 1.44773 0.102822 +0.0193575 1.40374 0.131342 +0.01943 1.39963 0.0529059 +0.0195025 1.44911 0.034899 +0.019575 1.39702 0.0304234 +0.0196475 1.41489 0.101587 +0.01972 1.40295 0.103891 +0.0197925 1.44827 0.0749876 +0.019865 1.4007 0.157219 +0.0199375 1.35341 0.0265532 +0.02001 1.41216 0.0269498 +0.0200825 1.30946 0.104906 +0.020155 1.3767 0.0635689 +0.0202275 1.38119 0.111281 +0.0203 1.40981 0.0583668 +0.0203725 1.43731 0.123581 +0.020445 1.38847 0.0408401 +0.0205175 1.42729 0.125414 +0.02059 1.33735 0.0260271 +0.0206625 1.41336 0.0642119 +0.020735 1.38673 0.0604377 +0.0208075 1.25441 0.20944 +0.02088 1.45426 0.116441 +0.0209525 1.36622 0.140986 +0.021025 1.36963 0.0342978 +0.0210975 1.39601 0.0663954 +0.02117 1.35616 0.10091 +0.0212425 1.3626 0.0982091 +0.021315 1.3189 0.0890825 +0.0213875 1.31321 0.0467018 +0.02146 1.28587 0.0765574 +0.0215325 1.3322 0.0142535 +0.021605 1.31117 0.0883602 +0.0216775 1.382 0.0880387 +0.02175 1.3837 0.0413828 +0.0218225 1.29589 0.174516 +0.021895 1.36412 0.104154 +0.0219675 1.36036 0.0456163 +0.02204 1.25476 -0.00905981 +0.0221125 1.29994 0.0103749 +0.022185 1.2447 0.0761023 +0.0222575 1.36568 0.0522129 +0.02233 1.20915 -0.048639 +0.0224025 1.444 0.0432199 +0.022475 1.36346 0.0320099 +0.0225475 1.2885 0.0219815 +0.02262 1.3308 0.181459 +0.0226925 1.37152 0.0979252 +0.022765 1.21868 0.159348 +0.0228375 1.26791 0.114492 +0.02291 1.305 0.156526 +0.0229825 1.27804 0.0506723 +0.023055 1.22715 0.0477581 +0.0231275 1.32551 0.0615065 +0.0232 1.25452 0.0635063 +0.0232725 1.24367 0.178553 +0.023345 1.2644 0.146969 +0.0234175 1.25933 0.047804 +0.02349 1.23402 0.11564 +0.0235625 1.24526 0.0382808 +0.023635 1.16479 0.0393997 +0.0237075 1.28425 0.0603625 +0.02378 1.31579 0.127113 +0.0238525 1.19963 0.14208 +0.023925 1.20475 0.022637 +0.0239975 1.31043 0.0574609 +0.02407 1.2361 0.0984429 +0.0241425 1.23971 0.10939 +0.024215 1.19619 0.0325234 +0.0242875 1.16012 0.0553107 +0.02436 1.18574 0.149808 +0.0244325 1.2432 0.0286657 +0.024505 1.26121 0.076023 +0.0245775 1.23444 0.0468688 +0.02465 1.23613 0.0782066 +0.0247225 1.19594 0.108935 +0.024795 1.21642 0.096084 +0.0248675 1.15799 0.0517954 +0.02494 1.24361 0.0390657 +0.0250125 1.22969 0.174391 +0.025085 1.08657 0.0808159 +0.0251575 1.16737 0.0571519 +0.02523 1.28543 0.0556238 +0.0253025 1.16962 0.0901471 +0.025375 1.22202 0.0832249 +0.0254475 1.18709 0.0100368 +0.02552 1.20695 0.0537284 +0.0255925 1.18996 0.106956 +0.025665 1.17911 0.0480629 +0.0257375 1.21236 0.036114 +0.02581 1.18152 0.100814 +0.0258825 1.20505 0.0678483 +0.025955 1.11411 0.0456497 +0.0260275 1.10697 0.125188 +0.0261 1.1844 0.0713011 +0.0261725 1.21568 0.125088 +0.026245 1.2511 0.0746578 +0.0263175 1.12647 0.158112 +0.02639 1.232 -0.000334005 +0.0264625 1.19489 0.0952782 +0.026535 1.16681 -0.0252756 +0.0266075 1.11064 0.113765 +0.02668 1.08909 0.170646 +0.0267525 1.06027 0.0417294 +0.026825 1.23814 0.115297 +0.0268975 0.989635 0.100635 +0.02697 1.17173 -0.0239187 +0.0270425 1.13594 0.0887026 +0.027115 1.11907 0.0099449 +0.0271875 1.12969 -0.0181447 +0.02726 1.07627 0.141884 +0.0273325 1.15903 0.0332165 +0.027405 1.14259 0.087258 +0.0274775 1.06634 0.101123 +0.02755 1.17883 0.114751 +0.0276225 1.07789 0.169389 +0.027695 1.13092 0.0523966 +0.0277675 1.17106 0.0418546 +0.02784 1.1006 0.143642 +0.0279125 1.18779 -0.0315924 +0.027985 1.07553 0.0433493 +0.0280575 1.05338 -0.0302105 +0.02813 1.058 0.0335881 +0.0282025 1.19776 0.0116901 +0.028275 1.14497 0.140085 +0.0283475 1.09556 0.00535238 +0.02842 1.04597 0.0733301 +0.0284925 0.974351 0.0558201 +0.028565 1.00319 0.0410154 +0.0286375 1.10742 -0.0251086 +0.02871 1.09235 0.0135605 +0.0287825 1.08854 0.162183 +0.028855 1.06409 0.0480211 +0.0289275 1.04207 0.0228583 +0.029 1.10663 0.0444807 +0.0290725 1.03268 0.0733552 +0.029145 1.13918 0.108647 +0.0292175 1.0005 -0.0219773 +0.02929 1.08499 0.0862518 +0.0293625 0.956022 0.0749542 +0.029435 1.11002 0.00695559 +0.0295075 1.03734 0.041984 +0.02958 1.08023 0.116596 +0.0296525 0.997196 0.12596 +0.029725 0.925949 0.127718 +0.0297975 0.981097 0.0807116 +0.02987 1.0722 0.0560831 +0.0299425 1.05377 0.0403558 +0.030015 0.955772 0.0878258 +0.0300875 1.09916 0.121451 +0.03016 1.01254 0.0672805 +0.0302325 1.08368 0.0538536 +0.030305 1.0021 0.0679026 +0.0303775 1.11416 0.134941 +0.03045 1.0959 0.0514906 +0.0305225 0.977524 0.00588679 +0.030595 0.968276 0.0550185 +0.0306675 0.956051 -0.0111056 +0.03074 1.00532 0.0300644 +0.0308125 1.02951 0.0388319 +0.030885 0.939389 -0.0189671 +0.0309575 1.02671 -0.0253048 +0.03103 1.02619 0.065122 +0.0311025 0.92648 0.0971653 +0.031175 1.0861 0.107119 +0.0312475 0.925607 0.112024 +0.03132 1.06519 0.0373456 +0.0313925 0.920067 -0.0165247 +0.031465 0.958527 -0.0727289 +0.0315375 0.915504 -0.0559453 +0.03161 1.07541 -0.023664 +0.0316825 0.957901 0.134265 +0.031755 0.999075 0.131121 +0.0318275 0.970246 0.000701399 +0.0319 0.934792 0.0439463 +0.0319725 0.978467 0.0649091 +0.032045 0.997852 0.0325652 +0.0321175 0.942625 0.00887192 +0.03219 1.02977 0.158154 +0.0322625 0.991727 -0.0134603 +0.032335 1.00434 0.0573189 +0.0324075 0.945772 0.00231714 +0.03248 1.01517 0.026453 +0.0325525 1.02856 0.0362726 +0.032625 1.06259 0.180294 +0.0326975 1.03437 0.119026 +0.03277 0.950165 0.0453408 +0.0328425 0.904026 0.123021 +0.032915 0.9178 0.036903 +0.0329875 1.00664 0.0967061 +0.03306 1.00644 0.0633017 +0.0331325 1.06863 0.0719398 +0.033205 1.0154 0.150522 +0.0332775 1.07342 0.177439 +0.03335 1.01691 0.0546302 +0.0334225 1.03963 0.0746119 +0.033495 0.903909 -0.0197061 +0.0335675 0.951146 0.0265156 +0.03364 0.949989 -0.0426437 +0.0337125 0.960627 0.0340265 +0.033785 0.924455 0.0954118 +0.0338575 0.897242 0.108438 +0.03393 0.872434 0.180207 +0.0340025 0.8743 0.0312334 +0.034075 0.899488 -0.0614313 +0.0341475 0.936959 0.0433785 +0.03422 0.892182 0.0748498 +0.0342925 0.873465 0.0476328 +0.034365 0.963207 0.023806 +0.0344375 0.860919 0.0702573 +0.03451 1.00241 0.0645751 +0.0345825 0.904223 0.0560413 +0.034655 1.02399 0.0958251 +0.0347275 0.795254 0.015648 +0.0348 0.911725 0.0374166 +0.0348725 0.762526 0.00582417 +0.034945 0.889689 0.0240648 +0.0350175 0.857016 0.0650844 +0.03509 0.858352 0.145888 +0.0351625 0.940946 0.0913579 +0.035235 0.90525 -0.00649633 +0.0353075 0.929411 0.154092 +0.03538 0.896779 0.0921136 +0.0354525 0.83865 0.0303775 +0.035525 0.913959 0.111841 +0.0355975 0.828964 0.0385313 +0.03567 0.933719 0.148301 +0.0357425 0.826037 0.0122412 +0.035815 0.87825 0.111544 +0.0358875 0.922814 0.0681113 +0.03596 0.823181 0.0956081 +0.0360325 0.819148 0.0931698 +0.036105 0.820184 0.0498623 +0.0361775 0.926805 0.0483468 +0.03625 0.790023 0.039145 +0.0363225 0.843668 -0.0341601 +0.036395 0.82878 0.0649133 +0.0364675 0.872196 0.10967 +0.03654 0.845438 0.0584086 +0.0366125 0.918288 0.0761942 +0.036685 0.911445 -0.0198314 +0.0367575 0.938391 0.0403182 +0.03683 0.882366 0.110592 +0.0369025 0.88437 0.0977081 +0.036975 0.748978 0.0524968 +0.0370475 0.847551 0.159231 +0.03712 0.838178 0.0215223 +0.0371925 0.854757 0.0620951 +0.037265 0.836024 0.0564588 +0.0373375 0.895238 -0.0214137 +0.03741 0.967416 0.0490607 +0.0374825 0.874496 0.171898 +0.037555 0.868213 0.117727 +0.0376275 0.776271 0.0687167 +0.0377 0.72792 0.0987644 +0.0377725 0.933444 0.119493 +0.037845 0.869261 0.0226829 +0.0379175 0.801162 0.0304902 +0.03799 0.885301 0.174908 +0.0380625 0.764823 0.0172888 +0.038135 0.736211 0.113815 +0.0382075 0.82559 0.0841142 +0.03828 0.915516 0.0711549 +0.0383525 0.746348 0.101645 +0.038425 0.719853 0.0789539 +0.0384975 0.858656 0.160705 +0.03857 0.826003 0.0811416 +0.0386425 0.894407 -0.0344815 +0.038715 0.892679 0.0644248 +0.0387875 0.682959 0.0773882 +0.03886 0.749079 0.163506 +0.0389325 0.867274 0.056701 +0.039005 0.720046 0.00593689 +0.0390775 0.720409 0.0324483 +0.03915 0.793956 -0.0131806 +0.0392225 0.829156 0.0418003 +0.039295 0.834679 0.0078574 +0.0393675 0.69877 0.133384 +0.03944 0.750594 0.155887 +0.0395125 0.896169 0.133359 +0.039585 0.794181 0.0183785 +0.0396575 0.7347 0.0580078 +0.03973 0.745659 0.0586633 +0.0398025 0.780968 -0.00242569 +0.039875 0.756794 -0.036711 +0.0399475 0.808598 -0.0312542 +0.04002 0.711474 0.0453742 +0.0400925 0.791756 0.0751337 +0.040165 0.764961 0.0748749 +0.0402375 0.826292 0.1268 +0.04031 0.807095 0.0750001 +0.0403825 0.812773 0.0486557 +0.040455 0.753821 0.124441 +0.0405275 0.75826 -0.0245199 +0.0406 0.79821 0.0528892 +0.0406725 0.774859 0.0156981 +0.040745 0.806594 -0.0411323 +0.0408175 0.790866 0.072015 +0.04089 0.69042 0.0205244 +0.0409625 0.772901 0.0838679 +0.041035 0.694211 0.0457541 +0.0411075 0.737806 0.0128716 +0.04118 0.772233 0.100071 +0.0412525 0.912427 0.0304693 +0.041325 0.790261 0.0379301 +0.0413975 0.774446 0.0292711 +0.04147 0.724308 0.0693722 +0.0415425 0.796223 -0.00475953 +0.041615 0.884871 0.0344398 +0.0416875 0.745363 0.128749 +0.04176 0.761804 0.0504051 +0.0418325 0.674187 -0.0119907 +0.041905 0.729548 0.0239646 +0.0419775 0.812268 0.0253633 +0.04205 0.70284 -0.0700486 +0.0421225 0.736766 0.0882224 +0.042195 0.636449 0.0966142 +0.0422675 0.742336 0.0881014 +0.04234 0.780721 0.12513 +0.0424125 0.701726 0.0410238 +0.042485 0.763395 0.0486182 +0.0425575 0.680663 0.0321059 +0.04263 0.712284 0.0720484 +0.0427025 0.71896 0.0892954 +0.042775 0.71734 -0.0111139 +0.0428475 0.670438 0.104192 +0.04292 0.680587 0.0973699 +0.0429925 0.688094 0.0383142 +0.043065 0.668087 0.0395584 +0.0431375 0.75201 0.0279309 +0.04321 0.554088 0.0646169 +0.0432825 0.672091 0.166993 +0.043355 0.688069 0.0417335 +0.0434275 0.734241 -0.0100493 +0.0435 0.715704 0.0690173 +0.0435725 0.624696 0.112955 +0.043645 0.729732 -0.0168587 +0.0437175 0.740595 -0.0177606 +0.04379 0.741342 0.0309662 +0.0438625 0.703187 0.14436 +0.043935 0.649129 -0.00593271 +0.0440075 0.682683 0.00151136 +0.04408 0.601308 0.0677022 +0.0441525 0.715257 -0.0153098 +0.044225 0.66577 0.0255637 +0.0442975 0.569085 -0.0111807 +0.04437 0.614367 0.136945 +0.0444425 0.676993 0.0750377 +0.044515 0.617081 0.156146 +0.0445875 0.683522 0.0464221 +0.04466 0.714731 0.0440256 +0.0447325 0.611942 0.118696 +0.044805 0.66476 -0.022804 +0.0448775 0.708606 -0.0601704 +0.04495 0.694703 0.0558368 +0.0450225 0.641409 0.0551855 +0.045095 0.682307 0.0841685 +0.0451675 0.578888 0.131104 +0.04524 0.664405 -0.00546928 +0.0453125 0.652861 0.05372 +0.045385 0.691655 0.101152 +0.0454575 0.767211 0.0890616 +0.04553 0.654936 0.0643997 +0.0456025 0.686107 0.0799308 +0.045675 0.780959 0.0775636 +0.0457475 0.691438 0.0308493 +0.04582 0.670601 0.0725786 +0.0458925 0.652118 0.0521419 +0.045965 0.634541 -0.00200819 +0.0460375 0.600753 0.0710714 +0.04611 0.602677 0.0247537 +0.0461825 0.732633 0.173051 +0.046255 0.591922 0.00790333 +0.0463275 0.661002 0.0436123 +0.0464 0.708009 -0.0779268 +0.0464725 0.656514 0.047804 +0.046545 0.713933 0.14398 +0.0466175 0.605061 0.0484303 +0.04669 0.692039 0.0429109 +0.0467625 0.629314 0.00619573 +0.046835 0.615829 0.0618363 +0.0469075 0.701801 0.115281 +0.04698 0.692328 0.0308534 +0.0470525 0.653588 0.0459754 +0.047125 0.614923 0.0305111 +0.0471975 0.554013 0.0417962 +0.04727 0.697484 0.037379 +0.0473425 0.677043 0.0357549 +0.047415 0.545617 0.0277305 +0.0474875 0.609508 0.119748 +0.04756 0.602986 0.00305194 +0.0476325 0.586098 0.0251169 +0.047705 0.557666 0.0071059 +0.0477775 0.587155 0.0799601 +0.04785 0.609812 0.060613 +0.0479225 0.567119 0.014767 +0.047995 0.604949 0.0962218 +0.0480675 0.614651 -0.039646 +0.04814 0.579222 -0.0396544 +0.0482125 0.581535 0.188277 +0.048285 0.630612 -0.0146293 +0.0483575 0.614351 -0.0465181 +0.04843 0.514242 0.0145416 +0.0485025 0.553996 0.161882 +0.048575 0.633184 0.0741693 +0.0486475 0.540411 0.0365273 +0.04872 0.517807 0.0987602 +0.0487925 0.694945 0.0252464 +0.048865 0.598598 0.0452197 +0.0489375 0.562589 0.0477873 +0.04901 0.637497 -0.00202489 +0.0490825 0.721565 0.011331 +0.049155 0.634696 0.0553441 +0.0492275 0.611929 0.0418129 +0.0493 0.621732 -0.0394999 +0.0493725 0.59014 -0.0536825 +0.049445 0.603892 -0.0146376 +0.0495175 0.638449 0.0342102 +0.04959 0.616 0.11387 +0.0496625 0.573582 0.0199441 +0.049735 0.639213 0.0653558 +0.0498075 0.624667 0.107457 +0.04988 0.508389 0.0208041 +0.0499525 0.531138 0.0232758 +0.050025 0.705491 0.0791167 +0.0500975 0.565799 0.0710297 +0.05017 0.579059 0.0641743 +0.0502425 0.558881 0.0653683 +0.050315 0.54345 0.0595358 +0.0503875 0.627339 0.0355629 +0.05046 0.485547 0.0683952 +0.0505325 0.634341 0.0513987 +0.050605 0.635201 0.0878216 +0.0506775 0.509821 0.0269456 +0.05075 0.669131 0.0966101 +0.0508225 0.569394 0.0454117 +0.050895 0.60522 0.138043 +0.0509675 0.654627 -0.105732 +0.05104 0.582412 -0.0480629 +0.0511125 0.61005 0.0566718 +0.051185 0.501834 0.0149257 +0.0512575 0.507808 0.104459 +0.05133 0.508518 0.0760021 +0.0514025 0.565887 -0.0402097 +0.051475 0.528654 0.0840641 +0.0515475 0.531096 0.0259102 +0.05162 0.584228 0.027455 +0.0516925 0.647763 0.108576 +0.051765 0.521916 0.0112851 +0.0518375 0.509386 0.0197437 +0.05191 0.524776 -0.0356547 +0.0519825 0.433923 0.164483 +0.052055 0.570951 0.0775177 +0.0521275 0.564985 0.0463678 +0.0522 0.526896 0.0389112 +0.0522725 0.630855 0.0460422 +0.052345 0.458747 0.053457 +0.0524175 0.480249 0.0502464 +0.05249 0.597964 0.0406814 +0.0525625 0.51701 0.0846277 +0.052635 0.608414 0.0846277 +0.0527075 0.632796 -0.0401512 +0.05278 0.474604 0.0769916 +0.0528525 0.559591 0.0236098 +0.052925 0.619557 0.0361599 +0.0529975 0.496327 0.042318 +0.05307 0.65388 -0.0327948 +0.0531425 0.560059 0.0447062 +0.053215 0.622989 0.071919 +0.0532875 0.53677 0.0342895 +0.05336 0.474805 0.0144748 +0.0534325 0.508493 0.0495074 +0.053505 0.544202 0.0625669 +0.0535775 0.399905 0.000246328 +0.05365 0.572834 0.00881765 +0.0537225 0.632675 -0.0322562 +0.053795 0.505462 -0.0387943 +0.0538675 0.517048 -0.0472905 +0.05394 0.532053 0.0208459 +0.0540125 0.576057 0.0700861 +0.054085 0.554397 0.0516534 +0.0541575 0.519958 0.122278 +0.05423 0.525222 0.0184578 +0.0543025 0.515165 0.0368112 +0.054375 0.517958 -0.0655896 +0.0544475 0.593321 0.0681781 +0.05452 0.49687 0.0700026 +0.0545925 0.541066 0.074353 +0.054665 0.54307 -0.0329242 +0.0547375 0.492444 0.11759 +0.05481 0.461716 -0.103332 +0.0548825 0.551099 0.0166082 +0.054955 0.555499 0.0203992 +0.0550275 0.539647 0.0455537 +0.0551 0.477844 0.0790457 +0.0551725 0.501149 0.151207 +0.055245 0.660835 -0.053123 +0.0553175 0.469607 -0.00721444 +0.05539 0.494841 -0.00901387 +0.0554625 0.556293 -0.00984053 +0.055535 0.466446 -0.00944808 +0.0556075 0.560042 -0.0174057 +0.05568 0.513461 -0.019585 +0.0557525 0.60388 0.0348782 +0.055825 0.392348 0.0503174 +0.0558975 0.424199 0.0556238 +0.05597 0.540373 0.0893914 +0.0560425 0.495471 0.178002 +0.056115 0.517119 -0.0553483 +0.0561875 0.614083 -0.0902348 +0.05626 0.455825 -0.0448147 +0.0563325 0.508944 0.0578032 +0.056405 0.554886 0.107958 +0.0564775 0.493981 0.048948 +0.05655 0.495993 -0.0152221 +0.0566225 0.621745 0.00358217 +0.056695 0.576299 -0.028912 +0.0567675 0.464835 -0.0441843 +0.05684 0.42045 0.0445809 +0.0569125 0.469323 0.0407065 +0.056985 0.503971 -0.0789956 +0.0570575 0.520722 0.0494072 +0.05713 0.533656 0.0220441 +0.0572025 0.471732 0.0559913 +0.057275 0.46964 0.0270542 +0.0573475 0.452568 -0.0552314 +0.05742 0.515352 0.0501963 +0.0574925 0.445972 0.118095 +0.057565 0.36572 0.0375961 +0.0576375 0.489083 0.0318763 +0.05771 0.436257 0.065694 +0.0577825 0.519632 -0.017556 +0.057855 0.498552 -0.0559412 +0.0579275 0.481472 -0.0110262 +0.058 0.542824 0.0905271 +0.0580725 0.482161 0.00946895 +0.058145 0.511169 -0.0320141 +0.0582175 0.476278 0.0251629 +0.05829 0.363862 0.141529 +0.0583625 0.46081 0.0403975 +0.058435 0.343321 0.17895 +0.0585075 0.498677 0.0277055 +0.05858 0.573427 0.0145959 +0.0586525 0.550865 0.0400093 +0.058725 0.562104 -0.0241316 +0.0587975 0.51815 -0.00866735 +0.05887 0.505942 -0.0325151 +0.0589425 0.601617 0.0748373 +0.059015 0.478504 -0.043199 +0.0590875 0.501713 -0.0129384 +0.05916 0.57301 0.132841 +0.0592325 0.470254 -0.00690132 +0.059305 0.371414 0.0231547 +0.0593775 0.526516 0.092602 +0.05945 0.360096 0.0302564 +0.0595225 0.358664 -0.040193 +0.059595 0.436829 -0.0540624 +0.0596675 0.523168 -0.0217644 +0.05974 0.35271 -0.0462426 +0.0598125 0.431009 0.147028 +0.059885 0.542127 0.0237642 +0.0599575 0.453078 0.0743906 +0.06003 0.431635 0.113106 +0.0601025 0.333618 0.0252255 +0.060175 0.461812 0.0675853 +0.0602475 0.480337 0.0816175 +0.06032 0.442882 0.0128925 +0.0603925 0.463687 -0.0538495 +0.060465 0.357132 -0.0363895 +0.0605375 0.363565 0.00634604 +0.06061 0.463336 0.0132682 +0.0606825 0.445538 0.126674 +0.060755 0.381063 -0.0176604 +0.0608275 0.511716 -0.00301854 +0.0609 0.494385 0.00804109 +0.0609725 0.43305 0.0354418 +0.061045 0.487067 0.0268538 +0.0611175 0.440002 0.0715933 +0.06119 0.35529 0.0478541 +0.0612625 0.453512 0.137037 +0.061335 0.403445 -0.0302731 +0.0614075 0.407954 -0.0165957 +0.06148 0.461336 -0.00375752 +0.0615525 0.454489 0.0443095 +0.061625 0.481831 0.0356422 +0.0616975 0.353303 -0.0449191 +0.06177 0.448381 -0.0774133 +0.0618425 0.355315 0.0570809 +0.061915 0.4663 -0.108517 +0.0619875 0.463081 0.108822 +0.06206 0.522316 0.0653558 +0.0621325 0.429138 0.0908611 +0.062205 0.371072 0.0054484 +0.0622775 0.47488 0.0725786 +0.06235 0.407491 -0.0513528 +0.0624225 0.325744 0.0565131 +0.062495 0.409257 -0.0328073 +0.0625675 0.349617 0.0634478 +0.06264 0.374733 0.0605003 +0.0627125 0.413486 0.0120575 +0.062785 0.383501 -0.0232006 +0.0628575 0.436052 0.0332582 +0.06293 0.423698 0.122086 +0.0630025 0.406347 -0.0640157 +0.063075 0.496043 0.00873833 +0.0631475 0.463499 0.0198397 +0.06322 0.41817 0.0914998 +0.0632925 0.457065 0.091337 +0.063365 0.382812 -0.0221819 +0.0634375 0.511845 0.0730128 +0.06351 0.422496 0.0212008 +0.0635825 0.443233 -0.030962 +0.063655 0.404781 -0.0509645 +0.0637275 0.477026 0.0981298 +0.0638 0.454293 0.00167418 +0.0638725 0.458848 0.0713094 +0.063945 0.309261 0.0331288 +0.0640175 0.359399 -0.0553358 +0.06409 0.384194 0.10815 +0.0641625 0.460317 -0.0307156 +0.064235 0.308033 0.0370993 +0.0643075 0.481526 -0.000200398 +0.06438 0.415002 0.0604084 +0.0644525 0.459111 -0.0402013 +0.064525 0.365415 0.0879218 +0.0645975 0.331025 -0.0244322 +0.06467 0.449558 -0.0343813 +0.0647425 0.385864 0.116688 +0.064815 0.408368 0.0679986 +0.0648875 0.343646 0.00392453 +0.06496 0.463227 0.0207332 +0.0650325 0.424896 -0.0188544 +0.065105 0.396318 -0.0177188 +0.0651775 0.449604 0.0445016 +0.06525 0.326345 -0.0144456 +0.0653225 0.339475 0.0237225 +0.065395 0.440306 0.0402723 +0.0654675 0.420262 -0.0331372 +0.06554 0.435284 0.0802816 +0.0656125 0.453203 0.0563754 +0.065685 0.288628 -0.13234 +0.0657575 0.317227 0.0582708 +0.06583 0.361728 0.0486182 +0.0659025 0.430157 -0.0201695 +0.065975 0.409119 0.0390281 +0.0660475 0.411566 0.0888821 +0.06612 0.434666 -0.034231 +0.0661925 0.401249 0.0560539 +0.066265 0.467995 0.00469273 +0.0663375 0.449041 0.00574066 +0.06641 0.399675 -0.00446728 +0.0664825 0.469995 0.0247412 +0.066555 0.336336 -0.0159987 +0.0666275 0.382453 0.0157607 +0.0667 0.43128 0.0593271 +0.0667725 0.386198 0.0697146 +0.066845 0.385998 0.0486724 +0.0669175 0.394715 -0.012571 +0.06699 0.3911 0.037642 +0.0670625 0.341433 0.0433242 +0.067135 0.290536 0.0568304 +0.0672075 0.445909 0.107411 +0.06728 0.25906 0.0399424 +0.0673525 0.390845 0.0312793 +0.067425 0.368275 -0.0300727 +0.0674975 0.275894 0.0211507 +0.06757 0.338273 0.0230378 +0.0676425 0.423235 -0.0176395 +0.067715 0.27371 0.0516743 +0.0677875 0.382345 -0.0871202 +0.06786 0.358205 0.0767244 +0.0679325 0.382303 0.0594774 +0.068005 0.293433 0.0411616 +0.0680775 0.363286 0.0103624 +0.06815 0.401199 0.0421886 +0.0682225 0.312622 0.0627423 +0.068295 0.395467 0.0277723 +0.0683675 0.376579 0.0752799 +0.06844 0.419978 0.127075 +0.0685125 0.316229 0.213845 +0.068585 0.321823 0.014813 +0.0686575 0.334657 0.0614021 +0.06873 0.421323 0.133133 +0.0688025 0.338127 0.0405061 +0.068875 0.412927 0.00671344 +0.0689475 0.383292 0.0200109 +0.06902 0.397884 0.0500335 +0.0690925 0.345266 0.0830621 +0.069165 0.256129 0.025117 +0.0692375 0.390252 -0.0508101 +0.06931 0.330023 -0.00923515 +0.0693825 0.34072 0.127284 +0.069455 0.347212 -0.000254673 +0.0695275 0.391659 0.00994909 +0.0696 0.355428 -0.0519373 +0.0696725 0.32599 -0.0041792 +0.069745 0.351015 -0.0655521 +0.0698175 0.2664 0.076261 +0.06989 0.264425 0.0655604 +0.0699625 0.242068 0.0478875 +0.070035 0.346373 0.0326696 +0.0701075 0.338152 0.00433368 +0.07018 0.247061 0.0934746 +0.0702525 0.206797 0.0319014 +0.070325 0.426992 0.029459 +0.0703975 0.23204 -0.05119 +0.07047 0.259862 -0.0646252 +0.0705425 0.370508 -0.0999835 +0.070615 0.370037 -0.153106 +0.0706875 0.278791 0.017055 +0.07076 0.416129 0.0145333 +0.0708325 0.461766 0.0337885 +0.070905 0.304522 0.0538035 +0.0709775 0.358405 0.0245074 +0.07105 0.366054 -0.00769039 +0.0711225 0.433969 0.0580412 +0.071195 0.353224 -0.049879 +0.0712675 0.254489 0.106125 +0.07134 0.424166 -0.0142577 +0.0714125 0.290431 0.0830371 +0.071485 0.392878 -0.0602414 +0.0715575 0.432349 0.0233426 +0.07163 0.36531 0.0796845 +0.0717025 0.420287 0.00174098 +0.071775 0.38943 -0.00157399 +0.0718475 0.344794 0.0219022 +0.07192 0.242176 0.0975954 +0.0719925 0.300748 0.0226328 +0.072065 0.436286 0.00826238 +0.0721375 0.264183 -0.0229 +0.07221 0.479677 0.0476496 +0.0722825 0.243404 0.0913245 +0.072355 0.348285 0.0250668 +0.0724275 0.374274 0.0877632 +0.0725 0.218262 0.0352414 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/6/data-04500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/6/data-04500um.dat new file mode 100644 index 0000000..dc1c742 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/6/data-04500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 2.4692 0.236862 +0.000145 3.18051 0.111548 +0.0002175 2.99113 0.120483 +0.00029 3.00242 0.142406 +0.0003625 3.03042 0.12075 +0.000435 2.89701 0.292573 +0.0005075 2.94935 0.204342 +0.00058 2.89442 0.140289 +0.0006525 2.93001 0.213381 +0.000725 2.89361 0.0773548 +0.0007975 2.85551 0.228879 +0.00087 2.89016 0.0820267 +0.0009425 2.84402 0.0770292 +0.001015 2.80684 0.188749 +0.0010875 2.87808 0.0822981 +0.00116 2.82454 0.108688 +0.0012325 2.83374 0.0738979 +0.001305 2.89268 0.0388653 +0.0013775 2.77458 0.205503 +0.00145 2.67127 0.208129 +0.0015225 2.8911 0.147416 +0.001595 2.7409 0.151052 +0.0016675 2.85392 0.119047 +0.00174 2.84351 0.176111 +0.0018125 2.76478 0.130411 +0.001885 2.72327 0.0846152 +0.0019575 2.64593 0.155795 +0.00203 2.70421 0.116128 +0.0021025 2.73055 0.10643 +0.002175 2.77219 0.112592 +0.0022475 2.73015 0.212521 +0.00232 2.73984 0.134215 +0.0023925 2.68216 0.167055 +0.002465 2.68495 0.130674 +0.0025375 2.68008 0.0499834 +0.00261 2.71863 0.123009 +0.0026825 2.6168 0.10767 +0.002755 2.74562 0.0672638 +0.0028275 2.60753 0.00372413 +0.0029 2.54654 0.143141 +0.0029725 2.72413 0.0686207 +0.003045 2.63825 0.266049 +0.0031175 2.64512 0.145967 +0.00319 2.70754 0.0881014 +0.0032625 2.60471 0.0717603 +0.003335 2.6021 0.116567 +0.0034075 2.57369 0.223397 +0.00348 2.63117 0.0650051 +0.0035525 2.56283 0.181421 +0.003625 2.61544 0.0787451 +0.0036975 2.69404 0.140991 +0.00377 2.60506 0.24813 +0.0038425 2.58365 0.170333 +0.003915 2.56216 0.187054 +0.0039875 2.6783 0.140552 +0.00406 2.46455 0.16837 +0.0041325 2.51568 0.116249 +0.004205 2.55699 0.180632 +0.0042775 2.56951 0.154877 +0.00435 2.41358 0.0821185 +0.0044225 2.45411 0.10167 +0.004495 2.46472 0.195228 +0.0045675 2.44493 0.076595 +0.00464 2.41165 0.186753 +0.0047125 2.44332 0.203825 +0.004785 2.54723 0.150998 +0.0048575 2.409 0.25833 +0.00493 2.48211 0.1123 +0.0050025 2.46422 0.158438 +0.005075 2.37674 0.103561 +0.0051475 2.54314 0.154175 +0.00522 2.49836 0.154513 +0.0052925 2.30266 0.224541 +0.005365 2.37788 0.13092 +0.0054375 2.48257 0.144564 +0.00551 2.37791 0.183359 +0.0055825 2.44526 0.117147 +0.005655 2.43317 0.0907859 +0.0057275 2.39135 0.0892411 +0.0058 2.29337 0.0954076 +0.0058725 2.26756 0.202451 +0.005945 2.40696 -0.00916 +0.0060175 2.43489 0.200769 +0.00609 2.33954 0.0872622 +0.0061625 2.31694 0.129012 +0.006235 2.29481 0.102054 +0.0063075 2.25071 0.16703 +0.00638 2.29477 0.177359 +0.0064525 2.3235 0.0638612 +0.006525 2.27922 0.142727 +0.0065975 2.34117 0.181889 +0.00667 2.35115 0.0763695 +0.0067425 2.36059 0.256885 +0.006815 2.33609 0.135438 +0.0068875 2.28077 0.18558 +0.00696 2.35053 0.105348 +0.0070325 2.34428 0.12156 +0.007105 2.37016 0.106455 +0.0071775 2.28056 0.150197 +0.00725 2.19102 0.0608844 +0.0073225 2.20895 0.0940842 +0.007395 2.31201 0.111565 +0.0074675 2.22665 0.220203 +0.00754 2.19216 0.152877 +0.0076125 2.22248 0.202881 +0.007685 2.21515 0.0817094 +0.0077575 2.16629 0.144832 +0.00783 2.13513 0.136644 +0.0079025 2.22773 0.220725 +0.007975 2.17893 0.114425 +0.0080475 2.15867 0.0908443 +0.00812 2.10549 0.0489062 +0.0081925 2.21431 0.198005 +0.008265 2.12365 0.191938 +0.0083375 2.22372 0.135981 +0.00841 2.17879 0.119047 +0.0084825 2.16255 0.201821 +0.008555 2.16913 0.16045 +0.0086275 2.17558 0.108354 +0.0087 2.15347 0.149253 +0.0087725 2.20388 0.133183 +0.008845 2.14268 0.224424 +0.0089175 2.11027 0.176683 +0.00899 2.20486 0.0927064 +0.0090625 2.16106 0.1269 +0.009135 2.06156 0.050213 +0.0092075 2.14823 0.179726 +0.00928 2.11981 0.0789581 +0.0093525 2.13828 0.166692 +0.009425 2.206 0.17427 +0.0094975 2.04688 0.166629 +0.00957 2.13077 0.112863 +0.0096425 2.12143 0.0980504 +0.009715 2.02211 0.219068 +0.0097875 2.07958 0.0679026 +0.00986 1.98428 0.160843 +0.0099325 2.01485 0.195583 +0.010005 2.11413 0.250418 +0.0100775 1.98176 0.109578 +0.01015 2.15986 0.103996 +0.0102225 2.12583 0.153328 +0.010295 2.07968 0.128783 +0.0103675 1.99284 0.178641 +0.01044 2.02971 0.101603 +0.0105125 1.89787 0.139053 +0.010585 2.0323 0.168291 +0.0106575 1.98724 0.0873582 +0.01073 2.0298 0.123731 +0.0108025 2.027 0.141475 +0.010875 2.04654 0.0929861 +0.0109475 1.9399 0.171163 +0.01102 2.05144 0.100125 +0.0110925 2.02256 0.121648 +0.011165 2.05916 0.0928901 +0.0112375 2.00534 0.0537743 +0.01131 2.02784 0.0522337 +0.0113825 1.96983 0.110951 +0.011455 2.00274 0.090932 +0.0115275 2.02386 0.165114 +0.0116 1.86994 0.191083 +0.0116725 1.91968 0.160025 +0.011745 1.95203 0.0964138 +0.0118175 1.93044 0.139596 +0.01189 2.02386 0.00881347 +0.0119625 1.81065 0.206981 +0.012035 1.94311 0.113256 +0.0121075 1.8995 0.037713 +0.01218 1.95675 0.0565006 +0.0122525 1.89752 0.028983 +0.012325 1.89435 0.0708418 +0.0123975 1.86523 0.184766 +0.01247 1.95034 0.0727999 +0.0125425 1.91469 0.0422846 +0.012615 1.83069 0.129593 +0.0126875 1.81943 0.161239 +0.01276 1.76394 0.100322 +0.0128325 1.8554 0.0731924 +0.012905 1.95021 0.063356 +0.0129775 1.94762 0.219848 +0.01305 1.91647 0.137446 +0.0131225 1.84178 0.130465 +0.013195 1.93745 0.0726913 +0.0132675 1.73165 0.0585589 +0.01334 1.85248 0.0249541 +0.0134125 1.91087 0.143308 +0.013485 1.87505 0.0304401 +0.0135575 1.79468 0.101962 +0.01363 1.80051 0.0683702 +0.0137025 1.84544 0.0383559 +0.013775 1.84934 0.0904519 +0.0138475 1.83709 0.104889 +0.01392 1.81439 0.118938 +0.0139925 1.85492 0.118475 +0.014065 1.80657 -0.0109344 +0.0141375 1.71746 0.076332 +0.01421 1.83332 0.146844 +0.0142825 1.88458 0.173493 +0.014355 1.77812 0.150952 +0.0144275 1.82201 0.114621 +0.0145 1.7543 0.213607 +0.0145725 1.80677 0.104847 +0.014645 1.78548 0.157966 +0.0147175 1.79567 0.0310831 +0.01479 1.76379 0.0981172 +0.0148625 1.77874 -0.0425936 +0.014935 1.83367 0.00433367 +0.0150075 1.70535 0.0779268 +0.01508 1.73663 0.285384 +0.0151525 1.75685 0.118679 +0.015225 1.8834 -0.011928 +0.0152975 1.75634 0.128223 +0.01537 1.65275 0.0342394 +0.0154425 1.79296 0.058012 +0.015515 1.84553 0.0477873 +0.0155875 1.7038 0.0992445 +0.01566 1.64613 0.0842687 +0.0157325 1.75766 0.0648298 +0.015805 1.72132 0.199324 +0.0158775 1.75637 0.135066 +0.01595 1.84273 0.124787 +0.0160225 1.67638 0.116258 +0.016095 1.79981 0.0737393 +0.0161675 1.70034 0.192915 +0.01624 1.58613 0.205866 +0.0163125 1.71818 0.155862 +0.016385 1.68204 0.0318053 +0.0164575 1.69476 0.0993739 +0.01653 1.65658 0.0338761 +0.0166025 1.69003 0.147783 +0.016675 1.56556 0.0827573 +0.0167475 1.78989 0.175748 +0.01682 1.60829 0.022829 +0.0168925 1.6637 0.112934 +0.016965 1.61115 0.071347 +0.0170375 1.54544 0.179564 +0.01711 1.60465 0.0602873 +0.0171825 1.68327 -0.00805361 +0.017255 1.76382 0.0273381 +0.0173275 1.6167 0.117072 +0.0174 1.63753 0.0622914 +0.0174725 1.68355 0.0674099 +0.017545 1.52819 0.0723532 +0.0176175 1.59367 0.043963 +0.01769 1.65995 0.153173 +0.0177625 1.5634 0.107382 +0.017835 1.67221 0.0404977 +0.0179075 1.63549 0.00415833 +0.01798 1.60891 0.0570141 +0.0180525 1.57153 0.165966 +0.018125 1.66069 0.100234 +0.0181975 1.62232 -0.0515699 +0.01827 1.5154 0.0476788 +0.0183425 1.63484 0.134073 +0.018415 1.60866 0.174512 +0.0184875 1.6599 0.0832834 +0.01856 1.54153 0.188039 +0.0186325 1.52507 0.0517703 +0.018705 1.6675 0.173021 +0.0187775 1.57168 0.110229 +0.01885 1.59723 0.0597613 +0.0189225 1.47094 0.0797346 +0.018995 1.59894 0.188035 +0.0190675 1.49015 0.0987018 +0.01914 1.62889 0.115047 +0.0192125 1.62216 0.0816343 +0.019285 1.47458 0.130136 +0.0193575 1.67473 0.127735 +0.01943 1.5509 -0.00166166 +0.0195025 1.53125 0.082653 +0.019575 1.5725 0.10395 +0.0196475 1.5108 0.0941009 +0.01972 1.56949 0.0733301 +0.0197925 1.58058 0.119235 +0.019865 1.57967 0.0449692 +0.0199375 1.49767 -0.0189922 +0.02001 1.51386 0.132941 +0.0200825 1.5613 0.135567 +0.020155 1.55313 0.099925 +0.0202275 1.42868 0.0867988 +0.0203 1.54151 0.0802481 +0.0203725 1.56275 0.148293 +0.020445 1.50726 0.140189 +0.0205175 1.48802 0.0779811 +0.02059 1.52295 0.0576947 +0.0206625 1.4243 0.109427 +0.020735 1.40063 0.138005 +0.0208075 1.50433 0.0944015 +0.02088 1.45813 0.068629 +0.0209525 1.4139 0.0731506 +0.021025 1.40834 0.142243 +0.0210975 1.50641 0.128278 +0.02117 1.3753 0.01956 +0.0212425 1.49078 0.155052 +0.021315 1.35491 0.0575819 +0.0213875 1.42931 0.127476 +0.02146 1.42463 0.1291 +0.0215325 1.47388 0.106977 +0.021605 1.44224 0.121351 +0.0216775 1.42911 0.124854 +0.02175 1.444 0.0115732 +0.0218225 1.43748 0.0471193 +0.021895 1.37301 0.149002 +0.0219675 1.38219 -0.00261356 +0.02204 1.4509 0.121084 +0.0221125 1.46318 0.198389 +0.022185 1.44794 0.0689672 +0.0222575 1.40986 0.0051812 +0.02233 1.45203 0.0370826 +0.0224025 1.37772 0.0898423 +0.022475 1.48595 0.131213 +0.0225475 1.39411 0.0710589 +0.02262 1.46036 0.0306655 +0.0226925 1.38437 0.135738 +0.022765 1.42499 -0.00791167 +0.0228375 1.43417 0.141195 +0.02291 1.33137 0.0864773 +0.0229825 1.42891 0.0596861 +0.023055 1.28318 0.0893288 +0.0231275 1.44414 0.107169 +0.0232 1.29629 0.179255 +0.0232725 1.4449 0.0930488 +0.023345 1.44766 0.0568054 +0.0234175 1.40181 0.0420676 +0.02349 1.30883 0.147441 +0.0235625 1.33252 0.0915875 +0.023635 1.31128 -0.00753174 +0.0237075 1.38674 0.0208793 +0.02378 1.2643 0.128541 +0.0238525 1.30158 0.0652807 +0.023925 1.40045 0.0169757 +0.0239975 1.31133 0.121598 +0.02407 1.37937 0.0898883 +0.0241425 1.41036 0.0756932 +0.024215 1.32102 0.0100368 +0.0242875 1.37315 0.101921 +0.02436 1.40338 0.00546928 +0.0244325 1.44786 0.115778 +0.024505 1.25988 0.0175059 +0.0245775 1.29346 0.0944891 +0.02465 1.42402 0.109548 +0.0247225 1.24858 0.175251 +0.024795 1.24596 0.0488353 +0.0248675 1.46101 0.074115 +0.02494 1.21243 0.164396 +0.0250125 1.32939 0.0280979 +0.025085 1.30905 0.0901012 +0.0251575 1.29092 -0.00843355 +0.02523 1.32495 0.0808118 +0.0253025 1.21791 0.0124249 +0.025375 1.22885 0.0164037 +0.0254475 1.18198 -0.0011189 +0.02552 1.25135 0.141713 +0.0255925 1.29608 0.163469 +0.025665 1.29447 0.00672179 +0.0257375 1.25798 0.106622 +0.02581 1.38492 0.187776 +0.0258825 1.30769 0.11301 +0.025955 1.20509 0.0495575 +0.0260275 1.23917 0.047516 +0.0261 1.23574 0.0475953 +0.0261725 1.32047 0.0864439 +0.026245 1.19748 0.0709545 +0.0263175 1.31674 0.105348 +0.02639 1.2121 0.0180778 +0.0264625 1.25774 0.210835 +0.026535 1.2673 0.0652097 +0.0266075 1.33542 0.0808159 +0.02668 1.28414 0.0478625 +0.0267525 1.25374 0.0697772 +0.026825 1.32588 0.0372788 +0.0268975 1.20225 0.0451153 +0.02697 1.16731 0.146497 +0.0270425 1.1618 0.195846 +0.027115 1.06988 0.00896795 +0.0271875 1.18377 0.106609 +0.02726 1.16939 0.186052 +0.0273325 1.20992 0.107144 +0.027405 1.317 -0.00664246 +0.0274775 1.25168 0.0369281 +0.02755 1.17484 0.017652 +0.0276225 1.06971 0.0678316 +0.027695 1.22214 0.0581664 +0.0277675 1.26188 0.0966727 +0.02784 1.1526 0.0997163 +0.0279125 1.26157 0.0528099 +0.027985 1.26148 0.0874876 +0.0280575 1.10062 0.0561248 +0.02813 1.17359 0.0373164 +0.0282025 1.19799 0.128194 +0.028275 1.20526 0.0797179 +0.0283475 1.18734 -0.0111557 +0.02842 1.18096 0.0817679 +0.0284925 1.20112 0.174495 +0.028565 1.21246 0.0927022 +0.0286375 1.17456 0.138122 +0.02871 1.06548 0.0931114 +0.0287825 1.09051 0.125042 +0.028855 1.14007 0.042865 +0.0289275 1.19318 0.120712 +0.029 1.10141 0.0811875 +0.0290725 1.11142 0.08993 +0.029145 1.15958 0.0164287 +0.0292175 1.19604 0.0200359 +0.02929 1.1724 0.111427 +0.0293625 1.03648 -0.0196059 +0.029435 1.11191 0.119865 +0.0295075 1.09171 0.121435 +0.02958 1.16297 0.119502 +0.0296525 1.04712 0.117043 +0.029725 1.05118 0.0955872 +0.0297975 1.20381 0.161536 +0.02987 1.19955 0.115924 +0.0299425 1.15008 0.05577 +0.030015 1.10057 0.138728 +0.0300875 1.02351 -0.0170466 +0.03016 1.17431 0.129225 +0.0302325 1.23946 0.0268037 +0.030305 1.10874 0.0882391 +0.0303775 1.15316 0.0831873 +0.03045 1.00021 -0.059611 +0.0305225 1.12789 0.0466809 +0.030595 1.18278 0.0109386 +0.0306675 1.07598 0.0258726 +0.03074 1.11429 -0.0466559 +0.0308125 1.11018 0.0831122 +0.030885 1.11388 0.052263 +0.0309575 1.05022 0.0464179 +0.03103 1.14318 0.0972948 +0.0311025 0.962385 -0.0838345 +0.031175 1.19309 0.0146794 +0.0312475 1.18717 0.0854419 +0.03132 1.14722 0.0526972 +0.0313925 1.05918 0.0033943 +0.031465 1.0687 0.00944391 +0.0315375 1.00459 0.0788746 +0.03161 1.15782 0.0124666 +0.0316825 1.06042 0.0387943 +0.031755 1.02127 0.0278265 +0.0318275 1.0014 0.00667586 +0.0319 0.940971 -0.0325944 +0.0319725 1.02187 0.103649 +0.032045 1.13819 0.0318179 +0.0321175 1.05756 0.11979 +0.03219 1.04964 0.0135688 +0.0322625 1.04944 0.125965 +0.032335 1.02708 0.154518 +0.0324075 1.00173 0.155975 +0.03248 0.944891 0.135776 +0.0325525 1.08622 -0.00420425 +0.032625 1.03124 0.101011 +0.0326975 1.08486 -0.0190256 +0.03277 1.01322 0.102054 +0.0328425 1.02945 0.117139 +0.032915 1.01735 -0.0420759 +0.0329875 1.11253 0.0573398 +0.03306 0.994128 0.0899258 +0.0331325 0.960777 0.0175351 +0.033205 0.98513 0.0894749 +0.0332775 0.95363 0.000480135 +0.03335 1.08024 0.0925812 +0.0334225 1.08702 0.103649 +0.033495 0.975027 0.0217101 +0.0335675 1.01478 0.0454368 +0.03364 1.04213 0.0536449 +0.0337125 1.15191 0.0230378 +0.033785 0.953237 0.128069 +0.0338575 1.00309 0.0385939 +0.03393 1.00295 0.0546511 +0.0340025 1.01383 0.0507558 +0.034075 1.11408 0.0972655 +0.0341475 0.920818 0.166621 +0.03422 0.947062 -0.0275844 +0.0342925 1.05295 0.0556906 +0.034365 0.945501 0.0694975 +0.0344375 0.900519 0.138147 +0.03451 0.982939 -0.0296218 +0.0345825 1.01518 -0.0139822 +0.034655 1.07519 -0.0234177 +0.0347275 0.997614 0.0333167 +0.0348 1.00176 0.0125376 +0.0348725 1.05775 0.0284653 +0.034945 0.988136 0.0602748 +0.0350175 0.886721 0.0618822 +0.03509 0.927319 0.081605 +0.0351625 1.11617 0.0643831 +0.035235 1.0314 0.0603124 +0.0353075 1.03717 0.121268 +0.03538 0.905087 0.0394331 +0.0354525 0.895071 0.0646085 +0.035525 1.03106 -0.0727582 +0.0355975 0.925912 0.155599 +0.03567 0.988162 0.126061 +0.0357425 0.883761 0.0877548 +0.035815 1.03657 0.00377839 +0.0358875 0.892432 0.0510772 +0.03596 1.00648 0.0723782 +0.0360325 0.999572 0.0448272 +0.036105 0.930868 0.0517327 +0.0361775 0.912168 0.0199149 +0.03625 0.965524 0.0643371 +0.0363225 0.917257 0.0461883 +0.036395 0.965733 0.0358259 +0.0364675 0.965758 0.0204743 +0.03654 0.973958 0.0550727 +0.0366125 1.04174 0.100722 +0.036685 1.00161 0.0892328 +0.0367575 0.981803 0.026716 +0.03683 1.00208 0.0169548 +0.0369025 0.911199 0.169205 +0.036975 0.878517 0.024165 +0.0370475 0.974747 0.0245157 +0.03712 0.959153 0.0816176 +0.0371925 0.948211 -0.0912243 +0.037265 0.956686 0.0191759 +0.0373375 0.904014 0.0246827 +0.03741 0.956072 0.0279393 +0.0374825 0.842052 -0.00619573 +0.037555 0.946883 0.0370784 +0.0376275 0.895171 0.0806072 +0.0377 0.868697 0.127167 +0.0377725 0.870426 0.152614 +0.037845 0.877206 0.0279935 +0.0379175 0.928471 0.174462 +0.03799 0.931465 -0.0627757 +0.0380625 0.944808 0.0994616 +0.038135 1.02852 0.0582082 +0.0382075 0.999818 0.0703617 +0.03828 0.924735 -0.01541 +0.0383525 0.949588 -0.0421385 +0.038425 0.876976 0.0666125 +0.0384975 0.921649 0.00639196 +0.03857 0.929932 0.0946561 +0.0386425 0.852607 -0.0223656 +0.038715 0.951718 0.241901 +0.0387875 0.88159 0.0686416 +0.03886 0.991577 0.0351161 +0.0389325 0.908978 -0.0184327 +0.039005 0.899359 0.156451 +0.0390775 0.864944 0.0668046 +0.03915 0.821486 0.0651137 +0.0392225 0.80702 0.12308 +0.039295 0.855588 0.0607424 +0.0393675 0.847559 0.0440966 +0.03944 0.972388 0.12591 +0.0395125 0.831381 -0.0400009 +0.039585 0.758994 0.053958 +0.0396575 0.849066 0.121226 +0.03973 0.869244 0.000993656 +0.0398025 0.836216 0.00970693 +0.039875 0.891217 0.00103123 +0.0399475 0.948031 0.115715 +0.04002 0.817219 0.160112 +0.0400925 0.832851 0.0876212 +0.040165 0.887021 0.10845 +0.0402375 0.909709 0.0115314 +0.04031 0.954473 0.0752966 +0.0403825 0.835944 0.171811 +0.040455 0.840407 0.0666 +0.0405275 0.799333 -0.014909 +0.0406 0.843129 -0.116216 +0.0406725 0.793263 0.0576112 +0.040745 0.826196 0.0111306 +0.0408175 0.88394 0.122971 +0.04089 0.809516 0.0880304 +0.0409625 0.86074 0.161786 +0.041035 0.877953 -0.0539664 +0.0411075 0.856247 0.0426896 +0.04118 0.845305 0.00613311 +0.0412525 0.84434 0.128144 +0.041325 0.739117 0.053553 +0.0413975 0.759324 0.0568638 +0.04147 0.899146 0.0187584 +0.0415425 0.904189 0.0899968 +0.041615 0.889702 0.0879511 +0.0416875 0.939977 0.0685456 +0.04176 0.803625 0.122604 +0.0418325 0.830316 0.0929778 +0.041905 0.899964 0.0188753 +0.0419775 0.903926 0.033325 +0.04205 0.866727 0.00215431 +0.0421225 0.836558 0.00287242 +0.042195 0.825649 0.0956498 +0.0422675 0.804515 0.0904728 +0.04234 0.835068 0.0230002 +0.0424125 0.791255 -0.06913 +0.042485 0.770672 0.0410822 +0.0425575 0.737706 0.135905 +0.04263 0.808581 -0.0137275 +0.0427025 0.825615 0.131722 +0.042775 0.820167 0.00442552 +0.0428475 0.856915 0.112834 +0.04292 0.815716 -0.0033776 +0.0429925 0.802072 0.0172888 +0.043065 0.90406 0.000258856 +0.0431375 0.798457 -0.0388528 +0.04321 0.72903 0.127868 +0.0432825 0.761721 0.0220984 +0.043355 0.796787 0.00736057 +0.0434275 0.854289 0.055937 +0.0435 0.672091 0.157824 +0.0435725 0.790086 -0.00585339 +0.043645 0.677239 -0.00554026 +0.0437175 0.804945 0.0887318 +0.04379 0.73877 0.0686666 +0.0438625 0.847426 0.0323648 +0.043935 0.843539 0.0476621 +0.0440075 0.714088 0.166705 +0.04408 0.742941 0.0045466 +0.0441525 0.762147 0.115043 +0.044225 0.857145 0.132144 +0.0442975 0.71706 0.110692 +0.04437 0.796144 0.023234 +0.0444425 0.86223 0.0544047 +0.044515 0.726696 0.0171844 +0.0445875 0.801467 0.0696937 +0.04466 0.758314 0.139809 +0.0447325 0.780813 0.105156 +0.044805 0.831343 0.00229209 +0.0448775 0.744307 0.0436374 +0.04495 0.698306 -0.0516367 +0.0450225 0.723928 -0.0114688 +0.045095 0.795772 0.0403182 +0.0451675 0.759429 0.141517 +0.04524 0.669636 -0.0749918 +0.0453125 0.852557 -8.34989e-005 +0.045385 0.781251 0.0745659 +0.0454575 0.772208 -0.0264655 +0.04553 0.728128 0.049712 +0.0456025 0.757796 0.0470483 +0.045675 0.741351 0.0738395 +0.0457475 0.741952 0.097015 +0.04582 0.705362 0.0585881 +0.0458925 0.7723 -0.0130929 +0.045965 0.726755 0.0103248 +0.0460375 0.682303 -0.0156355 +0.04611 0.745906 0.107774 +0.0461825 0.727389 0.0262567 +0.046255 0.719311 0.0555362 +0.0463275 0.696979 0.00721444 +0.0464 0.768906 -0.0100535 +0.0464725 0.735902 0.0612309 +0.046545 0.713791 0.0636983 +0.0466175 0.677377 0.0572855 +0.04669 0.769002 0.043938 +0.0467625 0.64252 0.0626128 +0.046835 0.903463 -0.0733218 +0.0469075 0.693526 0.0570141 +0.04698 0.773874 0.0889907 +0.0470525 0.681456 0.0580662 +0.047125 0.740741 0.00605378 +0.0471975 0.775924 0.0363352 +0.04727 0.709875 0.0525886 +0.0473425 0.693593 -0.0338803 +0.047415 0.729076 0.0475702 +0.0474875 0.726834 0.0038452 +0.04756 0.620513 0.172053 +0.0476325 0.733848 -0.0484303 +0.047705 0.725786 0.238102 +0.0477775 0.800912 0.0289955 +0.04785 0.751174 0.168208 +0.0479225 0.725235 0.106167 +0.047995 0.564037 0.00343605 +0.0480675 0.77286 0.0714305 +0.04814 0.713725 0.0676897 +0.0482125 0.65919 0.0153265 +0.048285 0.694845 0.0520626 +0.0483575 0.639534 0.116107 +0.04843 0.80173 0.000258852 +0.0485025 0.768935 0.0411616 +0.048575 0.721899 0.102764 +0.0486475 0.674759 0.10757 +0.04872 0.698599 -0.050785 +0.0487925 0.730228 0.0959838 +0.048865 0.696206 0.077 +0.0489375 0.730684 0.103077 +0.04901 0.747488 0.0595191 +0.0490825 0.751888 0.0811458 +0.049155 0.682608 0.0445976 +0.0492275 0.576224 0.0961007 +0.0493 0.662543 0.0603583 +0.0493725 0.682028 0.0142243 +0.049445 0.628508 -0.088569 +0.0495175 0.612113 0.0161824 +0.04959 0.628792 0.0240523 +0.0496625 0.683844 0.0276554 +0.049735 0.671924 0.0646837 +0.0498075 0.683076 0.158805 +0.04988 0.647713 -0.0172011 +0.0499525 0.646507 0.0561916 +0.050025 0.649613 0.00939798 +0.0500975 0.652565 0.0767745 +0.05017 0.636148 0.119794 +0.0502425 0.670684 -0.0196936 +0.050315 0.74118 0.0580913 +0.0503875 0.678483 -0.0558827 +0.05046 0.587814 0.128265 +0.0505325 0.595037 0.0576696 +0.050605 0.709149 0.164659 +0.0506775 0.711704 0.0222028 +0.05075 0.631907 0.043366 +0.0508225 0.60985 0.0661199 +0.050895 0.65793 0.0338511 +0.0509675 0.684203 0.0673056 +0.05104 0.741889 0.0960256 +0.0511125 0.726367 -0.0582959 +0.051185 0.638336 0.140473 +0.0512575 0.551086 0.0171259 +0.05133 0.619357 0.00128591 +0.0514025 0.705709 0.0649717 +0.051475 0.647354 -0.0137985 +0.0515475 0.635547 -0.004079 +0.05162 0.687038 0.0818263 +0.0516925 0.653153 -0.0157858 +0.051765 0.592711 0.0385689 +0.0518375 0.691856 0.104351 +0.05191 0.668405 0.0103248 +0.0519825 0.561846 0.150505 +0.052055 0.564818 0.0568972 +0.0521275 0.568517 0.0495993 +0.0522 0.603525 0.0206789 +0.0522725 0.585317 0.131952 +0.052345 0.679084 0.013978 +0.0524175 0.647363 0.0772254 +0.05249 0.692486 0.050213 +0.0525625 0.585702 0.0743906 +0.052635 0.554251 0.107728 +0.0527075 0.639084 0.112216 +0.05278 0.664564 -0.041721 +0.0528525 0.553875 -0.000308954 +0.052925 0.624387 -0.0192385 +0.0529975 0.575277 0.0215348 +0.05307 0.683602 -0.0402097 +0.0531425 0.614952 0.0995033 +0.053215 0.593609 0.0376337 +0.0532875 0.696148 0.0340306 +0.05336 0.715257 0.0953951 +0.0534325 0.535184 -0.0143788 +0.053505 0.619649 0.109194 +0.0535775 0.603053 0.0400009 +0.05365 0.639747 0.0319974 +0.0537225 0.665265 0.000513527 +0.053795 0.557328 0.0185872 +0.0538675 0.557737 0.0240732 +0.05394 0.598803 0.0657191 +0.0540125 0.617695 0.0478541 +0.054085 0.625794 -0.00161156 +0.0541575 0.554147 0.0606673 +0.05423 0.543333 0.00611641 +0.0543025 0.619866 0.0940842 +0.054375 0.649943 0.018295 +0.0544475 0.632074 0.0749333 +0.05452 0.666551 0.0114479 +0.0545925 0.645379 0.0173389 +0.054665 0.593985 0.0736182 +0.0547375 0.648632 0.0829369 +0.05481 0.610618 0.0145166 +0.0548825 0.569432 -0.0114396 +0.054955 0.507925 0.0128173 +0.0550275 0.61266 0.0233175 +0.0551 0.580779 0.060922 +0.0551725 0.570738 0.115502 +0.055245 0.547166 0.0649216 +0.0553175 0.487614 0.0396293 +0.05539 0.641284 0.0578157 +0.0554625 0.600636 0.0463678 +0.055535 0.529314 -0.0293379 +0.0556075 0.552214 0.151712 +0.05568 0.61901 0.025334 +0.0557525 0.524362 0.120733 +0.055825 0.599579 -0.0106797 +0.0558975 0.648081 0.0585672 +0.05597 0.551324 0.00822897 +0.0560425 0.549767 -0.00750252 +0.056115 0.639597 0.0871119 +0.0561875 0.56458 -0.00179943 +0.05626 0.550569 -0.00390365 +0.0563325 0.57693 0.0477748 +0.056405 0.522091 -0.0591726 +0.0564775 0.627122 0.0817553 +0.05655 0.508226 0.0461799 +0.0566225 0.521135 0.00198314 +0.056695 0.666167 -0.0103624 +0.0567675 0.609019 0.0109427 +0.05684 0.593972 0.0316926 +0.0569125 0.659504 0.018295 +0.056985 0.554268 0.0193178 +0.0570575 0.496206 0.0699442 +0.05713 0.587948 0.0874167 +0.0572025 0.521156 -0.0243487 +0.057275 0.616705 0.0334503 +0.0573475 0.533405 0.139116 +0.05742 0.604251 0.124386 +0.0574925 0.637255 0.0886942 +0.057565 0.501053 0.0492319 +0.0576375 0.574153 0.0274174 +0.05771 0.580934 0.091813 +0.0577825 0.479894 0.125397 +0.057855 0.604222 -0.00409152 +0.0579275 0.532988 0.112525 +0.058 0.543976 0.0150802 +0.0580725 0.546051 0.0603291 +0.058145 0.524304 0.084657 +0.0582175 0.5432 -0.0683869 +0.05829 0.518551 -0.0192677 +0.0583625 0.558531 0.0361891 +0.058435 0.473381 0.104701 +0.0585075 0.569248 -0.0226787 +0.05858 0.507378 0.0952281 +0.0586525 0.590991 0.0799976 +0.058725 0.592757 -0.0358384 +0.0587975 0.521824 -0.00690131 +0.05887 0.568722 -0.00705162 +0.0589425 0.546056 0.00160739 +0.059015 0.466359 0.0211715 +0.0590875 0.531664 0.126349 +0.05916 0.485822 -0.0334962 +0.0592325 0.534148 -0.0750962 +0.059305 0.538048 0.0199733 +0.0593775 0.612192 0.0183826 +0.05945 0.569528 0.140861 +0.0595225 0.614785 0.0443471 +0.059595 0.557934 0.0674851 +0.0596675 0.451667 0.0234344 +0.05974 0.447922 0.0641659 +0.0598125 0.586249 -0.0364438 +0.059885 0.496799 0.0745325 +0.0599575 0.508522 0.120353 +0.06003 0.451521 0.0137275 +0.0601025 0.618505 0.0121201 +0.060175 0.549963 -0.0202322 +0.0602475 0.524325 0.08535 +0.06032 0.555174 0.0867987 +0.0603925 0.590378 0.0442469 +0.060465 0.521891 0.0609846 +0.0605375 0.55122 0.0834337 +0.06061 0.561361 0.0925519 +0.0606825 0.47769 0.0541835 +0.060755 0.569014 0.00364479 +0.0608275 0.538657 0.0191842 +0.0609 0.495701 0.0275886 +0.0609725 0.506397 -0.00913078 +0.061045 0.500176 0.0463386 +0.0611175 0.504276 0.0640574 +0.06119 0.528888 -0.0184244 +0.0612625 0.487184 0.0343438 +0.061335 0.584453 0.0380345 +0.0614075 0.560004 -0.0222237 +0.06148 0.491459 0.0353124 +0.0615525 0.44345 0.0651471 +0.061625 0.646544 0.0633309 +0.0616975 0.513161 0.062354 +0.06177 0.584825 -0.0249959 +0.0618425 0.439488 0.0720567 +0.061915 0.478445 0.0537952 +0.0619875 0.532971 0.0262275 +0.06206 0.458242 -0.050522 +0.0621325 0.435063 0.139241 +0.062205 0.454714 0.0466517 +0.0622775 0.553629 -0.00619991 +0.06235 0.533794 0.123343 +0.0624225 0.598256 0.079839 +0.062495 0.516371 0.074495 +0.0625675 0.445354 0.128056 +0.06264 0.52245 2.50466e-005 +0.0627125 0.439075 0.0397546 +0.062785 0.559833 0.013836 +0.0628575 0.379025 0.0871829 +0.06293 0.48796 0.0391909 +0.0630025 0.316822 0.0914372 +0.063075 0.484821 0.0890073 +0.0631475 0.557854 -0.0203198 +0.06322 0.498874 0.0887151 +0.0632925 0.39679 0.0510605 +0.063365 0.573765 0.0550143 +0.0634375 0.404906 0.13244 +0.06351 0.507629 0.0607717 +0.0635825 0.446753 0.0616776 +0.063655 0.482178 0.131868 +0.0637275 0.482842 0.187805 +0.0638 0.515707 0.019656 +0.0638725 0.501003 -0.00586173 +0.063945 0.475239 0.0598198 +0.0640175 0.575435 0.00616233 +0.06409 0.372613 0.116508 +0.0641625 0.427109 -0.0138402 +0.064235 0.353391 -0.00214596 +0.0643075 0.498268 0.00740649 +0.06438 0.474633 0.0639238 +0.0644525 0.568613 -0.0526178 +0.064525 0.419941 -0.00210839 +0.0645975 0.476562 0.0370032 +0.06467 0.369899 0.0277222 +0.0647425 0.446565 0.042126 +0.064815 0.513094 0.000350703 +0.0648875 0.425794 -0.0176979 +0.06496 0.523569 0.0890324 +0.0650325 0.474095 0.160283 +0.065105 0.383764 -0.0198188 +0.0651775 0.431677 0.0653391 +0.06525 0.467958 0.0252213 +0.0653225 0.485142 0.0520834 +0.065395 0.43224 -0.00983636 +0.0654675 0.406092 0.115239 +0.06554 0.484712 0.0520709 +0.0656125 0.46177 -0.0467645 +0.065685 0.438428 0.0404101 +0.0657575 0.479109 0.00392035 +0.06583 0.350389 0.101816 +0.0659025 0.570171 -0.0552147 +0.065975 0.4764 -0.0499792 +0.0660475 0.380771 0.0158901 +0.06612 0.473164 -0.0311582 +0.0661925 0.511946 0.0952824 +0.066265 0.497546 -0.0508059 +0.0663375 0.448222 0.0859011 +0.06641 0.520671 0.0645375 +0.0664825 0.536737 0.107908 +0.066555 0.384232 0.0323439 +0.0666275 0.419811 0.124599 +0.0667 0.398448 -0.0527097 +0.0667725 0.434194 -0.0605963 +0.066845 0.477272 0.0939506 +0.0669175 0.447604 -0.0229084 +0.06699 0.51425 0.0420174 +0.0670625 0.299863 -0.0110012 +0.067135 0.443897 -0.131476 +0.0672075 0.496853 0.0376086 +0.06728 0.521348 0.0316592 +0.0673525 0.40567 -0.0702823 +0.067425 0.426308 -0.0808452 +0.0674975 0.362864 0.059014 +0.06757 0.428211 0.00819974 +0.0676425 0.425088 0.0913621 +0.067715 0.459971 -0.0317761 +0.0677875 0.424592 -0.0467728 +0.06786 0.361123 0.030294 +0.0679325 0.404497 -0.0354961 +0.068005 0.467791 0.0954786 +0.0680775 0.413532 -0.0160112 +0.06815 0.518279 0.0432407 +0.0682225 0.442932 0.0879344 +0.068295 0.404255 0.111736 +0.0683675 0.452422 -0.0340724 +0.06844 0.44955 0.0298598 +0.0685125 0.462138 0.0708627 +0.068585 0.457574 0.087901 +0.0686575 0.471953 0.0986015 +0.06873 0.456117 -0.00996578 +0.0688025 0.48905 0.00971946 +0.068875 0.528708 0.0375961 +0.0689475 0.468454 0.0172554 +0.06902 0.459098 0.0270959 +0.0690925 0.502456 -0.0170425 +0.069165 0.515106 0.0243947 +0.0692375 0.438803 -0.00607048 +0.06931 0.327059 0.0572605 +0.0693825 0.297955 0.0393454 +0.069455 0.517899 0.0459587 +0.0695275 0.417628 -0.0120074 +0.0696 0.337254 0.0679402 +0.0696725 0.282465 -0.0164245 +0.069745 0.460973 0.0144623 +0.0698175 0.339075 0.0656397 +0.06989 0.373556 -0.0283735 +0.0699625 0.450427 -0.0123372 +0.070035 0.436553 -0.0169005 +0.0701075 0.471423 0.00296844 +0.07018 0.395212 -0.0711633 +0.0702525 0.375627 -0.0437793 +0.070325 0.378082 0.0980421 +0.0703975 0.317252 0.0754009 +0.07047 0.438378 -0.036235 +0.0705425 0.281672 0.00199149 +0.070615 0.43242 0.0378216 +0.0706875 0.37918 -0.00817054 +0.07076 0.440657 0.038047 +0.0708325 0.386695 0.0432324 +0.070905 0.438469 0.150476 +0.0709775 0.486177 0.0793547 +0.07105 0.504234 -0.102731 +0.0711225 0.378921 0.0225785 +0.071195 0.503834 -0.0212592 +0.0712675 0.342415 -0.0949234 +0.07134 0.357152 -0.0442052 +0.0714125 0.399065 -0.0213135 +0.071485 0.315807 0.0759019 +0.0715575 0.378023 0.0863145 +0.07163 0.327071 0.0914706 +0.0717025 0.374483 0.0762067 +0.071775 0.421439 -0.0265782 +0.0718475 0.349007 -0.0356923 +0.07192 0.305102 0.140895 +0.0719925 0.402092 -0.0256138 +0.072065 0.386737 0.131033 +0.0721375 0.341358 -0.101249 +0.07221 0.323356 0.102664 +0.0722825 0.411812 -0.0680654 +0.072355 0.361361 -0.000730627 +0.0724275 0.395387 0.059707 +0.0725 0.408806 0.068103 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/6/data-05500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/6/data-05500um.dat new file mode 100644 index 0000000..2117274 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/6/data-05500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 2.46677 0.113623 +0.000145 3.18061 0.0035112 +0.0002175 3.05844 0.087855 +0.00029 3.00381 0.0336716 +0.0003625 3.05033 0.181676 +0.000435 2.95931 0.133054 +0.0005075 2.92643 0.0338219 +0.00058 2.98645 0.114963 +0.0006525 2.87279 0.183868 +0.000725 2.93881 0.0702865 +0.0007975 2.84781 0.125025 +0.00087 2.98965 0.0805028 +0.0009425 2.92595 0.248305 +0.001015 2.82424 0.206668 +0.0010875 2.84511 -0.031726 +0.00116 2.85151 0.057845 +0.0012325 2.92586 0.121982 +0.001305 2.84464 0.279635 +0.0013775 2.79431 0.112876 +0.00145 2.85793 0.255916 +0.0015225 2.82644 0.0428441 +0.001595 2.84682 0.16412 +0.0016675 2.84529 0.125176 +0.00174 2.92421 0.0579619 +0.0018125 2.73466 0.187492 +0.001885 2.73656 0.041817 +0.0019575 2.83311 0.149938 +0.00203 2.80657 0.10309 +0.0021025 2.79806 0.112433 +0.002175 2.65501 0.134298 +0.0022475 2.71381 0.211974 +0.00232 2.79921 0.128741 +0.0023925 2.74162 0.091575 +0.002465 2.76609 0.102376 +0.0025375 2.55725 0.253846 +0.00261 2.66561 0.0810873 +0.0026825 2.61226 0.0517786 +0.002755 2.72473 0.174863 +0.0028275 2.73915 0.0928943 +0.0029 2.7217 0.210008 +0.0029725 2.60772 0.125793 +0.003045 2.58263 0.0942887 +0.0031175 2.63672 0.174103 +0.00319 2.63898 0.141241 +0.0032625 2.57482 0.104146 +0.003335 2.69235 0.178466 +0.0034075 2.50562 0.0748415 +0.00348 2.53534 0.0464388 +0.0035525 2.59829 0.0364146 +0.003625 2.48449 0.0874626 +0.0036975 2.64067 0.0547972 +0.00377 2.56159 0.171109 +0.0038425 2.60251 0.11827 +0.003915 2.61482 0.133634 +0.0039875 2.54628 0.126825 +0.00406 2.51461 0.159995 +0.0041325 2.49256 0.148869 +0.004205 2.48327 0.0393287 +0.0042775 2.55641 0.0556447 +0.00435 2.53016 0.184235 +0.0044225 2.46025 0.166279 +0.004495 2.62409 0.197867 +0.0045675 2.49385 0.161732 +0.00464 2.41391 0.00686791 +0.0047125 2.40699 0.115794 +0.004785 2.46556 0.24957 +0.0048575 2.50481 0.104175 +0.00493 2.46107 0.166283 +0.0050025 2.48056 0.174812 +0.005075 2.42335 0.0917378 +0.0051475 2.37174 0.149387 +0.00522 2.38711 0.156125 +0.0052925 2.53814 0.11134 +0.005365 2.37826 0.0340014 +0.0054375 2.4658 0.0991777 +0.00551 2.38001 0.125773 +0.0055825 2.41326 0.101603 +0.005655 2.35703 0.0735932 +0.0057275 2.34293 0.122904 +0.0058 2.40004 0.195838 +0.0058725 2.43358 0.251274 +0.005945 2.24019 0.058133 +0.0060175 2.4711 0.0174683 +0.00609 2.34939 0.104501 +0.0061625 2.27251 0.0907233 +0.006235 2.37189 0.119932 +0.0063075 2.32353 0.138168 +0.00638 2.36551 0.17179 +0.0064525 2.35107 0.188548 +0.006525 2.37795 0.125601 +0.0065975 2.4585 0.222449 +0.00667 2.32413 0.196122 +0.0067425 2.44261 0.116412 +0.006815 2.28125 0.224512 +0.0068875 2.33253 0.126549 +0.00696 2.28268 0.0675895 +0.0070325 2.36879 0.0460714 +0.007105 2.28585 0.10043 +0.0071775 2.3459 0.0537994 +0.00725 2.33546 0.0820559 +0.0073225 2.29166 0.0897589 +0.007395 2.33311 0.171356 +0.0074675 2.28293 0.0826446 +0.00754 2.29679 0.20911 +0.0076125 2.27645 0.147591 +0.007685 2.22229 0.025284 +0.0077575 2.27596 0.0559537 +0.00783 2.28502 0.0715098 +0.0079025 2.28145 0.0828074 +0.007975 2.20633 0.126787 +0.0080475 2.24709 0.142823 +0.00812 2.29517 0.175618 +0.0081925 2.24796 0.18558 +0.008265 2.15758 0.200689 +0.0083375 2.22216 0.108826 +0.00841 2.2123 0.246748 +0.0084825 2.07634 0.0482507 +0.008555 2.1999 0.0599074 +0.0086275 2.26833 0.105302 +0.0087 2.16123 0.0119781 +0.0087725 2.20492 0.0836925 +0.008845 2.27319 0.0392244 +0.0089175 2.19465 0.0390991 +0.00899 2.20592 0.105461 +0.0090625 2.20241 0.021873 +0.009135 2.09295 0.160851 +0.0092075 2.21907 0.150839 +0.00928 2.19827 0.10711 +0.0093525 2.12768 0.111406 +0.009425 2.04703 0.0945559 +0.0094975 2.14658 0.114579 +0.00957 2.07669 0.0375669 +0.0096425 2.04873 0.188657 +0.009715 2.07637 0.168199 +0.0097875 2.14323 0.049211 +0.00986 2.06469 0.209469 +0.0099325 2.09011 0.0390448 +0.010005 2.07054 0.210713 +0.0100775 2.09619 0.19168 +0.01015 2.1354 0.187697 +0.0102225 2.06064 0.190874 +0.010295 2.07669 0.0350452 +0.0103675 2.06765 0.13429 +0.01044 2.06204 0.0853542 +0.0105125 2.07563 0.135066 +0.010585 2.0066 0.0624667 +0.0106575 2.10084 0.0729252 +0.01073 2.00043 0.0749208 +0.0108025 1.98834 0.176716 +0.010875 2.13554 0.177054 +0.0109475 1.9893 0.134962 +0.01102 2.03532 0.0680654 +0.0110925 1.99574 0.126403 +0.011165 2.00448 0.152752 +0.0112375 1.95081 0.0509854 +0.01131 2.0097 0.122178 +0.0113825 2.03543 0.258271 +0.011455 2.01554 -0.0154518 +0.0115275 2.02039 0.137195 +0.0116 2.08607 0.0689088 +0.0116725 1.99203 0.108037 +0.011745 1.99969 0.14092 +0.0118175 1.93575 0.16478 +0.01189 1.8995 0.0981548 +0.0119625 2.02376 0.104897 +0.012035 1.95641 0.126495 +0.0121075 1.94474 0.176407 +0.01218 1.99435 0.180812 +0.0122525 1.91664 0.0380679 +0.012325 2.07277 0.150451 +0.0123975 1.92611 0.220128 +0.01247 1.88355 0.0704953 +0.0125425 1.90637 0.15213 +0.012615 1.82774 0.141241 +0.0126875 1.95676 0.0878342 +0.01276 1.94767 0.212897 +0.0128325 1.92878 0.115464 +0.012905 1.93173 0.161695 +0.0129775 1.94147 0.233981 +0.01305 1.96697 0.163548 +0.0131225 1.82158 0.083513 +0.013195 1.90954 0.114805 +0.0132675 1.87487 0.275272 +0.01334 1.88309 0.0130052 +0.0134125 1.93925 0.129476 +0.013485 1.69504 0.155991 +0.0135575 1.92029 0.0705663 +0.01363 1.90092 0.0511357 +0.0137025 1.92827 0.116329 +0.013775 1.85798 0.0108467 +0.0138475 1.81323 0.0903225 +0.01392 1.83522 0.187488 +0.0139925 1.87578 0.135488 +0.014065 1.85243 0.0969399 +0.0141375 2.01543 0.0472947 +0.01421 1.75313 0.140481 +0.0142825 1.88902 0.102568 +0.014355 1.96402 0.0282774 +0.0144275 1.90435 0.181852 +0.0145 1.77723 0.0586132 +0.0145725 1.86376 0.0621536 +0.014645 1.76332 -0.0257724 +0.0147175 1.87997 0.153912 +0.01479 1.67235 0.111757 +0.0148625 1.78218 0.114032 +0.014935 1.8761 0.139304 +0.0150075 1.80751 0.101699 +0.01508 1.73323 0.0910239 +0.0151525 1.68784 0.0831373 +0.015225 1.81634 0.0561833 +0.0152975 1.63858 -0.000400802 +0.01537 1.75467 0.092719 +0.0154425 1.8014 0.179084 +0.015515 1.77919 0.0564755 +0.0155875 1.69949 0.0899634 +0.01566 1.7117 0.125631 +0.0157325 1.88354 0.28869 +0.015805 1.74202 0.0882892 +0.0158775 1.8225 0.072587 +0.01595 1.67068 0.0726914 +0.0160225 1.9118 0.0973657 +0.016095 1.66048 0.0988395 +0.0161675 1.8074 0.12781 +0.01624 1.68398 0.11979 +0.0163125 1.66943 0.142322 +0.016385 1.72227 0.175055 +0.0164575 1.7602 0.0276136 +0.01653 1.736 0.134661 +0.0166025 1.78792 0.146276 +0.016675 1.77401 0.18874 +0.0167475 1.6858 0.0206664 +0.01682 1.56018 0.0362267 +0.0168925 1.65682 0.105302 +0.016965 1.6803 0.0291041 +0.0170375 1.74997 0.157632 +0.01711 1.70108 0.138197 +0.0171825 1.74835 0.0465432 +0.017255 1.6184 0.162346 +0.0173275 1.62482 0.0751797 +0.0174 1.73251 0.106593 +0.0174725 1.67247 0.128157 +0.017545 1.70475 0.131517 +0.0176175 1.62154 0.0876922 +0.01769 1.66351 0.0694641 +0.0177625 1.63149 0.131041 +0.017835 1.62446 0.112788 +0.0179075 1.65006 0.125447 +0.01798 1.62077 0.0453658 +0.0180525 1.72518 0.144873 +0.018125 1.53566 0.11951 +0.0181975 1.60788 0.0511441 +0.01827 1.58434 0.0456748 +0.0183425 1.63643 0.135989 +0.018415 1.615 0.0561123 +0.0184875 1.59617 -0.0173973 +0.01856 1.62695 0.0751546 +0.0186325 1.71412 0.108914 +0.018705 1.62218 0.168387 +0.0187775 1.54147 0.033396 +0.01885 1.53584 0.149645 +0.0189225 1.62939 0.0655521 +0.018995 1.62972 0.163895 +0.0190675 1.52251 0.074186 +0.01914 1.54367 0.145379 +0.0192125 1.59079 0.028983 +0.019285 1.57029 0.0607967 +0.0193575 1.49916 0.110901 +0.01943 1.55078 0.112454 +0.0195025 1.55803 0.00467185 +0.019575 1.58805 0.0785823 +0.0196475 1.64776 0.0378048 +0.01972 1.6575 0.119806 +0.0197925 1.45627 0.160676 +0.019865 1.61735 0.0782191 +0.0199375 1.53392 0.0955955 +0.02001 1.49807 0.103695 +0.0200825 1.56598 0.0956582 +0.020155 1.48877 0.0497245 +0.0202275 1.53913 0.143525 +0.0203 1.56123 0.203737 +0.0203725 1.52485 0.0150969 +0.020445 1.46597 0.0457875 +0.0205175 1.50005 0.112868 +0.02059 1.46136 0.0921136 +0.0206625 1.52747 0.0682992 +0.020735 1.6022 0.0503257 +0.0208075 1.47958 0.0791793 +0.02088 1.52903 0.253499 +0.0209525 1.55503 0.119431 +0.021025 1.43592 0.0130344 +0.0210975 1.57446 0.0420968 +0.02117 1.51665 0.0363979 +0.0212425 1.50662 0.119969 +0.021315 1.46306 0.109628 +0.0213875 1.41487 0.120746 +0.02146 1.58301 0.0914664 +0.0215325 1.48014 0.206764 +0.021605 1.52013 0.062546 +0.0216775 1.45812 0.0506973 +0.02175 1.48288 0.0911408 +0.0218225 1.525 0.143182 +0.021895 1.45428 0.142807 +0.0219675 1.45388 0.073614 +0.02204 1.50249 0.0153599 +0.0221125 1.34193 0.127789 +0.022185 1.39761 0.0552606 +0.0222575 1.434 0.138891 +0.02233 1.42152 0.0880053 +0.0224025 1.50991 0.120408 +0.022475 1.48166 0.0945434 +0.0225475 1.33717 0.0989982 +0.02262 1.5923 0.0728542 +0.0226925 1.40885 0.0659361 +0.022765 1.52983 -0.0118654 +0.0228375 1.52217 0.0885314 +0.02291 1.44892 0.101002 +0.0229825 1.42003 -0.0116358 +0.023055 1.35381 -0.0091433 +0.0231275 1.4413 0.0519498 +0.0232 1.44873 0.0444724 +0.0232725 1.61488 0.176178 +0.023345 1.37917 0.217991 +0.0234175 1.42802 0.143838 +0.02349 1.4131 0.0305946 +0.0235625 1.41383 0.0877632 +0.023635 1.44042 0.0165623 +0.0237075 1.44856 0.155657 +0.02378 1.35916 0.146001 +0.0238525 1.299 0.134699 +0.023925 1.35352 -0.00360722 +0.0239975 1.44805 -0.0276721 +0.02407 1.38162 0.11804 +0.0241425 1.33651 0.0672763 +0.024215 1.44136 0.082152 +0.0242875 1.39715 0.20347 +0.02436 1.42741 0.0677231 +0.0244325 1.33516 0.186561 +0.024505 1.41625 0.167819 +0.0245775 1.34543 -0.0594607 +0.02465 1.47689 0.140414 +0.0247225 1.2698 0.00253424 +0.024795 1.31395 0.165106 +0.0248675 1.35069 0.0842478 +0.02494 1.28547 0.0459628 +0.0250125 1.38293 0.0978709 +0.025085 1.37886 0.155833 +0.0251575 1.34096 0.102818 +0.02523 1.35607 0.0134645 +0.0253025 1.34539 0.10271 +0.025375 1.35303 0.122537 +0.0254475 1.25153 0.125785 +0.02552 1.29486 0.097825 +0.0255925 1.25846 0.0255136 +0.025665 1.32527 0.120362 +0.0257375 1.26206 0.115995 +0.02581 1.35395 0.13176 +0.0258825 1.30925 0.123752 +0.025955 1.40335 0.0620367 +0.0260275 1.30099 0.0365273 +0.0261 1.27484 0.0804736 +0.0261725 1.32674 0.13639 +0.026245 1.33194 -0.0211882 +0.0263175 1.33929 0.0186665 +0.02639 1.29312 0.161235 +0.0264625 1.23838 0.0455787 +0.026535 1.27199 0.0533693 +0.0266075 1.34197 -0.00584503 +0.02668 1.29101 0.0442553 +0.0267525 1.22102 0.0971653 +0.026825 1.30588 0.12761 +0.0268975 1.22889 0.110154 +0.02697 1.39909 0.05205 +0.0270425 1.29359 -0.00565298 +0.027115 1.21488 0.12285 +0.0271875 1.26303 0.0745284 +0.02726 1.20089 0.0109511 +0.0273325 1.17739 0.107787 +0.027405 1.16264 0.0739898 +0.0274775 1.26427 0.0493822 +0.02755 1.25463 0.119493 +0.0276225 1.298 0.0975912 +0.027695 1.22967 0.104852 +0.0277675 1.24422 0.072754 +0.02784 1.1844 0.00278056 +0.0279125 1.31541 0.205048 +0.027985 1.24753 0.217807 +0.0280575 1.13957 0.100818 +0.02813 1.33984 0.101549 +0.0282025 1.14776 0.0128549 +0.028275 1.25488 0.0711967 +0.0283475 1.27638 0.124478 +0.02842 1.19826 0.139922 +0.0284925 1.24146 0.0229543 +0.028565 1.2255 0.0584879 +0.0286375 1.19791 0.100125 +0.02871 1.26567 0.0247788 +0.0287825 1.24208 0.0399132 +0.028855 1.1675 0.0667962 +0.0289275 1.24535 0.0500377 +0.029 1.23002 0.212317 +0.0290725 1.18207 0.125059 +0.029145 1.2326 0.0822271 +0.0292175 1.20798 0.0682616 +0.02929 1.17572 0.09823 +0.0293625 1.09839 0.0791084 +0.029435 1.15523 0.021635 +0.0295075 1.15029 0.0859972 +0.02958 1.15383 0.0689631 +0.0296525 1.14746 0.0467811 +0.029725 1.20397 0.0854669 +0.0297975 1.22842 0.151558 +0.02987 1.30214 -0.0712635 +0.0299425 1.21999 0.0368696 +0.030015 1.18687 0.0054818 +0.0300875 1.17514 -0.011594 +0.03016 1.14067 0.140556 +0.0302325 1.16632 0.0454618 +0.030305 1.20891 0.040289 +0.0303775 1.13441 0.0524634 +0.03045 1.13347 -0.0457583 +0.0305225 1.13961 0.107741 +0.030595 1.19359 0.0508267 +0.0306675 1.15595 -0.0373247 +0.03074 1.04736 0.082486 +0.0308125 1.0942 0.0815173 +0.030885 1.17864 0.0556907 +0.0309575 1.1284 -0.0167919 +0.03103 1.16575 0.0204326 +0.0311025 1.1326 0.0445266 +0.031175 1.17816 0.0984346 +0.0312475 1.12316 0.0833335 +0.03132 1.21863 0.0602206 +0.0313925 1.15617 0.0660322 +0.031465 1.10106 0.0696644 +0.0315375 1.03822 0.00220441 +0.03161 1.08848 0.0435413 +0.0316825 1.08052 0.0623498 +0.031755 1.16846 0.054267 +0.0318275 1.18402 0.0939798 +0.0319 1.16682 0.149291 +0.0319725 1.10954 0.0406188 +0.032045 1.03604 0.0869198 +0.0321175 1.06567 0.0655354 +0.03219 1.10342 0.0804444 +0.0322625 1.07779 0.0951446 +0.032335 1.13095 0.168754 +0.0324075 1.0565 0.059469 +0.03248 1.08055 0.0682533 +0.0325525 1.06122 0.0349992 +0.032625 1.10646 -0.0291709 +0.0326975 1.08204 0.0438044 +0.03277 0.991263 0.0838011 +0.0328425 1.08806 0.0237851 +0.032915 1.1714 0.109786 +0.0329875 1.06478 0.0981673 +0.03306 1.08829 0.0619908 +0.0331325 1.10459 0.085492 +0.033205 1.11292 0.0614689 +0.0332775 1.09073 0.151942 +0.03335 1.08007 0.0142201 +0.0334225 1.13979 -0.000371574 +0.033495 0.950478 0.00711007 +0.0335675 1.07597 0.0415958 +0.03364 1.10914 0.0627798 +0.0337125 1.17122 0.0594482 +0.033785 1.01912 0.0144873 +0.0338575 1.0007 0.139387 +0.03393 1.13038 -0.00420425 +0.0340025 1.01185 0.194644 +0.034075 1.08236 0.0886065 +0.0341475 1.14163 -0.00230044 +0.03422 1.05772 0.178724 +0.0342925 1.07203 0.0324107 +0.034365 1.04096 0.166796 +0.0344375 1.06929 0.0786742 +0.03451 1.0949 0.0038452 +0.0345825 1.06207 0.182378 +0.034655 1.01239 0.0851287 +0.0347275 1.01674 0.0962719 +0.0348 1.05578 0.139412 +0.0348725 1.12532 0.183563 +0.034945 0.995309 0.0093103 +0.0350175 1.046 0.0924434 +0.03509 1.04652 0.0273214 +0.0351625 1.0554 0.150998 +0.035235 0.995656 0.0101036 +0.0353075 0.986337 -0.0989022 +0.03538 0.994537 0.0996578 +0.0354525 0.988838 0.0285739 +0.035525 0.956824 0.0792628 +0.0355975 1.01983 0.083918 +0.03567 1.01307 0.0685831 +0.0357425 0.979498 0.130436 +0.035815 0.903191 0.0961091 +0.0358875 1.02013 0.0680279 +0.03596 1.00288 0.0862727 +0.0360325 0.849363 0.00210004 +0.036105 1.02367 0.0382766 +0.0361775 0.981636 0.114563 +0.03625 0.967829 0.0490649 +0.0363225 0.976221 0.128741 +0.036395 1.00908 -0.0115272 +0.0364675 1.04287 0.0368655 +0.03654 0.95687 -0.0283192 +0.0366125 0.998006 -0.0659946 +0.036685 0.989022 0.159857 +0.0367575 0.969357 0.00194974 +0.03683 0.934955 0.00708502 +0.0369025 0.9492 -0.00607048 +0.036975 0.973607 -0.0168921 +0.0370475 1.00372 0.0997789 +0.03712 0.978864 0.038644 +0.0371925 0.964159 0.0223489 +0.037265 1.00756 0.0857759 +0.0373375 1.03068 0.120412 +0.03741 0.976071 0.0340974 +0.0374825 0.929244 0.0761316 +0.037555 0.969236 0.0972071 +0.0376275 0.978317 0.0852498 +0.0377 0.913666 0.0338594 +0.0377725 0.846553 0.00779895 +0.037845 1.00679 -0.0140824 +0.0379175 0.956632 9.18435e-005 +0.03799 0.994783 0.00530228 +0.0380625 1.07282 0.151662 +0.038135 0.944704 0.0438628 +0.0382075 1.00818 0.132782 +0.03828 0.815169 -0.0324733 +0.0383525 0.94148 -0.0217394 +0.038425 0.9261 0.0363937 +0.0384975 0.980792 -0.0141993 +0.03857 0.939894 -0.00361557 +0.0386425 0.878888 0.0208041 +0.038715 0.936149 0.0549642 +0.0387875 0.923069 0.0375001 +0.03886 0.980379 0.0895292 +0.0389325 0.907116 0.0695267 +0.039005 0.954147 0.0239187 +0.0390775 1.00044 0.169773 +0.03915 0.928037 0.0922764 +0.0392225 0.850903 0.00546093 +0.039295 0.912214 0.0322813 +0.0393675 0.892282 -0.008325 +0.03944 0.880057 -0.0159319 +0.0395125 0.858978 -0.0366609 +0.039585 0.948181 0.0978709 +0.0396575 0.863954 0.0868447 +0.03973 1.01383 -0.130056 +0.0398025 0.925332 0.0401262 +0.039875 0.850081 0.0381138 +0.0399475 0.955166 0.052192 +0.04002 0.859354 -0.00596612 +0.0400925 0.993664 0.0159778 +0.040165 0.944307 0.0550477 +0.0402375 0.825599 0.0962886 +0.04031 0.899162 0.111728 +0.0403825 0.924655 0.0686499 +0.040455 0.838954 0.135283 +0.0405275 0.873131 0.0377506 +0.0406 0.963888 -0.0354627 +0.0406725 0.879527 0.1811 +0.040745 0.922255 0.000835002 +0.0408175 0.916192 0.0542294 +0.04089 0.809738 0.0624375 +0.0409625 0.948407 0.0130887 +0.041035 0.945476 0.0920635 +0.0411075 0.89733 0.124307 +0.04118 0.883773 0.17047 +0.0412525 0.977265 0.11678 +0.041325 0.861554 -0.0112809 +0.0413975 0.851388 0.0137776 +0.04147 0.944161 0.0629552 +0.0415425 0.954043 0.101052 +0.041615 0.772834 0.00532316 +0.0416875 0.972396 0.105211 +0.04176 0.746849 0.0654519 +0.0418325 0.78814 0.0953659 +0.041905 0.911959 0.161436 +0.0419775 0.790077 0.02872 +0.04205 0.868514 -0.0036281 +0.0421225 0.832988 0.0524341 +0.042195 0.864222 -0.00515615 +0.0422675 0.89854 0.0319348 +0.04234 0.805057 0.00409152 +0.0424125 0.949714 -0.027288 +0.042485 0.778884 -0.0574275 +0.0425575 0.860773 0.0154768 +0.04263 0.825628 0.0502923 +0.0427025 0.793726 0.151295 +0.042775 0.924417 0.0358342 +0.0428475 0.852832 -0.00736474 +0.04292 0.875415 0.0349951 +0.0429925 0.840073 0.12738 +0.043065 0.829949 0.178324 +0.0431375 0.880412 0.0557366 +0.04321 0.754824 0.037116 +0.0432825 0.729022 0.0646127 +0.043355 0.785439 0.107402 +0.0434275 0.822714 0.0892495 +0.0435 0.842716 0.0916251 +0.0435725 0.933368 0.144235 +0.043645 0.77726 0.0502715 +0.0437175 0.743501 0.0507349 +0.04379 0.829252 0.0738771 +0.0438625 0.834111 0.041483 +0.043935 0.824275 0.110338 +0.0440075 0.822709 0.0166583 +0.04408 0.762865 0.0123121 +0.0441525 0.80413 0.0968272 +0.044225 0.824484 0.162216 +0.0442975 0.784324 0.0939714 +0.04437 0.828191 0.0189254 +0.0444425 0.781289 0.0354167 +0.044515 0.776104 0.03831 +0.0445875 0.840386 0.0122036 +0.04466 0.867975 0.0979002 +0.0447325 0.807471 0.0332875 +0.044805 0.760097 0.0465432 +0.0448775 0.794778 0.128516 +0.04495 0.800427 0.045896 +0.0450225 0.861625 0.0489689 +0.045095 0.906118 0.0985932 +0.0451675 0.84867 -0.0270458 +0.04524 0.736115 0.125021 +0.0453125 0.820367 0.0790708 +0.045385 0.76547 0.0577907 +0.0454575 0.680566 0.0252338 +0.04553 0.803617 0.0820225 +0.0456025 0.769444 1.6701e-005 +0.045675 0.879005 0.00117736 +0.0457475 0.695634 0.112433 +0.04582 0.666154 0.0485096 +0.0458925 0.879056 0.11956 +0.045965 0.716701 -0.0230461 +0.0460375 0.758848 0.0305445 +0.04611 0.778396 0.0297679 +0.0461825 0.931761 -0.0203616 +0.046255 0.811065 -0.0315047 +0.0463275 0.805717 0.050476 +0.0464 0.803496 0.158567 +0.0464725 0.749776 0.0809328 +0.046545 0.738315 0.0827365 +0.0466175 0.806097 0.0573648 +0.04669 0.725974 0.0603124 +0.0467625 0.772755 0.0517119 +0.046835 0.777911 0.0735806 +0.0469075 0.724204 -0.00117736 +0.04698 0.818622 0.0880721 +0.0470525 0.770196 -0.0314296 +0.047125 0.78217 0.0502923 +0.0471975 0.764555 0.0837886 +0.04727 0.670204 0.0595024 +0.0473425 0.755972 0.0792921 +0.047415 0.806919 0.0473239 +0.0474875 0.802978 0.0953617 +0.04756 0.765345 0.10529 +0.0476325 0.804652 0.0411699 +0.047705 0.778275 0.0684412 +0.0477775 0.669649 0.00518538 +0.04785 0.873745 0.0445767 +0.0479225 0.828655 0.0128299 +0.047995 0.744106 0.0661574 +0.0480675 0.612384 0.163056 +0.04814 0.75484 0.0398423 +0.0482125 0.706878 0.114734 +0.048285 0.78665 -0.00605378 +0.0483575 0.708209 0.0354376 +0.04843 0.719837 -0.0617904 +0.0485025 0.783606 -0.0277472 +0.048575 0.789944 0.0930529 +0.0486475 0.712343 0.121706 +0.04872 0.755003 0.0813963 +0.0487925 0.730721 0.0533276 +0.048865 0.709395 0.142389 +0.0489375 0.737794 0.103344 +0.04901 0.693701 0.0156271 +0.0490825 0.865804 0.0728625 +0.049155 0.785585 0.0793881 +0.0492275 0.801463 0.076499 +0.0493 0.683063 0.108605 +0.0493725 0.736261 -0.00541918 +0.049445 0.736767 -0.0316592 +0.0495175 0.655462 0.0412659 +0.04959 0.72154 0.0944474 +0.0496625 0.607295 0.12037 +0.049735 0.757308 0.161168 +0.0498075 0.81686 0.0224074 +0.04988 0.719202 0.0627464 +0.0499525 0.758435 -0.0353374 +0.050025 0.602494 0.0521294 +0.0500975 0.715825 0.0525719 +0.05017 0.602727 0.159281 +0.0502425 0.753684 -0.056438 +0.050315 0.678988 0.082511 +0.0503875 0.605667 0.129923 +0.05046 0.774049 -0.0130052 +0.0505325 0.583147 -0.00184536 +0.050605 0.671653 0.0206914 +0.0506775 0.785652 0.157837 +0.05075 0.729665 0.0620576 +0.0508225 0.697743 0.163753 +0.050895 0.709428 0.125685 +0.0509675 0.636624 0.145884 +0.05104 0.691209 -0.0125626 +0.0511125 0.693964 0.038882 +0.051185 0.662476 0.0331873 +0.0512575 0.669858 0.103411 +0.05133 0.749592 0.0606172 +0.0514025 0.730258 0.0429986 +0.051475 0.766171 0.0334169 +0.0515475 0.659478 0.0265782 +0.05162 0.709119 0.136807 +0.0516925 0.666697 0.0413912 +0.051765 0.565002 0.0820225 +0.0518375 0.710359 0.060208 +0.05191 0.633765 0.0498289 +0.0519825 0.689451 0.129075 +0.052055 0.761779 0.177727 +0.0521275 0.705696 0.0744115 +0.0522 0.680078 0.162964 +0.0522725 0.702005 -0.0113978 +0.052345 0.701316 0.0512192 +0.0524175 0.6558 -0.03039 +0.05249 0.6767 0.116441 +0.0525625 0.58113 -0.0732216 +0.052635 0.597901 0.12171 +0.0527075 0.630859 0.0171844 +0.05278 0.788733 0.018796 +0.0528525 0.689681 0.00358634 +0.052925 0.592432 -0.0489396 +0.0529975 0.757487 0.111699 +0.05307 0.661825 0.157753 +0.0531425 0.654489 0.0708293 +0.053215 0.622767 0.0822438 +0.0532875 0.68776 0.0806782 +0.05336 0.694757 -0.0390448 +0.0534325 0.565044 0.0696853 +0.053505 0.692478 0.0494699 +0.0535775 0.654005 -0.00719356 +0.05365 0.719799 0.0481255 +0.0537225 0.657466 0.0998791 +0.053795 0.738783 0.0312584 +0.0538675 0.666534 0.0542962 +0.05394 0.603658 0.0677314 +0.0540125 0.554594 -0.0950152 +0.054085 0.619202 0.0514614 +0.0541575 0.641184 -0.00680529 +0.05423 0.625698 -0.00103123 +0.0543025 0.679844 0.0364981 +0.054375 0.688453 0.0588303 +0.0544475 0.584946 0.0157315 +0.05452 0.671002 0.108108 +0.0545925 0.647091 0.0295967 +0.054665 0.724947 0.0926396 +0.0547375 0.585013 0.0441091 +0.05481 0.705404 0.0467018 +0.0548825 0.608898 0.0104083 +0.054955 0.641647 0.0332791 +0.0550275 0.621611 0.147495 +0.0551 0.518108 0.0872455 +0.0551725 0.561077 0.00561123 +0.055245 0.663044 0.00316467 +0.0553175 0.55628 0.0389238 +0.05539 0.719002 0.0329117 +0.0554625 0.678763 0.0768413 +0.055535 0.532683 -0.0123414 +0.0556075 0.696227 -0.0104334 +0.05568 0.609942 0.0916251 +0.0557525 0.610451 0.0788119 +0.055825 0.541496 0.045537 +0.0558975 0.542674 -0.114358 +0.05597 0.610017 0.0263695 +0.0560425 0.71628 -0.0154267 +0.056115 0.612793 -0.0264613 +0.0561875 0.70659 -0.013264 +0.05626 0.663474 0.0421594 +0.0563325 0.576016 0.00733552 +0.056405 0.567528 -0.00928108 +0.0564775 0.61423 -0.0045299 +0.05655 0.641163 0.0284027 +0.0566225 0.537756 -0.0246911 +0.056695 0.644582 0.0443596 +0.0567675 0.492369 0.023376 +0.05684 0.516851 0.0165957 +0.0569125 0.656589 0.10676 +0.056985 0.594503 -0.0967687 +0.0570575 0.629402 0.0484553 +0.05713 0.577001 -0.0478207 +0.0572025 0.579873 0.0563795 +0.057275 0.580625 0.045967 +0.0573475 0.594277 0.0643872 +0.05742 0.481852 0.0571394 +0.0574925 0.624822 0.0798766 +0.057565 0.551224 0.0741276 +0.0576375 0.443801 0.0616067 +0.05771 0.498252 0.0412534 +0.0577825 0.586942 -0.00564463 +0.057855 0.497417 -0.0102706 +0.0579275 0.510196 0.137596 +0.058 0.525849 -0.0222278 +0.0580725 0.662656 0.116137 +0.058145 0.606059 0.0247871 +0.0582175 0.610635 -0.061757 +0.05829 0.639063 0.0589848 +0.0583625 0.594849 0.101816 +0.058435 0.574124 0.0195182 +0.0585075 0.583339 0.00810372 +0.05858 0.532094 0.0308701 +0.0586525 0.616718 -0.114337 +0.058725 0.498648 -0.00615399 +0.0587975 0.560906 0.26387 +0.05887 0.545162 0.077238 +0.0589425 0.619035 0.00365315 +0.059015 0.592248 0.136444 +0.0590875 0.569519 0.0531815 +0.05916 0.570459 0.145608 +0.0592325 0.660614 0.0157691 +0.059305 0.567757 0.0169047 +0.0593775 0.558839 0.047708 +0.05945 0.678132 0.0867403 +0.0595225 0.598477 0.0806949 +0.059595 0.575965 0.14446 +0.0596675 0.509349 0.099399 +0.05974 0.715349 -0.0249875 +0.0598125 0.535188 0.0279685 +0.059885 0.53738 -0.0153432 +0.0599575 0.562802 0.103837 +0.06003 0.593713 0.10387 +0.0601025 0.526299 0.0511232 +0.060175 0.584249 0.0265782 +0.0602475 0.570717 -0.00193721 +0.06032 0.56982 -0.00690131 +0.0603925 0.590653 0.0876922 +0.060465 0.598143 -0.0227163 +0.0605375 0.492114 0.0280478 +0.06061 0.497934 0.0409361 +0.0606825 0.533126 0.164538 +0.060755 0.510079 0.0828367 +0.0608275 0.51653 -0.0552022 +0.0609 0.549943 0.00144039 +0.0609725 0.615996 0.0723782 +0.061045 0.628458 -0.0713637 +0.0611175 0.500072 0.0955079 +0.06119 0.562104 0.0873039 +0.0612625 0.632408 0.00881766 +0.061335 0.576688 -0.00554861 +0.0614075 0.534904 0.0106129 +0.06148 0.553383 0.0219356 +0.0615525 0.551621 0.00475118 +0.061625 0.503604 -0.0170633 +0.0616975 0.644707 0.0195934 +0.06177 0.499229 0.118303 +0.0618425 0.403479 -0.0318429 +0.061915 0.612844 0.021088 +0.0619875 0.52956 -0.0493321 +0.06206 0.526583 0.0481464 +0.0621325 0.570363 0.0667336 +0.062205 0.525414 -0.0197646 +0.0622775 0.591968 0.109903 +0.06235 0.440223 0.030532 +0.0624225 0.512756 0.0353917 +0.062495 0.494423 -0.0202781 +0.0625675 0.443112 0.119134 +0.06264 0.526479 0.0259937 +0.0627125 0.473014 0.0815842 +0.062785 0.656343 -0.0493404 +0.0628575 0.479543 0.03621 +0.06293 0.517862 0.0432407 +0.0630025 0.469127 0.0574734 +0.063075 0.495684 0.0951363 +0.0631475 0.552903 -0.0347821 +0.06322 0.55021 0.0902598 +0.0632925 0.505103 0.0353583 +0.063365 0.59315 0.0643204 +0.0634375 0.487271 0.0601872 +0.06351 0.529685 -0.184728 +0.0635825 0.400255 0.0752673 +0.063655 0.544173 -0.00370742 +0.0637275 0.44937 -0.0490899 +0.0638 0.534411 0.016316 +0.0638725 0.487564 -0.0116066 +0.063945 0.496891 0.123936 +0.0640175 0.543434 0.0867987 +0.06409 0.409958 0.0043963 +0.0641625 0.485835 0.00486808 +0.064235 0.470571 0.0636649 +0.0643075 0.556819 0.0285405 +0.06438 0.500986 0.0231797 +0.0644525 0.489434 0.059444 +0.064525 0.51893 -0.000400805 +0.0645975 0.556334 -0.101132 +0.06467 0.558952 -0.00846278 +0.0647425 0.430554 0.0506013 +0.064815 0.462067 -0.0300894 +0.0648875 0.466112 -0.0550519 +0.06496 0.478717 0.0976956 +0.0650325 0.541868 0.040051 +0.065105 0.487781 0.101495 +0.0651775 0.434111 0.000701409 +0.06525 0.448748 0.123389 +0.0653225 0.405286 0.0360388 +0.065395 0.531126 0.0795509 +0.0654675 0.372508 -0.0278015 +0.06554 0.461628 0.0697814 +0.0656125 0.445642 -0.0165623 +0.065685 0.420667 0.0568304 +0.0657575 0.42321 -0.0288703 +0.06583 0.452126 -0.0584336 +0.0659025 0.498139 0.00854209 +0.065975 0.480942 0.0293922 +0.0660475 0.523176 0.011711 +0.06612 0.503545 0.068867 +0.0661925 0.504627 -0.0404184 +0.066265 0.470233 -0.0401679 +0.0663375 0.552331 -0.0234887 +0.06641 0.578445 0.0131138 +0.0664825 0.467887 -0.0357549 +0.066555 0.617382 0.0859095 +0.0666275 0.457299 0.0296427 +0.0667 0.499654 0.0454451 +0.0667725 0.529581 0.0500251 +0.066845 0.455349 0.063523 +0.0669175 0.537033 0.0568597 +0.06699 0.494302 0.0488895 +0.0670625 0.493045 0.0712217 +0.067135 0.492394 0.111682 +0.0672075 0.415164 -0.0394999 +0.06728 0.485418 -0.00772797 +0.0673525 0.509228 0.0550352 +0.067425 0.425694 -0.051979 +0.0674975 0.550026 -0.0194222 +0.06757 0.432403 0.14504 +0.0676425 0.502819 0.124879 +0.067715 0.481664 0.00129008 +0.0677875 0.391438 0.0577573 +0.06786 0.382023 -0.0263653 +0.0679325 0.464856 0.0599492 +0.068005 0.414 0.0487518 +0.0680775 0.457224 0.0714931 +0.06815 0.536795 -0.0265615 +0.0682225 0.418701 0.157127 +0.068295 0.471218 -0.0511858 +0.0683675 0.429614 -0.00865065 +0.06844 0.310668 -0.0257724 +0.0685125 0.409198 0.00574484 +0.068585 0.343805 0.0390281 +0.0686575 0.429297 0.116446 +0.06873 0.520868 0.0571895 +0.0688025 0.462388 0.136198 +0.068875 0.392932 0.016721 +0.0689475 0.440841 -0.0576905 +0.06902 0.548298 0.0138945 +0.0690925 0.419966 0.0606297 +0.069165 0.518692 0.0369239 +0.0692375 0.579247 0.0883185 +0.06931 0.438315 0.068437 +0.0693825 0.472446 0.0292335 +0.069455 0.457386 0.0323022 +0.0695275 0.439463 -0.00797429 +0.0696 0.419494 0.0165289 +0.0696725 0.427694 -0.0645041 +0.069745 0.521536 0.0670801 +0.0698175 0.413975 0.00182866 +0.06989 0.452798 -0.0265782 +0.0699625 0.380161 0.0332374 +0.070035 0.459599 0.0701655 +0.0701075 0.502857 -0.0637944 +0.07018 0.406084 0.161294 +0.0702525 0.450777 0.0830746 +0.070325 0.47083 0.0540415 +0.0703975 0.467828 -0.0782024 +0.07047 0.548131 -0.0484136 +0.0705425 0.474546 -0.049019 +0.070615 0.357107 -0.0175309 +0.0706875 0.453387 0.0247245 +0.07076 0.351136 0.019965 +0.0708325 0.40079 -0.0174516 +0.070905 0.402644 0.0747997 +0.0709775 0.392586 0.0139655 +0.07105 0.446861 0.0300142 +0.0711225 0.382061 0.000396627 +0.071195 0.406372 0.0186749 +0.0712675 0.438064 0.10815 +0.07134 0.474341 0.074687 +0.0714125 0.396427 -0.0113895 +0.071485 0.382127 0.0510981 +0.0715575 0.283939 0.0444473 +0.07163 0.393651 0.0393329 +0.0717025 0.379819 -0.0546594 +0.071775 0.501612 -0.0554527 +0.0718475 0.467181 0.114867 +0.07192 0.41554 0.0718146 +0.0719925 0.47349 -0.00969441 +0.072065 0.456163 0.081772 +0.0721375 0.344368 0.141254 +0.07221 0.419932 0.0285112 +0.0722825 0.377005 0.0109803 +0.072355 0.434612 -0.0328073 +0.0724275 0.362008 0.0703074 +0.0725 0.452702 -0.0150802 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/6/data-06500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/6/data-06500um.dat new file mode 100644 index 0000000..6ad5d00 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/6/data-06500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 2.47994 0.0711842 +0.000145 3.09205 0.141546 +0.0002175 3.01025 0.131196 +0.00029 2.94896 0.145312 +0.0003625 3.02004 0.0610472 +0.000435 3.08519 0.167494 +0.0005075 2.89702 0.101482 +0.00058 2.84116 0.127205 +0.0006525 3.04815 0.185221 +0.000725 2.78014 0.111047 +0.0007975 2.86412 0.159782 +0.00087 2.9031 0.0835005 +0.0009425 2.92735 0.141199 +0.001015 2.83566 0.113978 +0.0010875 2.88407 0.201833 +0.00116 2.80168 0.223067 +0.0012325 2.86104 0.113494 +0.001305 2.78511 0.103144 +0.0013775 2.90803 0.197913 +0.00145 2.84536 0.0974325 +0.0015225 2.90328 0.178766 +0.001595 2.76477 0.0414413 +0.0016675 2.75994 0.0260772 +0.00174 2.73464 0.163402 +0.0018125 2.81301 0.123305 +0.001885 2.81964 0.156655 +0.0019575 2.76089 0.0907943 +0.00203 2.80861 0.16736 +0.0021025 2.76129 0.0570016 +0.002175 2.77541 0.118679 +0.0022475 2.7822 0.0908527 +0.00232 2.76014 0.225798 +0.0023925 2.70873 0.149403 +0.002465 2.67153 0.105653 +0.0025375 2.7518 0.137304 +0.00261 2.72109 0.276228 +0.0026825 2.66483 0.121092 +0.002755 2.61913 0.163177 +0.0028275 2.6655 0.209277 +0.0029 2.5942 0.0426562 +0.0029725 2.63481 0.183121 +0.003045 2.68025 0.188168 +0.0031175 2.54413 0.107382 +0.00319 2.65099 0.146765 +0.0032625 2.59101 0.144013 +0.003335 2.59823 0.148005 +0.0034075 2.63236 0.119944 +0.00348 2.59521 0.120717 +0.0035525 2.64482 0.230019 +0.003625 2.57004 0.147454 +0.0036975 2.60514 0.130115 +0.00377 2.49533 0.225961 +0.0038425 2.56246 0.229409 +0.003915 2.49045 0.161619 +0.0039875 2.52071 0.244982 +0.00406 2.57164 0.153132 +0.0041325 2.45401 0.180507 +0.004205 2.58062 0.167752 +0.0042775 2.58948 0.311603 +0.00435 2.5 0.0798348 +0.0044225 2.39933 0.0621745 +0.004495 2.51676 0.120909 +0.0045675 2.44783 0.120441 +0.00464 2.45472 0.130908 +0.0047125 2.49191 0.0909946 +0.004785 2.53004 0.135738 +0.0048575 2.45837 0.152843 +0.00493 2.53278 0.0960673 +0.0050025 2.44316 0.0450402 +0.005075 2.46669 0.0916126 +0.0051475 2.52395 0.103674 +0.00522 2.41805 0.0269122 +0.0052925 2.49742 0.1686 +0.005365 2.45412 0.140076 +0.0054375 2.44825 0.113206 +0.00551 2.34694 0.0432741 +0.0055825 2.30966 0.0499124 +0.005655 2.328 0.161415 +0.0057275 2.38015 0.204568 +0.0058 2.43025 0.135638 +0.0058725 2.35177 0.162609 +0.005945 2.28568 0.147303 +0.0060175 2.46026 0.177301 +0.00609 2.3658 0.124587 +0.0061625 2.26381 0.131317 +0.006235 2.3875 0.0491108 +0.0063075 2.37487 0.10754 +0.00638 2.3209 0.204493 +0.0064525 2.39442 0.124804 +0.006525 2.16905 0.118913 +0.0065975 2.27464 0.246414 +0.00667 2.41172 0.123923 +0.0067425 2.31764 0.143938 +0.006815 2.3163 0.0896586 +0.0068875 2.19017 0.0825945 +0.00696 2.38689 0.0717895 +0.0070325 2.32498 0.161077 +0.007105 2.26067 0.0508142 +0.0071775 2.32755 0.102731 +0.00725 2.21263 0.174971 +0.0073225 2.27504 0.160396 +0.007395 2.38324 0.125547 +0.0074675 2.13289 0.120796 +0.00754 2.18225 0.0240231 +0.0076125 2.2753 0.0933118 +0.007685 2.2119 0.0454869 +0.0077575 2.24049 0.1081 +0.00783 2.31801 0.120658 +0.0079025 2.26856 0.131684 +0.007975 2.18366 0.14317 +0.0080475 2.19173 0.0827365 +0.00812 2.13021 0.113544 +0.0081925 2.09558 0.132432 +0.008265 2.20953 0.0654978 +0.0083375 2.25903 0.0964347 +0.00841 2.22613 0.10906 +0.0084825 2.15767 0.0897004 +0.008555 2.09639 0.154605 +0.0086275 2.20071 0.253712 +0.0087 2.1493 0.136244 +0.0087725 2.13613 -0.00147796 +0.008845 2.13317 0.131618 +0.0089175 2.20041 0.0901179 +0.00899 2.15522 0.220871 +0.0090625 2.1374 0.05663 +0.009135 2.14952 0.215486 +0.0092075 2.07621 0.0743655 +0.00928 2.09621 0.0734094 +0.0093525 2.0455 0.0991819 +0.009425 2.1507 0.0235179 +0.0094975 2.10904 0.0727498 +0.00957 2.13558 0.160855 +0.0096425 2.09206 -0.026574 +0.009715 2.16761 0.17837 +0.0097875 2.17176 0.0536866 +0.00986 2.06213 0.177476 +0.0099325 2.10352 0.194919 +0.010005 2.10655 0.171406 +0.0100775 2.00645 0.0889447 +0.01015 2.07771 0.0844315 +0.0102225 1.98776 0.114717 +0.010295 2.15153 0.179618 +0.0103675 2.0544 0.0740566 +0.01044 2.05262 0.0613061 +0.0105125 2.14679 0.0658819 +0.010585 2.05561 0.0373999 +0.0106575 2.05065 0.00360722 +0.01073 2.04079 0.168007 +0.0108025 2.04742 0.121957 +0.010875 2.06152 0.102735 +0.0109475 2.04831 0.0896962 +0.01102 1.94503 0.100196 +0.0110925 2.06634 0.14355 +0.011165 2.00608 0.155737 +0.0112375 2.03043 0.127877 +0.01131 1.98532 0.0281898 +0.0113825 1.94701 0.0698022 +0.011455 1.97145 0.252869 +0.0115275 1.87823 0.0625836 +0.0116 1.96698 0.205799 +0.0116725 1.97912 0.14803 +0.011745 2.02537 0.200911 +0.0118175 1.93611 0.148982 +0.01189 1.96213 0.0167753 +0.0119625 1.99106 0.0322312 +0.012035 1.93294 0.100514 +0.0121075 1.95391 0.166325 +0.01218 1.90151 0.162922 +0.0122525 1.95955 0.208075 +0.012325 1.91937 0.210033 +0.0123975 2.00706 0.164584 +0.01247 1.84983 0.0535071 +0.0125425 1.9316 0.324086 +0.012615 1.82218 0.104893 +0.0126875 1.88031 0.109736 +0.01276 1.79401 0.0414079 +0.0128325 1.91943 0.164884 +0.012905 1.9945 0.163661 +0.0129775 1.88931 0.0928066 +0.01305 1.89926 0.142276 +0.0131225 1.69339 0.0440883 +0.013195 1.85409 0.15329 +0.0132675 1.90313 0.135137 +0.01334 1.77982 0.0637109 +0.0134125 1.88525 0.206367 +0.013485 1.85091 0.0520208 +0.0135575 1.96486 -0.00523965 +0.01363 1.92028 0.156831 +0.0137025 1.80181 0.0977916 +0.013775 1.92823 0.118809 +0.0138475 1.80976 0.0993572 +0.01392 1.83067 0.171552 +0.0139925 1.82454 0.213649 +0.014065 1.88769 0.130252 +0.0141375 1.80844 0.144264 +0.01421 1.84676 0.0205202 +0.0142825 1.75465 0.149529 +0.014355 1.7627 0.0315632 +0.0144275 1.77033 0.159586 +0.0145 1.78548 0.0800394 +0.0145725 1.8356 0.128896 +0.014645 1.69774 0.0459211 +0.0147175 1.89524 0.0192844 +0.01479 1.78 0.151336 +0.0148625 1.73495 0.124103 +0.014935 1.69889 0.0525928 +0.0150075 1.74024 0.163607 +0.01508 1.72305 0.0815382 +0.0151525 1.75567 0.0394707 +0.015225 1.80597 0.158768 +0.0152975 1.78363 0.0688628 +0.01537 1.82702 0.139387 +0.0154425 1.71591 0.253044 +0.015515 1.757 0.135275 +0.0155875 1.80253 0.0833919 +0.01566 1.72344 0.0632057 +0.0157325 1.63934 0.141963 +0.015805 1.82662 0.13368 +0.0158775 1.75337 0.0503842 +0.01595 1.86869 0.00168671 +0.0160225 1.71329 0.0475953 +0.016095 1.67406 0.118704 +0.0161675 1.68792 0.171397 +0.01624 1.63351 0.0769958 +0.0163125 1.67299 0.121614 +0.016385 1.76488 0.142974 +0.0164575 1.66484 0.132277 +0.01653 1.62831 0.10061 +0.0166025 1.61316 0.0384186 +0.016675 1.65067 0.0604878 +0.0167475 1.70547 0.0544006 +0.01682 1.64981 0.11865 +0.0168925 1.66354 0.132561 +0.016965 1.64207 0.145241 +0.0170375 1.68917 0.0198188 +0.01711 1.67525 0.0553191 +0.0171825 1.71944 0.079242 +0.017255 1.68938 0.0906565 +0.0173275 1.54531 0.047232 +0.0174 1.65672 0.0824275 +0.0174725 1.6792 0.0411031 +0.017545 1.52428 0.134244 +0.0176175 1.70898 0.0581247 +0.01769 1.62613 0.0375669 +0.0177625 1.61934 0.0949568 +0.017835 1.52765 0.106459 +0.0179075 1.69443 0.144957 +0.01798 1.62413 -0.0606923 +0.0180525 1.7144 0.142126 +0.018125 1.7014 0.134749 +0.0181975 1.57254 0.0367486 +0.01827 1.5442 0.0663453 +0.0183425 1.59693 0.0366525 +0.018415 1.6691 0.0737393 +0.0184875 1.58752 0.0272546 +0.01856 1.60184 0.0617611 +0.0186325 1.62669 0.0875377 +0.018705 1.63541 0.00108551 +0.0187775 1.5633 -0.00349868 +0.01885 1.6353 0.0122829 +0.0189225 1.52471 0.0483301 +0.018995 1.61183 0.134185 +0.0190675 1.58876 0.0711716 +0.01914 1.63929 -0.0115732 +0.0192125 1.55977 0.0883644 +0.019285 1.53785 0.0345483 +0.0193575 1.56964 0.0584837 +0.01943 1.54906 0.169807 +0.0195025 1.48378 0.169656 +0.019575 1.56095 0.127668 +0.0196475 1.52937 0.0421677 +0.01972 1.60677 0.0967896 +0.0197925 1.50422 0.085087 +0.019865 1.61078 0.0172429 +0.0199375 1.53386 0.125539 +0.02001 1.57731 0.121188 +0.0200825 1.58212 0.045704 +0.020155 1.51326 0.0924893 +0.0202275 1.53629 0.148414 +0.0203 1.57434 0.161757 +0.0203725 1.56206 -0.0143913 +0.020445 1.53162 0.0815424 +0.0205175 1.48963 0.0703074 +0.02059 1.46478 0.0673097 +0.0206625 1.58623 0.139032 +0.020735 1.56866 0.0692261 +0.0208075 1.5052 0.0991902 +0.02088 1.54854 0.0449191 +0.0209525 1.55243 0.111857 +0.021025 1.45853 0.112934 +0.0210975 1.4837 0.0937919 +0.02117 1.50343 0.0903308 +0.0212425 1.4218 0.145195 +0.021315 1.51875 0.175652 +0.0213875 1.4737 0.134139 +0.02146 1.29942 0.15544 +0.0215325 1.45347 0.0783318 +0.021605 1.4185 0.156497 +0.0216775 1.43123 0.0309244 +0.02175 1.40222 0.125468 +0.0218225 1.40377 0.0353082 +0.021895 1.40604 0.0946019 +0.0219675 1.4011 0.115665 +0.02204 1.47152 0.0510271 +0.0221125 1.36535 0.165344 +0.022185 1.35471 0.0911324 +0.0222575 1.43562 0.0232298 +0.02233 1.48224 0.0335922 +0.0224025 1.30595 0.0128215 +0.022475 1.41201 -0.0116817 +0.0225475 1.48197 0.0620826 +0.02262 1.40462 0.144777 +0.0226925 1.39994 0.0456664 +0.022765 1.34645 0.104906 +0.0228375 1.37689 0.0800269 +0.02291 1.35306 0.0601872 +0.0229825 1.40823 0.134131 +0.023055 1.43872 0.0524341 +0.0231275 1.38466 0.0258852 +0.0232 1.40339 0.0881264 +0.0232725 1.43826 -0.044606 +0.023345 1.31618 0.0787702 +0.0234175 1.36302 0.127342 +0.02349 1.39188 -0.0275719 +0.0235625 1.36458 0.073184 +0.023635 1.37846 0.143863 +0.0237075 1.51153 0.124048 +0.02378 1.38615 0.0979586 +0.0238525 1.39737 0.155791 +0.023925 1.35186 0.191988 +0.0239975 1.47064 -0.0119907 +0.02407 1.376 0.0602372 +0.0241425 1.37691 0.163039 +0.024215 1.31373 0.13639 +0.0242875 1.43607 0.0912869 +0.02436 1.35761 0.173147 +0.0244325 1.34829 0.0856172 +0.024505 1.41156 0.131517 +0.0245775 1.31952 0.143976 +0.02465 1.35435 0.0936291 +0.0247225 1.24801 0.187471 +0.024795 1.39117 0.187809 +0.0248675 1.31796 0.0524258 +0.02494 1.36473 0.00209586 +0.0250125 1.3718 0.172391 +0.025085 1.39921 0.113561 +0.0251575 1.34441 0.0349491 +0.02523 1.33411 0.157795 +0.0253025 1.29898 -0.0503508 +0.025375 1.35307 0.0815257 +0.0254475 1.30604 0.0447563 +0.02552 1.35455 0.00408734 +0.0255925 1.25299 0.164337 +0.025665 1.29317 -0.00125251 +0.0257375 1.28617 0.0235012 +0.02581 1.3446 0.0450861 +0.0258825 1.29816 0.0721277 +0.025955 1.27542 0.103929 +0.0260275 1.33023 0.0530061 +0.0261 1.19257 0.184139 +0.0261725 1.29778 0.0311332 +0.026245 1.2491 0.0577114 +0.0263175 1.29435 0.058108 +0.02639 1.25821 0.0994867 +0.0264625 1.26089 0.0363561 +0.026535 1.22205 0.0463845 +0.0266075 1.28811 0.0503007 +0.02668 1.16242 0.00653392 +0.0267525 1.22325 0.125844 +0.026825 1.30146 0.0650093 +0.0268975 1.28716 0.213782 +0.02697 1.22561 0.178549 +0.0270425 1.33549 0.0630429 +0.027115 1.30275 0.00817052 +0.0271875 1.19564 0.0417377 +0.02726 1.24148 0.0640115 +0.0273325 1.18413 0.100013 +0.027405 1.19281 0.181004 +0.0274775 1.28435 0.00689714 +0.02755 1.21965 0.0779811 +0.0276225 1.17577 -0.0231839 +0.027695 1.21507 -0.0162408 +0.0277675 1.17294 0.0655228 +0.02784 1.3124 0.0195182 +0.0279125 1.1762 0.030319 +0.027985 1.26983 0.108421 +0.0280575 1.21634 -0.0743822 +0.02813 1.25046 0.188427 +0.0282025 1.20155 0.014216 +0.028275 1.31364 0.131902 +0.0283475 1.22852 0.158785 +0.02842 1.13181 0.0479 +0.0284925 1.18562 0.0872413 +0.028565 1.25826 0.062283 +0.0286375 1.1318 0.000267201 +0.02871 1.18081 0.0842645 +0.0287825 1.13514 0.17313 +0.028855 1.25948 0.0961425 +0.0289275 1.27568 0.114918 +0.029 1.23598 -0.00868405 +0.0290725 1.30272 0.0393579 +0.029145 1.14501 0.1061 +0.0292175 1.20399 0.0874918 +0.02929 1.16735 0.0751671 +0.0293625 1.17536 0.038285 +0.029435 1.06474 0.0163953 +0.0295075 1.35854 0.051787 +0.02958 1.11841 0.110417 +0.0296525 1.18004 0.0812167 +0.029725 1.03422 0.118462 +0.0297975 1.08587 0.00265115 +0.02987 1.1431 0.105616 +0.0299425 1.19076 0.0391617 +0.030015 1.13831 0.154012 +0.0300875 1.22271 0.0430862 +0.03016 1.21261 0.0659946 +0.0302325 1.07101 0.0308994 +0.030305 1.12452 0.0927356 +0.0303775 1.09705 0.110663 +0.03045 1.13008 0.143015 +0.0305225 1.18124 0.0691301 +0.030595 1.16267 0.1125 +0.0306675 1.17446 0.0961592 +0.03074 1.21332 0.0641576 +0.0308125 1.223 0.0489062 +0.030885 1.14947 0.0466475 +0.0309575 1.08615 0.0591601 +0.03103 1.04935 0.0650719 +0.0311025 1.03312 0.0908736 +0.031175 1.20216 0.110722 +0.0312475 1.1145 0.127104 +0.03132 1.03976 0.0766618 +0.0313925 1.19065 0.0951947 +0.031465 1.09815 0.0978626 +0.0315375 1.14557 0.0280729 +0.03161 1.15267 0.0579326 +0.0316825 1.1314 0.0293671 +0.031755 1.19353 0.0647546 +0.0318275 0.956799 0.0426395 +0.0319 1.12057 -0.0158192 +0.0319725 1.01015 0.117239 +0.032045 1.13935 0.128069 +0.0321175 1.17572 0.062354 +0.03219 1.03445 0.0597864 +0.0322625 1.04214 0.00162826 +0.032335 1.04111 0.0880262 +0.0324075 1.10561 0.0189087 +0.03248 0.969123 0.0675895 +0.0325525 1.02706 -0.0100535 +0.032625 0.98503 0.17265 +0.0326975 1.0702 -0.0145917 +0.03277 0.919136 -0.015506 +0.0328425 1.16456 0.0587593 +0.032915 0.976513 0.191095 +0.0329875 1.02128 0.0851663 +0.03306 1.04127 0.105206 +0.0331325 1.15114 0.106183 +0.033205 1.03967 0.120767 +0.0332775 1.06919 0.0173681 +0.03335 1.09498 0.110033 +0.0334225 1.0689 0.119393 +0.033495 1.04082 0.165644 +0.0335675 0.978212 0.0838595 +0.03364 0.974831 0.0642787 +0.0337125 1.00773 -0.0313043 +0.033785 0.955387 0.122579 +0.0338575 1.03144 -0.00601621 +0.03393 1.08988 -0.0744616 +0.0340025 1.09879 0.0161072 +0.034075 1.07012 0.161444 +0.0341475 1.07981 0.0170341 +0.03422 1.04805 -0.023639 +0.0342925 0.998762 -0.012308 +0.034365 0.97787 0.0635647 +0.0344375 0.945601 0.0450485 +0.03451 0.977953 0.0547137 +0.0345825 1.03339 0.0831623 +0.034655 1.03404 0.148071 +0.0347275 0.993814 0.0669924 +0.0348 0.970964 0.0762151 +0.0348725 0.920873 0.00342352 +0.034945 0.972417 0.0515782 +0.0350175 1.00324 0.105394 +0.03509 0.955792 0.0923098 +0.0351625 0.89978 0.0735723 +0.035235 1.0393 -0.134603 +0.0353075 0.992065 0.0749083 +0.03538 1.04463 0.195508 +0.0354525 1.00513 0.0845776 +0.035525 0.986621 0.0711466 +0.0355975 0.920559 0.0895459 +0.03567 0.936337 0.123489 +0.0357425 0.984972 0.0174474 +0.035815 1.05855 0.0232382 +0.0358875 0.986775 -0.00829995 +0.03596 0.935569 0.0628717 +0.0360325 0.943272 0.0113602 +0.036105 0.973707 0.0453157 +0.0361775 1.01706 0.192168 +0.03625 1.033 0.0665499 +0.0363225 1.06263 0.00637943 +0.036395 0.998186 -0.0815591 +0.0364675 1.01838 0.154655 +0.03654 1.06543 0.0358885 +0.0366125 1.01673 -0.0343103 +0.036685 1.02558 0.15471 +0.0367575 0.896971 -0.0115189 +0.03683 1.06746 -0.017389 +0.0369025 1.01588 0.119569 +0.036975 1.01324 0.00863395 +0.0370475 0.943042 -0.0427773 +0.03712 0.989886 0.102392 +0.0371925 1.06784 0.000880931 +0.037265 0.978012 0.0722446 +0.0373375 0.910276 0.113252 +0.03741 0.906327 -0.0480587 +0.0374825 0.928525 0.187271 +0.037555 0.995856 0.0771002 +0.0376275 0.97911 0.0141659 +0.0377 0.930329 0.0211882 +0.0377725 0.950035 0.0264029 +0.037845 0.951705 -0.0552147 +0.0379175 0.955734 0.02538 +0.03799 0.969407 -0.0788495 +0.0380625 0.924567 0.041149 +0.038135 1.05606 0.050284 +0.0382075 0.924513 0.162454 +0.03828 0.970242 -0.0215974 +0.0383525 0.958573 0.10524 +0.038425 0.895714 -0.00653809 +0.0384975 0.942253 -0.0307324 +0.03857 0.946186 0.0818847 +0.0386425 0.865274 0.0686625 +0.038715 0.953722 -0.0451195 +0.0387875 0.891034 0.0988061 +0.03886 0.943397 -0.00899718 +0.0389325 1.01884 0.0374458 +0.039005 0.737063 -0.0223322 +0.0390775 0.987093 0.00959003 +0.03915 0.795943 0.0643413 +0.0392225 0.866935 0.0211465 +0.039295 0.839869 0.10119 +0.0393675 0.953075 0.0277806 +0.03944 0.967971 0.0641493 +0.0395125 0.893013 0.0693137 +0.039585 0.819628 0.109795 +0.0396575 0.865466 0.056033 +0.03973 0.78326 0.0266283 +0.0398025 0.846419 0.0248038 +0.039875 0.91666 0.0429067 +0.0399475 0.873653 0.060183 +0.04002 0.943318 0.0204075 +0.0400925 0.993798 0.0788871 +0.040165 0.838069 0.101975 +0.0402375 0.820747 0.115281 +0.04031 0.938003 0.137087 +0.0403825 0.829465 0.130286 +0.040455 0.808994 0.107473 +0.0405275 0.847062 0.0572521 +0.0406 0.880225 0.0546845 +0.0406725 0.950048 0.037379 +0.040745 0.83627 0.130148 +0.0408175 0.856748 0.00884688 +0.04089 0.865503 0.144306 +0.0409625 0.935448 0.0805529 +0.041035 0.945918 0.0452322 +0.0411075 0.666993 -0.0690215 +0.04118 0.856243 0.0837927 +0.0412525 0.817198 0.0423807 +0.041325 0.897751 0.0103916 +0.0413975 0.755487 0.0215056 +0.04147 1.00433 0.0800436 +0.0415425 0.78098 0.181388 +0.041615 0.8994 0.0130804 +0.0416875 0.797726 0.197591 +0.04176 0.929811 0.110509 +0.0418325 0.872488 0.0455829 +0.041905 0.850047 0.122846 +0.0419775 0.740507 0.130006 +0.04205 0.879874 0.0446143 +0.0421225 0.843814 0.10549 +0.042195 0.95178 0.042055 +0.0422675 0.919157 0.137291 +0.04234 0.763027 0.0731297 +0.0424125 0.967478 0.0417001 +0.042485 0.895722 0.0291083 +0.0425575 0.80565 0.0710881 +0.04263 0.780325 0.114696 +0.0427025 0.87387 -0.0130803 +0.042775 0.898678 0.0333668 +0.0428475 0.886875 0.034373 +0.04292 0.891171 0.0963637 +0.0429925 0.782871 0.0997914 +0.043065 0.875523 -0.0140907 +0.0431375 0.813395 0.067243 +0.04321 0.847973 0.170199 +0.0432825 0.997129 0.0699901 +0.043355 0.786833 0.031083 +0.0434275 0.912272 0.00309786 +0.0435 0.82739 0.0581831 +0.0435725 0.761896 0.0432073 +0.043645 0.755851 0.0529644 +0.0437175 0.84768 0.0885063 +0.04379 0.887468 0.0235972 +0.0438625 0.811408 0.0687293 +0.043935 0.676671 0.00506013 +0.0440075 0.795158 -0.0376128 +0.04408 0.729239 -0.055269 +0.0441525 0.787911 0.043391 +0.044225 0.857688 0.0703993 +0.0442975 0.826559 0.0734721 +0.04437 0.845092 0.123948 +0.0444425 0.881748 0.161118 +0.044515 0.850498 0.0687209 +0.0445875 0.741706 0.0614605 +0.04466 0.760092 0.111991 +0.0447325 0.723031 0.0429234 +0.044805 0.768275 -0.0478708 +0.0448775 0.736779 0.0793839 +0.04495 0.876246 0.0283317 +0.0450225 0.800958 0.111623 +0.045095 0.734015 0.0103374 +0.0451675 0.718175 0.114041 +0.04524 0.752427 0.0630053 +0.0453125 0.851308 0.0212509 +0.045385 0.751045 0.127 +0.0454575 0.786191 0.111406 +0.04553 0.787084 -0.0669549 +0.0456025 0.708944 0.106931 +0.045675 0.787489 -0.0337217 +0.0457475 0.670755 0.0645918 +0.04582 0.795338 0.00913913 +0.0458925 0.793822 0.0928317 +0.045965 0.865069 0.014216 +0.0460375 0.675331 0.0320308 +0.04611 0.744177 0.0558618 +0.0461825 0.65851 0.154543 +0.046255 0.74328 -0.0334002 +0.0463275 0.851563 0.013882 +0.0464 0.71767 0.0561207 +0.0464725 0.734044 0.101653 +0.046545 0.761846 0.0804778 +0.0466175 0.806314 0.0100117 +0.04669 0.693998 0.000242148 +0.0467625 0.685167 0.0487726 +0.046835 0.694515 0.127931 +0.0469075 0.71853 0.0938504 +0.04698 0.739731 0.0661699 +0.0470525 0.803767 0.0198439 +0.047125 0.764443 0.0677732 +0.0471975 0.788817 0.01913 +0.04727 0.778504 0.0301938 +0.0473425 0.806615 0.0318805 +0.047415 0.775093 0.000655478 +0.0474875 0.753792 0.0858969 +0.04756 0.742683 -0.0256764 +0.0476325 0.694348 -0.0786074 +0.047705 0.711107 0.15628 +0.0477775 0.684892 -0.0142494 +0.04785 0.763278 -0.0113477 +0.0479225 0.725231 0.0768831 +0.047995 0.764468 -0.0344648 +0.0480675 0.620279 0.0140782 +0.04814 0.646248 0.0235805 +0.0482125 0.807345 -0.030866 +0.048285 0.805592 0.0610138 +0.0483575 0.78217 0.016483 +0.04843 0.699609 0.118721 +0.0485025 0.80454 -0.0201487 +0.048575 0.760731 -0.00202489 +0.0486475 0.710944 -7.09772e-005 +0.04872 0.702527 0.0232758 +0.0487925 0.709216 0.0429234 +0.048865 0.75894 -0.0106839 +0.0489375 0.644795 0.0524091 +0.04901 0.718476 0.066003 +0.0490825 0.730855 0.128482 +0.049155 0.735873 0.00660906 +0.0492275 0.689843 -0.00237141 +0.0493 0.802043 0.152881 +0.0493725 0.790933 -0.0568221 +0.049445 0.766075 0.0699692 +0.0495175 0.779661 -0.0153683 +0.04959 0.752427 -0.0271627 +0.0496625 0.721674 0.0679694 +0.049735 0.746348 -0.0902765 +0.0498075 0.695221 -0.0375961 +0.04988 0.701709 0.0333 +0.0499525 0.658385 0.127372 +0.050025 0.720597 0.0141617 +0.0500975 0.696761 0.0823816 +0.05017 0.645062 0.0884228 +0.0502425 0.755149 -0.0672179 +0.050315 0.721895 0.0270458 +0.0503875 0.632353 -0.0174224 +0.05046 0.563637 0.0784821 +0.0505325 0.702824 0.0218646 +0.050605 0.686149 0.0884312 +0.0506775 0.682437 0.0222529 +0.05075 0.67063 -0.0173973 +0.0508225 0.671866 -0.00473865 +0.050895 0.706034 0.0994157 +0.0509675 0.65135 0.064788 +0.05104 0.576688 -0.00161155 +0.0511125 0.619674 -0.0242277 +0.051185 0.671628 0.0866234 +0.0512575 0.675494 -0.000404976 +0.05133 0.63766 0.1333 +0.0514025 0.732629 0.0259937 +0.051475 0.795079 -0.0369865 +0.0515475 0.600506 0.0854586 +0.05162 0.574229 0.0851955 +0.0516925 0.632591 0.0630345 +0.051765 0.642908 0.0171635 +0.0518375 0.729682 -0.00118571 +0.05191 0.678087 0.0569766 +0.0519825 0.698072 0.168575 +0.052055 0.700018 0.049211 +0.0521275 0.493125 0.0914998 +0.0522 0.664217 0.0150092 +0.0522725 0.644327 -0.0194932 +0.052345 0.563278 0.0772296 +0.0524175 0.699696 0.056939 +0.05249 0.644549 0.0978041 +0.0525625 0.605337 0.0496536 +0.052635 0.714889 -0.00576153 +0.0527075 0.640812 -0.0418337 +0.05278 0.592674 0.0442928 +0.0528525 0.617799 0.119356 +0.052925 0.653492 0.0760773 +0.0529975 0.614146 -0.0183242 +0.05307 0.7475 0.0313962 +0.0531425 0.558785 -0.0232549 +0.053215 0.674317 -0.0957041 +0.0532875 0.637902 0.0453867 +0.05336 0.549412 0.00315214 +0.0534325 0.563591 0.0613436 +0.053505 0.627878 0.0543171 +0.0535775 0.645617 0.162659 +0.05365 0.647513 0.0260229 +0.0537225 0.604731 0.103282 +0.053795 0.574375 -0.0220901 +0.0538675 0.543588 0.0987101 +0.05394 0.652172 0.0368362 +0.0540125 0.693275 0.0366859 +0.054085 0.588336 -0.0752715 +0.0541575 0.604827 -0.101311 +0.05423 0.620379 -0.0188127 +0.0543025 0.552552 0.0932533 +0.054375 0.636524 0.123059 +0.0544475 0.599642 0.0849033 +0.05452 0.571832 0.0560915 +0.0545925 0.597283 0.0970568 +0.054665 0.619198 0.0200526 +0.0547375 0.499166 0.0687293 +0.05481 0.722296 0.0175894 +0.0548825 0.628809 0.111669 +0.054955 0.672688 0.0296969 +0.0550275 0.525798 0.143817 +0.0551 0.531138 -0.0097612 +0.0551725 0.661553 0.0654769 +0.055245 0.648728 0.0526345 +0.0553175 0.608597 0.0273798 +0.05539 0.612868 0.102067 +0.0554625 0.625414 0.049879 +0.055535 0.641246 0.093245 +0.0556075 0.645133 0.0964055 +0.05568 0.529652 0.072086 +0.0557525 0.535096 0.127309 +0.055825 0.560046 0.0472404 +0.0558975 0.673912 -0.0546385 +0.05597 0.5598 0.100234 +0.0560425 0.654155 0.0447604 +0.056115 0.589747 0.10511 +0.0561875 0.560485 0.0937418 +0.05626 0.651784 -0.11617 +0.0563325 0.650131 -0.0687626 +0.056405 0.636411 -0.120984 +0.0564775 0.597104 -0.0845317 +0.05655 0.546352 -0.0215431 +0.0566225 0.541764 0.15754 +0.056695 0.57956 0.0140698 +0.0567675 0.550786 0.090239 +0.05684 0.640883 0.0220358 +0.0569125 0.614209 0.0243112 +0.056985 0.494582 -0.0203198 +0.0570575 0.539225 0.0192385 +0.05713 0.658664 0.00292252 +0.0572025 0.613612 0.0702824 +0.057275 0.536545 0.0410739 +0.0573475 0.579944 0.0543672 +0.05742 0.571636 0.0286073 +0.0574925 0.60059 0.00956498 +0.057565 0.603383 0.0048138 +0.0576375 0.556376 0.06579 +0.05771 0.585681 0.0913704 +0.0577825 0.573978 -0.00298932 +0.057855 0.596239 -0.101983 +0.0579275 0.617415 -0.0521419 +0.058 0.582549 0.021301 +0.0580725 0.581656 0.105248 +0.058145 0.608581 0.00760689 +0.0582175 0.682863 0.124938 +0.05829 0.560998 -0.0136732 +0.0583625 0.62756 -0.0614689 +0.058435 0.627097 0.00188711 +0.0585075 0.525226 -0.0600995 +0.05858 0.655136 -0.0579786 +0.0586525 0.525677 0.0202447 +0.058725 0.628416 -0.0290248 +0.0587975 0.565353 -0.00675102 +0.05887 0.568605 -0.0294757 +0.0589425 0.500364 -0.00826237 +0.059015 0.569386 0.103833 +0.0590875 0.531514 0.0777598 +0.05916 0.511729 -0.00135271 +0.0592325 0.582746 0.0208292 +0.059305 0.541805 -0.0387985 +0.0593775 0.595183 0.0431322 +0.05945 0.489868 0.00996578 +0.0595225 0.589651 0.0256973 +0.059595 0.551976 -0.0144957 +0.0596675 0.481414 0.104413 +0.05974 0.452727 -0.025071 +0.0598125 0.531877 -0.024474 +0.059885 0.64158 0.181175 +0.0599575 0.631184 0.0494114 +0.06003 0.666881 -0.0165957 +0.0601025 0.546081 0.056367 +0.060175 0.538979 0.0878216 +0.0602475 0.647981 -0.00886775 +0.06032 0.503186 -0.0043295 +0.0603925 0.640094 -0.0180904 +0.060465 0.543538 0.00225869 +0.0605375 0.531535 -0.0262651 +0.06061 0.543847 0.071777 +0.0606825 0.621373 0.0390908 +0.060755 0.551412 0.00743154 +0.0608275 0.594853 0.029626 +0.0609 0.525268 0.186778 +0.0609725 0.518354 0.033563 +0.061045 0.552765 0.0132056 +0.0611175 0.572888 0.00131931 +0.06119 0.522371 0.0100702 +0.0612625 0.560196 0.0997789 +0.061335 0.54606 0.114963 +0.0614075 0.505491 0.0210546 +0.06148 0.589906 0.0225368 +0.0615525 0.539213 0.177539 +0.061625 0.504385 -0.0198355 +0.0616975 0.397099 -0.0204701 +0.06177 0.508944 0.0308534 +0.0618425 0.595576 0.0244656 +0.061915 0.51377 0.0100201 +0.0619875 0.52015 0.0199608 +0.06206 0.451742 0.03912 +0.0621325 0.456376 0.000517707 +0.062205 0.393484 0.0207081 +0.0622775 0.611545 0.0583 +0.06235 0.414584 -0.000279726 +0.0624225 0.4622 0.0804861 +0.062495 0.445083 0.0897046 +0.0625675 0.491688 0.0687668 +0.06264 0.571277 0.0256597 +0.0627125 0.500648 0.0403266 +0.062785 0.595772 0.0684286 +0.0628575 0.555095 0.0394289 +0.06293 0.50438 -0.0103374 +0.0630025 0.505145 0.126403 +0.063075 0.524183 0.0125292 +0.0631475 0.452472 0.0355629 +0.06322 0.444456 -0.0122662 +0.0632925 0.585071 0.0121326 +0.063365 0.592302 0.145721 +0.0634375 0.516588 0.0529894 +0.06351 0.424462 -0.0187333 +0.0635825 0.510142 0.126349 +0.063655 0.523373 0.0720401 +0.0637275 0.581026 0.0825987 +0.0638 0.506827 0.0400343 +0.0638725 0.450577 0.00297679 +0.063945 0.512012 0.0369281 +0.0640175 0.468166 -0.104313 +0.06409 0.495997 0.0277764 +0.0641625 0.518496 0.15076 +0.064235 0.545087 -0.0306489 +0.0643075 0.460835 0.0489772 +0.06438 0.581351 0.0406773 +0.0644525 0.459119 0.0527347 +0.064525 0.484182 0.132678 +0.0645975 0.467348 0.0446978 +0.06467 0.495926 0.115072 +0.0647425 0.387087 0.0170216 +0.064815 0.670125 0.0495575 +0.0648875 0.46964 0.00274299 +0.06496 0.545776 0.0851914 +0.0650325 0.467219 0.0400051 +0.065105 0.528592 0.0784028 +0.0651775 0.448418 -0.12462 +0.06525 0.480149 -0.035375 +0.0653225 0.441734 0.0471736 +0.065395 0.46696 0.101065 +0.0654675 0.533936 0.0235764 +0.06554 0.449579 -0.0352915 +0.0656125 0.498356 0.0715641 +0.065685 0.48839 0.1249 +0.0657575 0.544599 0.079363 +0.06583 0.34077 0.0848574 +0.0659025 0.570258 -0.120308 +0.065975 0.452719 0.0281063 +0.0660475 0.447241 0.0952114 +0.06612 0.396435 0.0174934 +0.0661925 0.538516 -0.0707166 +0.066265 0.51443 -0.0172679 +0.0663375 0.478424 0.0142494 +0.06641 0.502389 0.133989 +0.0664825 0.579443 -0.0298639 +0.066555 0.466885 0.0363937 +0.0666275 0.477598 0.0413202 +0.0667 0.41501 0.0251462 +0.0667725 0.469415 0.008158 +0.066845 0.454727 -0.0666083 +0.0669175 0.467123 0.0578116 +0.06699 0.512255 -0.010258 +0.0670625 0.36787 0.0558869 +0.067135 0.454113 -0.0183158 +0.0672075 0.448352 0.0296009 +0.06728 0.412309 0.0728625 +0.0673525 0.34451 -0.100823 +0.067425 0.446598 -0.0083083 +0.0674975 0.483017 -0.0204326 +0.06757 0.419586 -0.0413661 +0.0676425 0.493676 0.163715 +0.067715 0.41501 -0.0477372 +0.0677875 0.454735 0.048806 +0.06786 0.539113 -0.0176228 +0.0679325 0.52941 0.0364313 +0.068005 0.355148 0.012141 +0.0680775 0.390707 0.0701738 +0.06815 0.394051 0.0302355 +0.0682225 0.521886 -0.0125334 +0.068295 0.319828 -0.0289037 +0.0683675 0.450769 0.0343813 +0.06844 0.481735 0.0212884 +0.0685125 0.412472 0.0599659 +0.068585 0.556973 -0.0431906 +0.0686575 0.549191 -0.0367235 +0.06873 0.349521 0.0198272 +0.0688025 0.476479 -0.00131096 +0.068875 0.39707 -0.0458919 +0.0689475 0.461344 0.113673 +0.06902 0.518972 0.0263695 +0.0690925 0.355988 0.0226286 +0.069165 0.524504 0.0913537 +0.0692375 0.397354 -0.0966894 +0.06931 0.441897 -0.0164204 +0.0693825 0.474863 -0.0445392 +0.069455 0.483585 -0.0229835 +0.0695275 0.41443 0.0367694 +0.0696 0.438106 0.0427982 +0.0696725 0.386465 0.0636274 +0.069745 0.433213 0.0251963 +0.0698175 0.353725 0.131405 +0.06989 0.402865 0.0417962 +0.0699625 0.508785 -0.0342477 +0.070035 0.433509 -0.0380637 +0.0701075 0.342795 0.0146627 +0.07018 0.374362 0.0921887 +0.0702525 0.420275 -0.0390156 +0.070325 0.416075 -0.0230211 +0.0703975 0.440937 0.0916126 +0.07047 0.390294 -0.00102706 +0.0705425 0.365043 0.146614 +0.070615 0.445066 -0.0119698 +0.0706875 0.44578 0.10281 +0.07076 0.480541 0.0733927 +0.0708325 0.450752 0.114796 +0.070905 0.435614 0.0707291 +0.0709775 0.486566 0.0972447 +0.07105 0.400034 0.137212 +0.0711225 0.404898 0.0112809 +0.071195 0.421753 -0.0197604 +0.0712675 0.526997 -0.0195182 +0.07134 0.405658 -0.00764029 +0.0714125 0.436845 0.0545634 +0.071485 0.404906 -0.0655187 +0.0715575 0.379531 -0.0810247 +0.07163 0.506823 0.0462927 +0.0717025 0.416187 0.0306572 +0.071775 0.411294 0.0119656 +0.0718475 0.361023 0.0543839 +0.07192 0.38596 0.012596 +0.0719925 0.384123 0.00775302 +0.072065 0.406869 0.0418337 +0.0721375 0.333004 -0.0212884 +0.07221 0.42321 0.0839931 +0.0722825 0.393496 -0.0793547 +0.072355 0.353942 -0.0285906 +0.0724275 0.400005 -0.113172 +0.0725 0.42652 0.0572897 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/6/data-07500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/6/data-07500um.dat new file mode 100644 index 0000000..a3a59e6 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/6/data-07500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 2.38377 0.200422 +0.000145 3.15904 0.0918255 +0.0002175 3.13756 0.272955 +0.00029 3.03881 0.176983 +0.0003625 2.99932 0.0433785 +0.000435 2.87451 0.143249 +0.0005075 3.02027 0.115277 +0.00058 3.06601 0.16632 +0.0006525 2.96853 0.0452155 +0.000725 3.04931 0.0712593 +0.0007975 3.0003 0.0794925 +0.00087 2.875 0.209131 +0.0009425 2.93327 0.136774 +0.001015 2.9267 0.0780145 +0.0010875 2.90146 0.131196 +0.00116 2.91258 0.0406814 +0.0012325 2.86464 0.144535 +0.001305 2.93858 0.131371 +0.0013775 2.84593 0.129004 +0.00145 2.88551 0.152656 +0.0015225 2.76326 0.183563 +0.001595 2.75354 0.222633 +0.0016675 2.79842 0.223819 +0.00174 2.73239 0.0831957 +0.0018125 2.72875 0.182858 +0.001885 2.70386 0.114538 +0.0019575 2.76339 0.0977039 +0.00203 2.79647 0.202852 +0.0021025 2.7629 0.202806 +0.002175 2.82588 0.0673473 +0.0022475 2.75639 0.130369 +0.00232 2.84595 0.14922 +0.0023925 2.73455 0.258927 +0.002465 2.7142 0.222316 +0.0025375 2.71799 0.14388 +0.00261 2.60538 0.0698523 +0.0026825 2.68518 0.125092 +0.002755 2.64758 0.0796762 +0.0028275 2.71737 0.145404 +0.0029 2.71746 0.000104371 +0.0029725 2.57741 0.135166 +0.003045 2.65253 0.2125 +0.0031175 2.62858 0.0904811 +0.00319 2.70606 0.158688 +0.0032625 2.63328 0.175259 +0.003335 2.54337 0.152768 +0.0034075 2.62316 0.178578 +0.00348 2.66392 0.0602665 +0.0035525 2.58214 0.163861 +0.003625 2.62638 0.162509 +0.0036975 2.6512 0.0523632 +0.00377 2.63522 0.0181363 +0.0038425 2.59738 0.161173 +0.003915 2.60081 0.13884 +0.0039875 2.49351 0.128136 +0.00406 2.5423 0.130845 +0.0041325 2.53581 0.127585 +0.004205 2.50029 0.133229 +0.0042775 2.53275 0.123543 +0.00435 2.59623 0.0936917 +0.0044225 2.61958 0.124103 +0.004495 2.4961 0.254418 +0.0045675 2.43851 0.103177 +0.00464 2.3981 0.159937 +0.0047125 2.5115 0.27971 +0.004785 2.46029 0.158046 +0.0048575 2.47726 0.0555028 +0.00493 2.54529 0.151278 +0.0050025 2.46527 0.0973407 +0.005075 2.40325 0.036235 +0.0051475 2.39112 0.108663 +0.00522 2.37432 0.0983343 +0.0052925 2.35994 0.128357 +0.005365 2.39627 0.185171 +0.0054375 2.43389 0.140235 +0.00551 2.38903 0.210893 +0.0055825 2.40572 0.0731422 +0.005655 2.48452 0.0312334 +0.0057275 2.30687 0.102785 +0.0058 2.36015 0.191567 +0.0058725 2.38905 0.249466 +0.005945 2.33717 0.184599 +0.0060175 2.32316 0.0782608 +0.00609 2.41664 0.213753 +0.0061625 2.52812 0.196418 +0.006235 2.33987 0.12419 +0.0063075 2.30066 0.0491985 +0.00638 2.40395 0.133597 +0.0064525 2.32947 0.0701112 +0.006525 2.29209 0.154747 +0.0065975 2.27502 0.107561 +0.00667 2.31283 0.14628 +0.0067425 2.23557 0.189909 +0.006815 2.34813 0.118579 +0.0068875 2.22457 0.0634103 +0.00696 2.31548 0.189458 +0.0070325 2.31282 0.196005 +0.007105 2.33016 0.087162 +0.0071775 2.25523 0.101011 +0.00725 2.15152 0.0730212 +0.0073225 2.26842 0.153198 +0.007395 2.28815 0.0994992 +0.0074675 2.17584 0.169577 +0.00754 2.18067 0.0873624 +0.0076125 2.25507 0.131313 +0.007685 2.18773 0.000116898 +0.0077575 2.23821 0.126662 +0.00783 2.23101 0.0865733 +0.0079025 2.20142 0.15992 +0.007975 2.17943 -0.0434745 +0.0080475 2.18881 -0.0236557 +0.00812 2.20125 0.102042 +0.0081925 2.22325 0.125388 +0.008265 2.22529 0.0838094 +0.0083375 2.26248 0.118437 +0.00841 2.13044 0.221168 +0.0084825 2.23104 0.0951029 +0.008555 2.21893 0.133388 +0.0086275 2.20666 0.0692595 +0.0087 2.09735 0.0526053 +0.0087725 2.20623 0.123806 +0.008845 2.15921 0.10091 +0.0089175 2.12466 0.072587 +0.00899 2.08138 0.0464639 +0.0090625 2.19071 0.177518 +0.009135 2.1043 0.061139 +0.0092075 2.10182 0.0988019 +0.00928 1.97692 0.0589597 +0.0093525 2.03924 0.164475 +0.009425 2.10781 0.159148 +0.0094975 2.02339 0.257895 +0.00957 2.0541 0.142815 +0.0096425 2.0599 0.134736 +0.009715 2.08692 0.104639 +0.0097875 2.10435 0.0392661 +0.00986 2.1228 0.0650719 +0.0099325 2.00879 0.0362309 +0.010005 2.01081 0.0809913 +0.0100775 1.98621 0.085851 +0.01015 2.17881 0.168032 +0.0102225 2.01432 0.00343187 +0.010295 2.15287 -0.0237851 +0.0103675 2.04633 0.0828408 +0.01044 2.04767 0.141692 +0.0105125 1.99389 0.0990065 +0.010585 1.97863 0.0560497 +0.0106575 1.99878 0.150531 +0.01073 1.94512 0.0753174 +0.0108025 2.0442 0.152839 +0.010875 2.0644 0.119961 +0.0109475 2.07761 0.0874668 +0.01102 1.838 0.156856 +0.0110925 1.9773 0.177401 +0.011165 2.04278 0.0457249 +0.0112375 1.7966 0.0665415 +0.01131 1.9886 0.103887 +0.0113825 1.9309 0.180081 +0.011455 1.8833 0.126361 +0.0115275 1.97126 0.0805947 +0.0116 1.88318 0.14451 +0.0116725 1.90379 0.0496619 +0.011745 1.97162 0.0581205 +0.0118175 1.93122 0.0588386 +0.01189 1.89566 0.172729 +0.0119625 1.86131 0.114179 +0.012035 1.94291 0.186615 +0.0121075 1.93629 0.0031605 +0.01218 1.87312 0.122883 +0.0122525 1.9131 0.135734 +0.012325 1.85878 0.0555863 +0.0123975 1.84591 0.120249 +0.01247 1.87954 0.0359845 +0.0125425 1.89291 0.144339 +0.012615 1.96587 0.182879 +0.0126875 1.79531 0.110171 +0.01276 1.88684 0.0155227 +0.0128325 1.84588 0.133647 +0.012905 1.89015 0.0658735 +0.0129775 1.78713 0.135972 +0.01305 1.93815 0.128641 +0.0131225 1.79036 0.141529 +0.013195 1.85636 0.158605 +0.0132675 1.84512 0.0656272 +0.01334 1.88557 0.137371 +0.0134125 1.87543 0.003411 +0.013485 1.89898 0.0521168 +0.0135575 1.81622 0.0750544 +0.01363 1.80397 0.0986767 +0.0137025 1.80923 0.1083 +0.013775 1.8502 0.123167 +0.0138475 1.88102 0.163966 +0.01392 1.72588 0.0796094 +0.0139925 1.72289 0.118992 +0.014065 1.74597 0.113248 +0.0141375 1.70227 0.0621035 +0.01421 1.84171 0.208175 +0.0142825 1.70707 0.0808285 +0.014355 1.79102 0.0662702 +0.0144275 1.86718 0.0853083 +0.0145 1.86728 0.0136732 +0.0145725 1.87037 0.170796 +0.014645 1.87948 0.0861057 +0.0147175 1.88497 0.119168 +0.01479 1.81016 0.106438 +0.0148625 1.72299 0.129601 +0.014935 1.9239 0.239459 +0.0150075 1.77452 0.0288118 +0.01508 1.69772 0.0901012 +0.0151525 1.81826 0.048042 +0.015225 1.79187 0.127163 +0.0152975 1.82286 0.0417419 +0.01537 1.77731 0.144276 +0.0154425 1.68509 0.0846653 +0.015515 1.70337 0.0868363 +0.0155875 1.57736 0.0314379 +0.01566 1.76395 -0.0158734 +0.0157325 1.71816 0.0947397 +0.015805 1.69348 0.0431572 +0.0158775 1.75099 0.0981506 +0.01595 1.67732 0.0589346 +0.0160225 1.65039 0.238991 +0.016095 1.71978 0.0510271 +0.0161675 1.70511 0.0407399 +0.01624 1.67276 0.100685 +0.0163125 1.70138 0.0879385 +0.016385 1.63119 0.166133 +0.0164575 1.68264 0.0818597 +0.01653 1.6228 -0.00139445 +0.0166025 1.58138 0.22751 +0.016675 1.66947 0.178006 +0.0167475 1.67597 0.102246 +0.01682 1.55708 0.0496285 +0.0168925 1.76297 0.0707333 +0.016965 1.66672 0.133889 +0.0170375 1.76285 0.0882016 +0.01711 1.64325 0.134941 +0.0171825 1.76787 0.142552 +0.017255 1.65799 0.068462 +0.0173275 1.73814 0.0554443 +0.0174 1.61729 0.0572479 +0.0174725 1.55072 0.0572855 +0.017545 1.61926 0.0444181 +0.0176175 1.54022 0.107549 +0.01769 1.57762 0.0515908 +0.0177625 1.58509 0.11369 +0.017835 1.61602 0.141425 +0.0179075 1.55604 0.145074 +0.01798 1.54659 0.0290373 +0.0180525 1.60913 0.115034 +0.018125 1.59871 0.0686541 +0.0181975 1.52081 0.0269414 +0.01827 1.5457 0.146326 +0.0183425 1.46774 0.141496 +0.018415 1.53583 -0.0115523 +0.0184875 1.56877 0.122508 +0.01856 1.56049 0.022971 +0.0186325 1.58764 0.195955 +0.018705 1.55164 0.0236807 +0.0187775 1.54172 0.174516 +0.01885 1.5729 0.0598239 +0.0189225 1.55578 0.116053 +0.018995 1.47355 0.0804611 +0.0190675 1.59683 0.0719983 +0.01914 1.64458 0.0424099 +0.0192125 1.48843 0.0369531 +0.019285 1.49565 0.0445934 +0.0193575 1.52582 0.167368 +0.01943 1.52351 0.0709838 +0.0195025 1.43279 0.0665666 +0.019575 1.42481 0.0708335 +0.0196475 1.5249 0.0421469 +0.01972 1.58646 0.126616 +0.0197925 1.47448 0.0611474 +0.019865 1.44562 0.0312083 +0.0199375 1.61089 0.0816551 +0.02001 1.54768 -0.014909 +0.0200825 1.42048 -0.003745 +0.020155 1.63915 0.102948 +0.0202275 1.47294 0.101562 +0.0203 1.4241 0.0798306 +0.0203725 1.47588 0.0129927 +0.020445 1.42078 0.116767 +0.0205175 1.42662 0.0263569 +0.02059 1.55509 0.108868 +0.0206625 1.39876 0.079242 +0.020735 1.49097 0.154154 +0.0208075 1.50862 0.102 +0.02088 1.39129 0.0120909 +0.0209525 1.37753 0.257432 +0.021025 1.5341 0.134757 +0.0210975 1.56887 0.0658777 +0.02117 1.51293 0.0832082 +0.0212425 1.39383 0.0781022 +0.021315 1.44694 0.0415624 +0.0213875 1.44037 -0.03869 +0.02146 1.38972 0.101816 +0.0215325 1.47016 0.0809287 +0.021605 1.42093 0.116112 +0.0216775 1.40538 0.0317469 +0.02175 1.44845 0.109661 +0.0218225 1.48876 0.143366 +0.021895 1.45437 0.163294 +0.0219675 1.37721 0.086256 +0.02204 1.35004 0.15997 +0.0221125 1.3025 0.105854 +0.022185 1.40097 0.0625669 +0.0222575 1.31834 0.0609595 +0.02233 1.38894 0.0230378 +0.0224025 1.41815 0.0796428 +0.022475 1.33757 0.0268078 +0.0225475 1.33278 0.139371 +0.02262 1.43973 0.11761 +0.0226925 1.28514 0.0684286 +0.022765 1.39662 0.0615273 +0.0228375 1.38312 0.134068 +0.02291 1.38789 0.217009 +0.0229825 1.4117 0.0300351 +0.023055 1.52594 -0.0368446 +0.0231275 1.34975 0.0518622 +0.0232 1.32942 0.116304 +0.0232725 1.29573 -0.00246743 +0.023345 1.34103 0.0960882 +0.0234175 1.3842 0.0680738 +0.02349 1.32736 0.11263 +0.0235625 1.31035 0.193817 +0.023635 1.285 0.0298222 +0.0237075 1.29632 0.0820935 +0.02378 1.322 0.0419298 +0.0238525 1.31966 0.020061 +0.023925 1.4318 0.0285154 +0.0239975 1.26254 -0.0202322 +0.02407 1.31439 0.0532733 +0.0241425 1.31593 -0.0821645 +0.024215 1.36133 0.0514906 +0.0242875 1.27271 0.0850661 +0.02436 1.31231 0.127697 +0.0244325 1.3785 0.103916 +0.024505 1.42605 0.0858134 +0.0245775 1.22997 0.0408276 +0.02465 1.31498 0.0531564 +0.0247225 1.36989 0.0534111 +0.024795 1.34614 0.0361348 +0.0248675 1.24624 0.0668087 +0.02494 1.22822 0.148648 +0.0250125 1.26841 0.0740148 +0.025085 1.29106 0.0286281 +0.0251575 1.28876 0.0359971 +0.02523 1.28022 0.071109 +0.0253025 1.3198 0.0424308 +0.025375 1.21276 0.10086 +0.0254475 1.42209 0.0539497 +0.02552 1.26033 0.101482 +0.0255925 1.25869 0.0257182 +0.025665 1.18346 0.0920426 +0.0257375 1.23214 0.0742946 +0.02581 1.19879 -0.00769876 +0.0258825 1.25667 0.0175268 +0.025955 1.35343 0.130482 +0.0260275 1.26218 0.00591601 +0.0261 1.19021 0.0749333 +0.0261725 1.19349 0.133446 +0.026245 1.19923 0.14464 +0.0263175 1.18301 0.10635 +0.02639 1.25479 0.0903517 +0.0264625 1.27389 0.137154 +0.026535 1.37136 0.0704995 +0.0266075 1.36402 0.134832 +0.02668 1.21537 0.134356 +0.0267525 1.22104 0.158714 +0.026825 1.17509 0.0750294 +0.0268975 1.25174 0.138765 +0.02697 1.13611 0.0980713 +0.0270425 1.19198 0.000279724 +0.027115 1.27937 0.0467937 +0.0271875 1.16031 0.132799 +0.02726 1.17465 0.0536073 +0.0273325 1.2773 0.0847154 +0.027405 1.21616 0.0907483 +0.0274775 1.07623 0.061711 +0.02755 1.20584 0.0446435 +0.0276225 1.30591 0.129033 +0.027695 1.11585 0.00837927 +0.0277675 1.31566 -0.0422763 +0.02784 1.29533 0.0705746 +0.0279125 1.2127 0.114425 +0.027985 1.0698 0.104872 +0.0280575 1.12867 0.192548 +0.02813 1.27485 0.00612058 +0.0282025 1.20851 -0.0530938 +0.028275 1.20586 0.071276 +0.0283475 1.15725 0.0578241 +0.02842 1.12299 0.0813295 +0.0284925 1.2419 0.0524383 +0.028565 1.13383 0.0483927 +0.0286375 1.17749 0.0874835 +0.02871 1.23899 0.0989439 +0.0287825 1.16585 0.0908861 +0.028855 1.16732 0.0468855 +0.0289275 1.29311 0.102175 +0.029 1.17239 0.0487893 +0.0290725 1.16975 -0.00364062 +0.029145 1.0762 0.0916961 +0.0292175 1.19643 0.100739 +0.02929 1.12511 0.00143203 +0.0293625 1.19739 0.176816 +0.029435 1.14759 0.0899801 +0.0295075 1.16201 0.0362225 +0.02958 1.15118 0.0121577 +0.0296525 1.13312 0.00960256 +0.029725 1.09751 0.0764572 +0.0297975 1.10534 0.00515198 +0.02987 1.07812 0.137934 +0.0299425 1.20768 0.165377 +0.030015 1.09248 0.0428065 +0.0300875 1.17976 0.0218145 +0.03016 1.25123 0.133822 +0.0302325 1.09103 -0.0240314 +0.030305 1.08449 0.0627089 +0.0303775 1.17678 0.00213761 +0.03045 1.06874 -0.00302689 +0.0305225 1.11794 0.0993113 +0.030595 1.03757 0.106388 +0.0306675 1.10236 0.0421594 +0.03074 1.10626 0.136423 +0.0308125 1.11691 0.207336 +0.030885 1.10034 0.103394 +0.0309575 1.06947 0.00521043 +0.03103 1.069 0.0389321 +0.0311025 1.22206 0.0663119 +0.031175 1.07459 0.0446936 +0.0312475 1.0405 0.0207039 +0.03132 1.12674 0.0187667 +0.0313925 1.15085 0.0582416 +0.031465 1.2005 0.150647 +0.0315375 1.11465 0.10473 +0.03161 1.08899 0.13578 +0.0316825 1.09212 -0.0284945 +0.031755 0.970267 0.0811458 +0.0318275 1.02182 0.122524 +0.0319 1.08413 -0.00816635 +0.0319725 0.984086 0.0383392 +0.032045 1.08979 0.0313503 +0.0321175 1.18264 -0.0346402 +0.03219 1.04797 0.0986266 +0.0322625 1.10737 0.0478708 +0.032335 1.01894 -0.0410196 +0.0324075 1.12752 0.11622 +0.03248 1.08019 0.0546719 +0.0325525 0.964205 0.114391 +0.032625 1.05923 0.052455 +0.0326975 0.957638 0.0376128 +0.03277 1.05421 0.105879 +0.0328425 1.04241 0.0968188 +0.032915 1.03911 0.033659 +0.0329875 1.10234 0.0507266 +0.03306 1.10489 0.0870451 +0.0331325 1.07296 0.0628132 +0.033205 0.939088 0.0754636 +0.0332775 0.98764 0.110859 +0.03335 1.02083 -0.0609762 +0.0334225 0.918981 0.0878592 +0.033495 1.07684 0.0427439 +0.0335675 1.04978 0.106881 +0.03364 0.981978 0.109285 +0.0337125 1.00178 0.0377798 +0.033785 0.945013 0.0243696 +0.0338575 0.99513 0.0929569 +0.03393 1.1199 0.0166124 +0.0340025 1.09848 0.0142494 +0.034075 0.970238 0.0755387 +0.0341475 1.10081 0.041554 +0.03422 0.915504 0.0350911 +0.0342925 1.03581 -0.0167794 +0.034365 1.03175 0.143003 +0.0344375 0.975407 -0.0046134 +0.03451 1.08051 0.103006 +0.0345825 1.07209 0.0550644 +0.034655 1.07008 0.0614021 +0.0347275 0.997234 0.0642954 +0.0348 0.940483 0.0145917 +0.0348725 1.03667 0.121727 +0.034945 1.06922 0.083655 +0.0350175 1.0571 0.00645041 +0.03509 0.98837 -0.0281772 +0.0351625 0.899618 -0.0456205 +0.035235 0.977928 0.152944 +0.0353075 0.927887 0.0618446 +0.03538 0.919578 0.0664246 +0.0354525 1.02676 0.021731 +0.035525 1.00652 0.0075234 +0.0355975 1.02343 -0.0276971 +0.03567 1.00688 0.0629176 +0.0357425 0.896787 -0.0112058 +0.035815 0.94333 0.0559286 +0.0358875 0.919779 0.0688712 +0.03596 0.982509 0.114721 +0.0360325 0.907968 0.126917 +0.036105 0.994015 0.0632558 +0.0361775 1.01233 0.122754 +0.03625 0.885978 0.0575861 +0.0363225 1.00329 0.0561582 +0.036395 0.902619 0.00704327 +0.0364675 0.958072 0.120788 +0.03654 0.914694 -0.0462175 +0.0366125 0.922184 0.0346694 +0.036685 0.959976 0.0077238 +0.0367575 0.763407 -0.033325 +0.03683 0.891489 0.0181655 +0.0369025 0.96714 -0.00588261 +0.036975 0.935769 0.015076 +0.0370475 0.865963 0.0179234 +0.03712 0.880776 -0.00920175 +0.0371925 0.856431 -0.0339054 +0.037265 1.05033 0.0189337 +0.0373375 0.930638 0.0764071 +0.03741 0.900732 0.0636232 +0.0374825 0.888424 0.160576 +0.037555 0.949426 0.159962 +0.0376275 0.882659 -0.0126545 +0.0377 0.926384 0.0142619 +0.0377725 0.968205 0.159382 +0.037845 0.822989 0.100409 +0.0379175 0.919511 0.0670467 +0.03799 0.937393 -0.0218563 +0.0380625 0.951112 0.0884395 +0.038135 0.952131 0.0971194 +0.0382075 0.987836 0.0123414 +0.03828 0.921319 -0.0219272 +0.0383525 0.896495 0.0961091 +0.038425 0.91279 0.0341225 +0.0384975 0.829686 -0.0419005 +0.03857 0.922902 0.0723239 +0.0386425 0.870092 0.0710882 +0.038715 0.921728 -0.00237976 +0.0387875 0.927344 0.023902 +0.03886 0.831444 0.0598865 +0.0389325 0.798298 0.0732967 +0.039005 0.861387 0.0227455 +0.0390775 0.85054 0.0875043 +0.03915 0.846507 0.0503383 +0.0392225 0.842048 0.0218897 +0.039295 0.865453 0.0314588 +0.0393675 0.849822 0.129209 +0.03944 0.925352 0.164237 +0.0395125 0.855028 0.106133 +0.039585 0.784642 0.139634 +0.0396575 0.840178 0.0140364 +0.03973 0.804431 0.129238 +0.0398025 0.907191 -0.032202 +0.039875 0.904769 0.0979127 +0.0399475 0.819131 -0.0091767 +0.04002 0.920918 -0.00237141 +0.0400925 0.874726 0.0717311 +0.040165 0.75135 0.0954369 +0.0402375 0.772121 0.142502 +0.04031 0.820396 0.0743614 +0.0403825 0.823436 0.143997 +0.040455 0.762631 0.0215515 +0.0405275 0.80856 0.147341 +0.0406 0.836504 -0.0788036 +0.0406725 0.781769 -0.00595776 +0.040745 0.747926 -0.0104918 +0.0408175 0.739021 0.162229 +0.04089 0.764864 0.10319 +0.0409625 0.793735 0.0452072 +0.041035 0.834153 -0.0329201 +0.0411075 0.781778 0.104388 +0.04118 0.751266 0.0718104 +0.0412525 0.74773 0.00865065 +0.041325 0.80545 0.0274341 +0.0413975 0.80522 0.0290582 +0.04147 0.887769 0.0354 +0.0415425 0.711403 0.0813253 +0.041615 0.839222 -0.00520208 +0.0416875 0.739301 0.0963178 +0.04176 0.82038 -0.0607508 +0.0418325 0.738775 -0.00771127 +0.041905 0.868042 0.0538996 +0.0419775 0.832517 -0.00174516 +0.04205 0.831899 -0.0243905 +0.0421225 0.768751 0.0480671 +0.042195 0.967336 0.0422721 +0.0422675 0.777669 0.0695392 +0.04234 0.781903 0.108325 +0.0424125 0.832316 0.0751671 +0.042485 0.763032 0.105231 +0.0425575 0.828204 0.00287659 +0.04263 0.696152 0.0389405 +0.0427025 0.691146 -0.0384394 +0.042775 0.908819 0.0641284 +0.0428475 0.751984 -0.0315799 +0.04292 0.846849 -0.0122913 +0.0429925 0.798503 0.0589555 +0.043065 0.778713 0.0316676 +0.0431375 0.783619 0.0182657 +0.04321 0.736445 0.0151303 +0.0432825 0.796394 0.00878426 +0.043355 0.817758 0.0390991 +0.0434275 0.911733 0.0961424 +0.0435 0.756147 0.135166 +0.0435725 0.825018 0.0105002 +0.043645 0.825983 0.0154518 +0.0437175 0.70871 0.019798 +0.04379 0.779193 0.00721862 +0.0438625 0.759596 0.206142 +0.043935 0.744269 0.11688 +0.0440075 0.737873 0.0254259 +0.04408 0.83738 0.0618154 +0.0441525 0.734395 0.138047 +0.044225 0.774546 0.0260855 +0.0442975 0.733126 0.0556364 +0.04437 0.802423 -0.0474492 +0.0444425 0.7619 0.0739272 +0.044515 0.722054 -0.0452531 +0.0445875 0.691067 0.108221 +0.04466 0.87873 0.0667879 +0.0447325 0.781331 0.109603 +0.044805 0.714134 -0.0342268 +0.0448775 0.809141 0.0202572 +0.04495 0.776788 -0.0221819 +0.0450225 0.806698 -0.01832 +0.045095 0.745492 0.0211841 +0.0451675 0.751275 0.0826321 +0.04524 0.634946 0.0459837 +0.0453125 0.610789 0.125981 +0.045385 0.764773 0.068174 +0.0454575 0.78113 0.0519039 +0.04553 0.691288 0.0590808 +0.0456025 0.839497 -0.0413077 +0.045675 0.780742 0.126244 +0.0457475 0.659812 0.175748 +0.04582 0.780187 -0.00581163 +0.0458925 0.737134 0.0816676 +0.045965 0.800862 0.00875085 +0.0460375 0.635222 0.0979377 +0.04611 0.821782 0.140085 +0.0461825 0.64902 0.101253 +0.046255 0.820159 0.104447 +0.0463275 0.774659 -0.0521461 +0.0464 0.710247 0.0463678 +0.0464725 0.754974 0.00797013 +0.046545 0.696724 0.0817386 +0.0466175 0.764238 -0.0925603 +0.04669 0.662405 0.0737476 +0.0467625 0.744231 0.0898298 +0.046835 0.773002 0.0541125 +0.0469075 0.638349 0.0372955 +0.04698 0.901985 0.0100785 +0.0470525 0.64667 0.0772755 +0.047125 0.763645 0.0573314 +0.0471975 0.751154 0.056701 +0.04727 0.849922 0.101257 +0.0473425 0.668234 0.138285 +0.047415 0.682287 0.0295968 +0.0474875 0.681364 0.0557491 +0.04756 0.684099 0.028123 +0.0476325 0.673135 -0.0399132 +0.047705 0.694131 0.135459 +0.0477775 0.695509 0.0957041 +0.04785 0.702523 0.0625001 +0.0479225 0.722467 0.0262442 +0.047995 0.703792 -0.0149508 +0.0480675 0.574308 0.00507683 +0.04814 0.640006 0.0121577 +0.0482125 0.63318 0.00108133 +0.048285 0.689626 0.0508727 +0.0483575 0.592415 0.114984 +0.04843 0.694732 -0.0248163 +0.0485025 0.76787 -0.0584796 +0.048575 0.745071 0.0317051 +0.0486475 0.705809 -0.00551938 +0.04872 0.621782 0.0642328 +0.0487925 0.640106 0.00648799 +0.048865 0.723611 0.0444974 +0.0489375 0.647843 0.058847 +0.04901 0.680637 -0.063356 +0.0490825 0.719152 -0.0238143 +0.049155 0.707295 0.00111473 +0.0492275 0.675118 0.031225 +0.0493 0.693075 0.0961424 +0.0493725 0.585418 0.0401011 +0.049445 0.6183 0.0505846 +0.0495175 0.768096 0.0975119 +0.04959 0.740916 0.0458418 +0.0496625 0.62465 -0.0075902 +0.049735 0.630708 0.0970025 +0.0498075 0.676371 0.0391409 +0.04988 0.675515 -0.0047971 +0.0499525 0.709662 -0.0121117 +0.050025 0.594615 0.0713595 +0.0500975 0.719954 -0.0459587 +0.05017 0.747434 -0.00423346 +0.0502425 0.683948 0.0642244 +0.050315 0.634445 0.00741901 +0.0503875 0.722029 0.121431 +0.05046 0.596661 -0.0233092 +0.0505325 0.647701 0.0339304 +0.050605 0.660038 0.061544 +0.0506775 0.69634 0.15114 +0.05075 0.662647 -0.0078407 +0.0508225 0.683159 0.0596527 +0.050895 0.631138 0.00675518 +0.0509675 0.59153 -0.015339 +0.05104 0.672576 0.0815466 +0.0511125 0.707049 0.0103541 +0.051185 0.735343 0.0961717 +0.0512575 0.778584 -0.0254635 +0.05133 0.657287 0.15686 +0.0514025 0.473556 0.121877 +0.051475 0.583476 -0.00680946 +0.0515475 0.568617 -0.00514362 +0.05162 0.630203 0.00398297 +0.0516925 0.566914 0.0403099 +0.051765 0.656786 0.0550978 +0.0518375 0.658852 0.104697 +0.05191 0.764618 -0.0279059 +0.0519825 0.623907 -0.0400677 +0.052055 0.525327 0.0320976 +0.0521275 0.529005 0.0263486 +0.0522 0.576859 -0.0470567 +0.0522725 0.594164 0.104994 +0.052345 0.706527 0.0189212 +0.0524175 0.585819 0.0110221 +0.05249 0.563023 0.0471151 +0.0525625 0.587655 0.0403767 +0.052635 0.576095 0.0429025 +0.0527075 0.623456 0.0250794 +0.05278 0.633051 -0.0451779 +0.0528525 0.707253 0.0451654 +0.052925 0.612159 -0.0252422 +0.0529975 0.596068 0.0500544 +0.05307 0.630521 0.101795 +0.0531425 0.58252 -0.0212425 +0.053215 0.681631 0.0437543 +0.0532875 0.598068 0.043199 +0.05336 0.486779 -0.0543505 +0.0534325 0.563002 0.0590014 +0.053505 0.645764 0.0984763 +0.0535775 0.662447 0.0264279 +0.05365 0.539108 0.00366984 +0.0537225 0.59138 0.0851204 +0.053795 0.586232 0.0449316 +0.0538675 0.608631 -0.0108759 +0.05394 0.548765 0.036807 +0.0540125 0.576195 -0.020086 +0.054085 0.560547 0.0118362 +0.0541575 0.614167 0.0310455 +0.05423 0.640486 0.0552648 +0.0543025 0.4642 0.0783819 +0.054375 0.512188 0.100305 +0.0544475 0.671114 0.00346527 +0.05452 0.568091 0.0499876 +0.0545925 0.664271 0.137759 +0.054665 0.62174 0.0515615 +0.0547375 0.57602 0.00395792 +0.05481 0.531597 -0.021468 +0.0548825 0.555186 0.0623248 +0.054955 0.580199 0.00841267 +0.0550275 0.602055 0.0610806 +0.0551 0.573594 0.0262192 +0.0551725 0.632491 -0.0444139 +0.055245 0.567607 0.0596193 +0.0553175 0.577656 0.0786992 +0.05539 0.683284 0.0657942 +0.0554625 0.640916 0.065122 +0.055535 0.713215 -0.0212091 +0.0556075 0.521168 0.00581998 +0.05568 0.532562 0.0484219 +0.0557525 0.539743 -0.0176687 +0.055825 0.563169 0.0860389 +0.0558975 0.631176 0.0170132 +0.05597 0.522362 -0.0130261 +0.0560425 0.495124 0.111565 +0.056115 0.543125 0.0473949 +0.0561875 0.542357 0.103854 +0.05626 0.431347 0.0553483 +0.0563325 0.540895 -0.207223 +0.056405 0.647601 -0.00902223 +0.0564775 0.563858 0.0120241 +0.05655 0.614071 -0.021301 +0.0566225 0.541947 0.136448 +0.056695 0.537722 0.0943388 +0.0567675 0.480073 -0.00380763 +0.05684 0.514129 0.0348197 +0.0569125 0.601675 0.0849701 +0.056985 0.48685 0.0909571 +0.0570575 0.578504 0.136632 +0.05713 0.591221 0.122387 +0.0572025 0.603713 0.00969858 +0.057275 0.458272 -0.0267536 +0.0573475 0.519544 -0.0372329 +0.05742 0.586963 -0.0197896 +0.0574925 0.515361 0.0282566 +0.057565 0.479706 0.0392285 +0.0576375 0.56767 0.0735055 +0.05771 0.546891 -0.0316676 +0.0577825 0.589401 0.0428524 +0.057855 0.447032 0.0823857 +0.0579275 0.558259 0.00455078 +0.058 0.547642 -0.0477247 +0.0580725 0.602164 0.0507766 +0.058145 0.510171 0.0240314 +0.0582175 0.57746 0.0544131 +0.05829 0.533096 0.0643914 +0.0583625 0.55785 0.00978209 +0.058435 0.550272 0.014742 +0.0585075 0.477285 0.0254802 +0.05858 0.510413 0.0463469 +0.0586525 0.528608 -0.00493905 +0.058725 0.498323 0.0692553 +0.0587975 0.445325 0.0105085 +0.05887 0.547488 0.0639781 +0.0589425 0.595175 0.0501379 +0.059015 0.522588 0.0872371 +0.0590875 0.58586 0.0132682 +0.05916 0.463436 0.0135062 +0.0592325 0.547187 0.0154852 +0.059305 0.391534 0.075689 +0.0593775 0.477815 0.0101537 +0.05945 0.576375 0.0696603 +0.0595225 0.576283 0.0682951 +0.059595 0.519665 -0.0257181 +0.0596675 0.45952 0.0304234 +0.05974 0.591526 0.160279 +0.0598125 0.528374 0.0449859 +0.059885 0.448256 -0.0358259 +0.0599575 0.595809 -0.0267786 +0.06003 0.509282 -0.0582249 +0.0601025 0.527034 0.0414705 +0.060175 0.499583 0.0612393 +0.0602475 0.544882 0.0879678 +0.06032 0.455245 0.00775302 +0.0603925 0.569444 -0.0337634 +0.060465 0.47941 -0.0143955 +0.0605375 0.464405 0.139099 +0.06061 0.562601 0.0455579 +0.0606825 0.518642 -0.0672179 +0.060755 0.658343 -0.112091 +0.0608275 0.508722 0.00681782 +0.0609 0.447855 0.0980505 +0.0609725 0.572563 0.127998 +0.061045 0.422007 0.0374124 +0.0611175 0.559207 0.0260939 +0.06119 0.430182 0.000563635 +0.0612625 0.461424 0.153954 +0.061335 0.459557 0.0184787 +0.0614075 0.445822 0.0234887 +0.06148 0.484328 0.0107883 +0.0615525 0.460125 0.135542 +0.061625 0.395838 0.08449 +0.0616975 0.521448 -0.0367569 +0.06177 0.453124 0.0006513 +0.0618425 0.528228 0.020132 +0.061915 0.43771 0.0132474 +0.0619875 0.48892 0.0540165 +0.06206 0.554815 0.0587217 +0.0621325 0.507821 -0.011903 +0.062205 0.433138 0.0688754 +0.0622775 0.437922 0.0959504 +0.06235 0.515148 -0.0376587 +0.0624225 0.560881 0.000384105 +0.062495 0.528884 0.103879 +0.0625675 0.486628 -0.0200067 +0.06264 0.527197 -0.00332332 +0.0627125 0.505445 -0.0428149 +0.062785 0.426996 0.056033 +0.0628575 0.46438 -0.0167293 +0.06293 0.44287 -0.0736892 +0.0630025 0.599454 0.0255929 +0.063075 0.488758 0.0190339 +0.0631475 0.448665 -0.00229209 +0.06322 0.447955 0.0861474 +0.0632925 0.339242 -0.0233927 +0.063365 0.519962 0.0781064 +0.0634375 0.462204 -0.00312291 +0.06351 0.498356 0.0368529 +0.0635825 0.442035 0.0953993 +0.063655 0.379339 -0.0612935 +0.0637275 0.48758 0.0773841 +0.0638 0.506982 0.0502172 +0.0638725 0.409123 0.0253758 +0.063945 0.458927 0.0385647 +0.0640175 0.367473 0.0106046 +0.06409 0.453687 -0.0223781 +0.0641625 0.406455 0.00408318 +0.064235 0.487551 0.0483426 +0.0643075 0.386415 0.0729377 +0.06438 0.525264 0.0358802 +0.0644525 0.495425 -0.0599074 +0.064525 0.472262 0.00336089 +0.0645975 0.443125 0.020132 +0.06467 0.467899 0.0898131 +0.0647425 0.424187 0.0610055 +0.064815 0.440916 0.113206 +0.0648875 0.500393 0.231547 +0.06496 0.564739 -0.00510606 +0.0650325 0.529886 -0.0479001 +0.065105 0.526153 -0.0859137 +0.0651775 0.494882 0.0964973 +0.06525 0.428512 0.0943723 +0.0653225 0.358639 0.0541835 +0.065395 0.363862 0.0342477 +0.0654675 0.401011 0.0299433 +0.06554 0.436319 0.0663161 +0.0656125 0.513511 -0.0713679 +0.065685 0.450815 0.0186624 +0.0657575 0.403758 0.0180904 +0.06583 0.492402 0.0363603 +0.0659025 0.480917 0.0576738 +0.065975 0.345316 0.00335672 +0.0660475 0.369619 0.069439 +0.06612 0.40104 0.0548598 +0.0661925 0.409591 0.0125 +0.066265 0.439693 0.0139112 +0.0663375 0.496055 0.0447771 +0.06641 0.400205 0.0487309 +0.0664825 0.472483 -0.063093 +0.066555 0.542373 0.0514071 +0.0666275 0.459837 0.0262442 +0.0667 0.509349 -0.0612894 +0.0667725 0.466225 0.0664622 +0.066845 0.46688 0.0710923 +0.0669175 0.421131 0.0540248 +0.06699 0.372629 -0.0337217 +0.0670625 0.474592 0.0181071 +0.067135 0.36749 0.0394039 +0.0672075 0.441868 -0.0766451 +0.06728 0.444043 0.0442678 +0.0673525 0.432988 -0.0327405 +0.067425 0.415883 -0.0450151 +0.0674975 0.52645 -0.0352163 +0.06757 0.385163 -0.0206371 +0.0676425 0.464146 0.00310622 +0.067715 0.485889 0.0126628 +0.0677875 0.413386 -0.0417586 +0.06786 0.437814 0.0240648 +0.0679325 0.509866 0.0384603 +0.068005 0.398848 -0.0259353 +0.0680775 0.447546 0.0742528 +0.06815 0.425247 0.0698106 +0.0682225 0.377643 -0.00637108 +0.068295 0.313473 0.0485305 +0.0683675 0.323285 0.0235764 +0.06844 0.41549 0.0216893 +0.0685125 0.411808 0.0322562 +0.068585 0.343062 -0.0255052 +0.0686575 0.455792 -0.0250209 +0.06873 0.397625 0.0258518 +0.0688025 0.511967 0.0872246 +0.068875 0.427673 0.0247245 +0.0689475 0.42184 0.0871662 +0.06902 0.263837 0.166199 +0.0690925 0.44644 0.0390574 +0.069165 0.412029 0.0765407 +0.0692375 0.404572 0.157315 +0.06931 0.388469 -0.0310121 +0.0693825 0.419957 -0.0111097 +0.069455 0.391171 -0.0172596 +0.0695275 0.388231 0.121585 +0.0696 0.435313 0.013239 +0.0696725 0.333296 -0.0224909 +0.069745 0.451683 0.0714388 +0.0698175 0.328278 0.146138 +0.06989 0.437442 0.0792503 +0.0699625 0.387342 -0.00150719 +0.070035 0.328796 0.0107632 +0.0701075 0.422312 0.00366985 +0.07018 0.506134 -0.00684704 +0.0702525 0.405666 0.0256722 +0.070325 0.480057 0.107306 +0.0703975 0.390753 0.0111348 +0.07047 0.505499 0.0406355 +0.0705425 0.400193 -0.0192636 +0.070615 0.383109 0.0567219 +0.0706875 0.405675 -0.0287534 +0.07076 0.280353 0.145078 +0.0708325 0.368408 0.034778 +0.070905 0.353441 0.0761691 +0.0709775 0.386428 -0.00588261 +0.07105 0.391613 -0.0589179 +0.0711225 0.339262 0.0473197 +0.071195 0.381054 -0.00182866 +0.0712675 0.387158 -0.00606214 +0.07134 0.390619 0.13358 +0.0714125 0.400999 0.0443179 +0.071485 0.36276 0.0613854 +0.0715575 0.448773 0.0365189 +0.07163 0.403608 0.0955663 +0.0717025 0.364738 -0.00249249 +0.071775 0.44902 0.13502 +0.0718475 0.341826 -0.00530645 +0.07192 0.445984 0.090502 +0.0719925 0.444285 -0.0248414 +0.072065 0.355963 0.0422012 +0.0721375 0.284741 0.00903893 +0.07221 0.385956 -0.0411156 +0.0722825 0.320959 -0.0680988 +0.072355 0.291187 0.0272212 +0.0724275 0.272884 0.00306447 +0.0725 0.337288 -0.0402222 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/6/data-08500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/6/data-08500um.dat new file mode 100644 index 0000000..0e5b697 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/6/data-08500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 2.42031 0.113431 +0.000145 3.19958 -0.0589889 +0.0002175 3.06671 0.175209 +0.00029 3.02342 0.074353 +0.0003625 2.9778 0.128812 +0.000435 2.98296 0.0556489 +0.0005075 2.9508 0.0619532 +0.00058 2.91417 0.132023 +0.0006525 3.01378 0.0793672 +0.000725 2.93244 0.0169506 +0.0007975 2.93281 0.158534 +0.00087 3.0539 0.0908193 +0.0009425 2.91865 0.105545 +0.001015 2.84712 0.133613 +0.0010875 2.9183 0.0470317 +0.00116 2.86934 0.0323481 +0.0012325 2.84118 0.128474 +0.001305 2.91486 0.194949 +0.0013775 2.91079 0.115306 +0.00145 2.90197 0.0765658 +0.0015225 2.8023 0.109002 +0.001595 2.89865 0.151265 +0.0016675 2.77094 0.0829577 +0.00174 2.74011 0.115778 +0.0018125 2.81621 0.126328 +0.001885 2.7906 0.107043 +0.0019575 2.81264 0.114675 +0.00203 2.75325 0.0206455 +0.0021025 2.7959 0.154246 +0.002175 2.6999 0.0407023 +0.0022475 2.80659 0.0567762 +0.00232 2.68239 0.0639196 +0.0023925 2.61962 0.138978 +0.002465 2.76985 0.0816635 +0.0025375 2.76568 0.0432783 +0.00261 2.8175 0.151958 +0.0026825 2.72005 0.14671 +0.002755 2.74546 0.119285 +0.0028275 2.65059 0.0684495 +0.0029 2.73184 0.109678 +0.0029725 2.69578 0.0361682 +0.003045 2.69616 0.164458 +0.0031175 2.61819 0.0626838 +0.00319 2.60299 0.132707 +0.0032625 2.60066 0.0853208 +0.003335 2.5473 0.072658 +0.0034075 2.56835 0.081342 +0.00348 2.65584 0.158659 +0.0035525 2.53979 0.0204868 +0.003625 2.63958 0.101507 +0.0036975 2.55986 0.0958418 +0.00377 2.7124 0.118162 +0.0038425 2.52337 0.053958 +0.003915 2.56466 0.115556 +0.0039875 2.58486 0.0917295 +0.00406 2.50757 0.105482 +0.0041325 2.51615 0.10658 +0.004205 2.41703 0.138991 +0.0042775 2.42447 0.162066 +0.00435 2.48064 0.0197646 +0.0044225 2.508 0.157098 +0.004495 2.57298 0.123222 +0.0045675 2.49965 0.0390949 +0.00464 2.56024 0.0622872 +0.0047125 2.45451 0.106814 +0.004785 2.48057 0.0819098 +0.0048575 2.55787 0.1143 +0.00493 2.3263 0.0850703 +0.0050025 2.50452 0.219314 +0.005075 2.48715 0.0259478 +0.0051475 2.5036 0.0883811 +0.00522 2.45728 0.0646169 +0.0052925 2.48674 0.0885105 +0.005365 2.38234 0.0842645 +0.0054375 2.37164 0.0985807 +0.00551 2.35032 0.145988 +0.0055825 2.43092 0.228503 +0.005655 2.38891 0.0117777 +0.0057275 2.38664 0.0708042 +0.0058 2.34427 -0.0114897 +0.0058725 2.27033 0.147232 +0.005945 2.25312 0.172307 +0.0060175 2.44512 0.0999042 +0.00609 2.25626 0.17379 +0.0061625 2.3225 0.195938 +0.006235 2.34658 0.149132 +0.0063075 2.34404 0.207945 +0.00638 2.40511 0.1436 +0.0064525 2.38571 0.153165 +0.006525 2.33737 0.0148965 +0.0065975 2.38331 -0.000254673 +0.00667 2.25727 0.0656439 +0.0067425 2.34944 0.0255595 +0.006815 2.25716 0.16549 +0.0068875 2.2471 -0.0159486 +0.00696 2.20893 0.191462 +0.0070325 2.26419 0.0724701 +0.007105 2.42632 0.146856 +0.0071775 2.18422 0.19712 +0.00725 2.18151 0.177764 +0.0073225 2.25195 0.0176061 +0.007395 2.2479 0.121234 +0.0074675 2.18476 0.128724 +0.00754 2.16698 0.120625 +0.0076125 2.26357 0.0989481 +0.007685 2.17006 0.149733 +0.0077575 2.21685 0.127768 +0.00783 2.18226 -0.0049975 +0.0079025 2.18134 0.0777139 +0.007975 2.26433 0.0726788 +0.0080475 2.18678 0.146038 +0.00812 2.16764 0.100622 +0.0081925 2.1099 0.0811332 +0.008265 2.06422 0.158743 +0.0083375 2.18613 0.00271377 +0.00841 2.08145 0.08034 +0.0084825 2.19235 0.0824818 +0.008555 2.07947 0.0451696 +0.0086275 2.23803 0.0935748 +0.0087 2.0806 0.0178816 +0.0087725 2.13171 0.0826696 +0.008845 2.175 0.106254 +0.0089175 2.206 0.123005 +0.00899 2.13626 0.138828 +0.0090625 2.12088 0.00901805 +0.009135 2.16247 0.132194 +0.0092075 2.10559 0.0217978 +0.00928 2.01409 0.05954 +0.0093525 2.01657 0.0735681 +0.009425 2.01859 0.124629 +0.0094975 2.02173 0.109327 +0.00957 2.04298 0.13836 +0.0096425 2.06862 0.10676 +0.009715 1.98841 0.166458 +0.0097875 2.0379 0.0993322 +0.00986 2.05557 0.0687251 +0.0099325 2.02175 0.0226161 +0.010005 1.99399 0.0131221 +0.0100775 2.02165 0.115339 +0.01015 2.01005 0.0354501 +0.0102225 1.93618 0.047946 +0.010295 1.97218 0.0898799 +0.0103675 2.01395 0.200501 +0.01044 1.95558 0.155424 +0.0105125 1.92816 0.121105 +0.010585 1.9833 0.153286 +0.0106575 1.98082 0.156998 +0.01073 1.98914 0.0325067 +0.0108025 2.00261 0.0562752 +0.010875 1.82638 0.0916084 +0.0109475 1.9632 0.0976037 +0.01102 1.95409 -0.00908903 +0.0110925 1.90652 0.230516 +0.011165 1.92997 0.0142828 +0.0112375 1.96563 0.104751 +0.01131 1.99978 0.121769 +0.0113825 1.95159 0.167051 +0.011455 1.82672 0.123522 +0.0115275 1.96942 0.0989606 +0.0116 1.89025 -0.0384854 +0.0116725 1.88189 0.0550393 +0.011745 1.93006 0.0769415 +0.0118175 1.81239 0.140623 +0.01189 1.88416 0.126249 +0.0119625 1.94345 0.134336 +0.012035 1.87349 0.0807909 +0.0121075 1.90143 0.138991 +0.01218 1.82541 0.109523 +0.0122525 1.87584 0.0995576 +0.012325 1.89127 0.117823 +0.0123975 1.89181 0.14451 +0.01247 1.83966 0.142427 +0.0125425 1.95599 0.0544465 +0.012615 1.73211 0.0646294 +0.0126875 1.77887 0.105958 +0.01276 1.8082 0.0324942 +0.0128325 1.88764 -0.0219105 +0.012905 1.80605 0.107077 +0.0129775 1.81587 0.0662368 +0.01305 1.84065 0.0182657 +0.0131225 1.84314 0.00571143 +0.013195 1.73667 0.0395166 +0.0132675 1.85705 0.035112 +0.01334 1.88711 -0.0196602 +0.0134125 1.78235 0.0755888 +0.013485 1.76111 0.0475994 +0.0135575 1.76833 0.105716 +0.01363 1.77208 0.0337759 +0.0137025 1.78511 0.0635146 +0.013775 1.87242 -0.00132766 +0.0138475 1.81053 0.0548765 +0.01392 1.76569 0.0801897 +0.0139925 1.79498 0.0894624 +0.014065 1.78466 0.152509 +0.0141375 1.78715 0.0335213 +0.01421 1.82679 0.0758811 +0.0142825 1.69751 0.0700987 +0.014355 1.77746 0.0305862 +0.0144275 1.70117 0.131568 +0.0145 1.70601 0.0888737 +0.0145725 1.71426 0.0925812 +0.014645 1.67021 0.092147 +0.0147175 1.75745 0.0430362 +0.01479 1.69736 0.0678901 +0.0148625 1.76678 0.174666 +0.014935 1.71982 0.0919591 +0.0150075 1.64703 0.0261064 +0.01508 1.64635 0.088427 +0.0151525 1.76996 0.0345191 +0.015225 1.78488 0.257236 +0.0152975 1.78261 0.0842395 +0.01537 1.67116 0.0240398 +0.0154425 1.71673 0.116876 +0.015515 1.69124 0.0767495 +0.0155875 1.66449 0.0888946 +0.01566 1.65806 0.0419673 +0.0157325 1.66469 0.0800102 +0.015805 1.67726 0.148284 +0.0158775 1.69926 0.0538411 +0.01595 1.51624 0.0803275 +0.0160225 1.58547 0.0781857 +0.016095 1.62698 0.0486307 +0.0161675 1.67276 0.0937794 +0.01624 1.66083 0.0676479 +0.0163125 1.62826 0.137843 +0.016385 1.57433 0.0591935 +0.0164575 1.64749 0.0971737 +0.01653 1.58131 0.0150844 +0.0166025 1.63747 0.102213 +0.016675 1.7085 0.104839 +0.0167475 1.66992 0.0540457 +0.01682 1.59421 0.136619 +0.0168925 1.6971 0.0573565 +0.016965 1.4613 0.0582082 +0.0170375 1.63252 0.0971361 +0.01711 1.60514 0.0809328 +0.0171825 1.65192 0.0193512 +0.017255 1.62629 0.0538119 +0.0173275 1.71125 0.129764 +0.0174 1.62849 0.0869574 +0.0174725 1.60748 0.0981298 +0.017545 1.60024 0.141801 +0.0176175 1.4942 0.00614982 +0.01769 1.55327 0.0064504 +0.0177625 1.53992 0.129113 +0.017835 1.53069 0.161235 +0.0179075 1.5235 0.0344899 +0.01798 1.66416 0.0747454 +0.0180525 1.61976 0.102656 +0.018125 1.63242 0.130603 +0.0181975 1.50129 0.118888 +0.01827 1.61346 0.0669131 +0.0183425 1.49412 0.0148506 +0.018415 1.6138 0.0966435 +0.0184875 1.57628 0.125652 +0.01856 1.50462 0.06994 +0.0186325 1.56851 0.0570559 +0.018705 1.5189 -0.0186624 +0.0187775 1.5369 -0.0335964 +0.01885 1.49697 0.0746411 +0.0189225 1.50616 0.0480879 +0.018995 1.48331 0.0670091 +0.0190675 1.46847 0.00886775 +0.01914 1.389 0.0690424 +0.0192125 1.50718 0.0989147 +0.019285 1.44166 0.164675 +0.0193575 1.39767 0.081342 +0.01943 1.53526 0.00495993 +0.0195025 1.4865 0.0546093 +0.019575 1.53572 0.128219 +0.0196475 1.56009 0.1312 +0.01972 1.49926 0.0471444 +0.0197925 1.55371 0.000480127 +0.019865 1.50914 -0.0186039 +0.0199375 1.50519 0.0664622 +0.02001 1.45005 0.204054 +0.0200825 1.56494 0.0555612 +0.020155 1.37792 0.0736641 +0.0202275 1.41963 0.0781857 +0.0203 1.46707 0.0127881 +0.0203725 1.36235 0.00468855 +0.020445 1.39729 0.0997079 +0.0205175 1.41287 0.103553 +0.02059 1.41526 0.0806239 +0.0206625 1.42845 -0.0268078 +0.020735 1.47998 0.069176 +0.0208075 1.4111 0.0432533 +0.02088 1.43716 0.101804 +0.0209525 1.45909 -0.0270416 +0.021025 1.3992 0.0532775 +0.0210975 1.42915 0.103119 +0.02117 1.48396 0.158292 +0.0212425 1.37289 0.0975703 +0.021315 1.34588 0.0788829 +0.0213875 1.32173 0.0448147 +0.02146 1.39739 -0.0495701 +0.0215325 1.46371 0.163891 +0.021605 1.48707 0.0506222 +0.0216775 1.38503 -0.00593271 +0.02175 1.46841 0.0695643 +0.0218225 1.34722 0.0884479 +0.021895 1.31006 0.0512359 +0.0219675 1.43957 0.0622246 +0.02204 1.27546 0.0921804 +0.0221125 1.36217 0.0973073 +0.022185 1.29319 -0.000997836 +0.0222575 1.41507 0.159256 +0.02233 1.32742 -0.0169798 +0.0224025 1.31968 0.135634 +0.022475 1.3344 0.0813128 +0.0225475 1.3756 -0.111527 +0.02262 1.33412 0.0290582 +0.0226925 1.31476 -0.0453575 +0.022765 1.3156 0.055102 +0.0228375 1.32638 -0.014504 +0.02291 1.33435 -0.0291208 +0.0229825 1.33321 0.101541 +0.023055 1.2488 0.116091 +0.0231275 1.39071 0.111394 +0.0232 1.31833 0.0755888 +0.0232725 1.30274 0.193947 +0.023345 1.25119 0.0296302 +0.0234175 1.1604 0.0190172 +0.02349 1.29876 0.00840015 +0.0235625 1.2589 0.0550393 +0.023635 1.18572 0.023664 +0.0237075 1.33031 0.0475494 +0.02378 1.23247 0.10678 +0.0238525 1.2975 0.12882 +0.023925 1.27414 0.00632099 +0.0239975 1.2673 0.0489981 +0.02407 1.246 0.0241108 +0.0241425 1.36927 0.108956 +0.024215 1.24106 0.0847321 +0.0242875 1.28296 -0.0239646 +0.02436 1.26993 0.0759687 +0.0244325 1.29732 0.0495575 +0.024505 1.23414 0.0240815 +0.0245775 1.26145 0.0979711 +0.02465 1.32044 0.11412 +0.0247225 1.31865 0.108317 +0.024795 1.2577 0.140778 +0.0248675 1.29834 0.147637 +0.02494 1.19965 0.103854 +0.0250125 1.18299 -0.00357382 +0.025085 1.2946 0.0768872 +0.0251575 1.27593 0.088164 +0.02523 1.27494 0.138181 +0.0253025 1.20473 0.0646085 +0.025375 1.2154 -0.0386023 +0.0254475 1.18682 0.0293421 +0.02552 1.27672 0.0527222 +0.0255925 1.26765 0.0646085 +0.025665 1.32592 0.083609 +0.0257375 1.23319 0.098756 +0.02581 1.09386 0.0451529 +0.0258825 1.36168 0.0361098 +0.025955 1.23744 0.134569 +0.0260275 1.19606 0.0349867 +0.0261 1.17514 -0.00924768 +0.0261725 1.19642 0.0583293 +0.026245 1.22579 0.129918 +0.0263175 1.15998 0.068913 +0.02639 1.14591 0.00159903 +0.0264625 1.05944 0.170617 +0.026535 1.18579 0.0721778 +0.0266075 1.15682 0.00237141 +0.02668 1.23593 0.167523 +0.0267525 1.01815 -0.0083918 +0.026825 1.20759 -0.0667127 +0.0268975 1.15303 0.123886 +0.02697 1.20228 0.0189964 +0.0270425 1.17648 0.185551 +0.027115 1.28838 0.0330912 +0.0271875 1.18277 0.00165331 +0.02726 1.16031 0.0238937 +0.0273325 1.19317 0.0777014 +0.027405 1.07033 0.241705 +0.0274775 1.13853 0.0564463 +0.02755 1.13912 0.146197 +0.0276225 1.10781 0.0981089 +0.027695 1.06343 0.123213 +0.0277675 1.14012 0.119009 +0.02784 1.09065 0.0691134 +0.0279125 1.19096 0.0945392 +0.027985 1.2347 -0.00740649 +0.0280575 1.02276 0.091671 +0.02813 1.13388 0.00144456 +0.0282025 1.10993 0.0190214 +0.028275 1.04301 0.00760271 +0.0283475 1.11473 -0.00116901 +0.02842 1.13787 0.0540123 +0.0284925 1.16387 0.0965975 +0.028565 1.04153 0.0641033 +0.0286375 1.09616 -0.0827072 +0.02871 1.10088 0.0397546 +0.0287825 0.996424 -0.0204284 +0.028855 1.06804 0.0987769 +0.0289275 1.07747 -0.000567802 +0.029 1.05401 0.0860222 +0.0290725 1.0059 0.112438 +0.029145 1.11671 0.0242819 +0.0292175 1.24099 0.0745785 +0.02929 0.970685 0.0563169 +0.0293625 1.15602 0.123714 +0.029435 1.11945 0.0276762 +0.0295075 1.07276 0.0455119 +0.02958 1.03603 0.0776721 +0.0296525 0.949054 -0.0142702 +0.029725 1.03248 0.0996704 +0.0297975 1.09451 -0.00696394 +0.02987 1.06506 0.111732 +0.0299425 1.07878 0.0443805 +0.030015 1.06781 0.0947898 +0.0300875 1.10029 -0.0205077 +0.03016 1.08192 0.0650135 +0.0302325 1.10843 0.0758685 +0.030305 1.1825 0.0694557 +0.0303775 1.02481 0.0941301 +0.03045 1.10991 0.0651262 +0.0305225 1.02103 0.0821812 +0.030595 1.04536 0.171585 +0.0306675 1.08034 0.0225994 +0.03074 1.15399 0.158225 +0.0308125 0.967353 0.04165 +0.030885 1.13204 0.0654393 +0.0309575 1.11161 0.0162158 +0.03103 1.16074 0.16498 +0.0311025 1.06694 -0.0400886 +0.031175 0.976759 0.0842478 +0.0312475 1.04209 0.00421677 +0.03132 1.03925 0.0972405 +0.0313925 1.02324 0.112504 +0.031465 1.0295 0.0105586 +0.0315375 1.05803 0.0539622 +0.03161 1.04553 0.0697772 +0.0316825 1.07041 0.0606047 +0.031755 0.937861 0.0326904 +0.0318275 1.01321 0.0641492 +0.0319 1.05082 0.0189546 +0.0319725 1.11598 -0.0222236 +0.032045 1.02223 0.0249833 +0.0321175 1.11411 0.104476 +0.03219 1.13378 0.0724993 +0.0322625 1.0755 -0.0788036 +0.032335 0.913274 0.10286 +0.0324075 0.887401 0.0645542 +0.03248 1.0759 0.0984137 +0.0325525 0.980158 0.0660489 +0.032625 0.956836 0.108496 +0.0326975 1.12528 -0.040051 +0.03277 1.05264 0.168617 +0.0328425 0.991706 0.00188293 +0.032915 1.01703 0.10987 +0.0329875 0.902811 0.0747663 +0.03306 1.07944 0.0384728 +0.0331325 0.953605 0.0628842 +0.033205 1.02892 0.0592394 +0.0332775 1.02886 0.0983886 +0.03335 0.846724 0.0117861 +0.0334225 0.897689 0.087496 +0.033495 1.02807 0.119978 +0.0335675 1.05573 0.128086 +0.03364 0.995885 0.0296093 +0.0337125 0.952244 0.0308576 +0.033785 1.02089 0.0600619 +0.0338575 0.954219 0.00392035 +0.03393 0.952361 -0.0114187 +0.0340025 0.882654 0.00668839 +0.034075 0.982383 0.0847488 +0.0341475 1.01201 0.0542419 +0.03422 0.969499 0.0972363 +0.0342925 0.961884 0.00927273 +0.034365 0.920033 0.153374 +0.0344375 1.04225 0.0562334 +0.03451 0.936295 0.0603625 +0.0345825 0.986208 -0.00828324 +0.034655 0.913028 0.113285 +0.0347275 0.962606 -0.0087258 +0.0348 0.954853 0.0135814 +0.0348725 0.943597 -0.0380053 +0.034945 1.00842 -0.0096109 +0.0350175 0.929732 0.11192 +0.03509 0.974714 0.00519373 +0.0351625 0.83055 -0.0282232 +0.035235 0.953367 0.0400385 +0.0353075 0.96886 -0.0289621 +0.03538 0.882007 0.126624 +0.0354525 1.01006 -0.0267744 +0.035525 0.855492 0.0292753 +0.0355975 0.961617 -0.0368947 +0.03567 0.943693 0.178081 +0.0357425 0.870146 0.0408025 +0.035815 0.882638 0.112943 +0.0358875 0.865391 0.0255595 +0.03596 0.997468 0.00219606 +0.0360325 0.917816 -0.0348656 +0.036105 0.834721 0.0149508 +0.0361775 0.912748 0.0247078 +0.03625 0.91838 -0.0369239 +0.0363225 0.841518 0.105791 +0.036395 0.848131 -0.0299641 +0.0364675 0.883485 0.137388 +0.03654 0.804895 0.0533234 +0.0366125 0.941547 0.0352873 +0.036685 0.850248 0.0432324 +0.0367575 0.807258 0.0119113 +0.03683 0.876592 -0.0216559 +0.0369025 0.79882 0.0517494 +0.036975 0.898311 0.0588887 +0.0370475 0.877494 0.0505721 +0.03712 0.907304 0.0205202 +0.0371925 0.946829 0.124253 +0.037265 0.882951 -0.0299015 +0.0373375 0.825544 0.0445684 +0.03741 0.861762 0.100643 +0.0374825 0.81362 0.0507182 +0.037555 0.868142 0.129501 +0.0376275 0.868067 0.0904602 +0.0377 1.00871 -0.00516033 +0.0377725 0.8678 0.0859262 +0.037845 0.819929 0.00270959 +0.0379175 0.888136 0.0660823 +0.03799 0.890687 0.0971904 +0.0380625 0.891159 0.070082 +0.038135 0.818146 0.143592 +0.0382075 0.906861 0.0737602 +0.03828 0.952035 -0.00416667 +0.0383525 0.853839 0.00981966 +0.038425 0.910185 0.0673348 +0.0384975 0.882646 -0.0664163 +0.03857 0.888633 0.0962719 +0.0386425 0.844516 0.0182908 +0.038715 0.859078 0.0477289 +0.0387875 0.91056 0.115832 +0.03886 0.822142 0.0143663 +0.0389325 0.79133 0.148952 +0.039005 0.762806 0.0390365 +0.0390775 0.872881 0.0189713 +0.03915 0.900728 0.0331664 +0.0392225 0.862806 0.198944 +0.039295 0.762581 -0.0231756 +0.0393675 0.830763 -0.0130303 +0.03944 0.882638 0.00704744 +0.0395125 0.764025 -0.0237809 +0.039585 0.77324 -0.028052 +0.0396575 0.733665 0.020253 +0.03973 0.734454 -0.0487685 +0.0398025 0.788671 -0.051119 +0.039875 0.779335 0.141087 +0.0399475 0.709708 0.0836758 +0.04002 0.783447 0.050188 +0.0400925 0.788048 0.151699 +0.040165 0.802106 0.032369 +0.0402375 0.781857 -0.00994491 +0.04031 0.701312 -0.0574608 +0.0403825 0.850774 -0.0821854 +0.040455 0.809942 0.0926605 +0.0405275 0.825302 0.0971486 +0.0406 0.768317 0.0247287 +0.0406725 0.848883 0.229522 +0.040745 0.822016 -0.0176854 +0.0408175 0.886729 0.0822355 +0.04089 0.827907 0.0388486 +0.0409625 0.895593 0.0794048 +0.041035 0.753567 0.0390281 +0.0411075 0.702085 0.00452155 +0.04118 0.90064 -0.0584545 +0.0412525 0.864368 0.0456497 +0.041325 0.838988 -0.0122161 +0.0413975 0.732136 0.0479334 +0.04147 0.793088 0.0627005 +0.0415425 0.746306 0.0153975 +0.041615 0.754268 0.0178649 +0.0416875 0.781306 -0.0264237 +0.04176 0.765228 -0.0120533 +0.0418325 0.882751 -0.0240147 +0.041905 0.799217 -0.104781 +0.0419775 0.666146 0.0244698 +0.04205 0.701705 0.0565758 +0.0421225 0.762092 0.057202 +0.042195 0.686324 -0.0095942 +0.0422675 0.684654 0.0104417 +0.04234 0.791422 0.147984 +0.0424125 0.72478 0.0675352 +0.042485 0.747363 0.0590641 +0.0425575 0.688349 0.0971027 +0.04263 0.65641 -0.00401637 +0.0427025 0.743918 0.0884646 +0.042775 0.694528 0.0889823 +0.0428475 0.638695 0.00959838 +0.04292 0.833276 0.063953 +0.0429925 0.738725 -0.0189421 +0.043065 0.713958 0.0162408 +0.0431375 0.777849 0.0386565 +0.04321 0.746845 -0.00895543 +0.0432825 0.761516 0.0614397 +0.043355 0.634883 0.111815 +0.0434275 0.762948 -0.00823732 +0.0435 0.702548 0.0524968 +0.0435725 0.737526 0.115515 +0.043645 0.790123 0.0462092 +0.0437175 0.730976 0.0425435 +0.04379 0.740962 0.103829 +0.0438625 0.716793 0.019585 +0.043935 0.719035 0.0492152 +0.0440075 0.691121 0.0192594 +0.04408 0.720396 0.0824776 +0.0441525 0.667211 -0.00215848 +0.044225 0.749116 0.029793 +0.0442975 0.675172 0.0321185 +0.04437 0.701433 -0.0601955 +0.0444425 0.714388 0.0255804 +0.044515 0.693459 0.043057 +0.0445875 0.795864 -0.0012024 +0.04466 0.756844 0.0311081 +0.0447325 0.733439 -0.013907 +0.044805 0.773035 0.068295 +0.0448775 0.695709 -0.00173681 +0.04495 0.705901 0.0770083 +0.0450225 0.604331 -0.076524 +0.045095 0.674162 0.0958752 +0.0451675 0.733021 0.0907943 +0.04524 0.673548 0.0844816 +0.0453125 0.653901 -0.0081413 +0.045385 0.725456 0.0281981 +0.0454575 0.680316 0.096848 +0.04553 0.658698 -0.00312709 +0.0456025 0.696081 0.0160905 +0.045675 0.762602 0.170136 +0.0457475 0.716881 0.0812501 +0.04582 0.719641 -0.012642 +0.0458925 0.713779 -0.00242569 +0.045965 0.637543 0.0441425 +0.0460375 0.673694 0.06288 +0.04611 0.675435 -0.0257724 +0.0461825 0.655349 0.0567678 +0.046255 0.639305 -0.0301186 +0.0463275 0.685117 0.0699442 +0.0464 0.71557 0.054697 +0.0464725 0.67493 0.0309328 +0.046545 0.660672 -0.0540833 +0.0466175 0.633397 0.055102 +0.04669 0.637422 0.035041 +0.0467625 0.575849 0.0158776 +0.046835 0.698544 0.00846277 +0.0469075 0.680416 0.00283901 +0.04698 0.74854 0.0620701 +0.0470525 0.669833 0.110145 +0.047125 0.614923 0.0398423 +0.0471975 0.663616 -0.044272 +0.04727 0.746912 -0.00634604 +0.0473425 0.607938 0.0186958 +0.047415 0.697588 0.0445726 +0.0474875 0.670526 0.0482132 +0.04756 0.681777 0.071706 +0.0476325 0.656669 0.0142661 +0.047705 0.624855 0.0590307 +0.0477775 0.715169 0.101603 +0.04785 0.639956 0.0121493 +0.0479225 0.675223 0.00862143 +0.047995 0.609842 -0.0335505 +0.0480675 0.623903 -0.0398214 +0.04814 0.567315 0.013168 +0.0482125 0.63118 0.0175268 +0.048285 0.670914 0.0233634 +0.0483575 0.628233 0.0203741 +0.04843 0.617432 0.0771169 +0.0485025 0.576942 0.0544924 +0.048575 0.647997 0.121998 +0.0486475 0.589589 0.010805 +0.04872 0.760543 -0.00526054 +0.0487925 0.590741 0.113657 +0.048865 0.6225 0.0111264 +0.0489375 0.724947 0.0887902 +0.04901 0.654443 0.0588219 +0.0490825 0.653696 0.057202 +0.049155 0.642073 0.0146627 +0.0492275 0.67397 0.061377 +0.0493 0.673164 0.00586592 +0.0493725 0.701533 0.0104125 +0.049445 0.690449 0.0426479 +0.0495175 0.704055 -0.0162742 +0.04959 0.492891 -0.0317302 +0.0496625 0.590536 0.020253 +0.049735 0.680011 0.0111223 +0.0498075 0.656414 0.0746369 +0.04988 0.549567 -0.0122286 +0.0499525 0.653233 0.0159987 +0.050025 0.592123 0.00312709 +0.0500975 0.771929 0.085755 +0.05017 0.533673 -0.0157064 +0.0502425 0.640983 0.014216 +0.050315 0.642353 0.0988771 +0.0503875 0.54416 -0.0176645 +0.05046 0.572271 0.00857967 +0.0505325 0.470279 0.0714514 +0.050605 0.586182 0.115485 +0.0506775 0.539543 -0.0229793 +0.05075 0.616647 -0.0190172 +0.0508225 0.571018 -0.00622496 +0.050895 0.626379 0.0228708 +0.0509675 0.590081 0.120867 +0.05104 0.523811 0.0311332 +0.0511125 0.64368 0.0323481 +0.051185 0.584854 0.0356839 +0.0512575 0.612518 -0.00255094 +0.05133 0.753817 0.00528558 +0.0514025 0.568763 0.116817 +0.051475 0.633397 0.0890992 +0.0515475 0.534157 -0.0728249 +0.05162 0.547738 -0.0876839 +0.0516925 0.602965 0.0594482 +0.051765 0.550364 -0.0159945 +0.0518375 0.584854 -0.0215932 +0.05191 0.615048 -0.0512108 +0.0519825 0.677765 0.0685706 +0.052055 0.639246 0.0327906 +0.0521275 0.599275 -0.0758518 +0.0522 0.568175 0.0356631 +0.0522725 0.594173 0.0195391 +0.052345 0.634286 0.0571853 +0.0524175 0.602126 0.0445308 +0.05249 0.562305 -0.0280562 +0.0525625 0.497095 0.090932 +0.052635 0.518872 0.0440382 +0.0527075 0.538737 0.0465181 +0.05278 0.62387 0.0242778 +0.0528525 0.591714 0.0375836 +0.052925 0.519077 -0.0366985 +0.0529975 0.556973 0.133847 +0.05307 0.562351 -0.0115398 +0.0531425 0.590039 -0.00202907 +0.053215 0.518058 -0.0349575 +0.0532875 0.507136 0.0451863 +0.05336 0.567787 0.00288912 +0.0534325 0.631831 0.0671219 +0.053505 0.544862 -0.0472822 +0.0535775 0.436148 0.0349283 +0.05365 0.632491 -0.0447521 +0.0537225 0.512605 0.0221234 +0.053795 0.544607 0.0861516 +0.0538675 0.511641 -0.019393 +0.05394 0.475055 0.0889572 +0.0540125 0.543171 -0.0432866 +0.054085 0.503637 0.0196435 +0.0541575 0.655842 -0.00956081 +0.05423 0.604903 0.0481714 +0.0543025 0.601099 -0.0359094 +0.054375 0.499805 0.0780103 +0.0544475 0.576679 -0.00384937 +0.05452 0.581251 0.0474491 +0.0545925 0.451182 0.0863729 +0.054665 0.524696 0.0583334 +0.0547375 0.508768 -0.0234887 +0.05481 0.577155 0.0516743 +0.0548825 0.555341 0.0179401 +0.054955 0.476533 -0.0256054 +0.0550275 0.541046 -0.0589889 +0.0551 0.476663 0.0127088 +0.0551725 0.595738 0.0522922 +0.055245 0.508105 0.0774551 +0.0553175 0.511624 0.0258893 +0.05539 0.485067 -0.0653684 +0.0554625 0.545985 0.00548599 +0.055535 0.527184 -0.0728166 +0.0556075 0.45375 0.0636942 +0.05568 0.504343 -0.0410906 +0.0557525 0.562167 0.0389947 +0.055825 0.702231 0.0140364 +0.0558975 0.576763 0.0221193 +0.05597 0.440707 0.0534153 +0.0560425 0.516233 0.0289287 +0.056115 0.566492 0.0578742 +0.0561875 0.574918 0.0288619 +0.05626 0.55714 0.0032941 +0.0563325 0.459603 0.0713178 +0.056405 0.53356 0.0236891 +0.0564775 0.526713 0.0674016 +0.05655 0.510555 0.109194 +0.0566225 0.515382 -0.0463177 +0.056695 0.453307 -0.000417503 +0.0567675 0.513524 -0.0172053 +0.05684 0.556694 -0.0800686 +0.0569125 0.481856 0.0112392 +0.056985 0.461328 0.0158651 +0.0570575 0.477543 0.070036 +0.05713 0.397162 0.0542586 +0.0572025 0.468576 0.0286448 +0.057275 0.471857 -0.0422846 +0.0573475 0.499441 0.0902599 +0.05742 0.599659 -0.00355712 +0.0574925 0.432315 0.118784 +0.057565 0.45342 -0.0321101 +0.0576375 0.497183 0.0378967 +0.05771 0.404572 -0.0149341 +0.0577825 0.390014 0.0771837 +0.057855 0.635255 -0.0153223 +0.0579275 0.534549 0.0595651 +0.058 0.541488 -0.0242193 +0.0580725 0.497012 0.109728 +0.058145 0.526491 0.0262734 +0.0582175 0.429109 0.0592394 +0.05829 0.46855 -0.0296009 +0.0583625 0.446736 -0.00243821 +0.058435 0.424132 -0.0825611 +0.0585075 0.509841 0.0209795 +0.05858 0.507232 0.0809203 +0.0586525 0.474721 0.0217978 +0.058725 0.493158 0.0328366 +0.0587975 0.556138 0.0335129 +0.05887 0.469669 0.075163 +0.0589425 0.49436 -0.0436666 +0.059015 0.473172 -0.0706372 +0.0590875 0.47875 0.0892036 +0.05916 0.49897 0.0540081 +0.0592325 0.42192 0.0875043 +0.059305 0.470554 0.0941719 +0.0593775 0.340958 -0.0259353 +0.05945 0.437931 0.0795509 +0.0595225 0.386607 0.0085922 +0.059595 0.469047 0.0995535 +0.0596675 0.505904 0.0293045 +0.05974 0.481318 0.061114 +0.0598125 0.48396 0.0913996 +0.059885 0.516551 0.0262066 +0.0599575 0.432654 0.124675 +0.06003 0.41602 -0.0294339 +0.0601025 0.545939 0.0613896 +0.060175 0.501212 -0.00681781 +0.0602475 0.385434 0.0357549 +0.06032 0.534407 0.000492649 +0.0603925 0.383393 0.0967729 +0.060465 0.492402 -0.0271377 +0.0605375 0.449228 -0.00404142 +0.06061 0.418279 -0.0252965 +0.0606825 0.451604 -0.0384603 +0.060755 0.428362 0.0249332 +0.0608275 0.493839 0.125672 +0.0609 0.380257 -0.029651 +0.0609725 0.406564 0.00791167 +0.061045 0.511595 0.0427272 +0.0611175 0.451554 -0.0272212 +0.06119 0.439267 0.201733 +0.0612625 0.481911 0.0791292 +0.061335 0.395559 -0.0700653 +0.0614075 0.436307 0.046109 +0.06148 0.443546 0.0490691 +0.0615525 0.470425 -0.102551 +0.061625 0.444327 -0.058108 +0.0616975 0.331898 0.0403641 +0.06177 0.52865 -0.0102706 +0.0618425 0.405791 -0.0081914 +0.061915 0.378825 -0.0373331 +0.0619875 0.450953 -0.0274842 +0.06206 0.404105 0.0353708 +0.0621325 0.492553 -0.0158025 +0.062205 0.361553 0.0657274 +0.0622775 0.408781 -0.0212717 +0.06235 0.46061 0.0177105 +0.0624225 0.443876 0.0531564 +0.062495 0.414446 0.101787 +0.0625675 0.524262 0.00921845 +0.06264 0.416672 -0.0258392 +0.0627125 0.507625 0.0417085 +0.062785 0.407992 -0.052764 +0.0628575 0.416759 0.106233 +0.06293 0.381029 -0.030557 +0.0630025 0.450193 -0.0188294 +0.063075 0.451846 -0.125034 +0.0631475 0.384783 0.0659988 +0.06322 0.431126 -0.0630512 +0.0632925 0.428938 -0.0455328 +0.063365 0.559395 0.0599325 +0.0634375 0.379802 0.00833335 +0.06351 0.459962 0.0717687 +0.0635825 0.396414 0.0817011 +0.063655 0.416475 0.0508727 +0.0637275 0.436165 0.0579994 +0.0638 0.460109 0.0585213 +0.0638725 0.436908 0.0816969 +0.063945 0.391822 0.0673014 +0.0640175 0.431518 0.0851538 +0.06409 0.415331 0.0654393 +0.0641625 0.485342 0.11736 +0.064235 0.398648 0.0799308 +0.0643075 0.42612 -0.0237058 +0.06438 0.421135 0.00985306 +0.0644525 0.430888 -0.0268955 +0.064525 0.427852 0.00976121 +0.0645975 0.46992 0.0660781 +0.06467 0.456781 -0.028077 +0.0647425 0.433071 0.0945225 +0.064815 0.486332 0.0246201 +0.0648875 0.37546 0.0526095 +0.06496 0.382866 0.0830872 +0.0650325 0.406593 -0.00339011 +0.065105 0.436687 0.0566175 +0.0651775 0.347692 -0.00266784 +0.06525 0.391964 -0.0274049 +0.0653225 0.39889 0.0237225 +0.065395 0.41278 0.0747413 +0.0654675 0.513808 0.0196351 +0.06554 0.461712 0.0511273 +0.0656125 0.353019 0.0677231 +0.065685 0.396268 0.0290957 +0.0657575 0.301023 -0.00131513 +0.06583 0.390749 0.0496076 +0.0659025 0.382395 -0.0636274 +0.065975 0.452218 0.0801897 +0.0660475 0.327777 0.0431823 +0.06612 0.442828 0.0709838 +0.0661925 0.375285 0.0689547 +0.066265 0.515298 0.0712844 +0.0663375 0.340628 0.0301729 +0.06641 0.501646 0.0682491 +0.0664825 0.370838 0.0527139 +0.066555 0.436566 -0.00598699 +0.0666275 0.415068 0.0735514 +0.0667 0.412046 -0.0542878 +0.0667725 0.313093 -0.0338386 +0.066845 0.306443 0.0972363 +0.0669175 0.38644 -0.0210964 +0.06699 0.350122 0.0238185 +0.0670625 0.295588 0.0147003 +0.067135 0.502948 0.0388945 +0.0672075 0.394327 0.0822772 +0.06728 0.327376 0.0411073 +0.0673525 0.445496 0.0690716 +0.067425 0.378721 -0.0384979 +0.0674975 0.35858 -0.111845 +0.06757 0.334528 0.0397963 +0.0676425 0.44788 0.0232257 +0.067715 0.406935 0.0556656 +0.0677875 0.310046 0.00457165 +0.06786 0.425047 -0.0419924 +0.0679325 0.351111 0.0565632 +0.068005 0.373164 0.050643 +0.0680775 0.358534 0.0424433 +0.06815 0.215227 -0.0497287 +0.0682225 0.442694 0.0987727 +0.068295 0.321636 0.0248289 +0.0683675 0.322429 -0.0466308 +0.06844 0.433697 0.0106421 +0.0685125 0.360171 0.0488144 +0.068585 0.303875 0.056676 +0.0686575 0.379192 0.0693221 +0.06873 0.325598 -0.0832834 +0.0688025 0.396936 0.0891159 +0.068875 0.364526 -0.0408526 +0.0689475 0.373205 0.0885523 +0.06902 0.371122 0.00709336 +0.0690925 0.379814 0.0309369 +0.069165 0.308046 -0.0250501 +0.0692375 0.457754 -0.0440089 +0.06931 0.443818 0.0205077 +0.0693825 0.370842 0.00093938 +0.069455 0.291721 -0.0996912 +0.0695275 0.337238 0.13558 +0.0696 0.325389 0.07786 +0.0696725 0.386862 -0.0326445 +0.069745 0.482303 0.00626671 +0.0698175 0.347851 0.0118738 +0.06989 0.321026 -0.00599533 +0.0699625 0.331497 -0.00290999 +0.070035 0.320128 0.0225952 +0.0701075 0.322909 0.0355169 +0.07018 0.463641 -0.0148297 +0.0702525 0.404944 0.0952073 +0.070325 0.339939 0.0464805 +0.0703975 0.398782 -0.00854627 +0.07047 0.368174 -0.0226913 +0.0705425 0.291792 -0.0194389 +0.070615 0.36114 -0.0244782 +0.0706875 0.25033 0.0090097 +0.07076 0.282098 -0.0273088 +0.0708325 0.357219 -0.00440465 +0.070905 0.434006 0.0469857 +0.0709775 0.390741 0.116087 +0.07105 0.306814 0.00980296 +0.0711225 0.294573 0.00098113 +0.071195 0.367231 -0.00275134 +0.0712675 0.324813 -0.100697 +0.07134 0.266584 -0.0279059 +0.0714125 0.273005 -0.060137 +0.071485 0.332904 0.139951 +0.0715575 0.392189 0.056701 +0.07163 0.262208 0.062951 +0.0717025 0.31491 -0.00719357 +0.071775 0.276691 -0.0431489 +0.0718475 0.299312 0.049712 +0.07192 0.324412 0.0148631 +0.0719925 0.290874 -0.0618029 +0.072065 0.340064 -0.0303316 +0.0721375 0.285488 -0.0895167 +0.07221 0.371231 0.0231839 +0.0722825 0.398431 0.0548431 +0.072355 0.258935 0.0155603 +0.0724275 0.264843 -0.0738186 +0.0725 0.281985 -0.0320684 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/6/data2D.dat b/example_data/bgr/MouseLift/cpmgfastautotest/6/data2D.dat new file mode 100644 index 0000000..3265f9b --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/6/data2D.dat @@ -0,0 +1,6 @@ +2.42031 3.19958 3.06671 3.02342 2.9778 2.98296 2.9508 2.91417 3.01378 2.93244 2.93281 3.0539 2.91865 2.84712 2.9183 2.86934 2.84118 2.91486 2.91079 2.90197 2.8023 2.89865 2.77094 2.74011 2.81621 2.7906 2.81264 2.75325 2.7959 2.6999 2.80659 2.68239 2.61962 2.76985 2.76568 2.8175 2.72005 2.74546 2.65059 2.73184 2.69578 2.69616 2.61819 2.60299 2.60066 2.5473 2.56835 2.65584 2.53979 2.63958 2.55986 2.7124 2.52337 2.56466 2.58486 2.50757 2.51615 2.41703 2.42447 2.48064 2.508 2.57298 2.49965 2.56024 2.45451 2.48057 2.55787 2.3263 2.50452 2.48715 2.5036 2.45728 2.48674 2.38234 2.37164 2.35032 2.43092 2.38891 2.38664 2.34427 2.27033 2.25312 2.44512 2.25626 2.3225 2.34658 2.34404 2.40511 2.38571 2.33737 2.38331 2.25727 2.34944 2.25716 2.2471 2.20893 2.26419 2.42632 2.18422 2.18151 2.25195 2.2479 2.18476 2.16698 2.26357 2.17006 2.21685 2.18226 2.18134 2.26433 2.18678 2.16764 2.1099 2.06422 2.18613 2.08145 2.19235 2.07947 2.23803 2.0806 2.13171 2.175 2.206 2.13626 2.12088 2.16247 2.10559 2.01409 2.01657 2.01859 2.02173 2.04298 2.06862 1.98841 2.0379 2.05557 2.02175 1.99399 2.02165 2.01005 1.93618 1.97218 2.01395 1.95558 1.92816 1.9833 1.98082 1.98914 2.00261 1.82638 1.9632 1.95409 1.90652 1.92997 1.96563 1.99978 1.95159 1.82672 1.96942 1.89025 1.88189 1.93006 1.81239 1.88416 1.94345 1.87349 1.90143 1.82541 1.87584 1.89127 1.89181 1.83966 1.95599 1.73211 1.77887 1.8082 1.88764 1.80605 1.81587 1.84065 1.84314 1.73667 1.85705 1.88711 1.78235 1.76111 1.76833 1.77208 1.78511 1.87242 1.81053 1.76569 1.79498 1.78466 1.78715 1.82679 1.69751 1.77746 1.70117 1.70601 1.71426 1.67021 1.75745 1.69736 1.76678 1.71982 1.64703 1.64635 1.76996 1.78488 1.78261 1.67116 1.71673 1.69124 1.66449 1.65806 1.66469 1.67726 1.69926 1.51624 1.58547 1.62698 1.67276 1.66083 1.62826 1.57433 1.64749 1.58131 1.63747 1.7085 1.66992 1.59421 1.6971 1.4613 1.63252 1.60514 1.65192 1.62629 1.71125 1.62849 1.60748 1.60024 1.4942 1.55327 1.53992 1.53069 1.5235 1.66416 1.61976 1.63242 1.50129 1.61346 1.49412 1.6138 1.57628 1.50462 1.56851 1.5189 1.5369 1.49697 1.50616 1.48331 1.46847 1.389 1.50718 1.44166 1.39767 1.53526 1.4865 1.53572 1.56009 1.49926 1.55371 1.50914 1.50519 1.45005 1.56494 1.37792 1.41963 1.46707 1.36235 1.39729 1.41287 1.41526 1.42845 1.47998 1.4111 1.43716 1.45909 1.3992 1.42915 1.48396 1.37289 1.34588 1.32173 1.39739 1.46371 1.48707 1.38503 1.46841 1.34722 1.31006 1.43957 1.27546 1.36217 1.29319 1.41507 1.32742 1.31968 1.3344 1.3756 1.33412 1.31476 1.3156 1.32638 1.33435 1.33321 1.2488 1.39071 1.31833 1.30274 1.25119 1.1604 1.29876 1.2589 1.18572 1.33031 1.23247 1.2975 1.27414 1.2673 1.246 1.36927 1.24106 1.28296 1.26993 1.29732 1.23414 1.26145 1.32044 1.31865 1.2577 1.29834 1.19965 1.18299 1.2946 1.27593 1.27494 1.20473 1.2154 1.18682 1.27672 1.26765 1.32592 1.23319 1.09386 1.36168 1.23744 1.19606 1.17514 1.19642 1.22579 1.15998 1.14591 1.05944 1.18579 1.15682 1.23593 1.01815 1.20759 1.15303 1.20228 1.17648 1.28838 1.18277 1.16031 1.19317 1.07033 1.13853 1.13912 1.10781 1.06343 1.14012 1.09065 1.19096 1.2347 1.02276 1.13388 1.10993 1.04301 1.11473 1.13787 1.16387 1.04153 1.09616 1.10088 0.996424 1.06804 1.07747 1.05401 1.0059 1.11671 1.24099 0.970685 1.15602 1.11945 1.07276 1.03603 0.949054 1.03248 1.09451 1.06506 1.07878 1.06781 1.10029 1.08192 1.10843 1.1825 1.02481 1.10991 1.02103 1.04536 1.08034 1.15399 0.967353 1.13204 1.11161 1.16074 1.06694 0.976759 1.04209 1.03925 1.02324 1.0295 1.05803 1.04553 1.07041 0.937861 1.01321 1.05082 1.11598 1.02223 1.11411 1.13378 1.0755 0.913274 0.887401 1.0759 0.980158 0.956836 1.12528 1.05264 0.991706 1.01703 0.902811 1.07944 0.953605 1.02892 1.02886 0.846724 0.897689 1.02807 1.05573 0.995885 0.952244 1.02089 0.954219 0.952361 0.882654 0.982383 1.01201 0.969499 0.961884 0.920033 1.04225 0.936295 0.986208 0.913028 0.962606 0.954853 0.943597 1.00842 0.929732 0.974714 0.83055 0.953367 0.96886 0.882007 1.01006 0.855492 0.961617 0.943693 0.870146 0.882638 0.865391 0.997468 0.917816 0.834721 0.912748 0.91838 0.841518 0.848131 0.883485 0.804895 0.941547 0.850248 0.807258 0.876592 0.79882 0.898311 0.877494 0.907304 0.946829 0.882951 0.825544 0.861762 0.81362 0.868142 0.868067 1.00871 0.8678 0.819929 0.888136 0.890687 0.891159 0.818146 0.906861 0.952035 0.853839 0.910185 0.882646 0.888633 0.844516 0.859078 0.91056 0.822142 0.79133 0.762806 0.872881 0.900728 0.862806 0.762581 0.830763 0.882638 0.764025 0.77324 0.733665 0.734454 0.788671 0.779335 0.709708 0.783447 0.788048 0.802106 0.781857 0.701312 0.850774 0.809942 0.825302 0.768317 0.848883 0.822016 0.886729 0.827907 0.895593 0.753567 0.702085 0.90064 0.864368 0.838988 0.732136 0.793088 0.746306 0.754268 0.781306 0.765228 0.882751 0.799217 0.666146 0.701705 0.762092 0.686324 0.684654 0.791422 0.72478 0.747363 0.688349 0.65641 0.743918 0.694528 0.638695 0.833276 0.738725 0.713958 0.777849 0.746845 0.761516 0.634883 0.762948 0.702548 0.737526 0.790123 0.730976 0.740962 0.716793 0.719035 0.691121 0.720396 0.667211 0.749116 0.675172 0.701433 0.714388 0.693459 0.795864 0.756844 0.733439 0.773035 0.695709 0.705901 0.604331 0.674162 0.733021 0.673548 0.653901 0.725456 0.680316 0.658698 0.696081 0.762602 0.716881 0.719641 0.713779 0.637543 0.673694 0.675435 0.655349 0.639305 0.685117 0.71557 0.67493 0.660672 0.633397 0.637422 0.575849 0.698544 0.680416 0.74854 0.669833 0.614923 0.663616 0.746912 0.607938 0.697588 0.670526 0.681777 0.656669 0.624855 0.715169 0.639956 0.675223 0.609842 0.623903 0.567315 0.63118 0.670914 0.628233 0.617432 0.576942 0.647997 0.589589 0.760543 0.590741 0.6225 0.724947 0.654443 0.653696 0.642073 0.67397 0.673164 0.701533 0.690449 0.704055 0.492891 0.590536 0.680011 0.656414 0.549567 0.653233 0.592123 0.771929 0.533673 0.640983 0.642353 0.54416 0.572271 0.470279 0.586182 0.539543 0.616647 0.571018 0.626379 0.590081 0.523811 0.64368 0.584854 0.612518 0.753817 0.568763 0.633397 0.534157 0.547738 0.602965 0.550364 0.584854 0.615048 0.677765 0.639246 0.599275 0.568175 0.594173 0.634286 0.602126 0.562305 0.497095 0.518872 0.538737 0.62387 0.591714 0.519077 0.556973 0.562351 0.590039 0.518058 0.507136 0.567787 0.631831 0.544862 0.436148 0.632491 0.512605 0.544607 0.511641 0.475055 0.543171 0.503637 0.655842 0.604903 0.601099 0.499805 0.576679 0.581251 0.451182 0.524696 0.508768 0.577155 0.555341 0.476533 0.541046 0.476663 0.595738 0.508105 0.511624 0.485067 0.545985 0.527184 0.45375 0.504343 0.562167 0.702231 0.576763 0.440707 0.516233 0.566492 0.574918 0.55714 0.459603 0.53356 0.526713 0.510555 0.515382 0.453307 0.513524 0.556694 0.481856 0.461328 0.477543 0.397162 0.468576 0.471857 0.499441 0.599659 0.432315 0.45342 0.497183 0.404572 0.390014 0.635255 0.534549 0.541488 0.497012 0.526491 0.429109 0.46855 0.446736 0.424132 0.509841 0.507232 0.474721 0.493158 0.556138 0.469669 0.49436 0.473172 0.47875 0.49897 0.42192 0.470554 0.340958 0.437931 0.386607 0.469047 0.505904 0.481318 0.48396 0.516551 0.432654 0.41602 0.545939 0.501212 0.385434 0.534407 0.383393 0.492402 0.449228 0.418279 0.451604 0.428362 0.493839 0.380257 0.406564 0.511595 0.451554 0.439267 0.481911 0.395559 0.436307 0.443546 0.470425 0.444327 0.331898 0.52865 0.405791 0.378825 0.450953 0.404105 0.492553 0.361553 0.408781 0.46061 0.443876 0.414446 0.524262 0.416672 0.507625 0.407992 0.416759 0.381029 0.450193 0.451846 0.384783 0.431126 0.428938 0.559395 0.379802 0.459962 0.396414 0.416475 0.436165 0.460109 0.436908 0.391822 0.431518 0.415331 0.485342 0.398648 0.42612 0.421135 0.430888 0.427852 0.46992 0.456781 0.433071 0.486332 0.37546 0.382866 0.406593 0.436687 0.347692 0.391964 0.39889 0.41278 0.513808 0.461712 0.353019 0.396268 0.301023 0.390749 0.382395 0.452218 0.327777 0.442828 0.375285 0.515298 0.340628 0.501646 0.370838 0.436566 0.415068 0.412046 0.313093 0.306443 0.38644 0.350122 0.295588 0.502948 0.394327 0.327376 0.445496 0.378721 0.35858 0.334528 0.44788 0.406935 0.310046 0.425047 0.351111 0.373164 0.358534 0.215227 0.442694 0.321636 0.322429 0.433697 0.360171 0.303875 0.379192 0.325598 0.396936 0.364526 0.373205 0.371122 0.379814 0.308046 0.457754 0.443818 0.370842 0.291721 0.337238 0.325389 0.386862 0.482303 0.347851 0.321026 0.331497 0.320128 0.322909 0.463641 0.404944 0.339939 0.398782 0.368174 0.291792 0.36114 0.25033 0.282098 0.357219 0.434006 0.390741 0.306814 0.294573 0.367231 0.324813 0.266584 0.273005 0.332904 0.392189 0.262208 0.31491 0.276691 0.299312 0.324412 0.290874 0.340064 0.285488 0.371231 0.398431 0.258935 0.264843 0.281985 +2.38377 3.15904 3.13756 3.03881 2.99932 2.87451 3.02027 3.06601 2.96853 3.04931 3.0003 2.875 2.93327 2.9267 2.90146 2.91258 2.86464 2.93858 2.84593 2.88551 2.76326 2.75354 2.79842 2.73239 2.72875 2.70386 2.76339 2.79647 2.7629 2.82588 2.75639 2.84595 2.73455 2.7142 2.71799 2.60538 2.68518 2.64758 2.71737 2.71746 2.57741 2.65253 2.62858 2.70606 2.63328 2.54337 2.62316 2.66392 2.58214 2.62638 2.6512 2.63522 2.59738 2.60081 2.49351 2.5423 2.53581 2.50029 2.53275 2.59623 2.61958 2.4961 2.43851 2.3981 2.5115 2.46029 2.47726 2.54529 2.46527 2.40325 2.39112 2.37432 2.35994 2.39627 2.43389 2.38903 2.40572 2.48452 2.30687 2.36015 2.38905 2.33717 2.32316 2.41664 2.52812 2.33987 2.30066 2.40395 2.32947 2.29209 2.27502 2.31283 2.23557 2.34813 2.22457 2.31548 2.31282 2.33016 2.25523 2.15152 2.26842 2.28815 2.17584 2.18067 2.25507 2.18773 2.23821 2.23101 2.20142 2.17943 2.18881 2.20125 2.22325 2.22529 2.26248 2.13044 2.23104 2.21893 2.20666 2.09735 2.20623 2.15921 2.12466 2.08138 2.19071 2.1043 2.10182 1.97692 2.03924 2.10781 2.02339 2.0541 2.0599 2.08692 2.10435 2.1228 2.00879 2.01081 1.98621 2.17881 2.01432 2.15287 2.04633 2.04767 1.99389 1.97863 1.99878 1.94512 2.0442 2.0644 2.07761 1.838 1.9773 2.04278 1.7966 1.9886 1.9309 1.8833 1.97126 1.88318 1.90379 1.97162 1.93122 1.89566 1.86131 1.94291 1.93629 1.87312 1.9131 1.85878 1.84591 1.87954 1.89291 1.96587 1.79531 1.88684 1.84588 1.89015 1.78713 1.93815 1.79036 1.85636 1.84512 1.88557 1.87543 1.89898 1.81622 1.80397 1.80923 1.8502 1.88102 1.72588 1.72289 1.74597 1.70227 1.84171 1.70707 1.79102 1.86718 1.86728 1.87037 1.87948 1.88497 1.81016 1.72299 1.9239 1.77452 1.69772 1.81826 1.79187 1.82286 1.77731 1.68509 1.70337 1.57736 1.76395 1.71816 1.69348 1.75099 1.67732 1.65039 1.71978 1.70511 1.67276 1.70138 1.63119 1.68264 1.6228 1.58138 1.66947 1.67597 1.55708 1.76297 1.66672 1.76285 1.64325 1.76787 1.65799 1.73814 1.61729 1.55072 1.61926 1.54022 1.57762 1.58509 1.61602 1.55604 1.54659 1.60913 1.59871 1.52081 1.5457 1.46774 1.53583 1.56877 1.56049 1.58764 1.55164 1.54172 1.5729 1.55578 1.47355 1.59683 1.64458 1.48843 1.49565 1.52582 1.52351 1.43279 1.42481 1.5249 1.58646 1.47448 1.44562 1.61089 1.54768 1.42048 1.63915 1.47294 1.4241 1.47588 1.42078 1.42662 1.55509 1.39876 1.49097 1.50862 1.39129 1.37753 1.5341 1.56887 1.51293 1.39383 1.44694 1.44037 1.38972 1.47016 1.42093 1.40538 1.44845 1.48876 1.45437 1.37721 1.35004 1.3025 1.40097 1.31834 1.38894 1.41815 1.33757 1.33278 1.43973 1.28514 1.39662 1.38312 1.38789 1.4117 1.52594 1.34975 1.32942 1.29573 1.34103 1.3842 1.32736 1.31035 1.285 1.29632 1.322 1.31966 1.4318 1.26254 1.31439 1.31593 1.36133 1.27271 1.31231 1.3785 1.42605 1.22997 1.31498 1.36989 1.34614 1.24624 1.22822 1.26841 1.29106 1.28876 1.28022 1.3198 1.21276 1.42209 1.26033 1.25869 1.18346 1.23214 1.19879 1.25667 1.35343 1.26218 1.19021 1.19349 1.19923 1.18301 1.25479 1.27389 1.37136 1.36402 1.21537 1.22104 1.17509 1.25174 1.13611 1.19198 1.27937 1.16031 1.17465 1.2773 1.21616 1.07623 1.20584 1.30591 1.11585 1.31566 1.29533 1.2127 1.0698 1.12867 1.27485 1.20851 1.20586 1.15725 1.12299 1.2419 1.13383 1.17749 1.23899 1.16585 1.16732 1.29311 1.17239 1.16975 1.0762 1.19643 1.12511 1.19739 1.14759 1.16201 1.15118 1.13312 1.09751 1.10534 1.07812 1.20768 1.09248 1.17976 1.25123 1.09103 1.08449 1.17678 1.06874 1.11794 1.03757 1.10236 1.10626 1.11691 1.10034 1.06947 1.069 1.22206 1.07459 1.0405 1.12674 1.15085 1.2005 1.11465 1.08899 1.09212 0.970267 1.02182 1.08413 0.984086 1.08979 1.18264 1.04797 1.10737 1.01894 1.12752 1.08019 0.964205 1.05923 0.957638 1.05421 1.04241 1.03911 1.10234 1.10489 1.07296 0.939088 0.98764 1.02083 0.918981 1.07684 1.04978 0.981978 1.00178 0.945013 0.99513 1.1199 1.09848 0.970238 1.10081 0.915504 1.03581 1.03175 0.975407 1.08051 1.07209 1.07008 0.997234 0.940483 1.03667 1.06922 1.0571 0.98837 0.899618 0.977928 0.927887 0.919578 1.02676 1.00652 1.02343 1.00688 0.896787 0.94333 0.919779 0.982509 0.907968 0.994015 1.01233 0.885978 1.00329 0.902619 0.958072 0.914694 0.922184 0.959976 0.763407 0.891489 0.96714 0.935769 0.865963 0.880776 0.856431 1.05033 0.930638 0.900732 0.888424 0.949426 0.882659 0.926384 0.968205 0.822989 0.919511 0.937393 0.951112 0.952131 0.987836 0.921319 0.896495 0.91279 0.829686 0.922902 0.870092 0.921728 0.927344 0.831444 0.798298 0.861387 0.85054 0.846507 0.842048 0.865453 0.849822 0.925352 0.855028 0.784642 0.840178 0.804431 0.907191 0.904769 0.819131 0.920918 0.874726 0.75135 0.772121 0.820396 0.823436 0.762631 0.80856 0.836504 0.781769 0.747926 0.739021 0.764864 0.793735 0.834153 0.781778 0.751266 0.74773 0.80545 0.80522 0.887769 0.711403 0.839222 0.739301 0.82038 0.738775 0.868042 0.832517 0.831899 0.768751 0.967336 0.777669 0.781903 0.832316 0.763032 0.828204 0.696152 0.691146 0.908819 0.751984 0.846849 0.798503 0.778713 0.783619 0.736445 0.796394 0.817758 0.911733 0.756147 0.825018 0.825983 0.70871 0.779193 0.759596 0.744269 0.737873 0.83738 0.734395 0.774546 0.733126 0.802423 0.7619 0.722054 0.691067 0.87873 0.781331 0.714134 0.809141 0.776788 0.806698 0.745492 0.751275 0.634946 0.610789 0.764773 0.78113 0.691288 0.839497 0.780742 0.659812 0.780187 0.737134 0.800862 0.635222 0.821782 0.64902 0.820159 0.774659 0.710247 0.754974 0.696724 0.764238 0.662405 0.744231 0.773002 0.638349 0.901985 0.64667 0.763645 0.751154 0.849922 0.668234 0.682287 0.681364 0.684099 0.673135 0.694131 0.695509 0.702523 0.722467 0.703792 0.574308 0.640006 0.63318 0.689626 0.592415 0.694732 0.76787 0.745071 0.705809 0.621782 0.640106 0.723611 0.647843 0.680637 0.719152 0.707295 0.675118 0.693075 0.585418 0.6183 0.768096 0.740916 0.62465 0.630708 0.676371 0.675515 0.709662 0.594615 0.719954 0.747434 0.683948 0.634445 0.722029 0.596661 0.647701 0.660038 0.69634 0.662647 0.683159 0.631138 0.59153 0.672576 0.707049 0.735343 0.778584 0.657287 0.473556 0.583476 0.568617 0.630203 0.566914 0.656786 0.658852 0.764618 0.623907 0.525327 0.529005 0.576859 0.594164 0.706527 0.585819 0.563023 0.587655 0.576095 0.623456 0.633051 0.707253 0.612159 0.596068 0.630521 0.58252 0.681631 0.598068 0.486779 0.563002 0.645764 0.662447 0.539108 0.59138 0.586232 0.608631 0.548765 0.576195 0.560547 0.614167 0.640486 0.4642 0.512188 0.671114 0.568091 0.664271 0.62174 0.57602 0.531597 0.555186 0.580199 0.602055 0.573594 0.632491 0.567607 0.577656 0.683284 0.640916 0.713215 0.521168 0.532562 0.539743 0.563169 0.631176 0.522362 0.495124 0.543125 0.542357 0.431347 0.540895 0.647601 0.563858 0.614071 0.541947 0.537722 0.480073 0.514129 0.601675 0.48685 0.578504 0.591221 0.603713 0.458272 0.519544 0.586963 0.515361 0.479706 0.56767 0.546891 0.589401 0.447032 0.558259 0.547642 0.602164 0.510171 0.57746 0.533096 0.55785 0.550272 0.477285 0.510413 0.528608 0.498323 0.445325 0.547488 0.595175 0.522588 0.58586 0.463436 0.547187 0.391534 0.477815 0.576375 0.576283 0.519665 0.45952 0.591526 0.528374 0.448256 0.595809 0.509282 0.527034 0.499583 0.544882 0.455245 0.569444 0.47941 0.464405 0.562601 0.518642 0.658343 0.508722 0.447855 0.572563 0.422007 0.559207 0.430182 0.461424 0.459557 0.445822 0.484328 0.460125 0.395838 0.521448 0.453124 0.528228 0.43771 0.48892 0.554815 0.507821 0.433138 0.437922 0.515148 0.560881 0.528884 0.486628 0.527197 0.505445 0.426996 0.46438 0.44287 0.599454 0.488758 0.448665 0.447955 0.339242 0.519962 0.462204 0.498356 0.442035 0.379339 0.48758 0.506982 0.409123 0.458927 0.367473 0.453687 0.406455 0.487551 0.386415 0.525264 0.495425 0.472262 0.443125 0.467899 0.424187 0.440916 0.500393 0.564739 0.529886 0.526153 0.494882 0.428512 0.358639 0.363862 0.401011 0.436319 0.513511 0.450815 0.403758 0.492402 0.480917 0.345316 0.369619 0.40104 0.409591 0.439693 0.496055 0.400205 0.472483 0.542373 0.459837 0.509349 0.466225 0.46688 0.421131 0.372629 0.474592 0.36749 0.441868 0.444043 0.432988 0.415883 0.52645 0.385163 0.464146 0.485889 0.413386 0.437814 0.509866 0.398848 0.447546 0.425247 0.377643 0.313473 0.323285 0.41549 0.411808 0.343062 0.455792 0.397625 0.511967 0.427673 0.42184 0.263837 0.44644 0.412029 0.404572 0.388469 0.419957 0.391171 0.388231 0.435313 0.333296 0.451683 0.328278 0.437442 0.387342 0.328796 0.422312 0.506134 0.405666 0.480057 0.390753 0.505499 0.400193 0.383109 0.405675 0.280353 0.368408 0.353441 0.386428 0.391613 0.339262 0.381054 0.387158 0.390619 0.400999 0.36276 0.448773 0.403608 0.364738 0.44902 0.341826 0.445984 0.444285 0.355963 0.284741 0.385956 0.320959 0.291187 0.272884 0.337288 +2.47994 3.09205 3.01025 2.94896 3.02004 3.08519 2.89702 2.84116 3.04815 2.78014 2.86412 2.9031 2.92735 2.83566 2.88407 2.80168 2.86104 2.78511 2.90803 2.84536 2.90328 2.76477 2.75994 2.73464 2.81301 2.81964 2.76089 2.80861 2.76129 2.77541 2.7822 2.76014 2.70873 2.67153 2.7518 2.72109 2.66483 2.61913 2.6655 2.5942 2.63481 2.68025 2.54413 2.65099 2.59101 2.59823 2.63236 2.59521 2.64482 2.57004 2.60514 2.49533 2.56246 2.49045 2.52071 2.57164 2.45401 2.58062 2.58948 2.5 2.39933 2.51676 2.44783 2.45472 2.49191 2.53004 2.45837 2.53278 2.44316 2.46669 2.52395 2.41805 2.49742 2.45412 2.44825 2.34694 2.30966 2.328 2.38015 2.43025 2.35177 2.28568 2.46026 2.3658 2.26381 2.3875 2.37487 2.3209 2.39442 2.16905 2.27464 2.41172 2.31764 2.3163 2.19017 2.38689 2.32498 2.26067 2.32755 2.21263 2.27504 2.38324 2.13289 2.18225 2.2753 2.2119 2.24049 2.31801 2.26856 2.18366 2.19173 2.13021 2.09558 2.20953 2.25903 2.22613 2.15767 2.09639 2.20071 2.1493 2.13613 2.13317 2.20041 2.15522 2.1374 2.14952 2.07621 2.09621 2.0455 2.1507 2.10904 2.13558 2.09206 2.16761 2.17176 2.06213 2.10352 2.10655 2.00645 2.07771 1.98776 2.15153 2.0544 2.05262 2.14679 2.05561 2.05065 2.04079 2.04742 2.06152 2.04831 1.94503 2.06634 2.00608 2.03043 1.98532 1.94701 1.97145 1.87823 1.96698 1.97912 2.02537 1.93611 1.96213 1.99106 1.93294 1.95391 1.90151 1.95955 1.91937 2.00706 1.84983 1.9316 1.82218 1.88031 1.79401 1.91943 1.9945 1.88931 1.89926 1.69339 1.85409 1.90313 1.77982 1.88525 1.85091 1.96486 1.92028 1.80181 1.92823 1.80976 1.83067 1.82454 1.88769 1.80844 1.84676 1.75465 1.7627 1.77033 1.78548 1.8356 1.69774 1.89524 1.78 1.73495 1.69889 1.74024 1.72305 1.75567 1.80597 1.78363 1.82702 1.71591 1.757 1.80253 1.72344 1.63934 1.82662 1.75337 1.86869 1.71329 1.67406 1.68792 1.63351 1.67299 1.76488 1.66484 1.62831 1.61316 1.65067 1.70547 1.64981 1.66354 1.64207 1.68917 1.67525 1.71944 1.68938 1.54531 1.65672 1.6792 1.52428 1.70898 1.62613 1.61934 1.52765 1.69443 1.62413 1.7144 1.7014 1.57254 1.5442 1.59693 1.6691 1.58752 1.60184 1.62669 1.63541 1.5633 1.6353 1.52471 1.61183 1.58876 1.63929 1.55977 1.53785 1.56964 1.54906 1.48378 1.56095 1.52937 1.60677 1.50422 1.61078 1.53386 1.57731 1.58212 1.51326 1.53629 1.57434 1.56206 1.53162 1.48963 1.46478 1.58623 1.56866 1.5052 1.54854 1.55243 1.45853 1.4837 1.50343 1.4218 1.51875 1.4737 1.29942 1.45347 1.4185 1.43123 1.40222 1.40377 1.40604 1.4011 1.47152 1.36535 1.35471 1.43562 1.48224 1.30595 1.41201 1.48197 1.40462 1.39994 1.34645 1.37689 1.35306 1.40823 1.43872 1.38466 1.40339 1.43826 1.31618 1.36302 1.39188 1.36458 1.37846 1.51153 1.38615 1.39737 1.35186 1.47064 1.376 1.37691 1.31373 1.43607 1.35761 1.34829 1.41156 1.31952 1.35435 1.24801 1.39117 1.31796 1.36473 1.3718 1.39921 1.34441 1.33411 1.29898 1.35307 1.30604 1.35455 1.25299 1.29317 1.28617 1.3446 1.29816 1.27542 1.33023 1.19257 1.29778 1.2491 1.29435 1.25821 1.26089 1.22205 1.28811 1.16242 1.22325 1.30146 1.28716 1.22561 1.33549 1.30275 1.19564 1.24148 1.18413 1.19281 1.28435 1.21965 1.17577 1.21507 1.17294 1.3124 1.1762 1.26983 1.21634 1.25046 1.20155 1.31364 1.22852 1.13181 1.18562 1.25826 1.1318 1.18081 1.13514 1.25948 1.27568 1.23598 1.30272 1.14501 1.20399 1.16735 1.17536 1.06474 1.35854 1.11841 1.18004 1.03422 1.08587 1.1431 1.19076 1.13831 1.22271 1.21261 1.07101 1.12452 1.09705 1.13008 1.18124 1.16267 1.17446 1.21332 1.223 1.14947 1.08615 1.04935 1.03312 1.20216 1.1145 1.03976 1.19065 1.09815 1.14557 1.15267 1.1314 1.19353 0.956799 1.12057 1.01015 1.13935 1.17572 1.03445 1.04214 1.04111 1.10561 0.969123 1.02706 0.98503 1.0702 0.919136 1.16456 0.976513 1.02128 1.04127 1.15114 1.03967 1.06919 1.09498 1.0689 1.04082 0.978212 0.974831 1.00773 0.955387 1.03144 1.08988 1.09879 1.07012 1.07981 1.04805 0.998762 0.97787 0.945601 0.977953 1.03339 1.03404 0.993814 0.970964 0.920873 0.972417 1.00324 0.955792 0.89978 1.0393 0.992065 1.04463 1.00513 0.986621 0.920559 0.936337 0.984972 1.05855 0.986775 0.935569 0.943272 0.973707 1.01706 1.033 1.06263 0.998186 1.01838 1.06543 1.01673 1.02558 0.896971 1.06746 1.01588 1.01324 0.943042 0.989886 1.06784 0.978012 0.910276 0.906327 0.928525 0.995856 0.97911 0.930329 0.950035 0.951705 0.955734 0.969407 0.924567 1.05606 0.924513 0.970242 0.958573 0.895714 0.942253 0.946186 0.865274 0.953722 0.891034 0.943397 1.01884 0.737063 0.987093 0.795943 0.866935 0.839869 0.953075 0.967971 0.893013 0.819628 0.865466 0.78326 0.846419 0.91666 0.873653 0.943318 0.993798 0.838069 0.820747 0.938003 0.829465 0.808994 0.847062 0.880225 0.950048 0.83627 0.856748 0.865503 0.935448 0.945918 0.666993 0.856243 0.817198 0.897751 0.755487 1.00433 0.78098 0.8994 0.797726 0.929811 0.872488 0.850047 0.740507 0.879874 0.843814 0.95178 0.919157 0.763027 0.967478 0.895722 0.80565 0.780325 0.87387 0.898678 0.886875 0.891171 0.782871 0.875523 0.813395 0.847973 0.997129 0.786833 0.912272 0.82739 0.761896 0.755851 0.84768 0.887468 0.811408 0.676671 0.795158 0.729239 0.787911 0.857688 0.826559 0.845092 0.881748 0.850498 0.741706 0.760092 0.723031 0.768275 0.736779 0.876246 0.800958 0.734015 0.718175 0.752427 0.851308 0.751045 0.786191 0.787084 0.708944 0.787489 0.670755 0.795338 0.793822 0.865069 0.675331 0.744177 0.65851 0.74328 0.851563 0.71767 0.734044 0.761846 0.806314 0.693998 0.685167 0.694515 0.71853 0.739731 0.803767 0.764443 0.788817 0.778504 0.806615 0.775093 0.753792 0.742683 0.694348 0.711107 0.684892 0.763278 0.725231 0.764468 0.620279 0.646248 0.807345 0.805592 0.78217 0.699609 0.80454 0.760731 0.710944 0.702527 0.709216 0.75894 0.644795 0.718476 0.730855 0.735873 0.689843 0.802043 0.790933 0.766075 0.779661 0.752427 0.721674 0.746348 0.695221 0.701709 0.658385 0.720597 0.696761 0.645062 0.755149 0.721895 0.632353 0.563637 0.702824 0.686149 0.682437 0.67063 0.671866 0.706034 0.65135 0.576688 0.619674 0.671628 0.675494 0.63766 0.732629 0.795079 0.600506 0.574229 0.632591 0.642908 0.729682 0.678087 0.698072 0.700018 0.493125 0.664217 0.644327 0.563278 0.699696 0.644549 0.605337 0.714889 0.640812 0.592674 0.617799 0.653492 0.614146 0.7475 0.558785 0.674317 0.637902 0.549412 0.563591 0.627878 0.645617 0.647513 0.604731 0.574375 0.543588 0.652172 0.693275 0.588336 0.604827 0.620379 0.552552 0.636524 0.599642 0.571832 0.597283 0.619198 0.499166 0.722296 0.628809 0.672688 0.525798 0.531138 0.661553 0.648728 0.608597 0.612868 0.625414 0.641246 0.645133 0.529652 0.535096 0.560046 0.673912 0.5598 0.654155 0.589747 0.560485 0.651784 0.650131 0.636411 0.597104 0.546352 0.541764 0.57956 0.550786 0.640883 0.614209 0.494582 0.539225 0.658664 0.613612 0.536545 0.579944 0.571636 0.60059 0.603383 0.556376 0.585681 0.573978 0.596239 0.617415 0.582549 0.581656 0.608581 0.682863 0.560998 0.62756 0.627097 0.525226 0.655136 0.525677 0.628416 0.565353 0.568605 0.500364 0.569386 0.531514 0.511729 0.582746 0.541805 0.595183 0.489868 0.589651 0.551976 0.481414 0.452727 0.531877 0.64158 0.631184 0.666881 0.546081 0.538979 0.647981 0.503186 0.640094 0.543538 0.531535 0.543847 0.621373 0.551412 0.594853 0.525268 0.518354 0.552765 0.572888 0.522371 0.560196 0.54606 0.505491 0.589906 0.539213 0.504385 0.397099 0.508944 0.595576 0.51377 0.52015 0.451742 0.456376 0.393484 0.611545 0.414584 0.4622 0.445083 0.491688 0.571277 0.500648 0.595772 0.555095 0.50438 0.505145 0.524183 0.452472 0.444456 0.585071 0.592302 0.516588 0.424462 0.510142 0.523373 0.581026 0.506827 0.450577 0.512012 0.468166 0.495997 0.518496 0.545087 0.460835 0.581351 0.459119 0.484182 0.467348 0.495926 0.387087 0.670125 0.46964 0.545776 0.467219 0.528592 0.448418 0.480149 0.441734 0.46696 0.533936 0.449579 0.498356 0.48839 0.544599 0.34077 0.570258 0.452719 0.447241 0.396435 0.538516 0.51443 0.478424 0.502389 0.579443 0.466885 0.477598 0.41501 0.469415 0.454727 0.467123 0.512255 0.36787 0.454113 0.448352 0.412309 0.34451 0.446598 0.483017 0.419586 0.493676 0.41501 0.454735 0.539113 0.52941 0.355148 0.390707 0.394051 0.521886 0.319828 0.450769 0.481735 0.412472 0.556973 0.549191 0.349521 0.476479 0.39707 0.461344 0.518972 0.355988 0.524504 0.397354 0.441897 0.474863 0.483585 0.41443 0.438106 0.386465 0.433213 0.353725 0.402865 0.508785 0.433509 0.342795 0.374362 0.420275 0.416075 0.440937 0.390294 0.365043 0.445066 0.44578 0.480541 0.450752 0.435614 0.486566 0.400034 0.404898 0.421753 0.526997 0.405658 0.436845 0.404906 0.379531 0.506823 0.416187 0.411294 0.361023 0.38596 0.384123 0.406869 0.333004 0.42321 0.393496 0.353942 0.400005 0.42652 +2.46677 3.18061 3.05844 3.00381 3.05033 2.95931 2.92643 2.98645 2.87279 2.93881 2.84781 2.98965 2.92595 2.82424 2.84511 2.85151 2.92586 2.84464 2.79431 2.85793 2.82644 2.84682 2.84529 2.92421 2.73466 2.73656 2.83311 2.80657 2.79806 2.65501 2.71381 2.79921 2.74162 2.76609 2.55725 2.66561 2.61226 2.72473 2.73915 2.7217 2.60772 2.58263 2.63672 2.63898 2.57482 2.69235 2.50562 2.53534 2.59829 2.48449 2.64067 2.56159 2.60251 2.61482 2.54628 2.51461 2.49256 2.48327 2.55641 2.53016 2.46025 2.62409 2.49385 2.41391 2.40699 2.46556 2.50481 2.46107 2.48056 2.42335 2.37174 2.38711 2.53814 2.37826 2.4658 2.38001 2.41326 2.35703 2.34293 2.40004 2.43358 2.24019 2.4711 2.34939 2.27251 2.37189 2.32353 2.36551 2.35107 2.37795 2.4585 2.32413 2.44261 2.28125 2.33253 2.28268 2.36879 2.28585 2.3459 2.33546 2.29166 2.33311 2.28293 2.29679 2.27645 2.22229 2.27596 2.28502 2.28145 2.20633 2.24709 2.29517 2.24796 2.15758 2.22216 2.2123 2.07634 2.1999 2.26833 2.16123 2.20492 2.27319 2.19465 2.20592 2.20241 2.09295 2.21907 2.19827 2.12768 2.04703 2.14658 2.07669 2.04873 2.07637 2.14323 2.06469 2.09011 2.07054 2.09619 2.1354 2.06064 2.07669 2.06765 2.06204 2.07563 2.0066 2.10084 2.00043 1.98834 2.13554 1.9893 2.03532 1.99574 2.00448 1.95081 2.0097 2.03543 2.01554 2.02039 2.08607 1.99203 1.99969 1.93575 1.8995 2.02376 1.95641 1.94474 1.99435 1.91664 2.07277 1.92611 1.88355 1.90637 1.82774 1.95676 1.94767 1.92878 1.93173 1.94147 1.96697 1.82158 1.90954 1.87487 1.88309 1.93925 1.69504 1.92029 1.90092 1.92827 1.85798 1.81323 1.83522 1.87578 1.85243 2.01543 1.75313 1.88902 1.96402 1.90435 1.77723 1.86376 1.76332 1.87997 1.67235 1.78218 1.8761 1.80751 1.73323 1.68784 1.81634 1.63858 1.75467 1.8014 1.77919 1.69949 1.7117 1.88354 1.74202 1.8225 1.67068 1.9118 1.66048 1.8074 1.68398 1.66943 1.72227 1.7602 1.736 1.78792 1.77401 1.6858 1.56018 1.65682 1.6803 1.74997 1.70108 1.74835 1.6184 1.62482 1.73251 1.67247 1.70475 1.62154 1.66351 1.63149 1.62446 1.65006 1.62077 1.72518 1.53566 1.60788 1.58434 1.63643 1.615 1.59617 1.62695 1.71412 1.62218 1.54147 1.53584 1.62939 1.62972 1.52251 1.54367 1.59079 1.57029 1.49916 1.55078 1.55803 1.58805 1.64776 1.6575 1.45627 1.61735 1.53392 1.49807 1.56598 1.48877 1.53913 1.56123 1.52485 1.46597 1.50005 1.46136 1.52747 1.6022 1.47958 1.52903 1.55503 1.43592 1.57446 1.51665 1.50662 1.46306 1.41487 1.58301 1.48014 1.52013 1.45812 1.48288 1.525 1.45428 1.45388 1.50249 1.34193 1.39761 1.434 1.42152 1.50991 1.48166 1.33717 1.5923 1.40885 1.52983 1.52217 1.44892 1.42003 1.35381 1.4413 1.44873 1.61488 1.37917 1.42802 1.4131 1.41383 1.44042 1.44856 1.35916 1.299 1.35352 1.44805 1.38162 1.33651 1.44136 1.39715 1.42741 1.33516 1.41625 1.34543 1.47689 1.2698 1.31395 1.35069 1.28547 1.38293 1.37886 1.34096 1.35607 1.34539 1.35303 1.25153 1.29486 1.25846 1.32527 1.26206 1.35395 1.30925 1.40335 1.30099 1.27484 1.32674 1.33194 1.33929 1.29312 1.23838 1.27199 1.34197 1.29101 1.22102 1.30588 1.22889 1.39909 1.29359 1.21488 1.26303 1.20089 1.17739 1.16264 1.26427 1.25463 1.298 1.22967 1.24422 1.1844 1.31541 1.24753 1.13957 1.33984 1.14776 1.25488 1.27638 1.19826 1.24146 1.2255 1.19791 1.26567 1.24208 1.1675 1.24535 1.23002 1.18207 1.2326 1.20798 1.17572 1.09839 1.15523 1.15029 1.15383 1.14746 1.20397 1.22842 1.30214 1.21999 1.18687 1.17514 1.14067 1.16632 1.20891 1.13441 1.13347 1.13961 1.19359 1.15595 1.04736 1.0942 1.17864 1.1284 1.16575 1.1326 1.17816 1.12316 1.21863 1.15617 1.10106 1.03822 1.08848 1.08052 1.16846 1.18402 1.16682 1.10954 1.03604 1.06567 1.10342 1.07779 1.13095 1.0565 1.08055 1.06122 1.10646 1.08204 0.991263 1.08806 1.1714 1.06478 1.08829 1.10459 1.11292 1.09073 1.08007 1.13979 0.950478 1.07597 1.10914 1.17122 1.01912 1.0007 1.13038 1.01185 1.08236 1.14163 1.05772 1.07203 1.04096 1.06929 1.0949 1.06207 1.01239 1.01674 1.05578 1.12532 0.995309 1.046 1.04652 1.0554 0.995656 0.986337 0.994537 0.988838 0.956824 1.01983 1.01307 0.979498 0.903191 1.02013 1.00288 0.849363 1.02367 0.981636 0.967829 0.976221 1.00908 1.04287 0.95687 0.998006 0.989022 0.969357 0.934955 0.9492 0.973607 1.00372 0.978864 0.964159 1.00756 1.03068 0.976071 0.929244 0.969236 0.978317 0.913666 0.846553 1.00679 0.956632 0.994783 1.07282 0.944704 1.00818 0.815169 0.94148 0.9261 0.980792 0.939894 0.878888 0.936149 0.923069 0.980379 0.907116 0.954147 1.00044 0.928037 0.850903 0.912214 0.892282 0.880057 0.858978 0.948181 0.863954 1.01383 0.925332 0.850081 0.955166 0.859354 0.993664 0.944307 0.825599 0.899162 0.924655 0.838954 0.873131 0.963888 0.879527 0.922255 0.916192 0.809738 0.948407 0.945476 0.89733 0.883773 0.977265 0.861554 0.851388 0.944161 0.954043 0.772834 0.972396 0.746849 0.78814 0.911959 0.790077 0.868514 0.832988 0.864222 0.89854 0.805057 0.949714 0.778884 0.860773 0.825628 0.793726 0.924417 0.852832 0.875415 0.840073 0.829949 0.880412 0.754824 0.729022 0.785439 0.822714 0.842716 0.933368 0.77726 0.743501 0.829252 0.834111 0.824275 0.822709 0.762865 0.80413 0.824484 0.784324 0.828191 0.781289 0.776104 0.840386 0.867975 0.807471 0.760097 0.794778 0.800427 0.861625 0.906118 0.84867 0.736115 0.820367 0.76547 0.680566 0.803617 0.769444 0.879005 0.695634 0.666154 0.879056 0.716701 0.758848 0.778396 0.931761 0.811065 0.805717 0.803496 0.749776 0.738315 0.806097 0.725974 0.772755 0.777911 0.724204 0.818622 0.770196 0.78217 0.764555 0.670204 0.755972 0.806919 0.802978 0.765345 0.804652 0.778275 0.669649 0.873745 0.828655 0.744106 0.612384 0.75484 0.706878 0.78665 0.708209 0.719837 0.783606 0.789944 0.712343 0.755003 0.730721 0.709395 0.737794 0.693701 0.865804 0.785585 0.801463 0.683063 0.736261 0.736767 0.655462 0.72154 0.607295 0.757308 0.81686 0.719202 0.758435 0.602494 0.715825 0.602727 0.753684 0.678988 0.605667 0.774049 0.583147 0.671653 0.785652 0.729665 0.697743 0.709428 0.636624 0.691209 0.693964 0.662476 0.669858 0.749592 0.730258 0.766171 0.659478 0.709119 0.666697 0.565002 0.710359 0.633765 0.689451 0.761779 0.705696 0.680078 0.702005 0.701316 0.6558 0.6767 0.58113 0.597901 0.630859 0.788733 0.689681 0.592432 0.757487 0.661825 0.654489 0.622767 0.68776 0.694757 0.565044 0.692478 0.654005 0.719799 0.657466 0.738783 0.666534 0.603658 0.554594 0.619202 0.641184 0.625698 0.679844 0.688453 0.584946 0.671002 0.647091 0.724947 0.585013 0.705404 0.608898 0.641647 0.621611 0.518108 0.561077 0.663044 0.55628 0.719002 0.678763 0.532683 0.696227 0.609942 0.610451 0.541496 0.542674 0.610017 0.71628 0.612793 0.70659 0.663474 0.576016 0.567528 0.61423 0.641163 0.537756 0.644582 0.492369 0.516851 0.656589 0.594503 0.629402 0.577001 0.579873 0.580625 0.594277 0.481852 0.624822 0.551224 0.443801 0.498252 0.586942 0.497417 0.510196 0.525849 0.662656 0.606059 0.610635 0.639063 0.594849 0.574124 0.583339 0.532094 0.616718 0.498648 0.560906 0.545162 0.619035 0.592248 0.569519 0.570459 0.660614 0.567757 0.558839 0.678132 0.598477 0.575965 0.509349 0.715349 0.535188 0.53738 0.562802 0.593713 0.526299 0.584249 0.570717 0.56982 0.590653 0.598143 0.492114 0.497934 0.533126 0.510079 0.51653 0.549943 0.615996 0.628458 0.500072 0.562104 0.632408 0.576688 0.534904 0.553383 0.551621 0.503604 0.644707 0.499229 0.403479 0.612844 0.52956 0.526583 0.570363 0.525414 0.591968 0.440223 0.512756 0.494423 0.443112 0.526479 0.473014 0.656343 0.479543 0.517862 0.469127 0.495684 0.552903 0.55021 0.505103 0.59315 0.487271 0.529685 0.400255 0.544173 0.44937 0.534411 0.487564 0.496891 0.543434 0.409958 0.485835 0.470571 0.556819 0.500986 0.489434 0.51893 0.556334 0.558952 0.430554 0.462067 0.466112 0.478717 0.541868 0.487781 0.434111 0.448748 0.405286 0.531126 0.372508 0.461628 0.445642 0.420667 0.42321 0.452126 0.498139 0.480942 0.523176 0.503545 0.504627 0.470233 0.552331 0.578445 0.467887 0.617382 0.457299 0.499654 0.529581 0.455349 0.537033 0.494302 0.493045 0.492394 0.415164 0.485418 0.509228 0.425694 0.550026 0.432403 0.502819 0.481664 0.391438 0.382023 0.464856 0.414 0.457224 0.536795 0.418701 0.471218 0.429614 0.310668 0.409198 0.343805 0.429297 0.520868 0.462388 0.392932 0.440841 0.548298 0.419966 0.518692 0.579247 0.438315 0.472446 0.457386 0.439463 0.419494 0.427694 0.521536 0.413975 0.452798 0.380161 0.459599 0.502857 0.406084 0.450777 0.47083 0.467828 0.548131 0.474546 0.357107 0.453387 0.351136 0.40079 0.402644 0.392586 0.446861 0.382061 0.406372 0.438064 0.474341 0.396427 0.382127 0.283939 0.393651 0.379819 0.501612 0.467181 0.41554 0.47349 0.456163 0.344368 0.419932 0.377005 0.434612 0.362008 0.452702 +2.4692 3.18051 2.99113 3.00242 3.03042 2.89701 2.94935 2.89442 2.93001 2.89361 2.85551 2.89016 2.84402 2.80684 2.87808 2.82454 2.83374 2.89268 2.77458 2.67127 2.8911 2.7409 2.85392 2.84351 2.76478 2.72327 2.64593 2.70421 2.73055 2.77219 2.73015 2.73984 2.68216 2.68495 2.68008 2.71863 2.6168 2.74562 2.60753 2.54654 2.72413 2.63825 2.64512 2.70754 2.60471 2.6021 2.57369 2.63117 2.56283 2.61544 2.69404 2.60506 2.58365 2.56216 2.6783 2.46455 2.51568 2.55699 2.56951 2.41358 2.45411 2.46472 2.44493 2.41165 2.44332 2.54723 2.409 2.48211 2.46422 2.37674 2.54314 2.49836 2.30266 2.37788 2.48257 2.37791 2.44526 2.43317 2.39135 2.29337 2.26756 2.40696 2.43489 2.33954 2.31694 2.29481 2.25071 2.29477 2.3235 2.27922 2.34117 2.35115 2.36059 2.33609 2.28077 2.35053 2.34428 2.37016 2.28056 2.19102 2.20895 2.31201 2.22665 2.19216 2.22248 2.21515 2.16629 2.13513 2.22773 2.17893 2.15867 2.10549 2.21431 2.12365 2.22372 2.17879 2.16255 2.16913 2.17558 2.15347 2.20388 2.14268 2.11027 2.20486 2.16106 2.06156 2.14823 2.11981 2.13828 2.206 2.04688 2.13077 2.12143 2.02211 2.07958 1.98428 2.01485 2.11413 1.98176 2.15986 2.12583 2.07968 1.99284 2.02971 1.89787 2.0323 1.98724 2.0298 2.027 2.04654 1.9399 2.05144 2.02256 2.05916 2.00534 2.02784 1.96983 2.00274 2.02386 1.86994 1.91968 1.95203 1.93044 2.02386 1.81065 1.94311 1.8995 1.95675 1.89752 1.89435 1.86523 1.95034 1.91469 1.83069 1.81943 1.76394 1.8554 1.95021 1.94762 1.91647 1.84178 1.93745 1.73165 1.85248 1.91087 1.87505 1.79468 1.80051 1.84544 1.84934 1.83709 1.81439 1.85492 1.80657 1.71746 1.83332 1.88458 1.77812 1.82201 1.7543 1.80677 1.78548 1.79567 1.76379 1.77874 1.83367 1.70535 1.73663 1.75685 1.8834 1.75634 1.65275 1.79296 1.84553 1.7038 1.64613 1.75766 1.72132 1.75637 1.84273 1.67638 1.79981 1.70034 1.58613 1.71818 1.68204 1.69476 1.65658 1.69003 1.56556 1.78989 1.60829 1.6637 1.61115 1.54544 1.60465 1.68327 1.76382 1.6167 1.63753 1.68355 1.52819 1.59367 1.65995 1.5634 1.67221 1.63549 1.60891 1.57153 1.66069 1.62232 1.5154 1.63484 1.60866 1.6599 1.54153 1.52507 1.6675 1.57168 1.59723 1.47094 1.59894 1.49015 1.62889 1.62216 1.47458 1.67473 1.5509 1.53125 1.5725 1.5108 1.56949 1.58058 1.57967 1.49767 1.51386 1.5613 1.55313 1.42868 1.54151 1.56275 1.50726 1.48802 1.52295 1.4243 1.40063 1.50433 1.45813 1.4139 1.40834 1.50641 1.3753 1.49078 1.35491 1.42931 1.42463 1.47388 1.44224 1.42911 1.444 1.43748 1.37301 1.38219 1.4509 1.46318 1.44794 1.40986 1.45203 1.37772 1.48595 1.39411 1.46036 1.38437 1.42499 1.43417 1.33137 1.42891 1.28318 1.44414 1.29629 1.4449 1.44766 1.40181 1.30883 1.33252 1.31128 1.38674 1.2643 1.30158 1.40045 1.31133 1.37937 1.41036 1.32102 1.37315 1.40338 1.44786 1.25988 1.29346 1.42402 1.24858 1.24596 1.46101 1.21243 1.32939 1.30905 1.29092 1.32495 1.21791 1.22885 1.18198 1.25135 1.29608 1.29447 1.25798 1.38492 1.30769 1.20509 1.23917 1.23574 1.32047 1.19748 1.31674 1.2121 1.25774 1.2673 1.33542 1.28414 1.25374 1.32588 1.20225 1.16731 1.1618 1.06988 1.18377 1.16939 1.20992 1.317 1.25168 1.17484 1.06971 1.22214 1.26188 1.1526 1.26157 1.26148 1.10062 1.17359 1.19799 1.20526 1.18734 1.18096 1.20112 1.21246 1.17456 1.06548 1.09051 1.14007 1.19318 1.10141 1.11142 1.15958 1.19604 1.1724 1.03648 1.11191 1.09171 1.16297 1.04712 1.05118 1.20381 1.19955 1.15008 1.10057 1.02351 1.17431 1.23946 1.10874 1.15316 1.00021 1.12789 1.18278 1.07598 1.11429 1.11018 1.11388 1.05022 1.14318 0.962385 1.19309 1.18717 1.14722 1.05918 1.0687 1.00459 1.15782 1.06042 1.02127 1.0014 0.940971 1.02187 1.13819 1.05756 1.04964 1.04944 1.02708 1.00173 0.944891 1.08622 1.03124 1.08486 1.01322 1.02945 1.01735 1.11253 0.994128 0.960777 0.98513 0.95363 1.08024 1.08702 0.975027 1.01478 1.04213 1.15191 0.953237 1.00309 1.00295 1.01383 1.11408 0.920818 0.947062 1.05295 0.945501 0.900519 0.982939 1.01518 1.07519 0.997614 1.00176 1.05775 0.988136 0.886721 0.927319 1.11617 1.0314 1.03717 0.905087 0.895071 1.03106 0.925912 0.988162 0.883761 1.03657 0.892432 1.00648 0.999572 0.930868 0.912168 0.965524 0.917257 0.965733 0.965758 0.973958 1.04174 1.00161 0.981803 1.00208 0.911199 0.878517 0.974747 0.959153 0.948211 0.956686 0.904014 0.956072 0.842052 0.946883 0.895171 0.868697 0.870426 0.877206 0.928471 0.931465 0.944808 1.02852 0.999818 0.924735 0.949588 0.876976 0.921649 0.929932 0.852607 0.951718 0.88159 0.991577 0.908978 0.899359 0.864944 0.821486 0.80702 0.855588 0.847559 0.972388 0.831381 0.758994 0.849066 0.869244 0.836216 0.891217 0.948031 0.817219 0.832851 0.887021 0.909709 0.954473 0.835944 0.840407 0.799333 0.843129 0.793263 0.826196 0.88394 0.809516 0.86074 0.877953 0.856247 0.845305 0.84434 0.739117 0.759324 0.899146 0.904189 0.889702 0.939977 0.803625 0.830316 0.899964 0.903926 0.866727 0.836558 0.825649 0.804515 0.835068 0.791255 0.770672 0.737706 0.808581 0.825615 0.820167 0.856915 0.815716 0.802072 0.90406 0.798457 0.72903 0.761721 0.796787 0.854289 0.672091 0.790086 0.677239 0.804945 0.73877 0.847426 0.843539 0.714088 0.742941 0.762147 0.857145 0.71706 0.796144 0.86223 0.726696 0.801467 0.758314 0.780813 0.831343 0.744307 0.698306 0.723928 0.795772 0.759429 0.669636 0.852557 0.781251 0.772208 0.728128 0.757796 0.741351 0.741952 0.705362 0.7723 0.726755 0.682303 0.745906 0.727389 0.719311 0.696979 0.768906 0.735902 0.713791 0.677377 0.769002 0.64252 0.903463 0.693526 0.773874 0.681456 0.740741 0.775924 0.709875 0.693593 0.729076 0.726834 0.620513 0.733848 0.725786 0.800912 0.751174 0.725235 0.564037 0.77286 0.713725 0.65919 0.694845 0.639534 0.80173 0.768935 0.721899 0.674759 0.698599 0.730228 0.696206 0.730684 0.747488 0.751888 0.682608 0.576224 0.662543 0.682028 0.628508 0.612113 0.628792 0.683844 0.671924 0.683076 0.647713 0.646507 0.649613 0.652565 0.636148 0.670684 0.74118 0.678483 0.587814 0.595037 0.709149 0.711704 0.631907 0.60985 0.65793 0.684203 0.741889 0.726367 0.638336 0.551086 0.619357 0.705709 0.647354 0.635547 0.687038 0.653153 0.592711 0.691856 0.668405 0.561846 0.564818 0.568517 0.603525 0.585317 0.679084 0.647363 0.692486 0.585702 0.554251 0.639084 0.664564 0.553875 0.624387 0.575277 0.683602 0.614952 0.593609 0.696148 0.715257 0.535184 0.619649 0.603053 0.639747 0.665265 0.557328 0.557737 0.598803 0.617695 0.625794 0.554147 0.543333 0.619866 0.649943 0.632074 0.666551 0.645379 0.593985 0.648632 0.610618 0.569432 0.507925 0.61266 0.580779 0.570738 0.547166 0.487614 0.641284 0.600636 0.529314 0.552214 0.61901 0.524362 0.599579 0.648081 0.551324 0.549767 0.639597 0.56458 0.550569 0.57693 0.522091 0.627122 0.508226 0.521135 0.666167 0.609019 0.593972 0.659504 0.554268 0.496206 0.587948 0.521156 0.616705 0.533405 0.604251 0.637255 0.501053 0.574153 0.580934 0.479894 0.604222 0.532988 0.543976 0.546051 0.524304 0.5432 0.518551 0.558531 0.473381 0.569248 0.507378 0.590991 0.592757 0.521824 0.568722 0.546056 0.466359 0.531664 0.485822 0.534148 0.538048 0.612192 0.569528 0.614785 0.557934 0.451667 0.447922 0.586249 0.496799 0.508522 0.451521 0.618505 0.549963 0.524325 0.555174 0.590378 0.521891 0.55122 0.561361 0.47769 0.569014 0.538657 0.495701 0.506397 0.500176 0.504276 0.528888 0.487184 0.584453 0.560004 0.491459 0.44345 0.646544 0.513161 0.584825 0.439488 0.478445 0.532971 0.458242 0.435063 0.454714 0.553629 0.533794 0.598256 0.516371 0.445354 0.52245 0.439075 0.559833 0.379025 0.48796 0.316822 0.484821 0.557854 0.498874 0.39679 0.573765 0.404906 0.507629 0.446753 0.482178 0.482842 0.515707 0.501003 0.475239 0.575435 0.372613 0.427109 0.353391 0.498268 0.474633 0.568613 0.419941 0.476562 0.369899 0.446565 0.513094 0.425794 0.523569 0.474095 0.383764 0.431677 0.467958 0.485142 0.43224 0.406092 0.484712 0.46177 0.438428 0.479109 0.350389 0.570171 0.4764 0.380771 0.473164 0.511946 0.497546 0.448222 0.520671 0.536737 0.384232 0.419811 0.398448 0.434194 0.477272 0.447604 0.51425 0.299863 0.443897 0.496853 0.521348 0.40567 0.426308 0.362864 0.428211 0.425088 0.459971 0.424592 0.361123 0.404497 0.467791 0.413532 0.518279 0.442932 0.404255 0.452422 0.44955 0.462138 0.457574 0.471953 0.456117 0.48905 0.528708 0.468454 0.459098 0.502456 0.515106 0.438803 0.327059 0.297955 0.517899 0.417628 0.337254 0.282465 0.460973 0.339075 0.373556 0.450427 0.436553 0.471423 0.395212 0.375627 0.378082 0.317252 0.438378 0.281672 0.43242 0.37918 0.440657 0.386695 0.438469 0.486177 0.504234 0.378921 0.503834 0.342415 0.357152 0.399065 0.315807 0.378023 0.327071 0.374483 0.421439 0.349007 0.305102 0.402092 0.386737 0.341358 0.323356 0.411812 0.361361 0.395387 0.408806 +2.2718 3.04452 2.99681 2.86874 2.98016 2.88558 2.76797 2.78448 2.88877 2.84583 2.84607 2.77791 2.86391 2.80866 2.74947 2.82412 2.87226 2.74865 2.72648 2.73041 2.81016 2.72437 2.68968 2.6978 2.60018 2.70617 2.77208 2.67914 2.6309 2.84277 2.704 2.6672 2.65114 2.67854 2.64827 2.63311 2.55075 2.57482 2.63456 2.56795 2.6383 2.60062 2.59073 2.5381 2.55808 2.4946 2.55297 2.58784 2.47073 2.49931 2.38284 2.54085 2.4347 2.57752 2.49159 2.45746 2.47025 2.3781 2.43996 2.55823 2.32467 2.47865 2.36766 2.40698 2.36399 2.46129 2.33674 2.35416 2.27646 2.30342 2.34082 2.41273 2.35097 2.37341 2.36449 2.27609 2.32678 2.2483 2.25499 2.24551 2.27732 2.2232 2.19797 2.33367 2.40109 2.26318 2.26791 2.25815 2.21465 2.28834 2.23954 2.2906 2.25605 2.19844 2.23198 2.24474 2.09125 2.16396 2.06156 2.16825 2.10637 2.26176 2.24955 2.27702 2.22242 2.1052 2.21375 2.08013 2.11319 2.17611 2.10547 2.17671 2.13892 2.15715 2.06528 2.10913 1.99944 2.12757 2.08509 2.07524 2.13124 2.04825 2.10185 2.07147 1.98704 2.15033 2.01536 2.00241 1.98483 1.98476 2.1124 1.9843 2.00348 1.94875 1.91665 1.94639 2.01787 1.937 1.98022 2.03052 1.89197 1.96497 1.87176 1.86667 2.00097 1.81303 2.00968 1.91115 1.92827 1.70572 1.86907 1.81936 2.0416 1.84119 1.79926 1.87917 1.92952 1.80509 1.93592 1.70287 1.94719 1.86022 1.90573 1.78114 1.79361 1.77652 1.83308 1.76964 1.78904 1.79693 1.83385 1.84712 1.81619 1.75151 1.82521 1.88127 1.74183 1.78713 1.72856 1.80146 1.77922 1.80625 1.79349 1.8584 1.61731 1.68765 1.71585 1.76382 1.74533 1.75165 1.76134 1.75733 1.78955 1.79838 1.64128 1.63024 1.69923 1.77865 1.65462 1.57187 1.62807 1.64016 1.67936 1.66345 1.56416 1.66844 1.69095 1.62474 1.64447 1.56667 1.50675 1.64476 1.66863 1.6691 1.5843 1.57504 1.63463 1.59616 1.6243 1.59469 1.64789 1.5944 1.54093 1.70736 1.49804 1.52786 1.60788 1.57071 1.5487 1.54331 1.47721 1.62043 1.62958 1.54586 1.63561 1.65992 1.49094 1.65607 1.47494 1.49099 1.56382 1.46127 1.59133 1.50867 1.45486 1.61858 1.6078 1.49883 1.65795 1.47267 1.50128 1.54194 1.55933 1.48112 1.44792 1.44114 1.45383 1.43466 1.38088 1.45971 1.37422 1.36944 1.58563 1.46439 1.49767 1.44773 1.40374 1.39963 1.44911 1.39702 1.41489 1.40295 1.44827 1.4007 1.35341 1.41216 1.30946 1.3767 1.38119 1.40981 1.43731 1.38847 1.42729 1.33735 1.41336 1.38673 1.25441 1.45426 1.36622 1.36963 1.39601 1.35616 1.3626 1.3189 1.31321 1.28587 1.3322 1.31117 1.382 1.3837 1.29589 1.36412 1.36036 1.25476 1.29994 1.2447 1.36568 1.20915 1.444 1.36346 1.2885 1.3308 1.37152 1.21868 1.26791 1.305 1.27804 1.22715 1.32551 1.25452 1.24367 1.2644 1.25933 1.23402 1.24526 1.16479 1.28425 1.31579 1.19963 1.20475 1.31043 1.2361 1.23971 1.19619 1.16012 1.18574 1.2432 1.26121 1.23444 1.23613 1.19594 1.21642 1.15799 1.24361 1.22969 1.08657 1.16737 1.28543 1.16962 1.22202 1.18709 1.20695 1.18996 1.17911 1.21236 1.18152 1.20505 1.11411 1.10697 1.1844 1.21568 1.2511 1.12647 1.232 1.19489 1.16681 1.11064 1.08909 1.06027 1.23814 0.989635 1.17173 1.13594 1.11907 1.12969 1.07627 1.15903 1.14259 1.06634 1.17883 1.07789 1.13092 1.17106 1.1006 1.18779 1.07553 1.05338 1.058 1.19776 1.14497 1.09556 1.04597 0.974351 1.00319 1.10742 1.09235 1.08854 1.06409 1.04207 1.10663 1.03268 1.13918 1.0005 1.08499 0.956022 1.11002 1.03734 1.08023 0.997196 0.925949 0.981097 1.0722 1.05377 0.955772 1.09916 1.01254 1.08368 1.0021 1.11416 1.0959 0.977524 0.968276 0.956051 1.00532 1.02951 0.939389 1.02671 1.02619 0.92648 1.0861 0.925607 1.06519 0.920067 0.958527 0.915504 1.07541 0.957901 0.999075 0.970246 0.934792 0.978467 0.997852 0.942625 1.02977 0.991727 1.00434 0.945772 1.01517 1.02856 1.06259 1.03437 0.950165 0.904026 0.9178 1.00664 1.00644 1.06863 1.0154 1.07342 1.01691 1.03963 0.903909 0.951146 0.949989 0.960627 0.924455 0.897242 0.872434 0.8743 0.899488 0.936959 0.892182 0.873465 0.963207 0.860919 1.00241 0.904223 1.02399 0.795254 0.911725 0.762526 0.889689 0.857016 0.858352 0.940946 0.90525 0.929411 0.896779 0.83865 0.913959 0.828964 0.933719 0.826037 0.87825 0.922814 0.823181 0.819148 0.820184 0.926805 0.790023 0.843668 0.82878 0.872196 0.845438 0.918288 0.911445 0.938391 0.882366 0.88437 0.748978 0.847551 0.838178 0.854757 0.836024 0.895238 0.967416 0.874496 0.868213 0.776271 0.72792 0.933444 0.869261 0.801162 0.885301 0.764823 0.736211 0.82559 0.915516 0.746348 0.719853 0.858656 0.826003 0.894407 0.892679 0.682959 0.749079 0.867274 0.720046 0.720409 0.793956 0.829156 0.834679 0.69877 0.750594 0.896169 0.794181 0.7347 0.745659 0.780968 0.756794 0.808598 0.711474 0.791756 0.764961 0.826292 0.807095 0.812773 0.753821 0.75826 0.79821 0.774859 0.806594 0.790866 0.69042 0.772901 0.694211 0.737806 0.772233 0.912427 0.790261 0.774446 0.724308 0.796223 0.884871 0.745363 0.761804 0.674187 0.729548 0.812268 0.70284 0.736766 0.636449 0.742336 0.780721 0.701726 0.763395 0.680663 0.712284 0.71896 0.71734 0.670438 0.680587 0.688094 0.668087 0.75201 0.554088 0.672091 0.688069 0.734241 0.715704 0.624696 0.729732 0.740595 0.741342 0.703187 0.649129 0.682683 0.601308 0.715257 0.66577 0.569085 0.614367 0.676993 0.617081 0.683522 0.714731 0.611942 0.66476 0.708606 0.694703 0.641409 0.682307 0.578888 0.664405 0.652861 0.691655 0.767211 0.654936 0.686107 0.780959 0.691438 0.670601 0.652118 0.634541 0.600753 0.602677 0.732633 0.591922 0.661002 0.708009 0.656514 0.713933 0.605061 0.692039 0.629314 0.615829 0.701801 0.692328 0.653588 0.614923 0.554013 0.697484 0.677043 0.545617 0.609508 0.602986 0.586098 0.557666 0.587155 0.609812 0.567119 0.604949 0.614651 0.579222 0.581535 0.630612 0.614351 0.514242 0.553996 0.633184 0.540411 0.517807 0.694945 0.598598 0.562589 0.637497 0.721565 0.634696 0.611929 0.621732 0.59014 0.603892 0.638449 0.616 0.573582 0.639213 0.624667 0.508389 0.531138 0.705491 0.565799 0.579059 0.558881 0.54345 0.627339 0.485547 0.634341 0.635201 0.509821 0.669131 0.569394 0.60522 0.654627 0.582412 0.61005 0.501834 0.507808 0.508518 0.565887 0.528654 0.531096 0.584228 0.647763 0.521916 0.509386 0.524776 0.433923 0.570951 0.564985 0.526896 0.630855 0.458747 0.480249 0.597964 0.51701 0.608414 0.632796 0.474604 0.559591 0.619557 0.496327 0.65388 0.560059 0.622989 0.53677 0.474805 0.508493 0.544202 0.399905 0.572834 0.632675 0.505462 0.517048 0.532053 0.576057 0.554397 0.519958 0.525222 0.515165 0.517958 0.593321 0.49687 0.541066 0.54307 0.492444 0.461716 0.551099 0.555499 0.539647 0.477844 0.501149 0.660835 0.469607 0.494841 0.556293 0.466446 0.560042 0.513461 0.60388 0.392348 0.424199 0.540373 0.495471 0.517119 0.614083 0.455825 0.508944 0.554886 0.493981 0.495993 0.621745 0.576299 0.464835 0.42045 0.469323 0.503971 0.520722 0.533656 0.471732 0.46964 0.452568 0.515352 0.445972 0.36572 0.489083 0.436257 0.519632 0.498552 0.481472 0.542824 0.482161 0.511169 0.476278 0.363862 0.46081 0.343321 0.498677 0.573427 0.550865 0.562104 0.51815 0.505942 0.601617 0.478504 0.501713 0.57301 0.470254 0.371414 0.526516 0.360096 0.358664 0.436829 0.523168 0.35271 0.431009 0.542127 0.453078 0.431635 0.333618 0.461812 0.480337 0.442882 0.463687 0.357132 0.363565 0.463336 0.445538 0.381063 0.511716 0.494385 0.43305 0.487067 0.440002 0.35529 0.453512 0.403445 0.407954 0.461336 0.454489 0.481831 0.353303 0.448381 0.355315 0.4663 0.463081 0.522316 0.429138 0.371072 0.47488 0.407491 0.325744 0.409257 0.349617 0.374733 0.413486 0.383501 0.436052 0.423698 0.406347 0.496043 0.463499 0.41817 0.457065 0.382812 0.511845 0.422496 0.443233 0.404781 0.477026 0.454293 0.458848 0.309261 0.359399 0.384194 0.460317 0.308033 0.481526 0.415002 0.459111 0.365415 0.331025 0.449558 0.385864 0.408368 0.343646 0.463227 0.424896 0.396318 0.449604 0.326345 0.339475 0.440306 0.420262 0.435284 0.453203 0.288628 0.317227 0.361728 0.430157 0.409119 0.411566 0.434666 0.401249 0.467995 0.449041 0.399675 0.469995 0.336336 0.382453 0.43128 0.386198 0.385998 0.394715 0.3911 0.341433 0.290536 0.445909 0.25906 0.390845 0.368275 0.275894 0.338273 0.423235 0.27371 0.382345 0.358205 0.382303 0.293433 0.363286 0.401199 0.312622 0.395467 0.376579 0.419978 0.316229 0.321823 0.334657 0.421323 0.338127 0.412927 0.383292 0.397884 0.345266 0.256129 0.390252 0.330023 0.34072 0.347212 0.391659 0.355428 0.32599 0.351015 0.2664 0.264425 0.242068 0.346373 0.338152 0.247061 0.206797 0.426992 0.23204 0.259862 0.370508 0.370037 0.278791 0.416129 0.461766 0.304522 0.358405 0.366054 0.433969 0.353224 0.254489 0.424166 0.290431 0.392878 0.432349 0.36531 0.420287 0.38943 0.344794 0.242176 0.300748 0.436286 0.264183 0.479677 0.243404 0.348285 0.374274 0.218262 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/6/resultsFit.par b/example_data/bgr/MouseLift/cpmgfastautotest/6/resultsFit.par new file mode 100644 index 0000000..4fc2bde --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/6/resultsFit.par @@ -0,0 +1,6 @@ +depth = 8500 um, E = (2.845 ± 0.007), T2 = (31.5 ± 0.1) ms +depth = 7500 um, E = (2.829 ± 0.008), T2 = (33.4 ± 0.1) ms +depth = 6500 um, E = (2.806 ± 0.007), T2 = (34.9 ± 0.1) ms +depth = 5500 um, E = (2.818 ± 0.007), T2 = (35.3 ± 0.1) ms +depth = 4500 um, E = (2.811 ± 0.007), T2 = (34.0 ± 0.1) ms +depth = 3500 um, E = (2.754 ± 0.008), T2 = (31.5 ± 0.1) ms diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/8/GUI.par b/example_data/bgr/MouseLift/cpmgfastautotest/8/GUI.par new file mode 100644 index 0000000..97f9319 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/8/GUI.par @@ -0,0 +1,20 @@ +maxDepth = 15000 +nrPntsRemFit = 0 +enableLift = "yes" +refSignal = 1 +refSignalCheck = "no" +nrScans = 8 +fitType = "exp" +x_minimum = 0.1 +x_maximum = 100 +alpha = 0.1 +dataDirectory = "C:\Costabel.S\Desktop\NMR-Mouse Data\GnaSamples2022" +repTime = 8000 +expName = "cpmgfastautotest" +nrEchoes = 1000 +probeHead = "PM25-10mm.par" +resolution = 200 +expNr = 8 +incExpNr = "yes" +depthList = "" +depthListValues = ["8500","7500","6500","5500","4500","3500"] diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/8/T2Axis.dat b/example_data/bgr/MouseLift/cpmgfastautotest/8/T2Axis.dat new file mode 100644 index 0000000..e60076d --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/8/T2Axis.dat @@ -0,0 +1,1000 @@ +0.0725 +0.145 +0.2175 +0.29 +0.3625 +0.435 +0.5075 +0.58 +0.6525 +0.725 +0.7975 +0.87 +0.9425 +1.015 +1.0875 +1.16 +1.2325 +1.305 +1.3775 +1.45 +1.5225 +1.595 +1.6675 +1.74 +1.8125 +1.885 +1.9575 +2.03 +2.1025 +2.175 +2.2475 +2.32 +2.3925 +2.465 +2.5375 +2.61 +2.6825 +2.755 +2.8275 +2.9 +2.9725 +3.045 +3.1175 +3.19 +3.2625 +3.335 +3.4075 +3.48 +3.5525 +3.625 +3.6975 +3.77 +3.8425 +3.915 +3.9875 +4.06 +4.1325 +4.205 +4.2775 +4.35 +4.4225 +4.495 +4.5675 +4.64 +4.7125 +4.785 +4.8575 +4.93 +5.0025 +5.075 +5.1475 +5.22 +5.2925 +5.365 +5.4375 +5.51 +5.5825 +5.655 +5.7275 +5.8 +5.8725 +5.945 +6.0175 +6.09 +6.1625 +6.235 +6.3075 +6.38 +6.4525 +6.525 +6.5975 +6.67 +6.7425 +6.815 +6.8875 +6.96 +7.0325 +7.105 +7.1775 +7.25 +7.3225 +7.395 +7.4675 +7.54 +7.6125 +7.685 +7.7575 +7.83 +7.9025 +7.975 +8.0475 +8.12 +8.1925 +8.265 +8.3375 +8.41 +8.4825 +8.555 +8.6275 +8.7 +8.7725 +8.845 +8.9175 +8.99 +9.0625 +9.135 +9.2075 +9.28 +9.3525 +9.425 +9.4975 +9.57 +9.6425 +9.715 +9.7875 +9.86 +9.9325 +10.005 +10.0775 +10.15 +10.2225 +10.295 +10.3675 +10.44 +10.5125 +10.585 +10.6575 +10.73 +10.8025 +10.875 +10.9475 +11.02 +11.0925 +11.165 +11.2375 +11.31 +11.3825 +11.455 +11.5275 +11.6 +11.6725 +11.745 +11.8175 +11.89 +11.9625 +12.035 +12.1075 +12.18 +12.2525 +12.325 +12.3975 +12.47 +12.5425 +12.615 +12.6875 +12.76 +12.8325 +12.905 +12.9775 +13.05 +13.1225 +13.195 +13.2675 +13.34 +13.4125 +13.485 +13.5575 +13.63 +13.7025 +13.775 +13.8475 +13.92 +13.9925 +14.065 +14.1375 +14.21 +14.2825 +14.355 +14.4275 +14.5 +14.5725 +14.645 +14.7175 +14.79 +14.8625 +14.935 +15.0075 +15.08 +15.1525 +15.225 +15.2975 +15.37 +15.4425 +15.515 +15.5875 +15.66 +15.7325 +15.805 +15.8775 +15.95 +16.0225 +16.095 +16.1675 +16.24 +16.3125 +16.385 +16.4575 +16.53 +16.6025 +16.675 +16.7475 +16.82 +16.8925 +16.965 +17.0375 +17.11 +17.1825 +17.255 +17.3275 +17.4 +17.4725 +17.545 +17.6175 +17.69 +17.7625 +17.835 +17.9075 +17.98 +18.0525 +18.125 +18.1975 +18.27 +18.3425 +18.415 +18.4875 +18.56 +18.6325 +18.705 +18.7775 +18.85 +18.9225 +18.995 +19.0675 +19.14 +19.2125 +19.285 +19.3575 +19.43 +19.5025 +19.575 +19.6475 +19.72 +19.7925 +19.865 +19.9375 +20.01 +20.0825 +20.155 +20.2275 +20.3 +20.3725 +20.445 +20.5175 +20.59 +20.6625 +20.735 +20.8075 +20.88 +20.9525 +21.025 +21.0975 +21.17 +21.2425 +21.315 +21.3875 +21.46 +21.5325 +21.605 +21.6775 +21.75 +21.8225 +21.895 +21.9675 +22.04 +22.1125 +22.185 +22.2575 +22.33 +22.4025 +22.475 +22.5475 +22.62 +22.6925 +22.765 +22.8375 +22.91 +22.9825 +23.055 +23.1275 +23.2 +23.2725 +23.345 +23.4175 +23.49 +23.5625 +23.635 +23.7075 +23.78 +23.8525 +23.925 +23.9975 +24.07 +24.1425 +24.215 +24.2875 +24.36 +24.4325 +24.505 +24.5775 +24.65 +24.7225 +24.795 +24.8675 +24.94 +25.0125 +25.085 +25.1575 +25.23 +25.3025 +25.375 +25.4475 +25.52 +25.5925 +25.665 +25.7375 +25.81 +25.8825 +25.955 +26.0275 +26.1 +26.1725 +26.245 +26.3175 +26.39 +26.4625 +26.535 +26.6075 +26.68 +26.7525 +26.825 +26.8975 +26.97 +27.0425 +27.115 +27.1875 +27.26 +27.3325 +27.405 +27.4775 +27.55 +27.6225 +27.695 +27.7675 +27.84 +27.9125 +27.985 +28.0575 +28.13 +28.2025 +28.275 +28.3475 +28.42 +28.4925 +28.565 +28.6375 +28.71 +28.7825 +28.855 +28.9275 +29 +29.0725 +29.145 +29.2175 +29.29 +29.3625 +29.435 +29.5075 +29.58 +29.6525 +29.725 +29.7975 +29.87 +29.9425 +30.015 +30.0875 +30.16 +30.2325 +30.305 +30.3775 +30.45 +30.5225 +30.595 +30.6675 +30.74 +30.8125 +30.885 +30.9575 +31.03 +31.1025 +31.175 +31.2475 +31.32 +31.3925 +31.465 +31.5375 +31.61 +31.6825 +31.755 +31.8275 +31.9 +31.9725 +32.045 +32.1175 +32.19 +32.2625 +32.335 +32.4075 +32.48 +32.5525 +32.625 +32.6975 +32.77 +32.8425 +32.915 +32.9875 +33.06 +33.1325 +33.205 +33.2775 +33.35 +33.4225 +33.495 +33.5675 +33.64 +33.7125 +33.785 +33.8575 +33.93 +34.0025 +34.075 +34.1475 +34.22 +34.2925 +34.365 +34.4375 +34.51 +34.5825 +34.655 +34.7275 +34.8 +34.8725 +34.945 +35.0175 +35.09 +35.1625 +35.235 +35.3075 +35.38 +35.4525 +35.525 +35.5975 +35.67 +35.7425 +35.815 +35.8875 +35.96 +36.0325 +36.105 +36.1775 +36.25 +36.3225 +36.395 +36.4675 +36.54 +36.6125 +36.685 +36.7575 +36.83 +36.9025 +36.975 +37.0475 +37.12 +37.1925 +37.265 +37.3375 +37.41 +37.4825 +37.555 +37.6275 +37.7 +37.7725 +37.845 +37.9175 +37.99 +38.0625 +38.135 +38.2075 +38.28 +38.3525 +38.425 +38.4975 +38.57 +38.6425 +38.715 +38.7875 +38.86 +38.9325 +39.005 +39.0775 +39.15 +39.2225 +39.295 +39.3675 +39.44 +39.5125 +39.585 +39.6575 +39.73 +39.8025 +39.875 +39.9475 +40.02 +40.0925 +40.165 +40.2375 +40.31 +40.3825 +40.455 +40.5275 +40.6 +40.6725 +40.745 +40.8175 +40.89 +40.9625 +41.035 +41.1075 +41.18 +41.2525 +41.325 +41.3975 +41.47 +41.5425 +41.615 +41.6875 +41.76 +41.8325 +41.905 +41.9775 +42.05 +42.1225 +42.195 +42.2675 +42.34 +42.4125 +42.485 +42.5575 +42.63 +42.7025 +42.775 +42.8475 +42.92 +42.9925 +43.065 +43.1375 +43.21 +43.2825 +43.355 +43.4275 +43.5 +43.5725 +43.645 +43.7175 +43.79 +43.8625 +43.935 +44.0075 +44.08 +44.1525 +44.225 +44.2975 +44.37 +44.4425 +44.515 +44.5875 +44.66 +44.7325 +44.805 +44.8775 +44.95 +45.0225 +45.095 +45.1675 +45.24 +45.3125 +45.385 +45.4575 +45.53 +45.6025 +45.675 +45.7475 +45.82 +45.8925 +45.965 +46.0375 +46.11 +46.1825 +46.255 +46.3275 +46.4 +46.4725 +46.545 +46.6175 +46.69 +46.7625 +46.835 +46.9075 +46.98 +47.0525 +47.125 +47.1975 +47.27 +47.3425 +47.415 +47.4875 +47.56 +47.6325 +47.705 +47.7775 +47.85 +47.9225 +47.995 +48.0675 +48.14 +48.2125 +48.285 +48.3575 +48.43 +48.5025 +48.575 +48.6475 +48.72 +48.7925 +48.865 +48.9375 +49.01 +49.0825 +49.155 +49.2275 +49.3 +49.3725 +49.445 +49.5175 +49.59 +49.6625 +49.735 +49.8075 +49.88 +49.9525 +50.025 +50.0975 +50.17 +50.2425 +50.315 +50.3875 +50.46 +50.5325 +50.605 +50.6775 +50.75 +50.8225 +50.895 +50.9675 +51.04 +51.1125 +51.185 +51.2575 +51.33 +51.4025 +51.475 +51.5475 +51.62 +51.6925 +51.765 +51.8375 +51.91 +51.9825 +52.055 +52.1275 +52.2 +52.2725 +52.345 +52.4175 +52.49 +52.5625 +52.635 +52.7075 +52.78 +52.8525 +52.925 +52.9975 +53.07 +53.1425 +53.215 +53.2875 +53.36 +53.4325 +53.505 +53.5775 +53.65 +53.7225 +53.795 +53.8675 +53.94 +54.0125 +54.085 +54.1575 +54.23 +54.3025 +54.375 +54.4475 +54.52 +54.5925 +54.665 +54.7375 +54.81 +54.8825 +54.955 +55.0275 +55.1 +55.1725 +55.245 +55.3175 +55.39 +55.4625 +55.535 +55.6075 +55.68 +55.7525 +55.825 +55.8975 +55.97 +56.0425 +56.115 +56.1875 +56.26 +56.3325 +56.405 +56.4775 +56.55 +56.6225 +56.695 +56.7675 +56.84 +56.9125 +56.985 +57.0575 +57.13 +57.2025 +57.275 +57.3475 +57.42 +57.4925 +57.565 +57.6375 +57.71 +57.7825 +57.855 +57.9275 +58 +58.0725 +58.145 +58.2175 +58.29 +58.3625 +58.435 +58.5075 +58.58 +58.6525 +58.725 +58.7975 +58.87 +58.9425 +59.015 +59.0875 +59.16 +59.2325 +59.305 +59.3775 +59.45 +59.5225 +59.595 +59.6675 +59.74 +59.8125 +59.885 +59.9575 +60.03 +60.1025 +60.175 +60.2475 +60.32 +60.3925 +60.465 +60.5375 +60.61 +60.6825 +60.755 +60.8275 +60.9 +60.9725 +61.045 +61.1175 +61.19 +61.2625 +61.335 +61.4075 +61.48 +61.5525 +61.625 +61.6975 +61.77 +61.8425 +61.915 +61.9875 +62.06 +62.1325 +62.205 +62.2775 +62.35 +62.4225 +62.495 +62.5675 +62.64 +62.7125 +62.785 +62.8575 +62.93 +63.0025 +63.075 +63.1475 +63.22 +63.2925 +63.365 +63.4375 +63.51 +63.5825 +63.655 +63.7275 +63.8 +63.8725 +63.945 +64.0175 +64.09 +64.1625 +64.235 +64.3075 +64.38 +64.4525 +64.525 +64.5975 +64.67 +64.7425 +64.815 +64.8875 +64.96 +65.0325 +65.105 +65.1775 +65.25 +65.3225 +65.395 +65.4675 +65.54 +65.6125 +65.685 +65.7575 +65.83 +65.9025 +65.975 +66.0475 +66.12 +66.1925 +66.265 +66.3375 +66.41 +66.4825 +66.555 +66.6275 +66.7 +66.7725 +66.845 +66.9175 +66.99 +67.0625 +67.135 +67.2075 +67.28 +67.3525 +67.425 +67.4975 +67.57 +67.6425 +67.715 +67.7875 +67.86 +67.9325 +68.005 +68.0775 +68.15 +68.2225 +68.295 +68.3675 +68.44 +68.5125 +68.585 +68.6575 +68.73 +68.8025 +68.875 +68.9475 +69.02 +69.0925 +69.165 +69.2375 +69.31 +69.3825 +69.455 +69.5275 +69.6 +69.6725 +69.745 +69.8175 +69.89 +69.9625 +70.035 +70.1075 +70.18 +70.2525 +70.325 +70.3975 +70.47 +70.5425 +70.615 +70.6875 +70.76 +70.8325 +70.905 +70.9775 +71.05 +71.1225 +71.195 +71.2675 +71.34 +71.4125 +71.485 +71.5575 +71.63 +71.7025 +71.775 +71.8475 +71.92 +71.9925 +72.065 +72.1375 +72.21 +72.2825 +72.355 +72.4275 +72.5 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/8/acq.par b/example_data/bgr/MouseLift/cpmgfastautotest/8/acq.par new file mode 100644 index 0000000..b437fdc --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/8/acq.par @@ -0,0 +1,54 @@ +maxDepth = 15000 +nrPntsRemFit = 0 +enableLift = "yes" +refSignal = 1 +refSignalCheck = "no" +nrScans = 8 +fitType = "exp" +x_minimum = 0.1 +x_maximum = 100 +alpha = 0.1 +dataDirectory = "C:\Costabel.S\Desktop\NMR-Mouse Data\GnaSamples2022" +repTime = 8000 +expName = "cpmgfastautotest" +nrEchoes = 1000 +probeHead = "PM25-10mm.par" +resolution = 200 +expNr = 8 +incExpNr = "yes" +depthList = "" +Sensor = "PM25" +Probe = "1H-L" +Spacer = "PM25-10mm.par" +b1Freq = 13.24 +gradient = 300 +echoTime0 = 68 +pulseLength = 12.5 +bestResol = 50 +90Amplitude = -7 +180Amplitude = 0 +echoShift = 0.7 +rxPhase = 2 +last = 0 +accumulate = "yes" +acqTime = 0.0165 +autoPhase = "no" +bandwidth = 2000 +dwellTime = 0.5 +echoTime = 72.5 +experiment = "CPMGFast" +fitMode = "manual" +flatFilter = "no" +normalize = "no" +nrEchoesCut = 0 +nrExp = 1 +nrPnts = 33 +phaseMethod = "maxreal" +position = [198,460] +rxGain = 31 +saveData = "false" +usePhaseCycle = "yes" +windowSize = "small" +bandwidthFile = 0.5 +showFreqDomain = "no" +excecutedBackdoor = "yes" diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/8/acqu.par b/example_data/bgr/MouseLift/cpmgfastautotest/8/acqu.par new file mode 100644 index 0000000..840b835 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/8/acqu.par @@ -0,0 +1,54 @@ +90Amplitude = -7 +180Amplitude = 0 +accumulate = "yes" +acqTime = 0.0165 +alpha = 0.1 +autoPhase = "no" +b1Freq = 13.24 +bandwidth = 2000 +bandwidthFile = 0.5 +bestResol = 50 +dataDirectory = "C:\Costabel.S\Desktop\NMR-Mouse Data\GnaSamples2022" +depthList = "" +dwellTime = 0.5 +echoShift = 0.7 +echoTime = 72.5 +echoTime0 = 68 +enableLift = "yes" +excecutedBackdoor = "yes" +experiment = "CPMGFast" +expName = "cpmgfastautotest" +expNr = 8 +fitMode = "manual" +fitType = "exp" +flatFilter = "no" +gradient = 300 +incExpNr = "yes" +last = 0 +maxDepth = 15000 +normalize = "no" +nrEchoes = 1000 +nrEchoesCut = 0 +nrExp = 1 +nrPnts = 33 +nrPntsRemFit = 0 +nrScans = 8 +phaseMethod = "maxreal" +position = [198,460] +Probe = "1H-L" +probeHead = "PM25-10mm.par" +pulseLength = 12.5 +refSignal = 1 +refSignalCheck = "no" +repTime = 8000 +resolution = 200 +rxGain = 31 +rxPhase = 2 +saveData = "false" +Sensor = "PM25" +showFreqDomain = "no" +Spacer = "PM25-10mm.par" +usePhaseCycle = "yes" +windowSize = "small" +x_maximum = 100 +x_minimum = 0.1 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/8/data-03500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/8/data-03500um.dat new file mode 100644 index 0000000..51801da --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/8/data-03500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 2.49068 0.174128 +0.000145 3.05982 0.174913 +0.0002175 3.02664 0.120433 +0.00029 3.08839 0.186348 +0.0003625 2.96085 0.108183 +0.000435 3.0026 0.186636 +0.0005075 3.0098 0.0434077 +0.00058 2.87628 0.101399 +0.0006525 2.90296 0.0666668 +0.000725 2.92511 0.0859471 +0.0007975 2.86324 0.246594 +0.00087 2.89134 0.179793 +0.0009425 2.92197 0.135697 +0.001015 2.8673 0.100555 +0.0010875 2.95206 0.0738437 +0.00116 2.85683 0.215147 +0.0012325 2.86628 0.108793 +0.001305 2.79626 0.104906 +0.0013775 2.8451 0.197541 +0.00145 2.7927 0.126224 +0.0015225 2.88994 0.255361 +0.001595 2.84778 0.246652 +0.0016675 2.76579 0.111907 +0.00174 2.81747 0.108221 +0.0018125 2.83331 0.14965 +0.001885 2.84755 0.0391951 +0.0019575 2.75753 0.167343 +0.00203 2.75218 0.196406 +0.0021025 2.68886 0.160471 +0.002175 2.78821 0.184256 +0.0022475 2.71483 0.127059 +0.00232 2.73955 0.0652306 +0.0023925 2.69899 0.23558 +0.002465 2.59603 0.144702 +0.0025375 2.61333 0.0653475 +0.00261 2.60877 0.132102 +0.0026825 2.63271 0.153687 +0.002755 2.56066 0.127434 +0.0028275 2.62247 0.178027 +0.0029 2.6392 0.0842478 +0.0029725 2.61688 0.156029 +0.003045 2.68033 0.239479 +0.0031175 2.62533 0.105019 +0.00319 2.50494 0.117594 +0.0032625 2.63186 0.118308 +0.003335 2.55031 0.168763 +0.0034075 2.71003 0.227622 +0.00348 2.59136 0.186882 +0.0035525 2.66015 0.236031 +0.003625 2.69187 0.238431 +0.0036975 2.65795 0.262605 +0.00377 2.6645 0.121539 +0.0038425 2.54963 0.121514 +0.003915 2.55312 0.0979753 +0.0039875 2.39738 0.154989 +0.00406 2.52662 0.206238 +0.0041325 2.56309 0.147165 +0.004205 2.49451 0.0648423 +0.0042775 2.66205 0.132357 +0.00435 2.57794 0.217878 +0.0044225 2.46227 0.110024 +0.004495 2.57941 -0.00515198 +0.0045675 2.48518 0.100188 +0.00464 2.47098 0.164141 +0.0047125 2.52817 0.120241 +0.004785 2.49897 0.134181 +0.0048575 2.35948 0.220007 +0.00493 2.42743 0.139375 +0.0050025 2.44054 0.221059 +0.005075 2.44118 0.146735 +0.0051475 2.43627 0.216959 +0.00522 2.4499 0.149925 +0.0052925 2.37505 0.0938044 +0.005365 2.34671 0.253445 +0.0054375 2.38351 0.253148 +0.00551 2.45655 0.165903 +0.0055825 2.34213 0.185 +0.005655 2.40276 0.218512 +0.0057275 2.33932 0.155194 +0.0058 2.43002 0.168279 +0.0058725 2.39061 0.201048 +0.005945 2.39367 0.0648882 +0.0060175 2.42148 0.158 +0.00609 2.30242 0.146059 +0.0061625 2.35669 0.120917 +0.006235 2.38356 0.0415373 +0.0063075 2.35961 0.0720359 +0.00638 2.32017 0.153374 +0.0064525 2.3207 0.250944 +0.006525 2.333 0.184941 +0.0065975 2.31839 0.170445 +0.00667 2.36084 0.215886 +0.0067425 2.31494 0.0836967 +0.006815 2.20475 0.109315 +0.0068875 2.29935 0.0580996 +0.00696 2.33738 0.20653 +0.0070325 2.27237 0.177455 +0.007105 2.30236 0.200318 +0.0071775 2.27067 0.0378007 +0.00725 2.26657 0.153173 +0.0073225 2.27251 0.170946 +0.007395 2.25239 0.197813 +0.0074675 2.25024 0.137951 +0.00754 2.26283 0.0324733 +0.0076125 2.27998 0.144034 +0.007685 2.2207 0.155983 +0.0077575 2.16437 0.191784 +0.00783 2.24742 0.115389 +0.0079025 2.28918 0.0960381 +0.007975 2.16412 0.123096 +0.0080475 2.12928 0.0842186 +0.00812 2.10226 0.0926354 +0.0081925 2.17508 0.086519 +0.008265 2.14555 0.163569 +0.0083375 2.19188 0.155411 +0.00841 2.19599 0.0896336 +0.0084825 2.22622 0.223017 +0.008555 2.0453 0.157119 +0.0086275 2.10325 0.0645876 +0.0087 2.20151 0.0605796 +0.0087725 2.1461 0.0778809 +0.008845 2.16324 0.149328 +0.0089175 2.16885 0.0718188 +0.00899 2.11672 0.190373 +0.0090625 2.06083 0.0781815 +0.009135 2.19909 0.135137 +0.0092075 2.12133 0.117932 +0.00928 2.13724 0.183931 +0.0093525 2.13306 0.216295 +0.009425 2.11998 0.0878383 +0.0094975 2.10995 0.165352 +0.00957 2.12344 0.0907943 +0.0096425 2.14458 0.114621 +0.009715 2.03453 0.174792 +0.0097875 2.11028 0.172525 +0.00986 2.10433 0.051357 +0.0099325 1.9993 0.0279935 +0.010005 2.01281 0.243458 +0.0100775 2.04488 0.170228 +0.01015 2.11566 0.174491 +0.0102225 2.1002 0.192034 +0.010295 2.01701 0.169406 +0.0103675 1.98818 0.100606 +0.01044 1.96709 0.116771 +0.0105125 1.95452 0.144944 +0.010585 2.03775 0.187538 +0.0106575 1.97883 0.227505 +0.01073 2.05288 0.174925 +0.0108025 2.08251 0.135688 +0.010875 2.07797 0.109732 +0.0109475 2.01176 0.227234 +0.01102 2.02717 0.0144957 +0.0110925 2.05491 0.040218 +0.011165 2.07023 0.152856 +0.0112375 1.93853 0.141016 +0.01131 1.9479 0.192001 +0.0113825 1.99365 0.121464 +0.011455 2.10783 0.0904477 +0.0115275 1.94857 0.0298097 +0.0116 1.97077 0.18004 +0.0116725 2.01729 0.114341 +0.011745 1.94301 0.0370867 +0.0118175 2.00813 0.20099 +0.01189 1.93007 0.178545 +0.0119625 1.88267 0.115076 +0.012035 2.05754 -0.0085922 +0.0121075 2.04823 0.14633 +0.01218 2.03103 0.11422 +0.0122525 1.92708 0.0692595 +0.012325 1.85492 0.139316 +0.0123975 1.9122 0.13072 +0.01247 1.96626 0.106551 +0.0125425 1.89919 0.171084 +0.012615 1.95598 0.0566259 +0.0126875 1.93999 0.152685 +0.01276 1.88206 0.17809 +0.0128325 1.89109 0.149295 +0.012905 1.97217 0.132941 +0.0129775 1.91348 0.0555779 +0.01305 1.8273 0.0741109 +0.0131225 1.78022 0.105503 +0.013195 1.88288 0.1601 +0.0132675 1.9449 0.139563 +0.01334 1.82394 -0.0248915 +0.0134125 1.84538 0.133258 +0.013485 1.83304 0.0207624 +0.0135575 1.83545 0.134874 +0.01363 1.84721 0.177731 +0.0137025 1.83547 0.127309 +0.013775 1.88814 0.0734011 +0.0138475 1.82717 0.106096 +0.01392 1.83117 0.203006 +0.0139925 1.66898 0.102898 +0.014065 1.80074 0.046777 +0.0141375 1.74701 0.0616317 +0.01421 1.84361 0.191784 +0.0142825 1.86557 0.153791 +0.014355 1.87103 0.102317 +0.0144275 1.79097 0.153286 +0.0145 1.74461 0.122119 +0.0145725 1.85267 0.183751 +0.014645 1.72818 0.218496 +0.0147175 1.68599 0.145086 +0.01479 1.74704 0.132862 +0.0148625 1.73895 0.108505 +0.014935 1.80122 0.222796 +0.0150075 1.71319 0.153165 +0.01508 1.75106 0.140677 +0.0151525 1.68775 0.125489 +0.015225 1.78491 0.17217 +0.0152975 1.64908 0.149629 +0.01537 1.77186 0.0302982 +0.0154425 1.7316 0.0184244 +0.015515 1.68543 0.0761441 +0.0155875 1.75352 0.0762944 +0.01566 1.71936 0.109515 +0.0157325 1.71482 0.159402 +0.015805 1.72406 0.0611808 +0.0158775 1.70169 0.100017 +0.01595 1.67842 0.0690215 +0.0160225 1.69936 0.139726 +0.016095 1.61697 0.0831039 +0.0161675 1.72789 0.15367 +0.01624 1.68554 0.0740065 +0.0163125 1.71057 0.0207206 +0.016385 1.72824 0.0675728 +0.0164575 1.67348 0.0296844 +0.01653 1.55493 0.0362267 +0.0166025 1.66525 0.143525 +0.016675 1.70888 0.076929 +0.0167475 1.73842 0.129868 +0.01682 1.59598 0.120324 +0.0168925 1.64885 0.084181 +0.016965 1.56881 0.0887193 +0.0170375 1.57791 -0.00393288 +0.01711 1.56679 0.15023 +0.0171825 1.64247 0.0264488 +0.017255 1.59685 0.0300936 +0.0173275 1.67455 0.12328 +0.0174 1.58211 0.030081 +0.0174725 1.65143 0.106384 +0.017545 1.7039 0.144573 +0.0176175 1.62588 0.0587468 +0.01769 1.6569 0.100614 +0.0177625 1.58668 0.115648 +0.017835 1.70741 0.134628 +0.0179075 1.56981 0.195295 +0.01798 1.4919 0.116755 +0.0180525 1.57475 0.115723 +0.018125 1.61439 0.196314 +0.0181975 1.61599 0.0748123 +0.01827 1.54667 0.189575 +0.0183425 1.65895 0.173902 +0.018415 1.5878 0.0647922 +0.0184875 1.58724 0.0691134 +0.01856 1.60319 0.0778392 +0.0186325 1.55126 0.140506 +0.018705 1.5489 0.0666835 +0.0187775 1.68727 0.11101 +0.01885 1.56996 0.0635564 +0.0189225 1.57525 0.190131 +0.018995 1.52211 0.137834 +0.0190675 1.65237 0.169001 +0.01914 1.48301 0.0325276 +0.0192125 1.48139 0.14884 +0.019285 1.50898 0.135705 +0.0193575 1.5226 0.0959629 +0.01943 1.54369 0.162663 +0.0195025 1.55138 0.0753801 +0.019575 1.60606 0.101094 +0.0196475 1.55156 0.122691 +0.01972 1.44764 0.118938 +0.0197925 1.50938 0.0837844 +0.019865 1.54058 0.146272 +0.0199375 1.48014 0.0392035 +0.02001 1.466 0.0557324 +0.0200825 1.39939 0.0298431 +0.020155 1.56369 0.0744783 +0.0202275 1.36095 0.0790583 +0.0203 1.52945 0.190001 +0.0203725 1.65111 0.0933703 +0.020445 1.46596 0.0674016 +0.0205175 1.49491 0.134653 +0.02059 1.44817 0.0723532 +0.0206625 1.47815 0.142293 +0.020735 1.43227 0.106259 +0.0208075 1.39339 0.0803984 +0.02088 1.443 0.147216 +0.0209525 1.52781 0.116041 +0.021025 1.50917 0.135137 +0.0210975 1.44371 0.157849 +0.02117 1.48817 0.0460881 +0.0212425 1.52822 0.0231756 +0.021315 1.52303 0.152564 +0.0213875 1.39625 -0.0199608 +0.02146 1.43829 0.201871 +0.0215325 1.41132 0.0131555 +0.021605 1.31594 0.148059 +0.0216775 1.43841 0.0977707 +0.02175 1.40903 0.191529 +0.0218225 1.4577 0.108354 +0.021895 1.38471 0.160488 +0.0219675 1.46874 0.060922 +0.02204 1.38497 0.111331 +0.0221125 1.50364 0.0461799 +0.022185 1.36698 0.148781 +0.0222575 1.45409 0.0989356 +0.02233 1.42785 0.1768 +0.0224025 1.37067 0.175167 +0.022475 1.3811 0.0248205 +0.0225475 1.35517 0.0707667 +0.02262 1.289 0.0433326 +0.0226925 1.40223 0.0325735 +0.022765 1.5079 0.187338 +0.0228375 1.36983 0.0772296 +0.02291 1.32111 0.0529936 +0.0229825 1.47873 0.091671 +0.023055 1.43905 0.13181 +0.0231275 1.31966 0.0952365 +0.0232 1.25661 0.0410739 +0.0232725 1.29225 0.0716726 +0.023345 1.37989 0.104885 +0.0234175 1.34771 0.0786783 +0.02349 1.31775 0.0850995 +0.0235625 1.48173 0.0725369 +0.023635 1.29974 0.128357 +0.0237075 1.17413 0.103966 +0.02378 1.31295 0.0806698 +0.0238525 1.32056 0.0670676 +0.023925 1.2659 0.126044 +0.0239975 1.32724 0.0796636 +0.02407 1.24035 0.0960965 +0.0241425 1.38959 0.0401637 +0.024215 1.29512 0.159707 +0.0242875 1.31799 0.0422429 +0.02436 1.34103 0.139053 +0.0244325 1.32383 0.121902 +0.024505 1.26889 0.0345316 +0.0245775 1.30795 0.0323773 +0.02465 1.32122 0.118366 +0.0247225 1.30795 0.0901095 +0.024795 1.32319 0.187935 +0.0248675 1.25429 0.102952 +0.02494 1.25271 0.150222 +0.0250125 1.22777 0.0438002 +0.025085 1.34966 0.0560747 +0.0251575 1.34052 -0.0183451 +0.02523 1.34204 0.0371076 +0.0253025 1.29267 0.100155 +0.025375 1.31095 0.106108 +0.0254475 1.30649 -0.00490565 +0.02552 1.23306 0.0437877 +0.0255925 1.32036 0.142469 +0.025665 1.3258 0.132507 +0.0257375 1.21985 0.0668171 +0.02581 1.23945 0.00348196 +0.0258825 1.32079 0.0611015 +0.025955 1.27237 0.0651053 +0.0260275 1.26447 0.112663 +0.0261 1.30505 0.111891 +0.0261725 1.26011 0.0845192 +0.026245 1.30556 0.094844 +0.0263175 1.33873 -0.004079 +0.02639 1.26429 0.109632 +0.0264625 1.24249 0.0618321 +0.026535 1.20392 0.0725285 +0.0266075 1.1219 0.0208626 +0.02668 1.22559 0.100443 +0.0267525 1.24461 0.0258935 +0.026825 1.20988 0.108258 +0.0268975 1.23175 0.0926981 +0.02697 1.21834 0.00664664 +0.0270425 1.14789 0.0824818 +0.027115 1.16453 0.0539288 +0.0271875 1.15638 0.0307407 +0.02726 1.28615 0.0883018 +0.0273325 1.26794 0.0375919 +0.027405 1.21138 0.180253 +0.0274775 1.20928 0.0844106 +0.02755 1.13788 0.0890491 +0.0276225 1.27889 0.0990942 +0.027695 1.31461 0.0323189 +0.0277675 1.19538 -0.00825402 +0.02784 1.21126 0.158263 +0.0279125 1.19834 0.167118 +0.027985 1.14232 0.0563127 +0.0280575 1.22375 0.0805195 +0.02813 1.20677 0.0670008 +0.0282025 1.127 0.100864 +0.028275 1.10396 0.148902 +0.0283475 1.16557 0.144464 +0.02842 1.18302 -0.00664246 +0.0284925 1.19604 0.0377464 +0.028565 1.17384 -0.0154267 +0.0286375 1.24711 0.0298514 +0.02871 1.22713 0.100029 +0.0287825 1.07971 0.0667002 +0.028855 1.11111 0.159461 +0.0289275 1.18203 -0.00435038 +0.029 1.19105 0.086899 +0.0290725 1.17394 0.119314 +0.029145 1.18014 0.143913 +0.0292175 1.14594 0.0944391 +0.02929 1.15145 0.0279267 +0.0293625 1.27524 0.104877 +0.029435 1.21059 0.115389 +0.0295075 1.02414 0.092339 +0.02958 1.13375 0.0868363 +0.0296525 1.0742 0.113448 +0.029725 1.06024 0.0848114 +0.0297975 1.10376 0.100965 +0.02987 1.16177 0.0503758 +0.0299425 1.11278 0.125347 +0.030015 1.03314 0.0616735 +0.0300875 1.2718 0.109553 +0.03016 1.25797 0.0939046 +0.0302325 1.11882 0.100242 +0.030305 1.17888 0.0693722 +0.0303775 1.02783 0.0455829 +0.03045 1.05832 0.0815048 +0.0305225 1.07402 0.0718021 +0.030595 1.15272 0.118479 +0.0306675 1.08713 0.104012 +0.03074 1.1535 0.0888654 +0.0308125 1.11333 0.0164621 +0.030885 1.11972 0.125055 +0.0309575 1.14238 0.0557074 +0.03103 1.05049 0.165832 +0.0311025 1.03936 0.0349742 +0.031175 1.03878 0.0500043 +0.0312475 1.01476 0.0731005 +0.03132 1.16381 0.0437459 +0.0313925 1.06065 0.0491985 +0.031465 1.10183 0.106751 +0.0315375 1.17338 0.0208459 +0.03161 1.10409 -0.0038452 +0.0316825 1.09959 0.169276 +0.031755 1.04051 0.0536616 +0.0318275 1.04044 0.115631 +0.0319 1.10302 0.0324358 +0.0319725 1.00366 0.00414997 +0.032045 1.07331 0.0124332 +0.0321175 1.03212 -0.0360096 +0.03219 1.10403 0.124958 +0.0322625 1.10001 0.0498331 +0.032335 1.07011 -0.00803275 +0.0324075 1.1323 0.0744866 +0.03248 1.03044 0.0527848 +0.0325525 0.98784 0.0641659 +0.032625 1.04227 -0.0174975 +0.0326975 1.05919 0.0984304 +0.03277 1.0044 0.0570893 +0.0328425 1.0918 0.0912285 +0.032915 1.04351 0.0927231 +0.0329875 1.03354 -0.00715599 +0.03306 1.09665 0.0957959 +0.0331325 0.968756 0.146865 +0.033205 1.10472 0.0411741 +0.0332775 1.09937 0.0569181 +0.03335 1.07638 0.104852 +0.0334225 1.01905 0.0467937 +0.033495 0.997154 0.0996244 +0.0335675 1.02054 0.0705036 +0.03364 1.04368 0.0815925 +0.0337125 0.935589 0.166592 +0.033785 0.99882 0.0781606 +0.0338575 0.946136 0.101044 +0.03393 1.04414 0.0292043 +0.0340025 1.01047 0.0153933 +0.034075 0.967391 0.0376671 +0.0341475 1.03475 -0.000275552 +0.03422 0.978041 0.114266 +0.0342925 1.03308 0.0641868 +0.034365 0.99161 0.15757 +0.0344375 0.965195 -0.0446519 +0.03451 0.939393 -0.0107173 +0.0345825 1.05359 0.0800018 +0.034655 0.984588 -0.066863 +0.0347275 1.08014 0.0426312 +0.0348 0.971553 0.175238 +0.0348725 1.03794 0.083275 +0.034945 0.973941 0.0691593 +0.0350175 0.955684 0.137517 +0.03509 1.00907 0.123238 +0.0351625 0.960627 0.0976288 +0.035235 0.947071 0.062354 +0.0353075 1.02033 0.0805655 +0.03538 0.957016 0.0273798 +0.0354525 1.01878 0.0938587 +0.035525 1.05408 0.0483551 +0.0355975 0.99348 0.0612017 +0.03567 1.06555 0.153511 +0.0357425 1.00888 0.0616568 +0.035815 1.01359 0.149666 +0.0358875 0.894186 0.0318137 +0.03596 0.94604 0.0288411 +0.0360325 1.02543 0.119965 +0.036105 0.997944 0.0829744 +0.0361775 0.987005 0.0779769 +0.03625 0.910986 0.0672221 +0.0363225 0.875883 0.0990817 +0.036395 0.901551 0.136586 +0.0364675 0.902586 0.13692 +0.03654 0.919511 -0.0470108 +0.0366125 1.01138 0.0422429 +0.036685 0.960431 0.0986851 +0.0367575 0.937848 0.0715098 +0.03683 0.86519 0.000200398 +0.0369025 0.812472 0.00577823 +0.036975 1.00739 0.10772 +0.0370475 1.01114 -0.0618071 +0.03712 1.01024 0.00602038 +0.0371925 0.850106 0.0408985 +0.037265 0.972234 0.0753592 +0.0373375 0.800298 0.121017 +0.03741 0.951613 0.0937168 +0.0374825 0.89065 0.0864606 +0.037555 0.886366 -0.03206 +0.0376275 0.956966 0.0633643 +0.0377 0.86499 0.0999793 +0.0377725 0.997225 0.0838721 +0.037845 0.964159 0.127756 +0.0379175 1.00072 0.100906 +0.03799 0.977519 0.0368321 +0.0380625 0.926768 -0.0253424 +0.038135 0.888257 0.160425 +0.0382075 0.949647 0.119598 +0.03828 0.978918 0.0457875 +0.0383525 0.89657 0.023877 +0.038425 0.873252 0.0243905 +0.0384975 0.914414 0.0514906 +0.03857 0.836324 0.0961174 +0.0386425 0.899885 0.126691 +0.038715 1.0153 0.151507 +0.0387875 0.87734 0.046848 +0.03886 0.931252 0.07242 +0.0389325 0.81896 0.0736099 +0.039005 0.923778 0.122399 +0.0390775 0.85254 0.113415 +0.03915 0.926167 0.0719023 +0.0392225 0.844507 0.0136398 +0.039295 0.926396 0.0778308 +0.0393675 0.921369 0.0508393 +0.03944 0.816914 0.0347696 +0.0395125 0.837142 0.0472237 +0.039585 0.999714 0.100614 +0.0396575 0.749943 0.0241316 +0.03973 0.817879 0.107837 +0.0398025 0.83184 -0.0170842 +0.039875 0.953045 0.0480921 +0.0399475 0.915011 0.0700527 +0.04002 0.810477 -0.047612 +0.0400925 0.74277 0.0764405 +0.040165 0.869507 0.0412868 +0.0402375 0.712397 0.0748373 +0.04031 0.846599 0.027956 +0.0403825 0.942257 0.128787 +0.040455 0.880834 0.00457165 +0.0405275 0.833347 0.0863437 +0.0406 0.822755 -0.0334002 +0.0406725 0.832821 -0.0511065 +0.040745 0.857291 0.0996495 +0.0408175 0.776362 0.139868 +0.04089 0.774283 0.096919 +0.0409625 0.925473 0.0223907 +0.041035 0.899734 0.0344606 +0.0411075 0.828797 0.0745576 +0.04118 0.803605 0.0526638 +0.0412525 0.809349 0.0584587 +0.041325 0.761499 0.0964723 +0.0413975 0.858853 0.0488227 +0.04147 0.769252 0.151892 +0.0415425 0.857617 0.0710631 +0.041615 0.829623 -0.0209127 +0.0416875 0.901346 0.143583 +0.04176 0.721139 0.0913662 +0.0418325 0.849058 0.00121911 +0.041905 0.828321 -0.00498915 +0.0419775 0.784178 -0.0752966 +0.04205 0.844921 0.0801897 +0.0421225 0.842056 0.0549892 +0.042195 0.822396 0.0586633 +0.0422675 0.848515 0.088569 +0.04234 0.657879 0.0595818 +0.0424125 0.813433 0.125414 +0.042485 0.800528 0.132382 +0.0425575 0.807153 0.0500043 +0.04263 0.825958 0.0722655 +0.0427025 0.781226 0.130353 +0.042775 0.834775 -0.0540958 +0.0428475 0.742762 0.0717728 +0.04292 0.802264 0.0276637 +0.0429925 0.710284 0.0320934 +0.043065 0.85831 0.050785 +0.0431375 0.774626 0.01746 +0.04321 0.812368 0.0639363 +0.0432825 0.919207 0.0960798 +0.043355 0.715465 0.114462 +0.0434275 0.85717 0.13396 +0.0435 0.812689 0.0285363 +0.0435725 0.782287 0.122996 +0.043645 0.828797 0.0814004 +0.0437175 0.765958 -0.0170174 +0.04379 0.797371 0.0646336 +0.0438625 0.796277 0.00333584 +0.043935 0.800728 0.0784863 +0.0440075 0.678917 0.0934871 +0.04408 0.798799 0.0391868 +0.0441525 0.801688 -0.00423765 +0.044225 0.786741 0.0614522 +0.0442975 0.764881 0.0381388 +0.04437 0.736883 -0.0293045 +0.0444425 0.770296 0.0870618 +0.044515 0.794361 -0.00708919 +0.0445875 0.920601 0.03163 +0.04466 0.701713 0.120462 +0.0447325 0.770401 0.0842562 +0.044805 0.723619 -0.0776722 +0.0448775 0.751851 0.0332165 +0.04495 0.762184 0.023806 +0.0450225 0.798624 0.0741443 +0.045095 0.765015 0.0620325 +0.0451675 0.7804 0.0239438 +0.04524 0.688507 0.0461131 +0.0453125 0.728103 0.0690591 +0.045385 0.767369 0.0370993 +0.0454575 0.789889 0.159966 +0.04553 0.763712 0.0580913 +0.0456025 0.75512 0.0188127 +0.045675 0.708456 0.076499 +0.0457475 0.743417 0.0053315 +0.04582 0.785389 0.0867695 +0.0458925 0.675911 0.0233342 +0.045965 0.714585 -0.0577907 +0.0460375 0.708247 0.123769 +0.04611 0.628613 0.0283108 +0.0461825 0.823056 0.0346026 +0.046255 0.693939 0.140197 +0.0463275 0.759236 -0.0788829 +0.0464 0.785339 0.0523172 +0.0464725 0.772663 0.123827 +0.046545 0.727452 0.0266534 +0.0466175 0.675101 0.068128 +0.04669 0.783514 0.0866401 +0.0467625 0.695638 0.0673891 +0.046835 0.677757 0.0682282 +0.0469075 0.780195 0.138586 +0.04698 0.676646 0.0217477 +0.0470525 0.797705 -0.0167585 +0.047125 0.709462 0.0889906 +0.0471975 0.647271 0.0147921 +0.04727 0.733944 0.0844858 +0.0473425 0.636737 0.0976204 +0.047415 0.637702 0.0643455 +0.0474875 0.659462 0.127088 +0.04756 0.645008 0.0975328 +0.0476325 0.689568 0.162421 +0.047705 0.780679 0.0320642 +0.0477775 0.649078 0.0937335 +0.04785 0.697509 0.0384645 +0.0479225 0.768572 0.0611432 +0.047995 0.709433 0.128745 +0.0480675 0.739714 0.00194974 +0.04814 0.74629 -0.062759 +0.0482125 0.71509 0.0769666 +0.048285 0.675765 0.034778 +0.0483575 0.78594 0.0464638 +0.04843 0.644891 0.0536282 +0.0485025 0.766985 -0.00265949 +0.048575 0.722868 0.0886775 +0.0486475 0.660556 0.0563419 +0.04872 0.815796 -0.0441342 +0.0487925 0.723386 0.0446978 +0.048865 0.728533 0.0795718 +0.0489375 0.770814 0.0889698 +0.04901 0.711462 0.0978834 +0.0490825 0.734587 0.0394874 +0.049155 0.719357 0.0345859 +0.0492275 0.672905 0.0642244 +0.0493 0.686566 0.166291 +0.0493725 0.614973 0.102367 +0.049445 0.585009 0.128061 +0.0495175 0.743956 0.0408818 +0.04959 0.754686 0.0408067 +0.0496625 0.732354 0.000784901 +0.049735 0.599725 0.0778183 +0.0498075 0.716785 0.0840975 +0.04988 0.650231 0.0483677 +0.0499525 0.651592 0.104555 +0.050025 0.692332 0.0697855 +0.0500975 0.688908 -0.0618864 +0.05017 0.74662 0.0481589 +0.0502425 0.696958 0.0458919 +0.050315 0.745902 0.0382933 +0.0503875 0.685589 -0.0403975 +0.05046 0.59472 0.0920843 +0.0505325 0.646035 0.0778976 +0.050605 0.602619 0.0310455 +0.0506775 0.619148 0.00503091 +0.05075 0.726972 0.0553399 +0.0508225 0.796173 0.00584921 +0.050895 0.764334 0.0310538 +0.0509675 0.592762 0.015577 +0.05104 0.691564 0.0555654 +0.0511125 0.58399 0.0286782 +0.051185 0.721878 0.00805779 +0.0512575 0.793371 0.123577 +0.05133 0.648198 0.12308 +0.0514025 0.711612 0.0646085 +0.051475 0.687927 0.0115481 +0.0515475 0.641125 0.0557491 +0.05162 0.719749 0.0191634 +0.0516925 0.668025 0.0638487 +0.051765 0.673486 0.0541041 +0.0518375 0.641321 0.0813169 +0.05191 0.649939 0.0449274 +0.0519825 0.591714 0.034302 +0.052055 0.586357 0.0470066 +0.0521275 0.673603 0.0845818 +0.0522 0.659574 0.0731757 +0.0522725 0.721999 0.0119489 +0.052345 0.662309 0.00908067 +0.0524175 0.609282 -0.0914915 +0.05249 0.653567 0.0708293 +0.0525625 0.637009 0.113911 +0.052635 0.739823 0.0423807 +0.0527075 0.636462 0.0726538 +0.05278 0.610109 0.0650803 +0.0528525 0.583906 0.110125 +0.052925 0.580161 0.14165 +0.0529975 0.47728 0.00479293 +0.05307 0.704936 0.0957083 +0.0531425 0.601596 0.00755262 +0.053215 0.600978 0.031154 +0.0532875 0.588841 0.123602 +0.05336 0.595271 0.0463177 +0.0534325 0.629623 0.028482 +0.053505 0.588612 0.0751296 +0.0535775 0.654606 0.00315632 +0.05365 0.622926 0.0181781 +0.0537225 0.61013 0.108292 +0.053795 0.500752 0.121969 +0.0538675 0.629285 0.040289 +0.05394 0.693751 0.156146 +0.0540125 0.555378 -0.0253758 +0.054085 0.627585 0.0835756 +0.0541575 0.65479 0.0762735 +0.05423 0.586457 0.105382 +0.0543025 0.544607 0.0789706 +0.054375 0.629894 0.0955454 +0.0544475 0.536077 0.0446728 +0.05452 0.573218 0.0197061 +0.0545925 0.478199 0.119656 +0.054665 0.534666 0.0106338 +0.0547375 0.692156 -0.0134853 +0.05481 0.554882 0.00831665 +0.0548825 0.556497 0.0651179 +0.054955 0.605379 0.0304735 +0.0550275 0.615039 -0.0180319 +0.0551 0.726855 0.115389 +0.0551725 0.6453 0.0788704 +0.055245 0.552347 0.0532775 +0.0553175 0.536766 0.0563044 +0.05539 0.573139 0.122725 +0.0554625 0.693455 -0.0189003 +0.055535 0.54345 0.0487601 +0.0556075 0.58842 0.0682616 +0.05568 0.496469 0.0333543 +0.0557525 0.59664 0.0545091 +0.055825 0.565211 0.0249541 +0.0558975 0.575318 0.0806489 +0.05597 0.589146 0.154864 +0.0560425 0.584912 0.147428 +0.056115 0.56286 0.00935623 +0.0561875 0.539221 0.0877715 +0.05626 0.585079 0.0200902 +0.0563325 0.628608 0.0241567 +0.056405 0.53518 0.013239 +0.0564775 0.580211 0.0476788 +0.05655 0.509641 0.0286991 +0.0566225 0.490077 0.125593 +0.056695 0.578892 0.0168086 +0.0567675 0.460088 0.0599868 +0.05684 0.589964 0.0582875 +0.0569125 0.459762 0.128449 +0.056985 0.489476 -0.00880513 +0.0570575 0.522989 0.095011 +0.05713 0.611457 0.0999083 +0.0572025 0.574972 -0.0171134 +0.057275 0.627043 0.0222821 +0.0573475 0.508756 0.102522 +0.05742 0.621465 0.0748248 +0.0574925 0.580399 -0.0745033 +0.057565 0.528988 0.13206 +0.0576375 0.607261 0.0296844 +0.05771 0.565186 -0.0708084 +0.0577825 0.580558 -0.00895126 +0.057855 0.613365 -0.0420049 +0.0579275 0.60284 0.0536741 +0.058 0.496394 0.0744073 +0.0580725 0.486599 0.0917545 +0.058145 0.680871 0.0479919 +0.0582175 0.594557 0.190602 +0.05829 0.598419 0.0614188 +0.0583625 0.488156 0.0138319 +0.058435 0.461419 -0.0140448 +0.0585075 0.646857 0.0217435 +0.05858 0.599366 0.070775 +0.0586525 0.588875 -0.0115857 +0.058725 0.522179 -0.0791251 +0.0587975 0.564914 0.0447437 +0.05887 0.426433 0.0212551 +0.0589425 0.482336 0.0174683 +0.059015 0.56473 -0.0795342 +0.0590875 0.522934 0.127898 +0.05916 0.517749 0.0420467 +0.0592325 0.590628 0.0409027 +0.059305 0.530332 0.132945 +0.0593775 0.49573 0.063928 +0.05945 0.553337 -0.00586591 +0.0595225 0.542177 0.10129 +0.059595 0.583873 0.0202238 +0.0596675 0.5389 0.0431739 +0.05974 0.469682 -0.000141957 +0.0598125 0.553696 0.0408025 +0.059885 0.563177 0.0418463 +0.0599575 0.539079 0.000797429 +0.06003 0.547375 0.0549934 +0.0601025 0.400368 0.0336256 +0.060175 0.483848 0.0673807 +0.0602475 0.494461 0.00601621 +0.06032 0.597851 0.113035 +0.0603925 0.575085 0.034064 +0.060465 0.583798 0.0351412 +0.0605375 0.663486 -0.0090264 +0.06061 0.572538 -0.0180612 +0.0606825 0.560334 0.082248 +0.060755 0.558172 0.115865 +0.0608275 0.471093 0.0833335 +0.0609 0.533376 0.102597 +0.0609725 0.578683 0.0552314 +0.061045 0.512142 0.105774 +0.0611175 0.489167 0.0424391 +0.06119 0.530537 0.139208 +0.0612625 0.458217 0.127505 +0.061335 0.574563 0.087066 +0.0614075 0.479105 -0.0172971 +0.06148 0.53733 0.0830412 +0.0615525 0.535134 -0.0341768 +0.061625 0.516484 0.125819 +0.0616975 0.435401 0.0777891 +0.06177 0.486536 0.0377088 +0.0618425 0.467315 0.0697855 +0.061915 0.489885 0.0782191 +0.0619875 0.482357 0.0623665 +0.06206 0.555696 0.133663 +0.0621325 0.461632 -0.0378883 +0.062205 0.455073 0.0154601 +0.0622775 0.586073 0.130837 +0.06235 0.557942 0.0838929 +0.0624225 0.379698 0.076357 +0.062495 0.49798 0.049712 +0.0625675 0.537505 -0.029221 +0.06264 0.46643 0.0507558 +0.0627125 0.516004 0.0597488 +0.062785 0.434169 0.09909 +0.0628575 0.547058 -0.0366442 +0.06293 0.422216 -0.0354961 +0.0630025 0.562029 0.0643413 +0.063075 0.502402 0.0649258 +0.0631475 0.645062 0.027121 +0.06322 0.478362 0.157607 +0.0632925 0.438457 0.0914163 +0.063365 0.435622 -0.0480921 +0.0634375 0.54254 0.00541084 +0.06351 0.53667 0.0167627 +0.0635825 0.445621 -0.0353708 +0.063655 0.398711 0.0415832 +0.0637275 0.454456 0.0193846 +0.0638 0.417486 0.0851789 +0.0638725 0.503529 -0.0795509 +0.063945 0.481902 0.0629468 +0.0640175 0.565115 -0.00791584 +0.06409 0.45896 0.169949 +0.0641625 0.412196 0.0893497 +0.064235 0.438231 -0.055269 +0.0643075 0.520087 -0.0410113 +0.06438 0.436065 0.0611683 +0.0644525 0.506326 0.114266 +0.064525 0.434357 0.0367778 +0.0645975 0.556739 0.0822062 +0.06467 0.43343 0.0427314 +0.0647425 0.552013 0.004747 +0.064815 0.543384 0.0817887 +0.0648875 0.382303 0.000379928 +0.06496 0.462697 -0.0570183 +0.0650325 0.426729 0.0445767 +0.065105 0.401917 0.00814965 +0.0651775 0.437158 0.0756932 +0.06525 0.484215 0.0797388 +0.0653225 0.369164 0.0842436 +0.065395 0.471774 -0.000208754 +0.0654675 0.444193 0.0636441 +0.06554 0.40828 0.0992779 +0.0656125 0.432119 0.063427 +0.065685 0.387684 0.0338344 +0.0657575 0.621373 0.0998833 +0.06583 0.442273 -0.00926438 +0.0659025 0.465064 0.0750168 +0.065975 0.434127 0.047804 +0.0660475 0.506865 0.0688127 +0.06612 0.268195 0.106346 +0.0661925 0.484712 -0.0657316 +0.066265 0.469586 0.0281188 +0.0663375 0.504443 0.0571895 +0.06641 0.529823 0.0144915 +0.0664825 0.40441 0.0251796 +0.066555 0.419385 0.185263 +0.0666275 0.558752 0.0762652 +0.0667 0.479881 0.139909 +0.0667725 0.450222 -0.0553608 +0.066845 0.486699 -0.0108926 +0.0669175 0.445742 0.107094 +0.06699 0.535622 0.0322646 +0.0670625 0.494598 -0.0995743 +0.067135 0.396953 0.112747 +0.0672075 0.416171 0.00582833 +0.06728 0.467632 0.0208501 +0.0673525 0.467703 -0.00997413 +0.067425 0.512651 -0.00192469 +0.0674975 0.34502 0.00520208 +0.06757 0.441676 -0.00564463 +0.0676425 0.48085 -0.0094105 +0.067715 0.443976 -0.0217936 +0.0677875 0.459186 0.0678859 +0.06786 0.416692 0.0161448 +0.0679325 0.439805 0.047875 +0.068005 0.395959 0.0248414 +0.0680775 0.377493 0.134323 +0.06815 0.404092 0.0437501 +0.0682225 0.399045 0.0473114 +0.068295 0.430687 0.0293546 +0.0683675 0.37604 -0.00544006 +0.06844 0.394314 -0.0248873 +0.0685125 0.431489 0.0774258 +0.068585 0.370053 0.119193 +0.0686575 0.432858 0.0972989 +0.06873 0.374842 0.0345859 +0.0688025 0.376462 -0.0032106 +0.068875 0.453049 0.0175769 +0.0689475 0.549354 0.0485931 +0.06902 0.426124 -0.00291834 +0.0690925 0.506318 0.0784153 +0.069165 0.510163 0.104651 +0.0692375 0.334202 0.0571561 +0.06931 0.407725 0.0372871 +0.0693825 0.401387 0.0210045 +0.069455 0.469728 0.0671469 +0.0695275 0.494152 -0.0694473 +0.0696 0.46491 0.122449 +0.0696725 0.450059 0.0159653 +0.069745 0.463703 -0.0572271 +0.0698175 0.365494 0.0874041 +0.06989 0.420254 0.0253883 +0.0699625 0.428708 0.0711257 +0.070035 0.407562 0.0215557 +0.0701075 0.448084 0.0780688 +0.07018 0.53179 -0.0885522 +0.0702525 0.358284 0.0218103 +0.070325 0.440878 0.101942 +0.0703975 0.431205 -0.00980713 +0.07047 0.3017 0.0909153 +0.0705425 0.385664 -0.0608677 +0.070615 0.340152 0.0281104 +0.0706875 0.430812 -0.0115899 +0.07076 0.541576 0.0285906 +0.0708325 0.389759 -0.0204534 +0.070905 0.320742 0.0914247 +0.0709775 0.40476 0.0629176 +0.07105 0.37622 -2.08707e-005 +0.0711225 0.448732 0.0295717 +0.071195 0.475089 0.0285572 +0.0712675 0.404176 0.0788746 +0.07134 0.411703 -0.0418463 +0.0714125 0.364192 0.0762777 +0.071485 0.369389 0.0295425 +0.0715575 0.39183 0.0966643 +0.07163 0.410668 0.0824526 +0.0717025 0.374525 0.099495 +0.071775 0.337989 0.0434161 +0.0718475 0.423602 0.0191007 +0.07192 0.497717 0.0297637 +0.0719925 0.321393 0.143358 +0.072065 0.393592 0.0828158 +0.0721375 0.392106 -0.0407775 +0.07221 0.491425 0.106609 +0.0722825 0.428245 -0.026453 +0.072355 0.501951 0.0435956 +0.0724275 0.353053 0.0871286 +0.0725 0.281267 0.0516659 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/8/data-04500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/8/data-04500um.dat new file mode 100644 index 0000000..da7c179 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/8/data-04500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 2.47734 0.185989 +0.000145 3.18445 0.16159 +0.0002175 3.11274 0.183 +0.00029 3.0764 0.148965 +0.0003625 2.98065 0.165853 +0.000435 2.93203 0.155745 +0.0005075 2.9736 0.166325 +0.00058 3.03839 0.0957083 +0.0006525 3.00201 0.13115 +0.000725 2.89014 0.0773924 +0.0007975 2.90861 0.143061 +0.00087 2.96606 0.115694 +0.0009425 2.93954 0.148414 +0.001015 2.96211 0.0729502 +0.0010875 2.82288 0.145988 +0.00116 2.91036 0.14727 +0.0012325 2.95234 0.161653 +0.001305 2.88725 0.139037 +0.0013775 2.86725 0.303182 +0.00145 2.88409 0.0872789 +0.0015225 2.94369 0.167853 +0.001595 2.83369 0.162872 +0.0016675 2.88564 0.164684 +0.00174 2.83553 0.238861 +0.0018125 2.85656 0.130787 +0.001885 2.91999 0.177915 +0.0019575 2.78747 0.144953 +0.00203 2.80265 0.208254 +0.0021025 2.80168 0.160989 +0.002175 2.7963 0.200159 +0.0022475 2.84829 0.188757 +0.00232 2.77386 0.232407 +0.0023925 2.76788 0.185647 +0.002465 2.7111 0.111707 +0.0025375 2.64158 0.138277 +0.00261 2.69795 0.130282 +0.0026825 2.82669 0.258948 +0.002755 2.72405 0.201432 +0.0028275 2.70405 0.212484 +0.0029 2.67232 0.138774 +0.0029725 2.69511 0.106384 +0.003045 2.64889 0.253796 +0.0031175 2.65718 0.12495 +0.00319 2.73485 0.177981 +0.0032625 2.7049 0.146477 +0.003335 2.82047 0.254326 +0.0034075 2.65491 0.184499 +0.00348 2.71975 0.107361 +0.0035525 2.648 0.187488 +0.003625 2.68845 0.164801 +0.0036975 2.70742 0.0799434 +0.00377 2.72616 0.116053 +0.0038425 2.65762 0.138552 +0.003915 2.63733 0.10759 +0.0039875 2.63287 0.250021 +0.00406 2.48305 0.120441 +0.0041325 2.63002 0.272237 +0.004205 2.52374 0.187434 +0.0042775 2.63698 0.158901 +0.00435 2.54722 0.135634 +0.0044225 2.58627 0.205344 +0.004495 2.53991 0.11177 +0.0045675 2.60408 0.0788913 +0.00464 2.50376 0.127935 +0.0047125 2.55552 0.153904 +0.004785 2.63794 0.154388 +0.0048575 2.49089 0.147704 +0.00493 2.52499 0.123727 +0.0050025 2.61392 0.101591 +0.005075 2.44701 0.169422 +0.0051475 2.45964 0.142569 +0.00522 2.48339 0.118445 +0.0052925 2.49727 0.198756 +0.005365 2.43887 0.154284 +0.0054375 2.44014 0.117807 +0.00551 2.49557 0.276036 +0.0055825 2.4397 0.0280061 +0.005655 2.4108 0.125505 +0.0057275 2.46751 0.0953659 +0.0058 2.42057 0.18449 +0.0058725 2.44823 0.204459 +0.005945 2.45104 0.234686 +0.0060175 2.32655 0.0884688 +0.00609 2.48311 0.207486 +0.0061625 2.38519 0.181179 +0.006235 2.43907 0.2185 +0.0063075 2.27586 0.168892 +0.00638 2.40343 0.254276 +0.0064525 2.33317 0.237329 +0.006525 2.43013 0.107419 +0.0065975 2.44634 0.160275 +0.00667 2.50882 0.170667 +0.0067425 2.31465 0.217176 +0.006815 2.33287 0.140769 +0.0068875 2.32001 0.199069 +0.00696 2.48831 0.136456 +0.0070325 2.36782 0.128658 +0.007105 2.28871 0.0582416 +0.0071775 2.32472 0.121723 +0.00725 2.33892 0.155098 +0.0073225 2.29527 0.126136 +0.007395 2.32415 0.215456 +0.0074675 2.35325 0.100505 +0.00754 2.24009 0.203866 +0.0076125 2.3858 0.218997 +0.007685 2.31458 0.136649 +0.0077575 2.28259 0.117126 +0.00783 2.35704 0.197115 +0.0079025 2.38846 0.137705 +0.007975 2.35308 0.139872 +0.0080475 2.26875 0.168838 +0.00812 2.19013 0.193562 +0.0081925 2.26017 0.164083 +0.008265 2.18168 0.0610514 +0.0083375 2.2762 0.217076 +0.00841 2.29355 0.136932 +0.0084825 2.31769 0.0216141 +0.008555 2.26898 0.183183 +0.0086275 2.20757 0.145504 +0.0087 2.20119 0.188782 +0.0087725 2.16028 0.168066 +0.008845 2.23965 0.171744 +0.0089175 2.11135 0.115723 +0.00899 2.19667 0.173134 +0.0090625 2.30699 0.236511 +0.009135 2.17798 0.182248 +0.0092075 2.25951 0.121735 +0.00928 2.17691 0.112609 +0.0093525 2.16126 0.112651 +0.009425 2.2265 0.245512 +0.0094975 2.16939 0.0976037 +0.00957 2.17211 0.0885815 +0.0096425 2.17997 0.044727 +0.009715 2.07408 0.16177 +0.0097875 2.16086 0.070775 +0.00986 2.15706 0.0387568 +0.0099325 2.08425 0.169293 +0.010005 2.09218 0.139575 +0.0100775 2.19686 0.0887443 +0.01015 2.08687 0.115206 +0.0102225 2.0938 0.116659 +0.010295 2.14829 0.105707 +0.0103675 2.18475 0.187425 +0.01044 2.09613 0.07075 +0.0105125 2.08078 0.22275 +0.010585 2.08965 0.0467561 +0.0106575 2.11285 0.157749 +0.01073 2.21293 0.109887 +0.0108025 1.91624 0.0981339 +0.010875 2.13585 0.212271 +0.0109475 2.11319 0.0989188 +0.01102 2.02835 0.102885 +0.0110925 2.01728 0.147955 +0.011165 2.15706 0.180394 +0.0112375 2.0447 0.121998 +0.01131 1.95871 0.129839 +0.0113825 1.99993 0.136235 +0.011455 2.01994 0.168642 +0.0115275 2.05978 0.15549 +0.0116 2.04674 0.13654 +0.0116725 2.10807 0.168137 +0.011745 2.09007 0.0984805 +0.0118175 2.05104 0.0643037 +0.01189 1.91548 0.0480671 +0.0119625 2.00965 0.0691342 +0.012035 2.05476 0.0377631 +0.0121075 2.10841 0.152589 +0.01218 2.00518 0.201725 +0.0122525 1.94698 0.0968271 +0.012325 2.00003 0.12394 +0.0123975 1.96044 0.114842 +0.01247 2.01591 0.202844 +0.0125425 1.8808 0.0732717 +0.012615 2.08157 0.184553 +0.0126875 1.9266 0.0890908 +0.01276 1.97221 0.0846486 +0.0128325 1.99502 0.186361 +0.012905 1.94262 0.087926 +0.0129775 1.92062 0.147579 +0.01305 1.97852 0.174266 +0.0131225 1.97423 0.222353 +0.013195 1.96476 0.156263 +0.0132675 1.92544 0.177622 +0.01334 1.86904 0.110672 +0.0134125 1.90367 0.0899509 +0.013485 1.86576 0.0568471 +0.0135575 2.02945 0.163415 +0.01363 1.8946 0.0541751 +0.0137025 1.83935 0.202823 +0.013775 1.88092 0.144781 +0.0138475 1.79301 0.0238728 +0.01392 1.92591 0.0390114 +0.0139925 1.80761 0.158204 +0.014065 1.95527 0.099687 +0.0141375 1.91067 0.168112 +0.01421 1.87071 0.154012 +0.0142825 1.94873 0.0960047 +0.014355 1.99326 0.0662326 +0.0144275 1.84466 0.0268371 +0.0145 1.89429 0.089905 +0.0145725 1.83809 0.166922 +0.014645 1.76193 0.0537284 +0.0147175 1.72637 0.249767 +0.01479 1.8221 0.121435 +0.0148625 1.89166 0.0787243 +0.014935 1.86643 0.165636 +0.0150075 1.75191 0.174892 +0.01508 1.80741 0.270404 +0.0151525 1.82771 0.163494 +0.015225 1.80195 0.111882 +0.0152975 1.78101 0.156225 +0.01537 1.91492 0.175627 +0.0154425 1.8314 0.124011 +0.015515 1.84785 0.0843522 +0.0155875 1.72786 0.159482 +0.01566 1.84272 0.18295 +0.0157325 1.79762 0.0928985 +0.015805 1.81547 0.0952156 +0.0158775 1.76416 0.216254 +0.01595 1.75453 0.126127 +0.0160225 1.82011 0.0980671 +0.016095 1.77623 0.133922 +0.0161675 1.76513 0.103845 +0.01624 1.78906 0.143972 +0.0163125 1.79441 0.11417 +0.016385 1.77326 0.116354 +0.0164575 1.6818 0.137893 +0.01653 1.78631 0.144694 +0.0166025 1.6299 0.102167 +0.016675 1.72608 0.190456 +0.0167475 1.63945 0.134745 +0.01682 1.68343 0.197483 +0.0168925 1.68021 0.185851 +0.016965 1.70096 0.037571 +0.0170375 1.7807 0.107465 +0.01711 1.70811 0.0830287 +0.0171825 1.77909 0.0313711 +0.017255 1.75788 0.107707 +0.0173275 1.67877 0.118433 +0.0174 1.79025 0.0699484 +0.0174725 1.81659 0.0907149 +0.017545 1.65286 0.141391 +0.0176175 1.71743 0.132979 +0.01769 1.7487 0.141709 +0.0177625 1.67363 0.0341267 +0.017835 1.79245 0.0869407 +0.0179075 1.72178 0.106764 +0.01798 1.73059 0.105348 +0.0180525 1.64677 0.133567 +0.018125 1.64585 0.0483969 +0.0181975 1.74051 0.0445308 +0.01827 1.59215 0.0090431 +0.0183425 1.64415 0.0541125 +0.018415 1.64239 0.109674 +0.0184875 1.52961 0.144715 +0.01856 1.53682 0.13406 +0.0186325 1.63082 0.149382 +0.018705 1.65815 0.106977 +0.0187775 1.68723 0.0293337 +0.01885 1.61704 0.15137 +0.0189225 1.6538 0.143629 +0.018995 1.61152 0.095821 +0.0190675 1.52486 0.152434 +0.01914 1.61626 0.136381 +0.0192125 1.55379 0.0489229 +0.019285 1.61787 0.0860013 +0.0193575 1.48074 0.179205 +0.01943 1.6526 0.108718 +0.0195025 1.62121 0.111523 +0.019575 1.63732 0.037546 +0.0196475 1.5648 0.0566384 +0.01972 1.66913 0.130691 +0.0197925 1.59855 0.127326 +0.019865 1.54131 0.0583376 +0.0199375 1.51706 0.142819 +0.02001 1.56336 0.0522421 +0.0200825 1.58933 0.191943 +0.020155 1.58362 0.0650385 +0.0202275 1.48091 0.0907233 +0.0203 1.53212 0.20957 +0.0203725 1.60466 0.0541417 +0.020445 1.61107 0.134686 +0.0205175 1.53645 0.152468 +0.02059 1.59879 0.0586006 +0.0206625 1.56129 0.22308 +0.020735 1.57087 0.0948106 +0.0208075 1.64635 0.0641075 +0.02088 1.52911 0.0686458 +0.0209525 1.68905 0.0240106 +0.021025 1.56558 0.104739 +0.0210975 1.58301 0.157686 +0.02117 1.52932 0.070249 +0.0212425 1.44395 0.163615 +0.021315 1.54586 0.120057 +0.0213875 1.55326 0.125221 +0.02146 1.48266 0.182732 +0.0215325 1.53182 0.165915 +0.021605 1.48152 0.106083 +0.0216775 1.46251 0.12333 +0.02175 1.48908 0.0921929 +0.0218225 1.57838 0.00710589 +0.021895 1.47492 0.07533 +0.0219675 1.54559 0.0202071 +0.02204 1.49221 0.18879 +0.0221125 1.50505 0.0829369 +0.022185 1.44383 0.155486 +0.0222575 1.48657 0.130106 +0.02233 1.45678 0.132056 +0.0224025 1.45373 0.169848 +0.022475 1.48038 0.0829661 +0.0225475 1.48166 0.0703325 +0.02262 1.34996 0.0477038 +0.0226925 1.41046 0.103257 +0.022765 1.4107 0.0484011 +0.0228375 1.50151 0.187037 +0.02291 1.51626 -0.0420133 +0.0229825 1.44752 0.0881807 +0.023055 1.46533 0.150627 +0.0231275 1.51964 0.0543254 +0.0232 1.41741 0.0699066 +0.0232725 1.4593 0.10643 +0.023345 1.51006 0.11951 +0.0234175 1.46246 0.0811583 +0.02349 1.47592 0.0393287 +0.0235625 1.45728 0.124245 +0.023635 1.51377 0.0399717 +0.0237075 1.34181 0.05701 +0.02378 1.43343 0.0899634 +0.0238525 1.43169 0.138239 +0.023925 1.44351 0.191922 +0.0239975 1.43692 0.16913 +0.02407 1.38313 0.144159 +0.0241425 1.27178 0.114158 +0.024215 1.40364 0.125426 +0.0242875 1.50331 0.134653 +0.02436 1.40896 0.152509 +0.0244325 1.33564 0.102973 +0.024505 1.45474 0.148013 +0.0245775 1.39662 0.0593396 +0.02465 1.45904 0.148243 +0.0247225 1.3555 0.01331 +0.024795 1.4 0.0881139 +0.0248675 1.29967 0.0880095 +0.02494 1.36039 0.139337 +0.0250125 1.36968 0.120616 +0.025085 1.35242 0.156171 +0.0251575 1.28349 0.0319389 +0.02523 1.41272 0.169823 +0.0253025 1.26269 0.0919048 +0.025375 1.34229 0.0476245 +0.0254475 1.3668 0.0295425 +0.02552 1.32299 0.0634604 +0.0255925 1.41524 0.0725703 +0.025665 1.32815 0.16354 +0.0257375 1.35654 0.107119 +0.02581 1.36255 0.00382014 +0.0258825 1.25367 0.13664 +0.025955 1.35538 0.119973 +0.0260275 1.28842 0.124048 +0.0261 1.28787 0.102484 +0.0261725 1.41651 0.130131 +0.026245 1.27672 0.10544 +0.0263175 1.32033 0.0875544 +0.02639 1.30965 0.0818138 +0.0264625 1.30297 0.0720484 +0.026535 1.31214 0.142957 +0.0266075 1.28501 0.126603 +0.02668 1.32527 0.17462 +0.0267525 1.34471 0.108897 +0.026825 1.33907 0.0392703 +0.0268975 1.36925 0.0943472 +0.02697 1.25635 0.0845985 +0.0270425 1.34569 0.104146 +0.027115 1.31241 0.1021 +0.0271875 1.31166 -0.0579702 +0.02726 1.28492 0.205658 +0.0273325 1.24756 0.0498623 +0.027405 1.31024 0.185755 +0.0274775 1.32884 0.0810164 +0.02755 1.16064 0.0601496 +0.0276225 1.28311 0.0373289 +0.027695 1.35992 0.132549 +0.0277675 1.33779 0.0897714 +0.02784 1.27075 0.0304526 +0.0279125 1.25251 0.118504 +0.027985 1.2846 0.131275 +0.0280575 1.27006 0.159085 +0.02813 1.22062 0.109778 +0.0282025 1.27106 0.0551896 +0.028275 1.30418 0.102251 +0.0283475 1.24125 0.112905 +0.02842 1.22653 0.124892 +0.0284925 1.19027 0.181526 +0.028565 1.33787 -0.0178357 +0.0286375 1.32839 0.0510063 +0.02871 1.22939 0.0404936 +0.0287825 1.18912 -0.0504719 +0.028855 1.17805 0.0932241 +0.0289275 1.30619 0.0676813 +0.029 1.31091 0.0910489 +0.0290725 1.28061 0.083275 +0.029145 1.20833 0.0152138 +0.0292175 1.34609 0.108805 +0.02929 1.1808 0.0249332 +0.0293625 1.14512 0.0681406 +0.029435 1.21362 0.00283483 +0.0295075 1.20289 0.074019 +0.02958 1.23684 0.130916 +0.0296525 1.22352 0.108697 +0.029725 1.12431 0.110467 +0.0297975 1.22622 -0.0314964 +0.02987 1.15733 0.126942 +0.0299425 1.28806 0.154981 +0.030015 1.22178 0.113961 +0.0300875 1.25953 0.0494907 +0.03016 1.25121 -0.00243404 +0.0302325 1.14882 0.175414 +0.030305 1.23835 0.18626 +0.0303775 1.21669 0.14011 +0.03045 1.11575 0.0358468 +0.0305225 1.25463 0.0997706 +0.030595 1.15037 0.145984 +0.0306675 1.19567 0.0511482 +0.03074 1.19393 0.116036 +0.0308125 1.22277 0.114371 +0.030885 1.20986 0.212676 +0.0309575 1.18063 0.109206 +0.03103 1.16934 0.0557324 +0.0311025 1.22957 0.0341267 +0.031175 1.30559 0.150167 +0.0312475 1.21165 0.0569098 +0.03132 1.22978 0.142673 +0.0313925 1.15395 0.0769457 +0.031465 1.14946 0.0704118 +0.0315375 1.09021 -0.000751503 +0.03161 1.05637 0.155795 +0.0316825 1.13809 0.0439463 +0.031755 1.15732 0.014145 +0.0318275 1.10236 0.083609 +0.0319 1.12247 0.0641367 +0.0319725 1.09672 0.0415373 +0.032045 1.15679 0.0638987 +0.0321175 1.1647 0.0713971 +0.03219 1.14537 0.0557073 +0.0322625 1.14131 0.0520166 +0.032335 1.07999 0.136761 +0.0324075 1.14627 0.0411532 +0.03248 1.13964 0.111536 +0.0325525 1.19491 0.101837 +0.032625 1.05242 0.0726412 +0.0326975 1.1806 0.0784028 +0.03277 1.05481 0.0341517 +0.0328425 1.06404 0.0436123 +0.032915 0.994424 0.063619 +0.0329875 1.09938 0.177539 +0.03306 1.11144 0.107002 +0.0331325 1.13387 0.115815 +0.033205 1.10216 0.0850953 +0.0332775 1.10054 0.013811 +0.03335 1.23475 0.07867 +0.0334225 1.02475 0.0272713 +0.033495 0.979239 0.103269 +0.0335675 1.17024 0.0155436 +0.03364 1.00247 0.172224 +0.0337125 1.12013 0.230294 +0.033785 0.972818 0.151971 +0.0338575 1.04505 0.140899 +0.03393 1.00864 0.0892996 +0.0340025 1.21319 0.028553 +0.034075 1.02891 -0.0228875 +0.0341475 1.0453 0.015339 +0.03422 1.12714 0.0549141 +0.0342925 1.02329 0.222804 +0.034365 1.1146 0.0637276 +0.0344375 1.05088 0.136386 +0.03451 1.03678 0.0137943 +0.0345825 1.14253 0.0881473 +0.034655 1.08013 0.0760188 +0.0347275 0.994779 0.0516075 +0.0348 1.07949 0.100505 +0.0348725 1.01345 0.019155 +0.034945 1.15296 0.0715724 +0.0350175 1.02701 0.127464 +0.03509 1.11027 0.0333626 +0.0351625 1.02023 0.031463 +0.035235 1.00323 0.0670217 +0.0353075 1.09768 0.0404769 +0.03538 1.0421 0.119598 +0.0354525 1.06831 0.0960464 +0.035525 1.11521 0.0714806 +0.0355975 1.0448 0.0446394 +0.03567 1.10443 0.125944 +0.0357425 0.968184 0.123435 +0.035815 1.04392 0.0634103 +0.0358875 0.965119 0.0422554 +0.03596 1.02987 -0.0764447 +0.0360325 1.08629 0.111594 +0.036105 1.0473 0.125063 +0.0361775 1.12761 0.153674 +0.03625 1.02102 0.128244 +0.0363225 0.995977 0.0652431 +0.036395 1.0424 0.182891 +0.0364675 0.99642 0.0405478 +0.03654 0.96451 -0.0273297 +0.0366125 1.01981 -0.0149633 +0.036685 0.986491 0.0296218 +0.0367575 1.02773 -0.0282607 +0.03683 0.9407 0.121234 +0.0369025 1.2263 0.0692887 +0.036975 1.07309 0.0499416 +0.0370475 1.00298 0.0122996 +0.03712 1.09199 -0.00816635 +0.0371925 0.988888 0.136828 +0.037265 0.963884 0.0738562 +0.0373375 0.983757 -0.0561165 +0.03741 0.91003 -0.0175184 +0.0374825 1.07113 0.120161 +0.037555 1.03597 -0.00908068 +0.0376275 1.01538 -0.0329535 +0.0377 0.983811 -0.0152889 +0.0377725 0.962226 0.00337759 +0.037845 0.991906 0.146635 +0.0379175 0.922405 -0.00852122 +0.03799 0.96828 -0.0382474 +0.0380625 0.940362 -0.0204701 +0.038135 1.0015 0.022829 +0.0382075 1.01046 0.0734136 +0.03828 1.05035 0.0199107 +0.0383525 0.98971 0.146347 +0.038425 1.02708 0.0408735 +0.0384975 1.01981 0.0693305 +0.03857 0.994161 -0.00430027 +0.0386425 0.951897 0.0613854 +0.038715 1.01298 0.0406021 +0.0387875 1.01476 -0.0102288 +0.03886 1.00088 0.103094 +0.0389325 0.919708 -0.000154474 +0.039005 0.921561 -0.0121034 +0.0390775 0.959934 0.0344189 +0.03915 0.890144 0.0785072 +0.0392225 0.925177 -0.00440882 +0.039295 0.891698 0.127129 +0.0393675 0.985552 0.0426646 +0.03944 1.01864 -0.0245324 +0.0395125 0.987731 0.134716 +0.039585 0.989147 0.0082582 +0.0396575 0.978187 0.0320433 +0.03973 0.879515 0.0846236 +0.0398025 0.908306 0.0636649 +0.039875 1.09933 0.0200151 +0.0399475 0.864869 0.0434787 +0.04002 1.00402 0.115419 +0.0400925 0.860907 0.101148 +0.040165 0.87855 0.0972614 +0.0402375 0.989681 0.116583 +0.04031 0.916852 0.0571895 +0.0403825 0.912982 0.0784821 +0.040455 0.927064 0.056701 +0.0405275 0.898975 0.0706205 +0.0406 0.910928 0.0451111 +0.0406725 0.883147 -0.0441926 +0.040745 0.824404 -0.0674099 +0.0408175 0.919065 0.000192052 +0.04089 0.953413 0.0750502 +0.0409625 0.814443 0.0518997 +0.041035 0.87979 0.096727 +0.0411075 0.905655 -0.0157064 +0.04118 0.868839 0.0202614 +0.0412525 0.894006 0.11091 +0.041325 0.797058 0.074211 +0.0413975 0.908277 0.0904519 +0.04147 0.95224 0.0328407 +0.0415425 0.914635 0.0507975 +0.041615 0.880646 0.060208 +0.0416875 0.886629 -0.0495951 +0.04176 0.880149 0.0633309 +0.0418325 0.865412 0.0187459 +0.041905 0.928876 -0.0569264 +0.0419775 0.856151 0.024332 +0.04205 0.865842 0.077288 +0.0421225 0.860948 0.0525427 +0.042195 0.866568 0.0101411 +0.0422675 0.85775 0.158534 +0.04234 0.837059 -0.0576153 +0.0424125 0.825811 0.047971 +0.042485 0.781418 0.0223614 +0.0425575 0.918727 0.00453825 +0.04263 0.883539 0.0606381 +0.0427025 0.902056 0.0567093 +0.042775 0.837744 0.116842 +0.0428475 0.915253 -0.047374 +0.04292 0.906131 0.0445308 +0.0429925 0.936253 0.0712092 +0.043065 0.847947 0.107165 +0.0431375 0.897388 -0.0278808 +0.04321 0.79239 0.0908402 +0.0432825 0.79654 0.0535405 +0.043355 0.81395 0.0426479 +0.0434275 0.819336 0.0145583 +0.0435 0.825728 0.0335338 +0.0435725 0.898019 0.00231714 +0.043645 0.760105 0.125965 +0.0437175 0.828287 0.0595776 +0.04379 0.925979 0.0191174 +0.0438625 0.889823 0.0567803 +0.043935 0.855609 0.148535 +0.0440075 0.814426 0.00682616 +0.04408 0.79925 0.0732633 +0.0441525 0.84811 0.0685915 +0.044225 0.842628 0.121606 +0.0442975 0.792474 0.0775135 +0.04437 0.820989 0.0913328 +0.0444425 0.676283 0.034039 +0.044515 0.915549 0.128307 +0.0445875 0.694528 0.0302105 +0.04466 0.858598 -0.0261857 +0.0447325 0.802352 0.000709756 +0.044805 0.830742 -0.011427 +0.0448775 0.855346 0.0644248 +0.04495 0.795906 0.115126 +0.0450225 0.755128 0.104459 +0.045095 0.765441 0.116717 +0.0451675 0.737773 0.0954828 +0.04524 0.895814 0.0155895 +0.0453125 0.806114 0.142915 +0.045385 0.77377 0.0862059 +0.0454575 0.750419 0.0748958 +0.04553 0.834779 0.104334 +0.0456025 0.770321 0.00118571 +0.045675 0.826066 0.0953993 +0.0457475 0.742895 -0.0090765 +0.04582 0.79897 0.105227 +0.0458925 0.753993 -0.0277138 +0.045965 0.8325 0.0142201 +0.0460375 0.770547 0.102944 +0.04611 0.949889 0.16521 +0.0461825 0.782011 0.0946979 +0.046255 0.756736 -0.000976954 +0.0463275 0.80163 0.0981089 +0.0464 0.807024 0.10053 +0.0464725 0.758552 0.00565716 +0.046545 0.802352 0.0512443 +0.0466175 0.756431 0.049712 +0.04669 0.77544 -0.0238143 +0.0467625 0.766284 0.102142 +0.046835 0.77511 0.0658026 +0.0469075 0.76871 0.0204743 +0.04698 0.736967 0.128562 +0.0470525 0.755412 0.00979461 +0.047125 0.795342 -0.0552314 +0.0471975 0.663537 0.0405562 +0.04727 0.804703 0.0843063 +0.0473425 0.909408 0.0405854 +0.047415 0.720463 0.00595777 +0.0474875 0.736332 0.128324 +0.04756 0.688194 0.0507391 +0.0476325 0.759783 0.0986182 +0.047705 0.767783 0.0542795 +0.0477775 0.734595 0.114158 +0.04785 0.728588 0.11855 +0.0479225 0.753621 0.0386524 +0.047995 0.819733 0.0809871 +0.0480675 0.796582 0.0625419 +0.04814 0.791885 -0.0711174 +0.0482125 0.738094 0.0467519 +0.048285 0.714631 -0.000404976 +0.0483575 0.747822 0.013573 +0.04843 0.786011 -0.0341809 +0.0485025 0.789284 0.0525677 +0.048575 0.817395 -0.082511 +0.0486475 0.681769 0.088594 +0.04872 0.797125 0.0641868 +0.0487925 0.787326 0.104104 +0.048865 0.768898 -0.0181071 +0.0489375 0.797171 0.0898591 +0.04901 0.775578 0.158722 +0.0490825 0.641513 0.107173 +0.049155 0.707938 0.12032 +0.0492275 0.706368 0.0413995 +0.0493 0.691184 0.0791084 +0.0493725 0.70917 0.0423681 +0.049445 0.810673 0.133922 +0.0495175 0.863529 0.0728333 +0.04959 0.666422 0.0942219 +0.0496625 0.76509 0.111757 +0.049735 0.749609 0.0912201 +0.0498075 0.672772 0.1081 +0.04988 0.795083 0.0822229 +0.0499525 0.71858 0.124023 +0.050025 0.790545 -0.0107256 +0.0500975 0.687309 -0.00129008 +0.05017 0.676571 0.136866 +0.0502425 0.592695 -0.0368571 +0.050315 0.754682 0.111047 +0.0503875 0.756339 0.066099 +0.05046 0.727598 0.168629 +0.0505325 0.732704 0.0506138 +0.050605 0.673807 0.146581 +0.0506775 0.750995 0.108872 +0.05075 0.683994 0.00940633 +0.0508225 0.654243 0.0110763 +0.050895 0.761458 0.0658401 +0.0509675 0.747367 -0.00267203 +0.05104 0.7016 0.0675811 +0.0511125 0.709107 0.0640908 +0.051185 0.741772 0.0437793 +0.0512575 0.632783 -0.0821478 +0.05133 0.746031 0.111327 +0.0514025 0.682913 0.0780187 +0.051475 0.680546 0.0273756 +0.0515475 0.712635 0.0377756 +0.05162 0.780479 0.0666877 +0.0516925 0.724041 0.0101244 +0.051765 0.69925 -0.047779 +0.0518375 0.631243 0.10038 +0.05191 0.740582 -0.010425 +0.0519825 0.68237 0.0674809 +0.052055 0.812334 0.00426688 +0.0521275 0.701041 0.0639781 +0.0522 0.686516 0.0631848 +0.0522725 0.60823 0.0597279 +0.052345 0.724145 0.0731297 +0.0524175 0.655207 0.0458626 +0.05249 0.633656 -0.0547346 +0.0525625 0.747388 0.0300936 +0.052635 0.656765 0.0393872 +0.0527075 0.630946 0.0414789 +0.05278 0.617482 0.00247162 +0.0528525 0.754748 0.0739021 +0.052925 0.629681 0.0700152 +0.0529975 0.765499 0.0470191 +0.05307 0.651425 0.0619448 +0.0531425 0.785694 -0.00344022 +0.053215 0.640954 -0.0592018 +0.0532875 0.698786 0.0660739 +0.05336 0.706898 0.0777765 +0.0534325 0.681765 0.0121702 +0.053505 0.643396 0.0952532 +0.0535775 0.658806 0.0115565 +0.05365 0.738002 -0.0623749 +0.0537225 0.586098 0.0193304 +0.053795 0.649751 0.0715223 +0.0538675 0.652101 0.0661115 +0.05394 0.63093 0.0309244 +0.0540125 0.644549 -0.0271418 +0.054085 0.619778 0.0381347 +0.0541575 0.572905 0.0782859 +0.05423 0.67296 0.128257 +0.0543025 0.652393 0.132582 +0.054375 0.672651 0.0712176 +0.0544475 0.580015 0.128215 +0.05452 0.634992 0.039049 +0.0545925 0.574191 0.0835548 +0.054665 0.757838 0.0731798 +0.0547375 0.661052 -0.01374 +0.05481 0.683994 0.0436415 +0.0548825 0.594022 0.0891117 +0.054955 0.623619 -0.00279309 +0.0550275 0.635076 0.0603041 +0.0551 0.657604 0.112571 +0.0551725 0.598511 0.136056 +0.055245 0.683355 -0.0450485 +0.0553175 0.6286 -0.00445893 +0.05539 0.671415 0.0242569 +0.0554625 0.630988 -0.0866944 +0.055535 0.727306 -0.0212759 +0.0556075 0.673841 0.116262 +0.05568 0.632587 0.11483 +0.0557525 0.596427 0.00010437 +0.055825 0.643229 0.0434787 +0.0558975 0.649446 -0.0437292 +0.05597 0.572049 0.052384 +0.0560425 0.413724 0.105077 +0.056115 0.661215 0.0545133 +0.0561875 0.687284 0.0261941 +0.05626 0.630045 -0.0424851 +0.0563325 0.606113 -0.00767787 +0.056405 0.557541 0.0222362 +0.0564775 0.617895 0.0256555 +0.05655 0.55165 0.0427982 +0.0566225 0.622204 -0.00574484 +0.056695 0.644139 0.0442553 +0.0567675 0.558238 -0.0111056 +0.05684 0.590561 0.0937293 +0.0569125 0.551041 0.0423264 +0.056985 0.544265 -0.0867361 +0.0570575 0.588528 -0.0258518 +0.05713 0.621653 -0.0203449 +0.0572025 0.632028 0.0491108 +0.057275 0.693092 0.103386 +0.0573475 0.621411 0.0749709 +0.05742 0.639251 0.0616526 +0.0574925 0.588637 -0.0529894 +0.057565 0.616922 0.0856465 +0.0576375 0.484704 0.0328574 +0.05771 0.585881 0.11885 +0.0577825 0.525251 0.0221819 +0.057855 0.620567 0.0816426 +0.0579275 0.553971 0.0695267 +0.058 0.562301 0.0145207 +0.0580725 0.646194 0.0225368 +0.058145 0.569766 0.0092435 +0.0582175 0.629936 0.0277263 +0.05829 0.578746 0.040122 +0.0583625 0.668171 0.160012 +0.058435 0.645797 0.0838345 +0.0585075 0.583238 0.0391325 +0.05858 0.57807 -0.0612393 +0.0586525 0.529435 0.037976 +0.058725 0.496235 0.0466976 +0.0587975 0.555913 0.0927398 +0.05887 0.573886 0.130958 +0.0589425 0.60299 0.121556 +0.059015 0.546327 0.0272963 +0.0590875 0.548051 0.0182866 +0.05916 0.547471 -0.00223364 +0.0592325 0.580992 -0.0115481 +0.059305 0.698098 0.0304192 +0.0593775 0.548527 0.0589221 +0.05945 0.524805 0.0549141 +0.0595225 0.554084 0.0524884 +0.059595 0.633009 -0.0638695 +0.0596675 0.512576 0.0749417 +0.05974 0.663846 0.149412 +0.0598125 0.536612 0.0267911 +0.059885 0.626579 -0.0248372 +0.0599575 0.606259 0.100267 +0.06003 0.570016 -0.0107799 +0.0601025 0.609403 0.140001 +0.060175 0.53138 0.028816 +0.0602475 0.548803 0.0256388 +0.06032 0.633259 0.0162534 +0.0603925 0.528838 0.0992946 +0.060465 0.581873 -0.013001 +0.0605375 0.479272 -0.000939384 +0.06061 0.579247 0.0729544 +0.0606825 0.586249 0.050714 +0.060755 0.619862 0.123113 +0.0608275 0.531564 0.0348406 +0.0609 0.547788 0.0593354 +0.0609725 0.597066 0.132486 +0.061045 0.565378 0.03998 +0.0611175 0.533338 0.109711 +0.06119 0.483355 0.104033 +0.0612625 0.652022 0.00994909 +0.061335 0.605308 0.116617 +0.0614075 0.456727 0.0632516 +0.06148 0.47971 0.0298055 +0.0615525 0.583088 -0.00420425 +0.061625 0.573402 0.0474241 +0.0616975 0.524592 -0.00222946 +0.06177 0.514831 -0.0864021 +0.0618425 0.620208 0.0722864 +0.061915 0.55137 0.106797 +0.0619875 0.532883 -0.0258601 +0.06206 0.50881 0.103825 +0.0621325 0.601032 0.102213 +0.062205 0.583055 0.0342477 +0.0622775 0.584403 0.0386106 +0.06235 0.619219 0.131125 +0.0624225 0.52926 0.115915 +0.062495 0.668058 0.029459 +0.0625675 0.500494 -0.00485972 +0.06264 0.455775 0.031822 +0.0627125 0.522847 0.0143454 +0.062785 0.590503 0.0458835 +0.0628575 0.579531 0.00154059 +0.06293 0.636996 0.026382 +0.0630025 0.658598 0.0439839 +0.063075 0.581777 0.106818 +0.0631475 0.576045 0.027313 +0.06322 0.457265 0.114475 +0.0632925 0.508756 0.0944098 +0.063365 0.542311 0.15367 +0.0634375 0.540035 0.103282 +0.06351 0.577134 0.0627172 +0.0635825 0.574154 0.0620409 +0.063655 0.574496 -0.052597 +0.0637275 0.622442 0.124771 +0.0638 0.542632 0.012429 +0.0638725 0.438945 0.0764322 +0.063945 0.490177 -0.0492945 +0.0640175 0.441166 0.00407065 +0.06409 0.542523 0.023543 +0.0641625 0.507666 -0.0418337 +0.064235 0.541638 0.112951 +0.0643075 0.542799 0.0720901 +0.06438 0.571569 -0.00810372 +0.0644525 0.531493 0.0448314 +0.064525 0.44183 0.0904227 +0.0645975 0.527581 0.0107465 +0.06467 0.534938 -0.022161 +0.0647425 0.557637 0.0354961 +0.064815 0.545296 -0.0170299 +0.0648875 0.56013 0.101349 +0.06496 0.571423 0.0752715 +0.0650325 0.448519 0.0120241 +0.065105 0.485793 0.0464054 +0.0651775 0.459299 0.0848908 +0.06525 0.541217 0.0490858 +0.0653225 0.523085 0.00327322 +0.065395 0.480846 0.0525552 +0.0654675 0.571043 -0.0742278 +0.06554 0.469285 0.02872 +0.0656125 0.514697 0.110997 +0.065685 0.534219 0.116659 +0.0657575 0.620981 0.0967186 +0.06583 0.521248 0.0138152 +0.0659025 0.491346 0.0322771 +0.065975 0.550268 0.0221569 +0.0660475 0.447913 0.0720275 +0.06612 0.506714 -0.0358384 +0.0661925 0.632679 0.107373 +0.066265 0.636082 0.00250501 +0.0663375 0.573511 -0.0176687 +0.06641 0.412033 0.0484553 +0.0664825 0.468509 0.00829577 +0.066555 0.441359 0.0630721 +0.0666275 0.519536 -0.0530813 +0.0667 0.451437 -0.00950653 +0.0667725 0.416722 -0.0280019 +0.066845 0.396673 0.0167752 +0.0669175 0.495091 -0.0473573 +0.06699 0.55838 -0.0429193 +0.0670625 0.49183 0.0459587 +0.067135 0.531977 0.111135 +0.0672075 0.432211 0.0451278 +0.06728 0.453758 0.0581289 +0.0673525 0.495083 -0.11716 +0.067425 0.385597 0.0169422 +0.0674975 0.555057 0.0201069 +0.06757 0.421732 0.145475 +0.0676425 0.4496 0.0178983 +0.067715 0.373397 0.0435163 +0.0677875 0.422988 -0.0136816 +0.06786 0.424157 0.104676 +0.0679325 0.379668 0.0357967 +0.068005 0.49937 0.163744 +0.0680775 0.516989 0.0809955 +0.06815 0.460017 -0.0262818 +0.0682225 0.495012 0.112467 +0.068295 0.52321 0.0861099 +0.0683675 0.484265 0.0168212 +0.06844 0.42526 0.0430111 +0.0685125 0.450247 0.031797 +0.068585 0.463545 0.0179276 +0.0686575 0.449951 -0.019656 +0.06873 0.497792 0.00490983 +0.0688025 0.49937 -0.0517954 +0.068875 0.492144 -0.00503508 +0.0689475 0.364083 -0.124119 +0.06902 0.331468 0.094389 +0.0690925 0.504685 0.128774 +0.069165 0.371606 -0.113131 +0.0692375 0.418317 0.0239271 +0.06931 0.47169 0.0434704 +0.0693825 0.482679 0.0727039 +0.069455 0.357136 0.0562585 +0.0695275 0.330278 0.0974743 +0.0696 0.439968 -0.0935873 +0.0696725 0.508347 0.052622 +0.069745 0.468872 -0.0552356 +0.0698175 0.472863 -0.00357382 +0.06989 0.457691 0.127288 +0.0699625 0.485656 -0.0156062 +0.070035 0.38791 0.0084753 +0.0701075 0.477648 -0.0701362 +0.07018 0.467482 0.00594523 +0.0702525 0.405103 0.0881807 +0.070325 0.318003 0.0229543 +0.0703975 0.447037 0.0949108 +0.07047 0.422341 0.0428733 +0.0705425 0.338753 0.0677773 +0.070615 0.44722 -0.027718 +0.0706875 0.444198 0.00841267 +0.07076 0.390536 0.0546636 +0.0708325 0.425139 0.100622 +0.070905 0.482324 0.024474 +0.0709775 0.384111 0.0347821 +0.07105 0.440068 -0.0202029 +0.0711225 0.420379 -0.00944391 +0.071195 0.464805 0.0625544 +0.0712675 0.511073 -0.062212 +0.07134 0.513424 0.0383601 +0.0714125 0.57928 0.11898 +0.071485 0.380098 0.145466 +0.0715575 0.4831 -0.0429151 +0.07163 0.486394 0.150827 +0.0717025 0.384056 -0.0240398 +0.071775 0.477047 -0.0189003 +0.0718475 0.339555 0.0844858 +0.07192 0.345905 -0.0045967 +0.0719925 0.473515 0.0414747 +0.072065 0.471849 0.0255804 +0.0721375 0.421865 0.0769624 +0.07221 0.490507 -0.0529143 +0.0722825 0.419799 0.0688962 +0.072355 0.383831 0.0349533 +0.0724275 0.379986 0.141337 +0.0725 0.368208 -0.00100201 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/8/data-05500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/8/data-05500um.dat new file mode 100644 index 0000000..99353a4 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/8/data-05500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 2.44815 0.140673 +0.000145 3.15692 0.117602 +0.0002175 3.08615 0.160935 +0.00029 3.11092 0.184586 +0.0003625 2.97062 0.156939 +0.000435 2.98542 0.144047 +0.0005075 2.96554 0.0675728 +0.00058 2.93645 0.131835 +0.0006525 2.91127 0.123213 +0.000725 2.89428 0.174512 +0.0007975 2.89028 0.239847 +0.00087 2.98008 0.0935748 +0.0009425 2.94003 0.145237 +0.001015 2.92025 0.122078 +0.0010875 2.98017 0.183083 +0.00116 2.94441 0.119239 +0.0012325 2.94029 0.144573 +0.001305 2.8601 0.160342 +0.0013775 2.92568 0.111047 +0.00145 2.94022 0.187388 +0.0015225 2.76008 0.19069 +0.001595 2.89993 0.14173 +0.0016675 2.92035 0.140669 +0.00174 2.79094 0.17728 +0.0018125 2.75617 0.177831 +0.001885 2.82238 0.223902 +0.0019575 2.84731 0.195767 +0.00203 2.78117 0.1227 +0.0021025 2.70028 0.174032 +0.002175 2.75668 0.195629 +0.0022475 2.66178 0.14795 +0.00232 2.79298 0.144802 +0.0023925 2.81749 0.1226 +0.002465 2.73729 0.128349 +0.0025375 2.76035 0.099925 +0.00261 2.69054 0.119681 +0.0026825 2.68812 0.244431 +0.002755 2.69681 0.222082 +0.0028275 2.83354 0.139559 +0.0029 2.66917 0.0684787 +0.0029725 2.65571 0.148493 +0.003045 2.76929 0.169811 +0.0031175 2.67146 0.206902 +0.00319 2.62973 0.145312 +0.0032625 2.74097 0.206889 +0.003335 2.65932 0.0986433 +0.0034075 2.64465 0.1061 +0.00348 2.67955 0.180966 +0.0035525 2.63129 0.159119 +0.003625 2.6202 0.0488895 +0.0036975 2.59119 0.0819808 +0.00377 2.71261 0.120149 +0.0038425 2.54517 0.125697 +0.003915 2.61138 0.110826 +0.0039875 2.58718 0.178294 +0.00406 2.49703 0.108976 +0.0041325 2.49896 0.117001 +0.004205 2.55693 0.144564 +0.0042775 2.52162 0.161816 +0.00435 2.58012 0.1687 +0.0044225 2.54737 0.282403 +0.004495 2.5766 0.11913 +0.0045675 2.51581 0.139007 +0.00464 2.57527 0.139943 +0.0047125 2.54948 0.14623 +0.004785 2.51085 0.140536 +0.0048575 2.53417 0.100422 +0.00493 2.50671 0.0272838 +0.0050025 2.49315 0.189358 +0.005075 2.56025 0.2142 +0.0051475 2.41224 0.222383 +0.00522 2.5438 0.19145 +0.0052925 2.4458 0.182231 +0.005365 2.49271 0.212016 +0.0054375 2.54815 0.124303 +0.00551 2.42142 0.2205 +0.0055825 2.41244 0.0582959 +0.005655 2.40885 0.226274 +0.0057275 2.45455 0.20223 +0.0058 2.46979 0.0733009 +0.0058725 2.34884 0.129117 +0.005945 2.49879 0.0520417 +0.0060175 2.5147 0.100998 +0.00609 2.41398 0.184678 +0.0061625 2.38839 0.152535 +0.006235 2.41229 0.164254 +0.0063075 2.40675 0.0939965 +0.00638 2.47063 0.213273 +0.0064525 2.43236 0.118934 +0.006525 2.36038 0.0852122 +0.0065975 2.38379 0.0871161 +0.00667 2.33822 0.10218 +0.0067425 2.31488 0.0835965 +0.006815 2.40174 0.0948232 +0.0068875 2.36423 0.114675 +0.00696 2.2716 0.055173 +0.0070325 2.28499 0.169969 +0.007105 2.28219 0.0823858 +0.0071775 2.346 0.0925352 +0.00725 2.30109 0.111239 +0.0073225 2.3749 0.108501 +0.007395 2.37041 0.158526 +0.0074675 2.27308 0.193262 +0.00754 2.27519 0.246168 +0.0076125 2.33685 0.0962719 +0.007685 2.29911 0.105925 +0.0077575 2.38169 0.147295 +0.00783 2.21159 0.222433 +0.0079025 2.22334 0.160204 +0.007975 2.22102 0.222687 +0.0080475 2.24276 0.0952699 +0.00812 2.19041 0.0339429 +0.0081925 2.24925 0.0798557 +0.008265 2.31521 0.127622 +0.0083375 2.18533 0.161285 +0.00841 2.20691 0.117878 +0.0084825 2.27604 0.0999835 +0.008555 2.25179 0.0711716 +0.0086275 2.29572 0.0539956 +0.0087 2.29708 0.186573 +0.0087725 2.22549 0.172374 +0.008845 2.21415 0.100297 +0.0089175 2.20197 0.121635 +0.00899 2.19026 0.186185 +0.0090625 2.12421 0.153127 +0.009135 2.20952 0.100827 +0.0092075 2.14114 0.135968 +0.00928 2.21123 0.139922 +0.0093525 2.08685 0.120157 +0.009425 2.15643 0.141053 +0.0094975 2.08368 0.0714764 +0.00957 2.13138 0.154685 +0.0096425 2.11635 0.109866 +0.009715 2.16686 0.150004 +0.0097875 2.08334 0.119009 +0.00986 2.12188 0.246393 +0.0099325 2.08787 0.161573 +0.010005 2.1772 0.128257 +0.0100775 2.124 0.191454 +0.01015 2.06674 0.0655354 +0.0102225 2.20165 0.179969 +0.010295 2.11645 0.0691259 +0.0103675 2.09762 0.215774 +0.01044 2.00335 0.149679 +0.0105125 2.16781 0.0255386 +0.010585 2.12505 0.146147 +0.0106575 2.03872 0.0225702 +0.01073 2.18889 0.0730921 +0.0108025 2.03937 0.0833168 +0.010875 2.12853 0.0888362 +0.0109475 2.01746 0.22184 +0.01102 2.0547 0.0285321 +0.0110925 2.06434 0.170842 +0.011165 2.08557 0.0776596 +0.0112375 2.06815 0.182499 +0.01131 2.04248 0.247713 +0.0113825 2.0212 0.179171 +0.011455 2.07713 0.0868489 +0.0115275 2.02029 0.0719064 +0.0116 2.11363 0.104989 +0.0116725 2.09647 0.149265 +0.011745 2.01617 -0.0203658 +0.0118175 1.94929 0.171815 +0.01189 1.93031 0.174428 +0.0119625 2.03234 0.227146 +0.012035 1.9666 0.05453 +0.0121075 1.94109 0.182198 +0.01218 1.89748 0.12948 +0.0122525 1.90731 0.0176061 +0.012325 2.00242 0.197483 +0.0123975 2.05094 0.178708 +0.01247 1.94911 0.0463094 +0.0125425 1.93623 0.0330829 +0.012615 1.90803 0.191479 +0.0126875 1.9332 0.0508059 +0.01276 1.99176 0.131008 +0.0128325 1.9743 0.0480086 +0.012905 1.95903 0.170575 +0.0129775 1.98426 0.116938 +0.01305 1.86886 0.165235 +0.0131225 1.96822 0.0505554 +0.013195 1.88252 0.111189 +0.0132675 1.84434 0.0412117 +0.01334 1.8406 0.0228624 +0.0134125 1.92663 0.0444724 +0.013485 1.79 0.0153516 +0.0135575 1.92808 0.14289 +0.01363 1.94836 0.0989188 +0.0137025 1.86805 0.0358551 +0.013775 1.80733 0.0675519 +0.0138475 1.83793 0.204873 +0.01392 1.83617 0.181113 +0.0139925 1.90473 0.0850202 +0.014065 1.95627 0.139968 +0.0141375 1.79997 0.114304 +0.01421 1.87295 -0.00991568 +0.0142825 1.86781 0.277547 +0.014355 1.84428 0.133171 +0.0144275 1.84546 0.117694 +0.0145 1.87338 0.119406 +0.0145725 1.78337 0.0851997 +0.014645 1.82474 0.125697 +0.0147175 1.9084 0.214663 +0.01479 1.8444 -0.0257557 +0.0148625 1.7611 0.132223 +0.014935 1.86801 0.109745 +0.0150075 1.85265 0.146756 +0.01508 1.83735 0.150531 +0.0151525 1.91722 0.146598 +0.015225 1.80721 0.114746 +0.0152975 1.76814 0.129635 +0.01537 1.77525 0.0992946 +0.0154425 1.7931 0.226032 +0.015515 1.81736 0.145458 +0.0155875 1.71844 0.141984 +0.01566 1.89319 0.146898 +0.0157325 1.89529 0.0956081 +0.015805 1.78366 0.102246 +0.0158775 1.73673 0.131664 +0.01595 1.75643 0.0747872 +0.0160225 1.78528 0.10544 +0.016095 1.83545 0.0894875 +0.0161675 1.74268 0.0624375 +0.01624 1.73007 0.013406 +0.0163125 1.75853 0.149449 +0.016385 1.7477 0.093103 +0.0164575 1.69059 0.0719565 +0.01653 1.68219 0.0474784 +0.0166025 1.78474 0.0345316 +0.016675 1.66767 0.0213177 +0.0167475 1.75531 0.0820476 +0.01682 1.70882 0.104705 +0.0168925 1.76515 0.189429 +0.016965 1.74837 0.0953534 +0.0170375 1.72021 0.0304651 +0.01711 1.69007 0.165272 +0.0171825 1.72555 0.0823565 +0.017255 1.64618 0.185016 +0.0173275 1.65485 0.205453 +0.0174 1.70905 0.0747622 +0.0174725 1.62803 0.0821227 +0.017545 1.61816 0.0804402 +0.0176175 1.61809 0.107302 +0.01769 1.65167 0.0290999 +0.0177625 1.64574 0.0668338 +0.017835 1.78939 0.159411 +0.0179075 1.66388 0.0758268 +0.01798 1.71992 0.080198 +0.0180525 1.67867 0.13282 +0.018125 1.59068 -0.0107089 +0.0181975 1.6612 0.186352 +0.01827 1.65261 0.0727414 +0.0183425 1.59604 0.017961 +0.018415 1.67578 0.058609 +0.0184875 1.61395 0.0147003 +0.01856 1.6691 0.0323147 +0.0186325 1.54151 0.14365 +0.018705 1.63096 0.150163 +0.0187775 1.60961 0.0678817 +0.01885 1.71547 0.223531 +0.0189225 1.59805 0.0763153 +0.018995 1.55818 0.189008 +0.0190675 1.5746 0.133079 +0.01914 1.57771 0.0952615 +0.0192125 1.63352 0.195566 +0.019285 1.62394 0.00497663 +0.0193575 1.65554 0.003077 +0.01943 1.57158 0.0801396 +0.0195025 1.61417 0.0586591 +0.019575 1.50527 0.0049474 +0.0196475 1.58699 0.115285 +0.01972 1.45791 0.0617319 +0.0197925 1.58704 0.0402639 +0.019865 1.64111 0.0885815 +0.0199375 1.5333 0.157056 +0.02001 1.61898 0.11063 +0.0200825 1.5082 0.120491 +0.020155 1.53422 0.077288 +0.0202275 1.57976 0.0928317 +0.0203 1.6411 0.0897338 +0.0203725 1.57634 0.0499959 +0.020445 1.64574 0.0390448 +0.0205175 1.56487 0.0570141 +0.02059 1.62801 0.178299 +0.0206625 1.56078 0.15071 +0.020735 1.44561 0.0816802 +0.0208075 1.53347 0.11637 +0.02088 1.53127 0.0906523 +0.0209525 1.5188 0.0887401 +0.021025 1.44113 0.0690382 +0.0210975 1.50022 0.0779853 +0.02117 1.47028 0.091099 +0.0212425 1.52651 0.173372 +0.021315 1.53272 0.124361 +0.0213875 1.39189 0.222044 +0.02146 1.47505 0.146468 +0.0215325 1.50648 0.0629844 +0.021605 1.50291 0.072157 +0.0216775 1.43736 0.160204 +0.02175 1.43357 0.0690841 +0.0218225 1.45568 0.136381 +0.021895 1.50454 0.105223 +0.0219675 1.41919 0.195884 +0.02204 1.46475 0.10296 +0.0221125 1.42256 0.170224 +0.022185 1.48832 0.0243529 +0.0222575 1.41536 0.113832 +0.02233 1.37377 0.152117 +0.0224025 1.40739 0.0515782 +0.022475 1.50917 0.0553859 +0.0225475 1.50013 0.116988 +0.02262 1.53096 0.0723782 +0.0226925 1.42104 0.086661 +0.022765 1.47486 0.0548682 +0.0228375 1.46496 0.160901 +0.02291 1.42299 0.114233 +0.0229825 1.49488 0.0813796 +0.023055 1.48323 0.12614 +0.0231275 1.56927 0.0843313 +0.0232 1.28677 0.191538 +0.0232725 1.42639 0.0814422 +0.023345 1.50452 -0.0494072 +0.0234175 1.46399 0.112989 +0.02349 1.46477 0.10382 +0.0235625 1.55476 0.0453115 +0.023635 1.45946 0.12753 +0.0237075 1.4316 -0.00190381 +0.02378 1.44725 0.0694975 +0.0238525 1.3493 0.065289 +0.023925 1.44654 0.032561 +0.0239975 1.39547 0.0480003 +0.02407 1.3744 0.074758 +0.0241425 1.38612 0.0790123 +0.024215 1.32649 0.179313 +0.0242875 1.35479 0.143934 +0.02436 1.44331 0.121998 +0.0244325 1.37952 0.03249 +0.024505 1.44089 0.167702 +0.0245775 1.34034 0.0685497 +0.02465 1.33761 0.219293 +0.0247225 1.38169 0.160864 +0.024795 1.276 0.195258 +0.0248675 1.3049 0.0281146 +0.02494 1.32252 0.0555236 +0.0250125 1.5009 0.129655 +0.025085 1.36941 0.0777682 +0.0251575 1.2978 0.0650636 +0.02523 1.3154 -0.0404643 +0.0253025 1.38834 0.148476 +0.025375 1.3316 -0.0170675 +0.0254475 1.2696 0.049641 +0.02552 1.39338 0.0382516 +0.0255925 1.31345 0.101161 +0.025665 1.43413 0.0380804 +0.0257375 1.3161 0.0234135 +0.02581 1.30757 -0.00182866 +0.0258825 1.37321 0.0867194 +0.025955 1.33564 0.0652389 +0.0260275 1.34903 0.0299182 +0.0261 1.32698 0.126211 +0.0261725 1.26299 0.0820392 +0.026245 1.23645 0.0995952 +0.0263175 1.1954 0.0316634 +0.02639 1.30098 0.0602832 +0.0264625 1.27422 0.0475243 +0.026535 1.3325 0.115439 +0.0266075 1.2984 0.0446227 +0.02668 1.30711 0.000847533 +0.0267525 1.22892 0.102409 +0.026825 1.33731 0.052597 +0.0268975 1.31923 0.0719357 +0.02697 1.31193 0.0455286 +0.0270425 1.3188 0.117949 +0.027115 1.30661 0.0515783 +0.0271875 1.18852 0.102889 +0.02726 1.23813 0.105323 +0.0273325 1.19785 0.0866944 +0.027405 1.15965 0.0919299 +0.0274775 1.33008 -0.00291834 +0.02755 1.16253 0.16298 +0.0276225 1.27428 0.184615 +0.027695 1.26969 0.137705 +0.0277675 1.22433 0.0523548 +0.02784 1.31538 0.0786783 +0.0279125 1.26994 0.0563503 +0.027985 1.18663 0.137425 +0.0280575 1.14428 0.0741526 +0.02813 1.3812 0.0417043 +0.0282025 1.22178 0.143529 +0.028275 1.36693 -0.00589096 +0.0283475 1.20991 0.088832 +0.02842 1.20889 0.0293796 +0.0284925 1.2174 0.0413954 +0.028565 1.19022 0.0918088 +0.0286375 1.25841 0.036711 +0.02871 1.25189 0.015051 +0.0287825 1.26808 0.112312 +0.028855 1.06899 0.0527556 +0.0289275 1.22515 0.0490774 +0.029 1.20435 0.196644 +0.0290725 1.15119 0.0137442 +0.029145 1.25984 0.0938504 +0.0292175 1.18857 0.117752 +0.02929 1.20872 0.0813587 +0.0293625 1.10915 0.0438712 +0.029435 1.19214 0.0414162 +0.0295075 1.155 0.0868238 +0.02958 1.19394 0.0600452 +0.0296525 1.21549 0.125864 +0.029725 1.10616 0.0416083 +0.0297975 1.19129 0.0724826 +0.02987 1.25315 0.130883 +0.0299425 1.31125 0.0448565 +0.030015 1.1272 0.111953 +0.0300875 1.18891 0.0449233 +0.03016 1.14135 0.052288 +0.0302325 1.2021 0.122658 +0.030305 1.1821 0.0348656 +0.0303775 1.21151 0.0294966 +0.03045 1.08269 0.174274 +0.0305225 1.26923 0.225501 +0.030595 1.08642 0.0849367 +0.0306675 1.08596 0.0256806 +0.03074 1.10541 0.00448398 +0.0308125 1.04523 0.0776847 +0.030885 1.09535 0.130841 +0.0309575 1.24514 0.185805 +0.03103 1.11573 -0.0440632 +0.0311025 1.04516 0.0874459 +0.031175 1.13468 0.0303984 +0.0312475 1.19291 0.0723907 +0.03132 1.13766 0.0651847 +0.0313925 1.19353 0.143717 +0.031465 1.15173 0.0740608 +0.0315375 1.09729 0.114901 +0.03161 1.2331 0.048472 +0.0316825 1.16676 0.123493 +0.031755 1.13605 0.0292544 +0.0318275 1.11127 0.0202781 +0.0319 1.15174 0.116871 +0.0319725 1.18785 0.151583 +0.032045 1.15373 0.0682366 +0.0321175 1.09609 0.213548 +0.03219 1.13997 0.0782066 +0.0322625 1.11044 0.013143 +0.032335 1.06492 0.0450944 +0.0324075 1.05515 0.101186 +0.03248 1.10332 0.0674934 +0.0325525 1.08272 0.104008 +0.032625 1.04956 0.0240941 +0.0326975 1.07826 0.0822981 +0.03277 1.12901 0.0924434 +0.0328425 1.08833 0.0585088 +0.032915 1.09403 0.116596 +0.0329875 1.08517 0.143074 +0.03306 1.01498 0.0338344 +0.0331325 1.08709 0.13636 +0.033205 1.12398 -0.011306 +0.0332775 1.06619 -0.0234052 +0.03335 1.0584 0.158267 +0.0334225 1.02218 0.0873958 +0.033495 1.07109 0.0955705 +0.0335675 1.06441 0.124182 +0.03364 1.11083 0.0664413 +0.0337125 1.11253 0.130115 +0.033785 1.00379 0.0618154 +0.0338575 1.02885 0.0999167 +0.03393 1.04942 0.0357257 +0.0340025 0.959537 0.055198 +0.034075 1.01264 0.00991569 +0.0341475 1.03594 0.0845234 +0.03422 1.17485 0.00491818 +0.0342925 1.03805 0.0894123 +0.034365 1.05316 0.0543254 +0.0344375 1.04208 0.120884 +0.03451 0.931055 0.0202196 +0.0345825 0.97539 -0.0290957 +0.034655 1.08108 0.116162 +0.0347275 1.02891 0.133313 +0.0348 1.0907 -0.00586591 +0.0348725 1.13804 -0.00742319 +0.034945 1.16228 0.100167 +0.0350175 0.989881 0.074282 +0.03509 0.936416 0.0243112 +0.0351625 0.967829 -0.0136231 +0.035235 1.07405 0.0385522 +0.0353075 0.981344 0.0576404 +0.03538 1.08573 0.0653516 +0.0354525 0.989831 0.0555696 +0.035525 1.03781 -0.00908903 +0.0355975 1.05065 0.101841 +0.03567 1.0855 0.0746327 +0.0357425 0.877895 0.0862936 +0.035815 0.983678 -0.0428733 +0.0358875 1.03863 0.12462 +0.03596 0.98169 0.0530896 +0.0360325 1.06626 0.00295592 +0.036105 1.04093 -0.0127839 +0.0361775 0.951818 0.0713011 +0.03625 1.08077 -0.0127338 +0.0363225 1.00568 0.0475661 +0.036395 0.924918 0.169694 +0.0364675 0.924542 0.017414 +0.03654 1.02066 -0.0261858 +0.0366125 0.872501 -0.0100326 +0.036685 0.980893 0.0743572 +0.0367575 0.94482 0.0546051 +0.03683 1.01508 0.0816718 +0.0369025 1.07106 0.0129217 +0.036975 1.04403 -0.0500335 +0.0370475 1.06803 0.118967 +0.03712 1.02111 0.0455913 +0.0371925 1.01843 0.0858635 +0.037265 0.958373 0.103528 +0.0373375 0.969069 0.0385856 +0.03741 0.940186 0.0928066 +0.0374825 0.969979 0.0371494 +0.037555 1.053 0.103703 +0.0376275 0.969386 0.102071 +0.0377 1.03717 0.0296928 +0.0377725 0.958744 0.0620534 +0.037845 0.927056 -0.0045466 +0.0379175 0.905567 0.111745 +0.03799 0.962193 0.0730379 +0.0380625 0.816096 0.232127 +0.038135 1.01872 0.109661 +0.0382075 0.922351 0.0449274 +0.03828 1.00044 0.0432449 +0.0383525 0.974396 -0.0236432 +0.038425 0.966618 -0.0393287 +0.0384975 0.935155 0.101662 +0.03857 0.936938 0.0544298 +0.0386425 1.00434 0.0198063 +0.038715 0.904289 0.236903 +0.0387875 0.907655 0.00387442 +0.03886 0.850895 0.102601 +0.0389325 0.848202 0.0646711 +0.039005 0.881711 0.0894207 +0.0390775 0.809779 0.0414538 +0.03915 0.943384 0.0288494 +0.0392225 0.916714 0.111636 +0.039295 0.910473 -0.0197437 +0.0393675 0.851408 0.10587 +0.03944 0.949363 0.10228 +0.0395125 0.922618 0.0616985 +0.039585 0.938608 0.0333376 +0.0396575 0.935189 0.0124917 +0.03973 0.917257 0.0853834 +0.0398025 0.990658 0.107774 +0.039875 0.833297 0.107428 +0.0399475 0.986834 0.0224909 +0.04002 1.00969 0.0654644 +0.0400925 0.933573 0.0272337 +0.040165 0.83237 0.0350452 +0.0402375 0.857187 0.0859804 +0.04031 0.865783 0.108847 +0.0403825 0.922058 0.0052146 +0.040455 0.862047 -0.058179 +0.0405275 0.83485 0.063189 +0.0406 0.900219 0.0784905 +0.0406725 0.86193 0.0677147 +0.040745 0.89915 0.0426145 +0.0408175 0.931749 0.0597863 +0.04089 0.889927 0.0986767 +0.0409625 0.97896 0.0380929 +0.041035 0.937481 0.0362601 +0.0411075 0.882533 0.0968397 +0.04118 0.825002 0.0699985 +0.0412525 0.861646 0.0690257 +0.041325 0.881072 0.0133976 +0.0413975 0.877569 0.154225 +0.04147 0.886926 0.0160697 +0.0415425 0.86089 0.0363227 +0.041615 0.954891 0.0866652 +0.0416875 0.903955 -0.0131513 +0.04176 0.837368 0.0193471 +0.0418325 0.886345 0.0253257 +0.041905 0.837681 0.062379 +0.0419775 0.770835 0.0376253 +0.04205 0.908665 0.108112 +0.0421225 0.864827 0.00253424 +0.042195 0.776538 0.039621 +0.0422675 0.866543 0.132624 +0.04234 0.762326 -0.0334252 +0.0424125 0.845451 0.0145834 +0.042485 0.796607 0.0393788 +0.0425575 0.883581 0.0666334 +0.04263 0.871599 0.024236 +0.0427025 0.889476 0.104472 +0.042775 0.820563 -0.0203658 +0.0428475 0.774738 0.0367527 +0.04292 0.751337 0.0708084 +0.0429925 0.881414 0.0692135 +0.043065 0.925824 0.119965 +0.0431375 0.836228 0.0418504 +0.04321 0.841067 0.107833 +0.0432825 0.775394 -0.0133517 +0.043355 0.813299 0.0761399 +0.0434275 0.768175 0.13669 +0.0435 0.812773 0.0482341 +0.0435725 0.791034 0.051453 +0.043645 0.832425 0.0584587 +0.0437175 0.798586 0.0401804 +0.04379 0.791643 0.0273756 +0.0438625 0.856222 0.0495074 +0.043935 0.832675 0.0250961 +0.0440075 0.814877 0.0721235 +0.04408 0.832371 0.0221777 +0.0441525 0.775532 0.0776722 +0.044225 0.826688 -0.00926439 +0.0442975 0.879732 0.0041625 +0.04437 0.756431 0.0367319 +0.0444425 0.859408 0.109452 +0.044515 0.794177 0.0579243 +0.0445875 0.733602 0.0049307 +0.04466 0.705308 0.0523799 +0.0447325 0.897852 0.0312125 +0.044805 0.834366 0.045466 +0.0448775 0.793255 -0.0475034 +0.04495 0.835694 0.173117 +0.0450225 0.737096 0.129342 +0.045095 0.762602 -0.0875419 +0.0451675 0.855546 0.122015 +0.04524 0.813203 0.0301395 +0.0453125 0.742077 0.027146 +0.045385 0.755483 0.0486683 +0.0454575 0.812439 -0.0372537 +0.04553 0.787689 0.131225 +0.0456025 0.774563 0.0332916 +0.045675 0.754656 0.140928 +0.0457475 0.841551 -0.0361056 +0.04582 0.85145 0.139321 +0.0458925 0.849985 0.0903141 +0.045965 0.732491 0.0333292 +0.0460375 0.799822 0.110004 +0.04611 0.799037 0.0887944 +0.0461825 0.746949 0.0834295 +0.046255 0.756944 0.0428316 +0.0463275 0.755483 0.106062 +0.0464 0.82473 -0.0123789 +0.0464725 0.793827 0.0122453 +0.046545 0.709099 0.0615148 +0.0466175 0.838516 0.0521669 +0.04669 0.759362 -0.0562167 +0.0467625 0.701053 0.0292669 +0.046835 0.662856 -0.0359052 +0.0469075 0.831126 0.113548 +0.04698 0.821515 0.0634604 +0.0470525 0.807905 -0.0379009 +0.047125 0.75565 0.0183618 +0.0471975 0.887122 -0.0192385 +0.04727 0.756523 0.0252004 +0.0473425 0.666927 0.019251 +0.047415 0.687873 0.0365983 +0.0474875 0.831928 0.0425435 +0.04756 0.846478 0.120299 +0.0476325 0.770768 0.0323397 +0.047705 0.791046 0.133542 +0.0477775 0.746098 0.0565799 +0.04785 0.677531 0.0910155 +0.0479225 0.647751 -0.00475953 +0.047995 0.74386 0.113222 +0.0480675 0.767658 0.0159027 +0.04814 0.736612 0.153833 +0.0482125 0.774897 0.00609136 +0.048285 0.801242 0.0480838 +0.0483575 0.784495 0.0571561 +0.04843 0.781039 0.0642328 +0.0485025 0.709412 -0.0126879 +0.048575 0.725665 0.0767328 +0.0486475 0.766438 0.0620868 +0.04872 0.749813 0.0436039 +0.0487925 0.770726 0.00793672 +0.048865 0.755262 0.0931782 +0.0489375 0.739146 -0.00805362 +0.04901 0.777602 0.202159 +0.0490825 0.769874 0.183463 +0.049155 0.646356 0.0368154 +0.0492275 0.652577 0.103248 +0.0493 0.777945 0.0672638 +0.0493725 0.685572 0.0630429 +0.049445 0.822 0.0971862 +0.0495175 0.820371 0.0314505 +0.04959 0.609516 0.0825569 +0.0496625 0.808322 0.0227247 +0.049735 0.687944 0.0812334 +0.0498075 0.750344 0.0867153 +0.04988 0.637618 0.124478 +0.0499525 0.583835 0.124044 +0.050025 0.679243 0.0102747 +0.0500975 0.71 0.0657358 +0.05017 0.671962 0.0969482 +0.0502425 0.712121 0.103474 +0.050315 0.793405 0.063786 +0.0503875 0.636691 0.0139571 +0.05046 0.68113 0.0363394 +0.0505325 0.706477 0.110646 +0.050605 0.757445 -0.0081747 +0.0506775 0.69624 -0.0779561 +0.05075 0.751955 -0.0194097 +0.0508225 0.609787 -0.0548139 +0.050895 0.639092 -0.0658861 +0.0509675 0.626717 0.0766075 +0.05104 0.640624 0.0305487 +0.0511125 0.647083 0.0683368 +0.051185 0.691242 0.132899 +0.0512575 0.633648 0.0676396 +0.05133 0.727197 0.0918965 +0.0514025 0.572909 -0.0311165 +0.051475 0.702093 0.0232549 +0.0515475 0.645484 0.0995827 +0.05162 0.725273 0.0957375 +0.0516925 0.667369 0.0932909 +0.051765 0.684132 -0.0258142 +0.0518375 0.688123 0.0210004 +0.05191 0.669114 0.0275468 +0.0519825 0.581117 0.140673 +0.052055 0.598506 0.0397087 +0.0521275 0.648519 -0.0387484 +0.0522 0.712677 0.0416083 +0.0522725 0.61339 0.0820935 +0.052345 0.612372 -0.0245533 +0.0524175 0.539689 -0.00234218 +0.05249 0.685643 0.0567135 +0.0525625 0.706944 -0.0307741 +0.052635 0.662522 0.170487 +0.0527075 0.692762 0.0349116 +0.05278 0.597692 -0.0203324 +0.0528525 0.676408 0.00541501 +0.052925 0.675602 0.144239 +0.0529975 0.808923 0.0657149 +0.05307 0.691918 0.0919758 +0.0531425 0.539897 0.0314087 +0.053215 0.658869 0.10466 +0.0532875 0.620676 0.0305486 +0.05336 0.66028 0.0706456 +0.0534325 0.662535 -0.0039955 +0.053505 0.644837 -0.000141953 +0.0535775 0.683431 0.107661 +0.05365 0.76041 0.0397838 +0.0537225 0.587651 0.040623 +0.053795 0.6515 0.0312208 +0.0538675 0.62263 0.0655771 +0.05394 0.591192 0.000889278 +0.0540125 0.693801 0.0429568 +0.054085 0.620455 0.0823482 +0.0541575 0.598987 0.0309536 +0.05423 0.594052 0.0733009 +0.0543025 0.739672 0.072587 +0.054375 0.689134 0.100113 +0.0544475 0.59133 0.0209378 +0.05452 0.675018 0.159636 +0.0545925 0.598273 0.0519874 +0.054665 0.685915 0.0440173 +0.0547375 0.561395 0.122758 +0.05481 0.65236 -0.0094606 +0.0548825 0.569715 -0.0413787 +0.054955 0.714368 -0.0203741 +0.0550275 0.622367 0.00688462 +0.0551 0.571724 0.024833 +0.0551725 0.670187 0.0715975 +0.055245 0.71198 0.0967311 +0.0553175 0.541434 0.00779894 +0.05539 0.566083 -0.0658485 +0.0554625 0.577615 -0.0127964 +0.055535 0.58589 -0.0237225 +0.0556075 0.623481 -0.0415164 +0.05568 0.687259 0.0120074 +0.0557525 0.674129 0.0507349 +0.055825 0.662768 -0.00371578 +0.0558975 0.676717 0.101294 +0.05597 0.569077 0.0400969 +0.0560425 0.715645 0.11417 +0.056115 0.616806 -0.0557616 +0.0561875 0.541822 0.025213 +0.05626 0.607842 0.0841059 +0.0563325 0.584487 0.0169756 +0.056405 0.517223 0.10329 +0.0564775 0.529844 0.0509854 +0.05655 0.732575 0.0469523 +0.0566225 0.577819 0.163427 +0.056695 0.647283 0.0418755 +0.0567675 0.525778 0.0781272 +0.05684 0.608418 0.0159486 +0.0569125 0.726638 -0.00923098 +0.056985 0.682345 -0.0762151 +0.0570575 0.53872 0.0532357 +0.05713 0.576103 -0.0386899 +0.0572025 0.521494 0.14879 +0.057275 0.623999 0.0204367 +0.0573475 0.572517 0.0887109 +0.05742 0.482457 0.0641242 +0.0574925 0.53619 0.160626 +0.057565 0.652051 0.020086 +0.0576375 0.563958 -0.02538 +0.05771 0.57602 0.0530353 +0.0577825 0.570216 0.0983009 +0.057855 0.650849 0.102084 +0.0579275 0.63462 0.0709003 +0.058 0.550807 0.0883435 +0.0580725 0.568166 0.00872162 +0.058145 0.48353 0.0499416 +0.0582175 0.61643 -0.00661742 +0.05829 0.753279 0.0227622 +0.0583625 0.563298 0.0999668 +0.058435 0.646018 -0.00673849 +0.0585075 0.565808 0.0382015 +0.05858 0.483647 -0.0140865 +0.0586525 0.602064 0.109928 +0.058725 0.545688 -0.00875503 +0.0587975 0.583401 0.0847363 +0.05887 0.606723 0.0805362 +0.0589425 0.641246 0.0097445 +0.059015 0.570601 0.107148 +0.0590875 0.688274 0.0880179 +0.05916 0.463586 0.0642954 +0.0592325 0.547104 0.0577615 +0.059305 0.519578 0.103875 +0.0593775 0.53399 0.0685622 +0.05945 0.5433 0.0328032 +0.0595225 0.577331 0.0124416 +0.059595 0.64358 0.108613 +0.0596675 0.575477 0.0500335 +0.05974 0.594607 0.0305278 +0.0598125 0.668121 0.0286073 +0.059885 0.539998 0.023472 +0.0599575 0.56701 0.048305 +0.06003 0.548206 0.109515 +0.0601025 0.578233 -0.00280979 +0.060175 0.480412 0.0792127 +0.0602475 0.566233 0.0713887 +0.06032 0.478813 0.106785 +0.0603925 0.535756 0.000371577 +0.060465 0.54244 0.0704076 +0.0605375 0.518525 -0.0194139 +0.06061 0.582157 0.0717019 +0.0606825 0.509716 0.080937 +0.060755 0.572254 0.0529685 +0.0608275 0.55494 0.000659655 +0.0609 0.526521 0.130119 +0.0609725 0.400523 -0.0108718 +0.061045 0.46539 0.061448 +0.0611175 0.482896 0.107039 +0.06119 0.504936 -0.000404976 +0.0612625 0.589969 0.043796 +0.061335 0.505119 0.0981339 +0.0614075 0.551521 0.000154474 +0.06148 0.604335 0.0476955 +0.0615525 0.519761 0.159181 +0.061625 0.497767 0.0915165 +0.0616975 0.439626 0.063928 +0.06177 0.587468 0.00271794 +0.0618425 0.454664 0.0335129 +0.061915 0.530057 0.0911575 +0.0619875 0.570409 0.1001 +0.06206 0.42979 0.0150802 +0.0621325 0.446335 0.074353 +0.062205 0.594273 -0.00114396 +0.0622775 0.484169 -0.0536491 +0.06235 0.455658 -0.0623331 +0.0624225 0.59839 0.0260605 +0.062495 0.54616 0.0130762 +0.0625675 0.588403 0.0148965 +0.06264 0.517891 0.034899 +0.0627125 0.434691 0.121631 +0.062785 0.597408 0.0770668 +0.0628575 0.480119 0.00304359 +0.06293 0.546147 0.0617361 +0.0630025 0.539897 0.0772505 +0.063075 0.531318 0.0237976 +0.0631475 0.491379 0.0049641 +0.06322 0.562004 0.104747 +0.0632925 0.481622 0.0351245 +0.063365 0.495083 -0.00706832 +0.0634375 0.491826 0.0988687 +0.06351 0.472604 0.0271752 +0.0635825 0.534261 0.117022 +0.063655 0.522154 0.00186624 +0.0637275 0.480028 0.0745367 +0.0638 0.522325 -0.00140281 +0.0638725 0.526287 -0.0959045 +0.063945 0.483092 0.0234177 +0.0640175 0.569031 0.0783819 +0.06409 0.510117 -0.0591559 +0.0641625 0.444043 0.0742236 +0.064235 0.491334 0.0169422 +0.0643075 0.593459 0.0867528 +0.06438 0.554151 0.0516325 +0.0644525 0.462288 -0.0586173 +0.064525 0.482992 -0.00617904 +0.0645975 0.545304 0.0270416 +0.06467 0.448373 0.100472 +0.0647425 0.531861 0.0778809 +0.064815 0.442999 0.0865984 +0.0648875 0.560297 0.133012 +0.06496 0.394511 0.146627 +0.0650325 0.56716 -0.0146794 +0.065105 0.443029 -0.0255345 +0.0651775 0.522367 0.214463 +0.06525 0.494991 -0.0082582 +0.0653225 0.484178 -0.0319389 +0.065395 0.448352 0.0975411 +0.0654675 0.412818 0.0444849 +0.06554 0.496703 0.0338678 +0.0656125 0.555245 0.0856089 +0.065685 0.521465 0.0791125 +0.0657575 0.342941 -0.0492444 +0.06583 0.382804 0.0500293 +0.0659025 0.488014 0.138085 +0.065975 0.462822 0.0594148 +0.0660475 0.500231 -0.0148923 +0.06612 0.519736 0.0796553 +0.0661925 0.417899 0.0434495 +0.066265 0.480082 0.0506347 +0.0663375 0.541634 0.0414329 +0.06641 0.393262 0.0469941 +0.0664825 0.615106 0.0532316 +0.066555 0.381731 0.0416584 +0.0666275 0.420834 0.0420968 +0.0667 0.511754 -0.0769248 +0.0667725 0.515449 0.0476621 +0.066845 0.581472 -0.023401 +0.0669175 0.449508 0.0874876 +0.06699 0.505929 0.0753258 +0.0670625 0.4476 0.0487476 +0.067135 0.449738 0.0219105 +0.0672075 0.317728 -0.00898882 +0.06728 0.462209 0.0494323 +0.0673525 0.390686 0.0791793 +0.067425 0.384749 -0.0768705 +0.0674975 0.5411 0.0417502 +0.06757 0.394298 0.0359344 +0.0676425 0.570095 0.0367026 +0.067715 0.359979 0.139037 +0.0677875 0.56243 0.0366859 +0.06786 0.435234 -0.0343646 +0.0679325 0.491939 0.0233008 +0.068005 0.36754 0.0828784 +0.0680775 0.462175 0.107394 +0.06815 0.463937 0.0395751 +0.0682225 0.505996 0.0474742 +0.068295 0.433818 0.0523005 +0.0683675 0.410943 0.00993238 +0.06844 0.397959 0.015815 +0.0685125 0.56691 0.00875085 +0.068585 0.526387 0.0635063 +0.0686575 0.452481 -0.041483 +0.06873 0.489864 0.0781064 +0.0688025 0.401437 -0.0125585 +0.068875 0.399992 -0.0333209 +0.0689475 0.340131 0.0258935 +0.06902 0.467523 -0.0189588 +0.0690925 0.549442 -0.024474 +0.069165 0.326717 0.096084 +0.0692375 0.384946 -0.00498915 +0.06931 0.467043 -0.00957333 +0.0693825 0.426854 -0.0940216 +0.069455 0.427289 0.0610347 +0.0695275 0.41324 -0.0106421 +0.0696 0.513553 0.024833 +0.0696725 0.480833 0.130628 +0.069745 0.45069 0.00594941 +0.0698175 0.411716 -0.0238394 +0.06989 0.507645 -0.0304067 +0.0699625 0.374688 0.00662159 +0.070035 0.419469 -0.0472279 +0.0701075 0.466267 0.0343772 +0.07018 0.378282 0.0194222 +0.0702525 0.479401 -0.0352163 +0.070325 0.400999 0.0344857 +0.0703975 0.423565 0.0281898 +0.07047 0.385781 0.129994 +0.0705425 0.424433 -0.014884 +0.070615 0.525189 0.0657441 +0.0706875 0.362705 0.17571 +0.07076 0.397517 -0.0597905 +0.0708325 0.414547 -0.0194807 +0.070905 0.458146 0.00846277 +0.0709775 0.439354 -0.00921428 +0.07105 0.343605 0.0930154 +0.0711225 0.400677 -0.0637735 +0.071195 0.401879 0.0276386 +0.0712675 0.488394 -0.0137818 +0.07134 0.415908 -0.0435121 +0.0714125 0.43682 0.117335 +0.071485 0.3872 0.0796344 +0.0715575 0.400978 0.0949067 +0.07163 0.390156 0.086519 +0.0717025 0.424258 -0.0184703 +0.071775 0.385772 -0.0259687 +0.0718475 0.337559 0.00306864 +0.07192 0.420308 0.0823022 +0.0719925 0.429326 0.0727707 +0.072065 0.361148 0.00332749 +0.0721375 0.416943 0.00741067 +0.07221 0.443129 0.0101996 +0.0722825 0.44239 0.0113644 +0.072355 0.39593 0.0760773 +0.0724275 0.423819 -0.011665 +0.0725 0.455858 -0.00620409 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/8/data-06500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/8/data-06500um.dat new file mode 100644 index 0000000..9381863 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/8/data-06500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 2.38792 0.121226 +0.000145 3.11483 0.114112 +0.0002175 2.90723 0.110467 +0.00029 2.99472 0.172938 +0.0003625 2.93538 0.165824 +0.000435 2.89921 0.10534 +0.0005075 3.00899 0.0816718 +0.00058 2.9286 0.129079 +0.0006525 3.01015 0.162112 +0.000725 2.96561 0.0817511 +0.0007975 2.92569 0.193646 +0.00087 2.88002 0.154889 +0.0009425 2.88856 0.134047 +0.001015 2.88344 0.115569 +0.0010875 2.86243 0.159862 +0.00116 2.88732 0.089191 +0.0012325 2.82319 0.0374416 +0.001305 2.94636 0.160734 +0.0013775 2.84411 0.200059 +0.00145 2.81166 0.0769958 +0.0015225 2.83163 0.0716434 +0.001595 2.84925 0.127681 +0.0016675 2.83296 0.202322 +0.00174 2.85079 0.164496 +0.0018125 2.74737 0.105799 +0.001885 2.71152 0.0995702 +0.0019575 2.80208 0.208914 +0.00203 2.78147 0.179409 +0.0021025 2.75737 0.108943 +0.002175 2.83359 0.17837 +0.0022475 2.72885 0.143187 +0.00232 2.67231 0.0557032 +0.0023925 2.73004 0.0980463 +0.002465 2.69569 0.0898966 +0.0025375 2.81223 0.161511 +0.00261 2.77992 0.150017 +0.0026825 2.76587 0.0882725 +0.002755 2.8218 0.182119 +0.0028275 2.65258 0.0635647 +0.0029 2.56485 0.177163 +0.0029725 2.6729 0.172203 +0.003045 2.71744 0.0998541 +0.0031175 2.7519 0.101691 +0.00319 2.66977 0.120608 +0.0032625 2.5307 0.160613 +0.003335 2.65411 0.140218 +0.0034075 2.65512 0.107352 +0.00348 2.5168 0.130415 +0.0035525 2.609 0.220901 +0.003625 2.6105 0.174675 +0.0036975 2.48552 0.169594 +0.00377 2.51544 0.112888 +0.0038425 2.68325 0.171047 +0.003915 2.66281 0.192452 +0.0039875 2.57639 0.119226 +0.00406 2.56501 0.0826529 +0.0041325 2.5261 0.178562 +0.004205 2.52657 0.149069 +0.0042775 2.49559 0.135893 +0.00435 2.51531 0.152831 +0.0044225 2.57148 0.0821478 +0.004495 2.5206 0.0841894 +0.0045675 2.57488 0.112358 +0.00464 2.4766 0.173038 +0.0047125 2.57407 0.186978 +0.004785 2.46305 0.147424 +0.0048575 2.45885 0.174266 +0.00493 2.502 0.134594 +0.0050025 2.43651 0.169489 +0.005075 2.5314 0.0612434 +0.0051475 2.42492 0.159119 +0.00522 2.36667 0.0985849 +0.0052925 2.46559 0.187467 +0.005365 2.41557 0.162713 +0.0054375 2.51037 0.0899008 +0.00551 2.48536 0.123447 +0.0055825 2.409 0.0883268 +0.005655 2.37453 0.0855504 +0.0057275 2.40063 0.188369 +0.0058 2.47178 0.197679 +0.0058725 2.46971 0.0576988 +0.005945 2.39291 0.105019 +0.0060175 2.27381 0.0427272 +0.00609 2.35156 0.202322 +0.0061625 2.29381 0.133167 +0.006235 2.35369 0.114859 +0.0063075 2.37371 0.192477 +0.00638 2.34976 0.153958 +0.0064525 2.35511 0.134745 +0.006525 2.37326 0.124508 +0.0065975 2.30676 0.154827 +0.00667 2.31948 0.0566927 +0.0067425 2.30481 0.0869783 +0.006815 2.24456 0.20342 +0.0068875 2.26072 0.0884938 +0.00696 2.29532 0.127405 +0.0070325 2.33109 0.191316 +0.007105 2.27737 0.143913 +0.0071775 2.22747 0.160634 +0.00725 2.2915 0.0949401 +0.0073225 2.24957 0.155837 +0.007395 2.31258 0.065051 +0.0074675 2.32121 0.0715766 +0.00754 2.33441 0.181175 +0.0076125 2.15625 0.130273 +0.007685 2.31085 0.137308 +0.0077575 2.23739 0.0563044 +0.00783 2.3057 0.129964 +0.0079025 2.19962 0.108818 +0.007975 2.19882 0.0791125 +0.0080475 2.13094 0.0679694 +0.00812 2.27665 0.180566 +0.0081925 2.26615 0.164133 +0.008265 2.1372 0.187571 +0.0083375 2.22444 0.124528 +0.00841 2.20367 0.151558 +0.0084825 2.15307 0.117531 +0.008555 2.24466 0.156772 +0.0086275 2.2464 0.0395876 +0.0087 2.22779 0.119489 +0.0087725 2.142 0.0860473 +0.008845 2.06362 0.121097 +0.0089175 2.16444 0.155073 +0.00899 2.15722 0.113865 +0.0090625 2.19778 0.102647 +0.009135 2.18204 0.0741443 +0.0092075 2.12553 0.0617611 +0.00928 2.05418 0.10744 +0.0093525 2.05784 0.139976 +0.009425 2.01679 0.219999 +0.0094975 2.14636 0.117786 +0.00957 2.04444 0.155119 +0.0096425 2.08617 0.139788 +0.009715 2.11975 0.159774 +0.0097875 2.02186 0.20471 +0.00986 2.0606 0.0301061 +0.0099325 2.11921 0.176908 +0.010005 2.0277 0.110296 +0.0100775 2.07094 0.108012 +0.01015 2.09687 0.103102 +0.0102225 2.05042 0.0808619 +0.010295 2.03743 0.165193 +0.0103675 2.10589 0.168537 +0.01044 2.0242 0.140235 +0.0105125 2.01842 0.121406 +0.010585 2.00313 0.129964 +0.0106575 2.03274 0.203979 +0.01073 2.02235 0.214705 +0.0108025 2.02461 0.0956206 +0.010875 1.99342 0.147833 +0.0109475 2.06183 0.131839 +0.01102 2.00117 0.0841768 +0.0110925 2.01063 0.170621 +0.011165 2.08586 0.0694599 +0.0112375 1.97726 0.101649 +0.01131 1.93906 0.122032 +0.0113825 2.01063 0.0252171 +0.011455 1.99138 0.16326 +0.0115275 2.01991 0.19689 +0.0116 1.94454 0.114245 +0.0116725 1.95043 0.0526345 +0.011745 1.93991 0.139842 +0.0118175 1.88551 0.186427 +0.01189 1.92831 0.103415 +0.0119625 1.9688 0.119439 +0.012035 1.92689 0.0834212 +0.0121075 2.07014 0.197228 +0.01218 2.01421 0.115761 +0.0122525 2.00643 0.187918 +0.012325 1.90997 0.150969 +0.0123975 1.99414 0.0250794 +0.01247 1.92675 0.130566 +0.0125425 1.895 0.0463344 +0.012615 1.80297 0.121289 +0.0126875 1.93356 0.183037 +0.01276 1.91043 0.13935 +0.0128325 1.96881 0.107645 +0.012905 1.89161 0.0895334 +0.0129775 1.86568 0.135822 +0.01305 1.89578 0.183121 +0.0131225 1.91824 0.179188 +0.013195 1.88793 0.21574 +0.0132675 1.93551 0.13677 +0.01334 1.86964 0.119264 +0.0134125 1.87185 0.127217 +0.013485 1.88178 0.0380219 +0.0135575 1.7555 0.145366 +0.01363 1.87875 0.0541501 +0.0137025 1.91933 0.0804527 +0.013775 1.82512 0.123213 +0.0138475 1.78587 0.166613 +0.01392 1.89675 0.107398 +0.0139925 1.84276 0.046564 +0.014065 1.8996 0.226679 +0.0141375 1.73489 -0.0704911 +0.01421 1.85837 0.0603875 +0.0142825 1.81735 0.101532 +0.014355 1.80768 0.132327 +0.0144275 1.78482 0.201862 +0.0145 1.80422 0.134987 +0.0145725 1.78453 0.113323 +0.014645 1.824 0.147211 +0.0147175 1.74967 0.0583919 +0.01479 1.82078 0.151574 +0.0148625 1.82343 0.143266 +0.014935 1.7075 0.0555946 +0.0150075 1.80814 0.177664 +0.01508 1.77307 0.199124 +0.0151525 1.78249 0.236427 +0.015225 1.85549 0.173284 +0.0152975 1.83638 0.228875 +0.01537 1.76269 0.0758518 +0.0154425 1.74048 0.0876797 +0.015515 1.77279 0.074925 +0.0155875 1.73871 0.100919 +0.01566 1.64647 0.0597738 +0.0157325 1.76055 0.100839 +0.015805 1.69714 0.116588 +0.0158775 1.67108 0.111799 +0.01595 1.76182 0.0996495 +0.0160225 1.74118 0.147182 +0.016095 1.63179 0.112914 +0.0161675 1.70375 0.0347112 +0.01624 1.72618 0.0871912 +0.0163125 1.75788 0.106346 +0.016385 1.80283 0.120662 +0.0164575 1.6628 0.0696394 +0.01653 1.69891 0.105753 +0.0166025 1.75259 0.0910239 +0.016675 1.63023 0.0947271 +0.0167475 1.67519 0.051048 +0.01682 1.6123 0.0942345 +0.0168925 1.66966 0.0681155 +0.016965 1.63171 0.132365 +0.0170375 1.68148 0.0645166 +0.01711 1.65949 0.0746244 +0.0171825 1.60558 -0.0210922 +0.017255 1.73479 0.188999 +0.0173275 1.65621 0.161573 +0.0174 1.58288 0.104843 +0.0174725 1.57937 0.100313 +0.017545 1.62401 0.0750377 +0.0176175 1.62618 0.146452 +0.01769 1.6538 0.145237 +0.0177625 1.55961 0.194402 +0.017835 1.51554 0.0573732 +0.0179075 1.57064 0.150606 +0.01798 1.4983 0.0968021 +0.0180525 1.65125 0.0231255 +0.018125 1.6311 0.122733 +0.0181975 1.54403 0.103728 +0.01827 1.61598 0.108613 +0.0183425 1.621 0.0760272 +0.018415 1.59441 0.11402 +0.0184875 1.54632 0.0106338 +0.01856 1.58791 0.170153 +0.0186325 1.58277 0.0662994 +0.018705 1.5498 0.179493 +0.0187775 1.64354 0.147103 +0.01885 1.63663 0.228132 +0.0189225 1.56366 0.136419 +0.018995 1.55969 0.0622997 +0.0190675 1.60089 0.111782 +0.01914 1.57986 0.0784236 +0.0192125 1.53562 0.0332207 +0.019285 1.53887 0.0985389 +0.0193575 1.46436 0.102117 +0.01943 1.61176 0.08034 +0.0195025 1.50889 0.0733301 +0.019575 1.57226 0.00817052 +0.0196475 1.53705 0.12761 +0.01972 1.54503 -0.0103833 +0.0197925 1.5856 0.18239 +0.019865 1.43165 0.0811917 +0.0199375 1.52764 0.0605587 +0.02001 1.56107 0.0761441 +0.0200825 1.61219 0.169105 +0.020155 1.58437 0.016817 +0.0202275 1.50675 0.108563 +0.0203 1.44983 0.0418546 +0.0203725 1.57321 0.122437 +0.020445 1.5554 0.139696 +0.0205175 1.44903 0.104801 +0.02059 1.49383 0.108638 +0.0206625 1.39788 0.122537 +0.020735 1.50853 0.0925853 +0.0208075 1.45525 0.104046 +0.02088 1.40017 0.096894 +0.0209525 1.43891 0.134018 +0.021025 1.4369 0.176449 +0.0210975 1.48662 0.173343 +0.02117 1.52168 0.0238561 +0.0212425 1.43733 -0.00756097 +0.021315 1.48009 0.161586 +0.0213875 1.48781 0.127013 +0.02146 1.36323 0.185054 +0.0215325 1.54082 0.0766576 +0.021605 1.49171 0.152777 +0.0216775 1.46424 0.100138 +0.02175 1.33805 0.181401 +0.0218225 1.43424 -0.0080912 +0.021895 1.40596 0.220562 +0.0219675 1.38084 0.193997 +0.02204 1.49922 0.0908443 +0.0221125 1.33266 0.0825569 +0.022185 1.47737 0.103336 +0.0222575 1.43992 0.197149 +0.02233 1.34276 -0.0135688 +0.0224025 1.42123 0.0755137 +0.022475 1.40168 0.00293504 +0.0225475 1.51314 -0.052551 +0.02262 1.43144 0.00595776 +0.0226925 1.31531 0.111857 +0.022765 1.41376 0.110212 +0.0228375 1.40236 0.000162822 +0.02291 1.35441 0.0275134 +0.0229825 1.31038 0.0837384 +0.023055 1.38068 -0.0336131 +0.0231275 1.42874 0.0982592 +0.0232 1.2988 0.11751 +0.0232725 1.39116 0.0718981 +0.023345 1.37808 0.0765992 +0.0234175 1.39418 0.0868614 +0.02349 1.32681 0.0259854 +0.0235625 1.42235 0.0393705 +0.023635 1.2331 0.12518 +0.0237075 1.32773 -0.105799 +0.02378 1.34213 0.0978667 +0.0238525 1.39007 0.0821269 +0.023925 1.25386 0.0227414 +0.0239975 1.37496 0.0958627 +0.02407 1.34809 0.18601 +0.0241425 1.34886 0.0416333 +0.024215 1.313 0.0975828 +0.0242875 1.41527 0.082987 +0.02436 1.31375 0.108956 +0.0244325 1.35404 0.141425 +0.024505 1.2921 0.112955 +0.0245775 1.31228 0.110446 +0.02465 1.23225 0.166838 +0.0247225 1.25932 0.0583501 +0.024795 1.34216 0.111628 +0.0248675 1.25897 0.0994574 +0.02494 1.23121 0.0784738 +0.0250125 1.29007 0.128883 +0.025085 1.35288 0.10329 +0.0251575 1.2979 0.186223 +0.02523 1.24551 0.177885 +0.0253025 1.34692 0.0398548 +0.025375 1.33013 0.0640574 +0.0254475 1.24971 0.104488 +0.02552 1.2475 0.0835631 +0.0255925 1.29118 0.11354 +0.025665 1.24447 0.0872998 +0.0257375 1.30841 0.131538 +0.02581 1.23103 0.0304276 +0.0258825 1.31237 0.0829786 +0.025955 1.26521 0.0037617 +0.0260275 1.1967 0.114943 +0.0261 1.29505 -0.0100785 +0.0261725 1.26783 0.061757 +0.026245 1.32969 0.109778 +0.0263175 1.27274 0.0696686 +0.02639 1.21413 0.11842 +0.0264625 1.2871 0.105778 +0.026535 1.30048 0.0524968 +0.0266075 1.21249 0.0759395 +0.02668 1.26595 0.0228624 +0.0267525 1.20198 0.0643288 +0.026825 1.2808 0.0503216 +0.0268975 1.25943 0.118713 +0.02697 1.21336 0.121318 +0.0270425 1.25058 0.131158 +0.027115 1.20593 0.100777 +0.0271875 1.17167 0.0465933 +0.02726 1.218 0.166442 +0.0273325 1.22585 0.000597033 +0.027405 1.26012 -0.0470024 +0.0274775 1.27011 0.0715015 +0.02755 1.1688 0.118809 +0.0276225 1.21446 0.140661 +0.027695 1.1509 0.166396 +0.0277675 1.30064 0.181092 +0.02784 1.12704 0.0413661 +0.0279125 1.2288 0.117109 +0.027985 1.19844 0.0689296 +0.0280575 1.21718 0.0854085 +0.02813 1.17301 0.0377339 +0.0282025 1.15721 -0.0270458 +0.028275 1.34144 0.101082 +0.0283475 1.20871 0.0854252 +0.02842 1.23934 0.0432031 +0.0284925 1.22997 0.15152 +0.028565 1.22064 0.0620617 +0.0286375 1.16471 0.174771 +0.02871 1.12947 0.0691384 +0.0287825 1.12153 0.0643622 +0.028855 1.12322 -0.00898465 +0.0289275 1.15155 0.126996 +0.029 1.11605 -0.0541876 +0.0290725 1.23062 0.0568513 +0.029145 1.18584 0.0497746 +0.0292175 1.1967 -0.0523548 +0.02929 1.11899 -0.0230712 +0.0293625 1.15412 0.143479 +0.029435 1.11234 0.0202238 +0.0295075 1.1575 0.120232 +0.02958 1.13339 0.0384561 +0.0296525 1.11342 0.0118779 +0.029725 1.2092 0.131755 +0.0297975 1.13382 0.00288077 +0.02987 1.16609 0.0632474 +0.0299425 1.1385 -0.0847321 +0.030015 1.12916 -0.0159945 +0.0300875 1.14305 0.15185 +0.03016 1.16469 0.124374 +0.0302325 1.09364 0.138118 +0.030305 1.14549 0.109402 +0.0303775 1.15287 0.103119 +0.03045 1.07334 0.0360931 +0.0305225 1.14244 0.0404476 +0.030595 1.06012 0.103916 +0.0306675 1.07622 0.0394582 +0.03074 1.0416 0.0398005 +0.0308125 1.09032 0.138264 +0.030885 0.987001 0.0874835 +0.0309575 1.07991 0.0633142 +0.03103 1.10529 0.0619657 +0.0311025 1.08698 0.0906982 +0.031175 1.02035 0.0548849 +0.0312475 1.23451 -0.0382349 +0.03132 1.02797 0.0628508 +0.0313925 1.03165 0.151199 +0.031465 1.05254 0.0836591 +0.0315375 1.18439 0.15547 +0.03161 1.09898 0.0372078 +0.0316825 1.08237 0.0656356 +0.031755 1.14761 0.0598782 +0.0318275 1.06447 0.0879469 +0.0319 1.04313 0.115456 +0.0319725 0.990149 0.0902306 +0.032045 1.03965 -0.0144205 +0.0321175 1.03356 0.0303316 +0.03219 0.930939 0.13849 +0.0322625 0.982104 0.108659 +0.032335 1.01905 0.13935 +0.0324075 1.04343 0.0268037 +0.03248 1.05816 0.123355 +0.0325525 0.978271 -0.00791584 +0.032625 0.988124 0.0281689 +0.0326975 0.968121 0.0778308 +0.03277 1.14326 -0.000417508 +0.0328425 1.01482 0.064454 +0.032915 1.00631 0.148723 +0.0329875 1.02117 0.099996 +0.03306 1.0409 0.0731047 +0.0331325 1.05047 0.0858009 +0.033205 0.930208 0.124032 +0.0332775 1.02891 0.100313 +0.03335 1.02161 -0.0601788 +0.0334225 1.09309 0.0827824 +0.033495 0.918718 0.0621035 +0.0335675 1.04923 0.137104 +0.03364 1.0918 0.0146961 +0.0337125 0.949355 0.163636 +0.033785 0.982346 0.0899008 +0.0338575 0.921582 0.0789288 +0.03393 0.939719 0.0150593 +0.0340025 1.01811 -0.0183993 +0.034075 1.0875 0.107482 +0.0341475 1.15683 0.113406 +0.03422 1.07792 -0.00177021 +0.0342925 0.963905 0.0165915 +0.034365 1.08396 -0.0290707 +0.0344375 0.891961 0.0154434 +0.03451 0.990374 0.0269707 +0.0345825 1.02787 0.0817052 +0.034655 1.00431 0.0864564 +0.0347275 0.990466 0.108079 +0.0348 0.98344 0.0587551 +0.0348725 1.00226 0.0676396 +0.034945 1.00478 0.04494 +0.0350175 1.06107 0.014884 +0.03509 1.03335 0.0906022 +0.0351625 1.00364 -0.000701402 +0.035235 0.897952 0.101946 +0.0353075 1.045 0.122917 +0.03538 0.973215 -0.0436499 +0.0354525 0.985623 0.0807742 +0.035525 0.996374 -0.0110429 +0.0355975 1.04475 0.0716685 +0.03567 0.942278 0.0243571 +0.0357425 0.968614 0.0474826 +0.035815 0.933748 -0.0251712 +0.0358875 0.8973 0.0550853 +0.03596 1.04925 0.00732717 +0.0360325 0.941121 0.0108008 +0.036105 0.942228 0.110839 +0.0361775 0.88779 0.113577 +0.03625 0.995234 0.147378 +0.0363225 1.0151 0.0615816 +0.036395 0.986921 0.0455328 +0.0364675 0.931694 -0.0223072 +0.03654 0.904427 0.114938 +0.0366125 0.842094 0.0492611 +0.036685 1.0073 0.144602 +0.0367575 1.00563 0.0364939 +0.03683 0.973536 0.0907442 +0.0369025 0.877035 0.0524341 +0.036975 0.877106 0.00273464 +0.0370475 0.831849 0.0227539 +0.03712 0.942057 -0.0260229 +0.0371925 0.880329 0.171159 +0.037265 0.933853 -0.00765282 +0.0373375 0.940199 0.115665 +0.03741 0.906327 0.134916 +0.0374825 0.942741 0.0700611 +0.037555 0.999033 0.162446 +0.0376275 0.987201 -0.0483635 +0.0377 0.925144 0.0683785 +0.0377725 0.913036 0.0356672 +0.037845 0.956657 0.0212467 +0.0379175 0.919169 0.0509061 +0.03799 0.881164 0.0682032 +0.0380625 0.936583 0.0222237 +0.038135 0.865144 0.148451 +0.0382075 0.928354 0.0300435 +0.03828 0.882287 -0.0464096 +0.0383525 0.882968 0.0182449 +0.038425 0.872472 0.0450861 +0.0384975 0.876313 0.0227664 +0.03857 0.973044 0.133062 +0.0386425 0.907433 0.0527681 +0.038715 0.882634 0.0910322 +0.0387875 0.894537 0.0224199 +0.03886 0.896891 0.0538954 +0.0389325 0.916414 0.0456789 +0.039005 0.958991 0.0750836 +0.0390775 0.868919 0.0941009 +0.03915 0.860335 0.0370784 +0.0392225 0.914301 0.061256 +0.039295 0.892445 0.121264 +0.0393675 0.874388 0.0476788 +0.03944 0.951037 0.0158233 +0.0395125 0.90444 0.0262275 +0.039585 0.917583 0.0366734 +0.0396575 0.930888 0.0673097 +0.03973 0.895104 -0.000989486 +0.0398025 0.84138 0.109678 +0.039875 0.895501 0.0872747 +0.0399475 0.788044 0.105662 +0.04002 0.854293 0.0487893 +0.0400925 0.879139 0.0579869 +0.040165 0.965328 0.0308952 +0.0402375 0.824434 0.0488311 +0.04031 0.737485 0.0878676 +0.0403825 0.843505 0.0135062 +0.040455 0.899851 0.0941092 +0.0405275 0.812314 0.0933368 +0.0406 0.877427 0.0837051 +0.0406725 0.836508 0.0905312 +0.040745 0.948044 0.179192 +0.0408175 0.858293 0.0669757 +0.04089 0.868998 -0.0562292 +0.0409625 0.837284 -0.0236181 +0.041035 0.86603 -0.00822063 +0.0411075 0.958465 -0.0160571 +0.04118 0.807771 0.0701154 +0.0412525 0.878726 0.0437626 +0.041325 0.824296 0.0318137 +0.0413975 0.891401 0.127113 +0.04147 0.705926 0.0666918 +0.0415425 0.853605 0.0710798 +0.041615 0.854202 0.0758853 +0.0416875 0.82025 0.0750878 +0.04176 0.876434 -0.0851747 +0.0418325 0.838862 -0.022971 +0.041905 0.744181 0.0299182 +0.0419775 0.884233 0.0710714 +0.04205 0.829632 -0.075259 +0.0421225 0.655349 0.155578 +0.042195 0.808923 0.0464513 +0.0422675 0.834287 0.0389822 +0.04234 0.749267 0.0654852 +0.0424125 0.797338 0.065001 +0.042485 0.872643 0.0368488 +0.0425575 0.872008 0.162613 +0.04263 0.770213 0.0490106 +0.0427025 0.843843 -0.0297888 +0.042775 0.817144 0.0736934 +0.0428475 0.818647 0.0510063 +0.04292 0.798273 0.125021 +0.0429925 0.773361 0.115331 +0.043065 0.764973 -0.0188962 +0.0431375 0.908636 0.0841894 +0.04321 0.911153 0.139554 +0.0432825 0.697221 -0.107344 +0.043355 0.819211 0.00375334 +0.0434275 0.753646 0.0751129 +0.0435 0.850711 -0.0355128 +0.0435725 0.691067 0.0202572 +0.043645 0.876016 0.0791626 +0.0437175 0.828208 0.0594774 +0.04379 0.543359 0.0100075 +0.0438625 0.801609 -0.0175101 +0.043935 0.688758 0.0138444 +0.0440075 0.747204 0.0582458 +0.04408 0.776938 0.0236807 +0.0441525 0.716923 0.101382 +0.044225 0.771966 0.0899634 +0.0442975 0.788341 0.0483969 +0.04437 0.70798 0.0279184 +0.0444425 0.786696 0.0403349 +0.044515 0.702469 0.0532775 +0.0445875 0.798803 0.119447 +0.04466 0.857562 0.0403892 +0.0447325 0.7637 0.0366985 +0.044805 0.694883 -0.0989188 +0.0448775 0.723565 0.0459962 +0.04495 0.805137 0.136707 +0.0450225 0.70823 0.0341601 +0.045095 0.780679 0.147387 +0.0451675 0.761984 0.0348907 +0.04524 0.683564 0.117711 +0.0453125 0.805212 0.0706581 +0.045385 0.711416 0.0737184 +0.0454575 0.749024 0.0750544 +0.04553 0.786883 0.0910782 +0.0456025 0.727978 0.147721 +0.045675 0.706134 -0.00855462 +0.0457475 0.802352 -0.00184536 +0.04582 0.696093 0.134941 +0.0458925 0.708531 -0.0263653 +0.045965 0.731957 0.0404351 +0.0460375 0.788157 -0.0233551 +0.04611 0.800239 0.120846 +0.0461825 0.718029 0.0987894 +0.046255 0.73422 0.211256 +0.0463275 0.71954 0.0319598 +0.0464 0.772321 0.0140448 +0.0464725 0.802477 0.0829118 +0.046545 0.698047 0.0255929 +0.0466175 0.745588 0.00859637 +0.04669 0.699237 0.0147253 +0.0467625 0.702803 0.0755345 +0.046835 0.589422 0.116233 +0.0469075 0.665319 0.0859554 +0.04698 0.69963 0.102234 +0.0470525 0.635535 0.0872538 +0.047125 0.779523 0.0351203 +0.0471975 0.673444 0.187104 +0.04727 0.692115 0.065598 +0.0473425 0.718021 0.119957 +0.047415 0.791342 -0.0352622 +0.0474875 0.748361 0.0828826 +0.04756 0.667874 0.079743 +0.0476325 0.71795 0.11111 +0.047705 0.708084 0.126278 +0.0477775 0.743693 0.0656022 +0.04785 0.70264 0.0756264 +0.0479225 0.719716 0.0742695 +0.047995 0.736984 0.0420717 +0.0480675 0.683907 0.0566634 +0.04814 0.724116 0.163431 +0.0482125 0.735886 -0.0276345 +0.048285 0.650586 -0.0118237 +0.0483575 0.679498 0.191112 +0.04843 0.689885 0.112229 +0.0485025 0.707207 0.191901 +0.048575 0.650001 0.00497663 +0.0486475 0.633092 0.0267285 +0.04872 0.657312 0.00326904 +0.0487925 0.649116 -0.00813712 +0.048865 0.722363 0.0629301 +0.0489375 0.620471 0.0222988 +0.04901 0.682867 0.0276053 +0.0490825 0.636992 0.0465223 +0.049155 0.760414 0.0508685 +0.0492275 0.60588 0.0659195 +0.0493 0.677135 0.026908 +0.0493725 0.724417 0.112646 +0.049445 0.72979 -0.053933 +0.0495175 0.537142 0.039145 +0.04959 0.667883 -0.0200192 +0.0496625 0.713979 0.0441467 +0.049735 0.664576 0.00317719 +0.0498075 0.741342 0.098994 +0.04988 0.62311 0.00357381 +0.0499525 0.603959 0.0995326 +0.050025 0.662601 0.0708669 +0.0500975 0.588712 0.122817 +0.05017 0.594202 -0.0106588 +0.0502425 0.675698 0.0683911 +0.050315 0.569114 -0.0368362 +0.0503875 0.695826 0.0534069 +0.05046 0.60168 -0.00769039 +0.0505325 0.605796 0.0139822 +0.050605 0.648557 -0.0149925 +0.0506775 0.58814 -0.0698273 +0.05075 0.617536 0.105874 +0.0508225 0.71547 0.12318 +0.050895 0.693121 0.0391116 +0.0509675 0.547538 0.108467 +0.05104 0.636808 0.0519582 +0.0511125 0.613056 0.0183993 +0.051185 0.604326 0.120353 +0.0512575 0.622809 0.0874542 +0.05133 0.664004 0.0177981 +0.0514025 0.642891 0.00673849 +0.051475 0.680508 0.0419465 +0.0515475 0.653475 -0.00227539 +0.05162 0.565248 0.0477873 +0.0516925 0.506622 0.0500711 +0.051765 0.672141 0.084728 +0.0518375 0.651383 -0.069844 +0.05191 0.546118 0.0776179 +0.0519825 0.599617 0.0546093 +0.052055 0.62005 0.117694 +0.0521275 0.641204 0.030223 +0.0522 0.616509 0.0237183 +0.0522725 0.587668 0.0158108 +0.052345 0.66324 0.0606255 +0.0524175 0.592457 0.0547972 +0.05249 0.655303 -0.0438837 +0.0525625 0.616718 0.0346151 +0.052635 0.67129 0.0900386 +0.0527075 0.590081 0.0257516 +0.05278 0.522901 -0.06908 +0.0528525 0.605855 0.109903 +0.052925 0.627581 0.027455 +0.0529975 0.59244 -0.0353875 +0.05307 0.589889 0.0292001 +0.0531425 0.632412 0.092769 +0.053215 0.663992 0.110129 +0.0532875 0.58174 0.012237 +0.05336 0.585451 -0.0802982 +0.0534325 0.599442 -0.0776221 +0.053505 0.654527 -0.0412075 +0.0535775 0.58376 0.0170717 +0.05365 0.680629 0.0193011 +0.0537225 0.587589 0.0109135 +0.053795 0.604151 -0.00498498 +0.0538675 0.611645 0.0840307 +0.05394 0.473899 0.0337592 +0.0540125 0.49646 0.0839347 +0.054085 0.633806 0.0545717 +0.0541575 0.569853 -0.0170508 +0.05423 0.579168 0.0542586 +0.0543025 0.526416 0.0915583 +0.054375 0.546991 -0.00583669 +0.0544475 0.568288 0.105023 +0.05452 0.656452 0.161106 +0.0545925 0.662171 0.0144289 +0.054665 0.591718 -0.0166876 +0.0547375 0.656836 0.111164 +0.05481 0.594599 0.0235304 +0.0548825 0.560054 0.0541376 +0.054955 0.596887 0.109214 +0.0550275 0.5747 0.0730045 +0.0551 0.582737 -0.0184745 +0.0551725 0.627276 0.039692 +0.055245 0.650419 0.126967 +0.0553175 0.543542 0.0248748 +0.05539 0.63652 0.0217602 +0.0554625 0.559917 0.0750753 +0.055535 0.5889 0.10124 +0.0556075 0.480249 0.0269247 +0.05568 0.569703 -0.0541876 +0.0557525 0.547596 -0.00349867 +0.055825 0.474575 0.00551103 +0.0558975 0.680475 0.106384 +0.05597 0.468834 -0.0654602 +0.0560425 0.639209 0.105369 +0.056115 0.615616 -0.0594774 +0.0561875 0.55289 0.0292753 +0.05626 0.511507 0.0146877 +0.0563325 0.606214 -0.0187208 +0.056405 0.557182 0.00958586 +0.0564775 0.650682 -0.0127672 +0.05655 0.632913 0.0255595 +0.0566225 0.678817 0.0716768 +0.056695 0.634382 0.0945017 +0.0567675 0.487689 -0.00627924 +0.05684 0.500832 0.00807867 +0.0569125 0.643192 0.0111139 +0.056985 0.453667 0.110546 +0.0570575 0.528942 0.0759854 +0.05713 0.506272 0.125977 +0.0572025 0.676475 0.012763 +0.057275 0.540762 0.0347905 +0.0573475 0.618446 0.00948566 +0.05742 0.572801 -0.0126461 +0.0574925 0.636391 0.030532 +0.057565 0.560347 0.0120449 +0.0576375 0.52976 -0.00433785 +0.05771 0.545296 0.0458376 +0.0577825 0.540687 0.00199984 +0.057855 0.497204 0.0437083 +0.0579275 0.541476 0.0507349 +0.058 0.529848 0.00184954 +0.0580725 0.558973 0.172621 +0.058145 0.528537 0.0572772 +0.0582175 0.573602 0.0958669 +0.05829 0.553349 0.030532 +0.0583625 0.536553 -0.0038452 +0.058435 0.611374 0.0598406 +0.0585075 0.625753 0.00244239 +0.05858 0.461824 0.0205453 +0.0586525 0.649137 -3.75744e-005 +0.058725 0.604598 0.0442594 +0.0587975 0.530028 -0.0251211 +0.05887 0.546181 0.168128 +0.0589425 0.52063 0.0424266 +0.059015 0.503003 0.0661741 +0.0590875 0.515219 -0.00942721 +0.05916 0.521636 0.0183785 +0.0592325 0.446515 -0.0461215 +0.059305 0.494669 0.103762 +0.0593775 0.446723 0.0875669 +0.05945 0.463131 0.0510063 +0.0595225 0.497325 0.13639 +0.059595 0.602343 0.0389321 +0.0596675 0.486394 -0.00751505 +0.05974 0.453675 0.123347 +0.0598125 0.568851 0.00699734 +0.059885 0.495617 0.110576 +0.0599575 0.486507 0.0435121 +0.06003 0.57331 0.0575778 +0.0601025 0.536203 -0.0209002 +0.060175 0.463737 0.000183702 +0.0602475 0.497083 -0.0195266 +0.06032 0.45089 0.0505094 +0.0603925 0.466772 0.115715 +0.060465 0.628575 0.0432198 +0.0605375 0.414112 0.0404101 +0.06061 0.528395 0.0733886 +0.0606825 0.523995 0.12905 +0.060755 0.490227 0.078933 +0.0608275 0.53475 0.123902 +0.0609 0.456622 0.104864 +0.0609725 0.519862 -0.011164 +0.061045 0.53409 0.0150635 +0.0611175 0.543267 0.0659028 +0.06119 0.398126 0.0262526 +0.0612625 0.550757 -0.0170884 +0.061335 0.527368 0.00506848 +0.0614075 0.430295 0.055937 +0.06148 0.528788 0.0401429 +0.0615525 0.499667 0.0737852 +0.061625 0.410012 0.0351788 +0.0616975 0.510501 -0.0301604 +0.06177 0.365398 0.0262526 +0.0618425 0.406426 -0.00258434 +0.061915 0.494469 0.0747622 +0.0619875 0.482737 0.12128 +0.06206 0.450264 -0.00521461 +0.0621325 0.513131 0.0353666 +0.062205 0.53857 -0.0232925 +0.0622775 0.45767 0.0959755 +0.06235 0.551871 0.128319 +0.0624225 0.44841 0.0901513 +0.062495 0.459044 -0.0859095 +0.0625675 0.522458 0.0721361 +0.06264 0.522922 0.0784905 +0.0627125 0.555028 -0.0302397 +0.062785 0.481447 0.126537 +0.0628575 0.476521 0.0736975 +0.06293 0.503621 0.0379844 +0.0630025 0.469477 0.0799976 +0.063075 0.490624 0.0803692 +0.0631475 0.425184 0.124199 +0.06322 0.405032 0.0572772 +0.0632925 0.40691 0.0639781 +0.063365 0.421176 0.0780312 +0.0634375 0.539872 0.075664 +0.06351 0.46635 -0.00590348 +0.0635825 0.402477 0.0883811 +0.063655 0.509236 -0.00593689 +0.0637275 0.514684 0.0493947 +0.0638 0.506288 0.0793714 +0.0638725 0.393154 -0.0437543 +0.063945 0.483789 0.0685247 +0.0640175 0.447396 -0.0541208 +0.06409 0.459223 0.0365523 +0.0641625 0.454422 0.0716184 +0.064235 0.422107 0.0141408 +0.0643075 0.425306 0.0110095 +0.06438 0.487113 0.0174558 +0.0644525 0.439425 -0.0159945 +0.064525 0.412434 0.026812 +0.0645975 0.455061 0.0209837 +0.06467 0.499788 0.0287951 +0.0647425 0.515127 0.0580788 +0.064815 0.428825 0.0673056 +0.0648875 0.554013 -0.0034778 +0.06496 0.443742 -0.0195182 +0.0650325 0.468905 -0.0255762 +0.065105 0.545722 0.0506806 +0.0651775 0.484449 -0.0378675 +0.06525 0.46096 0.00986558 +0.0653225 0.508422 0.071752 +0.065395 0.537618 0.0334252 +0.0654675 0.397767 0.0458 +0.06554 0.368592 0.10605 +0.0656125 0.445922 0.0482675 +0.065685 0.457637 0.0481297 +0.0657575 0.431071 0.0418546 +0.06583 0.519227 -0.049115 +0.0659025 0.489129 0.0153933 +0.065975 0.436524 0.0453533 +0.0660475 0.425974 -0.0232048 +0.06612 0.478742 0.0753258 +0.0661925 0.434879 -0.0316467 +0.066265 0.474633 -0.0539789 +0.0663375 0.564317 0.0748999 +0.06641 0.404359 0.0290999 +0.0664825 0.387914 0.0252004 +0.066555 0.543029 -0.0892536 +0.0666275 0.377948 0.0264655 +0.0667 0.398556 -0.032202 +0.0667725 0.368813 -0.0111891 +0.066845 0.422909 0.00424182 +0.0669175 0.510217 0.0255637 +0.06699 0.508572 0.00742319 +0.0670625 0.405403 0.0244197 +0.067135 0.550331 0.0315841 +0.0672075 0.306898 0.054196 +0.06728 0.442966 0.10615 +0.0673525 0.397061 0.0465724 +0.067425 0.372095 0.0742319 +0.0674975 0.459662 0.0730754 +0.06757 0.453737 0.0102914 +0.0676425 0.462801 -0.0147253 +0.067715 0.415152 -0.115556 +0.0677875 0.457925 0.036377 +0.06786 0.374546 -0.0486349 +0.0679325 0.542678 -0.0189296 +0.068005 0.388519 0.0629928 +0.0680775 0.388586 0.0661366 +0.06815 0.44479 -0.0577322 +0.0682225 0.43839 0.0149716 +0.068295 0.424721 -0.0200359 +0.0683675 0.360956 0.10848 +0.06844 0.413144 -0.0130303 +0.0685125 0.380107 0.00727289 +0.068585 0.259302 -0.00211256 +0.0686575 0.34115 -0.00610806 +0.06873 0.354034 0.0598907 +0.0688025 0.315252 0.0698899 +0.068875 0.383221 -0.0177188 +0.0689475 0.512443 0.095249 +0.06902 0.417511 0.095224 +0.0690925 0.363569 0.110338 +0.069165 0.485046 -0.0272462 +0.0692375 0.469753 -0.000567807 +0.06931 0.499249 0.0711382 +0.0693825 0.325214 0.00410405 +0.069455 0.40365 0.0939046 +0.0695275 0.390578 0.0187459 +0.0696 0.391237 -0.0462968 +0.0696725 0.370258 0.0926563 +0.069745 0.324036 0.0950319 +0.0698175 0.473798 0.0208793 +0.06989 0.362918 0.0143496 +0.0699625 0.515532 0.0605003 +0.070035 0.467999 -0.0110847 +0.0701075 0.436244 -0.0610597 +0.07018 0.359156 0.0525886 +0.0702525 0.429368 -0.0164371 +0.070325 0.338073 0.070107 +0.0703975 0.37556 0.02915 +0.07047 0.48396 -0.00545676 +0.0705425 0.339605 0.0642954 +0.070615 0.352393 0.0650385 +0.0706875 0.419202 0.0793714 +0.07076 0.408234 0.135885 +0.0708325 0.468421 0.0973741 +0.070905 0.459729 -0.0161782 +0.0709775 0.385952 0.0198648 +0.07105 0.366467 0.12801 +0.0711225 0.327343 -0.0347153 +0.071195 0.317916 0.0856966 +0.0712675 0.372124 -0.0189713 +0.07134 0.352965 0.00323564 +0.0714125 0.374395 0.00625001 +0.071485 0.408814 -0.0145333 +0.0715575 0.400877 0.0282357 +0.07163 0.356935 0.0414747 +0.0717025 0.464371 0.0224658 +0.071775 0.426086 0.0759186 +0.0718475 0.454869 -0.0472446 +0.07192 0.337471 0.0429735 +0.0719925 0.369886 -0.0825736 +0.072065 0.365603 0.116466 +0.0721375 0.514092 0.137722 +0.07221 0.463469 0.0293129 +0.0722825 0.40886 0.0824275 +0.072355 0.412868 0.13391 +0.0724275 0.312534 0.0220358 +0.0725 0.387446 -0.0177605 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/8/data-07500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/8/data-07500um.dat new file mode 100644 index 0000000..9ae24ee --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/8/data-07500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 2.40747 0.234853 +0.000145 3.17754 0.223781 +0.0002175 3.00955 0.136298 +0.00029 3.08928 0.12179 +0.0003625 3.04436 0.153161 +0.000435 3.00682 0.145391 +0.0005075 2.89779 0.151128 +0.00058 2.94701 0.129392 +0.0006525 2.9434 0.130866 +0.000725 2.9923 0.0639238 +0.0007975 2.90815 0.127029 +0.00087 2.95574 0.183693 +0.0009425 2.94565 0.184757 +0.001015 2.85034 0.0468688 +0.0010875 2.88445 0.253729 +0.00116 2.91266 0.0943472 +0.0012325 2.81691 0.137016 +0.001305 2.90338 0.170713 +0.0013775 2.93858 0.211244 +0.00145 2.8988 0.0439421 +0.0015225 2.88607 0.217047 +0.001595 2.89285 0.114617 +0.0016675 2.89502 0.150827 +0.00174 2.85121 0.202188 +0.0018125 2.81836 0.127534 +0.001885 2.89063 0.185755 +0.0019575 2.75825 0.129054 +0.00203 2.68337 0.145136 +0.0021025 2.80208 0.108617 +0.002175 2.85085 0.185012 +0.0022475 2.77516 0.119122 +0.00232 2.81406 0.0156313 +0.0023925 2.68452 0.248497 +0.002465 2.77484 0.0997455 +0.0025375 2.71656 0.11597 +0.00261 2.80092 0.259841 +0.0026825 2.72699 0.229301 +0.002755 2.70038 0.185166 +0.0028275 2.69869 0.188978 +0.0029 2.84098 0.168713 +0.0029725 2.65683 0.149512 +0.003045 2.61896 0.196009 +0.0031175 2.63068 0.116032 +0.00319 2.75051 0.0467144 +0.0032625 2.62534 0.181755 +0.003335 2.65746 0.10167 +0.0034075 2.64402 0.0981214 +0.00348 2.50678 0.154246 +0.0035525 2.65484 0.0975703 +0.003625 2.68998 0.129877 +0.0036975 2.54373 0.134824 +0.00377 2.54493 0.172082 +0.0038425 2.59353 0.186231 +0.003915 2.56354 0.181175 +0.0039875 2.60894 0.166775 +0.00406 2.58814 0.154981 +0.0041325 2.56121 0.193128 +0.004205 2.50598 0.164813 +0.0042775 2.54631 0.172082 +0.00435 2.49541 0.157887 +0.0044225 2.48091 0.0536908 +0.004495 2.54617 0.132357 +0.0045675 2.54012 0.113936 +0.00464 2.53276 0.178061 +0.0047125 2.58836 0.108926 +0.004785 2.46265 0.0780437 +0.0048575 2.52497 0.188043 +0.00493 2.42438 0.118408 +0.0050025 2.50813 0.181626 +0.005075 2.53437 0.169026 +0.0051475 2.54425 0.154701 +0.00522 2.4673 0.158826 +0.0052925 2.5188 0.174979 +0.005365 2.46297 0.102401 +0.0054375 2.50389 0.083609 +0.00551 2.44443 0.117301 +0.0055825 2.41324 0.131977 +0.005655 2.42925 0.124374 +0.0057275 2.49109 0.192172 +0.0058 2.28614 0.229326 +0.0058725 2.39587 0.0878342 +0.005945 2.43047 0.150447 +0.0060175 2.36571 0.117356 +0.00609 2.29519 0.164354 +0.0061625 2.29697 0.0875419 +0.006235 2.4228 0.137755 +0.0063075 2.33394 0.190682 +0.00638 2.36369 0.166266 +0.0064525 2.45855 0.122583 +0.006525 2.317 0.111569 +0.0065975 2.39475 0.0978166 +0.00667 2.44157 0.12131 +0.0067425 2.3479 0.235651 +0.006815 2.25696 0.111102 +0.0068875 2.27505 0.184924 +0.00696 2.31187 0.156877 +0.0070325 2.30648 0.0793547 +0.007105 2.29549 0.0875795 +0.0071775 2.23826 0.168491 +0.00725 2.38991 0.228616 +0.0073225 2.34732 0.0831832 +0.007395 2.34064 0.248598 +0.0074675 2.36667 0.150915 +0.00754 2.29142 0.193988 +0.0076125 2.24261 0.103791 +0.007685 2.26929 0.107916 +0.0077575 2.15906 0.0629802 +0.00783 2.30831 0.144255 +0.0079025 2.3277 0.0910698 +0.007975 2.11439 0.0276971 +0.0080475 2.21626 0.123514 +0.00812 2.20397 0.126695 +0.0081925 2.23358 0.113243 +0.008265 2.22813 0.175288 +0.0083375 2.2401 0.183734 +0.00841 2.21165 0.183522 +0.0084825 2.21727 0.136248 +0.008555 2.17897 0.0650427 +0.0086275 2.1858 0.0375209 +0.0087 2.10427 0.0662869 +0.0087725 2.16417 0.114596 +0.008845 2.20973 0.159248 +0.0089175 2.1208 0.195241 +0.00899 2.11941 0.104559 +0.0090625 2.1147 0.0990692 +0.009135 2.11952 0.0930154 +0.0092075 2.14939 0.139888 +0.00928 2.17718 0.153119 +0.0093525 2.11189 0.0320391 +0.009425 2.13724 0.209139 +0.0094975 2.0978 0.11812 +0.00957 2.07379 0.165414 +0.0096425 2.11482 0.182282 +0.009715 2.02439 0.120909 +0.0097875 2.02159 0.0990817 +0.00986 2.05625 0.141362 +0.0099325 2.04447 0.223648 +0.010005 2.04721 0.0143788 +0.0100775 2.15907 0.188302 +0.01015 2.07442 0.198752 +0.0102225 2.10541 0.168905 +0.010295 2.13818 0.0654686 +0.0103675 2.02486 0.218178 +0.01044 2.09866 0.197295 +0.0105125 2.08739 0.094318 +0.010585 2.07189 0.106058 +0.0106575 2.02078 0.10605 +0.01073 1.98297 0.189183 +0.0108025 2.00116 0.0838345 +0.010875 2.08004 0.223593 +0.0109475 1.9923 0.125121 +0.01102 2.01343 0.0639447 +0.0110925 2.01689 0.140728 +0.011165 2.07002 0.155111 +0.0112375 1.96043 0.146623 +0.01131 2.03694 0.0500669 +0.0113825 2.0163 0.210613 +0.011455 2.06749 0.161486 +0.0115275 2.07148 0.10038 +0.0116 2.06228 0.155854 +0.0116725 1.9652 0.146063 +0.011745 1.92812 0.136857 +0.0118175 2.08791 0.116287 +0.01189 1.9476 0.161064 +0.0119625 1.97686 0.165398 +0.012035 1.96314 0.134594 +0.0121075 1.95574 0.190815 +0.01218 1.98223 0.195976 +0.0122525 1.93745 0.125864 +0.012325 1.87626 0.10815 +0.0123975 1.92151 0.103344 +0.01247 1.98187 0.128065 +0.0125425 1.94405 0.0395667 +0.012615 1.82314 0.0846069 +0.0126875 1.88949 0.127768 +0.01276 1.95424 0.172854 +0.0128325 1.89429 0.0906648 +0.012905 1.95743 -0.0275426 +0.0129775 1.9252 0.159164 +0.01305 1.96427 0.115928 +0.0131225 1.92563 0.120938 +0.013195 1.87084 0.0963637 +0.0132675 1.77384 0.10716 +0.01334 1.88785 0.123923 +0.0134125 1.89015 0.0967102 +0.013485 1.95826 0.158075 +0.0135575 1.86008 0.0812418 +0.01363 1.81808 0.0150092 +0.0137025 1.88639 0.156856 +0.013775 1.79963 0.0903893 +0.0138475 1.89096 0.141817 +0.01392 1.92658 0.0863395 +0.0139925 1.78672 0.110363 +0.014065 1.71862 0.133041 +0.0141375 1.84963 0.112734 +0.01421 1.84152 0.0821812 +0.0142825 1.84212 0.145746 +0.014355 1.77053 0.123385 +0.0144275 1.89682 0.0577615 +0.0145 1.77047 0.177004 +0.0145725 1.68635 0.101712 +0.014645 1.70715 0.194928 +0.0147175 1.78016 0.0214763 +0.01479 1.80896 0.0371034 +0.0148625 1.73945 0.0141659 +0.014935 1.81186 0.163139 +0.0150075 1.91907 0.150372 +0.01508 1.67514 0.10992 +0.0151525 1.75399 0.186348 +0.015225 1.75173 0.17814 +0.0152975 1.88839 0.0401136 +0.01537 1.69803 0.101466 +0.0154425 1.72465 0.139984 +0.015515 1.7507 0.0657441 +0.0155875 1.86544 0.117811 +0.01566 1.719 0.0138694 +0.0157325 1.69974 -0.00803692 +0.015805 1.71306 0.0501337 +0.0158775 1.68729 0.122408 +0.01595 1.78577 0.153127 +0.0160225 1.73092 0.136598 +0.016095 1.64422 0.127054 +0.0161675 1.64902 0.141345 +0.01624 1.61882 0.118775 +0.0163125 1.73368 -0.0440465 +0.016385 1.66524 0.120633 +0.0164575 1.70664 0.0292461 +0.01653 1.56429 0.131881 +0.0166025 1.57343 0.134352 +0.016675 1.7076 0.0531606 +0.0167475 1.64915 0.0570642 +0.01682 1.64925 0.0377589 +0.0168925 1.64296 0.0273923 +0.016965 1.66126 0.145224 +0.0170375 1.63972 0.23745 +0.01711 1.61173 0.0658276 +0.0171825 1.64579 0.0641158 +0.017255 1.66478 0.037475 +0.0173275 1.67426 0.140548 +0.0174 1.64136 0.0311415 +0.0174725 1.58458 0.129025 +0.017545 1.6539 0.181643 +0.0176175 1.59164 0.0701696 +0.01769 1.58621 0.0285321 +0.0177625 1.62846 0.108709 +0.017835 1.53859 0.053098 +0.0179075 1.46474 0.0420133 +0.01798 1.64252 0.147975 +0.0180525 1.69407 0.211908 +0.018125 1.6528 0.216909 +0.0181975 1.6242 0.15868 +0.01827 1.56604 0.120153 +0.0183425 1.56072 -0.00681364 +0.018415 1.74914 0.172692 +0.0184875 1.64367 0.0890867 +0.01856 1.69986 0.159294 +0.0186325 1.63442 0.0325276 +0.018705 1.55543 0.168032 +0.0187775 1.64721 0.111264 +0.01885 1.51521 0.0807951 +0.0189225 1.59809 0.00131931 +0.018995 1.59676 0.165632 +0.0190675 1.60552 0.0756097 +0.01914 1.48496 0.0950194 +0.0192125 1.49734 0.117723 +0.019285 1.51677 0.184281 +0.0193575 1.56203 0.034565 +0.01943 1.55037 0.0359929 +0.0195025 1.51776 0.119923 +0.019575 1.4504 0.0303566 +0.0196475 1.51874 0.0950737 +0.01972 1.60548 0.088832 +0.0197925 1.51447 0.0201361 +0.019865 1.58175 0.120249 +0.0199375 1.51675 0.164204 +0.02001 1.56721 0.159373 +0.0200825 1.5013 0.0203866 +0.020155 1.49114 0.113385 +0.0202275 1.44399 0.0699024 +0.0203 1.47405 0.0221694 +0.0203725 1.51736 0.190652 +0.020445 1.47737 0.253194 +0.0205175 1.5286 0.0856089 +0.02059 1.51005 0.0264321 +0.0206625 1.50126 0.101307 +0.020735 1.53626 0.125752 +0.0208075 1.432 0.154856 +0.02088 1.51507 0.175931 +0.0209525 1.50807 0.130019 +0.021025 1.51756 0.0705537 +0.0210975 1.44462 0.0747747 +0.02117 1.47195 -0.078336 +0.0212425 1.3593 0.0992236 +0.021315 1.55201 0.123272 +0.0213875 1.38074 0.108455 +0.02146 1.50576 0.0305236 +0.0215325 1.42968 0.157014 +0.021605 1.47172 0.11794 +0.0216775 1.48071 0.0570976 +0.02175 1.44763 0.116558 +0.0218225 1.43628 0.0414747 +0.021895 1.44096 0.0806489 +0.0219675 1.46472 -0.0210839 +0.02204 1.44612 0.143575 +0.0221125 1.36582 0.168667 +0.022185 1.48472 0.0133768 +0.0222575 1.45173 0.135947 +0.02233 1.47767 0.0942094 +0.0224025 1.39733 0.16311 +0.022475 1.47678 0.122888 +0.0225475 1.43075 0.0870743 +0.02262 1.39716 0.0122954 +0.0226925 1.48076 -0.0502005 +0.022765 1.42725 0.0304401 +0.0228375 1.33409 0.070537 +0.02291 1.40151 0.0410864 +0.0229825 1.35567 0.0390824 +0.023055 1.43295 0.0724701 +0.0231275 1.46759 0.152939 +0.0232 1.3539 0.0312542 +0.0232725 1.44585 0.00742737 +0.023345 1.31343 0.0759395 +0.0234175 1.37929 0.112563 +0.02349 1.48002 0.0692303 +0.0235625 1.40261 0.0630888 +0.023635 1.40139 0.108809 +0.0237075 1.27606 0.0815549 +0.02378 1.31174 0.0266951 +0.0238525 1.33397 0.10886 +0.023925 1.22016 0.0804694 +0.0239975 1.2878 0.198443 +0.02407 1.33007 0.135688 +0.0241425 1.35384 0.0453533 +0.024215 1.24481 0.108922 +0.0242875 1.42226 0.044034 +0.02436 1.3056 0.0428357 +0.0244325 1.34953 0.0640866 +0.024505 1.35788 0.0926647 +0.0245775 1.3465 0.0991944 +0.02465 1.31195 0.130136 +0.0247225 1.37095 0.0636858 +0.024795 1.3871 -0.0515616 +0.0248675 1.32425 0.141583 +0.02494 1.31849 0.0711424 +0.0250125 1.31719 0.0706372 +0.025085 1.34579 0.0648131 +0.0251575 1.18894 0.0812293 +0.02523 1.35688 0.0684036 +0.0253025 1.26549 0.139083 +0.025375 1.22439 0.0781606 +0.0254475 1.30272 0.159695 +0.02552 1.26795 0.110333 +0.0255925 1.27753 0.0601454 +0.025665 1.20869 0.0817011 +0.0257375 1.27652 0.114842 +0.02581 1.37705 0.0232382 +0.0258825 1.21702 0.07242 +0.025955 1.19761 0.136097 +0.0260275 1.28984 0.0871119 +0.0261 1.24156 0.124833 +0.0261725 1.20958 0.247633 +0.026245 1.21978 0.157632 +0.0263175 1.26994 0.0943388 +0.02639 1.22398 0.0896545 +0.0264625 1.30103 0.116997 +0.026535 1.21259 0.143441 +0.0266075 1.24848 0.131388 +0.02668 1.22423 0.108075 +0.0267525 1.26173 0.134807 +0.026825 1.19964 0.0412618 +0.0268975 1.31563 0.0761524 +0.02697 1.2571 0.126929 +0.0270425 1.19297 0.0287659 +0.027115 1.15517 0.071276 +0.0271875 1.2391 0.0493363 +0.02726 1.12312 0.0959337 +0.0273325 1.28845 0.0974993 +0.027405 1.18542 0.0806615 +0.0274775 1.12881 0.0674392 +0.02755 1.22251 0.0558243 +0.0276225 1.24159 -0.00291417 +0.027695 1.17399 0.0323439 +0.0277675 1.26812 -0.0251504 +0.02784 1.25481 0.019919 +0.0279125 1.22602 -0.0271168 +0.027985 1.14901 0.0544549 +0.0280575 1.18673 -0.0453157 +0.02813 1.21791 0.108263 +0.0282025 1.17975 0.141224 +0.028275 1.15336 0.0336966 +0.0283475 1.2649 0.028624 +0.02842 1.16756 0.0958669 +0.0284925 1.25186 0.0304485 +0.028565 1.26703 0.06121 +0.0286375 1.17048 0.053766 +0.02871 1.25081 0.0783652 +0.0287825 1.12488 0.143111 +0.028855 1.16055 0.0199274 +0.0289275 1.10472 0.173088 +0.029 1.1004 0.101967 +0.0290725 1.11428 0.08616 +0.029145 1.12339 0.0120491 +0.0292175 1.14733 0.072658 +0.02929 1.09644 -0.00806614 +0.0293625 1.21421 0.105699 +0.029435 1.17621 0.111836 +0.0295075 1.13957 0.0626129 +0.02958 1.12499 0.0785489 +0.0296525 1.10611 0.168291 +0.029725 1.04201 0.119034 +0.0297975 1.1047 0.0938128 +0.02987 1.07121 0.101758 +0.0299425 1.05768 0.0776054 +0.030015 1.09781 0.0400343 +0.0300875 1.02943 0.0969107 +0.03016 1.10149 0.089692 +0.0302325 1.05364 -0.0481881 +0.030305 1.11917 0.050046 +0.0303775 1.11269 0.0394749 +0.03045 1.12863 0.16422 +0.0305225 1.12833 -0.00660488 +0.030595 1.06444 0.104409 +0.0306675 1.1856 0.195441 +0.03074 1.15491 0.0292335 +0.0308125 1.16013 0.174524 +0.030885 1.01782 0.238861 +0.0309575 1.0498 0.019752 +0.03103 0.987289 0.115201 +0.0311025 0.994073 0.155666 +0.031175 1.0717 0.0567469 +0.0312475 1.12299 -0.0182741 +0.03132 1.08661 0.0220441 +0.0313925 0.993885 0.0657566 +0.031465 1.16391 0.0140281 +0.0315375 1.00948 -0.0117819 +0.03161 1.0948 0.0743321 +0.0316825 1.13507 0.0202864 +0.031755 1.18142 0.0536282 +0.0318275 1.02473 0.0557658 +0.0319 1.0657 0.0278057 +0.0319725 0.986412 0.102585 +0.032045 1.12531 0.0508059 +0.0321175 1.0559 0.113824 +0.03219 1.03953 0.105624 +0.0322625 1.07499 0.076165 +0.032335 1.10206 0.0732383 +0.0324075 0.984663 -0.0686124 +0.03248 1.14148 -0.0372997 +0.0325525 1.05627 0.0415582 +0.032625 1.1614 0.0555028 +0.0326975 1.08837 0.213519 +0.03277 1.00748 0.00273881 +0.0328425 1.00277 0.0424433 +0.032915 1.00826 0.00585756 +0.0329875 1.09565 0.134323 +0.03306 1.03828 0.111152 +0.0331325 0.998436 0.0171259 +0.033205 1.07917 0.0876505 +0.0332775 0.916898 0.125998 +0.03335 1.01846 0.0224783 +0.0334225 0.967662 0.0117109 +0.033495 1.02499 0.179326 +0.0335675 0.878008 0.0842979 +0.03364 1.13649 0.0190673 +0.0337125 1.00674 0.0184411 +0.033785 0.95173 0.0440006 +0.0338575 0.975874 0.132357 +0.03393 0.978496 0.0134311 +0.0340025 1.06524 0.175522 +0.034075 1.03922 0.150986 +0.0341475 1.01284 -0.025618 +0.03422 0.917766 0.125839 +0.0342925 0.913366 0.12596 +0.034365 1.03524 0.0273339 +0.0344375 1.12075 0.112375 +0.03451 1.07375 0.0311749 +0.0345825 1.05917 0.147345 +0.034655 0.941622 0.0823983 +0.0347275 1.00773 0.0827281 +0.0348 0.96977 0.152464 +0.0348725 1.06746 -0.0291876 +0.034945 1.09284 -0.0135521 +0.0350175 1.04701 0.0393496 +0.03509 0.994453 0.0932116 +0.0351625 1.02177 0.0354668 +0.035235 1.01261 0.174633 +0.0353075 1.01436 0.12819 +0.03538 0.903141 0.121694 +0.0354525 0.953413 0.0376044 +0.035525 1.06245 0.0586299 +0.0355975 0.895898 0.0511482 +0.03567 0.877277 -0.0718355 +0.0357425 1.02059 0.0577489 +0.035815 1.02499 -0.0125919 +0.0358875 0.993192 0.0966894 +0.03596 0.953576 0.0861683 +0.0360325 0.894265 0.0242945 +0.036105 0.984275 0.151186 +0.0361775 0.920409 0.101662 +0.03625 0.950682 0.0185997 +0.0363225 1.00541 0.188273 +0.036395 0.988888 0.00154058 +0.0364675 1.01082 0.0790917 +0.03654 0.858185 0.117531 +0.0366125 0.944987 -0.000743153 +0.036685 0.928496 0.143788 +0.0367575 0.850636 0.14651 +0.03683 0.933189 -0.00591601 +0.0369025 1.02738 0.0652556 +0.036975 1.02047 0.121681 +0.0370475 1.02676 0.192565 +0.03712 0.907153 0.0335296 +0.0371925 0.945447 -0.00268037 +0.037265 0.92291 0.0280937 +0.0373375 0.876409 0.104463 +0.03741 0.839506 -0.0284778 +0.0374825 0.887614 0.0666376 +0.037555 0.962481 -0.0195433 +0.0376275 1.00597 -0.0251921 +0.0377 0.916986 0.0379134 +0.0377725 0.939497 0.120245 +0.037845 1.05819 0.123334 +0.0379175 0.970322 0.0536825 +0.03799 0.935481 0.125931 +0.0380625 0.925732 0.041053 +0.038135 0.879369 0.0606214 +0.0382075 0.877807 0.172675 +0.03828 0.894708 0.0466643 +0.0383525 1.04632 0.0458459 +0.038425 0.840132 0.0909696 +0.0384975 0.828367 0.052622 +0.03857 0.769077 -0.0716643 +0.0386425 0.84004 -0.0475118 +0.038715 0.84857 0.0170926 +0.0387875 0.842603 0.107344 +0.03886 0.788691 0.11093 +0.0389325 0.758372 -0.0970192 +0.039005 0.85388 -0.00894708 +0.0390775 0.875962 0.044894 +0.03915 0.863909 0.0142285 +0.0392225 0.857266 0.0198063 +0.039295 0.899551 0.0501045 +0.0393675 0.840107 0.098088 +0.03944 0.80993 0.0523757 +0.0395125 0.903396 0.0977498 +0.039585 0.749354 0.117836 +0.0396575 0.886554 0.0293588 +0.03973 0.791146 0.133576 +0.0398025 0.876517 0.122913 +0.039875 0.777268 -0.00959838 +0.0399475 0.850812 0.0495909 +0.04002 0.895968 0.0127839 +0.0400925 0.812134 0.0161866 +0.040165 0.84242 -0.0235221 +0.0402375 0.845442 0.00872998 +0.04031 0.834608 0.053528 +0.0403825 0.783873 0.0698106 +0.040455 0.918117 0.00160738 +0.0405275 0.830229 0.0447897 +0.0406 0.876024 0.0587175 +0.0406725 0.8887 0.0883101 +0.040745 0.799204 0.0294715 +0.0408175 0.884224 0.146105 +0.04089 0.771995 0.0090431 +0.0409625 0.826062 -0.0110513 +0.041035 0.757729 0.0769332 +0.0411075 0.814652 0.00713094 +0.04118 0.777715 0.0460088 +0.0412525 0.735163 0.189876 +0.041325 0.822446 0.000926855 +0.0413975 0.822551 0.0674517 +0.04147 0.840073 0.0711967 +0.0415425 0.798419 0.086352 +0.041615 0.80631 0.00679276 +0.0416875 0.773244 0.099328 +0.04176 0.789735 0.0844649 +0.0418325 0.772638 0.0389906 +0.041905 0.764255 0.0272253 +0.0419775 0.769566 0.0128716 +0.04205 0.787351 0.224566 +0.0421225 0.701417 -0.0198314 +0.042195 0.82698 0.0449358 +0.0422675 0.825006 0.0420801 +0.04234 0.77989 0.0417043 +0.0424125 0.836571 -0.00411657 +0.042485 0.756752 0.0898966 +0.0425575 0.730742 0.0253841 +0.04263 0.82511 0.0316676 +0.0427025 0.711666 0.0353959 +0.042775 0.798611 0.0660322 +0.0428475 0.812714 -0.0458585 +0.04292 0.768346 0.0550227 +0.0429925 0.861128 0.0159695 +0.043065 0.798586 0.0300978 +0.0431375 0.819232 0.128779 +0.04321 0.784612 0.0821812 +0.0432825 0.673223 -0.0307073 +0.043355 0.66706 0.00713094 +0.0434275 0.844875 -0.0046802 +0.0435 0.809796 0.0885564 +0.0435725 0.799768 0.0475869 +0.043645 0.801513 -0.0464764 +0.0437175 0.721866 0.0748081 +0.04379 0.890044 0.00898884 +0.0438625 0.825143 -0.00723949 +0.043935 0.742996 0.0605796 +0.0440075 0.703216 0.118971 +0.04408 0.740061 -0.0260689 +0.0441525 0.772609 0.0522838 +0.044225 0.800219 0.071443 +0.0442975 0.791384 0.0275426 +0.04437 0.743305 0.0755596 +0.0444425 0.733489 0.0659529 +0.044515 0.833397 -0.000701402 +0.0445875 0.76595 -0.00301019 +0.04466 0.743058 0.107453 +0.0447325 0.711666 0.0204159 +0.044805 0.832475 0.028553 +0.0448775 0.842006 0.0931072 +0.04495 0.811917 0.0929319 +0.0450225 0.724162 0.0943889 +0.045095 0.765887 0.0408234 +0.0451675 0.705274 0.0249708 +0.04524 0.791213 -0.0490315 +0.0453125 0.6223 0.058346 +0.045385 0.690825 0.0143496 +0.0454575 0.786295 0.073017 +0.04553 0.62974 -0.0748331 +0.0456025 0.809199 0.119873 +0.045675 0.889656 -0.0299934 +0.0457475 0.643426 0.0995284 +0.04582 0.776029 0.0149048 +0.0458925 0.774926 -0.132398 +0.045965 0.684458 -0.0477999 +0.0460375 0.804665 0.104434 +0.04611 0.784905 -0.0288285 +0.0461825 0.728634 0.0150885 +0.046255 0.7619 -0.034707 +0.0463275 0.830638 0.00311457 +0.0464 0.729009 0.0622747 +0.0464725 0.81324 0.0051979 +0.046545 0.688729 0.0623749 +0.0466175 0.732692 0.0123288 +0.04669 0.695413 0.00984471 +0.0467625 0.651408 0.123397 +0.046835 0.740608 0.0676813 +0.0469075 0.757391 0.170742 +0.04698 0.738942 0.145537 +0.0470525 0.715119 0.0423139 +0.047125 0.69353 0.0116191 +0.0471975 0.742294 0.0329242 +0.04727 0.75826 0.154301 +0.0473425 0.675556 0.0274341 +0.047415 0.676179 0.0218813 +0.0474875 0.705187 0.151115 +0.04756 0.668526 -0.0294673 +0.0476325 0.590432 0.00271794 +0.047705 0.724041 -0.000317304 +0.0477775 0.664117 0.0291333 +0.04785 0.657641 0.0912076 +0.0479225 0.68255 0.00944808 +0.047995 0.661708 0.027075 +0.0480675 0.610485 0.0911491 +0.04814 0.633322 0.0406647 +0.0482125 0.737576 -0.0490983 +0.048285 0.74452 -0.0194514 +0.0483575 0.697559 0.02829 +0.04843 0.744966 0.0756222 +0.0485025 0.642407 0.0970651 +0.048575 0.769883 0.155812 +0.0486475 0.486516 -0.00972781 +0.04872 0.652105 0.0401011 +0.0487925 0.635313 -0.00188711 +0.048865 0.776417 0.0834629 +0.0489375 0.778542 0.100313 +0.04901 0.691572 0.110688 +0.0490825 0.555838 0.098589 +0.049155 0.669081 -0.0640407 +0.0492275 0.624254 0.0303524 +0.0493 0.602443 0.00760271 +0.0493725 0.585864 0.0488561 +0.049445 0.653642 0.0428399 +0.0495175 0.759604 0.0779895 +0.04959 0.618943 0.151207 +0.0496625 0.649659 0.00323982 +0.049735 0.612271 0.152459 +0.0498075 0.691025 -0.00992403 +0.04988 0.668643 0.125848 +0.0499525 0.623056 0.0617444 +0.050025 0.608343 0.0239688 +0.0500975 0.737443 0.0884813 +0.05017 0.685313 0.0447437 +0.0502425 0.627886 -0.0160947 +0.050315 0.658243 -0.0169715 +0.0503875 0.624179 0.00536908 +0.05046 0.722551 0.108743 +0.0505325 0.611942 0.0997205 +0.050605 0.716572 -0.0561165 +0.0506775 0.646344 0.0334795 +0.05075 0.638887 0.0881807 +0.0508225 0.773143 0.112283 +0.050895 0.637914 0.0308701 +0.0509675 0.6201 0.0506597 +0.05104 0.710197 0.120366 +0.0511125 0.629519 0.0554193 +0.051185 0.570513 0.0630095 +0.0512575 0.487568 0.0629594 +0.05133 0.678053 0.0523715 +0.0514025 0.754995 0.133914 +0.051475 0.656289 -0.0282983 +0.0515475 0.649446 0.17953 +0.05162 0.548907 -0.00891368 +0.0516925 0.562777 0.0135313 +0.051765 0.680692 0.0300143 +0.0518375 0.605596 -0.0480378 +0.05191 0.605445 -0.00751921 +0.0519825 0.554001 0.0513194 +0.052055 0.625076 0.118496 +0.0521275 0.581143 0.108592 +0.0522 0.655408 0.109628 +0.0522725 0.628658 0.0426145 +0.052345 0.565945 0.0630471 +0.0524175 0.593112 -0.0246619 +0.05249 0.623298 -0.0494072 +0.0525625 0.566626 -0.0270792 +0.052635 0.628658 0.06121 +0.0527075 0.703141 0.0177397 +0.05278 0.553942 0.0649926 +0.0528525 0.599592 -0.0721903 +0.052925 0.683852 0.068128 +0.0529975 0.67015 -0.0150092 +0.05307 0.641589 0.0597154 +0.0531425 0.563044 0.103549 +0.053215 0.683702 0.0816718 +0.0532875 0.523732 0.0416459 +0.05336 0.560981 -0.0788579 +0.0534325 0.600335 -0.0274675 +0.053505 0.562276 0.0538662 +0.0535775 0.635585 0.0771795 +0.05365 0.601479 -0.00399132 +0.0537225 0.597859 0.0605295 +0.053795 0.654861 0.137546 +0.0538675 0.534875 0.099424 +0.05394 0.656009 0.111803 +0.0540125 0.653562 0.0494907 +0.054085 0.606577 0.0413954 +0.0541575 0.589518 0.0888069 +0.05423 0.630629 0.0470984 +0.0543025 0.605817 0.157486 +0.054375 0.593922 0.0342937 +0.0544475 0.50985 0.0445058 +0.05452 0.664029 0.153449 +0.0545925 0.608013 -0.0900469 +0.054665 0.585247 -0.00699317 +0.0547375 0.501462 0.100259 +0.05481 0.630241 0.108931 +0.0548825 0.539789 0.0316008 +0.054955 0.576345 0.0932993 +0.0550275 0.573548 0.0289329 +0.0551 0.673214 0.0168253 +0.0551725 0.591325 0.00842102 +0.055245 0.620567 0.0774592 +0.0553175 0.569699 0.104559 +0.05539 0.555708 0.0266492 +0.0554625 0.532286 -0.0481506 +0.055535 0.655537 0.00452573 +0.0556075 0.622396 0.0977206 +0.05568 0.529005 0.0897087 +0.0557525 0.602226 -0.0293337 +0.055825 0.610197 0.0436374 +0.0558975 0.548686 0.0802147 +0.05597 0.655621 -0.0247328 +0.0560425 0.590649 0.00962761 +0.056115 0.54348 -0.0001336 +0.0561875 0.532541 0.11159 +0.05626 0.62635 -0.0571978 +0.0563325 0.510113 0.142322 +0.056405 0.499262 0.162271 +0.0564775 0.588749 0.0431739 +0.05655 0.542528 0.071489 +0.0566225 0.523686 0.0884437 +0.056695 0.572408 0.102785 +0.0567675 0.565979 0.0817762 +0.05684 0.503504 0.019656 +0.0569125 0.505717 0.0917963 +0.056985 0.553521 0.114947 +0.0570575 0.684216 0.0678984 +0.05713 0.560263 0.0687167 +0.0572025 0.526988 0.0795551 +0.057275 0.541396 -0.0221861 +0.0573475 0.552055 0.0733593 +0.05742 0.554685 0.00980295 +0.0574925 0.600022 0.0747204 +0.057565 0.605212 0.0265907 +0.0576375 0.526846 0.130052 +0.05771 0.462263 0.0676521 +0.0577825 0.503942 0.0619574 +0.057855 0.540302 -0.00820392 +0.0579275 0.669532 0.0335004 +0.058 0.503099 0.0389363 +0.0580725 0.484704 0.101395 +0.058145 0.573289 0.0236599 +0.0582175 0.529339 -0.0515866 +0.05829 0.537564 0.0397796 +0.0583625 0.501036 0.0425268 +0.058435 0.511745 0.143174 +0.0585075 0.623406 0.0686791 +0.05858 0.606393 0.00216684 +0.0586525 0.554602 0.0494532 +0.058725 0.584453 -0.00138612 +0.0587975 0.555541 0.0890574 +0.05887 0.603817 0.087901 +0.0589425 0.517448 -0.0243571 +0.059015 0.439296 -0.00792002 +0.0590875 0.508856 0.0966769 +0.05916 0.464321 -0.00217519 +0.0592325 0.487321 -0.0183868 +0.059305 0.463323 0.0737309 +0.0593775 0.438002 -0.033204 +0.05945 0.65474 0.00311874 +0.0595225 0.473072 -0.0256639 +0.059595 0.491676 -0.0057657 +0.0596675 0.495492 0.0407357 +0.05974 0.558994 0.0173932 +0.0598125 0.466526 -0.0299391 +0.059885 0.510038 0.0560288 +0.0599575 0.411115 4.59272e-005 +0.06003 0.362939 0.0588595 +0.0601025 0.51577 0.00837927 +0.060175 0.565294 -0.0552314 +0.0602475 0.491659 -0.0106964 +0.06032 0.453111 0.0075067 +0.0603925 0.439759 -0.137717 +0.060465 0.576366 0.00654644 +0.0605375 0.554802 -0.0124541 +0.06061 0.561491 0.00143621 +0.0606825 0.447571 -0.0130929 +0.060755 0.497801 0.0588511 +0.0608275 0.40527 0.123401 +0.0609 0.491116 0.108805 +0.0609725 0.477898 0.0177606 +0.061045 0.477857 0.0489021 +0.0611175 0.467039 0.109352 +0.06119 0.484737 0.0194055 +0.0612625 0.52923 0.0986809 +0.061335 0.563662 0.0689839 +0.0614075 0.452518 -0.123376 +0.06148 0.410868 0.0363269 +0.0615525 0.486432 -0.0757057 +0.061625 0.497822 0.0079242 +0.0616975 0.491204 -0.0365607 +0.06177 0.520575 0.0181029 +0.0618425 0.370108 0.0409111 +0.061915 0.495692 0.0112809 +0.0619875 0.471235 -0.00192886 +0.06206 0.400994 0.021372 +0.0621325 0.495546 0.0272253 +0.062205 0.400318 -0.0797096 +0.0622775 0.530082 0.00496828 +0.06235 0.355562 0.0897922 +0.0624225 0.484954 0.195579 +0.062495 0.545062 0.0797805 +0.0625675 0.509036 0.0171385 +0.06264 0.453888 -0.0293379 +0.0627125 0.452293 -0.0324942 +0.062785 0.359841 -0.0180194 +0.0628575 0.463532 0.0203741 +0.06293 0.557879 0.0895417 +0.0630025 0.536704 0.0676813 +0.063075 0.46974 0.00821228 +0.0631475 0.395321 0.00838344 +0.06322 0.510852 0.0596277 +0.0632925 0.515311 0.0815675 +0.063365 0.42402 -0.0371034 +0.0634375 0.492665 0.0274884 +0.06351 0.454005 0.0978333 +0.0635825 0.488019 0.0778726 +0.063655 0.567415 0.0314463 +0.0637275 0.521152 0.0427439 +0.0638 0.451546 0.0614271 +0.0638725 0.516417 -0.0338052 +0.063945 0.423752 9.60231e-005 +0.0640175 0.495091 -0.0408317 +0.06409 0.448151 0.0382766 +0.0641625 0.489138 -0.0428023 +0.064235 0.43991 -0.0299892 +0.0643075 0.403065 0.0328366 +0.06438 0.439451 0.0755554 +0.0644525 0.461357 0.0292794 +0.064525 0.343596 0.0287492 +0.0645975 0.518576 0.0897964 +0.06467 0.420796 0.0861099 +0.0647425 0.457407 -0.0223197 +0.064815 0.416225 -0.0726872 +0.0648875 0.524458 0.0734762 +0.06496 0.502798 0.0268496 +0.0650325 0.50537 0.0912159 +0.065105 0.418283 0.153077 +0.0651775 0.471273 0.0225159 +0.06525 0.477961 0.0214429 +0.0653225 0.442945 -0.00680111 +0.065395 0.525339 0.0481088 +0.0654675 0.482528 0.0108676 +0.06554 0.51339 0.095821 +0.0656125 0.456614 -0.0471569 +0.065685 0.53136 0.097562 +0.0657575 0.381464 0.0480879 +0.06583 0.403449 0.098589 +0.0659025 0.459808 0.072086 +0.065975 0.429172 0.107511 +0.0660475 0.468112 -0.00437125 +0.06612 0.454209 -0.0552356 +0.0661925 0.355182 0.00813295 +0.066265 0.361282 0.0701321 +0.0663375 0.478788 -0.103779 +0.06641 0.428529 0.0411365 +0.0664825 0.464204 0.00873415 +0.066555 0.602769 0.0043629 +0.0666275 0.403299 0.0627631 +0.0667 0.549742 0.00873414 +0.0667725 0.436854 0.0024048 +0.066845 0.425949 -0.0285739 +0.0669175 0.492565 -0.0505387 +0.06699 0.424855 0.106772 +0.0670625 0.430766 0.0399633 +0.067135 0.403792 -0.0907859 +0.0672075 0.427998 0.0278224 +0.06728 0.492937 0.0583627 +0.0673525 0.438085 0.127042 +0.067425 0.464647 0.0761733 +0.0674975 0.456142 0.00378675 +0.06757 0.41445 0.0178942 +0.0676425 0.348301 0.0795217 +0.067715 0.422625 -0.045299 +0.0677875 0.294377 -0.0363352 +0.06786 0.472521 0.0811333 +0.0679325 0.351132 0.0704911 +0.068005 0.434282 -0.0431906 +0.0680775 0.462409 0.0236098 +0.06815 0.471247 0.117352 +0.0682225 0.472483 -0.00754845 +0.068295 0.515507 -0.0636148 +0.0683675 0.529326 0.0405729 +0.06844 0.428337 0.0977373 +0.0685125 0.366613 0.0791251 +0.068585 0.504735 -0.0308827 +0.0686575 0.373631 0.0380261 +0.06873 0.449717 -0.027217 +0.0688025 0.50838 2.50556e-005 +0.068875 0.360935 0.022971 +0.0689475 0.443008 0.0903767 +0.06902 0.38548 0.0262943 +0.0690925 0.47225 -0.0498039 +0.069165 0.474178 -0.0104543 +0.0692375 0.289279 0.072708 +0.06931 0.421832 0.0273255 +0.0693825 0.42885 0.0347278 +0.069455 0.281981 -0.0360639 +0.0695275 0.450652 0.0167251 +0.0696 0.506184 -0.0674433 +0.0696725 0.511144 -0.0317177 +0.069745 0.44669 -0.00199566 +0.0698175 0.439805 0.139696 +0.06989 0.487042 -0.0422763 +0.0699625 0.37073 0.0823983 +0.070035 0.477381 0.0553274 +0.0701075 0.470776 0.0453241 +0.07018 0.327297 -0.0357382 +0.0702525 0.35294 0.0650594 +0.070325 0.366429 0.0709712 +0.0703975 0.483021 0.0537075 +0.07047 0.427339 0.167694 +0.0705425 0.354313 -0.014909 +0.070615 0.388106 0.0151219 +0.0706875 0.494707 0.0564964 +0.07076 0.413866 0.0296761 +0.0708325 0.407662 -0.0360847 +0.070905 0.345237 -0.00181196 +0.0709775 0.532432 -0.0377172 +0.07105 0.433409 0.0566885 +0.0711225 0.453959 0.0491943 +0.071195 0.243421 0.0905521 +0.0712675 0.39798 -0.0298055 +0.07134 0.311119 -0.0334419 +0.0714125 0.461904 0.096084 +0.071485 0.398072 0.124729 +0.0715575 0.40818 0.0078407 +0.07163 0.388845 0.024044 +0.0717025 0.428971 0.0345233 +0.071775 0.410914 0.000108553 +0.0718475 0.434144 0.0502631 +0.07192 0.404405 0.0433743 +0.0719925 0.462108 -0.123401 +0.072065 0.376291 0.117218 +0.0721375 0.481272 -0.0383768 +0.07221 0.33659 0.0583961 +0.0722825 0.397124 0.0920092 +0.072355 0.299946 0.0769081 +0.0724275 0.320091 -0.0417586 +0.0725 0.355716 0.101808 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/8/data-08500um.dat b/example_data/bgr/MouseLift/cpmgfastautotest/8/data-08500um.dat new file mode 100644 index 0000000..0cd1410 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/8/data-08500um.dat @@ -0,0 +1,1000 @@ +7.25e-005 2.47534 0.197859 +0.000145 3.17313 0.0911282 +0.0002175 3.05272 0.131864 +0.00029 3.01818 0.176528 +0.0003625 2.99209 -0.0186791 +0.000435 2.97129 0.0530813 +0.0005075 2.82969 0.0571811 +0.00058 3.11363 0.109319 +0.0006525 2.91971 0.0214638 +0.000725 2.88422 0.00336089 +0.0007975 2.93097 0.0937001 +0.00087 2.88932 0.00450068 +0.0009425 2.89998 0.0960715 +0.001015 2.878 0.0979836 +0.0010875 2.85662 0.206351 +0.00116 2.89078 0.101699 +0.0012325 2.84242 0.131718 +0.001305 2.81928 0.134749 +0.0013775 2.9211 0.188916 +0.00145 2.82934 0.152543 +0.0015225 2.81177 0.100322 +0.001595 2.79985 0.238724 +0.0016675 2.75565 0.215527 +0.00174 2.90028 0.119005 +0.0018125 2.81603 0.130482 +0.001885 2.82559 0.17255 +0.0019575 2.90931 0.0778684 +0.00203 2.72862 0.15271 +0.0021025 2.74869 0.135772 +0.002175 2.75773 0.0961425 +0.0022475 2.71337 0.189868 +0.00232 2.76924 0.215218 +0.0023925 2.77523 0.17422 +0.002465 2.66436 0.191237 +0.0025375 2.69835 0.255791 +0.00261 2.78282 0.0831247 +0.0026825 2.76078 0.174286 +0.002755 2.70055 0.0645459 +0.0028275 2.71504 0.101683 +0.0029 2.67724 0.0665081 +0.0029725 2.63157 0.159064 +0.003045 2.65159 0.205895 +0.0031175 2.74566 0.117978 +0.00319 2.59693 0.142051 +0.0032625 2.53413 0.109544 +0.003335 2.68224 0.208267 +0.0034075 2.60992 0.100029 +0.00348 2.6198 0.0869532 +0.0035525 2.54245 0.130703 +0.003625 2.62432 0.175217 +0.0036975 2.64999 0.199742 +0.00377 2.58354 0.117126 +0.0038425 2.62613 0.129267 +0.003915 2.58671 0.122387 +0.0039875 2.44691 0.142811 +0.00406 2.55449 0.0920134 +0.0041325 2.57242 0.0967729 +0.004205 2.57802 0.184206 +0.0042775 2.58945 0.120287 +0.00435 2.50799 0.0322354 +0.0044225 2.52936 0.100781 +0.004495 2.46094 0.128282 +0.0045675 2.54243 0.130728 +0.00464 2.49835 0.272408 +0.0047125 2.48989 0.139291 +0.004785 2.53713 0.103749 +0.0048575 2.51225 0.0897755 +0.00493 2.45048 0.0450318 +0.0050025 2.47443 0.125326 +0.005075 2.52848 0.104518 +0.0051475 2.42836 0.112329 +0.00522 2.47992 0.206142 +0.0052925 2.48198 0.129175 +0.005365 2.43255 0.112179 +0.0054375 2.48739 0.124608 +0.00551 2.53322 0.142264 +0.0055825 2.39147 0.118512 +0.005655 2.36837 0.108772 +0.0057275 2.43489 0.120708 +0.0058 2.42629 0.00660072 +0.0058725 2.45219 0.0822981 +0.005945 2.49717 0.218679 +0.0060175 2.35769 0.136782 +0.00609 2.30638 0.133045 +0.0061625 2.3877 0.0393078 +0.006235 2.3977 0.141867 +0.0063075 2.35598 0.0858427 +0.00638 2.38565 0.108317 +0.0064525 2.31472 0.11713 +0.006525 2.29258 0.137104 +0.0065975 2.40192 0.153077 +0.00667 2.30602 0.140803 +0.0067425 2.2492 0.0591225 +0.006815 2.38237 0.139366 +0.0068875 2.27907 0.222287 +0.00696 2.38805 0.00842519 +0.0070325 2.21423 0.0634144 +0.007105 2.24085 0.124691 +0.0071775 2.30911 0.127752 +0.00725 2.26981 0.0591893 +0.0073225 2.31322 0.0900803 +0.007395 2.27626 0.0952532 +0.0074675 2.29597 0.14165 +0.00754 2.26258 0.151712 +0.0076125 2.17727 -0.014003 +0.007685 2.26531 0.0600536 +0.0077575 2.20231 0.146163 +0.00783 2.23252 0.124278 +0.0079025 2.2948 0.0681781 +0.007975 2.2089 0.13801 +0.0080475 2.10647 0.079075 +0.00812 2.23049 0.168228 +0.0081925 2.16653 0.152059 +0.008265 2.27909 0.0871453 +0.0083375 2.20195 0.0979711 +0.00841 2.08755 0.197445 +0.0084825 2.16361 0.153841 +0.008555 2.19061 0.10056 +0.0086275 2.21347 0.148021 +0.0087 2.31111 0.143074 +0.0087725 2.14373 0.210238 +0.008845 2.22992 0.132352 +0.0089175 2.0226 0.168337 +0.00899 2.13125 0.104914 +0.0090625 2.1747 0.109469 +0.009135 2.2218 0.171042 +0.0092075 2.1303 0.0326445 +0.00928 2.06936 0.128015 +0.0093525 2.18492 0.0621619 +0.009425 2.05767 0.112934 +0.0094975 2.17162 0.127635 +0.00957 2.10472 0.190949 +0.0096425 2.08784 0.121819 +0.009715 2.17836 0.13148 +0.0097875 2.01761 0.167757 +0.00986 2.07559 0.0978166 +0.0099325 2.05152 0.102071 +0.010005 2.11056 0.161882 +0.0100775 2.12025 0.0845192 +0.01015 1.93799 0.12485 +0.0102225 2.07348 0.0982133 +0.010295 2.03655 0.0817345 +0.0103675 2.05702 0.0936124 +0.01044 1.96812 0.175004 +0.0105125 1.96524 0.0144372 +0.010585 1.95672 0.0861558 +0.0106575 2.01699 0.0560163 +0.01073 2.03754 0.0839639 +0.0108025 2.03338 0.106021 +0.010875 1.95369 0.0933076 +0.0109475 2.05883 0.147295 +0.01102 1.92138 -0.0112726 +0.0110925 1.97477 0.0720401 +0.011165 1.94046 0.151019 +0.0112375 1.95406 0.0502882 +0.01131 1.87643 0.148639 +0.0113825 2.0393 0.117727 +0.011455 1.94328 0.122291 +0.0115275 1.97598 0.166454 +0.0116 1.94096 0.0389947 +0.0116725 1.91356 0.114963 +0.011745 1.99616 0.0605128 +0.0118175 1.92522 0.0366442 +0.01189 1.96985 0.0619949 +0.0119625 2.03351 0.0591601 +0.012035 1.91296 0.0875544 +0.0121075 1.9588 0.079743 +0.01218 1.93981 0.0246076 +0.0122525 1.86635 0.107995 +0.012325 1.87706 0.123489 +0.0123975 1.90686 0.0860097 +0.01247 1.90921 0.0730963 +0.0125425 1.86847 0.150201 +0.012615 1.83139 0.190193 +0.0126875 1.83647 0.098493 +0.01276 1.85864 0.0679861 +0.0128325 1.9141 0.138757 +0.012905 1.82236 0.0836675 +0.0129775 1.87125 0.0529811 +0.01305 1.85442 0.181463 +0.0131225 1.80475 0.12963 +0.013195 1.98847 0.0637944 +0.0132675 1.82352 0.174645 +0.01334 1.89696 0.119356 +0.0134125 1.86852 0.14937 +0.013485 1.82409 0.0303316 +0.0135575 1.83225 0.0816426 +0.01363 1.86572 0.107056 +0.0137025 1.8103 0.161227 +0.013775 1.79892 0.00755679 +0.0138475 1.80322 0.109532 +0.01392 1.66033 0.0900678 +0.0139925 1.86173 0.101871 +0.014065 1.88385 0.086686 +0.0141375 1.77882 0.206668 +0.01421 1.7526 0.130219 +0.0142825 1.82732 0.0213719 +0.014355 1.79783 0.0497872 +0.0144275 1.74666 0.0772546 +0.0145 1.78158 0.127843 +0.0145725 1.86701 0.0109594 +0.014645 1.80107 0.0241692 +0.0147175 1.68064 0.107106 +0.01479 1.82578 0.21005 +0.0148625 1.73717 0.166876 +0.014935 1.71385 0.141049 +0.0150075 1.77046 0.104351 +0.01508 1.79873 0.0866443 +0.0151525 1.79288 0.0613269 +0.015225 1.80279 0.130804 +0.0152975 1.78797 0.0926605 +0.01537 1.69361 0.0283776 +0.0154425 1.77672 0.12561 +0.015515 1.68694 0.159782 +0.0155875 1.80282 0.0897213 +0.01566 1.76551 0.0223656 +0.0157325 1.73382 0.0678149 +0.015805 1.76307 0.20337 +0.0158775 1.72535 0.100685 +0.01595 1.72837 0.0961341 +0.0160225 1.70255 0.0201946 +0.016095 1.59484 0.101908 +0.0161675 1.58383 0.106906 +0.01624 1.65999 0.0628675 +0.0163125 1.6576 0.102605 +0.016385 1.75986 0.0729377 +0.0164575 1.74899 0.0854043 +0.01653 1.75666 0.114492 +0.0166025 1.6612 0.0968146 +0.016675 1.66151 0.119681 +0.0167475 1.68302 0.161219 +0.01682 1.64268 0.194293 +0.0168925 1.66404 0.09451 +0.016965 1.7151 0.0769707 +0.0170375 1.59968 0.0914748 +0.01711 1.62988 0.000187875 +0.0171825 1.57016 0.188857 +0.017255 1.7261 0.0616234 +0.0173275 1.6364 0.141876 +0.0174 1.74217 0.0741609 +0.0174725 1.57727 0.123952 +0.017545 1.5636 0.105975 +0.0176175 1.65666 0.134891 +0.01769 1.5968 0.0408735 +0.0177625 1.63091 0.0559119 +0.017835 1.56138 0.0308618 +0.0179075 1.64262 0.124061 +0.01798 1.5918 0.0526554 +0.0180525 1.53657 0.109966 +0.018125 1.54618 0.10218 +0.0181975 1.59392 0.0923599 +0.01827 1.52116 0.153729 +0.0183425 1.66632 0.0591142 +0.018415 1.51289 0.102743 +0.0184875 1.61721 0.168291 +0.01856 1.57096 0.0889572 +0.0186325 1.56792 0.147829 +0.018705 1.61375 0.0159152 +0.0187775 1.58054 0.118679 +0.01885 1.63577 0.0943931 +0.0189225 1.58654 0.0814338 +0.018995 1.60071 0.121293 +0.0190675 1.55842 0.134281 +0.01914 1.50363 0.0822689 +0.0192125 1.60364 0.172203 +0.019285 1.51335 0.0502589 +0.0193575 1.50839 0.0753884 +0.01943 1.59468 0.0375335 +0.0195025 1.55159 0.0277681 +0.019575 1.53691 0.0535405 +0.0196475 1.51509 -0.000388272 +0.01972 1.4537 -0.0214346 +0.0197925 1.5142 0.0373372 +0.019865 1.52254 0.136878 +0.0199375 1.54552 0.0574316 +0.02001 1.50842 0.0668839 +0.0200825 1.51459 0.158112 +0.020155 1.56543 0.124032 +0.0202275 1.48817 0.0218437 +0.0203 1.46805 0.0856966 +0.0203725 1.47083 0.0839806 +0.020445 1.49619 0.0738353 +0.0205175 1.47471 0.173698 +0.02059 1.5129 0.124299 +0.0206625 1.55576 0.0729419 +0.020735 1.45596 0.0492611 +0.0208075 1.46389 0.0854335 +0.02088 1.45884 0.102004 +0.0209525 1.46465 0.122838 +0.021025 1.43873 0.0788495 +0.0210975 1.4225 0.0690466 +0.02117 1.46788 0.0346276 +0.0212425 1.38683 0.0660572 +0.021315 1.40345 0.0590808 +0.0213875 1.38528 0.0942512 +0.02146 1.49111 0.0158985 +0.0215325 1.44981 0.0933619 +0.021605 1.45627 0.0730128 +0.0216775 1.48474 0.0859846 +0.02175 1.45411 0.0868614 +0.0218225 1.5782 0.022232 +0.021895 1.3803 0.0850995 +0.0219675 1.42303 0.106275 +0.02204 1.32974 0.157185 +0.0221125 1.35278 0.188552 +0.022185 1.33614 0.0279309 +0.0222575 1.39118 0.0797096 +0.02233 1.37751 0.179196 +0.0224025 1.37655 0.113005 +0.022475 1.49617 0.100697 +0.0225475 1.42316 0.0870576 +0.02262 1.40238 0.0543713 +0.0226925 1.30911 0.0148339 +0.022765 1.40197 0.0892161 +0.0228375 1.4074 0.0946227 +0.02291 1.38622 0.160187 +0.0229825 1.33343 0.0188252 +0.023055 1.36438 0.0187751 +0.0231275 1.3597 0.0146293 +0.0232 1.46162 0.141959 +0.0232725 1.26911 0.0281939 +0.023345 1.34957 0.0891034 +0.0234175 1.26768 0.041316 +0.02349 1.42199 0.110421 +0.0235625 1.2756 0.0239271 +0.023635 1.35171 0.0612017 +0.0237075 1.36137 0.0871328 +0.02378 1.32221 0.106947 +0.0238525 1.34018 0.0310288 +0.023925 1.36928 0.125994 +0.0239975 1.44293 0.0695392 +0.02407 1.2992 0.110141 +0.0241425 1.31281 0.08535 +0.024215 1.33163 0.0330119 +0.0242875 1.27521 0.00217519 +0.02436 1.34962 0.053599 +0.0244325 1.32275 0.0734053 +0.024505 1.23113 0.055294 +0.0245775 1.18766 0.0975828 +0.02465 1.31162 0.0618655 +0.0247225 1.31418 0.0705036 +0.024795 1.27594 0.101466 +0.0248675 1.23705 0.13044 +0.02494 1.36021 0.0706205 +0.0250125 1.28777 0.105365 +0.025085 1.23849 0.104321 +0.0251575 1.24956 -0.00609137 +0.02523 1.20348 0.133939 +0.0253025 1.3492 0.0206747 +0.025375 1.26071 0.180712 +0.0254475 1.30776 0.0869532 +0.02552 1.24169 -0.0282774 +0.0255925 1.29689 0.0756807 +0.025665 1.25979 0.0756097 +0.0257375 1.31007 0.0462927 +0.02581 1.15781 0.0911992 +0.0258825 1.32572 0.0618488 +0.025955 1.19688 0.0278474 +0.0260275 1.27347 0.09284 +0.0261 1.1398 0.106851 +0.0261725 1.30226 0.0339722 +0.026245 1.28111 0.0832834 +0.0263175 1.2712 0.0954786 +0.02639 1.18235 0.144218 +0.0264625 1.19509 0.096681 +0.026535 1.209 0.0494031 +0.0266075 1.2082 0.043391 +0.02668 1.29174 0.0618321 +0.0267525 1.1763 0.130824 +0.026825 1.25151 0.0764698 +0.0268975 1.16409 0.135342 +0.02697 1.14838 0.0902849 +0.0270425 1.20047 0.0650218 +0.027115 1.1899 0.0424725 +0.0271875 1.27832 0.0657942 +0.02726 1.20616 0.0504635 +0.0273325 1.1166 0.0488854 +0.027405 1.14515 0.0421093 +0.0274775 1.26234 0.0663662 +0.02755 1.20609 0.0435246 +0.0276225 1.2009 0.0125 +0.027695 1.21502 0.0960047 +0.0277675 1.24307 0.0849158 +0.02784 1.32677 0.0429192 +0.0279125 1.23813 -0.0102038 +0.027985 1.14631 0.01832 +0.0280575 1.16326 0.101486 +0.02813 1.02736 0.0506806 +0.0282025 1.04026 0.00142786 +0.028275 1.14339 0.099829 +0.0283475 1.19284 0.0667753 +0.02842 1.00381 -0.00375335 +0.0284925 1.09966 0.0447229 +0.028565 1.10697 -0.076261 +0.0286375 1.10197 0.130336 +0.02871 1.12031 0.110663 +0.0287825 1.18526 0.14418 +0.028855 1.17571 0.0183952 +0.0289275 1.20437 0.0785781 +0.029 1.13915 0.188122 +0.0290725 1.10774 0.105081 +0.029145 1.08288 0.0431614 +0.0292175 1.15909 0.0640115 +0.02929 1.18907 0.12586 +0.0293625 1.04882 0.0756807 +0.029435 1.13246 0.115953 +0.0295075 1.18174 0.0439296 +0.02958 1.04702 0.0450402 +0.0296525 1.2134 0.0693012 +0.029725 1.1584 -0.0383476 +0.0297975 1.14448 0.129735 +0.02987 1.11727 0.109219 +0.0299425 1.24341 0.156701 +0.030015 1.16454 -0.0230419 +0.0300875 1.03724 0.0318805 +0.03016 1.06349 0.119719 +0.0302325 1.2462 0.0715098 +0.030305 1.04562 0.0130762 +0.0303775 1.06553 -0.0173556 +0.03045 1.05138 0.0513528 +0.0305225 1.0855 0.146823 +0.030595 1.08025 0.0271251 +0.0306675 1.10707 0.0721444 +0.03074 1.0154 0.054459 +0.0308125 1.12789 0.0664205 +0.030885 1.10422 0.00492653 +0.0309575 1.16733 0.0644958 +0.03103 1.00666 -0.0166751 +0.0311025 1.06071 0.117072 +0.031175 1.2213 0.0827866 +0.0312475 1.03291 0.0950486 +0.03132 1.03855 0.0304693 +0.0313925 1.05702 0.132227 +0.031465 1.09337 0.0429944 +0.0315375 1.13455 0.0880596 +0.03161 1.0851 0.0240565 +0.0316825 1.05789 0.0435372 +0.031755 0.933569 0.0936917 +0.0318275 1.10047 0.0371577 +0.0319 1.00747 0.0843856 +0.0319725 1.04976 0.084323 +0.032045 1.08278 -0.0317135 +0.0321175 1.00004 -0.0274216 +0.03219 1.02022 0.0567261 +0.0322625 1.02894 0.110734 +0.032335 1.01854 0.0959963 +0.0324075 1.09986 0.0737476 +0.03248 0.974513 -0.000705582 +0.0325525 1.07487 0.0853793 +0.032625 1.01287 0.132265 +0.0326975 1.10885 0.07743 +0.03277 1.05549 0.0228332 +0.0328425 1.10625 0.0148756 +0.032915 0.959947 0.0812001 +0.0329875 0.961525 0.0910823 +0.03306 1.01406 0.0877298 +0.0331325 1.05769 0.102138 +0.033205 1.00382 -0.0115732 +0.0332775 1.05116 0.0371285 +0.03335 1.029 0.0979628 +0.0334225 1.06466 -0.00462175 +0.033495 0.851337 0.0630095 +0.0335675 1.01807 0.0548807 +0.03364 0.970589 0.0680946 +0.0337125 0.965228 -0.00717269 +0.033785 1.05551 -0.0206664 +0.0338575 0.94528 0.0961216 +0.03393 0.986604 0.0574734 +0.0340025 0.922902 0.0669841 +0.034075 0.970727 0.0540499 +0.0341475 1.00405 0.0366943 +0.03422 0.98961 0.0071393 +0.0342925 0.954607 0.0324733 +0.034365 1.00757 0.0770876 +0.0344375 1.00486 0.116107 +0.03451 0.901346 0.128958 +0.0345825 0.990395 0.0871369 +0.034655 0.972388 0.104083 +0.0347275 0.978964 0.0635105 +0.0348 0.967629 -0.0226662 +0.0348725 1.0204 0.0221819 +0.034945 0.910965 0.153591 +0.0350175 0.961295 0.0552606 +0.03509 0.893781 0.0991652 +0.0351625 0.999476 0.0623331 +0.035235 0.934028 0.077526 +0.0353075 0.850912 0.0107549 +0.03538 1.00176 0.103749 +0.0354525 0.946115 0.134177 +0.035525 0.887485 -0.0724742 +0.0355975 0.994929 0.0466392 +0.03567 0.948115 0.0115565 +0.0357425 0.884212 0.0515991 +0.035815 0.860852 -0.0784028 +0.0358875 0.989122 0.149804 +0.03596 0.963988 0.0977624 +0.0360325 0.88799 0.0373539 +0.036105 0.964272 0.0548807 +0.0361775 0.897831 0.0506681 +0.03625 0.862727 0.0558785 +0.0363225 0.924881 0.0896419 +0.036395 1.01021 0.0937836 +0.0364675 0.885268 0.0971361 +0.03654 0.934337 0.0715641 +0.0366125 0.959383 0.104747 +0.036685 0.956214 0.0952573 +0.0367575 0.851037 -0.00993238 +0.03683 0.961942 0.11984 +0.0369025 0.868739 0.0499124 +0.036975 0.833736 0.0275802 +0.0370475 0.812122 0.0759145 +0.03712 0.951179 0.106233 +0.0371925 0.904319 -0.026073 +0.037265 0.911429 0.0529685 +0.0373375 0.869048 0.0153474 +0.03741 0.802807 0.0205244 +0.0374825 0.964907 0.0622079 +0.037555 0.884379 0.00363227 +0.0376275 0.823427 -0.0371869 +0.0377 0.931247 0.060517 +0.0377725 0.866288 0.0263152 +0.037845 0.983581 0.0333835 +0.0379175 0.864539 0.0995451 +0.03799 0.889806 -0.0411991 +0.0380625 0.895831 0.00713094 +0.038135 0.874655 0.0358092 +0.0382075 0.874488 0.0607007 +0.03828 0.952953 0.138865 +0.0383525 0.932955 -0.0175226 +0.038425 0.871958 0.100409 +0.0384975 0.841493 0.00909321 +0.03857 0.816639 0.00255929 +0.0386425 0.890971 0.0151303 +0.038715 0.917887 0.0331622 +0.0387875 0.798824 0.0468939 +0.03886 0.821386 0.150142 +0.0389325 0.820697 0.0534612 +0.039005 0.902406 0.0648131 +0.0390775 0.970906 -0.0001837 +0.03915 0.856406 0.0852039 +0.0392225 0.895747 0.0608176 +0.039295 0.874655 -0.0326696 +0.0393675 0.848261 0.0748665 +0.03944 0.904974 0.111314 +0.0395125 0.914451 0.0672805 +0.039585 0.864205 -0.0517244 +0.0396575 0.823553 0.0168128 +0.03973 0.770522 0.0638779 +0.0398025 0.827882 0.0840265 +0.039875 0.854197 -0.0193554 +0.0399475 0.729573 0.0658485 +0.04002 0.798294 0.0257474 +0.0400925 0.850874 -0.0371243 +0.040165 0.86365 0.117314 +0.0402375 0.833356 0.162346 +0.04031 0.722354 0.0197771 +0.0403825 0.795476 0.0355921 +0.040455 0.882517 0.0262609 +0.0405275 0.771181 -0.0312167 +0.0406 0.856506 0.059135 +0.0406725 0.833811 0.0911282 +0.040745 0.855938 0.0305821 +0.0408175 0.829807 0.0527138 +0.04089 0.834955 -0.0103916 +0.0409625 0.806652 0.106772 +0.041035 0.958907 0.106939 +0.0411075 0.76547 -0.00181196 +0.04118 0.955417 0.0320767 +0.0412525 0.866589 -0.0102163 +0.041325 0.694073 0.0789414 +0.0413975 0.742591 0.0399132 +0.04147 0.737418 0.0406856 +0.0415425 0.749893 0.0166876 +0.041615 0.832646 0.000580327 +0.0416875 0.806911 0.126169 +0.04176 0.711345 0.019727 +0.0418325 0.783076 0.0986183 +0.041905 0.709074 0.0105503 +0.0419775 0.743689 0.0753801 +0.04205 0.775582 0.0222905 +0.0421225 0.820843 0.135417 +0.042195 0.801826 -0.0569181 +0.0422675 0.73356 -0.0336799 +0.04234 0.780963 0.148226 +0.0424125 0.82415 0.0217853 +0.042485 0.807867 0.0643538 +0.0425575 0.743033 0.0599826 +0.04263 0.747254 0.0168379 +0.0427025 0.787727 -0.036569 +0.042775 0.767303 -0.00416668 +0.0428475 0.754506 0.0258142 +0.04292 0.807416 0.027384 +0.0429925 0.797142 -0.00035905 +0.043065 0.78865 0.0517703 +0.0431375 0.781848 0.0505345 +0.04321 0.859316 0.0779936 +0.0432825 0.730629 0.069368 +0.043355 0.73632 0.00221694 +0.0434275 0.729803 0.0886065 +0.0435 0.818154 -0.0172721 +0.0435725 0.736574 -0.0116984 +0.043645 0.707537 0.0826947 +0.0437175 0.720492 0.063118 +0.04379 0.738111 0.085254 +0.0438625 0.829586 -0.0047971 +0.043935 0.799726 -0.0243279 +0.0440075 0.781698 0.0426646 +0.04408 0.788896 0.122988 +0.0441525 0.747045 0.0623248 +0.044225 0.774421 0.0959713 +0.0442975 0.749555 0.0818013 +0.04437 0.695029 -0.0366943 +0.0444425 0.784955 0.0457708 +0.044515 0.714084 0.0262818 +0.0445875 0.83012 0.0311749 +0.04466 0.700314 -0.0317761 +0.0447325 0.688587 0.162292 +0.044805 0.777678 0.0289955 +0.0448775 0.676988 0.136039 +0.04495 0.757475 0.14833 +0.0450225 0.836562 0.0920008 +0.045095 0.81114 0.0620784 +0.0451675 0.744925 -0.0441091 +0.04524 0.714009 0.082248 +0.0453125 0.761779 -0.0265156 +0.045385 0.723248 -0.0547638 +0.0454575 0.692298 -0.0369698 +0.04553 0.712681 0.078741 +0.0456025 0.732804 -0.0383559 +0.045675 0.721553 0.0220316 +0.0457475 0.699818 0.0494782 +0.04582 0.706397 -0.0467227 +0.0458925 0.807266 0.00756097 +0.045965 0.643684 0.0997497 +0.0460375 0.79467 0.104058 +0.04611 0.628575 0.0167502 +0.0461825 0.685005 0.0289705 +0.046255 0.712071 0.0343187 +0.0463275 0.766589 0.0552648 +0.0464 0.762046 0.00132348 +0.0464725 0.60466 0.00539831 +0.046545 0.706598 -0.00294757 +0.0466175 0.614576 0.0151762 +0.04669 0.699312 0.0628759 +0.0467625 0.705667 0.060613 +0.046835 0.721782 0.198848 +0.0469075 0.697918 -0.0717728 +0.04698 0.781924 -0.0422137 +0.0470525 0.727832 0.0529518 +0.047125 0.693376 0.0594857 +0.0471975 0.734992 0.0138694 +0.04727 0.67784 -0.0345942 +0.0473425 0.760426 0.0274967 +0.047415 0.71337 0.064667 +0.0474875 0.650865 -0.00170759 +0.04756 0.661963 0.0336966 +0.0476325 0.577915 -0.0235889 +0.047705 0.77693 -0.0748457 +0.0477775 0.611382 0.0126462 +0.04785 0.67043 -0.0283609 +0.0479225 0.66309 0.0281814 +0.047995 0.655487 0.0742612 +0.0480675 0.591927 0.18836 +0.04814 0.65704 0.0281564 +0.0482125 0.614417 -0.0186832 +0.048285 0.666046 -0.0434328 +0.0483575 0.593659 0.0250418 +0.04843 0.682149 0.0337133 +0.0485025 0.541576 0.0293504 +0.048575 0.672333 0.00569473 +0.0486475 0.652297 -0.0192093 +0.04872 0.646127 0.0837426 +0.0487925 0.691601 -0.00516451 +0.048865 0.745279 0.150418 +0.0489375 0.61939 0.0533109 +0.04901 0.613937 0.0274049 +0.0490825 0.65292 0.0586299 +0.049155 0.66468 0.0299975 +0.0492275 0.632742 -0.00870075 +0.0493 0.617043 0.0768914 +0.0493725 0.60466 -0.0430111 +0.049445 0.713295 0.159027 +0.0495175 0.639551 0.0409653 +0.04959 0.596314 0.0877841 +0.0496625 0.671565 0.0320517 +0.049735 0.641664 0.0207541 +0.0498075 0.558092 0.0888696 +0.04988 0.681051 0.0727707 +0.0499525 0.695496 -0.0212133 +0.050025 0.627573 0.076261 +0.0500975 0.612543 0.033897 +0.05017 0.654423 0.0808118 +0.0502425 0.629589 0.0756765 +0.050315 0.612113 0.0593772 +0.0503875 0.560317 0.0430487 +0.05046 0.645425 -0.0223113 +0.0505325 0.535196 0.00531481 +0.050605 0.578508 -0.114479 +0.0506775 0.592119 -0.044034 +0.05075 0.539175 -0.0132766 +0.0508225 0.656581 -0.0200401 +0.050895 0.643471 0.039358 +0.0509675 0.724538 0.0158609 +0.05104 0.620605 0.0427105 +0.0511125 0.675039 -0.0194556 +0.051185 0.587426 -0.0313628 +0.0512575 0.679573 -0.0256263 +0.05133 0.665453 0.0563712 +0.0514025 0.643016 0.022733 +0.051475 0.5828 0.0162367 +0.0515475 0.570175 0.0329994 +0.05162 0.619031 0.0255595 +0.0516925 0.591451 -0.0492653 +0.051765 0.620935 0.0453533 +0.0518375 0.62741 0.0693597 +0.05191 0.657487 0.0611265 +0.0519825 0.552957 0.0205536 +0.052055 0.540899 0.0595692 +0.0521275 0.574095 0.116274 +0.0522 0.703483 0.114078 +0.0522725 0.439826 0.0648799 +0.052345 0.577894 0.137676 +0.0524175 0.577468 -0.0267327 +0.05249 0.550001 0.109774 +0.0525625 0.623782 0.0471026 +0.052635 0.628508 0.0384478 +0.0527075 0.679072 0.0732174 +0.05278 0.653642 -0.0476537 +0.0528525 0.655011 0.0613854 +0.052925 0.66929 -0.0288828 +0.0529975 0.582512 0.142899 +0.05307 0.598072 0.0961049 +0.0531425 0.640511 -0.0695225 +0.053215 0.607479 0.0646795 +0.0532875 0.611867 0.155052 +0.05336 0.601742 0.103666 +0.0534325 0.63556 0.0150176 +0.053505 0.558556 0.00509352 +0.0535775 0.587676 0.0822605 +0.05365 0.587827 0.161319 +0.0537225 0.550302 -0.0753341 +0.053795 0.609194 0.0784195 +0.0538675 0.557378 0.149579 +0.05394 0.556193 0.0179276 +0.0540125 0.631823 0.0437042 +0.054085 0.572074 0.141354 +0.0541575 0.66633 0.081843 +0.05423 0.643325 0.104889 +0.0543025 0.561812 0.0286073 +0.054375 0.530278 -0.0214304 +0.0544475 0.513804 -0.0139362 +0.05452 0.620317 0.0540582 +0.0545925 0.626362 0.0557199 +0.054665 0.565206 -0.0181238 +0.0547375 0.681999 -0.0615774 +0.05481 0.618739 0.039692 +0.0548825 0.549425 0.0187459 +0.054955 0.58781 -0.0556572 +0.0550275 0.518939 -0.0112767 +0.0551 0.501596 0.0287534 +0.0551725 0.557495 0.0169005 +0.055245 0.602815 0.0439254 +0.0553175 0.565411 -0.0567553 +0.05539 0.53442 -0.0215598 +0.0554625 0.519402 0.0171635 +0.055535 0.509211 0.0896002 +0.0556075 0.559424 -0.0244698 +0.05568 0.623047 0.0295216 +0.0557525 0.517039 0.0526387 +0.055825 0.631581 0.0135354 +0.0558975 0.577832 0.0411991 +0.05597 0.599108 0.0466935 +0.0560425 0.46258 -0.0183785 +0.056115 0.54793 0.121756 +0.0561875 0.628588 -0.0502965 +0.05626 0.482336 0.0551395 +0.0563325 0.434248 -0.0538411 +0.056405 0.660526 0.0291417 +0.0564775 0.539355 0.0296802 +0.05655 0.554673 0.00186624 +0.0566225 0.54788 0.00341934 +0.056695 0.645809 0.0143078 +0.0567675 0.631234 0.0691134 +0.05684 0.514472 0.0156271 +0.0569125 0.528291 0.0675477 +0.056985 0.538486 0.0933869 +0.0570575 0.491609 0.0607508 +0.05713 0.56261 0.0488812 +0.0572025 0.454752 0.00617486 +0.057275 0.545672 -0.0357299 +0.0573475 0.463632 0.0830037 +0.05742 0.529706 -0.039312 +0.0574925 0.410923 -0.0716351 +0.057565 0.469014 -0.00589513 +0.0576375 0.578992 0.0753007 +0.05771 0.495312 0.0241901 +0.0577825 0.527614 0.13006 +0.057855 0.408401 -0.0406439 +0.0579275 0.503541 0.0349909 +0.058 0.549759 0.023973 +0.0580725 0.541175 -0.0598949 +0.058145 0.521895 -0.0548055 +0.0582175 0.442219 0.0608343 +0.05829 0.537493 0.101144 +0.0583625 0.548293 0.0436833 +0.058435 0.509908 0.0399216 +0.0585075 0.568313 0.10754 +0.05858 0.492215 -0.00184954 +0.0586525 0.593313 -0.0354 +0.058725 0.478842 0.0665708 +0.0587975 0.57607 0.151645 +0.05887 0.52283 0.00163244 +0.0589425 0.481998 0.0551938 +0.059015 0.542615 0.168788 +0.0590875 0.580399 0.087329 +0.05916 0.481071 0.102451 +0.0592325 0.483606 0.0319932 +0.059305 0.489371 0.121289 +0.0593775 0.542315 0.046539 +0.05945 0.525101 0.136824 +0.0595225 0.619085 0.00680529 +0.059595 0.573719 0.0973324 +0.0596675 0.547208 0.0424809 +0.05974 0.459908 0.0393162 +0.0598125 0.492002 0.024332 +0.059885 0.344915 0.0312668 +0.0599575 0.511278 0.00234636 +0.06003 0.484119 -0.0148422 +0.0601025 0.468275 -0.0254259 +0.060175 0.511386 -0.0185956 +0.0602475 0.513111 0.149533 +0.06032 0.565849 -0.057035 +0.0603925 0.514058 0.114504 +0.060465 0.532153 -0.0407148 +0.0605375 0.436841 0.018391 +0.06061 0.485973 0.0906899 +0.0606825 0.536975 0.0931197 +0.060755 0.410572 0.0501003 +0.0608275 0.369573 -0.0415123 +0.0609 0.397846 -0.0185246 +0.0609725 0.48219 0.0128131 +0.061045 0.581765 0.0727623 +0.0611175 0.501312 0.0196017 +0.06119 0.452113 0.0179067 +0.0612625 0.527665 -0.0139362 +0.061335 0.571097 0.0497538 +0.0614075 0.479844 0.0649717 +0.06148 0.40403 0.0927189 +0.0615525 0.499867 0.100088 +0.061625 0.495404 0.0267619 +0.0616975 0.487948 0.116178 +0.06177 0.44902 -0.0117944 +0.0618425 0.55494 -0.083776 +0.061915 0.450464 -0.00334419 +0.0619875 0.396548 0.0805279 +0.06206 0.462538 0.121514 +0.0621325 0.452264 0.0380512 +0.062205 0.450564 0.0992654 +0.0622775 0.419795 0.172813 +0.06235 0.456171 0.0235012 +0.0624225 0.452652 0.120291 +0.062495 0.412413 0.111494 +0.0625675 0.480633 0.0436791 +0.06264 0.479689 0.126353 +0.0627125 0.392836 0.0931114 +0.062785 0.447776 0.00716851 +0.0628575 0.405796 -0.0213177 +0.06293 0.443509 0.10686 +0.0630025 0.54224 0.0507224 +0.063075 0.357662 -0.0277347 +0.0631475 0.433451 0.0955997 +0.06322 0.523815 0.0134561 +0.0632925 0.388236 0.0757349 +0.063365 0.382975 -0.0397379 +0.0634375 0.387634 -0.0793964 +0.06351 0.491258 0.17108 +0.0635825 0.514184 0.0229668 +0.063655 0.372287 0.074662 +0.0637275 0.521728 -0.0160488 +0.0638 0.42313 0.0889948 +0.0638725 0.461415 0.0329034 +0.063945 0.480391 -0.0164412 +0.0640175 0.408096 0.0641326 +0.06409 0.342799 0.0841017 +0.0641625 0.46081 0.0347696 +0.064235 0.438319 0.000517706 +0.0643075 0.41215 0.116575 +0.06438 0.372341 0.0420634 +0.0644525 0.489129 0.0989063 +0.064525 0.397299 0.0273172 +0.0645975 0.418058 0.0245283 +0.06467 0.461728 -0.0136607 +0.0647425 0.513624 0.0184786 +0.064815 0.449462 0.061782 +0.0648875 0.396627 0.096109 +0.06496 0.489104 0.0243529 +0.0650325 0.498765 0.0616651 +0.065105 0.48806 -0.0394665 +0.0651775 0.476546 -0.0269373 +0.06525 0.450577 -0.0234386 +0.0653225 0.494356 0.0612017 +0.065395 0.479372 -0.0134436 +0.0654675 0.432119 -0.0138026 +0.06554 0.44646 0.0730045 +0.0656125 0.397529 0.00908903 +0.065685 0.491367 -0.0539789 +0.0657575 0.466734 -0.0801354 +0.06583 0.468417 -0.020754 +0.0659025 0.347859 -0.000229625 +0.065975 0.461445 -0.0950987 +0.0660475 0.343316 0.0881765 +0.06612 0.372191 -0.0214387 +0.0661925 0.373723 -0.0416375 +0.066265 0.469861 0.0321686 +0.0663375 0.415962 -0.00968188 +0.06641 0.417256 -0.0161239 +0.0664825 0.378533 0.00993656 +0.066555 0.502923 -0.00934788 +0.0666275 0.435029 0.0844816 +0.0667 0.449454 0.0132056 +0.0667725 0.423335 0.00641701 +0.066845 0.415586 -0.0085421 +0.0669175 0.391751 0.00281814 +0.06699 0.435885 -0.0493446 +0.0670625 0.360062 0.106438 +0.067135 0.314868 0.0860473 +0.0672075 0.438549 0.00999083 +0.06728 0.439522 0.00722279 +0.0673525 0.491012 0.0597362 +0.067425 0.443805 0.0643288 +0.0674975 0.354101 -0.0200986 +0.06757 0.472487 0.00190381 +0.0676425 0.327213 0.0877214 +0.067715 0.456981 -0.0396419 +0.0677875 0.359374 0.0269373 +0.06786 0.409808 0.0572229 +0.0679325 0.425289 -0.0801229 +0.068005 0.356146 0.0117861 +0.0680775 0.460413 0.0330704 +0.06815 0.391893 -0.0615482 +0.0682225 0.427297 0.0314505 +0.068295 0.447796 0.0132307 +0.0683675 0.442636 0.0867487 +0.06844 0.339087 -0.018917 +0.0685125 0.450264 0.0305779 +0.068585 0.472558 -0.0757433 +0.0686575 0.408919 -0.0326153 +0.06873 0.418112 -0.0183576 +0.0688025 0.414897 -0.0235805 +0.068875 0.466167 0.0132641 +0.0689475 0.311974 0.0238728 +0.06902 0.373802 -0.0270876 +0.0690925 0.356326 0.041934 +0.069165 0.393104 -0.0379134 +0.0692375 0.354138 0.0430236 +0.06931 0.382733 0.0561081 +0.0693825 0.460138 0.133935 +0.069455 0.412776 -0.0201528 +0.0695275 0.492862 0.00766952 +0.0696 0.383731 -0.00804945 +0.0696725 0.393342 0.0285196 +0.069745 0.459215 -0.0169172 +0.0698175 0.408973 0.0123539 +0.06989 0.379359 0.0258016 +0.0699625 0.384578 -0.023138 +0.070035 0.395492 0.0337843 +0.0701075 0.430716 -0.00288076 +0.07018 0.372746 0.0428525 +0.0702525 0.338344 0.0737268 +0.070325 0.346773 0.00533568 +0.0703975 0.348585 -0.000513529 +0.07047 0.353879 0.141107 +0.0705425 0.42235 -0.0251545 +0.070615 0.550702 0.0705245 +0.0706875 0.34145 0.0381681 +0.07076 0.371569 -0.00981966 +0.0708325 0.430445 0.0603709 +0.070905 0.274629 0.0290582 +0.0709775 0.405257 0.0497621 +0.07105 0.320876 -0.0527222 +0.0711225 0.337425 0.055223 +0.071195 0.335254 -0.0130803 +0.0712675 0.357933 0.0202238 +0.07134 0.289438 0.00970693 +0.0714125 0.461161 -0.0208543 +0.071485 0.413298 -0.0508518 +0.0715575 0.419711 -0.0562835 +0.07163 0.359073 0.101883 +0.0717025 0.340356 -0.0523715 +0.071775 0.371886 0.0589639 +0.0718475 0.319619 -0.00253842 +0.07192 0.349266 -0.048017 +0.0719925 0.354501 0.0205328 +0.072065 0.412021 0.0280729 +0.0721375 0.386899 0.0509687 +0.07221 0.242982 0.0176395 +0.0722825 0.388983 0.0821144 +0.072355 0.371231 -0.0600368 +0.0724275 0.342369 0.018153 +0.0725 0.4307 0.142602 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/8/data2D.dat b/example_data/bgr/MouseLift/cpmgfastautotest/8/data2D.dat new file mode 100644 index 0000000..a8081fe --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/8/data2D.dat @@ -0,0 +1,6 @@ +2.47534 3.17313 3.05272 3.01818 2.99209 2.97129 2.82969 3.11363 2.91971 2.88422 2.93097 2.88932 2.89998 2.878 2.85662 2.89078 2.84242 2.81928 2.9211 2.82934 2.81177 2.79985 2.75565 2.90028 2.81603 2.82559 2.90931 2.72862 2.74869 2.75773 2.71337 2.76924 2.77523 2.66436 2.69835 2.78282 2.76078 2.70055 2.71504 2.67724 2.63157 2.65159 2.74566 2.59693 2.53413 2.68224 2.60992 2.6198 2.54245 2.62432 2.64999 2.58354 2.62613 2.58671 2.44691 2.55449 2.57242 2.57802 2.58945 2.50799 2.52936 2.46094 2.54243 2.49835 2.48989 2.53713 2.51225 2.45048 2.47443 2.52848 2.42836 2.47992 2.48198 2.43255 2.48739 2.53322 2.39147 2.36837 2.43489 2.42629 2.45219 2.49717 2.35769 2.30638 2.3877 2.3977 2.35598 2.38565 2.31472 2.29258 2.40192 2.30602 2.2492 2.38237 2.27907 2.38805 2.21423 2.24085 2.30911 2.26981 2.31322 2.27626 2.29597 2.26258 2.17727 2.26531 2.20231 2.23252 2.2948 2.2089 2.10647 2.23049 2.16653 2.27909 2.20195 2.08755 2.16361 2.19061 2.21347 2.31111 2.14373 2.22992 2.0226 2.13125 2.1747 2.2218 2.1303 2.06936 2.18492 2.05767 2.17162 2.10472 2.08784 2.17836 2.01761 2.07559 2.05152 2.11056 2.12025 1.93799 2.07348 2.03655 2.05702 1.96812 1.96524 1.95672 2.01699 2.03754 2.03338 1.95369 2.05883 1.92138 1.97477 1.94046 1.95406 1.87643 2.0393 1.94328 1.97598 1.94096 1.91356 1.99616 1.92522 1.96985 2.03351 1.91296 1.9588 1.93981 1.86635 1.87706 1.90686 1.90921 1.86847 1.83139 1.83647 1.85864 1.9141 1.82236 1.87125 1.85442 1.80475 1.98847 1.82352 1.89696 1.86852 1.82409 1.83225 1.86572 1.8103 1.79892 1.80322 1.66033 1.86173 1.88385 1.77882 1.7526 1.82732 1.79783 1.74666 1.78158 1.86701 1.80107 1.68064 1.82578 1.73717 1.71385 1.77046 1.79873 1.79288 1.80279 1.78797 1.69361 1.77672 1.68694 1.80282 1.76551 1.73382 1.76307 1.72535 1.72837 1.70255 1.59484 1.58383 1.65999 1.6576 1.75986 1.74899 1.75666 1.6612 1.66151 1.68302 1.64268 1.66404 1.7151 1.59968 1.62988 1.57016 1.7261 1.6364 1.74217 1.57727 1.5636 1.65666 1.5968 1.63091 1.56138 1.64262 1.5918 1.53657 1.54618 1.59392 1.52116 1.66632 1.51289 1.61721 1.57096 1.56792 1.61375 1.58054 1.63577 1.58654 1.60071 1.55842 1.50363 1.60364 1.51335 1.50839 1.59468 1.55159 1.53691 1.51509 1.4537 1.5142 1.52254 1.54552 1.50842 1.51459 1.56543 1.48817 1.46805 1.47083 1.49619 1.47471 1.5129 1.55576 1.45596 1.46389 1.45884 1.46465 1.43873 1.4225 1.46788 1.38683 1.40345 1.38528 1.49111 1.44981 1.45627 1.48474 1.45411 1.5782 1.3803 1.42303 1.32974 1.35278 1.33614 1.39118 1.37751 1.37655 1.49617 1.42316 1.40238 1.30911 1.40197 1.4074 1.38622 1.33343 1.36438 1.3597 1.46162 1.26911 1.34957 1.26768 1.42199 1.2756 1.35171 1.36137 1.32221 1.34018 1.36928 1.44293 1.2992 1.31281 1.33163 1.27521 1.34962 1.32275 1.23113 1.18766 1.31162 1.31418 1.27594 1.23705 1.36021 1.28777 1.23849 1.24956 1.20348 1.3492 1.26071 1.30776 1.24169 1.29689 1.25979 1.31007 1.15781 1.32572 1.19688 1.27347 1.1398 1.30226 1.28111 1.2712 1.18235 1.19509 1.209 1.2082 1.29174 1.1763 1.25151 1.16409 1.14838 1.20047 1.1899 1.27832 1.20616 1.1166 1.14515 1.26234 1.20609 1.2009 1.21502 1.24307 1.32677 1.23813 1.14631 1.16326 1.02736 1.04026 1.14339 1.19284 1.00381 1.09966 1.10697 1.10197 1.12031 1.18526 1.17571 1.20437 1.13915 1.10774 1.08288 1.15909 1.18907 1.04882 1.13246 1.18174 1.04702 1.2134 1.1584 1.14448 1.11727 1.24341 1.16454 1.03724 1.06349 1.2462 1.04562 1.06553 1.05138 1.0855 1.08025 1.10707 1.0154 1.12789 1.10422 1.16733 1.00666 1.06071 1.2213 1.03291 1.03855 1.05702 1.09337 1.13455 1.0851 1.05789 0.933569 1.10047 1.00747 1.04976 1.08278 1.00004 1.02022 1.02894 1.01854 1.09986 0.974513 1.07487 1.01287 1.10885 1.05549 1.10625 0.959947 0.961525 1.01406 1.05769 1.00382 1.05116 1.029 1.06466 0.851337 1.01807 0.970589 0.965228 1.05551 0.94528 0.986604 0.922902 0.970727 1.00405 0.98961 0.954607 1.00757 1.00486 0.901346 0.990395 0.972388 0.978964 0.967629 1.0204 0.910965 0.961295 0.893781 0.999476 0.934028 0.850912 1.00176 0.946115 0.887485 0.994929 0.948115 0.884212 0.860852 0.989122 0.963988 0.88799 0.964272 0.897831 0.862727 0.924881 1.01021 0.885268 0.934337 0.959383 0.956214 0.851037 0.961942 0.868739 0.833736 0.812122 0.951179 0.904319 0.911429 0.869048 0.802807 0.964907 0.884379 0.823427 0.931247 0.866288 0.983581 0.864539 0.889806 0.895831 0.874655 0.874488 0.952953 0.932955 0.871958 0.841493 0.816639 0.890971 0.917887 0.798824 0.821386 0.820697 0.902406 0.970906 0.856406 0.895747 0.874655 0.848261 0.904974 0.914451 0.864205 0.823553 0.770522 0.827882 0.854197 0.729573 0.798294 0.850874 0.86365 0.833356 0.722354 0.795476 0.882517 0.771181 0.856506 0.833811 0.855938 0.829807 0.834955 0.806652 0.958907 0.76547 0.955417 0.866589 0.694073 0.742591 0.737418 0.749893 0.832646 0.806911 0.711345 0.783076 0.709074 0.743689 0.775582 0.820843 0.801826 0.73356 0.780963 0.82415 0.807867 0.743033 0.747254 0.787727 0.767303 0.754506 0.807416 0.797142 0.78865 0.781848 0.859316 0.730629 0.73632 0.729803 0.818154 0.736574 0.707537 0.720492 0.738111 0.829586 0.799726 0.781698 0.788896 0.747045 0.774421 0.749555 0.695029 0.784955 0.714084 0.83012 0.700314 0.688587 0.777678 0.676988 0.757475 0.836562 0.81114 0.744925 0.714009 0.761779 0.723248 0.692298 0.712681 0.732804 0.721553 0.699818 0.706397 0.807266 0.643684 0.79467 0.628575 0.685005 0.712071 0.766589 0.762046 0.60466 0.706598 0.614576 0.699312 0.705667 0.721782 0.697918 0.781924 0.727832 0.693376 0.734992 0.67784 0.760426 0.71337 0.650865 0.661963 0.577915 0.77693 0.611382 0.67043 0.66309 0.655487 0.591927 0.65704 0.614417 0.666046 0.593659 0.682149 0.541576 0.672333 0.652297 0.646127 0.691601 0.745279 0.61939 0.613937 0.65292 0.66468 0.632742 0.617043 0.60466 0.713295 0.639551 0.596314 0.671565 0.641664 0.558092 0.681051 0.695496 0.627573 0.612543 0.654423 0.629589 0.612113 0.560317 0.645425 0.535196 0.578508 0.592119 0.539175 0.656581 0.643471 0.724538 0.620605 0.675039 0.587426 0.679573 0.665453 0.643016 0.5828 0.570175 0.619031 0.591451 0.620935 0.62741 0.657487 0.552957 0.540899 0.574095 0.703483 0.439826 0.577894 0.577468 0.550001 0.623782 0.628508 0.679072 0.653642 0.655011 0.66929 0.582512 0.598072 0.640511 0.607479 0.611867 0.601742 0.63556 0.558556 0.587676 0.587827 0.550302 0.609194 0.557378 0.556193 0.631823 0.572074 0.66633 0.643325 0.561812 0.530278 0.513804 0.620317 0.626362 0.565206 0.681999 0.618739 0.549425 0.58781 0.518939 0.501596 0.557495 0.602815 0.565411 0.53442 0.519402 0.509211 0.559424 0.623047 0.517039 0.631581 0.577832 0.599108 0.46258 0.54793 0.628588 0.482336 0.434248 0.660526 0.539355 0.554673 0.54788 0.645809 0.631234 0.514472 0.528291 0.538486 0.491609 0.56261 0.454752 0.545672 0.463632 0.529706 0.410923 0.469014 0.578992 0.495312 0.527614 0.408401 0.503541 0.549759 0.541175 0.521895 0.442219 0.537493 0.548293 0.509908 0.568313 0.492215 0.593313 0.478842 0.57607 0.52283 0.481998 0.542615 0.580399 0.481071 0.483606 0.489371 0.542315 0.525101 0.619085 0.573719 0.547208 0.459908 0.492002 0.344915 0.511278 0.484119 0.468275 0.511386 0.513111 0.565849 0.514058 0.532153 0.436841 0.485973 0.536975 0.410572 0.369573 0.397846 0.48219 0.581765 0.501312 0.452113 0.527665 0.571097 0.479844 0.40403 0.499867 0.495404 0.487948 0.44902 0.55494 0.450464 0.396548 0.462538 0.452264 0.450564 0.419795 0.456171 0.452652 0.412413 0.480633 0.479689 0.392836 0.447776 0.405796 0.443509 0.54224 0.357662 0.433451 0.523815 0.388236 0.382975 0.387634 0.491258 0.514184 0.372287 0.521728 0.42313 0.461415 0.480391 0.408096 0.342799 0.46081 0.438319 0.41215 0.372341 0.489129 0.397299 0.418058 0.461728 0.513624 0.449462 0.396627 0.489104 0.498765 0.48806 0.476546 0.450577 0.494356 0.479372 0.432119 0.44646 0.397529 0.491367 0.466734 0.468417 0.347859 0.461445 0.343316 0.372191 0.373723 0.469861 0.415962 0.417256 0.378533 0.502923 0.435029 0.449454 0.423335 0.415586 0.391751 0.435885 0.360062 0.314868 0.438549 0.439522 0.491012 0.443805 0.354101 0.472487 0.327213 0.456981 0.359374 0.409808 0.425289 0.356146 0.460413 0.391893 0.427297 0.447796 0.442636 0.339087 0.450264 0.472558 0.408919 0.418112 0.414897 0.466167 0.311974 0.373802 0.356326 0.393104 0.354138 0.382733 0.460138 0.412776 0.492862 0.383731 0.393342 0.459215 0.408973 0.379359 0.384578 0.395492 0.430716 0.372746 0.338344 0.346773 0.348585 0.353879 0.42235 0.550702 0.34145 0.371569 0.430445 0.274629 0.405257 0.320876 0.337425 0.335254 0.357933 0.289438 0.461161 0.413298 0.419711 0.359073 0.340356 0.371886 0.319619 0.349266 0.354501 0.412021 0.386899 0.242982 0.388983 0.371231 0.342369 0.4307 +2.40747 3.17754 3.00955 3.08928 3.04436 3.00682 2.89779 2.94701 2.9434 2.9923 2.90815 2.95574 2.94565 2.85034 2.88445 2.91266 2.81691 2.90338 2.93858 2.8988 2.88607 2.89285 2.89502 2.85121 2.81836 2.89063 2.75825 2.68337 2.80208 2.85085 2.77516 2.81406 2.68452 2.77484 2.71656 2.80092 2.72699 2.70038 2.69869 2.84098 2.65683 2.61896 2.63068 2.75051 2.62534 2.65746 2.64402 2.50678 2.65484 2.68998 2.54373 2.54493 2.59353 2.56354 2.60894 2.58814 2.56121 2.50598 2.54631 2.49541 2.48091 2.54617 2.54012 2.53276 2.58836 2.46265 2.52497 2.42438 2.50813 2.53437 2.54425 2.4673 2.5188 2.46297 2.50389 2.44443 2.41324 2.42925 2.49109 2.28614 2.39587 2.43047 2.36571 2.29519 2.29697 2.4228 2.33394 2.36369 2.45855 2.317 2.39475 2.44157 2.3479 2.25696 2.27505 2.31187 2.30648 2.29549 2.23826 2.38991 2.34732 2.34064 2.36667 2.29142 2.24261 2.26929 2.15906 2.30831 2.3277 2.11439 2.21626 2.20397 2.23358 2.22813 2.2401 2.21165 2.21727 2.17897 2.1858 2.10427 2.16417 2.20973 2.1208 2.11941 2.1147 2.11952 2.14939 2.17718 2.11189 2.13724 2.0978 2.07379 2.11482 2.02439 2.02159 2.05625 2.04447 2.04721 2.15907 2.07442 2.10541 2.13818 2.02486 2.09866 2.08739 2.07189 2.02078 1.98297 2.00116 2.08004 1.9923 2.01343 2.01689 2.07002 1.96043 2.03694 2.0163 2.06749 2.07148 2.06228 1.9652 1.92812 2.08791 1.9476 1.97686 1.96314 1.95574 1.98223 1.93745 1.87626 1.92151 1.98187 1.94405 1.82314 1.88949 1.95424 1.89429 1.95743 1.9252 1.96427 1.92563 1.87084 1.77384 1.88785 1.89015 1.95826 1.86008 1.81808 1.88639 1.79963 1.89096 1.92658 1.78672 1.71862 1.84963 1.84152 1.84212 1.77053 1.89682 1.77047 1.68635 1.70715 1.78016 1.80896 1.73945 1.81186 1.91907 1.67514 1.75399 1.75173 1.88839 1.69803 1.72465 1.7507 1.86544 1.719 1.69974 1.71306 1.68729 1.78577 1.73092 1.64422 1.64902 1.61882 1.73368 1.66524 1.70664 1.56429 1.57343 1.7076 1.64915 1.64925 1.64296 1.66126 1.63972 1.61173 1.64579 1.66478 1.67426 1.64136 1.58458 1.6539 1.59164 1.58621 1.62846 1.53859 1.46474 1.64252 1.69407 1.6528 1.6242 1.56604 1.56072 1.74914 1.64367 1.69986 1.63442 1.55543 1.64721 1.51521 1.59809 1.59676 1.60552 1.48496 1.49734 1.51677 1.56203 1.55037 1.51776 1.4504 1.51874 1.60548 1.51447 1.58175 1.51675 1.56721 1.5013 1.49114 1.44399 1.47405 1.51736 1.47737 1.5286 1.51005 1.50126 1.53626 1.432 1.51507 1.50807 1.51756 1.44462 1.47195 1.3593 1.55201 1.38074 1.50576 1.42968 1.47172 1.48071 1.44763 1.43628 1.44096 1.46472 1.44612 1.36582 1.48472 1.45173 1.47767 1.39733 1.47678 1.43075 1.39716 1.48076 1.42725 1.33409 1.40151 1.35567 1.43295 1.46759 1.3539 1.44585 1.31343 1.37929 1.48002 1.40261 1.40139 1.27606 1.31174 1.33397 1.22016 1.2878 1.33007 1.35384 1.24481 1.42226 1.3056 1.34953 1.35788 1.3465 1.31195 1.37095 1.3871 1.32425 1.31849 1.31719 1.34579 1.18894 1.35688 1.26549 1.22439 1.30272 1.26795 1.27753 1.20869 1.27652 1.37705 1.21702 1.19761 1.28984 1.24156 1.20958 1.21978 1.26994 1.22398 1.30103 1.21259 1.24848 1.22423 1.26173 1.19964 1.31563 1.2571 1.19297 1.15517 1.2391 1.12312 1.28845 1.18542 1.12881 1.22251 1.24159 1.17399 1.26812 1.25481 1.22602 1.14901 1.18673 1.21791 1.17975 1.15336 1.2649 1.16756 1.25186 1.26703 1.17048 1.25081 1.12488 1.16055 1.10472 1.1004 1.11428 1.12339 1.14733 1.09644 1.21421 1.17621 1.13957 1.12499 1.10611 1.04201 1.1047 1.07121 1.05768 1.09781 1.02943 1.10149 1.05364 1.11917 1.11269 1.12863 1.12833 1.06444 1.1856 1.15491 1.16013 1.01782 1.0498 0.987289 0.994073 1.0717 1.12299 1.08661 0.993885 1.16391 1.00948 1.0948 1.13507 1.18142 1.02473 1.0657 0.986412 1.12531 1.0559 1.03953 1.07499 1.10206 0.984663 1.14148 1.05627 1.1614 1.08837 1.00748 1.00277 1.00826 1.09565 1.03828 0.998436 1.07917 0.916898 1.01846 0.967662 1.02499 0.878008 1.13649 1.00674 0.95173 0.975874 0.978496 1.06524 1.03922 1.01284 0.917766 0.913366 1.03524 1.12075 1.07375 1.05917 0.941622 1.00773 0.96977 1.06746 1.09284 1.04701 0.994453 1.02177 1.01261 1.01436 0.903141 0.953413 1.06245 0.895898 0.877277 1.02059 1.02499 0.993192 0.953576 0.894265 0.984275 0.920409 0.950682 1.00541 0.988888 1.01082 0.858185 0.944987 0.928496 0.850636 0.933189 1.02738 1.02047 1.02676 0.907153 0.945447 0.92291 0.876409 0.839506 0.887614 0.962481 1.00597 0.916986 0.939497 1.05819 0.970322 0.935481 0.925732 0.879369 0.877807 0.894708 1.04632 0.840132 0.828367 0.769077 0.84004 0.84857 0.842603 0.788691 0.758372 0.85388 0.875962 0.863909 0.857266 0.899551 0.840107 0.80993 0.903396 0.749354 0.886554 0.791146 0.876517 0.777268 0.850812 0.895968 0.812134 0.84242 0.845442 0.834608 0.783873 0.918117 0.830229 0.876024 0.8887 0.799204 0.884224 0.771995 0.826062 0.757729 0.814652 0.777715 0.735163 0.822446 0.822551 0.840073 0.798419 0.80631 0.773244 0.789735 0.772638 0.764255 0.769566 0.787351 0.701417 0.82698 0.825006 0.77989 0.836571 0.756752 0.730742 0.82511 0.711666 0.798611 0.812714 0.768346 0.861128 0.798586 0.819232 0.784612 0.673223 0.66706 0.844875 0.809796 0.799768 0.801513 0.721866 0.890044 0.825143 0.742996 0.703216 0.740061 0.772609 0.800219 0.791384 0.743305 0.733489 0.833397 0.76595 0.743058 0.711666 0.832475 0.842006 0.811917 0.724162 0.765887 0.705274 0.791213 0.6223 0.690825 0.786295 0.62974 0.809199 0.889656 0.643426 0.776029 0.774926 0.684458 0.804665 0.784905 0.728634 0.7619 0.830638 0.729009 0.81324 0.688729 0.732692 0.695413 0.651408 0.740608 0.757391 0.738942 0.715119 0.69353 0.742294 0.75826 0.675556 0.676179 0.705187 0.668526 0.590432 0.724041 0.664117 0.657641 0.68255 0.661708 0.610485 0.633322 0.737576 0.74452 0.697559 0.744966 0.642407 0.769883 0.486516 0.652105 0.635313 0.776417 0.778542 0.691572 0.555838 0.669081 0.624254 0.602443 0.585864 0.653642 0.759604 0.618943 0.649659 0.612271 0.691025 0.668643 0.623056 0.608343 0.737443 0.685313 0.627886 0.658243 0.624179 0.722551 0.611942 0.716572 0.646344 0.638887 0.773143 0.637914 0.6201 0.710197 0.629519 0.570513 0.487568 0.678053 0.754995 0.656289 0.649446 0.548907 0.562777 0.680692 0.605596 0.605445 0.554001 0.625076 0.581143 0.655408 0.628658 0.565945 0.593112 0.623298 0.566626 0.628658 0.703141 0.553942 0.599592 0.683852 0.67015 0.641589 0.563044 0.683702 0.523732 0.560981 0.600335 0.562276 0.635585 0.601479 0.597859 0.654861 0.534875 0.656009 0.653562 0.606577 0.589518 0.630629 0.605817 0.593922 0.50985 0.664029 0.608013 0.585247 0.501462 0.630241 0.539789 0.576345 0.573548 0.673214 0.591325 0.620567 0.569699 0.555708 0.532286 0.655537 0.622396 0.529005 0.602226 0.610197 0.548686 0.655621 0.590649 0.54348 0.532541 0.62635 0.510113 0.499262 0.588749 0.542528 0.523686 0.572408 0.565979 0.503504 0.505717 0.553521 0.684216 0.560263 0.526988 0.541396 0.552055 0.554685 0.600022 0.605212 0.526846 0.462263 0.503942 0.540302 0.669532 0.503099 0.484704 0.573289 0.529339 0.537564 0.501036 0.511745 0.623406 0.606393 0.554602 0.584453 0.555541 0.603817 0.517448 0.439296 0.508856 0.464321 0.487321 0.463323 0.438002 0.65474 0.473072 0.491676 0.495492 0.558994 0.466526 0.510038 0.411115 0.362939 0.51577 0.565294 0.491659 0.453111 0.439759 0.576366 0.554802 0.561491 0.447571 0.497801 0.40527 0.491116 0.477898 0.477857 0.467039 0.484737 0.52923 0.563662 0.452518 0.410868 0.486432 0.497822 0.491204 0.520575 0.370108 0.495692 0.471235 0.400994 0.495546 0.400318 0.530082 0.355562 0.484954 0.545062 0.509036 0.453888 0.452293 0.359841 0.463532 0.557879 0.536704 0.46974 0.395321 0.510852 0.515311 0.42402 0.492665 0.454005 0.488019 0.567415 0.521152 0.451546 0.516417 0.423752 0.495091 0.448151 0.489138 0.43991 0.403065 0.439451 0.461357 0.343596 0.518576 0.420796 0.457407 0.416225 0.524458 0.502798 0.50537 0.418283 0.471273 0.477961 0.442945 0.525339 0.482528 0.51339 0.456614 0.53136 0.381464 0.403449 0.459808 0.429172 0.468112 0.454209 0.355182 0.361282 0.478788 0.428529 0.464204 0.602769 0.403299 0.549742 0.436854 0.425949 0.492565 0.424855 0.430766 0.403792 0.427998 0.492937 0.438085 0.464647 0.456142 0.41445 0.348301 0.422625 0.294377 0.472521 0.351132 0.434282 0.462409 0.471247 0.472483 0.515507 0.529326 0.428337 0.366613 0.504735 0.373631 0.449717 0.50838 0.360935 0.443008 0.38548 0.47225 0.474178 0.289279 0.421832 0.42885 0.281981 0.450652 0.506184 0.511144 0.44669 0.439805 0.487042 0.37073 0.477381 0.470776 0.327297 0.35294 0.366429 0.483021 0.427339 0.354313 0.388106 0.494707 0.413866 0.407662 0.345237 0.532432 0.433409 0.453959 0.243421 0.39798 0.311119 0.461904 0.398072 0.40818 0.388845 0.428971 0.410914 0.434144 0.404405 0.462108 0.376291 0.481272 0.33659 0.397124 0.299946 0.320091 0.355716 +2.38792 3.11483 2.90723 2.99472 2.93538 2.89921 3.00899 2.9286 3.01015 2.96561 2.92569 2.88002 2.88856 2.88344 2.86243 2.88732 2.82319 2.94636 2.84411 2.81166 2.83163 2.84925 2.83296 2.85079 2.74737 2.71152 2.80208 2.78147 2.75737 2.83359 2.72885 2.67231 2.73004 2.69569 2.81223 2.77992 2.76587 2.8218 2.65258 2.56485 2.6729 2.71744 2.7519 2.66977 2.5307 2.65411 2.65512 2.5168 2.609 2.6105 2.48552 2.51544 2.68325 2.66281 2.57639 2.56501 2.5261 2.52657 2.49559 2.51531 2.57148 2.5206 2.57488 2.4766 2.57407 2.46305 2.45885 2.502 2.43651 2.5314 2.42492 2.36667 2.46559 2.41557 2.51037 2.48536 2.409 2.37453 2.40063 2.47178 2.46971 2.39291 2.27381 2.35156 2.29381 2.35369 2.37371 2.34976 2.35511 2.37326 2.30676 2.31948 2.30481 2.24456 2.26072 2.29532 2.33109 2.27737 2.22747 2.2915 2.24957 2.31258 2.32121 2.33441 2.15625 2.31085 2.23739 2.3057 2.19962 2.19882 2.13094 2.27665 2.26615 2.1372 2.22444 2.20367 2.15307 2.24466 2.2464 2.22779 2.142 2.06362 2.16444 2.15722 2.19778 2.18204 2.12553 2.05418 2.05784 2.01679 2.14636 2.04444 2.08617 2.11975 2.02186 2.0606 2.11921 2.0277 2.07094 2.09687 2.05042 2.03743 2.10589 2.0242 2.01842 2.00313 2.03274 2.02235 2.02461 1.99342 2.06183 2.00117 2.01063 2.08586 1.97726 1.93906 2.01063 1.99138 2.01991 1.94454 1.95043 1.93991 1.88551 1.92831 1.9688 1.92689 2.07014 2.01421 2.00643 1.90997 1.99414 1.92675 1.895 1.80297 1.93356 1.91043 1.96881 1.89161 1.86568 1.89578 1.91824 1.88793 1.93551 1.86964 1.87185 1.88178 1.7555 1.87875 1.91933 1.82512 1.78587 1.89675 1.84276 1.8996 1.73489 1.85837 1.81735 1.80768 1.78482 1.80422 1.78453 1.824 1.74967 1.82078 1.82343 1.7075 1.80814 1.77307 1.78249 1.85549 1.83638 1.76269 1.74048 1.77279 1.73871 1.64647 1.76055 1.69714 1.67108 1.76182 1.74118 1.63179 1.70375 1.72618 1.75788 1.80283 1.6628 1.69891 1.75259 1.63023 1.67519 1.6123 1.66966 1.63171 1.68148 1.65949 1.60558 1.73479 1.65621 1.58288 1.57937 1.62401 1.62618 1.6538 1.55961 1.51554 1.57064 1.4983 1.65125 1.6311 1.54403 1.61598 1.621 1.59441 1.54632 1.58791 1.58277 1.5498 1.64354 1.63663 1.56366 1.55969 1.60089 1.57986 1.53562 1.53887 1.46436 1.61176 1.50889 1.57226 1.53705 1.54503 1.5856 1.43165 1.52764 1.56107 1.61219 1.58437 1.50675 1.44983 1.57321 1.5554 1.44903 1.49383 1.39788 1.50853 1.45525 1.40017 1.43891 1.4369 1.48662 1.52168 1.43733 1.48009 1.48781 1.36323 1.54082 1.49171 1.46424 1.33805 1.43424 1.40596 1.38084 1.49922 1.33266 1.47737 1.43992 1.34276 1.42123 1.40168 1.51314 1.43144 1.31531 1.41376 1.40236 1.35441 1.31038 1.38068 1.42874 1.2988 1.39116 1.37808 1.39418 1.32681 1.42235 1.2331 1.32773 1.34213 1.39007 1.25386 1.37496 1.34809 1.34886 1.313 1.41527 1.31375 1.35404 1.2921 1.31228 1.23225 1.25932 1.34216 1.25897 1.23121 1.29007 1.35288 1.2979 1.24551 1.34692 1.33013 1.24971 1.2475 1.29118 1.24447 1.30841 1.23103 1.31237 1.26521 1.1967 1.29505 1.26783 1.32969 1.27274 1.21413 1.2871 1.30048 1.21249 1.26595 1.20198 1.2808 1.25943 1.21336 1.25058 1.20593 1.17167 1.218 1.22585 1.26012 1.27011 1.1688 1.21446 1.1509 1.30064 1.12704 1.2288 1.19844 1.21718 1.17301 1.15721 1.34144 1.20871 1.23934 1.22997 1.22064 1.16471 1.12947 1.12153 1.12322 1.15155 1.11605 1.23062 1.18584 1.1967 1.11899 1.15412 1.11234 1.1575 1.13339 1.11342 1.2092 1.13382 1.16609 1.1385 1.12916 1.14305 1.16469 1.09364 1.14549 1.15287 1.07334 1.14244 1.06012 1.07622 1.0416 1.09032 0.987001 1.07991 1.10529 1.08698 1.02035 1.23451 1.02797 1.03165 1.05254 1.18439 1.09898 1.08237 1.14761 1.06447 1.04313 0.990149 1.03965 1.03356 0.930939 0.982104 1.01905 1.04343 1.05816 0.978271 0.988124 0.968121 1.14326 1.01482 1.00631 1.02117 1.0409 1.05047 0.930208 1.02891 1.02161 1.09309 0.918718 1.04923 1.0918 0.949355 0.982346 0.921582 0.939719 1.01811 1.0875 1.15683 1.07792 0.963905 1.08396 0.891961 0.990374 1.02787 1.00431 0.990466 0.98344 1.00226 1.00478 1.06107 1.03335 1.00364 0.897952 1.045 0.973215 0.985623 0.996374 1.04475 0.942278 0.968614 0.933748 0.8973 1.04925 0.941121 0.942228 0.88779 0.995234 1.0151 0.986921 0.931694 0.904427 0.842094 1.0073 1.00563 0.973536 0.877035 0.877106 0.831849 0.942057 0.880329 0.933853 0.940199 0.906327 0.942741 0.999033 0.987201 0.925144 0.913036 0.956657 0.919169 0.881164 0.936583 0.865144 0.928354 0.882287 0.882968 0.872472 0.876313 0.973044 0.907433 0.882634 0.894537 0.896891 0.916414 0.958991 0.868919 0.860335 0.914301 0.892445 0.874388 0.951037 0.90444 0.917583 0.930888 0.895104 0.84138 0.895501 0.788044 0.854293 0.879139 0.965328 0.824434 0.737485 0.843505 0.899851 0.812314 0.877427 0.836508 0.948044 0.858293 0.868998 0.837284 0.86603 0.958465 0.807771 0.878726 0.824296 0.891401 0.705926 0.853605 0.854202 0.82025 0.876434 0.838862 0.744181 0.884233 0.829632 0.655349 0.808923 0.834287 0.749267 0.797338 0.872643 0.872008 0.770213 0.843843 0.817144 0.818647 0.798273 0.773361 0.764973 0.908636 0.911153 0.697221 0.819211 0.753646 0.850711 0.691067 0.876016 0.828208 0.543359 0.801609 0.688758 0.747204 0.776938 0.716923 0.771966 0.788341 0.70798 0.786696 0.702469 0.798803 0.857562 0.7637 0.694883 0.723565 0.805137 0.70823 0.780679 0.761984 0.683564 0.805212 0.711416 0.749024 0.786883 0.727978 0.706134 0.802352 0.696093 0.708531 0.731957 0.788157 0.800239 0.718029 0.73422 0.71954 0.772321 0.802477 0.698047 0.745588 0.699237 0.702803 0.589422 0.665319 0.69963 0.635535 0.779523 0.673444 0.692115 0.718021 0.791342 0.748361 0.667874 0.71795 0.708084 0.743693 0.70264 0.719716 0.736984 0.683907 0.724116 0.735886 0.650586 0.679498 0.689885 0.707207 0.650001 0.633092 0.657312 0.649116 0.722363 0.620471 0.682867 0.636992 0.760414 0.60588 0.677135 0.724417 0.72979 0.537142 0.667883 0.713979 0.664576 0.741342 0.62311 0.603959 0.662601 0.588712 0.594202 0.675698 0.569114 0.695826 0.60168 0.605796 0.648557 0.58814 0.617536 0.71547 0.693121 0.547538 0.636808 0.613056 0.604326 0.622809 0.664004 0.642891 0.680508 0.653475 0.565248 0.506622 0.672141 0.651383 0.546118 0.599617 0.62005 0.641204 0.616509 0.587668 0.66324 0.592457 0.655303 0.616718 0.67129 0.590081 0.522901 0.605855 0.627581 0.59244 0.589889 0.632412 0.663992 0.58174 0.585451 0.599442 0.654527 0.58376 0.680629 0.587589 0.604151 0.611645 0.473899 0.49646 0.633806 0.569853 0.579168 0.526416 0.546991 0.568288 0.656452 0.662171 0.591718 0.656836 0.594599 0.560054 0.596887 0.5747 0.582737 0.627276 0.650419 0.543542 0.63652 0.559917 0.5889 0.480249 0.569703 0.547596 0.474575 0.680475 0.468834 0.639209 0.615616 0.55289 0.511507 0.606214 0.557182 0.650682 0.632913 0.678817 0.634382 0.487689 0.500832 0.643192 0.453667 0.528942 0.506272 0.676475 0.540762 0.618446 0.572801 0.636391 0.560347 0.52976 0.545296 0.540687 0.497204 0.541476 0.529848 0.558973 0.528537 0.573602 0.553349 0.536553 0.611374 0.625753 0.461824 0.649137 0.604598 0.530028 0.546181 0.52063 0.503003 0.515219 0.521636 0.446515 0.494669 0.446723 0.463131 0.497325 0.602343 0.486394 0.453675 0.568851 0.495617 0.486507 0.57331 0.536203 0.463737 0.497083 0.45089 0.466772 0.628575 0.414112 0.528395 0.523995 0.490227 0.53475 0.456622 0.519862 0.53409 0.543267 0.398126 0.550757 0.527368 0.430295 0.528788 0.499667 0.410012 0.510501 0.365398 0.406426 0.494469 0.482737 0.450264 0.513131 0.53857 0.45767 0.551871 0.44841 0.459044 0.522458 0.522922 0.555028 0.481447 0.476521 0.503621 0.469477 0.490624 0.425184 0.405032 0.40691 0.421176 0.539872 0.46635 0.402477 0.509236 0.514684 0.506288 0.393154 0.483789 0.447396 0.459223 0.454422 0.422107 0.425306 0.487113 0.439425 0.412434 0.455061 0.499788 0.515127 0.428825 0.554013 0.443742 0.468905 0.545722 0.484449 0.46096 0.508422 0.537618 0.397767 0.368592 0.445922 0.457637 0.431071 0.519227 0.489129 0.436524 0.425974 0.478742 0.434879 0.474633 0.564317 0.404359 0.387914 0.543029 0.377948 0.398556 0.368813 0.422909 0.510217 0.508572 0.405403 0.550331 0.306898 0.442966 0.397061 0.372095 0.459662 0.453737 0.462801 0.415152 0.457925 0.374546 0.542678 0.388519 0.388586 0.44479 0.43839 0.424721 0.360956 0.413144 0.380107 0.259302 0.34115 0.354034 0.315252 0.383221 0.512443 0.417511 0.363569 0.485046 0.469753 0.499249 0.325214 0.40365 0.390578 0.391237 0.370258 0.324036 0.473798 0.362918 0.515532 0.467999 0.436244 0.359156 0.429368 0.338073 0.37556 0.48396 0.339605 0.352393 0.419202 0.408234 0.468421 0.459729 0.385952 0.366467 0.327343 0.317916 0.372124 0.352965 0.374395 0.408814 0.400877 0.356935 0.464371 0.426086 0.454869 0.337471 0.369886 0.365603 0.514092 0.463469 0.40886 0.412868 0.312534 0.387446 +2.44815 3.15692 3.08615 3.11092 2.97062 2.98542 2.96554 2.93645 2.91127 2.89428 2.89028 2.98008 2.94003 2.92025 2.98017 2.94441 2.94029 2.8601 2.92568 2.94022 2.76008 2.89993 2.92035 2.79094 2.75617 2.82238 2.84731 2.78117 2.70028 2.75668 2.66178 2.79298 2.81749 2.73729 2.76035 2.69054 2.68812 2.69681 2.83354 2.66917 2.65571 2.76929 2.67146 2.62973 2.74097 2.65932 2.64465 2.67955 2.63129 2.6202 2.59119 2.71261 2.54517 2.61138 2.58718 2.49703 2.49896 2.55693 2.52162 2.58012 2.54737 2.5766 2.51581 2.57527 2.54948 2.51085 2.53417 2.50671 2.49315 2.56025 2.41224 2.5438 2.4458 2.49271 2.54815 2.42142 2.41244 2.40885 2.45455 2.46979 2.34884 2.49879 2.5147 2.41398 2.38839 2.41229 2.40675 2.47063 2.43236 2.36038 2.38379 2.33822 2.31488 2.40174 2.36423 2.2716 2.28499 2.28219 2.346 2.30109 2.3749 2.37041 2.27308 2.27519 2.33685 2.29911 2.38169 2.21159 2.22334 2.22102 2.24276 2.19041 2.24925 2.31521 2.18533 2.20691 2.27604 2.25179 2.29572 2.29708 2.22549 2.21415 2.20197 2.19026 2.12421 2.20952 2.14114 2.21123 2.08685 2.15643 2.08368 2.13138 2.11635 2.16686 2.08334 2.12188 2.08787 2.1772 2.124 2.06674 2.20165 2.11645 2.09762 2.00335 2.16781 2.12505 2.03872 2.18889 2.03937 2.12853 2.01746 2.0547 2.06434 2.08557 2.06815 2.04248 2.0212 2.07713 2.02029 2.11363 2.09647 2.01617 1.94929 1.93031 2.03234 1.9666 1.94109 1.89748 1.90731 2.00242 2.05094 1.94911 1.93623 1.90803 1.9332 1.99176 1.9743 1.95903 1.98426 1.86886 1.96822 1.88252 1.84434 1.8406 1.92663 1.79 1.92808 1.94836 1.86805 1.80733 1.83793 1.83617 1.90473 1.95627 1.79997 1.87295 1.86781 1.84428 1.84546 1.87338 1.78337 1.82474 1.9084 1.8444 1.7611 1.86801 1.85265 1.83735 1.91722 1.80721 1.76814 1.77525 1.7931 1.81736 1.71844 1.89319 1.89529 1.78366 1.73673 1.75643 1.78528 1.83545 1.74268 1.73007 1.75853 1.7477 1.69059 1.68219 1.78474 1.66767 1.75531 1.70882 1.76515 1.74837 1.72021 1.69007 1.72555 1.64618 1.65485 1.70905 1.62803 1.61816 1.61809 1.65167 1.64574 1.78939 1.66388 1.71992 1.67867 1.59068 1.6612 1.65261 1.59604 1.67578 1.61395 1.6691 1.54151 1.63096 1.60961 1.71547 1.59805 1.55818 1.5746 1.57771 1.63352 1.62394 1.65554 1.57158 1.61417 1.50527 1.58699 1.45791 1.58704 1.64111 1.5333 1.61898 1.5082 1.53422 1.57976 1.6411 1.57634 1.64574 1.56487 1.62801 1.56078 1.44561 1.53347 1.53127 1.5188 1.44113 1.50022 1.47028 1.52651 1.53272 1.39189 1.47505 1.50648 1.50291 1.43736 1.43357 1.45568 1.50454 1.41919 1.46475 1.42256 1.48832 1.41536 1.37377 1.40739 1.50917 1.50013 1.53096 1.42104 1.47486 1.46496 1.42299 1.49488 1.48323 1.56927 1.28677 1.42639 1.50452 1.46399 1.46477 1.55476 1.45946 1.4316 1.44725 1.3493 1.44654 1.39547 1.3744 1.38612 1.32649 1.35479 1.44331 1.37952 1.44089 1.34034 1.33761 1.38169 1.276 1.3049 1.32252 1.5009 1.36941 1.2978 1.3154 1.38834 1.3316 1.2696 1.39338 1.31345 1.43413 1.3161 1.30757 1.37321 1.33564 1.34903 1.32698 1.26299 1.23645 1.1954 1.30098 1.27422 1.3325 1.2984 1.30711 1.22892 1.33731 1.31923 1.31193 1.3188 1.30661 1.18852 1.23813 1.19785 1.15965 1.33008 1.16253 1.27428 1.26969 1.22433 1.31538 1.26994 1.18663 1.14428 1.3812 1.22178 1.36693 1.20991 1.20889 1.2174 1.19022 1.25841 1.25189 1.26808 1.06899 1.22515 1.20435 1.15119 1.25984 1.18857 1.20872 1.10915 1.19214 1.155 1.19394 1.21549 1.10616 1.19129 1.25315 1.31125 1.1272 1.18891 1.14135 1.2021 1.1821 1.21151 1.08269 1.26923 1.08642 1.08596 1.10541 1.04523 1.09535 1.24514 1.11573 1.04516 1.13468 1.19291 1.13766 1.19353 1.15173 1.09729 1.2331 1.16676 1.13605 1.11127 1.15174 1.18785 1.15373 1.09609 1.13997 1.11044 1.06492 1.05515 1.10332 1.08272 1.04956 1.07826 1.12901 1.08833 1.09403 1.08517 1.01498 1.08709 1.12398 1.06619 1.0584 1.02218 1.07109 1.06441 1.11083 1.11253 1.00379 1.02885 1.04942 0.959537 1.01264 1.03594 1.17485 1.03805 1.05316 1.04208 0.931055 0.97539 1.08108 1.02891 1.0907 1.13804 1.16228 0.989881 0.936416 0.967829 1.07405 0.981344 1.08573 0.989831 1.03781 1.05065 1.0855 0.877895 0.983678 1.03863 0.98169 1.06626 1.04093 0.951818 1.08077 1.00568 0.924918 0.924542 1.02066 0.872501 0.980893 0.94482 1.01508 1.07106 1.04403 1.06803 1.02111 1.01843 0.958373 0.969069 0.940186 0.969979 1.053 0.969386 1.03717 0.958744 0.927056 0.905567 0.962193 0.816096 1.01872 0.922351 1.00044 0.974396 0.966618 0.935155 0.936938 1.00434 0.904289 0.907655 0.850895 0.848202 0.881711 0.809779 0.943384 0.916714 0.910473 0.851408 0.949363 0.922618 0.938608 0.935189 0.917257 0.990658 0.833297 0.986834 1.00969 0.933573 0.83237 0.857187 0.865783 0.922058 0.862047 0.83485 0.900219 0.86193 0.89915 0.931749 0.889927 0.97896 0.937481 0.882533 0.825002 0.861646 0.881072 0.877569 0.886926 0.86089 0.954891 0.903955 0.837368 0.886345 0.837681 0.770835 0.908665 0.864827 0.776538 0.866543 0.762326 0.845451 0.796607 0.883581 0.871599 0.889476 0.820563 0.774738 0.751337 0.881414 0.925824 0.836228 0.841067 0.775394 0.813299 0.768175 0.812773 0.791034 0.832425 0.798586 0.791643 0.856222 0.832675 0.814877 0.832371 0.775532 0.826688 0.879732 0.756431 0.859408 0.794177 0.733602 0.705308 0.897852 0.834366 0.793255 0.835694 0.737096 0.762602 0.855546 0.813203 0.742077 0.755483 0.812439 0.787689 0.774563 0.754656 0.841551 0.85145 0.849985 0.732491 0.799822 0.799037 0.746949 0.756944 0.755483 0.82473 0.793827 0.709099 0.838516 0.759362 0.701053 0.662856 0.831126 0.821515 0.807905 0.75565 0.887122 0.756523 0.666927 0.687873 0.831928 0.846478 0.770768 0.791046 0.746098 0.677531 0.647751 0.74386 0.767658 0.736612 0.774897 0.801242 0.784495 0.781039 0.709412 0.725665 0.766438 0.749813 0.770726 0.755262 0.739146 0.777602 0.769874 0.646356 0.652577 0.777945 0.685572 0.822 0.820371 0.609516 0.808322 0.687944 0.750344 0.637618 0.583835 0.679243 0.71 0.671962 0.712121 0.793405 0.636691 0.68113 0.706477 0.757445 0.69624 0.751955 0.609787 0.639092 0.626717 0.640624 0.647083 0.691242 0.633648 0.727197 0.572909 0.702093 0.645484 0.725273 0.667369 0.684132 0.688123 0.669114 0.581117 0.598506 0.648519 0.712677 0.61339 0.612372 0.539689 0.685643 0.706944 0.662522 0.692762 0.597692 0.676408 0.675602 0.808923 0.691918 0.539897 0.658869 0.620676 0.66028 0.662535 0.644837 0.683431 0.76041 0.587651 0.6515 0.62263 0.591192 0.693801 0.620455 0.598987 0.594052 0.739672 0.689134 0.59133 0.675018 0.598273 0.685915 0.561395 0.65236 0.569715 0.714368 0.622367 0.571724 0.670187 0.71198 0.541434 0.566083 0.577615 0.58589 0.623481 0.687259 0.674129 0.662768 0.676717 0.569077 0.715645 0.616806 0.541822 0.607842 0.584487 0.517223 0.529844 0.732575 0.577819 0.647283 0.525778 0.608418 0.726638 0.682345 0.53872 0.576103 0.521494 0.623999 0.572517 0.482457 0.53619 0.652051 0.563958 0.57602 0.570216 0.650849 0.63462 0.550807 0.568166 0.48353 0.61643 0.753279 0.563298 0.646018 0.565808 0.483647 0.602064 0.545688 0.583401 0.606723 0.641246 0.570601 0.688274 0.463586 0.547104 0.519578 0.53399 0.5433 0.577331 0.64358 0.575477 0.594607 0.668121 0.539998 0.56701 0.548206 0.578233 0.480412 0.566233 0.478813 0.535756 0.54244 0.518525 0.582157 0.509716 0.572254 0.55494 0.526521 0.400523 0.46539 0.482896 0.504936 0.589969 0.505119 0.551521 0.604335 0.519761 0.497767 0.439626 0.587468 0.454664 0.530057 0.570409 0.42979 0.446335 0.594273 0.484169 0.455658 0.59839 0.54616 0.588403 0.517891 0.434691 0.597408 0.480119 0.546147 0.539897 0.531318 0.491379 0.562004 0.481622 0.495083 0.491826 0.472604 0.534261 0.522154 0.480028 0.522325 0.526287 0.483092 0.569031 0.510117 0.444043 0.491334 0.593459 0.554151 0.462288 0.482992 0.545304 0.448373 0.531861 0.442999 0.560297 0.394511 0.56716 0.443029 0.522367 0.494991 0.484178 0.448352 0.412818 0.496703 0.555245 0.521465 0.342941 0.382804 0.488014 0.462822 0.500231 0.519736 0.417899 0.480082 0.541634 0.393262 0.615106 0.381731 0.420834 0.511754 0.515449 0.581472 0.449508 0.505929 0.4476 0.449738 0.317728 0.462209 0.390686 0.384749 0.5411 0.394298 0.570095 0.359979 0.56243 0.435234 0.491939 0.36754 0.462175 0.463937 0.505996 0.433818 0.410943 0.397959 0.56691 0.526387 0.452481 0.489864 0.401437 0.399992 0.340131 0.467523 0.549442 0.326717 0.384946 0.467043 0.426854 0.427289 0.41324 0.513553 0.480833 0.45069 0.411716 0.507645 0.374688 0.419469 0.466267 0.378282 0.479401 0.400999 0.423565 0.385781 0.424433 0.525189 0.362705 0.397517 0.414547 0.458146 0.439354 0.343605 0.400677 0.401879 0.488394 0.415908 0.43682 0.3872 0.400978 0.390156 0.424258 0.385772 0.337559 0.420308 0.429326 0.361148 0.416943 0.443129 0.44239 0.39593 0.423819 0.455858 +2.47734 3.18445 3.11274 3.0764 2.98065 2.93203 2.9736 3.03839 3.00201 2.89014 2.90861 2.96606 2.93954 2.96211 2.82288 2.91036 2.95234 2.88725 2.86725 2.88409 2.94369 2.83369 2.88564 2.83553 2.85656 2.91999 2.78747 2.80265 2.80168 2.7963 2.84829 2.77386 2.76788 2.7111 2.64158 2.69795 2.82669 2.72405 2.70405 2.67232 2.69511 2.64889 2.65718 2.73485 2.7049 2.82047 2.65491 2.71975 2.648 2.68845 2.70742 2.72616 2.65762 2.63733 2.63287 2.48305 2.63002 2.52374 2.63698 2.54722 2.58627 2.53991 2.60408 2.50376 2.55552 2.63794 2.49089 2.52499 2.61392 2.44701 2.45964 2.48339 2.49727 2.43887 2.44014 2.49557 2.4397 2.4108 2.46751 2.42057 2.44823 2.45104 2.32655 2.48311 2.38519 2.43907 2.27586 2.40343 2.33317 2.43013 2.44634 2.50882 2.31465 2.33287 2.32001 2.48831 2.36782 2.28871 2.32472 2.33892 2.29527 2.32415 2.35325 2.24009 2.3858 2.31458 2.28259 2.35704 2.38846 2.35308 2.26875 2.19013 2.26017 2.18168 2.2762 2.29355 2.31769 2.26898 2.20757 2.20119 2.16028 2.23965 2.11135 2.19667 2.30699 2.17798 2.25951 2.17691 2.16126 2.2265 2.16939 2.17211 2.17997 2.07408 2.16086 2.15706 2.08425 2.09218 2.19686 2.08687 2.0938 2.14829 2.18475 2.09613 2.08078 2.08965 2.11285 2.21293 1.91624 2.13585 2.11319 2.02835 2.01728 2.15706 2.0447 1.95871 1.99993 2.01994 2.05978 2.04674 2.10807 2.09007 2.05104 1.91548 2.00965 2.05476 2.10841 2.00518 1.94698 2.00003 1.96044 2.01591 1.8808 2.08157 1.9266 1.97221 1.99502 1.94262 1.92062 1.97852 1.97423 1.96476 1.92544 1.86904 1.90367 1.86576 2.02945 1.8946 1.83935 1.88092 1.79301 1.92591 1.80761 1.95527 1.91067 1.87071 1.94873 1.99326 1.84466 1.89429 1.83809 1.76193 1.72637 1.8221 1.89166 1.86643 1.75191 1.80741 1.82771 1.80195 1.78101 1.91492 1.8314 1.84785 1.72786 1.84272 1.79762 1.81547 1.76416 1.75453 1.82011 1.77623 1.76513 1.78906 1.79441 1.77326 1.6818 1.78631 1.6299 1.72608 1.63945 1.68343 1.68021 1.70096 1.7807 1.70811 1.77909 1.75788 1.67877 1.79025 1.81659 1.65286 1.71743 1.7487 1.67363 1.79245 1.72178 1.73059 1.64677 1.64585 1.74051 1.59215 1.64415 1.64239 1.52961 1.53682 1.63082 1.65815 1.68723 1.61704 1.6538 1.61152 1.52486 1.61626 1.55379 1.61787 1.48074 1.6526 1.62121 1.63732 1.5648 1.66913 1.59855 1.54131 1.51706 1.56336 1.58933 1.58362 1.48091 1.53212 1.60466 1.61107 1.53645 1.59879 1.56129 1.57087 1.64635 1.52911 1.68905 1.56558 1.58301 1.52932 1.44395 1.54586 1.55326 1.48266 1.53182 1.48152 1.46251 1.48908 1.57838 1.47492 1.54559 1.49221 1.50505 1.44383 1.48657 1.45678 1.45373 1.48038 1.48166 1.34996 1.41046 1.4107 1.50151 1.51626 1.44752 1.46533 1.51964 1.41741 1.4593 1.51006 1.46246 1.47592 1.45728 1.51377 1.34181 1.43343 1.43169 1.44351 1.43692 1.38313 1.27178 1.40364 1.50331 1.40896 1.33564 1.45474 1.39662 1.45904 1.3555 1.4 1.29967 1.36039 1.36968 1.35242 1.28349 1.41272 1.26269 1.34229 1.3668 1.32299 1.41524 1.32815 1.35654 1.36255 1.25367 1.35538 1.28842 1.28787 1.41651 1.27672 1.32033 1.30965 1.30297 1.31214 1.28501 1.32527 1.34471 1.33907 1.36925 1.25635 1.34569 1.31241 1.31166 1.28492 1.24756 1.31024 1.32884 1.16064 1.28311 1.35992 1.33779 1.27075 1.25251 1.2846 1.27006 1.22062 1.27106 1.30418 1.24125 1.22653 1.19027 1.33787 1.32839 1.22939 1.18912 1.17805 1.30619 1.31091 1.28061 1.20833 1.34609 1.1808 1.14512 1.21362 1.20289 1.23684 1.22352 1.12431 1.22622 1.15733 1.28806 1.22178 1.25953 1.25121 1.14882 1.23835 1.21669 1.11575 1.25463 1.15037 1.19567 1.19393 1.22277 1.20986 1.18063 1.16934 1.22957 1.30559 1.21165 1.22978 1.15395 1.14946 1.09021 1.05637 1.13809 1.15732 1.10236 1.12247 1.09672 1.15679 1.1647 1.14537 1.14131 1.07999 1.14627 1.13964 1.19491 1.05242 1.1806 1.05481 1.06404 0.994424 1.09938 1.11144 1.13387 1.10216 1.10054 1.23475 1.02475 0.979239 1.17024 1.00247 1.12013 0.972818 1.04505 1.00864 1.21319 1.02891 1.0453 1.12714 1.02329 1.1146 1.05088 1.03678 1.14253 1.08013 0.994779 1.07949 1.01345 1.15296 1.02701 1.11027 1.02023 1.00323 1.09768 1.0421 1.06831 1.11521 1.0448 1.10443 0.968184 1.04392 0.965119 1.02987 1.08629 1.0473 1.12761 1.02102 0.995977 1.0424 0.99642 0.96451 1.01981 0.986491 1.02773 0.9407 1.2263 1.07309 1.00298 1.09199 0.988888 0.963884 0.983757 0.91003 1.07113 1.03597 1.01538 0.983811 0.962226 0.991906 0.922405 0.96828 0.940362 1.0015 1.01046 1.05035 0.98971 1.02708 1.01981 0.994161 0.951897 1.01298 1.01476 1.00088 0.919708 0.921561 0.959934 0.890144 0.925177 0.891698 0.985552 1.01864 0.987731 0.989147 0.978187 0.879515 0.908306 1.09933 0.864869 1.00402 0.860907 0.87855 0.989681 0.916852 0.912982 0.927064 0.898975 0.910928 0.883147 0.824404 0.919065 0.953413 0.814443 0.87979 0.905655 0.868839 0.894006 0.797058 0.908277 0.95224 0.914635 0.880646 0.886629 0.880149 0.865412 0.928876 0.856151 0.865842 0.860948 0.866568 0.85775 0.837059 0.825811 0.781418 0.918727 0.883539 0.902056 0.837744 0.915253 0.906131 0.936253 0.847947 0.897388 0.79239 0.79654 0.81395 0.819336 0.825728 0.898019 0.760105 0.828287 0.925979 0.889823 0.855609 0.814426 0.79925 0.84811 0.842628 0.792474 0.820989 0.676283 0.915549 0.694528 0.858598 0.802352 0.830742 0.855346 0.795906 0.755128 0.765441 0.737773 0.895814 0.806114 0.77377 0.750419 0.834779 0.770321 0.826066 0.742895 0.79897 0.753993 0.8325 0.770547 0.949889 0.782011 0.756736 0.80163 0.807024 0.758552 0.802352 0.756431 0.77544 0.766284 0.77511 0.76871 0.736967 0.755412 0.795342 0.663537 0.804703 0.909408 0.720463 0.736332 0.688194 0.759783 0.767783 0.734595 0.728588 0.753621 0.819733 0.796582 0.791885 0.738094 0.714631 0.747822 0.786011 0.789284 0.817395 0.681769 0.797125 0.787326 0.768898 0.797171 0.775578 0.641513 0.707938 0.706368 0.691184 0.70917 0.810673 0.863529 0.666422 0.76509 0.749609 0.672772 0.795083 0.71858 0.790545 0.687309 0.676571 0.592695 0.754682 0.756339 0.727598 0.732704 0.673807 0.750995 0.683994 0.654243 0.761458 0.747367 0.7016 0.709107 0.741772 0.632783 0.746031 0.682913 0.680546 0.712635 0.780479 0.724041 0.69925 0.631243 0.740582 0.68237 0.812334 0.701041 0.686516 0.60823 0.724145 0.655207 0.633656 0.747388 0.656765 0.630946 0.617482 0.754748 0.629681 0.765499 0.651425 0.785694 0.640954 0.698786 0.706898 0.681765 0.643396 0.658806 0.738002 0.586098 0.649751 0.652101 0.63093 0.644549 0.619778 0.572905 0.67296 0.652393 0.672651 0.580015 0.634992 0.574191 0.757838 0.661052 0.683994 0.594022 0.623619 0.635076 0.657604 0.598511 0.683355 0.6286 0.671415 0.630988 0.727306 0.673841 0.632587 0.596427 0.643229 0.649446 0.572049 0.413724 0.661215 0.687284 0.630045 0.606113 0.557541 0.617895 0.55165 0.622204 0.644139 0.558238 0.590561 0.551041 0.544265 0.588528 0.621653 0.632028 0.693092 0.621411 0.639251 0.588637 0.616922 0.484704 0.585881 0.525251 0.620567 0.553971 0.562301 0.646194 0.569766 0.629936 0.578746 0.668171 0.645797 0.583238 0.57807 0.529435 0.496235 0.555913 0.573886 0.60299 0.546327 0.548051 0.547471 0.580992 0.698098 0.548527 0.524805 0.554084 0.633009 0.512576 0.663846 0.536612 0.626579 0.606259 0.570016 0.609403 0.53138 0.548803 0.633259 0.528838 0.581873 0.479272 0.579247 0.586249 0.619862 0.531564 0.547788 0.597066 0.565378 0.533338 0.483355 0.652022 0.605308 0.456727 0.47971 0.583088 0.573402 0.524592 0.514831 0.620208 0.55137 0.532883 0.50881 0.601032 0.583055 0.584403 0.619219 0.52926 0.668058 0.500494 0.455775 0.522847 0.590503 0.579531 0.636996 0.658598 0.581777 0.576045 0.457265 0.508756 0.542311 0.540035 0.577134 0.574154 0.574496 0.622442 0.542632 0.438945 0.490177 0.441166 0.542523 0.507666 0.541638 0.542799 0.571569 0.531493 0.44183 0.527581 0.534938 0.557637 0.545296 0.56013 0.571423 0.448519 0.485793 0.459299 0.541217 0.523085 0.480846 0.571043 0.469285 0.514697 0.534219 0.620981 0.521248 0.491346 0.550268 0.447913 0.506714 0.632679 0.636082 0.573511 0.412033 0.468509 0.441359 0.519536 0.451437 0.416722 0.396673 0.495091 0.55838 0.49183 0.531977 0.432211 0.453758 0.495083 0.385597 0.555057 0.421732 0.4496 0.373397 0.422988 0.424157 0.379668 0.49937 0.516989 0.460017 0.495012 0.52321 0.484265 0.42526 0.450247 0.463545 0.449951 0.497792 0.49937 0.492144 0.364083 0.331468 0.504685 0.371606 0.418317 0.47169 0.482679 0.357136 0.330278 0.439968 0.508347 0.468872 0.472863 0.457691 0.485656 0.38791 0.477648 0.467482 0.405103 0.318003 0.447037 0.422341 0.338753 0.44722 0.444198 0.390536 0.425139 0.482324 0.384111 0.440068 0.420379 0.464805 0.511073 0.513424 0.57928 0.380098 0.4831 0.486394 0.384056 0.477047 0.339555 0.345905 0.473515 0.471849 0.421865 0.490507 0.419799 0.383831 0.379986 0.368208 +2.49068 3.05982 3.02664 3.08839 2.96085 3.0026 3.0098 2.87628 2.90296 2.92511 2.86324 2.89134 2.92197 2.8673 2.95206 2.85683 2.86628 2.79626 2.8451 2.7927 2.88994 2.84778 2.76579 2.81747 2.83331 2.84755 2.75753 2.75218 2.68886 2.78821 2.71483 2.73955 2.69899 2.59603 2.61333 2.60877 2.63271 2.56066 2.62247 2.6392 2.61688 2.68033 2.62533 2.50494 2.63186 2.55031 2.71003 2.59136 2.66015 2.69187 2.65795 2.6645 2.54963 2.55312 2.39738 2.52662 2.56309 2.49451 2.66205 2.57794 2.46227 2.57941 2.48518 2.47098 2.52817 2.49897 2.35948 2.42743 2.44054 2.44118 2.43627 2.4499 2.37505 2.34671 2.38351 2.45655 2.34213 2.40276 2.33932 2.43002 2.39061 2.39367 2.42148 2.30242 2.35669 2.38356 2.35961 2.32017 2.3207 2.333 2.31839 2.36084 2.31494 2.20475 2.29935 2.33738 2.27237 2.30236 2.27067 2.26657 2.27251 2.25239 2.25024 2.26283 2.27998 2.2207 2.16437 2.24742 2.28918 2.16412 2.12928 2.10226 2.17508 2.14555 2.19188 2.19599 2.22622 2.0453 2.10325 2.20151 2.1461 2.16324 2.16885 2.11672 2.06083 2.19909 2.12133 2.13724 2.13306 2.11998 2.10995 2.12344 2.14458 2.03453 2.11028 2.10433 1.9993 2.01281 2.04488 2.11566 2.1002 2.01701 1.98818 1.96709 1.95452 2.03775 1.97883 2.05288 2.08251 2.07797 2.01176 2.02717 2.05491 2.07023 1.93853 1.9479 1.99365 2.10783 1.94857 1.97077 2.01729 1.94301 2.00813 1.93007 1.88267 2.05754 2.04823 2.03103 1.92708 1.85492 1.9122 1.96626 1.89919 1.95598 1.93999 1.88206 1.89109 1.97217 1.91348 1.8273 1.78022 1.88288 1.9449 1.82394 1.84538 1.83304 1.83545 1.84721 1.83547 1.88814 1.82717 1.83117 1.66898 1.80074 1.74701 1.84361 1.86557 1.87103 1.79097 1.74461 1.85267 1.72818 1.68599 1.74704 1.73895 1.80122 1.71319 1.75106 1.68775 1.78491 1.64908 1.77186 1.7316 1.68543 1.75352 1.71936 1.71482 1.72406 1.70169 1.67842 1.69936 1.61697 1.72789 1.68554 1.71057 1.72824 1.67348 1.55493 1.66525 1.70888 1.73842 1.59598 1.64885 1.56881 1.57791 1.56679 1.64247 1.59685 1.67455 1.58211 1.65143 1.7039 1.62588 1.6569 1.58668 1.70741 1.56981 1.4919 1.57475 1.61439 1.61599 1.54667 1.65895 1.5878 1.58724 1.60319 1.55126 1.5489 1.68727 1.56996 1.57525 1.52211 1.65237 1.48301 1.48139 1.50898 1.5226 1.54369 1.55138 1.60606 1.55156 1.44764 1.50938 1.54058 1.48014 1.466 1.39939 1.56369 1.36095 1.52945 1.65111 1.46596 1.49491 1.44817 1.47815 1.43227 1.39339 1.443 1.52781 1.50917 1.44371 1.48817 1.52822 1.52303 1.39625 1.43829 1.41132 1.31594 1.43841 1.40903 1.4577 1.38471 1.46874 1.38497 1.50364 1.36698 1.45409 1.42785 1.37067 1.3811 1.35517 1.289 1.40223 1.5079 1.36983 1.32111 1.47873 1.43905 1.31966 1.25661 1.29225 1.37989 1.34771 1.31775 1.48173 1.29974 1.17413 1.31295 1.32056 1.2659 1.32724 1.24035 1.38959 1.29512 1.31799 1.34103 1.32383 1.26889 1.30795 1.32122 1.30795 1.32319 1.25429 1.25271 1.22777 1.34966 1.34052 1.34204 1.29267 1.31095 1.30649 1.23306 1.32036 1.3258 1.21985 1.23945 1.32079 1.27237 1.26447 1.30505 1.26011 1.30556 1.33873 1.26429 1.24249 1.20392 1.1219 1.22559 1.24461 1.20988 1.23175 1.21834 1.14789 1.16453 1.15638 1.28615 1.26794 1.21138 1.20928 1.13788 1.27889 1.31461 1.19538 1.21126 1.19834 1.14232 1.22375 1.20677 1.127 1.10396 1.16557 1.18302 1.19604 1.17384 1.24711 1.22713 1.07971 1.11111 1.18203 1.19105 1.17394 1.18014 1.14594 1.15145 1.27524 1.21059 1.02414 1.13375 1.0742 1.06024 1.10376 1.16177 1.11278 1.03314 1.2718 1.25797 1.11882 1.17888 1.02783 1.05832 1.07402 1.15272 1.08713 1.1535 1.11333 1.11972 1.14238 1.05049 1.03936 1.03878 1.01476 1.16381 1.06065 1.10183 1.17338 1.10409 1.09959 1.04051 1.04044 1.10302 1.00366 1.07331 1.03212 1.10403 1.10001 1.07011 1.1323 1.03044 0.98784 1.04227 1.05919 1.0044 1.0918 1.04351 1.03354 1.09665 0.968756 1.10472 1.09937 1.07638 1.01905 0.997154 1.02054 1.04368 0.935589 0.99882 0.946136 1.04414 1.01047 0.967391 1.03475 0.978041 1.03308 0.99161 0.965195 0.939393 1.05359 0.984588 1.08014 0.971553 1.03794 0.973941 0.955684 1.00907 0.960627 0.947071 1.02033 0.957016 1.01878 1.05408 0.99348 1.06555 1.00888 1.01359 0.894186 0.94604 1.02543 0.997944 0.987005 0.910986 0.875883 0.901551 0.902586 0.919511 1.01138 0.960431 0.937848 0.86519 0.812472 1.00739 1.01114 1.01024 0.850106 0.972234 0.800298 0.951613 0.89065 0.886366 0.956966 0.86499 0.997225 0.964159 1.00072 0.977519 0.926768 0.888257 0.949647 0.978918 0.89657 0.873252 0.914414 0.836324 0.899885 1.0153 0.87734 0.931252 0.81896 0.923778 0.85254 0.926167 0.844507 0.926396 0.921369 0.816914 0.837142 0.999714 0.749943 0.817879 0.83184 0.953045 0.915011 0.810477 0.74277 0.869507 0.712397 0.846599 0.942257 0.880834 0.833347 0.822755 0.832821 0.857291 0.776362 0.774283 0.925473 0.899734 0.828797 0.803605 0.809349 0.761499 0.858853 0.769252 0.857617 0.829623 0.901346 0.721139 0.849058 0.828321 0.784178 0.844921 0.842056 0.822396 0.848515 0.657879 0.813433 0.800528 0.807153 0.825958 0.781226 0.834775 0.742762 0.802264 0.710284 0.85831 0.774626 0.812368 0.919207 0.715465 0.85717 0.812689 0.782287 0.828797 0.765958 0.797371 0.796277 0.800728 0.678917 0.798799 0.801688 0.786741 0.764881 0.736883 0.770296 0.794361 0.920601 0.701713 0.770401 0.723619 0.751851 0.762184 0.798624 0.765015 0.7804 0.688507 0.728103 0.767369 0.789889 0.763712 0.75512 0.708456 0.743417 0.785389 0.675911 0.714585 0.708247 0.628613 0.823056 0.693939 0.759236 0.785339 0.772663 0.727452 0.675101 0.783514 0.695638 0.677757 0.780195 0.676646 0.797705 0.709462 0.647271 0.733944 0.636737 0.637702 0.659462 0.645008 0.689568 0.780679 0.649078 0.697509 0.768572 0.709433 0.739714 0.74629 0.71509 0.675765 0.78594 0.644891 0.766985 0.722868 0.660556 0.815796 0.723386 0.728533 0.770814 0.711462 0.734587 0.719357 0.672905 0.686566 0.614973 0.585009 0.743956 0.754686 0.732354 0.599725 0.716785 0.650231 0.651592 0.692332 0.688908 0.74662 0.696958 0.745902 0.685589 0.59472 0.646035 0.602619 0.619148 0.726972 0.796173 0.764334 0.592762 0.691564 0.58399 0.721878 0.793371 0.648198 0.711612 0.687927 0.641125 0.719749 0.668025 0.673486 0.641321 0.649939 0.591714 0.586357 0.673603 0.659574 0.721999 0.662309 0.609282 0.653567 0.637009 0.739823 0.636462 0.610109 0.583906 0.580161 0.47728 0.704936 0.601596 0.600978 0.588841 0.595271 0.629623 0.588612 0.654606 0.622926 0.61013 0.500752 0.629285 0.693751 0.555378 0.627585 0.65479 0.586457 0.544607 0.629894 0.536077 0.573218 0.478199 0.534666 0.692156 0.554882 0.556497 0.605379 0.615039 0.726855 0.6453 0.552347 0.536766 0.573139 0.693455 0.54345 0.58842 0.496469 0.59664 0.565211 0.575318 0.589146 0.584912 0.56286 0.539221 0.585079 0.628608 0.53518 0.580211 0.509641 0.490077 0.578892 0.460088 0.589964 0.459762 0.489476 0.522989 0.611457 0.574972 0.627043 0.508756 0.621465 0.580399 0.528988 0.607261 0.565186 0.580558 0.613365 0.60284 0.496394 0.486599 0.680871 0.594557 0.598419 0.488156 0.461419 0.646857 0.599366 0.588875 0.522179 0.564914 0.426433 0.482336 0.56473 0.522934 0.517749 0.590628 0.530332 0.49573 0.553337 0.542177 0.583873 0.5389 0.469682 0.553696 0.563177 0.539079 0.547375 0.400368 0.483848 0.494461 0.597851 0.575085 0.583798 0.663486 0.572538 0.560334 0.558172 0.471093 0.533376 0.578683 0.512142 0.489167 0.530537 0.458217 0.574563 0.479105 0.53733 0.535134 0.516484 0.435401 0.486536 0.467315 0.489885 0.482357 0.555696 0.461632 0.455073 0.586073 0.557942 0.379698 0.49798 0.537505 0.46643 0.516004 0.434169 0.547058 0.422216 0.562029 0.502402 0.645062 0.478362 0.438457 0.435622 0.54254 0.53667 0.445621 0.398711 0.454456 0.417486 0.503529 0.481902 0.565115 0.45896 0.412196 0.438231 0.520087 0.436065 0.506326 0.434357 0.556739 0.43343 0.552013 0.543384 0.382303 0.462697 0.426729 0.401917 0.437158 0.484215 0.369164 0.471774 0.444193 0.40828 0.432119 0.387684 0.621373 0.442273 0.465064 0.434127 0.506865 0.268195 0.484712 0.469586 0.504443 0.529823 0.40441 0.419385 0.558752 0.479881 0.450222 0.486699 0.445742 0.535622 0.494598 0.396953 0.416171 0.467632 0.467703 0.512651 0.34502 0.441676 0.48085 0.443976 0.459186 0.416692 0.439805 0.395959 0.377493 0.404092 0.399045 0.430687 0.37604 0.394314 0.431489 0.370053 0.432858 0.374842 0.376462 0.453049 0.549354 0.426124 0.506318 0.510163 0.334202 0.407725 0.401387 0.469728 0.494152 0.46491 0.450059 0.463703 0.365494 0.420254 0.428708 0.407562 0.448084 0.53179 0.358284 0.440878 0.431205 0.3017 0.385664 0.340152 0.430812 0.541576 0.389759 0.320742 0.40476 0.37622 0.448732 0.475089 0.404176 0.411703 0.364192 0.369389 0.39183 0.410668 0.374525 0.337989 0.423602 0.497717 0.321393 0.393592 0.392106 0.491425 0.428245 0.501951 0.353053 0.281267 diff --git a/example_data/bgr/MouseLift/cpmgfastautotest/8/resultsFit.par b/example_data/bgr/MouseLift/cpmgfastautotest/8/resultsFit.par new file mode 100644 index 0000000..87a59b0 --- /dev/null +++ b/example_data/bgr/MouseLift/cpmgfastautotest/8/resultsFit.par @@ -0,0 +1,6 @@ +depth = 8500 um, E = (2.857 ± 0.007), T2 = (32.6 ± 0.1) ms +depth = 7500 um, E = (2.865 ± 0.007), T2 = (33.2 ± 0.1) ms +depth = 6500 um, E = (2.843 ± 0.007), T2 = (33.5 ± 0.1) ms +depth = 5500 um, E = (2.865 ± 0.007), T2 = (34.8 ± 0.1) ms +depth = 4500 um, E = (2.872 ± 0.007), T2 = (35.5 ± 0.1) ms +depth = 3500 um, E = (2.813 ± 0.007), T2 = (34.0 ± 0.1) ms diff --git a/example_data/bgr/std/sample_T1.dat b/example_data/bgr/std/sample_T1.dat new file mode 100644 index 0000000..825e354 --- /dev/null +++ b/example_data/bgr/std/sample_T1.dat @@ -0,0 +1,30 @@ +0.0179527 0.0570798 0 +0.0299937 0.061475 0 +0.0424638 0.0703219 0 +0.0553947 0.0988175 0 +0.0688217 0.109881 0 +0.0827844 0.119812 0 +0.0973273 0.136375 0 +0.112501 0.154137 0 +0.128362 0.154389 0 +0.144976 0.164147 0 +0.162419 0.17181 0 +0.180777 0.187818 0 +0.20015 0.213492 0 +0.22066 0.213368 0 +0.242447 0.221974 0 +0.26568 0.235361 0 +0.290566 0.243323 0 +0.317358 0.253344 0 +0.346372 0.255927 0 +0.37801 0.271413 0 +0.412795 0.271762 0 +0.451422 0.289986 0 +0.494848 0.294341 0 +0.544435 0.298221 0 +0.602225 0.321101 0 +0.671483 0.315926 0 +0.757912 0.329307 0 +0.87294 0.322243 0 +1.04542 0.355889 0 +1.4 0.364782 0 diff --git a/example_data/bgr/std/sample_T1.par b/example_data/bgr/std/sample_T1.par new file mode 100644 index 0000000..9039795 --- /dev/null +++ b/example_data/bgr/std/sample_T1.par @@ -0,0 +1,54 @@ +90Amplitude = -7 +180Amplitude = 0 +accumulate = "yes" +acqTime = 0.0245 +b1Freq = 13.05 +bandwidth = 2000 +bandwidthFile = 0.5 +bestResol = 50 +dataDirectory = "C:\NMRMouse_data\Fe_soils_MA_Robin\FBS8510" +depthList = "" +dispRange = 0 +dwellTime = 0.5 +echoShift = 1.0 +echoTime = 101 +echoTime0 = 100 +enableLift = "yes" +excecutedBackdoor = "yes" +experiment = "T1Sat" +expName = "t1test" +expNr = 1 +fdPhaseCorr = "mag" +filter = "no" +filterType = "" +flatFilter = "no" +gradient = 273 +incExpNr = "yes" +index = "exp" +last = 0 +maxDepth = 20200 +nrEchoes = 10 +nrExp = 1 +nrPnts = 49 +nrPntsT1 = 30 +nrScans = 25 +position = [624,388] +Probe = "1H-L" +probeHead = "PM25-05mm.par" +pulseLength = 24 +refSignal = 1 +refSignalCheck = "no" +repTime = 400 +resolution = 150 +rxGain = 31 +rxPhase = 145 +saveData = "false" +Sensor = "PM25" +showFreqDomain = "no" +showTimeDomain = "yes" +Spacer = "PM25-05mm.par" +t1Est = 350 +tdPhaseCorr = "none" +tMax = 1400 +usePhaseCycle = "yes" +windowSize = "small" diff --git a/example_data/bgr/std/sample_T2.dat b/example_data/bgr/std/sample_T2.dat new file mode 100644 index 0000000..a343380 --- /dev/null +++ b/example_data/bgr/std/sample_T2.dat @@ -0,0 +1,700 @@ +0.000101 0.334165 0.0104983 +0.000202 0.399398 -0.0203197 +0.000303 0.370539 -0.0100603 +0.000404 0.379377 -0.00387268 +0.000505 0.363697 -0.0170524 +0.000606 0.355727 0.00308892 +0.000707 0.382016 -0.00442688 +0.000808 0.396886 -0.0248456 +0.000909 0.375215 -0.0156861 +0.00101 0.371801 -0.0208311 +0.001111 0.367391 -0.0169505 +0.001212 0.394278 -0.000343356 +0.001313 0.358969 -0.0175554 +0.001414 0.367999 0.00199074 +0.001515 0.360059 0.00321403 +0.001616 0.382647 -0.017488 +0.001717 0.356293 0.00016559 +0.001818 0.352692 0.0202577 +0.001919 0.349901 0.00150747 +0.00202 0.354671 -0.021206 +0.002121 0.334128 0.00261501 +0.002222 0.366751 0.00362223 +0.002323 0.362088 0.00191675 +0.002424 0.350149 0.00749796 +0.002525 0.347849 -0.00270356 +0.002626 0.332716 -0.0133209 +0.002727 0.356225 0.0162688 +0.002828 0.353419 0.00614172 +0.002929 0.366598 0.00381654 +0.00303 0.34559 -0.00160822 +0.003131 0.340904 -0.0165101 +0.003232 0.339071 0.0101175 +0.003333 0.361264 -0.00379435 +0.003434 0.334806 -0.0109174 +0.003535 0.349284 -0.000417992 +0.003636 0.362714 0.0222698 +0.003737 0.352008 0.00222682 +0.003838 0.329227 0.00543912 +0.003939 0.346442 -0.0194095 +0.00404 0.34371 -0.0181046 +0.004141 0.339538 0.0078633 +0.004242 0.349525 -0.0116313 +0.004343 0.363758 -0.00903394 +0.004444 0.351528 0.00433376 +0.004545 0.330598 0.0249002 +0.004646 0.325641 -0.0126459 +0.004747 0.331399 -0.00731257 +0.004848 0.339231 -0.0169821 +0.004949 0.330515 -0.00168415 +0.00505 0.340571 -0.00236086 +0.005151 0.345622 -0.0175594 +0.005252 0.33941 -0.0182833 +0.005353 0.331607 0.00852194 +0.005454 0.334642 0.0110534 +0.005555 0.313836 0.00773252 +0.005656 0.330398 0.00658517 +0.005757 0.331254 0.0039249 +0.005858 0.324233 -0.0185677 +0.005959 0.299171 -0.0146684 +0.00606 0.34103 -0.000949784 +0.006161 0.324076 -0.0143592 +0.006262 0.317633 -0.00834809 +0.006363 0.322683 -0.0102215 +0.006464 0.315453 0.0081825 +0.006565 0.311351 0.00817184 +0.006666 0.323524 0.000605991 +0.006767 0.31801 -0.0152866 +0.006868 0.336665 -0.00664239 +0.006969 0.324729 -0.00585363 +0.00707 0.324789 -0.00168502 +0.007171 0.329913 0.00897758 +0.007272 0.318079 0.00588061 +0.007373 0.308597 -0.0140198 +0.007474 0.313458 -0.00490123 +0.007575 0.31536 -0.00600377 +0.007676 0.32228 -0.0214699 +0.007777 0.331167 0.00297969 +0.007878 0.312891 -0.0224782 +0.007979 0.302167 -0.0050394 +0.00808 0.322116 -0.0157547 +0.008181 0.297692 -0.0191367 +0.008282 0.306794 0.0187822 +0.008383 0.316756 0.0123398 +0.008484 0.306588 -0.0104729 +0.008585 0.307677 -0.0164627 +0.008686 0.292452 0.00329062 +0.008787 0.301003 -0.00132491 +0.008888 0.317453 -0.0182439 +0.008989 0.308565 -0.00836332 +0.00909 0.298237 0.00441666 +0.009191 0.311713 0.0118467 +0.009292 0.306611 0.0165071 +0.009393 0.307415 0.00128727 +0.009494 0.30721 0.0149772 +0.009595 0.297511 -0.00175313 +0.009696 0.306611 0.00897801 +0.009797 0.32036 -0.00733346 +0.009898 0.310685 -0.0251685 +0.009999 0.311422 0.0125676 +0.0101 0.302047 -0.00823472 +0.010201 0.319013 0.00133557 +0.010302 0.317188 0.0247905 +0.010403 0.290663 0.0162897 +0.010504 0.314694 -0.00195027 +0.010605 0.28092 -0.00545239 +0.010706 0.292401 -0.00616718 +0.010807 0.294437 0.00386942 +0.010908 0.283456 0.0146376 +0.011009 0.310328 0.00475697 +0.01111 0.283449 -0.00569566 +0.011211 0.261981 -0.00651423 +0.011312 0.30273 0.00667286 +0.011413 0.292164 0.016647 +0.011514 0.291764 0.00163323 +0.011615 0.268415 0.0293299 +0.011716 0.275291 -0.0098895 +0.011817 0.292173 -0.0118322 +0.011918 0.279615 -0.00318814 +0.012019 0.276772 -0.00262849 +0.01212 0.280436 0.00340508 +0.012221 0.296901 0.00803911 +0.012322 0.296295 0.00136734 +0.012423 0.279929 0.0250947 +0.012524 0.292725 -0.0187763 +0.012625 0.283606 -0.0203384 +0.012726 0.291568 -0.000204101 +0.012827 0.287256 -0.00102203 +0.012928 0.275602 -0.0197605 +0.013029 0.271616 0.0104811 +0.01313 0.279808 -0.0164146 +0.013231 0.279936 -0.00155077 +0.013332 0.299729 0.0247394 +0.013433 0.269977 0.00334394 +0.013534 0.287654 0.00729908 +0.013635 0.286468 -0.00554117 +0.013736 0.295854 -0.0136321 +0.013837 0.25591 -0.00284522 +0.013938 0.294948 0.0214386 +0.014039 0.266793 -0.00273163 +0.01414 0.270369 -0.0150877 +0.014241 0.278395 0.0197005 +0.014342 0.27103 0.0087861 +0.014443 0.27574 0.0112925 +0.014544 0.277694 0.00800799 +0.014645 0.274142 0.00567238 +0.014746 0.283873 0.0178862 +0.014847 0.292921 0.0111537 +0.014948 0.295081 -0.00770272 +0.015049 0.262679 0.00156687 +0.01515 0.260614 0.00797818 +0.015251 0.261096 0.000578576 +0.015352 0.276253 0.00266984 +0.015453 0.258432 0.0106589 +0.015554 0.248213 0.000170376 +0.015655 0.259852 0.0047598 +0.015756 0.249512 -0.0026137 +0.015857 0.282786 0.0187276 +0.015958 0.273787 0.0131035 +0.016059 0.269789 -0.00233867 +0.01616 0.260021 -0.00597374 +0.016261 0.253694 0.00847951 +0.016362 0.25748 -0.0103599 +0.016463 0.293403 -0.0131821 +0.016564 0.270798 -0.0130311 +0.016665 0.247751 -0.0161705 +0.016766 0.269794 0.0135687 +0.016867 0.265801 -0.00726013 +0.016968 0.259448 -0.00571328 +0.017069 0.252437 0.00955419 +0.01717 0.253311 -0.0103454 +0.017271 0.264411 -0.00441143 +0.017372 0.268954 0.0170678 +0.017473 0.264963 -0.0180914 +0.017574 0.268807 -0.0119492 +0.017675 0.260981 -0.00672986 +0.017776 0.278628 -0.0092513 +0.017877 0.248179 -0.000253493 +0.017978 0.263453 -0.00207386 +0.018079 0.25806 0.0157388 +0.01818 0.264594 -0.014819 +0.018281 0.258464 -0.00309327 +0.018382 0.254511 -0.00886988 +0.018483 0.242648 -0.0136623 +0.018584 0.254797 0.0128355 +0.018685 0.239601 -0.002793 +0.018786 0.262212 -0.00880612 +0.018887 0.24741 -0.0267121 +0.018988 0.238966 -0.0068391 +0.019089 0.244419 -0.00560449 +0.01919 0.245758 -0.0093897 +0.019291 0.235205 -0.0240956 +0.019392 0.246068 -0.0078968 +0.019493 0.236088 -0.00525547 +0.019594 0.232164 -0.00380284 +0.019695 0.232004 0.0154916 +0.019796 0.241099 -0.00186671 +0.019897 0.251139 0.00992345 +0.019998 0.221145 -0.00922694 +0.020099 0.256297 0.0163063 +0.0202 0.270859 -0.00762373 +0.020301 0.259717 -0.0113537 +0.020402 0.240198 -0.014433 +0.020503 0.244781 0.00888793 +0.020604 0.251656 0.00546392 +0.020705 0.248024 0.00103508 +0.020806 0.230669 -0.000653859 +0.020907 0.240455 0.00304475 +0.021008 0.266374 -0.00334611 +0.021109 0.252109 0.00447911 +0.02121 0.237625 -0.00116346 +0.021311 0.246511 0.0161981 +0.021412 0.239175 0.00400911 +0.021513 0.241254 -0.00304801 +0.021614 0.236632 -0.0089049 +0.021715 0.249525 0.0210478 +0.021816 0.251467 -0.00525765 +0.021917 0.244844 0.0104911 +0.022018 0.235773 0.00133754 +0.022119 0.239306 -0.00474631 +0.02222 0.232737 0.0012122 +0.022321 0.248391 -0.000114668 +0.022422 0.255405 0.00356784 +0.022523 0.23666 -0.0219134 +0.022624 0.258923 0.00773731 +0.022725 0.237837 -0.00656058 +0.022826 0.227196 -0.0130248 +0.022927 0.227093 -0.0126851 +0.023028 0.239522 -0.0155573 +0.023129 0.220919 -0.00361027 +0.02323 0.229262 -0.00423345 +0.023331 0.244589 -0.00613671 +0.023432 0.217535 -0.00694746 +0.023533 0.255831 -0.0174014 +0.023634 0.248096 0.00792727 +0.023735 0.235199 0.00501329 +0.023836 0.247247 -0.0276305 +0.023937 0.236788 -0.0127758 +0.024038 0.225803 -0.0125578 +0.024139 0.253902 -0.0155323 +0.02424 0.249898 0.00260064 +0.024341 0.238164 0.00596982 +0.024442 0.224899 -0.0144063 +0.024543 0.233282 0.0131281 +0.024644 0.231581 -0.00982509 +0.024745 0.217257 0.00485445 +0.024846 0.22273 -0.000901044 +0.024947 0.222606 -0.00768618 +0.025048 0.240595 -0.00780563 +0.025149 0.231091 0.0082456 +0.02525 0.221333 -0.0177241 +0.025351 0.227999 0.00494475 +0.025452 0.217718 -0.00679101 +0.025553 0.240075 0.00623528 +0.025654 0.216038 -0.0242816 +0.025755 0.234553 0.00431091 +0.025856 0.208871 0.00181601 +0.025957 0.220162 0.00177315 +0.026058 0.228842 0.0155199 +0.026159 0.227213 -0.0113676 +0.02626 0.235149 -0.00847037 +0.026361 0.215688 0.00470584 +0.026462 0.202044 0.00417426 +0.026563 0.246987 0.0194977 +0.026664 0.234952 -0.00499697 +0.026765 0.196912 -0.0153214 +0.026866 0.219516 0.0104285 +0.026967 0.215853 0.0134708 +0.027068 0.19632 -0.00883919 +0.027169 0.210052 -0.00303322 +0.02727 0.213493 -0.00946911 +0.027371 0.229028 -0.016466 +0.027472 0.237199 -0.00348254 +0.027573 0.228355 0.0209216 +0.027674 0.218657 0.00467951 +0.027775 0.212542 -0.0211181 +0.027876 0.214446 -0.00204883 +0.027977 0.204417 -0.00412661 +0.028078 0.203206 -0.0121709 +0.028179 0.2222 0.0128041 +0.02828 0.215041 -0.00650422 +0.028381 0.231502 -0.00022651 +0.028482 0.236341 0.0137419 +0.028583 0.209136 0.00364486 +0.028684 0.221096 0.00616609 +0.028785 0.223587 -0.0128292 +0.028886 0.197875 0.0203785 +0.028987 0.213974 0.00111559 +0.029088 0.202056 -0.00769009 +0.029189 0.215438 -0.0193192 +0.02929 0.202453 0.0144611 +0.029391 0.207455 -0.00661802 +0.029492 0.206923 -0.00873714 +0.029593 0.200335 -0.00731714 +0.029694 0.200244 0.00101637 +0.029795 0.20728 0.0152246 +0.029896 0.199526 -0.0150299 +0.029997 0.214252 0.00350691 +0.030098 0.193841 -0.0130713 +0.030199 0.204279 0.0113069 +0.0303 0.186778 -0.0132789 +0.030401 0.213979 -0.0187274 +0.030502 0.210026 -0.0216512 +0.030603 0.196871 -0.0051173 +0.030704 0.19867 0.00462185 +0.030805 0.193907 0.00309806 +0.030906 0.217471 -0.00715373 +0.031007 0.214866 -0.0212353 +0.031108 0.208241 -0.0158173 +0.031209 0.194288 -0.0152723 +0.03131 0.204587 -0.00345752 +0.031411 0.203571 0.00445082 +0.031512 0.200539 0.00999068 +0.031613 0.193307 -0.00739591 +0.031714 0.210369 -0.00950806 +0.031815 0.198748 -0.0134982 +0.031916 0.191431 -0.0108843 +0.032017 0.18304 0.00310828 +0.032118 0.206694 0.0055812 +0.032219 0.180514 -0.00148397 +0.03232 0.196123 0.000402979 +0.032421 0.215157 -0.0109017 +0.032522 0.207671 -0.00450152 +0.032623 0.195199 -0.0090731 +0.032724 0.207703 0.000274601 +0.032825 0.198698 -0.00994651 +0.032926 0.196176 -0.0146354 +0.033027 0.205546 -0.0031357 +0.033128 0.197862 -0.0239496 +0.033229 0.187591 -0.00752473 +0.03333 0.18286 -0.00215567 +0.033431 0.206676 -0.00534164 +0.033532 0.201352 -0.0192581 +0.033633 0.208773 -0.00690568 +0.033734 0.195721 0.0120974 +0.033835 0.197201 0.00739091 +0.033936 0.197085 -0.00920083 +0.034037 0.195407 0.0146082 +0.034138 0.200704 0.0150042 +0.034239 0.211798 -0.0075158 +0.03434 0.19747 -0.0153769 +0.034441 0.205277 -0.012691 +0.034542 0.199827 0.00258911 +0.034643 0.185459 0.00626792 +0.034744 0.194778 0.00796991 +0.034845 0.205396 0.00559622 +0.034946 0.189708 0.00853478 +0.035047 0.195826 0.00563908 +0.035148 0.201552 0.0274959 +0.035249 0.191748 0.0109959 +0.03535 0.190915 0.00341965 +0.035451 0.204785 0.00208583 +0.035552 0.195966 -0.00301624 +0.035653 0.183018 0.0165772 +0.035754 0.184593 0.00307652 +0.035855 0.183593 0.0154094 +0.035956 0.187189 0.00342858 +0.036057 0.208642 -0.00177402 +0.036158 0.186675 -0.0192117 +0.036259 0.19509 -0.00332131 +0.03636 0.192112 0.00505224 +0.036461 0.188691 -0.00898563 +0.036562 0.188871 -0.00913098 +0.036663 0.176744 -0.0044865 +0.036764 0.179679 0.0130317 +0.036865 0.189114 -0.0313992 +0.036966 0.181455 -0.00597635 +0.037067 0.189852 -0.0149668 +0.037168 0.171776 -0.000736546 +0.037269 0.187049 -0.00897845 +0.03737 0.185515 0.0189831 +0.037471 0.193425 -0.0241004 +0.037572 0.175153 0.00860681 +0.037673 0.191976 0.00175378 +0.037774 0.182298 0.018775 +0.037875 0.17266 -0.00243985 +0.037976 0.166245 -0.00222813 +0.038077 0.183511 -0.0222347 +0.038178 0.182813 2.85053e-005 +0.038279 0.184515 -0.00111711 +0.03838 0.197748 -0.0168931 +0.038481 0.174767 0.00342662 +0.038582 0.167418 0.0071731 +0.038683 0.181788 -0.0175426 +0.038784 0.196179 -0.00701208 +0.038885 0.167346 -0.0218735 +0.038986 0.170468 -0.000804215 +0.039087 0.174559 0.0081738 +0.039188 0.191138 0.00539037 +0.039289 0.175647 -0.00835396 +0.03939 0.179775 0.00622223 +0.039491 0.169942 0.00163998 +0.039592 0.177189 0.00218918 +0.039693 0.170602 0.0074205 +0.039794 0.164345 -0.00196158 +0.039895 0.177186 0.00987644 +0.039996 0.176013 -0.00139476 +0.040097 0.162664 -0.00530073 +0.040198 0.17292 -0.00998481 +0.040299 0.189915 0.00491799 +0.0404 0.18148 0.0109838 +0.040501 0.180717 -0.00178316 +0.040602 0.174156 0.0157157 +0.040703 0.180994 -0.00278168 +0.040804 0.146557 0.0151813 +0.040905 0.173672 0.0137023 +0.041006 0.168269 -0.00702318 +0.041107 0.180844 -0.0072412 +0.041208 0.165807 -0.00994542 +0.041309 0.170734 -0.00656363 +0.04141 0.167273 -0.0292248 +0.041511 0.180558 -0.00567999 +0.041612 0.17826 0.00422844 +0.041713 0.175384 0.00403435 +0.041814 0.1616 0.0112194 +0.041915 0.189238 -0.0138255 +0.042016 0.181986 -0.0264157 +0.042117 0.171243 -8.07259e-005 +0.042218 0.181407 -0.00674423 +0.042319 0.167782 0.0027399 +0.04242 0.163849 -0.00185453 +0.042521 0.167493 -0.00116215 +0.042622 0.169138 -0.000957833 +0.042723 0.160123 0.0143586 +0.042824 0.185555 0.00595372 +0.042925 0.174509 -0.00197029 +0.043026 0.156039 -0.0100886 +0.043127 0.183198 0.00543498 +0.043228 0.17133 -0.00312417 +0.043329 0.16254 -0.00349037 +0.04343 0.162141 -0.0135246 +0.043531 0.174577 -0.00331173 +0.043632 0.161311 -0.00183516 +0.043733 0.161764 0.0018567 +0.043834 0.152193 -0.0124564 +0.043935 0.15292 0.00518497 +0.044036 0.165956 0.0217047 +0.044137 0.157147 -0.0098499 +0.044238 0.155339 -0.00226055 +0.044339 0.154486 -0.0077582 +0.04444 0.197796 -0.0156815 +0.044541 0.170339 -0.0138055 +0.044642 0.167626 -0.0086958 +0.044743 0.177454 0.00146265 +0.044844 0.152764 0.0139756 +0.044945 0.170737 0.00155011 +0.045046 0.161777 -0.0166124 +0.045147 0.16153 0.000516123 +0.045248 0.163612 -0.00750275 +0.045349 0.150971 -0.00922672 +0.04545 0.169162 -0.0112194 +0.045551 0.15784 -0.0079351 +0.045652 0.154151 0.00291702 +0.045753 0.171368 0.00451588 +0.045854 0.178363 -0.0155913 +0.045955 0.164988 0.00894516 +0.046056 0.147624 0.0231299 +0.046157 0.145826 -0.028119 +0.046258 0.156707 0.00842185 +0.046359 0.163612 0.00574439 +0.04646 0.168452 0.00400041 +0.046561 0.157606 -0.00680037 +0.046662 0.151724 -0.0129079 +0.046763 0.163568 0.00570958 +0.046864 0.14158 0.00514798 +0.046965 0.172329 0.00604968 +0.047066 0.130699 0.00241134 +0.047167 0.143144 -0.0209518 +0.047268 0.162319 0.00126616 +0.047369 0.139253 -0.00710804 +0.04747 0.137232 -0.015959 +0.047571 0.161121 -0.0185511 +0.047672 0.171568 -0.00930962 +0.047773 0.160228 -0.00494888 +0.047874 0.153729 -0.0111896 +0.047975 0.153197 -0.00831937 +0.048076 0.141326 0.00343924 +0.048177 0.156537 0.00459813 +0.048278 0.136815 -0.0129673 +0.048379 0.150516 -0.00874954 +0.04848 0.164754 -0.0192059 +0.048581 0.143805 -0.0115351 +0.048682 0.133464 -0.00583404 +0.048783 0.152176 0.00800343 +0.048884 0.15727 0.00969215 +0.048985 0.160385 -0.000520911 +0.049086 0.156584 0.0100731 +0.049187 0.164446 0.00738373 +0.049288 0.167218 0.0144641 +0.049389 0.153934 0.000796164 +0.04949 0.144303 -0.00236326 +0.049591 0.151339 -0.0168744 +0.049692 0.160561 -0.0156372 +0.049793 0.154731 -0.00847691 +0.049894 0.147514 0.00177859 +0.049995 0.141722 0.00430503 +0.050096 0.148326 0.00124571 +0.050197 0.15601 -0.00857482 +0.050298 0.132215 0.0153256 +0.050399 0.152435 -0.0182217 +0.0505 0.147775 -0.00275383 +0.050601 0.164326 0.00243288 +0.050702 0.144299 -0.0176705 +0.050803 0.135153 -0.00883745 +0.050904 0.138502 -0.0149809 +0.051005 0.167747 0.0100044 +0.051106 0.148764 -0.0021696 +0.051207 0.143443 0.000507205 +0.051308 0.136347 -0.0159516 +0.051409 0.140185 0.0130185 +0.05151 0.146964 0.00181601 +0.051611 0.14061 -0.0143527 +0.051712 0.150708 0.00622418 +0.051813 0.136115 0.0100475 +0.051914 0.141383 -0.0254666 +0.052015 0.12883 -0.0136379 +0.052116 0.152922 0.0184206 +0.052217 0.15753 0.00859592 +0.052318 0.139831 -0.00651358 +0.052419 0.168577 0.00500132 +0.05252 0.152314 -0.00292355 +0.052621 0.128928 0.00438206 +0.052722 0.146992 -0.0112645 +0.052823 0.134541 -0.0148142 +0.052924 0.137154 0.00591303 +0.053025 0.145817 -0.00482834 +0.053126 0.139559 -0.0121801 +0.053227 0.153317 -0.0081677 +0.053328 0.154868 -0.0160906 +0.053429 0.140488 0.00383286 +0.05353 0.116043 0.00193242 +0.053631 0.13116 -0.0017107 +0.053732 0.145968 0.00430112 +0.053833 0.141974 0.00747272 +0.053934 0.161179 -0.0133485 +0.054035 0.146449 0.0111415 +0.054136 0.16418 0.00128574 +0.054237 0.134593 0.00992388 +0.054338 0.163597 0.00102072 +0.054439 0.140626 -0.00980442 +0.05454 0.141625 0.00682408 +0.054641 0.150948 0.0128831 +0.054742 0.131814 -0.00436052 +0.054843 0.135915 -0.000125116 +0.054944 0.155497 -0.00966907 +0.055045 0.150832 -0.00204144 +0.055146 0.141188 -0.00543455 +0.055247 0.154366 -0.00695703 +0.055348 0.14707 -0.00654035 +0.055449 0.163944 0.0219188 +0.05555 0.148737 0.0226218 +0.055651 0.157626 0.0011108 +0.055752 0.14769 0.01284 +0.055853 0.147642 0.00788353 +0.055954 0.146091 -0.00170526 +0.056055 0.141028 -0.0183009 +0.056156 0.127754 -0.0159072 +0.056257 0.144797 0.00736915 +0.056358 0.139265 -0.00471171 +0.056459 0.141311 -0.0115515 +0.05656 0.14949 0.00910922 +0.056661 0.13056 0.0177437 +0.056762 0.137043 -0.0232992 +0.056863 0.137676 -0.00260587 +0.056964 0.113423 -0.0034412 +0.057065 0.11739 -0.00250817 +0.057166 0.112941 -0.00873605 +0.057267 0.124248 0.00816901 +0.057368 0.154187 -0.00102203 +0.057469 0.120469 0.00398909 +0.05757 0.139635 -0.0285718 +0.057671 0.129855 -0.0206102 +0.057772 0.131638 -0.00398866 +0.057873 0.13709 -0.00725883 +0.057974 0.15172 0.0117634 +0.058075 0.129524 0.00357175 +0.058176 0.137773 0.0106709 +0.058277 0.134571 0.000943257 +0.058378 0.12928 0.0221053 +0.058479 0.128908 0.00993389 +0.05858 0.129294 -0.00131599 +0.058681 0.140839 0.0276575 +0.058782 0.133825 -0.00574701 +0.058883 0.129785 0.00270988 +0.058984 0.132158 0.000280692 +0.059085 0.131515 -0.00516952 +0.059186 0.119415 0.0189789 +0.059287 0.110932 -0.0103007 +0.059388 0.113192 -0.0187285 +0.059489 0.115849 0.00491864 +0.05959 0.122677 0.0230278 +0.059691 0.113971 -0.00127051 +0.059792 0.15877 0.0123008 +0.059893 0.144555 0.00837898 +0.059994 0.132251 0.00209975 +0.060095 0.136512 -0.017988 +0.060196 0.124483 -0.0221943 +0.060297 0.129287 -0.0159305 +0.060398 0.145168 -0.0161287 +0.060499 0.131671 0.00227992 +0.0606 0.125142 -0.0058632 +0.060701 0.108922 -0.00991626 +0.060802 0.138029 0.00466558 +0.060903 0.142236 -0.00150312 +0.061004 0.136325 0.00429437 +0.061105 0.130593 0.00360308 +0.061206 0.132834 0.00460531 +0.061307 0.126526 0.0027893 +0.061408 0.124435 0.0112333 +0.061509 0.108493 0.00805434 +0.06161 0.131933 0.00327539 +0.061711 0.128445 -0.0214318 +0.061812 0.128641 0.000340964 +0.061913 0.14979 0.0100938 +0.062014 0.109544 -0.00723163 +0.062115 0.12999 0.0125944 +0.062216 0.114979 -0.0117325 +0.062317 0.112523 0.011162 +0.062418 0.143156 -0.026798 +0.062519 0.135748 0.018599 +0.06262 0.133373 -0.0226159 +0.062721 0.115736 -0.014522 +0.062822 0.130346 -0.00451849 +0.062923 0.13063 -0.010856 +0.063024 0.140544 0.0034388 +0.063125 0.129109 -0.000206495 +0.063226 0.125953 -0.00599049 +0.063327 0.131662 -0.0159061 +0.063428 0.112158 0.0106163 +0.063529 0.128258 -0.00264003 +0.06363 0.104006 -0.000912792 +0.063731 0.114829 -0.00144502 +0.063832 0.139575 0.00398909 +0.063933 0.13158 0.00340725 +0.064034 0.125619 -0.00747054 +0.064135 0.115251 0.00203796 +0.064236 0.137807 -0.00886834 +0.064337 0.113432 0.00166783 +0.064438 0.105316 0.022505 +0.064539 0.11806 0.00536013 +0.06464 0.109471 0.00385419 +0.064741 0.0944374 0.0113909 +0.064842 0.119104 0.0126649 +0.064943 0.117089 -0.00204514 +0.065044 0.113274 0.0197577 +0.065145 0.116419 -0.00199139 +0.065246 0.122176 0.00261936 +0.065347 0.116188 0.00832002 +0.065448 0.116684 -0.013807 +0.065549 0.124845 -0.0081231 +0.06565 0.110211 -0.000248054 +0.065751 0.127429 -0.00439294 +0.065852 0.126951 -0.00558382 +0.065953 0.113572 0.00626161 +0.066054 0.1208 0.00427 +0.066155 0.0951796 0.00457332 +0.066256 0.107836 0.00568108 +0.066357 0.106186 -0.00369883 +0.066458 0.111981 0.00824103 +0.066559 0.122802 1.0662e-005 +0.06666 0.104456 -0.00394536 +0.066761 0.114163 -0.00834439 +0.066862 0.117565 0.00291876 +0.066963 0.114223 -0.00968954 +0.067064 0.107548 0.00723272 +0.067165 0.119874 0.00697857 +0.067266 0.1252 -0.00639804 +0.067367 0.114324 0.00429785 +0.067468 0.112588 0.00598374 +0.067569 0.124597 -0.00781564 +0.06767 0.106994 0.00386354 +0.067771 0.116848 0.0218901 +0.067872 0.132868 0.000928242 +0.067973 0.0979827 -0.0166803 +0.068074 0.0972879 -0.0114977 +0.068175 0.112513 -0.0110001 +0.068276 0.1174 -0.00705212 +0.068377 0.0912915 0.00821014 +0.068478 0.101397 -0.00658952 +0.068579 0.133184 0.0230572 +0.06868 0.128753 0.0128944 +0.068781 0.111235 -0.000719354 +0.068882 0.112343 -0.00820339 +0.068983 0.0933486 -0.00591325 +0.069084 0.118757 -0.0151478 +0.069185 0.0984768 0.00365813 +0.069286 0.108064 -0.00869558 +0.069387 0.103464 -0.0100196 +0.069488 0.0926723 -0.00161474 +0.069589 0.106513 0.00386311 +0.06969 0.11031 0.00333784 +0.069791 0.12783 -0.015541 +0.069892 0.102325 0.00428741 +0.069993 0.100975 0.0170522 +0.070094 0.110401 0.0197189 +0.070195 0.112967 -0.0046819 +0.070296 0.0923129 -0.0105118 +0.070397 0.122716 -0.00420712 +0.070498 0.117018 0.0085326 +0.070599 0.122761 0.00141434 +0.0707 0.128949 -0.00660127 diff --git a/example_data/bgr/std/sample_T2.par b/example_data/bgr/std/sample_T2.par new file mode 100644 index 0000000..c482f3c --- /dev/null +++ b/example_data/bgr/std/sample_T2.par @@ -0,0 +1,52 @@ +90Amplitude = -7 +180Amplitude = 0 +accumulate = "yes" +acqTime = 0.0245 +alpha = 1e10 +autoPhase = "no" +b1Freq = 13.05 +bandwidth = 2000 +bandwidthFile = 0.5 +bestResol = 50 +dataDirectory = "C:\NMRMouse_data\Fe_soils_MA_Robin\FBS8510" +depthList = "" +dwellTime = 0.5 +echoShift = 1.0 +echoTime = 101 +echoTime0 = 100 +enableLift = "yes" +excecutedBackdoor = "yes" +experiment = "CPMGFast" +expName = "cpmgfastauto" +expNr = 1 +fitMode = "manual" +fitType = "exp" +flatFilter = "no" +gradient = 273 +incExpNr = "yes" +last = 0 +maxDepth = 20200 +normalize = "no" +nrEchoes = 700 +nrPnts = 49 +nrPntsRemFit = 1 +nrScans = 100 +phaseMethod = "maxreal" +position = [699,169] +Probe = "1H-L" +probeHead = "PM25-05mm.par" +pulseLength = 24 +refSignal = 1 +refSignalCheck = "no" +repTime = 14000 +resolution = 150 +rxGain = 31 +rxPhase = 145 +saveData = "false" +Sensor = "PM25" +showFreqDomain = "no" +Spacer = "PM25-05mm.par" +usePhaseCycle = "yes" +windowSize = "small" +x_maximum = 10000 +x_minimum = 0.01 diff --git a/externals/GUI_Layout_Toolbox/GUI Layout Toolbox 2.3.6.mltbx b/externals/GUI_Layout_Toolbox/GUI Layout Toolbox 2.3.6.mltbx new file mode 100644 index 0000000..b77e000 Binary files /dev/null and b/externals/GUI_Layout_Toolbox/GUI Layout Toolbox 2.3.6.mltbx differ diff --git a/externals/dynamicDateTicks/dynamicDateTicks.m b/externals/dynamicDateTicks/dynamicDateTicks.m new file mode 100644 index 0000000..f4aa654 --- /dev/null +++ b/externals/dynamicDateTicks/dynamicDateTicks.m @@ -0,0 +1,163 @@ +function dynamicDateTicks(axH, link, mdformat) +% DYNAMICDATETICKS is a wrapper function around DATETICK which creates +% dynamic date tick labels for plots with dates on the X-axis. The date +% ticks intelligently include year/month/day information on specific ticks +% as appropriate. The ticks are dynamic with respect to zooming and +% panning. They update as the timescale changes (from years to seconds). +% Data tips on the plot also show intelligently as dates. +% +% The function may be used with linked axes as well as with multiple +% independent date and non-date axes within a plot. +% +% USAGE: +% dynamicDateTicks() +% makes the current axes a date axes with dynamic properties +% +% dynamicDateTicks(axH) +% makes all the axes handles in vector axH dynamic date axes +% +% dynamicDateTicks(axH, 'link') +% additionally specifies that all the axes in axH are linked. This +% option should be used in conjunction with LINKAXES. +% +% dynamicDateTicks(axH, 'link', 'dd/mm') +% additionally specifies the format of all ticks that include both +% date and month information. The default value is 'mm/dd' but any +% valid date string format can be specified. The first two options +% may be empty [] if only specifying format. +% +% EXAMPLES: +% load integersignal +% dates = datenum('July 1, 2008'):1/24:datenum('May 11, 2009 1:00 PM'); +% subplot(2,1,1), plot(dates, Signal1); +% dynamicDateTicks +% subplot(2,1,2), plot(dates, Signal4); +% dynamicDateTicks([], [], 'dd/mm'); +% +% figure +% ax1 = subplot(2,1,1); plot(dates, Signal1); +% ax2 = subplot(2,1,2); plot(dates, Signal4); +% linkaxes([ax1 ax2], 'x'); +% dynamicDateTicks([ax1 ax2], 'linked') + +if nargin < 1 || isempty(axH) % If no axes is specified, use the current axes + axH = gca; +end + +if nargin < 3 % Default mm/dd format + mdformat = 'mm/dd'; +end + +% Apply datetick to all axes in axH, and store any linking information +axesInfo.Type = 'dateaxes'; % Information stored in axes userdata indicating that these are date axes +for i = 1:length(axH) + datetick(axH(i), 'x'); + if nargin > 1 && ~isempty(link) % If axes are linked, + axesInfo.Linked = axH; % Need to modify all axes at once + else + axesInfo.Linked = axH(i); % Need to modify only 1 axes + end + axesInfo.mdformat = mdformat; % Remember mm/dd format for each axes + set(axH(i), 'UserData', axesInfo); % Store the fact that this is a date axes and its link & mm/dd information in userdata + updateDateLabel('', struct('Axes', axH(i)), 0); % Call once to ensure proper formatting +end + +% Set the zoom, pan and datacursor callbacks +figH = get(axH, 'Parent'); +if iscell(figH) + figH = unique([figH{:}]); +end +if length(figH) > 1 + error('Axes should be part of the same plot (have the same figure parent)'); +end + +z = zoom(figH); +p = pan(figH); +d = datacursormode(figH); + +set(z,'ActionPostCallback',@updateDateLabel); +set(p,'ActionPostCallback',@updateDateLabel); +set(d,'UpdateFcn',@dateTip); + +% ------------ End of dynamicDateTicks----------------------- + + + function output_txt = dateTip(gar, ev) + pos = ev.Position; + axHandle = get(ev.Target, 'Parent'); % Which axes is the data cursor on + axesInfo = get(axHandle, 'UserData'); % Get the axes info for that axes + try % If it is a date axes, create a date-friendly data tip + if strcmp(axesInfo.Type, 'dateaxes') + output_txt = sprintf('X: %s\nY: %0.4g', datestr(pos(1)), pos(2)); + else + output_txt = sprintf('X: %0.4g\nY: %0.4g', pos(1), pos(2)); + end + catch % It's not a date axes, create a generic data tip + output_txt = sprintf('X: %0.4g\nY: %0.4g', pos(1), pos(2)); + end + end + + function updateDateLabel(obj, ev, varargin) + ax1 = ev.Axes; % On which axes has the zoom/pan occurred + axesInfo = get(ev.Axes, 'UserData'); + % Check if this axes is a date axes. If not, do nothing more (return) + try + if ~strcmp(axesInfo.Type, 'dateaxes') + return; + end + catch + return; + end + + % Re-apply date ticks, but keep limits (unless called the first time) + if nargin < 3 + datetick(ax1, 'x', 'keeplimits'); + end + + + % Get the current axes ticks & labels + ticks = get(ax1, 'XTick'); + labels = get(ax1, 'XTickLabel'); + + % Sometimes the first tick can be outside axes limits. If so, remove it & its label + if all(ticks(1) < get(ax1,'xlim')) + ticks(1) = []; + labels(1,:) = []; + end + + [yr, mo, da] = datevec(ticks); % Extract year & day information (necessary for ticks on the boundary) + newlabels = cell(size(labels,1), 1); % Initialize cell array of new tick label information + + if regexpi(labels(1,:), '[a-z]{3}', 'once') % Tick format is mmm + + % Add year information to first tick & ticks where the year changes + ind = [1 find(diff(yr))+1]; + newlabels(ind) = cellstr(datestr(ticks(ind), '/yy')); + labels = strcat(labels, newlabels); + + elseif regexpi(labels(1,:), '\d\d/\d\d', 'once') % Tick format is mm/dd + + % Change mm/dd to dd/mm if necessary + labels = datestr(ticks, axesInfo.mdformat); + % Add year information to first tick & ticks where the year changes + ind = [1 find(diff(yr))+1]; + newlabels(ind) = cellstr(datestr(ticks(ind), '/yy')); + labels = strcat(labels, newlabels); + + elseif any(labels(1,:) == ':') % Tick format is HH:MM + + % Add month/day/year information to the first tick and month/day to other ticks where the day changes + ind = find(diff(da))+1; + newlabels{1} = datestr(ticks(1), [axesInfo.mdformat '/yy-']); % Add month/day/year to first tick + newlabels(ind) = cellstr(datestr(ticks(ind), [axesInfo.mdformat '-'])); % Add month/day to ticks where day changes + labels = strcat(newlabels, labels); + + end + + set(axesInfo.Linked, 'XTick', ticks, 'XTickLabel', labels); + end +end +%#ok<*CTCH> +%#ok<*ASGLU> +%#ok<*INUSL> +%#ok<*INUSD> \ No newline at end of file diff --git a/externals/dynamicDateTicks/license.txt b/externals/dynamicDateTicks/license.txt new file mode 100644 index 0000000..cae4cd5 --- /dev/null +++ b/externals/dynamicDateTicks/license.txt @@ -0,0 +1,27 @@ +Copyright (c) 2016, The MathWorks, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the distribution. + * In all cases, the software is, and all modifications and derivatives + of the software shall be, licensed to you solely for use in conjunction + with MathWorks products and service offerings. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. diff --git a/externals/dynamicDateTicks/setDateAxes.m b/externals/dynamicDateTicks/setDateAxes.m new file mode 100644 index 0000000..aea5e4b --- /dev/null +++ b/externals/dynamicDateTicks/setDateAxes.m @@ -0,0 +1,98 @@ +function varargout = setDateAxes(varargin) +% setDateAxes is a convenience function that allows you to programmatically +% set properties of axes that contain dates and automatically update the +% date ticks. This function should be used in lieu of SET for date axes. +% +% This function is intended to be used after an initial call to +% DYNAMICDATETICKS. For more information on this function please see the +% help for dynamicDateTicks +% +% The calling syntax for this function is the same as that of SET. For more +% information see the documentation for SET +% +% Example: +% load integersignal +% dates = datenum('July 1, 2008'):1/24:datenum('May 11, 2009 1:00 PM'); +% subplot(2,1,1), plot(dates, Signal1); +% dynamicDateTicks +% subplot(2,1,2), plot(dates, Signal1); +% dynamicDateTicks +% setDateAxes(gca, 'XLim', [datenum('July 1, 2008') datenum('August 1, 2008')]); + + +% Call the SET function with all inputs and outputs requested. +[varargout{1:nargout}] = set(varargin{:}); + +% At this point we could return and nothing different from calling SET +% would have occurred. + +% Since this is a date axes convenience function, we should update the +% ticks if appropriate. The updateDateLabels function will automatically +% check if the axes are date axes before making changes +if nargin == 0 + return +end +for i = 1:length(varargin{1}) + updateDateLabel([], struct('Axes',varargin{1}(i))); +end + + +% This subfunction is identical to its namesake in dynamicDateTicks +function updateDateLabel(obj, ev, varargin) %#ok +ax1 = ev.Axes; % On which axes has the zoom/pan occurred +axesInfo = get(ev.Axes, 'UserData'); +% Check if this axes is a date axes. If not, do nothing more (return) +try + if ~strcmp(axesInfo.Type, 'dateaxes') + return; + end +catch %#ok + return; +end + +% Re-apply date ticks, but keep limits (unless called the first time) +if nargin < 3 + datetick(ax1, 'x', 'keeplimits'); +end + + +% Get the current axes ticks & labels +ticks = get(ax1, 'XTick'); +labels = get(ax1, 'XTickLabel'); + +% Sometimes the first tick can be outside axes limits. If so, remove it & its label +if all(ticks(1) < get(ax1,'xlim')) + ticks(1) = []; + labels(1,:) = []; +end + +[yr, mo, da] = datevec(ticks); %#ok % Extract year & day information (necessary for ticks on the boundary) +newlabels = cell(size(labels,1), 1); % Initialize cell array of new tick label information + +if regexpi(labels(1,:), '[a-z]{3}', 'once') % Tick format is mmm + + % Add year information to first tick & ticks where the year changes + ind = [1 find(diff(yr))+1]; + newlabels(ind) = cellstr(datestr(ticks(ind), '/yy')); + labels = strcat(labels, newlabels); + +elseif regexpi(labels(1,:), '\d\d/\d\d', 'once') % Tick format is mm/dd + + % Change mm/dd to dd/mm if necessary + labels = datestr(ticks, axesInfo.mdformat); + % Add year information to first tick & ticks where the year changes + ind = [1 find(diff(yr))+1]; + newlabels(ind) = cellstr(datestr(ticks(ind), '/yy')); + labels = strcat(labels, newlabels); + +elseif any(labels(1,:) == ':') % Tick format is HH:MM + + % Add month/day/year information to the first tick and month/day to other ticks where the day changes + ind = find(diff(da))+1; + newlabels{1} = datestr(ticks(1), [axesInfo.mdformat '/yy-']); % Add month/day/year to first tick + newlabels(ind) = cellstr(datestr(ticks(ind), [axesInfo.mdformat '-'])); % Add month/day to ticks where day changes + labels = strcat(newlabels, labels); + +end + +set(axesInfo.Linked, 'XTick', ticks, 'XTickLabel', labels); diff --git a/externals/findjobj/findjobj.mltbx b/externals/findjobj/findjobj.mltbx new file mode 100644 index 0000000..66f229d Binary files /dev/null and b/externals/findjobj/findjobj.mltbx differ diff --git a/functions/import/LoadNMRData_driver.m b/functions/import/LoadNMRData_driver.m index 6bfb3f7..72e8e1a 100644 --- a/functions/import/LoadNMRData_driver.m +++ b/functions/import/LoadNMRData_driver.m @@ -51,24 +51,24 @@ out = LoadNMRData_bamtom(in); case 'bgr' out = LoadNMRData_bgr(in); - case 'MouseCPMG' - out = LoadNMRData_mousecpmg(in); case 'bgrmat' out = LoadNMRData_bgrmat(in); - case {'MouseLiftSingle','MouseLiftAll'} - out = LoadNMRData_mouselift(in); - case 'helios' - out = LoadNMRData_helios(in); case 'corelab' out = LoadNMRData_corelab(in); case 'dart' out = LoadNMRData_dart(in); case 'field' out = LoadNMRData_field(in); + case {'heliosCPMG','heliosSeries'} + out = LoadNMRData_helios(in); case 'liag' out = LoadNMRData_liag(in); case 'mouse' out = LoadNMRData_mouse(in); + case 'MouseCPMG' + out = LoadNMRData_mousecpmg(in); + case 'MouseLift' + out = LoadNMRData_mouselift(in); case 'rwth' out = LoadNMRData_rwth(in); case 'pm5' @@ -79,13 +79,16 @@ % if an imported T2 signal has no imaginary part, the noise is estimated % from an exponential fit -if ~strcmp(in.fileformat,'helios') +if ~strcmp(in.fileformat,'heliosCPMG') && ~strcmp(in.fileformat,'heliosSeries')... + && (isfield(in,'T1T2') && ~strcmp(in.T1T2,'T1')) for i = 1:numel(out.nmrData) if isreal(out.nmrData{i}.signal) disp('NUCLUESinv import: Estimating noise from exponential fit ...'); param.T1IRfac = out.nmrData{i}.T1IRfac; param.noise = 0; param.optim = 'off'; + param.Tfixed_bool = [0 0 0 0 0]; + param.Tfixed_val = [0 0 0 0 0]; invstd = fitDataFree(out.nmrData{i}.time,out.nmrData{i}.signal,... out.nmrData{i}.flag,param,5); out.nmrData{i}.noise = invstd.rms; diff --git a/functions/import/LoadNMRData_helios.m b/functions/import/LoadNMRData_helios.m index 96bb02c..f6573a7 100644 --- a/functions/import/LoadNMRData_helios.m +++ b/functions/import/LoadNMRData_helios.m @@ -1,6 +1,6 @@ function out = LoadNMRData_helios(in) -%LoadNMRData_helios loads BGR NMR data from a typical folder structure -%produced by the Helios NMR Scanner +%LoadNMRData_helios loads BGR NMR data from a typical folder structure +%produced by the Helios NMR Scanner % % Syntax: % out = LoadNMRData_helios(in) @@ -66,27 +66,50 @@ %% load NMR data file function [data,pardata] = LoadDataFile(datapath,fname,flag) -A = importdata(fullfile(datapath,fname),'\t'); +% importdata is rather slow for row data +% A = importdata(fullfile(datapath,fname),'\t'); + +% first read the file to get the number of echos +fid = fopen(fullfile(datapath,fname)); +A0 = textscan(fid,'%f','Delimiter','\n'); +fclose(fid); +% now read all three lines +fid = fopen(fullfile(datapath,fname)); +A1 = textscan(fid,'%f',A0{1}(3)); +A2 = textscan(fid,'%f',A0{1}(3)); +A3 = textscan(fid,'%f',A0{1}(3)); +fclose(fid); +% and stitch them together +A = [A1{1}';A2{1}';A3{1}']; + t_echo = A(1,2); n_echo = A(1,3); +freq = A(1,4); +Nscans = A(1,5); time = t_echo:t_echo:t_echo*n_echo; time = time(:); -re = -A(2,1:length(time)); -im = -A(3,1:length(time)); +re = A(2,1:length(time)); +im = A(3,1:length(time)); re = re(:); im = im(:); data.flag = flag; -data.time = time; -data.signal = complex(re,im); -[data.signal,data.phase] = rotateT2phase(data.signal); +data.raw.time = time; +data.raw.signal = complex(re,im); +[data.signal,data.phase] = rotateT2phase(data.raw.signal); -data.raw.time = data.time; -data.raw.signal = data.signal; +data.time = data.raw.time; -pardata.t_echo = t_echo; -pardata.n_echo = n_echo; +pardata.t_echo = t_echo; +pardata.n_echo = n_echo; +pardata.freq = freq; +pardata.Nscans = Nscans; +d{1}{1,1} = ['t_echo = ',num2str(t_echo)]; +d{1}{2,1} = ['n_echo = ',num2str(n_echo)]; +d{1}{3,1} = ['freq = ',num2str(freq)]; +d{1}{4,1} = ['Nscans = ',num2str(Nscans)]; +pardata.all = d; end %------------- END OF CODE -------------- diff --git a/functions/import/LoadNMRData_liag.m b/functions/import/LoadNMRData_liag.m index bfb981f..94a9b01 100644 --- a/functions/import/LoadNMRData_liag.m +++ b/functions/import/LoadNMRData_liag.m @@ -119,7 +119,7 @@ for i = 1:size(d{1},1) str = char(d{1}(i)); str = fixParameterString(str); - eval(['data.',str,';']); + eval(['data.',str,';']); %#ok end data.all = d; diff --git a/functions/import/LoadNMRData_mousecpmg.m b/functions/import/LoadNMRData_mousecpmg.m new file mode 100644 index 0000000..7b4c86e --- /dev/null +++ b/functions/import/LoadNMRData_mousecpmg.m @@ -0,0 +1,145 @@ +function out = LoadNMRData_mousecpmg(in) +%LoadNMRData_bgr2 loads BGR NMR data from an original folder structure as +%generated by the NMR MOUSE (the routines are also similar to +%"LoadNMRData_mouse" the only difference is the in.T1T2 input flag) +% +% Syntax: +% out = LoadNMRData_mousecpmg(in) +% +% Inputs: +% in - input structure +% in.path - data path +% in.T1T2 - T1 / T2 flag +% in.fileformat - 'mouse' +% +% Outputs: +% out - output structure +% out.parData - parameter file data +% out.nmrData - NMR data +% +% Example: +% out = LoadNMRData_mousecpmg(in) +% +% Other m-files required: +% fixParameterString +% +% Subfunctions: +% LoadDataFile +% LoadParameterFile +% +% MAT-files required: +% none +% +% See also: NUCLEUSinv +% Author: Stephan Costabel +% email: stephan.costabel[at]bgr.de +% License: MIT License (at end) + +%------------- BEGIN CODE -------------- + +%% start processing the files +% load Parameter file +[parData] = LoadParameterFile(in.path,'acqu.par'); + +% find all data files +files = dir(fullfile(in.path,'*.csv')); + +% remove not needed csv-files +files = files(~ismember({files.name},'data2.csv')); + +nmrData = cell(1,size(files,1)); +for i = 1:size(files,1) + % read the data file + data = Load_csvDataFile(in.path,files(i).name,in.T1T2); + + % get file statistics + nmrData{i}.datfile = files(i).name; + nmrData{i}.date = files(i).date; + nmrData{i}.datenum = files(i).datenum; + nmrData{i}.bytes = files(i).bytes; + + % save the NMR data + nmrData{i}.flag = data.flag; + nmrData{i}.T1IRfac = 1; + nmrData{i}.time = data.time; + nmrData{i}.signal = data.signal; + nmrData{i}.raw = data.raw; + if strcmp(in.T1T2,'T2') + %nmrData{i}.phase = data.phase; + nmrData{i}.phase = 0; + end + clear data +end + +% save data to output struct +out.parData = parData; +out.nmrData = nmrData; + +end + +%% load NMR data file +function [data] = Load_csvDataFile(datapath,fname,flag) + +d = csvread(fullfile(datapath,fname)); + +if size(d,2) == 2 + data.flag = flag; + data.time = d(:,1)/1000000; + data.signal = d(:,2); + +else + data.flag = '0'; + data.time = 0; + data.signal = 0; + data.phase = 0; +end + +data.raw.time = data.time; +data.raw.signal = data.signal; + +end + +%% load parameter file +function [data] = LoadParameterFile(datapath,fname) + +fid = fopen(fullfile(datapath,fname)); +d = textscan(fid,'%s','Delimiter','\n'); +fclose(fid); + +for i = 1:size(d{1},1) + str = char(d{1}(i)); + str = fixParameterString(str); + if strcmp(str(end),'d') + str = str(1:end-1); + %frag nich... + end + eval(['data.',str,';']); +end +data.all = d; + +end + +%------------- END OF CODE -------------- + +%% License: +% MIT License +% +% Copyright (c) 2018 Thomas Hiller +% +% Permission is hereby granted, free of charge, to any person obtaining a copy +% of this software and associated documentation files (the "Software"), to deal +% in the Software without restriction, including without limitation the rights +% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +% copies of the Software, and to permit persons to whom the Software is +% furnished to do so, subject to the following conditions: +% +% The above copyright notice and this permission notice shall be included in all +% copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +% SOFTWARE. diff --git a/functions/import/LoadNMRData_mouselift.m b/functions/import/LoadNMRData_mouselift.m index b7e12fd..9dec426 100644 --- a/functions/import/LoadNMRData_mouselift.m +++ b/functions/import/LoadNMRData_mouselift.m @@ -119,7 +119,7 @@ for i = 1:size(d{1},1) str = char(d{1}(i)); str = fixParameterString(str); - eval(['data.',str,';']); + eval(['data.',str,';']); %#ok end data.all = d; diff --git a/functions/import/fixParameterString.m b/functions/import/fixParameterString.m index 05b4a07..fe2e147 100644 --- a/functions/import/fixParameterString.m +++ b/functions/import/fixParameterString.m @@ -45,6 +45,11 @@ %% check for " and make it '' str = strrep(str,'"',''''); +%% check for "d" at the end of a number and delete it +if strncmpi(str,'b1Freq',6) + str = strrep(str,'d',''); +end + return %------------- END OF CODE -------------- diff --git a/functions/interface/FixedTimeView.m b/functions/interface/FixedTimeView.m new file mode 100644 index 0000000..e78db41 --- /dev/null +++ b/functions/interface/FixedTimeView.m @@ -0,0 +1,219 @@ +function FixedTimeView(src,~) +%FixedTimeView is an extra subGUI to fix certain relaxation times during +%the free inversion with #1-5 free relaxation times; thus only the +%amplitude gets fitted +% +% Syntax: +% FixedTimeView +% +% Inputs: +% src - handle of the calling object +% +% Outputs: +% none +% +% Example: +% FixedTimeView(src,~) +% +% Other m-files required: +% none +% +% Subfunctions: +% ft_closeme +% ft_updateChecked +% ft_updateEdit +% +% MAT-files required: +% none +% +% See also: NUCLEUSinv +% Author: see AUTHORS.md +% email: see AUTHORS.md +% License: MIT License (at end) + +%------------- BEGIN CODE -------------- + +%% get GUI handle and data +figh_nucleus = ancestor(src,'figure','toplevel'); +nucleus.data = getappdata(figh_nucleus,'data'); +nucleus.gui = getappdata(figh_nucleus,'gui'); +colors = nucleus.gui.myui.colors; + +%% proceed if the correct inversion type is chosen +if strcmp(nucleus.data.invstd.invtype,'mono') || strcmp(nucleus.data.invstd.invtype,'free') + + % check if the figure is already open + fig_fixedtime = findobj('Tag','FIXEDTIMEVIEW'); + % if not, create it + if isempty(fig_fixedtime) + % draw the figure on top of NUCLEUSinv + fig_fixedtime = figure('Name','NUCLEUSinv - Fix Relaxation Time',... + 'NumberTitle','off','Resize','on','ToolBar','none',... + 'CloseRequestFcn',@ft_closeme,... + 'MenuBar','none','Tag','FIXEDTIMEVIEW'); + pos0 = get(figh_nucleus,'Position'); + cent(1) = (pos0(1)+pos0(3)/2); + cent(2) = (pos0(2)+pos0(4)/2); + posf = [cent(1)-pos0(3)/6 pos0(2)+pos0(4)-pos0(4)/5 pos0(3)/3 pos0(4)/5]; +% posf = [cent(1)-pos0(3)/6 pos0(2)+pos0(4)-140 350 145]; + set(fig_fixedtime,'Position',posf); + + % create the main layout + gui.main = uix.VBox('Parent',fig_fixedtime,'BackGroundColor',colors.panelBG,'Spacing',5,'Padding',5); + gui.row1 = uicontainer('Parent',gui.main,'BackGroundColor',colors.panelBG); % check boxes + gui.row2 = uicontainer('Parent',gui.main,'BackGroundColor',colors.panelBG); % edit fields + gui.row3 = uicontainer('Parent',gui.main,'BackGroundColor',colors.panelBG); % text fields + set(gui.main,'Heights',[-1 -1 -1]); + + % horizontal boxes + gui.hbox1 = uix.HBox('Parent',gui.row1,'BackGroundColor',colors.panelBG,'Spacing',5,'Padding',5); % control elements + gui.hbox2 = uix.HBox('Parent',gui.row2,'BackGroundColor',colors.panelBG,'Spacing',5,'Padding',5); % control elements + gui.hbox3 = uix.HBox('Parent',gui.row3,'BackGroundColor',colors.panelBG,'Spacing',5,'Padding',5); % text + + % create the ui elements inside the horizontal boxes + for i = 1:5 + % check boxes + gui.check(i).fixed = uicontrol('Parent',gui.hbox1,... + 'Style','checkbox','FontSize',nucleus.gui.myui.fontsize,'Tag',num2str(i),... + 'Value',nucleus.data.invstd.Tfixed_bool(i),'String','fix it',... + 'BackGroundColor',colors.panelBG,'ForeGroundColor',colors.panelFG,... + 'Callback',@ft_updateChecked); + jh = findjobj(gui.check(i).fixed); + jh.setHorizontalAlignment(javax.swing.JLabel.CENTER); + + % edit fields + gui.edit(i).fixed = uicontrol('Parent',gui.hbox2,... + 'Style','edit','FontSize',nucleus.gui.myui.fontsize,'Tag',num2str(i),... + 'String',sprintf('%6.4f',nucleus.data.invstd.Tfixed_val(i)),... + 'BackGroundColor',colors.editBG,'ForeGroundColor',colors.panelFG,... + 'Callback',@ft_updateEdit); + + % text fields + gui.text(i).fixed = uicontrol('Parent',gui.hbox3,... + 'Style','text','FontSize',nucleus.gui.myui.fontsize,'Tag',['text',num2str(i)],... + 'HorizontalAlignment','center',... + 'BackGroundColor',colors.panelBG,'ForeGroundColor',colors.panelFG,... + 'String',['#',num2str(i)]); + end + + % store main GUI settings + gui.myui = nucleus.gui.myui; + gui.figh_nucleus = figh_nucleus; + + % save to GUI + setappdata(fig_fixedtime,'gui',gui); + end + + % if the figure is already open load the GUI data + gui = getappdata(fig_fixedtime,'gui'); + + % update all edit fields and check boxes + for i = 1:5 + set(gui.edit(i).fixed,'String',sprintf('%6.4f',nucleus.data.invstd.Tfixed_val(i))); + set(gui.check(i).fixed,'Value',nucleus.data.invstd.Tfixed_bool(i)) + + % enable only the needed ones + if i <=nucleus.data.invstd.freeDT + set(gui.check(i).fixed,'Enable','on'); + set(gui.edit(i).fixed,'Enable','on'); + else + set(gui.check(i).fixed,'Enable','off'); + set(gui.edit(i).fixed,'Enable','off'); + end + end +else + % check if the figure is already open + fig_fixedtime = findobj('Tag','FIXEDTIMEVIEW'); + if ~isempty(fig_fixedtime) + ft_closeme(fig_fixedtime) + else + helpdlg({'function: FixedTimeView',... + 'Cannot continue because wrong inversion method!'},... + 'Wrong inversion method.'); + end +end + +end + +% subfunction to update the check boxes +function ft_updateChecked(src,~) +fig_fixedtime = ancestor(src,'figure','toplevel'); +gui = getappdata(fig_fixedtime,'gui'); +data = getappdata(gui.figh_nucleus,'data'); + +id = str2double(get(src,'Tag')); +value = get(src,'Value'); + +data.invstd.Tfixed_bool(id) = value; + +% update local GUI +setappdata(fig_fixedtime,'gui',gui); + +% update NUCLEUSinv +setappdata(gui.figh_nucleus,'data',data); +end + +% subfunction to update the edit fields +function ft_updateEdit(src,~) +fig_fixedtime = ancestor(src,'figure','toplevel'); +gui = getappdata(fig_fixedtime,'gui'); +data = getappdata(gui.figh_nucleus,'data'); + +id = str2double(get(src,'Tag')); +value = str2double(get(src,'String')); + +data.invstd.Tfixed_val(id) = value; + +% update local GUI +setappdata(fig_fixedtime,'gui',gui); + +% update NUCLEUSinv +setappdata(gui.figh_nucleus,'data',data); +end + +% subfunction to update the edit fields +function ft_closeme(src,~) +fig_fixedtime = ancestor(src,'figure','toplevel'); +% try to close the sub GUI in a clean manner +try + gui = getappdata(fig_fixedtime,'gui'); + data = getappdata(gui.figh_nucleus,'data'); + % reset ui controls + data.invstd.Tfixed_bool = zeros(1,5); + data.invstd.Tfixed_val = zeros(1,5); + + % update NUCLEUSinv + setappdata(gui.figh_nucleus,'data',data); + delete(fig_fixedtime); +catch + % if this is not working: just close it + delete(fig_fixedtime); +end + + +end + +%------------- END OF CODE -------------- + +%% License: +% MIT License +% +% Copyright (c) 2023 Thomas Hiller +% +% Permission is hereby granted, free of charge, to any person obtaining a copy +% of this software and associated documentation files (the "Software"), to deal +% in the Software without restriction, including without limitation the rights +% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +% copies of the Software, and to permit persons to whom the Software is +% furnished to do so, subject to the following conditions: +% +% The above copyright notice and this permission notice shall be included in all +% copies or substantial portions of the Software. +% +% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +% SOFTWARE. \ No newline at end of file diff --git a/functions/interface/changeColorTheme.m b/functions/interface/changeColorTheme.m index 01dd0e8..0913571 100644 --- a/functions/interface/changeColorTheme.m +++ b/functions/interface/changeColorTheme.m @@ -185,6 +185,23 @@ function changeColorTheme(fig_tag,th) updatePlotsPSD; updatePlotsCPS; updatePlotsNMR; + + case 'FIXEDTIMEVIEW' + % set the background color for all uicontainer (HBox, VBox, etc.) + h = findall(fig,'-depth',inf,'Type','uicontainer'); + set(h,'BackGroundColor',myui.colors.panelBG); + + % chekcbox controls + h = findobj(fig,'Type','uicontrol','-and','Style','checkbox'); + set(h,'BackGroundColor',myui.colors.panelBG,'ForeGroundColor',myui.colors.panelFG); + + % edit field + h = findall(fig,'Type','uicontrol','-and','Style','edit'); + set(h,'BackGroundColor',myui.colors.editBG,'ForeGroundColor',myui.colors.panelFG); + + % text field + h = findobj(fig,'Type','uicontrol','-and','Style','text'); + set(h,'BackGroundColor',myui.colors.panelBG,'ForeGroundColor',myui.colors.panelFG); end end diff --git a/functions/interface/exportData.m b/functions/interface/exportData.m index 3f26a79..d60488a 100644 --- a/functions/interface/exportData.m +++ b/functions/interface/exportData.m @@ -6,7 +6,7 @@ function exportData(fig_tag,format) % % Inputs: % fig_tag - 'MOD' or 'INV' -% format - 'matS', 'matA', 'excelS' or 'LIAG' +% format - 'matS', 'matA', 'excelS', 'LIAG', or 'bgr_repo' % % Outputs: % none @@ -22,6 +22,7 @@ function exportData(fig_tag,format) % checkMOD % exportINV_EXCEL % exportINV_CSV +% exportINV_BGR_repos % exportMOD_EXCEL % findApproxTlgmAmplitude % @@ -130,7 +131,6 @@ function exportData(fig_tag,format) if sum([sfile spath]) > 0 exportINV_EXCEL(gui,INVdata,id,sfile,spath); end - case 'matS' % get the file name [sfile,spath] = uiputfile('*.mat',... @@ -301,6 +301,19 @@ function exportData(fig_tag,format) 'This routine works only on LIAG specific project data.'},... 'No LIAG data'); end + case 'BGR_repos' + + % get the file name + [sfile,spath] = uiputfile('*.csv',... + 'Save measurement and inversion data and parameters csv-file',... + fullfile(data.import.path,[sfilename,'.csv'])); + % if user didn't cancel + if sum([sfile spath]) > 0 + csvname = fullfile(spath,sfile); + exportINV_BGR_repos(INVdata{id},csvname); + end + + end end end @@ -549,6 +562,116 @@ function exportINV_CSV(INVdata,sfile) %write data to end of file dlmwrite(sfile,out,'-append','precision','%.5f'); +end +%% +function exportINV_BGR_repos(INVdata,sfile) +unit = INVdata.process.timescale; + +% gather all data +% raw data +tmp1(:,1) = INVdata.results.nmrraw.t(:); +header1{1} = ['time [',unit,']']; +if isreal(INVdata.results.nmrraw.s(:)) + header1{2} = 'amplitude [a.u.]'; + tmp1(:,2) = INVdata.results.nmrraw.s(:); + + b1 = {'raw data',''}; + b1(2,:) = header1; + b1(3:2+size(tmp1,1),:) = [num2cell(tmp1(:,1)),num2cell(tmp1(:,2))]; +else + header1{2} = 'real [a.u.]'; + header1{3} = 'imag [a.u.]'; + tmp1(:,2) = real(INVdata.results.nmrraw.s(:)); + tmp1(:,3) = imag(INVdata.results.nmrraw.s(:)); + + b1 = {'raw data','',''}; + b1(2,:) = header1; + b1(3:2+size(tmp1,1),:) = [num2cell(tmp1(:,1)),num2cell(tmp1(:,2)),... + num2cell(tmp1(:,3))]; +end +% proc data +tmp2(:,1) = INVdata.results.nmrproc.t(:); +tmp2(:,2) = INVdata.results.nmrproc.s(:); +header2{1} = ['time [',unit,']']; +header2{2} = 'signal [a.u.]'; + +% fit data (incl. residuals) +tmp3(:,1) = INVdata.results.invstd.fit_t(:); +tmp3(:,2) = INVdata.results.invstd.fit_s(:); +tmp3(:,3) = INVdata.results.invstd.residual(:); +header3{1} = ['time [',unit,']']; +header3{2} = 'fit [a.u.]'; +header3{3} = 'residual [-]'; + +% relaxation times +switch INVdata.invstd.invtype + case {'LU','NNLS'} + por = INVdata.invstd.porosity; + F = INVdata.results.invstd.T1T2f(:); + F = 100*por.*F./sum(F); + tmp4 = [INVdata.results.invstd.T1T2me(:)... + INVdata.results.invstd.T1T2f(:) F]; + header4 = {['relaxation times [',unit,']'],'amplitude [-]',... + 'partial water content [vol. %]'}; + + case {'mono','free'} + por = INVdata.invstd.porosity; + F = 100*por.*INVdata.results.invstd.E0./sum(INVdata.results.invstd.E0); + switch INVdata.results.nmrproc.T1T2 + case 'T1' + tmp4 = [INVdata.results.invstd.T1(:)... + INVdata.results.invstd.E0(:) F(:)]; + header4 = {['relaxation time(s) T1 [',unit,']'],... + 'amplitude [a.u.]','partial water content [vol. %]'}; + case 'T2' + tmp4 = [INVdata.results.invstd.T2(:)... + INVdata.results.invstd.E0(:) F(:)]; + header4 = {['relaxation time(s) T2 [',unit,']'],... + 'amplitude [a.u.]','partial water content [vol. %]'}; + end + + otherwise + % Nothing to do +end + +% glue together headers +cHeader = [header1 header2 header3 header4]; +% insert commas +commaHeader = [cHeader;repmat({','},1,numel(cHeader))]; +commaHeader = commaHeader(:)'; +% cHeader as string with commas +textHeader = cell2mat(commaHeader(1:numel(commaHeader)-1)); + +maxrows = max([size(tmp1,1) size(tmp2,1) size(tmp3,1) size(tmp4,1)]); +% glue together data +if size(tmp1,1) < maxrows + tmp1(end+1:maxrows,:) = NaN; +end +if size(tmp2,1) < maxrows + tmp2(end+1:maxrows,:) = NaN; +end +if size(tmp3,1) < maxrows + tmp3(end+1:maxrows,:) = NaN; +end +if size(tmp4,1) < maxrows + tmp4(end+1:maxrows,:) = NaN; +end +out(1:maxrows,1:size(tmp1,2)) = tmp1; +yi = size(tmp1,2)+1; +out(1:maxrows,yi:yi-1+size(tmp2,2)) = tmp2; +yi = yi + size(tmp2,2); +out(1:maxrows,yi:yi-1+size(tmp3,2)) = tmp3; +yi = yi + size(tmp3,2); +out(1:maxrows,yi:yi-1+size(tmp4,2)) = tmp4; + +% save data to file +%write header to file +fid = fopen(sfile,'w'); +fprintf(fid,'%s\n',textHeader); +fclose(fid); +%write data to end of file +dlmwrite(sfile,out,'-append','precision','%.5f'); + end %% diff --git a/functions/interface/getColorTheme.m b/functions/interface/getColorTheme.m index cdba4d7..8f366e0 100644 --- a/functions/interface/getColorTheme.m +++ b/functions/interface/getColorTheme.m @@ -33,7 +33,7 @@ colors.theme = th; %% switch depending on the calling figure switch fig_tag - case 'INV' + case {'INV','FIXEDTIMEVIEW'} % chose selected theme switch th case 'standard' diff --git a/functions/interface/importASCIIdata.m b/functions/interface/importASCIIdata.m index 1a9e05b..1c58c6f 100644 --- a/functions/interface/importASCIIdata.m +++ b/functions/interface/importASCIIdata.m @@ -141,7 +141,8 @@ function importASCIIdata(src) data.import.NMR.data{c}.T1IRfac = 1; data.import.NMR.data{c}.raw.time = data.import.NMR.data{c}.time; data.import.NMR.data{c}.raw.signal = data.import.NMR.data{c}.signal; - + data.import.NMR.data{c}.phase = 0; + % dummy parameter data data.import.NMR.para{c} = 0; end diff --git a/functions/interface/importINV2INV.m b/functions/interface/importINV2INV.m index fc1710a..eb70abb 100644 --- a/functions/interface/importINV2INV.m +++ b/functions/interface/importINV2INV.m @@ -97,6 +97,17 @@ function importINV2INV(src) end end end + if version_in < 114 % changes introduced with v.0.1.14 + % add 'Tfixed_bool' & 'Tfixed_val' field to savedata + savedata.data.invstd.Tfixed_bool = data.invstd.Tfixed_bool; + savedata.data.invstd.Tfixed_val = data.invstd.Tfixed_val; + for i = 1:numel(savedata.INVdata) + if isstruct(savedata.INVdata{i}) + savedata.INVdata{i}.invstd.Tfixed_bool = data.invstd.Tfixed_bool; + savedata.INVdata{i}.invstd.Tfixed_val = data.invstd.Tfixed_val; + end + end + end end % update GUI data from session mat-file diff --git a/functions/interface/importNMRdata.m b/functions/interface/importNMRdata.m index b3f19aa..799c499 100644 --- a/functions/interface/importNMRdata.m +++ b/functions/interface/importNMRdata.m @@ -56,38 +56,40 @@ function importNMRdata(src) label = get(src,'Label'); % set file format for later use - if strcmp(label,'GGE ascii') + if strcmp(label,'BAM TOM') + data.import.fileformat = 'bamtom'; + elseif strcmp(label,'BGR mat') + data.import.fileformat = 'bgrmat'; + elseif strcmp(label,'BGR std') + data.import.fileformat = 'bgr'; + elseif strcmp(label,'CoreLab ascii') + data.import.fileformat = 'corelab'; + elseif strcmp(label,'DART') + data.import.fileformat = 'dart'; + elseif strcmp(label,'GGE ascii') data.import.fileformat = 'rwth'; elseif strcmp(label,'GGE field') data.import.fileformat = 'field'; elseif strcmp(label,'GGE Dart') data.import.fileformat = 'dart'; - elseif strcmp(label,'CoreLab ascii') - data.import.fileformat = 'corelab'; - elseif strcmp(label,'DART') - data.import.fileformat = 'dart'; - elseif strcmp(label,'MOUSE') - data.import.fileformat = 'mouse'; - elseif strcmp(label,'LIAG single') + elseif strcmp(label,'HeliosCPMG') + data.import.fileformat = 'heliosCPMG'; + elseif strcmp(label,'HeliosSeries') + data.import.fileformat = 'heliosSeries'; + elseif strcmp(label,'LIAG core') data.import.fileformat = 'liag'; elseif strcmp(label,'LIAG from project') data.import.fileformat = 'liag'; elseif strcmp(label,'LIAG last project') data.import.fileformat = 'liag'; - elseif strcmp(label,'BGR std') - data.import.fileformat = 'bgr'; + elseif strcmp(label,'LIAG single') + data.import.fileformat = 'liag'; + elseif strcmp(label,'MOUSE') + data.import.fileformat = 'mouse'; elseif strcmp(label,'MouseCPMG') data.import.fileformat = 'MouseCPMG'; - elseif strcmp(label,'BGR mat') - data.import.fileformat = 'bgrmat'; - elseif strcmp(label,'MouseLiftSingle') - data.import.fileformat = 'MouseLiftSingle'; - elseif strcmp(label,'MouseLiftAll') - data.import.fileformat = 'MouseLiftAll'; - elseif strcmp(label,'Helios') - data.import.fileformat = 'helios'; - elseif strcmp(label,'BAM TOM') - data.import.fileformat = 'bamtom'; + elseif strcmp(label,'MouseLift') + data.import.fileformat = 'MouseLift'; elseif strcmp(label,'PM5') data.import.fileformat = 'pm5'; elseif strcmp(label,'PM25') @@ -119,8 +121,8 @@ function importNMRdata(src) displayStatusText(gui,'Reading NMR Data ...'); % call the corresponding subroutines switch label - case {'GGE ascii','GGE field','CoreLab ascii','BGR std',... - 'BAM TOM'} + case {'BAM TOM','BGR std','CoreLab ascii','GGE ascii',... + 'GGE field'} [data,gui] = importDataGeneral(data,gui); case 'GGE Dart' data.import.file = NMRfile; @@ -139,6 +141,8 @@ function importNMRdata(src) [data,gui] = importDataMouse(data,gui); case 'LIAG single' [data,gui] = importDataLIAG(data,gui); + case 'LIAG core' + [data,gui] = importDataLIAGcore(data,gui); case {'LIAG from project','LIAG last project'} [data,gui] = importDataLIAGproject(data,gui); % make the Petro Panel visible as default @@ -153,13 +157,14 @@ function importNMRdata(src) [data,gui] = importDataBGRmat(data,gui); case 'MouseCPMG' [data,gui] = importDataMouseCPMG(data,gui); - case 'MouseLiftSingle' - [data,gui] = importDataBGRliftSingle(data,gui); - case 'MouseLiftAll' - [data,gui] = importDataBGRliftAll(data,gui); - case 'Helios' + case 'MouseLift' + [data,gui] = importDataBGRlift(data,gui); + case 'HeliosCPMG' data.import.file = NMRfile; - [data,gui] = importDataHelios(data,gui); + [data,gui] = importDataHeliosCPMG(data,gui); + case 'HeliosSeries' + data.import.file = NMRfile; + [data,gui] = importDataHeliosSeries(data,gui); case {'PM5','PM25'} data.import.file = NMRfile; [data,gui] = importDataIBAC(data,gui); @@ -244,8 +249,7 @@ function importNMRdata(src) % show error message in case import fails errmsg = {ME.message;[ME.stack(1).name,' Line: ',num2str(ME.stack(1).line)];... 'Check File Format settings.'}; - errordlg(errmsg,'importNMRdata: Error!'); - + errordlg(errmsg,'importNMRdata: Error!'); end end @@ -257,8 +261,9 @@ function importNMRdata(src) NMRfile = -1; % for almost all import cases we load a folder ... but not for all switch label - case {'GGE ascii','GGE field','CoreLab ascii','MOUSE','LIAG single',... - 'BGR std','MouseCPMG','MouseLiftSingle','MouseLiftAll','Helios','BAM TOM','PM25'} + case {'BAM TOM','BGR std','CoreLab ascii','GGE ascii','GGE field',... + 'HeliosCPMG','HeliosSeries','LIAG core','LIAG single',... + 'MOUSE','MouseCPMG','MouseLift','PM25'} % if there is already a data folder present we start from here if isfield(import,'path') NMRpath = uigetdir(import.path,'Choose Data Path'); @@ -435,10 +440,12 @@ function importNMRdata(src) % first check whether T1 or T2 was measured... % by analyzing the name of data folder -indiz = find(data.import.path == filesep); -checkT1T2 = data.import.path(indiz(end-1)+1:indiz(end)-1); +ind = find(data.import.path == filesep); +checkT1T2 = data.import.path(ind(end-1)+1:ind(end)-1); if strcmp(checkT1T2,'t1test') in.T1T2 = 'T1'; +elseif strcmp(checkT1T2,'T1auto') + in.T1T2 = 'T1'; elseif strcmp(checkT1T2,'cpmgfastautotest') in.T1T2 = 'T2'; elseif strcmp(checkT1T2,'cpmgfastauto') @@ -483,20 +490,31 @@ function importNMRdata(src) helpdlg('No data folders in the given directory.','onMenuImport: No data.'); end - - % update the global data structure - data.import.NMR.files = fnames; - data.import.NMR.filesShort = shownames; +% update the global data structure +data.import.NMR.files = fnames; +data.import.NMR.filesShort = shownames; end %% -function [data,gui] = importDataBGRliftAll(data,gui) +function [data,gui] = importDataBGRlift(data,gui) + +% 1) show all folders and ask for sample +subdirs = dir(data.import.path); +% remove the dot-dirs +subdirs = subdirs(~ismember({subdirs.name},{'.','..'})); + +fnames = {subdirs.name}; +[indx,~] = listdlg('PromptString','Choose data set:',... + 'SelectionMode','multiple',... + 'ListString',fnames); % first check whether T1 or T2 was measured -indiz = find(data.import.path == filesep); -checkT1T2 = data.import.path(indiz(end)+1:end); +ind = find(data.import.path == filesep); +checkT1T2 = data.import.path(ind(end)+1:end); if strcmp(checkT1T2,'t1test') in.T1T2 = 'T1'; +elseif strcmp(checkT1T2,'T1auto') + in.T1T2 = 'T1'; elseif strcmp(checkT1T2,'cpmgfastautotest') in.T1T2 = 'T2'; elseif strcmp(checkT1T2,'cpmgfastauto') @@ -505,9 +523,26 @@ function importNMRdata(src) helpdlg('No original data folder','onMenuImport: No data.'); end -% there should be folders with integer values in their names -t1t2path = dir(data.import.path); -t1t2path = t1t2path(~ismember({t1t2path.name},{'.','..'})); +% now ask for stacking +answer = questdlg('Do you want to stack the slices?'); +switch answer + case 'Yes' + doSliceStack = true; + % if stacking ask for stack-rotate-order + answer = questdlg('Select stack-rotate-order:',... + 'Select order', ... + 'stack-rotate (default)','rotate-stack','Cancel','stack-rotate (default)'); + switch answer + case 'stack-rotate' + StackFirst = true; + case 'rotate-stack' + StackFirst = false; + otherwise + StackFirst = true; + end + otherwise + doSliceStack = false; +end fnames = struct; % shownames is just a dummy to hold all data file names that @@ -515,41 +550,86 @@ function importNMRdata(src) shownames = cell(1,1); c = 0; -if ~isempty(t1t2path) - for i = 1:size(t1t2path,1) - in.path = fullfile(data.import.path,t1t2path(i).name); +if ~isempty(indx) + for i = indx + in.path = fullfile(data.import.path,subdirs(i).name); in.fileformat = data.import.fileformat; out = LoadNMRData_driver(in); - - for j = 1:size(out.nmrData,2) + + if doSliceStack % the individual file names c = c + 1; fnames(c).parfile = 'acq.par'; - fnames(c).datafile = out.nmrData{j}.datfile; - - shownames{c} = [in.T1T2,'_',t1t2path(i).name,'_',fnames(c).datafile]; - - % the NMR data - % here we fix the time scale from [ms] to [s] - if max(out.nmrData{j}.time) > 100 - out.nmrData{j}.time = out.nmrData{j}.time/1000; - out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1000; + fnames(c).datafile = out.nmrData{1}.datfile; + + shownames{c} = [in.T1T2,'_',subdirs(i).name]; + + % use the meta data from the first slice + % fix the time scale from [ms] to [s] + if max(out.nmrData{1}.time) > 100 + out.nmrData{1}.time = out.nmrData{1}.time/1000; + out.nmrData{1}.raw.time = out.nmrData{1}.raw.time/1000; end - data.import.NMR.data{c} = out.nmrData{j}; + % import into GUI data struct + data.import.NMR.data{c} = out.nmrData{1}; + + % stacking + for j = 1:size(out.nmrData,2) + if j == 1 + signal = out.nmrData{j}.signal; + else + signal = signal + out.nmrData{j}.signal; + end + end + signal = signal./size(out.nmrData,2); + + % now rotate after the stacking + if StackFirst + [signal,phase] = rotateT2phase(signal); + data.import.NMR.data{c}.phase = phase; + data.import.NMR.data{c}.signal = signal; + data.import.NMR.data{c}.raw.signal = signal; + else + % no rotation after stacking + data.import.NMR.data{c}.signal = signal; + data.import.NMR.data{c}.raw.signal = signal; + end + + % parameter data data.import.NMR.para{c} = out.parData; + else + + for j = 1:size(out.nmrData,2) + % the individual file names + c = c + 1; + fnames(c).parfile = 'acq.par'; + fnames(c).datafile = out.nmrData{j}.datfile; + + shownames{c} = [in.T1T2,'_',subdirs(i).name,'_',fnames(c).datafile]; + + % the NMR data + % here we fix the time scale from [ms] to [s] + if max(out.nmrData{j}.time) > 100 + out.nmrData{j}.time = out.nmrData{j}.time/1000; + out.nmrData{j}.raw.time = out.nmrData{j}.raw.time/1000; + end + data.import.NMR.data{c} = out.nmrData{j}; + data.import.NMR.para{c} = out.parData; + end end end else helpdlg('No data folders in the given directory.','onMenuImport: No data.'); end - % update the global data structure - data.import.NMR.files = fnames; - data.import.NMR.filesShort = shownames; + +% update the global data structure +data.import.NMR.files = fnames; +data.import.NMR.filesShort = shownames; end %% -function [data,gui] = importDataHelios(data,gui) +function [data,gui] = importDataHeliosCPMG(data,gui) % first check the subpaths % there should be some folders with names ... @@ -571,28 +651,75 @@ function importNMRdata(src) content = dir([data.import.path,filesep,datpath(i).name]); content = content(~ismember({content.name},{'.','..'})); for j = 1:size(content,1) - if strcmp(content(j).name,[datpath(i).name,'_1.hrd']) - in.T1T2 = 'T2'; - in.name = content(j).name; - in.path = fullfile(data.import.path,filesep,datpath(i).name); - in.fileformat = data.import.fileformat; - out = LoadNMRData_driver(in); - - % the individual file names - c = c + 1; - fnames(c).parfile = ''; - fnames(c).datafile = out.nmrData.datfile; - fnames(c).T2specfile = ''; - shownames{c} = ['T2_',datpath(i).name]; - - data.import.NMR.data{c} = out.nmrData; - data.import.NMR.para{c} = out.parData; + if strcmp(content(j).name,[datpath(i).name,'.hrd']) + if ~strcmp(content(j).name,[datpath(i).name,'_ref']) + in.T1T2 = 'T2'; + in.name = content(j).name; + in.path = fullfile(data.import.path,filesep,datpath(i).name); + in.fileformat = data.import.fileformat; + out = LoadNMRData_driver(in); + + % the individual file names + c = c + 1; + fnames(c).parfile = ''; + fnames(c).datafile = out.nmrData.datfile; + fnames(c).T2specfile = ''; + shownames{c} = ['T2_',datpath(i).name]; + + data.import.NMR.data{c} = out.nmrData; + data.import.NMR.para{c} = out.parData; + end end end end end end +% update the global data structure +data.import.NMR.files = fnames; +data.import.NMR.filesShort = shownames; + +end + +%% +function [data,gui] = importDataHeliosSeries(data,gui) + +% first check the subpaths +% there should be some folders with names ... +% ... similar to the data filenames inside them +datpath = dir(data.import.path); +datpath = datpath(~ismember({datpath.name},{'.','..'})); + +fnames = struct; +% shownames is just a dummy to hold all data file names that +% will be shown in the listbox +shownames = cell(1,1); + +c = 0; +if ~isempty(datpath) + content = datpath; + for j = 1:size(content,1) + if ~strcmp(content(j).name(end-7:end),'_ref.hrd') + in.T1T2 = 'T2'; + in.name = content(j).name; + in.path = fullfile(data.import.path); + in.fileformat = data.import.fileformat; + out = LoadNMRData_driver(in); + % the individual file names + c = c + 1; + fnames(c).parfile = ''; + fnames(c).datafile = out.nmrData.datfile; + fnames(c).T2specfile = ''; + shownames{c} = ['T2_',content(j).name]; + + data.import.NMR.data{c} = out.nmrData; + data.import.NMR.para{c} = out.parData; + end + + end +end + +% update the global data structure data.import.NMR.files = fnames; data.import.NMR.filesShort = shownames; @@ -632,6 +759,7 @@ function importNMRdata(src) data.import.NMR.para{c} = out.parData{j}; end +% update the global data structure data.import.NMR.files = fnames; data.import.NMR.filesShort = shownames; @@ -812,6 +940,166 @@ function importNMRdata(src) end +%% +function [data,gui] = importDataLIAGcore(data,gui) + +% get all subfolders containing a measurement at a certain heigth +subdirs = dir(data.import.path); +% remove the dot-dirs +subdirs = subdirs(~ismember({subdirs.name},{'.','..'})); + +% now get the background data ("Leermessung") +bgPath = uigetdir(data.import.path,'Choose Background Data Path'); +isbgPath = false; +if bgPath == 0 + disp('NUCLEUSinv: LIAG core import: No background file provided.'); +else + isbgPath = true; + in.path = fullfile(bgPath); + in.fileformat = data.import.fileformat; + bgout = LoadNMRData_driver(in); + ref1.t = bgout.nmrData{1}.time; + ref1.s = bgout.nmrData{1}.signal; + [ref1.s,~] = rotateT2phase(ref1.s); +end + +% get the Position file +[posFile,posFilePath] = uigetfile('*.*','Choose Lift Position File',data.import.path); +isposFile = false; +if posFilePath == 0 + disp('NUCLEUSinv: LIAG core import: No position file provided.'); +else + isposFile = true; + % import LIAG lift file + buffer = fileread(fullfile(posFilePath,posFile)); + + % get the time stamps of the lift positions + substr = 'Zeit:' ; + loc = strfind(buffer, substr); + timepoint = cell(1,1); + for i = 1:length(loc) + timestr = strtrim(buffer(loc(i)+numel(substr):loc(i)+numel(substr)+19)); + timepoint{i} = datetime(timestr,'InputFormat','dd.MM.yyyy HH:mm:ss'); + end + % ignore the first time stamp + t_range = [datenum(timepoint{2}), datenum(timepoint{3})]; + % get the z coords + substr = 'Z1='; + loc = strfind(buffer, substr) ; + z_range(1) = sscanf(buffer(loc+numel(substr):loc+numel(substr)+10),'%f',1); + substr = 'Z2='; + loc = strfind(buffer, substr) ; + z_range(2) = sscanf(buffer(loc+numel(substr):loc+numel(substr)+10),'%f',1); +end + +% import the NMR data +count = 0; +levels = zeros(size(subdirs)); +nmrDataTMP = cell(1,1); +for i = 1:numel(subdirs) + if ~isnan(str2double(subdirs(i).name)) + + % import the NMR file + in.path = fullfile(data.import.path,subdirs(i).name,'T2CPMG'); + in.fileformat = data.import.fileformat; + out = LoadNMRData_driver(in); + + % if there is a position file + if isposFile + % keep only files within the correct time range + if out.nmrData{1}.datenum > t_range(1) && out.nmrData{1}.datenum < t_range(2) + count = count + 1; + % interpolate the z position via the time stamp of the NMR file + levels(count) = interp1(t_range,z_range,out.nmrData{1}.datenum,'linear'); + nmrDataTMP{count} = out; + end + else % just read everything + count = count + 1; + levels(count) = str2double(subdirs(i).name); + nmrDataTMP{count} = out; + end + end +end +% cut off data that is not part of the scan +levels = levels(1:count); +% sort in ascending order +[levels,idx] = sort(levels); + +% sort the NMR data accordingly +fnames = struct; +% shownames is just a dummy to hold all data file names that +% will be shown in the listbox +shownames = cell(1,1); +for c = 1:numel(levels) + % the individual file names + fnames(c).parfile = 'acqu.par'; + fnames(c).datafile = nmrDataTMP{idx(c)}.nmrData{1}.datfile; + fnames(c).T2specfile = ''; + + shownames{c} = fnames(c).datafile; + tmp = shownames{c}; + if isposFile + shownames{c} = [tmp,': ',sprintf('%4d',floor(levels(c))),'mm']; + else + shownames{c} = [tmp,' level:',sprintf('%d',levels(c))]; + end + out = nmrDataTMP{idx(c)}; + + % the NMR data + % here we fix the time scale to [s] if neccessary + TE = out.parData.echoTime; % [µs] + if out.nmrData{1}.time(1) == TE/1e3 + % change [ms] to [s] + out.nmrData{1}.time = out.nmrData{1}.time/1e3; + out.nmrData{1}.raw.time = out.nmrData{1}.raw.time/1e3; + elseif out.nmrData{1}.time(1) == TE + % change [µs] to [s] -> very unlikely + out.nmrData{1}.time = out.nmrData{1}.time/1e6; + out.nmrData{1}.raw.time = out.nmrData{1}.raw.time/1e6; + end + data.import.NMR.data{c} = out.nmrData{1}; + data.import.NMR.para{c} = out.parData; + + % subtract the background signal is one is available + if isbgPath + % get the original signal + s = data.import.NMR.data{c}.signal; + % if the background signal is longer than the signal cut it, if + % not extend it with zeros + if numel(ref1.s) > numel(s) + tmp_r = ref1.s(1:numel(s)); + else + tmp_r = zeros(size(s)); + tmp_r(1:numel(ref1.s)) = ref1.s; + end + s = complex(real(s)-real(tmp_r),imag(s)-imag(tmp_r)); + + % sign check + if real(s(1:3))<0 + s = s*-1; + end + + % rotate phase again - TEST + [s,~] = rotateT2phase(s); + + % update signal + data.import.NMR.data{c}.signal = s; + data.import.NMR.data{c}.raw.signal = s; + end +end +if isposFile + data.import.LIAGCORE.use_z = true; +else + data.import.LIAGCORE.use_z = false; +end +data.import.LIAGCORE.zslice = levels; + +% update the global data structure +data.import.NMR.files = fnames; +data.import.NMR.filesShort = shownames; + +end + %% function [data,gui] = importDataLIAGproject(data,gui) @@ -1087,7 +1375,6 @@ function importNMRdata(src) % update the global data structure data.import.NMR.files = ffnames; data.import.NMR.filesShort = shownames; - end end @@ -1196,7 +1483,7 @@ function importNMRdata(src) for i = 1:size(d{1},1) str = char(d{1}(i)); str = fixParameterString(str); - eval(['data.',str,';']); + eval(['data.',str,';']); %#ok end end diff --git a/functions/interface/runInversionBatch.m b/functions/interface/runInversionBatch.m index 34853b5..92141cc 100644 --- a/functions/interface/runInversionBatch.m +++ b/functions/interface/runInversionBatch.m @@ -108,24 +108,31 @@ param.T1IRfac = data.results.nmrproc.T1IRfac; param.noise = data.results.nmrproc.noise; param.optim = data.info.has_optim; + param.Tfixed_bool = data.invstd.Tfixed_bool; + param.Tfixed_val = data.invstd.Tfixed_val; if isfield(data.results.nmrproc,'W') param.W = data.results.nmrproc.W; end invstd = fitDataFree(data.results.nmrproc.t,... data.results.nmrproc.s,flag,param,1); + data.invstd.Tfixed_val = [invstd.T zeros(1,4)]; case 'free' flag = data.results.nmrproc.T1T2; param.T1IRfac = data.results.nmrproc.T1IRfac; param.noise = data.results.nmrproc.noise; param.optim = data.info.has_optim; + param.Tfixed_bool = data.invstd.Tfixed_bool; + param.Tfixed_val = data.invstd.Tfixed_val; if isfield(data.results.nmrproc,'W') param.W = data.results.nmrproc.W; end invstd = fitDataFree(data.results.nmrproc.t,... data.results.nmrproc.s,flag,param,data.invstd.freeDT); + data.invstd.Tfixed_val = [invstd.T(1:data.invstd.freeDT)... + zeros(1,5-data.invstd.freeDT)]; case 'LU' param.T1T2 = data.results.nmrproc.T1T2; diff --git a/functions/interface/runInversionStd.m b/functions/interface/runInversionStd.m index 9bdcf51..702e0f1 100644 --- a/functions/interface/runInversionStd.m +++ b/functions/interface/runInversionStd.m @@ -198,6 +198,8 @@ param.T1IRfac = data.results.nmrproc.T1IRfac; param.noise = data.results.nmrproc.noise; param.optim = data.info.has_optim; + param.Tfixed_bool = data.invstd.Tfixed_bool; + param.Tfixed_val = data.invstd.Tfixed_val; if isfield(data.results.nmrproc,'W') param.W = data.results.nmrproc.W; end @@ -211,12 +213,15 @@ displayStatusText(gui,infostring); invstd = fitDataFree(data.results.nmrproc.t,... data.results.nmrproc.s,flag,param,1); + data.invstd.Tfixed_val = [invstd.T zeros(1,4)]; case 'free' % N free single-exponential inversion flag = data.results.nmrproc.T1T2; param.T1IRfac = data.results.nmrproc.T1IRfac; param.noise = data.results.nmrproc.noise; param.optim = data.info.has_optim; + param.Tfixed_bool = data.invstd.Tfixed_bool; + param.Tfixed_val = data.invstd.Tfixed_val; if isfield(data.results.nmrproc,'W') param.W = data.results.nmrproc.W; end @@ -230,6 +235,8 @@ displayStatusText(gui,infostring); invstd = fitDataFree(data.results.nmrproc.t,... data.results.nmrproc.s,flag,param,data.invstd.freeDT); + data.invstd.Tfixed_val = [invstd.T(1:data.invstd.freeDT)... + zeros(1,5-data.invstd.freeDT)]; case 'LU' % multi-exponential inversion % general parameter @@ -411,6 +418,9 @@ if ~isempty(findobj('Tag','FITSTATS')) showFitStatistics; end + if ~isempty(findobj('Tag','FIXEDTIMEVIEW')) + FixedTimeView(gui.menu.extra_fixedtime); + end NUCLEUSinv_updateInterface; else helpdlg('Cannot start inversion because no data set is selected!',... diff --git a/functions/interface/showExtraGraphics.m b/functions/interface/showExtraGraphics.m index 3a64831..180680a 100644 --- a/functions/interface/showExtraGraphics.m +++ b/functions/interface/showExtraGraphics.m @@ -32,7 +32,7 @@ function showExtraGraphics(method) %% get GUI handle and data fig = findobj('Tag','INV'); -fig_tag = get(fig,'Tag'); +% fig_tag = get(fig,'Tag'); data = getappdata(fig,'data'); INVdata = getappdata(fig,'INVdata'); gui = getappdata(fig,'gui'); @@ -128,6 +128,7 @@ function showExtraGraphics(method) if data.import.BAM.use_z xval = data.import.BAM.zslice; xlabelstr = 'position'; + ylabelstr = 'position [µm]'; else xlabelstr = 'date' ; end @@ -135,9 +136,19 @@ function showExtraGraphics(method) if data.import.IBAC.use_z xval = data.import.IBAC.zslice; xlabelstr = 'position'; + ylabelstr = 'position [µm]'; else xlabelstr = 'date' ; end + elseif isfield(data.import,'LIAGCORE') + xval = data.import.LIAGCORE.zslice; + if data.import.LIAGCORE.use_z + xlabelstr = 'position [mm]'; + ylabelstr = 'position [mm]'; + else + xlabelstr = 'level'; + ylabelstr = 'level'; + end else xlabelstr = 'date' ; end @@ -254,7 +265,7 @@ function showExtraGraphics(method) cmap = jet; cmap = flipud(cmap); colormap(ax,cmap); xlabel(['relaxation time [',timescale,']']); - ylabel('position [µm]'); + ylabel(ylabelstr); cb = colorbar; set(get(cb,'YLabel'),'String','norm. amplitude'); @@ -263,6 +274,9 @@ function showExtraGraphics(method) gui.cm_handles.axes_proc_xaxis = uimenu(axes_cm,... 'Label','flip y-axis','Tag','flip','Enable','on',... 'Callback',@onContextFlip); + gui.cm_handles.axes_proc_xaxis2 = uimenu(axes_cm,... + 'Label','color scale log/lin','Tag','loglin','Enable','on',... + 'Callback',@onContextFlip); set(ax,'UIContextMenu',axes_cm); end @@ -290,13 +304,25 @@ function showExtraGraphics(method) function onContextFlip(src,~) f = ancestor(src,'Figure','toplevel'); ax = findobj(f,'Type','Axes'); +tag = get(src,'Tag'); -direction = get(ax,'Ydir'); -switch direction - case 'normal' - set(ax,'Ydir','reverse') - case 'reverse' - set(ax,'Ydir','normal') +switch tag + case 'loglin' + isscale = get(ax,'ColorScale'); + switch isscale + case 'log' + set(ax,'ColorScale','lin','CLim',[0 1]); + case 'linear' + set(ax,'ColorScale','log','CLim',[0.01 1]); + end + case 'flip' + direction = get(ax,'Ydir'); + switch direction + case 'normal' + set(ax,'Ydir','reverse') + case 'reverse' + set(ax,'Ydir','normal') + end end end diff --git a/functions/interface/uncheckImportMenus.m b/functions/interface/uncheckImportMenus.m index cd541f0..606d8cb 100644 --- a/functions/interface/uncheckImportMenus.m +++ b/functions/interface/uncheckImportMenus.m @@ -47,9 +47,9 @@ set(gui.menu.file_import_lab_bgr_std,'Checked','off'); set(gui.menu.file_import_lab_bgr_mat,'Checked','off'); set(gui.menu.file_import_lab_bgr_mouse_cpmg,'Checked','off'); -set(gui.menu.file_import_lab_bgr_mouse_liftsingle,'Checked','off'); -set(gui.menu.file_import_lab_bgr_mouse_liftall,'Checked','off'); -set(gui.menu.file_import_lab_bgr_helios,'Checked','off'); +set(gui.menu.file_import_lab_bgr_mouse_lift,'Checked','off'); +set(gui.menu.file_import_lab_bgr_helios_cpmg,'Checked','off'); +set(gui.menu.file_import_lab_bgr_helios_series,'Checked','off'); set(gui.menu.file_import_lab_bam_tom,'Checked','off'); set(gui.menu.file_import_lab_ascii_T1,'Checked','off'); set(gui.menu.file_import_lab_ascii_T2,'Checked','off'); diff --git a/functions/interface/updateInfo.m b/functions/interface/updateInfo.m index 344bc19..d15d8be 100644 --- a/functions/interface/updateInfo.m +++ b/functions/interface/updateInfo.m @@ -315,14 +315,22 @@ function updateInfo(src,~) %#ok info{end+1,1} = invtype; info{end+1,1} = ' '; ciT = sum(full(invstd.ci(2:2:end))); - + + if data.invstd.Tfixed_bool(1) + col = gui.myui.colors.listINV.*255; + else + col = [1 1 1].*255; + end + switch nmrproc.T1T2 case 'T1' - info{end+1,1} = ['T1 = ',... + info{end+1,1} = ['T1 = ',... sprintf('%5.4f',invstd.T1),... ' ∓ (',sprintf('%5.4f',ciT),')','']; case 'T2' - info{end+1,1} = ['T2 = ',... + info{end+1,1} = ['T2 = ',... sprintf('%5.4f',invstd.T2),... ' ∓ (',sprintf('%5.4f',ciT),')','']; end @@ -345,7 +353,15 @@ function updateInfo(src,~) %#ok end for i = 1:length(T) - info{end+1,1} = ['T(',num2str(i),') = ',sprintf('%5.4f',T(i)),... + + if data.invstd.Tfixed_bool(i) + col = gui.myui.colors.listINV.*255; + else + col = [1 1 1].*255; + end + + info{end+1,1} = ['T(',num2str(i),') = ',sprintf('%5.4f',T(i)),... ' ∓ (',sprintf('%5.4f',ciT(i)),')','']; %#ok<*AGROW> info{end+1,1} = ['E(',num2str(i),') = ',sprintf('%5.4f',E0(i)),... ' ∓ (',sprintf('%5.4f',ciE0(i)),')','']; diff --git a/functions/inversion/fitDataFree.m b/functions/inversion/fitDataFree.m index 0f96ba4..449a19e 100644 --- a/functions/inversion/fitDataFree.m +++ b/functions/inversion/fitDataFree.m @@ -80,11 +80,53 @@ parameter.info = 'off'; end -% start values for E and T -x0 = zeros(1,2*nExp); -for i = 1:nExp - x0(2*i-1) = i*max(signal)/nExp; - x0(2*i) = i*max(t)/nExp; +% check if any relaxation time is fixed +if any(parameter.Tfixed_bool) + + % start values for E and T + x0 = zeros(1,2*nExp); + for i = 1:nExp + x0(2*i-1) = i*max(signal)/nExp; + if parameter.Tfixed_bool(i) + x0(2*i) = parameter.Tfixed_val(i); + else + x0(2*i) = i*max(t)/nExp; + end + end + + % bounds for E and T + lb = zeros(1,2*nExp); + ub = zeros(1,2*nExp); + for i = 1:nExp + lb(2*i-1) = 0; + ub(2*i-1) = 2*i*max(signal); + if parameter.Tfixed_bool(i) + lb(2*i) = parameter.Tfixed_val(i); + ub(2*i) = parameter.Tfixed_val(i); + else + lb(2*i) = 0; + ub(2*i) = 2*i*max(t); + end + end + +else % if not proceed with the standard version + + % start values for E and T + x0 = zeros(1,2*nExp); + for i = 1:nExp + x0(2*i-1) = i*max(signal)/nExp; + x0(2*i) = i*max(t)/nExp; + end + + % bounds for E and T + lb = zeros(1,2*nExp); + ub = zeros(1,2*nExp); + for i = 1:nExp + lb(2*i-1) = 0; + ub(2*i-1) = 2*i*max(signal); + lb(2*i) = 0; + ub(2*i) = 2*i*max(t); + end end switch parameter.optim @@ -98,7 +140,7 @@ % options.StepTolerance = 1e-18; % options.MaxIterations = 1e3; [x,~,~,~,output,~,jacobian] = lsqcurvefit(@(x,t)fcn_fitFreeT1(x,t,IRfac),... - x0,t,s,zeros(size(x0)),[],options); + x0,t,s,lb,ub,options); case 'T2' % solver options options = optimoptions('lsqnonlin'); @@ -110,7 +152,7 @@ iparam.t = t; iparam.s = s; [x,~,~,~,output,~,jacobian] = lsqnonlin(@(x)fcn_fitFreeT2w(x,iparam),... - x0,zeros(size(x0)),[],options); + x0,lb,ub,options); % [x,~,~,~,output,~,jacobian] = lsqcurvefit(@fcn_fitFreeT2,... % x0,t,s,zeros(size(x0)),[],options); end @@ -121,10 +163,10 @@ switch flag case 'T1' [x,~,~,output] = fminsearchbnd(@(x) fcn_fitFreeT1_fmin(x,t,s,IRfac),... - x0,zeros(size(x0)),[],options); + x0,lb,ub,options); case 'T2' [x,~,~,output] = fminsearchbnd(@(x) fcn_fitFreeT2_fmin(x,t,s,e),... - x0,zeros(size(x0)),[],options); + x0,lb,ub,options); end end @@ -160,7 +202,11 @@ % sort the relaxation times in ascending order E0 = x(1:2:end); T = x(2:2:end); -[T,idx] = sort(T); +if any(parameter.Tfixed_bool) + idx = 1:1:nExp; +else + [T,idx] = sort(T); +end E0 = E0(idx); ciT = ci(2:2:end); ciE = ci(1:2:end); @@ -177,6 +223,7 @@ case 'T2' fitdata.T2 = T; end +fitdata.T = T; fitdata.fit_t = fit_t; fitdata.fit_s = fit_s; fitdata.resnorm = out.resnorm; diff --git a/functions/inversion/fitDataMultiModal.m b/functions/inversion/fitDataMultiModal.m index 9e776e0..4027ebc 100644 --- a/functions/inversion/fitDataMultiModal.m +++ b/functions/inversion/fitDataMultiModal.m @@ -104,6 +104,8 @@ param0.T1IRfac = T1IRfac; param0.noise = parameter.noise; param0.optim = parameter.optim; +param0.Tfixed_bool = [0 0 0 0 0]; +param0.Tfixed_val = [0 0 0 0 0]; if isfield(parameter,'W') param0.W = parameter.W; end diff --git a/functions/inversion/getConfInterval.m b/functions/inversion/getConfInterval.m index 6a6e8ba..0562543 100644 --- a/functions/inversion/getConfInterval.m +++ b/functions/inversion/getConfInterval.m @@ -39,7 +39,7 @@ %% degrees of freedom DOF [i,j] = size(J); -deg_free = i-j; +deg_free = abs(i-j); %% mean squared error MSE: mse = sqrt(resnorm/deg_free); @@ -71,7 +71,7 @@ if deg_free <= 1000 stud_fac = getStudentInvCDF(1-alpha,deg_free); else - stud_fac = NaN; + stud_fac = 1;%NaN; end end diff --git a/scripts/run_Ku_prediction.m b/scripts/run_Ku_prediction.m new file mode 100644 index 0000000..7aa860a --- /dev/null +++ b/scripts/run_Ku_prediction.m @@ -0,0 +1,109 @@ +% example script imports NUCLEUS data files and calculates Ku estimates +% based on capillary bundle model with circular or angular pore cross section + +% For running it, NUCLEUS folder und subfolders must be registered in the +% MATLAB working path +clear all; +% working directory: +%mypath = 'E:\Costabel.S\Papers\KU_triangle_model\figures\Figure2'; +mypath = 'E:\Costabel.S\Projekte\Petromethoden\WRC_from_NMR\Software\NUCLEUS\example data\Documentation\T2inv_maran'; + +[filenames,path] = uigetfile('*.mat','pick NUCLEUS data files',mypath,'MultiSelect','on'); + +pressure = 10.^[1:0.01:7]; + +% check how many files were selected +if iscell(filenames) + ndset = length(filenames); +else + ndset = 1; + file = filenames; +end + +for nfile = 1:ndset + if ndset > 1 + file = filenames{nfile}; + end + load([path,file]); + % check whether file comes from NUCLEUSmod + if exist('data') == 1 + % gather info for feeding the the modified NUCLEUS functions + geom = data.GEOM; + psddata = data.psddata; + wbopts.show = false; + % check whether file comes from NUCLEUSinv... + elseif exist('idata') == 1 + %...and contains results of joint inversion + if isfield(idata.results,'invjoint') + % gather info for feeding the modified NUCLEUS functions + geom = idata.results(1).invjoint.iGEOM; + psddata.r = geom.radius'; + psddata.psd = idata.results(1).invjoint.iF'./sum(idata.results(1).invjoint.iF); + wbopts.show = false; + else + disp(['File <',file,'> does not contain joint inversion results']); + end + else + disp(['File <',file,'> is not a regular NUCLEUS export']); + end + pSAT = getSaturationFromPressureBatch(geom,pressure,psddata,getConstants,wbopts); +% idata.results(1).invjoint.pSAT = pSAT; +% save([path,file(1:end-4),'_corr.mat']); + dset(nfile).pSAT = pSAT; + dset(nfile).file = file; + dset(nfile).PSD = psddata; + dset(nfile).ptype = geom.type; +end + +%% plot WRC and KU data +p_fak = 1/100; %pressure in hPa or h in cm +K_fak = 100*60*60*24; % hydr. conductivity in cm/d +% porosity estimate: +poro = 0.35; % NOTE THAT K-VALUES FROM NUCLEUS COME PURELY, I.E., WITHOUT +% POROSITY AND TORTUOSITY CORRECTION! + +% tolerance for Krel calculation considering possible artefacts at high +% relaxation times: +tolKrel = 0.999; + +for nfile = 1:ndset + pSAT = dset(nfile).pSAT; + PSD = dset(nfile).PSD; + figure; + % Equivalent pore size distribution + subplot(2,2,1); + plot(PSD.r,PSD.psd); + title(['eq. PSD of <',dset(nfile).file,'>']); + xlabel('r_{eq} [m]'); + ylabel('\theta_{part} [a.u.]'); + set(gca,'xscale','log'); + % Water retention curve + subplot(2,2,2); + plot(pSAT.Sdfull,p_fak*pSAT.pressure); + title(['WRC (',dset(nfile).ptype,') of <',dset(nfile).file,'>']); + xlabel('S [-]'); + ylabel('h [cm]'); + set(gca,'yscale','log',... + 'xlim',[0 1]); + % hydraulic conductivity + subplot(2,2,3); + plot(pSAT.Sdfull,K_fak*poro*pSAT.Kdfull,pSAT.Sdfull,K_fak*poro*pSAT.Kd_eff); + title(['K_U (',dset(nfile).ptype,') of <',dset(nfile).file,'>']); + xlabel('S [-]'); + ylabel('K_U [cm/d]'); + set(gca,'yscale','log',... + 'xlim',[0 1],... + 'ylim',[1e-5 1e5]); + legend('K_U (full)','K_U (eff)','Location','SouthEast'); + % relative hydraulic conductivity + subplot(2,2,4); + plot(pSAT.Sdfull,pSAT.Kdfull/pSAT.Kdfull(find(pSAT.Sdfull']); + xlabel('S [-]'); + ylabel('K_{rel} [-]'); + set(gca,'yscale','log',... + 'xlim',[0 1],... + 'ylim',[1e-6 1]); + legend('K_{rel} (full)','K_{rel} (eff)','Location','SouthEast'); +end